diff -uraN gimp-2.2.8/acinclude.m4 gimp-2.2.9/acinclude.m4 --- gimp-2.2.8/acinclude.m4 2005-01-25 11:42:38.000000000 +0100 +++ gimp-2.2.9/acinclude.m4 2005-08-15 12:07:02.000000000 +0200 @@ -416,3 +416,24 @@ AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") ]) + +dnl GIMP_DETECT_CFLAGS(RESULT, FLAGSET) +dnl Detect if the compiler supports a set of flags + +AC_DEFUN([GIMP_DETECT_CFLAGS], +[ + $1= + for flag in $2; do + if test -z "[$]$1"; then + $1_save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $flag" + AC_MSG_CHECKING([whether [$]CC understands [$]flag]) + AC_TRY_COMPILE([], [], [$1_works=yes], [$1_works=no]) + AC_MSG_RESULT([$]$1_works) + CFLAGS="[$]$1_save_CFLAGS" + if test "x[$]$1_works" = "xyes"; then + $1="$flag" + fi + fi + done +]) diff -uraN gimp-2.2.8/aclocal.m4 gimp-2.2.9/aclocal.m4 --- gimp-2.2.8/aclocal.m4 2005-06-26 21:28:06.000000000 +0200 +++ gimp-2.2.9/aclocal.m4 2005-10-27 17:11:19.000000000 +0200 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.7.9 -*- Autoconf -*- +# generated automatically by aclocal 1.9.6 -*- Autoconf -*- -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -11,732 +11,1101 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. +# Configure paths for GLIB +# Owen Taylor 1997-2001 +dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) +dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject or +dnl gthread is specified in MODULES, pass to pkg-config +dnl +AC_DEFUN([AM_PATH_GLIB_2_0], +[dnl +dnl Get the cflags and libraries from pkg-config +dnl +AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run a test GLIB program], + , enable_glibtest=yes) -dnl a macro to check for ability to create python extensions -dnl AM_CHECK_PYTHON_HEADERS([ACTION-IF-POSSIBLE], [ACTION-IF-NOT-POSSIBLE]) -dnl function also defines PYTHON_INCLUDES -AC_DEFUN([AM_CHECK_PYTHON_HEADERS], -[AC_REQUIRE([AM_PATH_PYTHON]) -AC_MSG_CHECKING(for headers required to compile python extensions) -dnl deduce PYTHON_INCLUDES -py_prefix=`$PYTHON -c "import sys; print sys.prefix"` -py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"` -PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}" -if test "$py_prefix" != "$py_exec_prefix"; then - PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}" -fi -AC_SUBST(PYTHON_INCLUDES) -dnl check if the headers exist: -save_CPPFLAGS="$CPPFLAGS" -CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES" -AC_TRY_CPP([#include ],dnl -[AC_MSG_RESULT(found) -$1],dnl -[AC_MSG_RESULT(not found) -$2]) -CPPFLAGS="$save_CPPFLAGS" -]) - + pkg_config_args=glib-2.0 + for module in . $4 + do + case "$module" in + gmodule) + pkg_config_args="$pkg_config_args gmodule-2.0" + ;; + gmodule-no-export) + pkg_config_args="$pkg_config_args gmodule-no-export-2.0" + ;; + gobject) + pkg_config_args="$pkg_config_args gobject-2.0" + ;; + gthread) + pkg_config_args="$pkg_config_args gthread-2.0" + ;; + esac + done + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) -# Configure paths for gimp-print -# Roger Leigh -- Sat, 10 Feb 2001 -# (based on gimpprint.m4 by Owen Taylor 97-11-3) + no_glib="" -dnl AM_PATH_GIMPPRINT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) -dnl Test for GIMP-PRINT, and define GIMPPRINT_CFLAGS and GIMPPRINT_LIBS -dnl -AC_DEFUN([AM_PATH_GIMPPRINT], -[dnl -dnl Get the cflags and libraries from the gimpprint-config script -dnl -AC_ARG_WITH(gimpprint-prefix,[ --with-gimpprint-prefix=PFX Prefix where GIMP-PRINT is installed (optional)], - gimpprint_config_prefix="$withval", gimpprint_config_prefix="") -AC_ARG_WITH(gimpprint-exec-prefix,[ --with-gimpprint-exec-prefix=PFX Exec prefix where GIMP-PRINT is installed - (optional)], - gimpprint_config_exec_prefix="$withval", gimpprint_config_exec_prefix="") -AC_ARG_ENABLE(gimpprinttest, [ --disable-gimpprinttest Do not try to compile and run a test GIMP-PRINT - program], - , enable_gimpprinttest=yes) - - if test x$gimpprint_config_exec_prefix != x ; then - gimpprint_config_args="$gimpprint_config_args --exec-prefix=$gimpprint_config_exec_prefix" - if test x${GIMPPRINT_CONFIG+set} != xset ; then - GIMPPRINT_CONFIG=$gimpprint_config_exec_prefix/bin/gimpprint-config - fi + if test x$PKG_CONFIG != xno ; then + if $PKG_CONFIG --atleast-pkgconfig-version 0.7 ; then + : + else + echo *** pkg-config too old; version 0.7 or better required. + no_glib=yes + PKG_CONFIG=no + fi + else + no_glib=yes fi - if test x$gimpprint_config_prefix != x ; then - gimpprint_config_args="$gimpprint_config_args --prefix=$gimpprint_config_prefix" - if test x${GIMPPRINT_CONFIG+set} != xset ; then - GIMPPRINT_CONFIG=$gimpprint_config_prefix/bin/gimpprint-config - fi + + min_glib_version=ifelse([$1], ,2.0.0,$1) + AC_MSG_CHECKING(for GLIB - version >= $min_glib_version) + + if test x$PKG_CONFIG != xno ; then + ## don't try to run the test against uninstalled libtool libs + if $PKG_CONFIG --uninstalled $pkg_config_args; then + echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" + enable_glibtest=no + fi + + if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then + : + else + no_glib=yes + fi fi - AC_PATH_PROG(GIMPPRINT_CONFIG, gimpprint-config, no) - min_gimpprint_version=ifelse([$1], ,4.1.4,$1) - AC_MSG_CHECKING(for GIMP-PRINT - version >= $min_gimpprint_version) - no_gimpprint="" - if test "$GIMPPRINT_CONFIG" = "no" ; then - no_gimpprint=yes - else - GIMPPRINT_CFLAGS=`$GIMPPRINT_CONFIG $gimpprint_config_args --cflags` - GIMPPRINT_LIBS=`$GIMPPRINT_CONFIG $gimpprint_config_args --libs` - gimpprint_config_major_version=`$GIMPPRINT_CONFIG $gimpprint_config_args --version | \ + if test x"$no_glib" = x ; then + GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` + GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` + GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` + + GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` + GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` + glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - gimpprint_config_minor_version=`$GIMPPRINT_CONFIG $gimpprint_config_args --version | \ + glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` - gimpprint_config_micro_version=`$GIMPPRINT_CONFIG $gimpprint_config_args --version | \ + glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` - if test "x$enable_gimpprinttest" = "xyes" ; then + if test "x$enable_glibtest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $GIMPPRINT_CFLAGS" - LIBS="$GIMPPRINT_LIBS $LIBS" + CFLAGS="$CFLAGS $GLIB_CFLAGS" + LIBS="$GLIB_LIBS $LIBS" dnl -dnl Now check if the installed GIMP-PRINT is sufficiently new. (Also sanity -dnl checks the results of gimpprint-config to some extent +dnl Now check if the installed GLIB is sufficiently new. (Also sanity +dnl checks the results of pkg-config to some extent) dnl - rm -f conf.gimpprinttest + rm -f conf.glibtest AC_TRY_RUN([ -#include +#include #include #include -#include -int +int main () { int major, minor, micro; char *tmp_version; - system ("touch conf.gimpprinttest"); + system ("touch conf.glibtest"); /* HP/UX 9 (%@#!) writes to sscanf strings */ - tmp_version = strdup("$min_gimpprint_version"); - if (!tmp_version) { - exit(1); - } + tmp_version = g_strdup("$min_glib_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { - printf("%s, bad version string\n", "$min_gimpprint_version"); + printf("%s, bad version string\n", "$min_glib_version"); exit(1); } - if ((gimpprint_major_version != $gimpprint_config_major_version) || - (gimpprint_minor_version != $gimpprint_config_minor_version) || - (gimpprint_micro_version != $gimpprint_config_micro_version)) + if ((glib_major_version != $glib_config_major_version) || + (glib_minor_version != $glib_config_minor_version) || + (glib_micro_version != $glib_config_micro_version)) { - printf("\n*** 'gimpprint-config --version' returned %d.%d.%d, but GIMP-PRINT (%d.%d.%d)\n", - $gimpprint_config_major_version, $gimpprint_config_minor_version, $gimpprint_config_micro_version, - gimpprint_major_version, gimpprint_minor_version, gimpprint_micro_version); - printf ("*** was found! If gimpprint-config was correct, then it is best\n"); - printf ("*** to remove the old version of GIMP-PRINT. You may also be able to fix the\n"); - printf("*** error by modifying your LD_LIBRARY_PATH enviroment variable, or by\n"); - printf("*** editing /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); + printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", + $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, + glib_major_version, glib_minor_version, glib_micro_version); + printf ("*** was found! If pkg-config was correct, then it is best\n"); + printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); + printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); + printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); printf("*** required on your system.\n"); - printf("*** If gimpprint-config was wrong, set the environment variable GIMPPRINT_CONFIG\n"); - printf("*** to point to the correct copy of gimpprint-config, and remove the file\n"); - printf("*** config.cache before re-running configure\n"); - } -#if defined (GIMPPRINT_MAJOR_VERSION) && defined (GIMPPRINT_MINOR_VERSION) && defined (GIMPPRINT_MICRO_VERSION) - else if ((gimpprint_major_version != GIMPPRINT_MAJOR_VERSION) || - (gimpprint_minor_version != GIMPPRINT_MINOR_VERSION) || - (gimpprint_micro_version != GIMPPRINT_MICRO_VERSION)) + printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); + printf("*** to point to the correct configuration files\n"); + } + else if ((glib_major_version != GLIB_MAJOR_VERSION) || + (glib_minor_version != GLIB_MINOR_VERSION) || + (glib_micro_version != GLIB_MICRO_VERSION)) { - printf("\n*** GIMP-PRINT header files (version %d.%d.%d) do not match\n", - GIMPPRINT_MAJOR_VERSION, GIMPPRINT_MINOR_VERSION, GIMPPRINT_MICRO_VERSION); + printf("*** GLIB header files (version %d.%d.%d) do not match\n", + GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); printf("*** library (version %d.%d.%d)\n", - gimpprint_major_version, gimpprint_minor_version, gimpprint_micro_version); + glib_major_version, glib_minor_version, glib_micro_version); } -#endif /* defined (GIMPPRINT_MAJOR_VERSION) ... */ else { - if ((gimpprint_major_version > major) || - ((gimpprint_major_version == major) && (gimpprint_minor_version > minor)) || - ((gimpprint_major_version == major) && (gimpprint_minor_version == minor) && (gimpprint_micro_version >= micro))) + if ((glib_major_version > major) || + ((glib_major_version == major) && (glib_minor_version > minor)) || + ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) { return 0; } else { - printf("\n*** An old version of GIMP-PRINT (%d.%d.%d) was found.\n", - gimpprint_major_version, gimpprint_minor_version, gimpprint_micro_version); - printf("*** You need a version of GIMP-PRINT newer than %d.%d.%d. The latest version of\n", + printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", + glib_major_version, glib_minor_version, glib_micro_version); + printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", major, minor, micro); - printf("*** GIMP-PRINT is always available from\n"); - printf("*** http://sourceforge.net/project/showfiles.php?group_id=1537.\n"); + printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); printf("***\n"); printf("*** If you have already installed a sufficiently new version, this error\n"); - printf("*** probably means that the wrong copy of the gimpprint-config shell script is\n"); + printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); printf("*** being found. The easiest way to fix this is to remove the old version\n"); - printf("*** of GIMP-PRINT, but you can also set the GIMPPRINT_CONFIG environment to\n"); - printf("*** point to the correct copy of gimpprint-config. (In this case, you will have\n"); - printf("*** to modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); + printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); + printf("*** correct copy of pkg-config. (In this case, you will have to\n"); + printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); printf("*** so that the correct libraries are found at run-time))\n"); } } return 1; } -],, no_gimpprint=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) +],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi - if test "x$no_gimpprint" = x ; then - AC_MSG_RESULT(yes) - ifelse([$2], , :, [$2]) + if test "x$no_glib" = x ; then + AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)) + ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) - if test "$GIMPPRINT_CONFIG" = "no" ; then - echo "*** The gimpprint-config script installed by GIMP-PRINT could not be found" - echo "*** If GIMP-PRINT was installed in PREFIX, make sure PREFIX/bin is in" - echo "*** your path, or set the GIMPPRINT_CONFIG environment variable to the" - echo "*** full path to gimpprint-config." + if test "$PKG_CONFIG" = "no" ; then + echo "*** A new enough version of pkg-config was not found." + echo "*** See http://www.freedesktop.org/software/pkgconfig/" else - if test -f conf.gimpprinttest ; then + if test -f conf.glibtest ; then : else - echo "*** Could not run GIMP-PRINT test program, checking why..." - CFLAGS="$CFLAGS $GIMPPRINT_CFLAGS" - LIBS="$LIBS $GIMPPRINT_LIBS" + echo "*** Could not run GLIB test program, checking why..." + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLAGS $GLIB_CFLAGS" + LIBS="$LIBS $GLIB_LIBS" AC_TRY_LINK([ -#include +#include #include -#include -], [ return ((gimpprint_major_version) || (gimpprint_minor_version) || (gimpprint_micro_version)); ], +], [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ], [ echo "*** The test program compiled, but did not run. This usually means" - echo "*** that the run-time linker is not finding GIMP-PRINT or finding the wrong" - echo "*** version of GIMP-PRINT. If it is not finding GIMP-PRINT, you'll need to set" - echo "*** your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" + echo "*** that the run-time linker is not finding GLIB or finding the wrong" + echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" + echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], [ echo "*** The test program failed to compile or link. See the file config.log for the" - echo "*** exact error that occured. This usually means GIMP-PRINT was incorrectly" - echo "*** installed or that you have moved GIMP-PRINT since it was installed. In the" - echo "*** latter case, you may want to edit the gimpprint-config script:" - echo "*** $GIMPPRINT_CONFIG" ]) + echo "*** exact error that occured. This usually means GLIB is incorrectly installed."]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi - GIMPPRINT_CFLAGS="" - GIMPPRINT_LIBS="" + GLIB_CFLAGS="" + GLIB_LIBS="" + GLIB_GENMARSHAL="" + GOBJECT_QUERY="" + GLIB_MKENUMS="" ifelse([$3], , :, [$3]) fi - AC_SUBST(GIMPPRINT_CFLAGS) - AC_SUBST(GIMPPRINT_LIBS) - rm -f conf.gimpprinttest + AC_SUBST(GLIB_CFLAGS) + AC_SUBST(GLIB_LIBS) + AC_SUBST(GLIB_GENMARSHAL) + AC_SUBST(GOBJECT_QUERY) + AC_SUBST(GLIB_MKENUMS) + rm -f conf.glibtest ]) +# Copyright (C) 1995-2002 Free Software Foundation, Inc. +# Copyright (C) 2001-2003,2004 Red Hat, Inc. +# +# This file is free software, distributed under the terms of the GNU +# General Public License. As a special exception to the GNU General +# Public License, this file may be distributed as part of a program +# that contains a configuration script generated by Autoconf, under +# the same distribution terms as the rest of that program. +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU Public License +# but which still want to provide support for the GNU gettext functionality. +# +# Macro to add for using GNU gettext. +# Ulrich Drepper , 1995, 1996 +# +# Modified to never use included libintl. +# Owen Taylor , 12/15/1998 +# +# Major rework to remove unused code +# Owen Taylor , 12/11/2002 +# +# Added better handling of ALL_LINGUAS from GNU gettext version +# written by Bruno Haible, Owen Taylor 5/30/3002 +# +# Modified to require ngettext +# Matthias Clasen 08/06/2004 +# +# We need this here as well, since someone might use autoconf-2.5x +# to configure GLib then an older version to configure a package +# using AM_GLIB_GNU_GETTEXT +AC_PREREQ(2.53) - -dnl Configure Paths for Alsa -dnl Some modifications by Richard Boulton -dnl Christopher Lansdown -dnl Jaroslav Kysela -dnl Last modification: alsa.m4,v 1.23 2004/01/16 18:14:22 tiwai Exp -dnl AM_PATH_ALSA([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) -dnl Test for libasound, and define ALSA_CFLAGS and ALSA_LIBS as appropriate. -dnl enables arguments --with-alsa-prefix= -dnl --with-alsa-enc-prefix= -dnl --disable-alsatest dnl -dnl For backwards compatibility, if ACTION_IF_NOT_FOUND is not specified, -dnl and the alsa libraries are not found, a fatal AC_MSG_ERROR() will result. +dnl We go to great lengths to make sure that aclocal won't +dnl try to pull in the installed version of these macros +dnl when running aclocal in the glib directory. dnl -AC_DEFUN([AM_PATH_ALSA], -[dnl Save the original CFLAGS, LDFLAGS, and LIBS -alsa_save_CFLAGS="$CFLAGS" -alsa_save_LDFLAGS="$LDFLAGS" -alsa_save_LIBS="$LIBS" -alsa_found=yes - +m4_copy([AC_DEFUN],[glib_DEFUN]) +m4_copy([AC_REQUIRE],[glib_REQUIRE]) dnl -dnl Get the cflags and libraries for alsa +dnl At the end, if we're not within glib, we'll define the public +dnl definitions in terms of our private definitions. dnl -AC_ARG_WITH(alsa-prefix, -[ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)], -[alsa_prefix="$withval"], [alsa_prefix=""]) - -AC_ARG_WITH(alsa-inc-prefix, -[ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)], -[alsa_inc_prefix="$withval"], [alsa_inc_prefix=""]) - -dnl FIXME: this is not yet implemented -AC_ARG_ENABLE(alsatest, -[ --disable-alsatest Do not try to compile and run a test Alsa program], -[enable_alsatest="$enableval"], -[enable_alsatest=yes]) - -dnl Add any special include directories -AC_MSG_CHECKING(for ALSA CFLAGS) -if test "$alsa_inc_prefix" != "" ; then - ALSA_CFLAGS="$ALSA_CFLAGS -I$alsa_inc_prefix" - CFLAGS="$CFLAGS -I$alsa_inc_prefix" -fi -AC_MSG_RESULT($ALSA_CFLAGS) -CFLAGS="$alsa_save_CFLAGS" - -dnl add any special lib dirs -AC_MSG_CHECKING(for ALSA LDFLAGS) -if test "$alsa_prefix" != "" ; then - ALSA_LIBS="$ALSA_LIBS -L$alsa_prefix" - LDFLAGS="$LDFLAGS $ALSA_LIBS" -fi - -dnl add the alsa library -ALSA_LIBS="$ALSA_LIBS -lasound -lm -ldl -lpthread" -LIBS=`echo $LIBS | sed 's/-lm//'` -LIBS=`echo $LIBS | sed 's/-ldl//'` -LIBS=`echo $LIBS | sed 's/-lpthread//'` -LIBS=`echo $LIBS | sed 's/ //'` -LIBS="$ALSA_LIBS $LIBS" -AC_MSG_RESULT($ALSA_LIBS) - -dnl Check for a working version of libasound that is of the right version. -min_alsa_version=ifelse([$1], ,0.1.1,$1) -AC_MSG_CHECKING(for libasound headers version >= $min_alsa_version) -no_alsa="" - alsa_min_major_version=`echo $min_alsa_version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - alsa_min_minor_version=`echo $min_alsa_version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` - alsa_min_micro_version=`echo $min_alsa_version | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` - -AC_LANG_SAVE -AC_LANG_C -AC_TRY_COMPILE([ -#include -], [ -/* ensure backward compatibility */ -#if !defined(SND_LIB_MAJOR) && defined(SOUNDLIB_VERSION_MAJOR) -#define SND_LIB_MAJOR SOUNDLIB_VERSION_MAJOR -#endif -#if !defined(SND_LIB_MINOR) && defined(SOUNDLIB_VERSION_MINOR) -#define SND_LIB_MINOR SOUNDLIB_VERSION_MINOR -#endif -#if !defined(SND_LIB_SUBMINOR) && defined(SOUNDLIB_VERSION_SUBMINOR) -#define SND_LIB_SUBMINOR SOUNDLIB_VERSION_SUBMINOR -#endif - -# if(SND_LIB_MAJOR > $alsa_min_major_version) - exit(0); -# else -# if(SND_LIB_MAJOR < $alsa_min_major_version) -# error not present -# endif - -# if(SND_LIB_MINOR > $alsa_min_minor_version) - exit(0); -# else -# if(SND_LIB_MINOR < $alsa_min_minor_version) -# error not present -# endif - -# if(SND_LIB_SUBMINOR < $alsa_min_micro_version) -# error not present -# endif -# endif -# endif -exit(0); -], - [AC_MSG_RESULT(found.)], - [AC_MSG_RESULT(not present.) - ifelse([$3], , [AC_MSG_ERROR(Sufficiently new version of libasound not found.)]) - alsa_found=no] -) -AC_LANG_RESTORE - -dnl Now that we know that we have the right version, let's see if we have the library and not just the headers. -if test "x$enable_alsatest" = "xyes"; then -AC_CHECK_LIB([asound], [snd_ctl_open],, - [ifelse([$3], , [AC_MSG_ERROR(No linkable libasound was found.)]) - alsa_found=no] -) -fi - -LDFLAGS="$alsa_save_LDFLAGS" -LIBS="$alsa_save_LIBS" - -if test "x$alsa_found" = "xyes" ; then - ifelse([$2], , :, [$2]) -else - ALSA_CFLAGS="" - ALSA_LIBS="" - ifelse([$3], , :, [$3]) -fi - -dnl That should be it. Now just export out symbols: -AC_SUBST(ALSA_CFLAGS) -AC_SUBST(ALSA_LIBS) -]) -dnl The following lines were copied from gtk-doc.m4 +# GLIB_LC_MESSAGES +#-------------------- +glib_DEFUN([GLIB_LC_MESSAGES], + [AC_CHECK_HEADERS([locale.h]) + if test $ac_cv_header_locale_h = yes; then + AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, + [AC_TRY_LINK([#include ], [return LC_MESSAGES], + am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) + if test $am_cv_val_LC_MESSAGES = yes; then + AC_DEFINE(HAVE_LC_MESSAGES, 1, + [Define if your file defines LC_MESSAGES.]) + fi + fi]) -dnl Usage: -dnl GTK_DOC_CHECK([minimum-gtk-doc-version]) -AC_DEFUN([GTK_DOC_CHECK], -[ - AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first - AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first - dnl for overriding the documentation installation directory - AC_ARG_WITH(html-dir, - AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),, - [with_html_dir='${datadir}/gtk-doc/html']) - HTML_DIR="$with_html_dir" - AC_SUBST(HTML_DIR) - - dnl enable/disable documentation building - AC_ARG_ENABLE(gtk-doc, - AC_HELP_STRING([--enable-gtk-doc], - [use gtk-doc to build documentation (default=no)]),, - enable_gtk_doc=no) - - have_gtk_doc=no - if test x$enable_gtk_doc = xyes; then - if test -z "$PKG_CONFIG"; then - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - fi - if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then - have_gtk_doc=yes - fi - - dnl do we want to do a version check? -ifelse([$1],[],, - [gtk_doc_min_version=$1 - if test "$have_gtk_doc" = yes; then - AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version]) - if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then - AC_MSG_RESULT(yes) - else - AC_MSG_RESULT(no) - have_gtk_doc=no +# GLIB_PATH_PROG_WITH_TEST +#---------------------------- +dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], +[# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + /*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + for ac_dir in ifelse([$5], , $PATH, [$5]); do + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$ac_word; then + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word" + break fi fi -]) - if test "$have_gtk_doc" != yes; then - enable_gtk_doc=no - fi - fi - - AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes) - AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL") + done + IFS="$ac_save_ifs" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl ]) +# GLIB_WITH_NLS +#----------------- +glib_DEFUN([GLIB_WITH_NLS], + dnl NLS is obligatory + [USE_NLS=yes + AC_SUBST(USE_NLS) -# Copyright 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. - -# 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, or (at your option) -# any later version. + gt_cv_have_gettext=no -# 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. + CATOBJEXT=NONE + XGETTEXT=: + INTLLIBS= -# 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. + AC_CHECK_HEADER(libintl.h, + [gt_cv_func_dgettext_libintl="no" + libintl_extra_libs="" -# AM_PATH_PYTHON([MINIMUM-VERSION]) + # + # First check in libc + # + AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, + [AC_TRY_LINK([ +#include +], + [return !ngettext ("","", 1)], + gt_cv_func_ngettext_libc=yes, + gt_cv_func_ngettext_libc=no) + ]) + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, + [AC_TRY_LINK([ +#include +], + [return !dgettext ("","")], + gt_cv_func_dgettext_libc=yes, + gt_cv_func_dgettext_libc=no) + ]) + fi + + if test "$gt_cv_func_ngettext_libc" = "yes" ; then + AC_CHECK_FUNCS(bind_textdomain_codeset) + fi -# Adds support for distributing Python modules and packages. To -# install modules, copy them to $(pythondir), using the python_PYTHON -# automake variable. To install a package with the same name as the -# automake package, install to $(pkgpythondir), or use the -# pkgpython_PYTHON automake variable. + # + # If we don't have everything we want, check in libintl + # + if test "$gt_cv_func_dgettext_libc" != "yes" \ + || test "$gt_cv_func_ngettext_libc" != "yes" \ + || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then + + AC_CHECK_LIB(intl, bindtextdomain, + [AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dgettext, + gt_cv_func_dgettext_libintl=yes)])]) -# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as -# locations to install python extension modules (shared libraries). -# Another macro is required to find the appropriate flags to compile -# extension modules. + if test "$gt_cv_func_dgettext_libintl" != "yes" ; then + AC_MSG_CHECKING([if -liconv is needed to use gettext]) + AC_MSG_RESULT([]) + AC_CHECK_LIB(intl, ngettext, + [AC_CHECK_LIB(intl, dcgettext, + [gt_cv_func_dgettext_libintl=yes + libintl_extra_libs=-liconv], + :,-liconv)], + :,-liconv) + fi -# If your package is configured with a different prefix to python, -# users will have to add the install directory to the PYTHONPATH -# environment variable, or create a .pth file (see the python -# documentation for details). + # + # If we found libintl, then check in it for bind_textdomain_codeset(); + # we'll prefer libc if neither have bind_textdomain_codeset(), + # and both have dgettext and ngettext + # + if test "$gt_cv_func_dgettext_libintl" = "yes" ; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS -lintl $libintl_extra_libs" + unset ac_cv_func_bind_textdomain_codeset + AC_CHECK_FUNCS(bind_textdomain_codeset) + LIBS="$glib_save_LIBS" -# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will -# cause an error if the version of python installed on the system -# doesn't meet the requirement. MINIMUM-VERSION should consist of -# numbers and dots only. + if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then + gt_cv_func_dgettext_libc=no + else + if test "$gt_cv_func_dgettext_libc" = "yes" \ + && test "$gt_cv_func_ngettext_libc" = "yes"; then + gt_cv_func_dgettext_libintl=no + fi + fi + fi + fi -AC_DEFUN([AM_PATH_PYTHON], - [ - dnl Find a Python interpreter. Python versions prior to 1.5 are not - dnl supported because the default installation locations changed from - dnl $prefix/lib/site-python in 1.4 to $prefix/lib/python1.5/site-packages - dnl in 1.5. - m4_define([_AM_PYTHON_INTERPRETER_LIST], - [python python2 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5]) + if test "$gt_cv_func_dgettext_libc" = "yes" \ + || test "$gt_cv_func_dgettext_libintl" = "yes"; then + gt_cv_have_gettext=yes + fi + + if test "$gt_cv_func_dgettext_libintl" = "yes"; then + INTLLIBS="-lintl $libintl_extra_libs" + fi + + if test "$gt_cv_have_gettext" = "yes"; then + AC_DEFINE(HAVE_GETTEXT,1, + [Define if the GNU gettext() function is already present or preinstalled.]) + GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl + if test "$MSGFMT" != "no"; then + glib_save_LIBS="$LIBS" + LIBS="$LIBS $INTLLIBS" + AC_CHECK_FUNCS(dcgettext) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) + AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; + return _nl_msg_cat_cntr], + [CATOBJEXT=.gmo + DATADIRNAME=share], + [case $host in + *-*-solaris*) + dnl On Solaris, if bind_textdomain_codeset is in libc, + dnl GNU format message catalog is always supported, + dnl since both are added to the libc all together. + dnl Hence, we'd like to go with DATADIRNAME=share and + dnl and CATOBJEXT=.gmo in this case. + AC_CHECK_FUNC(bind_textdomain_codeset, + [CATOBJEXT=.gmo + DATADIRNAME=share], + [CATOBJEXT=.mo + DATADIRNAME=lib]) + ;; + *) + CATOBJEXT=.mo + DATADIRNAME=lib + ;; + esac]) + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo + else + gt_cv_have_gettext=no + fi + fi + ]) - m4_if([$1],[],[ - dnl No version check is needed. - # Find any Python interpreter. - AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST) - am_display_PYTHON=python - ], [ - dnl A version check is needed. - if test -n "$PYTHON"; then - # If the user set $PYTHON, use it and don't search something else. - AC_MSG_CHECKING([whether $PYTHON version >= $1]) - AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], - [AC_MSG_RESULT(yes)], - [AC_MSG_ERROR(too old)]) - else - # Otherwise, try each interpreter until we find one that satisfies - # VERSION. - AC_CACHE_CHECK([for a Python interpreter with version >= $1], - [am_cv_pathless_PYTHON],[ - for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST : ; do - if test "$am_cv_pathless_PYTHON" = : ; then - AC_MSG_ERROR([no suitable Python interpreter found]) - fi - AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) - done]) - # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. - AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) - am_display_PYTHON=$am_cv_pathless_PYTHON + if test "$gt_cv_have_gettext" = "yes" ; then + AC_DEFINE(ENABLE_NLS, 1, + [always defined to indicate that i18n is enabled]) fi - ]) - dnl Query Python for its version number. Getting [:3] seems to be - dnl the best way to do this; it's what "site.py" does in the standard - dnl library. + dnl Test whether we really found GNU xgettext. + if test "$XGETTEXT" != ":"; then + dnl If it is not GNU xgettext we define it as : so that the + dnl Makefiles still can work. + if $XGETTEXT --omit-header /dev/null 2> /dev/null; then + : ; + else + AC_MSG_RESULT( + [found xgettext program is not GNU xgettext; ignore it]) + XGETTEXT=":" + fi + fi - AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], - [am_cv_python_version=`$PYTHON -c "import sys; print sys.version[[:3]]"`]) - AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) + # We need to process the po/ directory. + POSUB=po - dnl Use the values of $prefix and $exec_prefix for the corresponding - dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made - dnl distinct variables so they can be overridden if need be. However, - dnl general consensus is that you shouldn't need this ability. + AC_OUTPUT_COMMANDS( + [case "$CONFIG_FILES" in *po/Makefile.in*) + sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile + esac]) - AC_SUBST([PYTHON_PREFIX], ['${prefix}']) - AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) + dnl These rules are solely for the distribution goal. While doing this + dnl we only have to keep exactly one list of the available catalogs + dnl in configure.in. + for lang in $ALL_LINGUAS; do + GMOFILES="$GMOFILES $lang.gmo" + POFILES="$POFILES $lang.po" + done - dnl At times (like when building shared libraries) you may want - dnl to know which OS platform Python thinks this is. + dnl Make all variables we use known to autoconf. + AC_SUBST(CATALOGS) + AC_SUBST(CATOBJEXT) + AC_SUBST(DATADIRNAME) + AC_SUBST(GMOFILES) + AC_SUBST(INSTOBJEXT) + AC_SUBST(INTLLIBS) + AC_SUBST(PO_IN_DATADIR_TRUE) + AC_SUBST(PO_IN_DATADIR_FALSE) + AC_SUBST(POFILES) + AC_SUBST(POSUB) + ]) - AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], - [am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`]) - AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) - - - dnl Set up 4 directories: - - dnl pythondir -- where to install python scripts. This is the - dnl site-packages directory, not the python standard library - dnl directory like in previous automake betas. This behavior - dnl is more consistent with lispdir.m4 for example. - dnl Query distutils for this directory. distutils does not exist in - dnl Python 1.5, so we fall back to the hardcoded directory if it - dnl doesn't work. - AC_CACHE_CHECK([for $am_display_PYTHON script directory], - [am_cv_python_pythondir], - [am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null || - echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`]) - AC_SUBST([pythondir], [$am_cv_python_pythondir]) +# AM_GLIB_GNU_GETTEXT +# ------------------- +# Do checks necessary for use of gettext. If a suitable implementation +# of gettext is found in either in libintl or in the C library, +# it will set INTLLIBS to the libraries needed for use of gettext +# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable +# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() +# on various variables needed by the Makefile.in.in installed by +# glib-gettextize. +dnl +glib_DEFUN([GLIB_GNU_GETTEXT], + [AC_REQUIRE([AC_PROG_CC])dnl + AC_REQUIRE([AC_HEADER_STDC])dnl + + GLIB_LC_MESSAGES + GLIB_WITH_NLS - dnl pkgpythondir -- $PACKAGE directory under pythondir. Was - dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is - dnl more consistent with the rest of automake. + if test "$gt_cv_have_gettext" = "yes"; then + if test "x$ALL_LINGUAS" = "x"; then + LINGUAS= + else + AC_MSG_CHECKING(for catalogs to be installed) + NEW_LINGUAS= + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + NEW_LINGUAS="$NEW_LINGUAS $presentlang" + fi + done + LINGUAS=$NEW_LINGUAS + AC_MSG_RESULT($LINGUAS) + fi - AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) + dnl Construct list of names of catalog files to be constructed. + if test -n "$LINGUAS"; then + for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done + fi + fi - dnl pyexecdir -- directory for installing python extension modules - dnl (shared libraries) - dnl Query distutils for this directory. distutils does not exist in - dnl Python 1.5, so we fall back to the hardcoded directory if it - dnl doesn't work. - AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], - [am_cv_python_pyexecdir], - [am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null || - echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`]) - AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) + dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly + dnl find the mkinstalldirs script in another subdir but ($top_srcdir). + dnl Try to locate is. + MKINSTALLDIRS= + if test -n "$ac_aux_dir"; then + MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" + fi + if test -z "$MKINSTALLDIRS"; then + MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" + fi + AC_SUBST(MKINSTALLDIRS) - dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) + dnl Generate list of files to be processed by xgettext which will + dnl be included in po/Makefile. + test -d po || mkdir po + if test "x$srcdir" != "x."; then + if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then + posrcprefix="$srcdir/" + else + posrcprefix="../$srcdir/" + fi + else + posrcprefix="../" + fi + rm -f po/POTFILES + sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ + < $srcdir/po/POTFILES.in > po/POTFILES + ]) - AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) +# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) +# ------------------------------- +# Define VARIABLE to the location where catalog files will +# be installed by po/Makefile. +glib_DEFUN([GLIB_DEFINE_LOCALEDIR], +[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl +glib_save_prefix="$prefix" +glib_save_exec_prefix="$exec_prefix" +test "x$prefix" = xNONE && prefix=$ac_default_prefix +test "x$exec_prefix" = xNONE && exec_prefix=$prefix +if test "x$CATOBJEXT" = "x.mo" ; then + localedir=`eval echo "${libdir}/locale"` +else + localedir=`eval echo "${datadir}/locale"` +fi +prefix="$glib_save_prefix" +exec_prefix="$glib_save_exec_prefix" +AC_DEFINE_UNQUOTED($1, "$localedir", + [Define the location where the catalogs will be installed]) ]) +dnl +dnl Now the definitions that aclocal will find +dnl +ifdef(glib_configure_in,[],[ +AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) +AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) +])dnl -# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) -# --------------------------------------------------------------------------- -# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. -# Run ACTION-IF-FALSE otherwise. -# This test uses sys.hexversion instead of the string equivalent (first -# word of sys.version), in order to cope with versions such as 2.2c1. -# hexversion has been introduced in Python 1.5.2; it's probably not -# worth to support older versions (1.5.1 was released on October 31, 1998). -AC_DEFUN([AM_PYTHON_CHECK_VERSION], - [prog="import sys, string -# split strings by '.' and convert to numeric. Append some zeros -# because we need at least 4 digits for the hex conversion. -minver = map(int, string.split('$2', '.')) + [[0, 0, 0]] -minverhex = 0 -for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[[i]] -sys.exit(sys.hexversion < minverhex)" - AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) +# Configure paths for GTK+ +# Owen Taylor 1997-2001 -# Copyright 2001 Free Software Foundation, Inc. -*- Autoconf -*- +dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) +dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES, +dnl pass to pkg-config +dnl +AC_DEFUN([AM_PATH_GTK_2_0], +[dnl +dnl Get the cflags and libraries from pkg-config +dnl +AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run a test GTK+ program], + , enable_gtktest=yes) -# 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, or (at your option) -# any later version. + pkg_config_args=gtk+-2.0 + for module in . $4 + do + case "$module" in + gthread) + pkg_config_args="$pkg_config_args gthread-2.0" + ;; + esac + done -# 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. + no_gtk="" -# 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. + AC_PATH_PROG(PKG_CONFIG, pkg-config, no) -# AM_RUN_LOG(COMMAND) -# ------------------- -# Run COMMAND, save the exit status in ac_status, and log it. -# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) -AC_DEFUN([AM_RUN_LOG], -[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD - ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD - (exit $ac_status); }]) + if test x$PKG_CONFIG != xno ; then + if pkg-config --atleast-pkgconfig-version 0.7 ; then + : + else + echo "*** pkg-config too old; version 0.7 or better required." + no_gtk=yes + PKG_CONFIG=no + fi + else + no_gtk=yes + fi -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- + min_gtk_version=ifelse([$1], ,2.0.0,$1) + AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version) -# serial 47 AC_PROG_LIBTOOL -# Debian $Rev: 214 $ + if test x$PKG_CONFIG != xno ; then + ## don't try to run the test against uninstalled libtool libs + if $PKG_CONFIG --uninstalled $pkg_config_args; then + echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH" + enable_gtktest=no + fi + if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then + : + else + no_gtk=yes + fi + fi -# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) -# ----------------------------------------------------------- -# If this macro is not defined by Autoconf, define it here. -m4_ifdef([AC_PROVIDE_IFELSE], - [], - [m4_define([AC_PROVIDE_IFELSE], - [m4_ifdef([AC_PROVIDE_$1], - [$2], [$3])])]) + if test x"$no_gtk" = x ; then + GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags` + GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs` + gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` + gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` + gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ + sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` + if test "x$enable_gtktest" = "xyes" ; then + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLAGS $GTK_CFLAGS" + LIBS="$GTK_LIBS $LIBS" +dnl +dnl Now check if the installed GTK+ is sufficiently new. (Also sanity +dnl checks the results of pkg-config to some extent) +dnl + rm -f conf.gtktest + AC_TRY_RUN([ +#include +#include +#include +int +main () +{ + int major, minor, micro; + char *tmp_version; -# AC_PROG_LIBTOOL -# --------------- -AC_DEFUN([AC_PROG_LIBTOOL], -[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl -dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX -dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. - AC_PROVIDE_IFELSE([AC_PROG_CXX], - [AC_LIBTOOL_CXX], - [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX - ])]) -dnl And a similar setup for Fortran 77 support - AC_PROVIDE_IFELSE([AC_PROG_F77], - [AC_LIBTOOL_F77], - [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 -])]) - -dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. -dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run -dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. - AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [ifdef([AC_PROG_GCJ], - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([A][M_PROG_GCJ], - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([LT_AC_PROG_GCJ], - [define([LT_AC_PROG_GCJ], - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) -])])# AC_PROG_LIBTOOL - - -# _AC_PROG_LIBTOOL -# ---------------- -AC_DEFUN([_AC_PROG_LIBTOOL], -[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl -AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl -AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl -AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl + system ("touch conf.gtktest"); -# This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + /* HP/UX 9 (%@#!) writes to sscanf strings */ + tmp_version = g_strdup("$min_gtk_version"); + if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { + printf("%s, bad version string\n", "$min_gtk_version"); + exit(1); + } -# Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -AC_SUBST(LIBTOOL)dnl + if ((gtk_major_version != $gtk_config_major_version) || + (gtk_minor_version != $gtk_config_minor_version) || + (gtk_micro_version != $gtk_config_micro_version)) + { + printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", + $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, + gtk_major_version, gtk_minor_version, gtk_micro_version); + printf ("*** was found! If pkg-config was correct, then it is best\n"); + printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); + printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); + printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); + printf("*** required on your system.\n"); + printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); + printf("*** to point to the correct configuration files\n"); + } + else if ((gtk_major_version != GTK_MAJOR_VERSION) || + (gtk_minor_version != GTK_MINOR_VERSION) || + (gtk_micro_version != GTK_MICRO_VERSION)) + { + printf("*** GTK+ header files (version %d.%d.%d) do not match\n", + GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); + printf("*** library (version %d.%d.%d)\n", + gtk_major_version, gtk_minor_version, gtk_micro_version); + } + else + { + if ((gtk_major_version > major) || + ((gtk_major_version == major) && (gtk_minor_version > minor)) || + ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro))) + { + return 0; + } + else + { + printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n", + gtk_major_version, gtk_minor_version, gtk_micro_version); + printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n", + major, minor, micro); + printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); + printf("***\n"); + printf("*** If you have already installed a sufficiently new version, this error\n"); + printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); + printf("*** being found. The easiest way to fix this is to remove the old version\n"); + printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n"); + printf("*** correct copy of pkg-config. (In this case, you will have to\n"); + printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); + printf("*** so that the correct libraries are found at run-time))\n"); + } + } + return 1; +} +],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + fi + if test "x$no_gtk" = x ; then + AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)) + ifelse([$2], , :, [$2]) + else + AC_MSG_RESULT(no) + if test "$PKG_CONFIG" = "no" ; then + echo "*** A new enough version of pkg-config was not found." + echo "*** See http://pkgconfig.sourceforge.net" + else + if test -f conf.gtktest ; then + : + else + echo "*** Could not run GTK+ test program, checking why..." + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLAGS $GTK_CFLAGS" + LIBS="$LIBS $GTK_LIBS" + AC_TRY_LINK([ +#include +#include +], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ], + [ echo "*** The test program compiled, but did not run. This usually means" + echo "*** that the run-time linker is not finding GTK+ or finding the wrong" + echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your" + echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" + echo "*** to the installed location Also, make sure you have run ldconfig if that" + echo "*** is required on your system" + echo "***" + echo "*** If you have an old version installed, it is best to remove it, although" + echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], + [ echo "*** The test program failed to compile or link. See the file config.log for the" + echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."]) + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + fi + GTK_CFLAGS="" + GTK_LIBS="" + ifelse([$3], , :, [$3]) + fi + AC_SUBST(GTK_CFLAGS) + AC_SUBST(GTK_LIBS) + rm -f conf.gtktest +]) -# Prevent multiple expansion -define([AC_PROG_LIBTOOL], []) -])# _AC_PROG_LIBTOOL +dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) +# serial 2 IT_PROG_INTLTOOL +AC_DEFUN([IT_PROG_INTLTOOL], +[ -# AC_LIBTOOL_SETUP -# ---------------- -AC_DEFUN([AC_LIBTOOL_SETUP], -[AC_PREREQ(2.50)dnl -AC_REQUIRE([AC_ENABLE_SHARED])dnl -AC_REQUIRE([AC_ENABLE_STATIC])dnl -AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -AC_REQUIRE([AC_CANONICAL_BUILD])dnl -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_PROG_LD])dnl -AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl -AC_REQUIRE([AC_PROG_NM])dnl +if test -n "$1"; then + AC_MSG_CHECKING(for intltool >= $1) -AC_REQUIRE([AC_PROG_LN_S])dnl -AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -AC_REQUIRE([AC_OBJEXT])dnl -AC_REQUIRE([AC_EXEEXT])dnl -dnl + INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ printf "%d", $[1] * 100 + $[2]; }'` + INTLTOOL_APPLIED_VERSION=`awk -F\" '/\\$VERSION / { printf $[2]; }' < ${ac_aux_dir}/intltool-update.in` + changequote({{,}}) + INTLTOOL_APPLIED_VERSION_AS_INT=`awk -F\" '/\\$VERSION / { split(${{2}}, VERSION, "."); printf "%d\n", VERSION[1] * 100 + VERSION[2];}' < ${ac_aux_dir}/intltool-update.in` + changequote([,]) -AC_LIBTOOL_SYS_MAX_CMD_LEN -AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE -AC_LIBTOOL_OBJDIR + if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT"; then + AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) + else + AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found. Your intltool is too old. You need intltool $1 or later.]) + exit 1 + fi +fi -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl -_LT_AC_PROG_ECHO_BACKSLASH + INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@' + INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' +INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' + INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' + INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' -case $host_os in -aix3*) - # AIX sometimes has problems with the GCC collect2 program. For some - # reason, if we set the COLLECT_NAMES environment variable, the problems - # vanish in a puff of smoke. - if test "X${COLLECT_NAMES+set}" != Xset; then - COLLECT_NAMES= - export COLLECT_NAMES - fi - ;; -esac +AC_SUBST(INTLTOOL_DESKTOP_RULE) +AC_SUBST(INTLTOOL_DIRECTORY_RULE) +AC_SUBST(INTLTOOL_KEYS_RULE) +AC_SUBST(INTLTOOL_PROP_RULE) +AC_SUBST(INTLTOOL_OAF_RULE) +AC_SUBST(INTLTOOL_PONG_RULE) +AC_SUBST(INTLTOOL_SERVER_RULE) +AC_SUBST(INTLTOOL_SHEET_RULE) +AC_SUBST(INTLTOOL_SOUNDLIST_RULE) +AC_SUBST(INTLTOOL_UI_RULE) +AC_SUBST(INTLTOOL_XAM_RULE) +AC_SUBST(INTLTOOL_KBD_RULE) +AC_SUBST(INTLTOOL_XML_RULE) +AC_SUBST(INTLTOOL_XML_NOMERGE_RULE) +AC_SUBST(INTLTOOL_CAVES_RULE) +AC_SUBST(INTLTOOL_SCHEMAS_RULE) +AC_SUBST(INTLTOOL_THEME_RULE) -# Sed substitution that helps us do robust quoting. It backslashifies -# metacharacters that are still active within double-quoted strings. -Xsed='sed -e s/^X//' -[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] +# Use the tools built into the package, not the ones that are installed. -# Same as above, but do not quote variable references. -[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] +INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract' +INTLTOOL_MERGE='$(top_builddir)/intltool-merge' +INTLTOOL_UPDATE='$(top_builddir)/intltool-update' -# Sed substitution to delay expansion of an escaped shell variable in a -# double_quote_subst'ed string. -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' +AC_SUBST(INTLTOOL_EXTRACT) +AC_SUBST(INTLTOOL_MERGE) +AC_SUBST(INTLTOOL_UPDATE) + +AC_PATH_PROG(INTLTOOL_PERL, perl) +if test -z "$INTLTOOL_PERL"; then + AC_MSG_ERROR([perl not found; required for intltool]) +fi +if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then + AC_MSG_ERROR([perl 5.x required for intltool]) +fi +if test "x$2" != "xno-xml"; then + AC_MSG_CHECKING([for XML::Parser]) + if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then + AC_MSG_RESULT([ok]) + else + AC_MSG_ERROR([XML::Parser perl module is required for intltool]) + fi +fi + +AC_PATH_PROG(INTLTOOL_ICONV, iconv, iconv) +AC_PATH_PROG(INTLTOOL_MSGFMT, msgfmt, msgfmt) +AC_PATH_PROG(INTLTOOL_MSGMERGE, msgmerge, msgmerge) +AC_PATH_PROG(INTLTOOL_XGETTEXT, xgettext, xgettext) + +# Remove file type tags (using []) from po/POTFILES. + +ifdef([AC_DIVERSION_ICMDS],[ + AC_DIVERT_PUSH(AC_DIVERSION_ICMDS) + [mv -f po/POTFILES po/POTFILES.tmp + sed -e '/[[]encoding.*]/d' -e 's/[[].*] *//' < po/POTFILES.tmp > po/POTFILES + rm -f po/POTFILES.tmp + ]dnl + AC_DIVERT_POP() +],[ + ifdef([AC_CONFIG_COMMANDS_PRE],[ + AC_CONFIG_COMMANDS_PRE([ + [mv -f po/POTFILES po/POTFILES.tmp + sed -e '/[[]encoding.*]/d' -e 's/[[].*] *//' < po/POTFILES.tmp > po/POTFILES + rm -f po/POTFILES.tmp + ]dnl + ]) + ]) +]) + +# Manually sed perl in so people don't have to put the intltool scripts in AC_OUTPUT. + +AC_CONFIG_COMMANDS([intltool], [ + +intltool_edit="-e 's#@INTLTOOL_EXTRACT@#`pwd`/intltool-extract#g' \ + -e 's#@INTLTOOL_ICONV@#${INTLTOOL_ICONV}#g' \ + -e 's#@INTLTOOL_MSGFMT@#${INTLTOOL_MSGFMT}#g' \ + -e 's#@INTLTOOL_MSGMERGE@#${INTLTOOL_MSGMERGE}#g' \ + -e 's#@INTLTOOL_XGETTEXT@#${INTLTOOL_XGETTEXT}#g' \ + -e 's#@INTLTOOL_PERL@#${INTLTOOL_PERL}#g'" + +eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-extract.in \ + > intltool-extract.out +if cmp -s intltool-extract intltool-extract.out 2>/dev/null; then + rm -f intltool-extract.out +else + mv -f intltool-extract.out intltool-extract +fi +chmod ugo+x intltool-extract +chmod u+w intltool-extract + +eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-merge.in \ + > intltool-merge.out +if cmp -s intltool-merge intltool-merge.out 2>/dev/null; then + rm -f intltool-merge.out +else + mv -f intltool-merge.out intltool-merge +fi +chmod ugo+x intltool-merge +chmod u+w intltool-merge + +eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-update.in \ + > intltool-update.out +if cmp -s intltool-update intltool-update.out 2>/dev/null; then + rm -f intltool-update.out +else + mv -f intltool-update.out intltool-update +fi +chmod ugo+x intltool-update +chmod u+w intltool-update + +], INTLTOOL_PERL='${INTLTOOL_PERL}' ac_aux_dir=${ac_aux_dir} +INTLTOOL_EXTRACT='${INTLTOOL_EXTRACT}' ICONV='${INTLTOOL_ICONV}' +MSGFMT='${INTLTOOL_MSGFMT}' MSGMERGE='${INTLTOOL_MSGMERGE}' +XGETTEXT='${INTLTOOL_XGETTEXT}') + +]) + +# deprecated macros +AC_DEFUN([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL($@)]) + + +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- + +# serial 47 Debian 1.5.20-2 AC_PROG_LIBTOOL + + +# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) +# ----------------------------------------------------------- +# If this macro is not defined by Autoconf, define it here. +m4_ifdef([AC_PROVIDE_IFELSE], + [], + [m4_define([AC_PROVIDE_IFELSE], + [m4_ifdef([AC_PROVIDE_$1], + [$2], [$3])])]) + + +# AC_PROG_LIBTOOL +# --------------- +AC_DEFUN([AC_PROG_LIBTOOL], +[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl +dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX +dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. + AC_PROVIDE_IFELSE([AC_PROG_CXX], + [AC_LIBTOOL_CXX], + [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX + ])]) +dnl And a similar setup for Fortran 77 support + AC_PROVIDE_IFELSE([AC_PROG_F77], + [AC_LIBTOOL_F77], + [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 +])]) + +dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. +dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run +dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. + AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [AC_LIBTOOL_GCJ], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [AC_LIBTOOL_GCJ], + [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], + [AC_LIBTOOL_GCJ], + [ifdef([AC_PROG_GCJ], + [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) + ifdef([A][M_PROG_GCJ], + [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) + ifdef([LT_AC_PROG_GCJ], + [define([LT_AC_PROG_GCJ], + defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) +])])# AC_PROG_LIBTOOL + + +# _AC_PROG_LIBTOOL +# ---------------- +AC_DEFUN([_AC_PROG_LIBTOOL], +[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl +AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl +AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl +AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +# Prevent multiple expansion +define([AC_PROG_LIBTOOL], []) +])# _AC_PROG_LIBTOOL + + +# AC_LIBTOOL_SETUP +# ---------------- +AC_DEFUN([AC_LIBTOOL_SETUP], +[AC_PREREQ(2.50)dnl +AC_REQUIRE([AC_ENABLE_SHARED])dnl +AC_REQUIRE([AC_ENABLE_STATIC])dnl +AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_LD])dnl +AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl +AC_REQUIRE([AC_PROG_NM])dnl + +AC_REQUIRE([AC_PROG_LN_S])dnl +AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl +# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! +AC_REQUIRE([AC_OBJEXT])dnl +AC_REQUIRE([AC_EXEEXT])dnl +dnl + +AC_LIBTOOL_SYS_MAX_CMD_LEN +AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE +AC_LIBTOOL_OBJDIR + +AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl +_LT_AC_PROG_ECHO_BACKSLASH + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed='sed -e 1s/^X//' +[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] + +# Same as above, but do not quote variable references. +[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' @@ -748,7 +1117,7 @@ default_ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except M$VC, +# All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" @@ -796,6 +1165,8 @@ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi +_LT_CC_BASENAME([$compiler]) + # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) @@ -841,6 +1212,48 @@ ])# _LT_AC_SYS_COMPILER +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +AC_DEFUN([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` +]) + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +AC_DEFUN([_LT_COMPILER_BOILERPLATE], +[ac_outfile=conftest.$ac_objext +printf "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$rm conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +AC_DEFUN([_LT_LINKER_BOILERPLATE], +[ac_outfile=conftest.$ac_objext +printf "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$rm conftest* +])# _LT_LINKER_BOILERPLATE + + # _LT_AC_SYS_LIBPATH_AIX # ---------------------- # Links a minimal program and checks the executable @@ -913,15 +1326,15 @@ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. -if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if (echo_test_string="`eval $cmd`") 2>/dev/null && - echo_test_string="`eval $cmd`" && + if (echo_test_string=`eval $cmd`) 2>/dev/null && + echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break @@ -1090,7 +1503,7 @@ # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - case "`/usr/bin/file conftest.o`" in + case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) @@ -1172,7 +1585,7 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) @@ -1182,8 +1595,10 @@ echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD 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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi @@ -1209,11 +1624,16 @@ LDFLAGS="$LDFLAGS $3" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The compiler can only warn and ignore the option if not recognized + # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD + $echo "X$_lt_linker_boilerplate" | $Xsed > conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi else $2=yes fi @@ -1272,11 +1692,38 @@ lt_cv_sys_max_cmd_len=8192; ;; - *) + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while (test "X"`$CONFIG_SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && @@ -1381,7 +1828,7 @@ }] EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; @@ -1530,7 +1977,7 @@ # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) @@ -1542,11 +1989,13 @@ then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings - if test ! -s out/conftest.err; then + $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp + $SED '/^$/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi - chmod u+w . + chmod u+w . 2>&AS_MESSAGE_LOG_FD $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation @@ -1610,8 +2059,8 @@ [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_AC_TAGVAR(hardcode_action, $1)= if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ - test -n "$_LT_AC_TAGVAR(runpath_var $1)" || \ - test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)"="Xyes" ; then + test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ + test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existant directories. if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && @@ -1778,7 +2227,7 @@ shlibpath_var=LIBRARY_PATH ;; -bsdi4*) +bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' @@ -1806,7 +2255,8 @@ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' @@ -1836,7 +2286,7 @@ ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; @@ -1859,7 +2309,7 @@ soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` @@ -1894,8 +2344,17 @@ dynamic_linker='GNU ld.so' ;; -freebsd*) - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[123]]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) @@ -1913,7 +2372,7 @@ freebsd2*) shlibpath_overrides_runpath=yes ;; - freebsd3.[01]* | freebsdelf3.[01]*) + freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; @@ -1940,7 +2399,7 @@ version_type=sunos need_lib_prefix=no need_version=no - case "$host_cpu" in + case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes @@ -2039,7 +2498,7 @@ # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then - lt_ld_extra=`$SED -e 's/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g' /etc/ld.so.conf | tr '\n' ' '` + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi @@ -2114,7 +2573,11 @@ openbsd*) version_type=sunos need_lib_prefix=no - need_version=yes + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH @@ -2280,7 +2743,9 @@ case $tagname in CXX) - if test -n "$CXX" && test "X$CXX" != "Xno"; then + if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then AC_LIBTOOL_LANG_CXX_CONFIG else tagname="" @@ -2342,7 +2807,7 @@ # AC_LIBTOOL_WIN32_DLL # -------------------- -# declare package support for building win32 dll's +# declare package support for building win32 DLLs AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ])# AC_LIBTOOL_WIN32_DLL @@ -2516,7 +2981,7 @@ if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) - file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then @@ -2626,7 +3091,7 @@ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some GNU ld's only accept -v. + # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; @@ -2763,7 +3237,7 @@ hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file - case "$host_cpu" in + case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so @@ -2813,12 +3287,10 @@ ;; openbsd*) - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object' + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else - lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; @@ -2939,13 +3411,13 @@ # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl convenience library and # LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-convenience to the configure arguments. Note that LIBLTDL -# and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If -# DIRECTORY is not provided, it is assumed to be `libltdl'. LIBLTDL will -# be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed with -# '${top_srcdir}/' (note the single quotes!). If your package is not -# flat and you're not using automake, define top_builddir and -# top_srcdir appropriately in the Makefiles. +# --enable-ltdl-convenience to the configure arguments. Note that +# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, +# it is assumed to be `libltdl'. LIBLTDL will be prefixed with +# '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' +# (note the single quotes!). If your package is not flat and you're not +# using automake, define top_builddir and top_srcdir appropriately in +# the Makefiles. AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl case $enable_ltdl_convenience in @@ -2964,13 +3436,13 @@ # ----------------------------------- # sets LIBLTDL to the link flags for the libltdl installable library and # LTDLINCL to the include flags for the libltdl header and adds -# --enable-ltdl-install to the configure arguments. Note that LIBLTDL -# and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If -# DIRECTORY is not provided and an installed libltdl is not found, it is -# assumed to be `libltdl'. LIBLTDL will be prefixed with '${top_builddir}/' -# and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single -# quotes!). If your package is not flat and you're not using automake, -# define top_builddir and top_srcdir appropriately in the Makefiles. +# --enable-ltdl-install to the configure arguments. Note that +# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, +# and an installed libltdl is not found, it is assumed to be `libltdl'. +# LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with +# '${top_srcdir}/' (note the single quotes!). If your package is not +# flat and you're not using automake, define top_builddir and top_srcdir +# appropriately in the Makefiles. # In the future, this macro may have to be called after AC_PROG_LIBTOOL. AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl @@ -3008,10 +3480,21 @@ # --------------- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([AC_PROG_CXXCPP]) +AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ])# _LT_AC_LANG_CXX +# _LT_AC_PROG_CXXCPP +# --------------- +AC_DEFUN([_LT_AC_PROG_CXXCPP], +[ +AC_REQUIRE([AC_PROG_CXX]) +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +fi +])# _LT_AC_PROG_CXXCPP # AC_LIBTOOL_F77 # -------------- @@ -3084,6 +3567,10 @@ _LT_AC_SYS_COMPILER +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + # # Check for any special shared library compilation flags. # @@ -3134,7 +3621,7 @@ # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. -case "$host_os" in +case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then @@ -3147,43 +3634,6 @@ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi - ;; - darwin* | rhapsody*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - case "$host_os" in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup' - ;; - esac - fi - ;; - esac - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi ;; esac AC_MSG_RESULT([$enable_shared]) @@ -3209,7 +3659,7 @@ AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++) AC_REQUIRE([AC_PROG_CXX]) -AC_REQUIRE([AC_PROG_CXXCPP]) +AC_REQUIRE([_LT_AC_PROG_CXXCPP]) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(allow_undefined_flag, $1)= @@ -3238,7 +3688,7 @@ _LT_AC_TAGVAR(compiler_lib_search_path, $1)= # Source file extension for C++ test sources. -ac_ext=cc +ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o @@ -3253,6 +3703,10 @@ # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD @@ -3274,7 +3728,7 @@ CC=${CXX-"c++"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC -cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` +_LT_CC_BASENAME([$compiler]) # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately @@ -3381,7 +3835,7 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GXX" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) + case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` @@ -3402,6 +3856,9 @@ fi esac shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi else # not using gcc if test "$host_cpu" = ia64; then @@ -3447,7 +3904,7 @@ # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' ' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds it's shared libraries. + # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi @@ -3461,6 +3918,7 @@ esac ;; + cygwin* | mingw* | pw32*) # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. @@ -3484,65 +3942,76 @@ _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; + darwin* | rhapsody*) + case $host_os in + rhapsody* | darwin1.[[012]]) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' + ;; + *) # Darwin 1.3 on + if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + else + case ${MACOSX_DEPLOYMENT_TARGET} in + 10.[[012]]) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + ;; + 10.*) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' + ;; + esac + fi + ;; + esac + _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_AC_TAGVAR(hardcode_direct, $1)=no + _LT_AC_TAGVAR(hardcode_automatic, $1)=yes + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' + _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - darwin* | rhapsody*) - if test "$GXX" = yes; then - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - case "$host_os" in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' + if test "$GXX" = yes ; then + lt_int_apple_cc_single_mod=no + output_verbose_link_cmd='echo' + if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then + lt_int_apple_cc_single_mod=yes + fi + if test "X$lt_int_apple_cc_single_mod" = Xyes ; then + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup' - ;; - esac + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + fi + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + if test "X$lt_int_apple_cc_single_mod" = Xyes ; then + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + _LT_AC_TAGVAR(ld_shlibs, $1)=no + ;; + esac fi - ;; - esac - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; + ;; dgux*) case $cc_basename in - ec++) + ec++*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - ghcx) + ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no @@ -3553,14 +4022,14 @@ ;; esac ;; - freebsd[12]*) + freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before switch to ELF _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_AC_TAGVAR(ld_shlibs, $1)=yes @@ -3577,11 +4046,11 @@ # location of the library. case $cc_basename in - CC) + CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - aCC) + aCC*) _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -3591,7 +4060,7 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then @@ -3605,7 +4074,7 @@ ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' @@ -3621,7 +4090,7 @@ ;; esac fi - case "$host_cpu" in + case $host_cpu in hppa*64*) _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no @@ -3642,12 +4111,12 @@ esac case $cc_basename in - CC) + CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - aCC) - case "$host_cpu" in + aCC*) + case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; @@ -3668,7 +4137,7 @@ *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then - case "$host_cpu" in + case $host_cpu in ia64*|hppa*64*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; @@ -3686,9 +4155,9 @@ ;; irix5* | irix6*) case $cc_basename in - CC) + CC*) # SGI C++ - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -3699,7 +4168,7 @@ *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi @@ -3712,7 +4181,7 @@ ;; linux*) case $cc_basename in - KCC) + KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file @@ -3737,17 +4206,41 @@ # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; - icpc) + icpc*) # Intel C++ with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; - cxx) + pgCC*) + # Portland Group C++ compiler + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) # Compaq C++ _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' @@ -3778,7 +4271,7 @@ ;; mvs*) case $cc_basename in - cxx) + cxx*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; @@ -3799,9 +4292,25 @@ # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; + openbsd2*) + # C++ shared libraries are fairly broken + _LT_AC_TAGVAR(ld_shlibs, $1)=no + ;; + openbsd*) + _LT_AC_TAGVAR(hardcode_direct, $1)=yes + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd='echo' + ;; osf3*) case $cc_basename in - KCC) + KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file @@ -3817,14 +4326,14 @@ _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; - RCC) + RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - cxx) + cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: @@ -3842,7 +4351,7 @@ *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: @@ -3861,7 +4370,7 @@ ;; osf4* | osf5*) case $cc_basename in - KCC) + KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file @@ -3876,17 +4385,17 @@ # the KAI C++ compiler. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; - RCC) + RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - cxx) + cxx*) _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry $objdir/so_locations -o $lib~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -3905,7 +4414,7 @@ *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: @@ -3929,7 +4438,7 @@ sco*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no case $cc_basename in - CC) + CC*) # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; @@ -3941,12 +4450,12 @@ ;; sunos4*) case $cc_basename in - CC) + CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - lcc) + lcc*) # Lucid # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no @@ -3959,36 +4468,33 @@ ;; solaris*) case $cc_basename in - CC) + CC*) # Sun C++ 4.2, 5.x and Centerline C++ + _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in - solaris2.[0-5] | solaris2.[0-5].*) ;; + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system - # linker. + # linker. We must also pass each convience library through + # to the system linker between allextract/defaultextract. + # The C++ compiler will combine linker options so we + # cannot just pass the convience library names through + # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[[LR]]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is @@ -3996,7 +4502,7 @@ # in the archive. _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; - gcx) + gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' @@ -4039,7 +4545,7 @@ ;; tandem*) case $cc_basename in - NCC) + NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_AC_TAGVAR(ld_shlibs, $1)=no @@ -4145,7 +4651,7 @@ # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. - output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`" + output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in @@ -4221,6 +4727,21 @@ $rm -f confest.$objext +# PORTME: override above test on systems where it is broken +ifelse([$1],[CXX], +[case $host_os in +solaris*) + case $cc_basename in + CC*) + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + _LT_AC_TAGVAR(postdeps,$1)='-lCstd -lCrun' + ;; + esac +esac +]) + case " $_LT_AC_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac @@ -4271,12 +4792,16 @@ # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC -cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` +_LT_CC_BASENAME([$compiler]) AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) @@ -4286,7 +4811,7 @@ # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. -case "$host_os" in +case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then @@ -4295,7 +4820,9 @@ fi ;; aix4* | aix5*) - test "$enable_shared" = yes && enable_static=no + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi ;; esac AC_MSG_RESULT([$enable_shared]) @@ -4346,20 +4873,27 @@ lt_simple_compile_test_code="class foo {}\n" # Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }\n' +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds + AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) AC_LIBTOOL_PROG_COMPILER_PIC($1) AC_LIBTOOL_PROG_CC_C_O($1) @@ -4402,11 +4936,16 @@ # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_AC_SYS_COMPILER +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes AC_LIBTOOL_CONFIG($1) @@ -4542,7 +5081,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -4553,11 +5092,11 @@ SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="$SED -e s/^X//" +Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. -if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= @@ -4588,6 +5127,12 @@ # The host system. host_alias=$host_alias host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo @@ -4664,7 +5209,7 @@ # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) -# Must we lock files when doing compilation ? +# Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? @@ -4938,9 +5483,6 @@ # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' -# Transform the above into a raw symbol and a C symbol. -symxfrm='\1 \2\3 \3' - # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" @@ -4962,6 +5504,13 @@ lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; +linux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDGIRSTW]]' + lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" + fi + ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; @@ -4993,8 +5542,11 @@ # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + # Write the raw and C identifiers. - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no @@ -5158,7 +5710,7 @@ hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) ;; *) @@ -5183,18 +5735,28 @@ ;; chorus*) case $cc_basename in - cxch68) + cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; + darwin*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + case $cc_basename in + xlc*) + _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + esac + ;; dgux*) case $cc_basename in - ec++) + ec++*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; - ghcx) + ghcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; @@ -5202,22 +5764,22 @@ ;; esac ;; - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in - CC) + CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" if test "$host_cpu" != ia64; then _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; - aCC) + aCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -5232,7 +5794,7 @@ ;; irix5* | irix6* | nonstopux*) case $cc_basename in - CC) + CC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. @@ -5243,18 +5805,24 @@ ;; linux*) case $cc_basename in - KCC) + KCC*) # KAI C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; - icpc) + icpc* | ecpc*) # Intel C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; - cxx) + pgCC*) + # Portland Group C++ compiler. + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. @@ -5271,7 +5839,7 @@ ;; mvs*) case $cc_basename in - cxx) + cxx*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) @@ -5282,14 +5850,14 @@ ;; osf3* | osf4* | osf5*) case $cc_basename in - KCC) + KCC*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; - RCC) + RCC*) # Rational C++ 2.4.1 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; - cxx) + cxx*) # Digital/Compaq C++ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha @@ -5305,7 +5873,7 @@ ;; sco*) case $cc_basename in - CC) + CC*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; *) @@ -5314,13 +5882,13 @@ ;; solaris*) case $cc_basename in - CC) + CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; - gcx) + gcx*) # Green Hills C++ Compiler _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; @@ -5330,12 +5898,12 @@ ;; sunos4*) case $cc_basename in - CC) + CC*) # Sun C++ 4.x _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; - lcc) + lcc*) # Lucid _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; @@ -5345,7 +5913,7 @@ ;; tandem*) case $cc_basename in - NCC) + NCC*) # NonStop-UX NCC 3.20 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; @@ -5416,7 +5984,7 @@ hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -5442,6 +6010,16 @@ _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; + darwin*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + case $cc_basename in + xlc*) + _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + esac + ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being @@ -5453,7 +6031,7 @@ _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -5477,12 +6055,19 @@ ;; linux*) - case $CC in + case $cc_basename in icc* | ecc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; ccc*) _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. @@ -5503,9 +6088,14 @@ ;; solaris*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac ;; sunos4*) @@ -5527,6 +6117,11 @@ fi ;; + unicos*) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + uts4*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' @@ -5554,7 +6149,7 @@ [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi -case "$host_os" in +case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= @@ -5587,7 +6182,7 @@ _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' + _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; linux*) _LT_AC_TAGVAR(link_all_deplibs, $1)=no @@ -5633,7 +6228,8 @@ # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= - + # Just being paranoid about ensuring that cc_basename is set. + _LT_CC_BASENAME([$compiler]) case $host_os in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time @@ -5653,6 +6249,27 @@ # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>/dev/null` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) @@ -5703,7 +6320,7 @@ _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_AC_TAGVAR(always_export_symbols, $1)=no _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' + _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' @@ -5717,7 +6334,39 @@ fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else - ld_shlibs=no + _LT_AC_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + linux*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + tmp_addflag= + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + esac + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test $supports_anon_versioning = yes; then + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + $echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + _LT_AC_TAGVAR(link_all_deplibs, $1)=no + else + _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; @@ -5759,32 +6408,6 @@ _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; - linux*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_cmds, $1)="$tmp_archive_cmds" - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ [01].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - if test $supports_anon_versioning = yes; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ -cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -$echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - else - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$tmp_archive_cmds" - fi - _LT_AC_TAGVAR(link_all_deplibs, $1)=no - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' @@ -5795,16 +6418,11 @@ ;; esac - if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = yes; then - runpath_var=LD_RUN_PATH - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - fi + if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) @@ -5868,7 +6486,7 @@ _LT_AC_TAGVAR(link_all_deplibs, $1)=yes if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) + case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` @@ -5889,6 +6507,9 @@ fi esac shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi else # not using gcc if test "$host_cpu" = ia64; then @@ -5933,7 +6554,7 @@ # Exported symbols can be pulled into shared objects from archives _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' ' _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes - # This is similar to how AIX traditionally builds it's shared libraries. + # This is similar to how AIX traditionally builds its shared libraries. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi @@ -5947,7 +6568,7 @@ _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; - bsdi4*) + bsdi[[45]]*) _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; @@ -5968,57 +6589,57 @@ _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path='`cygpath -w "$srcfile"`' + _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) - if test "$GXX" = yes ; then - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no - case "$host_os" in - rhapsody* | darwin1.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[[012]]) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress' - ;; - 10.*) - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup' - ;; - esac - fi - ;; + case $host_os in + rhapsody* | darwin1.[[012]]) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' + ;; + *) # Darwin 1.3 on + if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + else + case ${MACOSX_DEPLOYMENT_TARGET} in + 10.[[012]]) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + ;; + 10.*) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' + ;; + esac + fi + ;; esac - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_automatic, $1)=yes _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' _LT_AC_TAGVAR(link_all_deplibs, $1)=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else - _LT_AC_TAGVAR(ld_shlibs, $1)=no + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + _LT_AC_TAGVAR(ld_shlibs, $1)=no + ;; + esac fi ;; @@ -6052,7 +6673,7 @@ ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_AC_TAGVAR(hardcode_direct, $1)=yes @@ -6077,7 +6698,7 @@ hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; @@ -6086,7 +6707,7 @@ ;; esac else - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; @@ -6096,7 +6717,7 @@ esac fi if test "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*) _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' @@ -6163,6 +6784,7 @@ _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else @@ -6208,7 +6830,7 @@ _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' + $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' @@ -6227,10 +6849,12 @@ solaris*) _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' if test "$GCC" = yes; then + wlarc='${wl}' _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else + wlarc='' _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' @@ -6239,8 +6863,18 @@ _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; - *) # Supported since Solaris 2.6 (maybe 2.5.1?) - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; + *) + # The compiler driver will combine linker options so we + # cannot just pass the convience library names through + # without $wl, iff we do not link with $LD. + # Luckily, gcc supports the same syntax we need for Sun Studio. + # Supported since Solaris 2.6 (maybe 2.5.1?) + case $wlarc in + '') + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; + *) + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; + esac ;; esac _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; @@ -6501,7 +7135,7 @@ # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && break + test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in @@ -6526,545 +7160,301 @@ fi done done -SED=$lt_cv_path_SED ]) +SED=$lt_cv_path_SED AC_MSG_RESULT([$SED]) ]) -# AM_CONDITIONAL -*- Autoconf -*- - -# Copyright 1997, 2000, 2001 Free Software Foundation, Inc. - +# 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, 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. - +# 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. - -# serial 5 - -AC_PREREQ(2.52) +# 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. -# AM_CONDITIONAL(NAME, SHELL-CONDITION) -# ------------------------------------- -# Define a conditional. -AC_DEFUN([AM_CONDITIONAL], -[ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], - [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE]) -AC_SUBST([$1_FALSE]) -if $2; then - $1_TRUE= - $1_FALSE='#' -else - $1_TRUE='#' - $1_FALSE= +# 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 -AC_CONFIG_COMMANDS_PRE( -[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then - AC_MSG_ERROR([conditional "$1" was never defined. -Usually this means the macro was only invoked conditionally.]) -fi])]) - -# Do all the work for Automake. -*- Autoconf -*- +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 -# This macro actually does too much some checks are only needed if -# your package does certain things. But this isn't really a big deal. +# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# +# Check to see whether a particular set of modules exists. Similar +# to PKG_CHECK_MODULES(), but does not set variables or print errors. +# +# +# Similar to PKG_CHECK_MODULES, make sure that the first instance of +# this or PKG_CHECK_MODULES is called, or make sure to call +# PKG_CHECK_EXISTS manually +# -------------------------------------------------------------- +AC_DEFUN([PKG_CHECK_EXISTS], +[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl +if test -n "$PKG_CONFIG" && \ + AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then + m4_ifval([$2], [$2], [:]) +m4_ifvaln([$3], [else + $3])dnl +fi]) -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. -# 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, 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. - -# serial 10 - -AC_PREREQ([2.54]) - -# Autoconf 2.50 wants to disallow AM_ names. We explicitly allow -# the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl - -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) -# AM_INIT_AUTOMAKE([OPTIONS]) -# ----------------------------------------------- -# The call with PACKAGE and VERSION arguments is the old style -# call (pre autoconf-2.50), which is being phased out. PACKAGE -# and VERSION should now be passed to AC_INIT and removed from -# the call to AM_INIT_AUTOMAKE. -# We support both call styles for the transition. After -# the next Automake release, Autoconf can make the AC_INIT -# arguments mandatory, and then we can depend on a new Autoconf -# release and drop the old call support. -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl - AC_REQUIRE([AC_PROG_INSTALL])dnl -# test to see if srcdir already configured -if test "`cd $srcdir && pwd`" != "`pwd`" && - test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi -AC_SUBST([CYGPATH_W]) - -# Define the identity of the package. -dnl Distinguish between old-style and new-style calls. -m4_ifval([$2], -[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -[_AM_SET_OPTIONS([$1])dnl - AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl - AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl - -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl +# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) +# --------------------------------------------- +m4_define([_PKG_CONFIG], +[if test -n "$PKG_CONFIG"; then + PKG_CHECK_EXISTS([$3], + [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], + [pkg_failed=yes]) +else + pkg_failed=untried +fi[]dnl +])# _PKG_CONFIG -# Some tools Automake needs. -AC_REQUIRE([AM_SANITY_CHECK])dnl -AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) -AM_MISSING_PROG(AUTOCONF, autoconf) -AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) -AM_MISSING_PROG(AUTOHEADER, autoheader) -AM_MISSING_PROG(MAKEINFO, makeinfo) -AM_MISSING_PROG(AMTAR, tar) -AM_PROG_INSTALL_SH -AM_PROG_INSTALL_STRIP -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([AC_PROG_MAKE_SET])dnl -AC_REQUIRE([AM_SET_LEADING_DOT])dnl +# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], +# [ACTION-IF-NOT-FOUND]) +# +# +# Note that if there is a possibility the first call to +# PKG_CHECK_MODULES might not happen, you should be sure to include an +# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac +# +# +# -------------------------------------------------------------- +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 -_AM_IF_OPTION([no-dependencies],, -[AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -]) -]) +pkg_failed=no +AC_MSG_CHECKING([for $1]) +_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) +_PKG_CONFIG([$1][_LIBS], [libs], [$2]) -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. +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 -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $1 | $1:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) + 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. -# Copyright 2002 Free Software Foundation, Inc. +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. -# 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, or (at your option) -# any later version. +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. -# 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. +To get pkg-config, see .])], + [$4]) +else + $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS + $1[]_LIBS=$pkg_cv_[]$1[]_LIBS + AC_MSG_RESULT([yes]) + ifelse([$3], , :, [$3]) +fi[]dnl +])# PKG_CHECK_MODULES -# 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 +# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. -AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"]) +AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], - [AM_AUTOMAKE_VERSION([1.7.9])]) + [AM_AUTOMAKE_VERSION([1.9.6])]) -# Helper functions for option handling. -*- Autoconf -*- +# Figure out how to run the assembler. -*- Autoconf -*- -# Copyright 2001, 2002 Free Software Foundation, Inc. - -# 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, or (at your option) -# any later version. +# Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# 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. +# serial 4 -# 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. +# AM_PROG_AS +# ---------- +AC_DEFUN([AM_PROG_AS], +[# By default we simply use the C compiler to build assembly code. +AC_REQUIRE([AC_PROG_CC]) +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS +AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)]) +AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)]) +]) -# serial 2 +# AM_AUX_DIR_EXPAND -*- Autoconf -*- -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# _AM_SET_OPTION(NAME) -# ------------------------------ -# Set option NAME. Presently that only means defining a flag for this option. -AC_DEFUN([_AM_SET_OPTION], -[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. -# _AM_SET_OPTIONS(OPTIONS) -# ---------------------------------- -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) -# ------------------------------------------- -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -AC_DEFUN([_AM_IF_OPTION], -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) +# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005 +# Free Software Foundation, Inc. # -# Check to make sure that the build environment is sane. -# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc. +# serial 4 -# 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, or (at your option) -# any later version. +# This was merged into AC_PROG_CC in Autoconf. -# 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. +AU_DEFUN([AM_PROG_CC_STDC], +[AC_PROG_CC +AC_DIAGNOSE([obsolete], [$0: + your code should no longer depend upon `am_cv_prog_cc_stdc', but upon + `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when + you adjust the code. You can also remove the above call to + AC_PROG_CC if you already called it elsewhere.]) +am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc +]) +AU_DEFUN([fp_PROG_CC_STDC]) -# 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. +# AM_CONDITIONAL -*- Autoconf -*- -# serial 3 +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# AM_SANITY_CHECK -# --------------- -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) -# Just in case -sleep 1 -echo timestamp > conftest.file -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` - fi - rm -f conftest.file - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken -alias in your environment]) - fi - - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -AC_MSG_RESULT(yes)]) - -# -*- Autoconf -*- - - -# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc. - -# 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, 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. - -# serial 3 +# serial 7 -# AM_MISSING_PROG(NAME, PROGRAM) -# ------------------------------ -AC_DEFUN([AM_MISSING_PROG], -[AC_REQUIRE([AM_MISSING_HAS_RUN]) -$1=${$1-"${am_missing_run}$2"} -AC_SUBST($1)]) - - -# AM_MISSING_HAS_RUN -# ------------------ -# Define MISSING if not defined so far and test if it supports --run. -# If it does, set am_missing_run to use it, otherwise, to nothing. -AC_DEFUN([AM_MISSING_HAS_RUN], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE]) +AC_SUBST([$1_FALSE]) +if $2; then + $1_TRUE= + $1_FALSE='#' else - am_missing_run= - AC_MSG_WARN([`missing' script is too old or missing]) + $1_TRUE='#' + $1_FALSE= fi -]) - -# AM_AUX_DIR_EXPAND - -# Copyright 2001 Free Software Foundation, Inc. - -# 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, 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. +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) -# 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. -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets -# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to -# `$srcdir', `$srcdir/..', or `$srcdir/../..'. -# -# Of course, Automake must honor this variable whenever it calls a -# tool from the auxiliary directory. The problem is that $srcdir (and -# therefore $ac_aux_dir as well) can be either absolute or relative, -# depending on how configure is run. This is pretty annoying, since -# it makes $ac_aux_dir quite unusable in subdirectories: in the top -# source directory, any form will work fine, but in subdirectories a -# relative path needs to be adjusted first. -# -# $ac_aux_dir/missing -# fails when called from a subdirectory if $ac_aux_dir is relative -# $top_srcdir/$ac_aux_dir/missing -# fails if $ac_aux_dir is absolute, -# fails when called from a subdirectory in a VPATH build with -# a relative $ac_aux_dir -# -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir -# are both prefixed by $srcdir. In an in-source build this is usually -# harmless because $srcdir is `.', but things will broke when you -# start a VPATH build or use an absolute $srcdir. -# -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, -# iff we strip the leading $srcdir from $ac_aux_dir. That would be: -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` -# and then we would define $MISSING as -# MISSING="\${SHELL} $am_aux_dir/missing" -# This will work as long as MISSING is not called from configure, because -# unfortunately $(top_srcdir) has no meaning in configure. -# However there are other variables, like CC, which are often used in -# configure, and could therefore not use this "fixed" $ac_aux_dir. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. # -# Another solution, used here, is to always expand $ac_aux_dir to an -# absolute PATH. The drawback is that using absolute paths prevent a -# configured tree to be moved without reconfiguration. - -# Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50]) - -AC_DEFUN([AM_AUX_DIR_EXPAND], [ -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` -]) - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. - -# Copyright 2001 Free Software Foundation, Inc. - -# 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, 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. - -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -install_sh=${install_sh-"$am_aux_dir/install-sh"} -AC_SUBST(install_sh)]) - -# AM_PROG_INSTALL_STRIP - -# Copyright 2001 Free Software Foundation, Inc. - -# 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, 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. - -# One issue with vendor `install' (even GNU) is that you can't -# specify the program used to strip binaries. This is especially -# annoying in cross-compiling environments, where the build's strip -# is unlikely to handle the host's binaries. -# Fortunately install-sh will honor a STRIPPROG variable, so we -# always use install-sh in `make install-strip', and initialize -# STRIPPROG with the value of the STRIP variable (set by the user). -AC_DEFUN([AM_PROG_INSTALL_STRIP], -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -dnl Don't test for $cross_compiling = yes, because it might be `maybe'. -if test "$cross_compiling" != no; then - AC_CHECK_TOOL([STRIP], [strip], :) -fi -INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# -*- Autoconf -*- -# Copyright (C) 2003 Free Software Foundation, Inc. - -# 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, 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. - -# serial 1 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - -# serial 5 -*- Autoconf -*- - -# Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. - -# 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, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. +# serial 8 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, @@ -7073,7 +7463,6 @@ # CC etc. in the Makefile, will ask for an AC_PROG_CC use... - # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. @@ -7132,7 +7521,9 @@ : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c - : > sub/conftst$i.h + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf @@ -7160,9 +7551,14 @@ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings - # (even with -Werror). So we grep stderr for any message - # that says an option was ignored. - if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi @@ -7196,8 +7592,8 @@ # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, -[ --disable-dependency-tracking Speeds up one-time builds - --enable-dependency-tracking Do not reject slow dependency extractors]) +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' @@ -7206,26 +7602,16 @@ AC_SUBST([AMDEPBACKSLASH]) ]) -# Generate code to set up dependency tracking. -*- Autoconf -*- - -# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc. - -# 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, 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. +# Generate code to set up dependency tracking. -*- Autoconf -*- -# 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. +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -#serial 2 +#serial 3 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ @@ -7244,27 +7630,21 @@ else continue fi - grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue - # Extract the definition of DEP_FILES from the Makefile without - # running `make'. - DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"` + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n -e '/^U = / s///p' < "$mf"` - test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" - # We invoke sed twice because it is the simplest approach to - # changing $(DEPDIR) to its actual value in the expansion. - for file in `sed -n -e ' - /^DEP_FILES = .*\\\\$/ { - s/^DEP_FILES = // - :loop - s/\\\\$// - p - n - /\\\\$/ b loop - p - } - /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue @@ -7290,31 +7670,210 @@ [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) -# Check to see how 'make' treats includes. -*- Autoconf -*- +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. +# serial 8 -# 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, or (at your option) -# any later version. +# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. +AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) -# 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. +# Do all the work for Automake. -*- Autoconf -*- -# 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. +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# serial 2 +# serial 12 -# AM_MAKE_INCLUDE() -# ----------------- -# Check to see how make treats includes. -AC_DEFUN([AM_MAKE_INCLUDE], +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.58])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +# test to see if srcdir already configured +if test "`cd $srcdir && pwd`" != "`pwd`" && + test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AM_PROG_INSTALL_SH +AM_PROG_INSTALL_STRIP +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +]) +]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $1 | $1:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +install_sh=${install_sh-"$am_aux_dir/install-sh"} +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Add --enable-maintainer-mode option to configure. -*- Autoconf -*- +# From Jim Meyering + +# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 4 + +AC_DEFUN([AM_MAINTAINER_MODE], +[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) + dnl maintainer-mode is disabled by default + AC_ARG_ENABLE(maintainer-mode, +[ --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer], + USE_MAINTAINER_MODE=$enableval, + USE_MAINTAINER_MODE=no) + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) + AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) + MAINT=$MAINTAINER_MODE_TRUE + AC_SUBST(MAINT)dnl +] +) + +AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @@ -7353,1350 +7912,492 @@ rm -f confinc confmf ]) -# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*- - -# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc. - -# 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, 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. - -AC_PREREQ([2.52]) - -# serial 6 - -# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. -AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) - -# Figure out how to run the assembler. -*- Autoconf -*- - -# serial 2 - -# Copyright 2001 Free Software Foundation, Inc. - -# 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, 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. +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# AM_PROG_AS -# ---------- -AC_DEFUN([AM_PROG_AS], -[# By default we simply use the C compiler to build assembly code. -AC_REQUIRE([AC_PROG_CC]) -: ${CCAS='$(CC)'} -# Set ASFLAGS if not already set. -: ${CCASFLAGS='$(CFLAGS)'} -AC_SUBST(CCAS) -AC_SUBST(CCASFLAGS)]) +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# Add --enable-maintainer-mode option to configure. -# From Jim Meyering +# serial 4 -# Copyright 1996, 1998, 2000, 2001, 2002 Free Software Foundation, Inc. +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) -# 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, 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. +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) -# 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. +# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# serial 2 +# AM_PROG_MKDIR_P +# --------------- +# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. +# +# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories +# created by `make install' are always world readable, even if the +# installer happens to have an overly restrictive umask (e.g. 077). +# This was a mistake. There are at least two reasons why we must not +# use `-m 0755': +# - it causes special bits like SGID to be ignored, +# - it may be too restrictive (some setups expect 775 directories). +# +# Do not use -m 0755 and let people choose whatever they expect by +# setting umask. +# +# We cannot accept any implementation of `mkdir' that recognizes `-p'. +# Some implementations (such as Solaris 8's) are not thread-safe: if a +# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' +# concurrently, both version can detect that a/ is missing, but only +# one can create it and the other will error out. Consequently we +# restrict ourselves to GNU make (using the --version option ensures +# this.) +AC_DEFUN([AM_PROG_MKDIR_P], +[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) + # where $(somedir) is conditionally defined. However this is wrong + # for two reasons: + # 1. if the package is installed by a user who cannot write `.' + # make install will fail, + # 2. the above comment should most certainly read + # $(mkdir_p) $(DESTDIR)$(somedir) + # so it does not work when $(somedir) is undefined and + # $(DESTDIR) is not. + # To support the latter case, we have to write + # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), + # so the `.' trick is pointless. + mkdir_p='mkdir -p --' +else + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + for d in ./-p ./--version; + do + test -d $d && rmdir $d + done + # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. + if test -f "$ac_aux_dir/mkinstalldirs"; then + mkdir_p='$(mkinstalldirs)' + else + mkdir_p='$(install_sh) -d' + fi +fi +AC_SUBST([mkdir_p])]) -AC_DEFUN([AM_MAINTAINER_MODE], -[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) - dnl maintainer-mode is disabled by default - AC_ARG_ENABLE(maintainer-mode, -[ --enable-maintainer-mode enable make rules and dependencies not useful - (and sometimes confusing) to the casual installer], - USE_MAINTAINER_MODE=$enableval, - USE_MAINTAINER_MODE=no) - AC_MSG_RESULT([$USE_MAINTAINER_MODE]) - AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) - MAINT=$MAINTAINER_MODE_TRUE - AC_SUBST(MAINT)dnl -] -) - -AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) - -# isc-posix.m4 serial 2 (gettext-0.11.2) -dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -# This file is not needed with autoconf-2.53 and newer. Remove it in 2005. - -# This test replaces the one in autoconf. -# Currently this macro should have the same name as the autoconf macro -# because gettext's gettext.m4 (distributed in the automake package) -# still uses it. Otherwise, the use in gettext.m4 makes autoheader -# give these diagnostics: -# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX -# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX - -undefine([AC_ISC_POSIX]) - -AC_DEFUN([AC_ISC_POSIX], - [ - dnl This test replaces the obsolescent AC_ISC_POSIX kludge. - AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) - ] -) - - -# Copyright 1996, 1997, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. - -# 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, 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. - -# serial 2 - -# @defmac AC_PROG_CC_STDC -# @maindex PROG_CC_STDC -# @ovindex CC -# If the C compiler in not in ANSI C mode by default, try to add an option -# to output variable @code{CC} to make it so. This macro tries various -# options that select ANSI C on some system or another. It considers the -# compiler to be in ANSI C mode if it handles function prototypes correctly. -# -# If you use this macro, you should check after calling it whether the C -# compiler has been set to accept ANSI C; if not, the shell variable -# @code{am_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source -# code in ANSI C, you can make an un-ANSIfied copy of it by using the -# program @code{ansi2knr}, which comes with Ghostscript. -# @end defmac - -AC_DEFUN([AM_PROG_CC_STDC], -[AC_REQUIRE([AC_PROG_CC]) -AC_BEFORE([$0], [AC_C_INLINE]) -AC_BEFORE([$0], [AC_C_CONST]) -dnl Force this before AC_PROG_CPP. Some cpp's, eg on HPUX, require -dnl a magic option to avoid problems with ANSI preprocessor commands -dnl like #elif. -dnl FIXME: can't do this because then AC_AIX won't work due to a -dnl circular dependency. -dnl AC_BEFORE([$0], [AC_PROG_CPP]) -AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C]) -AC_CACHE_VAL(am_cv_prog_cc_stdc, -[am_cv_prog_cc_stdc=no -ac_save_CC="$CC" -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - AC_TRY_COMPILE( -[#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -], [ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; -], -[am_cv_prog_cc_stdc="$ac_arg"; break]) -done -CC="$ac_save_CC" -]) -if test -z "$am_cv_prog_cc_stdc"; then - AC_MSG_RESULT([none needed]) -else - AC_MSG_RESULT([$am_cv_prog_cc_stdc]) -fi -case "x$am_cv_prog_cc_stdc" in - x|xno) ;; - *) CC="$CC $am_cv_prog_cc_stdc" ;; -esac -]) - -AU_DEFUN([fp_PROG_CC_STDC], [AM_PROG_CC_STDC]) - - -dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml]) -# serial 2 IT_PROG_INTLTOOL -AC_DEFUN([IT_PROG_INTLTOOL], -[ - -if test -n "$1"; then - AC_MSG_CHECKING(for intltool >= $1) - - INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ printf "%d", $[1] * 100 + $[2]; }'` - INTLTOOL_APPLIED_VERSION=`awk -F\" '/\\$VERSION / { printf $[2]; }' < ${ac_aux_dir}/intltool-update.in` - changequote({{,}}) - INTLTOOL_APPLIED_VERSION_AS_INT=`awk -F\" '/\\$VERSION / { split(${{2}}, VERSION, "."); printf "%d\n", VERSION[1] * 100 + VERSION[2];}' < ${ac_aux_dir}/intltool-update.in` - changequote([,]) - - if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT"; then - AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found]) - else - AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found. Your intltool is too old. You need intltool $1 or later.]) - exit 1 - fi -fi - - INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' -INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@' - INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' -INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' - INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' - -AC_SUBST(INTLTOOL_DESKTOP_RULE) -AC_SUBST(INTLTOOL_DIRECTORY_RULE) -AC_SUBST(INTLTOOL_KEYS_RULE) -AC_SUBST(INTLTOOL_PROP_RULE) -AC_SUBST(INTLTOOL_OAF_RULE) -AC_SUBST(INTLTOOL_PONG_RULE) -AC_SUBST(INTLTOOL_SERVER_RULE) -AC_SUBST(INTLTOOL_SHEET_RULE) -AC_SUBST(INTLTOOL_SOUNDLIST_RULE) -AC_SUBST(INTLTOOL_UI_RULE) -AC_SUBST(INTLTOOL_XAM_RULE) -AC_SUBST(INTLTOOL_KBD_RULE) -AC_SUBST(INTLTOOL_XML_RULE) -AC_SUBST(INTLTOOL_XML_NOMERGE_RULE) -AC_SUBST(INTLTOOL_CAVES_RULE) -AC_SUBST(INTLTOOL_SCHEMAS_RULE) -AC_SUBST(INTLTOOL_THEME_RULE) - -# Use the tools built into the package, not the ones that are installed. - -INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract' -INTLTOOL_MERGE='$(top_builddir)/intltool-merge' -INTLTOOL_UPDATE='$(top_builddir)/intltool-update' - -AC_SUBST(INTLTOOL_EXTRACT) -AC_SUBST(INTLTOOL_MERGE) -AC_SUBST(INTLTOOL_UPDATE) - -AC_PATH_PROG(INTLTOOL_PERL, perl) -if test -z "$INTLTOOL_PERL"; then - AC_MSG_ERROR([perl not found; required for intltool]) -fi -if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then - AC_MSG_ERROR([perl 5.x required for intltool]) -fi -if test "x$2" != "xno-xml"; then - AC_MSG_CHECKING([for XML::Parser]) - if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then - AC_MSG_RESULT([ok]) - else - AC_MSG_ERROR([XML::Parser perl module is required for intltool]) - fi -fi - -AC_PATH_PROG(INTLTOOL_ICONV, iconv, iconv) -AC_PATH_PROG(INTLTOOL_MSGFMT, msgfmt, msgfmt) -AC_PATH_PROG(INTLTOOL_MSGMERGE, msgmerge, msgmerge) -AC_PATH_PROG(INTLTOOL_XGETTEXT, xgettext, xgettext) - -# Remove file type tags (using []) from po/POTFILES. - -ifdef([AC_DIVERSION_ICMDS],[ - AC_DIVERT_PUSH(AC_DIVERSION_ICMDS) - changequote(,) - mv -f po/POTFILES po/POTFILES.tmp - sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES - rm -f po/POTFILES.tmp - changequote([,]) - AC_DIVERT_POP() -],[ - ifdef([AC_CONFIG_COMMANDS_PRE],[ - AC_CONFIG_COMMANDS_PRE([ - changequote(,) - mv -f po/POTFILES po/POTFILES.tmp - sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES - rm -f po/POTFILES.tmp - changequote([,]) - ]) - ]) - -if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then - # Keeping the `.' argument allows $(mkdir_p) to be used without - # argument. Indeed, we sometimes output rules like - # $(mkdir_p) $(somedir) - # where $(somedir) is conditionally defined. - # (`test -n '$(somedir)' && $(mkdir_p) $(somedir)' is a more - # expensive solution, as it forces Make to start a sub-shell.) - mkdir_p='mkdir -p -- .' -else - # On NextStep and OpenStep, the `mkdir' command does not - # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already - # exists. - for d in ./-p ./--version; - do - test -d $d && rmdir $d - done - # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. - if test -f "$ac_aux_dir/mkinstalldirs"; then - mkdir_p='$(mkinstalldirs)' - else - mkdir_p='$(install_sh) -d' - fi -fi -AC_SUBST([mkdir_p]) -]) - -# Manually sed perl in so people don't have to put the intltool scripts in AC_OUTPUT. - -AC_CONFIG_COMMANDS([intltool], [ - -intltool_edit="-e 's#@INTLTOOL_EXTRACT@#`pwd`/intltool-extract#g' \ - -e 's#@INTLTOOL_ICONV@#${INTLTOOL_ICONV}#g' \ - -e 's#@INTLTOOL_MSGFMT@#${INTLTOOL_MSGFMT}#g' \ - -e 's#@INTLTOOL_MSGMERGE@#${INTLTOOL_MSGMERGE}#g' \ - -e 's#@INTLTOOL_XGETTEXT@#${INTLTOOL_XGETTEXT}#g' \ - -e 's#@INTLTOOL_PERL@#${INTLTOOL_PERL}#g'" - -eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-extract.in \ - > intltool-extract.out -if cmp -s intltool-extract intltool-extract.out 2>/dev/null; then - rm -f intltool-extract.out -else - mv -f intltool-extract.out intltool-extract -fi -chmod ugo+x intltool-extract -chmod u+w intltool-extract - -eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-merge.in \ - > intltool-merge.out -if cmp -s intltool-merge intltool-merge.out 2>/dev/null; then - rm -f intltool-merge.out -else - mv -f intltool-merge.out intltool-merge -fi -chmod ugo+x intltool-merge -chmod u+w intltool-merge - -eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-update.in \ - > intltool-update.out -if cmp -s intltool-update intltool-update.out 2>/dev/null; then - rm -f intltool-update.out -else - mv -f intltool-update.out intltool-update -fi -chmod ugo+x intltool-update -chmod u+w intltool-update - -], INTLTOOL_PERL='${INTLTOOL_PERL}' ac_aux_dir=${ac_aux_dir} -INTLTOOL_EXTRACT='${INTLTOOL_EXTRACT}' ICONV='${INTLTOOL_ICONV}' -MSGFMT='${INTLTOOL_MSGFMT}' MSGMERGE='${INTLTOOL_MSGMERGE}' -XGETTEXT='${INTLTOOL_XGETTEXT}') - -]) - -# deprecated macros -AC_DEFUN([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL($@)]) - - -# Copyright (C) 1995-2002 Free Software Foundation, Inc. -# Copyright (C) 2001-2003,2004 Red Hat, Inc. -# -# This file is free software, distributed under the terms of the GNU -# General Public License. As a special exception to the GNU General -# Public License, this file may be distributed as part of a program -# that contains a configuration script generated by Autoconf, under -# the same distribution terms as the rest of that program. -# -# This file can be copied and used freely without restrictions. It can -# be used in projects which are not available under the GNU Public License -# but which still want to provide support for the GNU gettext functionality. -# -# Macro to add for using GNU gettext. -# Ulrich Drepper , 1995, 1996 -# -# Modified to never use included libintl. -# Owen Taylor , 12/15/1998 -# -# Major rework to remove unused code -# Owen Taylor , 12/11/2002 -# -# Added better handling of ALL_LINGUAS from GNU gettext version -# written by Bruno Haible, Owen Taylor 5/30/3002 -# -# Modified to require ngettext -# Matthias Clasen 08/06/2004 -# -# We need this here as well, since someone might use autoconf-2.5x -# to configure GLib then an older version to configure a package -# using AM_GLIB_GNU_GETTEXT -AC_PREREQ(2.53) - -dnl -dnl We go to great lengths to make sure that aclocal won't -dnl try to pull in the installed version of these macros -dnl when running aclocal in the glib directory. -dnl -m4_copy([AC_DEFUN],[glib_DEFUN]) -m4_copy([AC_REQUIRE],[glib_REQUIRE]) -dnl -dnl At the end, if we're not within glib, we'll define the public -dnl definitions in terms of our private definitions. -dnl - -# GLIB_LC_MESSAGES -#-------------------- -glib_DEFUN([GLIB_LC_MESSAGES], - [AC_CHECK_HEADERS([locale.h]) - if test $ac_cv_header_locale_h = yes; then - AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, - [AC_TRY_LINK([#include ], [return LC_MESSAGES], - am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) - if test $am_cv_val_LC_MESSAGES = yes; then - AC_DEFINE(HAVE_LC_MESSAGES, 1, - [Define if your file defines LC_MESSAGES.]) - fi - fi]) - -# GLIB_PATH_PROG_WITH_TEST -#---------------------------- -dnl GLIB_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, -dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) -glib_DEFUN([GLIB_PATH_PROG_WITH_TEST], -[# Extract the first word of "$2", so it can be a program name with args. -set dummy $2; ac_word=[$]2 -AC_MSG_CHECKING([for $ac_word]) -AC_CACHE_VAL(ac_cv_path_$1, -[case "[$]$1" in - /*) - ac_cv_path_$1="[$]$1" # Let the user override the test with a path. - ;; - *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" - for ac_dir in ifelse([$5], , $PATH, [$5]); do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then - if [$3]; then - ac_cv_path_$1="$ac_dir/$ac_word" - break - fi - fi - done - IFS="$ac_save_ifs" -dnl If no 4th arg is given, leave the cache variable unset, -dnl so AC_PATH_PROGS will keep looking. -ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" -])dnl - ;; -esac])dnl -$1="$ac_cv_path_$1" -if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then - AC_MSG_RESULT([$]$1) -else - AC_MSG_RESULT(no) -fi -AC_SUBST($1)dnl -]) - -# GLIB_WITH_NLS -#----------------- -glib_DEFUN([GLIB_WITH_NLS], - dnl NLS is obligatory - [USE_NLS=yes - AC_SUBST(USE_NLS) - - gt_cv_have_gettext=no - - CATOBJEXT=NONE - XGETTEXT=: - INTLLIBS= - - AC_CHECK_HEADER(libintl.h, - [gt_cv_func_dgettext_libintl="no" - libintl_extra_libs="" - - # - # First check in libc - # - AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc, - [AC_TRY_LINK([ -#include -], - [return !ngettext ("","", 1)], - gt_cv_func_ngettext_libc=yes, - gt_cv_func_ngettext_libc=no) - ]) - - if test "$gt_cv_func_ngettext_libc" = "yes" ; then - AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, - [AC_TRY_LINK([ -#include -], - [return !dgettext ("","")], - gt_cv_func_dgettext_libc=yes, - gt_cv_func_dgettext_libc=no) - ]) - fi - - if test "$gt_cv_func_ngettext_libc" = "yes" ; then - AC_CHECK_FUNCS(bind_textdomain_codeset) - fi - - # - # If we don't have everything we want, check in libintl - # - if test "$gt_cv_func_dgettext_libc" != "yes" \ - || test "$gt_cv_func_ngettext_libc" != "yes" \ - || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then - - AC_CHECK_LIB(intl, bindtextdomain, - [AC_CHECK_LIB(intl, ngettext, - [AC_CHECK_LIB(intl, dgettext, - gt_cv_func_dgettext_libintl=yes)])]) - - if test "$gt_cv_func_dgettext_libintl" != "yes" ; then - AC_MSG_CHECKING([if -liconv is needed to use gettext]) - AC_MSG_RESULT([]) - AC_CHECK_LIB(intl, ngettext, - [AC_CHECK_LIB(intl, dcgettext, - [gt_cv_func_dgettext_libintl=yes - libintl_extra_libs=-liconv], - :,-liconv)], - :,-liconv) - fi - - # - # If we found libintl, then check in it for bind_textdomain_codeset(); - # we'll prefer libc if neither have bind_textdomain_codeset(), - # and both have dgettext and ngettext - # - if test "$gt_cv_func_dgettext_libintl" = "yes" ; then - glib_save_LIBS="$LIBS" - LIBS="$LIBS -lintl $libintl_extra_libs" - unset ac_cv_func_bind_textdomain_codeset - AC_CHECK_FUNCS(bind_textdomain_codeset) - LIBS="$glib_save_LIBS" - - if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then - gt_cv_func_dgettext_libc=no - else - if test "$gt_cv_func_dgettext_libc" = "yes" \ - && test "$gt_cv_func_ngettext_libc" = "yes"; then - gt_cv_func_dgettext_libintl=no - fi - fi - fi - fi - - if test "$gt_cv_func_dgettext_libc" = "yes" \ - || test "$gt_cv_func_dgettext_libintl" = "yes"; then - gt_cv_have_gettext=yes - fi - - if test "$gt_cv_func_dgettext_libintl" = "yes"; then - INTLLIBS="-lintl $libintl_extra_libs" - fi - - if test "$gt_cv_have_gettext" = "yes"; then - AC_DEFINE(HAVE_GETTEXT,1, - [Define if the GNU gettext() function is already present or preinstalled.]) - GLIB_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep 'dv '`"], no)dnl - if test "$MSGFMT" != "no"; then - glib_save_LIBS="$LIBS" - LIBS="$LIBS $INTLLIBS" - AC_CHECK_FUNCS(dcgettext) - AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) - GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, - [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :) - AC_TRY_LINK(, [extern int _nl_msg_cat_cntr; - return _nl_msg_cat_cntr], - [CATOBJEXT=.gmo - DATADIRNAME=share], - [case $host in - *-*-solaris*) - dnl On Solaris, if bind_textdomain_codeset is in libc, - dnl GNU format message catalog is always supported, - dnl since both are added to the libc all together. - dnl Hence, we'd like to go with DATADIRNAME=share and - dnl and CATOBJEXT=.gmo in this case. - AC_CHECK_FUNC(bind_textdomain_codeset, - [CATOBJEXT=.gmo - DATADIRNAME=share], - [CATOBJEXT=.mo - DATADIRNAME=lib]) - ;; - *) - CATOBJEXT=.mo - DATADIRNAME=lib - ;; - esac]) - LIBS="$glib_save_LIBS" - INSTOBJEXT=.mo - else - gt_cv_have_gettext=no - fi - fi - ]) - - if test "$gt_cv_have_gettext" = "yes" ; then - AC_DEFINE(ENABLE_NLS, 1, - [always defined to indicate that i18n is enabled]) - fi - - dnl Test whether we really found GNU xgettext. - if test "$XGETTEXT" != ":"; then - dnl If it is not GNU xgettext we define it as : so that the - dnl Makefiles still can work. - if $XGETTEXT --omit-header /dev/null 2> /dev/null; then - : ; - else - AC_MSG_RESULT( - [found xgettext program is not GNU xgettext; ignore it]) - XGETTEXT=":" - fi - fi - - # We need to process the po/ directory. - POSUB=po - - AC_OUTPUT_COMMANDS( - [case "$CONFIG_FILES" in *po/Makefile.in*) - sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile - esac]) - - dnl These rules are solely for the distribution goal. While doing this - dnl we only have to keep exactly one list of the available catalogs - dnl in configure.in. - for lang in $ALL_LINGUAS; do - GMOFILES="$GMOFILES $lang.gmo" - POFILES="$POFILES $lang.po" - done - - dnl Make all variables we use known to autoconf. - AC_SUBST(CATALOGS) - AC_SUBST(CATOBJEXT) - AC_SUBST(DATADIRNAME) - AC_SUBST(GMOFILES) - AC_SUBST(INSTOBJEXT) - AC_SUBST(INTLLIBS) - AC_SUBST(PO_IN_DATADIR_TRUE) - AC_SUBST(PO_IN_DATADIR_FALSE) - AC_SUBST(POFILES) - AC_SUBST(POSUB) - ]) - -# AM_GLIB_GNU_GETTEXT -# ------------------- -# Do checks necessary for use of gettext. If a suitable implementation -# of gettext is found in either in libintl or in the C library, -# it will set INTLLIBS to the libraries needed for use of gettext -# and AC_DEFINE() HAVE_GETTEXT and ENABLE_NLS. (The shell variable -# gt_cv_have_gettext will be set to "yes".) It will also call AC_SUBST() -# on various variables needed by the Makefile.in.in installed by -# glib-gettextize. -dnl -glib_DEFUN([GLIB_GNU_GETTEXT], - [AC_REQUIRE([AC_PROG_CC])dnl - AC_REQUIRE([AC_HEADER_STDC])dnl - - GLIB_LC_MESSAGES - GLIB_WITH_NLS - - if test "$gt_cv_have_gettext" = "yes"; then - if test "x$ALL_LINGUAS" = "x"; then - LINGUAS= - else - AC_MSG_CHECKING(for catalogs to be installed) - NEW_LINGUAS= - for presentlang in $ALL_LINGUAS; do - useit=no - if test "%UNSET%" != "${LINGUAS-%UNSET%}"; then - desiredlanguages="$LINGUAS" - else - desiredlanguages="$ALL_LINGUAS" - fi - for desiredlang in $desiredlanguages; do - # Use the presentlang catalog if desiredlang is - # a. equal to presentlang, or - # b. a variant of presentlang (because in this case, - # presentlang can be used as a fallback for messages - # which are not translated in the desiredlang catalog). - case "$desiredlang" in - "$presentlang"*) useit=yes;; - esac - done - if test $useit = yes; then - NEW_LINGUAS="$NEW_LINGUAS $presentlang" - fi - done - LINGUAS=$NEW_LINGUAS - AC_MSG_RESULT($LINGUAS) - fi - - dnl Construct list of names of catalog files to be constructed. - if test -n "$LINGUAS"; then - for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done - fi - fi - - dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly - dnl find the mkinstalldirs script in another subdir but ($top_srcdir). - dnl Try to locate is. - MKINSTALLDIRS= - if test -n "$ac_aux_dir"; then - MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" - fi - if test -z "$MKINSTALLDIRS"; then - MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" - fi - AC_SUBST(MKINSTALLDIRS) - - dnl Generate list of files to be processed by xgettext which will - dnl be included in po/Makefile. - test -d po || mkdir po - if test "x$srcdir" != "x."; then - if test "x`echo $srcdir | sed 's@/.*@@'`" = "x"; then - posrcprefix="$srcdir/" - else - posrcprefix="../$srcdir/" - fi - else - posrcprefix="../" - fi - rm -f po/POTFILES - sed -e "/^#/d" -e "/^\$/d" -e "s,.*, $posrcprefix& \\\\," -e "\$s/\(.*\) \\\\/\1/" \ - < $srcdir/po/POTFILES.in > po/POTFILES - ]) - -# AM_GLIB_DEFINE_LOCALEDIR(VARIABLE) -# ------------------------------- -# Define VARIABLE to the location where catalog files will -# be installed by po/Makefile. -glib_DEFUN([GLIB_DEFINE_LOCALEDIR], -[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl -glib_save_prefix="$prefix" -glib_save_exec_prefix="$exec_prefix" -test "x$prefix" = xNONE && prefix=$ac_default_prefix -test "x$exec_prefix" = xNONE && exec_prefix=$prefix -if test "x$CATOBJEXT" = "x.mo" ; then - localedir=`eval echo "${libdir}/locale"` -else - localedir=`eval echo "${datadir}/locale"` -fi -prefix="$glib_save_prefix" -exec_prefix="$glib_save_exec_prefix" -AC_DEFINE_UNQUOTED($1, "$localedir", - [Define the location where the catalogs will be installed]) -]) - -dnl -dnl Now the definitions that aclocal will find -dnl -ifdef(glib_configure_in,[],[ -AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)]) -AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)]) -])dnl - -# Configure paths for GLIB -# Owen Taylor 1997-2001 - -dnl AM_PATH_GLIB_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) -dnl Test for GLIB, and define GLIB_CFLAGS and GLIB_LIBS, if gmodule, gobject or -dnl gthread is specified in MODULES, pass to pkg-config -dnl -AC_DEFUN([AM_PATH_GLIB_2_0], -[dnl -dnl Get the cflags and libraries from pkg-config -dnl -AC_ARG_ENABLE(glibtest, [ --disable-glibtest do not try to compile and run a test GLIB program], - , enable_glibtest=yes) - - pkg_config_args=glib-2.0 - for module in . $4 - do - case "$module" in - gmodule) - pkg_config_args="$pkg_config_args gmodule-2.0" - ;; - gmodule-no-export) - pkg_config_args="$pkg_config_args gmodule-no-export-2.0" - ;; - gobject) - pkg_config_args="$pkg_config_args gobject-2.0" - ;; - gthread) - pkg_config_args="$pkg_config_args gthread-2.0" - ;; - esac - done - - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) - - no_glib="" - - if test x$PKG_CONFIG != xno ; then - if $PKG_CONFIG --atleast-pkgconfig-version 0.7 ; then - : - else - echo *** pkg-config too old; version 0.7 or better required. - no_glib=yes - PKG_CONFIG=no - fi - else - no_glib=yes - fi - - min_glib_version=ifelse([$1], ,2.0.0,$1) - AC_MSG_CHECKING(for GLIB - version >= $min_glib_version) - - if test x$PKG_CONFIG != xno ; then - ## don't try to run the test against uninstalled libtool libs - if $PKG_CONFIG --uninstalled $pkg_config_args; then - echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH" - enable_glibtest=no - fi - - if $PKG_CONFIG --atleast-version $min_glib_version $pkg_config_args; then - : - else - no_glib=yes - fi - fi - - if test x"$no_glib" = x ; then - GLIB_GENMARSHAL=`$PKG_CONFIG --variable=glib_genmarshal glib-2.0` - GOBJECT_QUERY=`$PKG_CONFIG --variable=gobject_query glib-2.0` - GLIB_MKENUMS=`$PKG_CONFIG --variable=glib_mkenums glib-2.0` - - GLIB_CFLAGS=`$PKG_CONFIG --cflags $pkg_config_args` - GLIB_LIBS=`$PKG_CONFIG --libs $pkg_config_args` - glib_config_major_version=`$PKG_CONFIG --modversion glib-2.0 | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - glib_config_minor_version=`$PKG_CONFIG --modversion glib-2.0 | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` - glib_config_micro_version=`$PKG_CONFIG --modversion glib-2.0 | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` - if test "x$enable_glibtest" = "xyes" ; then - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $GLIB_CFLAGS" - LIBS="$GLIB_LIBS $LIBS" -dnl -dnl Now check if the installed GLIB is sufficiently new. (Also sanity -dnl checks the results of pkg-config to some extent) -dnl - rm -f conf.glibtest - AC_TRY_RUN([ -#include -#include -#include - -int -main () -{ - int major, minor, micro; - char *tmp_version; - - system ("touch conf.glibtest"); - - /* HP/UX 9 (%@#!) writes to sscanf strings */ - tmp_version = g_strdup("$min_glib_version"); - if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { - printf("%s, bad version string\n", "$min_glib_version"); - exit(1); - } - - if ((glib_major_version != $glib_config_major_version) || - (glib_minor_version != $glib_config_minor_version) || - (glib_micro_version != $glib_config_micro_version)) - { - printf("\n*** 'pkg-config --modversion glib-2.0' returned %d.%d.%d, but GLIB (%d.%d.%d)\n", - $glib_config_major_version, $glib_config_minor_version, $glib_config_micro_version, - glib_major_version, glib_minor_version, glib_micro_version); - printf ("*** was found! If pkg-config was correct, then it is best\n"); - printf ("*** to remove the old version of GLib. You may also be able to fix the error\n"); - printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); - printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); - printf("*** required on your system.\n"); - printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); - printf("*** to point to the correct configuration files\n"); - } - else if ((glib_major_version != GLIB_MAJOR_VERSION) || - (glib_minor_version != GLIB_MINOR_VERSION) || - (glib_micro_version != GLIB_MICRO_VERSION)) - { - printf("*** GLIB header files (version %d.%d.%d) do not match\n", - GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION); - printf("*** library (version %d.%d.%d)\n", - glib_major_version, glib_minor_version, glib_micro_version); - } - else - { - if ((glib_major_version > major) || - ((glib_major_version == major) && (glib_minor_version > minor)) || - ((glib_major_version == major) && (glib_minor_version == minor) && (glib_micro_version >= micro))) - { - return 0; - } - else - { - printf("\n*** An old version of GLIB (%d.%d.%d) was found.\n", - glib_major_version, glib_minor_version, glib_micro_version); - printf("*** You need a version of GLIB newer than %d.%d.%d. The latest version of\n", - major, minor, micro); - printf("*** GLIB is always available from ftp://ftp.gtk.org.\n"); - printf("***\n"); - printf("*** If you have already installed a sufficiently new version, this error\n"); - printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); - printf("*** being found. The easiest way to fix this is to remove the old version\n"); - printf("*** of GLIB, but you can also set the PKG_CONFIG environment to point to the\n"); - printf("*** correct copy of pkg-config. (In this case, you will have to\n"); - printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); - printf("*** so that the correct libraries are found at run-time))\n"); - } - } - return 1; -} -],, no_glib=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) - CFLAGS="$ac_save_CFLAGS" - LIBS="$ac_save_LIBS" - fi - fi - if test "x$no_glib" = x ; then - AC_MSG_RESULT(yes (version $glib_config_major_version.$glib_config_minor_version.$glib_config_micro_version)) - ifelse([$2], , :, [$2]) - else - AC_MSG_RESULT(no) - if test "$PKG_CONFIG" = "no" ; then - echo "*** A new enough version of pkg-config was not found." - echo "*** See http://www.freedesktop.org/software/pkgconfig/" - else - if test -f conf.glibtest ; then - : - else - echo "*** Could not run GLIB test program, checking why..." - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $GLIB_CFLAGS" - LIBS="$LIBS $GLIB_LIBS" - AC_TRY_LINK([ -#include -#include -], [ return ((glib_major_version) || (glib_minor_version) || (glib_micro_version)); ], - [ echo "*** The test program compiled, but did not run. This usually means" - echo "*** that the run-time linker is not finding GLIB or finding the wrong" - echo "*** version of GLIB. If it is not finding GLIB, you'll need to set your" - echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" - echo "*** to the installed location Also, make sure you have run ldconfig if that" - echo "*** is required on your system" - echo "***" - echo "*** If you have an old version installed, it is best to remove it, although" - echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], - [ echo "*** The test program failed to compile or link. See the file config.log for the" - echo "*** exact error that occured. This usually means GLIB is incorrectly installed."]) - CFLAGS="$ac_save_CFLAGS" - LIBS="$ac_save_LIBS" - fi - fi - GLIB_CFLAGS="" - GLIB_LIBS="" - GLIB_GENMARSHAL="" - GOBJECT_QUERY="" - GLIB_MKENUMS="" - ifelse([$3], , :, [$3]) - fi - AC_SUBST(GLIB_CFLAGS) - AC_SUBST(GLIB_LIBS) - AC_SUBST(GLIB_GENMARSHAL) - AC_SUBST(GOBJECT_QUERY) - AC_SUBST(GLIB_MKENUMS) - rm -f conf.glibtest -]) - -# 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. +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # -# 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. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. -# PKG_PROG_PKG_CONFIG([MIN-VERSION]) +# serial 3 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# ------------------------------ +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- -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 +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) -# _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 AC_RUN_LOG([$PKG_CONFIG --exists "$3" >/dev/null 2>&1]); then - pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` - else - pkg_failed=yes - fi -else - pkg_failed=untried -fi[]dnl -])# _PKG_CONFIG +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) -# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], -# [ACTION-IF-NOT-FOUND]) +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. # +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PATH_PYTHON([MINIMUM-VERSION], [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) +# --------------------------------------------------------------------------- +# Adds support for distributing Python modules and packages. To +# install modules, copy them to $(pythondir), using the python_PYTHON +# automake variable. To install a package with the same name as the +# automake package, install to $(pkgpythondir), or use the +# pkgpython_PYTHON automake variable. # -# Note that if there is a possibility the first call to -# PKG_CHECK_MODULES might not happen, you should be sure to include an -# explicit call to PKG_PROG_PKG_CONFIG in your configure.in +# The variables $(pyexecdir) and $(pkgpyexecdir) are provided as +# locations to install python extension modules (shared libraries). +# Another macro is required to find the appropriate flags to compile +# extension modules. # +# If your package is configured with a different prefix to python, +# users will have to add the install directory to the PYTHONPATH +# environment variable, or create a .pth file (see the python +# documentation for details). # -# -------------------------------------------------------------- -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 +# If the MINIMUM-VERSION argument is passed, AM_PATH_PYTHON will +# cause an error if the version of python installed on the system +# doesn't meet the requirement. MINIMUM-VERSION should consist of +# numbers and dots only. +AC_DEFUN([AM_PATH_PYTHON], + [ + dnl Find a Python interpreter. Python versions prior to 1.5 are not + dnl supported because the default installation locations changed from + dnl $prefix/lib/site-python in 1.4 to $prefix/lib/python1.5/site-packages + dnl in 1.5. + m4_define_default([_AM_PYTHON_INTERPRETER_LIST], + [python python2 python2.5 python2.4 python2.3 python2.2 dnl +python2.1 python2.0 python1.6 python1.5]) -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])]) + m4_if([$1],[],[ + dnl No version check is needed. + # Find any Python interpreter. + if test -z "$PYTHON"; then + AC_PATH_PROGS([PYTHON], _AM_PYTHON_INTERPRETER_LIST, :) + fi + am_display_PYTHON=python + ], [ + dnl A version check is needed. + if test -n "$PYTHON"; then + # If the user set $PYTHON, use it and don't search something else. + AC_MSG_CHECKING([whether $PYTHON version >= $1]) + AM_PYTHON_CHECK_VERSION([$PYTHON], [$1], + [AC_MSG_RESULT(yes)], + [AC_MSG_ERROR(too old)]) + am_display_PYTHON=$PYTHON + else + # Otherwise, try each interpreter until we find one that satisfies + # VERSION. + AC_CACHE_CHECK([for a Python interpreter with version >= $1], + [am_cv_pathless_PYTHON],[ + for am_cv_pathless_PYTHON in _AM_PYTHON_INTERPRETER_LIST none; do + test "$am_cv_pathless_PYTHON" = none && break + AM_PYTHON_CHECK_VERSION([$am_cv_pathless_PYTHON], [$1], [break]) + done]) + # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. + if test "$am_cv_pathless_PYTHON" = none; then + PYTHON=: + else + AC_PATH_PROG([PYTHON], [$am_cv_pathless_PYTHON]) + fi + am_display_PYTHON=$am_cv_pathless_PYTHON + fi + ]) -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 + if test "$PYTHON" = :; then + dnl Run any user-specified action, or abort. + m4_default([$3], [AC_MSG_ERROR([no suitable Python interpreter found])]) + else - 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. + dnl Query Python for its version number. Getting [:3] seems to be + dnl the best way to do this; it's what "site.py" does in the standard + dnl library. -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. + AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version], + [am_cv_python_version=`$PYTHON -c "import sys; print sys.version[[:3]]"`]) + AC_SUBST([PYTHON_VERSION], [$am_cv_python_version]) -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. + dnl Use the values of $prefix and $exec_prefix for the corresponding + dnl values of PYTHON_PREFIX and PYTHON_EXEC_PREFIX. These are made + dnl distinct variables so they can be overridden if need be. However, + dnl general consensus is that you shouldn't need this ability. -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 + AC_SUBST([PYTHON_PREFIX], ['${prefix}']) + AC_SUBST([PYTHON_EXEC_PREFIX], ['${exec_prefix}']) -# Configure paths for GTK+ -# Owen Taylor 1997-2001 + dnl At times (like when building shared libraries) you may want + dnl to know which OS platform Python thinks this is. -dnl AM_PATH_GTK_2_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) -dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES, -dnl pass to pkg-config -dnl -AC_DEFUN([AM_PATH_GTK_2_0], -[dnl -dnl Get the cflags and libraries from pkg-config -dnl -AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run a test GTK+ program], - , enable_gtktest=yes) + AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform], + [am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`]) + AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform]) + + + dnl Set up 4 directories: + + dnl pythondir -- where to install python scripts. This is the + dnl site-packages directory, not the python standard library + dnl directory like in previous automake betas. This behavior + dnl is more consistent with lispdir.m4 for example. + dnl Query distutils for this directory. distutils does not exist in + dnl Python 1.5, so we fall back to the hardcoded directory if it + dnl doesn't work. + AC_CACHE_CHECK([for $am_display_PYTHON script directory], + [am_cv_python_pythondir], + [am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null || + echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`]) + AC_SUBST([pythondir], [$am_cv_python_pythondir]) + + dnl pkgpythondir -- $PACKAGE directory under pythondir. Was + dnl PYTHON_SITE_PACKAGE in previous betas, but this naming is + dnl more consistent with the rest of automake. + + AC_SUBST([pkgpythondir], [\${pythondir}/$PACKAGE]) + + dnl pyexecdir -- directory for installing python extension modules + dnl (shared libraries) + dnl Query distutils for this directory. distutils does not exist in + dnl Python 1.5, so we fall back to the hardcoded directory if it + dnl doesn't work. + AC_CACHE_CHECK([for $am_display_PYTHON extension module directory], + [am_cv_python_pyexecdir], + [am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null || + echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`]) + AC_SUBST([pyexecdir], [$am_cv_python_pyexecdir]) + + dnl pkgpyexecdir -- $(pyexecdir)/$(PACKAGE) + + AC_SUBST([pkgpyexecdir], [\${pyexecdir}/$PACKAGE]) + + dnl Run any user-specified action. + $2 + fi + +]) + + +# AM_PYTHON_CHECK_VERSION(PROG, VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) +# --------------------------------------------------------------------------- +# Run ACTION-IF-TRUE if the Python interpreter PROG has version >= VERSION. +# Run ACTION-IF-FALSE otherwise. +# This test uses sys.hexversion instead of the string equivalent (first +# word of sys.version), in order to cope with versions such as 2.2c1. +# hexversion has been introduced in Python 1.5.2; it's probably not +# worth to support older versions (1.5.1 was released on October 31, 1998). +AC_DEFUN([AM_PYTHON_CHECK_VERSION], + [prog="import sys, string +# split strings by '.' and convert to numeric. Append some zeros +# because we need at least 4 digits for the hex conversion. +minver = map(int, string.split('$2', '.')) + [[0, 0, 0]] +minverhex = 0 +for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[[i]] +sys.exit(sys.hexversion < minverhex)" + AS_IF([AM_RUN_LOG([$1 -c "$prog"])], [$3], [$4])]) + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) - pkg_config_args=gtk+-2.0 - for module in . $4 - do - case "$module" in - gthread) - pkg_config_args="$pkg_config_args gthread-2.0" - ;; - esac - done +# Check to make sure that the build environment is sane. -*- Autoconf -*- - no_gtk="" +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. - AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +# serial 4 - if test x$PKG_CONFIG != xno ; then - if pkg-config --atleast-pkgconfig-version 0.7 ; then - : - else - echo "*** pkg-config too old; version 0.7 or better required." - no_gtk=yes - PKG_CONFIG=no - fi - else - no_gtk=yes - fi +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then - min_gtk_version=ifelse([$1], ,2.0.0,$1) - AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version) + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi - if test x$PKG_CONFIG != xno ; then - ## don't try to run the test against uninstalled libtool libs - if $PKG_CONFIG --uninstalled $pkg_config_args; then - echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH" - enable_gtktest=no - fi + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) - if $PKG_CONFIG --atleast-version $min_gtk_version $pkg_config_args; then - : - else - no_gtk=yes - fi - fi +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. - if test x"$no_gtk" = x ; then - GTK_CFLAGS=`$PKG_CONFIG $pkg_config_args --cflags` - GTK_LIBS=`$PKG_CONFIG $pkg_config_args --libs` - gtk_config_major_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` - gtk_config_minor_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` - gtk_config_micro_version=`$PKG_CONFIG --modversion gtk+-2.0 | \ - sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` - if test "x$enable_gtktest" = "xyes" ; then - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $GTK_CFLAGS" - LIBS="$GTK_LIBS $LIBS" -dnl -dnl Now check if the installed GTK+ is sufficiently new. (Also sanity -dnl checks the results of pkg-config to some extent) -dnl - rm -f conf.gtktest - AC_TRY_RUN([ -#include -#include -#include +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) -int -main () -{ - int major, minor, micro; - char *tmp_version; +# Check how to create a tarball. -*- Autoconf -*- - system ("touch conf.gtktest"); +# Copyright (C) 2004, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. - /* HP/UX 9 (%@#!) writes to sscanf strings */ - tmp_version = g_strdup("$min_gtk_version"); - if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { - printf("%s, bad version string\n", "$min_gtk_version"); - exit(1); - } +# serial 2 - if ((gtk_major_version != $gtk_config_major_version) || - (gtk_minor_version != $gtk_config_minor_version) || - (gtk_micro_version != $gtk_config_micro_version)) - { - printf("\n*** 'pkg-config --modversion gtk+-2.0' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", - $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, - gtk_major_version, gtk_minor_version, gtk_micro_version); - printf ("*** was found! If pkg-config was correct, then it is best\n"); - printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); - printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); - printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); - printf("*** required on your system.\n"); - printf("*** If pkg-config was wrong, set the environment variable PKG_CONFIG_PATH\n"); - printf("*** to point to the correct configuration files\n"); - } - else if ((gtk_major_version != GTK_MAJOR_VERSION) || - (gtk_minor_version != GTK_MINOR_VERSION) || - (gtk_micro_version != GTK_MICRO_VERSION)) - { - printf("*** GTK+ header files (version %d.%d.%d) do not match\n", - GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); - printf("*** library (version %d.%d.%d)\n", - gtk_major_version, gtk_minor_version, gtk_micro_version); - } - else - { - if ((gtk_major_version > major) || - ((gtk_major_version == major) && (gtk_minor_version > minor)) || - ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro))) - { - return 0; - } - else - { - printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n", - gtk_major_version, gtk_minor_version, gtk_micro_version); - printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n", - major, minor, micro); - printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); - printf("***\n"); - printf("*** If you have already installed a sufficiently new version, this error\n"); - printf("*** probably means that the wrong copy of the pkg-config shell script is\n"); - printf("*** being found. The easiest way to fix this is to remove the old version\n"); - printf("*** of GTK+, but you can also set the PKG_CONFIG environment to point to the\n"); - printf("*** correct copy of pkg-config. (In this case, you will have to\n"); - printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); - printf("*** so that the correct libraries are found at run-time))\n"); - } - } - return 1; -} -],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) - CFLAGS="$ac_save_CFLAGS" - LIBS="$ac_save_LIBS" - fi - fi - if test "x$no_gtk" = x ; then - AC_MSG_RESULT(yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_config_micro_version)) - ifelse([$2], , :, [$2]) - else - AC_MSG_RESULT(no) - if test "$PKG_CONFIG" = "no" ; then - echo "*** A new enough version of pkg-config was not found." - echo "*** See http://pkgconfig.sourceforge.net" - else - if test -f conf.gtktest ; then - : - else - echo "*** Could not run GTK+ test program, checking why..." - ac_save_CFLAGS="$CFLAGS" - ac_save_LIBS="$LIBS" - CFLAGS="$CFLAGS $GTK_CFLAGS" - LIBS="$LIBS $GTK_LIBS" - AC_TRY_LINK([ -#include -#include -], [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ], - [ echo "*** The test program compiled, but did not run. This usually means" - echo "*** that the run-time linker is not finding GTK+ or finding the wrong" - echo "*** version of GTK+. If it is not finding GTK+, you'll need to set your" - echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" - echo "*** to the installed location Also, make sure you have run ldconfig if that" - echo "*** is required on your system" - echo "***" - echo "*** If you have an old version installed, it is best to remove it, although" - echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" ], - [ echo "*** The test program failed to compile or link. See the file config.log for the" - echo "*** exact error that occured. This usually means GTK+ is incorrectly installed."]) - CFLAGS="$ac_save_CFLAGS" - LIBS="$ac_save_LIBS" - fi - fi - GTK_CFLAGS="" - GTK_LIBS="" - ifelse([$3], , :, [$3]) +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. +AM_MISSING_PROG([AMTAR], [tar]) +m4_if([$1], [v7], + [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi - AC_SUBST(GTK_CFLAGS) - AC_SUBST(GTK_LIBS) - rm -f conf.gtktest -]) +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR +m4_include([acinclude.m4]) diff -uraN gimp-2.2.8/app/actions/actions.c gimp-2.2.9/app/actions/actions.c --- gimp-2.2.8/app/actions/actions.c 2005-03-22 10:41:55.000000000 +0100 +++ gimp-2.2.9/app/actions/actions.c 2005-09-20 18:23:58.000000000 +0200 @@ -163,7 +163,7 @@ { "plug-in", N_("Plug-Ins"), GIMP_STOCK_PLUGIN, plug_in_actions_setup, plug_in_actions_update }, - { "qmask", N_("QuickMask"), GIMP_STOCK_QMASK_ON, + { "qmask", N_("Quick Mask"), GIMP_STOCK_QMASK_ON, qmask_actions_setup, qmask_actions_update }, { "select", N_("Select"), GIMP_STOCK_SELECTION, diff -uraN gimp-2.2.8/app/actions/dialogs-actions.c gimp-2.2.9/app/actions/dialogs-actions.c --- gimp-2.2.8/app/actions/dialogs-actions.c 2004-10-22 16:43:43.000000000 +0200 +++ gimp-2.2.9/app/actions/dialogs-actions.c 2005-10-20 12:20:14.000000000 +0200 @@ -133,7 +133,7 @@ { "dialogs-palettes", GIMP_STOCK_PALETTE, N_("Pal_ettes"), "P", NULL, - "gimp-palette-list|gimp-palette-list", + "gimp-palette-list|gimp-palette-grid", GIMP_HELP_PALETTE_DIALOG }, { "dialogs-fonts", GIMP_STOCK_FONT, diff -uraN gimp-2.2.8/app/actions/Makefile.in gimp-2.2.9/app/actions/Makefile.in --- gimp-2.2.8/app/actions/Makefile.in 2005-06-26 21:28:16.000000000 +0200 +++ gimp-2.2.9/app/actions/Makefile.in 2005-10-27 17:11:31.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,72 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/actions +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappactions_a_AR = $(AR) $(ARFLAGS) +libappactions_a_LIBADD = +am_libappactions_a_OBJECTS = actions.$(OBJEXT) \ + brushes-actions.$(OBJEXT) buffers-actions.$(OBJEXT) \ + buffers-commands.$(OBJEXT) channels-actions.$(OBJEXT) \ + channels-commands.$(OBJEXT) colormap-editor-actions.$(OBJEXT) \ + colormap-editor-commands.$(OBJEXT) context-actions.$(OBJEXT) \ + context-commands.$(OBJEXT) data-commands.$(OBJEXT) \ + debug-actions.$(OBJEXT) debug-commands.$(OBJEXT) \ + dialogs-actions.$(OBJEXT) dialogs-commands.$(OBJEXT) \ + dockable-actions.$(OBJEXT) dockable-commands.$(OBJEXT) \ + documents-actions.$(OBJEXT) documents-commands.$(OBJEXT) \ + drawable-actions.$(OBJEXT) drawable-commands.$(OBJEXT) \ + edit-actions.$(OBJEXT) edit-commands.$(OBJEXT) \ + error-console-actions.$(OBJEXT) \ + error-console-commands.$(OBJEXT) file-actions.$(OBJEXT) \ + file-commands.$(OBJEXT) fonts-actions.$(OBJEXT) \ + fonts-commands.$(OBJEXT) gradient-editor-actions.$(OBJEXT) \ + gradient-editor-commands.$(OBJEXT) gradients-actions.$(OBJEXT) \ + gradients-commands.$(OBJEXT) help-actions.$(OBJEXT) \ + help-commands.$(OBJEXT) image-actions.$(OBJEXT) \ + image-commands.$(OBJEXT) images-actions.$(OBJEXT) \ + images-commands.$(OBJEXT) layers-actions.$(OBJEXT) \ + layers-commands.$(OBJEXT) palette-editor-actions.$(OBJEXT) \ + palette-editor-commands.$(OBJEXT) palettes-actions.$(OBJEXT) \ + palettes-commands.$(OBJEXT) patterns-actions.$(OBJEXT) \ + plug-in-actions.$(OBJEXT) plug-in-commands.$(OBJEXT) \ + qmask-actions.$(OBJEXT) qmask-commands.$(OBJEXT) \ + select-actions.$(OBJEXT) select-commands.$(OBJEXT) \ + templates-actions.$(OBJEXT) templates-commands.$(OBJEXT) \ + text-editor-actions.$(OBJEXT) text-editor-commands.$(OBJEXT) \ + tool-options-actions.$(OBJEXT) tool-options-commands.$(OBJEXT) \ + tools-actions.$(OBJEXT) tools-commands.$(OBJEXT) \ + vectors-actions.$(OBJEXT) vectors-commands.$(OBJEXT) \ + view-actions.$(OBJEXT) view-commands.$(OBJEXT) +libappactions_a_OBJECTS = $(am_libappactions_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappactions_a_SOURCES) +DIST_SOURCES = $(libappactions_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +298,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +349,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +396,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +436,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libappactions.a - libappactions_a_SOURCES = \ actions-types.h \ actions.c \ @@ -503,17 +569,14 @@ view-commands.c \ view-commands.h - EXTRA_DIST = \ makefile.msc - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Actions\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_builddir) \ -I$(top_srcdir) \ @@ -522,137 +585,39 @@ $(GTK_CFLAGS) \ -I$(includedir) -subdir = app/actions -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappactions_a_AR = $(AR) cru -libappactions_a_LIBADD = -am_libappactions_a_OBJECTS = actions.$(OBJEXT) brushes-actions.$(OBJEXT) \ - buffers-actions.$(OBJEXT) buffers-commands.$(OBJEXT) \ - channels-actions.$(OBJEXT) channels-commands.$(OBJEXT) \ - colormap-editor-actions.$(OBJEXT) \ - colormap-editor-commands.$(OBJEXT) context-actions.$(OBJEXT) \ - context-commands.$(OBJEXT) data-commands.$(OBJEXT) \ - debug-actions.$(OBJEXT) debug-commands.$(OBJEXT) \ - dialogs-actions.$(OBJEXT) dialogs-commands.$(OBJEXT) \ - dockable-actions.$(OBJEXT) dockable-commands.$(OBJEXT) \ - documents-actions.$(OBJEXT) documents-commands.$(OBJEXT) \ - drawable-actions.$(OBJEXT) drawable-commands.$(OBJEXT) \ - edit-actions.$(OBJEXT) edit-commands.$(OBJEXT) \ - error-console-actions.$(OBJEXT) \ - error-console-commands.$(OBJEXT) file-actions.$(OBJEXT) \ - file-commands.$(OBJEXT) fonts-actions.$(OBJEXT) \ - fonts-commands.$(OBJEXT) gradient-editor-actions.$(OBJEXT) \ - gradient-editor-commands.$(OBJEXT) gradients-actions.$(OBJEXT) \ - gradients-commands.$(OBJEXT) help-actions.$(OBJEXT) \ - help-commands.$(OBJEXT) image-actions.$(OBJEXT) \ - image-commands.$(OBJEXT) images-actions.$(OBJEXT) \ - images-commands.$(OBJEXT) layers-actions.$(OBJEXT) \ - layers-commands.$(OBJEXT) palette-editor-actions.$(OBJEXT) \ - palette-editor-commands.$(OBJEXT) palettes-actions.$(OBJEXT) \ - palettes-commands.$(OBJEXT) patterns-actions.$(OBJEXT) \ - plug-in-actions.$(OBJEXT) plug-in-commands.$(OBJEXT) \ - qmask-actions.$(OBJEXT) qmask-commands.$(OBJEXT) \ - select-actions.$(OBJEXT) select-commands.$(OBJEXT) \ - templates-actions.$(OBJEXT) templates-commands.$(OBJEXT) \ - text-editor-actions.$(OBJEXT) text-editor-commands.$(OBJEXT) \ - tool-options-actions.$(OBJEXT) tool-options-commands.$(OBJEXT) \ - tools-actions.$(OBJEXT) tools-commands.$(OBJEXT) \ - vectors-actions.$(OBJEXT) vectors-commands.$(OBJEXT) \ - view-actions.$(OBJEXT) view-commands.$(OBJEXT) -libappactions_a_OBJECTS = $(am_libappactions_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/brushes-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/buffers-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/buffers-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/channels-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/channels-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/colormap-editor-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/colormap-editor-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/context-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/context-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/data-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/debug-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/debug-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dialogs-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dialogs-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dockable-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dockable-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/documents-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/documents-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/drawable-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/drawable-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/edit-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/edit-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/error-console-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/error-console-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/file-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/file-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/fonts-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/fonts-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradient-editor-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradient-editor-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradients-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradients-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/help-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/help-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/images-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/images-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/layers-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/layers-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palette-editor-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palette-editor-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palettes-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palettes-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/patterns-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/qmask-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/qmask-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/select-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/select-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/templates-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/templates-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/text-editor-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/text-editor-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tool-options-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tool-options-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tools-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tools-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/vectors-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/vectors-commands.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/view-actions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/view-commands.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappactions_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappactions_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/actions/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/actions/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -662,7 +627,7 @@ $(RANLIB) libappactions.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -733,37 +698,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/view-commands.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -775,14 +728,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -791,6 +736,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -802,10 +748,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -828,10 +775,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -845,7 +788,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -863,7 +806,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -884,7 +826,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -904,6 +846,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -941,13 +885,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/base/Makefile.in gimp-2.2.9/app/base/Makefile.in --- gimp-2.2.8/app/base/Makefile.in 2005-06-26 21:28:16.000000000 +0200 +++ gimp-2.2.9/app/base/Makefile.in 2005-10-27 17:11:31.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +EXTRA_PROGRAMS = test-cpu-accel$(EXEEXT) +subdir = app/base +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappbase_a_AR = $(AR) $(ARFLAGS) +libappbase_a_LIBADD = +am_libappbase_a_OBJECTS = base.$(OBJEXT) base-enums.$(OBJEXT) \ + boundary.$(OBJEXT) brush-scale.$(OBJEXT) \ + color-balance.$(OBJEXT) colorize.$(OBJEXT) curves.$(OBJEXT) \ + cpu-accel.$(OBJEXT) gimphistogram.$(OBJEXT) gimplut.$(OBJEXT) \ + hue-saturation.$(OBJEXT) levels.$(OBJEXT) lut-funcs.$(OBJEXT) \ + pixel-processor.$(OBJEXT) pixel-region.$(OBJEXT) \ + pixel-surround.$(OBJEXT) temp-buf.$(OBJEXT) \ + threshold.$(OBJEXT) tile.$(OBJEXT) tile-cache.$(OBJEXT) \ + tile-manager.$(OBJEXT) tile-manager-crop.$(OBJEXT) \ + tile-swap.$(OBJEXT) +libappbase_a_OBJECTS = $(am_libappbase_a_OBJECTS) +am_test_cpu_accel_OBJECTS = test-cpu-accel.$(OBJEXT) +test_cpu_accel_OBJECTS = $(am_test_cpu_accel_OBJECTS) +am__DEPENDENCIES_1 = +test_cpu_accel_DEPENDENCIES = libappbase.a $(am__DEPENDENCIES_1) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappbase_a_SOURCES) $(test_cpu_accel_SOURCES) +DIST_SOURCES = $(libappbase_a_SOURCES) $(test_cpu_accel_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +418,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libappbase.a - libappbase_a_SOURCES = \ base.c \ base.h \ @@ -422,110 +470,69 @@ tile-swap.c \ tile-swap.h - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Base\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - AM_CCASFLAGS = \ -I$(top_builddir) \ -I$(top_srcdir) \ -I$(top_srcdir)/app - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GLIB_CFLAGS) \ -I$(includedir) - TESTS = test-cpu-accel - test_cpu_accel_SOURCES = test-cpu-accel.c - test_cpu_accel_LDADD = \ libappbase.a \ $(GLIB_LIBS) - EXTRA_DIST = makefile.msc -EXTRA_PROGRAMS = test-cpu-accel - # # rules to generate built sources # # setup autogeneration dependencies gen_sources = xgen-bec CLEANFILES = $(EXTRA_PROGRAMS) $(gen_sources) -subdir = app/base -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappbase_a_AR = $(AR) cru -libappbase_a_LIBADD = -am_libappbase_a_OBJECTS = base.$(OBJEXT) base-enums.$(OBJEXT) \ - boundary.$(OBJEXT) brush-scale.$(OBJEXT) \ - color-balance.$(OBJEXT) colorize.$(OBJEXT) curves.$(OBJEXT) \ - cpu-accel.$(OBJEXT) gimphistogram.$(OBJEXT) gimplut.$(OBJEXT) \ - hue-saturation.$(OBJEXT) levels.$(OBJEXT) lut-funcs.$(OBJEXT) \ - pixel-processor.$(OBJEXT) pixel-region.$(OBJEXT) \ - pixel-surround.$(OBJEXT) temp-buf.$(OBJEXT) threshold.$(OBJEXT) \ - tile.$(OBJEXT) tile-cache.$(OBJEXT) tile-manager.$(OBJEXT) \ - tile-manager-crop.$(OBJEXT) tile-swap.$(OBJEXT) -libappbase_a_OBJECTS = $(am_libappbase_a_OBJECTS) -EXTRA_PROGRAMS = test-cpu-accel$(EXEEXT) -am_test_cpu_accel_OBJECTS = test-cpu-accel.$(OBJEXT) -test_cpu_accel_OBJECTS = $(am_test_cpu_accel_OBJECTS) -test_cpu_accel_DEPENDENCIES = libappbase.a -test_cpu_accel_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/base-enums.Po ./$(DEPDIR)/base.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/boundary.Po ./$(DEPDIR)/brush-scale.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/color-balance.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/colorize.Po ./$(DEPDIR)/cpu-accel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/curves.Po ./$(DEPDIR)/gimphistogram.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplut.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/hue-saturation.Po ./$(DEPDIR)/levels.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lut-funcs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pixel-processor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pixel-region.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pixel-surround.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/temp-buf.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/test-cpu-accel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/threshold.Po ./$(DEPDIR)/tile-cache.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tile-manager-crop.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tile-manager.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tile-swap.Po ./$(DEPDIR)/tile.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappbase_a_SOURCES) $(test_cpu_accel_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappbase_a_SOURCES) $(test_cpu_accel_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/base/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/base/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -538,7 +545,7 @@ $(LINK) $(test_cpu_accel_LDFLAGS) $(test_cpu_accel_OBJECTS) $(test_cpu_accel_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -569,37 +576,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tile.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -611,14 +606,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -627,6 +614,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -638,10 +626,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -678,24 +667,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -720,27 +709,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ echo "$$dashes"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -754,7 +739,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -773,7 +758,6 @@ $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -795,7 +779,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -815,6 +799,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -851,14 +837,15 @@ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-generic clean-libtool clean-noinstLIBRARIES ctags \ - distclean distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am $(srcdir)/base-enums.c: $(srcdir)/base-enums.h $(GIMP_MKENUMS) diff -uraN gimp-2.2.8/app/composite/gimp-composite-3dnow.c gimp-2.2.9/app/composite/gimp-composite-3dnow.c --- gimp-2.2.8/app/composite/gimp-composite-3dnow.c 2004-07-20 17:59:12.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-3dnow.c 2005-08-15 12:07:03.000000000 +0200 @@ -28,7 +28,6 @@ #include #include "base/base-types.h" -#include "base/cpu-accel.h" #include "gimp-composite.h" @@ -37,15 +36,3 @@ #ifdef COMPILE_3DNOW_IS_OKAY #endif - -gboolean -gimp_composite_3dnow_init (void) -{ -#ifdef COMPILE_3DNOW_IS_OKAY - if (cpu_accel () & CPU_ACCEL_X86_3DNOW) - { - return (TRUE); - } -#endif - return (FALSE); -} diff -uraN gimp-2.2.8/app/composite/gimp-composite-3dnow-installer.c gimp-2.2.9/app/composite/gimp-composite-3dnow-installer.c --- gimp-2.2.8/app/composite/gimp-composite-3dnow-installer.c 2003-10-06 04:46:14.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-3dnow-installer.c 2005-08-15 12:07:03.000000000 +0200 @@ -5,6 +5,7 @@ #include #include #include "base/base-types.h" +#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-3dnow.h" @@ -17,3 +18,16 @@ return (FALSE); } + +gboolean +gimp_composite_3dnow_init (void) +{ +#if defined(COMPILE_3DNOW_IS_OKAY) + if (cpu_accel () & CPU_ACCEL_X86_3DNOW) + { + return (TRUE); + } +#endif + + return (FALSE); +} diff -uraN gimp-2.2.8/app/composite/gimp-composite-altivec.c gimp-2.2.9/app/composite/gimp-composite-altivec.c --- gimp-2.2.8/app/composite/gimp-composite-altivec.c 2004-07-20 17:59:12.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-altivec.c 2005-08-15 12:07:03.000000000 +0200 @@ -25,7 +25,6 @@ #include #include "base/base-types.h" -#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-altivec.h" @@ -33,16 +32,3 @@ #ifdef COMPILE_ALTIVEC_IS_OKAY #endif - -gboolean -gimp_composite_altivec_init (void) -{ -#ifdef COMPILE_ALTIVEC_IS_OKAY - if (cpu_accel () & CPU_ACCEL_PPC_ALTIVEC) - { - return (TRUE); - } -#endif - - return (FALSE); -} diff -uraN gimp-2.2.8/app/composite/gimp-composite-altivec-installer.c gimp-2.2.9/app/composite/gimp-composite-altivec-installer.c --- gimp-2.2.8/app/composite/gimp-composite-altivec-installer.c 2003-10-06 04:46:14.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-altivec-installer.c 2005-08-15 12:07:03.000000000 +0200 @@ -5,6 +5,7 @@ #include #include #include "base/base-types.h" +#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-altivec.h" @@ -17,3 +18,16 @@ return (FALSE); } + +gboolean +gimp_composite_altivec_init (void) +{ +#if defined(COMPILE_ALTIVEC_IS_OKAY) + if (cpu_accel () & CPU_ACCEL_PPC_ALTIVEC) + { + return (TRUE); + } +#endif + + return (FALSE); +} diff -uraN gimp-2.2.8/app/composite/gimp-composite.c gimp-2.2.9/app/composite/gimp-composite.c --- gimp-2.2.8/app/composite/gimp-composite.c 2004-07-20 18:55:39.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite.c 2005-08-15 12:07:03.000000000 +0200 @@ -29,7 +29,6 @@ #include #include "base/base-types.h" -#include "base/cpu-accel.h" #include "gimp-composite.h" diff -uraN gimp-2.2.8/app/composite/gimp-composite-mmx.c gimp-2.2.9/app/composite/gimp-composite-mmx.c --- gimp-2.2.8/app/composite/gimp-composite-mmx.c 2005-01-11 12:27:25.000000000 +0100 +++ gimp-2.2.9/app/composite/gimp-composite-mmx.c 2005-08-15 12:07:03.000000000 +0200 @@ -36,7 +36,6 @@ #include #include "base/base-types.h" -#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-mmx.h" @@ -2279,15 +2278,3 @@ #endif #endif /* COMPILE_IS_OKAY */ - -gboolean -gimp_composite_mmx_init (void) -{ -#ifdef COMPILE_MMX_IS_OKAY - if (cpu_accel () & CPU_ACCEL_X86_MMX) - { - return (TRUE); - } -#endif - return (FALSE); -} diff -uraN gimp-2.2.8/app/composite/gimp-composite-mmx-installer.c gimp-2.2.9/app/composite/gimp-composite-mmx-installer.c --- gimp-2.2.8/app/composite/gimp-composite-mmx-installer.c 2005-01-11 12:27:25.000000000 +0100 +++ gimp-2.2.9/app/composite/gimp-composite-mmx-installer.c 2005-08-15 12:07:03.000000000 +0200 @@ -5,6 +5,7 @@ #include #include #include "base/base-types.h" +#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-mmx.h" @@ -19,11 +20,10 @@ #if defined(COMPILE_MMX_IS_OKAY) { GIMP_COMPOSITE_MULTIPLY, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_multiply_rgba8_rgba8_rgba8_mmx }, { GIMP_COMPOSITE_SCREEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_screen_rgba8_rgba8_rgba8_mmx }, - { GIMP_COMPOSITE_DIFFERENCE, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_difference_rgba8_rgba8_rgba8_mmx }, + { GIMP_COMPOSITE_DIFFERENCE, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_difference_rgba8_rgba8_rgba8_mmx }, #if 0 - { GIMP_COMPOSITE_ADDITION, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, gimp_composite_addition_va8_va8_va8_mmx }, -#endif { GIMP_COMPOSITE_ADDITION, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_addition_rgba8_rgba8_rgba8_mmx }, +#endif { GIMP_COMPOSITE_SUBTRACT, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_subtract_rgba8_rgba8_rgba8_mmx }, { GIMP_COMPOSITE_DARKEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_darken_rgba8_rgba8_rgba8_mmx }, { GIMP_COMPOSITE_LIGHTEN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, gimp_composite_lighten_rgba8_rgba8_rgba8_mmx }, @@ -52,3 +52,16 @@ return (FALSE); } + +gboolean +gimp_composite_mmx_init (void) +{ +#if defined(COMPILE_MMX_IS_OKAY) + if (cpu_accel () & CPU_ACCEL_X86_MMX) + { + return (TRUE); + } +#endif + + return (FALSE); +} diff -uraN gimp-2.2.8/app/composite/gimp-composite-mmx-test.c gimp-2.2.9/app/composite/gimp-composite-mmx-test.c --- gimp-2.2.8/app/composite/gimp-composite-mmx-test.c 2005-01-11 12:27:25.000000000 +0100 +++ gimp-2.2.9/app/composite/gimp-composite-mmx-test.c 2005-08-15 12:07:03.000000000 +0200 @@ -65,18 +65,6 @@ } #if 0 - gimp_composite_context_init (&special_ctx, GIMP_COMPOSITE_ADDITION, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, n_pixels, (unsigned char *) va8A, (unsigned char *) va8B, (unsigned char *) va8B, (unsigned char *) va8D2); - gimp_composite_context_init (&generic_ctx, GIMP_COMPOSITE_ADDITION, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, GIMP_PIXELFORMAT_VA8, n_pixels, (unsigned char *) va8A, (unsigned char *) va8B, (unsigned char *) va8B, (unsigned char *) va8D1); - ft0 = gimp_composite_regression_time_function (iterations, gimp_composite_dispatch, &generic_ctx); - ft1 = gimp_composite_regression_time_function (iterations, gimp_composite_addition_va8_va8_va8_mmx, &special_ctx); - if (gimp_composite_regression_compare_contexts ("addition", &generic_ctx, &special_ctx)) - { - printf("addition_va8_va8_va8 failed\n"); - return (1); - } - gimp_composite_regression_timer_report ("addition_va8_va8_va8", ft0, ft1); -#endif - gimp_composite_context_init (&special_ctx, GIMP_COMPOSITE_ADDITION, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, n_pixels, (unsigned char *) rgba8A, (unsigned char *) rgba8B, (unsigned char *) rgba8B, (unsigned char *) rgba8D2); gimp_composite_context_init (&generic_ctx, GIMP_COMPOSITE_ADDITION, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, n_pixels, (unsigned char *) rgba8A, (unsigned char *) rgba8B, (unsigned char *) rgba8B, (unsigned char *) rgba8D1); ft0 = gimp_composite_regression_time_function (iterations, gimp_composite_dispatch, &generic_ctx); @@ -87,6 +75,7 @@ return (1); } gimp_composite_regression_timer_report ("addition_rgba8_rgba8_rgba8", ft0, ft1); +#endif gimp_composite_context_init (&special_ctx, GIMP_COMPOSITE_BURN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, n_pixels, (unsigned char *) rgba8A, (unsigned char *) rgba8B, (unsigned char *) rgba8B, (unsigned char *) rgba8D2); gimp_composite_context_init (&generic_ctx, GIMP_COMPOSITE_BURN, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, GIMP_PIXELFORMAT_RGBA8, n_pixels, (unsigned char *) rgba8A, (unsigned char *) rgba8B, (unsigned char *) rgba8B, (unsigned char *) rgba8D1); diff -uraN gimp-2.2.8/app/composite/gimp-composite-sse2.c gimp-2.2.9/app/composite/gimp-composite-sse2.c --- gimp-2.2.8/app/composite/gimp-composite-sse2.c 2005-05-06 14:27:50.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-sse2.c 2005-08-15 12:07:03.000000000 +0200 @@ -30,7 +30,6 @@ #include #include "base/base-types.h" -#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-sse2.h" @@ -861,17 +860,3 @@ } #endif /* COMPILE_SSE2_IS_OKAY */ - -gboolean -gimp_composite_sse2_init (void) -{ -#ifdef COMPILE_SSE2_IS_OKAY - guint32 cpu = cpu_accel (); - - if (cpu & CPU_ACCEL_X86_SSE2) - { - return (TRUE); - } -#endif - return (FALSE); -} diff -uraN gimp-2.2.8/app/composite/gimp-composite-sse2-installer.c gimp-2.2.9/app/composite/gimp-composite-sse2-installer.c --- gimp-2.2.8/app/composite/gimp-composite-sse2-installer.c 2004-07-20 17:59:12.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-sse2-installer.c 2005-08-15 12:07:03.000000000 +0200 @@ -5,6 +5,7 @@ #include #include #include "base/base-types.h" +#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-sse2.h" @@ -44,3 +45,16 @@ return (FALSE); } + +gboolean +gimp_composite_sse2_init (void) +{ +#if defined(COMPILE_SSE2_IS_OKAY) + if (cpu_accel () & CPU_ACCEL_X86_SSE2) + { + return (TRUE); + } +#endif + + return (FALSE); +} diff -uraN gimp-2.2.8/app/composite/gimp-composite-sse.c gimp-2.2.9/app/composite/gimp-composite-sse.c --- gimp-2.2.8/app/composite/gimp-composite-sse.c 2005-01-08 00:58:33.000000000 +0100 +++ gimp-2.2.9/app/composite/gimp-composite-sse.c 2005-08-15 12:07:03.000000000 +0200 @@ -36,7 +36,6 @@ #include #include "base/base-types.h" -#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-sse.h" @@ -2227,18 +2226,3 @@ #endif #endif /* COMPILE_SSE_IS_OKAY */ - -gboolean -gimp_composite_sse_init (void) -{ -#ifdef COMPILE_SSE_IS_OKAY - guint32 cpu = cpu_accel (); - - if (cpu & CPU_ACCEL_X86_SSE || cpu & CPU_ACCEL_X86_MMXEXT) - { - return (TRUE); - } -#endif - - return (FALSE); -} diff -uraN gimp-2.2.8/app/composite/gimp-composite-sse-installer.c gimp-2.2.9/app/composite/gimp-composite-sse-installer.c --- gimp-2.2.8/app/composite/gimp-composite-sse-installer.c 2004-07-20 17:59:12.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-sse-installer.c 2005-08-15 12:07:03.000000000 +0200 @@ -5,6 +5,7 @@ #include #include #include "base/base-types.h" +#include "base/cpu-accel.h" #include "gimp-composite.h" #include "gimp-composite-sse.h" @@ -49,3 +50,18 @@ return (FALSE); } + +gboolean +gimp_composite_sse_init (void) +{ +#if defined(COMPILE_SSE_IS_OKAY) + guint32 cpu = cpu_accel (); + + if (cpu & CPU_ACCEL_X86_SSE || cpu & CPU_ACCEL_X86_MMXEXT) + { + return (TRUE); + } +#endif + + return (FALSE); +} diff -uraN gimp-2.2.8/app/composite/gimp-composite-vis.c gimp-2.2.9/app/composite/gimp-composite-vis.c --- gimp-2.2.8/app/composite/gimp-composite-vis.c 2004-07-20 17:59:12.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-vis.c 2005-08-15 12:07:03.000000000 +0200 @@ -35,13 +35,3 @@ #ifdef COMPILE_VIS_IS_OKAY #endif - -gboolean -gimp_composite_vis_init (void) -{ -#ifdef COMPILE_VIS_IS_OKAY - return (TRUE); -#else - return (FALSE); -#endif -} diff -uraN gimp-2.2.8/app/composite/gimp-composite-vis-installer.c gimp-2.2.9/app/composite/gimp-composite-vis-installer.c --- gimp-2.2.8/app/composite/gimp-composite-vis-installer.c 2003-10-06 04:46:15.000000000 +0200 +++ gimp-2.2.9/app/composite/gimp-composite-vis-installer.c 2005-08-15 12:07:03.000000000 +0200 @@ -17,3 +17,13 @@ return (FALSE); } + +gboolean +gimp_composite_vis_init (void) +{ +#if defined(COMPILE_VIS_IS_OKAY) + return (TRUE); +#else + return (FALSE); +#endif +} diff -uraN gimp-2.2.8/app/composite/Makefile.am gimp-2.2.9/app/composite/Makefile.am --- gimp-2.2.8/app/composite/Makefile.am 2004-07-20 18:33:58.000000000 +0200 +++ gimp-2.2.9/app/composite/Makefile.am 2005-08-15 12:07:03.000000000 +0200 @@ -7,40 +7,61 @@ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ -AM_CCASFLAGS = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/app - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GLIB_CFLAGS) \ -I$(includedir) -noinst_LIBRARIES = libappcomposite.a +composite_libraries = \ + libcomposite3dnow.a \ + libcompositealtivec.a \ + libcompositemmx.a \ + libcompositesse.a \ + libcompositesse2.a \ + libcompositevis.a + +noinst_LIBRARIES = $(composite_libraries) libcomposite.a -libappcomposite_a_sources = \ +libcomposite3dnow_a_SOURCES = \ gimp-composite-3dnow.c \ - gimp-composite-3dnow.h \ + gimp-composite-3dnow.h + +libcompositealtivec_a_SOURCES = \ gimp-composite-altivec.c \ - gimp-composite-altivec.h \ - gimp-composite-generic.c \ - gimp-composite-generic.h \ + gimp-composite-altivec.h + +libcompositemmx_a_CFLAGS = $(MMX_EXTRA_CFLAGS) + +libcompositemmx_a_SOURCES = \ gimp-composite-mmx.c \ - gimp-composite-mmx.h \ + gimp-composite-mmx.h + +libcompositesse_a_CFLAGS = $(SSE_EXTRA_CFLAGS) + +libcompositesse_a_SOURCES = \ gimp-composite-sse.c \ - gimp-composite-sse.h \ + gimp-composite-sse.h + +libcompositesse2_a_CFLAGS = $(SSE_EXTRA_CFLAGS) + +libcompositesse2_a_SOURCES = \ gimp-composite-sse2.c \ - gimp-composite-sse2.h \ - gimp-composite-util.h \ + gimp-composite-sse2.h + +libcompositevis_a_SOURCES = \ gimp-composite-vis.c \ - gimp-composite-vis.h \ + gimp-composite-vis.h + +libcomposite_a_sources = \ + gimp-composite-generic.c \ + gimp-composite-generic.h \ + gimp-composite-util.h \ gimp-composite-x86.h \ gimp-composite.c \ gimp-composite.h -libappcomposite_a_built_sources = \ +libcomposite_a_built_sources = \ gimp-composite-3dnow-installer.c \ gimp-composite-altivec-installer.c \ gimp-composite-generic-installer.c \ @@ -49,18 +70,34 @@ gimp-composite-sse2-installer.c \ gimp-composite-vis-installer.c -libappcomposite_a_SOURCES = \ - $(libappcomposite_a_built_sources) \ - $(libappcomposite_a_sources) - -regenerate: gimp-composite-generic.o gimp-composite-mmx.o gimp-composite-sse.o gimp-composite-sse2.o gimp-composite-3dnow.o gimp-composite-altivec.o gimp-composite-vis.o - $(srcdir)/make-installer.py -f gimp-composite-generic.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_MMX_IS_OKAY)' -f gimp-composite-mmx.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_SSE_IS_OKAY)' -f gimp-composite-sse.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_SSE2_IS_OKAY)' -f gimp-composite-sse2.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_3DNOW_IS_OKAY)' -f gimp-composite-3dnow.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_ALTIVEC_IS_OKAY)' -f gimp-composite-altivec.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_VIS_IS_OKAY)' -f gimp-composite-vis.o +libcomposite_a_SOURCES = \ + $(libcomposite_a_built_sources) \ + $(libcomposite_a_sources) + +## This is a huge hack +libappcomposite.a: $(noinst_LIBRARIES) + -rm -f libappcomposite.a + $(AR) $(ARFLAGS) libappcomposite.a $(libcomposite_a_OBJECTS) \ + $(libcomposite3dnow_a_OBJECTS) \ + $(libcompositealtivec_a_OBJECTS) \ + $(libcompositemmx_a_OBJECTS) \ + $(libcompositesse_a_OBJECTS) \ + $(libcompositesse2_a_OBJECTS) \ + $(libcompositevis_a_OBJECTS) + $(RANLIB) libappcomposite.a + +all-local: libappcomposite.a + +clean_libs = libappcomposite.a + +regenerate: gimp-composite-generic.o $(libcomposite3dnow_a_OBJECTS) $(libcompositealtivec_a_OBJECTS) $(libcompositemmx_a_OBJECTS) $(libcompositesse_a_OBJECTS) $(libcompositesse2_a_OBJECTS) $(libcompositevis_a_OBJECTS) + $(srcdir)/make-installer.py -f gimp-composite-generic.o + $(srcdir)/make-installer.py -f $(libcompositemmx_a_OBJECTS) -t -r 'defined(COMPILE_MMX_IS_OKAY)' -c 'X86_MMX' + $(srcdir)/make-installer.py -f $(libcompositesse_a_OBJECTS) -t -r 'defined(COMPILE_SSE_IS_OKAY)' -c 'X86_SSE' -c 'X86_MMXEXT' + $(srcdir)/make-installer.py -f $(libcompositesse2_a_OBJECTS) -t -r 'defined(COMPILE_SSE2_IS_OKAY)' -c 'X86_SSE2' + $(srcdir)/make-installer.py -f $(libcomposite3dnow_a_OBJECTS) -t -r 'defined(COMPILE_3DNOW_IS_OKAY)' -c 'X86_3DNOW' + $(srcdir)/make-installer.py -f $(libcompositealtivec_a_OBJECTS) -t -r 'defined(COMPILE_ALTIVEC_IS_OKAY)' -c 'PPC_ALTIVEC' + $(srcdir)/make-installer.py -f $(libcompositevis_a_OBJECTS) -t -r 'defined(COMPILE_VIS_IS_OKAY)' EXTRA_DIST = \ make-installer.py \ @@ -82,7 +119,7 @@ EXTRA_PROGRAMS = gimp-composite-test $(TESTS) -CLEANFILES = $(EXTRA_PROGRAMS) +CLEANFILES = $(EXTRA_PROGRAMS) $(clean_libs) gimp_composite_test_SOURCES = \ gimp-composite-regression.c \ diff -uraN gimp-2.2.8/app/composite/Makefile.in gimp-2.2.9/app/composite/Makefile.in --- gimp-2.2.8/app/composite/Makefile.in 2005-06-26 21:28:16.000000000 +0200 +++ gimp-2.2.9/app/composite/Makefile.in 2005-10-27 17:11:31.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,139 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +EXTRA_PROGRAMS = gimp-composite-test$(EXEEXT) $(am__EXEEXT_1) +subdir = app/composite +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libcomposite_a_AR = $(AR) $(ARFLAGS) +libcomposite_a_LIBADD = +am__objects_1 = gimp-composite-3dnow-installer.$(OBJEXT) \ + gimp-composite-altivec-installer.$(OBJEXT) \ + gimp-composite-generic-installer.$(OBJEXT) \ + gimp-composite-mmx-installer.$(OBJEXT) \ + gimp-composite-sse-installer.$(OBJEXT) \ + gimp-composite-sse2-installer.$(OBJEXT) \ + gimp-composite-vis-installer.$(OBJEXT) +am__objects_2 = gimp-composite-generic.$(OBJEXT) \ + gimp-composite.$(OBJEXT) +am_libcomposite_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libcomposite_a_OBJECTS = $(am_libcomposite_a_OBJECTS) +libcomposite3dnow_a_AR = $(AR) $(ARFLAGS) +libcomposite3dnow_a_LIBADD = +am_libcomposite3dnow_a_OBJECTS = gimp-composite-3dnow.$(OBJEXT) +libcomposite3dnow_a_OBJECTS = $(am_libcomposite3dnow_a_OBJECTS) +libcompositealtivec_a_AR = $(AR) $(ARFLAGS) +libcompositealtivec_a_LIBADD = +am_libcompositealtivec_a_OBJECTS = gimp-composite-altivec.$(OBJEXT) +libcompositealtivec_a_OBJECTS = $(am_libcompositealtivec_a_OBJECTS) +libcompositemmx_a_AR = $(AR) $(ARFLAGS) +libcompositemmx_a_LIBADD = +am_libcompositemmx_a_OBJECTS = \ + libcompositemmx_a-gimp-composite-mmx.$(OBJEXT) +libcompositemmx_a_OBJECTS = $(am_libcompositemmx_a_OBJECTS) +libcompositesse_a_AR = $(AR) $(ARFLAGS) +libcompositesse_a_LIBADD = +am_libcompositesse_a_OBJECTS = \ + libcompositesse_a-gimp-composite-sse.$(OBJEXT) +libcompositesse_a_OBJECTS = $(am_libcompositesse_a_OBJECTS) +libcompositesse2_a_AR = $(AR) $(ARFLAGS) +libcompositesse2_a_LIBADD = +am_libcompositesse2_a_OBJECTS = \ + libcompositesse2_a-gimp-composite-sse2.$(OBJEXT) +libcompositesse2_a_OBJECTS = $(am_libcompositesse2_a_OBJECTS) +libcompositevis_a_AR = $(AR) $(ARFLAGS) +libcompositevis_a_LIBADD = +am_libcompositevis_a_OBJECTS = gimp-composite-vis.$(OBJEXT) +libcompositevis_a_OBJECTS = $(am_libcompositevis_a_OBJECTS) +am__EXEEXT_1 = gimp-composite-3dnow-test$(EXEEXT) \ + gimp-composite-altivec-test$(EXEEXT) \ + gimp-composite-mmx-test$(EXEEXT) \ + gimp-composite-sse-test$(EXEEXT) \ + gimp-composite-sse2-test$(EXEEXT) \ + gimp-composite-vis-test$(EXEEXT) +am_gimp_composite_3dnow_test_OBJECTS = \ + gimp-composite-regression.$(OBJEXT) \ + gimp-composite-3dnow-test.$(OBJEXT) +gimp_composite_3dnow_test_OBJECTS = \ + $(am_gimp_composite_3dnow_test_OBJECTS) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = +am_gimp_composite_altivec_test_OBJECTS = \ + gimp-composite-regression.$(OBJEXT) \ + gimp-composite-altivec-test.$(OBJEXT) +gimp_composite_altivec_test_OBJECTS = \ + $(am_gimp_composite_altivec_test_OBJECTS) +am_gimp_composite_mmx_test_OBJECTS = \ + gimp-composite-regression.$(OBJEXT) \ + gimp-composite-mmx-test.$(OBJEXT) +gimp_composite_mmx_test_OBJECTS = \ + $(am_gimp_composite_mmx_test_OBJECTS) +am_gimp_composite_sse_test_OBJECTS = \ + gimp-composite-regression.$(OBJEXT) \ + gimp-composite-sse-test.$(OBJEXT) +gimp_composite_sse_test_OBJECTS = \ + $(am_gimp_composite_sse_test_OBJECTS) +am_gimp_composite_sse2_test_OBJECTS = \ + gimp-composite-regression.$(OBJEXT) \ + gimp-composite-sse2-test.$(OBJEXT) +gimp_composite_sse2_test_OBJECTS = \ + $(am_gimp_composite_sse2_test_OBJECTS) +am_gimp_composite_test_OBJECTS = gimp-composite-regression.$(OBJEXT) \ + gimp-composite-test.$(OBJEXT) +gimp_composite_test_OBJECTS = $(am_gimp_composite_test_OBJECTS) +am_gimp_composite_vis_test_OBJECTS = \ + gimp-composite-regression.$(OBJEXT) \ + gimp-composite-vis-test.$(OBJEXT) +gimp_composite_vis_test_OBJECTS = \ + $(am_gimp_composite_vis_test_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libcomposite_a_SOURCES) $(libcomposite3dnow_a_SOURCES) \ + $(libcompositealtivec_a_SOURCES) $(libcompositemmx_a_SOURCES) \ + $(libcompositesse_a_SOURCES) $(libcompositesse2_a_SOURCES) \ + $(libcompositevis_a_SOURCES) \ + $(gimp_composite_3dnow_test_SOURCES) \ + $(gimp_composite_altivec_test_SOURCES) \ + $(gimp_composite_mmx_test_SOURCES) \ + $(gimp_composite_sse_test_SOURCES) \ + $(gimp_composite_sse2_test_SOURCES) \ + $(gimp_composite_test_SOURCES) \ + $(gimp_composite_vis_test_SOURCES) +DIST_SOURCES = $(libcomposite_a_SOURCES) \ + $(libcomposite3dnow_a_SOURCES) \ + $(libcompositealtivec_a_SOURCES) $(libcompositemmx_a_SOURCES) \ + $(libcompositesse_a_SOURCES) $(libcompositesse2_a_SOURCES) \ + $(libcompositevis_a_SOURCES) \ + $(gimp_composite_3dnow_test_SOURCES) \ + $(gimp_composite_altivec_test_SOURCES) \ + $(gimp_composite_mmx_test_SOURCES) \ + $(gimp_composite_sse_test_SOURCES) \ + $(gimp_composite_sse2_test_SOURCES) \ + $(gimp_composite_test_SOURCES) \ + $(gimp_composite_vis_test_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +365,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +416,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +463,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,52 +503,63 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Composite\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - -AM_CCASFLAGS = \ - -I$(top_builddir) \ - -I$(top_srcdir) \ - -I$(top_srcdir)/app - - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GLIB_CFLAGS) \ -I$(includedir) +composite_libraries = \ + libcomposite3dnow.a \ + libcompositealtivec.a \ + libcompositemmx.a \ + libcompositesse.a \ + libcompositesse2.a \ + libcompositevis.a -noinst_LIBRARIES = libappcomposite.a - -libappcomposite_a_sources = \ +noinst_LIBRARIES = $(composite_libraries) libcomposite.a +libcomposite3dnow_a_SOURCES = \ gimp-composite-3dnow.c \ - gimp-composite-3dnow.h \ + gimp-composite-3dnow.h + +libcompositealtivec_a_SOURCES = \ gimp-composite-altivec.c \ - gimp-composite-altivec.h \ - gimp-composite-generic.c \ - gimp-composite-generic.h \ + gimp-composite-altivec.h + +libcompositemmx_a_CFLAGS = $(MMX_EXTRA_CFLAGS) +libcompositemmx_a_SOURCES = \ gimp-composite-mmx.c \ - gimp-composite-mmx.h \ + gimp-composite-mmx.h + +libcompositesse_a_CFLAGS = $(SSE_EXTRA_CFLAGS) +libcompositesse_a_SOURCES = \ gimp-composite-sse.c \ - gimp-composite-sse.h \ + gimp-composite-sse.h + +libcompositesse2_a_CFLAGS = $(SSE_EXTRA_CFLAGS) +libcompositesse2_a_SOURCES = \ gimp-composite-sse2.c \ - gimp-composite-sse2.h \ - gimp-composite-util.h \ + gimp-composite-sse2.h + +libcompositevis_a_SOURCES = \ gimp-composite-vis.c \ - gimp-composite-vis.h \ + gimp-composite-vis.h + +libcomposite_a_sources = \ + gimp-composite-generic.c \ + gimp-composite-generic.h \ + gimp-composite-util.h \ gimp-composite-x86.h \ gimp-composite.c \ gimp-composite.h - -libappcomposite_a_built_sources = \ +libcomposite_a_built_sources = \ gimp-composite-3dnow-installer.c \ gimp-composite-altivec-installer.c \ gimp-composite-generic-installer.c \ @@ -422,19 +568,17 @@ gimp-composite-sse2-installer.c \ gimp-composite-vis-installer.c +libcomposite_a_SOURCES = \ + $(libcomposite_a_built_sources) \ + $(libcomposite_a_sources) -libappcomposite_a_SOURCES = \ - $(libappcomposite_a_built_sources) \ - $(libappcomposite_a_sources) - - +clean_libs = libappcomposite.a EXTRA_DIST = \ make-installer.py \ makefile.msc \ ns.py - # # unit tests and meta tools for GimpComposite # @@ -446,240 +590,155 @@ gimp-composite-sse2-test \ gimp-composite-vis-test - -EXTRA_PROGRAMS = gimp-composite-test $(TESTS) - -CLEANFILES = $(EXTRA_PROGRAMS) - +CLEANFILES = $(EXTRA_PROGRAMS) $(clean_libs) gimp_composite_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-test.c - gimp_composite_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) - gimp_composite_mmx_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-mmx-test.c - gimp_composite_mmx_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_mmx_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) - gimp_composite_sse_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-sse-test.c - gimp_composite_sse_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_sse_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) - gimp_composite_sse2_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-sse2-test.c - gimp_composite_sse2_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_sse2_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) - gimp_composite_3dnow_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-3dnow-test.c - gimp_composite_3dnow_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_3dnow_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) - gimp_composite_altivec_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-altivec-test.c - gimp_composite_altivec_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_altivec_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) - gimp_composite_vis_test_SOURCES = \ gimp-composite-regression.c \ gimp-composite-regression.h \ gimp-composite-vis-test.c - gimp_composite_vis_test_DEPENDENCIES = $(gimpcomposite_dependencies) - gimp_composite_vis_test_LDADD = \ libappcomposite.a \ ../base/libappbase.a \ $(libgimpcolor) \ $(GLIB_LIBS) -subdir = app/composite -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappcomposite_a_AR = $(AR) cru -libappcomposite_a_LIBADD = -am__objects_1 = gimp-composite-3dnow-installer.$(OBJEXT) \ - gimp-composite-altivec-installer.$(OBJEXT) \ - gimp-composite-generic-installer.$(OBJEXT) \ - gimp-composite-mmx-installer.$(OBJEXT) \ - gimp-composite-sse-installer.$(OBJEXT) \ - gimp-composite-sse2-installer.$(OBJEXT) \ - gimp-composite-vis-installer.$(OBJEXT) -am__objects_2 = gimp-composite-3dnow.$(OBJEXT) \ - gimp-composite-altivec.$(OBJEXT) \ - gimp-composite-generic.$(OBJEXT) gimp-composite-mmx.$(OBJEXT) \ - gimp-composite-sse.$(OBJEXT) gimp-composite-sse2.$(OBJEXT) \ - gimp-composite-vis.$(OBJEXT) gimp-composite.$(OBJEXT) -am_libappcomposite_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libappcomposite_a_OBJECTS = $(am_libappcomposite_a_OBJECTS) -EXTRA_PROGRAMS = gimp-composite-test$(EXEEXT) \ - gimp-composite-3dnow-test$(EXEEXT) \ - gimp-composite-altivec-test$(EXEEXT) \ - gimp-composite-mmx-test$(EXEEXT) \ - gimp-composite-sse-test$(EXEEXT) \ - gimp-composite-sse2-test$(EXEEXT) \ - gimp-composite-vis-test$(EXEEXT) -am_gimp_composite_3dnow_test_OBJECTS = \ - gimp-composite-regression.$(OBJEXT) \ - gimp-composite-3dnow-test.$(OBJEXT) -gimp_composite_3dnow_test_OBJECTS = \ - $(am_gimp_composite_3dnow_test_OBJECTS) -gimp_composite_3dnow_test_LDFLAGS = -am_gimp_composite_altivec_test_OBJECTS = \ - gimp-composite-regression.$(OBJEXT) \ - gimp-composite-altivec-test.$(OBJEXT) -gimp_composite_altivec_test_OBJECTS = \ - $(am_gimp_composite_altivec_test_OBJECTS) -gimp_composite_altivec_test_LDFLAGS = -am_gimp_composite_mmx_test_OBJECTS = gimp-composite-regression.$(OBJEXT) \ - gimp-composite-mmx-test.$(OBJEXT) -gimp_composite_mmx_test_OBJECTS = $(am_gimp_composite_mmx_test_OBJECTS) -gimp_composite_mmx_test_LDFLAGS = -am_gimp_composite_sse_test_OBJECTS = gimp-composite-regression.$(OBJEXT) \ - gimp-composite-sse-test.$(OBJEXT) -gimp_composite_sse_test_OBJECTS = $(am_gimp_composite_sse_test_OBJECTS) -gimp_composite_sse_test_LDFLAGS = -am_gimp_composite_sse2_test_OBJECTS = \ - gimp-composite-regression.$(OBJEXT) \ - gimp-composite-sse2-test.$(OBJEXT) -gimp_composite_sse2_test_OBJECTS = \ - $(am_gimp_composite_sse2_test_OBJECTS) -gimp_composite_sse2_test_LDFLAGS = -am_gimp_composite_test_OBJECTS = gimp-composite-regression.$(OBJEXT) \ - gimp-composite-test.$(OBJEXT) -gimp_composite_test_OBJECTS = $(am_gimp_composite_test_OBJECTS) -gimp_composite_test_LDFLAGS = -am_gimp_composite_vis_test_OBJECTS = gimp-composite-regression.$(OBJEXT) \ - gimp-composite-vis-test.$(OBJEXT) -gimp_composite_vis_test_OBJECTS = $(am_gimp_composite_vis_test_OBJECTS) -gimp_composite_vis_test_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp-composite-3dnow-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-3dnow-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-3dnow.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-altivec-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-altivec-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-altivec.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-generic-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-generic.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-mmx-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-mmx-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-mmx.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-regression.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-sse-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-sse-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-sse.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-sse2-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-sse2-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-sse2.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-vis-installer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-vis-test.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite-vis.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-composite.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappcomposite_a_SOURCES) \ - $(gimp_composite_3dnow_test_SOURCES) \ - $(gimp_composite_altivec_test_SOURCES) \ - $(gimp_composite_mmx_test_SOURCES) \ - $(gimp_composite_sse_test_SOURCES) \ - $(gimp_composite_sse2_test_SOURCES) \ - $(gimp_composite_test_SOURCES) \ - $(gimp_composite_vis_test_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappcomposite_a_SOURCES) $(gimp_composite_3dnow_test_SOURCES) $(gimp_composite_altivec_test_SOURCES) $(gimp_composite_mmx_test_SOURCES) $(gimp_composite_sse_test_SOURCES) $(gimp_composite_sse2_test_SOURCES) $(gimp_composite_test_SOURCES) $(gimp_composite_vis_test_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/composite/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/composite/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) -libappcomposite.a: $(libappcomposite_a_OBJECTS) $(libappcomposite_a_DEPENDENCIES) - -rm -f libappcomposite.a - $(libappcomposite_a_AR) libappcomposite.a $(libappcomposite_a_OBJECTS) $(libappcomposite_a_LIBADD) - $(RANLIB) libappcomposite.a +libcomposite.a: $(libcomposite_a_OBJECTS) $(libcomposite_a_DEPENDENCIES) + -rm -f libcomposite.a + $(libcomposite_a_AR) libcomposite.a $(libcomposite_a_OBJECTS) $(libcomposite_a_LIBADD) + $(RANLIB) libcomposite.a +libcomposite3dnow.a: $(libcomposite3dnow_a_OBJECTS) $(libcomposite3dnow_a_DEPENDENCIES) + -rm -f libcomposite3dnow.a + $(libcomposite3dnow_a_AR) libcomposite3dnow.a $(libcomposite3dnow_a_OBJECTS) $(libcomposite3dnow_a_LIBADD) + $(RANLIB) libcomposite3dnow.a +libcompositealtivec.a: $(libcompositealtivec_a_OBJECTS) $(libcompositealtivec_a_DEPENDENCIES) + -rm -f libcompositealtivec.a + $(libcompositealtivec_a_AR) libcompositealtivec.a $(libcompositealtivec_a_OBJECTS) $(libcompositealtivec_a_LIBADD) + $(RANLIB) libcompositealtivec.a +libcompositemmx.a: $(libcompositemmx_a_OBJECTS) $(libcompositemmx_a_DEPENDENCIES) + -rm -f libcompositemmx.a + $(libcompositemmx_a_AR) libcompositemmx.a $(libcompositemmx_a_OBJECTS) $(libcompositemmx_a_LIBADD) + $(RANLIB) libcompositemmx.a +libcompositesse.a: $(libcompositesse_a_OBJECTS) $(libcompositesse_a_DEPENDENCIES) + -rm -f libcompositesse.a + $(libcompositesse_a_AR) libcompositesse.a $(libcompositesse_a_OBJECTS) $(libcompositesse_a_LIBADD) + $(RANLIB) libcompositesse.a +libcompositesse2.a: $(libcompositesse2_a_OBJECTS) $(libcompositesse2_a_DEPENDENCIES) + -rm -f libcompositesse2.a + $(libcompositesse2_a_AR) libcompositesse2.a $(libcompositesse2_a_OBJECTS) $(libcompositesse2_a_LIBADD) + $(RANLIB) libcompositesse2.a +libcompositevis.a: $(libcompositevis_a_OBJECTS) $(libcompositevis_a_DEPENDENCIES) + -rm -f libcompositevis.a + $(libcompositevis_a_AR) libcompositevis.a $(libcompositevis_a_OBJECTS) $(libcompositevis_a_LIBADD) + $(RANLIB) libcompositevis.a gimp-composite-3dnow-test$(EXEEXT): $(gimp_composite_3dnow_test_OBJECTS) $(gimp_composite_3dnow_test_DEPENDENCIES) @rm -f gimp-composite-3dnow-test$(EXEEXT) $(LINK) $(gimp_composite_3dnow_test_LDFLAGS) $(gimp_composite_3dnow_test_OBJECTS) $(gimp_composite_3dnow_test_LDADD) $(LIBS) @@ -703,7 +762,7 @@ $(LINK) $(gimp_composite_vis_test_LDFLAGS) $(gimp_composite_vis_test_OBJECTS) $(gimp_composite_vis_test_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -718,52 +777,82 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-generic.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-mmx-installer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-mmx-test.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-mmx.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-regression.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-sse-installer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-sse-test.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-sse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-sse2-installer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-sse2-test.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-sse2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-vis-installer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-vis-test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite-vis.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimp-composite.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< + +libcompositemmx_a-gimp-composite-mmx.o: gimp-composite-mmx.c +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositemmx_a_CFLAGS) $(CFLAGS) -MT libcompositemmx_a-gimp-composite-mmx.o -MD -MP -MF "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Tpo" -c -o libcompositemmx_a-gimp-composite-mmx.o `test -f 'gimp-composite-mmx.c' || echo '$(srcdir)/'`gimp-composite-mmx.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Tpo" "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Po"; else rm -f "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gimp-composite-mmx.c' object='libcompositemmx_a-gimp-composite-mmx.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositemmx_a_CFLAGS) $(CFLAGS) -c -o libcompositemmx_a-gimp-composite-mmx.o `test -f 'gimp-composite-mmx.c' || echo '$(srcdir)/'`gimp-composite-mmx.c + +libcompositemmx_a-gimp-composite-mmx.obj: gimp-composite-mmx.c +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositemmx_a_CFLAGS) $(CFLAGS) -MT libcompositemmx_a-gimp-composite-mmx.obj -MD -MP -MF "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Tpo" -c -o libcompositemmx_a-gimp-composite-mmx.obj `if test -f 'gimp-composite-mmx.c'; then $(CYGPATH_W) 'gimp-composite-mmx.c'; else $(CYGPATH_W) '$(srcdir)/gimp-composite-mmx.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Tpo" "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Po"; else rm -f "$(DEPDIR)/libcompositemmx_a-gimp-composite-mmx.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gimp-composite-mmx.c' object='libcompositemmx_a-gimp-composite-mmx.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositemmx_a_CFLAGS) $(CFLAGS) -c -o libcompositemmx_a-gimp-composite-mmx.obj `if test -f 'gimp-composite-mmx.c'; then $(CYGPATH_W) 'gimp-composite-mmx.c'; else $(CYGPATH_W) '$(srcdir)/gimp-composite-mmx.c'; fi` + +libcompositesse_a-gimp-composite-sse.o: gimp-composite-sse.c +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse_a_CFLAGS) $(CFLAGS) -MT libcompositesse_a-gimp-composite-sse.o -MD -MP -MF "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Tpo" -c -o libcompositesse_a-gimp-composite-sse.o `test -f 'gimp-composite-sse.c' || echo '$(srcdir)/'`gimp-composite-sse.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Tpo" "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Po"; else rm -f "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gimp-composite-sse.c' object='libcompositesse_a-gimp-composite-sse.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse_a_CFLAGS) $(CFLAGS) -c -o libcompositesse_a-gimp-composite-sse.o `test -f 'gimp-composite-sse.c' || echo '$(srcdir)/'`gimp-composite-sse.c + +libcompositesse_a-gimp-composite-sse.obj: gimp-composite-sse.c +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse_a_CFLAGS) $(CFLAGS) -MT libcompositesse_a-gimp-composite-sse.obj -MD -MP -MF "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Tpo" -c -o libcompositesse_a-gimp-composite-sse.obj `if test -f 'gimp-composite-sse.c'; then $(CYGPATH_W) 'gimp-composite-sse.c'; else $(CYGPATH_W) '$(srcdir)/gimp-composite-sse.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Tpo" "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Po"; else rm -f "$(DEPDIR)/libcompositesse_a-gimp-composite-sse.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gimp-composite-sse.c' object='libcompositesse_a-gimp-composite-sse.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse_a_CFLAGS) $(CFLAGS) -c -o libcompositesse_a-gimp-composite-sse.obj `if test -f 'gimp-composite-sse.c'; then $(CYGPATH_W) 'gimp-composite-sse.c'; else $(CYGPATH_W) '$(srcdir)/gimp-composite-sse.c'; fi` + +libcompositesse2_a-gimp-composite-sse2.o: gimp-composite-sse2.c +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse2_a_CFLAGS) $(CFLAGS) -MT libcompositesse2_a-gimp-composite-sse2.o -MD -MP -MF "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Tpo" -c -o libcompositesse2_a-gimp-composite-sse2.o `test -f 'gimp-composite-sse2.c' || echo '$(srcdir)/'`gimp-composite-sse2.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Tpo" "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Po"; else rm -f "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gimp-composite-sse2.c' object='libcompositesse2_a-gimp-composite-sse2.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse2_a_CFLAGS) $(CFLAGS) -c -o libcompositesse2_a-gimp-composite-sse2.o `test -f 'gimp-composite-sse2.c' || echo '$(srcdir)/'`gimp-composite-sse2.c + +libcompositesse2_a-gimp-composite-sse2.obj: gimp-composite-sse2.c +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse2_a_CFLAGS) $(CFLAGS) -MT libcompositesse2_a-gimp-composite-sse2.obj -MD -MP -MF "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Tpo" -c -o libcompositesse2_a-gimp-composite-sse2.obj `if test -f 'gimp-composite-sse2.c'; then $(CYGPATH_W) 'gimp-composite-sse2.c'; else $(CYGPATH_W) '$(srcdir)/gimp-composite-sse2.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Tpo" "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Po"; else rm -f "$(DEPDIR)/libcompositesse2_a-gimp-composite-sse2.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='gimp-composite-sse2.c' object='libcompositesse2_a-gimp-composite-sse2.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcompositesse2_a_CFLAGS) $(CFLAGS) -c -o libcompositesse2_a-gimp-composite-sse2.obj `if test -f 'gimp-composite-sse2.c'; then $(CYGPATH_W) 'gimp-composite-sse2.c'; else $(CYGPATH_W) '$(srcdir)/gimp-composite-sse2.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -775,14 +864,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -791,6 +872,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -802,10 +884,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -842,24 +925,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -884,27 +967,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ echo "$$dashes"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -918,7 +997,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -936,8 +1015,7 @@ check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am -all-am: Makefile $(LIBRARIES) - +all-am: Makefile $(LIBRARIES) all-local installdirs: install: install-am install-exec: install-exec-am @@ -959,7 +1037,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -979,6 +1057,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -1013,26 +1093,40 @@ uninstall-am: uninstall-info-am -.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ - clean-generic clean-libtool clean-noinstLIBRARIES ctags \ - distclean distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am - - -regenerate: gimp-composite-generic.o gimp-composite-mmx.o gimp-composite-sse.o gimp-composite-sse2.o gimp-composite-3dnow.o gimp-composite-altivec.o gimp-composite-vis.o - $(srcdir)/make-installer.py -f gimp-composite-generic.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_MMX_IS_OKAY)' -f gimp-composite-mmx.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_SSE_IS_OKAY)' -f gimp-composite-sse.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_SSE2_IS_OKAY)' -f gimp-composite-sse2.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_3DNOW_IS_OKAY)' -f gimp-composite-3dnow.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_ALTIVEC_IS_OKAY)' -f gimp-composite-altivec.o - $(srcdir)/make-installer.py -t -r 'defined(COMPILE_VIS_IS_OKAY)' -f gimp-composite-vis.o +.PHONY: CTAGS GTAGS all all-am all-local check check-TESTS check-am \ + clean clean-generic clean-libtool clean-noinstLIBRARIES ctags \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am + + +libappcomposite.a: $(noinst_LIBRARIES) + -rm -f libappcomposite.a + $(AR) $(ARFLAGS) libappcomposite.a $(libcomposite_a_OBJECTS) \ + $(libcomposite3dnow_a_OBJECTS) \ + $(libcompositealtivec_a_OBJECTS) \ + $(libcompositemmx_a_OBJECTS) \ + $(libcompositesse_a_OBJECTS) \ + $(libcompositesse2_a_OBJECTS) \ + $(libcompositevis_a_OBJECTS) + $(RANLIB) libappcomposite.a + +all-local: libappcomposite.a + +regenerate: gimp-composite-generic.o $(libcomposite3dnow_a_OBJECTS) $(libcompositealtivec_a_OBJECTS) $(libcompositemmx_a_OBJECTS) $(libcompositesse_a_OBJECTS) $(libcompositesse2_a_OBJECTS) $(libcompositevis_a_OBJECTS) + $(srcdir)/make-installer.py -f gimp-composite-generic.o + $(srcdir)/make-installer.py -f $(libcompositemmx_a_OBJECTS) -t -r 'defined(COMPILE_MMX_IS_OKAY)' -c 'X86_MMX' + $(srcdir)/make-installer.py -f $(libcompositesse_a_OBJECTS) -t -r 'defined(COMPILE_SSE_IS_OKAY)' -c 'X86_SSE' -c 'X86_MMXEXT' + $(srcdir)/make-installer.py -f $(libcompositesse2_a_OBJECTS) -t -r 'defined(COMPILE_SSE2_IS_OKAY)' -c 'X86_SSE2' + $(srcdir)/make-installer.py -f $(libcomposite3dnow_a_OBJECTS) -t -r 'defined(COMPILE_3DNOW_IS_OKAY)' -c 'X86_3DNOW' + $(srcdir)/make-installer.py -f $(libcompositealtivec_a_OBJECTS) -t -r 'defined(COMPILE_ALTIVEC_IS_OKAY)' -c 'PPC_ALTIVEC' + $(srcdir)/make-installer.py -f $(libcompositevis_a_OBJECTS) -t -r 'defined(COMPILE_VIS_IS_OKAY)' # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -uraN gimp-2.2.8/app/composite/make-installer.py gimp-2.2.9/app/composite/make-installer.py --- gimp-2.2.8/app/composite/make-installer.py 2004-09-03 04:53:19.000000000 +0200 +++ gimp-2.2.9/app/composite/make-installer.py 2005-08-15 12:07:03.000000000 +0200 @@ -25,6 +25,7 @@ import pprint import optparse import copy +import re # # This programme creates C code for gluing a collection of compositing @@ -111,8 +112,12 @@ pp = pprint.PrettyPrinter(indent=4) +def sanitize_filename(filename): + return re.sub('^lib[^-]+-', '', filename) + def functionnameify(filename): f = os.path.basename(filename) + f = sanitize_filename(f) f = string.replace(f, ".o", "") f = string.replace(f, ".c", "") f = string.replace(f, ".h", "") @@ -121,6 +126,7 @@ def filenameify(filename): f = os.path.basename(filename) + f = sanitize_filename(f) f = string.replace(f, ".o", "") f = string.replace(f, ".c", "") f = string.replace(f, ".h", "") @@ -415,7 +421,7 @@ print >>fpout, '%s_install (void)' % (functionnameify(name)) print >>fpout, '{' - if len(function_table) > 1: + if len(function_table) >= 1: print >>fpout, ' static struct install_table *t = _%s;' % (functionnameify(name)) print >>fpout, '' print >>fpout, ' if (%s_init ())' % functionnameify(name) @@ -435,6 +441,58 @@ print >>fpout, '}' pass +def gimp_composite_installer_install3(fpout, name, requirements=[], cpu_feature=[]): + if not requirements and not cpu_feature: + return + + print >>fpout, '' + print >>fpout, 'gboolean' + print >>fpout, '%s_init (void)' % (functionnameify(name)) + print >>fpout, '{' + + need_endif = False + + for r in requirements: + print >>fpout, '#if %s' % (r) + pass + + if cpu_feature: + if len(cpu_feature) >= 2: + features = [] + for f in cpu_feature: + features.append('cpu & CPU_ACCEL_%s' % f) + feature_test = ' || '.join(features) + + print >>fpout, ' guint32 cpu = cpu_accel ();' + print >>fpout, '' + else: + feature_test = 'cpu_accel () & CPU_ACCEL_%s' % cpu_feature[0] + + print >>fpout, ' if (%s)' % feature_test + print >>fpout, ' {' + print >>fpout, ' return (TRUE);' + print >>fpout, ' }' + + if requirements: + print >>fpout, '#endif' + print >>fpout, '' + else: + print >>fpout, ' return (TRUE);' + + if requirements: + print >>fpout, '#else' + need_endif = True + + if requirements or cpu_feature: + print >>fpout, ' return (FALSE);' + + if need_endif: + print >>fpout, '#endif' + + print >>fpout, '}' + pass + + def gimp_composite_hfile(fpout, name, function_table): print >>fpout, '/* THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT */' print >>fpout, '/* REGENERATE BY USING make-installer.py */' @@ -445,7 +503,7 @@ return -def gimp_composite_cfile(fpout, name, function_table, requirements=[]): +def gimp_composite_cfile(fpout, name, function_table, requirements=[], cpu_feature=[]): print >>fpout, '/* THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT */' print >>fpout, '/* REGENERATE BY USING make-installer.py */' print >>fpout, '#include "config.h"' @@ -453,6 +511,8 @@ print >>fpout, '#include ' print >>fpout, '#include ' print >>fpout, '#include "base/base-types.h"' + if cpu_feature: + print >>fpout, '#include "base/cpu-accel.h"' print >>fpout, '#include "gimp-composite.h"' print >>fpout, '' print >>fpout, '#include "%s.h"' % (filenameify(name)) @@ -462,26 +522,31 @@ gimp_composite_installer_install2(fpout, name, function_table, requirements) + gimp_composite_installer_install3(fpout, name, requirements, cpu_feature) + return ########################################### -op = optparse.OptionParser(version="$Revision: 1.17 $") -op.add_option('-f', '--file', action='store', type='string', dest='file', default=None, +op = optparse.OptionParser(version="$Revision: 1.17.2.1 $") +op.add_option('-f', '--file', action='store', type='string', dest='file', default=None, help='the input object file') -op.add_option('-t', '--test', action='store_true', dest='test', default=False, +op.add_option('-t', '--test', action='store_true', dest='test', default=False, help='generate regression testing code') -op.add_option('-i', '--iterations', action='store', type='int', dest='iterations', default=10, +op.add_option('-i', '--iterations', action='store', type='int', dest='iterations', default=10, help='number of iterations in regression tests') -op.add_option('-n', '--n-pixels', action='store', type="int", dest='n_pixels', default=1024*8192+16+1, +op.add_option('-n', '--n-pixels', action='store', type="int", dest='n_pixels', default=1024*8192+16+1, help='number of pixels in each regression test iteration') -op.add_option('-r', '--requires', action='append', type='string', dest='requires', default=[], +op.add_option('-r', '--requires', action='append', type='string', dest='requires', default=[], help='cpp #if conditionals') +op.add_option('-c', '--cpu-feature', action='append', type='string', dest='cpu_feature', default=[], + help='cpu_accel feature tests') + options, args = op.parse_args() table = load_function_table(options.file) -gimp_composite_cfile(open(filenameify(options.file) + "-installer.c", "w"), options.file, table, options.requires) +gimp_composite_cfile(open(filenameify(options.file) + "-installer.c", "w"), options.file, table, options.requires, options.cpu_feature) if options.test == True: gimp_composite_regression(open(filenameify(options.file) + "-test.c", "w"), table, options) diff -uraN gimp-2.2.8/app/composite/ns.py gimp-2.2.9/app/composite/ns.py --- gimp-2.2.8/app/composite/ns.py 2003-08-14 09:43:34.000000000 +0200 +++ gimp-2.2.9/app/composite/ns.py 2005-08-15 12:07:03.000000000 +0200 @@ -49,13 +49,18 @@ return (None) + def split_(self, line): + tmp=string.split(line)[0:2] + tmp.reverse() + return tmp + def update(self, objfile): self.filename = objfile (sysname, nodename, release, version, machine) = os.uname() if sysname == "Linux": - fp = os.popen("nm -B " + objfile, "r") - symbols = map(lambda l: string.split(l[8:]), fp.readlines()) + fp = os.popen("nm -P " + objfile, "r") + symbols = map(self.split_, fp.readlines()) elif sysname == "SunOS": fp = os.popen("nm -p " + objfile, "r") symbols = map(lambda l: string.split(l[12:]), fp.readlines()) diff -uraN gimp-2.2.8/app/config/gimpconfig-dump.c gimp-2.2.9/app/config/gimpconfig-dump.c --- gimp-2.2.8/app/config/gimpconfig-dump.c 2005-06-27 00:16:07.000000000 +0200 +++ gimp-2.2.9/app/config/gimpconfig-dump.c 2005-08-15 12:07:03.000000000 +0200 @@ -168,7 +168,7 @@ ".SH DESCRIPTION\n" "The\n" ".B gimprc\n" -"file is a configuation file read by the GIMP when it starts up. There\n" +"file is a configuration file read by the GIMP when it starts up. There\n" "are two of these: one system-wide one stored in\n" "@gimpsysconfdir@/gimprc and a per-user \\fB$HOME\\fP/@gimpdir@/gimprc\n" "which may override system settings.\n" diff -uraN gimp-2.2.8/app/config/Makefile.in gimp-2.2.9/app/config/Makefile.in --- gimp-2.2.8/app/config/Makefile.in 2005-06-26 21:28:16.000000000 +0200 +++ gimp-2.2.9/app/config/Makefile.in 2005-10-27 17:11:31.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,55 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +EXTRA_PROGRAMS = test-config$(EXEEXT) +subdir = app/config +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappconfig_a_AR = $(AR) $(ARFLAGS) +libappconfig_a_LIBADD = +am_libappconfig_a_OBJECTS = gimpconfig.$(OBJEXT) \ + gimpconfig-deserialize.$(OBJEXT) gimpconfig-dump.$(OBJEXT) \ + gimpconfig-error.$(OBJEXT) gimpconfig-params.$(OBJEXT) \ + gimpconfig-path.$(OBJEXT) gimpconfig-serialize.$(OBJEXT) \ + gimpconfig-types.$(OBJEXT) gimpconfig-utils.$(OBJEXT) \ + gimpconfigwriter.$(OBJEXT) gimpbaseconfig.$(OBJEXT) \ + gimpcoreconfig.$(OBJEXT) gimpdisplayconfig.$(OBJEXT) \ + gimpguiconfig.$(OBJEXT) gimppluginconfig.$(OBJEXT) \ + gimprc.$(OBJEXT) gimpscanner.$(OBJEXT) gimpxmlparser.$(OBJEXT) +libappconfig_a_OBJECTS = $(am_libappconfig_a_OBJECTS) +test_config_SOURCES = test-config.c +test_config_OBJECTS = test-config.$(OBJEXT) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappconfig_a_SOURCES) test-config.c +DIST_SOURCES = $(libappconfig_a_SOURCES) test-config.c +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +281,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +332,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +379,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +419,10 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la - noinst_LIBRARIES = libappconfig.a - libappconfig_a_SOURCES = \ config-types.h \ gimpconfig.c \ @@ -416,13 +464,11 @@ gimpxmlparser.c \ gimpxmlparser.h - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Config\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ @@ -430,19 +476,13 @@ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - -EXTRA_PROGRAMS = test-config - EXTRA_DIST = makefile.msc - # # unit tests for the GimpConfig system # TESTS = test-config - test_config_DEPENDENCIES = $(gimpconfig_libs) - test_config_LDADD = \ ../base/libappbase.a \ ../core/libappcore.a \ @@ -452,73 +492,40 @@ $(libgimpbase) \ $(GLIB_LIBS) - CLEANFILES = $(EXTRA_PROGRAMS) foorc -subdir = app/config -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappconfig_a_AR = $(AR) cru -libappconfig_a_LIBADD = -am_libappconfig_a_OBJECTS = gimpconfig.$(OBJEXT) \ - gimpconfig-deserialize.$(OBJEXT) gimpconfig-dump.$(OBJEXT) \ - gimpconfig-error.$(OBJEXT) gimpconfig-params.$(OBJEXT) \ - gimpconfig-path.$(OBJEXT) gimpconfig-serialize.$(OBJEXT) \ - gimpconfig-types.$(OBJEXT) gimpconfig-utils.$(OBJEXT) \ - gimpconfigwriter.$(OBJEXT) gimpbaseconfig.$(OBJEXT) \ - gimpcoreconfig.$(OBJEXT) gimpdisplayconfig.$(OBJEXT) \ - gimpguiconfig.$(OBJEXT) gimppluginconfig.$(OBJEXT) \ - gimprc.$(OBJEXT) gimpscanner.$(OBJEXT) gimpxmlparser.$(OBJEXT) -libappconfig_a_OBJECTS = $(am_libappconfig_a_OBJECTS) -EXTRA_PROGRAMS = test-config$(EXEEXT) -test_config_SOURCES = test-config.c -test_config_OBJECTS = test-config.$(OBJEXT) -test_config_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpbaseconfig.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-deserialize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-dump.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-error.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-params.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-path.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-serialize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-types.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfig.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconfigwriter.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcoreconfig.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayconfig.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpguiconfig.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppluginconfig.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprc.Po ./$(DEPDIR)/gimpscanner.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpxmlparser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/test-config.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappconfig_a_SOURCES) test-config.c -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappconfig_a_SOURCES) test-config.c - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/config/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/config/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -531,7 +538,7 @@ $(LINK) $(test_config_LDFLAGS) $(test_config_OBJECTS) $(test_config_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -557,37 +564,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-config.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -599,14 +594,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -615,6 +602,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -626,10 +614,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -666,24 +655,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -708,27 +697,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ echo "$$dashes"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -742,7 +727,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -761,7 +746,6 @@ $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -783,7 +767,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -803,6 +787,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -839,14 +825,15 @@ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-generic clean-libtool clean-noinstLIBRARIES ctags \ - distclean distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/core/gimpchannel-combine.c gimp-2.2.9/app/core/gimpchannel-combine.c --- gimp-2.2.8/app/core/gimpchannel-combine.c 2004-07-19 16:25:59.000000000 +0200 +++ gimp-2.2.9/app/core/gimpchannel-combine.c 2005-09-20 18:23:58.000000000 +0200 @@ -27,6 +27,7 @@ #include "base/pixel-processor.h" #include "base/pixel-region.h" +#include "gimp-utils.h" #include "gimpchannel.h" #include "gimpchannel-combine.h" @@ -130,24 +131,16 @@ gint w, gint h) { - gint x2, y2; PixelRegion maskPR; guchar color; g_return_if_fail (GIMP_IS_CHANNEL (mask)); - y2 = y + h; - x2 = x + w; - - x = CLAMP (x, 0, GIMP_ITEM (mask)->width); - y = CLAMP (y, 0, GIMP_ITEM (mask)->height); - x2 = CLAMP (x2, 0, GIMP_ITEM (mask)->width); - y2 = CLAMP (y2, 0, GIMP_ITEM (mask)->height); - - w = x2 - x; - h = y2 - y; - - if (w <= 0 || h <= 0) + if (! gimp_rectangle_intersect (x, y, w, h, + 0, 0, + GIMP_ITEM (mask)->width, + GIMP_ITEM (mask)->height, + &x, &y, &w, &h)) return; pixel_region_init (&maskPR, GIMP_DRAWABLE (mask)->tiles, @@ -225,7 +218,11 @@ g_return_if_fail (GIMP_IS_CHANNEL (mask)); - if (!w || !h) + if (! gimp_rectangle_intersect (x, y, w, h, + 0, 0, + GIMP_ITEM (mask)->width, + GIMP_ITEM (mask)->height, + NULL, NULL, NULL, NULL)) return; a = w / 2.0; @@ -489,26 +486,24 @@ gint off_y) { PixelRegion srcPR, destPR; - gint x1, y1, x2, y2; - gint w, h; + gint x, y, w, h; g_return_if_fail (GIMP_IS_CHANNEL (mask)); g_return_if_fail (GIMP_IS_CHANNEL (add_on)); - x1 = CLAMP (off_x, 0, GIMP_ITEM (mask)->width); - y1 = CLAMP (off_y, 0, GIMP_ITEM (mask)->height); - x2 = CLAMP (off_x + GIMP_ITEM (add_on)->width, 0, - GIMP_ITEM (mask)->width); - y2 = CLAMP (off_y + GIMP_ITEM (add_on)->height, 0, - GIMP_ITEM (mask)->height); - - w = (x2 - x1); - h = (y2 - y1); + if (! gimp_rectangle_intersect (off_x, off_y, + GIMP_ITEM (add_on)->width, + GIMP_ITEM (add_on)->height, + 0, 0, + GIMP_ITEM (mask)->width, + GIMP_ITEM (mask)->height, + &x, &y, &w, &h)) + return; pixel_region_init (&srcPR, GIMP_DRAWABLE (add_on)->tiles, - (x1 - off_x), (y1 - off_y), w, h, FALSE); + x - off_x, y - off_y, w, h, FALSE); pixel_region_init (&destPR, GIMP_DRAWABLE (mask)->tiles, - x1, y1, w, h, TRUE); + x, y, w, h, TRUE); switch (op) { @@ -538,5 +533,5 @@ mask->bounds_known = FALSE; - gimp_drawable_update (GIMP_DRAWABLE (mask), x1, y2, w, h); + gimp_drawable_update (GIMP_DRAWABLE (mask), x, y, w, h); } diff -uraN gimp-2.2.8/app/core/gimpdata.c gimp-2.2.9/app/core/gimpdata.c --- gimp-2.2.8/app/core/gimpdata.c 2005-04-04 17:16:15.000000000 +0200 +++ gimp-2.2.9/app/core/gimpdata.c 2005-09-20 18:23:58.000000000 +0200 @@ -44,6 +44,12 @@ #include "gimp-intl.h" +/* Need this test somewhere, might as well do it here */ +#ifdef G_OS_WIN32 +#if GLIB_CHECK_VERSION (2,6,0) +#error GIMP 2.2 for Win32 must be compiled against GLib 2.4 +#endif +#endif enum { @@ -416,6 +422,46 @@ if (data->internal) return; +#ifdef G_OS_WIN32 + { + const gchar *charset; + + filename = g_strdup (gimp_object_get_name (GIMP_OBJECT (data))); + + /* Map illegal characters to '-' while the name is still in UTF-8 */ + for (i = 0; filename[i]; i++) + if (strchr ("<>:\"/\\|", filename[i]) || + g_ascii_iscntrl (filename[i]) || + g_ascii_isspace (filename[i])) + filename[i] = '-'; + + /* Map also trailing periods to '-' */ + for (i = strlen (filename) - 1; i >= 0; i--) + if (filename[i] == '.') + filename[i] = '-'; + else + break; + + /* Next convert to the filename charset. Note that this branch of + * GIMP must be compiled against GLib 2.4 and we thus use system + * codepage for file names in the GLib API. + */ + g_get_charset (&charset); + safename = g_convert_with_fallback (filename, + -1, charset, "UTF-8", + "-", NULL, NULL, &error); + if (! safename) + { + g_warning ("gimp_data_create_filename:\n" + "g_convert_with_fallback() failed for '%s': %s", + filename, error->message); + g_free (filename); + g_error_free (error); + return; + } + g_free (filename); + } +#else safename = g_filename_from_utf8 (gimp_object_get_name (GIMP_OBJECT (data)), -1, NULL, NULL, &error); if (! safename) @@ -433,6 +479,7 @@ for (i = 0; safename[i]; i++) if (safename[i] == G_DIR_SEPARATOR || g_ascii_isspace (safename[i])) safename[i] = '-'; +#endif filename = g_strconcat (safename, gimp_data_get_extension (data), NULL); diff -uraN gimp-2.2.8/app/core/gimpimage-contiguous-region.c gimp-2.2.9/app/core/gimpimage-contiguous-region.c --- gimp-2.2.8/app/core/gimpimage-contiguous-region.c 2004-08-28 13:48:00.000000000 +0200 +++ gimp-2.2.9/app/core/gimpimage-contiguous-region.c 2005-10-27 16:57:50.000000000 +0200 @@ -196,9 +196,9 @@ guchar *mask_data; guchar *idata, *mdata; guchar rgb[MAX_CHANNELS]; - gint has_alpha, indexed; + gint has_alpha; gint width, height; - gint bytes, color_bytes, alpha; + gint bytes; gint i, j; gpointer pr; GimpImageType d_type; @@ -218,7 +218,6 @@ d_type = gimp_pickable_get_image_type (pickable); bytes = GIMP_IMAGE_TYPE_BYTES (d_type); has_alpha = GIMP_IMAGE_TYPE_HAS_ALPHA (d_type); - indexed = GIMP_IMAGE_TYPE_IS_INDEXED (d_type); tiles = gimp_pickable_get_tiles (pickable); width = tile_manager_width (tiles); @@ -242,18 +241,6 @@ select_transparent = FALSE; } - if (indexed) - { - /* indexed colors are always RGB or RGBA */ - color_bytes = has_alpha ? 4 : 3; - } - else - { - /* RGB, RGBA, GRAY and GRAYA colors are shaped just like the image */ - color_bytes = bytes; - } - - alpha = bytes - 1; mask = gimp_channel_new_mask (gimage, width, height); pixel_region_init (&maskPR, gimp_drawable_data (GIMP_DRAWABLE (mask)), @@ -282,7 +269,7 @@ /* Find how closely the colors match */ *mdata++ = pixel_difference (col, rgb, antialias, threshold, - color_bytes, + has_alpha ? 4 : 3, has_alpha, select_transparent); idata += bytes; diff -uraN gimp-2.2.8/app/core/gimpimage-preview.c gimp-2.2.9/app/core/gimpimage-preview.c --- gimp-2.2.8/app/core/gimpimage-preview.c 2004-12-11 02:22:58.000000000 +0100 +++ gimp-2.2.9/app/core/gimpimage-preview.c 2005-08-15 12:07:03.000000000 +0200 @@ -261,6 +261,9 @@ x2 = CLAMP (x + w, 0, width); y2 = CLAMP (y + h, 0, height); + if (x2 == x1 || y2 == y1) + continue; + src1PR.bytes = comp->bytes; src1PR.x = x1; src1PR.y = y1; diff -uraN gimp-2.2.8/app/core/Makefile.in gimp-2.2.9/app/core/Makefile.in --- gimp-2.2.8/app/core/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/core/Makefile.in 2005-10-27 17:11:32.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,93 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/core +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappcore_a_AR = $(AR) $(ARFLAGS) +libappcore_a_LIBADD = +am__objects_1 = core-enums.$(OBJEXT) gimpmarshal.$(OBJEXT) +am__objects_2 = cpercep.$(OBJEXT) gimp.$(OBJEXT) \ + gimp-documents.$(OBJEXT) gimp-edit.$(OBJEXT) \ + gimp-gradients.$(OBJEXT) gimp-gui.$(OBJEXT) \ + gimp-modules.$(OBJEXT) gimp-parasites.$(OBJEXT) \ + gimp-templates.$(OBJEXT) gimp-transform-utils.$(OBJEXT) \ + gimp-units.$(OBJEXT) gimp-utils.$(OBJEXT) gimparea.$(OBJEXT) \ + gimpbrush.$(OBJEXT) gimpbrushgenerated.$(OBJEXT) \ + gimpbrushpipe.$(OBJEXT) gimpbuffer.$(OBJEXT) \ + gimpchannel.$(OBJEXT) gimpchannel-combine.$(OBJEXT) \ + gimpchannel-select.$(OBJEXT) gimpcontainer.$(OBJEXT) \ + gimpcontainer-filter.$(OBJEXT) gimpcontext.$(OBJEXT) \ + gimpcoords.$(OBJEXT) gimpdata.$(OBJEXT) \ + gimpdatafactory.$(OBJEXT) gimpdocumentlist.$(OBJEXT) \ + gimpdrawable.$(OBJEXT) gimpdrawable-blend.$(OBJEXT) \ + gimpdrawable-bucket-fill.$(OBJEXT) \ + gimpdrawable-combine.$(OBJEXT) \ + gimpdrawable-desaturate.$(OBJEXT) \ + gimpdrawable-equalize.$(OBJEXT) \ + gimpdrawable-histogram.$(OBJEXT) gimpdrawable-invert.$(OBJEXT) \ + gimpdrawable-levels.$(OBJEXT) gimpdrawable-offset.$(OBJEXT) \ + gimpdrawable-preview.$(OBJEXT) gimpdrawable-stroke.$(OBJEXT) \ + gimpdrawable-transform.$(OBJEXT) gimpenvirontable.$(OBJEXT) \ + gimpgradient.$(OBJEXT) gimpgradient-load.$(OBJEXT) \ + gimpgradient-save.$(OBJEXT) gimpgrid.$(OBJEXT) \ + gimpimage.$(OBJEXT) gimpimage-colorhash.$(OBJEXT) \ + gimpimage-colormap.$(OBJEXT) \ + gimpimage-contiguous-region.$(OBJEXT) \ + gimpimage-convert.$(OBJEXT) gimpimage-crop.$(OBJEXT) \ + gimpimage-duplicate.$(OBJEXT) gimpimage-flip.$(OBJEXT) \ + gimpimage-grid.$(OBJEXT) gimpimage-guides.$(OBJEXT) \ + gimpimage-merge.$(OBJEXT) gimpimage-new.$(OBJEXT) \ + gimpimage-pick-color.$(OBJEXT) gimpimage-preview.$(OBJEXT) \ + gimpimage-qmask.$(OBJEXT) gimpimage-resize.$(OBJEXT) \ + gimpimage-rotate.$(OBJEXT) gimpimage-scale.$(OBJEXT) \ + gimpimage-snap.$(OBJEXT) gimpimage-undo.$(OBJEXT) \ + gimpimage-undo-push.$(OBJEXT) gimpimagefile.$(OBJEXT) \ + gimpimagemap.$(OBJEXT) gimpitem.$(OBJEXT) \ + gimpitem-linked.$(OBJEXT) gimpitem-preview.$(OBJEXT) \ + gimpitemundo.$(OBJEXT) gimplayer.$(OBJEXT) \ + gimplayer-floating-sel.$(OBJEXT) gimplayermask.$(OBJEXT) \ + gimplist.$(OBJEXT) gimpobject.$(OBJEXT) \ + gimppaintinfo.$(OBJEXT) gimppattern.$(OBJEXT) \ + gimppalette.$(OBJEXT) gimppalette-import.$(OBJEXT) \ + gimpparasitelist.$(OBJEXT) gimppdbprogress.$(OBJEXT) \ + gimppickable.$(OBJEXT) gimppreviewcache.$(OBJEXT) \ + gimpprogress.$(OBJEXT) gimpprojection.$(OBJEXT) \ + gimpprojection-construct.$(OBJEXT) gimpscanconvert.$(OBJEXT) \ + gimpselection.$(OBJEXT) gimpstrokedesc.$(OBJEXT) \ + gimpstrokeoptions.$(OBJEXT) gimptemplate.$(OBJEXT) \ + gimptoolinfo.$(OBJEXT) gimptooloptions.$(OBJEXT) \ + gimpunit.$(OBJEXT) gimpundo.$(OBJEXT) gimpundostack.$(OBJEXT) \ + gimpviewable.$(OBJEXT) +am_libappcore_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libappcore_a_OBJECTS = $(am_libappcore_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappcore_a_SOURCES) +DIST_SOURCES = $(libappcore_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +319,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +370,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +417,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,14 +457,12 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Core\" \ -DGIMP_COMPILATION \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ @@ -383,9 +470,7 @@ $(LIBART_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libappcore.a - libappcore_a_sources = \ core-enums.h \ core-types.h \ @@ -592,19 +677,15 @@ gimpviewable.c \ gimpviewable.h - libappcore_a_built_sources = \ core-enums.c \ gimpmarshal.c \ gimpmarshal.h - libappcore_a_extra_sources = \ gimpmarshal.list - libappcore_a_SOURCES = $(libappcore_a_built_sources) $(libappcore_a_sources) - EXTRA_DIST = \ makefile.msc \ $(libappcore_a_extra_sources) @@ -616,185 +697,39 @@ # setup autogeneration dependencies gen_sources = xgen-gmh xgen-gmc xgen-cec CLEANFILES = $(gen_sources) -subdir = app/core -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappcore_a_AR = $(AR) cru -libappcore_a_LIBADD = -am__objects_1 = core-enums.$(OBJEXT) gimpmarshal.$(OBJEXT) -am__objects_2 = cpercep.$(OBJEXT) gimp.$(OBJEXT) \ - gimp-documents.$(OBJEXT) gimp-edit.$(OBJEXT) \ - gimp-gradients.$(OBJEXT) gimp-gui.$(OBJEXT) \ - gimp-modules.$(OBJEXT) gimp-parasites.$(OBJEXT) \ - gimp-templates.$(OBJEXT) gimp-transform-utils.$(OBJEXT) \ - gimp-units.$(OBJEXT) gimp-utils.$(OBJEXT) gimparea.$(OBJEXT) \ - gimpbrush.$(OBJEXT) gimpbrushgenerated.$(OBJEXT) \ - gimpbrushpipe.$(OBJEXT) gimpbuffer.$(OBJEXT) \ - gimpchannel.$(OBJEXT) gimpchannel-combine.$(OBJEXT) \ - gimpchannel-select.$(OBJEXT) gimpcontainer.$(OBJEXT) \ - gimpcontainer-filter.$(OBJEXT) gimpcontext.$(OBJEXT) \ - gimpcoords.$(OBJEXT) gimpdata.$(OBJEXT) \ - gimpdatafactory.$(OBJEXT) gimpdocumentlist.$(OBJEXT) \ - gimpdrawable.$(OBJEXT) gimpdrawable-blend.$(OBJEXT) \ - gimpdrawable-bucket-fill.$(OBJEXT) \ - gimpdrawable-combine.$(OBJEXT) \ - gimpdrawable-desaturate.$(OBJEXT) \ - gimpdrawable-equalize.$(OBJEXT) \ - gimpdrawable-histogram.$(OBJEXT) gimpdrawable-invert.$(OBJEXT) \ - gimpdrawable-levels.$(OBJEXT) gimpdrawable-offset.$(OBJEXT) \ - gimpdrawable-preview.$(OBJEXT) gimpdrawable-stroke.$(OBJEXT) \ - gimpdrawable-transform.$(OBJEXT) gimpenvirontable.$(OBJEXT) \ - gimpgradient.$(OBJEXT) gimpgradient-load.$(OBJEXT) \ - gimpgradient-save.$(OBJEXT) gimpgrid.$(OBJEXT) \ - gimpimage.$(OBJEXT) gimpimage-colorhash.$(OBJEXT) \ - gimpimage-colormap.$(OBJEXT) \ - gimpimage-contiguous-region.$(OBJEXT) \ - gimpimage-convert.$(OBJEXT) gimpimage-crop.$(OBJEXT) \ - gimpimage-duplicate.$(OBJEXT) gimpimage-flip.$(OBJEXT) \ - gimpimage-grid.$(OBJEXT) gimpimage-guides.$(OBJEXT) \ - gimpimage-merge.$(OBJEXT) gimpimage-new.$(OBJEXT) \ - gimpimage-pick-color.$(OBJEXT) gimpimage-preview.$(OBJEXT) \ - gimpimage-qmask.$(OBJEXT) gimpimage-resize.$(OBJEXT) \ - gimpimage-rotate.$(OBJEXT) gimpimage-scale.$(OBJEXT) \ - gimpimage-snap.$(OBJEXT) gimpimage-undo.$(OBJEXT) \ - gimpimage-undo-push.$(OBJEXT) gimpimagefile.$(OBJEXT) \ - gimpimagemap.$(OBJEXT) gimpitem.$(OBJEXT) \ - gimpitem-linked.$(OBJEXT) gimpitem-preview.$(OBJEXT) \ - gimpitemundo.$(OBJEXT) gimplayer.$(OBJEXT) \ - gimplayer-floating-sel.$(OBJEXT) gimplayermask.$(OBJEXT) \ - gimplist.$(OBJEXT) gimpobject.$(OBJEXT) gimppaintinfo.$(OBJEXT) \ - gimppattern.$(OBJEXT) gimppalette.$(OBJEXT) \ - gimppalette-import.$(OBJEXT) gimpparasitelist.$(OBJEXT) \ - gimppdbprogress.$(OBJEXT) gimppickable.$(OBJEXT) \ - gimppreviewcache.$(OBJEXT) gimpprogress.$(OBJEXT) \ - gimpprojection.$(OBJEXT) gimpprojection-construct.$(OBJEXT) \ - gimpscanconvert.$(OBJEXT) gimpselection.$(OBJEXT) \ - gimpstrokedesc.$(OBJEXT) gimpstrokeoptions.$(OBJEXT) \ - gimptemplate.$(OBJEXT) gimptoolinfo.$(OBJEXT) \ - gimptooloptions.$(OBJEXT) gimpunit.$(OBJEXT) gimpundo.$(OBJEXT) \ - gimpundostack.$(OBJEXT) gimpviewable.$(OBJEXT) -am_libappcore_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libappcore_a_OBJECTS = $(am_libappcore_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/core-enums.Po ./$(DEPDIR)/cpercep.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-documents.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-edit.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-gradients.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-gui.Po ./$(DEPDIR)/gimp-modules.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-parasites.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-templates.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-transform-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-units.Po ./$(DEPDIR)/gimp-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp.Po ./$(DEPDIR)/gimparea.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrush.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushgenerated.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushpipe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbuffer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchannel-combine.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchannel-select.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchannel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainer-filter.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontext.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcoords.Po ./$(DEPDIR)/gimpdata.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdatafactory.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdocumentlist.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-blend.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-bucket-fill.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-combine.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-desaturate.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-equalize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-histogram.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-invert.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-levels.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-offset.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-stroke.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable-transform.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenvirontable.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradient-load.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradient-save.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradient.Po ./$(DEPDIR)/gimpgrid.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-colorhash.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-colormap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-contiguous-region.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-convert.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-crop.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-duplicate.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-flip.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-grid.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-guides.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-merge.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-new.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-pick-color.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-qmask.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-resize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-rotate.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-scale.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-snap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-undo-push.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage-undo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimagefile.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimagemap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpitem-linked.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpitem-preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpitem.Po ./$(DEPDIR)/gimpitemundo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplayer-floating-sel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplayer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplayermask.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplist.Po ./$(DEPDIR)/gimpmarshal.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpobject.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintinfo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalette-import.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalette.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpparasitelist.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppattern.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppdbprogress.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppickable.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppreviewcache.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprogress.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprojection-construct.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprojection.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpscanconvert.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselection.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstrokedesc.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstrokeoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptemplate.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolinfo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptooloptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpundo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpundostack.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpunit.Po ./$(DEPDIR)/gimpviewable.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappcore_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappcore_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/core/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/core/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -804,7 +739,7 @@ $(RANLIB) libappcore.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -912,37 +847,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpviewable.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -954,14 +877,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -970,6 +885,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -981,10 +897,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1007,10 +924,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -1024,7 +937,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -1042,7 +955,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -1064,7 +976,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1084,6 +996,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -1121,13 +1035,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am $(srcdir)/gimpmarshal.h: $(srcdir)/gimpmarshal.list diff -uraN gimp-2.2.8/app/dialogs/Makefile.in gimp-2.2.9/app/dialogs/Makefile.in --- gimp-2.2.8/app/dialogs/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/dialogs/Makefile.in 2005-10-27 17:11:32.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,59 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/dialogs +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappdialogs_a_AR = $(AR) $(ARFLAGS) +libappdialogs_a_LIBADD = +am__objects_1 = +am__objects_2 = dialogs.$(OBJEXT) dialogs-constructors.$(OBJEXT) \ + about-dialog.$(OBJEXT) channel-options-dialog.$(OBJEXT) \ + convert-dialog.$(OBJEXT) file-open-dialog.$(OBJEXT) \ + file-open-location-dialog.$(OBJEXT) file-save-dialog.$(OBJEXT) \ + grid-dialog.$(OBJEXT) image-merge-layers-dialog.$(OBJEXT) \ + image-new-dialog.$(OBJEXT) image-scale-dialog.$(OBJEXT) \ + info-dialog.$(OBJEXT) info-window.$(OBJEXT) \ + layer-add-mask-dialog.$(OBJEXT) layer-options-dialog.$(OBJEXT) \ + module-dialog.$(OBJEXT) offset-dialog.$(OBJEXT) \ + palette-import-dialog.$(OBJEXT) preferences-dialog.$(OBJEXT) \ + print-size-dialog.$(OBJEXT) quit-dialog.$(OBJEXT) \ + resize-dialog.$(OBJEXT) resolution-calibrate-dialog.$(OBJEXT) \ + scale-dialog.$(OBJEXT) stroke-dialog.$(OBJEXT) \ + template-options-dialog.$(OBJEXT) tips-dialog.$(OBJEXT) \ + tips-parser.$(OBJEXT) user-install-dialog.$(OBJEXT) \ + vectors-export-dialog.$(OBJEXT) \ + vectors-import-dialog.$(OBJEXT) \ + vectors-options-dialog.$(OBJEXT) +am_libappdialogs_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libappdialogs_a_OBJECTS = $(am_libappdialogs_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappdialogs_a_SOURCES) +DIST_SOURCES = $(libappdialogs_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +285,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +336,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +383,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +423,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Dialogs\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_builddir) \ -I$(top_srcdir) \ @@ -383,9 +436,7 @@ $(GTK_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libappdialogs.a - libappdialogs_a_sources = \ dialogs-types.h \ dialogs.c \ @@ -457,105 +508,49 @@ vectors-options-dialog.c \ vectors-options-dialog.h - libappdialogs_a_built_sources = \ authors.h - libappdialogs_a_SOURCES = \ $(libappdialogs_a_built_sources) $(libappdialogs_a_sources) - EXTRA_DIST = \ authors.xsl \ makefile.msc -subdir = app/dialogs -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappdialogs_a_AR = $(AR) cru -libappdialogs_a_LIBADD = -am__objects_1 = -am__objects_2 = dialogs.$(OBJEXT) dialogs-constructors.$(OBJEXT) \ - about-dialog.$(OBJEXT) channel-options-dialog.$(OBJEXT) \ - convert-dialog.$(OBJEXT) file-open-dialog.$(OBJEXT) \ - file-open-location-dialog.$(OBJEXT) file-save-dialog.$(OBJEXT) \ - grid-dialog.$(OBJEXT) image-merge-layers-dialog.$(OBJEXT) \ - image-new-dialog.$(OBJEXT) image-scale-dialog.$(OBJEXT) \ - info-dialog.$(OBJEXT) info-window.$(OBJEXT) \ - layer-add-mask-dialog.$(OBJEXT) layer-options-dialog.$(OBJEXT) \ - module-dialog.$(OBJEXT) offset-dialog.$(OBJEXT) \ - palette-import-dialog.$(OBJEXT) preferences-dialog.$(OBJEXT) \ - print-size-dialog.$(OBJEXT) quit-dialog.$(OBJEXT) \ - resize-dialog.$(OBJEXT) resolution-calibrate-dialog.$(OBJEXT) \ - scale-dialog.$(OBJEXT) stroke-dialog.$(OBJEXT) \ - template-options-dialog.$(OBJEXT) tips-dialog.$(OBJEXT) \ - tips-parser.$(OBJEXT) user-install-dialog.$(OBJEXT) \ - vectors-export-dialog.$(OBJEXT) vectors-import-dialog.$(OBJEXT) \ - vectors-options-dialog.$(OBJEXT) -am_libappdialogs_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libappdialogs_a_OBJECTS = $(am_libappdialogs_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/about-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/channel-options-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/convert-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dialogs-constructors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dialogs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/file-open-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/file-open-location-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/file-save-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/grid-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image-merge-layers-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image-new-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image-scale-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/info-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/info-window.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/layer-add-mask-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/layer-options-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/module-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/offset-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palette-import-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/preferences-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/print-size-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/quit-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/resize-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/resolution-calibrate-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/scale-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/stroke-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/template-options-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tips-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tips-parser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/user-install-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/vectors-export-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/vectors-import-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/vectors-options-dialog.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappdialogs_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappdialogs_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/dialogs/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/dialogs/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -565,7 +560,7 @@ $(RANLIB) libappdialogs.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -605,37 +600,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vectors-options-dialog.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -647,14 +630,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -663,6 +638,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -674,10 +650,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -700,10 +677,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -717,7 +690,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -735,7 +708,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -756,7 +728,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -776,6 +748,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -813,13 +787,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am authors.h: $(top_srcdir)/authors.xml diff -uraN gimp-2.2.8/app/dialogs/stroke-dialog.c gimp-2.2.9/app/dialogs/stroke-dialog.c --- gimp-2.2.8/app/dialogs/stroke-dialog.c 2004-10-23 21:01:26.000000000 +0200 +++ gimp-2.2.9/app/dialogs/stroke-dialog.c 2005-09-20 18:23:58.000000000 +0200 @@ -135,10 +135,10 @@ libart_radio = g_object_ref (group->next->data); gtk_container_remove (GTK_CONTAINER (radio_box), libart_radio); - paint_radio = g_object_ref (group->data); + paint_radio = g_object_ref (group->data); gtk_container_remove (GTK_CONTAINER (radio_box), paint_radio); - gtk_widget_destroy (radio_box); + gtk_object_sink (GTK_OBJECT (radio_box)); { PangoFontDescription *font_desc; diff -uraN gimp-2.2.8/app/display/gimpdisplayshell.c gimp-2.2.9/app/display/gimpdisplayshell.c --- gimp-2.2.8/app/display/gimpdisplayshell.c 2005-06-06 17:59:21.000000000 +0200 +++ gimp-2.2.9/app/display/gimpdisplayshell.c 2005-10-20 12:20:14.000000000 +0200 @@ -875,6 +875,11 @@ gimp_help_set_help_data (shell->vrule, NULL, GIMP_HELP_IMAGE_WINDOW_RULER); + /* Workaround for GTK+ Wintab bug on Windows when creating guides by + * dragging from the rulers. See bug #168516. */ + gtk_widget_set_extension_events (shell->hrule, GDK_EXTENSION_EVENTS_ALL); + gtk_widget_set_extension_events (shell->vrule, GDK_EXTENSION_EVENTS_ALL); + /* the canvas */ gtk_widget_set_size_request (shell->canvas, n_width, n_height); gtk_widget_set_events (shell->canvas, GIMP_DISPLAY_SHELL_CANVAS_EVENT_MASK); diff -uraN gimp-2.2.8/app/display/gimpdisplayshell-callbacks.c gimp-2.2.9/app/display/gimpdisplayshell-callbacks.c --- gimp-2.2.8/app/display/gimpdisplayshell-callbacks.c 2005-03-08 16:47:58.000000000 +0100 +++ gimp-2.2.9/app/display/gimpdisplayshell-callbacks.c 2005-10-20 12:20:14.000000000 +0200 @@ -1240,18 +1240,9 @@ case GDK_Tab: case GDK_ISO_Left_Tab: - if (! state) + if (state & GDK_CONTROL_MASK) { - GimpDialogFactory *dialog_factory; - - dialog_factory = gimp_dialog_factory_from_name ("toolbox"); - - /* Hide or show all dialogs */ - gimp_dialog_factories_toggle (dialog_factory, FALSE); - } - else if (! gimp_image_is_empty (gimage)) - { - if (state & GDK_CONTROL_MASK) + if (! gimp_image_is_empty (gimage)) { if (kevent->keyval == GDK_Tab) gimp_display_shell_layer_select_init (shell, @@ -1261,6 +1252,15 @@ -1, kevent->time); } } + else + { + GimpDialogFactory *dialog_factory; + + dialog_factory = gimp_dialog_factory_from_name ("toolbox"); + + /* Hide or show all dialogs */ + gimp_dialog_factories_toggle (dialog_factory, FALSE); + } return_val = TRUE; break; diff -uraN gimp-2.2.8/app/display/Makefile.in gimp-2.2.9/app/display/Makefile.in --- gimp-2.2.8/app/display/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/display/Makefile.in 2005-10-27 17:11:32.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,62 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/display +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappdisplay_a_AR = $(AR) $(ARFLAGS) +libappdisplay_a_LIBADD = +am__objects_1 = display-enums.$(OBJEXT) +am__objects_2 = gimpcanvas.$(OBJEXT) gimpdisplay.$(OBJEXT) \ + gimpdisplayoptions.$(OBJEXT) gimpdisplay-foreach.$(OBJEXT) \ + gimpdisplay-handlers.$(OBJEXT) gimpdisplayshell.$(OBJEXT) \ + gimpdisplayshell-appearance.$(OBJEXT) \ + gimpdisplayshell-callbacks.$(OBJEXT) \ + gimpdisplayshell-close.$(OBJEXT) \ + gimpdisplayshell-cursor.$(OBJEXT) \ + gimpdisplayshell-dnd.$(OBJEXT) gimpdisplayshell-draw.$(OBJEXT) \ + gimpdisplayshell-handlers.$(OBJEXT) \ + gimpdisplayshell-filter.$(OBJEXT) \ + gimpdisplayshell-filter-dialog.$(OBJEXT) \ + gimpdisplayshell-layer-select.$(OBJEXT) \ + gimpdisplayshell-preview.$(OBJEXT) \ + gimpdisplayshell-render.$(OBJEXT) \ + gimpdisplayshell-scale.$(OBJEXT) \ + gimpdisplayshell-scroll.$(OBJEXT) \ + gimpdisplayshell-selection.$(OBJEXT) \ + gimpdisplayshell-title.$(OBJEXT) \ + gimpdisplayshell-transform.$(OBJEXT) \ + gimpnavigationeditor.$(OBJEXT) gimpscalecombobox.$(OBJEXT) \ + gimpstatusbar.$(OBJEXT) +am_libappdisplay_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libappdisplay_a_OBJECTS = $(am_libappdisplay_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappdisplay_a_SOURCES) +DIST_SOURCES = $(libappdisplay_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +288,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +339,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +386,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,22 +426,18 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Display\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GTK_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libappdisplay.a - libappdisplay_a_sources = \ display-enums.h \ display-types.h \ @@ -440,14 +494,11 @@ gimpstatusbar.c \ gimpstatusbar.h - libappdisplay_a_built_sources = display-enums.c - libappdisplay_a_SOURCES = \ $(libappdisplay_a_built_sources) \ $(libappdisplay_a_sources) - EXTRA_DIST = makefile.msc # @@ -456,90 +507,39 @@ # setup autogeneration dependencies gen_sources = xgen-dec CLEANFILES = $(gen_sources) -subdir = app/display -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappdisplay_a_AR = $(AR) cru -libappdisplay_a_LIBADD = -am__objects_1 = display-enums.$(OBJEXT) -am__objects_2 = gimpcanvas.$(OBJEXT) gimpdisplay.$(OBJEXT) \ - gimpdisplayoptions.$(OBJEXT) gimpdisplay-foreach.$(OBJEXT) \ - gimpdisplay-handlers.$(OBJEXT) gimpdisplayshell.$(OBJEXT) \ - gimpdisplayshell-appearance.$(OBJEXT) \ - gimpdisplayshell-callbacks.$(OBJEXT) \ - gimpdisplayshell-close.$(OBJEXT) \ - gimpdisplayshell-cursor.$(OBJEXT) \ - gimpdisplayshell-dnd.$(OBJEXT) gimpdisplayshell-draw.$(OBJEXT) \ - gimpdisplayshell-handlers.$(OBJEXT) \ - gimpdisplayshell-filter.$(OBJEXT) \ - gimpdisplayshell-filter-dialog.$(OBJEXT) \ - gimpdisplayshell-layer-select.$(OBJEXT) \ - gimpdisplayshell-preview.$(OBJEXT) \ - gimpdisplayshell-render.$(OBJEXT) \ - gimpdisplayshell-scale.$(OBJEXT) \ - gimpdisplayshell-scroll.$(OBJEXT) \ - gimpdisplayshell-selection.$(OBJEXT) \ - gimpdisplayshell-title.$(OBJEXT) \ - gimpdisplayshell-transform.$(OBJEXT) \ - gimpnavigationeditor.$(OBJEXT) gimpscalecombobox.$(OBJEXT) \ - gimpstatusbar.$(OBJEXT) -am_libappdisplay_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libappdisplay_a_OBJECTS = $(am_libappdisplay_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/display-enums.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcanvas.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplay-foreach.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplay-handlers.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplay.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-appearance.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-callbacks.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-close.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-cursor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-dnd.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-draw.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-filter-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-filter.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-handlers.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-layer-select.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-render.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-scale.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-scroll.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-selection.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-title.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell-transform.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplayshell.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpnavigationeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpscalecombobox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstatusbar.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappdisplay_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappdisplay_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/display/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/display/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -549,7 +549,7 @@ $(RANLIB) libappdisplay.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -583,37 +583,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpstatusbar.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -625,14 +613,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -641,6 +621,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -652,10 +633,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -678,10 +660,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -695,7 +673,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -713,7 +691,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -735,7 +712,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -755,6 +732,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -792,13 +771,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am $(srcdir)/display-enums.c: $(srcdir)/display-enums.h $(GIMP_MKENUMS) diff -uraN gimp-2.2.8/app/file/Makefile.in gimp-2.2.9/app/file/Makefile.in --- gimp-2.2.8/app/file/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/file/Makefile.in 2005-10-27 17:11:33.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,42 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/file +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappfile_a_AR = $(AR) $(ARFLAGS) +libappfile_a_LIBADD = +am_libappfile_a_OBJECTS = file-open.$(OBJEXT) file-save.$(OBJEXT) \ + file-utils.$(OBJEXT) gimprecentitem.$(OBJEXT) \ + gimprecentlist.$(OBJEXT) +libappfile_a_OBJECTS = $(am_libappfile_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappfile_a_SOURCES) +DIST_SOURCES = $(libappfile_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +268,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +319,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +366,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +406,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libappfile.a - libappfile_a_SOURCES = \ file-open.c \ file-open.h \ @@ -383,62 +419,51 @@ gimprecentlist.c \ gimprecentlist.h - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-File\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - EXTRA_DIST = makefile.msc -subdir = app/file -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappfile_a_AR = $(AR) cru -libappfile_a_LIBADD = -am_libappfile_a_OBJECTS = file-open.$(OBJEXT) file-save.$(OBJEXT) \ - file-utils.$(OBJEXT) gimprecentitem.$(OBJEXT) \ - gimprecentlist.$(OBJEXT) -libappfile_a_OBJECTS = $(am_libappfile_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/file-open.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/file-save.Po ./$(DEPDIR)/file-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprecentitem.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprecentlist.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappfile_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappfile_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/file/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/file/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -448,7 +473,7 @@ $(RANLIB) libappfile.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -460,37 +485,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimprecentlist.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -502,14 +515,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -518,6 +523,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -529,10 +535,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -555,10 +562,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -572,7 +575,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -590,7 +593,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -611,7 +613,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -631,6 +633,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -668,13 +672,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/gui/Makefile.in gimp-2.2.9/app/gui/Makefile.in --- gimp-2.2.8/app/gui/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/gui/Makefile.in 2005-10-27 17:11:33.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,42 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/gui +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappgui_a_AR = $(AR) $(ARFLAGS) +libappgui_a_LIBADD = +am_libappgui_a_OBJECTS = color-history.$(OBJEXT) gui.$(OBJEXT) \ + gui-vtable.$(OBJEXT) session.$(OBJEXT) splash.$(OBJEXT) \ + themes.$(OBJEXT) +libappgui_a_OBJECTS = $(am_libappgui_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappgui_a_SOURCES) +DIST_SOURCES = $(libappgui_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +268,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +319,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +366,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +406,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libappgui.a - libappgui_a_SOURCES = \ color-history.c \ color-history.h \ @@ -386,15 +422,12 @@ themes.c \ themes.h - EXTRA_DIST = makefile.msc - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-GUI\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_builddir) \ -I$(top_srcdir) \ @@ -403,47 +436,39 @@ $(GTK_CFLAGS) \ -I$(includedir) -subdir = app/gui -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappgui_a_AR = $(AR) cru -libappgui_a_LIBADD = -am_libappgui_a_OBJECTS = color-history.$(OBJEXT) gui.$(OBJEXT) \ - gui-vtable.$(OBJEXT) session.$(OBJEXT) splash.$(OBJEXT) \ - themes.$(OBJEXT) -libappgui_a_OBJECTS = $(am_libappgui_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/color-history.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gui-vtable.Po ./$(DEPDIR)/gui.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/session.Po ./$(DEPDIR)/splash.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/themes.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappgui_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappgui_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/gui/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/gui/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -453,7 +478,7 @@ $(RANLIB) libappgui.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -466,37 +491,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/themes.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -508,14 +521,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -524,6 +529,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -535,10 +541,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -561,10 +568,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -578,7 +581,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -596,7 +599,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -617,7 +619,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -637,6 +639,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -674,13 +678,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/Makefile.in gimp-2.2.9/app/Makefile.in --- gimp-2.2.8/app/Makefile.in 2005-06-26 21:28:16.000000000 +0200 +++ gimp-2.2.9/app/Makefile.in 2005-10-27 17:11:30.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,121 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +@ENABLE_GIMP_CONSOLE_FALSE@bin_PROGRAMS = gimp-2.2$(EXEEXT) +@ENABLE_GIMP_CONSOLE_TRUE@bin_PROGRAMS = gimp-2.2$(EXEEXT) \ +@ENABLE_GIMP_CONSOLE_TRUE@ gimp-console-2.2$(EXEEXT) +subdir = app +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am__objects_1 = app_procs.$(OBJEXT) main.$(OBJEXT) batch.$(OBJEXT) \ + errors.$(OBJEXT) sanity.$(OBJEXT) units.$(OBJEXT) +am_gimp_2_2_OBJECTS = $(am__objects_1) +gimp_2_2_OBJECTS = $(am_gimp_2_2_OBJECTS) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +@HAVE_GLIBC_REGEX_FALSE@am__DEPENDENCIES_7 = \ +@HAVE_GLIBC_REGEX_FALSE@ $(top_builddir)/regexrepl/libregex.a +am__DEPENDENCIES_8 = +@HAVE_WINDRES_TRUE@am__DEPENDENCIES_9 = gimprc.o +gimp_2_2_DEPENDENCIES = gui/libappgui.a actions/libappactions.a \ + dialogs/libappdialogs.a menus/libappmenus.a \ + display/libappdisplay.a tools/libapptools.a \ + widgets/libappwidgets.a pdb/libapppdb.a \ + vectors/libappvectors.a plug-in/libappplug-in.a \ + core/libappcore.a paint/libapppaint.a xcf/libappxcf.a \ + text/libapptext.a file/libappfile.a config/libappconfig.a \ + paint-funcs/libapppaint-funcs.a composite/libappcomposite.a \ + base/libappbase.a $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_7) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_9) +am__gimp_console_2_2_SOURCES_DIST = app_procs.c app_procs.h main.c \ + batch.c batch.h errors.c errors.h sanity.c sanity.h units.c \ + units.h gimp-intl.h +am__objects_2 = gimp_console_2_2-app_procs.$(OBJEXT) \ + gimp_console_2_2-main.$(OBJEXT) \ + gimp_console_2_2-batch.$(OBJEXT) \ + gimp_console_2_2-errors.$(OBJEXT) \ + gimp_console_2_2-sanity.$(OBJEXT) \ + gimp_console_2_2-units.$(OBJEXT) +@ENABLE_GIMP_CONSOLE_TRUE@am_gimp_console_2_2_OBJECTS = \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__objects_2) +gimp_console_2_2_OBJECTS = $(am_gimp_console_2_2_OBJECTS) +@ENABLE_GIMP_CONSOLE_TRUE@gimp_console_2_2_DEPENDENCIES = \ +@ENABLE_GIMP_CONSOLE_TRUE@ widgets/widgets-enums.o \ +@ENABLE_GIMP_CONSOLE_TRUE@ display/display-enums.o \ +@ENABLE_GIMP_CONSOLE_TRUE@ display/gimpdisplayoptions.o \ +@ENABLE_GIMP_CONSOLE_TRUE@ pdb/libapppdb.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ vectors/libappvectors.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ plug-in/libappplug-in.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ core/libappcore.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ paint/libapppaint.a xcf/libappxcf.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ text/libapptext.a file/libappfile.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ config/libappconfig.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ paint-funcs/libapppaint-funcs.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ composite/libappcomposite.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ base/libappbase.a \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_2) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_3) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_4) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_5) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_6) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_7) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_8) \ +@ENABLE_GIMP_CONSOLE_TRUE@ $(am__DEPENDENCIES_9) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gimp_2_2_SOURCES) $(gimp_console_2_2_SOURCES) +DIST_SOURCES = $(gimp_2_2_SOURCES) \ + $(am__gimp_console_2_2_SOURCES_DIST) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +347,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +398,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +445,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,14 +485,12 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la - SUBDIRS = \ paint-funcs \ composite \ @@ -397,12 +512,7 @@ gui \ pdb - scriptdata = -@ENABLE_GIMP_CONSOLE_FALSE@bin_PROGRAMS = gimp-2.2 - -@ENABLE_GIMP_CONSOLE_TRUE@bin_PROGRAMS = gimp-2.2 gimp-console-2.2 - app_sources = \ app_procs.c \ app_procs.h \ @@ -417,9 +527,7 @@ units.h \ gimp-intl.h - gimp_2_2_SOURCES = $(app_sources) - EXTRA_DIST = \ makefile.msc \ gimp.rc \ @@ -427,29 +535,22 @@ wilber.ico @HAVE_GLIBC_REGEX_FALSE@REGEXREPL = $(top_builddir)/regexrepl/libregex.a - @HAVE_GLIBC_REGEX_TRUE@REGEXREPL = - @OS_WIN32_TRUE@mwindows = -mwindows - @HAVE_WINDRES_TRUE@GIMPICONRC = gimprc.o - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp\" \ -DGIMP_APP_GLUE_COMPILATION \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ $(PANGOFT2_CFLAGS) \ -I$(includedir) - gimp_2_2_LDFLAGS = $(mwindows) - gimp_2_2_LDADD = \ gui/libappgui.a \ actions/libappactions.a \ @@ -488,16 +589,12 @@ $(INTLLIBS) \ $(GIMPICONRC) - @ENABLE_GIMP_CONSOLE_TRUE@gimp_console_2_2_SOURCES = $(app_sources) - @ENABLE_GIMP_CONSOLE_TRUE@gimp_console_2_2_CPPFLAGS = \ @ENABLE_GIMP_CONSOLE_TRUE@ $(AM_CPPFLAGS) \ @ENABLE_GIMP_CONSOLE_TRUE@ -DGIMP_CONSOLE_COMPILATION - @ENABLE_GIMP_CONSOLE_TRUE@gimp_console_2_2_LDFLAGS = $(gimp_2_2_LDFLAGS) - @ENABLE_GIMP_CONSOLE_TRUE@gimp_console_2_2_LDADD = \ @ENABLE_GIMP_CONSOLE_TRUE@ widgets/widgets-enums.o \ @ENABLE_GIMP_CONSOLE_TRUE@ display/display-enums.o \ @@ -531,284 +628,50 @@ @ENABLE_GIMP_CONSOLE_TRUE@ $(INTLLIBS) \ @ENABLE_GIMP_CONSOLE_TRUE@ $(GIMPICONRC) -subdir = app -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -@ENABLE_GIMP_CONSOLE_TRUE@bin_PROGRAMS = gimp-2.2$(EXEEXT) \ -@ENABLE_GIMP_CONSOLE_TRUE@ gimp-console-2.2$(EXEEXT) -@ENABLE_GIMP_CONSOLE_FALSE@bin_PROGRAMS = gimp-2.2$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) - -am__objects_1 = app_procs.$(OBJEXT) main.$(OBJEXT) batch.$(OBJEXT) \ - errors.$(OBJEXT) sanity.$(OBJEXT) units.$(OBJEXT) -am_gimp_2_2_OBJECTS = $(am__objects_1) -gimp_2_2_OBJECTS = $(am_gimp_2_2_OBJECTS) -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@gimp_2_2_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ gui/libappgui.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ actions/libappactions.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ dialogs/libappdialogs.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ menus/libappmenus.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ display/libappdisplay.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ tools/libapptools.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ widgets/libappwidgets.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ pdb/libapppdb.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ vectors/libappvectors.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ plug-in/libappplug-in.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ core/libappcore.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ paint/libapppaint.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ xcf/libappxcf.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ text/libapptext.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ file/libappfile.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ config/libappconfig.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ paint-funcs/libapppaint-funcs.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ composite/libappcomposite.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ base/libappbase.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/regexrepl/libregex.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ gimprc.o -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@gimp_2_2_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ gui/libappgui.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ actions/libappactions.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ dialogs/libappdialogs.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ menus/libappmenus.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ display/libappdisplay.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ tools/libapptools.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ widgets/libappwidgets.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ pdb/libapppdb.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ vectors/libappvectors.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ plug-in/libappplug-in.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ core/libappcore.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ paint/libapppaint.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ xcf/libappxcf.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ text/libapptext.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ file/libappfile.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ config/libappconfig.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ paint-funcs/libapppaint-funcs.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ composite/libappcomposite.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ base/libappbase.a \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/regexrepl/libregex.a -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@gimp_2_2_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ gui/libappgui.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ actions/libappactions.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ dialogs/libappdialogs.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ menus/libappmenus.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ display/libappdisplay.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ tools/libapptools.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ widgets/libappwidgets.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ pdb/libapppdb.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ vectors/libappvectors.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ plug-in/libappplug-in.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ core/libappcore.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ paint/libapppaint.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ xcf/libappxcf.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ text/libapptext.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ file/libappfile.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ config/libappconfig.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ paint-funcs/libapppaint-funcs.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ composite/libappcomposite.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ base/libappbase.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ gimprc.o -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@gimp_2_2_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ gui/libappgui.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ actions/libappactions.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ dialogs/libappdialogs.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ menus/libappmenus.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ display/libappdisplay.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ tools/libapptools.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ widgets/libappwidgets.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ pdb/libapppdb.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ vectors/libappvectors.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ plug-in/libappplug-in.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ core/libappcore.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ paint/libapppaint.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ xcf/libappxcf.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ text/libapptext.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ file/libappfile.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ config/libappconfig.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ paint-funcs/libapppaint-funcs.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ composite/libappcomposite.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ base/libappbase.a \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -am__gimp_console_2_2_SOURCES_DIST = app_procs.c app_procs.h main.c \ - batch.c batch.h errors.c errors.h sanity.c sanity.h units.c \ - units.h gimp-intl.h -am__objects_2 = gimp_console_2_2-app_procs.$(OBJEXT) \ - gimp_console_2_2-main.$(OBJEXT) \ - gimp_console_2_2-batch.$(OBJEXT) \ - gimp_console_2_2-errors.$(OBJEXT) \ - gimp_console_2_2-sanity.$(OBJEXT) \ - gimp_console_2_2-units.$(OBJEXT) -@ENABLE_GIMP_CONSOLE_TRUE@am_gimp_console_2_2_OBJECTS = $(am__objects_2) -gimp_console_2_2_OBJECTS = $(am_gimp_console_2_2_OBJECTS) -@ENABLE_GIMP_CONSOLE_FALSE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@gimp_console_2_2_DEPENDENCIES = -@ENABLE_GIMP_CONSOLE_FALSE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@gimp_console_2_2_DEPENDENCIES = -@ENABLE_GIMP_CONSOLE_FALSE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@gimp_console_2_2_DEPENDENCIES = -@ENABLE_GIMP_CONSOLE_FALSE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@gimp_console_2_2_DEPENDENCIES = -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@gimp_console_2_2_DEPENDENCIES = \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ widgets/widgets-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ display/display-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ display/gimpdisplayoptions.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ pdb/libapppdb.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ vectors/libappvectors.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ plug-in/libappplug-in.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ core/libappcore.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ paint/libapppaint.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ xcf/libappxcf.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ text/libapptext.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ file/libappfile.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ config/libappconfig.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ paint-funcs/libapppaint-funcs.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ composite/libappcomposite.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ base/libappbase.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ $(top_builddir)/regexrepl/libregex.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_TRUE@ gimprc.o -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@gimp_console_2_2_DEPENDENCIES = \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ widgets/widgets-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ display/display-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ display/gimpdisplayoptions.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ pdb/libapppdb.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ vectors/libappvectors.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ plug-in/libappplug-in.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ core/libappcore.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ paint/libapppaint.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ xcf/libappxcf.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ text/libapptext.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ file/libappfile.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ config/libappconfig.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ paint-funcs/libapppaint-funcs.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ composite/libappcomposite.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ base/libappbase.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_FALSE@@HAVE_WINDRES_FALSE@ $(top_builddir)/regexrepl/libregex.a -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@gimp_console_2_2_DEPENDENCIES = \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ widgets/widgets-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ display/display-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ display/gimpdisplayoptions.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ pdb/libapppdb.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ vectors/libappvectors.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ plug-in/libappplug-in.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ core/libappcore.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ paint/libapppaint.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ xcf/libappxcf.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ text/libapptext.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ file/libappfile.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ config/libappconfig.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ paint-funcs/libapppaint-funcs.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ composite/libappcomposite.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ base/libappbase.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_TRUE@ gimprc.o -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@gimp_console_2_2_DEPENDENCIES = \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ widgets/widgets-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ display/display-enums.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ display/gimpdisplayoptions.o \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ pdb/libapppdb.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ vectors/libappvectors.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ plug-in/libappplug-in.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ core/libappcore.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ paint/libapppaint.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ xcf/libappxcf.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ text/libapptext.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ file/libappfile.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ config/libappconfig.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ paint-funcs/libapppaint-funcs.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ composite/libappcomposite.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ base/libappbase.a \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ -@ENABLE_GIMP_CONSOLE_TRUE@@HAVE_GLIBC_REGEX_TRUE@@HAVE_WINDRES_FALSE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/app_procs.Po ./$(DEPDIR)/batch.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/errors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_console_2_2-app_procs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_console_2_2-batch.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_console_2_2-errors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_console_2_2-main.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_console_2_2-sanity.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_console_2_2-units.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/main.Po ./$(DEPDIR)/sanity.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/units.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gimp_2_2_SOURCES) $(am__gimp_console_2_2_SOURCES_DIST) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(gimp_2_2_SOURCES) $(gimp_console_2_2_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done @@ -816,8 +679,8 @@ @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ - rm -f $(DESTDIR)$(bindir)/$$f; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @@ -834,7 +697,7 @@ $(LINK) $(gimp_console_2_2_LDFLAGS) $(gimp_console_2_2_OBJECTS) $(gimp_console_2_2_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -853,236 +716,110 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/units.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< gimp_console_2_2-app_procs.o: app_procs.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-app_procs.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-app_procs.o `test -f 'app_procs.c' || echo '$(srcdir)/'`app_procs.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" "$(DEPDIR)/gimp_console_2_2-app_procs.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-app_procs.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" -c -o gimp_console_2_2-app_procs.o `test -f 'app_procs.c' || echo '$(srcdir)/'`app_procs.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" "$(DEPDIR)/gimp_console_2_2-app_procs.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='app_procs.c' object='gimp_console_2_2-app_procs.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-app_procs.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-app_procs.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-app_procs.o `test -f 'app_procs.c' || echo '$(srcdir)/'`app_procs.c gimp_console_2_2-app_procs.obj: app_procs.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-app_procs.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-app_procs.obj `if test -f 'app_procs.c'; then $(CYGPATH_W) 'app_procs.c'; else $(CYGPATH_W) '$(srcdir)/app_procs.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" "$(DEPDIR)/gimp_console_2_2-app_procs.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-app_procs.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" -c -o gimp_console_2_2-app_procs.obj `if test -f 'app_procs.c'; then $(CYGPATH_W) 'app_procs.c'; else $(CYGPATH_W) '$(srcdir)/app_procs.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" "$(DEPDIR)/gimp_console_2_2-app_procs.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='app_procs.c' object='gimp_console_2_2-app_procs.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-app_procs.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-app_procs.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-app_procs.obj `if test -f 'app_procs.c'; then $(CYGPATH_W) 'app_procs.c'; else $(CYGPATH_W) '$(srcdir)/app_procs.c'; fi` -gimp_console_2_2-app_procs.lo: app_procs.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-app_procs.lo -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-app_procs.lo `test -f 'app_procs.c' || echo '$(srcdir)/'`app_procs.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo" "$(DEPDIR)/gimp_console_2_2-app_procs.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-app_procs.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='app_procs.c' object='gimp_console_2_2-app_procs.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-app_procs.Plo' tmpdepfile='$(DEPDIR)/gimp_console_2_2-app_procs.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-app_procs.lo `test -f 'app_procs.c' || echo '$(srcdir)/'`app_procs.c - gimp_console_2_2-main.o: main.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-main.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-main.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-main.Tpo" "$(DEPDIR)/gimp_console_2_2-main.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-main.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-main.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-main.Tpo" -c -o gimp_console_2_2-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-main.Tpo" "$(DEPDIR)/gimp_console_2_2-main.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='gimp_console_2_2-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-main.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-main.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c gimp_console_2_2-main.obj: main.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-main.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-main.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-main.Tpo" "$(DEPDIR)/gimp_console_2_2-main.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-main.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-main.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-main.Tpo" -c -o gimp_console_2_2-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-main.Tpo" "$(DEPDIR)/gimp_console_2_2-main.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-main.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='gimp_console_2_2-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-main.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-main.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` -gimp_console_2_2-main.lo: main.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-main.lo -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-main.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-main.Tpo" "$(DEPDIR)/gimp_console_2_2-main.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-main.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='gimp_console_2_2-main.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-main.Plo' tmpdepfile='$(DEPDIR)/gimp_console_2_2-main.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c - gimp_console_2_2-batch.o: batch.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-batch.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-batch.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-batch.o `test -f 'batch.c' || echo '$(srcdir)/'`batch.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo" "$(DEPDIR)/gimp_console_2_2-batch.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-batch.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-batch.Tpo" -c -o gimp_console_2_2-batch.o `test -f 'batch.c' || echo '$(srcdir)/'`batch.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo" "$(DEPDIR)/gimp_console_2_2-batch.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='batch.c' object='gimp_console_2_2-batch.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-batch.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-batch.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-batch.o `test -f 'batch.c' || echo '$(srcdir)/'`batch.c gimp_console_2_2-batch.obj: batch.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-batch.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-batch.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-batch.obj `if test -f 'batch.c'; then $(CYGPATH_W) 'batch.c'; else $(CYGPATH_W) '$(srcdir)/batch.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo" "$(DEPDIR)/gimp_console_2_2-batch.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-batch.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-batch.Tpo" -c -o gimp_console_2_2-batch.obj `if test -f 'batch.c'; then $(CYGPATH_W) 'batch.c'; else $(CYGPATH_W) '$(srcdir)/batch.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo" "$(DEPDIR)/gimp_console_2_2-batch.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='batch.c' object='gimp_console_2_2-batch.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-batch.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-batch.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-batch.obj `if test -f 'batch.c'; then $(CYGPATH_W) 'batch.c'; else $(CYGPATH_W) '$(srcdir)/batch.c'; fi` -gimp_console_2_2-batch.lo: batch.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-batch.lo -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-batch.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-batch.lo `test -f 'batch.c' || echo '$(srcdir)/'`batch.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo" "$(DEPDIR)/gimp_console_2_2-batch.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-batch.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='batch.c' object='gimp_console_2_2-batch.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-batch.Plo' tmpdepfile='$(DEPDIR)/gimp_console_2_2-batch.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-batch.lo `test -f 'batch.c' || echo '$(srcdir)/'`batch.c - gimp_console_2_2-errors.o: errors.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-errors.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-errors.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-errors.o `test -f 'errors.c' || echo '$(srcdir)/'`errors.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo" "$(DEPDIR)/gimp_console_2_2-errors.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-errors.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-errors.Tpo" -c -o gimp_console_2_2-errors.o `test -f 'errors.c' || echo '$(srcdir)/'`errors.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo" "$(DEPDIR)/gimp_console_2_2-errors.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='errors.c' object='gimp_console_2_2-errors.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-errors.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-errors.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-errors.o `test -f 'errors.c' || echo '$(srcdir)/'`errors.c gimp_console_2_2-errors.obj: errors.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-errors.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-errors.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-errors.obj `if test -f 'errors.c'; then $(CYGPATH_W) 'errors.c'; else $(CYGPATH_W) '$(srcdir)/errors.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo" "$(DEPDIR)/gimp_console_2_2-errors.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-errors.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-errors.Tpo" -c -o gimp_console_2_2-errors.obj `if test -f 'errors.c'; then $(CYGPATH_W) 'errors.c'; else $(CYGPATH_W) '$(srcdir)/errors.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo" "$(DEPDIR)/gimp_console_2_2-errors.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='errors.c' object='gimp_console_2_2-errors.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-errors.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-errors.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-errors.obj `if test -f 'errors.c'; then $(CYGPATH_W) 'errors.c'; else $(CYGPATH_W) '$(srcdir)/errors.c'; fi` -gimp_console_2_2-errors.lo: errors.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-errors.lo -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-errors.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-errors.lo `test -f 'errors.c' || echo '$(srcdir)/'`errors.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo" "$(DEPDIR)/gimp_console_2_2-errors.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-errors.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='errors.c' object='gimp_console_2_2-errors.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-errors.Plo' tmpdepfile='$(DEPDIR)/gimp_console_2_2-errors.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-errors.lo `test -f 'errors.c' || echo '$(srcdir)/'`errors.c - gimp_console_2_2-sanity.o: sanity.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-sanity.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-sanity.o `test -f 'sanity.c' || echo '$(srcdir)/'`sanity.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" "$(DEPDIR)/gimp_console_2_2-sanity.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-sanity.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" -c -o gimp_console_2_2-sanity.o `test -f 'sanity.c' || echo '$(srcdir)/'`sanity.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" "$(DEPDIR)/gimp_console_2_2-sanity.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sanity.c' object='gimp_console_2_2-sanity.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-sanity.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-sanity.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-sanity.o `test -f 'sanity.c' || echo '$(srcdir)/'`sanity.c gimp_console_2_2-sanity.obj: sanity.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-sanity.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-sanity.obj `if test -f 'sanity.c'; then $(CYGPATH_W) 'sanity.c'; else $(CYGPATH_W) '$(srcdir)/sanity.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" "$(DEPDIR)/gimp_console_2_2-sanity.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-sanity.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" -c -o gimp_console_2_2-sanity.obj `if test -f 'sanity.c'; then $(CYGPATH_W) 'sanity.c'; else $(CYGPATH_W) '$(srcdir)/sanity.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" "$(DEPDIR)/gimp_console_2_2-sanity.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sanity.c' object='gimp_console_2_2-sanity.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-sanity.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-sanity.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-sanity.obj `if test -f 'sanity.c'; then $(CYGPATH_W) 'sanity.c'; else $(CYGPATH_W) '$(srcdir)/sanity.c'; fi` -gimp_console_2_2-sanity.lo: sanity.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-sanity.lo -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-sanity.lo `test -f 'sanity.c' || echo '$(srcdir)/'`sanity.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo" "$(DEPDIR)/gimp_console_2_2-sanity.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-sanity.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sanity.c' object='gimp_console_2_2-sanity.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-sanity.Plo' tmpdepfile='$(DEPDIR)/gimp_console_2_2-sanity.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-sanity.lo `test -f 'sanity.c' || echo '$(srcdir)/'`sanity.c - gimp_console_2_2-units.o: units.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-units.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-units.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-units.o `test -f 'units.c' || echo '$(srcdir)/'`units.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-units.Tpo" "$(DEPDIR)/gimp_console_2_2-units.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-units.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-units.o -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-units.Tpo" -c -o gimp_console_2_2-units.o `test -f 'units.c' || echo '$(srcdir)/'`units.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-units.Tpo" "$(DEPDIR)/gimp_console_2_2-units.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-units.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='units.c' object='gimp_console_2_2-units.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-units.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-units.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-units.o `test -f 'units.c' || echo '$(srcdir)/'`units.c gimp_console_2_2-units.obj: units.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-units.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-units.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-units.obj `if test -f 'units.c'; then $(CYGPATH_W) 'units.c'; else $(CYGPATH_W) '$(srcdir)/units.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-units.Tpo" "$(DEPDIR)/gimp_console_2_2-units.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-units.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-units.obj -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-units.Tpo" -c -o gimp_console_2_2-units.obj `if test -f 'units.c'; then $(CYGPATH_W) 'units.c'; else $(CYGPATH_W) '$(srcdir)/units.c'; fi`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-units.Tpo" "$(DEPDIR)/gimp_console_2_2-units.Po"; else rm -f "$(DEPDIR)/gimp_console_2_2-units.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='units.c' object='gimp_console_2_2-units.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-units.Po' tmpdepfile='$(DEPDIR)/gimp_console_2_2-units.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-units.obj `if test -f 'units.c'; then $(CYGPATH_W) 'units.c'; else $(CYGPATH_W) '$(srcdir)/units.c'; fi` -gimp_console_2_2-units.lo: units.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gimp_console_2_2-units.lo -MD -MP -MF "$(DEPDIR)/gimp_console_2_2-units.Tpo" \ -@am__fastdepCC_TRUE@ -c -o gimp_console_2_2-units.lo `test -f 'units.c' || echo '$(srcdir)/'`units.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gimp_console_2_2-units.Tpo" "$(DEPDIR)/gimp_console_2_2-units.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gimp_console_2_2-units.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='units.c' object='gimp_console_2_2-units.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/gimp_console_2_2-units.Plo' tmpdepfile='$(DEPDIR)/gimp_console_2_2-units.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gimp_console_2_2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gimp_console_2_2-units.lo `test -f 'units.c' || echo '$(srcdir)/'`units.c - mostlyclean-libtool: -rm -f *.lo @@ -1100,7 +837,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -1112,7 +855,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -1120,7 +863,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -1141,7 +890,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -1152,14 +901,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -1168,19 +909,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -1190,10 +934,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1216,10 +961,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -1233,7 +974,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -1248,15 +989,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -1269,8 +1012,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(bindir) - + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -1290,7 +1034,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1309,6 +1053,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -1347,24 +1093,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool clean-recursive \ - ctags ctags-recursive distclean distclean-compile \ - distclean-generic distclean-libtool distclean-recursive \ - distclean-tags distdir dvi dvi-am dvi-recursive info info-am \ - info-recursive install install-am install-binPROGRAMS \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-binPROGRAMS clean-generic clean-libtool \ + clean-recursive ctags ctags-recursive dist-hook distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-exec install-exec-am \ + install-exec-hook install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ - pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ - tags-recursive uninstall uninstall-am uninstall-binPROGRAMS \ - uninstall-info-am uninstall-info-recursive uninstall-local \ - uninstall-recursive + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-info-am uninstall-local install-exec-hook: diff -uraN gimp-2.2.8/app/menus/Makefile.in gimp-2.2.9/app/menus/Makefile.in --- gimp-2.2.8/app/menus/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/menus/Makefile.in 2005-10-27 17:11:33.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,42 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/menus +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappmenus_a_AR = $(AR) $(ARFLAGS) +libappmenus_a_LIBADD = +am_libappmenus_a_OBJECTS = menus.$(OBJEXT) file-menu.$(OBJEXT) \ + image-menu.$(OBJEXT) plug-in-menus.$(OBJEXT) \ + tool-options-menu.$(OBJEXT) toolbox-menu.$(OBJEXT) +libappmenus_a_OBJECTS = $(am_libappmenus_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappmenus_a_SOURCES) +DIST_SOURCES = $(libappmenus_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +268,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +319,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +366,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +406,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libappmenus.a - libappmenus_a_SOURCES = \ menus-types.h \ menus.c \ @@ -386,17 +422,14 @@ toolbox-menu.c \ toolbox-menu.h - EXTRA_DIST = \ makefile.msc - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Menus\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_builddir) \ -I$(top_srcdir) \ @@ -405,48 +438,39 @@ $(GTK_CFLAGS) \ -I$(includedir) -subdir = app/menus -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappmenus_a_AR = $(AR) cru -libappmenus_a_LIBADD = -am_libappmenus_a_OBJECTS = menus.$(OBJEXT) file-menu.$(OBJEXT) \ - image-menu.$(OBJEXT) plug-in-menus.$(OBJEXT) \ - tool-options-menu.$(OBJEXT) toolbox-menu.$(OBJEXT) -libappmenus_a_OBJECTS = $(am_libappmenus_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/file-menu.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image-menu.Po ./$(DEPDIR)/menus.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-menus.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tool-options-menu.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/toolbox-menu.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappmenus_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappmenus_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/menus/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/menus/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -456,7 +480,7 @@ $(RANLIB) libappmenus.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -469,37 +493,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toolbox-menu.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -511,14 +523,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -527,6 +531,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -538,10 +543,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -564,10 +570,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -581,7 +583,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -599,7 +601,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -620,7 +621,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -640,6 +641,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -677,13 +680,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/paint/Makefile.in gimp-2.2.9/app/paint/Makefile.in --- gimp-2.2.8/app/paint/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/paint/Makefile.in 2005-10-27 17:11:34.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/paint +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libapppaint_a_AR = $(AR) $(ARFLAGS) +libapppaint_a_LIBADD = +am__objects_1 = paint-enums.$(OBJEXT) +am__objects_2 = gimp-paint.$(OBJEXT) gimpairbrush.$(OBJEXT) \ + gimpairbrushoptions.$(OBJEXT) gimpbrushcore.$(OBJEXT) \ + gimpclone.$(OBJEXT) gimpcloneoptions.$(OBJEXT) \ + gimpconvolve.$(OBJEXT) gimpconvolveoptions.$(OBJEXT) \ + gimpdodgeburn.$(OBJEXT) gimpdodgeburnoptions.$(OBJEXT) \ + gimperaser.$(OBJEXT) gimperaseroptions.$(OBJEXT) \ + gimpink.$(OBJEXT) gimpink-blob.$(OBJEXT) \ + gimpink-undo.$(OBJEXT) gimpinkoptions.$(OBJEXT) \ + gimppaintcore.$(OBJEXT) gimppaintcore-stroke.$(OBJEXT) \ + gimppaintcore-undo.$(OBJEXT) gimppaintoptions.$(OBJEXT) \ + gimppencil.$(OBJEXT) gimppenciloptions.$(OBJEXT) \ + gimppaintbrush.$(OBJEXT) gimpsmudge.$(OBJEXT) \ + gimpsmudgeoptions.$(OBJEXT) +am_libapppaint_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libapppaint_a_OBJECTS = $(am_libapppaint_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libapppaint_a_SOURCES) +DIST_SOURCES = $(libapppaint_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +418,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Paint\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_builddir) \ -I$(top_srcdir) \ @@ -383,9 +431,7 @@ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libapppaint.a - libapppaint_a_sources = \ paint-enums.h \ paint-types.h \ @@ -441,11 +487,8 @@ gimpsmudgeoptions.c \ gimpsmudgeoptions.h - libapppaint_a_built_sources = paint-enums.c - libapppaint_a_SOURCES = $(libapppaint_a_built_sources) $(libapppaint_a_sources) - EXTRA_DIST = makefile.msc # @@ -454,79 +497,39 @@ # setup autogeneration dependencies gen_sources = xgen-pec CLEANFILES = $(gen_sources) -subdir = app/paint -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libapppaint_a_AR = $(AR) cru -libapppaint_a_LIBADD = -am__objects_1 = paint-enums.$(OBJEXT) -am__objects_2 = gimp-paint.$(OBJEXT) gimpairbrush.$(OBJEXT) \ - gimpairbrushoptions.$(OBJEXT) gimpbrushcore.$(OBJEXT) \ - gimpclone.$(OBJEXT) gimpcloneoptions.$(OBJEXT) \ - gimpconvolve.$(OBJEXT) gimpconvolveoptions.$(OBJEXT) \ - gimpdodgeburn.$(OBJEXT) gimpdodgeburnoptions.$(OBJEXT) \ - gimperaser.$(OBJEXT) gimperaseroptions.$(OBJEXT) \ - gimpink.$(OBJEXT) gimpink-blob.$(OBJEXT) gimpink-undo.$(OBJEXT) \ - gimpinkoptions.$(OBJEXT) gimppaintcore.$(OBJEXT) \ - gimppaintcore-stroke.$(OBJEXT) gimppaintcore-undo.$(OBJEXT) \ - gimppaintoptions.$(OBJEXT) gimppencil.$(OBJEXT) \ - gimppenciloptions.$(OBJEXT) gimppaintbrush.$(OBJEXT) \ - gimpsmudge.$(OBJEXT) gimpsmudgeoptions.$(OBJEXT) -am_libapppaint_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libapppaint_a_OBJECTS = $(am_libapppaint_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp-paint.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpairbrush.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpairbrushoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushcore.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpclone.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcloneoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconvolve.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconvolveoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdodgeburn.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdodgeburnoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimperaser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimperaseroptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpink-blob.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpink-undo.Po ./$(DEPDIR)/gimpink.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpinkoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintbrush.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintcore-stroke.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintcore-undo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintcore.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppencil.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppenciloptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsmudge.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsmudgeoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/paint-enums.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libapppaint_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libapppaint_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/paint/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/paint/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -536,7 +539,7 @@ $(RANLIB) libapppaint.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -569,37 +572,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paint-enums.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -611,14 +602,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -627,6 +610,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -638,10 +622,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -664,10 +649,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -681,7 +662,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -699,7 +680,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -721,7 +701,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -741,6 +721,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -778,13 +760,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am $(srcdir)/paint-enums.c: $(srcdir)/paint-enums.h $(GIMP_MKENUMS) diff -uraN gimp-2.2.8/app/paint-funcs/Makefile.in gimp-2.2.9/app/paint-funcs/Makefile.in --- gimp-2.2.8/app/paint-funcs/Makefile.in 2005-06-26 21:28:17.000000000 +0200 +++ gimp-2.2.9/app/paint-funcs/Makefile.in 2005-10-27 17:11:33.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,40 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/paint-funcs +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libapppaint_funcs_a_AR = $(AR) $(ARFLAGS) +libapppaint_funcs_a_LIBADD = +am_libapppaint_funcs_a_OBJECTS = paint-funcs.$(OBJEXT) +libapppaint_funcs_a_OBJECTS = $(am_libapppaint_funcs_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libapppaint_funcs_a_SOURCES) +DIST_SOURCES = $(libapppaint_funcs_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +266,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +317,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +364,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,72 +404,63 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libapppaint-funcs.a - libapppaint_funcs_a_SOURCES = \ paint-funcs-types.h \ paint-funcs.c \ paint-funcs.h \ paint-funcs-generic.h - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GLIB_CFLAGS) \ -I$(includedir) - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Paint-Funcs\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - AM_CCASFLAGS = \ -I$(top_builddir) \ -I$(top_srcdir) \ -I$(top_srcdir)/app - EXTRA_DIST = makefile.msc -subdir = app/paint-funcs -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libapppaint_funcs_a_AR = $(AR) cru -libapppaint_funcs_a_LIBADD = -am_libapppaint_funcs_a_OBJECTS = paint-funcs.$(OBJEXT) -libapppaint_funcs_a_OBJECTS = $(am_libapppaint_funcs_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/paint-funcs.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libapppaint_funcs_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libapppaint_funcs_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/paint-funcs/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/paint-funcs/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -443,7 +470,7 @@ $(RANLIB) libapppaint-funcs.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -451,37 +478,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paint-funcs.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -493,14 +508,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -509,6 +516,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -520,10 +528,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -546,10 +555,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -563,7 +568,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -581,7 +586,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -602,7 +606,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -622,6 +626,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -659,13 +665,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/pdb/Makefile.in gimp-2.2.9/app/pdb/Makefile.in --- gimp-2.2.8/app/pdb/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/pdb/Makefile.in 2005-10-27 17:11:34.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,62 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/pdb +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libapppdb_a_AR = $(AR) $(ARFLAGS) +libapppdb_a_LIBADD = +am_libapppdb_a_OBJECTS = procedural_db.$(OBJEXT) \ + internal_procs.$(OBJEXT) brush_cmds.$(OBJEXT) \ + brush_select_cmds.$(OBJEXT) brushes_cmds.$(OBJEXT) \ + channel_cmds.$(OBJEXT) color_cmds.$(OBJEXT) \ + context_cmds.$(OBJEXT) convert_cmds.$(OBJEXT) \ + display_cmds.$(OBJEXT) drawable_cmds.$(OBJEXT) \ + drawable_transform_cmds.$(OBJEXT) edit_cmds.$(OBJEXT) \ + fileops_cmds.$(OBJEXT) floating_sel_cmds.$(OBJEXT) \ + font_select_cmds.$(OBJEXT) fonts_cmds.$(OBJEXT) \ + gimprc_cmds.$(OBJEXT) gradient_cmds.$(OBJEXT) \ + gradient_select_cmds.$(OBJEXT) gradients_cmds.$(OBJEXT) \ + guides_cmds.$(OBJEXT) help_cmds.$(OBJEXT) image_cmds.$(OBJEXT) \ + layer_cmds.$(OBJEXT) message_cmds.$(OBJEXT) \ + misc_cmds.$(OBJEXT) paint_tools_cmds.$(OBJEXT) \ + palette_cmds.$(OBJEXT) palette_select_cmds.$(OBJEXT) \ + palettes_cmds.$(OBJEXT) parasite_cmds.$(OBJEXT) \ + paths_cmds.$(OBJEXT) pattern_cmds.$(OBJEXT) \ + pattern_select_cmds.$(OBJEXT) patterns_cmds.$(OBJEXT) \ + plug_in_cmds.$(OBJEXT) procedural_db_cmds.$(OBJEXT) \ + progress_cmds.$(OBJEXT) selection_cmds.$(OBJEXT) \ + selection_tools_cmds.$(OBJEXT) text_tool_cmds.$(OBJEXT) \ + transform_tools_cmds.$(OBJEXT) undo_cmds.$(OBJEXT) \ + unit_cmds.$(OBJEXT) +libapppdb_a_OBJECTS = $(am_libapppdb_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libapppdb_a_SOURCES) +DIST_SOURCES = $(libapppdb_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +288,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +339,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +386,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +426,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libapppdb.a - libapppdb_a_SOURCES = \ pdb-types.h \ pdb_glue.h \ @@ -423,120 +479,51 @@ undo_cmds.c \ unit_cmds.c - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-PDB\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - EXTRA_DIST = makefile.msc -subdir = app/pdb -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libapppdb_a_AR = $(AR) cru -libapppdb_a_LIBADD = -am_libapppdb_a_OBJECTS = procedural_db.$(OBJEXT) \ - internal_procs.$(OBJEXT) brush_cmds.$(OBJEXT) \ - brush_select_cmds.$(OBJEXT) brushes_cmds.$(OBJEXT) \ - channel_cmds.$(OBJEXT) color_cmds.$(OBJEXT) \ - context_cmds.$(OBJEXT) convert_cmds.$(OBJEXT) \ - display_cmds.$(OBJEXT) drawable_cmds.$(OBJEXT) \ - drawable_transform_cmds.$(OBJEXT) edit_cmds.$(OBJEXT) \ - fileops_cmds.$(OBJEXT) floating_sel_cmds.$(OBJEXT) \ - font_select_cmds.$(OBJEXT) fonts_cmds.$(OBJEXT) \ - gimprc_cmds.$(OBJEXT) gradient_cmds.$(OBJEXT) \ - gradient_select_cmds.$(OBJEXT) gradients_cmds.$(OBJEXT) \ - guides_cmds.$(OBJEXT) help_cmds.$(OBJEXT) image_cmds.$(OBJEXT) \ - layer_cmds.$(OBJEXT) message_cmds.$(OBJEXT) misc_cmds.$(OBJEXT) \ - paint_tools_cmds.$(OBJEXT) palette_cmds.$(OBJEXT) \ - palette_select_cmds.$(OBJEXT) palettes_cmds.$(OBJEXT) \ - parasite_cmds.$(OBJEXT) paths_cmds.$(OBJEXT) \ - pattern_cmds.$(OBJEXT) pattern_select_cmds.$(OBJEXT) \ - patterns_cmds.$(OBJEXT) plug_in_cmds.$(OBJEXT) \ - procedural_db_cmds.$(OBJEXT) progress_cmds.$(OBJEXT) \ - selection_cmds.$(OBJEXT) selection_tools_cmds.$(OBJEXT) \ - text_tool_cmds.$(OBJEXT) transform_tools_cmds.$(OBJEXT) \ - undo_cmds.$(OBJEXT) unit_cmds.$(OBJEXT) -libapppdb_a_OBJECTS = $(am_libapppdb_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/brush_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/brush_select_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/brushes_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/channel_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/color_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/context_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/convert_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/display_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/drawable_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/drawable_transform_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/edit_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/fileops_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/floating_sel_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/font_select_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/fonts_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprc_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradient_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradient_select_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gradients_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/guides_cmds.Po ./$(DEPDIR)/help_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/image_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/internal_procs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/layer_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/message_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/misc_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/paint_tools_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palette_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palette_select_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/palettes_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/parasite_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/paths_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pattern_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pattern_select_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/patterns_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug_in_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/procedural_db.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/procedural_db_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/progress_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/selection_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/selection_tools_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/text_tool_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/transform_tools_cmds.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/undo_cmds.Po ./$(DEPDIR)/unit_cmds.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libapppdb_a_SOURCES) -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libapppdb_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/pdb/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/pdb/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -546,7 +533,7 @@ $(RANLIB) libapppdb.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -598,37 +585,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unit_cmds.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -640,14 +615,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -656,6 +623,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -667,10 +635,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -693,10 +662,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -710,7 +675,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -728,7 +693,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -749,7 +713,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -769,6 +733,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -806,13 +772,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/plug-in/Makefile.in gimp-2.2.9/app/plug-in/Makefile.in --- gimp-2.2.8/app/plug-in/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/plug-in/Makefile.in 2005-10-27 17:11:34.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,46 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/plug-in +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappplug_in_a_AR = $(AR) $(ARFLAGS) +libappplug_in_a_LIBADD = +am_libappplug_in_a_OBJECTS = plug-in.$(OBJEXT) plug-ins.$(OBJEXT) \ + plug-in-context.$(OBJEXT) plug-in-debug.$(OBJEXT) \ + plug-in-def.$(OBJEXT) plug-in-message.$(OBJEXT) \ + plug-in-params.$(OBJEXT) plug-in-proc-def.$(OBJEXT) \ + plug-in-proc-frame.$(OBJEXT) plug-in-progress.$(OBJEXT) \ + plug-in-rc.$(OBJEXT) plug-in-run.$(OBJEXT) \ + plug-in-shm.$(OBJEXT) +libappplug_in_a_OBJECTS = $(am_libappplug_in_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappplug_in_a_SOURCES) +DIST_SOURCES = $(libappplug_in_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +272,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +323,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +370,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,22 +410,18 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Plug-In\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libappplug-in.a - libappplug_in_a_SOURCES = \ plug-in-types.h \ plug-in.c \ @@ -413,61 +451,40 @@ plug-in-shm.c \ plug-in-shm.h - EXTRA_DIST = makefile.msc -subdir = app/plug-in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappplug_in_a_AR = $(AR) cru -libappplug_in_a_LIBADD = -am_libappplug_in_a_OBJECTS = plug-in.$(OBJEXT) plug-ins.$(OBJEXT) \ - plug-in-context.$(OBJEXT) plug-in-debug.$(OBJEXT) \ - plug-in-def.$(OBJEXT) plug-in-message.$(OBJEXT) \ - plug-in-params.$(OBJEXT) plug-in-proc-def.$(OBJEXT) \ - plug-in-proc-frame.$(OBJEXT) plug-in-progress.$(OBJEXT) \ - plug-in-rc.$(OBJEXT) plug-in-run.$(OBJEXT) \ - plug-in-shm.$(OBJEXT) -libappplug_in_a_OBJECTS = $(am_libappplug_in_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/plug-in-context.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-debug.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-def.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-message.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-params.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-proc-def.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-proc-frame.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-progress.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-rc.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-run.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-in-shm.Po ./$(DEPDIR)/plug-in.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plug-ins.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappplug_in_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappplug_in_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/plug-in/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/plug-in/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -477,7 +494,7 @@ $(RANLIB) libappplug-in.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -497,37 +514,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/plug-ins.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -539,14 +544,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -555,6 +552,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -566,10 +564,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -592,10 +591,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -609,7 +604,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -627,7 +622,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -648,7 +642,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -668,6 +662,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -705,13 +701,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/plug-in/plug-in.c gimp-2.2.9/app/plug-in/plug-in.c --- gimp-2.2.8/app/plug-in/plug-in.c 2004-12-14 23:42:00.000000000 +0100 +++ gimp-2.2.9/app/plug-in/plug-in.c 2005-09-20 18:23:59.000000000 +0200 @@ -101,8 +101,9 @@ GIOCondition cond, gpointer data); +#if !defined(G_OS_WIN32) && !defined (G_WITH_CYGWIN) static void plug_in_prep_for_exec (gpointer data); - +#endif void plug_in_init (Gimp *gimp) @@ -317,10 +318,11 @@ } } +#if !defined(G_OS_WIN32) && !defined (G_WITH_CYGWIN) + static void plug_in_prep_for_exec (gpointer data) { -#if !defined(G_OS_WIN32) && !defined (G_WITH_CYGWIN) PlugIn *plug_in = data; g_io_channel_unref (plug_in->my_read); @@ -328,9 +330,14 @@ g_io_channel_unref (plug_in->my_write); plug_in->my_write = NULL; -#endif } +#else + +#define plug_in_prep_for_exec NULL + +#endif + gboolean plug_in_open (PlugIn *plug_in) { diff -uraN gimp-2.2.8/app/text/Makefile.in gimp-2.2.9/app/text/Makefile.in --- gimp-2.2.8/app/text/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/text/Makefile.in 2005-10-27 17:11:34.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,49 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/text +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libapptext_a_AR = $(AR) $(ARFLAGS) +libapptext_a_LIBADD = +am__objects_1 = text-enums.$(OBJEXT) +am__objects_2 = gimp-fonts.$(OBJEXT) gimpfont.$(OBJEXT) \ + gimpfont-utils.$(OBJEXT) gimpfontlist.$(OBJEXT) \ + gimptext.$(OBJEXT) gimptext-bitmap.$(OBJEXT) \ + gimptext-compat.$(OBJEXT) gimptext-parasite.$(OBJEXT) \ + gimptext-vectors.$(OBJEXT) gimptext-xlfd.$(OBJEXT) \ + gimptextlayer.$(OBJEXT) gimptextlayer-transform.$(OBJEXT) \ + gimptextlayer-xcf.$(OBJEXT) gimptextlayout.$(OBJEXT) \ + gimptextlayout-render.$(OBJEXT) gimptextundo.$(OBJEXT) +am_libapptext_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libapptext_a_OBJECTS = $(am_libapptext_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libapptext_a_SOURCES) +DIST_SOURCES = $(libapptext_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +275,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +326,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +373,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +413,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Text\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ @@ -382,9 +425,7 @@ $(PANGOFT2_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libapptext.a - libapptext_a_sources = \ text-types.h \ text-enums.h \ @@ -422,11 +463,8 @@ gimptextundo.c \ gimptextundo.h - libapptext_a_built_sources = text-enums.c - libapptext_a_SOURCES = $(libapptext_a_built_sources) $(libapptext_a_sources) - EXTRA_DIST = makefile.msc # @@ -435,66 +473,39 @@ # setup autogeneration dependencies gen_sources = xgen-tec CLEANFILES = $(gen_sources) -subdir = app/text -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libapptext_a_AR = $(AR) cru -libapptext_a_LIBADD = -am__objects_1 = text-enums.$(OBJEXT) -am__objects_2 = gimp-fonts.$(OBJEXT) gimpfont.$(OBJEXT) \ - gimpfont-utils.$(OBJEXT) gimpfontlist.$(OBJEXT) \ - gimptext.$(OBJEXT) gimptext-bitmap.$(OBJEXT) \ - gimptext-compat.$(OBJEXT) gimptext-parasite.$(OBJEXT) \ - gimptext-vectors.$(OBJEXT) gimptext-xlfd.$(OBJEXT) \ - gimptextlayer.$(OBJEXT) gimptextlayer-transform.$(OBJEXT) \ - gimptextlayer-xcf.$(OBJEXT) gimptextlayout.$(OBJEXT) \ - gimptextlayout-render.$(OBJEXT) gimptextundo.$(OBJEXT) -am_libapptext_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libapptext_a_OBJECTS = $(am_libapptext_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp-fonts.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfont-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfont.Po ./$(DEPDIR)/gimpfontlist.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptext-bitmap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptext-compat.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptext-parasite.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptext-vectors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptext-xlfd.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptext.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextlayer-transform.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextlayer-xcf.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextlayer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextlayout-render.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextlayout.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextundo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/text-enums.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libapptext_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libapptext_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/text/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/text/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -504,7 +515,7 @@ $(RANLIB) libapptext.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -528,37 +539,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/text-enums.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -570,14 +569,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -586,6 +577,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -597,10 +589,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -623,10 +616,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -640,7 +629,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -658,7 +647,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -680,7 +668,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -700,6 +688,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -737,13 +727,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am $(srcdir)/text-enums.c: $(srcdir)/text-enums.h $(GIMP_MKENUMS) diff -uraN gimp-2.2.8/app/tools/gimpiscissorstool.c gimp-2.2.9/app/tools/gimpiscissorstool.c --- gimp-2.2.8/app/tools/gimpiscissorstool.c 2004-10-18 13:29:58.000000000 +0200 +++ gimp-2.2.9/app/tools/gimpiscissorstool.c 2005-09-20 18:23:59.000000000 +0200 @@ -624,8 +624,13 @@ { curve = (ICurve *) iscissors->curves->data; - if (abs (iscissors->x - curve->x1) < POINT_HALFWIDTH && - abs (iscissors->y - curve->y1) < POINT_HALFWIDTH) + if (gimp_draw_tool_on_handle (GIMP_DRAW_TOOL (tool), gdisp, + iscissors->x, iscissors->y, + GIMP_HANDLE_CIRCLE, + curve->x1, curve->y1, + POINT_WIDTH, POINT_WIDTH, + GTK_ANCHOR_CENTER, + FALSE)) { iscissors->x = curve->x1; iscissors->y = curve->y1; diff -uraN gimp-2.2.8/app/tools/Makefile.in gimp-2.2.9/app/tools/Makefile.in --- gimp-2.2.8/app/tools/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/tools/Makefile.in 2005-10-27 17:11:35.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,76 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/tools +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libapptools_a_AR = $(AR) $(ARFLAGS) +libapptools_a_LIBADD = +am__objects_1 = tools-enums.$(OBJEXT) +am__objects_2 = gimp-tools.$(OBJEXT) tools-utils.$(OBJEXT) \ + tool_manager.$(OBJEXT) gimpairbrushtool.$(OBJEXT) \ + gimpblendoptions.$(OBJEXT) gimpblendtool.$(OBJEXT) \ + gimpbrightnesscontrasttool.$(OBJEXT) \ + gimpbucketfilloptions.$(OBJEXT) gimpbucketfilltool.$(OBJEXT) \ + gimpbycolorselecttool.$(OBJEXT) gimpclonetool.$(OBJEXT) \ + gimpcoloroptions.$(OBJEXT) gimpcolortool.$(OBJEXT) \ + gimpcolorbalancetool.$(OBJEXT) gimpcolorizetool.$(OBJEXT) \ + gimpcolorpickeroptions.$(OBJEXT) gimpcolorpickertool.$(OBJEXT) \ + gimpconvolvetool.$(OBJEXT) gimpcropoptions.$(OBJEXT) \ + gimpcroptool.$(OBJEXT) gimpcurvestool.$(OBJEXT) \ + gimpdodgeburntool.$(OBJEXT) gimpdrawtool.$(OBJEXT) \ + gimpeditselectiontool.$(OBJEXT) \ + gimpellipseselecttool.$(OBJEXT) gimperasertool.$(OBJEXT) \ + gimpflipoptions.$(OBJEXT) gimpfliptool.$(OBJEXT) \ + gimpfreeselecttool.$(OBJEXT) gimpfuzzyselecttool.$(OBJEXT) \ + gimphistogramoptions.$(OBJEXT) gimphuesaturationtool.$(OBJEXT) \ + gimpimagemapoptions.$(OBJEXT) gimpimagemaptool.$(OBJEXT) \ + gimpinkoptions-gui.$(OBJEXT) gimpinktool.$(OBJEXT) \ + gimpiscissorstool.$(OBJEXT) gimplevelstool.$(OBJEXT) \ + gimpmagnifyoptions.$(OBJEXT) gimpmagnifytool.$(OBJEXT) \ + gimpmeasureoptions.$(OBJEXT) gimpmeasuretool.$(OBJEXT) \ + gimpmoveoptions.$(OBJEXT) gimpmovetool.$(OBJEXT) \ + gimppaintbrushtool.$(OBJEXT) gimppaintoptions-gui.$(OBJEXT) \ + gimppainttool.$(OBJEXT) gimppenciltool.$(OBJEXT) \ + gimpperspectivetool.$(OBJEXT) gimpposterizetool.$(OBJEXT) \ + gimprectselecttool.$(OBJEXT) gimprotatetool.$(OBJEXT) \ + gimpscaletool.$(OBJEXT) gimpselectionoptions.$(OBJEXT) \ + gimpselectiontool.$(OBJEXT) gimpsheartool.$(OBJEXT) \ + gimpsmudgetool.$(OBJEXT) gimptextoptions.$(OBJEXT) \ + gimptexttool.$(OBJEXT) gimpthresholdtool.$(OBJEXT) \ + gimptool.$(OBJEXT) gimptoolcontrol.$(OBJEXT) \ + gimptooloptions-gui.$(OBJEXT) gimptransformoptions.$(OBJEXT) \ + gimptransformtool.$(OBJEXT) gimptransformtool-undo.$(OBJEXT) \ + gimpvectoroptions.$(OBJEXT) gimpvectortool.$(OBJEXT) +am_libapptools_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libapptools_a_OBJECTS = $(am_libapptools_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libapptools_a_SOURCES) +DIST_SOURCES = $(libapptools_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +302,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +353,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +400,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +440,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libapptools.a - libapptools_a_sources = \ tools-enums.h \ tools-types.h \ @@ -512,24 +582,19 @@ gimpvectortool.c \ gimpvectortool.h - libapptools_a_built_sources = tools-enums.c - libapptools_a_SOURCES = $(libapptools_a_built_sources) $(libapptools_a_sources) - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Tools\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GTK_CFLAGS) \ -I$(includedir) - EXTRA_DIST = makefile.msc # @@ -538,146 +603,39 @@ # setup autogeneration dependencies gen_sources = xgen-tec CLEANFILES = $(gen_sources) -subdir = app/tools -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libapptools_a_AR = $(AR) cru -libapptools_a_LIBADD = -am__objects_1 = tools-enums.$(OBJEXT) -am__objects_2 = gimp-tools.$(OBJEXT) tools-utils.$(OBJEXT) \ - tool_manager.$(OBJEXT) gimpairbrushtool.$(OBJEXT) \ - gimpblendoptions.$(OBJEXT) gimpblendtool.$(OBJEXT) \ - gimpbrightnesscontrasttool.$(OBJEXT) \ - gimpbucketfilloptions.$(OBJEXT) gimpbucketfilltool.$(OBJEXT) \ - gimpbycolorselecttool.$(OBJEXT) gimpclonetool.$(OBJEXT) \ - gimpcoloroptions.$(OBJEXT) gimpcolortool.$(OBJEXT) \ - gimpcolorbalancetool.$(OBJEXT) gimpcolorizetool.$(OBJEXT) \ - gimpcolorpickeroptions.$(OBJEXT) gimpcolorpickertool.$(OBJEXT) \ - gimpconvolvetool.$(OBJEXT) gimpcropoptions.$(OBJEXT) \ - gimpcroptool.$(OBJEXT) gimpcurvestool.$(OBJEXT) \ - gimpdodgeburntool.$(OBJEXT) gimpdrawtool.$(OBJEXT) \ - gimpeditselectiontool.$(OBJEXT) gimpellipseselecttool.$(OBJEXT) \ - gimperasertool.$(OBJEXT) gimpflipoptions.$(OBJEXT) \ - gimpfliptool.$(OBJEXT) gimpfreeselecttool.$(OBJEXT) \ - gimpfuzzyselecttool.$(OBJEXT) gimphistogramoptions.$(OBJEXT) \ - gimphuesaturationtool.$(OBJEXT) gimpimagemapoptions.$(OBJEXT) \ - gimpimagemaptool.$(OBJEXT) gimpinkoptions-gui.$(OBJEXT) \ - gimpinktool.$(OBJEXT) gimpiscissorstool.$(OBJEXT) \ - gimplevelstool.$(OBJEXT) gimpmagnifyoptions.$(OBJEXT) \ - gimpmagnifytool.$(OBJEXT) gimpmeasureoptions.$(OBJEXT) \ - gimpmeasuretool.$(OBJEXT) gimpmoveoptions.$(OBJEXT) \ - gimpmovetool.$(OBJEXT) gimppaintbrushtool.$(OBJEXT) \ - gimppaintoptions-gui.$(OBJEXT) gimppainttool.$(OBJEXT) \ - gimppenciltool.$(OBJEXT) gimpperspectivetool.$(OBJEXT) \ - gimpposterizetool.$(OBJEXT) gimprectselecttool.$(OBJEXT) \ - gimprotatetool.$(OBJEXT) gimpscaletool.$(OBJEXT) \ - gimpselectionoptions.$(OBJEXT) gimpselectiontool.$(OBJEXT) \ - gimpsheartool.$(OBJEXT) gimpsmudgetool.$(OBJEXT) \ - gimptextoptions.$(OBJEXT) gimptexttool.$(OBJEXT) \ - gimpthresholdtool.$(OBJEXT) gimptool.$(OBJEXT) \ - gimptoolcontrol.$(OBJEXT) gimptooloptions-gui.$(OBJEXT) \ - gimptransformoptions.$(OBJEXT) gimptransformtool.$(OBJEXT) \ - gimptransformtool-undo.$(OBJEXT) gimpvectoroptions.$(OBJEXT) \ - gimpvectortool.$(OBJEXT) -am_libapptools_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libapptools_a_OBJECTS = $(am_libapptools_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp-tools.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpairbrushtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpblendoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpblendtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrightnesscontrasttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbucketfilloptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbucketfilltool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbycolorselecttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpclonetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorbalancetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorizetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcoloroptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorpickeroptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorpickertool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolortool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconvolvetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcropoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcroptool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcurvestool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdodgeburntool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpeditselectiontool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpellipseselecttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimperasertool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpflipoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfliptool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfreeselecttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfuzzyselecttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphistogramoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphuesaturationtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimagemapoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimagemaptool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpinkoptions-gui.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpinktool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpiscissorstool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplevelstool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmagnifyoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmagnifytool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmeasureoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmeasuretool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmoveoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmovetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintbrushtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaintoptions-gui.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppainttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppenciltool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpperspectivetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpposterizetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprectselecttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprotatetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpscaletool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselectionoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselectiontool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsheartool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsmudgetool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptextoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptexttool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpthresholdtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolcontrol.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptooloptions-gui.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptransformoptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptransformtool-undo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptransformtool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectoroptions.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectortool.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tool_manager.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tools-enums.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tools-utils.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libapptools_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libapptools_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/tools/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/tools/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -687,7 +645,7 @@ $(RANLIB) libapptools.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -763,37 +721,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools-utils.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -805,14 +751,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -821,6 +759,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -832,10 +771,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -858,10 +798,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -875,7 +811,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -893,7 +829,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -915,7 +850,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -935,6 +870,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -972,13 +909,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am $(srcdir)/tools-enums.c: $(srcdir)/tools-enums.h $(GIMP_MKENUMS) diff -uraN gimp-2.2.8/app/vectors/Makefile.in gimp-2.2.9/app/vectors/Makefile.in --- gimp-2.2.8/app/vectors/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/vectors/Makefile.in 2005-10-27 17:11:35.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,44 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/vectors +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappvectors_a_AR = $(AR) $(ARFLAGS) +libappvectors_a_LIBADD = +am_libappvectors_a_OBJECTS = gimpanchor.$(OBJEXT) \ + gimpbezierstroke.$(OBJEXT) gimpstroke.$(OBJEXT) \ + gimpvectors.$(OBJEXT) gimpvectors-compat.$(OBJEXT) \ + gimpvectors-export.$(OBJEXT) gimpvectors-import.$(OBJEXT) \ + gimpvectors-preview.$(OBJEXT) +libappvectors_a_OBJECTS = $(am_libappvectors_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappvectors_a_SOURCES) +DIST_SOURCES = $(libappvectors_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +270,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +321,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +368,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +408,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Vectors\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ @@ -382,9 +420,7 @@ $(LIBART_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libappvectors.a - libappvectors_a_SOURCES = \ vectors-types.h \ gimpanchor.c \ @@ -404,55 +440,40 @@ gimpvectors-preview.c \ gimpvectors-preview.h - EXTRA_DIST = makefile.msc -subdir = app/vectors -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappvectors_a_AR = $(AR) cru -libappvectors_a_LIBADD = -am_libappvectors_a_OBJECTS = gimpanchor.$(OBJEXT) \ - gimpbezierstroke.$(OBJEXT) gimpstroke.$(OBJEXT) \ - gimpvectors.$(OBJEXT) gimpvectors-compat.$(OBJEXT) \ - gimpvectors-export.$(OBJEXT) gimpvectors-import.$(OBJEXT) \ - gimpvectors-preview.$(OBJEXT) -libappvectors_a_OBJECTS = $(am_libappvectors_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpanchor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbezierstroke.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstroke.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectors-compat.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectors-export.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectors-import.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectors-preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectors.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappvectors_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappvectors_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/vectors/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/vectors/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -462,7 +483,7 @@ $(RANLIB) libappvectors.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -477,37 +498,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpvectors.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -519,14 +528,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -535,6 +536,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -546,10 +548,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -572,10 +575,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -589,7 +588,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -607,7 +606,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -628,7 +626,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -648,6 +646,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -685,13 +685,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/app/widgets/gimpdockable.c gimp-2.2.9/app/widgets/gimpdockable.c --- gimp-2.2.8/app/widgets/gimpdockable.c 2005-01-19 12:45:13.000000000 +0100 +++ gimp-2.2.9/app/widgets/gimpdockable.c 2005-10-27 16:57:50.000000000 +0200 @@ -425,7 +425,7 @@ attributes.y = area.y; attributes.width = area.width; attributes.height = area.height; - attributes.window_type = GDK_WINDOW_TEMP; + attributes.window_type = GDK_WINDOW_CHILD; attributes.wclass = GDK_INPUT_ONLY; attributes.override_redirect = TRUE; attributes.event_mask = (GDK_BUTTON_PRESS_MASK | diff -uraN gimp-2.2.8/app/widgets/gimpfiledialog.c gimp-2.2.9/app/widgets/gimpfiledialog.c --- gimp-2.2.8/app/widgets/gimpfiledialog.c 2005-01-14 11:00:48.000000000 +0100 +++ gimp-2.2.9/app/widgets/gimpfiledialog.c 2005-09-20 18:23:59.000000000 +0200 @@ -625,6 +625,10 @@ { const gchar *last_dot = strrchr (uri, '.'); + /* if the dot is before the last slash, ignore it */ + if (last_dot && strrchr (uri, '/') > last_dot) + last_dot = NULL; + /* check if the uri has a "meta extension" (e.g. foo.bar.gz) * and try to truncate both extensions away. */ diff -uraN gimp-2.2.8/app/widgets/Makefile.in gimp-2.2.9/app/widgets/Makefile.in --- gimp-2.2.8/app/widgets/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/widgets/Makefile.in 2005-10-27 17:11:35.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,114 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/widgets +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappwidgets_a_AR = $(AR) $(ARFLAGS) +libappwidgets_a_LIBADD = +am__objects_1 = widgets-enums.$(OBJEXT) +am__objects_2 = gimpaction.$(OBJEXT) gimpactionfactory.$(OBJEXT) \ + gimpactiongroup.$(OBJEXT) gimpactionview.$(OBJEXT) \ + gimpblobeditor.$(OBJEXT) gimpbrusheditor.$(OBJEXT) \ + gimpbrushfactoryview.$(OBJEXT) gimpbrushselect.$(OBJEXT) \ + gimpbufferview.$(OBJEXT) gimpcellrendereraccel.$(OBJEXT) \ + gimpcellrendererviewable.$(OBJEXT) \ + gimpchanneltreeview.$(OBJEXT) gimpclipboard.$(OBJEXT) \ + gimpcolorbar.$(OBJEXT) gimpcolordialog.$(OBJEXT) \ + gimpcolordisplayeditor.$(OBJEXT) gimpcoloreditor.$(OBJEXT) \ + gimpcolorframe.$(OBJEXT) gimpcolormapeditor.$(OBJEXT) \ + gimpcolorpanel.$(OBJEXT) gimpcomponenteditor.$(OBJEXT) \ + gimpcontainerbox.$(OBJEXT) gimpcontainercombobox.$(OBJEXT) \ + gimpcontainereditor.$(OBJEXT) gimpcontainerentry.$(OBJEXT) \ + gimpcontainergridview.$(OBJEXT) gimpcontainerpopup.$(OBJEXT) \ + gimpcontainertreeview.$(OBJEXT) \ + gimpcontainertreeview-dnd.$(OBJEXT) \ + gimpcontainerview.$(OBJEXT) gimpcontainerview-utils.$(OBJEXT) \ + gimpcontrollereditor.$(OBJEXT) gimpcontrollerinfo.$(OBJEXT) \ + gimpcontrollers.$(OBJEXT) gimpcontrollerkeyboard.$(OBJEXT) \ + gimpcontrollerwheel.$(OBJEXT) gimpcursor.$(OBJEXT) \ + gimpdasheditor.$(OBJEXT) gimpdataeditor.$(OBJEXT) \ + gimpdatafactoryview.$(OBJEXT) gimpdeviceinfo.$(OBJEXT) \ + gimpdevices.$(OBJEXT) gimpdevicestatus.$(OBJEXT) \ + gimpdialogfactory.$(OBJEXT) gimpdnd.$(OBJEXT) \ + gimpdock.$(OBJEXT) gimpdockable.$(OBJEXT) \ + gimpdockbook.$(OBJEXT) gimpdocked.$(OBJEXT) \ + gimpdocumentview.$(OBJEXT) gimpdrawabletreeview.$(OBJEXT) \ + gimpeditor.$(OBJEXT) gimpenumaction.$(OBJEXT) \ + gimpenumcombobox.$(OBJEXT) gimpenumstore.$(OBJEXT) \ + gimpenumwidgets.$(OBJEXT) gimperrorconsole.$(OBJEXT) \ + gimperrordialog.$(OBJEXT) gimpfgbgeditor.$(OBJEXT) \ + gimpfiledialog.$(OBJEXT) gimpfileprocview.$(OBJEXT) \ + gimpfontselect.$(OBJEXT) gimpfontview.$(OBJEXT) \ + gimpgradienteditor.$(OBJEXT) gimpgradientselect.$(OBJEXT) \ + gimpgrideditor.$(OBJEXT) gimphelp.$(OBJEXT) \ + gimphistogrambox.$(OBJEXT) gimphistogrameditor.$(OBJEXT) \ + gimphistogramview.$(OBJEXT) gimpimagedock.$(OBJEXT) \ + gimpimageeditor.$(OBJEXT) gimpimageview.$(OBJEXT) \ + gimpitemtreeview.$(OBJEXT) gimplayertreeview.$(OBJEXT) \ + gimpmenufactory.$(OBJEXT) gimpmessagebox.$(OBJEXT) \ + gimpmessagedialog.$(OBJEXT) gimpnavigationview.$(OBJEXT) \ + gimppaletteeditor.$(OBJEXT) gimppaletteselect.$(OBJEXT) \ + gimppatternfactoryview.$(OBJEXT) gimppatternselect.$(OBJEXT) \ + gimppdbdialog.$(OBJEXT) gimppluginaction.$(OBJEXT) \ + gimpprogressbox.$(OBJEXT) gimpprogressdialog.$(OBJEXT) \ + gimppropwidgets.$(OBJEXT) gimpselectiondata.$(OBJEXT) \ + gimpselectioneditor.$(OBJEXT) gimpsessioninfo.$(OBJEXT) \ + gimpsizebox.$(OBJEXT) gimpstringaction.$(OBJEXT) \ + gimpstrokeeditor.$(OBJEXT) gimptemplateeditor.$(OBJEXT) \ + gimptemplateview.$(OBJEXT) gimptexteditor.$(OBJEXT) \ + gimpthumbbox.$(OBJEXT) gimptoolbox.$(OBJEXT) \ + gimptoolbox-color-area.$(OBJEXT) gimptoolbox-dnd.$(OBJEXT) \ + gimptoolbox-image-area.$(OBJEXT) \ + gimptoolbox-indicator-area.$(OBJEXT) gimptooldialog.$(OBJEXT) \ + gimptooloptionseditor.$(OBJEXT) gimptoolview.$(OBJEXT) \ + gimpuimanager.$(OBJEXT) gimpundoeditor.$(OBJEXT) \ + gimpunitcombobox.$(OBJEXT) gimpunitstore.$(OBJEXT) \ + gimpvectorstreeview.$(OBJEXT) gimpview.$(OBJEXT) \ + gimpview-popup.$(OBJEXT) gimpviewablebox.$(OBJEXT) \ + gimpviewablebutton.$(OBJEXT) gimpviewabledialog.$(OBJEXT) \ + gimpviewrenderer.$(OBJEXT) gimpviewrenderer-frame.$(OBJEXT) \ + gimpviewrenderer-utils.$(OBJEXT) \ + gimpviewrendererbrush.$(OBJEXT) \ + gimpviewrendererbuffer.$(OBJEXT) \ + gimpviewrendererdrawable.$(OBJEXT) \ + gimpviewrenderergradient.$(OBJEXT) \ + gimpviewrendererimage.$(OBJEXT) \ + gimpviewrendererimagefile.$(OBJEXT) \ + gimpviewrendererlayer.$(OBJEXT) \ + gimpviewrenderervectors.$(OBJEXT) \ + gimpwidgets-constructors.$(OBJEXT) gimpwidgets-utils.$(OBJEXT) \ + gtkwrapbox.$(OBJEXT) gtkhwrapbox.$(OBJEXT) \ + gtkvwrapbox.$(OBJEXT) +am_libappwidgets_a_OBJECTS = $(am__objects_1) $(am__objects_2) +libappwidgets_a_OBJECTS = $(am_libappwidgets_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappwidgets_a_SOURCES) +DIST_SOURCES = $(libappwidgets_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +340,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +391,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +438,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +478,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-Widgets\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_builddir) \ -I$(top_srcdir) \ @@ -384,9 +492,7 @@ $(PANGOFT2_CFLAGS) \ -I$(includedir) - noinst_LIBRARIES = libappwidgets.a - libappwidgets_a_sources = \ widgets-enums.h \ widgets-types.h \ @@ -656,13 +762,10 @@ gtkvwrapbox.c \ gtkvwrapbox.h - libappwidgets_a_built_sources = widgets-enums.c - libappwidgets_a_SOURCES = \ $(libappwidgets_a_built_sources) $(libappwidgets_a_sources) - EXTRA_DIST = makefile.msc # @@ -671,247 +774,39 @@ # setup autogeneration dependencies gen_sources = xgen-wec CLEANFILES = $(gen_sources) -subdir = app/widgets -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappwidgets_a_AR = $(AR) cru -libappwidgets_a_LIBADD = -am__objects_1 = widgets-enums.$(OBJEXT) -am__objects_2 = gimpaction.$(OBJEXT) gimpactionfactory.$(OBJEXT) \ - gimpactiongroup.$(OBJEXT) gimpactionview.$(OBJEXT) \ - gimpblobeditor.$(OBJEXT) gimpbrusheditor.$(OBJEXT) \ - gimpbrushfactoryview.$(OBJEXT) gimpbrushselect.$(OBJEXT) \ - gimpbufferview.$(OBJEXT) gimpcellrendereraccel.$(OBJEXT) \ - gimpcellrendererviewable.$(OBJEXT) \ - gimpchanneltreeview.$(OBJEXT) gimpclipboard.$(OBJEXT) \ - gimpcolorbar.$(OBJEXT) gimpcolordialog.$(OBJEXT) \ - gimpcolordisplayeditor.$(OBJEXT) gimpcoloreditor.$(OBJEXT) \ - gimpcolorframe.$(OBJEXT) gimpcolormapeditor.$(OBJEXT) \ - gimpcolorpanel.$(OBJEXT) gimpcomponenteditor.$(OBJEXT) \ - gimpcontainerbox.$(OBJEXT) gimpcontainercombobox.$(OBJEXT) \ - gimpcontainereditor.$(OBJEXT) gimpcontainerentry.$(OBJEXT) \ - gimpcontainergridview.$(OBJEXT) gimpcontainerpopup.$(OBJEXT) \ - gimpcontainertreeview.$(OBJEXT) \ - gimpcontainertreeview-dnd.$(OBJEXT) gimpcontainerview.$(OBJEXT) \ - gimpcontainerview-utils.$(OBJEXT) \ - gimpcontrollereditor.$(OBJEXT) gimpcontrollerinfo.$(OBJEXT) \ - gimpcontrollers.$(OBJEXT) gimpcontrollerkeyboard.$(OBJEXT) \ - gimpcontrollerwheel.$(OBJEXT) gimpcursor.$(OBJEXT) \ - gimpdasheditor.$(OBJEXT) gimpdataeditor.$(OBJEXT) \ - gimpdatafactoryview.$(OBJEXT) gimpdeviceinfo.$(OBJEXT) \ - gimpdevices.$(OBJEXT) gimpdevicestatus.$(OBJEXT) \ - gimpdialogfactory.$(OBJEXT) gimpdnd.$(OBJEXT) \ - gimpdock.$(OBJEXT) gimpdockable.$(OBJEXT) \ - gimpdockbook.$(OBJEXT) gimpdocked.$(OBJEXT) \ - gimpdocumentview.$(OBJEXT) gimpdrawabletreeview.$(OBJEXT) \ - gimpeditor.$(OBJEXT) gimpenumaction.$(OBJEXT) \ - gimpenumcombobox.$(OBJEXT) gimpenumstore.$(OBJEXT) \ - gimpenumwidgets.$(OBJEXT) gimperrorconsole.$(OBJEXT) \ - gimperrordialog.$(OBJEXT) gimpfgbgeditor.$(OBJEXT) \ - gimpfiledialog.$(OBJEXT) gimpfileprocview.$(OBJEXT) \ - gimpfontselect.$(OBJEXT) gimpfontview.$(OBJEXT) \ - gimpgradienteditor.$(OBJEXT) gimpgradientselect.$(OBJEXT) \ - gimpgrideditor.$(OBJEXT) gimphelp.$(OBJEXT) \ - gimphistogrambox.$(OBJEXT) gimphistogrameditor.$(OBJEXT) \ - gimphistogramview.$(OBJEXT) gimpimagedock.$(OBJEXT) \ - gimpimageeditor.$(OBJEXT) gimpimageview.$(OBJEXT) \ - gimpitemtreeview.$(OBJEXT) gimplayertreeview.$(OBJEXT) \ - gimpmenufactory.$(OBJEXT) gimpmessagebox.$(OBJEXT) \ - gimpmessagedialog.$(OBJEXT) gimpnavigationview.$(OBJEXT) \ - gimppaletteeditor.$(OBJEXT) gimppaletteselect.$(OBJEXT) \ - gimppatternfactoryview.$(OBJEXT) gimppatternselect.$(OBJEXT) \ - gimppdbdialog.$(OBJEXT) gimppluginaction.$(OBJEXT) \ - gimpprogressbox.$(OBJEXT) gimpprogressdialog.$(OBJEXT) \ - gimppropwidgets.$(OBJEXT) gimpselectiondata.$(OBJEXT) \ - gimpselectioneditor.$(OBJEXT) gimpsessioninfo.$(OBJEXT) \ - gimpsizebox.$(OBJEXT) gimpstringaction.$(OBJEXT) \ - gimpstrokeeditor.$(OBJEXT) gimptemplateeditor.$(OBJEXT) \ - gimptemplateview.$(OBJEXT) gimptexteditor.$(OBJEXT) \ - gimpthumbbox.$(OBJEXT) gimptoolbox.$(OBJEXT) \ - gimptoolbox-color-area.$(OBJEXT) gimptoolbox-dnd.$(OBJEXT) \ - gimptoolbox-image-area.$(OBJEXT) \ - gimptoolbox-indicator-area.$(OBJEXT) gimptooldialog.$(OBJEXT) \ - gimptooloptionseditor.$(OBJEXT) gimptoolview.$(OBJEXT) \ - gimpuimanager.$(OBJEXT) gimpundoeditor.$(OBJEXT) \ - gimpunitcombobox.$(OBJEXT) gimpunitstore.$(OBJEXT) \ - gimpvectorstreeview.$(OBJEXT) gimpview.$(OBJEXT) \ - gimpview-popup.$(OBJEXT) gimpviewablebox.$(OBJEXT) \ - gimpviewablebutton.$(OBJEXT) gimpviewabledialog.$(OBJEXT) \ - gimpviewrenderer.$(OBJEXT) gimpviewrenderer-frame.$(OBJEXT) \ - gimpviewrenderer-utils.$(OBJEXT) \ - gimpviewrendererbrush.$(OBJEXT) \ - gimpviewrendererbuffer.$(OBJEXT) \ - gimpviewrendererdrawable.$(OBJEXT) \ - gimpviewrenderergradient.$(OBJEXT) \ - gimpviewrendererimage.$(OBJEXT) \ - gimpviewrendererimagefile.$(OBJEXT) \ - gimpviewrendererlayer.$(OBJEXT) \ - gimpviewrenderervectors.$(OBJEXT) \ - gimpwidgets-constructors.$(OBJEXT) gimpwidgets-utils.$(OBJEXT) \ - gtkwrapbox.$(OBJEXT) gtkhwrapbox.$(OBJEXT) \ - gtkvwrapbox.$(OBJEXT) -am_libappwidgets_a_OBJECTS = $(am__objects_1) $(am__objects_2) -libappwidgets_a_OBJECTS = $(am_libappwidgets_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpaction.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpactionfactory.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpactiongroup.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpactionview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpblobeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrusheditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushfactoryview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushselect.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbufferview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcellrendereraccel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcellrendererviewable.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchanneltreeview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpclipboard.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorbar.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolordialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolordisplayeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcoloreditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorframe.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolormapeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorpanel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcomponenteditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainerbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainercombobox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainereditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainerentry.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainergridview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainerpopup.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainertreeview-dnd.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainertreeview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainerview-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontainerview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontrollereditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontrollerinfo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontrollerkeyboard.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontrollers.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontrollerwheel.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcursor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdasheditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdataeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdatafactoryview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdeviceinfo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdevices.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdevicestatus.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdialogfactory.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdnd.Po ./$(DEPDIR)/gimpdock.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdockable.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdockbook.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdocked.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdocumentview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawabletreeview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenumaction.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenumcombobox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenumstore.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenumwidgets.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimperrorconsole.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimperrordialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfgbgeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfiledialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfileprocview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfontselect.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfontview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradienteditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradientselect.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgrideditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphelp.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphistogrambox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphistogrameditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphistogramview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimagedock.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimageeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimageview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpitemtreeview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplayertreeview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmenufactory.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmessagebox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmessagedialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpnavigationview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaletteeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaletteselect.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatternfactoryview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatternselect.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppdbdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppluginaction.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprogressbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprogressdialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppropwidgets.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselectiondata.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselectioneditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsessioninfo.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsizebox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstringaction.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstrokeeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptemplateeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptemplateview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptexteditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpthumbbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolbox-color-area.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolbox-dnd.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolbox-image-area.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolbox-indicator-area.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptooldialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptooloptionseditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptoolview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpuimanager.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpundoeditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpunitcombobox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpunitstore.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpvectorstreeview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpview-popup.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewablebox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewablebutton.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewabledialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrenderer-frame.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrenderer-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrenderer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrendererbrush.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrendererbuffer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrendererdrawable.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrenderergradient.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrendererimage.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrendererimagefile.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrendererlayer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpviewrenderervectors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpwidgets-constructors.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpwidgets-utils.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gtkhwrapbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gtkvwrapbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gtkwrapbox.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/widgets-enums.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappwidgets_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappwidgets_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/widgets/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/widgets/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -921,7 +816,7 @@ $(RANLIB) libappwidgets.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -1061,37 +956,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/widgets-enums.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -1103,14 +986,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -1119,6 +994,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1130,10 +1006,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1156,10 +1033,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -1173,7 +1046,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -1191,7 +1064,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -1213,7 +1085,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1233,6 +1105,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -1270,13 +1144,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am $(srcdir)/widgets-enums.c: $(srcdir)/widgets-enums.h $(GIMP_MKENUMS) diff -uraN gimp-2.2.8/app/xcf/Makefile.in gimp-2.2.9/app/xcf/Makefile.in --- gimp-2.2.8/app/xcf/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/app/xcf/Makefile.in 2005-10-27 17:11:35.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,42 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = app/xcf +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libappxcf_a_AR = $(AR) $(ARFLAGS) +libappxcf_a_LIBADD = +am_libappxcf_a_OBJECTS = xcf.$(OBJEXT) xcf-load.$(OBJEXT) \ + xcf-read.$(OBJEXT) xcf-save.$(OBJEXT) xcf-seek.$(OBJEXT) \ + xcf-write.$(OBJEXT) +libappxcf_a_OBJECTS = $(am_libappxcf_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libappxcf_a_SOURCES) +DIST_SOURCES = $(libappxcf_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +268,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +319,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +366,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +406,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libappxcf.a - libappxcf_a_SOURCES = \ xcf.c \ xcf.h \ @@ -386,61 +422,51 @@ xcf-write.c \ xcf-write.h - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Gimp-XCF\" \ @GIMP_THREAD_FLAGS@ \ @GIMP_MP_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/app \ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - EXTRA_DIST = makefile.msc -subdir = app/xcf -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libappxcf_a_AR = $(AR) cru -libappxcf_a_LIBADD = -am_libappxcf_a_OBJECTS = xcf.$(OBJEXT) xcf-load.$(OBJEXT) \ - xcf-read.$(OBJEXT) xcf-save.$(OBJEXT) xcf-seek.$(OBJEXT) \ - xcf-write.$(OBJEXT) -libappxcf_a_OBJECTS = $(am_libappxcf_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/xcf-load.Po ./$(DEPDIR)/xcf-read.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/xcf-save.Po ./$(DEPDIR)/xcf-seek.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/xcf-write.Po ./$(DEPDIR)/xcf.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libappxcf_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libappxcf_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu app/xcf/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu app/xcf/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -450,7 +476,7 @@ $(RANLIB) libappxcf.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -463,37 +489,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xcf.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -505,14 +519,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -521,6 +527,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -532,10 +539,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -558,10 +566,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -575,7 +579,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -593,7 +597,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -614,7 +617,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -634,6 +637,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -671,13 +676,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/ChangeLog gimp-2.2.9/ChangeLog --- gimp-2.2.8/ChangeLog 2005-06-27 00:16:07.000000000 +0200 +++ gimp-2.2.9/ChangeLog 2005-10-27 17:11:09.000000000 +0200 @@ -1,3 +1,307 @@ +2005-10-27 Sven Neumann + + * Made 2.2.9 release. + + * autogen.sh: prefer newer versions of automake over older ones. + +2005-10-25 Michael Natterer + + Merged from HEAD branch: + + * app/widgets/gimpdockable.c (gimp_dockable_realize): create the + title window as GDK_WINDOW_CHILD, not GDK_WINDOW_TEMP. + +2005-10-25 Michael Natterer + + Merged from HEAD branch: + + * app/core/gimpimage-contiguous-region.c + (gimp_image_contiguous_region_by_color): the color samples are + always RGB or RGBA, so always compare 3 or 4 bytes of pixel data, + and not just the number of bytes of the drawable/projection. + Fixes "select by color" on GRAYA (bug #319683). + +2005-10-20 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/helpbrowser/dialog.c (title_changed): replace newlines + with spaces to avoid multiple lines in the combo box. + +2005-10-06 Bill Skaggs + + Merged from HEAD branch: + + * plug-ins/common/gauss.c: always use RLE if horz or + vert radius is less than 1. Fixes bug #315953. + +2005-10-04 Bill Skaggs + + * plug-ins/Lighting/lighting_shade.c: Don't add foreground + when using an env map; fixes bug #313872. This bug does + not apply to HEAD. + +2005-09-28 Michael Natterer + + Merged from HEAD branch: + + * app/actions/dialogs-actions.c (dialogs_dockable_actions): fixed + action parameter to match both the palette list and grid. + Fixes bug #317435. + +2005-09-28 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/gqbist.c: use a single random number generator + for the lifetime of the plug-in. Fixes bug #317355. + +2005-09-28 Sven Neumann + + Merged from HEAD branch: + + * libgimpbase/gimputils.c (gimp_enum_get_value): ref the enum + class instead of only peeking at it. + +2005-09-26 Sven Neumann + + * app/display/gimpdisplayshell.c (gimp_display_shell_new): applied + patch from Robert Ögren that works around problem creating guides + with a tablet on Windows by enabling extension events for the + rulers. Fixes the first problem described in bug #168516. + +2005-09-25 Michael Natterer + + Merged from HEAD branch: + + * app/display/gimpdisplayshell-callbacks.c + (gimp_display_shell_canvas_tool_events): reordered checks for + the modifiers pressed on so NumLock and friends don't + interfere. Fixes bug #317118. + +2005-09-20 Sven Neumann + + * plug-ins/common/svg.c: corrected version check (bug #314400). + +2005-09-17 Michael Natterer + + * app/actions/actions.c (action_groups): s/QuickMask/Quick Mask/ + Fixes bug #316569. + +2005-09-11 Michael Natterer + + Merged from HEAD branch: + + * plug-ins/script-fu/script-fu-interface.c (script_fu_response): + bail out if the action_area is insensitive. Ignores attempts to + close the window while the script is running. Fixes bug #308662. + +2005-09-10 Michael Natterer + + Merged from HEAD branch: + + * app/tools/gimpiscissorstool.c (gimp_iscissors_tool_button_release): + use gimp_draw_tool_on_handle() to figure if we need to close the + path. Makes sure that the anchor's sensitive area matches its size + on screen. Fixes bug #134250. + +2005-09-09 Tor Lillqvist + + * gimptool-win32.c.in (get_prefix, maybe_append_exe) + * libgimpbase/gimpdatafiles.c (is_script): Do what I say + and use g_ascii_strcasecmp() instead of g_strcasecmp(). + +2005-09-07 Michael Natterer + + Merged from HEAD branch: + + * app/core/gimpchannel-combine.c (gimp_channel_combine_ellipse): + use gimp_rectangle_intersect() instead of just looking at the + passed in w,h to figure whether nothing needs to be done. While + the algorithm does nicely with an entirely out-of-image ellipse, + the channel's bounds were set to a rectangle of zero width or + height, which caused subsequent calls to gimp_channel_bounds() to + return broken bounds. Fixes bug #315417. + + (gimp_channel_combine_rect) + (gimp_channel_combine_mask): use gimp_rectangle_intersect() here + too instead of the usual unclear CLAMPing on x1,y1,x2,y2. + +2005-09-06 Sven Neumann + + Merged from HEAD branch: + + * app/dialogs/stroke-dialog.c (stroke_dialog_new): use + gtk_object_sink() to destroy a floating widget. + +2005-09-02 Sven Neumann + + * configure.in + * modules/Makefile.am: applied patch that fixes build issues on + Cygwin (bug #314893). + +2005-08-24 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/svg.c: deal with SVG API change. This is a + compile-time check and thus somewhat ugly because it requires a + recompile of the plug-in when updating librsvg to 2.11.0 or newer. + Fixes bug #314400. + +2005-08-26 Tor Lillqvist + + * app/plug-in/plug-in.c (plug_in_prep_for_exec, plug_in_open): + Instead of passing a child_setup function whose body is ifdeffed + out on Win32 to g_spawn_async(), pass NULL for child_setup on + Win32. Newer g_spawn_async() implementations on Win32 warn if + child_setup functions are attempted to be used, as they don't make + sense because without any fork(), they are called in the parent + process. + +2005-08-24 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/common/dicom.c: use an empty field instead of "?" for + the unknown value (bug #313008). + +2005-08-24 Tor Lillqvist + + * README.win32: Update. Mention should build against GLib 2.4. + Better late than never. + + * app/core/gimpdata.c (gimp_data_create_filename): Make safer on + Win32. Not just \ is verboten in file names, also < > / : " | . + Look for these in the UTF-8 string, so we don't have to do + double-byte aware scanning of the string after conversion to + system codepage. + + * libgimpbase/gimpenv.c (gimp_toplevel_directory): [Win32] Use + _mbsrchr() to search for backslashes in the path to the executable + file. Doing it with strchr() doesn't work in East Asian locales + with double-byte codepages, where the trailing byte of double-byte + character can be a backslash. + +2005-08-20 Sven Neumann + + Merged from HEAD branch: + + * app/widgets/gimpfiledialog.c (gimp_file_dialog_proc_changed): + when looking for the file extension, only look at the part after + the last directory separator. + +2005-08-18 Kevin Cozens + + * plug-ins/script-fu/scripts/text-circle.scm: Incorporated changes + made by Daniel P. Stasinski in his text-circle2.scm script. Letters + are now placed properly for both positive and negative fill angles. + Fix for bug #144588. + +2005-08-17 Tor Lillqvist + + * plug-ins/winsnap/Makefile.am (LDADD): Use $(WINDRES) to handle + cross-compilation. + + * plug-ins/winsnap/winsnap.rc: Refer to the .ico files in + lowercase, in case cross-compiling. + +2005-08-15 Sven Neumann + + * plug-ins/common/fp.c: merged fixes for bug #160032 and bug + #141032 from HEAD branch. + +2005-08-15 Sven Neumann + + Merged from HEAD branch: + + * plug-ins/rcm/rcm_callback.c + * plug-ins/rcm/rcm_dialog.c + * plug-ins/rcm/rcm_misc.[ch]: redraw the previews if their size + changes. Fixes bug #172284. + +2005-08-13 Manish Singh + + * app/core/gimpimage-preview.c (gimp_image_get_new_preview): if the + offsets of the layer are such that they are just on the border of + the image, detect that and bail instead of trying to make a + sub-preview with a 0 dimension. Fixes bug #312144. + +2005-08-13 Manish Singh + + Backported mmx/sse CFLAGS automake gymnastics from HEAD: + + * acinclude.m4: new macro: GIMP_DETECT_CFLAGS; used to detect which + of a set of compiler options a compiler supports. + + * configure.in: use the above for -fno-strict-aliasing flag. Also, + use it to detect the presence of -mmmx and -msse, since those are + needed to compile even MMX/SSE assembly with gcc 4.0. Define + MMX/SSE_EXTRA_CFLAGS. + + * app/composite/Makefile.am: compile each of the composite flavors + into their own library, so we can use automake's per-target CFLAGS. + Use MMX/SSE_EXTRA_CFLAGS in the appropriate places. Build + libappcomposite.a out of the resulting objects. + + * app/composite/gimp-composite-3dnow.c + * app/composite/gimp-composite-altivec.c + * app/composite/gimp-composite-mmx.c + * app/composite/gimp-composite-sse.c + * app/composite/gimp-composite-sse2.c + * app/composite/gimp-composite-vis.c + * app/composite/make-installer.py: move the _init functions into + the installers, so only actually mmx/sse code gets compiled + under the appropriate CFLAGS. + + * app/composite/gimp-composite-3dnow-installer.c + * app/composite/gimp-composite-altivec-installer.c + * app/composite/gimp-composite-mmx-installer.c + * app/composite/gimp-composite-sse-installer.c + * app/composite/gimp-composite-sse2-installer.c + * app/composite/gimp-composite-vis-installer.c: regenerated. + + * app/composite/gimp-composite.c: remove useless cpu-accel.h include. + + * app/composite/ns.py: resynced with HEAD. + +2005-08-08 Manish Singh + + * plug-ins/common/psd.c: Generate valid names for aux channels that + do not have names defined. Fixes bug #312963. + +2005-07-29 Maurits Rijk + + * plug-ins/imagemap/imap_csim.y: make buffer large enough to hold + all polygon data. + + * plug-ins/imagemap/imap_csim_parse.[ch]: regenerated. Fixes #169698 + +2005-07-26 Sven Neumann + + * configure.in (ALL_LINGUAS): added mk (Macedonian). + +2005-07-20 Sven Neumann + + * app/config/gimpconfig-dump.c: fixed typo (Debian bug #310018). + +2005-07-05 Manish Singh + + * INSTALL + * configure.in: Allow gtkhtml2, svg, and lcms features to be disabled + explicitly at configure time. Based on patch from John N. Laliberte, + fixes bug #307704. + +2005-07-01 Manish Singh + + * plug-ins/common/jpeg.c: Initialize restart markers check button + accordingly from defaults. Fixes bug #309091, patch from + David 'Bombe' Roden. + +2005-06-27 Sven Neumann + + * configure.in: bumped version to 2.2.9, interface_age 9. + 2005-06-27 Sven Neumann * Made 2.2.8 release. diff -uraN gimp-2.2.8/config.guess gimp-2.2.9/config.guess --- gimp-2.2.8/config.guess 2005-04-24 22:01:25.000000000 +0200 +++ gimp-2.2.9/config.guess 2005-08-14 05:51:20.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-04-22' +timestamp='2005-08-03' # 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 @@ -17,13 +17,15 @@ # # 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. +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, 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. + # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. @@ -66,11 +68,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; + echo "$timestamp" ; exit ;; --version | -v ) - echo "$version" ; exit 0 ;; + echo "$version" ; exit ;; --help | --h* | -h ) - echo "$usage"; exit 0 ;; + echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -123,7 +125,7 @@ ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ;' +esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) @@ -196,55 +198,20 @@ # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" - exit 0 ;; - amd64:OpenBSD:*:*) - echo x86_64-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - amiga:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - cats:OpenBSD:*:*) - echo arm-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - hp300:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - luna88k:OpenBSD:*:*) - echo m88k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mac68k:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - macppc:OpenBSD:*:*) - echo powerpc-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvme68k:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvme88k:OpenBSD:*:*) - echo m88k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvmeppc:OpenBSD:*:*) - echo powerpc-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - sgi:OpenBSD:*:*) - echo mips64-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - sun3:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; + exit ;; *:OpenBSD:*:*) - echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} - exit 0 ;; + exit ;; macppc:MirBSD:*:*) echo powerppc-unknown-mirbsd${UNAME_RELEASE} - exit 0 ;; + exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} - exit 0 ;; + exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) @@ -297,40 +264,43 @@ # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit 0 ;; + exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix - exit 0 ;; + exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 - exit 0 ;; + exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 - exit 0;; + exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos - exit 0 ;; + exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos - exit 0 ;; + exit ;; *:OS/390:*:*) echo i370-ibm-openedition - exit 0 ;; + exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe - exit 0 ;; + exit ;; *:OS400:*:*) echo powerpc-ibm-os400 - exit 0 ;; + exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} - exit 0;; + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp - exit 0;; + exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then @@ -338,32 +308,32 @@ else echo pyramid-pyramid-bsd fi - exit 0 ;; + exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 - exit 0 ;; + exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 - exit 0 ;; + exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7 && exit 0 ;; + sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) @@ -372,10 +342,10 @@ esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit 0 ;; + exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} - exit 0 ;; + exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 @@ -387,10 +357,10 @@ echo sparc-sun-sunos${UNAME_RELEASE} ;; esac - exit 0 ;; + exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} - exit 0 ;; + exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor @@ -401,40 +371,40 @@ # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} - exit 0 ;; + exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} - exit 0 ;; + exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 - exit 0 ;; + exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} - exit 0 ;; + exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} - exit 0 ;; + exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} - exit 0 ;; + exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -458,32 +428,33 @@ exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c \ - && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ - && exit 0 + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} - exit 0 ;; + exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax - exit 0 ;; + exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax - exit 0 ;; + exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax - exit 0 ;; + exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix - exit 0 ;; + exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 - exit 0 ;; + exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 - exit 0 ;; + exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 - exit 0 ;; + exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` @@ -499,29 +470,29 @@ else echo i586-dg-dgux${UNAME_RELEASE} fi - exit 0 ;; + exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 - exit 0 ;; + exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 - exit 0 ;; + exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 - exit 0 ;; + exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd - exit 0 ;; + exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit 0 ;; + exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix - exit 0 ;; + exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` @@ -529,7 +500,7 @@ IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit 0 ;; + exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build @@ -544,14 +515,18 @@ exit(0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 - echo rs6000-ibm-aix3.2.5 + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi - exit 0 ;; + exit ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then @@ -565,28 +540,28 @@ IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit 0 ;; + exit ;; *:AIX:*:*) echo rs6000-ibm-aix - exit 0 ;; + exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 - exit 0 ;; + exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit 0 ;; # report: romp-ibm BSD 4.3 + exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx - exit 0 ;; + exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 - exit 0 ;; + exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd - exit 0 ;; + exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 - exit 0 ;; + exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in @@ -648,9 +623,19 @@ esac if [ ${HP_ARCH} = "hppa2.0w" ] then - # avoid double evaluation of $set_cc_for_build - test -n "$CC_FOR_BUILD" || eval $set_cc_for_build - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else @@ -658,11 +643,11 @@ fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit 0 ;; + exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} - exit 0 ;; + exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -690,161 +675,166 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 - exit 0 ;; + exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd - exit 0 ;; + exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd - exit 0 ;; + exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix - exit 0 ;; + exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf - exit 0 ;; + exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf - exit 0 ;; + exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi - exit 0 ;; + exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites - exit 0 ;; + exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd - exit 0 ;; + exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi - exit 0 ;; + exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd - exit 0 ;; + exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd - exit 0 ;; + exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd - exit 0 ;; + exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit 0 ;; + exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit 0 ;; + exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit 0 ;; + exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} - exit 0 ;; + exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit 0 ;; + exit ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit 0 ;; + exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin - exit 0 ;; + exit ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 - exit 0 ;; + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 - exit 0 ;; + exit ;; x86:Interix*:[34]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' - exit 0 ;; + exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks - exit 0 ;; + exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix - exit 0 ;; + exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin - exit 0 ;; - amd64:CYGWIN*:*:*) + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin - exit 0 ;; + exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin - exit 0 ;; + exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit 0 ;; + exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu - exit 0 ;; + exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix - exit 0 ;; + exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu - exit 0 ;; + exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu - exit 0 ;; + exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu - exit 0 ;; + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -862,7 +852,7 @@ #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build @@ -881,14 +871,17 @@ #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; + or32:Linux:*:*) + echo or32-unknown-linux-gnu + exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu - exit 0 ;; + exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu - exit 0 ;; + exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; @@ -902,7 +895,7 @@ objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit 0 ;; + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -910,25 +903,25 @@ PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac - exit 0 ;; + exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu - exit 0 ;; + exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux - exit 0 ;; + exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu - exit 0 ;; + exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent @@ -946,15 +939,15 @@ ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit 0 ;; + exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit 0 ;; + exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit 0 ;; + exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build @@ -982,15 +975,18 @@ #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 - test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 + test x"${LIBC}" != x && { + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit + } + test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 - exit 0 ;; + exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... @@ -998,27 +994,27 @@ # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit 0 ;; + exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx - exit 0 ;; + exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop - exit 0 ;; + exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos - exit 0 ;; - i*86:syllable:*:*) + exit ;; + i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable - exit 0 ;; + exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit 0 ;; + exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then @@ -1026,15 +1022,16 @@ else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi - exit 0 ;; - i*86:*:5:[78]*) + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit 0 ;; + exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi - exit 0 ;; + exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv - exit 0 ;; + exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv - exit 0 ;; + exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix - exit 0 ;; + exit ;; M68*:*:R3V[5678]*:*) - test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4.3${OS_REL} && exit 0 + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4 && exit 0 ;; + && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 - exit 0 ;; + exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} - exit 0 ;; + exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 - exit 0 ;; + exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 - exit 0 ;; + exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` @@ -1126,65 +1123,65 @@ else echo ns32k-sni-sysv fi - exit 0 ;; + exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 - exit 0 ;; + exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 - exit 0 ;; + exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 - exit 0 ;; + exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos - exit 0 ;; + exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos - exit 0 ;; + exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} - exit 0 ;; + exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 - exit 0 ;; + exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi - exit 0 ;; + exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos - exit 0 ;; + exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos - exit 0 ;; + exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos - exit 0 ;; + exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} - exit 0 ;; + exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} - exit 0 ;; + exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} - exit 0 ;; + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit 0 ;; + exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit 0 ;; + exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in @@ -1192,7 +1189,7 @@ unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit 0 ;; + exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then @@ -1200,25 +1197,25 @@ UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit 0 ;; + exit ;; *:QNX:*:4*) echo i386-pc-qnx - exit 0 ;; + exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} - exit 0 ;; + exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} - exit 0 ;; + exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux - exit 0 ;; + exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv - exit 0 ;; + exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit 0 ;; + exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 @@ -1229,41 +1226,44 @@ UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 - exit 0 ;; + exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 - exit 0 ;; + exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex - exit 0 ;; + exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 - exit 0 ;; + exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 - exit 0 ;; + exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 - exit 0 ;; + exit ;; *:ITS:*:*) echo pdp10-unknown-its - exit 0 ;; + exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} - exit 0 ;; + exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` - exit 0 ;; + exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in - A*) echo alpha-dec-vms && exit 0 ;; - I*) echo ia64-dec-vms && exit 0 ;; - V*) echo vax-dec-vms && exit 0 ;; + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix - exit 0 ;; + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 @@ -1295,7 +1295,7 @@ #endif #if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix"); exit (0); + printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) @@ -1384,11 +1384,12 @@ } EOF -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) @@ -1397,22 +1398,22 @@ case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd - exit 0 ;; + exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi - exit 0 ;; + exit ;; c34*) echo c34-convex-bsd - exit 0 ;; + exit ;; c38*) echo c38-convex-bsd - exit 0 ;; + exit ;; c4*) echo c4-convex-bsd - exit 0 ;; + exit ;; esac fi diff -uraN gimp-2.2.8/config.sub gimp-2.2.9/config.sub --- gimp-2.2.8/config.sub 2005-04-24 22:01:25.000000000 +0200 +++ gimp-2.2.9/config.sub 2005-08-14 05:51:20.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-04-22' +timestamp='2005-07-08' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -21,14 +21,15 @@ # # 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. - +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, 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. + # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # @@ -83,11 +84,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; + echo "$timestamp" ; exit ;; --version | -v ) - echo "$version" ; exit 0 ;; + echo "$version" ; exit ;; --help | --h* | -h ) - echo "$usage"; exit 0 ;; + echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -99,7 +100,7 @@ *local*) # First pass through any local machine types. echo $1 - exit 0;; + exit ;; * ) break ;; @@ -247,6 +248,7 @@ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ @@ -255,13 +257,14 @@ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | ms1 \ | msp430 \ | ns16k | ns32k \ - | openrisc | or32 \ + | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b \ @@ -273,6 +276,9 @@ | z8k) basic_machine=$basic_machine-unknown ;; + m32c) + basic_machine=$basic_machine-unknown + ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown @@ -321,6 +327,7 @@ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ @@ -329,6 +336,7 @@ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ + | ms1-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ @@ -336,7 +344,7 @@ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ | sparclite-* \ @@ -351,6 +359,8 @@ | ymp-* \ | z8k-*) ;; + m32c-*) + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -761,9 +771,8 @@ basic_machine=hppa1.1-oki os=-proelf ;; - or32 | or32-*) + openrisc | openrisc-*) basic_machine=or32-unknown - os=-coff ;; os400) basic_machine=powerpc-ibm @@ -1089,12 +1098,9 @@ we32k) basic_machine=we32k-att ;; - sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) + sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; @@ -1181,7 +1187,8 @@ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*) + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1199,7 +1206,7 @@ os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) @@ -1388,6 +1395,9 @@ *-be) os=-beos ;; + *-haiku) + os=-haiku + ;; *-ibm) os=-aix ;; @@ -1559,7 +1569,7 @@ esac echo $basic_machine$os -exit 0 +exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) diff -uraN gimp-2.2.8/configure gimp-2.2.9/configure --- gimp-2.2.8/configure 2005-06-26 21:28:30.000000000 +0200 +++ gimp-2.2.9/configure 2005-10-27 17:12:00.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.8. +# Generated by GNU Autoconf 2.59 for GIMP 2.2.9. # # Report bugs to . # @@ -280,15 +280,15 @@ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. -if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test -z "$ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... - if (echo_test_string="`eval $cmd`") 2>/dev/null && - echo_test_string="`eval $cmd`" && + if (echo_test_string=`eval $cmd`) 2>/dev/null && + echo_test_string=`eval $cmd` && (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null then break @@ -423,8 +423,8 @@ # Identity of this package. PACKAGE_NAME='GIMP' PACKAGE_TARNAME='gimp' -PACKAGE_VERSION='2.2.8' -PACKAGE_STRING='GIMP 2.2.8' +PACKAGE_VERSION='2.2.9' +PACKAGE_STRING='GIMP 2.2.9' 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 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_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 install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar 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 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 MMX_EXTRA_CFLAGS SSE_EXTRA_CFLAGS 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,14 @@ ac_env_FFLAGS_value=$FFLAGS ac_cv_env_FFLAGS_set=${FFLAGS+set} ac_cv_env_FFLAGS_value=$FFLAGS +ac_env_CCAS_set=${CCAS+set} +ac_env_CCAS_value=$CCAS +ac_cv_env_CCAS_set=${CCAS+set} +ac_cv_env_CCAS_value=$CCAS +ac_env_CCASFLAGS_set=${CCASFLAGS+set} +ac_env_CCASFLAGS_value=$CCASFLAGS +ac_cv_env_CCASFLAGS_set=${CCASFLAGS+set} +ac_cv_env_CCASFLAGS_value=$CCASFLAGS ac_env_PKG_CONFIG_set=${PKG_CONFIG+set} ac_env_PKG_CONFIG_value=$PKG_CONFIG ac_cv_env_PKG_CONFIG_set=${PKG_CONFIG+set} @@ -1030,7 +1038,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.8 to adapt to many kinds of systems. +\`configure' configures GIMP 2.2.9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1100,15 +1108,15 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of GIMP 2.2.8:";; + short | recursive ) echo "Configuration of GIMP 2.2.9:";; esac cat <<\_ACEOF Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-dependency-tracking Speeds up one-time builds - --enable-dependency-tracking Do not reject slow dependency extractors + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors --enable-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] @@ -1116,8 +1124,8 @@ --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) - --enable-maintainer-mode enable make rules and dependencies not useful - (and sometimes confusing) to the casual installer + --enable-maintainer-mode enable make rules and dependencies not useful + (and sometimes confusing) to the casual installer --disable-largefile omit support for large files --enable-debug turn on debugging (default=no) --enable-profile turn on profiling (default=no) @@ -1153,9 +1161,12 @@ --without-libmng build without MNG support --without-libexif build without EXIF support --without-aa do not build the AA plug-in + --without-gtkhtml2 build without gtkhtml2 support + --without-librsvg build without librsvg support --with-gimpprint-prefix=PFX Prefix where GIMP-PRINT is installed (optional) --with-gimpprint-exec-prefix=PFX Exec prefix where GIMP-PRINT is installed (optional) + --without-lcms build without lcms support --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional) --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional) --without-linux-input don't build linux input event controller module @@ -1179,6 +1190,8 @@ CXXCPP C++ preprocessor F77 Fortran 77 compiler command FFLAGS Fortran 77 compiler flags + CCAS assembler compiler command (defaults to CC) + CCASFLAGS assembler compiler flags (defaults to CFLAGS) PKG_CONFIG path to pkg-config utility GMODULE_CFLAGS C compiler flags for GMODULE, overriding pkg-config @@ -1310,7 +1323,7 @@ test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF -GIMP configure 2.2.8 +GIMP configure 2.2.9 generated by GNU Autoconf 2.59 Copyright (C) 2003 Free Software Foundation, Inc. @@ -1324,7 +1337,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.8, which was +It was created by GIMP $as_me 2.2.9, which was generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ @@ -1663,7 +1676,7 @@ -am__api_version="1.7" +am__api_version="1.9" ac_aux_dir= for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do if test -f $ac_dir/install-sh; then @@ -1826,7 +1839,6 @@ program_transform_name=`echo $program_transform_name | sed -f conftest.sed` rm conftest.sed - # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` @@ -1840,6 +1852,39 @@ echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi +if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + # We used to keeping the `.' as first argument, in order to + # allow $(mkdir_p) to be used without argument. As in + # $(mkdir_p) $(somedir) + # where $(somedir) is conditionally defined. However this is wrong + # for two reasons: + # 1. if the package is installed by a user who cannot write `.' + # make install will fail, + # 2. the above comment should most certainly read + # $(mkdir_p) $(DESTDIR)$(somedir) + # so it does not work when $(somedir) is undefined and + # $(DESTDIR) is not. + # To support the latter case, we have to write + # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), + # so the `.' trick is pointless. + mkdir_p='mkdir -p --' +else + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + for d in ./-p ./--version; + do + test -d $d && rmdir $d + done + # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. + if test -f "$ac_aux_dir/mkinstalldirs"; then + mkdir_p='$(mkinstalldirs)' + else + mkdir_p='$(install_sh) -d' + fi +fi + for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. @@ -1918,7 +1963,7 @@ fi rmdir .tst 2>/dev/null - # test to see if srcdir already configured +# test to see if srcdir already configured if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 @@ -1938,7 +1983,7 @@ # Define the identity of the package. PACKAGE='gimp' - VERSION='2.2.8' + VERSION='2.2.9' # Some tools Automake needs. @@ -1957,9 +2002,6 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -AMTAR=${AMTAR-"${am_missing_run}tar"} - install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user @@ -2052,6 +2094,13 @@ # We need awk for the "check" target. The system "awk" is bad on # some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + @@ -2060,11 +2109,11 @@ GIMP_MAJOR_VERSION=2 GIMP_MINOR_VERSION=2 -GIMP_MICRO_VERSION=8 -GIMP_INTERFACE_AGE=8 -GIMP_BINARY_AGE=208 -GIMP_VERSION=2.2.8 -GIMP_REAL_VERSION=2.2.8 +GIMP_MICRO_VERSION=9 +GIMP_INTERFACE_AGE=9 +GIMP_BINARY_AGE=209 +GIMP_VERSION=2.2.9 +GIMP_REAL_VERSION=2.2.9 GIMP_API_VERSION=2.0 GIMP_APP_VERSION=2.2 GIMP_PLUGIN_VERSION=2.0 @@ -2116,7 +2165,7 @@ -LT_VERSION_INFO="200:8:200" +LT_VERSION_INFO="200:9:200" LT_CURRENT_MINUS_AGE=0 @@ -3183,7 +3232,9 @@ : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c - : > sub/conftst$i.h + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf @@ -3211,9 +3262,14 @@ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings - # (even with -Werror). So we grep stderr for any message - # that says an option was ignored. - if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi @@ -3398,7 +3454,7 @@ # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f $lt_ac_sed && break + test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in @@ -3423,10 +3479,10 @@ fi done done -SED=$lt_cv_path_SED fi +SED=$lt_cv_path_SED echo "$as_me:$LINENO: result: $SED" >&5 echo "${ECHO_T}$SED" >&6 @@ -3503,7 +3559,7 @@ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some GNU ld's only accept -v. + # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &6 else - # I'd rather use --version here, but apparently some GNU ld's only accept -v. + # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 @@ -3653,7 +3718,7 @@ lt_cv_deplibs_check_method=pass_all ;; -bsdi4*) +bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so @@ -3676,13 +3741,13 @@ lt_cv_deplibs_check_method=pass_all ;; -freebsd* | kfreebsd*-gnu) +freebsd* | kfreebsd*-gnu | dragonfly*) if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; @@ -3698,7 +3763,7 @@ hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file - case "$host_cpu" in + case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so @@ -3748,12 +3813,10 @@ ;; openbsd*) - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object' + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else - lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; @@ -3846,7 +3909,7 @@ ;; *-*-irix6*) # Find out which ABI we are using. - echo '#line 3849 "configure"' > conftest.$ac_ext + echo '#line 3912 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? @@ -3889,7 +3952,7 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - case "`/usr/bin/file conftest.o`" in + case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*linux*) @@ -5261,7 +5324,9 @@ : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c - : > sub/conftst$i.h + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf @@ -5289,9 +5354,14 @@ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings - # (even with -Werror). So we grep stderr for any message - # that says an option was ignored. - if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi @@ -5322,7 +5392,12 @@ fi -ac_ext=cc + + +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' @@ -5552,6 +5627,8 @@ ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +fi + ac_ext=f ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&5' @@ -5645,7 +5722,7 @@ # Provide some information about the compiler. -echo "$as_me:5648:" \ +echo "$as_me:5725:" \ "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 @@ -5833,11 +5910,38 @@ lt_cv_sys_max_cmd_len=8192; ;; - *) + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + *) # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while (test "X"`$CONFIG_SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \ = "XX$teststring") >/dev/null 2>&1 && new_result=`expr "X$teststring" : ".*" 2>&1` && lt_cv_sys_max_cmd_len=$new_result && @@ -5883,9 +5987,6 @@ # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' -# Transform the above into a raw symbol and a C symbol. -symxfrm='\1 \2\3 \3' - # Transform an extracted symbol line into a proper C declaration lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" @@ -5907,6 +6008,13 @@ lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ;; +linux*) + if test "$host_cpu" = ia64; then + symcode='[ABCDGIRSTW]' + lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" + fi + ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; @@ -5938,8 +6046,11 @@ # Try without a prefix undercore, then with it. for ac_symprfx in "" "_"; do + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + # Write the raw and C identifiers. - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" # Check to see that the pipe works correctly. pipe_works=no @@ -6101,7 +6212,7 @@ # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. -Xsed='sed -e s/^X//' +Xsed='sed -e 1s/^X//' sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g' # Same as above, but do not quote variable references. @@ -6121,7 +6232,7 @@ default_ofile=libtool can_build_shared=yes -# All known linkers require a `.a' archive for static linking (except M$VC, +# All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a ltmain="$ac_aux_dir/ltmain.sh" @@ -6406,6 +6517,17 @@ old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + + # Only perform the check for file, if the check method requires it case $deplibs_check_method in file_magic*) @@ -6431,7 +6553,7 @@ if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) - file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then @@ -6493,7 +6615,7 @@ if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) - file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then @@ -6592,6 +6714,20 @@ compiler=$CC +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +printf "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$rm conftest* + +ac_outfile=conftest.$ac_objext +printf "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$rm conftest* + + # # Check for any special shared library compilation flags. # @@ -6628,11 +6764,16 @@ LDFLAGS="$LDFLAGS $lt_prog_compiler_static" printf "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then - # The compiler can only warn and ignore the option if not recognized + # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 + $echo "X$_lt_linker_boilerplate" | $Xsed > conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_prog_compiler_static_works=yes + fi else lt_prog_compiler_static_works=yes fi @@ -6674,18 +6815,20 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6680: $lt_compile\"" >&5) + (eval echo "\"\$as_me:6821: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:6684: \$? = $ac_status" >&5 + echo "$as_me:6825: \$? = $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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi @@ -6762,7 +6905,7 @@ hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -6788,6 +6931,16 @@ lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; + darwin*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + case $cc_basename in + xlc*) + lt_prog_compiler_pic='-qnocommon' + lt_prog_compiler_wl='-Wl,' + ;; + esac + ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being @@ -6799,7 +6952,7 @@ lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -6823,12 +6976,19 @@ ;; linux*) - case $CC in + case $cc_basename in icc* | ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. @@ -6849,9 +7009,14 @@ ;; solaris*) - lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac ;; sunos4*) @@ -6873,6 +7038,11 @@ fi ;; + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' @@ -6907,18 +7077,20 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6913: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7083: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:6917: \$? = $ac_status" >&5 + echo "$as_me:7087: \$? = $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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works=yes fi fi @@ -6939,7 +7111,7 @@ fi fi -case "$host_os" in +case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= @@ -6967,23 +7139,25 @@ # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:6973: $lt_compile\"" >&5) + (eval echo "\"\$as_me:7145: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:6977: \$? = $ac_status" >&5 + echo "$as_me:7149: \$? = $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 # So say no if there are warnings - if test ! -s out/conftest.err; then + $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp + $SED '/^$/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi - chmod u+w . + chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation @@ -7059,6 +7233,16 @@ # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= + # Just being paranoid about ensuring that cc_basename is set. + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) @@ -7079,6 +7263,27 @@ # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v 2>/dev/null` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) @@ -7129,7 +7334,7 @@ allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes - export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' @@ -7147,6 +7352,38 @@ fi ;; + linux*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + tmp_addflag= + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + esac + archive_cmds='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test $supports_anon_versioning = yes; then + archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + $echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + link_all_deplibs=no + else + ld_shlibs=no + fi + ;; + netbsd* | netbsdelf*-gnu | knetbsd*-gnu) if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' @@ -7185,32 +7422,6 @@ hardcode_shlibpath_var=no ;; - linux*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_cmds="$tmp_archive_cmds" - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - if test $supports_anon_versioning = yes; then - archive_expsym_cmds='$echo "{ global:" > $output_objdir/$libname.ver~ -cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -$echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - else - archive_expsym_cmds="$tmp_archive_cmds" - fi - link_all_deplibs=no - else - ld_shlibs=no - fi - ;; - *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' @@ -7221,16 +7432,11 @@ ;; esac - if test "$ld_shlibs" = yes; then - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec= - fi + if test "$ld_shlibs" = no; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) @@ -7294,7 +7500,7 @@ link_all_deplibs=yes if test "$GCC" = yes; then - case $host_os in aix4.012|aix4.012.*) + case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` @@ -7315,6 +7521,9 @@ fi esac shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi else # not using gcc if test "$host_cpu" = ia64; then @@ -7459,7 +7668,7 @@ # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec=' ' archive_cmds_need_lc=yes - # This is similar to how AIX traditionally builds it's shared libraries. + # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi @@ -7473,7 +7682,7 @@ ld_shlibs=no ;; - bsdi4*) + bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; @@ -7499,52 +7708,52 @@ ;; darwin* | rhapsody*) - if test "$GXX" = yes ; then - archive_cmds_need_lc=no - case "$host_os" in - rhapsody* | darwin1.[012]) - allow_undefined_flag='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag='-flat_namespace -undefined suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag='-flat_namespace -undefined suppress' - ;; - 10.*) - allow_undefined_flag='-undefined dynamic_lookup' - ;; - esac - fi - ;; + case $host_os in + rhapsody* | darwin1.[012]) + allow_undefined_flag='${wl}-undefined ${wl}suppress' + ;; + *) # Darwin 1.3 on + if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then + allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + else + case ${MACOSX_DEPLOYMENT_TARGET} in + 10.[012]) + allow_undefined_flag='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + ;; + 10.*) + allow_undefined_flag='${wl}-undefined ${wl}dynamic_lookup' + ;; + esac + fi + ;; esac - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_cmds='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - archive_cmds='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - module_cmds='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported - whole_archive_flag_spec='-all_load $convenience' + whole_archive_flag_spec='' link_all_deplibs=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' + archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else - ld_shlibs=no + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + ld_shlibs=no + ;; + esac fi ;; @@ -7578,7 +7787,7 @@ ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes @@ -7603,7 +7812,7 @@ hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; @@ -7612,7 +7821,7 @@ ;; esac else - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) archive_cmds='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; @@ -7622,7 +7831,7 @@ esac fi if test "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld='+b $libdir' @@ -7689,6 +7898,7 @@ hardcode_shlibpath_var=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else @@ -7734,7 +7944,7 @@ allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' + $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' @@ -7753,10 +7963,12 @@ solaris*) no_undefined_flag=' -z text' if test "$GCC" = yes; then + wlarc='${wl}' archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else + wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' @@ -7765,8 +7977,18 @@ hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; - *) # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; + *) + # The compiler driver will combine linker options so we + # cannot just pass the convience library names through + # without $wl, iff we do not link with $LD. + # Luckily, gcc supports the same syntax we need for Sun Studio. + # Supported since Solaris 2.6 (maybe 2.5.1?) + case $wlarc in + '') + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; + *) + whole_archive_flag_spec='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; + esac ;; esac link_all_deplibs=yes ;; @@ -8040,7 +8262,7 @@ shlibpath_var=LIBRARY_PATH ;; -bsdi4*) +bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' @@ -8068,7 +8290,8 @@ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' @@ -8098,7 +8321,7 @@ ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; @@ -8121,7 +8344,7 @@ soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` @@ -8156,8 +8379,17 @@ dynamic_linker='GNU ld.so' ;; -freebsd*) - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) @@ -8175,7 +8407,7 @@ freebsd2*) shlibpath_overrides_runpath=yes ;; - freebsd3.01* | freebsdelf3.01*) + freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; @@ -8202,7 +8434,7 @@ version_type=sunos need_lib_prefix=no need_version=no - case "$host_cpu" in + case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes @@ -8301,7 +8533,7 @@ # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then - lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi @@ -8376,7 +8608,11 @@ openbsd*) version_type=sunos need_lib_prefix=no - need_version=yes + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH @@ -8498,8 +8734,8 @@ echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ - test -n "$runpath_var " || \ - test "X$hardcode_automatic"="Xyes" ; then + test -n "$runpath_var" || \ + test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct" != no && @@ -9158,7 +9394,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; @@ -9256,7 +9492,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; @@ -9372,7 +9608,7 @@ # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. -case "$host_os" in +case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then @@ -9385,43 +9621,6 @@ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi - ;; - darwin* | rhapsody*) - if test "$GCC" = yes; then - archive_cmds_need_lc=no - case "$host_os" in - rhapsody* | darwin1.[012]) - allow_undefined_flag='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag='-flat_namespace -undefined suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag='-flat_namespace -undefined suppress' - ;; - 10.*) - allow_undefined_flag='-undefined dynamic_lookup' - ;; - esac - fi - ;; - esac - output_verbose_link_cmd='echo' - archive_cmds='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring' - module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - archive_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs$compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - module_expsym_cmds='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - hardcode_direct=no - hardcode_automatic=yes - hardcode_shlibpath_var=unsupported - whole_archive_flag_spec='-all_load $convenience' - link_all_deplibs=yes - else - ld_shlibs=no - fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 @@ -9551,7 +9750,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -9562,11 +9761,11 @@ SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. -Xsed="$SED -e s/^X//" +Xsed="$SED -e 1s/^X//" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. -if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH # The names of the tagged configurations supported by this script. available_tags= @@ -9596,6 +9795,12 @@ # The host system. host_alias=$host_alias host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo @@ -9672,7 +9877,7 @@ # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o -# Must we lock files when doing compilation ? +# Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? @@ -9967,7 +10172,9 @@ case $tagname in CXX) - if test -n "$CXX" && test "X$CXX" != "Xno"; then + if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then ac_ext=cc ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -10004,7 +10211,7 @@ compiler_lib_search_path_CXX= # Source file extension for C++ test sources. -ac_ext=cc +ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o @@ -10025,6 +10232,20 @@ compiler=$CC +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +printf "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$rm conftest* + +ac_outfile=conftest.$ac_objext +printf "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$rm conftest* + + # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD @@ -10046,7 +10267,16 @@ CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC -cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + # We don't want -fno-exception wen compiling C++ code, so set the # no_builtin_flag separately @@ -10117,7 +10347,7 @@ if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, - # but apparently some GNU ld's only accept -v. + # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &6 else - # I'd rather use --version here, but apparently some GNU ld's only accept -v. + # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &1 | grep 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - archive_cmds_CXX='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - module_cmds_CXX='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + whole_archive_flag_spec_CXX='' + link_all_deplibs_CXX=yes - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - hardcode_direct_CXX=no - hardcode_automatic_CXX=yes - hardcode_shlibpath_var_CXX=unsupported - whole_archive_flag_spec_CXX='-all_load $convenience' - link_all_deplibs_CXX=yes - else - ld_shlibs_CXX=no - fi - ;; + if test "$GXX" = yes ; then + lt_int_apple_cc_single_mod=no + output_verbose_link_cmd='echo' + if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then + lt_int_apple_cc_single_mod=yes + fi + if test "X$lt_int_apple_cc_single_mod" = Xyes ; then + archive_cmds_CXX='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + else + archive_cmds_CXX='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + fi + module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + if test "X$lt_int_apple_cc_single_mod" = Xyes ; then + archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + else + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds_CXX='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + ld_shlibs_CXX=no + ;; + esac + fi + ;; dgux*) case $cc_basename in - ec++) + ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; - ghcx) + ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no @@ -10532,14 +10777,14 @@ ;; esac ;; - freebsd12*) + freebsd[12]*) # C++ shared libraries reported to be fairly broken before switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes @@ -10556,11 +10801,11 @@ # location of the library. case $cc_basename in - CC) + CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; - aCC) + aCC*) archive_cmds_CXX='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -10570,7 +10815,7 @@ # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) if test "$GXX" = yes; then @@ -10584,7 +10829,7 @@ ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld_CXX='+b $libdir' @@ -10600,7 +10845,7 @@ ;; esac fi - case "$host_cpu" in + case $host_cpu in hppa*64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no @@ -10621,12 +10866,12 @@ esac case $cc_basename in - CC) + CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; - aCC) - case "$host_cpu" in + aCC*) + case $host_cpu in hppa*64*|ia64*) archive_cmds_CXX='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; @@ -10647,7 +10892,7 @@ *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then - case "$host_cpu" in + case $host_cpu in ia64*|hppa*64*) archive_cmds_CXX='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' ;; @@ -10665,9 +10910,9 @@ ;; irix5* | irix6*) case $cc_basename in - CC) + CC*) # SGI C++ - archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is @@ -10678,7 +10923,7 @@ *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then - archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' fi @@ -10691,7 +10936,7 @@ ;; linux*) case $cc_basename in - KCC) + KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file @@ -10716,17 +10961,41 @@ # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; - icpc) + icpc*) # Intel C++ with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac archive_cmds_need_lc_CXX=no - archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; - cxx) + pgCC*) + # Portland Group C++ compiler + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_CXX='${wl}--export-dynamic' + whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' @@ -10757,7 +11026,7 @@ ;; mvs*) case $cc_basename in - cxx) + cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; @@ -10778,9 +11047,25 @@ # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; + openbsd2*) + # C++ shared libraries are fairly broken + ld_shlibs_CXX=no + ;; + openbsd*) + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='${wl}-E' + whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd='echo' + ;; osf3*) case $cc_basename in - KCC) + KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file @@ -10796,14 +11081,14 @@ old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; - RCC) + RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; - cxx) + cxx*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: @@ -10821,7 +11106,7 @@ *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: @@ -10840,7 +11125,7 @@ ;; osf4* | osf5*) case $cc_basename in - KCC) + KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file @@ -10855,17 +11140,17 @@ # the KAI C++ compiler. old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; - RCC) + RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; - cxx) + cxx*) allow_undefined_flag_CXX=' -expect_unresolved \*' - archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry $objdir/so_locations -o $lib~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ $rm $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' @@ -10884,7 +11169,7 @@ *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' - archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: @@ -10908,7 +11193,7 @@ sco*) archive_cmds_need_lc_CXX=no case $cc_basename in - CC) + CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; @@ -10920,12 +11205,12 @@ ;; sunos4*) case $cc_basename in - CC) + CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; - lcc) + lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no @@ -10938,36 +11223,33 @@ ;; solaris*) case $cc_basename in - CC) + CC*) # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' - archive_cmds_CXX='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in - solaris2.0-5 | solaris2.0-5.*) ;; + solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The C++ compiler is used as linker so we must use $wl # flag to pass the commands to the underlying system - # linker. + # linker. We must also pass each convience library through + # to the system linker between allextract/defaultextract. + # The C++ compiler will combine linker options so we + # cannot just pass the convience library names through + # without $wl. # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; esac link_all_deplibs_CXX=yes - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - # - # There doesn't appear to be a way to prevent this compiler from - # explicitly linking system object files so we need to strip them - # from the output so that they don't get included in the library - # dependencies. - output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[LR]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is @@ -10975,7 +11257,7 @@ # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; - gcx) + gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' @@ -11018,7 +11300,7 @@ ;; tandem*) case $cc_basename in - NCC) + NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no @@ -11071,7 +11353,7 @@ # The `*' in the case matches for architectures that use `case' in # $output_verbose_cmd can trigger glob expansion during the loop # eval without this substitution. - output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`" + output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"` for p in `eval $output_verbose_link_cmd`; do case $p in @@ -11147,6 +11429,20 @@ $rm -f confest.$objext +# PORTME: override above test on systems where it is broken +case $host_os in +solaris*) + case $cc_basename in + CC*) + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + postdeps_CXX='-lCstd -lCrun' + ;; + esac +esac + + case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac @@ -11202,7 +11498,7 @@ hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) ;; *) @@ -11227,18 +11523,28 @@ ;; chorus*) case $cc_basename in - cxch68) + cxch68*) # Green Hills C++ Compiler # _LT_AC_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; + darwin*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + case $cc_basename in + xlc*) + lt_prog_compiler_pic_CXX='-qnocommon' + lt_prog_compiler_wl_CXX='-Wl,' + ;; + esac + ;; dgux*) case $cc_basename in - ec++) + ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; - ghcx) + ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; @@ -11246,22 +11552,22 @@ ;; esac ;; - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in - CC) + CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; - aCC) + aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -11276,7 +11582,7 @@ ;; irix5* | irix6* | nonstopux*) case $cc_basename in - CC) + CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. @@ -11287,18 +11593,24 @@ ;; linux*) case $cc_basename in - KCC) + KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; - icpc) + icpc* | ecpc*) # Intel C++ lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; - cxx) + pgCC*) + # Portland Group C++ compiler. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. @@ -11315,7 +11627,7 @@ ;; mvs*) case $cc_basename in - cxx) + cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) @@ -11326,14 +11638,14 @@ ;; osf3* | osf4* | osf5*) case $cc_basename in - KCC) + KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; - RCC) + RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; - cxx) + cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha @@ -11349,7 +11661,7 @@ ;; sco*) case $cc_basename in - CC) + CC*) lt_prog_compiler_pic_CXX='-fPIC' ;; *) @@ -11358,13 +11670,13 @@ ;; solaris*) case $cc_basename in - CC) + CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; - gcx) + gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; @@ -11374,12 +11686,12 @@ ;; sunos4*) case $cc_basename in - CC) + CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; - lcc) + lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; @@ -11389,7 +11701,7 @@ ;; tandem*) case $cc_basename in - NCC) + NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; @@ -11430,18 +11742,20 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:11436: $lt_compile\"" >&5) + (eval echo "\"\$as_me:11748: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:11440: \$? = $ac_status" >&5 + echo "$as_me:11752: \$? = $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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_CXX=yes fi fi @@ -11462,7 +11776,7 @@ fi fi -case "$host_os" in +case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= @@ -11490,23 +11804,25 @@ # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:11496: $lt_compile\"" >&5) + (eval echo "\"\$as_me:11810: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:11500: \$? = $ac_status" >&5 + echo "$as_me:11814: \$? = $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 # So say no if there are warnings - if test ! -s out/conftest.err; then + $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp + $SED '/^$/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi - chmod u+w . + chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation @@ -11561,7 +11877,7 @@ export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw*) - export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([^ ]*\) [^ ]*/\1 DATA/;/^I /d;/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' ;; linux*) link_all_deplibs_CXX=no @@ -11744,7 +12060,7 @@ shlibpath_var=LIBRARY_PATH ;; -bsdi4*) +bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' @@ -11772,7 +12088,8 @@ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' @@ -11802,7 +12119,7 @@ ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; @@ -11825,7 +12142,7 @@ soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` @@ -11860,8 +12177,17 @@ dynamic_linker='GNU ld.so' ;; -freebsd*) - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) @@ -11879,7 +12205,7 @@ freebsd2*) shlibpath_overrides_runpath=yes ;; - freebsd3.01* | freebsdelf3.01*) + freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; @@ -11906,7 +12232,7 @@ version_type=sunos need_lib_prefix=no need_version=no - case "$host_cpu" in + case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes @@ -12005,7 +12331,7 @@ # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then - lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi @@ -12080,7 +12406,11 @@ openbsd*) version_type=sunos need_lib_prefix=no - need_version=yes + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH @@ -12202,8 +12532,8 @@ echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || \ - test -n "$runpath_var CXX" || \ - test "X$hardcode_automatic_CXX"="Xyes" ; then + test -n "$runpath_var_CXX" || \ + test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_CXX" != no && @@ -12862,7 +13192,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; @@ -12960,7 +13290,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; @@ -13178,6 +13508,12 @@ # The host system. host_alias=$host_alias host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo @@ -13254,7 +13590,7 @@ # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX -# Must we lock files when doing compilation ? +# Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? @@ -13535,12 +13871,35 @@ compiler=$CC +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +printf "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$rm conftest* + +ac_outfile=conftest.$ac_objext +printf "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$rm conftest* + + # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${F77-"f77"} compiler=$CC compiler_F77=$CC -cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 @@ -13553,7 +13912,7 @@ # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. -case "$host_os" in +case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then @@ -13562,7 +13921,9 @@ fi ;; aix4* | aix5*) - test "$enable_shared" = yes && enable_static=no + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi ;; esac echo "$as_me:$LINENO: result: $enable_shared" >&5 @@ -13639,7 +14000,7 @@ hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -13665,6 +14026,16 @@ lt_prog_compiler_static_F77='-bnso -bI:/lib/syscalls.exp' fi ;; + darwin*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + case $cc_basename in + xlc*) + lt_prog_compiler_pic_F77='-qnocommon' + lt_prog_compiler_wl_F77='-Wl,' + ;; + esac + ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being @@ -13676,7 +14047,7 @@ lt_prog_compiler_wl_F77='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -13700,12 +14071,19 @@ ;; linux*) - case $CC in + case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-static' ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_pic_F77='-fpic' + lt_prog_compiler_static_F77='-Bstatic' + ;; ccc*) lt_prog_compiler_wl_F77='-Wl,' # All Alpha code is PIC. @@ -13726,9 +14104,14 @@ ;; solaris*) - lt_prog_compiler_wl_F77='-Wl,' lt_prog_compiler_pic_F77='-KPIC' lt_prog_compiler_static_F77='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl_F77='-Qoption ld ';; + *) + lt_prog_compiler_wl_F77='-Wl,';; + esac ;; sunos4*) @@ -13750,6 +14133,11 @@ fi ;; + unicos*) + lt_prog_compiler_wl_F77='-Wl,' + lt_prog_compiler_can_build_shared_F77=no + ;; + uts4*) lt_prog_compiler_pic_F77='-pic' lt_prog_compiler_static_F77='-Bstatic' @@ -13784,18 +14172,20 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13790: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14178: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:13794: \$? = $ac_status" >&5 + echo "$as_me:14182: \$? = $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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_F77=yes fi fi @@ -13816,7 +14206,7 @@ fi fi -case "$host_os" in +case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_F77= @@ -13844,23 +14234,25 @@ # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:13850: $lt_compile\"" >&5) + (eval echo "\"\$as_me:14240: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:13854: \$? = $ac_status" >&5 + echo "$as_me:14244: \$? = $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 # So say no if there are warnings - if test ! -s out/conftest.err; then + $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp + $SED '/^$/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_F77=yes fi fi - chmod u+w . + chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation @@ -13936,6 +14328,16 @@ # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= + # Just being paranoid about ensuring that cc_basename is set. + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) @@ -13956,6 +14358,27 @@ # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_F77='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_F77= + fi + supports_anon_versioning=no + case `$LD -v 2>/dev/null` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) @@ -14006,7 +14429,7 @@ allow_undefined_flag_F77=unsupported always_export_symbols_F77=no enable_shared_with_static_runtimes_F77=yes - export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' + export_symbols_cmds_F77='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' @@ -14020,7 +14443,39 @@ fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else - ld_shlibs=no + ld_shlibs_F77=no + fi + ;; + + linux*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + tmp_addflag= + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec_F77='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + esac + archive_cmds_F77='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test $supports_anon_versioning = yes; then + archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + $echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + link_all_deplibs_F77=no + else + ld_shlibs_F77=no fi ;; @@ -14062,32 +14517,6 @@ hardcode_shlibpath_var_F77=no ;; - linux*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_cmds_F77="$tmp_archive_cmds" - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - if test $supports_anon_versioning = yes; then - archive_expsym_cmds_F77='$echo "{ global:" > $output_objdir/$libname.ver~ -cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -$echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - else - archive_expsym_cmds_F77="$tmp_archive_cmds" - fi - link_all_deplibs_F77=no - else - ld_shlibs_F77=no - fi - ;; - *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' @@ -14098,16 +14527,11 @@ ;; esac - if test "$ld_shlibs_F77" = yes; then - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_F77='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_F77='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_F77="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_F77= - fi + if test "$ld_shlibs_F77" = no; then + runpath_var= + hardcode_libdir_flag_spec_F77= + export_dynamic_flag_spec_F77= + whole_archive_flag_spec_F77= fi else # PORTME fill in a description of your system's linker (not GNU ld) @@ -14171,7 +14595,7 @@ link_all_deplibs_F77=yes if test "$GCC" = yes; then - case $host_os in aix4.012|aix4.012.*) + case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` @@ -14192,6 +14616,9 @@ fi esac shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi else # not using gcc if test "$host_cpu" = ia64; then @@ -14316,7 +14743,7 @@ # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_F77=' ' archive_cmds_need_lc_F77=yes - # This is similar to how AIX traditionally builds it's shared libraries. + # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_F77="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi @@ -14330,7 +14757,7 @@ ld_shlibs_F77=no ;; - bsdi4*) + bsdi[45]*) export_dynamic_flag_spec_F77=-rdynamic ;; @@ -14351,57 +14778,57 @@ old_archive_From_new_cmds_F77='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path='`cygpath -w "$srcfile"`' + fix_srcfile_path_F77='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_F77=yes ;; darwin* | rhapsody*) - if test "$GXX" = yes ; then - archive_cmds_need_lc_F77=no - case "$host_os" in - rhapsody* | darwin1.[012]) - allow_undefined_flag_F77='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag_F77='-flat_namespace -undefined suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag_F77='-flat_namespace -undefined suppress' - ;; - 10.*) - allow_undefined_flag_F77='-undefined dynamic_lookup' - ;; - esac - fi - ;; + case $host_os in + rhapsody* | darwin1.[012]) + allow_undefined_flag_F77='${wl}-undefined ${wl}suppress' + ;; + *) # Darwin 1.3 on + if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then + allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + else + case ${MACOSX_DEPLOYMENT_TARGET} in + 10.[012]) + allow_undefined_flag_F77='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + ;; + 10.*) + allow_undefined_flag_F77='${wl}-undefined ${wl}dynamic_lookup' + ;; + esac + fi + ;; esac - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_cmds_F77='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - archive_cmds_F77='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - module_cmds_F77='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + archive_cmds_need_lc_F77=no hardcode_direct_F77=no hardcode_automatic_F77=yes hardcode_shlibpath_var_F77=unsupported - whole_archive_flag_spec_F77='-all_load $convenience' + whole_archive_flag_spec_F77='' link_all_deplibs_F77=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' + archive_cmds_F77='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else - ld_shlibs_F77=no + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds_F77='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + ld_shlibs_F77=no + ;; + esac fi ;; @@ -14435,7 +14862,7 @@ ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_F77='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_F77='-R$libdir' hardcode_direct_F77=yes @@ -14460,7 +14887,7 @@ hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) archive_cmds_F77='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; @@ -14469,7 +14896,7 @@ ;; esac else - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) archive_cmds_F77='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; @@ -14479,7 +14906,7 @@ esac fi if test "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*) hardcode_libdir_flag_spec_F77='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld_F77='+b $libdir' @@ -14546,6 +14973,7 @@ hardcode_shlibpath_var_F77=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_F77='${wl}-rpath,$libdir' export_dynamic_flag_spec_F77='${wl}-E' else @@ -14591,7 +15019,7 @@ allow_undefined_flag_F77=' -expect_unresolved \*' archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' + $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_F77='-rpath $libdir' @@ -14610,10 +15038,12 @@ solaris*) no_undefined_flag_F77=' -z text' if test "$GCC" = yes; then + wlarc='${wl}' archive_cmds_F77='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else + wlarc='' archive_cmds_F77='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_F77='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' @@ -14622,8 +15052,18 @@ hardcode_shlibpath_var_F77=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; - *) # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' ;; + *) + # The compiler driver will combine linker options so we + # cannot just pass the convience library names through + # without $wl, iff we do not link with $LD. + # Luckily, gcc supports the same syntax we need for Sun Studio. + # Supported since Solaris 2.6 (maybe 2.5.1?) + case $wlarc in + '') + whole_archive_flag_spec_F77='-z allextract$convenience -z defaultextract' ;; + *) + whole_archive_flag_spec_F77='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; + esac ;; esac link_all_deplibs_F77=yes ;; @@ -14897,7 +15337,7 @@ shlibpath_var=LIBRARY_PATH ;; -bsdi4*) +bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' @@ -14925,7 +15365,8 @@ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' @@ -14955,7 +15396,7 @@ ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; @@ -14978,7 +15419,7 @@ soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` @@ -15013,8 +15454,17 @@ dynamic_linker='GNU ld.so' ;; -freebsd*) - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) @@ -15032,7 +15482,7 @@ freebsd2*) shlibpath_overrides_runpath=yes ;; - freebsd3.01* | freebsdelf3.01*) + freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; @@ -15059,7 +15509,7 @@ version_type=sunos need_lib_prefix=no need_version=no - case "$host_cpu" in + case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes @@ -15158,7 +15608,7 @@ # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then - lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi @@ -15233,7 +15683,11 @@ openbsd*) version_type=sunos need_lib_prefix=no - need_version=yes + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH @@ -15355,8 +15809,8 @@ echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_F77= if test -n "$hardcode_libdir_flag_spec_F77" || \ - test -n "$runpath_var F77" || \ - test "X$hardcode_automatic_F77"="Xyes" ; then + test -n "$runpath_var_F77" || \ + test "X$hardcode_automatic_F77" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_F77" != no && @@ -15533,6 +15987,12 @@ # The host system. host_alias=$host_alias host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo @@ -15609,7 +16069,7 @@ # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_F77 -# Must we lock files when doing compilation ? +# Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? @@ -15847,7 +16307,7 @@ lt_simple_compile_test_code="class foo {}\n" # Code to be used in simple link tests -lt_simple_link_test_code='public class conftest { public static void main(String argv) {}; }\n' +lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }\n' # ltmain only uses $CC for tagged configurations so make sure $CC is set. @@ -15858,15 +16318,41 @@ compiler=$CC +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +printf "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$rm conftest* + +ac_outfile=conftest.$ac_objext +printf "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$rm conftest* + + # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${GCJ-"gcj"} compiler=$CC compiler_GCJ=$CC +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + # GCJ did not exist at the time GCC didn't implicitly link libc in. archive_cmds_need_lc_GCJ=no +old_archive_cmds_GCJ=$old_archive_cmds + lt_prog_compiler_no_builtin_flag_GCJ= @@ -15889,18 +16375,20 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:15895: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16381: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:15899: \$? = $ac_status" >&5 + echo "$as_me:16385: \$? = $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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi @@ -15977,7 +16465,7 @@ hpux*) # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -16003,6 +16491,16 @@ lt_prog_compiler_static_GCJ='-bnso -bI:/lib/syscalls.exp' fi ;; + darwin*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + case $cc_basename in + xlc*) + lt_prog_compiler_pic_GCJ='-qnocommon' + lt_prog_compiler_wl_GCJ='-Wl,' + ;; + esac + ;; mingw* | pw32* | os2*) # This hack is so that the source file can tell whether it is being @@ -16014,7 +16512,7 @@ lt_prog_compiler_wl_GCJ='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) # +Z the default ;; @@ -16038,12 +16536,19 @@ ;; linux*) - case $CC in + case $cc_basename in icc* | ecc*) lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-static' ;; + pgcc* | pgf77* | pgf90* | pgf95*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl_GCJ='-Wl,' + lt_prog_compiler_pic_GCJ='-fpic' + lt_prog_compiler_static_GCJ='-Bstatic' + ;; ccc*) lt_prog_compiler_wl_GCJ='-Wl,' # All Alpha code is PIC. @@ -16064,9 +16569,14 @@ ;; solaris*) - lt_prog_compiler_wl_GCJ='-Wl,' lt_prog_compiler_pic_GCJ='-KPIC' lt_prog_compiler_static_GCJ='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + lt_prog_compiler_wl_GCJ='-Qoption ld ';; + *) + lt_prog_compiler_wl_GCJ='-Wl,';; + esac ;; sunos4*) @@ -16088,6 +16598,11 @@ fi ;; + unicos*) + lt_prog_compiler_wl_GCJ='-Wl,' + lt_prog_compiler_can_build_shared_GCJ=no + ;; + uts4*) lt_prog_compiler_pic_GCJ='-pic' lt_prog_compiler_static_GCJ='-Bstatic' @@ -16122,18 +16637,20 @@ # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16128: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16643: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 - echo "$as_me:16132: \$? = $ac_status" >&5 + echo "$as_me:16647: \$? = $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 - if test ! -s conftest.err; then + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp + $SED '/^$/d' conftest.err >conftest.er2 + if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then lt_prog_compiler_pic_works_GCJ=yes fi fi @@ -16154,7 +16671,7 @@ fi fi -case "$host_os" in +case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_GCJ= @@ -16182,23 +16699,25 @@ # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` - (eval echo "\"\$as_me:16188: $lt_compile\"" >&5) + (eval echo "\"\$as_me:16705: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 - echo "$as_me:16192: \$? = $ac_status" >&5 + echo "$as_me:16709: \$? = $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 # So say no if there are warnings - if test ! -s out/conftest.err; then + $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp + $SED '/^$/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_GCJ=yes fi fi - chmod u+w . + chmod u+w . 2>&5 $rm conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation @@ -16274,6 +16793,16 @@ # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. extract_expsyms_cmds= + # Just being paranoid about ensuring that cc_basename is set. + for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` case $host_os in cygwin* | mingw* | pw32*) @@ -16294,6 +16823,27 @@ # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' + export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + whole_archive_flag_spec_GCJ= + fi + supports_anon_versioning=no + case `$LD -v 2>/dev/null` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + # See if GNU ld supports shared libraries. case $host_os in aix3* | aix4* | aix5*) @@ -16344,7 +16894,7 @@ allow_undefined_flag_GCJ=unsupported always_export_symbols_GCJ=no enable_shared_with_static_runtimes_GCJ=yes - export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' + export_symbols_cmds_GCJ='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS] /s/.* \([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW] /s/.* //'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' @@ -16358,7 +16908,39 @@ fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' else - ld_shlibs=no + ld_shlibs_GCJ=no + fi + ;; + + linux*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + tmp_addflag= + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers + whole_archive_flag_spec_GCJ='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + esac + archive_cmds_GCJ='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test $supports_anon_versioning = yes; then + archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + $echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + link_all_deplibs_GCJ=no + else + ld_shlibs_GCJ=no fi ;; @@ -16400,32 +16982,6 @@ hardcode_shlibpath_var_GCJ=no ;; - linux*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - archive_cmds_GCJ="$tmp_archive_cmds" - supports_anon_versioning=no - case `$LD -v 2>/dev/null` in - *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 - *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... - *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... - *\ 2.11.*) ;; # other 2.11 versions - *) supports_anon_versioning=yes ;; - esac - if test $supports_anon_versioning = yes; then - archive_expsym_cmds_GCJ='$echo "{ global:" > $output_objdir/$libname.ver~ -cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ -$echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' - else - archive_expsym_cmds_GCJ="$tmp_archive_cmds" - fi - link_all_deplibs_GCJ=no - else - ld_shlibs_GCJ=no - fi - ;; - *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' @@ -16436,16 +16992,11 @@ ;; esac - if test "$ld_shlibs_GCJ" = yes; then - runpath_var=LD_RUN_PATH - hardcode_libdir_flag_spec_GCJ='${wl}--rpath ${wl}$libdir' - export_dynamic_flag_spec_GCJ='${wl}--export-dynamic' - # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then - whole_archive_flag_spec_GCJ="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' - else - whole_archive_flag_spec_GCJ= - fi + if test "$ld_shlibs_GCJ" = no; then + runpath_var= + hardcode_libdir_flag_spec_GCJ= + export_dynamic_flag_spec_GCJ= + whole_archive_flag_spec_GCJ= fi else # PORTME fill in a description of your system's linker (not GNU ld) @@ -16509,7 +17060,7 @@ link_all_deplibs_GCJ=yes if test "$GCC" = yes; then - case $host_os in aix4.012|aix4.012.*) + case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` @@ -16530,6 +17081,9 @@ fi esac shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi else # not using gcc if test "$host_cpu" = ia64; then @@ -16674,7 +17228,7 @@ # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_GCJ=' ' archive_cmds_need_lc_GCJ=yes - # This is similar to how AIX traditionally builds it's shared libraries. + # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds_GCJ="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi @@ -16688,7 +17242,7 @@ ld_shlibs_GCJ=no ;; - bsdi4*) + bsdi[45]*) export_dynamic_flag_spec_GCJ=-rdynamic ;; @@ -16709,57 +17263,57 @@ old_archive_From_new_cmds_GCJ='true' # FIXME: Should let the user specify the lib program. old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs' - fix_srcfile_path='`cygpath -w "$srcfile"`' + fix_srcfile_path_GCJ='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes_GCJ=yes ;; darwin* | rhapsody*) - if test "$GXX" = yes ; then - archive_cmds_need_lc_GCJ=no - case "$host_os" in - rhapsody* | darwin1.[012]) - allow_undefined_flag_GCJ='-undefined suppress' - ;; - *) # Darwin 1.3 on - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then - allow_undefined_flag_GCJ='-flat_namespace -undefined suppress' - else - case ${MACOSX_DEPLOYMENT_TARGET} in - 10.[012]) - allow_undefined_flag_GCJ='-flat_namespace -undefined suppress' - ;; - 10.*) - allow_undefined_flag_GCJ='-undefined dynamic_lookup' - ;; - esac - fi - ;; + case $host_os in + rhapsody* | darwin1.[012]) + allow_undefined_flag_GCJ='${wl}-undefined ${wl}suppress' + ;; + *) # Darwin 1.3 on + if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then + allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + else + case ${MACOSX_DEPLOYMENT_TARGET} in + 10.[012]) + allow_undefined_flag_GCJ='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + ;; + 10.*) + allow_undefined_flag_GCJ='${wl}-undefined ${wl}dynamic_lookup' + ;; + esac + fi + ;; esac - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_cmds_GCJ='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - archive_cmds_GCJ='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - module_cmds_GCJ='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + archive_cmds_need_lc_GCJ=no hardcode_direct_GCJ=no hardcode_automatic_GCJ=yes hardcode_shlibpath_var_GCJ=unsupported - whole_archive_flag_spec_GCJ='-all_load $convenience' + whole_archive_flag_spec_GCJ='' link_all_deplibs_GCJ=yes + if test "$GCC" = yes ; then + output_verbose_link_cmd='echo' + archive_cmds_GCJ='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' + module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' else - ld_shlibs_GCJ=no + case $cc_basename in + xlc*) + output_verbose_link_cmd='echo' + archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' + module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' + # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds + archive_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + module_expsym_cmds_GCJ='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' + ;; + *) + ld_shlibs_GCJ=no + ;; + esac fi ;; @@ -16793,7 +17347,7 @@ ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. - freebsd* | kfreebsd*-gnu) + freebsd* | kfreebsd*-gnu | dragonfly*) archive_cmds_GCJ='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec_GCJ='-R$libdir' hardcode_direct_GCJ=yes @@ -16818,7 +17372,7 @@ hpux10* | hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) archive_cmds_GCJ='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; @@ -16827,7 +17381,7 @@ ;; esac else - case "$host_cpu" in + case $host_cpu in hppa*64*|ia64*) archive_cmds_GCJ='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' ;; @@ -16837,7 +17391,7 @@ esac fi if test "$with_gnu_ld" = no; then - case "$host_cpu" in + case $host_cpu in hppa*64*) hardcode_libdir_flag_spec_GCJ='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld_GCJ='+b $libdir' @@ -16904,6 +17458,7 @@ hardcode_shlibpath_var_GCJ=no if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec_GCJ='${wl}-rpath,$libdir' export_dynamic_flag_spec_GCJ='${wl}-E' else @@ -16949,7 +17504,7 @@ allow_undefined_flag_GCJ=' -expect_unresolved \*' archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' + $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec_GCJ='-rpath $libdir' @@ -16968,10 +17523,12 @@ solaris*) no_undefined_flag_GCJ=' -z text' if test "$GCC" = yes; then + wlarc='${wl}' archive_cmds_GCJ='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' else + wlarc='' archive_cmds_GCJ='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds_GCJ='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' @@ -16980,8 +17537,18 @@ hardcode_shlibpath_var_GCJ=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; - *) # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' ;; + *) + # The compiler driver will combine linker options so we + # cannot just pass the convience library names through + # without $wl, iff we do not link with $LD. + # Luckily, gcc supports the same syntax we need for Sun Studio. + # Supported since Solaris 2.6 (maybe 2.5.1?) + case $wlarc in + '') + whole_archive_flag_spec_GCJ='-z allextract$convenience -z defaultextract' ;; + *) + whole_archive_flag_spec_GCJ='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; + esac ;; esac link_all_deplibs_GCJ=yes ;; @@ -17255,7 +17822,7 @@ shlibpath_var=LIBRARY_PATH ;; -bsdi4*) +bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' @@ -17283,7 +17850,8 @@ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname' + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $rm \$dlpath' @@ -17313,7 +17881,7 @@ ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; @@ -17336,7 +17904,7 @@ soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH - shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)' + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. if test "$GCC" = yes; then sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` @@ -17371,8 +17939,17 @@ dynamic_linker='GNU ld.so' ;; -freebsd*) - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[123]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) @@ -17390,7 +17967,7 @@ freebsd2*) shlibpath_overrides_runpath=yes ;; - freebsd3.01* | freebsdelf3.01*) + freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; @@ -17417,7 +17994,7 @@ version_type=sunos need_lib_prefix=no need_version=no - case "$host_cpu" in + case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes @@ -17516,7 +18093,7 @@ # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then - lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '` + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi @@ -17591,7 +18168,11 @@ openbsd*) version_type=sunos need_lib_prefix=no - need_version=yes + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH @@ -17713,8 +18294,8 @@ echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action_GCJ= if test -n "$hardcode_libdir_flag_spec_GCJ" || \ - test -n "$runpath_var GCJ" || \ - test "X$hardcode_automatic_GCJ"="Xyes" ; then + test -n "$runpath_var_GCJ" || \ + test "X$hardcode_automatic_GCJ" = "Xyes" ; then # We can hardcode non-existant directories. if test "$hardcode_direct_GCJ" != no && @@ -18373,7 +18954,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; @@ -18471,7 +19052,7 @@ lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <&5 (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then - (./conftest; exit; ) 2>/dev/null + (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; @@ -18689,6 +19270,12 @@ # The host system. host_alias=$host_alias host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo @@ -18765,7 +19352,7 @@ # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_GCJ -# Must we lock files when doing compilation ? +# Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? @@ -19013,11 +19600,35 @@ compiler=$CC +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +printf "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$rm conftest* + +ac_outfile=conftest.$ac_objext +printf "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$rm conftest* + + # Allow CC to be a program name with arguments. lt_save_CC="$CC" CC=${RC-"windres"} compiler=$CC compiler_RC=$CC +for cc_temp in $compiler""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` + lt_cv_prog_compiler_c_o_RC=yes # The else clause should only fire when bootstrapping the @@ -19134,6 +19745,12 @@ # The host system. host_alias=$host_alias host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os # An echo program that does not interpret backslashes. echo=$lt_echo @@ -19210,7 +19827,7 @@ # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_RC -# Must we lock files when doing compilation ? +# Must we lock files when doing compilation? need_locks=$lt_need_locks # Do we need the lib prefix for modules? @@ -19488,9 +20105,9 @@ # By default we simply use the C compiler to build assembly code. -: ${CCAS='$(CC)'} -# Set ASFLAGS if not already set. -: ${CCASFLAGS='$(CFLAGS)'} +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + @@ -19781,14 +20398,13 @@ # Generic stuff ############### - - echo "$as_me:$LINENO: checking for strerror in -lcposix" >&5 -echo $ECHO_N "checking for strerror in -lcposix... $ECHO_C" >&6 -if test "${ac_cv_lib_cposix_strerror+set}" = set; then +echo "$as_me:$LINENO: checking for library containing strerror" >&5 +echo $ECHO_N "checking for library containing strerror... $ECHO_C" >&6 +if test "${ac_cv_search_strerror+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else - ac_check_lib_save_LIBS=$LIBS -LIBS="-lcposix $LIBS" + ac_func_search_save_LIBS=$LIBS +ac_cv_search_strerror=no cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF @@ -19832,92 +20448,757 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - ac_cv_lib_cposix_strerror=yes + ac_cv_search_strerror="none required" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -ac_cv_lib_cposix_strerror=no fi rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_cposix_strerror" >&5 -echo "${ECHO_T}$ac_cv_lib_cposix_strerror" >&6 -if test $ac_cv_lib_cposix_strerror = yes; then - LIBS="$LIBS -lcposix" -fi - - - - - - -echo "$as_me:$LINENO: checking for ${CC-cc} option to accept ANSI C" >&5 -echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 -if test "${am_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - am_cv_prog_cc_stdc=no -ac_save_CC="$CC" -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - cat >conftest.$ac_ext <<_ACEOF +if test "$ac_cv_search_strerror" = no; then + for ac_lib in cposix; do + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; +/* Override any gcc2 internal prototype to avoid an error. */ +#ifdef __cplusplus +extern "C" +#endif +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char strerror (); int main () { - -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - +strerror (); ; return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 + (eval $ac_link) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_search_strerror="-l$ac_lib" +break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + done +fi +LIBS=$ac_func_search_save_LIBS +fi +echo "$as_me:$LINENO: result: $ac_cv_search_strerror" >&5 +echo "${ECHO_T}$ac_cv_search_strerror" >&6 +if test "$ac_cv_search_strerror" != no; then + test "$ac_cv_search_strerror" = "none required" || LIBS="$ac_cv_search_strerror $LIBS" + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; 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_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +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_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; 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_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +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_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; 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_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +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_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; 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_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +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_prog_ac_ct_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + CC=$ac_ct_CC +else + CC="$ac_cv_prog_CC" +fi + +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; 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_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +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 + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; 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_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +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_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; 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_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +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_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6 +else + echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6 +fi + + test -n "$ac_ct_CC" && break +done + + CC=$ac_ct_CC +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO:" \ + "checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 + (eval $ac_compiler --version &5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 + (eval $ac_compiler -v &5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 + (eval $ac_compiler -V &5) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 +if test "${ac_cv_c_compiler_gnu+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_compiler_gnu=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +CFLAGS="-g" +echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +ac_cv_prog_cc_g=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +fi +echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 +echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 +if test "${ac_cv_prog_cc_stdc+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_stdc=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std1 is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std1. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +# Don't try gcc -ansi; that turns off useful extensions and +# breaks some systems' header files. +# AIX -qlanglvl=ansi +# Ultrix and OSF/1 -std1 +# HP-UX 10.20 and later -Ae +# HP-UX older versions -Aa -D_HPUX_SOURCE +# SVR4 -Xc -D__EXTENSIONS__ +for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_prog_cc_stdc=$ac_arg +break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +fi +rm -f conftest.err conftest.$ac_objext +done +rm -f conftest.$ac_ext conftest.$ac_objext +CC=$ac_save_CC + +fi + +case "x$ac_cv_prog_cc_stdc" in + x|xno) + echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6 ;; + *) + echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 + CC="$CC $ac_cv_prog_cc_stdc" ;; +esac + +# Some people use a C++ compiler to compile C. Since we use `exit', +# in C++ we need to declare it. In case someone uses the same compiler +# for both compiling C and C++ we need to have the C++ compiler decide +# the declaration of exit, since it's the most demanding environment. +cat >conftest.$ac_ext <<_ACEOF +#ifndef __cplusplus + choke me +#endif +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + for ac_declaration in \ + '' \ + 'extern "C" void std::exit (int) throw (); using std::exit;' \ + 'extern "C" void std::exit (int); using std::exit;' \ + 'extern "C" void exit (int) throw ();' \ + 'extern "C" void exit (int);' \ + 'void exit (int);' +do + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +#include +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +continue +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_declaration +int +main () +{ +exit (42); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err @@ -19937,7 +21218,7 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - am_cv_prog_cc_stdc="$ac_arg"; break + break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 @@ -19945,21 +21226,136 @@ fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done -CC="$ac_save_CC" +rm -f conftest* +if test -n "$ac_declaration"; then + echo '#ifdef __cplusplus' >>confdefs.h + echo $ac_declaration >>confdefs.h + echo '#endif' >>confdefs.h +fi + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -z "$am_cv_prog_cc_stdc"; then - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 +depcc="$CC" am_compiler_list= + +echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir else - echo "$as_me:$LINENO: result: $am_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$am_cv_prog_cc_stdc" >&6 + am_cv_CC_dependencies_compiler_type=none fi -case "x$am_cv_prog_cc_stdc" in - x|xno) ;; - *) CC="$CC $am_cv_prog_cc_stdc" ;; -esac + +fi +echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + + +if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + +am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or @@ -22115,7 +23511,7 @@ # Internationalisation ###################### -ALL_LINGUAS="bg ca cs da de el en_CA en_GB es eu fi fr ga gl he hu hr id it ja ko lt ms nb nl no pa pl pt pt_BR ro ru sk sr sr@Latn sv tr uk vi yi zh_CN zh_TW" +ALL_LINGUAS="bg ca cs da de el en_CA en_GB es eu fi fr ga gl he hu hr id it ja ko lt mk ms nb nl no pa pl pt pt_BR ro ru sk sr sr@Latn sv tr uk vi yi zh_CN zh_TW" @@ -22415,32 +23811,6 @@ -if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then - # Keeping the `.' argument allows $(mkdir_p) to be used without - # argument. Indeed, we sometimes output rules like - # $(mkdir_p) $(somedir) - # where $(somedir) is conditionally defined. - # (`test -n '$(somedir)' && $(mkdir_p) $(somedir)' is a more - # expensive solution, as it forces Make to start a sub-shell.) - mkdir_p='mkdir -p -- .' -else - # On NextStep and OpenStep, the `mkdir' command does not - # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already - # exists. - for d in ./-p ./--version; - do - test -d $d && rmdir $d - done - # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. - if test -f "$ac_aux_dir/mkinstalldirs"; then - mkdir_p='$(mkinstalldirs)' - else - mkdir_p='$(install_sh) -d' - fi -fi - - # Manually sed perl in so people don't have to put the intltool scripts in AC_OUTPUT. @@ -24438,52 +25808,37 @@ 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gmodule-2.0 gobject-2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for GMODULE" >&5 +echo $ECHO_N "checking for GMODULE... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmodule-2.0 gobject-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "gmodule-2.0 gobject-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0 gobject-2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_GMODULE_CFLAGS=`$PKG_CONFIG --cflags "gmodule-2.0 gobject-2.0" 2>/dev/null` else - pkg_failed=untried -fi + pkg_failed=yes 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gmodule-2.0 gobject-2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "gmodule-2.0 gobject-2.0" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gmodule-2.0 gobject-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "gmodule-2.0 gobject-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0 gobject-2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_GMODULE_LIBS=`$PKG_CONFIG --libs "gmodule-2.0 gobject-2.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried 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"` @@ -24530,6 +25885,8 @@ else GMODULE_CFLAGS=$pkg_cv_GMODULE_CFLAGS GMODULE_LIBS=$pkg_cv_GMODULE_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 : fi @@ -24757,7 +26114,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include +#include _ACEOF if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 @@ -24784,7 +26141,7 @@ sed 's/^/| /' conftest.$ac_ext >&5 for ac_dir in $ac_x_header_dirs; do - if test -r "$ac_dir/X11/Intrinsic.h"; then + if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi @@ -24798,18 +26155,18 @@ # See if we find them without any special options. # Don't add to $LIBS permanently. ac_save_LIBS=$LIBS - LIBS="-lXt $LIBS" + LIBS="-lX11 $LIBS" cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -#include +#include int main () { -XtMalloc (0) +XrmInitialize () ; return 0; } @@ -24847,7 +26204,7 @@ do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl; do - if test -r $ac_dir/libXt.$ac_extension; then + if test -r $ac_dir/libX11.$ac_extension; then ac_x_libraries=$ac_dir break 2 fi @@ -26349,52 +27706,37 @@ 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gdk-pixbuf-2.0 >= 2.4.4\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for GDK_PIXBUF" >&5 +echo $ECHO_N "checking for GDK_PIXBUF... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0 >= 2.4.4\"") >&5 + ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0 >= 2.4.4") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_GDK_PIXBUF_CFLAGS=`$PKG_CONFIG --cflags "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi -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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"gdk-pixbuf-2.0 >= 2.4.4\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "gdk-pixbuf-2.0 >= 2.4.4" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"gdk-pixbuf-2.0 >= 2.4.4\"") >&5 + ($PKG_CONFIG --exists --print-errors "gdk-pixbuf-2.0 >= 2.4.4") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_GDK_PIXBUF_LIBS=`$PKG_CONFIG --libs "gdk-pixbuf-2.0 >= 2.4.4" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_GDK_PIXBUF_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_GDK_PIXBUF_LIBS" >&6 if test $pkg_failed = yes; then GDK_PIXBUF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gdk-pixbuf-2.0 >= 2.4.4"` @@ -26441,6 +27783,8 @@ else GDK_PIXBUF_CFLAGS=$pkg_cv_GDK_PIXBUF_CFLAGS GDK_PIXBUF_LIBS=$pkg_cv_GDK_PIXBUF_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 : fi @@ -26494,52 +27838,37 @@ 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libart-2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "libart-2.0" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for LIBART" >&5 +echo $ECHO_N "checking for LIBART... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libart-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libart-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_LIBART_CFLAGS=`$PKG_CONFIG --cflags "libart-2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_LIBART_CFLAGS=`$PKG_CONFIG --cflags "libart-2.0" 2>/dev/null` else - pkg_failed=untried -fi + pkg_failed=yes 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libart-2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "libart-2.0" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libart-2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libart-2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_LIBART_LIBS=`$PKG_CONFIG --libs "libart-2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_LIBART_LIBS=`$PKG_CONFIG --libs "libart-2.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_LIBART_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_LIBART_LIBS" >&6 if test $pkg_failed = yes; then LIBART_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libart-2.0"` @@ -26586,6 +27915,8 @@ else LIBART_CFLAGS=$pkg_cv_LIBART_CFLAGS LIBART_LIBS=$pkg_cv_LIBART_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 : fi @@ -26593,52 +27924,37 @@ 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"fontconfig >= 2.2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "fontconfig >= 2.2.0" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for FONTCONFIG" >&5 +echo $ECHO_N "checking for FONTCONFIG... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"fontconfig >= 2.2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "fontconfig >= 2.2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags "fontconfig >= 2.2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_FONTCONFIG_CFLAGS=`$PKG_CONFIG --cflags "fontconfig >= 2.2.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi -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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"fontconfig >= 2.2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "fontconfig >= 2.2.0" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"fontconfig >= 2.2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "fontconfig >= 2.2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_FONTCONFIG_LIBS=`$PKG_CONFIG --libs "fontconfig >= 2.2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_FONTCONFIG_LIBS=`$PKG_CONFIG --libs "fontconfig >= 2.2.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_FONTCONFIG_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_FONTCONFIG_LIBS" >&6 if test $pkg_failed = yes; then FONTCONFIG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "fontconfig >= 2.2.0"` @@ -26685,57 +28001,44 @@ else FONTCONFIG_CFLAGS=$pkg_cv_FONTCONFIG_CFLAGS FONTCONFIG_LIBS=$pkg_cv_FONTCONFIG_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 : fi 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pangoft2 >= 1.4.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "pangoft2 >= 1.4.0" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for PANGOFT2" >&5 +echo $ECHO_N "checking for PANGOFT2... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"pangoft2 >= 1.4.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "pangoft2 >= 1.4.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_PANGOFT2_CFLAGS=`$PKG_CONFIG --cflags "pangoft2 >= 1.4.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_PANGOFT2_CFLAGS=`$PKG_CONFIG --cflags "pangoft2 >= 1.4.0" 2>/dev/null` else - pkg_failed=untried -fi + pkg_failed=yes 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pangoft2 >= 1.4.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "pangoft2 >= 1.4.0" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"pangoft2 >= 1.4.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "pangoft2 >= 1.4.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_PANGOFT2_LIBS=`$PKG_CONFIG --libs "pangoft2 >= 1.4.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_PANGOFT2_LIBS=`$PKG_CONFIG --libs "pangoft2 >= 1.4.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_PANGOFT2_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_PANGOFT2_LIBS" >&6 if test $pkg_failed = yes; then PANGOFT2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pangoft2 >= 1.4.0"` @@ -26760,6 +28063,8 @@ else PANGOFT2_CFLAGS=$pkg_cv_PANGOFT2_CFLAGS PANGOFT2_LIBS=$pkg_cv_PANGOFT2_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 : fi @@ -27915,9 +29220,74 @@ if test "x$enable_mmx" = xyes; then + MMX_EXTRA_CFLAGS= + for flag in '-mmmx'; do + if test -z "$MMX_EXTRA_CFLAGS"; then + MMX_EXTRA_CFLAGS_save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $flag" + echo "$as_me:$LINENO: checking whether $CC understands $flag" >&5 +echo $ECHO_N "checking whether $CC understands $flag... $ECHO_C" >&6 + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + MMX_EXTRA_CFLAGS_works=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +MMX_EXTRA_CFLAGS_works=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + echo "$as_me:$LINENO: result: $MMX_EXTRA_CFLAGS_works" >&5 +echo "${ECHO_T}$MMX_EXTRA_CFLAGS_works" >&6 + CFLAGS="$MMX_EXTRA_CFLAGS_save_CFLAGS" + if test "x$MMX_EXTRA_CFLAGS_works" = "xyes"; then + MMX_EXTRA_CFLAGS="$flag" + fi + fi + done + + SSE_EXTRA_CFLAGS= + echo "$as_me:$LINENO: checking whether we can compile MMX code" >&5 echo $ECHO_N "checking whether we can compile MMX code... $ECHO_C" >&6 + mmx_save_CFLAGS="$CFLAGS" + CFLAGS="$mmx_save_CFLAGS $MMX_EXTRA_CFLAGS" + cat >conftest.$ac_ext <<_ACEOF asm ("movq 0, %mm0"); _ACEOF @@ -27952,9 +29322,73 @@ if test "x$enable_sse" = xyes; then + sse_flag= + for flag in '-msse'; do + if test -z "$sse_flag"; then + sse_flag_save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $flag" + echo "$as_me:$LINENO: checking whether $CC understands $flag" >&5 +echo $ECHO_N "checking whether $CC understands $flag... $ECHO_C" >&6 + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; } && + { ac_try='test -s conftest.$ac_objext' + { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + sse_flag_works=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +sse_flag_works=no +fi +rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + echo "$as_me:$LINENO: result: $sse_flag_works" >&5 +echo "${ECHO_T}$sse_flag_works" >&6 + CFLAGS="$sse_flag_save_CFLAGS" + if test "x$sse_flag_works" = "xyes"; then + sse_flag="$flag" + fi + fi + done + + SSE_EXTRA_CFLAGS="$MMX_EXTRA_CFLAGS $sse_flag" + echo "$as_me:$LINENO: checking whether we can compile SSE code" >&5 echo $ECHO_N "checking whether we can compile SSE code... $ECHO_C" >&6 + CFLAGS="$CFLAGS $sse_flag" + cat >conftest.$ac_ext <<_ACEOF asm ("movntps %xmm0, 0"); _ACEOF @@ -28015,6 +29449,10 @@ fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext + CFLAGS="$mmx_save_CFLAGS" + + + fi @@ -29308,7 +30746,7 @@ cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF - GIMP_REMOTE='gimp-remote-2.2'; + GIMP_REMOTE='gimp-remote-2.2$(EXEEXT)'; have_libxmu=yes LIBXMU="$X_LIBS $X_PRE_LIBS -lX11 -lXmu -lXt" else @@ -31009,52 +32447,37 @@ if test x$with_libexif != xno && test -z "$LIBEXIF" && test -n "$LIBJPEG"; 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libexif\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "libexif" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for EXIF" >&5 +echo $ECHO_N "checking for EXIF... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libexif\"") >&5 + ($PKG_CONFIG --exists --print-errors "libexif") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_EXIF_CFLAGS=`$PKG_CONFIG --cflags "libexif" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_EXIF_CFLAGS=`$PKG_CONFIG --cflags "libexif" 2>/dev/null` else - pkg_failed=untried -fi + pkg_failed=yes 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libexif\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "libexif" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libexif\"") >&5 + ($PKG_CONFIG --exists --print-errors "libexif") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_EXIF_LIBS=`$PKG_CONFIG --libs "libexif" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_EXIF_LIBS=`$PKG_CONFIG --libs "libexif" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_EXIF_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_EXIF_LIBS" >&6 if test $pkg_failed = yes; then EXIF_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libexif"` @@ -31077,6 +32500,8 @@ else EXIF_CFLAGS=$pkg_cv_EXIF_CFLAGS EXIF_LIBS=$pkg_cv_EXIF_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\_ACEOF #define HAVE_EXIF 1 @@ -31557,53 +32982,47 @@ #################### +# Check whether --with-gtkhtml2 or --without-gtkhtml2 was given. +if test "${with_gtkhtml2+set}" = set; then + withval="$with_gtkhtml2" + +fi; + +have_gtkhtml2=no +if test "x$with_gtkhtml2" != xno; 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libgtkhtml-2.0 >= 2.0.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for GTKHTML2" >&5 +echo $ECHO_N "checking for GTKHTML2... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgtkhtml-2.0 >= 2.0.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libgtkhtml-2.0 >= 2.0.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GTKHTML2_CFLAGS=`$PKG_CONFIG --cflags "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_GTKHTML2_CFLAGS=`$PKG_CONFIG --cflags "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi -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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"libgtkhtml-2.0 >= 2.0.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "libgtkhtml-2.0 >= 2.0.0" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libgtkhtml-2.0 >= 2.0.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "libgtkhtml-2.0 >= 2.0.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_GTKHTML2_LIBS=`$PKG_CONFIG --libs "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_GTKHTML2_LIBS=`$PKG_CONFIG --libs "libgtkhtml-2.0 >= 2.0.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_GTKHTML2_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_GTKHTML2_LIBS" >&6 if test $pkg_failed = yes; then GTKHTML2_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libgtkhtml-2.0 >= 2.0.0"` @@ -31618,8 +33037,16 @@ else GTKHTML2_CFLAGS=$pkg_cv_GTKHTML2_CFLAGS GTKHTML2_LIBS=$pkg_cv_GTKHTML2_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 have_gtkhtml2=yes fi +else + { echo "$as_me:$LINENO: WARNING: *** Help browser plug-in will not be built (GtkHtml2 support disabled) ***" >&5 +echo "$as_me: WARNING: *** Help browser plug-in will not be built (GtkHtml2 support disabled) ***" >&2;} +fi + + @@ -31639,53 +33066,46 @@ ################### +# Check whether --with-librsvg or --without-librsvg was given. +if test "${with_librsvg+set}" = set; then + withval="$with_librsvg" + +fi; + +if test "x$with_librsvg" != xno; 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"librsvg-2.0 >= 2.2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for SVG" >&5 +echo $ECHO_N "checking for SVG... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"librsvg-2.0 >= 2.2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "librsvg-2.0 >= 2.2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_SVG_CFLAGS=`$PKG_CONFIG --cflags "librsvg-2.0 >= 2.2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_SVG_CFLAGS=`$PKG_CONFIG --cflags "librsvg-2.0 >= 2.2.0" 2>/dev/null` else - pkg_failed=untried -fi + pkg_failed=yes 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"librsvg-2.0 >= 2.2.0\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "librsvg-2.0 >= 2.2.0" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"librsvg-2.0 >= 2.2.0\"") >&5 + ($PKG_CONFIG --exists --print-errors "librsvg-2.0 >= 2.2.0") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_SVG_LIBS=`$PKG_CONFIG --libs "librsvg-2.0 >= 2.2.0" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_SVG_LIBS=`$PKG_CONFIG --libs "librsvg-2.0 >= 2.2.0" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_SVG_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_SVG_LIBS" >&6 if test $pkg_failed = yes; then SVG_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "librsvg-2.0 >= 2.2.0"` @@ -31700,14 +33120,21 @@ else SVG_CFLAGS=$pkg_cv_SVG_CFLAGS SVG_LIBS=$pkg_cv_SVG_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 SVG='svg$(EXEEXT)' - LIBSVG=$SVG_LIBS + LIBSVG=$SVG_LIBS +fi +else + { echo "$as_me:$LINENO: WARNING: *** SVG import plug-in will not be built (librsvg support disabled) ***" >&5 +echo "$as_me: WARNING: *** SVG import plug-in will not be built (librsvg support disabled) ***" >&2;} fi + ###################### # Check for gimp-print ###################### @@ -32145,8 +33572,16 @@ # Check for lcms ################ + +# Check whether --with-lcms or --without-lcms was given. +if test "${with_lcms+set}" = set; then + withval="$with_lcms" + +fi; + have_lcms=no -echo "$as_me:$LINENO: checking for cmsCreate_sRGBProfile in -llcms" >&5 +if test "x$with_lcms" != xno; then + echo "$as_me:$LINENO: checking for cmsCreate_sRGBProfile in -llcms" >&5 echo $ECHO_N "checking for cmsCreate_sRGBProfile in -llcms... $ECHO_C" >&6 if test "${ac_cv_lib_lcms_cmsCreate_sRGBProfile+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32211,7 +33646,7 @@ echo "${ECHO_T}$ac_cv_lib_lcms_cmsCreate_sRGBProfile" >&6 if test $ac_cv_lib_lcms_cmsCreate_sRGBProfile = yes; then - if test "${ac_cv_header_lcms_h+set}" = set; then + if test "${ac_cv_header_lcms_h+set}" = set; then echo "$as_me:$LINENO: checking for lcms.h" >&5 echo $ECHO_N "checking for lcms.h... $ECHO_C" >&6 if test "${ac_cv_header_lcms_h+set}" = set; then @@ -32351,7 +33786,7 @@ have_lcms=yes else - if test "${ac_cv_header_lcms_lcms_h+set}" = set; then + if test "${ac_cv_header_lcms_lcms_h+set}" = set; then echo "$as_me:$LINENO: checking for lcms/lcms.h" >&5 echo $ECHO_N "checking for lcms/lcms.h... $ECHO_C" >&6 if test "${ac_cv_header_lcms_lcms_h+set}" = set; then @@ -32504,12 +33939,15 @@ fi - -if test $have_lcms = yes; then - LCMS_LIBS="-llcms" + if test $have_lcms = yes; then + LCMS_LIBS="-llcms" + else + { echo "$as_me:$LINENO: WARNING: *** color proof module will not be built (lcms not found or unusable) ***" >&5 +echo "$as_me: WARNING: *** color proof module will not be built (lcms not found or unusable) ***" >&2;} + fi else - { echo "$as_me:$LINENO: WARNING: *** color proof module will not be built (lcms not found or unuseable) ***" >&5 -echo "$as_me: WARNING: *** color proof module will not be built (lcms not found or unuseable) ***" >&2;} + { echo "$as_me:$LINENO: WARNING: *** color proof module will not be built (lcms support disabled) ***" >&5 +echo "$as_me: WARNING: *** color proof module will not be built (lcms support disabled) ***" >&2;} fi @@ -33175,6 +34613,7 @@ { (exit 1); exit 1; }; } fi + am_display_PYTHON=$PYTHON else # Otherwise, try each interpreter until we find one that satisfies # VERSION. @@ -33184,13 +34623,9 @@ echo $ECHO_N "(cached) $ECHO_C" >&6 else - for am_cv_pathless_PYTHON in python python2 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 : ; do - if test "$am_cv_pathless_PYTHON" = : ; then - { { echo "$as_me:$LINENO: error: no suitable Python interpreter found" >&5 -echo "$as_me: error: no suitable Python interpreter found" >&2;} - { (exit 1); exit 1; }; } - fi - prog="import sys, string + for am_cv_pathless_PYTHON in python python2 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 none; do + test "$am_cv_pathless_PYTHON" = none && break + prog="import sys, string # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. minver = map(int, string.split('2.2', '.')) + [0, 0, 0] @@ -33205,12 +34640,15 @@ break fi - done + done fi echo "$as_me:$LINENO: result: $am_cv_pathless_PYTHON" >&5 echo "${ECHO_T}$am_cv_pathless_PYTHON" >&6 # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON. - # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args. + if test "$am_cv_pathless_PYTHON" = none; then + PYTHON=: + else + # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args. set dummy $am_cv_pathless_PYTHON; ac_word=$2 echo "$as_me:$LINENO: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 @@ -33249,10 +34687,17 @@ echo "${ECHO_T}no" >&6 fi + fi am_display_PYTHON=$am_cv_pathless_PYTHON fi + if test "$PYTHON" = :; then + { { echo "$as_me:$LINENO: error: no suitable Python interpreter found" >&5 +echo "$as_me: error: no suitable Python interpreter found" >&2;} + { (exit 1); exit 1; }; } + else + echo "$as_me:$LINENO: checking for $am_display_PYTHON version" >&5 echo $ECHO_N "checking for $am_display_PYTHON version... $ECHO_C" >&6 @@ -33322,6 +34767,10 @@ + fi + + + echo "$as_me:$LINENO: checking for headers required to compile python extensions" >&5 echo $ECHO_N "checking for headers required to compile python extensions... $ECHO_C" >&6 py_prefix=`$PYTHON -c "import sys; print sys.prefix"` @@ -33378,52 +34827,37 @@ 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pygtk-2.0 >= 1.99.15\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" >/dev/null 2>&1) 2>&5 +echo "$as_me:$LINENO: checking for PYGTK" >&5 +echo $ECHO_N "checking for PYGTK... $ECHO_C" >&6 + +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0 >= 1.99.15\"") >&5 + ($PKG_CONFIG --exists --print-errors "pygtk-2.0 >= 1.99.15") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 1.99.15" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_PYGTK_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 1.99.15" 2>/dev/null` else - pkg_failed=untried -fi + pkg_failed=yes 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 - 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 { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists \"pygtk-2.0 >= 1.99.15\" >/dev/null 2>&1") >&5 - ($PKG_CONFIG --exists "pygtk-2.0 >= 1.99.15" >/dev/null 2>&1) 2>&5 + pkg_failed=untried +fi +if test -n "$PKG_CONFIG"; then + if test -n "$PKG_CONFIG" && \ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0 >= 1.99.15\"") >&5 + ($PKG_CONFIG --exists --print-errors "pygtk-2.0 >= 1.99.15") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then - pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 1.99.15" 2>/dev/null` - else - pkg_failed=yes - fi + pkg_cv_PYGTK_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 1.99.15" 2>/dev/null` else - pkg_failed=untried + pkg_failed=yes fi +else + pkg_failed=untried fi -echo "$as_me:$LINENO: result: $pkg_cv_PYGTK_LIBS" >&5 -echo "${ECHO_T}$pkg_cv_PYGTK_LIBS" >&6 if test $pkg_failed = yes; then PYGTK_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pygtk-2.0 >= 1.99.15"` @@ -33470,20 +34904,21 @@ else PYGTK_CFLAGS=$pkg_cv_PYGTK_CFLAGS PYGTK_LIBS=$pkg_cv_PYGTK_LIBS + echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6 : fi - PYGIMP_EXTRA_CFLAGS= - case " $CFLAGS " in - *[\ \ ]-fno-strict-aliasing[\ \ ]*) - ;; - *) - pygimp_save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -fno-strict-aliasing" - echo "$as_me:$LINENO: checking whether $CC understands -fno-strict-aliasing" >&5 -echo $ECHO_N "checking whether $CC understands -fno-strict-aliasing... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF + + PYGIMP_EXTRA_CFLAGS= + for flag in '-fno-strict-aliasing'; do + if test -z "$PYGIMP_EXTRA_CFLAGS"; then + PYGIMP_EXTRA_CFLAGS_save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $flag" + echo "$as_me:$LINENO: checking whether $CC understands $flag" >&5 +echo $ECHO_N "checking whether $CC understands $flag... $ECHO_C" >&6 + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext @@ -33519,22 +34954,23 @@ ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - pygimp_has_option=yes + PYGIMP_EXTRA_CFLAGS_works=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -pygimp_has_option=no +PYGIMP_EXTRA_CFLAGS_works=no fi rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - echo "$as_me:$LINENO: result: $pygimp_has_option" >&5 -echo "${ECHO_T}$pygimp_has_option" >&6 - CFLAGS="$pygimp_save_CFLAGS" - if test "x$pygimp_has_option" = "xyes"; then - PYGIMP_EXTRA_CFLAGS="-fno-strict-aliasing" + echo "$as_me:$LINENO: result: $PYGIMP_EXTRA_CFLAGS_works" >&5 +echo "${ECHO_T}$PYGIMP_EXTRA_CFLAGS_works" >&6 + CFLAGS="$PYGIMP_EXTRA_CFLAGS_save_CFLAGS" + if test "x$PYGIMP_EXTRA_CFLAGS_works" = "xyes"; then + PYGIMP_EXTRA_CFLAGS="$flag" + fi fi - ;; - esac + done + fi @@ -34198,13 +35634,18 @@ Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi - - mv -f po/POTFILES po/POTFILES.tmp - sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES + mv -f po/POTFILES po/POTFILES.tmp + sed -e '/[[]encoding.*]/d' -e 's/[[].*] *//' < po/POTFILES.tmp > po/POTFILES rm -f po/POTFILES.tmp - if test -z "${HAVE_GLIBC_REGEX_TRUE}" && test -z "${HAVE_GLIBC_REGEX_FALSE}"; then { { echo "$as_me:$LINENO: error: conditional \"HAVE_GLIBC_REGEX\" was never defined. Usually this means the macro was only invoked conditionally." >&5 @@ -34602,7 +36043,7 @@ } >&5 cat >&5 <<_CSEOF -This file was extended by GIMP $as_me 2.2.8, which was +This file was extended by GIMP $as_me 2.2.9, which was generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34665,7 +36106,7 @@ cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ -GIMP config.status 2.2.8 +GIMP config.status 2.2.9 configured by $0, generated by GNU Autoconf 2.59, with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" @@ -34773,8 +36214,8 @@ gimp_major_ver=2 gimp_minor_ver=2 - gimp_micro_ver=8 - gimp_ver=2.2.8 + gimp_micro_ver=9 + gimp_ver=2.2.9 gimp_api_ver=2.0 @@ -35020,14 +36461,17 @@ s,@AUTOMAKE@,$AUTOMAKE,;t t s,@AUTOHEADER@,$AUTOHEADER,;t t s,@MAKEINFO@,$MAKEINFO,;t t -s,@AMTAR@,$AMTAR,;t t s,@install_sh@,$install_sh,;t t s,@STRIP@,$STRIP,;t t s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t +s,@mkdir_p@,$mkdir_p,;t t s,@AWK@,$AWK,;t t s,@SET_MAKE@,$SET_MAKE,;t t s,@am__leading_dot@,$am__leading_dot,;t t +s,@AMTAR@,$AMTAR,;t t +s,@am__tar@,$am__tar,;t t +s,@am__untar@,$am__untar,;t t s,@GIMP_MAJOR_VERSION@,$GIMP_MAJOR_VERSION,;t t s,@GIMP_MINOR_VERSION@,$GIMP_MINOR_VERSION,;t t s,@GIMP_MICRO_VERSION@,$GIMP_MICRO_VERSION,;t t @@ -35154,7 +36598,6 @@ s,@INTLTOOL_MSGFMT@,$INTLTOOL_MSGFMT,;t t s,@INTLTOOL_MSGMERGE@,$INTLTOOL_MSGMERGE,;t t s,@INTLTOOL_XGETTEXT@,$INTLTOOL_XGETTEXT,;t t -s,@mkdir_p@,$mkdir_p,;t t s,@USE_NLS@,$USE_NLS,;t t s,@MSGFMT@,$MSGFMT,;t t s,@GMSGFMT@,$GMSGFMT,;t t @@ -35199,6 +36642,8 @@ s,@HAVE_FINITE@,$HAVE_FINITE,;t t s,@HAVE_ISFINITE@,$HAVE_ISFINITE,;t t s,@SOCKET_LIBS@,$SOCKET_LIBS,;t t +s,@MMX_EXTRA_CFLAGS@,$MMX_EXTRA_CFLAGS,;t t +s,@SSE_EXTRA_CFLAGS@,$SSE_EXTRA_CFLAGS,;t t s,@RT_LIBS@,$RT_LIBS,;t t s,@SYMPREFIX@,$SYMPREFIX,;t t s,@HAVE_GLIBC_REGEX_TRUE@,$HAVE_GLIBC_REGEX_TRUE,;t t @@ -35935,27 +37380,21 @@ else continue fi - grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue - # Extract the definition of DEP_FILES from the Makefile without - # running `make'. - DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"` + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n -e '/^U = / s///p' < "$mf"` - test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" - # We invoke sed twice because it is the simplest approach to - # changing $(DEPDIR) to its actual value in the expansion. - for file in `sed -n -e ' - /^DEP_FILES = .*\\\\$/ { - s/^DEP_FILES = // - :loop - s/\\\\$// - p - n - /\\\\$/ b loop - p - } - /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue diff -uraN gimp-2.2.8/configure.in gimp-2.2.9/configure.in --- gimp-2.2.8/configure.in 2005-05-13 18:01:31.000000000 +0200 +++ gimp-2.2.9/configure.in 2005-09-20 18:23:58.000000000 +0200 @@ -8,11 +8,11 @@ m4_define([gimp_major_version], [2]) m4_define([gimp_minor_version], [2]) -m4_define([gimp_micro_version], [8]) +m4_define([gimp_micro_version], [9]) 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], [8]) +m4_define([gimp_interface_age], [9]) m4_define([gimp_binary_age], [m4_eval(100 * gimp_minor_version + gimp_micro_version)]) @@ -373,7 +373,7 @@ dnl Note to translators: you MUST have .po files in all 4 directories: po, dnl po-libgimp, po-plug-ins, and po-script-fu before adding you language dnl code to ALL_LINGUAS -ALL_LINGUAS="bg ca cs da de el en_CA en_GB es eu fi fr ga gl he hu hr id it ja ko lt ms nb nl no pa pl pt pt_BR ro ru sk sr sr@Latn sv tr uk vi yi zh_CN zh_TW" +ALL_LINGUAS="bg ca cs da de el en_CA en_GB es eu fi fr ga gl he hu hr id it ja ko lt mk ms nb nl no pa pl pt pt_BR ro ru sk sr sr@Latn sv tr uk vi yi zh_CN zh_TW" AC_PROG_INTLTOOL AM_GLIB_GNU_GETTEXT @@ -573,18 +573,27 @@ enable_sse=$enable_mmx) if test "x$enable_mmx" = xyes; then + GIMP_DETECT_CFLAGS(MMX_EXTRA_CFLAGS, '-mmmx') + SSE_EXTRA_CFLAGS= AC_MSG_CHECKING(whether we can compile MMX code) + mmx_save_CFLAGS="$CFLAGS" + CFLAGS="$mmx_save_CFLAGS $MMX_EXTRA_CFLAGS" + AC_COMPILE_IFELSE([asm ("movq 0, %mm0");], AC_DEFINE(USE_MMX, 1, [Define to 1 if MMX assembly is available.]) AC_MSG_RESULT(yes) if test "x$enable_sse" = xyes; then + GIMP_DETECT_CFLAGS(sse_flag, '-msse') + SSE_EXTRA_CFLAGS="$MMX_EXTRA_CFLAGS $sse_flag" AC_MSG_CHECKING(whether we can compile SSE code) + CFLAGS="$CFLAGS $sse_flag" + AC_COMPILE_IFELSE([asm ("movntps %xmm0, 0");], AC_DEFINE(USE_SSE, 1, [Define to 1 if SSE assembly is available.]) AC_MSG_RESULT(yes) @@ -601,6 +610,10 @@ AC_MSG_WARN([The assembler does not support the MMX command set.]) ) + CFLAGS="$mmx_save_CFLAGS" + + AC_SUBST(MMX_EXTRA_CFLAGS) + AC_SUBST(SSE_EXTRA_CFLAGS) fi @@ -857,7 +870,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" AC_CHECK_LIB(Xmu, XmuClientWindow, [AC_CHECK_HEADERS(X11/Xmu/WinUtil.h, - GIMP_REMOTE='gimp-remote-gimp_app_version'; + GIMP_REMOTE='gimp-remote-gimp_app_version$(EXEEXT)'; have_libxmu=yes LIBXMU="$X_LIBS $X_PRE_LIBS -lX11 -lXmu -lXt", [AC_MSG_WARN(*** gimp-remote will not be built (XMU header file not found) ***)],[#include ])], @@ -1096,11 +1109,20 @@ # Check for gtkhtml2 #################### -PKG_CHECK_MODULES(GTKHTML2, libgtkhtml-2.0 >= gtkhtml2_required_version, - have_gtkhtml2=yes, - AC_MSG_WARN([*** Help browser plug-in will not be built (GtkHtml2 not found) ***])) +AC_ARG_WITH(gtkhtml2, [ --without-gtkhtml2 build without gtkhtml2 support]) + +have_gtkhtml2=no +if test "x$with_gtkhtml2" != xno; then + PKG_CHECK_MODULES(GTKHTML2, libgtkhtml-2.0 >= gtkhtml2_required_version, + have_gtkhtml2=yes, + AC_MSG_WARN([*** Help browser plug-in will not be built (GtkHtml2 not found) ***])) +else + AC_MSG_WARN([*** Help browser plug-in will not be built (GtkHtml2 support disabled) ***]) +fi + AC_SUBST(GTKHTML2_CFLAGS) AC_SUBST(GTKHTML2_LIBS) + AM_CONDITIONAL(BUILD_HELPBROWSER, test x$have_gtkhtml2 = xyes) @@ -1108,10 +1130,17 @@ # Check for librsvg ################### -PKG_CHECK_MODULES(SVG, librsvg-2.0 >= rsvg_required_version, - SVG='svg$(EXEEXT)' - LIBSVG=$SVG_LIBS, - AC_MSG_WARN([*** SVG import plug-in will not be built (librsvg not found) ***])) +AC_ARG_WITH(librsvg,[ --without-librsvg build without librsvg support]) + +if test "x$with_librsvg" != xno; then + PKG_CHECK_MODULES(SVG, librsvg-2.0 >= rsvg_required_version, + SVG='svg$(EXEEXT)' + LIBSVG=$SVG_LIBS, + AC_MSG_WARN([*** SVG import plug-in will not be built (librsvg not found) ***])) +else + AC_MSG_WARN([*** SVG import plug-in will not be built (librsvg support disabled) ***]) +fi + AC_SUBST(SVG) AC_SUBST(SVG_CFLAGS) AC_SUBST(LIBSVG) @@ -1184,21 +1213,26 @@ # Check for lcms ################ -have_lcms=no -AC_CHECK_LIB(lcms, cmsCreate_sRGBProfile, [ - AC_CHECK_HEADER(lcms.h, - have_lcms=yes, [ - AC_CHECK_HEADER(lcms/lcms.h, - have_lcms=yes - AC_DEFINE(HAVE_LCMS_LCMS_H, 1, - [Define to 1 if the lcms header must be included as lcms/lcms.h])) - ]) -]) +AC_ARG_WITH(lcms,[ --without-lcms build without lcms support]) -if test $have_lcms = yes; then - LCMS_LIBS="-llcms" +have_lcms=no +if test "x$with_lcms" != xno; then + AC_CHECK_LIB(lcms, cmsCreate_sRGBProfile, [ + AC_CHECK_HEADER(lcms.h, + have_lcms=yes, [ + AC_CHECK_HEADER(lcms/lcms.h, + have_lcms=yes + AC_DEFINE(HAVE_LCMS_LCMS_H, 1, + [Define to 1 if the lcms header must be included as lcms/lcms.h])) + ]) + ]) + if test $have_lcms = yes; then + LCMS_LIBS="-llcms" + else + AC_MSG_WARN([*** color proof module will not be built (lcms not found or unusable) ***]) + fi else - AC_MSG_WARN([*** color proof module will not be built (lcms not found or unuseable) ***]) + AC_MSG_WARN([*** color proof module will not be built (lcms support disabled) ***]) fi AC_SUBST(LCMS_LIBS) @@ -1302,23 +1336,7 @@ PKG_CHECK_MODULES(PYGTK, pygtk-2.0 >= pygtk_required_version) AC_SUBST(PYGTK_CFLAGS) - dnl enable -fno-strict-aliasing if compiler supports it - PYGIMP_EXTRA_CFLAGS= - case " $CFLAGS " in - *@<:@\ \ @:>@-fno-strict-aliasing@<:@\ \ @:>@*) - ;; - *) - pygimp_save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -fno-strict-aliasing" - AC_MSG_CHECKING([whether [$]CC understands -fno-strict-aliasing]) - AC_TRY_COMPILE([], [], [pygimp_has_option=yes], [pygimp_has_option=no]) - AC_MSG_RESULT($pygimp_has_option) - CFLAGS="$pygimp_save_CFLAGS" - if test "x$pygimp_has_option" = "xyes"; then - PYGIMP_EXTRA_CFLAGS="-fno-strict-aliasing" - fi - ;; - esac + GIMP_DETECT_CFLAGS(PYGIMP_EXTRA_CFLAGS, '-fno-strict-aliasing') AC_SUBST(PYGIMP_EXTRA_CFLAGS) fi AM_CONDITIONAL(BUILD_PYTHON, test "x$enable_python" != xno) diff -uraN gimp-2.2.8/cursors/Makefile.in gimp-2.2.9/cursors/Makefile.in --- gimp-2.2.8/cursors/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/cursors/Makefile.in 2005-10-27 17:11:36.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = cursors +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +248,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +299,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +346,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +386,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - CURSOR_IMAGES = \ cursor-bad.png \ cursor-color-picker.png \ @@ -421,7 +438,6 @@ tool-text.png \ tool-zoom.png - EXTRA_DIST = \ $(CURSOR_IMAGES) \ gimp-tool-cursors.xcf \ @@ -526,27 +542,40 @@ xbm/tool-hand.xbm \ xbm/tool-hand-mask.xbm - noinst_DATA = gimp-tool-cursors.h - CLEANFILES = gimp-tool-cursors.h tool-cursors.list -subdir = cursors -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu cursors/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu cursors/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -563,13 +592,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/xbm + $(mkdir_p) $(distdir)/xbm @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -581,7 +606,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -599,7 +624,6 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: install: install-am install-exec: install-exec-am @@ -621,7 +645,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -638,6 +662,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -672,10 +698,10 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am diff -uraN gimp-2.2.8/data/brushes/Makefile.in gimp-2.2.9/data/brushes/Makefile.in --- gimp-2.2.8/data/brushes/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/brushes/Makefile.in 2005-10-27 17:11:36.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/brushes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(brushdatadir)" +brushdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(brushdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - brushdatadir = $(gimpdatadir)/brushes - brushdata_DATA = \ 10x10square.gbr \ 10x10squareBlur.gbr \ @@ -421,25 +445,39 @@ vine.gih \ xcf.gbr - EXTRA_DIST = $(brushdata_DATA) -subdir = data/brushes -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(brushdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/brushes/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/brushes/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -450,23 +488,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -brushdataDATA_INSTALL = $(INSTALL_DATA) install-brushdataDATA: $(brushdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(brushdatadir) + test -z "$(brushdatadir)" || $(mkdir_p) "$(DESTDIR)$(brushdatadir)" @list='$(brushdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(brushdataDATA_INSTALL) $$d$$p $(DESTDIR)$(brushdatadir)/$$f"; \ - $(brushdataDATA_INSTALL) $$d$$p $(DESTDIR)$(brushdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(brushdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(brushdatadir)/$$f'"; \ + $(brushdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(brushdatadir)/$$f"; \ done uninstall-brushdataDATA: @$(NORMAL_UNINSTALL) @list='$(brushdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(brushdatadir)/$$f"; \ - rm -f $(DESTDIR)$(brushdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(brushdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(brushdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -474,10 +511,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -491,7 +524,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -509,9 +542,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(brushdatadir) + for dir in "$(DESTDIR)$(brushdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -531,7 +565,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -548,6 +582,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -582,13 +618,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-brushdataDATA \ - install-data install-data-am install-exec install-exec-am \ - install-info install-info-am install-man install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-brushdataDATA uninstall-info-am + dvi-am html html-am info info-am install install-am \ + install-brushdataDATA install-data install-data-am \ + install-exec install-exec-am install-info install-info-am \ + install-man install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am uninstall uninstall-am uninstall-brushdataDATA \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/data/environ/Makefile.in gimp-2.2.9/data/environ/Makefile.in --- gimp-2.2.8/data/environ/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/environ/Makefile.in 2005-10-27 17:11:36.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/environ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(environdir)" +environDATA_INSTALL = $(INSTALL_DATA) +DATA = $(environ_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,29 +394,41 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - environdir = $(gimpplugindir)/environ - environ_DATA = default.env - EXTRA_DIST = $(environ_DATA) -subdir = data/environ -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(environ_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/environ/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/environ/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -401,23 +439,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -environDATA_INSTALL = $(INSTALL_DATA) install-environDATA: $(environ_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(environdir) + test -z "$(environdir)" || $(mkdir_p) "$(DESTDIR)$(environdir)" @list='$(environ_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(environDATA_INSTALL) $$d$$p $(DESTDIR)$(environdir)/$$f"; \ - $(environDATA_INSTALL) $$d$$p $(DESTDIR)$(environdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(environDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(environdir)/$$f'"; \ + $(environDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(environdir)/$$f"; \ done uninstall-environDATA: @$(NORMAL_UNINSTALL) @list='$(environ_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(environdir)/$$f"; \ - rm -f $(DESTDIR)$(environdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(environdir)/$$f'"; \ + rm -f "$(DESTDIR)$(environdir)/$$f"; \ done tags: TAGS TAGS: @@ -425,10 +462,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -442,7 +475,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -460,9 +493,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(environdir) + for dir in "$(DESTDIR)$(environdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -482,7 +516,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -499,6 +533,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -533,8 +569,8 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-environDATA install-exec \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-environDATA install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ diff -uraN gimp-2.2.8/data/gradients/Makefile.in gimp-2.2.9/data/gradients/Makefile.in --- gimp-2.2.8/data/gradients/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/gradients/Makefile.in 2005-10-27 17:11:37.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/gradients +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(gradientdatadir)" +gradientdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(gradientdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - gradientdatadir = $(gimpdatadir)/gradients - gradientdata_DATA = \ Abstract_1.ggr \ Abstract_2.ggr \ @@ -451,25 +475,39 @@ Yellow_Contrast.ggr \ Yellow_Orange.ggr - EXTRA_DIST = $(gradientdata_DATA) -subdir = data/gradients -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(gradientdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/gradients/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/gradients/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -480,23 +518,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -gradientdataDATA_INSTALL = $(INSTALL_DATA) install-gradientdataDATA: $(gradientdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(gradientdatadir) + test -z "$(gradientdatadir)" || $(mkdir_p) "$(DESTDIR)$(gradientdatadir)" @list='$(gradientdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(gradientdataDATA_INSTALL) $$d$$p $(DESTDIR)$(gradientdatadir)/$$f"; \ - $(gradientdataDATA_INSTALL) $$d$$p $(DESTDIR)$(gradientdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(gradientdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gradientdatadir)/$$f'"; \ + $(gradientdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gradientdatadir)/$$f"; \ done uninstall-gradientdataDATA: @$(NORMAL_UNINSTALL) @list='$(gradientdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(gradientdatadir)/$$f"; \ - rm -f $(DESTDIR)$(gradientdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(gradientdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(gradientdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -504,10 +541,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -521,7 +554,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -539,9 +572,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(gradientdatadir) + for dir in "$(DESTDIR)$(gradientdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -561,7 +595,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -578,6 +612,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -612,8 +648,8 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ install-gradientdataDATA install-info install-info-am \ install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ diff -uraN gimp-2.2.8/data/images/Makefile.in gimp-2.2.9/data/images/Makefile.in --- gimp-2.2.8/data/images/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/images/Makefile.in 2005-10-27 17:11:37.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(imagedatadir)" +imagedataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(imagedata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - imagedatadir = $(gimpdatadir)/images - imagedata_DATA = \ gimp-logo.png \ gimp-splash.png \ @@ -379,25 +403,39 @@ wilber-tips.png \ wilber-wizard.png - EXTRA_DIST = $(imagedata_DATA) -subdir = data/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(imagedata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -408,23 +446,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -imagedataDATA_INSTALL = $(INSTALL_DATA) install-imagedataDATA: $(imagedata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(imagedatadir) + test -z "$(imagedatadir)" || $(mkdir_p) "$(DESTDIR)$(imagedatadir)" @list='$(imagedata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(imagedataDATA_INSTALL) $$d$$p $(DESTDIR)$(imagedatadir)/$$f"; \ - $(imagedataDATA_INSTALL) $$d$$p $(DESTDIR)$(imagedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(imagedataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(imagedatadir)/$$f'"; \ + $(imagedataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(imagedatadir)/$$f"; \ done uninstall-imagedataDATA: @$(NORMAL_UNINSTALL) @list='$(imagedata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(imagedatadir)/$$f"; \ - rm -f $(DESTDIR)$(imagedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(imagedatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(imagedatadir)/$$f"; \ done tags: TAGS TAGS: @@ -432,10 +469,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -449,7 +482,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -467,9 +500,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(imagedatadir) + for dir in "$(DESTDIR)$(imagedatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -489,7 +523,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -506,6 +540,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -540,8 +576,8 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ install-imagedataDATA install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ diff -uraN gimp-2.2.8/data/Makefile.in gimp-2.2.9/data/Makefile.in --- gimp-2.2.8/data/Makefile.in 2005-06-26 21:28:18.000000000 +0200 +++ gimp-2.2.9/data/Makefile.in 2005-10-27 17:11:36.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +33,31 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + AUTHORS ChangeLog +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,39 +394,45 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = environ misc images brushes gradients palettes patterns - EXTRA_DIST = \ AUTHORS \ ChangeLog \ README - fontdir = $(gimpdatadir)/fonts -subdir = data -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in AUTHORS ChangeLog \ - Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -419,7 +451,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -431,7 +469,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -439,7 +477,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -460,7 +504,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -471,14 +515,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -487,19 +523,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -509,10 +548,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -535,10 +575,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -552,7 +588,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -567,15 +603,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -585,7 +623,6 @@ all-am: Makefile installdirs: installdirs-recursive installdirs-am: - install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -605,7 +642,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -623,6 +660,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -657,22 +696,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-local \ - install-data-recursive install-exec install-exec-am \ - install-exec-recursive install-info install-info-am \ - install-info-recursive install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ - pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ - tags-recursive uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am install-data-local: diff -uraN gimp-2.2.8/data/misc/Makefile.in gimp-2.2.9/data/misc/Makefile.in --- gimp-2.2.8/data/misc/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/misc/Makefile.in 2005-10-27 17:11:37.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,32 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/misc +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/gimp.applications.in $(srcdir)/gimp.desktop.in.in \ + $(srcdir)/gimp.keys.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = gimp.desktop.in gimp.keys gimp.applications +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(miscdatadir)" +miscdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(miscdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +258,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +309,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +356,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,52 +396,59 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - miscdatadir = $(gimpdatadir)/misc - miscdata_in_files = gimp.desktop.in.in - miscdata_data_files = $(miscdata_in_files:.desktop.in.in=.desktop) - miscdata_DATA = \ $(miscdata_data_files) \ gimp.applications \ gimp.keys - EXTRA_DIST = \ $(miscdata_in_files) \ gimp.applications.in \ gimp.keys.in - gen_sources = desktop-foo CLEANFILES = $(gen_sources) - DISTCLEANFILES = gimp.desktop -subdir = data/misc -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = gimp.desktop.in gimp.keys gimp.applications -DIST_SOURCES = -DATA = $(miscdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am gimp.applications.in \ - gimp.desktop.in.in gimp.keys.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/misc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/misc/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -gimp.desktop.in: $(top_builddir)/config.status gimp.desktop.in.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +gimp.desktop.in: $(top_builddir)/config.status $(srcdir)/gimp.desktop.in.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -gimp.keys: $(top_builddir)/config.status gimp.keys.in +gimp.keys: $(top_builddir)/config.status $(srcdir)/gimp.keys.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -gimp.applications: $(top_builddir)/config.status gimp.applications.in +gimp.applications: $(top_builddir)/config.status $(srcdir)/gimp.applications.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -425,23 +460,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -miscdataDATA_INSTALL = $(INSTALL_DATA) install-miscdataDATA: $(miscdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(miscdatadir) + test -z "$(miscdatadir)" || $(mkdir_p) "$(DESTDIR)$(miscdatadir)" @list='$(miscdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(miscdataDATA_INSTALL) $$d$$p $(DESTDIR)$(miscdatadir)/$$f"; \ - $(miscdataDATA_INSTALL) $$d$$p $(DESTDIR)$(miscdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(miscdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(miscdatadir)/$$f'"; \ + $(miscdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(miscdatadir)/$$f"; \ done uninstall-miscdataDATA: @$(NORMAL_UNINSTALL) @list='$(miscdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(miscdatadir)/$$f"; \ - rm -f $(DESTDIR)$(miscdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(miscdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(miscdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -449,10 +483,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -466,7 +496,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -487,9 +517,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(miscdatadir) + for dir in "$(DESTDIR)$(miscdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -510,7 +541,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @@ -528,6 +559,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -561,15 +594,15 @@ uninstall-am: uninstall-info-am uninstall-local uninstall-miscdataDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-data-local install-exec install-exec-am \ - install-info install-info-am install-man install-miscdataDATA \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-info-am uninstall-local \ - uninstall-miscdataDATA + dist-hook distclean distclean-generic distclean-libtool \ + distdir dvi dvi-am html html-am info info-am install \ + install-am install-data install-data-am install-data-local \ + install-exec install-exec-am install-info install-info-am \ + install-man install-miscdataDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-local uninstall-miscdataDATA gimp.desktop: gimp.desktop.in $(wildcard $(top_srcdir)/po/*.po) diff -uraN gimp-2.2.8/data/palettes/Makefile.in gimp-2.2.9/data/palettes/Makefile.in --- gimp-2.2.8/data/palettes/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/palettes/Makefile.in 2005-10-27 17:11:37.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/palettes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(palettedatadir)" +palettedataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(palettedata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - palettedatadir = $(gimpdatadir)/palettes - palettedata_DATA = \ Bears.gpl \ Bgold.gpl \ @@ -412,25 +436,39 @@ Warm_Colors.gpl \ Web.gpl - EXTRA_DIST = $(palettedata_DATA) -subdir = data/palettes -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(palettedata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/palettes/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/palettes/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -441,23 +479,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -palettedataDATA_INSTALL = $(INSTALL_DATA) install-palettedataDATA: $(palettedata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(palettedatadir) + test -z "$(palettedatadir)" || $(mkdir_p) "$(DESTDIR)$(palettedatadir)" @list='$(palettedata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(palettedataDATA_INSTALL) $$d$$p $(DESTDIR)$(palettedatadir)/$$f"; \ - $(palettedataDATA_INSTALL) $$d$$p $(DESTDIR)$(palettedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(palettedataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(palettedatadir)/$$f'"; \ + $(palettedataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(palettedatadir)/$$f"; \ done uninstall-palettedataDATA: @$(NORMAL_UNINSTALL) @list='$(palettedata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(palettedatadir)/$$f"; \ - rm -f $(DESTDIR)$(palettedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(palettedatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(palettedatadir)/$$f"; \ done tags: TAGS TAGS: @@ -465,10 +502,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -482,7 +515,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -500,9 +533,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(palettedatadir) + for dir in "$(DESTDIR)$(palettedatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -522,7 +556,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -539,6 +573,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -573,14 +609,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-palettedataDATA \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-info-am \ - uninstall-palettedataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-palettedataDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-palettedataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/data/patterns/Makefile.in gimp-2.2.9/data/patterns/Makefile.in --- gimp-2.2.8/data/patterns/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/data/patterns/Makefile.in 2005-10-27 17:11:37.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = data/patterns +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(patterndatadir)" +patterndataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(patterndata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - patterndatadir = $(gimpdatadir)/patterns - patterndata_DATA = \ 3dgreen.pat \ Craters.pat \ @@ -431,25 +455,39 @@ wood4.pat \ wood5.pat - EXTRA_DIST = $(patterndata_DATA) -subdir = data/patterns -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(patterndata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/patterns/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu data/patterns/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -460,23 +498,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -patterndataDATA_INSTALL = $(INSTALL_DATA) install-patterndataDATA: $(patterndata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(patterndatadir) + test -z "$(patterndatadir)" || $(mkdir_p) "$(DESTDIR)$(patterndatadir)" @list='$(patterndata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(patterndataDATA_INSTALL) $$d$$p $(DESTDIR)$(patterndatadir)/$$f"; \ - $(patterndataDATA_INSTALL) $$d$$p $(DESTDIR)$(patterndatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(patterndataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(patterndatadir)/$$f'"; \ + $(patterndataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(patterndatadir)/$$f"; \ done uninstall-patterndataDATA: @$(NORMAL_UNINSTALL) @list='$(patterndata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(patterndatadir)/$$f"; \ - rm -f $(DESTDIR)$(patterndatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(patterndatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(patterndatadir)/$$f"; \ done tags: TAGS TAGS: @@ -484,10 +521,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -501,7 +534,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -519,9 +552,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(patterndatadir) + for dir in "$(DESTDIR)$(patterndatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -541,7 +575,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -558,6 +592,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -592,14 +628,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-patterndataDATA \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-info-am \ - uninstall-patterndataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-patterndataDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-patterndataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/devel-docs/app/Makefile gimp-2.2.9/devel-docs/app/Makefile --- gimp-2.2.8/devel-docs/app/Makefile 2005-06-26 21:28:50.000000000 +0200 +++ gimp-2.2.9/devel-docs/app/Makefile 2005-10-27 17:12:28.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # devel-docs/app/Makefile. Generated from Makefile.in by configure. -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = . top_srcdir = ../.. @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/gimp pkgincludedir = $(includedir)/gimp top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = /usr/bin/install -c install_sh_DATA = $(install_sh) -c -m 644 @@ -41,9 +39,24 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = i686-pc-linux-gnu host_triplet = i686-pc-linux-gnu -AA = -ACLOCAL = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run aclocal-1.7 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/app +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +AA = aa$(EXEEXT) +ACLOCAL = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run aclocal-1.9 ALLOCA = ALSA_CFLAGS = ALSA_LIBS = -lasound -lm -ldl -lpthread @@ -54,25 +67,25 @@ AS = as AUTOCONF = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run autoconf AUTOHEADER = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run autoheader -AUTOMAKE = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run automake-1.7 +AUTOMAKE = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run automake-1.9 AWK = mawk BUILD_HELPBROWSER_FALSE = # BUILD_HELPBROWSER_TRUE = -BUILD_PRINT_FALSE = # -BUILD_PRINT_TRUE = +BUILD_PRINT_FALSE = +BUILD_PRINT_TRUE = # BUILD_PYTHON_FALSE = # BUILD_PYTHON_TRUE = BUILD_XJT_FALSE = # BUILD_XJT_TRUE = -CATALOGS = bg.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo en_CA.gmo en_GB.gmo es.gmo eu.gmo fi.gmo fr.gmo ga.gmo gl.gmo he.gmo hu.gmo hr.gmo id.gmo it.gmo ja.gmo ko.gmo lt.gmo ms.gmo nb.gmo nl.gmo no.gmo pa.gmo pl.gmo pt.gmo pt_BR.gmo ro.gmo ru.gmo sk.gmo sr.gmo sr@Latn.gmo sv.gmo tr.gmo uk.gmo vi.gmo yi.gmo zh_CN.gmo zh_TW.gmo +CATALOGS = bg.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo en_CA.gmo en_GB.gmo es.gmo eu.gmo fi.gmo fr.gmo ga.gmo gl.gmo he.gmo hu.gmo hr.gmo id.gmo it.gmo ja.gmo ko.gmo lt.gmo mk.gmo ms.gmo nb.gmo nl.gmo no.gmo pa.gmo pl.gmo pt.gmo pt_BR.gmo ro.gmo ru.gmo sk.gmo sr.gmo sr@Latn.gmo sv.gmo tr.gmo uk.gmo vi.gmo yi.gmo zh_CN.gmo zh_TW.gmo CATOBJEXT = .gmo CC = gcc -CCAS = $(CC) -CCASFLAGS = $(CFLAGS) +CCAS = gcc +CCASFLAGS = -g -O2 CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -Wall CPP = gcc -E -CPPFLAGS = -DGIMP_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE +CPPFLAGS = -DGIMP_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DPANGO_DISABLE_DEPRECATED -DGDK_MULTIHEAD_SAFE -DGTK_MULTIHEAD_SAFE CXX = g++ CXXCPP = g++ -E CXXDEPMODE = depmode=gcc3 @@ -113,19 +126,19 @@ GETTEXT_PACKAGE = gimp20 GIMPINSTALL = GIMPPRINT_CFLAGS = -GIMPPRINT_CONFIG = /usr/bin/gimpprint-config -GIMPPRINT_LIBS = -L/usr/lib -lgimpprint -lm +GIMPPRINT_CONFIG = +GIMPPRINT_LIBS = GIMPPRINT_REQUIRED_VERSION = 4.2.0 GIMPPRINT_TOONEW_VERSION = 4.3.0 GIMP_API_VERSION = 2.0 GIMP_APP_VERSION = 2.2 -GIMP_BINARY_AGE = 208 +GIMP_BINARY_AGE = 209 GIMP_DATA_VERSION = 2.0 GIMP_DESKTOP_ICON = wilber-icon.png GIMP_FULL_NAME = The GIMP -GIMP_INTERFACE_AGE = 8 +GIMP_INTERFACE_AGE = 9 GIMP_MAJOR_VERSION = 2 -GIMP_MICRO_VERSION = 8 +GIMP_MICRO_VERSION = 9 GIMP_MINOR_VERSION = 2 GIMP_MKENUMS = $(PERL) $(top_srcdir)/tools/gimp-mkenums GIMP_MODULES = modules @@ -134,15 +147,15 @@ GIMP_PKGCONFIG_VERSION = 2.0 GIMP_PLUGINS = plug-ins GIMP_PLUGIN_VERSION = 2.0 -GIMP_REAL_VERSION = 2.2.8 -GIMP_REMOTE = gimp-remote-2.2 +GIMP_REAL_VERSION = 2.2.9 +GIMP_REMOTE = gimp-remote-2.2$(EXEEXT) GIMP_SYSCONF_VERSION = 2.0 GIMP_THREAD_FLAGS = GIMP_THREAD_LIBS = GIMP_TOOL_VERSION = 2.0 GIMP_UNSTABLE = no GIMP_USER_VERSION = 2.2 -GIMP_VERSION = 2.2.8 +GIMP_VERSION = 2.2.9 GLIB_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include GLIB_GENMARSHAL = glib-genmarshal GLIB_LIBS = -lgobject-2.0 -lglib-2.0 @@ -150,17 +163,17 @@ GLIB_REQUIRED_VERSION = 2.4.5 GMODULE_CFLAGS = -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include GMODULE_LIBS = -Wl,--export-dynamic -lgmodule-2.0 -ldl -lgobject-2.0 -lglib-2.0 -GMOFILES = bg.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo en_CA.gmo en_GB.gmo es.gmo eu.gmo fi.gmo fr.gmo ga.gmo gl.gmo he.gmo hu.gmo hr.gmo id.gmo it.gmo ja.gmo ko.gmo lt.gmo ms.gmo nb.gmo nl.gmo no.gmo pa.gmo pl.gmo pt.gmo pt_BR.gmo ro.gmo ru.gmo sk.gmo sr.gmo sr@Latn.gmo sv.gmo tr.gmo uk.gmo vi.gmo yi.gmo zh_CN.gmo zh_TW.gmo +GMOFILES = bg.gmo ca.gmo cs.gmo da.gmo de.gmo el.gmo en_CA.gmo en_GB.gmo es.gmo eu.gmo fi.gmo fr.gmo ga.gmo gl.gmo he.gmo hu.gmo hr.gmo id.gmo it.gmo ja.gmo ko.gmo lt.gmo mk.gmo ms.gmo nb.gmo nl.gmo no.gmo pa.gmo pl.gmo pt.gmo pt_BR.gmo ro.gmo ru.gmo sk.gmo sr.gmo sr@Latn.gmo sv.gmo tr.gmo uk.gmo vi.gmo yi.gmo zh_CN.gmo zh_TW.gmo GMSGFMT = /usr/bin/msgfmt GOBJECT_QUERY = gobject-query GTKDOC_REQUIRED_VERSION = 1.0 GTKHTML2_CFLAGS = -DXTHREADS -I/usr/include/gtkhtml-2.0 -I/usr/include/gtk-2.0 -I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -GTKHTML2_LIBS = -lgtkhtml-2 -lgtk-x11-2.0 -lxml2 -lpthread -lz -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 +GTKHTML2_LIBS = -lgtkhtml-2 -lgtk-x11-2.0 -lxml2 -lz -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 GTKHTML2_REQUIRED_VERSION = 2.0.0 GTK_CFLAGS = -DXTHREADS -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include GTK_DOC_USE_LIBTOOL_FALSE = # GTK_DOC_USE_LIBTOOL_TRUE = -GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 +GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lpangox-1.0 -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 GTK_REQUIRED_VERSION = 2.4.4 HAVE_FINITE = HAVE_GLIBC_REGEX = @@ -214,7 +227,7 @@ JPEG = jpeg$(EXEEXT) LCMS_LIBS = -llcms LDFLAGS = -LIBAA = +LIBAA = -laa LIBART_CFLAGS = -I/usr/include/libart-2.0 LIBART_LIBS = -lart_lgpl_2 LIBJPEG = -ljpeg @@ -233,13 +246,14 @@ LN_S = ln -s LTLIBOBJS = LT_CURRENT_MINUS_AGE = 0 -LT_VERSION_INFO = 200:8:200 +LT_VERSION_INFO = 200:9:200 MAIL = mail$(EXEEXT) MAINT = MAINTAINER_MODE_FALSE = # MAINTAINER_MODE_TRUE = MAKEINFO = ${SHELL} /home/sven/gnomecvs/gimp-dist-2-2/missing --run makeinfo MKINSTALLDIRS = ./mkinstalldirs +MMX_EXTRA_CFLAGS = -mmmx MNG = mng$(EXEEXT) MSGFMT = /usr/bin/msgfmt MS_LIB_AVAILABLE_FALSE = @@ -253,9 +267,9 @@ PACKAGE = gimp PACKAGE_BUGREPORT = http://bugzilla.gnome.org/enter_bug.cgi?product=GIMP PACKAGE_NAME = GIMP -PACKAGE_STRING = GIMP 2.2.8 +PACKAGE_STRING = GIMP 2.2.9 PACKAGE_TARNAME = gimp -PACKAGE_VERSION = 2.2.8 +PACKAGE_VERSION = 2.2.9 PANGOFT2_CFLAGS = -I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include PANGOFT2_LIBS = -lpangoft2-1.0 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0 PANGOFT2_REQUIRED_VERSION = 1.4.0 @@ -266,7 +280,7 @@ PLATFORM_WIN32_FALSE = PLATFORM_WIN32_TRUE = # PNG = png$(EXEEXT) -POFILES = bg.po ca.po cs.po da.po de.po el.po en_CA.po en_GB.po es.po eu.po fi.po fr.po ga.po gl.po he.po hu.po hr.po id.po it.po ja.po ko.po lt.po ms.po nb.po nl.po no.po pa.po pl.po pt.po pt_BR.po ro.po ru.po sk.po sr.po sr@Latn.po sv.po tr.po uk.po vi.po yi.po zh_CN.po zh_TW.po +POFILES = bg.po ca.po cs.po da.po de.po el.po en_CA.po en_GB.po es.po eu.po fi.po fr.po ga.po gl.po he.po hu.po hr.po id.po it.po ja.po ko.po lt.po mk.po ms.po nb.po nl.po no.po pa.po pl.po pt.po pt_BR.po ro.po ru.po sk.po sr.po sr@Latn.po sv.po tr.po uk.po vi.po yi.po zh_CN.po zh_TW.po POSUB = po PO_IN_DATADIR_FALSE = PO_IN_DATADIR_TRUE = @@ -290,6 +304,7 @@ SET_MAKE = SHELL = /bin/sh SOCKET_LIBS = +SSE_EXTRA_CFLAGS = -mmmx -msse STATICLIBS_FALSE = STATICLIBS_TRUE = # STRIP = strip @@ -300,7 +315,7 @@ TIFF = tiff$(EXEEXT) URL = url$(EXEEXT) USE_NLS = yes -VERSION = 2.2.8 +VERSION = 2.2.9 WINCLIPBOARD = WINDRES = : WINPRINT = @@ -336,6 +351,8 @@ am__include = include am__leading_dot = . am__quote = +am__tar = ${AMTAR} chof - "$$tardir" +am__untar = ${AMTAR} xf - bindir = ${exec_prefix}/bin build = i686-pc-linux-gnu build_alias = @@ -361,7 +378,7 @@ localedir = ${prefix}/share/locale localstatedir = ${prefix}/var mandir = ${prefix}/man -mkdir_p = mkdir -p -- . +mkdir_p = mkdir -p -- ms_librarian = oldincludedir = /usr/include pkgpyexecdir = ${pyexecdir}/gimp @@ -374,7 +391,6 @@ sharedstatedir = ${prefix}/com sysconfdir = ${prefix}/etc target_alias = - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -431,7 +447,6 @@ # Other files to distribute extra_files = - # CFLAGS and LDFLAGS for compiling scan program. Only needed # if $(DOC_MODULE).types is non-empty. GTKDOC_CFLAGS = \ @@ -440,7 +455,6 @@ $(GTK_CFLAGS) \ -I$(includedir) - GTKDOC_LIBS = \ $(top_builddir)/app/app_procs.o \ $(top_builddir)/app/batch.o \ @@ -482,7 +496,6 @@ $(REGEXREPL) #GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) #GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -493,24 +506,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -518,25 +522,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/app -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/app/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/app/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -554,13 +573,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -572,7 +587,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -593,7 +608,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -615,7 +629,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -632,6 +646,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -666,12 +682,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -684,7 +701,7 @@ scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @echo '*** Scanning header files ***' @-chmod -R u+w $(srcdir) - if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ + if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ else \ cd $(srcdir) ; \ @@ -704,7 +721,7 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @echo '*** Rebuilding template files ***' @-chmod -R u+w $(srcdir) - cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) + cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @@ -712,11 +729,11 @@ #### xml #### -sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @echo '*** Building XML ***' @-chmod -R u+w $(srcdir) cd $(srcdir) && \ - gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) + gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) touch sgml-build.stamp sgml.stamp: sgml-build.stamp @@ -777,6 +794,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/app/Makefile.in gimp-2.2.9/devel-docs/app/Makefile.in --- gimp-2.2.8/devel-docs/app/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/devel-docs/app/Makefile.in 2005-10-27 17:11:38.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/app +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -431,7 +447,6 @@ # Other files to distribute extra_files = - # CFLAGS and LDFLAGS for compiling scan program. Only needed # if $(DOC_MODULE).types is non-empty. GTKDOC_CFLAGS = \ @@ -440,7 +455,6 @@ $(GTK_CFLAGS) \ -I$(includedir) - GTKDOC_LIBS = \ $(top_builddir)/app/app_procs.o \ $(top_builddir)/app/batch.o \ @@ -482,7 +496,6 @@ $(REGEXREPL) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -493,24 +506,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -518,25 +522,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/app -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/app/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/app/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -554,13 +573,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -572,7 +587,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -593,7 +608,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -615,7 +629,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -632,6 +646,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -666,12 +682,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -684,7 +701,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -704,7 +721,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -712,11 +729,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -777,6 +794,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/app/version gimp-2.2.9/devel-docs/app/version --- gimp-2.2.8/devel-docs/app/version 2005-06-26 21:28:50.000000000 +0200 +++ gimp-2.2.9/devel-docs/app/version 2005-10-27 17:12:28.000000000 +0200 @@ -1 +1 @@ -2.2.8 +2.2.9 diff -uraN gimp-2.2.8/devel-docs/libgimp/html/GimpAspectPreview.html gimp-2.2.9/devel-docs/libgimp/html/GimpAspectPreview.html --- gimp-2.2.8/devel-docs/libgimp/html/GimpAspectPreview.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/GimpAspectPreview.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpAspectPreview

GimpAspectPreview

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

Synopsis

+
+
+
+GimpAspectPreview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpAspectPreview

+

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

+
+
+

Synopsis

+
 
 
 
@@ -8,7 +47,11 @@
 >GtkWidget*  gimp_aspect_preview_new         (GimpDrawable *drawable,
                                              gboolean *toggle);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

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

- -


gimp_aspect_preview_new ()


+
+
+

Details

+
+

+GimpAspectPreview

+
typedef struct _GimpAspectPreview GimpAspectPreview;
+

+ +

+
+
+
+

+gimp_aspect_preview_new ()

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

- -

drawable : -
toggle : -
Returns : - + gboolean *toggle); +

-

+

+
++ + + + + + + + + + + + + + +
+drawable : +
+toggle : +
+Returns : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/gimpdefinitions.html gimp-2.2.9/devel-docs/libgimp/html/gimpdefinitions.html --- gimp-2.2.8/devel-docs/libgimp/html/gimpdefinitions.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/gimpdefinitions.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part I. GIMP Constants

GIMP Constants

+ + + +Part I. GIMP Constants + + + + + + + + + + + + + + + + + + + + + + + +

+GIMP Constants

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/GimpDrawablePreview.html gimp-2.2.9/devel-docs/libgimp/html/GimpDrawablePreview.html --- gimp-2.2.8/devel-docs/libgimp/html/GimpDrawablePreview.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/GimpDrawablePreview.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpDrawablePreview

GimpDrawablePreview

GimpDrawablePreview — A widget providing a preview of a GimpDrawable.

Synopsis

+
+
+
+GimpDrawablePreview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpDrawablePreview

+

GimpDrawablePreview — A widget providing a preview of a GimpDrawable.

+
+
+

Synopsis

+
 
 
 
@@ -13,7 +52,11 @@
                                             (GimpDrawablePreview *preview,
                                              const GimpPixelRgn *region);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

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

- -


gimp_drawable_preview_new ()


+
+
+

Details

+
+

+GimpDrawablePreview

+
typedef struct _GimpDrawablePreview GimpDrawablePreview;
+

+ +

+
+
+
+

+gimp_drawable_preview_new ()

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

+ gboolean *toggle); +

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

+toggle.

+

-

+ + +
drawable : a GimpDrawable -
toggle : pointer to a gboolean variable to sync with the "Preview" +

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

Since GIMP 2.2 -


gimp_drawable_preview_get_drawable ()

GimpDrawable* gimp_drawable_preview_get_drawable
-                                            (GimpDrawablePreview *preview);

-

- -

+ + + + + + +
preview : a GimpDrawablePreview widget -
Returns : the GimpDrawable that has been passed to +
+Returns : A pointer to the new GimpDrawablePreview widget. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_preview_get_drawable ()

+
GimpDrawable* gimp_drawable_preview_get_drawable
+                                            (GimpDrawablePreview *preview);
+

+

+

+ +

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

Since GIMP 2.2 -


gimp_drawable_preview_draw_region ()

void        gimp_drawable_preview_draw_region
+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_preview_draw_region ()

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

-

- -

preview : a GimpDrawablePreview widget -
region : a GimpPixelRgn -

Since GIMP 2.2 -

+ const GimpPixelRgn *region); +

+

+

+ +

+
++ + + + + + + + + + +
+preview : a GimpDrawablePreview widget +
+region : a GimpPixelRgn +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/GimpProgressBar.html gimp-2.2.9/devel-docs/libgimp/html/GimpProgressBar.html --- gimp-2.2.8/devel-docs/libgimp/html/GimpProgressBar.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/GimpProgressBar.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpProgressBar

GimpProgressBar

GimpProgressBar — A widget providing a progress bar.

Synopsis

+
+
+
+GimpProgressBar
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpProgressBar

+

GimpProgressBar — A widget providing a progress bar.

+
+
+

Synopsis

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

Object Hierarchy

+
+
+
+

Object Hierarchy

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

- -


gimp_progress_bar_new ()


+
+
+

Details

+
+

+GimpProgressBar

+
typedef struct _GimpProgressBar GimpProgressBar;
+

+ +

+
+
+
+

+gimp_progress_bar_new ()

+
GtkWidget*  gimp_progress_bar_new           (void);

-Creates a new GimpProgressBar widget.

- -

Returns : the new widget. - -

Since GIMP 2.2 -

+>GtkWidget* gimp_progress_bar_new (void); +

+Creates a new GimpProgressBar widget.

+

+ +

+
++ + + + +
+Returns : the new widget. + +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/index.html gimp-2.2.9/devel-docs/libgimp/html/index.html --- gimp-2.2.8/devel-docs/libgimp/html/index.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/index.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,6 +1,238 @@ -GIMP Library Reference Manual

- for GIMP 2.2.4 + + + +GIMP Library Reference Manual + + + + + + + + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

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

+
+
+
+
+

Table of Contents

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

Data Objects

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

+Data Objects

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

Functions not Related to Specific Images

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

+Functions not Related to Specific Images

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

gimpbrushes

gimpbrushes — Functions for manipulating brushes.

Synopsis

+
+
+
+gimpbrushes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpbrushes

+

gimpbrushes — Functions for manipulating brushes.

+
+
+

Synopsis

+
 
 
 
@@ -24,85 +63,412 @@
                                              gint *height,
                                              gint *length,
                                              guint8 **mask_data);
-

Description

+

+
+
+

Description

+

Functions related to getting and setting brushes. -

Details

gimp_brushes_refresh ()

gboolean    gimp_brushes_refresh            (void);

+

+
+
+

Details

+
+

+gimp_brushes_refresh ()

+
gboolean    gimp_brushes_refresh            (void);
+

Refresh current brushes. This function always succeeds. -

+

+

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

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

+

+
++ + + + +
+Returns : TRUE on success. +
+
+
+
+

+gimp_brushes_get_list ()

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

Retrieve a complete listing of the available brushes. -

+

+

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

+'gimp_context_set_brush' procedure.

+

-

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

gimp_brushes_get_brush ()

gchar*      gimp_brushes_get_brush          (gint *width,
+

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

+gimp_brushes_get_brush ()

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

Warning

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

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

- -

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

gimp_brushes_set_brush ()

gboolean    gimp_brushes_set_brush          (const gchar *name);

Warning

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

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

- -

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

gimp_brushes_get_opacity ()

gdouble     gimp_brushes_get_opacity        (void);

Warning

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

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

- -

Returns : The brush opacity. -

gimp_brushes_set_opacity ()

gboolean    gimp_brushes_set_opacity        (gdouble opacity);

Warning

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

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

- -

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

gimp_brushes_get_paint_mode ()

GimpLayerModeEffects gimp_brushes_get_paint_mode
-                                            (void);

Warning

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

-This procedure isdeprecated! Use gimp_context_get_paint_mode() instead.

- -

Returns : The paint mode. -

gimp_brushes_set_paint_mode ()

gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);

Warning

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

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

- -

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

gimp_brushes_get_spacing ()

gint        gimp_brushes_get_spacing        (void);

Warning

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

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

- -

Returns : The brush spacing. -

gimp_brushes_set_spacing ()

gboolean    gimp_brushes_set_spacing        (gint spacing);

Warning

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

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

- -

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

gimp_brushes_get_brush_data ()

gchar*      gimp_brushes_get_brush_data     (const gchar *name,
+                                             gint *spacing);
+
+

Warning

+

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

+
+

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

+

+ +

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

+gimp_brushes_set_brush ()

+
gboolean    gimp_brushes_set_brush          (const gchar *name);
+
+

Warning

+

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

+
+

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

+

+ +

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

+gimp_brushes_get_opacity ()

+
gdouble     gimp_brushes_get_opacity        (void);
+
+

Warning

+

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

+
+

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

+

+ +

+
++ + + + +
+Returns : The brush opacity. +
+
+
+
+

+gimp_brushes_set_opacity ()

+
gboolean    gimp_brushes_set_opacity        (gdouble opacity);
+
+

Warning

+

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

+
+

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

+

+ +

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

+gimp_brushes_get_paint_mode ()

+
GimpLayerModeEffects gimp_brushes_get_paint_mode
+                                            (void);
+
+

Warning

+

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

+
+

+This procedure isdeprecated! Use gimp_context_get_paint_mode() instead.

+

+ +

+
++ + + + +
+Returns : The paint mode. +
+
+
+
+

+gimp_brushes_set_paint_mode ()

+
gboolean    gimp_brushes_set_paint_mode     (GimpLayerModeEffects paint_mode);
+
+

Warning

+

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

+
+

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

+

+ +

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

+gimp_brushes_get_spacing ()

+
gint        gimp_brushes_get_spacing        (void);
+
+

Warning

+

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

+
+

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

+

+ +

+
++ + + + +
+Returns : The brush spacing. +
+
+
+
+

+gimp_brushes_set_spacing ()

+
gboolean    gimp_brushes_set_spacing        (gint spacing);
+
+

Warning

+

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

+
+

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

+

+ +

+
++ + + + + + + + + + +
+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,
                                              GimpLayerModeEffects *paint_mode,
                                              gint *width,
                                              gint *height,
                                              gint *length,
-                                             guint8 **mask_data);

Warning

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

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

- -

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

Warning

+

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

+
+

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

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : The brush name (\"\" means current active brush). +
+opacity : The brush opacity. +
+spacing : The brush spacing. +
+paint_mode : The paint mode. +
+width : The brush width. +
+height : The brush height. +
+length : Length of brush mask data. +
+mask_data : The brush mask data. +
+Returns : The brush name. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrush.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpbrush.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrush.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpbrush.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpbrush

gimpbrush

gimpbrush — Functions operating on a single brush.

Synopsis

+
+
+
+gimpbrush
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpbrush

+

gimpbrush — Functions operating on a single brush.

+
+
+

Synopsis

+
 
 
 
@@ -25,65 +64,226 @@
                                              gint *spacing);
 gboolean    gimp_brush_set_spacing          (const gchar *name,
                                              gint spacing);
-

Description

+

+
+
+

Description

+

Functions operating on a single brush. -

Details

gimp_brush_new ()

gchar*      gimp_brush_new                  (const gchar *name);

+

+
+
+

Details

+
+

+gimp_brush_new ()

+
gchar*      gimp_brush_new                  (const gchar *name);
+

Creates a new brush -

-This procedure creates a new, uninitialized brush

- -

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

Since GIMP 2.2 -


gimp_brush_duplicate ()

gchar*      gimp_brush_duplicate            (const gchar *name);

+

+

+This procedure creates a new, uninitialized brush

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_duplicate ()

+
gchar*      gimp_brush_duplicate            (const gchar *name);
+

Duplicates a brush -

-This procedure creates an identical brush by a different name

- -

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

Since GIMP 2.2 -


gimp_brush_rename ()

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

+

+

+This procedure creates an identical brush by a different name

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_rename ()

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

Rename a brush -

-This procedure renames a brush

- -

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

Since GIMP 2.2 -


gimp_brush_delete ()

gboolean    gimp_brush_delete               (const gchar *name);

+

+

+This procedure renames a brush

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_delete ()

+
gboolean    gimp_brush_delete               (const gchar *name);
+

Deletes a brush -

-This procedure deletes a brush

- -

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

Since GIMP 2.2 -


gimp_brush_get_info ()

gboolean    gimp_brush_get_info             (const gchar *name,
+

+

+This procedure deletes a brush

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_get_info ()

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

+ gint *color_bpp); +

Retrieve information about the specified brush. -

+

+

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

+includes the brush name, and the brush extents (width and height).

+

-

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

Since GIMP 2.2 -


gimp_brush_get_pixels ()

gboolean    gimp_brush_get_pixels           (const gchar *name,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_get_pixels ()

+
gboolean    gimp_brush_get_pixels           (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *mask_bpp,
@@ -91,47 +291,175 @@
                                              guint8 **mask_bytes,
                                              gint *color_bpp,
                                              gint *num_color_bytes,
-                                             guint8 **color_bytes);

+ guint8 **color_bytes); +

Retrieve information about the specified brush. -

+

+

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

+includes the brush extents (width and height) and its pixels data.

+

-

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

Since GIMP 2.2 -


gimp_brush_get_spacing ()

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

+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_get_spacing ()

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

Get the brush spacing. -

+

+

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

+percentage of the maximum of the width and height of the mask.

+

-

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

Since GIMP 2.2 -


gimp_brush_set_spacing ()

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

+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_brush_set_spacing ()

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

Set the brush spacing. -

+

+

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

- -

name : The brush name. -
spacing : The brush spacing. -
Returns : TRUE on success. +The value should be a integer between 0 and 1000.

+

-

Since GIMP 2.2 -

+

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

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpbrushmenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpbrushmenu

gimpbrushmenu

gimpbrushmenu — A widget for selecting brushes.

Synopsis

+
+
+
+gimpbrushmenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpbrushmenu

+

gimpbrushmenu — A widget for selecting brushes.

+
+
+

Synopsis

+
 
 
 
@@ -21,9 +60,20 @@
                                              gdouble opacity,
                                              gint spacing,
                                              GimpLayerModeEffects paint_mode);
-

Description

+

+
+
+

Description

+

A widget for selecting brushes. -

Details

gimp_brush_select_widget_new ()


+
+
+

Details

+
+

+gimp_brush_select_widget_new ()

+
GtkWidget*  gimp_brush_select_widget_new    (const gchar *title,
                                              const gchar *brush_name,
@@ -31,45 +81,155 @@
                                              gint spacing,
                                              GimpLayerModeEffects paint_mode,
                                              GimpRunBrushCallback callback,
-                                             gpointer data);

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

+a plug-in dialog.

+

-

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

gimp_brush_select_widget_close ()

void        gimp_brush_select_widget_close  (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    (
+
+
+
+
+

+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,
-                                             GimpLayerModeEffects paint_mode);

+ GimpLayerModeEffects paint_mode); +

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

+call to gimp_brush_select_widget_new().

+

-

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

+
++ + + + + + + + + + + + + + + + + + + + + + +
+widget : A brush select widget. +
+brush_name : Brush name to set; NULL means no change. +
+opacity : Opacity to set. -1 means no change. +
+spacing : Spacing to set. -1 means no change. +
+paint_mode : Paint mode to set. -1 means no change. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushselect.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpbrushselect.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpbrushselect.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpbrushselect

gimpbrushselect

gimpbrushselect — Functions providing a brush selection dialog.

Synopsis

+
+
+
+gimpbrushselect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpbrushselect

+

gimpbrushselect — Functions providing a brush selection dialog.

+
+
+

Synopsis

+
 
 
 
@@ -31,9 +70,20 @@
                                              gdouble opacity,
                                              gint spacing,
                                              GimpLayerModeEffects paint_mode);
-

Description

+

+
+
+

Description

+

Functions providing a brush selection dialog. -

Details

GimpRunBrushCallback ()

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

+
+
+

Details

+
+

+GimpRunBrushCallback ()

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

+ gpointer user_data); +

-

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

gimp_brush_select_new ()

const gchar* gimp_brush_select_new          (const gchar *title,
+

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

+gimp_brush_select_new ()

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

- -

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

gimp_brush_select_destroy ()

void        gimp_brush_select_destroy       (const gchar *brush_callback);

+ gpointer data); +

-

brush_callback : - - -

gimp_brushes_popup ()

gboolean    gimp_brushes_popup              (const gchar *brush_callback,
+

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

+gimp_brush_select_destroy ()

+
void        gimp_brush_select_destroy       (const gchar *brush_callback);
+

+ +

+
++ + + + +
+brush_callback : + + +
+
+
+
+

+gimp_brushes_popup ()

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

+ GimpLayerModeEffects paint_mode); +

Invokes the Gimp brush selection. -

-This procedure popups the brush selection dialog.

- -

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

gimp_brushes_close_popup ()

gboolean    gimp_brushes_close_popup        (const gchar *brush_callback);

+

+

+This procedure popups the brush selection dialog.

+

+ +

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

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

+

+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,
-                                             GimpLayerModeEffects paint_mode);

+ GimpLayerModeEffects paint_mode); +

Sets the current brush selection in a popup. -

-Sets the current brush selection in a popup.

- -

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

+

+Sets the current brush selection in a popup.

+

+ +

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

gimpchannel

gimpchannel — Functions for manipulating channels.

Synopsis

+
+
+
+gimpchannel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpchannel

+

gimpchannel — Functions for manipulating channels.

+
+
+

Synopsis

+
 
 
 
@@ -30,113 +69,408 @@
                                              GimpChannelOps operation,
                                              gint offx,
                                              gint offy);
-

Description

+

+
+
+

Description

+

Functions for manipulating channels. -

Details

gimp_channel_new ()

gint32      gimp_channel_new                (gint32 image_ID,
+

+
+
+

Details

+
+

+gimp_channel_new ()

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

+>GimpRGB *color); +

Create a new channel. -

+

+

This procedure creates a new channel with the specified width and height. Name, opacity, and color are also supplied parameters. The new channel still needs to be added to the image, as this is not automatic. Add the new channel with the 'gimp_image_add_channel' command. Other attributes such as channel show masked, should be set with explicit procedure calls. The channel's contents are undefined -initially.

+initially.

+

-

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

gimp_channel_copy ()

gint32      gimp_channel_copy               (gint32 channel_ID);

+

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

+gimp_channel_copy ()

+
gint32      gimp_channel_copy               (gint32 channel_ID);
+

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

+

+

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

Get the composite method of the specified channel. -

+

+

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

+shown.

+

-

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

+

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

Set the composite method of the specified channel. -

+

+

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

+masked regions are shown. Otherwise, selected regions are shown.

+

-

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

+

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

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

+

+

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

Set the opacity of the specified channel. -

-This procedure sets the specified channel's opacity.

- -

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

gimp_channel_get_color ()

gboolean    gimp_channel_get_color          (gint32 channel_ID,
+

+

+This procedure sets the specified channel's opacity.

+

+ +

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

+gimp_channel_get_color ()

+
gboolean    gimp_channel_get_color          (gint32 channel_ID,
                                              GimpRGB *color);

+>GimpRGB *color); +

Get the compositing color of the specified channel. -

-This procedure returns the specified channel's compositing color.

- -

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

gimp_channel_set_color ()

gboolean    gimp_channel_set_color          (gint32 channel_ID,
+

+

+This procedure returns the specified channel's compositing color.

+

+ +

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

+gimp_channel_set_color ()

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

+>GimpRGB *color); +

Set the compositing color of the specified channel. -

-This procedure sets the specified channel's compositing color.

- -

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

gimp_channel_combine_masks ()

gboolean    gimp_channel_combine_masks      (gint32 channel1_ID,
+

+

+This procedure sets the specified channel's compositing color.

+

+ +

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

+gimp_channel_combine_masks ()

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

+ gint offy); +

Combine two channel masks. -

+

+

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

+the first channel.

+

-

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

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+channel1_ID : The channel1. +
+channel2_ID : The channel2. +
+operation : The selection operation. +
+offx : x offset between upper left corner of channels: (second - first). +
+offy : y offset between upper left corner of channels: (second - first). +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcolor.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpcolor.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcolor.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpcolor.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpcolor

gimpcolor

gimpcolor — Functions for manipulating color.

Synopsis

+
+
+
+gimpcolor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpcolor

+

gimpcolor — Functions for manipulating color.

+
+
+

Synopsis

+
 
 
 
@@ -56,31 +95,78 @@
 gboolean    gimp_threshold                  (gint32 drawable_ID,
                                              gint low_threshold,
                                              gint high_threshold);
-

Description

+

+
+
+

Description

+

Functions for manipulating color, including curves and histograms. -

Details

gimp_brightness_contrast ()

gboolean    gimp_brightness_contrast        (gint32 drawable_ID,
+

+
+
+

Details

+
+

+gimp_brightness_contrast ()

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

+ gint contrast); +

Modify brightness/contrast in the specified drawable. -

+

+

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

+are defined between -127 and 127.

+

-

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

gimp_levels ()

gboolean    gimp_levels                     (gint32 drawable_ID,
+

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

+gimp_levels ()

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

+ gint high_output); +

Modifies intensity levels in the specified drawable. -

+

+

This tool allows intensity levels in the specified drawable to be remapped according to a set of parameters. The low/high input levels specify an initial mapping from the source intensities. The gamma @@ -92,54 +178,212 @@ intensity mapping--that is, no final intensity will be lower than the low output level and no final intensity will be higher than the high output level. This tool is only valid on RGB color and -grayscale images. It will not operate on indexed drawables.

+grayscale images. It will not operate on indexed drawables.

+

-

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

gimp_levels_auto ()

gboolean    gimp_levels_auto                (gint32 drawable_ID);

Warning

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

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

- -

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

gimp_levels_stretch ()

gboolean    gimp_levels_stretch             (gint32 drawable_ID);

+

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

+gimp_levels_auto ()

+
gboolean    gimp_levels_auto                (gint32 drawable_ID);
+
+

Warning

+

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

+
+

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

+

+ +

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

+gimp_levels_stretch ()

+
gboolean    gimp_levels_stretch             (gint32 drawable_ID);
+

Automatically modifies intensity levels in the specified drawable. -

+

+

This procedure allows intensity levels in the specified drawable to be remapped according to a set of guessed parameters. It is equivalent to clicking the \"Auto\" button in the Levels tool. This procedure is only valid on RGB color and grayscale images. It will -not operate on indexed drawables.

+not operate on indexed drawables.

+

-

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

gimp_posterize ()

gboolean    gimp_posterize                  (gint32 drawable_ID,
-                                             gint levels);

+

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

+gimp_posterize ()

+
gboolean    gimp_posterize                  (gint32 drawable_ID,
+                                             gint levels);
+

Posterize the specified drawable. -

+

+

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

+intensity channel to the specified 'levels' parameter.

+

-

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

gimp_desaturate ()

gboolean    gimp_desaturate                 (gint32 drawable_ID);

+

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

+gimp_desaturate ()

+
gboolean    gimp_desaturate                 (gint32 drawable_ID);
+

Desaturate the contents of the specified drawable. -

+

+

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

+This procedure only works on drawables of type RGB color.

+

-

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

gimp_equalize ()

gboolean    gimp_equalize                   (gint32 drawable_ID,
-                                             gboolean mask_only);

+

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

+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. Each intensity channel is equalizeed independently. The equalized intensity is given as inten' = (255 - inten). Indexed color @@ -147,67 +391,198 @@ specifies whether to adjust only the area of the image within the selection bounds, or the entire image based on the histogram of the selected area. If there is no selection, the entire image is -adjusted based on the histogram for the entire image.

+adjusted based on the histogram for the entire image.

+

-

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

gimp_invert ()

gboolean    gimp_invert                     (gint32 drawable_ID);

+

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

+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 intensity channel is inverted independently. The inverted intensity is given as inten' = (255 - inten). Indexed color drawables are not -valid for this operation.

+valid for this operation.

+

-

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

gimp_curves_spline ()

gboolean    gimp_curves_spline              (gint32 drawable_ID,
+

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

+gimp_curves_spline ()

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

+ const guint8 *control_pts); +

Modifies the intensity curve(s) for specified drawable. -

+

+

Modifies the intensity mapping for one channel in the specified drawable. The drawable must be either grayscale or RGB, and the channel can be either an intensity component, or the value. The 'control_pts' parameter is an array of integers which define a set of control points which describe a Catmull Rom spline which yields the final intensity curve. Use the 'gimp_curves_explicit' function -to explicitly modify intensity levels.

+to explicitly modify intensity levels.

+

-

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

gimp_curves_explicit ()

gboolean    gimp_curves_explicit            (gint32 drawable_ID,
+

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

+gimp_curves_explicit ()

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

+ const guint8 *curve); +

Modifies the intensity curve(s) for specified drawable. -

+

+

Modifies the intensity mapping for one channel in the specified drawable. The drawable must be either grayscale or RGB, and the channel can be either an intensity component, or the value. The 'curve' parameter is an array of bytes which explicitly defines how each pixel value in the drawable will be modified. Use the 'gimp_curves_spline' function to modify intensity levels with -Catmull Rom splines.

+Catmull Rom splines.

+

-

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

gimp_color_balance ()

gboolean    gimp_color_balance              (gint32 drawable_ID,
+

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

+gimp_color_balance ()

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

+ gdouble yellow_blue); +

Modify the color balance of the specified drawable. -

+

+

Modify the color balance of the specified drawable. There are three axis which can be modified: cyan-red, magenta-green, and yellow-blue. Negative values increase the amount of the former, @@ -215,34 +590,121 @@ be controlled with the 'transfer_mode' setting, which allows shadows, midtones, and highlights in an image to be affected differently. The 'preserve_lum' parameter, if non-zero, ensures that -the luminosity of each pixel remains fixed.

+the luminosity of each pixel remains fixed.

+

-

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

gimp_colorize ()

gboolean    gimp_colorize                   (gint32 drawable_ID,
+

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

+gimp_colorize ()

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

+ gdouble lightness); +

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

+

+

Desatures the drawable, then tints it with the specified color. This tool is only valid on RGB color images. It will not operate on -grayscale or indexed drawables.

+grayscale or indexed drawables.

+

-

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

Since GIMP 2.2 -


gimp_histogram ()

gboolean    gimp_histogram                  (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_histogram ()

+
gboolean    gimp_histogram                  (gint32 drawable_ID,
                                              GimpHistogramChannel channel,
                                              gint start_range,
                                              gint end_range,
@@ -251,10 +713,12 @@
                                              gdouble *median,
                                              gdouble *pixels,
                                              gdouble *count,
-                                             gdouble *percentile);

+ gdouble *percentile); +

Returns information on the intensity histogram for the specified drawable. -

+

+

This tool makes it possible to gather information about the intensity histogram of a drawable. A channel to examine is first specified. This can be either value, red, green, or blue, depending @@ -267,48 +731,196 @@ returned. Counts of pixels are weighted by any associated alpha values and by the current selection mask. That is, pixels that lie outside an active selection mask will not be counted. Similarly, -pixels with transparent alpha values will not be counted.

+pixels with transparent alpha values will not be counted.

+

-

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

gimp_hue_saturation ()

gboolean    gimp_hue_saturation             (gint32 drawable_ID,
+

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

+gimp_hue_saturation ()

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

+ gdouble saturation); +

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

+

+

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

+provides the capability to limit range of affected hues.

+

-

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

gimp_threshold ()

gboolean    gimp_threshold                  (gint32 drawable_ID,
+

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

+gimp_threshold ()

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

+ gint high_threshold); +

Threshold the specified drawable. -

+

+

This procedures generates a threshold map of the specified drawable. All pixels between the values of 'low_threshold' and 'high_threshold' are replaced with white, and all other pixels with -black.

+black.

+

-

drawable_ID : The drawable. -
low_threshold : The low threshold value. -
high_threshold : The high threshold value. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The drawable. +
+low_threshold : The low threshold value. +
+high_threshold : The high threshold value. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcontext.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpcontext.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpcontext.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpcontext.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpcontext

gimpcontext

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

Synopsis

+
+
+
+gimpcontext
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpcontext

+

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

+
+
+

Synopsis

+
 
 
 
@@ -33,249 +72,736 @@
 gboolean    gimp_context_set_palette        (const gchar *name);
 gchar*      gimp_context_get_font           (void);
 gboolean    gimp_context_set_font           (const gchar *name);
-

Description

+

+
+
+

Description

+

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

Details

gimp_context_push ()

gboolean    gimp_context_push               (void);

+

+
+
+

Details

+
+

+gimp_context_push ()

+
gboolean    gimp_context_push               (void);
+

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

+

+

This procedure creates a new context by copying the current context. This copy becomes the new current context for the calling plug-in -until it is popped again.

+until it is popped again.

+

-

Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_context_pop ()

gboolean    gimp_context_pop                (void);

+

+
++ + + + +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 -context for the calling plug-in.

- -

Returns : TRUE on success. +context for the calling plug-in.

+

-

Since GIMP 2.2 -


gimp_context_get_foreground ()

gboolean    gimp_context_get_foreground     (
+
++ + + + +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_context_get_foreground ()

+
gboolean    gimp_context_get_foreground     (GimpRGB *foreground);

+>GimpRGB *foreground); +

Get the current GIMP foreground color. -

+

+

This procedure returns the current GIMP foreground color. The foreground color is used in a variety of tools such as paint tools, -blending, and bucket fill.

+blending, and bucket fill.

+

-

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

Since GIMP 2.2 -


+
+
+

+gimp_context_set_foreground ()

+
gboolean    gimp_context_set_foreground     (const GimpRGB *foreground);

+>GimpRGB *foreground); +

Set the current GIMP foreground color. -

+

+

This procedure sets the current GIMP foreground color. After this is set, operations which use foreground such as paint tools, blending, -and bucket fill will use the new value.

- -

foreground : The foreground color. -
Returns : TRUE on success. +and bucket fill will use the new value.

+

-

Since GIMP 2.2 -


+
+
+

+gimp_context_get_background ()

+
gboolean    gimp_context_get_background     (GimpRGB *background);

+>GimpRGB *background); +

Get the current GIMP background color. -

+

+

This procedure returns the current GIMP background color. The background color is used in a variety of tools such as blending, -erasing (with non-alpha images), and image filling.

+erasing (with non-alpha images), and image filling.

+

-

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

Since GIMP 2.2 -


+
+
+

+gimp_context_set_background ()

+
gboolean    gimp_context_set_background     (const GimpRGB *background);

+>GimpRGB *background); +

Set the current GIMP background color. -

+

+

This procedure sets the current GIMP background color. After this is set, operations which use background such as blending, filling images, clearing, and erasing (in non-alpha images) will use the new -value.

- -

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

+

-

Since GIMP 2.2 -


gimp_context_set_default_colors ()

gboolean    gimp_context_set_default_colors (void);

+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_context_set_default_colors ()

+
gboolean    gimp_context_set_default_colors (void);
+

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

+

+

This procedure sets the current GIMP foreground and background -colors to their initial default values, black and white.

- -

Returns : TRUE on success. +colors to their initial default values, black and white.

+

-

Since GIMP 2.2 -


gimp_context_swap_colors ()

gboolean    gimp_context_swap_colors        (void);

+

+
++ + + + +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 colors, so that the new foreground color becomes the old background -color and vice versa.

+color and vice versa.

+

-

Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_context_get_opacity ()

gdouble     gimp_context_get_opacity        (void);

+

+
++ + + + +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_context_get_opacity ()

+
gdouble     gimp_context_get_opacity        (void);
+

Get the opacity. -

+

+

This procedure returns the opacity setting. The return value is a -floating point number between 0 and 100.

- -

Returns : The opacity. +floating point number between 0 and 100.

+

-

Since GIMP 2.2 -


gimp_context_set_opacity ()

gboolean    gimp_context_set_opacity        (gdouble opacity);

+

+
++ + + + +
+Returns : The opacity. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_context_set_opacity ()

+
gboolean    gimp_context_set_opacity        (gdouble opacity);
+

Set the opacity. -

+

+

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

- -

opacity : The opacity. -
Returns : TRUE on success. +floating point number between 0 and 100.

+

-

Since GIMP 2.2 -


gimp_context_get_paint_mode ()

GimpLayerModeEffects gimp_context_get_paint_mode
-                                            (void);

+

+
++ + + + + + + + + + +
+opacity : The opacity. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_context_get_paint_mode ()

+
GimpLayerModeEffects gimp_context_get_paint_mode
+                                            (void);
+

Get the paint mode. -

+

+

This procedure returns the paint-mode setting. The return value is an integer which corresponds to the values listed in the argument -description.

+description.

+

-

Returns : The paint mode. - -

Since GIMP 2.2 -


gimp_context_set_paint_mode ()

gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);

+

+
++ + + + +
+Returns : The paint mode. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_context_set_paint_mode ()

+
gboolean    gimp_context_set_paint_mode     (GimpLayerModeEffects paint_mode);
+

Set the paint mode. -

-This procedure modifies the paint_mode setting.

- -

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

Since GIMP 2.2 -


gimp_context_get_brush ()

gchar*      gimp_context_get_brush          (void);

+

+

+This procedure modifies the paint_mode setting.

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+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 paint operations and stroke operations use this brush to control the -application of paint to the image.

+application of paint to the image.

+

-

Returns : The name of the active brush. - -

Since GIMP 2.2 -


gimp_context_set_brush ()

gboolean    gimp_context_set_brush          (const gchar *name);

+

+
++ + + + +
+Returns : The name of the active brush. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 name. The name is simply a string which corresponds to one of the names of the installed brushes. If there is no matching brush found, this procedure will return an error. Otherwise, the specified brush -becomes active and will be used in all subsequent paint operations.

- -

name : The name o the brush. -
Returns : TRUE on success. +becomes active and will be used in all subsequent paint operations.

+

-

Since GIMP 2.2 -


gimp_context_get_pattern ()

gchar*      gimp_context_get_pattern        (void);

+

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

Since GIMP 2.2 +

+
+
+
+

+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 clone and bucket-fill operations with patterns will use this pattern -to control the application of paint to the image.

+to control the application of paint to the image.

+

-

Returns : The name of the active pattern. - -

Since GIMP 2.2 -


gimp_context_set_pattern ()

gboolean    gimp_context_set_pattern        (const gchar *name);

+

+
++ + + + +
+Returns : The name of the active pattern. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 name. The name is simply a string which corresponds to one of the names of the installed patterns. If there is no matching pattern found, this procedure will return an error. Otherwise, the specified pattern becomes active and will be used in all subsequent paint -operations.

- -

name : The name of the pattern. -
Returns : TRUE on success. +operations.

+

-

Since GIMP 2.2 -


gimp_context_get_gradient ()

gchar*      gimp_context_get_gradient       (void);

+

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

Since GIMP 2.2 +

+
+
+
+

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

- -

Returns : The name of the active gradient. - -

Since GIMP 2.2 -


gimp_context_set_gradient ()

gboolean    gimp_context_set_gradient       (const gchar *name);

+

+

+This procedure returns the name of the currently active gradient.

+

+ +

+
++ + + + +
+Returns : The name of the active gradient. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 \"current\" one. The name is simply a string which corresponds to one of the loaded gradients. If no matching gradient is found, this procedure will return an error. Otherwise, the specified gradient will become active and will be used for subsequent custom gradient -operations.

- -

name : The name of the gradient. -
Returns : TRUE on success. +operations.

+

-

Since GIMP 2.2 -


gimp_context_get_palette ()

gchar*      gimp_context_get_palette        (void);

+

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

Since GIMP 2.2 +

+
+
+
+

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

- -

Returns : The name of the active palette. - -

Since GIMP 2.2 -


gimp_context_set_palette ()

gboolean    gimp_context_set_palette        (const gchar *name);

+

+

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

+

+ +

+
++ + + + +
+Returns : The name of the active palette. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 name. The name is simply a string which corresponds to one of the names of the installed palettes. If no matching palette is found, this procedure will return an error. Otherwise, the specified palette becomes active and will be used in all subsequent palette -operations.

- -

name : The name of the palette. -
Returns : TRUE on success. +operations.

+

-

Since GIMP 2.2 -


gimp_context_get_font ()

gchar*      gimp_context_get_font           (void);

+

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

Since GIMP 2.2 +

+
+
+
+

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

- -

Returns : The name of the active font. - -

Since GIMP 2.2 -


gimp_context_set_font ()

gboolean    gimp_context_set_font           (const gchar *name);

+

+

+This procedure returns the name of the currently active font.

+

+ +

+
++ + + + +
+Returns : The name of the active font. + +
+

Since GIMP 2.2 +

+
+
+
+

+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 name. The name is simply a string which corresponds to one of the names of the installed fonts. If no matching font is found, this procedure will return an error. Otherwise, the specified font -becomes active and will be used in all subsequent font operations.

- -

name : The name of the font. -
Returns : TRUE on success. +becomes active and will be used in all subsequent font operations.

+

-

Since GIMP 2.2 -

+

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

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpconvert.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpconvert.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpconvert.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpconvert.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpconvert

gimpconvert

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

Synopsis

+
+
+
+gimpconvert
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpconvert

+

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

+
+
+

Synopsis

+
 
 
 
@@ -11,37 +50,98 @@
                                              gboolean alpha_dither,
                                              gboolean remove_unused,
                                              const gchar *palette);
-

Description

+

+
+
+

Description

+

Conversions between RGB, indexed, and grayscale modes. -

Details

gimp_image_convert_rgb ()

gboolean    gimp_image_convert_rgb          (gint32 image_ID);

+

+
+
+

Details

+
+

+gimp_image_convert_rgb ()

+
gboolean    gimp_image_convert_rgb          (gint32 image_ID);
+

Convert specified image to RGB color -

+

+

This procedure converts the specified image to RGB color. This process requires an image of type GIMP_GRAY or GIMP_INDEXED. No image content is lost in this process aside from the colormap for an -indexed image.

+indexed image.

+

-

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

gimp_image_convert_grayscale ()

gboolean    gimp_image_convert_grayscale    (gint32 image_ID);

+

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

+gimp_image_convert_grayscale ()

+
gboolean    gimp_image_convert_grayscale    (gint32 image_ID);
+

Convert specified image to grayscale (256 intensity levels) -

+

+

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

+type GIMP_RGB or GIMP_INDEXED.

+

-

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

gimp_image_convert_indexed ()

gboolean    gimp_image_convert_indexed      (gint32 image_ID,
+

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

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

+ const gchar *palette); +

Convert specified image to and Indexed image -

+

+

This procedure converts the specified image to 'indexed' color. This process requires an image of type GIMP_GRAY or GIMP_RGB. The 'palette_type' specifies what kind of palette to use, A type of '0' @@ -54,14 +154,69 @@ dithering to use. '0' means no dithering, '1' means standard Floyd-Steinberg error diffusion, '2' means Floyd-Steinberg error diffusion with reduced bleeding, '3' means dithering based on pixel -location ('Fixed' dithering).

+location ('Fixed' dithering).

+

-

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

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

gimpdisplay

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

Synopsis

+
+
+
+gimpdisplay
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpdisplay

+

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

+
+
+

Synopsis

+
 
 
 
@@ -7,48 +46,156 @@
 gboolean    gimp_displays_flush             (void);
 gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
                                              gint32 new_image_ID);
-

Description

+

+
+
+

Description

+

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

Details

gimp_display_new ()

gint32      gimp_display_new                (gint32 image_ID);

+

+
+
+

Details

+
+

+gimp_display_new ()

+
gint32      gimp_display_new                (gint32 image_ID);
+

Create a new display for the specified image. -

+

+

Creates a new display for the specified image. If the image already has a display, another is added. Multiple displays are handled transparently by the GIMP. The newly created display is returned and can be subsequently destroyed with a call to 'gimp-display-delete'. -This procedure only makes sense for use with the GIMP UI.

+This procedure only makes sense for use with the GIMP UI.

+

-

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

gimp_display_delete ()

gboolean    gimp_display_delete             (gint32 display_ID);

+

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

+gimp_display_delete ()

+
gboolean    gimp_display_delete             (gint32 display_ID);
+

Delete the specified display. -

+

+

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

+deleted also.

+

-

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

gimp_displays_flush ()

gboolean    gimp_displays_flush             (void);

+

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

+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 success status. Its purpose is to flush all pending updates of image manipulations to the user interface. It should be called whenever -appropriate.

+appropriate.

+

-

Returns : TRUE on success. -

gimp_displays_reconnect ()

gboolean    gimp_displays_reconnect         (gint32 old_image_ID,
-                                             gint32 new_image_ID);

+

+
++ + + + +
+Returns : TRUE on success. +
+
+
+
+

+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 new_image. If the old_image has no display or new_image already has a display the reconnect is not performed and the procedure returns -without success. You should rarely need to use this function.

+without success. You should rarely need to use this function.

+

-

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

+
++ + + + + + + + + + + + + + +
+old_image_ID : The old image (must have at least one display). +
+new_image_ID : The new image (must not have a display). +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpdrawablecombobox.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpdrawablecombobox

gimpdrawablecombobox

gimpdrawablecombobox — A widget providing a popup menu of drawables.

Synopsis

+
+
+
+gimpdrawablecombobox
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpdrawablecombobox

+

gimpdrawablecombobox — A widget providing a popup menu of drawables.

+
+
+

Synopsis

+
 
 
 
@@ -17,29 +56,74 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_layer_combo_box_new        (GimpDrawableConstraintFunc constraint,
                                              gpointer data);
-

Description

+

+
+
+

Description

+

A widget providing a popup menu of drawables. -

Details

GimpDrawableConstraintFunc ()

gboolean    (*GimpDrawableConstraintFunc)   (gint32 image_id,
+

+
+
+

Details

+
+

+GimpDrawableConstraintFunc ()

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

+ gpointer data); +

-

image_id : -
drawable_id : -
data : -
Returns : - - -

+
+
+

+gimp_drawable_combo_box_new ()

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

+ gpointer data); +

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

+

+

You should use gimp_int_combo_box_connect() to initialize and connect @@ -49,45 +133,134 @@ drawable ID and gimp_int_combo_box_get_active() to retrieve the ID -of the selected drawable.

+of the selected drawable.

+

-

+

Since GIMP 2.2 +

+
+
+
+

+gimp_channel_combo_box_new ()

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

+ gpointer data); +

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

+channels. See gimp_drawable_combo_box() for more info.

+

-

+

Since GIMP 2.2 +

+
+
+
+

+gimp_layer_combo_box_new ()

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

+ gpointer data); +

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

+layers. See gimp_drawable_combo_box() for more info.

+

-

+

Since GIMP 2.2 +

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawable.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpdrawable.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpdrawable.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpdrawable

gimpdrawable

gimpdrawable — Functions to manipulate drawables.

Synopsis

+
+
+
+gimpdrawable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpdrawable

+

gimpdrawable — Functions to manipulate drawables.

+
+
+

Synopsis

+
 
 
 
@@ -120,10 +159,21 @@
                                              gint flags,
                                              gint size,
                                              gconstpointer data);
-

Description

+

+
+
+

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 */
@@ -133,195 +183,689 @@
   GimpTile *tiles;         /* the normal tiles */
   GimpTile *shadow_tiles;  /* the shadow tiles */
 } 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 hold tile data for transfer to and from the core. -

+

+

Note that the name of this function is somewhat misleading, because it suggests that it simply returns a handle. This is not the case: if the function is called multiple times, it creates separate tile lists each time, which will usually produce undesired results. -

+

+

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

+transferred back to the core.

+

-

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

gimp_drawable_detach ()

void        gimp_drawable_detach            (GimpDrawable *drawable);

+

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

+gimp_drawable_detach ()

+
void        gimp_drawable_detach            (GimpDrawable *drawable);
+

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

+drawable after having called gimp_drawable_detach().

+

-

drawable : The GimpDrawable to detach from the core -

gimp_drawable_flush ()

void        gimp_drawable_flush             (GimpDrawable *drawable);

+

+
++ + + + +
+drawable : The GimpDrawable to detach from the core +
+
+
+
+

+gimp_drawable_flush ()

+
void        gimp_drawable_flush             (GimpDrawable *drawable);
+

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

+unless gimp_drawable_flush() has been called beforehand.

+

-

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

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

gimp_drawable_delete ()

gboolean    gimp_drawable_delete            (gint32 drawable_ID);

+

+
+
+
+

+gimp_drawable_delete ()

+
gboolean    gimp_drawable_delete            (gint32 drawable_ID);
+

Delete a drawable. -

+

+

This procedure deletes the specified drawable. This must not be done if the gimage containing this drawable was already deleted or if the drawable was already removed from the image. The only case in which this procedure is useful is if you want to get rid of a drawable -which has not yet been added to an image.

+which has not yet been added to an image.

+

-

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

gimp_drawable_get_name ()

gchar*      gimp_drawable_get_name          (gint32 drawable_ID);

+

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

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

+

+

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

Set the name of the specified drawable. -

-This procedure sets the specified drawable's name.

- -

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

gimp_drawable_get_visible ()

gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);

+

+

+This procedure sets the specified drawable's name.

+

+ +

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

+gimp_drawable_get_visible ()

+
gboolean    gimp_drawable_get_visible       (gint32 drawable_ID);
+

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

+

+

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

Set the visibility of the specified drawable. -

-This procedure sets the specified drawable's visibility.

- -

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

gimp_drawable_get_linked ()

gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);

+

+

+This procedure sets the specified drawable's visibility.

+

+ +

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

+gimp_drawable_get_linked ()

+
gboolean    gimp_drawable_get_linked        (gint32 drawable_ID);
+

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

+

+

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

Set the linked state of the specified drawable. -

-This procedure sets the specified drawable's linked state.

- -

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

gimp_drawable_get_tattoo ()

gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);

+

+

+This procedure sets the specified drawable's linked state.

+

+ +

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

+gimp_drawable_get_tattoo ()

+
gint        gimp_drawable_get_tattoo        (gint32 drawable_ID);
+

Get the tattoo of the specified drawable. -

+

+

This procedure returns the specified drawable's tattoo. A tattoo is a unique and permanent identifier attached to a drawable that can be used to uniquely identify a drawable within an image even between -sessions

+sessions

+

-

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

gimp_drawable_set_tattoo ()

gboolean    gimp_drawable_set_tattoo        (gint32 drawable_ID,
-                                             gint tattoo);

+

+
++ + + + + + + + + + +
+drawable_ID : The drawable. +
+Returns : The drawable 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 unique and permanent identifier attached to a drawable that can be used to uniquely identify a drawable within an image even between -sessions

+sessions

+

-

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

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

+ gint *num_channels); +

Gets the value of the pixel at the specified coordinates. -

+

+

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

+bytes-per-pixel value for the specified drawable.

+

-

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

gimp_drawable_set_pixel ()

gboolean    gimp_drawable_set_pixel         (gint32 drawable_ID,
+

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

+gimp_drawable_set_pixel ()

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

+ const guint8 *pixel); +

Sets the value of the pixel at the specified coordinates. -

+

+

This procedure sets the pixel value at the specified coordinates. The 'num_channels' argument must always be equal to the bytes-per-pixel value for the spec ified drawable. Note that this function is not undoable, you should use it only on drawables you -just created yourself.

+just created yourself.

+

-

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

gimp_drawable_get_tile ()

GimpTile*   gimp_drawable_get_tile          (GimpDrawable *drawable,
+

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

+gimp_drawable_get_tile ()

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

+ gint col); +

-

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

gimp_drawable_get_tile2 ()

GimpTile*   gimp_drawable_get_tile2         (GimpDrawable *drawable,
+

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

+gimp_drawable_get_tile2 ()

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

- -

drawable : -
shadow : -
x : -
y : -
Returns : + gint y); +

- -


gimp_drawable_get_thumbnail_data ()

guchar*     gimp_drawable_get_thumbnail_data
+

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

+gimp_drawable_get_thumbnail_data ()

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

- -

drawable_ID : -
width : -
height : -
bpp : -
Returns : - + gint *bpp); +

-


gimp_drawable_get_sub_thumbnail_data ()

guchar*     gimp_drawable_get_sub_thumbnail_data
+

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

+gimp_drawable_get_sub_thumbnail_data ()

+
guchar*     gimp_drawable_get_sub_thumbnail_data
                                             (gint32 drawable_ID,
                                              gint src_x,
                                              gint src_y,
@@ -329,46 +873,161 @@
                                              gint src_height,
                                              gint *dest_width,
                                              gint *dest_height,
-                                             gint *bpp);

+ gint *bpp); +

-

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

gimp_drawable_get_color_uchar ()

void        gimp_drawable_get_color_uchar   (gint32 drawable_ID,
+

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

+gimp_drawable_get_color_uchar ()

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

- -

drawable_ID : -
color : -
color_uchar : + guchar *color_uchar); +

- -


gimp_drawable_merge_shadow ()

gboolean    gimp_drawable_merge_shadow      (gint32 drawable_ID,
-                                             gboolean undo);

+

+
++ + + + + + + + + + + + + + +
+drawable_ID : +
+color : +
+color_uchar : + + +
+
+
+
+

+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 (for temporary processing) with the specified drawable. The \"undo\" parameter specifies whether to add an undo step for the operation. -Requesting no undo is useful for such applications as 'auto-apply'.

+Requesting no undo is useful for such applications as 'auto-apply'.

+

-

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

gimp_drawable_fill ()

gboolean    gimp_drawable_fill              (gint32 drawable_ID,
-                                             GimpFillType fill_type);

+

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

+gimp_drawable_fill ()

+
gboolean    gimp_drawable_fill              (gint32 drawable_ID,
+                                             GimpFillType fill_type);
+

Fill the drawable with the specified fill mode. -

+

+

This procedure fills the drawable with the fill mode. If the fill mode is foreground the current foreground color is used. If the fill mode is background, the current background color is used. If the @@ -377,37 +1036,110 @@ channel is set to transparent. If the drawable has no alpha channel, it is filled to white. No fill leaves the drawable's contents undefined. This procedure is unlike the bucket fill tool because it -fills regardless of a selection

+fills regardless of a selection

+

-

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

gimp_drawable_update ()

gboolean    gimp_drawable_update            (gint32 drawable_ID,
+

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

+ gint height); +

Update the specified region of the drawable. -

+

+

This procedure updates the specified region of the drawable. The (x, y) coordinate pair is relative to the drawable's origin, not to the image origin. Therefore, the entire drawable can be updated using -(0, 0, width, height).

+(0, 0, width, height).

+

-

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

gimp_drawable_mask_bounds ()

gboolean    gimp_drawable_mask_bounds       (gint32 drawable_ID,
+

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

+gimp_drawable_mask_bounds ()

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

+ gint *y2); +

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

+

+

This procedure returns whether there is a selection. If there is one, the upper left and lower righthand corners of its bounding box are returned. These coordinates are specified relative to the @@ -419,251 +1151,923 @@ Note that the returned boolean does NOT correspond with the returned region being empty or not, it always returns whether the selection is non_empty. See gimp_drawable_mask_intersect() for a boolean -return value which is more useful in most cases.

+return value which is more useful in most cases.

+

-

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

gimp_drawable_mask_intersect ()

gboolean    gimp_drawable_mask_intersect    (gint32 drawable_ID,
+

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

+gimp_drawable_mask_intersect ()

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

+ gint *height); +

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

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_get_image ()

gint32      gimp_drawable_get_image         (gint32 drawable_ID);

+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_get_image ()

+
gint32      gimp_drawable_get_image         (gint32 drawable_ID);
+

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.

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

+

+

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

+
+

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

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

+

+

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

+will be one of: { RGBA , GRAYA, INDEXEDA }.

+

-

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

+
+
+

+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 channel. If the type is currently Gray, for instance, the returned type would be GrayA. If the drawable already has an alpha channel, -the drawable's type is simply returned.

+the drawable's type is simply returned.

+

-

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

+
+
+

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

+

+

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

Returns whether the drawable is an RGB type. -

+

+

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

+{ RGB, RGBA }.

+

-

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

+

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

Returns whether the drawable is a grayscale type. -

+

+

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

+{ Gray, GrayA }.

+

-

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

+

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

Returns whether the drawable is an indexed type. -

+

+

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

+{ Indexed, IndexedA }.

+

-

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

gimp_drawable_bpp ()

gint        gimp_drawable_bpp               (gint32 drawable_ID);

+

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

+gimp_drawable_bpp ()

+
gint        gimp_drawable_bpp               (gint32 drawable_ID);
+

Returns the bytes per pixel. -

+

+

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

+of channels) for the specified drawable.

+

-

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

gimp_drawable_width ()

gint        gimp_drawable_width             (gint32 drawable_ID);

+

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

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

+

+

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

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

+

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

+ gint *offset_y); +

Returns the offsets for the drawable. -

+

+

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

+The offsets of a channel will be returned as 0.

+

-

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

gimp_drawable_is_layer ()

gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);

+

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

+gimp_drawable_is_layer ()

+
gboolean    gimp_drawable_is_layer          (gint32 drawable_ID);
+

Returns whether the drawable is a layer. -

+

+

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

+layer.

+

-

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

+

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

Returns whether the drawable is a layer mask. -

+

+

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

+mask.

+

-

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

+

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

Returns whether the drawable is a channel. -

+

+

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

+channel.

+

-

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

gimp_drawable_offset ()

gboolean    gimp_drawable_offset            (gint32 drawable_ID,
+

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

+ gint offset_y); +

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

+

+

This procedure offsets the specified drawable by the amounts specified by 'offset_x' and 'offset_y'. If 'wrap_around' is set to TRUE, then portions of the drawable which are offset out of bounds are wrapped around. Alternatively, the undefined regions of the drawable can be filled with transparency or the background color, as -specified by the 'fill_type' parameter.

+specified by the 'fill_type' parameter.

+

-

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

+
+
+

+gimp_drawable_parasite_find ()

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

+ const gchar *name); +

Finds the named parasite in a drawable -

+

+

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

+a drawable.

+

-

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

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

+ gchar ***parasites); +

List all parasites. -

-Returns a list of all currently attached parasites.

- -

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

gimp_drawable_parasite_attach ()

gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
+

+

+Returns a list of all currently attached parasites.

+

+ +

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

+gimp_drawable_parasite_attach ()

+
gboolean    gimp_drawable_parasite_attach   (gint32 drawable_ID,
                                              GimpParasite *parasite);

+>GimpParasite *parasite); +

Add a parasite to a drawable. -

+

+

This procedure attaches a parasite to a drawable. It has no return -values.

+values.

+

-

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

+

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

Removes a parasite from a drawable. -

+

+

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

+values.

+

-

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
+

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

+ gconstpointer data); +

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

-See Also: gimp_drawable_parasite_attach()

- -

+ + +
drawable_ID : the ID of the GimpDrawable to attach the +

+See Also: gimp_drawable_parasite_attach()

+

+ +

+
++ + + + + + + + + + + + + + + + +
+drawable_ID : the ID of the GimpDrawable to attach the GimpParasite to. -
name : the name of the +
+name : the name of the GimpParasite to create and attach. -
flags : the flags set on the +
+flags : the flags set on the GimpParasite. -
size : the size of the parasite data in bytes. -
data : a pointer to the data attached with the +
+size : the size of the parasite data in bytes. +
+data : a pointer to the data attached with the GimpParasite. -
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpdrawabletransform.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpdrawabletransform

gimpdrawabletransform

gimpdrawabletransform —

Synopsis

+
+
+
+gimpdrawabletransform
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpdrawabletransform

+

gimpdrawabletransform —

+
+
+

Synopsis

+
 
 
 
@@ -162,16 +201,29 @@
                                              gdouble coeff_2_2,
                                              gboolean interpolate,
                                              gboolean clip_result);
-

Description

- -

Details

gimp_drawable_transform_flip_simple ()

gint32      gimp_drawable_transform_flip_simple
+
+
+
+

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

+

Flip the specified drawable either vertically or horizontally. -

+

+

This procedure flips the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating @@ -180,17 +232,60 @@ the axis needs to be specified. The return value is the ID of the flipped drawable. If there was no selection, this will be equal to the drawable ID supplied as input. Otherwise, this will be the newly -created and flipped drawable.

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_flip ()

gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_flip ()

+
gint32      gimp_drawable_transform_flip    (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
                                              gdouble x1,
@@ -199,9 +294,11 @@
                                              GimpInterpolationType interpolation,
                                              gboolean supersample,
                                              gint recursion_level,
-                                             gboolean clip_result);

+ gboolean clip_result); +

Flip the specified drawable around a given line. -

+

+

This procedure flips the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating @@ -211,46 +308,169 @@ will be equal to the drawable ID supplied as input. Otherwise, this will be the newly created and flipped drawable. The clip results parameter specifies wheter current selection will affect the -transform.

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_flip_default ()

gint32      gimp_drawable_transform_flip_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_flip_default ()

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

+ gboolean clip_result); +

Flip the specified drawable around a given line. -

+

+

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

+(depending on the 'interpolate' parameter).

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_perspective ()

gint32      gimp_drawable_transform_perspective
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_perspective ()

+
gint32      gimp_drawable_transform_perspective
                                             (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
@@ -264,10 +484,12 @@
                                              GimpInterpolationType interpolation,
                                              gboolean supersample,
                                              gint recursion_level,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

This procedure performs a possibly non-affine transformation on the specified drawable by allowing the corners of the original bounding box to be arbitrarily remapped to any values. The specified drawable @@ -282,26 +504,114 @@ these values, any affine transformation (rotation, scaling, translation) can be affected. Additionally, these values can be specified such that the resulting transformed drawable will appear -to have been projected via a perspective transform.

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_perspective_default ()

gint32      gimp_drawable_transform_perspective_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_perspective_default ()

+
gint32      gimp_drawable_transform_perspective_default
                                             (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
@@ -312,56 +622,181 @@
                                              gdouble x3,
                                              gdouble y3,
                                              gboolean interpolate,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

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

+(depending on the 'interpolate' parameter).

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_rotate_simple ()

gint32      gimp_drawable_transform_rotate_simple
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_rotate_simple ()

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

+ gboolean clip_result); +

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

+

+

This function rotates the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating selection which is then rotated by the specified amount. The return value is the ID of the rotated drawable. If there was no selection, this will be equal to the drawable ID supplied as input. Otherwise, -this will be the newly created and rotated drawable.

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_rotate ()

gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_rotate ()

+
gint32      gimp_drawable_transform_rotate  (gint32 drawable_ID,
                                              gdouble angle,
                                              gboolean auto_center,
                                              gint center_x,
@@ -370,57 +805,182 @@
                                              GimpInterpolationType interpolation,
                                              gboolean supersample,
                                              gint recursion_level,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

This function rotates the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating selection which is then rotated by the specified amount. The return value is the ID of the rotated drawable. If there was no selection, this will be equal to the drawable ID supplied as input. Otherwise, -this will be the newly created and rotated drawable.

+this will be the newly created and rotated drawable.

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_rotate_default ()

gint32      gimp_drawable_transform_rotate_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_rotate_default ()

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

+ gboolean clip_result); +

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

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_scale ()

gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_scale ()

+
gint32      gimp_drawable_transform_scale   (gint32 drawable_ID,
                                              gdouble x0,
                                              gdouble y0,
                                              gdouble x1,
@@ -429,65 +989,192 @@
                                              GimpInterpolationType interpolation,
                                              gboolean supersample,
                                              gint recursion_level,
-                                             gboolean clip_result);

+ gboolean clip_result); +

Scale the specified drawable with extra parameters -

+

+

This procedure scales the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating selection which is then scaled by the specified amount. The return value is the ID of the scaled drawable. If there was no selection, this will be equal to the drawable ID supplied as input. Otherwise, -this will be the newly created and scaled drawable.

+this will be the newly created and scaled drawable.

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_scale_default ()

gint32      gimp_drawable_transform_scale_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_scale_default ()

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

+ gboolean clip_result); +

Scale the specified drawable with extra parameters -

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_shear ()

gint32      gimp_drawable_transform_shear   (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_shear ()

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

+ gboolean clip_result); +

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

+

+

This procedure shears the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a floating @@ -497,41 +1184,144 @@ this will be the newly created and sheard drawable. The shear type parameter indicates whether the shear will be applied horizontally or vertically. The magnitude can be either positive or negative and -indicates the extent (in pixels) to shear by.

+indicates the extent (in pixels) to shear by.

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_shear_default ()

gint32      gimp_drawable_transform_shear_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_shear_default ()

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

+ gboolean clip_result); +

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

+

+

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

- -

drawable_ID : The affected drawable. -
shear_type : Type of shear. -
magnitude : The magnitude of the shear. -
interpolate : Whether to use interpolation and supersampling. -
clip_result : Whether to clip results. -
Returns : The sheared drawable. +(depending on the 'interpolate' parameter).

+

-

Since GIMP 2.2 -


gimp_drawable_transform_2d ()

gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_2d ()

+
gint32      gimp_drawable_transform_2d      (gint32 drawable_ID,
                                              gdouble source_x,
                                              gdouble source_y,
                                              gdouble scale_x,
@@ -543,9 +1333,11 @@
                                              GimpInterpolationType interpolation,
                                              gboolean supersample,
                                              gint recursion_level,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

This procedure transforms the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a @@ -555,25 +1347,108 @@ then translating that point to the new position (dest_x, dest_y). The return value is the ID of the rotated drawable. If there was no selection, this will be equal to the drawable ID supplied as input. -Otherwise, this will be the newly created and transformed drawable.

+Otherwise, this will be the newly created and transformed drawable.

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_2d_default ()

gint32      gimp_drawable_transform_2d_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_2d_default ()

+
gint32      gimp_drawable_transform_2d_default
                                             (gint32 drawable_ID,
                                              gdouble source_x,
                                              gdouble source_y,
@@ -583,27 +1458,97 @@
                                              gdouble dest_x,
                                              gdouble dest_y,
                                              gboolean interpolate,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_drawable_transform_matrix ()

gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_matrix ()

+
gint32      gimp_drawable_transform_matrix  (gint32 drawable_ID,
                                              gdouble coeff_0_0,
                                              gdouble coeff_0_1,
                                              gdouble coeff_0_2,
@@ -617,9 +1562,11 @@
                                              GimpInterpolationType interpolation,
                                              gboolean supersample,
                                              gint recursion_level,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

This procedure transforms the specified drawable if no selection exists. If a selection exists, the portion of the drawable which lies under the selection is cut from the drawable and made into a @@ -627,27 +1574,120 @@ done by assembling a 3x3 matrix from the coefficients passed. The return value is the ID of the rotated drawable. If there was no selection, this will be equal to the drawable ID supplied as input. -Otherwise, this will be the newly created and transformed drawable.

+Otherwise, this will be the newly created and transformed drawable.

+

-

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

Since GIMP 2.2 -


gimp_drawable_transform_matrix_default ()

gint32      gimp_drawable_transform_matrix_default
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_transform_matrix_default ()

+
gint32      gimp_drawable_transform_matrix_default
                                             (gint32 drawable_ID,
                                              gdouble coeff_0_0,
                                              gdouble coeff_0_1,
@@ -659,26 +1699,109 @@
                                              gdouble coeff_2_1,
                                              gdouble coeff_2_2,
                                              gboolean interpolate,
-                                             gboolean clip_result);

+ gboolean clip_result); +

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

+

+

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

- -

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

+

-

Since GIMP 2.2 -

+

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

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpedit.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpedit.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpedit.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpedit.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpedit

gimpedit

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

Synopsis

+
+
+
+gimpedit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpedit

+

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

+
+
+

Synopsis

+
 
 
 
@@ -35,51 +74,137 @@
                                              gdouble x2,
                                              gdouble y2);
 gboolean    gimp_edit_stroke                (gint32 drawable_ID);
-

Description

+

+
+
+

Description

+

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

Details

gimp_edit_cut ()

gboolean    gimp_edit_cut                   (gint32 drawable_ID);

+

+
+
+

Details

+
+

+gimp_edit_cut ()

+
gboolean    gimp_edit_cut                   (gint32 drawable_ID);
+

Cut from the specified drawable. -

+

+

If there is a selection in the image, then the area specified by the selection is cut from the specified drawable and placed in an internal GIMP edit buffer. It can subsequently be retrieved using the 'gimp-edit-paste' command. If there is no selection, then the specified drawable will be removed and its contents stored in the -internal GIMP edit buffer.

+internal GIMP edit buffer.

+

-

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

+

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

Copy from the specified drawable. -

+

+

If there is a selection in the image, then the area specified by the selection is copied from the specified drawable and placed in an internal GIMP edit buffer. It can subsequently be retrieved using the 'gimp-edit-paste' command. If there is no selection, then the specified drawable's contents will be stored in the internal GIMP -edit buffer.

+edit buffer.

+

-

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

+

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

Copy from the projection. -

+

+

If there is a selection in the image, then the area specified by the selection is copied from the projection and placed in an internal GIMP edit buffer. It can subsequently be retrieved using the 'gimp-edit-paste' command. If there is no selection, then the projection's contents will be stored in the internal GIMP edit -buffer.

+buffer.

+

-

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

Since GIMP 2.2 -


gimp_edit_paste ()

gint32      gimp_edit_paste                 (gint32 drawable_ID,
-                                             gboolean paste_into);

+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_edit_paste ()

+
gint32      gimp_edit_paste                 (gint32 drawable_ID,
+                                             gboolean paste_into);
+

Paste buffer to the specified drawable. -

+

+

This procedure pastes a copy of the internal GIMP edit buffer to the specified drawable. The GIMP edit buffer will be empty unless a call was previously made to either 'gimp-edit-cut' or 'gimp-edit-copy'. @@ -94,48 +219,130 @@ selection is added. This procedure returns the new floating layer. The resulting floating selection will already be attached to the specified drawable, and a subsequent call to floating_sel_attach is -not needed.

+not needed.

+

-

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

+

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

Clear selected area of drawable. -

+

+

This procedure clears the specified drawable. If the drawable has an alpha channel, the cleared pixels will become transparent. If the drawable does not have an alpha channel, cleared pixels will be set to the background color. This procedure only affects regions within -a selection if there is a selection active.

+a selection if there is a selection active.

+

-

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

gimp_edit_fill ()

gboolean    gimp_edit_fill                  (gint32 drawable_ID,
-                                             GimpFillType fill_type);

+

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

+gimp_edit_fill ()

+
gboolean    gimp_edit_fill                  (gint32 drawable_ID,
+                                             GimpFillType fill_type);
+

Fill selected area of drawable. -

+

+

This procedure fills the specified drawable with the fill mode. If the fill mode is foreground, the current foreground color is used. If the fill mode is background, the current background color is used. Other fill modes should not be used. This procedure only affects regions within a selection if there is a selection active. If you want to fill the whole drawable, regardless of the selection, -use gimp_drawable_fill().

+use gimp_drawable_fill().

+

-

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

gimp_edit_bucket_fill ()

gboolean    gimp_edit_bucket_fill           (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + +
+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,
                                              GimpBucketFillMode fill_mode,
                                              GimpLayerModeEffects paint_mode,
                                              gdouble opacity,
                                              gdouble threshold,
                                              gboolean sample_merged,
                                              gdouble x,
-                                             gdouble y);

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

+

+

This tool requires information on the paint application mode, and the fill mode, which can either be in the foreground color, or in the currently active pattern. If there is no selection, a seed fill @@ -147,18 +354,75 @@ drawable. This is equivalent to sampling for colors after merging all visible layers. In the case of merged sampling, the x and y coordinates are relative to the image's origin; otherwise, they are -relative to the drawable's origin.

+relative to the drawable's origin.

+

-

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

gimp_edit_blend ()

gboolean    gimp_edit_blend                 (gint32 drawable_ID,
+

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

+gimp_edit_blend ()

+
gboolean    gimp_edit_blend                 (gint32 drawable_ID,
                                              GimpBlendMode blend_mode,
                                              GimpLayerModeEffects paint_mode,
                                              GimpGradientType gradient_type,
@@ -173,40 +437,166 @@
                                              gdouble x1,
                                              gdouble y1,
                                              gdouble x2,
-                                             gdouble y2);

+ gdouble y2); +

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

+

+

This tool requires information on the paint application mode, the blend mode, and the gradient type. It creates the specified variety of blend using the starting and ending coordinates as defined for -each gradient type.

+each gradient type.

+

-

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

gimp_edit_stroke ()

gboolean    gimp_edit_stroke                (gint32 drawable_ID);

+

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

+gimp_edit_stroke ()

+
gboolean    gimp_edit_stroke                (gint32 drawable_ID);
+

Stroke the current selection -

+

+

This procedure strokes the current selection, painting along the selection boundary with the active brush and foreground color. The paint is applied to the specified drawable regardless of the active -selection.

+selection.

+

-

drawable_ID : The drawable to stroke to. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + +
+drawable_ID : The drawable to stroke to. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpenums.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpenums.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpenums.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpenums.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpenums

gimpenums

gimpenums — Enums and definitions.

Synopsis

+
+
+
+gimpenums
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpenums

+

gimpenums — Enums and definitions.

+
+
+

Synopsis

+
 
 
 
@@ -36,10 +75,21 @@
 enum        GimpTransformDirection;
 const gchar** gimp_enums_get_type_names     (gint *n_type_names);
 
-

Description

+

+
+
+

Description

+

Enums and definitions. -

Details

enum GimpAddMaskType

typedef enum
+

+
+
+

Details

+
+

+enum GimpAddMaskType

+
typedef enum
 {
   GIMP_ADD_WHITE_MASK,
   GIMP_ADD_BLACK_MASK,
@@ -48,42 +98,77 @@
   GIMP_ADD_SELECTION_MASK,
   GIMP_ADD_COPY_MASK
 } GimpAddMaskType;
-

+ +

-


enum GimpBlendMode

typedef enum
+

+
+
+
+

+enum GimpBlendMode

+
typedef enum
 {
   GIMP_FG_BG_RGB_MODE,
   GIMP_FG_BG_HSV_MODE,
   GIMP_FG_TRANSPARENT_MODE,
   GIMP_CUSTOM_MODE
 } 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,
   GIMP_PATTERN_BUCKET_FILL
 } GimpBucketFillMode;
-

+ +

-


enum GimpChannelOps

typedef enum
+

+
+
+
+

+enum GimpChannelOps

+
typedef enum
 {
   GIMP_CHANNEL_OP_ADD,
   GIMP_CHANNEL_OP_SUBTRACT,
   GIMP_CHANNEL_OP_REPLACE,
   GIMP_CHANNEL_OP_INTERSECT
 } GimpChannelOps;
-

+ +

-


enum GimpChannelType

typedef enum
+

+
+
+
+

+enum GimpChannelType

+
typedef enum
 {
   GIMP_RED_CHANNEL,
   GIMP_GREEN_CHANNEL,
@@ -92,25 +177,46 @@
   GIMP_INDEXED_CHANNEL,
   GIMP_ALPHA_CHANNEL
 } 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,
   GIMP_FSLOWBLEED_DITHER,
   GIMP_FIXED_DITHER
 } GimpConvertDitherType;
-

+ +

-


enum GimpConvertPaletteType

typedef enum
+

+
+
+
+

+enum GimpConvertPaletteType

+
typedef enum
 {
   GIMP_MAKE_PALETTE,
   GIMP_REUSE_PALETTE,
@@ -118,31 +224,59 @@
   GIMP_MONO_PALETTE,
   GIMP_CUSTOM_PALETTE
 } GimpConvertPaletteType;
-

+ +

-


enum GimpConvolutionType

typedef enum
+

+
+
+
+

+enum GimpConvolutionType

+
typedef enum
 {
   GIMP_NORMAL_CONVOL,
   GIMP_ABSOLUTE_CONVOL,
   GIMP_NEGATIVE_CONVOL
 } 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,
@@ -150,17 +284,31 @@
   GIMP_TRANSPARENT_FILL,
   GIMP_PATTERN_FILL
 } GimpFillType;
-

+ +

-


enum GimpGradientSegmentColor

typedef enum
+

+
+
+
+

+enum GimpGradientSegmentColor

+
typedef enum
 {
   GIMP_GRADIENT_SEGMENT_RGB,
   GIMP_GRADIENT_SEGMENT_HSV_CCW,
   GIMP_GRADIENT_SEGMENT_HSV_CW
 } GimpGradientSegmentColor;
-

+ +

-


enum GimpGradientSegmentType

typedef enum
+

+
+
+
+

+enum GimpGradientSegmentType

+
typedef enum
 {
   GIMP_GRADIENT_SEGMENT_LINEAR,
   GIMP_GRADIENT_SEGMENT_CURVED,
@@ -168,9 +316,16 @@
   GIMP_GRADIENT_SEGMENT_SPHERE_INCREASING,
   GIMP_GRADIENT_SEGMENT_SPHERE_DECREASING
 } GimpGradientSegmentType;
-

+ +

-


enum GimpGradientType

typedef enum
+

+
+
+
+

+enum GimpGradientType

+
typedef enum
 {
   GIMP_GRADIENT_LINEAR,
   GIMP_GRADIENT_BILINEAR,
@@ -184,9 +339,16 @@
   GIMP_GRADIENT_SPIRAL_CLOCKWISE,
   GIMP_GRADIENT_SPIRAL_ANTICLOCKWISE
 } GimpGradientType;
-

+ +

-


enum GimpHistogramChannel

typedef enum
+

+
+
+
+

+enum GimpHistogramChannel

+
typedef enum
 {
   GIMP_HISTOGRAM_VALUE,
   GIMP_HISTOGRAM_RED,
@@ -194,9 +356,16 @@
   GIMP_HISTOGRAM_BLUE,
   GIMP_HISTOGRAM_ALPHA
 } GimpHistogramChannel;
-

+ +

-


enum GimpHueRange

typedef enum
+

+
+
+
+

+enum GimpHueRange

+
typedef enum
 {
   GIMP_ALL_HUES,
   GIMP_RED_HUES,
@@ -206,25 +375,46 @@
   GIMP_BLUE_HUES,
   GIMP_MAGENTA_HUES
 } GimpHueRange;
-

+ +

-


enum GimpIconType

typedef enum
+

+
+
+
+

+enum GimpIconType

+
typedef enum
 {
   GIMP_ICON_TYPE_STOCK_ID,
   GIMP_ICON_TYPE_INLINE_PIXBUF,
   GIMP_ICON_TYPE_IMAGE_FILE
 } GimpIconType;
-

+ +

-


enum GimpInterpolationType

typedef enum
+

+
+
+
+

+enum GimpInterpolationType

+
typedef enum
 {
   GIMP_INTERPOLATION_NONE,
   GIMP_INTERPOLATION_LINEAR,
   GIMP_INTERPOLATION_CUBIC
 } GimpInterpolationType;
-

+ +

-


enum GimpLayerModeEffects

typedef enum
+

+
+
+
+

+enum GimpLayerModeEffects

+
typedef enum
 {
   GIMP_NORMAL_MODE,
   GIMP_DISSOLVE_MODE,
@@ -250,98 +440,209 @@
   GIMP_GRAIN_MERGE_MODE,
   GIMP_COLOR_ERASE_MODE
 } 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,
   GIMP_CLIP_TO_BOTTOM_LAYER,
   GIMP_FLATTEN_IMAGE
 } 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,
   GIMP_ORIENTATION_UNKNOWN
 } 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,
   GIMP_REPEAT_TRIANGULAR
 } GimpRepeatMode;
-

+ +

-


enum GimpRotationType

typedef enum
+

+
+
+
+

+enum GimpRotationType

+
typedef enum
 {
   GIMP_ROTATE_90,
   GIMP_ROTATE_180,
   GIMP_ROTATE_270
 } GimpRotationType;
-

+ +

-


enum GimpRunMode

typedef enum
+

+
+
+
+

+enum GimpRunMode

+
typedef enum
 {
   GIMP_RUN_INTERACTIVE,
   GIMP_RUN_NONINTERACTIVE,
   GIMP_RUN_WITH_LAST_VALS
 } 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,
   GIMP_HIGHLIGHTS
 } 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.

+The returned array is static and must not be modified.

+

-

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

Since GIMP 2.2 -

+

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

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpexport.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpexport.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpexport.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpexport.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpexport

gimpexport

gimpexport — Export an image before it is saved.

Synopsis

+
+
+
+gimpexport
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpexport

+

gimpexport — Export an image before it is saved.

+
+
+

Synopsis

+
 
 
 
@@ -8,7 +47,11 @@
                                              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 +64,14 @@ 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,
@@ -33,41 +83,98 @@
   GIMP_EXPORT_CAN_HANDLE_LAYER_MASKS         = 1 << 7,
   GIMP_EXPORT_NEEDS_ALPHA                    = 1 << 8
 } GimpExportCapabilities;
-

+ +

-


enum GimpExportReturn

typedef enum
+

+
+
+
+

+enum GimpExportReturn

+
typedef enum
 {
   GIMP_EXPORT_CANCEL,
   GIMP_EXPORT_IGNORE,
   GIMP_EXPORT_EXPORT
 } GimpExportReturn;
-

+ +

-


gimp_export_image ()

GimpExportReturn gimp_export_image          (gint32 *image_ID,
+

+
+
+
+

+gimp_export_image ()

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

+ GimpExportCapabilities capabilities); +

Takes an image and a drawable to be saved together with a description of the capabilities of the image_format. If the type of image doesn't match the capabilities of the format a dialog is opened that informs the user that the image has to be exported and offers to do the necessary conversions. -

+

+

If the user chooses to export the image, a copy is created. This copy is then converted, the image_ID and drawable_ID are changed to point to the new image and the procedure returns GIMP_EXPORT_EXPORT. The save_plugin has to take care of deleting the created image using gimp_image_delete() when it has saved it. -

+

+

If the user chooses to Ignore the export problem, the image_ID and drawable_ID is not altered, GIMP_EXPORT_IGNORE is returned and the save_plugin should try to save the original image. If the user chooses Cancel, GIMP_EXPORT_CANCEL is returned and the -save_plugin should quit itself with status GIMP_PDB_CANCEL.

+save_plugin should quit itself with status GIMP_PDB_CANCEL.

+

-

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

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

gimpfileops

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

Synopsis

+
+
+
+gimpfileops
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpfileops

+

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

+
+
+

Synopsis

+
 
 
 
@@ -26,120 +65,403 @@
                                              const gchar *mime_type);
 gboolean    gimp_register_thumbnail_loader  (const gchar *load_proc,
                                              const gchar *thumb_proc);
-

Description

+

+
+
+

Description

+

File operations (load, save, etc.) -

Details

gimp_temp_name ()

gchar*      gimp_temp_name                  (const gchar *extension);

+

+
+
+

Details

+
+

+gimp_temp_name ()

+
gchar*      gimp_temp_name                  (const gchar *extension);
+

Generates a unique filename. -

+

+

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

+user's gimprc.

+

-

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

gimp_file_load ()

gint32      gimp_file_load                  (GimpRunMode run_mode,
+

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

+ const gchar *raw_filename); +

Loads a file by invoking the right load handler. -

+

+

This procedure invokes the correct file load handler using magic if possible, and falling back on the file's extension and/or prefix if not. The name of the file to load is typically a full pathname, and the name entered is what the user actually typed before prepending a directory path. The reason for this is that if the user types http://www.xcf/~gimp/ he wants to fetch a URL, and the full pathname -will not look like a URL.\"

+will not look like a URL.\"

+

-

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

gimp_file_save ()

gboolean    gimp_file_save                  (GimpRunMode run_mode,
+

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

+gimp_file_save ()

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

+ const gchar *raw_filename); +

Saves a file by extension. -

+

+

This procedure invokes the correct file save handler according to the file's extension and/or prefix. The name of the file to save is typically a full pathname, and the name entered is what the user actually typed before prepending a directory path. The reason for this is that if the user types http://www.xcf/~gimp/ she wants to -fetch a URL, and the full pathname will not look like a URL.

+fetch a URL, and the full pathname will not look like a URL.

+

-

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

gimp_register_magic_load_handler ()

gboolean    gimp_register_magic_load_handler
+

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

+gimp_register_magic_load_handler ()

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

+ const gchar *magics); +

Registers a file load handler procedure. -

+

+

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

+of a particular file format using magic file information.

+

-

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

gimp_register_load_handler ()

gboolean    gimp_register_load_handler      (const gchar *procedure_name,
+

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

+gimp_register_load_handler ()

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

+ const gchar *prefixes); +

Registers a file load handler procedure. -

+

+

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

+of a particular file format.

+

-

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

gimp_register_save_handler ()

gboolean    gimp_register_save_handler      (const gchar *procedure_name,
+

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

+gimp_register_save_handler ()

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

+ const gchar *prefixes); +

Registers a file save handler procedure. -

+

+

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

+in a particular file format.

+

-

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

gimp_register_file_handler_mime ()

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

+

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

+gimp_register_file_handler_mime ()

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

Associates a MIME type with a file handler procedure. -

+

+

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

+procedure.

+

-

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

Since GIMP 2.2 -


gimp_register_thumbnail_loader ()

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

+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_register_thumbnail_loader ()

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

Associates a thumbnail loader with a file load procedure. -

+

+

Some file formats allow for embedded thumbnails, other file formats contain a scalable image or provide the image data in different resolutions. A file plug-in for such a format may register a special procedure that allows GIMP to load a thumbnail preview of the image. This procedure is then associated with the standard load procedure -using this function.

+using this function.

+

-

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

Since GIMP 2.2 -

+

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

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfloatingsel.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpfloatingsel

gimpfloatingsel

gimpfloatingsel — Functions for removing or attaching floating selections.

Synopsis

+
+
+
+gimpfloatingsel
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpfloatingsel

+

gimpfloatingsel — Functions for removing or attaching floating selections.

+
+
+

Synopsis

+
 
 
 
@@ -11,31 +50,92 @@
                                              gboolean undo);
 gboolean    gimp_floating_sel_relax         (gint32 floating_sel_ID,
                                              gboolean undo);
-

Description

+

+
+
+

Description

+

Functions for removing or attaching floating selections. -

Details

gimp_floating_sel_remove ()

gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);

+

+
+
+

Details

+
+

+gimp_floating_sel_remove ()

+
gboolean    gimp_floating_sel_remove        (gint32 floating_sel_ID);
+

Remove the specified floating selection from its associated drawable. -

+

+

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

+any side effects. The associated drawable is then set to active.

+

-

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

gimp_floating_sel_anchor ()

gboolean    gimp_floating_sel_anchor        (gint32 floating_sel_ID);

+

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

+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 drawable. This is similar to merging with a merge type of ClipToBottomLayer. The floating selection layer is no longer valid -after this operation.

+after this operation.

+

-

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

+

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

Transforms the specified floating selection into a layer. -

+

+

This procedure transforms the specified floating selection into a layer with the same offsets and extents. The composited image will look precisely the same, but the floating selection layer will no @@ -43,36 +143,148 @@ The floating selection will become the active layer. This procedure will not work if the floating selection has a different base type from the underlying image. This might be the case if the floating -selection is above an auxillary channel or a layer mask.

+selection is above an auxillary channel or a layer mask.

+

-

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

+

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

Attach the specified layer as floating to the specified drawable. -

+

+

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

+drawable.

+

-

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

+

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

Rigor the floating selection. -

-This procedure rigors the floating selection.

+

+

+This procedure rigors the floating selection.

+

-

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

+

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

Relax the floating selection. -

-This procedure relaxes the floating selection.

+

+

+This procedure relaxes the floating selection.

+

-

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

+
++ + + + + + + + + + + + + + +
+floating_sel_ID : The floating selection. +
+undo : %desc%%. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontmenu.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfontmenu.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfontmenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpfontmenu

gimpfontmenu

gimpfontmenu — A widget for selecting fonts.

Synopsis

+
+
+
+gimpfontmenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpfontmenu

+

gimpfontmenu — A widget for selecting fonts.

+
+
+

Synopsis

+
 
 
 
@@ -15,42 +54,133 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget *widget,
                                              const gchar *font_name);
-

Description

+

+
+
+

Description

+

A widget for selecting fonts. -

Details

gimp_font_select_widget_new ()


+
+
+

Details

+
+

+gimp_font_select_widget_new ()

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

+ gpointer data); +

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

+plug-in dialog.

+

-

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

+
++ + + + + + + + + + + + + + + + + + +
+title : Title of the dialog to use or NULL means to use the default title. -
font_name : Initial font name. -
callback : A function to call when the selected font changes. -
data : A pointer to arbitary data to be used in the call to callback. -
Returns : A +
+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);

-Closes the popup window associated with widget.

- -

widget : A font select widget. -

gimp_font_select_widget_set ()

void        gimp_font_select_widget_set     (
+
+
+
+
+

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

+ const gchar *font_name); +

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

+gimp_font_select_widget_new().

+

-

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

+
++ + + + + + + + + + +
+widget : A font select widget. +
+font_name : Font name to set; NULL means no change. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontselect.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfontselect.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfontselect.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpfontselect

gimpfontselect

gimpfontselect — Functions providing a font selection dialog.

Synopsis

+
+
+
+gimpfontselect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpfontselect

+

gimpfontselect — Functions providing a font selection dialog.

+
+
+

Synopsis

+
 
 
 
@@ -16,59 +55,239 @@
 gboolean    gimp_fonts_close_popup          (const gchar *font_callback);
 gboolean    gimp_fonts_set_popup            (const gchar *font_callback,
                                              const gchar *font_name);
-

Description

+

+
+
+

Description

+

Functions providing a font selection dialog. -

Details

GimpRunFontCallback ()

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

+
+
+

Details

+
+

+GimpRunFontCallback ()

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

+ gpointer user_data); +

-

font_name : -
dialog_closing : -
user_data : - - -

gimp_font_select_new ()

const gchar* gimp_font_select_new           (const gchar *title,
+

+
++ + + + + + + + + + + + + + +
+font_name : +
+dialog_closing : +
+user_data : + + +
+
+
+
+

+gimp_font_select_new ()

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

- -

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

gimp_font_select_destroy ()

void        gimp_font_select_destroy        (const gchar *font_callback);

+ gpointer data); +

-

font_callback : - - -

gimp_fonts_popup ()

gboolean    gimp_fonts_popup                (const gchar *font_callback,
+

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

+gimp_font_select_destroy ()

+
void        gimp_font_select_destroy        (const gchar *font_callback);
+

+ +

+
++ + + + +
+font_callback : + + +
+
+
+
+

+gimp_fonts_popup ()

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

+ const gchar *initial_font); +

Invokes the Gimp font selection. -

-This procedure popups the font selection dialog.

- -

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

gimp_fonts_close_popup ()

gboolean    gimp_fonts_close_popup          (const gchar *font_callback);

+

+

+This procedure popups the font selection dialog.

+

+ +

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

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

+

+

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

Sets the current font selection in a popup. -

-Sets the current font selection in a popup.

- -

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

+

+Sets the current font selection in a popup.

+

+ +

+
++ + + + + + + + + + + + + + +
+font_callback : The name of the callback registered for this popup. +
+font_name : The name of the font to set as selected. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfonts.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfonts.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpfonts.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpfonts.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,27 +1,126 @@ -gimpfonts

gimpfonts

gimpfonts — Operations related to fonts.

Synopsis

+
+
+
+gimpfonts
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpfonts

+

gimpfonts — Operations related to fonts.

+
+
+

Synopsis

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

Description

- -

Details

gimp_fonts_refresh ()

gboolean    gimp_fonts_refresh              (void);

+

+
+
+

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.

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

+

+
++ + + + +
+Returns : TRUE on success. +
+
+
+
+

+gimp_fonts_get_list ()

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

Retrieve the list of loaded fonts. -

+

+

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

+available.

+

-

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

+
++ + + + + + + + + + + + + + +
+filter : An optional regular expression used to filter the list. +
+num_fonts : The number of available fonts. +
+Returns : The list of font names. +
+ + + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgimprc.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgimprc.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgimprc.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpgimprc

gimpgimprc

gimpgimprc — Interactions with settings from .gimprc.

Synopsis

+
+
+
+gimpgimprc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpgimprc

+

gimpgimprc — Interactions with settings from .gimprc.

+
+
+

Synopsis

+
 
 
 
@@ -10,12 +49,25 @@
 gboolean    gimp_get_monitor_resolution     (gdouble *xres,
                                              gdouble *yres);
 gchar*      gimp_get_theme_dir              (void);
-

Description

+

+
+
+

Description

+

Interactions with settings from .gimprc. -

Details

gimp_gimprc_query ()

gchar*      gimp_gimprc_query               (const gchar *token);

+

+
+
+

Details

+
+

+gimp_gimprc_query ()

+
gchar*      gimp_gimprc_query               (const gchar *token);
+

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

+

+

This procedure is used to locate additional information contained in the gimprc file considered extraneous to the operation of the GIMP. Plug-ins that need configuration information can expect it will be @@ -24,51 +76,185 @@ with the specified token. This corresponds _only_ to entries with the format: (<token> <value>). The value must be a string. Entries not corresponding to this format will cause warnings -to be issued on gimprc parsing and will not be queryable.

+to be issued on gimprc parsing and will not be queryable.

+

-

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

+

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

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

+

+

This procedure is used to add or change additional information in the gimprc file that is considered extraneous to the operation of the GIMP. Plug-ins that need configuration information can use this function to store it, and gimp_gimprc_query to retrieve it. This -will accept _only_ string values in UTF-8 encoding.

+will accept _only_ string values in UTF-8 encoding.

+

-

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

+

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

Get the default image comment as specified in the Preferences. -

-Returns a copy of the default image comment.

+

+

+Returns a copy of the default image comment.

+

-

Returns : Default Image Comment. -

gimp_get_module_load_inhibit ()

gchar*      gimp_get_module_load_inhibit    (void);

+

+
++ + + + +
+Returns : Default Image Comment. +
+
+
+
+

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

+

+
++ + + + +
+Returns : The list of modules. +
+
+
+
+

+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 taken from the Preferences (or the windowing system if this is set in the Preferences) and there's no guarantee for the value to be -reasonable.

+reasonable.

+

-

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

gimp_get_theme_dir ()

gchar*      gimp_get_theme_dir              (void);

+

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

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

+

+

+Returns a copy of the current GUI theme dir.

+

-

Returns : The GUI theme dir. -
+

+
++ + + + +
+Returns : The GUI theme dir. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradient.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradient.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradient.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradient.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpgradient

gimpgradient

gimpgradient — Functions operating on a single gradient.

Synopsis

+
+
+
+gimpgradient
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpgradient

+

gimpgradient — Functions operating on a single gradient.

+
+
+

Synopsis

+
 
 
 
@@ -133,491 +172,1575 @@
                                              gint end_segment,
                                              gdouble delta,
                                              gboolean control_compress);
-

Description

+

+
+
+

Description

+

Functions operating on a single gradient. -

Details

gimp_gradient_new ()

gchar*      gimp_gradient_new               (const gchar *name);

+

+
+
+

Details

+
+

+gimp_gradient_new ()

+
gchar*      gimp_gradient_new               (const gchar *name);
+

Creates a new gradient -

-This procedure creates a new, uninitialized gradient

- -

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

Since GIMP 2.2 -


gimp_gradient_duplicate ()

gchar*      gimp_gradient_duplicate         (const gchar *name);

+

+

+This procedure creates a new, uninitialized gradient

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_duplicate ()

+
gchar*      gimp_gradient_duplicate         (const gchar *name);
+

Duplicates a gradient -

-This procedure creates an identical gradient by a different name

- -

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

Since GIMP 2.2 -


gimp_gradient_rename ()

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

+

+

+This procedure creates an identical gradient by a different name

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_rename ()

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

Rename a gradient -

-This procedure renames a gradient

- -

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

Since GIMP 2.2 -


gimp_gradient_delete ()

gboolean    gimp_gradient_delete            (const gchar *name);

+

+

+This procedure renames a gradient

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_delete ()

+
gboolean    gimp_gradient_delete            (const gchar *name);
+

Deletes a gradient -

-This procedure deletes a gradient

- -

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

Since GIMP 2.2 -


gimp_gradient_get_uniform_samples ()

gboolean    gimp_gradient_get_uniform_samples
+

+

+This procedure deletes a gradient

+

+ +

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_get_uniform_samples ()

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

+ gdouble **color_samples); +

Sample the specified in uniform parts. -

+

+

This procedure samples the active gradient in the specified number of uniform parts. It returns a list of floating-point values which correspond to the RGBA values for each sample. The minimum number of samples to take is 2, in which case the returned colors will correspond to the { 0.0, 1.0 } positions in the gradient. For example, if the number of samples is 3, the procedure will return -the colors at positions { 0.0, 0.5, 1.0 }.

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_get_custom_samples ()

gboolean    gimp_gradient_get_custom_samples
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_get_custom_samples ()

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

+ gdouble **color_samples); +

Sample the spacified gradient in custom positions. -

+

+

This procedure samples the active gradient in the specified number of points. The procedure will sample the gradient in the specified positions from the list. The left endpoint of the gradient corresponds to position 0.0, and the right endpoint corresponds to 1.0. The procedure returns a list of floating-point values which -correspond to the RGBA values for each sample.

+correspond to the RGBA values for each sample.

+

-

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

Since GIMP 2.2 -


gimp_gradient_segment_get_left_color ()

gboolean    gimp_gradient_segment_get_left_color
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_left_color ()

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

+ gdouble *opacity); +

Retrieves the left endpoint color of the specified gradient and segment -

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_segment_set_left_color ()

gboolean    gimp_gradient_segment_set_left_color
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_set_left_color ()

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

+ gdouble opacity); +

Retrieves the left endpoint color of the specified gradient and segment -

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_segment_get_right_color ()

gboolean    gimp_gradient_segment_get_right_color
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_right_color ()

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

+ gdouble *opacity); +

Retrieves the right endpoint color of the specified gradient and segment -

+

+

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

+segment of the specified gradient.

+

-

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

Since GIMP 2.2 -


gimp_gradient_segment_set_right_color ()

gboolean    gimp_gradient_segment_set_right_color
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_set_right_color ()

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

+ gdouble opacity); +

Retrieves the right endpoint color of the specified gradient and segment -

+

+

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

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_segment_get_left_pos ()

gboolean    gimp_gradient_segment_get_left_pos
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_left_pos ()

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

+ gdouble *pos); +

Retrieves the left endpoint position of the specified gradient and segment -

+

+

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

+segment of the specified gradient.

+

-

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

Since GIMP 2.2 -


gimp_gradient_segment_set_left_pos ()

gboolean    gimp_gradient_segment_set_left_pos
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_set_left_pos ()

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

+ gdouble *final_pos); +

Sets the left endpoint position of the specified gradient and segment -

+

+

This procedure sets the left endpoint position of the specified segment of the specified gradient. The final position will be between the position of the middle point to the left to the middle point of the current segement. This procedure returns the final -position.

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_segment_get_middle_pos ()

gboolean    gimp_gradient_segment_get_middle_pos
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_middle_pos ()

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

+ gdouble *pos); +

Retrieves the middle point position of the specified gradient and segment -

+

+

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

+segment of the specified gradient.

+

-

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

Since GIMP 2.2 -


gimp_gradient_segment_set_middle_pos ()

gboolean    gimp_gradient_segment_set_middle_pos
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_set_middle_pos ()

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

+ gdouble *final_pos); +

Sets the middle point position of the specified gradient and segment -

+

+

This procedure sets the middle point position of the specified segment of the specified gradient. The final position will be between the two endpoints of the segment. This procedure returns the -final position.

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_segment_get_right_pos ()

gboolean    gimp_gradient_segment_get_right_pos
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_right_pos ()

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

+ gdouble *pos); +

Retrieves the right endpoint position of the specified gradient and segment -

+

+

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

+specified segment of the specified gradient.

+

-

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

Since GIMP 2.2 -


gimp_gradient_segment_set_right_pos ()

gboolean    gimp_gradient_segment_set_right_pos
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_set_right_pos ()

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

+ gdouble *final_pos); +

Sets the right endpoint position of the specified gradient and segment -

+

+

This procedure sets the right endpoint position of the specified segment of the specified gradient. The final position will be between the position of the middle point of the current segment and the middle point of the segment to the right. This procedure returns -the final position.

- -

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

+

-

Since GIMP 2.2 -


gimp_gradient_segment_get_blending_function ()

gboolean    gimp_gradient_segment_get_blending_function
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_blending_function ()

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

+ GimpGradientSegmentType *blend_func); +

Retrieves the gradient segment's blending function -

+

+

This procedure retrieves the blending function of the segment at the -specified gradient name and segment index.

- -

name : The gradient name. -
segment : The index of the segment within the gradient. -
blend_func : The blending function of the segment. -
Returns : TRUE on success. +specified gradient name and segment index.

+

-

Since GIMP 2.2 -


gimp_gradient_segment_get_coloring_type ()

gboolean    gimp_gradient_segment_get_coloring_type
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+segment : The index of the segment within the gradient. +
+blend_func : The blending function of the segment. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_get_coloring_type ()

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

+ GimpGradientSegmentColor *coloring_type); +

Retrieves the gradient segment's coloring type -

+

+

This procedure retrieves the coloring type of the segment at the -specified gradient name and segment index.

+specified gradient name and segment index.

+

-

name : The gradient name. -
segment : The index of the segment within the gradient. -
coloring_type : The coloring type of the segment. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_set_blending_function ()

gboolean    gimp_gradient_segment_range_set_blending_function
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+segment : The index of the segment within the gradient. +
+coloring_type : The coloring type of the segment. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_set_blending_function ()

+
gboolean    gimp_gradient_segment_range_set_blending_function
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
-                                             GimpGradientSegmentType blending_function);

+ GimpGradientSegmentType blending_function); +

Change the blending function of a segments range -

+

+

This function changes the blending function of a segment range to -the specified blending function.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
blending_function : The Blending Function. -
Returns : TRUE on success. +the specified blending function.

+

-

Since GIMP 2.2 -


gimp_gradient_segment_range_set_coloring_type ()

gboolean    gimp_gradient_segment_range_set_coloring_type
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+blending_function : The Blending Function. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_set_coloring_type ()

+
gboolean    gimp_gradient_segment_range_set_coloring_type
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
-                                             GimpGradientSegmentColor coloring_type);

+ GimpGradientSegmentColor coloring_type); +

Change the coloring type of a segments range -

+

+

This function changes the coloring type of a segment range to the -specified coloring type.

+specified coloring type.

+

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
coloring_type : The Coloring Type. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_flip ()

gboolean    gimp_gradient_segment_range_flip
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+coloring_type : The Coloring Type. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_flip ()

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

+ gint end_segment); +

Flip the segment range -

-This function flips a segment range.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_replicate ()

gboolean    gimp_gradient_segment_range_replicate
+

+

+This function flips a segment range.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+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);

+ gint replicate_times); +

Replicate the segment range -

+

+

This function replicates a segment range a given number of times. Instead of the original segment range, several smaller scaled copies -of it will appear in equal widths.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
replicate_times : The number of times to replicate. -
Returns : TRUE on success. +of it will appear in equal widths.

+

-

Since GIMP 2.2 -


gimp_gradient_segment_range_split_midpoint ()

gboolean    gimp_gradient_segment_range_split_midpoint
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+replicate_times : The number of times to replicate. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_split_midpoint ()

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

+ gint end_segment); +

Splits each segment in the segment range at midpoint -

+

+

This function splits each segment in the segment range at its -midpoint.

+midpoint.

+

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_split_uniform ()

gboolean    gimp_gradient_segment_range_split_uniform
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_split_uniform ()

+
gboolean    gimp_gradient_segment_range_split_uniform
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
-                                             gint split_parts);

+ gint split_parts); +

Splits each segment in the segment range uniformly -

+

+

This function splits each segment in the segment range uniformly -according to the number of times specified by the parameter.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
split_parts : The number of uniform divisions to split each segment to. -
Returns : TRUE on success. +according to the number of times specified by the parameter.

+

-

Since GIMP 2.2 -


gimp_gradient_segment_range_delete ()

gboolean    gimp_gradient_segment_range_delete
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+split_parts : The number of uniform divisions to split each segment to. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_delete ()

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

+ gint end_segment); +

Delete the segment range -

-This function deletes a segment range.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_redistribute_handles ()

gboolean    gimp_gradient_segment_range_redistribute_handles
+

+

+This function deletes a segment range.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+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);

+ gint end_segment); +

Uniformly redistribute the segment range's handles -

+

+

This function redistributes the handles of the specified segment -range of the specified gradient, so they'll be evenly spaced.

+range of the specified gradient, so they'll be evenly spaced.

+

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_blend_colors ()

gboolean    gimp_gradient_segment_range_blend_colors
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_blend_colors ()

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

+ gint end_segment); +

Blend the colors of the segment range. -

+

+

This function blends the colors (but not the opacity) of the segments' range of the gradient. Using it, the colors' transition -will be uniform across the range.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
Returns : TRUE on success. +will be uniform across the range.

+

-

Since GIMP 2.2 -


gimp_gradient_segment_range_blend_opacity ()

gboolean    gimp_gradient_segment_range_blend_opacity
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_blend_opacity ()

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

+ gint end_segment); +

Blend the opacity of the segment range. -

+

+

This function blends the opacity (but not the colors) of the segments' range of the gradient. Using it, the opacity's transition -will be uniform across the range.

+will be uniform across the range.

+

-

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_gradient_segment_range_move ()

gdouble     gimp_gradient_segment_range_move
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_gradient_segment_range_move ()

+
gdouble     gimp_gradient_segment_range_move
                                             (const gchar *name,
                                              gint start_segment,
                                              gint end_segment,
                                              gdouble delta,
-                                             gboolean control_compress);

+ gboolean control_compress); +

Move the position of an entire segment range by a delta. -

+

+

This funtions moves the position of an entire segment range by a delta. The actual delta (which is returned) will be limited by the -control points of the neighboring segments.

- -

name : The gradient name. -
start_segment : The index of the first segment to operate on. -
end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. -
delta : The delta to move the segment range. -
control_compress : Whether or not to compress the neighboring segments. -
Returns : The final delta by which the range moved. +control points of the neighboring segments.

+

-

Since GIMP 2.2 -

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : The gradient name. +
+start_segment : The index of the first segment to operate on. +
+end_segment : The index of the last segment to operate on. If negative, the selection will extend to the end of the string. +
+delta : The delta to move the segment range. +
+control_compress : Whether or not to compress the neighboring segments. +
+Returns : The final delta by which the range moved. + +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradientmenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpgradientmenu

gimpgradientmenu

gimpgradientmenu — A widget for selecting gradients.

Synopsis

+
+
+
+gimpgradientmenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpgradientmenu

+

gimpgradientmenu — A widget for selecting gradients.

+
+
+

Synopsis

+
 
 
 
@@ -16,43 +55,134 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget *widget,
                                              const gchar *gradient_name);
-

Description

+

+
+
+

Description

+

A widget for selecting gradients. -

Details

gimp_gradient_select_widget_new ()


+
+
+

Details

+
+

+gimp_gradient_select_widget_new ()

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

+ gpointer data); +

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

+plug-in dialog.

+

-

+ + +
title : Title of the dialog to use or NULL to use the default title. -
gradient_name : Initial gradient name or NULL to use current selection. -
callback : A function to call when the selected gradient changes. -
data : A pointer to arbitary data to be used in the call to +

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

gimp_gradient_select_widget_close ()

void        gimp_gradient_select_widget_close
+
+
+
+
+

+gimp_gradient_select_widget_close ()

+
void        gimp_gradient_select_widget_close
                                             (GtkWidget *widget);

-Closes the popup window associated with widget.

- -

widget : A gradient select widget. -

gimp_gradient_select_widget_set ()

void        gimp_gradient_select_widget_set (GtkWidget *widget);
+

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

+ const gchar *gradient_name); +

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

+gimp_gradient_select_widget_new().

+

-

widget : A gradient select widget. -
gradient_name : Gradient name to set. -
+

+
++ + + + + + + + + + +
+widget : A gradient select widget. +
+gradient_name : Gradient name to set. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientselect.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradientselect.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradientselect.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpgradientselect

gimpgradientselect

gimpgradientselect — Functions providing a gradient selection dialog.

Synopsis

+
+
+
+gimpgradientselect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpgradientselect

+

gimpgradientselect — Functions providing a gradient selection dialog.

+
+
+

Synopsis

+
 
 
 
@@ -20,67 +59,267 @@
 gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);
 gboolean    gimp_gradients_set_popup        (const gchar *gradient_callback,
                                              const gchar *gradient_name);
-

Description

+

+
+
+

Description

+

Functions providing a gradient selection dialog. -

Details

GimpRunGradientCallback ()

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

+
+
+

Details

+
+

+GimpRunGradientCallback ()

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

+ gpointer user_data); +

-

gradient_name : -
width : -
grad_data : -
dialog_closing : -
user_data : - - -

gimp_gradient_select_new ()

const gchar* gimp_gradient_select_new       (const gchar *title,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+gradient_name : +
+width : +
+grad_data : +
+dialog_closing : +
+user_data : + + +
+
+
+
+

+gimp_gradient_select_new ()

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

- -

title : -
gradient_name : -
sample_size : -
callback : -
data : -
Returns : - - -

gimp_gradient_select_destroy ()

void        gimp_gradient_select_destroy    (const gchar *gradient_callback);

+ gpointer data); +

-

gradient_callback : - - -

gimp_gradients_popup ()

gboolean    gimp_gradients_popup            (const gchar *gradient_callback,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : +
+gradient_name : +
+sample_size : +
+callback : +
+data : +
+Returns : + + +
+
+
+
+

+gimp_gradient_select_destroy ()

+
void        gimp_gradient_select_destroy    (const gchar *gradient_callback);
+

+ +

+
++ + + + +
+gradient_callback : + + +
+
+
+
+

+gimp_gradients_popup ()

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

+ gint sample_size); +

Invokes the Gimp gradients selection. -

-This procedure popups the gradients selection dialog.

- -

gradient_callback : The callback PDB proc to call when gradient selection is made. -
popup_title : Title to give the gradient popup window. -
initial_gradient : The name of the pattern to set as the first selected. -
sample_size : Size of the sample to return when the gradient is changed. -
Returns : TRUE on success. -

gimp_gradients_close_popup ()

gboolean    gimp_gradients_close_popup      (const gchar *gradient_callback);

+

+

+This procedure popups the gradients selection dialog.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+gradient_callback : The callback PDB proc to call when gradient selection is made. +
+popup_title : Title to give the gradient popup window. +
+initial_gradient : The name of the pattern to set as the first selected. +
+sample_size : Size of the sample to return when the gradient is changed. +
+Returns : TRUE on success. +
+
+
+
+

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

+

+

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

Sets the current gradient selection in a popup. -

-Sets the current gradient selection in a popup.

- -

gradient_callback : The name of the callback registered for this popup. -
gradient_name : The name of the gradient to set as selected. -
Returns : TRUE on success. -
+

+

+Sets the current gradient selection in a popup.

+

+ +

+
++ + + + + + + + + + + + + + +
+gradient_callback : The name of the callback registered for this popup. +
+gradient_name : The name of the gradient to set as selected. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradients.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradients.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpgradients.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpgradients.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpgradients

gimpgradients

gimpgradients — Operations related to gradients.

Synopsis

+
+
+
+gimpgradients
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpgradients

+

gimpgradients — Operations related to gradients.

+
+
+

Synopsis

+
 
 
 
@@ -18,67 +57,290 @@
                                              gboolean reverse,
                                              gint *width,
                                              gdouble **grad_data);
-

Description

+

+
+
+

Description

+

Operations related to gradients. -

Details

gimp_gradients_refresh ()

gboolean    gimp_gradients_refresh          (void);

+

+
+
+

Details

+
+

+gimp_gradients_refresh ()

+
gboolean    gimp_gradients_refresh          (void);
+

Refresh current gradients. This function always succeeds. -

+

+

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

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

+

+
++ + + + +
+Returns : TRUE on success. +
+
+
+
+

+gimp_gradients_get_list ()

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

Retrieve the list of loaded gradients. -

+

+

This procedure returns a list of the gradients that are currently loaded. You can later use the 'gimp_context_set_gradient' function -to set the active gradient.

+to set the active gradient.

+

-

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

gimp_gradients_get_gradient ()

gchar*      gimp_gradients_get_gradient     (void);

Warning

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

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

- -

Returns : The name of the active gradient. -

gimp_gradients_set_gradient ()

gboolean    gimp_gradients_set_gradient     (const gchar *name);

Warning

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

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

- -

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.

+

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

+gimp_gradients_get_gradient ()

+
gchar*      gimp_gradients_get_gradient     (void);
+
+

Warning

+

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

+
+

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

+

+ +

+
++ + + + +
+Returns : The name of the active gradient. +
+
+
+
+

+gimp_gradients_set_gradient ()

+
gboolean    gimp_gradients_set_gradient     (const gchar *name);
+
+

Warning

+

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

+
+

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

+

+ +

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

+
+

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

+gimp_gradient_get_uniform_samples() instead.

+

-

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

gimp_gradients_sample_custom ()

gdouble*    gimp_gradients_sample_custom    (gint num_samples,
+

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

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

+instead.

+

-

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

gimp_gradients_get_gradient_data ()

gchar*      gimp_gradients_get_gradient_data
+

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

+gimp_gradients_get_gradient_data ()

+
gchar*      gimp_gradients_get_gradient_data
                                             (const gchar *name,
                                              gint sample_size,
                                              gboolean reverse,
                                              gint *width,
-                                             gdouble **grad_data);

Warning

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

+ gdouble **grad_data); +

+

Warning

+

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

+
+

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

+gimp_gradient_get_uniform_samples() instead.

+

-

name : The gradient name (\"\" means current active gradient). -
sample_size : Size of the sample to return when the gradient is changed. -
reverse : Use the reverse gradient. -
width : The gradient sample width (r,g,b,a). -
grad_data : The gradient sample data. -
Returns : The gradient name. -
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : The gradient name (\"\" means current active gradient). +
+sample_size : Size of the sample to return when the gradient is changed. +
+reverse : Use the reverse gradient. +
+width : The gradient sample width (r,g,b,a). +
+grad_data : The gradient sample data. +
+Returns : The gradient name. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpguides.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpguides.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpguides.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpguides.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpguides

gimpguides

gimpguides — Functions for manipulating guides.

Synopsis

+
+
+
+gimpguides
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpguides

+

gimpguides — Functions for manipulating guides.

+
+
+

Synopsis

+
 
 
 
@@ -15,73 +54,261 @@
                                              gint32 guide_ID);
 gint        gimp_image_get_guide_position   (gint32 image_ID,
                                              gint32 guide_ID);
-

Description

+

+
+
+

Description

+

Functions for manipulating guides. -

Details

gimp_image_add_hguide ()

gint32      gimp_image_add_hguide           (gint32 image_ID,
-                                             gint yposition);

+

+
+
+

Details

+
+

+gimp_image_add_hguide ()

+
gint32      gimp_image_add_hguide           (gint32 image_ID,
+                                             gint yposition);
+

Add a horizontal guide to an image. -

+

+

This procedure adds a horizontal guide to an image. It takes the input image and the y-position of the new guide as parameters. It -returns the guide ID of the new guide.

+returns the guide ID of the new guide.

+

-

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

+

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

Add a vertical guide to an image. -

+

+

This procedure adds a vertical guide to an image. It takes the input image and the x-position of the new guide as parameters. It returns -the guide ID of the new guide.

+the guide ID of the new guide.

+

-

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

+

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

Deletes a guide from an image. -

+

+

This procedure takes an image and a guide ID as input and removes -the specified guide from the specified image.

+the specified guide from the specified image.

+

-

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

+

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

Find next guide on an image. -

+

+

This procedure takes an image and a guide ID as input and finds the guide ID of the successor of the given guide ID in the image's guide list. If the supplied guide ID is 0, the procedure will return the first Guide. The procedure will return 0 if given the final guide ID -as an argument or the image has no guides.

+as an argument or the image has no guides.

+

-

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

gimp_image_get_guide_orientation ()

GimpOrientationType gimp_image_get_guide_orientation
+

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

+ gint32 guide_ID); +

Get orientation of a guide on an image. -

+

+

This procedure takes an image and a guide ID as input and returns -the orientations of the guide.

+the orientations of the guide.

+

-

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

gimp_image_get_guide_position ()

gint        gimp_image_get_guide_position   (gint32 image_ID,
-                                             gint32 guide_ID);

+

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

Get position of a guide on an image. -

+

+

This procedure takes an image and a guide ID as input and returns -the position of the guide relative to the top or left of the image.

+the position of the guide relative to the top or left of the image.

+

-

image_ID : The image. -
guide_ID : The guide. -
Returns : The guide's position relative to top or left of image. -
+

+
++ + + + + + + + + + + + + + +
+image_ID : The image. +
+guide_ID : The guide. +
+Returns : The guide's position relative to top or left of image. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimphelp.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimphelp.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimphelp.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimphelp.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,24 +1,106 @@ -gimphelp

gimphelp

gimphelp — Loading help pages using gimp_help.

Synopsis

+
+
+
+gimphelp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimphelp

+

gimphelp — Loading help pages using gimp_help.

+
+
+

Synopsis

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

Description

+

+
+
+

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 what ever is configured as help viewer. The help page is identified by its domain and ID: if help_domain is NULL, we use the help_domain which was registered using the gimp-plugin-help-register procedure. If help_domain is NULL and no help domain was registered, the help -domain of the main GIMP installation is used.

+domain of the main GIMP installation is used.

+

-

help_domain : The help domain in which help_id is registered. -
help_id : The help page's ID. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + + + + + +
+help_domain : The help domain in which help_id is registered. +
+help_id : The help page's ID. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimp.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimp.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimp.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimp.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,5 +1,44 @@ -gimp

gimp

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

Synopsis

+
+
+
+gimp
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimp

+

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

+
+
+

Synopsis

+
 
 
 
@@ -108,60 +147,203 @@
                                              gint flags,
                                              gint size,
                                              gconstpointer data);
-

Description

+

+
+
+

Description

+

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

Details

GIMPVAR

#define     GIMPVAR

- -


gimp_version ()

gchar*      gimp_version                    (void);

+

+
+
+

Details

+
+

+GIMPVAR

+
#define     GIMPVAR
+

+ +

+
+
+
+

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

extern const guint gimp_minor_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_size

#define gimp_get_data_size    gimp_procedural_db_get_data_size
-

- -

Returns : +gimp.

+

- -


gimp_set_data

#define gimp_set_data         gimp_procedural_db_set_data
-

- -


GimpInitProc ()

void        (*GimpInitProc)                 (void);

- -


GimpQuitProc ()

void        (*GimpQuitProc)                 (void);

- -


GimpQueryProc ()

void        (*GimpQueryProc)                (void);

- -


GimpRunProc ()

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

+
++ + + + +
+Returns : The gimp version. +
+
+
+
+

+gimp_major_version

+
extern const guint gimp_major_version;
+
+

+ +

+
+
+
+

+gimp_minor_version

+
extern const guint gimp_minor_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_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
+
+

+ +

+
+
+
+

+GimpInitProc ()

+
void        (*GimpInitProc)                 (void);
+

+ +

+
+
+
+

+GimpQuitProc ()

+
void        (*GimpQuitProc)                 (void);
+

+ +

+
+
+
+

+GimpQueryProc ()

+
void        (*GimpQueryProc)                (void);
+

+ +

+
+
+
+

+GimpRunProc ()

+
void        (*GimpRunProc)                  (const gchar *name,
                                              gint n_params,
                                              const GimpParam *param,
                                              gint *n_return_vals,
-                                             GimpParam **return_vals);

- -

name : -
n_params : -
param : -
n_return_vals : -
return_vals : - + GimpParam **return_vals); +

-


GimpPlugInInfo

typedef struct {
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : +
+n_params : +
+param : +
+n_return_vals : +
+return_vals : + + +
+
+
+
+

+GimpPlugInInfo

+
typedef struct {
   /* called when the gimp application initially starts up */
   GimpInitProc  init_proc;
 
@@ -179,24 +361,45 @@
    */
   GimpRunProc   run_proc;
 } 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;
   gint32 height;
 } GimpParamRegion;
-

+ +

-


union GimpParamData

union GimpParamData
+

+
+
+
+

+union GimpParamData

+
union GimpParamData
 {
   gint32            d_int32;
   gint16            d_int16;
@@ -224,36 +427,100 @@
   gint32            d_tattoo;
   GimpPDBStatusType d_status;
 };
-

+ +

-


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.

+MAIN() at the toplevel of your file. No semicolon should be used.

+

-


gimp_main ()

gint        gimp_main                       (const GimpPlugInInfo *info,
+

+
+
+
+

+gimp_main ()

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

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

+and the 'argc' and 'argv' that are passed to "main".

+

-

info : the PLUG_IN_INFO structure -
argc : the number of arguments -
argv : the arguments -
Returns : -

gimp_quit ()

void        gimp_quit                       (void);

+

+
++ + + + + + + + + + + + + + + + + + +
+info : the PLUG_IN_INFO structure +
+argc : the number of arguments +
+argv : the arguments +
+Returns : +
+
+
+
+

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

+connection to main gimp application. This function never returns.

+

-


gimp_install_procedure ()

void        gimp_install_procedure          (const gchar *name,
+

+
+
+
+

+gimp_install_procedure ()

+
void        gimp_install_procedure          (const gchar *name,
                                              const gchar *blurb,
                                              const gchar *help,
                                              const gchar *author,
@@ -267,20 +534,25 @@
                                              gint n_params,
                                              gint n_return_vals,
                                              const GimpParamDef *params,
-                                             const GimpParamDef *return_vals);

+ const GimpParamDef *return_vals); +

Installs a new procedure with the PDB (procedural database). -

+

+

Call this function from within your Plug-In's query() function for each procedure your Plug-In implements. -

+

+

The name parameter is mandatory and should be unique, or it will overwrite an already existing procedure (overwrite procedures only if you know what you're doing). -

+

+

The blurb, help, author, copyright and date parameters are optional but then you shouldn't write procedures without proper documentation, should you. -

+

+

menu_label defines the label that should be used for the procedure's menu entry (use NULL if the procedure shouldn't have a menu entry). The position where to register in the menu hierarchy @@ -288,11 +560,13 @@ still accepts the old (pre-2.2) way of registering a menu entry and takes a string in the form "<Domain>/Path/To/My/Menu" (e.g. "<Image>/Filters/Render/Useless"). -

+

+

type must be one of GIMP_PLUGIN or GIMP_EXTENSION. Note that temporary procedures must be installed using gimp_install_temp_proc(). -

+

+

NOTE: Unlike the GIMP 1.2 API, GIMP_EXTENSION no longer means that the procedure's menu prefix is <Toolbox>, but that it will install temporary procedures. Therefore, the GIMP core @@ -300,30 +574,109 @@ gimp_extension_ack(), which means that the procedure has done its initialization, installed its temporary procedures and is ready to run. -

+

+

Not calling gimp_extension_ack() from a GIMP_EXTENSION procedure will cause th GIMP core to lock up. -

+

+

Additionally, a GIMP_EXTENSION procedure with no parameters (n_params == 0 and params == NULL) is an "automatic" extension -that will be automatically started on each GIMP startup.

+that will be automatically started on each GIMP startup.

+

-

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
name : the procedure's name. -
blurb : a short text describing what the procedure does. -
help : the help text for the procedure (usually considerably +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : the procedure's name. +
+blurb : a short text describing what the procedure does. +
+help : the help text for the procedure (usually considerably longer than blurb). -
author : the procedure's author(s). -
copyright : the procedure's copyright. -
date : the date the procedure was added. -
menu_label : the label to use for the procedure's menu entry, +
+author : the procedure's author(s). +
+copyright : the procedure's copyright. +
+date : the date the procedure was added. +
+menu_label : the label to use for the procedure's menu entry, or NULL if the procedure has no menu entry. -
image_types : the drawable types the procedure can handle. -
type : the type of the procedure. -
n_params : the number of parameters the procedure takes. -
n_return_vals : the number of return values the procedure returns. -
params : the procedure's parameters. -
return_vals : the procedure's return values. -

gimp_install_temp_proc ()

void        gimp_install_temp_proc          (const gchar *name,
+
+image_types : the drawable types the procedure can handle. +
+type : the type of the procedure. +
+n_params : the number of parameters the procedure takes. +
+n_return_vals : the number of return values the procedure returns. +
+params : the procedure's parameters. +
+return_vals : the procedure's return values. +
+
+
+
+

+gimp_install_temp_proc ()

+
void        gimp_install_temp_proc          (const gchar *name,
                                              const gchar *blurb,
                                              const gchar *help,
                                              const gchar *author,
@@ -338,289 +691,955 @@
                                              gint n_return_vals,
                                              const GimpParamDef *params,
                                              const GimpParamDef *return_vals,
-                                             GimpRunProc run_proc);

+ GimpRunProc run_proc); +

Installs a new temporary procedure with the PDB (procedural database). -

+

+

A temporary procedure is a procedure which is only available while one of your Plug-In's "real" procedures is running. -

+

+

See gimp_install_procedure() for most details. -

+

+

type must be GIMP_TEMPORARY or the function will fail. -

+

+

run_proc is the function which will be called to execute the procedure. -

+

+

NOTE: Normally, Plug-In communication is triggered by the Plug-In and the GIMP core only responds to the Plug-In's requests. You must explicitely enable receiving of temporary procedure run requests using either gimp_extension_enable() or gimp_extension_process(). See this functions' documentation for -details.

+details.

+

-

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
name : the procedure's name. -
blurb : a short text describing what the procedure does. -
help : the help text for the procedure (usually considerably +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : the procedure's name. +
+blurb : a short text describing what the procedure does. +
+help : the help text for the procedure (usually considerably longer than blurb). -
author : the procedure's author(s). -
copyright : the procedure's copyright. -
date : the date the procedure was added. -
menu_label : the procedure's menu label, or NULL if the procedure has +
+author : the procedure's author(s). +
+copyright : the procedure's copyright. +
+date : the date the procedure was added. +
+menu_label : the procedure's menu label, or NULL if the procedure has no menu entry. -
image_types : the drawable types the procedure can handle. -
type : the type of the procedure. -
n_params : the number of parameters the procedure takes. -
n_return_vals : the number of return values the procedure returns. -
params : the procedure's parameters. -
return_vals : the procedure's return values. -
run_proc : the function to call for executing the procedure. -

gimp_uninstall_temp_proc ()

void        gimp_uninstall_temp_proc        (const gchar *name);

+

+image_types : the drawable types the procedure can handle. +
+type : the type of the procedure. +
+n_params : the number of parameters the procedure takes. +
+n_return_vals : the number of return values the procedure returns. +
+params : the procedure's parameters. +
+return_vals : the procedure's return values. +
+run_proc : the function to call for executing the procedure. +
+
+
+
+

+gimp_uninstall_temp_proc ()

+
void        gimp_uninstall_temp_proc        (const gchar *name);
+

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

+installed using gimp_install_temp_proc().

+

-

name : the procedure's name -

gimp_run_procedure ()

GimpParam*  gimp_run_procedure              (const gchar *name,
+

+
++ + + + +
+name : the procedure's name +
+
+
+
+

+gimp_run_procedure ()

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

+ ...); +

This function calls a GIMP procedure and returns its return values. -

+

+

The procedure's parameters are given by a va_list in the format (type, value, type, value) and must be terminated by GIMP_PDB_END. -

+

+

This function converts the va_list of parameters into an array -and passes them to gimp_run_procedure2().

+and passes them to gimp_run_procedure2().

+

-

name : the name of the procedure to run -
n_return_vals : return location for the number of return values -
... : list of procedure parameters -
Returns : the procedure's return values. -

gimp_run_procedure2 ()

GimpParam*  gimp_run_procedure2             (const gchar *name,
+

+
++ + + + + + + + + + + + + + + + + + +
+name : the name of the procedure to run +
+n_return_vals : return location for the number of return values +
+... : list of procedure parameters +
+Returns : the procedure's return values. +
+
+
+
+

+gimp_run_procedure2 ()

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

-This function calls a GIMP procedure and returns its return values.

- -

name : the name of the procedure to run -
n_return_vals : return location for the number of return values -
n_params : the number of parameters the procedure takes. -
params : the procedure's parameters array. -
Returns : the procedure's return values. -

gimp_destroy_params ()

void        gimp_destroy_params             (GimpParam *params,
-                                             gint n_params);

-Destroys a GimpParam array as returned by gimp_run_procedure()

- -

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

gimp_destroy_paramdefs ()

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

-Destroys a GimpParamDef array as returned by gimp_query_procedure()

- -

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

gimp_tile_width ()

guint       gimp_tile_width                 (void);

+ const GimpParam *params); +

+This function calls a GIMP procedure and returns its return values.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : the name of the procedure to run +
+n_return_vals : return location for the number of return values +
+n_params : the number of parameters the procedure takes. +
+params : the procedure's parameters array. +
+Returns : the procedure's return values. +
+
+
+
+

+gimp_destroy_params ()

+
void        gimp_destroy_params             (GimpParam *params,
+                                             gint n_params);
+

+Destroys a GimpParam array as returned by gimp_run_procedure()

+

+ +

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

+gimp_destroy_paramdefs ()

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

+Destroys a GimpParamDef array as returned by gimp_query_procedure()

+

+ +

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

+gimp_tile_width ()

+
guint       gimp_tile_width                 (void);
+

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

+given at Plug-In config time.

+

-

Returns : the tile_width -

gimp_tile_height ()

guint       gimp_tile_height                (void);

+

+
++ + + + +
+Returns : the tile_width +
+
+
+
+

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

+given at Plug-In config time.

+

-

Returns : the tile_height -

gimp_shm_ID ()

gint        gimp_shm_ID                     (void);

+

+
++ + + + +
+Returns : the tile_height +
+
+
+
+

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

+given at Plug-In config time.

+

-

Returns : the shared memory ID -

gimp_shm_addr ()

guchar*     gimp_shm_addr                   (void);

+

+
++ + + + +
+Returns : the shared memory ID +
+
+
+
+

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

+value given at Plug-In config time.

+

-

Returns : the shared memory address -

gimp_gamma ()

gdouble     gimp_gamma                      (void);

+

+
++ + + + +
+Returns : the shared memory address +
+
+
+
+

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

+

+

+NOTE: this feature is unimplemented.

+

+ +

+
++ + + + +
+Returns : the gamma value +
+
+
+
+

+gimp_install_cmap ()

+
gboolean    gimp_install_cmap               (void);
+

Returns whether or not the Plug-In should allocate an own colormap when running on an 8 bit display. This is a constant value given at Plug-In config time. -

-See also: gimp_min_colors()

- -

Returns : the install_cmap boolean -

gimp_min_colors ()

gint        gimp_min_colors                 (void);

+

+

+See also: gimp_min_colors()

+

+ +

+
++ + + + +
+Returns : the install_cmap boolean +
+
+
+
+

+gimp_min_colors ()

+
gint        gimp_min_colors                 (void);
+

Returns the minimum number of colors to use when allocating an own colormap on 8 bit displays. This is a constant value given at Plug-In config time. -

-See also: gimp_install_cmap()

- -

Returns : the minimum number of colors to allocate -

gimp_show_tool_tips ()

gboolean    gimp_show_tool_tips             (void);

+

+

+See also: gimp_install_cmap()

+

+ +

+
++ + + + +
+Returns : the minimum number of colors to allocate +
+
+
+
+

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

+constant value given at Plug-In config time.

+

-

Returns : the show_tool_tips boolean -

gimp_show_help_button ()

gboolean    gimp_show_help_button           (void);

+

+
++ + + + +
+Returns : the show_tool_tips boolean +
+
+
+
+

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

+button if help_func and help_id are given.

+

-

Returns : the show_help_button boolean - -

Since GIMP 2.2 -


+
+
+

+gimp_check_size ()

+
GimpCheckSize gimp_check_size               (void);

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

- -

Returns : the check_size value +This is a constant value given at Plug-In config time.

+

-

Since GIMP 2.2 -


+
+
+

+gimp_check_type ()

+
GimpCheckType gimp_check_type               (void);

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

- -

Returns : the check_type value +This is a constant value given at Plug-In config time.

+

-

Since GIMP 2.2 -


gimp_default_display ()

gint32      gimp_default_display            (void);

+

+
++ + + + +
+Returns : the check_type value + +
+

Since GIMP 2.2 +

+
+
+
+

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

+constant value given at Plug-In config time.

+

-

Returns : the default display ID -

gimp_wm_class ()

const gchar* gimp_wm_class                  (void);

+

+
++ + + + +
+Returns : the default display ID +
+
+
+
+

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

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

+

+
++ + + + +
+Returns : the window manager class +
+
+
+
+

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

+This is a constant value given at Plug-In config time.

+

-

Returns : the display name -

gimp_monitor_number ()

gint        gimp_monitor_number             (void);

+

+
++ + + + +
+Returns : the display name +
+
+
+
+

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

+This is a constant value given at Plug-In config time.

+

-

Returns : the monitor number -

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

+

+
++ + + + +
+Returns : the monitor number +
+
+
+
+

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

Enables asnychronous processing of messages from the main GIMP application. -

+

+

Normally, a plug-in is not called by the GIMP except for the call to the procedure it implements. All subsequent communication is triggered by the plug-in and all messages sent from the GIMP to the plug-in are just answers to requests the plug-in made. -

+

+

If the plug-in however registered temporary procedures using gimp_install_temp_proc(), it needs to be able to receive requests to execute them. Usually this will be done by running gimp_extension_process() in an endless loop. -

+

+

If the plug-in cannot use gimp_extension_process(), i.e. if it has a GUI and is hanging around in a GMainLoop, it must call gimp_extension_enable(). -

+

+

Note that the plug-in does not need to be a GIMP_EXTENSION to register temporary procedures. -

-See also: gimp_install_procedure(), gimp_install_temp_proc()

- -


gimp_extension_ack ()

void        gimp_extension_ack              (void);

+

+

+See also: gimp_install_procedure(), gimp_install_temp_proc()

+

+ +

+
+
+
+

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

+

+

This function must be called from every procedure that was registered as GIMP_EXTENSION. -

+

+

Subsequently, extensions can process temporary procedure run requests using either gimp_extension_enable() or gimp_extension_process(). -

-See also: gimp_install_procedure(), gimp_install_temp_proc()

- -


gimp_extension_process ()

void        gimp_extension_process          (guint timeout);

+

+

+See also: gimp_install_procedure(), gimp_install_temp_proc()

+

+ +

+
+
+
+

+gimp_extension_process ()

+
void        gimp_extension_process          (guint timeout);
+

Processes one message sent by the GIMP and returns. -

+

+

Call this function in an endless loop after calling gimp_extension_ack() to process requests for running temporary procedures. -

+

+

See gimp_extension_enable() for an asynchronous way of doing the same if running an endless loop is not an option. -

-See also: gimp_install_procedure(), gimp_install_temp_proc()

- -

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

gimp_parasite_find ()


+

+See also: gimp_install_procedure(), gimp_install_temp_proc()

+

+ +

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

+gimp_parasite_find ()

+
GimpParasite* gimp_parasite_find            (const gchar *name);

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

Finds the named parasite. -

+

+

Finds and returns the named parasite that was previously attached to -the gimp.

+the gimp.

+

-

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

gimp_parasite_list ()

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

+

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

+gimp_parasite_list ()

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

List all parasites. -

-Returns a list of all currently attached parasites.

- -

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

+
+
+

+gimp_parasite_attach ()

+
gboolean    gimp_parasite_attach            (GimpParasite *parasite);

+>GimpParasite *parasite); +

Add a parasite to the gimp. -

+

+

This procedure attaches a parasite to the gimp. It has no return -values.

+values.

+

-

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

gimp_parasite_detach ()

gboolean    gimp_parasite_detach            (const gchar *name);

+

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

+gimp_parasite_detach ()

+
gboolean    gimp_parasite_detach            (const gchar *name);
+

Removes a parasite from the gimp. -

+

+

This procedure detaches a parasite from the gimp. It has no return -values.

+values.

+

-

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

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

+ gconstpointer data); +

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

-See Also: gimp_parasite_attach()

- -

+ + +
name : the name of the +

+See Also: gimp_parasite_attach()

+

+ +

+
++ + + + + + + + + + + + + +
+name : the name of the GimpParasite to create and attach. -
flags : the flags set on the +
+flags : the flags set on the GimpParasite. -
size : the size of the parasite data in bytes. -
data : a pointer to the data attached with the +
+size : the size of the parasite data in bytes. +
+data : a pointer to the data attached with the GimpParasite. -
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpimagecombobox.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpimagecombobox

gimpimagecombobox

gimpimagecombobox — A widget providing a popup menu of images.

Synopsis

+
+
+
+gimpimagecombobox
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpimagecombobox

+

gimpimagecombobox — A widget providing a popup menu of images.

+
+
+

Synopsis

+
 
 
 
@@ -8,27 +47,67 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_image_combo_box_new        (GimpImageConstraintFunc constraint,
                                              gpointer data);
-

Description

+

+
+
+

Description

+

A widget providing a popup menu of images. -

Details

GimpImageConstraintFunc ()

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

- -

image_id : -
data : -
Returns : - - -

gimp_image_combo_box_new ()


+
+
+

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

+ gpointer data); +

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

+

+

You should use gimp_int_combo_connect() to initialize and connect the combo. Use gimp_int_combo_box_get_active() to retrieve the ID of -the selected image.

+the selected image.

+

-

+

Since GIMP 2.2 +

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimage.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpimage.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpimage.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpimage.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpimage

gimpimage

gimpimage — Operations on complete images.

Synopsis

+
+
+
+gimpimage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpimage

+

gimpimage — Operations on complete images.

+
+
+

Synopsis

+
 
 
 
@@ -163,116 +202,389 @@
                                              gint flags,
                                              gint size,
                                              gconstpointer data);
-

Description

+

+
+
+

Description

+

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

Details

gimp_image_list ()

gint*       gimp_image_list                 (gint *num_images);

+

+
+
+

Details

+
+

+gimp_image_list ()

+
gint*       gimp_image_list                 (gint *num_images);
+

Returns the list of images currently open. -

+

+

This procedure returns the list of images currently open in the -GIMP.

+GIMP.

+

-

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

gimp_image_new ()

gint32      gimp_image_new                  (gint width,
+

+
++ + + + + + + + + + +
+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,
                                              GimpImageBaseType type);

+>GimpImageBaseType type); +

Creates a new image with the specified width, height, and type. -

+

+

Creates a new image, undisplayed with the specified extents and type. A layer should be created and added before this image is displayed, or subsequent calls to 'gimp_display_new' with this image as an argument will fail. Layers can be created using the 'gimp_layer_new' commands. They can be added to an image using the -'gimp_image_add_layer' command.

+'gimp_image_add_layer' command.

+

-

width : The width of the image. -
height : The height of the image. -
type : The type of image. -
Returns : The ID of the newly created image. -

gimp_image_duplicate ()

gint32      gimp_image_duplicate            (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+width : The width of the image. +
+height : The height of the image. +
+type : The type of image. +
+Returns : The ID of the newly created image. +
+
+
+
+

+gimp_image_duplicate ()

+
gint32      gimp_image_duplicate            (gint32 image_ID);
+

Duplicate the specified image -

+

+

This procedure duplicates the specified image, copying all layers, -channels, and image information.

+channels, and image information.

+

-

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

gimp_image_delete ()

gboolean    gimp_image_delete               (gint32 image_ID);

+

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

+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 deleted. This means that you can not delete an image through the PDB that was created by the user. If the associated display was however created through the PDB and you know the display ID, you may delete the display. Removal of the last associated display will then delete -the image.

+the image.

+

-

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

+
+
+

+gimp_image_base_type ()

+
GimpImageBaseType gimp_image_base_type      (gint32 image_ID);

+>GimpImageBaseType gimp_image_base_type (gint32 image_ID); +

Get the base type of the image. -

+

+

This procedure returns the image's base type. Layers in the image -must be of this subtype, but can have an optional alpha channel.

+must be of this subtype, but can have an optional alpha channel.

+

-

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

gimp_image_width ()

gint        gimp_image_width                (gint32 image_ID);

+

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

+gimp_image_width ()

+
gint        gimp_image_width                (gint32 image_ID);
+

Return the width of the image -

+

+

This procedure returns the image's width. This value is independent -of any of the layers in this image. This is the \"canvas\" width.

+of any of the layers in this image. This is the \"canvas\" width.

+

-

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

gimp_image_height ()

gint        gimp_image_height               (gint32 image_ID);

+

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

+gimp_image_height ()

+
gint        gimp_image_height               (gint32 image_ID);
+

Return the height of the image -

+

+

This procedure returns the image's height. This value is independent -of any of the layers in this image. This is the \"canvas\" height.

+of any of the layers in this image. This is the \"canvas\" height.

+

-

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

gimp_image_free_shadow ()

gboolean    gimp_image_free_shadow          (gint32 image_ID);

+

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

+gimp_image_free_shadow ()

+
gboolean    gimp_image_free_shadow          (gint32 image_ID);
+

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

+

+

This procedure is intended as a memory saving device. If any shadow memory has been allocated, it will be freed automatically on a call -to 'gimp_image_delete'.

+to 'gimp_image_delete'.

+

-

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

gimp_image_flip ()

gboolean    gimp_image_flip                 (gint32 image_ID,
-                                             GimpOrientationType flip_type);

+

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

+gimp_image_flip ()

+
gboolean    gimp_image_flip                 (gint32 image_ID,
+                                             GimpOrientationType flip_type);
+

Flips the image horizontally or vertically. -

-This procedure flips (mirrors) the image.

- -

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

gimp_image_rotate ()

gboolean    gimp_image_rotate               (gint32 image_ID,
-                                             GimpRotationType rotate_type);

+

+

+This procedure flips (mirrors) the image.

+

+ +

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

+gimp_image_rotate ()

+
gboolean    gimp_image_rotate               (gint32 image_ID,
+                                             GimpRotationType rotate_type);
+

Rotates the image by the specified degrees. -

-This procedure rotates the image.

- -

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

gimp_image_resize ()

gboolean    gimp_image_resize               (gint32 image_ID,
+

+

+This procedure rotates the image.

+

+ +

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

+ gint offy); +

Resize the image to the specified extents. -

+

+

This procedure resizes 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 @@ -280,31 +592,100 @@ that are out of bounds. All channels within the image are resized according to the specified parameters; this includes the image selection mask. All layers within the image are repositioned -according to the specified offsets.

+according to the specified offsets.

+

-

image_ID : The image. -
new_width : New image width. -
new_height : New image height. -
offx : x offset between upper left corner of old and new images: (new - old). -
offy : y offset between upper left corner of old and new images: (new - old). -
Returns : TRUE on success. -

gimp_image_resize_to_layers ()

gboolean    gimp_image_resize_to_layers     (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+new_width : New image width. +
+new_height : New image height. +
+offx : x offset between upper left corner of old and new images: (new - old). +
+offy : y offset between upper left corner of old and new images: (new - old). +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_resize_to_layers ()

+
gboolean    gimp_image_resize_to_layers     (gint32 image_ID);
+

Resize the image to fit all layers. -

+

+

This procedure resizes the image to the bounding box of all layers of the image. All channels within the image are resized to the new size; this includes the image selection mask. All layers within the -image are repositioned to the new image area.

- -

image_ID : The image. -
Returns : TRUE on success. +image are repositioned to the new image area.

+

-

Since GIMP 2.2 -


gimp_image_scale ()

gboolean    gimp_image_scale                (gint32 image_ID,
+

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

Since GIMP 2.2 +

+
+
+
+

+gimp_image_scale ()

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

+ gint new_height); +

Scale the image to the specified extents. -

+

+

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 @@ -312,94 +693,324 @@ 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.

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

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

+ gint offy); +

Crop the image to the specified extents. -

+

+

This procedure crops 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. All channels and layers within the image are cropped to the new image extents; this includes the image selection mask. If any parameters are out of -range, an error is returned.

+range, an error is returned.

+

-

image_ID : The image. -
new_width : New image width: (0 < new_width <= width). -
new_height : New image height: (0 < new_height <= height). -
offx : x offset: (0 <= offx <= (width - new_width)). -
offy : y offset: (0 <= offy <= (height - new_height)). -
Returns : TRUE on success. -

gimp_image_get_layers ()

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

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+new_width : New image width: (0 < new_width <= width). +
+new_height : New image height: (0 < new_height <= height). +
+offx : x offset: (0 <= offx <= (width - new_width)). +
+offy : y offset: (0 <= offy <= (height - new_height)). +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_get_layers ()

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

Returns the list of layers contained in the specified image. -

+

+

This procedure returns the list of layers contained in the specified -image. The order of layers is from topmost to bottommost.

+image. The order of layers is from topmost to bottommost.

+

-

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

+

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

Returns the list of channels contained in the specified image. -

+

+

This procedure returns the list of channels contained in the specified image. This does not include the selection mask, or layer -masks. The order is from topmost to bottommost.

+masks. The order is from topmost to bottommost.

+

-

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

+

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

Get the image's active drawable -

+

+

This procedure returns the ID of the image's active drawable. This can be either a layer, a channel, or a layer mask. The active drawable is specified by the active image channel. If that is -1, then by the active image layer. If the active image layer has a layer mask and the layer mask is in edit mode, then the layer mask -is the active drawable.

+is the active drawable.

+

-

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

gimp_image_unset_active_channel ()

gboolean    gimp_image_unset_active_channel (gint32 image_ID);

+

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

+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 active channel, and if desired, one can be set through a call to 'Set Active Channel'. No error is returned in the case of no -existing active channel.

+existing active channel.

+

-

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

gimp_image_get_floating_sel ()

gint32      gimp_image_get_floating_sel     (gint32 image_ID);

+

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

+gimp_image_get_floating_sel ()

+
gint32      gimp_image_get_floating_sel     (gint32 image_ID);
+

Return the floating selection of the image. -

+

+

This procedure returns the image's floating selection, if it exists. -If it doesn't exist, -1 is returned as the layer ID.

+If it doesn't exist, -1 is returned as the layer ID.

+

-

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

+

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

Return the drawable the floating selection is attached to. -

+

+

This procedure returns the drawable the image's floating selection is attached to, if it exists. If it doesn't exist, -1 is returned as -the drawable ID.

+the drawable ID.

+

-

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

+
++ + + + + + + + + + +
+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,
@@ -408,9 +1019,11 @@
                                              gdouble average_radius,
                                              GimpRGB *color);

+>GimpRGB *color); +

Determine the color at the given drawable coordinates -

+

+

This tool determines the color at the specified coordinates. The returned color is an RGB triplet even for grayscale and indexed drawables. If the coordinates lie outside of the extents of the @@ -422,396 +1035,1378 @@ instead of that for the specified drawable. This is equivalent to sampling for colors after merging all visible layers. In the case of a merged sampling, the supplied drawable is ignored except for -finding the image it belongs to.

+finding the image it belongs to.

+

-

image_ID : The image. -
drawable_ID : The drawable to pick from. -
x : x coordinate of upper-left corner of rectangle. -
y : y coordinate of upper-left corner of rectangle. -
sample_merged : Use the composite image, not the drawable. -
sample_average : Average the color of all the pixels in a specified radius. -
average_radius : The radius of pixels to average. -
color : The return color. -
Returns : TRUE on success. -

gimp_image_pick_correlate_layer ()

gint32      gimp_image_pick_correlate_layer (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+drawable_ID : The drawable to pick from. +
+x : x coordinate of upper-left corner of rectangle. +
+y : y coordinate of upper-left corner of rectangle. +
+sample_merged : Use the composite image, not the drawable. +
+sample_average : Average the color of all the pixels in a specified radius. +
+average_radius : The radius of pixels to average. +
+color : The return color. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_pick_correlate_layer ()

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

+ gint y); +

Find the layer visible at the specified coordinates. -

+

+

This procedure finds the layer which is visible at the specified coordinates. Layers which do not qualify are those whose extents do not pass within the specified coordinates, or which are transparent at the specified coordinates. This procedure will return -1 if no -layer is found.

+layer is found.

+

-

image_ID : The image. -
x : The x coordinate for the pick. -
y : The y coordinate for the pick. -
Returns : The layer found at the specified coordinates. -

gimp_image_add_layer ()

gboolean    gimp_image_add_layer            (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+x : The x coordinate for the pick. +
+y : The y coordinate for the pick. +
+Returns : The layer found at the specified coordinates. +
+
+
+
+

+gimp_image_add_layer ()

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

+ gint position); +

Add the specified layer to the image. -

+

+

This procedure adds the specified layer to the gimage at the given position. If the position is specified as -1, then the layer is inserted at the top of the layer stack. If the layer to be added has no alpha channel, it must be added at position 0. The layer type -must be compatible with the image base type.

+must be compatible with the image base type.

+

-

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

gimp_image_remove_layer ()

gboolean    gimp_image_remove_layer         (gint32 image_ID,
-                                             gint32 layer_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+layer_ID : The layer. +
+position : The layer position. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_remove_layer ()

+
gboolean    gimp_image_remove_layer         (gint32 image_ID,
+                                             gint32 layer_ID);
+

Remove the specified layer from the image. -

+

+

This procedure removes the specified layer from the image. If the layer doesn't exist, an error is returned. If there are no layers left in the image, this call will fail. If this layer is the last layer remaining, the image will become empty and have no active -layer.

+layer.

+

-

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

gimp_image_raise_layer ()

gboolean    gimp_image_raise_layer          (gint32 image_ID,
-                                             gint32 layer_ID);

+

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

Raise the specified layer in the image's layer stack -

+

+

This procedure raises the specified layer one step in the existing layer stack. It will not move the layer if there is no layer above -it, or the layer has no alpha channel.

+it, or the layer has no alpha channel.

+

-

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

+

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

Lower the specified layer in the image's layer stack -

+

+

This procedure lowers the specified layer one step in the existing layer stack. It will not move the layer if there is no layer below -it, or the layer has no alpha channel.

+it, or the layer has no alpha channel.

+

-

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

+

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

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

+

+

This procedure raises the specified layer to top of the existing layer stack. It will not move the layer if there is no layer above -it, or the layer has no alpha channel.

+it, or the layer has no alpha channel.

+

-

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
+

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

+ gint32 layer_ID); +

Lower the specified layer in the image's layer stack to bottom of stack -

+

+

This procedure lowers the specified layer to bottom of the existing layer stack. It will not move the layer if there is no layer below -it, or the layer has no alpha channel.

+it, or the layer has no alpha channel.

+

-

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

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

+ gint position); +

Add the specified channel to the image. -

+

+

This procedure adds the specified channel to the image. The position channel is not currently used, so the channel is always inserted at -the top of the channel stack.

+the top of the channel stack.

+

-

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

gimp_image_remove_channel ()

gboolean    gimp_image_remove_channel       (gint32 image_ID,
-                                             gint32 channel_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+channel_ID : The channel. +
+position : The channel position. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_remove_channel ()

+
gboolean    gimp_image_remove_channel       (gint32 image_ID,
+                                             gint32 channel_ID);
+

Remove the specified channel from the image. -

+

+

This procedure removes the specified channel from the image. If the -channel doesn't exist, an error is returned.

+channel doesn't exist, an error is returned.

+

-

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

+

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

Raise the specified channel in the image's channel stack -

+

+

This procedure raises the specified channel one step in the existing channel stack. It will not move the channel if there is no channel -above it.

+above it.

+

-

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

+

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

Lower the specified layer in the image's layer stack -

+

+

This procedure lowers the specified layer one step in the existing layer stack. It will not move the layer if there is no layer below -it, or the layer has no alpha channel.

+it, or the layer has no alpha channel.

+

-

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

gimp_image_flatten ()

gint32      gimp_image_flatten              (gint32 image_ID);

+

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

+gimp_image_flatten ()

+
gint32      gimp_image_flatten              (gint32 image_ID);
+

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

+

+

This procedure combines the visible layers in a manner analogous to merging with the CLIP_TO_IMAGE merge type. Non-visible layers are -discarded, and the resulting image is stripped of its alpha channel.

+discarded, and the resulting image is stripped of its alpha channel.

+

-

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

gimp_image_merge_visible_layers ()

gint32      gimp_image_merge_visible_layers (gint32 image_ID,
-                                             GimpMergeType merge_type);

+

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

+gimp_image_merge_visible_layers ()

+
gint32      gimp_image_merge_visible_layers (gint32 image_ID,
+                                             GimpMergeType merge_type);
+

Merge the visible image layers into one. -

+

+

This procedure combines the visible layers into a single layer using the specified merge type. A merge type of EXPAND_AS_NECESSARY expands the final layer to encompass the areas of the visible layers. A merge type of CLIP_TO_IMAGE clips the final layer to the extents of the image. A merge type of CLIP_TO_BOTTOM_LAYER clips the -final layer to the size of the bottommost layer.

+final layer to the size of the bottommost layer.

+

-

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

+
++ + + + + + + + + + + + + + +
+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,
-                                             GimpMergeType merge_type);

+ GimpMergeType merge_type); +

Merge the layer passed and the first visible layer below. -

+

+

This procedure combines the passed layer and the first visible layer below it using the specified merge type. A merge type of EXPAND_AS_NECESSARY expands the final layer to encompass the areas of the visible layers. A merge type of CLIP_TO_IMAGE clips the final layer to the extents of the image. A merge type of CLIP_TO_BOTTOM_LAYER clips the final layer to the size of the -bottommost layer.

+bottommost layer.

+

-

image_ID : The image. -
merge_layer_ID : The layer to merge down from. -
merge_type : The type of merge. -
Returns : The resulting layer. -

gimp_image_clean_all ()

gboolean    gimp_image_clean_all            (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+merge_layer_ID : The layer to merge down from. +
+merge_type : The type of merge. +
+Returns : The resulting layer. +
+
+
+
+

+gimp_image_clean_all ()

+
gboolean    gimp_image_clean_all            (gint32 image_ID);
+

Set the image dirty count to 0. -

+

+

This procedure sets the specified image's dirty count to 0, allowing operations to occur without having a 'dirtied' image. This is especially useful for creating and loading images which should not initially be considered dirty, even though layers must be created, -filled, and installed in the image.

+filled, and installed in the image.

+

-

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

gimp_image_is_dirty ()

gboolean    gimp_image_is_dirty             (gint32 image_ID);

+

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

+gimp_image_is_dirty ()

+
gboolean    gimp_image_is_dirty             (gint32 image_ID);
+

Checks if the image has unsaved changes. -

+

+

This procedure checks the specified image's dirty count to see if it -needs to be saved.

+needs to be saved.

+

-

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

+

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

Returns the specified image's active layer. -

+

+

If there is an active layer, its ID will be returned, otherwise, -1. If a channel is currently active, then no layer will be. If a layer -mask is active, then this will return the associated layer.

+mask is active, then this will return the associated layer.

+

-

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

+

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

Sets the specified image's active layer. -

+

+

If the layer exists, it is set as the active layer in the image. Any previous active layer or channel is set to inactive. An exception is a previously existing floating selection, in which case this -procedure will return an execution error.

+procedure will return an execution error.

+

-

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

+

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

Returns the specified image's active channel. -

+

+

If there is an active channel, this will return the channel ID, -otherwise, -1.

+otherwise, -1.

+

-

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

+

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

Sets the specified image's active channel. -

+

+

If the channel exists, it is set as the active channel in the image. Any previous active channel or channel is set to inactive. An exception is a previously existing floating selection, in which case -this procedure will return an execution error.

+this procedure will return an execution error.

+

-

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

+

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

Returns the specified image's selection. -

+

+

This will always return a valid ID for a selection -- which is -represented as a channel internally.

+represented as a channel internally.

+

-

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

gimp_image_get_component_active ()

gboolean    gimp_image_get_component_active (gint32 image_ID,
-                                             GimpChannelType component);

+

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

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

+

+

This procedure returns if the specified image's image component (i.e. Red, Green, Blue intensity channels in an RGB image) is active or inactive -- whether or not it can be modified. If the specified -component is not valid for the image type, an error is returned.

+component is not valid for the image type, an error is returned.

+

-

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

+
++ + + + + + + + + + + + + + +
+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,
                                              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. Red, Green, Blue intensity channels in an RGB image) is active or inactive -- whether or not it can be modified. If the specified -component is not valid for the image type, an error is returned.

+component is not valid for the image type, an error is returned.

+

-

image_ID : The image. -
component : The image component. -
active : Component is active. -
Returns : TRUE on success. -

gimp_image_get_component_visible ()

gboolean    gimp_image_get_component_visible
+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+component : The image component. +
+active : Component is active. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_get_component_visible ()

+
gboolean    gimp_image_get_component_visible
                                             (gint32 image_ID,
-                                             GimpChannelType component);

+ GimpChannelType component); +

Returns if the specified image's image component is visible. -

+

+

This procedure returns if the specified image's image component (i.e. Red, Green, Blue intensity channels in an RGB image) is visible or invisible -- whether or not it can be seen. If the specified component is not valid for the image type, an error is -returned.

+returned.

+

-

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

gimp_image_set_component_visible ()

gboolean    gimp_image_set_component_visible
+

+
++ + + + + + + + + + + + + + +
+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,
                                              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. Red, Green, Blue intensity channels in an RGB image) is visible or invisible -- whether or not it can be seen. If the specified -component is not valid for the image type, an error is returned.

+component is not valid for the image type, an error is returned.

+

-

image_ID : The image. -
component : The image component. -
visible : Component is visible. -
Returns : TRUE on success. -

gimp_image_get_filename ()

gchar*      gimp_image_get_filename         (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+component : The image component. +
+visible : Component is visible. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_get_filename ()

+
gchar*      gimp_image_get_filename         (gint32 image_ID);
+

Returns the specified image's filename. -

+

+

This procedure returns the specified image's filename in the filesystem encoding. The image has a filename only if it was loaded -or has since been saved. Otherwise, this function returns NULL.

+or has since been saved. Otherwise, this function returns NULL.

+

-

image_ID : The image. -
Returns : The filename. -

gimp_image_set_filename ()

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

+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : The filename. +
+
+
+
+

+gimp_image_set_filename ()

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

Sets the specified image's filename. -

+

+

This procedure sets the specified image's filename. The filename -should be in the filesystem encoding.

+should be in the filesystem encoding.

+

-

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

+

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

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

+

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

+ gdouble *yresolution); +

Returns the specified image's resolution. -

+

+

This procedure returns the specified image's resolution in dots per -inch. This value is independent of any of the layers in this image.

+inch. This value is independent of any of the layers in this image.

+

-

image_ID : The image. -
xresolution : The resolutionin the x-axis, in dots per inch. -
yresolution : The resolutionin the y-axis, in dots per inch. -
Returns : TRUE on success. -

gimp_image_set_resolution ()

gboolean    gimp_image_set_resolution       (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+xresolution : The resolutionin the x-axis, in dots per inch. +
+yresolution : The resolutionin the y-axis, in dots per inch. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_set_resolution ()

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

+ gdouble yresolution); +

Sets the specified image's resolution. -

+

+

This procedure sets the specified image's resolution in dots per inch. This value is independent of any of the layers in this image. -No scaling or resizing is performed.

+No scaling or resizing is performed.

+

-

image_ID : The image. -
xresolution : The new image resolution in the x-axis, in dots per inch. -
yresolution : The new image resolution in the y-axis, in dots per inch. -
Returns : TRUE on success. -

+
+
+

+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 independent of any of the layers in this image. See the gimp_unit_* procedure definitions for the valid range of unit IDs and a -description of the unit system.

+description of the unit system.

+

-

image_ID : The image. -
Returns : The unit. -

gimp_image_set_unit ()

gboolean    gimp_image_set_unit             (gint32 image_ID,
+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : The unit. +
+
+
+
+

+gimp_image_set_unit ()

+
gboolean    gimp_image_set_unit             (gint32 image_ID,
                                              GimpUnit unit);

+>GimpUnit unit); +

Sets the specified image's unit. -

+

+

This procedure sets the specified image's unit. No scaling or resizing is performed. This value is independent of any of the layers in this image. See the gimp_unit_* procedure definitions for -the valid range of unit IDs and a description of the unit system.

+the valid range of unit IDs and a description of the unit system.

+

-

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

+

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

Set the tattoo state associated with the image. -

+

+

This procedure sets the tattoo state of the image. Use only by save/load plugins that wish to preserve an images tattoo state. Using this function at other times will produce unexpected results. @@ -823,160 +2418,601 @@ data has been loaded and all the tattoos have been set then this is the last procedure that should be called. If effectively does a status check on the tattoo values that have been set to make sure -that all is OK.

+that all is OK.

+

-

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

+

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

Returns the tattoo state associated with the image. -

+

+

This procedure returns the tattoo state of the image. Use only by save/load plugins that wish to preserve an images tattoo state. -Using this function at other times will produce unexpected results.

+Using this function at other times will produce unexpected results.

+

-

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

+

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

Find a layer with a given tattoo in an image. -

+

+

This procedure returns the layer with the given tattoo in the -specified image.

+specified image.

+

-

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
+

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

+ gint tattoo); +

Find a channel with a given tattoo in an image. -

+

+

This procedure returns the channel with the given tattoo in the -specified image.

+specified image.

+

-

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

gimp_image_get_cmap ()

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

Warning

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

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

- -

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

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

+gimp_image_get_cmap ()

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

Warning

+

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

+
+

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

+

+ +

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

+gimp_image_set_cmap ()

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

Warning

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

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

- -

image_ID : The image. -
cmap : The new colormap values. -
num_colors : Number of colors in the colormap array. -
Returns : TRUE on success. -

gimp_image_get_colormap ()

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

+ gint num_colors); +

+

Warning

+

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

+
+

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

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+cmap : The new colormap values. +
+num_colors : Number of colors in the colormap array. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_get_colormap ()

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

Returns the image's colormap -

+

+

This procedure returns an actual pointer to the image's colormap, as well as the number of colors contained in the colormap. If the image -is not of base type INDEXED, this pointer will be NULL.

+is not of base type INDEXED, this pointer will be NULL.

+

-

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

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

+ gint num_colors); +

Sets the entries in the image's colormap. -

+

+

This procedure sets the entries in the specified image's colormap. The number of colors is specified by the \"num_colors\" parameter and corresponds to the number of INT8 triples that must be contained -in the \"cmap\" array.

+in the \"cmap\" array.

+

-

image_ID : The image. -
colormap : The new colormap values. -
num_colors : Number of colors in the colormap array. -
Returns : TRUE on success. -

gimp_image_get_thumbnail_data ()

guchar*     gimp_image_get_thumbnail_data   (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+colormap : The new colormap values. +
+num_colors : Number of colors in the colormap array. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_get_thumbnail_data ()

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

+ gint *bpp); +

-

image_ID : -
width : -
height : -
bpp : -
Returns : - - -

+
+
+

+gimp_image_parasite_find ()

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

+ const gchar *name); +

Finds the named parasite in an image -

+

+

Finds and returns the named parasite that was previously attached to -an image.

+an image.

+

-

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

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

+ gchar ***parasites); +

List all parasites. -

-Returns a list of all currently attached parasites.

- -

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

gimp_image_parasite_attach ()

gboolean    gimp_image_parasite_attach      (gint32 image_ID,
+

+

+Returns a list of all currently attached parasites.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+num_parasites : The number of attached parasites. +
+parasites : The names of currently attached parasites. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_image_parasite_attach ()

+
gboolean    gimp_image_parasite_attach      (gint32 image_ID,
                                              GimpParasite *parasite);

+>GimpParasite *parasite); +

Add a parasite to an image. -

+

+

This procedure attaches a parasite to an image. It has no return -values.

+values.

+

-

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

+

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

Removes a parasite from an image. -

+

+

This procedure detaches a parasite from an image. It has no return -values.

+values.

+

-

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

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

+ gconstpointer data); +

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

-See Also: gimp_image_parasite_attach()

- -

+ + +
image_ID : the ID of the image to attach the +

+See Also: gimp_image_parasite_attach()

+

+ +

+
++ + + + + + + + + + + + + + + + +
+image_ID : the ID of the image to attach the GimpParasite to. -
name : the name of the +
+name : the name of the GimpParasite to create and attach. -
flags : the flags set on the +
+flags : the flags set on the GimpParasite. -
size : the size of the parasite data in bytes. -
data : a pointer to the data attached with the +
+size : the size of the parasite data in bytes. +
+data : a pointer to the data attached with the GimpParasite. -
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimplayer.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimplayer.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimplayer.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimplayer.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimplayer

gimplayer

gimplayer — Operations on a single layer.

Synopsis

+
+
+
+gimplayer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimplayer

+

gimplayer — Operations on a single layer.

+
+
+

Synopsis

+
 
 
 
@@ -58,10 +97,21 @@
 gboolean    gimp_layer_set_mode             (gint32 layer_ID,
                                              GimpLayerModeEffects mode);
 gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);
-

Description

+

+
+
+

Description

+

Operations on a single layer. -

Details

gimp_layer_new ()

gint32      gimp_layer_new                  (gint32 image_ID,
+

+
+
+

Details

+
+

+gimp_layer_new ()

+
gint32      gimp_layer_new                  (gint32 image_ID,
                                              const gchar *name,
                                              gint width,
                                              gint height,
@@ -69,123 +119,402 @@
 href="../libgimpbase/libgimpbase-gimpbaseenums.html#GimpImageType"
 >GimpImageType type,
                                              gdouble opacity,
-                                             GimpLayerModeEffects mode);

+ GimpLayerModeEffects mode); +

Create a new layer. -

+

+

This procedure creates a new layer with the specified width, height, and type. Name, opacity, and mode are also supplied parameters. The new layer still needs to be added to the image, as this is not automatic. Add the new layer with the 'gimp_image_add_layer' command. Other attributes such as layer mask modes, and offsets -should be set with explicit procedure calls.

+should be set with explicit procedure calls.

+

-

image_ID : The image to which to add the layer. -
name : The layer name. -
width : The layer width. -
height : The layer height. -
type : The layer type. -
opacity : The layer opacity. -
mode : The layer combination mode. -
Returns : The newly created layer. -

gimp_layer_copy ()

gint32      gimp_layer_copy                 (gint32 layer_ID);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image to which to add the layer. +
+name : The layer name. +
+width : The layer width. +
+height : The layer height. +
+type : The layer type. +
+opacity : The layer opacity. +
+mode : The layer combination mode. +
+Returns : The newly created layer. +
+
+
+
+

+gimp_layer_copy ()

+
gint32      gimp_layer_copy                 (gint32 layer_ID);
+

Copy a layer. -

+

+

This procedure copies the specified layer and returns the copy. The newly copied layer is for use within the original layer's image. It should not be subsequently added to any other image. If you create a copy of the background layer, remember to add an alpha channel -before you add the new layer to the image.

+before you add the new layer to the image.

+

-

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

gimp_layer_scale ()

gboolean    gimp_layer_scale                (gint32 layer_ID,
+

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

+ gboolean local_origin); +

Scale the layer to the specified extents. -

+

+

This procedure scales the layer so that it's new width and height are equal to the supplied parameters. The \"local_origin\" parameter specifies whether to scale from the center of the layer, or from the image origin. This operation only works if the layer has been added -to an image.

+to an image.

+

-

layer_ID : The layer. -
new_width : New layer width. -
new_height : New layer height. -
local_origin : Use a local origin (as opposed to the image origin). -
Returns : TRUE on success. -

gimp_layer_resize ()

gboolean    gimp_layer_resize               (gint32 layer_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+layer_ID : The layer. +
+new_width : New layer width. +
+new_height : New layer height. +
+local_origin : Use a local origin (as opposed to the image origin). +
+Returns : TRUE on success. +
+
+
+
+

+gimp_layer_resize ()

+
gboolean    gimp_layer_resize               (gint32 layer_ID,
                                              gint new_width,
                                              gint new_height,
                                              gint offx,
-                                             gint offy);

+ gint offy); +

Resize the layer to the specified extents. -

+

+

This procedure resizes the layer 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 layer's content. This -operation only works if the layer has been added to an image.

+operation only works if the layer has been added to an image.

+

-

layer_ID : The layer. -
new_width : New layer width. -
new_height : New layer height. -
offx : x offset between upper left corner of old and new layers: (old - new). -
offy : y offset between upper left corner of old and new layers: (old - new). -
Returns : TRUE on success. -

gimp_layer_resize_to_image_size ()

gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+layer_ID : The layer. +
+new_width : New layer width. +
+new_height : New layer height. +
+offx : x offset between upper left corner of old and new layers: (old - new). +
+offy : y offset between upper left corner of old and new layers: (old - new). +
+Returns : TRUE on success. +
+
+
+
+

+gimp_layer_resize_to_image_size ()

+
gboolean    gimp_layer_resize_to_image_size (gint32 layer_ID);
+

Resize a layer to the image size. -

+

+

This procedure resizes the layer so that it's new width and height -are equal to the width and height of its image container.

+are equal to the width and height of its image container.

+

-

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

gimp_layer_translate ()

gboolean    gimp_layer_translate            (gint32 layer_ID,
+

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

+gimp_layer_translate ()

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

+ gint offy); +

Translate the layer by the specified offsets. -

+

+

This procedure translates the layer by the amounts specified in the x and y arguments. These can be negative, and are considered offsets from the current position. This command only works if the layer has been added to an image. All additional layers contained in the image which have the linked flag set to TRUE w ill also be translated by -the specified offsets.

+the specified offsets.

+

-

layer_ID : The layer. -
offx : Offset in x direction. -
offy : Offset in y direction. -
Returns : TRUE on success. -

gimp_layer_add_alpha ()

gboolean    gimp_layer_add_alpha            (gint32 layer_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+layer_ID : The layer. +
+offx : Offset in x direction. +
+offy : Offset in y direction. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_layer_add_alpha ()

+
gboolean    gimp_layer_add_alpha            (gint32 layer_ID);
+

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

+

+

This procedure adds an additional component to the specified layer if it does not already possess an alpha channel. An alpha channel makes it possible to move a layer from the bottom of the layer stack and to clear and erase to transparency, instead of the background color. This transforms images of type RGB to RGBA, GRAY to GRAYA, -and INDEXED to INDEXEDA.

+and INDEXED to INDEXEDA.

+

-

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

gimp_layer_set_offsets ()

gboolean    gimp_layer_set_offsets          (gint32 layer_ID,
+

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

+gimp_layer_set_offsets ()

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

+ gint offy); +

Set the layer offsets. -

+

+

This procedure sets the offsets for the specified layer. The offsets are relative to the image origin and can be any values. This -operation is valid only on layers which have been added to an image.

+operation is valid only on layers which have been added to an image.

+

-

layer_ID : The layer. -
offx : Offset in x direction. -
offy : Offset in y direction. -
Returns : TRUE on success. -

gimp_layer_create_mask ()

gint32      gimp_layer_create_mask          (gint32 layer_ID,
-                                             GimpAddMaskType mask_type);

+

+
++ + + + + + + + + + + + + + + + + + +
+layer_ID : The layer. +
+offx : Offset in x direction. +
+offy : Offset in y direction. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_layer_create_mask ()

+
gint32      gimp_layer_create_mask          (gint32 layer_ID,
+                                             GimpAddMaskType mask_type);
+

Create a layer mask for the specified specified layer. -

+

+

This procedure creates a layer mask for the specified layer. Layer masks serve as an additional alpha channel for a layer. A number of ifferent types of masks are allowed for initialisation: completely @@ -195,185 +524,693 @@ fully visible, but which may be more useful than a white mask), the current selection or a grayscale copy of the layer. The layer mask still needs to be added to the layer. This can be done with a call -to 'gimp_layer_add_mask'.

+to 'gimp_layer_add_mask'.

+

-

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

gimp_layer_from_mask ()

gint32      gimp_layer_from_mask            (gint32 mask_ID);

+

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

Get the specified mask's layer. -

+

+

This procedure returns the specified mask's layer , or -1 if none -exists.

+exists.

+

-

mask_ID : Mask for which to return the layer. -
Returns : The mask's layer. - -

Since GIMP 2.2 -


gimp_layer_get_mask ()

gint32      gimp_layer_get_mask             (gint32 layer_ID);

+

+
++ + + + + + + + + + +
+mask_ID : Mask for which to return the layer. +
+Returns : The mask's layer. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_layer_get_mask ()

+
gint32      gimp_layer_get_mask             (gint32 layer_ID);
+

Get the specified layer's mask if it exists. -

+

+

This procedure returns the specified layer's mask, or -1 if none -exists.

+exists.

+

-

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

gimp_layer_add_mask ()

gboolean    gimp_layer_add_mask             (gint32 layer_ID,
-                                             gint32 mask_ID);

+

+
++ + + + + + + + + + +
+layer_ID : The layer. +
+Returns : The layer mask. +
+
+
+
+

+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 serve as an additional alpha channel for a layer. This procedure will fail if a number of prerequisites aren't met. The layer cannot already have a layer mask. The specified mask must exist and have the same dimensions as the layer. Both the mask and the layer must -have been created for use with the specified image.

+have been created for use with the specified image.

+

-

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

gimp_layer_remove_mask ()

gboolean    gimp_layer_remove_mask          (gint32 layer_ID,
-                                             GimpMaskApplyMode mode);

+

+
++ + + + + + + + + + + + + + +
+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,
+                                             GimpMaskApplyMode mode);
+

Remove the specified layer mask from the layer. -

+

+

This procedure removes the specified layer mask from the layer. If -the mask doesn't exist, an error is returned.

+the mask doesn't exist, an error is returned.

+

-

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

+

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

Create a new layer by copying an existing drawable. -

+

+

This procedure creates a new layer as a copy of the specified drawable. The new layer still needs to be added to the image, as this is not automatic. Add the new layer with the 'gimp_image_add_layer' command. Other attributes such as layer mask -modes, and offsets should be set with explicit procedure calls.

+modes, and offsets should be set with explicit procedure calls.

+

-

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

gimp_layer_get_preserve_trans ()

gboolean    gimp_layer_get_preserve_trans   (gint32 layer_ID);

+

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

Get the preserve transperancy setting of the specified layer. -

+

+

This procedure returns the specified layer's preserve transperancy -setting.

+setting.

+

-

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

+

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

Set the preserve transperancy setting of the specified layer. -

+

+

This procedure sets the specified layer's preserve transperancy -setting.

+setting.

+

-

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

gimp_layer_get_apply_mask ()

gboolean    gimp_layer_get_apply_mask       (gint32 layer_ID);

+

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

Get the apply mask of the specified layer. -

+

+

This procedure returns the specified layer's apply mask. If the value is non-zero, then the layer mask for this layer is currently -being composited with the layer's alpha channel.

+being composited with the layer's alpha channel.

+

-

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

+

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

Set the apply mask of the specified layer. -

+

+

This procedure sets the specified layer's apply mask. This controls whether the layer's mask is currently affecting the alpha channel. -If there is no layer mask, this function will return an error.

+If there is no layer mask, this function will return an error.

+

-

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

+

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

Get the show mask of the specified layer. -

+

+

This procedure returns the specified layer's show mask. If the value is non-zero, then the layer mask for this layer is currently being -shown instead of the layer.

+shown instead of the layer.

+

-

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

gimp_layer_set_show_mask ()

gboolean    gimp_layer_set_show_mask        (gint32 layer_ID,
-                                             gboolean show_mask);

+

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

Set the show mask of the specified layer. -

+

+

This procedure sets the specified layer's show mask. This controls whether the layer or it's mask is visible. Non-zero values indicate that the mask should be visible. If the layer has no mask, then this -function returns an error.

+function returns an error.

+

-

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

+

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

Get the show mask of the specified layer. -

+

+

This procedure returns the specified layer's show mask. If the value is non-zero, then the layer mask for this layer is currently active, -and not the layer.

+and not the layer.

+

-

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

gimp_layer_set_edit_mask ()

gboolean    gimp_layer_set_edit_mask        (gint32 layer_ID,
-                                             gboolean edit_mask);

+

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

Set the show mask of the specified layer. -

+

+

This procedure sets the specified layer's show mask. This controls whether the layer or it's mask is currently active for editing. If the specified layer has no layer mask, then this procedure will -return an error.

+return an error.

+

-

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

+

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

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

+

+

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

Set the opacity of the specified layer. -

-This procedure sets the specified layer's opacity.

- -

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

gimp_layer_get_mode ()

GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);

+

+

+This procedure sets the specified layer's opacity.

+

+ +

+
++ + + + + + + + + + + + + + +
+layer_ID : The layer. +
+opacity : The new layer opacity. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_layer_get_mode ()

+
GimpLayerModeEffects gimp_layer_get_mode    (gint32 layer_ID);
+

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,
-                                             GimpLayerModeEffects mode);

+

+

+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,
+                                             GimpLayerModeEffects mode);
+

Set the combination mode of the specified layer. -

-This procedure sets the specified layer's combination mode.

- -

layer_ID : The layer. -
mode : The new layer combination mode. -
Returns : TRUE on success. -

gimp_layer_is_floating_sel ()

gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);

+

+

+This procedure sets the specified layer's combination mode.

+

+ +

+
++ + + + + + + + + + + + + + +
+layer_ID : The layer. +
+mode : The new layer combination mode. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_layer_is_floating_sel ()

+
gboolean    gimp_layer_is_floating_sel      (gint32 layer_ID);
+

Is the specified layer a floating selection? -

+

+

This procedure returns whether the layer is a floating selection. Floating selections are special cases of layers which are attached -to a specific drawable.

+to a specific drawable.

+

-

layer_ID : The layer. -
Returns : Non-zero if the layer is a floating selection. -
+

+
++ + + + + + + + + + +
+layer_ID : The layer. +
+Returns : Non-zero if the layer is a floating selection. +
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmenu.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpmenu.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmenu.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpmenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpmenu

gimpmenu

gimpmenu — Menus for selecting images, layers, channels and drawables

Synopsis

+
+
+
+gimpmenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpmenu

+

gimpmenu — Menus for selecting images, layers, channels and drawables

+
+
+

Synopsis

+
 
 
 
@@ -31,79 +70,319 @@
                                              GimpMenuCallback callback,
                                              gpointer data,
                                              gint32 active_drawable);
-

Description

- -

Details

GimpConstraintFunc ()

gboolean    (*GimpConstraintFunc)           (gint32 image_id,
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpConstraintFunc ()

+
gboolean    (*GimpConstraintFunc)           (gint32 image_id,
                                              gint32 drawable_id,
-                                             gpointer data);

Warning

GimpConstraintFunc is deprecated and should not be used in newly-written code.

- -

image_id : -
drawable_id : -
data : -
Returns : - - -

GimpMenuCallback ()

void        (*GimpMenuCallback)             (gint32 any_id,
-                                             gpointer data);

Warning

GimpMenuCallback is deprecated and should not be used in newly-written code.

- -

any_id : -
data : - - -

+
+
+

+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.

- -

constraint : -
callback : -
data : -
active_image : -
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.

- -

constraint : -
callback : -
data : -
active_layer : -
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.

- -

constraint : -
callback : -
data : -
active_channel : -
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.

- -

constraint : -
callback : -
data : -
active_drawable : -
Returns : - - -
+ gint32 active_drawable);
+
+

Warning

+

gimp_drawable_menu_new is deprecated and should not be used in newly-written code.

+
+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+constraint : +
+callback : +
+data : +
+active_drawable : +
+Returns : + + +
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmessage.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpmessage.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpmessage.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpmessage.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpmessage

gimpmessage

gimpmessage — Display a dialog box with a message.

Synopsis

+
+
+
+gimpmessage
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpmessage

+

gimpmessage — Display a dialog box with a message.

+
+
+

Synopsis

+
 
 
 
@@ -10,37 +49,116 @@
 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 -reporting. The message must be in UTF-8 encoding.

+reporting. The message must be in UTF-8 encoding.

+

-

message : Message to display in the dialog. -
Returns : TRUE on success. -

+
+
+

+gimp_message_get_handler ()

+
GimpMessageHandlerType gimp_message_get_handler
-                                            (void);

+ (void); +

Returns the current state of where warning messages are displayed. -

+

+

This procedure returns the way g_message warnings are displayed. They can be shown in a dialog box or printed on the console where -gimp was started.

+gimp was started.

+

-

Returns : The current handler type. -

gimp_message_set_handler ()

gboolean    gimp_message_set_handler        (
+
++ + + + +
+Returns : The current handler type. +
+
+
+
+

+gimp_message_set_handler ()

+
gboolean    gimp_message_set_handler        (GimpMessageHandlerType handler);

+>GimpMessageHandlerType handler); +

Controls where warning messages are displayed. -

+

+

This procedure controls how g_message warnings are displayed. They can be shown in a dialog box or printed on the console where gimp -was started.

+was started.

+

-

handler : The new handler type. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + +
+handler : The new handler type. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalette.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppalette.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalette.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppalette.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppalette

gimppalette

gimppalette — Functions operating on a single palette.

Synopsis

+
+
+
+gimppalette
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppalette

+

gimppalette — Functions operating on a single palette.

+
+
+

Synopsis

+
 
 
 
@@ -47,211 +86,724 @@
 >GimpRGB *background);
 gboolean    gimp_palette_set_default_colors (void);
 gboolean    gimp_palette_swap_colors        (void);
-

Description

+

+
+
+

Description

+

Functions operating on a single palette. -

Details

gimp_palette_new ()

gchar*      gimp_palette_new                (const gchar *name);

+

+
+
+

Details

+
+

+gimp_palette_new ()

+
gchar*      gimp_palette_new                (const gchar *name);
+

Creates a new palette -

-This procedure creates a new, uninitialized palette

- -

name : The requested name of the new palette. -
Returns : The actual new palette name. - -

Since GIMP 2.2 -


gimp_palette_duplicate ()

gchar*      gimp_palette_duplicate          (const gchar *name);

+

+

+This procedure creates a new, uninitialized palette

+

+ +

+
++ + + + + + + + + + +
+name : The requested name of the new palette. +
+Returns : The actual new palette name. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_duplicate ()

+
gchar*      gimp_palette_duplicate          (const gchar *name);
+

Duplicates a palette -

-This procedure creates an identical palette by a different name

- -

name : The palette name. -
Returns : The name of the palette's copy. - -

Since GIMP 2.2 -


gimp_palette_rename ()

gchar*      gimp_palette_rename             (const gchar *name,
-                                             const gchar *new_name);

+

+

+This procedure creates an identical palette by a different name

+

+ +

+
++ + + + + + + + + + +
+name : The palette name. +
+Returns : The name of the palette's copy. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_rename ()

+
gchar*      gimp_palette_rename             (const gchar *name,
+                                             const gchar *new_name);
+

Rename a palette -

-This procedure renames a palette

- -

name : The palette name. -
new_name : The new name of the palette. -
Returns : The actual new name of the palette. - -

Since GIMP 2.2 -


gimp_palette_delete ()

gboolean    gimp_palette_delete             (const gchar *name);

+

+

+This procedure renames a palette

+

+ +

+
++ + + + + + + + + + + + + + +
+name : The palette name. +
+new_name : The new name of the palette. +
+Returns : The actual new name of the palette. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_delete ()

+
gboolean    gimp_palette_delete             (const gchar *name);
+

Deletes a palette -

-This procedure deletes a palette

- -

name : The palette name. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_palette_get_info ()

gboolean    gimp_palette_get_info           (const gchar *name,
-                                             gint *num_colors);

+

+

+This procedure deletes a palette

+

+ +

+
++ + + + + + + + + + +
+name : The palette name. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_get_info ()

+
gboolean    gimp_palette_get_info           (const gchar *name,
+                                             gint *num_colors);
+

Retrieve information about the specified palette. -

+

+

This procedure retrieves information about the specified palette. -This includes the name, and the number of colors.

- -

name : The palette name. -
num_colors : The number of colors in the palette. -
Returns : TRUE on success. +This includes the name, and the number of colors.

+

-

Since GIMP 2.2 -


gimp_palette_add_entry ()

gboolean    gimp_palette_add_entry          (const gchar *name,
+

+
++ + + + + + + + + + + + + + +
+name : The palette name. +
+num_colors : The number of colors in the palette. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_add_entry ()

+
gboolean    gimp_palette_add_entry          (const gchar *name,
                                              const gchar *entry_name,
                                              const GimpRGB *color,
-                                             gint *entry_num);

+ gint *entry_num); +

Adds a palette entry to the specified palette. -

+

+

This procedure adds an entry to the specifed palette. It returns an -error if the entry palette does not exist.

+error if the entry palette does not exist.

+

-

name : The palette name. -
entry_name : The name of the entry. -
color : The new entry's color color. -
entry_num : The index of the added entry. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_palette_delete_entry ()

gboolean    gimp_palette_delete_entry       (const gchar *name,
-                                             gint entry_num);

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The palette name. +
+entry_name : The name of the entry. +
+color : The new entry's color color. +
+entry_num : The index of the added entry. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_delete_entry ()

+
gboolean    gimp_palette_delete_entry       (const gchar *name,
+                                             gint entry_num);
+

Deletes a palette entry from the specified palette. -

+

+

This procedure deletes an entry from the specifed palette. It -returns an error if the entry palette does not exist.

+returns an error if the entry palette does not exist.

+

-

name : The palette name. -
entry_num : The index of the added entry. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_palette_entry_get_color ()

gboolean    gimp_palette_entry_get_color    (const gchar *name,
+

+
++ + + + + + + + + + + + + + +
+name : The palette name. +
+entry_num : The index of the added entry. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_entry_get_color ()

+
gboolean    gimp_palette_entry_get_color    (const gchar *name,
                                              gint entry_num,
                                              GimpRGB *color);

+>GimpRGB *color); +

Gets the specified palette entry from the specified palette. -

+

+

This procedure retrieves the color of the zero-based entry specifed for the specified palette. It returns an error if the entry does not -exist.

- -

name : The palette name. -
entry_num : The entry to retrieve. -
color : The color requested. -
Returns : TRUE on success. +exist.

+

-

Since GIMP 2.2 -


gimp_palette_entry_set_color ()

gboolean    gimp_palette_entry_set_color    (const gchar *name,
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The palette name. +
+entry_num : The entry to retrieve. +
+color : The color requested. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_entry_set_color ()

+
gboolean    gimp_palette_entry_set_color    (const gchar *name,
                                              gint entry_num,
                                              const GimpRGB *color);

+>GimpRGB *color); +

Sets the specified palette entry in the specified palette. -

+

+

This procedure sets the color of the zero-based entry specifed for the specified palette. It returns an error if the entry does not -exist.

- -

name : The palette name. -
entry_num : The entry to retrieve. -
color : The new color. -
Returns : TRUE on success. +exist.

+

-

Since GIMP 2.2 -


gimp_palette_entry_get_name ()

gboolean    gimp_palette_entry_get_name     (const gchar *name,
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The palette name. +
+entry_num : The entry to retrieve. +
+color : The new color. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_entry_get_name ()

+
gboolean    gimp_palette_entry_get_name     (const gchar *name,
                                              gint entry_num,
-                                             gchar **entry_name);

+ gchar **entry_name); +

Gets the specified palette entry from the specified palette. -

+

+

This procedure retrieves the name of the zero-based entry specifed for the specified palette. It returns an error if the entry does not -exist.

+exist.

+

-

name : The palette name. -
entry_num : The entry to retrieve. -
entry_name : The name requested. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_palette_entry_set_name ()

gboolean    gimp_palette_entry_set_name     (const gchar *name,
+

+
++ + + + + + + + + + + + + + + + + + +
+name : The palette name. +
+entry_num : The entry to retrieve. +
+entry_name : The name requested. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_entry_set_name ()

+
gboolean    gimp_palette_entry_set_name     (const gchar *name,
                                              gint entry_num,
-                                             const gchar *entry_name);

+ const gchar *entry_name); +

Sets the specified palette entry in the specified palette. -

+

+

This procedure sets the name of the zero-based entry specifed for the specified palette. It returns an error if the entry does not -exist.

- -

name : The palette name. -
entry_num : The entry to retrieve. -
entry_name : The new name. -
Returns : TRUE on success. +exist.

+

-

Since GIMP 2.2 -


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.

+

+
++ + + + + + + + + + + + + + + + + + +
+name : The palette name. +
+entry_num : The entry to retrieve. +
+entry_name : The new name. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_palette_get_foreground ()

+
gboolean    gimp_palette_get_foreground     (GimpRGB *foreground);
+
+

Warning

+

gimp_palette_get_foreground is deprecated and should not be used in newly-written code.

+
+

Get the current GIMP foreground color. -

+

+

This procedure retrieves the current GIMP foreground color. The foreground color is used in a variety of tools such as paint tools, -blending, and bucket fill.

+blending, and bucket fill.

+

-

foreground : The foreground color. -
Returns : TRUE on success. -

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.

+

+
++ + + + + + + + + + +
+foreground : The foreground color. +
+Returns : TRUE on success. +
+
+
+
+

+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. -

+

+

This procedure retrieves the current GIMP background color. The background color is used in a variety of tools such as blending, -erasing (with non-alpha images), and image filling.

+erasing (with non-alpha images), and image filling.

+

-

background : The background color. -
Returns : TRUE on success. -

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.

+

+
++ + + + + + + + + + +
+background : The background color. +
+Returns : TRUE on success. +
+
+
+
+

+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. -

+

+

This procedure sets the current GIMP foreground color. After this is set, operations which use foreground such as paint tools, blending, -and bucket fill will use the new value.

+and bucket fill will use the new value.

+

-

foreground : The foreground color. -
Returns : TRUE on success. -

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.

+

+
++ + + + + + + + + + +
+foreground : The foreground color. +
+Returns : TRUE on success. +
+
+
+
+

+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. -

+

+

This procedure sets the current GIMP background color. After this is set, operations which use background such as blending, filling images, clearing, and erasing (in non-alpha images) will use the new -value.

+value.

+

-

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.

+

+
++ + + + + + + + + + +
+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.

+
+

Set the current GIMP foreground and background colors to black and white. -

+

+

This procedure sets the current GIMP foreground and background -colors to their initial default values, black and white.

+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.

+

+
++ + + + +
+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.

+
+

Swap the current GIMP foreground and background colors. -

+

+

This procedure swaps the current GIMP foreground and background colors, so that the new foreground color becomes the old background -color and vice versa.

+color and vice versa.

+

-

Returns : TRUE on success. -
+

+
++ + + + +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettemenu.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppalettemenu.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppalettemenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppalettemenu

gimppalettemenu

gimppalettemenu — A widget for selecting palettes.

Synopsis

+
+
+
+gimppalettemenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppalettemenu

+

gimppalettemenu — A widget for selecting palettes.

+
+
+

Synopsis

+
 
 
 
@@ -16,47 +55,141 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget *widget,
                                              const gchar *palette_name);
-

Description

+

+
+
+

Description

+

A widget for selecting palettes. -

Details

gimp_palette_select_widget_new ()


+
+
+

Details

+
+

+gimp_palette_select_widget_new ()

+
GtkWidget*  gimp_palette_select_widget_new  (const gchar *title,
                                              const gchar *palette_name,
                                              GimpRunPaletteCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkWidget that completely controls the selection of a palette. This widget is suitable for placement in a table in a -plug-in dialog.

+plug-in dialog.

+

-

+ + +
title : Title of the dialog to use or NULL means to use the default +

+
++ + + + + + + + + + + + + + + + + + +
+title : Title of the dialog to use or NULL means to use the default title. -
palette_name : Initial palette name. -
callback : A function to call when the selected palette changes. -
data : A pointer to arbitary data to be used in the call to callback. -
Returns : A +
+palette_name : Initial palette name. +
+callback : A function to call when the selected palette changes. +
+data : A pointer to arbitary data to be used in the call to callback. +
+Returns : A GtkWidget that you can use in your UI. -

Since GIMP 2.2 -


gimp_palette_select_widget_close ()

void        gimp_palette_select_widget_close
+
+

Since GIMP 2.2 +

+
+
+
+

+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);
+

+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);

+ const gchar *palette_name); +

Sets the current palette for the palette select widget. Calls the callback function if one was supplied in the call to -gimp_palette_select_widget_new().

+gimp_palette_select_widget_new().

+

-

widget : A palette select widget. -
palette_name : Palette name to set; NULL means no change. -

Since GIMP 2.2 -

+

+
++ + + + + + + + + + +
+widget : A palette select widget. +
+palette_name : Palette name to set; NULL means no change. +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaletteselect.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppaletteselect.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppaletteselect.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppaletteselect

gimppaletteselect

gimppaletteselect — Functions providing a palette selection dialog.

Synopsis

+
+
+
+gimppaletteselect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppaletteselect

+

gimppaletteselect — Functions providing a palette selection dialog.

+
+
+

Synopsis

+
 
 
 
@@ -16,59 +55,239 @@
 gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);
 gboolean    gimp_palettes_set_popup         (const gchar *palette_callback,
                                              const gchar *palette_name);
-

Description

+

+
+
+

Description

+

Functions providing a palette selection dialog. -

Details

GimpRunPaletteCallback ()

void        (*GimpRunPaletteCallback)       (const gchar *palette_name,
+

+
+
+

Details

+
+

+GimpRunPaletteCallback ()

+
void        (*GimpRunPaletteCallback)       (const gchar *palette_name,
                                              gboolean dialog_closing,
-                                             gpointer user_data);

+ gpointer user_data); +

-

palette_name : -
dialog_closing : -
user_data : - - -

gimp_palette_select_new ()

const gchar* gimp_palette_select_new        (const gchar *title,
+

+
++ + + + + + + + + + + + + + +
+palette_name : +
+dialog_closing : +
+user_data : + + +
+
+
+
+

+gimp_palette_select_new ()

+
const gchar* gimp_palette_select_new        (const gchar *title,
                                              const gchar *palette_name,
                                              GimpRunPaletteCallback callback,
-                                             gpointer data);

- -

title : -
palette_name : -
callback : -
data : -
Returns : - - -

gimp_palette_select_destroy ()

void        gimp_palette_select_destroy     (const gchar *palette_callback);

+ gpointer data); +

-

palette_callback : - - -

gimp_palettes_popup ()

gboolean    gimp_palettes_popup             (const gchar *palette_callback,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+title : +
+palette_name : +
+callback : +
+data : +
+Returns : + + +
+
+
+
+

+gimp_palette_select_destroy ()

+
void        gimp_palette_select_destroy     (const gchar *palette_callback);
+

+ +

+
++ + + + +
+palette_callback : + + +
+
+
+
+

+gimp_palettes_popup ()

+
gboolean    gimp_palettes_popup             (const gchar *palette_callback,
                                              const gchar *popup_title,
-                                             const gchar *initial_palette);

+ const gchar *initial_palette); +

Invokes the Gimp palette selection. -

-This procedure popups the palette selection dialog.

- -

palette_callback : The callback PDB proc to call when palette selection is made. -
popup_title : Title to give the palette popup window. -
initial_palette : The name of the palette to set as the first selected. -
Returns : TRUE on success. -

gimp_palettes_close_popup ()

gboolean    gimp_palettes_close_popup       (const gchar *palette_callback);

+

+

+This procedure popups the palette selection dialog.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+palette_callback : The callback PDB proc to call when palette selection is made. +
+popup_title : Title to give the palette popup window. +
+initial_palette : The name of the palette to set as the first selected. +
+Returns : TRUE on success. +
+
+
+
+

+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);

+

+

+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);
+

Sets the current palette selection in a popup. -

-Sets the current palette selection in a popup.

- -

palette_callback : The name of the callback registered for this popup. -
palette_name : The name of the palette to set as selected. -
Returns : TRUE on success. -
+

+

+Sets the current palette selection in a popup.

+

+ +

+
++ + + + + + + + + + + + + + +
+palette_callback : The name of the callback registered for this popup. +
+palette_name : The name of the palette to set as selected. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettes.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppalettes.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppalettes.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppalettes.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppalettes

gimppalettes

gimppalettes — Operations related to palettes.

Synopsis

+
+
+
+gimppalettes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppalettes

+

gimppalettes — Operations related to palettes.

+
+
+

Synopsis

+
 
 
 
@@ -13,49 +52,205 @@
                                              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.

+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);

+

+
++ + + + +
+Returns : TRUE on success. +
+
+
+
+

+gimp_palettes_get_list ()

+
gchar**     gimp_palettes_get_list          (const gchar *filter,
+                                             gint *num_palettes);
+

Retrieves a list of all of the available palettes -

+

+

This procedure returns a complete listing of available palettes. Each name returned can be used as input to the command -'gimp_context_set_palette'.

+'gimp_context_set_palette'.

+

-

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.

+

+
++ + + + + + + + + + + + + + +
+filter : An optional regular expression used to filter the list. +
+num_palettes : The number of palettes in the list. +
+Returns : The list of palette names. +
+
+
+
+

+gimp_palettes_get_palette ()

+
gchar*      gimp_palettes_get_palette       (gint *num_colors);
+
+

Warning

+

gimp_palettes_get_palette is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use gimp_context_get_palette() -instead.

+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.

-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,
+

+
++ + + + + + + + + + +
+num_colors : The palette num_colors. +
+Returns : The palette name. +
+
+
+
+

+gimp_palettes_set_palette ()

+
gboolean    gimp_palettes_set_palette       (const gchar *name);
+
+

Warning

+

gimp_palettes_set_palette is deprecated and should not be used in newly-written code.

+
+

+This procedure is deprecated! Use gimp_context_set_palette() instead.

+

+ +

+
++ + + + + + + + + + +
+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,
                                              GimpRGB *color);

Warning

gimp_palettes_get_palette_entry is deprecated and should not be used in newly-written code.

+>GimpRGB *color); +

+

Warning

+

gimp_palettes_get_palette_entry is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use gimp_palette_entry_get_color() -instead.

+instead.

+

-

name : The palette name (\"\" means currently active palette). -
entry_num : The entry to retrieve. -
num_colors : The palette num_colors. -
color : The color requested. -
Returns : The palette name. -
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The palette name (\"\" means currently active palette). +
+entry_num : The entry to retrieve. +
+num_colors : The palette num_colors. +
+color : The color requested. +
+Returns : The palette name. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaths.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppaths.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppaths.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppaths.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppaths

gimppaths

gimppaths — Operations related to paths.

Synopsis

+
+
+
+gimppaths
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppaths

+

gimppaths — Operations related to paths.

+
+
+

Synopsis

+
 
 
 
@@ -47,193 +86,717 @@
                                              const gchar *filename,
                                              gboolean merge,
                                              gboolean scale);
-

Description

+

+
+
+

Description

+

Operations related to paths. -

Details

gimp_path_list ()

gchar**     gimp_path_list                  (gint32 image_ID,
-                                             gint *num_paths);

+

+
+
+

Details

+
+

+gimp_path_list ()

+
gchar**     gimp_path_list                  (gint32 image_ID,
+                                             gint *num_paths);
+

List the paths associated with the passed image. -

-List the paths associated with the passed image.

- -

image_ID : The ID of the image to list the paths from. -
num_paths : The number of paths returned. -
Returns : List of the paths belonging to this image. -

gimp_path_get_points ()

gint        gimp_path_get_points            (gint32 image_ID,
+

+

+List the paths associated with the passed image.

+

+ +

+
++ + + + + + + + + + + + + + +
+image_ID : The ID of the image to list the paths from. +
+num_paths : The number of paths returned. +
+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);

+ gdouble **points_pairs); +

List the points associated with the named path. -

-List the points associated with the named path.

- -

image_ID : The ID of the image to list the paths from. -
name : The name of the path whose points should be listed. -
path_closed : Return if the path is closed. (0 = path open, 1 = path closed). -
num_path_point_details : The number of points returned. Each point is made up of (x, y, pnt_type) of floats. -
points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0 = BEZIER_MOVE). Note all points are returned in pixel resolution. -
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);

+

+

+List the points associated with the named path.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The ID of the image to list the paths from. +
+name : The name of the path whose points should be listed. +
+path_closed : Return if the path is closed. (0 = path open, 1 = path closed). +
+num_path_point_details : The number of points returned. Each point is made up of (x, y, pnt_type) of floats. +
+points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0 = BEZIER_MOVE). Note all points are returned in pixel resolution. +
+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);
+

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);

+

+

+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);
+

Sets the current path associated with the passed image. -

-Sets a named path as the current path.

- -

image_ID : The ID of the image in which a path will become current. -
name : The name of the path to make current. -
Returns : TRUE on success. -

gimp_path_set_points ()

gboolean    gimp_path_set_points            (gint32 image_ID,
+

+

+Sets a named path as the current path.

+

+ +

+
++ + + + + + + + + + + + + + +
+image_ID : The ID of the image in which a path will become current. +
+name : The name of the path to make current. +
+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);

+ const gdouble *points_pairs); +

Set the points associated with the named path. -

-Set the points associated with the named path.

- -

image_ID : The ID of the image to set the paths in. -
name : The name of the path to create. If it exists then a unique name will be created - query the list of paths if you want to make sure that the name of the path you create is unique. This will be set as the current path. -
ptype : The type of the path. Currently only one type (1 = Bezier) is supported. -
num_path_points : The number of elements in the array, i.e. the number of points in the path * 3. Each point is made up of (x, y, type) of floats. Currently only the creation of bezier curves is allowed. The type parameter must be set to (1) to indicate a BEZIER type curve. Note that for BEZIER curves, points must be given in the following order: ACCACCAC... If the path is not closed the last control point is missed off. Points consist of three control points (control/anchor/control) so for a curve that is not closed there must be at least two points passed (2 x,y pairs). If (num_path_points/3) % 3 = 0 then the path is assumed to be closed and the points are ACCACCACCACC. -
points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0= BEZIER_MOVE). Note all points are returned in pixel resolution. -
Returns : TRUE on success. -

gimp_path_stroke_current ()

gboolean    gimp_path_stroke_current        (gint32 image_ID);

+

+

+Set the points associated with the named path.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The ID of the image to set the paths in. +
+name : The name of the path to create. If it exists then a unique name will be created - query the list of paths if you want to make sure that the name of the path you create is unique. This will be set as the current path. +
+ptype : The type of the path. Currently only one type (1 = Bezier) is supported. +
+num_path_points : The number of elements in the array, i.e. the number of points in the path * 3. Each point is made up of (x, y, type) of floats. Currently only the creation of bezier curves is allowed. The type parameter must be set to (1) to indicate a BEZIER type curve. Note that for BEZIER curves, points must be given in the following order: ACCACCAC... If the path is not closed the last control point is missed off. Points consist of three control points (control/anchor/control) so for a curve that is not closed there must be at least two points passed (2 x,y pairs). If (num_path_points/3) % 3 = 0 then the path is assumed to be closed and the points are ACCACCACCACC. +
+points_pairs : The points in the path represented as 3 floats. The first is the x pos, next is the y pos, last is the type of the pnt. The type field is dependant on the path type. For beziers (type 1 paths) the type can either be (1.0 = BEZIER_ANCHOR, 2.0 = BEZIER_CONTROL, 3.0= BEZIER_MOVE). Note all points are returned in pixel resolution. +
+Returns : TRUE on success. +
+
+
+
+

+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,
+

+

+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);

+ 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 along the bezier curve. The distance will be obtained by first digitizing the curve internally and then walking along the curve. For a closed curve the start of the path is the first point on the path that was created. This might not be obvious. Note the current -path is used.

+path is used.

+

-

image_ID : The ID of the image the paths belongs to. -
distance : The distance along the path. -
y_point : The y position of the point. -
slope : The slope (dy / dx) at the specified point. -
Returns : The x position of the point. -

gimp_path_get_tattoo ()

gint        gimp_path_get_tattoo            (gint32 image_ID,
-                                             const gchar *name);

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The ID of the image the paths belongs to. +
+distance : The distance along the path. +
+y_point : The y position of the point. +
+slope : The slope (dy / dx) at the specified point. +
+Returns : The x position of the point. +
+
+
+
+

+gimp_path_get_tattoo ()

+
gint        gimp_path_get_tattoo            (gint32 image_ID,
+                                             const gchar *name);
+

Returns the tattoo associated with the name path. -

+

+

This procedure returns the tattoo associated with the specified path. A tattoo is a unique and permanent identifier attached to a path that can be used to uniquely identify a path within an image -even between sessions.

+even between sessions.

+

-

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);

+

+
++ + + + + + + + + + + + + + +
+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);
+

Return the name of the path with the given tattoo. -

+

+

The procedure returns the name of the path in the specified image which has the passed tattoo. The tattoos are unique within the image and will be preserved across sessions and through renaming of the path. An error is returned if no path with the specified tattoo can -be found.

+be found.

+

-

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);

+

+
++ + + + + + + + + + + + + + +
+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);
+

Delete the named path associated with the passed image. -

-Delete the named path.

- -

image_ID : The ID of the image to delete the path from. -
name : The name of the path to delete. -
Returns : TRUE on success. -

gimp_path_get_locked ()

gint        gimp_path_get_locked            (gint32 image_ID,
-                                             const gchar *name);

+

+

+Delete the named path.

+

+ +

+
++ + + + + + + + + + + + + + +
+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);
+

Returns the locked status associated with the named path. -

+

+

This procedure returns the lock status associated with the specified path. A path can be \"locked\" which means that the transformation -tool operations will also apply to the path.

+tool operations will also apply to the path.

+

-

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,
+

+
++ + + + + + + + + + + + + + +
+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);

+ gint lockstatus); +

Set the locked status associated with the named path. -

+

+

This procedure sets the lock status associated with the specified path. A path can be \"locked\" which means that the transformation -tool operations will also apply to the path.

+tool operations will also apply to the path.

+

-

image_ID : The image. -
name : the name of the path whose locked status should be set. -
lockstatus : The lock status associated with the name path. 0 if the path is not locked. 1 if the path is to be locked. -
Returns : TRUE on success. -

gimp_path_set_tattoo ()

gboolean    gimp_path_set_tattoo            (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+name : the name of the path whose locked status should be set. +
+lockstatus : The lock status associated with the name path. 0 if the path is not locked. 1 if the path is to be locked. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_path_set_tattoo ()

+
gboolean    gimp_path_set_tattoo            (gint32 image_ID,
                                              const gchar *name,
-                                             gint tattovalue);

+ gint tattovalue); +

Sets the tattoo associated with the named path. -

+

+

This procedure sets the tattoo associated with the specified path. A tattoo is a unique and permenant identifier attached to a path that can be used to uniquely identify a path within an image even between sessions. Note that the value passed to this function must have been -obtained from a previous call to path_get_tattoo.

+obtained from a previous call to path_get_tattoo.

+

-

image_ID : The image. -
name : the name of the path whose tattoo should be set. -
tattovalue : The tattoo associated with the name path. Only values returned from 'path_get_tattoo' should be used here. -
Returns : TRUE on success. -

gimp_path_to_selection ()

gboolean    gimp_path_to_selection          (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+name : the name of the path whose tattoo should be set. +
+tattovalue : The tattoo associated with the name path. Only values returned from 'path_get_tattoo' should be used here. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_path_to_selection ()

+
gboolean    gimp_path_to_selection          (gint32 image_ID,
                                              const gchar *name,
                                              GimpChannelOps op,
                                              gboolean antialias,
                                              gboolean feather,
                                              gdouble feather_radius_x,
-                                             gdouble feather_radius_y);

+ gdouble feather_radius_y); +

Transforms the active path into a selection -

-This procedure renders the desired path into the current selection.

- -

image_ID : The image. -
name : The name of the path which should be made into selection. -
op : The desired operation with current selection. -
antialias : Antialias selection. -
feather : Feather selection. -
feather_radius_x : Feather radius x. -
feather_radius_y : Feather radius y. -
Returns : TRUE on success. -

gimp_path_import ()

gboolean    gimp_path_import                (gint32 image_ID,
+

+

+This procedure renders the desired path into the current selection.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+name : The name of the path which should be made into selection. +
+op : The desired operation with current selection. +
+antialias : Antialias selection. +
+feather : Feather selection. +
+feather_radius_x : Feather radius x. +
+feather_radius_y : Feather radius y. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_path_import ()

+
gboolean    gimp_path_import                (gint32 image_ID,
                                              const gchar *filename,
                                              gboolean merge,
-                                             gboolean scale);

+ gboolean scale); +

Import paths from an SVG file. -

+

+

This procedure imports paths from an SVG file. This is a temporary solution until the new vectors PDB API is in place. Don't rely on -this function being available in future GIMP releases.

+this function being available in future GIMP releases.

+

-

image_ID : The image. -
filename : The name of the SVG file to import. -
merge : Merge paths into a single vectors object. -
scale : Scale the SVG to image dimensions. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+filename : The name of the SVG file to import. +
+merge : Merge paths into a single vectors object. +
+scale : Scale the SVG to image dimensions. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppattern.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppattern.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppattern.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppattern.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppattern

gimppattern

gimppattern — Functions operating on a single pattern.

Synopsis

+
+
+
+gimppattern
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppattern

+

gimppattern — Functions operating on a single pattern.

+
+
+

Synopsis

+
 
 
 
@@ -12,43 +51,147 @@
                                              gint *bpp,
                                              gint *num_color_bytes,
                                              guint8 **color_bytes);
-

Description

+

+
+
+

Description

+

Functions operating on a single pattern. -

Details

gimp_pattern_get_info ()

gboolean    gimp_pattern_get_info           (const gchar *name,
+

+
+
+

Details

+
+

+gimp_pattern_get_info ()

+
gboolean    gimp_pattern_get_info           (const gchar *name,
                                              gint *width,
                                              gint *height,
-                                             gint *bpp);

+ gint *bpp); +

Retrieve information about the specified pattern. -

+

+

This procedure retrieves information about the specified pattern. -This includes the pattern extents (width and height).

+This includes the pattern extents (width and height).

+

-

name : The pattern name. -
width : The pattern width. -
height : The pattern height. -
bpp : The pattern bpp. -
Returns : TRUE on success. - -

Since GIMP 2.2 -


gimp_pattern_get_pixels ()

gboolean    gimp_pattern_get_pixels         (const gchar *name,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : The pattern name. +
+width : The pattern width. +
+height : The pattern height. +
+bpp : The pattern bpp. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_pattern_get_pixels ()

+
gboolean    gimp_pattern_get_pixels         (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *bpp,
                                              gint *num_color_bytes,
-                                             guint8 **color_bytes);

+ guint8 **color_bytes); +

Retrieve information about the specified pattern (including pixels). -

+

+

This procedure retrieves information about the specified. This includes the pattern extents (width and height), its bpp and its -pixel data.

- -

name : The pattern name. -
width : The pattern width. -
height : The pattern height. -
bpp : The pattern bpp. -
num_color_bytes : Number of pattern bytes. -
color_bytes : The pattern data. -
Returns : TRUE on success. +pixel data.

+

-

Since GIMP 2.2 -

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : The pattern name. +
+width : The pattern width. +
+height : The pattern height. +
+bpp : The pattern bpp. +
+num_color_bytes : Number of pattern bytes. +
+color_bytes : The pattern data. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternmenu.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppatternmenu.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppatternmenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,41 @@ -gimppatternmenu

gimppatternmenu

gimppatternmenu — A widget for selecting patterns.

Synopsis

+
+
+
+gimppatternmenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppatternmenu

+

gimppatternmenu — A widget for selecting patterns.

+
+
+

Synopsis

+
 
 
 
@@ -16,42 +53,133 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget *widget,
                                              const gchar *pattern_name);
-

Description

+

+
+
+

Description

+

A widget for selecting patterns. -

Details

gimp_pattern_select_widget_new ()


+
+
+

Details

+
+

+gimp_pattern_select_widget_new ()

+
GtkWidget*  gimp_pattern_select_widget_new  (const gchar *title,
                                              const gchar *pattern_name,
                                              GimpRunPatternCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkWidget that completely controls the selection of a pattern. This widget is suitable for placement in a table in a -plug-in dialog.

+plug-in dialog.

+

-

+ + +
title : Title of the dialog to use or NULL to use the default title. -
pattern_name : Initial pattern name or NULL to use current selection. -
callback : A function to call when the selected pattern changes. -
data : A pointer to arbitary data to be used in the call to callback. -
Returns : A +
++ + + + + + + + + + + + + + + + + + + +
+title : Title of the dialog to use or NULL to use the default title. +
+pattern_name : Initial pattern name or NULL to use current selection. +
+callback : A function to call when the selected pattern changes. +
+data : A pointer to arbitary data to be used in the call to callback. +
+Returns : A GtkWidget that you can use in your UI. -

gimp_pattern_select_widget_close ()

void        gimp_pattern_select_widget_close
+
+
+
+
+

+gimp_pattern_select_widget_close ()

+
void        gimp_pattern_select_widget_close
                                             (GtkWidget *widget);

-Closes the popup window associated with widget.

- -

widget : A pattern select widget. -

gimp_pattern_select_widget_set ()

void        gimp_pattern_select_widget_set  (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);

+ const gchar *pattern_name); +

Sets the current pattern for the pattern select widget. Calls the callback function if one was supplied in the call to -gimp_pattern_select_widget_new().

+gimp_pattern_select_widget_new().

+

-

widget : A pattern select widget. -
pattern_name : Pattern name to set. NULL means no change. -
+

+
++ + + + + + + + + + +
+widget : A pattern select widget. +
+pattern_name : Pattern name to set. NULL means no change. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternselect.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppatternselect.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppatternselect.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppatternselect

gimppatternselect

gimppatternselect — Functions providing a pattern selection dialog.

Synopsis

+
+
+
+gimppatternselect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppatternselect

+

gimppatternselect — Functions providing a pattern selection dialog.

+
+
+

Synopsis

+
 
 
 
@@ -20,67 +59,267 @@
 gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);
 gboolean    gimp_patterns_set_popup         (const gchar *pattern_callback,
                                              const gchar *pattern_name);
-

Description

+

+
+
+

Description

+

Functions providing a pattern selection dialog. -

Details

GimpRunPatternCallback ()

void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
+

+
+
+

Details

+
+

+GimpRunPatternCallback ()

+
void        (*GimpRunPatternCallback)       (const gchar *pattern_name,
                                              gint width,
                                              gint height,
                                              gint bpp,
                                              const guchar *mask_data,
                                              gboolean dialog_closing,
-                                             gpointer user_data);

+ gpointer user_data); +

-

pattern_name : -
width : -
height : -
bpp : -
mask_data : -
dialog_closing : -
user_data : - - -

gimp_pattern_select_new ()

const gchar* gimp_pattern_select_new        (const gchar *title,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+pattern_name : +
+width : +
+height : +
+bpp : +
+mask_data : +
+dialog_closing : +
+user_data : + + +
+
+
+
+

+gimp_pattern_select_new ()

+
const gchar* gimp_pattern_select_new        (const gchar *title,
                                              const gchar *pattern_name,
                                              GimpRunPatternCallback callback,
-                                             gpointer data);

- -

title : -
pattern_name : -
callback : -
data : -
Returns : - - -

gimp_pattern_select_destroy ()

void        gimp_pattern_select_destroy     (const gchar *pattern_callback);

+ gpointer data); +

-

pattern_callback : - - -

gimp_patterns_popup ()

gboolean    gimp_patterns_popup             (const gchar *pattern_callback,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+title : +
+pattern_name : +
+callback : +
+data : +
+Returns : + + +
+
+
+
+

+gimp_pattern_select_destroy ()

+
void        gimp_pattern_select_destroy     (const gchar *pattern_callback);
+

+ +

+
++ + + + +
+pattern_callback : + + +
+
+
+
+

+gimp_patterns_popup ()

+
gboolean    gimp_patterns_popup             (const gchar *pattern_callback,
                                              const gchar *popup_title,
-                                             const gchar *initial_pattern);

+ const gchar *initial_pattern); +

Invokes the Gimp pattern selection. -

-This procedure popups the pattern selection dialog.

- -

pattern_callback : The callback PDB proc to call when pattern selection is made. -
popup_title : Title to give the pattern popup window. -
initial_pattern : The name of the pattern to set as the first selected. -
Returns : TRUE on success. -

gimp_patterns_close_popup ()

gboolean    gimp_patterns_close_popup       (const gchar *pattern_callback);

+

+

+This procedure popups the pattern selection dialog.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+pattern_callback : The callback PDB proc to call when pattern selection is made. +
+popup_title : Title to give the pattern popup window. +
+initial_pattern : The name of the pattern to set as the first selected. +
+Returns : TRUE on success. +
+
+
+
+

+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);

+

+

+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);
+

Sets the current pattern selection in a popup. -

-Sets the current pattern selection in a popup.

- -

pattern_callback : The name of the callback registered for this popup. -
pattern_name : The name of the pattern to set as selected. -
Returns : TRUE on success. -
+

+

+Sets the current pattern selection in a popup.

+

+ +

+
++ + + + + + + + + + + + + + +
+pattern_callback : The name of the callback registered for this popup. +
+pattern_name : The name of the pattern to set as selected. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatterns.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppatterns.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppatterns.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppatterns.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppatterns

gimppatterns

gimppatterns — Functions relating to patterns.

Synopsis

+
+
+
+gimppatterns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppatterns

+

gimppatterns — Functions relating to patterns.

+
+
+

Synopsis

+
 
 
 
@@ -14,53 +53,224 @@
                                              gint *mask_bpp,
                                              gint *length,
                                              guint8 **mask_data);
-

Description

+

+
+
+

Description

+

Functions relating to patterns. -

Details

gimp_patterns_refresh ()

gboolean    gimp_patterns_refresh           (void);

+

+
+
+

Details

+
+

+gimp_patterns_refresh ()

+
gboolean    gimp_patterns_refresh           (void);
+

Refresh current patterns. This function always succeeds. -

+

+

This procedure retrieves all patterns currently in the user's -pattern path and updates all pattern dialogs accordingly.

+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);

+

+
++ + + + +
+Returns : TRUE on success. +
+
+
+
+

+gimp_patterns_get_list ()

+
gchar**     gimp_patterns_get_list          (const gchar *filter,
+                                             gint *num_patterns);
+

Retrieve a complete listing of the available patterns. -

+

+

This procedure returns a complete listing of available GIMP patterns. Each name returned can be used as input to the -'gimp_context_set_pattern'.

+'gimp_context_set_pattern'.

+

-

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.

+

+
++ + + + + + + + + + + + + + +
+filter : An optional regular expression used to filter the list. +
+num_patterns : The number of patterns in the pattern list. +
+Returns : The list of pattern names. +
+
+
+
+

+gimp_patterns_get_pattern ()

+
gchar*      gimp_patterns_get_pattern       (gint *width,
+                                             gint *height);
+
+

Warning

+

gimp_patterns_get_pattern is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use gimp_context_get_pattern() -instead.

+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.

-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,
+

+
++ + + + + + + + + + + + + + +
+width : The pattern width. +
+height : The pattern height. +
+Returns : The pattern name. +
+
+
+
+

+gimp_patterns_set_pattern ()

+
gboolean    gimp_patterns_set_pattern       (const gchar *name);
+
+

Warning

+

gimp_patterns_set_pattern is deprecated and should not be used in newly-written code.

+
+

+This procedure is deprecated! Use gimp_context_set_pattern() instead.

+

+ +

+
++ + + + + + + + + + +
+name : The pattern name. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_patterns_get_pattern_data ()

+
gchar*      gimp_patterns_get_pattern_data  (const gchar *name,
                                              gint *width,
                                              gint *height,
                                              gint *mask_bpp,
                                              gint *length,
-                                             guint8 **mask_data);

Warning

gimp_patterns_get_pattern_data is deprecated and should not be used in newly-written code.

-This procedure is deprecated! Use gimp_pattern_get_pixels() instead.

+ guint8 **mask_data); +

+

Warning

+

gimp_patterns_get_pattern_data is deprecated and should not be used in newly-written code.

+
+

+This procedure is deprecated! Use gimp_pattern_get_pixels() instead.

+

-

name : The pattern name (\"\" means currently active pattern). -
width : The pattern width. -
height : The pattern height. -
mask_bpp : Pattern bytes per pixel. -
length : Length of pattern mask data. -
mask_data : The pattern mask data. -
Returns : The pattern name. -
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : The pattern name (\"\" means currently active pattern). +
+width : The pattern width. +
+height : The pattern height. +
+mask_bpp : Pattern bytes per pixel. +
+length : Length of pattern mask data. +
+mask_data : The pattern mask data. +
+Returns : The pattern name. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixbuf.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppixbuf.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppixbuf.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppixbuf

gimppixbuf

gimppixbuf — Get a thumbnail pixbuf for a drawable or image.

Synopsis

+
+
+
+gimppixbuf
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppixbuf

+

gimppixbuf — Get a thumbnail pixbuf for a drawable or image.

+
+
+

Synopsis

+
 
 
 
@@ -25,54 +64,150 @@
                                              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,
   GIMP_PIXBUF_LARGE_CHECKS
 } GimpPixbufTransparency;
-

+ +

-


gimp_image_get_thumbnail ()


+
+
+
+

+gimp_image_get_thumbnail ()

+
GdkPixbuf*  gimp_image_get_thumbnail        (gint32 image_ID,
                                              gint width,
                                              gint height,
-                                             GimpPixbufTransparency alpha);

+ GimpPixbufTransparency alpha); +

Retrieves a thumbnail pixbuf for the image identified by image_ID. -The thumbnail will be not larger than the requested size.

+The thumbnail will be not larger than the requested size.

+

-

+ +
image_ID : the image ID -
width : the requested thumbnail width (<= 512 pixels) -
height : the requested thumbnail height (<= 512 pixels) -
alpha : how to handle an alpha channel -
Returns : a new +
++ + + + + + + + + + + + + + + + + + + +
+image_ID : the image ID +
+width : the requested thumbnail width (<= 512 pixels) +
+height : the requested thumbnail height (<= 512 pixels) +
+alpha : how to handle an alpha channel +
+Returns : a new GdkPixbuf -

Since GIMP 2.2 -


gimp_drawable_get_thumbnail ()


+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_get_thumbnail ()

+
GdkPixbuf*  gimp_drawable_get_thumbnail     (gint32 drawable_ID,
                                              gint width,
                                              gint height,
-                                             GimpPixbufTransparency alpha);

+ GimpPixbufTransparency alpha); +

Retrieves a thumbnail pixbuf for the drawable identified by drawable_ID. The thumbnail will be not larger than the requested -size.

+size.

+

-

+ +
drawable_ID : the drawable ID -
width : the requested thumbnail width (<= 512 pixels) -
height : the requested thumbnail height (<= 512 pixels) -
alpha : how to handle an alpha channel -
Returns : a new +
++ + + + + + + + + + + + + + + + + + + +
+drawable_ID : the drawable ID +
+width : the requested thumbnail width (<= 512 pixels) +
+height : the requested thumbnail height (<= 512 pixels) +
+alpha : how to handle an alpha channel +
+Returns : a new GdkPixbuf -

Since GIMP 2.2 -


gimp_drawable_get_sub_thumbnail ()


+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_drawable_get_sub_thumbnail ()

+
GdkPixbuf*  gimp_drawable_get_sub_thumbnail (gint32 drawable_ID,
                                              gint src_x,
@@ -81,22 +216,84 @@
                                              gint src_height,
                                              gint dest_width,
                                              gint dest_height,
-                                             GimpPixbufTransparency alpha);

+ GimpPixbufTransparency alpha); +

Retrieves a thumbnail pixbuf for the drawable identified by drawable_ID. The thumbnail will be not larger than the requested -size.

+size.

+

-

+

Since GIMP 2.2 +

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppixelfetcher.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppixelfetcher

gimppixelfetcher

gimppixelfetcher — Functions for operating on pixel regions.

Synopsis

+
+
+
+gimppixelfetcher
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppixelfetcher

+

gimppixelfetcher — Functions for operating on pixel regions.

+
+
+

Synopsis

+
 
 
 
@@ -22,13 +61,24 @@
                                              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,
@@ -36,55 +86,228 @@
   GIMP_PIXEL_FETCHER_EDGE_BLACK,
   GIMP_PIXEL_FETCHER_EDGE_BACKGROUND
 } GimpPixelFetcherEdgeMode;
-

+ +

-


GimpPixelFetcher

typedef struct _GimpPixelFetcher GimpPixelFetcher;

- -


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 +

+ +
+
+

+GimpPixelFetcher

+
typedef struct _GimpPixelFetcher GimpPixelFetcher;
+

+ +

+
+
+
+

+gimp_pixel_fetcher_new ()

+
GimpPixelFetcher* gimp_pixel_fetcher_new    (GimpDrawable *drawable,
+                                             gboolean shadow);
+

+Initialize a pixel region from the drawable.

+

+ +

+
++ + + + + + + +
+drawable : the GimpDrawable the new region will be attached to. +
+shadow : a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles. -
Returns : a pointer to a GimpPixelRgn structure (or NULL). -

gimp_pixel_fetcher_set_edge_mode ()

void        gimp_pixel_fetcher_set_edge_mode
+
+Returns : a pointer to a GimpPixelRgn structure (or NULL). +
+
+
+
+

+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,
+                                             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,
                                              const GimpRGB *color);

-Change the background color of a previously initialized pixel region.

- -

pf : a pointer to a previously initialized GimpPixelFetcher. -
color : the color to be used as bg color. -

gimp_pixel_fetcher_get_pixel ()

void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
+>GimpRGB *color);
+

+Change the background color of a previously initialized pixel region.

+

+ +

+
++ + + + + + + + + + +
+pf : a pointer to a previously initialized GimpPixelFetcher. +
+color : the color to be used as bg color. +
+
+
+
+

+gimp_pixel_fetcher_get_pixel ()

+
void        gimp_pixel_fetcher_get_pixel    (GimpPixelFetcher *pf,
                                              gint x,
                                              gint y,
-                                             guchar *pixel);

-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,
+                                             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);

-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);

-Close a previously initializd pixel region.

- -

pf : a pointer to a previously initialized GimpPixelFetcher. -
+ 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);
+

+Close a previously initializd pixel region.

+

+ +

+
++ + + + +
+pf : a pointer to a previously initialized GimpPixelFetcher. +
+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelrgn.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppixelrgn.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimppixelrgn.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimppixelrgn

gimppixelrgn

gimppixelrgn — Functions for operating on pixel regions.

Synopsis

+
+
+
+gimppixelrgn
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimppixelrgn

+

gimppixelrgn — Functions for operating on pixel regions.

+
+
+

Synopsis

+
 
 
 
@@ -61,11 +100,22 @@
 gpointer    gimp_pixel_rgns_register2       (gint nrgns,
                                              GimpPixelRgn **prs);
 gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);
-

Description

+

+
+
+

Description

+

Functions for operating on pixel regions. These functions provide fast ways of accessing and modifying portions of a drawable. -

Details

GimpPixelRgn

typedef struct {
+

+
+
+

Details

+
+

+GimpPixelRgn

+
typedef struct {
   guchar       *data;          /* pointer to region data */
   GimpDrawable *drawable;      /* pointer to drawable */
   guint         bpp;           /* bytes per pixel */
@@ -76,25 +126,36 @@
   guint         shadow : 1;    /* will this region use the shadow or normal tiles */
   guint         process_count; /* used internally */
 } 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 shadow); +

Initialize the pixel region pointed by pr with the specified parameters. -

+

+

The dirty and shadow flags can be used as follows: -

+

+

- dirty = FALSE, shadow = FALSE: the region will be used to read the actual drawable datas. This is useful for save plug-ins or for filters. -

+

+

- dirty = FALSE, shadow = TRUE: the region will be used to read the shadow tiles. This is used in some filter plug-ins which operate @@ -104,7 +165,8 @@ the shadow tiles, and the second one reads from and writes to the shadow tiles. -

+

+

- dirty = TRUE, shadow = TRUE: the region will be used to write to the shadow tiles. It is common practice to write to the shadow @@ -113,182 +175,661 @@ merge the changes from the shadow tiles using the current selection as a mask. -

+

+

- dirty = TRUE, shadow = FALSE: the region will be used to directly change the drawable content. Don't do this, since this could prevent the Undo-System from working as - expected.

+ expected.

+

-

+ + +
pr : a pointer to a GimpPixelRgn variable. -
drawable : the GimpDrawable the new region will be attached to. -
x : the x coordinate of the top-left pixel of the region in the +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a GimpPixelRgn variable. +
+drawable : the GimpDrawable the new region will be attached to. +
+x : the x coordinate of the top-left pixel of the region in the drawable. -
y : the y coordinate of the top-left pixel of the region in the +
+y : the y coordinate of the top-left pixel of the region in the drawable. -
width : the width of the region. -
height : the height of the region. -
dirty : a gboolean indicating whether the drawable should be marked +
+width : the width of the region. +
+height : the height of the region. +
+dirty : a gboolean indicating whether the drawable should be marked as "dirty". -
shadow : a gboolean indicating whether the region is attached to the +
+shadow : a gboolean indicating whether the region is attached to the shadow tiles or the real drawable tiles. -

gimp_pixel_rgn_resize ()

void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
+
+
+
+
+

+gimp_pixel_rgn_resize ()

+
void        gimp_pixel_rgn_resize           (GimpPixelRgn *pr,
                                              gint x,
                                              gint y,
                                              gint width,
-                                             gint height);

-Change the position and size of a previously initialized pixel region.

- -

+ + + + + + + + + + +
pr : a pointer to a previously initialized GimpPixelRgn. -
x : the x coordinate of the new position of the region's + gint height); +

+Change the position and size of a previously initialized pixel region.

+

+ +

+
++ + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+x : the x coordinate of the new position of the region's top-left corner. -
y : the y coordinate of the new position of the region's +
+y : the y coordinate of the new position of the region's top-left corner. -
width : the new width of the region. -
height : the new height of the region. -

gimp_pixel_rgn_get_pixel ()

void        gimp_pixel_rgn_get_pixel        (GimpPixelRgn *pr,
+
+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);

+ 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.

+rgb drawable and 4 guchar for rgb with alpha drawable.

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the wanted pixel (relative to the drawable) -
y : the y coordinate of the wanted pixel (relative to the drawable) -

gimp_pixel_rgn_get_row ()

void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
+

+
++ + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the wanted pixel (relative to the drawable) +
+y : the y coordinate of the wanted pixel (relative to the drawable) +
+
+
+
+

+gimp_pixel_rgn_get_row ()

+
void        gimp_pixel_rgn_get_row          (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y,
-                                             gint width);

+ gint width); +

Get several pixels of a region in a row. This function fills the buffer buf with the values of the pixels from (x, y) to (x+width-1, y). -buf should be large enough to hold all these values.

+buf should be large enough to hold all these values.

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the number of pixels to get. -

gimp_pixel_rgn_get_col ()

void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the first pixel (relative to the drawable). +
+y : the y coordinate of the first pixel (relative to the drawable). +
+width : the number of pixels to get. +
+
+
+
+

+gimp_pixel_rgn_get_col ()

+
void        gimp_pixel_rgn_get_col          (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y,
-                                             gint height);

+ gint height); +

Get several pixels of a region's column. This function fills the buffer buf with the values of the pixels from (x, y) to (x, y+height-1). -buf should be large enough to hold all these values.

+buf should be large enough to hold all these values.

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
height : the number of pixels to get. -

gimp_pixel_rgn_get_rect ()

void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the first pixel (relative to the drawable). +
+y : the y coordinate of the first pixel (relative to the drawable). +
+height : the number of pixels to get. +
+
+
+
+

+gimp_pixel_rgn_get_rect ()

+
void        gimp_pixel_rgn_get_rect         (GimpPixelRgn *pr,
                                              guchar *buf,
                                              gint x,
                                              gint y,
                                              gint width,
-                                             gint height);

+ 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).

+buf should be large enough to hold all these values (width*height*bpp).

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the width of the rectangle. -
height : the height of the rectangle. -

gimp_pixel_rgn_set_pixel ()

void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the first pixel (relative to the drawable). +
+y : the y coordinate of the first pixel (relative to the drawable). +
+width : the width of the rectangle. +
+height : the height of the rectangle. +
+
+
+
+

+gimp_pixel_rgn_set_pixel ()

+
void        gimp_pixel_rgn_set_pixel        (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
-                                             gint y);

-Set the pixel at (x, y) to the values from buf.

- -

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar. -
x : the x coordinate of the pixel (relative to the drawable). -
y : the y coordinate of the pixel (relative to the drawable). -

gimp_pixel_rgn_set_row ()

void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
+                                             gint y);
+

+Set the pixel at (x, y) to the values from buf.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar. +
+x : the x coordinate of the pixel (relative to the drawable). +
+y : the y coordinate of the pixel (relative to the drawable). +
+
+
+
+

+gimp_pixel_rgn_set_row ()

+
void        gimp_pixel_rgn_set_row          (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y,
-                                             gint width);

+ 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.

+buf should be large enough to hold all these values.

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the number of pixels to set. -

gimp_pixel_rgn_set_col ()

void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the first pixel (relative to the drawable). +
+y : the y coordinate of the first pixel (relative to the drawable). +
+width : the number of pixels to set. +
+
+
+
+

+gimp_pixel_rgn_set_col ()

+
void        gimp_pixel_rgn_set_col          (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y,
-                                             gint height);

+ 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.

+buf should be large enough to hold all these values.

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
height : the number of pixels to set. -

gimp_pixel_rgn_set_rect ()

void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the first pixel (relative to the drawable). +
+y : the y coordinate of the first pixel (relative to the drawable). +
+height : the number of pixels to set. +
+
+
+
+

+gimp_pixel_rgn_set_rect ()

+
void        gimp_pixel_rgn_set_rect         (GimpPixelRgn *pr,
                                              const guchar *buf,
                                              gint x,
                                              gint y,
                                              gint width,
-                                             gint height);

+ 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).

+buf should be large enough to hold all these values (width*height*bpp).

+

-

pr : a pointer to a previously initialized GimpPixelRgn. -
buf : a pointer to an array of guchar -
x : the x coordinate of the first pixel (relative to the drawable). -
y : the y coordinate of the first pixel (relative to the drawable). -
width : the width of the rectangle. -
height : the height of the rectangle. -

gimp_pixel_rgns_register ()

gpointer    gimp_pixel_rgns_register        (gint nrgns,
-                                             ...);

-This is the varargs version of gimp_pixel_rgns_register2.

- -

nrgns : the number of regions to register. -
... : nrgns pointers to GimpPixelRgn. -
Returns : a gpointer to a regions iterator. -

gimp_pixel_rgns_register2 ()

gpointer    gimp_pixel_rgns_register2       (gint nrgns,
-                                             GimpPixelRgn **prs);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+pr : a pointer to a previously initialized GimpPixelRgn. +
+buf : a pointer to an array of guchar +
+x : the x coordinate of the first pixel (relative to the drawable). +
+y : the y coordinate of the first pixel (relative to the drawable). +
+width : the width of the rectangle. +
+height : the height of the rectangle. +
+
+
+
+

+gimp_pixel_rgns_register ()

+
gpointer    gimp_pixel_rgns_register        (gint nrgns,
+                                             ...);
+

+This is the varargs version of gimp_pixel_rgns_register2.

+

+ +

+
++ + + + + + + + + + + + + + +
+nrgns : the number of regions to register. +
+... : nrgns pointers to GimpPixelRgn. +
+Returns : a gpointer to a regions iterator. +
+
+
+
+

+gimp_pixel_rgns_register2 ()

+
gpointer    gimp_pixel_rgns_register2       (gint nrgns,
+                                             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 registered pixel regions. While iterating the registered pixel regions will cover subsets of the original pixel regions, chosen for optimized access to the image data. -

+

+

Note that the given regions themselves are changed by this function, so they are resized to the first subsets. -

-This function has to be used together with gimp_pixel_rgns_process in a loop.

- -

nrgns : the number of regions to register. -
prs : an array of nrgns pointers to initialized GimpPixelRgn. -
Returns : a gpointer to a regions iterator. -

gimp_pixel_rgns_process ()

gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);

+

+

+This function has to be used together with gimp_pixel_rgns_process in a loop.

+

+ +

+
++ + + + + + + + + + + + + + +
+nrgns : the number of regions to register. +
+prs : an array of nrgns pointers to initialized GimpPixelRgn. +
+Returns : a gpointer to a regions iterator. +
+
+
+
+

+gimp_pixel_rgns_process ()

+
gpointer    gimp_pixel_rgns_process         (gpointer pri_ptr);
+

This function update the regions registered previously with one of the -gimp_pixel_rgns_register* functions to their next tile.

+gimp_pixel_rgns_register* functions to their next tile.

+

-

+ + +
pri_ptr : a regions iterator returned by gimp_pixel_rgns_register, +

+
++ + + + + + + +
+pri_ptr : a regions iterator returned by gimp_pixel_rgns_register, gimp_pixel_rgns_register2 or gimp_pixel_rgns_process. -
Returns : a gpointer to a new regions iterator or NULL if there isn't +
+Returns : a gpointer to a new regions iterator or NULL if there isn't any tiles left. -
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpplugin.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpplugin.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpplugin.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpplugin.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpplugin

gimpplugin

gimpplugin — Functions useful for plugins, e.g. registration and progress indicators.

Synopsis

+
+
+
+gimpplugin
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpplugin

+

gimpplugin — Functions useful for plugins, e.g. registration and progress indicators.

+
+
+

Synopsis

+
 
 
 
@@ -11,13 +50,26 @@
                                              const guint8 *icon_data);
 gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
                                              const gchar *menu_path);
-

Description

+

+
+
+

Description

+

Functions useful for plugins, e.g. registration and progress indicators. -

Details

gimp_plugin_domain_register ()

gboolean    gimp_plugin_domain_register     (const gchar *domain_name,
-                                             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 searches for strings when translating its menu entries. There is no need to call this function for plug-ins that have their strings @@ -25,42 +77,163 @@ If the compiled message catalog is not in the standard location, you may specify an absolute path to another location. This procedure can only be called in the query function of a plug-in and it has to be -called before any procedure is installed.

+called before any procedure is installed.

+

-

domain_name : The name of the textdomain (must be unique). -
domain_path : The absolute path to the compiled message catalog (may be NULL). -
Returns : TRUE on success. -

gimp_plugin_help_register ()

gboolean    gimp_plugin_help_register       (const gchar *domain_name,
-                                             const gchar *domain_uri);

+

+
++ + + + + + + + + + + + + + +
+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);
+

Register a help path for a plug-in. -

+

+

This procedure changes the help rootdir for the plug-in which calls it. All subsequent calls of gimp_help from this plug-in will be -interpreted relative to this rootdir.

+interpreted relative to this rootdir.

+

-

domain_name : The XML namespace of the plug-in's help pages. -
domain_uri : The root URI of the plug-in's help pages. -
Returns : TRUE on success. -

gimp_plugin_icon_register ()

gboolean    gimp_plugin_icon_register       (const gchar *procedure_name,
+

+
++ + + + + + + + + + + + + + +
+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,
                                              GimpIconType icon_type,
-                                             const guint8 *icon_data);

+ const guint8 *icon_data); +

-

procedure_name : -
icon_type : -
icon_data : -
Returns : - - -

gimp_plugin_menu_register ()

gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
-                                             const gchar *menu_path);

+

+
++ + + + + + + + + + + + + + + + + + +
+procedure_name : +
+icon_type : +
+icon_data : +
+Returns : + + +
+
+
+
+

+gimp_plugin_menu_register ()

+
gboolean    gimp_plugin_menu_register       (const gchar *procedure_name,
+                                             const gchar *menu_path);
+

Register an additional menu path for a plug-in procedure. -

+

+

This procedure installs an additional menu entry for the given -procedure.

- -

procedure_name : The procedure for which to install the menu path. -
menu_path : The procedure's additional menu path. -
Returns : TRUE on success. +procedure.

+

-

Since GIMP 2.2 -

+

+
++ + + + + + + + + + + + + + +
+procedure_name : The procedure for which to install the menu path. +
+menu_path : The procedure's additional menu path. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpproceduraldb.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpproceduraldb

gimpproceduraldb

gimpproceduraldb — Functions for querying and changing procedural database (PDB) entries.

Synopsis

+
+
+
+gimpproceduraldb
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpproceduraldb

+

gimpproceduraldb — Functions for querying and changing procedural database (PDB) entries.

+
+
+

Synopsis

+
 
 
 
@@ -47,18 +86,46 @@
                                              gchar **val_desc);
 gint        gimp_procedural_db_get_data_size
                                             (const gchar *identifier);
-

Description

+

+
+
+

Description

+

Functions for querying and changing procedural database (PDB) entries. -

Details

gimp_procedural_db_temp_name ()

gchar*      gimp_procedural_db_temp_name    (void);

+

+
+
+

Details

+
+

+gimp_procedural_db_temp_name ()

+
gchar*      gimp_procedural_db_temp_name    (void);
+

Generates a unique temporary PDB name. -

+

+

This procedure generates a temporary PDB entry name that is guaranteed to be unique. It is many used by the interactive popup -dialogs to generate a PDB entry name.

+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,
+

+
++ + + + +
+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,
@@ -70,65 +137,226 @@
                                              gint *num_args,
                                              gint *num_values,
                                              GimpParamDef **args,
-                                             GimpParamDef **return_vals);

+ GimpParamDef **return_vals); +

Queries the procedural database for information on the specified procedure. -

+

+

This procedure returns information on the specified procedure. A short blurb, detailed help, author(s), copyright information, procedure type, number of input, and number of return values are returned. Additionally this function returns specific information -about each input argument and return value.

+about each input argument and return value.

+

-

procedure : The procedure name. -
blurb : A short blurb. -
help : Detailed procedure help. -
author : Author(s) of the procedure. -
copyright : The copyright. -
date : Copyright date. -
proc_type : The procedure type. -
num_args : The number of input arguments. -
num_values : The number of return values. -
args : The input arguments. -
return_vals : The return values. -
Returns : TRUE on success. -

gimp_procedural_db_get_data ()

gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
-                                             gpointer data);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+procedure : The procedure name. +
+blurb : A short blurb. +
+help : Detailed procedure help. +
+author : Author(s) of the procedure. +
+copyright : The copyright. +
+date : Copyright date. +
+proc_type : The procedure type. +
+num_args : The number of input arguments. +
+num_values : The number of return values. +
+args : The input arguments. +
+return_vals : The return values. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_procedural_db_get_data ()

+
gboolean    gimp_procedural_db_get_data     (const gchar *identifier,
+                                             gpointer data);
+

Returns data associated with the specified identifier. -

+

+

This procedure returns any data which may have been associated with the specified identifier. The data is copied into the given memory -location.

+location.

+

-

+ + +
identifier : The identifier associated with data. -
data : A byte array containing data. -
Returns : TRUE on success, FALSE if no data has been associated with +

+
++ + + + + + + + + + + +
+identifier : The identifier associated with data. +
+data : A byte array containing data. +
+Returns : TRUE on success, FALSE if no data has been associated with the identifier -

gimp_procedural_db_set_data ()

gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
+
+
+
+
+

+gimp_procedural_db_set_data ()

+
gboolean    gimp_procedural_db_set_data     (const gchar *identifier,
                                              gpointer data,
-                                             guint32 bytes);

+ guint32 bytes); +

Associates the specified identifier with the supplied data. -

+

+

This procedure associates the supplied data with the provided identifier. The data may be subsequently retrieved by a call to -'procedural-db-get-data'.

+'procedural-db-get-data'.

+

-

identifier : The identifier associated with data. -
data : A byte array containing data. -
bytes : The number of bytes in the data -
Returns : TRUE on success. -

gimp_procedural_db_dump ()

gboolean    gimp_procedural_db_dump         (const gchar *filename);

+

+
++ + + + + + + + + + + + + + + + + + +
+identifier : The identifier associated with data. +
+data : A byte array containing data. +
+bytes : The number of bytes in the data +
+Returns : TRUE on success. +
+
+
+
+

+gimp_procedural_db_dump ()

+
gboolean    gimp_procedural_db_dump         (const gchar *filename);
+

Dumps the current contents of the procedural database -

+

+

This procedure dumps the contents of the procedural database to the specified file. The file will contain all of the information provided for each registered procedure. This file is in a format appropriate for use with the supplied \"pdb_self_doc.el\" Elisp -script, which generates a texinfo document.

+script, which generates a texinfo document.

+

-

filename : The dump filename. -
Returns : TRUE on success. -

gimp_procedural_db_query ()

gboolean    gimp_procedural_db_query        (const gchar *name,
+

+
++ + + + + + + + + + +
+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,
@@ -136,10 +364,12 @@
                                              const gchar *date,
                                              const gchar *proc_type,
                                              gint *num_matches,
-                                             gchar ***procedure_names);

+ gchar ***procedure_names); +

Queries the procedural database for its contents using regular expression matching. -

+

+

This procedure queries the contents of the procedural database. It is supplied with seven arguments matching procedures on { name, blurb, help, author, copyright, date, procedure type}. This is @@ -151,65 +381,242 @@ query. The second is a concatenated list of procedure names corresponding to those matching the query. If no matching entries are found, then the returned string is NULL and the number of -entries is 0.

+entries is 0.

+

-

name : The regex for procedure name. -
blurb : The regex for procedure blurb. -
help : The regex for procedure help. -
author : The regex for procedure author. -
copyright : The regex for procedure copyright. -
date : The regex for procedure date. -
proc_type : The regex for procedure type: { 'Internal GIMP procedure', 'GIMP Plug-in', 'GIMP Extension' }. -
num_matches : The number of matching procedures. -
procedure_names : The list of procedure names. -
Returns : TRUE on success. -

gimp_procedural_db_proc_arg ()

gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+name : The regex for procedure name. +
+blurb : The regex for procedure blurb. +
+help : The regex for procedure help. +
+author : The regex for procedure author. +
+copyright : The regex for procedure copyright. +
+date : The regex for procedure date. +
+proc_type : The regex for procedure type: { 'Internal GIMP procedure', 'GIMP Plug-in', 'GIMP Extension' }. +
+num_matches : The number of matching procedures. +
+procedure_names : The list of procedure names. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_procedural_db_proc_arg ()

+
gboolean    gimp_procedural_db_proc_arg     (const gchar *procedure,
                                              gint arg_num,
                                              GimpPDBArgType *arg_type,
                                              gchar **arg_name,
-                                             gchar **arg_desc);

+ gchar **arg_desc); +

Queries the procedural database for information on the specified procedure's argument. -

+

+

This procedure returns information on the specified procedure's -argument. The argument type, name, and a description are retrieved.

+argument. The argument type, name, and a description are retrieved.

+

-

procedure : The procedure name. -
arg_num : The argument number. -
arg_type : The type of argument. -
arg_name : The name of the argument. -
arg_desc : A description of the argument. -
Returns : TRUE on success. -

gimp_procedural_db_proc_val ()

gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+procedure : The procedure name. +
+arg_num : The argument number. +
+arg_type : The type of argument. +
+arg_name : The name of the argument. +
+arg_desc : A description of the argument. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_procedural_db_proc_val ()

+
gboolean    gimp_procedural_db_proc_val     (const gchar *procedure,
                                              gint val_num,
                                              GimpPDBArgType *val_type,
                                              gchar **val_name,
-                                             gchar **val_desc);

+ gchar **val_desc); +

Queries the procedural database for information on the specified procedure's return value. -

+

+

This procedure returns information on the specified procedure's return value. The return value type, name, and a description are -retrieved.

+retrieved.

+

-

procedure : The procedure name. -
val_num : The return value number. -
val_type : The type of return value. -
val_name : The name of the return value. -
val_desc : A description of the return value. -
Returns : TRUE on success. -

gimp_procedural_db_get_data_size ()

gint        gimp_procedural_db_get_data_size
-                                            (const gchar *identifier);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+procedure : The procedure name. +
+val_num : The return value number. +
+val_type : The type of return value. +
+val_name : The name of the return value. +
+val_desc : A description of the return value. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_procedural_db_get_data_size ()

+
gint        gimp_procedural_db_get_data_size
+                                            (const gchar *identifier);
+

Returns size of data associated with the specified identifier. -

+

+

This procedure returns the size of any data which may have been associated with the specified identifier. If no data has been -associated with the identifier, an error is returned.

+associated with the identifier, an error is returned.

+

-

identifier : The identifier associated with data. -
Returns : The number of bytes in the data. -
+

+
++ + + + + + + + + + +
+identifier : The identifier associated with data. +
+Returns : The number of bytes in the data. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpprogress.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpprogress.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpprogress.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpprogress.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpprogress

gimpprogress

gimpprogress — Functions for embedding the progress bar into a plug-in's GUI.

Synopsis

+
+
+
+gimpprogress
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpprogress

+

gimpprogress — Functions for embedding the progress bar into a plug-in's GUI.

+
+
+

Synopsis

+
 
 
 
@@ -19,82 +58,323 @@
                                              gpointer user_data);
 gpointer    gimp_progress_uninstall         (const gchar *progress_callback);
 gboolean    gimp_progress_cancel            (const gchar *progress_callback);
-

Description

+

+
+
+

Description

+

Functions for embedding the progress bar into a plug-in's GUI. -

Details

GimpProgressStartCallback ()

void        (*GimpProgressStartCallback)    (const gchar *message,
+

+
+
+

Details

+
+

+GimpProgressStartCallback ()

+
void        (*GimpProgressStartCallback)    (const gchar *message,
                                              gboolean cancelable,
-                                             gpointer user_data);

+ gpointer user_data); +

-

message : -
cancelable : -
user_data : - - -

GimpProgressEndCallback ()

void        (*GimpProgressEndCallback)      (gpointer user_data);

- -

user_data : - - -

GimpProgressTextCallback ()

void        (*GimpProgressTextCallback)     (const gchar *message,
-                                             gpointer user_data);

- -

message : -
user_data : - - -

GimpProgressValueCallback ()

void        (*GimpProgressValueCallback)    (gdouble percentage,
-                                             gpointer user_data);

- -

percentage : -
user_data : - - -

gimp_progress_init ()

gboolean    gimp_progress_init              (const gchar *message);

+

+
++ + + + + + + + + + + + + + +
+message : +
+cancelable : +
+user_data : + + +
+
+
+
+

+GimpProgressEndCallback ()

+
void        (*GimpProgressEndCallback)      (gpointer user_data);
+

+ +

+
++ + + + +
+user_data : + + +
+
+
+
+

+GimpProgressTextCallback ()

+
void        (*GimpProgressTextCallback)     (const gchar *message,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+message : +
+user_data : + + +
+
+
+
+

+GimpProgressValueCallback ()

+
void        (*GimpProgressValueCallback)    (gdouble percentage,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+percentage : +
+user_data : + + +
+
+
+
+

+gimp_progress_init ()

+
gboolean    gimp_progress_init              (const gchar *message);
+

Initializes the progress bar for the current plug-in. -

+

+

Initializes the progress bar for the current plug-in. It is only -valid to call this procedure from a plug-in.

+valid to call this procedure from a plug-in.

+

-

message : Message to use in the progress dialog. -
Returns : TRUE on success. -

gimp_progress_update ()

gboolean    gimp_progress_update            (gdouble percentage);

+

+
++ + + + + + + + + + +
+message : Message to use in the progress dialog. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_progress_update ()

+
gboolean    gimp_progress_update            (gdouble percentage);
+

Updates the progress bar for the current plug-in. -

+

+

Updates the progress bar for the current plug-in. It is only valid -to call this procedure from a plug-in.

+to call this procedure from a plug-in.

+

-

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,
+

+
++ + + + + + + + + + +
+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,
                                              GimpProgressEndCallback end_callback,
                                              GimpProgressTextCallback text_callback,
                                              GimpProgressValueCallback value_callback,
-                                             gpointer user_data);

-

- -

start_callback : the function to call when progress starts -
end_callback : the function to call when progress finishes -
text_callback : the function to call to change the text -
value_callback : the function to call to change the value -
user_data : a pointer that is returned when uninstalling the progress -
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);

+ gpointer user_data); +

+

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+start_callback : the function to call when progress starts +
+end_callback : the function to call when progress finishes +
+text_callback : the function to call to change the text +
+value_callback : the function to call to change the value +
+user_data : a pointer that is returned when uninstalling the progress +
+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);
+

Uninstalls a temporary progress procedure that was installed using -gimp_progress_install().

- -

progress_callback : the name of the temporary procedure to uninstall -
Returns : the user_data that was passed to gimp_progress_install(). +gimp_progress_install().

+

-

Since GIMP 2.2 -


gimp_progress_cancel ()

gboolean    gimp_progress_cancel            (const gchar *progress_callback);

+

+
++ + + + + + + + + + +
+progress_callback : the name of the temporary procedure to uninstall +
+Returns : the user_data that was passed to gimp_progress_install(). + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_progress_cancel ()

+
gboolean    gimp_progress_cancel            (const gchar *progress_callback);
+

Cancels a running progress. -

-This function cancels the currently running progress.

- -

progress_callback : The name of the callback registered for this progress. -
Returns : TRUE on success. - -

Since GIMP 2.2 -

+

+

+This function cancels the currently running progress.

+

+ +

+
++ + + + + + + + + + +
+progress_callback : The name of the callback registered for this progress. +
+Returns : TRUE on success. + +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpregioniterator.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpregioniterator.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpregioniterator.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpregioniterator

gimpregioniterator

gimpregioniterator — Functions to traverse a pixel regions.

Synopsis

+
+
+
+gimpregioniterator
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpregioniterator

+

gimpregioniterator — Functions to traverse a pixel regions.

+
+
+

Synopsis

+
 
 
 
@@ -46,132 +85,517 @@
                                              GimpRunMode unused,
                                              GimpRgnFunc2 func,
                                              gpointer data);
-

Description

+

+
+
+

Description

+

The GimpRgnIterator functions provide a variety of common ways to traverse a PixelRegion, using a pre-defined function pointer per pixel. -

Details

GimpRgnIterator

typedef struct _GimpRgnIterator GimpRgnIterator;

- -


GimpRgnFunc1 ()

void        (*GimpRgnFunc1)                 (const guchar *src,
+

+
+
+

Details

+
+

+GimpRgnIterator

+
typedef struct _GimpRgnIterator GimpRgnIterator;
+

+ +

+
+
+
+

+GimpRgnFunc1 ()

+
void        (*GimpRgnFunc1)                 (const guchar *src,
                                              gint bpp,
-                                             gpointer data);

- -

src : -
bpp : -
data : - + gpointer data); +

-


GimpRgnFunc2 ()

void        (*GimpRgnFunc2)                 (const guchar *src,
+

+
++ + + + + + + + + + + + + + +
+src : +
+bpp : +
+data : + + +
+
+
+
+

+GimpRgnFunc2 ()

+
void        (*GimpRgnFunc2)                 (const guchar *src,
                                              guchar *dest,
                                              gint bpp,
-                                             gpointer data);

+ gpointer data); +

-

src : -
dest : -
bpp : -
data : - - -

GimpRgnFuncSrc ()

void        (*GimpRgnFuncSrc)               (gint x,
+

+
++ + + + + + + + + + + + + + + + + + +
+src : +
+dest : +
+bpp : +
+data : + + +
+
+
+
+

+GimpRgnFuncSrc ()

+
void        (*GimpRgnFuncSrc)               (gint x,
                                              gint y,
                                              const guchar *src,
                                              gint bpp,
-                                             gpointer data);

- -

x : -
y : -
src : -
bpp : -
data : + gpointer data); +

- -


GimpRgnFuncDest ()

void        (*GimpRgnFuncDest)              (gint x,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+src : +
+bpp : +
+data : + + +
+
+
+
+

+GimpRgnFuncDest ()

+
void        (*GimpRgnFuncDest)              (gint x,
                                              gint y,
                                              guchar *dest,
                                              gint bpp,
-                                             gpointer data);

- -

x : -
y : -
dest : -
bpp : -
data : - + gpointer data); +

-


GimpRgnFuncSrcDest ()

void        (*GimpRgnFuncSrcDest)           (gint x,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+dest : +
+bpp : +
+data : + + +
+
+
+
+

+GimpRgnFuncSrcDest ()

+
void        (*GimpRgnFuncSrcDest)           (gint x,
                                              gint y,
                                              const guchar *src,
                                              guchar *dest,
                                              gint bpp,
-                                             gpointer data);

- -

x : -
y : -
src : -
dest : -
bpp : -
data : - + gpointer data); +

-


gimp_rgn_iterator_new ()

GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
-                                             GimpRunMode unused);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+src : +
+dest : +
+bpp : +
+data : + + +
+
+
+
+

+gimp_rgn_iterator_new ()

+
GimpRgnIterator* gimp_rgn_iterator_new      (GimpDrawable *drawable,
+                                             GimpRunMode unused);
+

Creates a new GimpRgnIterator for drawable. The GimpRunMode -parameter is ignored.

+parameter is ignored.

+

-

drawable : a GimpDrawable -
unused : ignored -
Returns : a newly allocated GimpRgnIterator. -

gimp_rgn_iterator_free ()

void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);

-Frees the resources allocated for iter.

- -

iter : a GimpRgnIterator -

gimp_rgn_iterator_src ()

void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
+

+
++ + + + + + + + + + + + + + +
+drawable : a GimpDrawable +
+unused : ignored +
+Returns : a newly allocated GimpRgnIterator. +
+
+
+
+

+gimp_rgn_iterator_free ()

+
void        gimp_rgn_iterator_free          (GimpRgnIterator *iter);
+

+Frees the resources allocated for iter.

+

+ +

+
++ + + + +
+iter : a GimpRgnIterator +
+
+
+
+

+gimp_rgn_iterator_src ()

+
void        gimp_rgn_iterator_src           (GimpRgnIterator *iter,
                                              GimpRgnFuncSrc func,
-                                             gpointer data);

- -

iter : -
func : -
data : - + gpointer data); +

-


gimp_rgn_iterator_dest ()

void        gimp_rgn_iterator_dest          (GimpRgnIterator *iter,
+

+
++ + + + + + + + + + + + + + +
+iter : +
+func : +
+data : + + +
+
+
+
+

+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,
+

+
++ + + + + + + + + + + + + + +
+iter : +
+func : +
+data : + + +
+
+
+
+

+gimp_rgn_iterator_src_dest ()

+
void        gimp_rgn_iterator_src_dest      (GimpRgnIterator *iter,
                                              GimpRgnFuncSrcDest func,
-                                             gpointer data);

- -

iter : -
func : -
data : + gpointer data); +

- -


gimp_rgn_iterate1 ()

void        gimp_rgn_iterate1               (GimpDrawable *drawable,
+

+
++ + + + + + + + + + + + + + +
+iter : +
+func : +
+data : + + +
+
+
+
+

+gimp_rgn_iterate1 ()

+
void        gimp_rgn_iterate1               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc1 func,
-                                             gpointer data);

- -

drawable : -
unused : -
func : -
data : - + gpointer data); +

-


gimp_rgn_iterate2 ()

void        gimp_rgn_iterate2               (GimpDrawable *drawable,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable : +
+unused : +
+func : +
+data : + + +
+
+
+
+

+gimp_rgn_iterate2 ()

+
void        gimp_rgn_iterate2               (GimpDrawable *drawable,
                                              GimpRunMode unused,
                                              GimpRgnFunc2 func,
-                                             gpointer data);

- -

drawable : -
unused : -
func : -
data : - + gpointer data); +

-

+

+
++ + + + + + + + + + + + + + + + + + +
+drawable : +
+unused : +
+func : +
+data : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpselection.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpselection.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpselection.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpselection.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpselection

gimpselection

gimpselection — Functions for manipulating selections.

Synopsis

+
+
+
+gimpselection
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpselection

+

gimpselection — Functions for manipulating selections.

+
+
+

Synopsis

+
 
 
 
@@ -37,17 +76,30 @@
 gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);
 gboolean    gimp_selection_combine          (gint32 channel_ID,
                                              GimpChannelOps operation);
-

Description

+

+
+
+

Description

+

Functions for manipulating selections. -

Details

gimp_selection_bounds ()

gboolean    gimp_selection_bounds           (gint32 image_ID,
+

+
+
+

Details

+
+

+gimp_selection_bounds ()

+
gboolean    gimp_selection_bounds           (gint32 image_ID,
                                              gboolean *non_empty,
                                              gint *x1,
                                              gint *y1,
                                              gint *x2,
-                                             gint *y2);

+ gint *y2); +

Find the bounding box of the current selection. -

+

+

This procedure returns whether there is a selection for the specified image. If there is one, the upper left and lower right corners of the bounding box are returned. These coordinates are @@ -55,185 +107,706 @@ lower righthand coordinate of the bounding box is not part of the selection. The selection ends at the upper left corner of this pixel. This means the width of the selection can be calculated as -(x2 - x1), its height as (y2 - y1).

+(x2 - x1), its height as (y2 - y1).

+

-

image_ID : The image. -
non_empty : True if there is a selection. -
x1 : x coordinate of upper left corner of selection bounds. -
y1 : y coordinate of upper left corner of selection bounds. -
x2 : x coordinate of lower right corner of selection bounds. -
y2 : y coordinate of lower right corner of selection bounds. -
Returns : TRUE on success. -

gimp_selection_all ()

gboolean    gimp_selection_all              (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+non_empty : True if there is a selection. +
+x1 : x coordinate of upper left corner of selection bounds. +
+y1 : y coordinate of upper left corner of selection bounds. +
+x2 : x coordinate of lower right corner of selection bounds. +
+y2 : y coordinate of lower right corner of selection bounds. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_all ()

+
gboolean    gimp_selection_all              (gint32 image_ID);
+

Select all of the image. -

+

+

This procedure sets the selection mask to completely encompass the -image. Every pixel in the selection channel is set to 255.

+image. Every pixel in the selection channel is set to 255.

+

-

image_ID : The image. -
Returns : TRUE on success. -

gimp_selection_none ()

gboolean    gimp_selection_none             (gint32 image_ID);

+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_none ()

+
gboolean    gimp_selection_none             (gint32 image_ID);
+

Deselect the entire image. -

+

+

This procedure deselects the entire image. Every pixel in the -selection channel is set to 0.

+selection channel is set to 0.

+

-

image_ID : The image. -
Returns : TRUE on success. -

gimp_selection_clear ()

gboolean    gimp_selection_clear            (gint32 image_ID);

Warning

gimp_selection_clear is deprecated and should not be used in newly-written code.

-This procedure is deprecated! Use gimp_selection_none() instead.

- -

image_ID : The image. -
Returns : TRUE on success. -

gimp_selection_is_empty ()

gboolean    gimp_selection_is_empty         (gint32 image_ID);

+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_clear ()

+
gboolean    gimp_selection_clear            (gint32 image_ID);
+
+

Warning

+

gimp_selection_clear is deprecated and should not be used in newly-written code.

+
+

+This procedure is deprecated! Use gimp_selection_none() instead.

+

+ +

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_is_empty ()

+
gboolean    gimp_selection_is_empty         (gint32 image_ID);
+

Determine whether the selection is empty. -

+

+

This procedure returns non-zero if the selection for the specified -image is not empty.

+image is not empty.

+

-

image_ID : The image. -
Returns : Is the selection empty? -

gimp_selection_float ()

gint32      gimp_selection_float            (gint32 image_ID,
+

+
++ + + + + + + + + + +
+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);

+ gint offy); +

Float the selection from the specified drawable with initial offsets as specified. -

+

+

This procedure determines the region of the specified drawable that lies beneath the current selection. The region is then cut from the drawable and the resulting data is made into a new layer which is instantiated as a floating selection. The offsets allow initial -positioning of the new floating selection.

+positioning of the new floating selection.

+

-

image_ID : ignored -
drawable_ID : The drawable from which to float selection. -
offx : x offset for translation. -
offy : y offset for translation. -
Returns : The floated layer. -

gimp_selection_load ()

gboolean    gimp_selection_load             (gint32 channel_ID);

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+image_ID : ignored +
+drawable_ID : The drawable from which to float selection. +
+offx : x offset for translation. +
+offy : y offset for translation. +
+Returns : The floated layer. +
+
+
+
+

+gimp_selection_load ()

+
gboolean    gimp_selection_load             (gint32 channel_ID);
+

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);

+

+

+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);
+

Copy the selection mask to a new channel. -

+

+

This procedure copies the selection mask and stores the content in a new channel. The new channel is automatically inserted into the -image's list of channels.

+image's list of channels.

+

-

image_ID : The image. -
Returns : The new channel. -

gimp_selection_value ()

gint        gimp_selection_value            (gint32 image_ID,
+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : The new channel. +
+
+
+
+

+gimp_selection_value ()

+
gint        gimp_selection_value            (gint32 image_ID,
                                              gint x,
-                                             gint y);

+ gint y); +

Find the value of the selection at the specified coordinates. -

+

+

This procedure returns the value of the selection at the specified -coordinates. If the coordinates lie out of bounds, 0 is returned.

+coordinates. If the coordinates lie out of bounds, 0 is returned.

+

-

image_ID : The image. -
x : x coordinate of value. -
y : y coordinate of value. -
Returns : Value of the selection. -

gimp_selection_grow ()

gboolean    gimp_selection_grow             (gint32 image_ID,
-                                             gint steps);

+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+x : x coordinate of value. +
+y : y coordinate of value. +
+Returns : Value of the selection. +
+
+
+
+

+gimp_selection_grow ()

+
gboolean    gimp_selection_grow             (gint32 image_ID,
+                                             gint steps);
+

Grow the image's selection -

+

+

This procedure grows the selection. Growing involves expanding the -boundary in all directions by the specified pixel amount.

+boundary in all directions by the specified pixel amount.

+

-

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);

+

+
++ + + + + + + + + + + + + + +
+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);
+

Shrink the image's selection -

+

+

This procedure shrinks the selection. Shrinking invovles trimming the existing selection boundary on all sides by the specified number -of pixels.

+of pixels.

+

-

image_ID : The image. -
radius : Radius of shrink (in pixels). -
Returns : TRUE on success. -

gimp_selection_invert ()

gboolean    gimp_selection_invert           (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + +
+image_ID : The image. +
+radius : Radius of shrink (in pixels). +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_invert ()

+
gboolean    gimp_selection_invert           (gint32 image_ID);
+

Invert the selection mask. -

+

+

This procedure inverts the selection mask. For every pixel in the -selection channel, its new value is calculated as (255 - old_value).

+selection channel, its new value is calculated as (255 - old_value).

+

-

image_ID : The image. -
Returns : TRUE on success. -

gimp_selection_feather ()

gboolean    gimp_selection_feather          (gint32 image_ID,
-                                             gdouble radius);

+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_feather ()

+
gboolean    gimp_selection_feather          (gint32 image_ID,
+                                             gdouble radius);
+

Feather the image's selection -

+

+

This procedure feathers the selection. Feathering is implemented -using a gaussian blur.

+using a gaussian blur.

+

-

image_ID : The image. -
radius : Radius of feather (in pixels). -
Returns : TRUE on success. -

gimp_selection_sharpen ()

gboolean    gimp_selection_sharpen          (gint32 image_ID);

+

+
++ + + + + + + + + + + + + + +
+image_ID : The image. +
+radius : Radius of feather (in pixels). +
+Returns : TRUE on success. +
+
+
+
+

+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 selection channel, if the value is > 0, the new pixel is assigned a value of 255. This removes any \"anti-aliasing\" that might exist -in the selection mask's boundary.

+in the selection mask's boundary.

+

-

image_ID : The image. -
Returns : TRUE on success. -

gimp_selection_border ()

gboolean    gimp_selection_border           (gint32 image_ID,
-                                             gint radius);

+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_border ()

+
gboolean    gimp_selection_border           (gint32 image_ID,
+                                             gint radius);
+

Border the image's selection -

+

+

This procedure borders the selection. Bordering creates a new selection which is defined along the boundary of the previous -selection at every point within the specified radius.

+selection at every point within the specified radius.

+

-

image_ID : The image. -
radius : Radius of border (in pixels). -
Returns : TRUE on success. -

gimp_selection_translate ()

gboolean    gimp_selection_translate        (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + +
+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);

+ gint offy); +

Translate the selection by the specified offsets. -

+

+

This procedure actually translates the selection for the specified image by the specified offsets. Regions that are translated from beyond the bounds of the image are set to empty. Valid regions of the selection which are translated beyond the bounds of the image -because of this call are lost.

+because of this call are lost.

+

-

image_ID : The image. -
offx : x offset for translation. -
offy : y offset for translation. -
Returns : TRUE on success. -

gimp_selection_layer_alpha ()

gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);

+

+
++ + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+offx : x offset for translation. +
+offy : y offset for translation. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_layer_alpha ()

+
gboolean    gimp_selection_layer_alpha      (gint32 layer_ID);
+

Transfer the specified layer's alpha channel to the selection mask. -

+

+

This procedure requires a layer with an alpha channel. The alpha channel information is used to create a selection mask such that for any pixel in the image defined in the specified layer, that layer pixel's alpha value is transferred to the selection mask. If the layer is undefined at a particular image pixel, the associated -selection mask value is set to 0.

+selection mask value is set to 0.

+

-

layer_ID : Layer with alpha. -
Returns : TRUE on success. -

gimp_selection_combine ()

gboolean    gimp_selection_combine          (gint32 channel_ID,
-                                             GimpChannelOps operation);

+

+
++ + + + + + + + + + +
+layer_ID : Layer with alpha. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_selection_combine ()

+
gboolean    gimp_selection_combine          (gint32 channel_ID,
+                                             GimpChannelOps operation);
+

Combines the specified channel with the selection mask. -

+

+

This procedure combines the specified channel into the selection -mask.

+mask.

+

-

channel_ID : The channel. -
operation : The selection operation. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + + + + + +
+channel_ID : The channel. +
+operation : The selection operation. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptexttool.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimptexttool.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptexttool.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimptexttool.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimptexttool

gimptexttool

gimptexttool — Functions for controlling the text tool.

Synopsis

+
+
+
+gimptexttool
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimptexttool

+

gimptexttool — Functions for controlling the text tool.

+
+
+

Synopsis

+
 
 
 
@@ -52,10 +91,21 @@
                                              gint *height,
                                              gint *ascent,
                                              gint *descent);
-

Description

+

+
+
+

Description

+

Functions for controlling the text tool. -

Details

gimp_text_fontname ()

gint32      gimp_text_fontname              (gint32 image_ID,
+

+
+
+

Details

+
+

+gimp_text_fontname ()

+
gint32      gimp_text_fontname              (gint32 image_ID,
                                              gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
@@ -64,10 +114,12 @@
                                              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. -

+

+

This tool requires a fontname matching an installed PangoFT2 font. You can specify the fontsize in units of pixels or points, and the appropriate metric is specified using the size_type argument. The x @@ -77,43 +129,169 @@ floating selection attached to the drawable. If the drawable parameter is not valid (-1), the text will appear as a new layer. Finally, a border can be specified around the final rendered text. -The border is measured in pixels.

+The border is measured in pixels.

+

-

image_ID : The image. -
drawable_ID : The affected drawable: (-1 for a new text layer). -
x : The x coordinate for the left of the text bounding box. -
y : The y coordinate for the top of the text bounding box. -
text : The text to generate (in UTF-8 encoding). -
border : The size of the border. -
antialias : Antialiasing. -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
fontname : The name of the font. -
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,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+drawable_ID : The affected drawable: (-1 for a new text layer). +
+x : The x coordinate for the left of the text bounding box. +
+y : The y coordinate for the top of the text bounding box. +
+text : The text to generate (in UTF-8 encoding). +
+border : The size of the border. +
+antialias : Antialiasing. +
+size : The size of text in either pixels or points. +
+size_type : The units of specified size. +
+fontname : The name of the font. +
+Returns : The new text layer or -1 if no layer was created. +
+
+
+
+

+gimp_text_get_extents_fontname ()

+
gboolean    gimp_text_get_extents_fontname  (const gchar *text,
                                              gdouble size,
                                              GimpSizeType size_type,
                                              const gchar *fontname,
                                              gint *width,
                                              gint *height,
                                              gint *ascent,
-                                             gint *descent);

+ gint *descent); +

Get extents of the bounding box for the specified text. -

+

+

This tool returns the width and height of a bounding box for the specified text string with the specified font information. Ascent -and descent for the specified font are returned as well.

+and descent for the specified font are returned as well.

+

-

text : The text to generate (in UTF-8 encoding). -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
fontname : The name of the font. -
width : The width of the specified font. -
height : The height of the specified font. -
ascent : The ascent of the specified font. -
descent : The descent of the specified font. -
Returns : TRUE on success. -

gimp_text ()

gint32      gimp_text                       (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+text : The text to generate (in UTF-8 encoding). +
+size : The size of text in either pixels or points. +
+size_type : The units of specified size. +
+fontname : The name of the font. +
+width : The width of the specified font. +
+height : The height of the specified font. +
+ascent : The ascent of the specified font. +
+descent : The descent of the specified font. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_text ()

+
gint32      gimp_text                       (gint32 image_ID,
                                              gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
@@ -129,28 +307,135 @@
                                              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.

+ const gchar *encoding); +

+

Warning

+

gimp_text is deprecated and should not be used in newly-written code.

+
+

+This procedure is deprecated! Use gimp_text_fontname() instead.

+

-

image_ID : The image. -
drawable_ID : The affected drawable: (-1 for a new text layer). -
x : The x coordinate for the left of the text bounding box. -
y : The y coordinate for the top of the text bounding box. -
text : The text to generate (in UTF-8 encoding). -
border : The size of the border. -
antialias : Antialiasing. -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
foundry : The font foundry. -
family : The font family. -
weight : The font weight. -
slant : The font slant. -
set_width : The font set-width. -
spacing : The font spacing. -
registry : The font registry. -
encoding : The font encoding. -
Returns : The new text layer or -1 if no layer was created. -

gimp_text_get_extents ()

gboolean    gimp_text_get_extents           (const gchar *text,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+drawable_ID : The affected drawable: (-1 for a new text layer). +
+x : The x coordinate for the left of the text bounding box. +
+y : The y coordinate for the top of the text bounding box. +
+text : The text to generate (in UTF-8 encoding). +
+border : The size of the border. +
+antialias : Antialiasing. +
+size : The size of text in either pixels or points. +
+size_type : The units of specified size. +
+foundry : The font foundry. +
+family : The font family. +
+weight : The font weight. +
+slant : The font slant. +
+set_width : The font set-width. +
+spacing : The font spacing. +
+registry : The font registry. +
+encoding : The font encoding. +
+Returns : The new text layer or -1 if no layer was created. +
+
+
+
+

+gimp_text_get_extents ()

+
gboolean    gimp_text_get_extents           (const gchar *text,
                                              gdouble size,
                                              GimpSizeType size_type,
                                              const gchar *foundry,
@@ -164,24 +449,124 @@
                                              gint *width,
                                              gint *height,
                                              gint *ascent,
-                                             gint *descent);

Warning

gimp_text_get_extents is deprecated and should not be used in newly-written code.

+ 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.

+instead.

+

-

text : The text to generate (in UTF-8 encoding). -
size : The size of text in either pixels or points. -
size_type : The units of specified size. -
foundry : The font foundry. -
family : The font family. -
weight : The font weight. -
slant : The font slant. -
set_width : The font set-width. -
spacing : The font spacing. -
registry : The font registry. -
encoding : The font encoding. -
width : The width of the specified font. -
height : The height of the specified font. -
ascent : The ascent of the specified font. -
descent : The descent of the specified font. -
Returns : TRUE on success. -
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+text : The text to generate (in UTF-8 encoding). +
+size : The size of text in either pixels or points. +
+size_type : The units of specified size. +
+foundry : The font foundry. +
+family : The font family. +
+weight : The font weight. +
+slant : The font slant. +
+set_width : The font set-width. +
+spacing : The font spacing. +
+registry : The font registry. +
+encoding : The font encoding. +
+width : The width of the specified font. +
+height : The height of the specified font. +
+ascent : The ascent of the specified font. +
+descent : The descent of the specified font. +
+Returns : TRUE on success. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptile.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimptile.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptile.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimptile.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimptile

gimptile

gimptile — Functions for working with tiles.

Synopsis

+
+
+
+gimptile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimptile

+

gimptile — Functions for working with tiles.

+
+
+

Synopsis

+
 
 
 
@@ -10,10 +49,21 @@
 void        gimp_tile_flush                 (GimpTile *tile);
 void        gimp_tile_cache_size            (gulong kilobytes);
 void        gimp_tile_cache_ntiles          (gulong ntiles);
-

Description

+

+
+
+

Description

+

Functions for working with tiles. -

Details

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 ) */
@@ -24,46 +74,156 @@
   guchar       *data;       /* the pixel data for the tile */
   GimpDrawable *drawable;   /* the drawable this tile came from */
 } GimpTile;
-

+ +

-


gimp_tile_ref ()

void        gimp_tile_ref                   (GimpTile *tile);

- -

tile : - - -

gimp_tile_ref_zero ()

void        gimp_tile_ref_zero              (GimpTile *tile);

- -

tile : - - -

gimp_tile_unref ()

void        gimp_tile_unref                 (GimpTile *tile,
-                                             gboolean dirty);

- -

tile : -
dirty : - - -

gimp_tile_flush ()

void        gimp_tile_flush                 (GimpTile *tile);

- -

tile : - - -

gimp_tile_cache_size ()

void        gimp_tile_cache_size            (gulong kilobytes);

+

+
+
+
+

+gimp_tile_ref ()

+
void        gimp_tile_ref                   (GimpTile *tile);
+

+ +

+
++ + + + +
+tile : + + +
+
+
+
+

+gimp_tile_ref_zero ()

+
void        gimp_tile_ref_zero              (GimpTile *tile);
+

+ +

+
++ + + + +
+tile : + + +
+
+
+
+

+gimp_tile_unref ()

+
void        gimp_tile_unref                 (GimpTile *tile,
+                                             gboolean dirty);
+

+ +

+
++ + + + + + + + + + +
+tile : +
+dirty : + + +
+
+
+
+

+gimp_tile_flush ()

+
void        gimp_tile_flush                 (GimpTile *tile);
+

+ +

+
++ + + + +
+tile : + + +
+
+
+
+

+gimp_tile_cache_size ()

+
void        gimp_tile_cache_size            (gulong kilobytes);
+

Sets the size of the tile cache on the plug-in side. The tile cache is used to reduce the number of tiles exchanged between the GIMP core -and the plug-in. See also gimp_tile_cache_ntiles().

+and the plug-in. See also gimp_tile_cache_ntiles().

+

-

kilobytes : new cache size in kilobytes -

gimp_tile_cache_ntiles ()

void        gimp_tile_cache_ntiles          (gulong ntiles);

+

+
++ + + + +
+kilobytes : new cache size in kilobytes +
+
+
+
+

+gimp_tile_cache_ntiles ()

+
void        gimp_tile_cache_ntiles          (gulong ntiles);
+

Sets the size of the tile cache on the plug-in side. This function is similar to gimp_tile_cache_size() but allows to specify the number of tiles directly. -

+

+

If your plug-in access pixels tile-by-tile, it doesn't need a tile cache at all. If however the plug-in accesses drawable pixel data row-by-row, it should set the tile cache large enough to hold the number of tiles per row. Double this size if your plug-in uses -shadow tiles.

+shadow tiles.

+

-

ntiles : number of tiles that should fit into the cache -
+

+
++ + + + +
+ntiles : number of tiles that should fit into the cache +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptools.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimptools.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimptools.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimptools.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimptools

gimptools

gimptools — Access to common toolbox tools.

Synopsis

+
+
+
+gimptools
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimptools

+

gimptools — Access to common toolbox tools.

+
+
+

Synopsis

+
 
 
 
@@ -140,42 +179,126 @@
                                              gdouble angle,
                                              gdouble dest_x,
                                              gdouble dest_y);
-

Description

+

+
+
+

Description

+

Functions giving access to common toolbox tools. -

Details

gimp_airbrush ()

gboolean    gimp_airbrush                   (gint32 drawable_ID,
+

+
+
+

Details

+
+

+gimp_airbrush ()

+
gboolean    gimp_airbrush                   (gint32 drawable_ID,
                                              gdouble pressure,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Paint in the current brush with varying pressure. Paint application is time-dependent. -

+

+

This tool simulates the use of an airbrush. Paint pressure represents the relative intensity of the paint application. High pressure results in a thicker layer of paint while low pressure -results in a thinner layer.

+results in a thinner layer.

+

-

drawable_ID : The affected drawable. -
pressure : The pressure of the airbrush strokes. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_airbrush_default ()

gboolean    gimp_airbrush_default           (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+pressure : The pressure of the airbrush strokes. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_airbrush_default ()

+
gboolean    gimp_airbrush_default           (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Paint in the current brush with varying pressure. Paint application is time-dependent. -

+

+

This tool simulates the use of an airbrush. It is similar to gimp_airbrush except that the pressure is derived from the airbrush tools options box. It the option has not been set the default for -the option will be used.

+the option will be used.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_by_color_select ()

gboolean    gimp_by_color_select            (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_by_color_select ()

+
gboolean    gimp_by_color_select            (gint32 drawable_ID,
                                              const GimpRGB *color,
@@ -184,10 +307,12 @@
                                              gboolean antialias,
                                              gboolean feather,
                                              gdouble feather_radius,
-                                             gboolean sample_merged);

+ gboolean sample_merged); +

Create a selection by selecting all pixels (in the specified drawable) with the same (or similar) color to that specified. -

+

+

This tool creates a selection over the specified image. A by-color selection is determined by the supplied color under the constraints of the specified threshold. Essentially, all pixels (in the @@ -200,26 +325,85 @@ sample_merged parameter is non-zero, the data of the composite image will be used instead of that for the specified drawable. This is equivalent to sampling for colors after merging all visible layers. -In the case of a merged sampling, the supplied drawable is ignored.

+In the case of a merged sampling, the supplied drawable is ignored.

+

-

drawable_ID : The affected drawable. -
color : The color to select. -
threshold : Threshold in intensity levels %desc%%. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
sample_merged : Use the composite image, not the drawable. -
Returns : TRUE on success. -

gimp_clone ()

gboolean    gimp_clone                      (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+color : The color to select. +
+threshold : Threshold in intensity levels %desc%%. +
+operation : The selection operation. +
+antialias : Antialiasing. +
+feather : Feather option for selections. +
+feather_radius : Radius for feather operation. +
+sample_merged : Use the composite image, not the drawable. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_clone ()

+
gboolean    gimp_clone                      (gint32 drawable_ID,
                                              gint32 src_drawable_ID,
                                              GimpCloneType clone_type,
                                              gdouble src_x,
                                              gdouble src_y,
                                              gint num_strokes,
-                                             const gdouble *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 specified source coordinates to the dest drawable. If the \"clone_type\" argument is set to PATTERN-CLONE, then the current @@ -231,97 +415,344 @@ src drawable, then no paint is transferred. The clone tool is capable of transforming between any image types including RGB->Indexed--although converting from any type to indexed is -significantly slower.

+significantly slower.

+

-

drawable_ID : The affected drawable. -
src_drawable_ID : The source drawable. -
clone_type : The type of clone. -
src_x : The x coordinate in the source image. -
src_y : The y coordinate in the source image. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_clone_default ()

gboolean    gimp_clone_default              (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+src_drawable_ID : The source drawable. +
+clone_type : The type of clone. +
+src_x : The x coordinate in the source image. +
+src_y : The y coordinate in the source image. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_clone_default ()

+
gboolean    gimp_clone_default              (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ 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 specified source coordinates to the dest drawable. This function performs exactly the same as the gimp_clone function except that the tools arguments are obtained from the clones option dialog. It this dialog has not been activated then the dialogs default values will -be used.

+be used.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_convolve ()

gboolean    gimp_convolve                   (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_convolve ()

+
gboolean    gimp_convolve                   (gint32 drawable_ID,
                                              gdouble pressure,
                                              GimpConvolveType convolve_type,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Convolve (Blur, Sharpen) using the current brush. -

+

+

This tool convolves the specified drawable with either a sharpening or blurring kernel. The pressure parameter controls the magnitude of the operation. Like the paintbrush, this tool linearly interpolates -between the specified stroke coordinates.

+between the specified stroke coordinates.

+

-

drawable_ID : The affected drawable. -
pressure : The pressure. -
convolve_type : Convolve type. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_convolve_default ()

gboolean    gimp_convolve_default           (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+pressure : The pressure. +
+convolve_type : Convolve type. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_convolve_default ()

+
gboolean    gimp_convolve_default           (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Convolve (Blur, Sharpen) using the current brush. -

+

+

This tool convolves the specified drawable with either a sharpening or blurring kernel. This function performs exactly the same as the gimp_convolve function except that the tools arguments are obtained from the convolve option dialog. It this dialog has not been -activated then the dialogs default values will be used.

+activated then the dialogs default values will be used.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_dodgeburn ()

gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_dodgeburn ()

+
gboolean    gimp_dodgeburn                  (gint32 drawable_ID,
                                              gdouble exposure,
                                              GimpDodgeBurnType dodgeburn_type,
                                              GimpTransferMode dodgeburn_mode,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Dodgeburn image with varying exposure. -

-Dodgeburn. More details here later.

- -

drawable_ID : The affected drawable. -
exposure : The exposer of the strokes. -
dodgeburn_type : The type either dodge or burn. -
dodgeburn_mode : The mode. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_dodgeburn_default ()

gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
+

+

+Dodgeburn. More details here later.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+exposure : The exposer of the strokes. +
+dodgeburn_type : The type either dodge or burn. +
+dodgeburn_mode : The mode. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_dodgeburn_default ()

+
gboolean    gimp_dodgeburn_default          (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ 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 activated then the defaults as used by the dialog will be used. -

-Dodgeburn. More details here later.

- -

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_ellipse_select ()

gboolean    gimp_ellipse_select             (gint32 image_ID,
+

+

+Dodgeburn. More details here later.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_ellipse_select ()

+
gboolean    gimp_ellipse_select             (gint32 image_ID,
                                              gdouble x,
                                              gdouble y,
                                              gdouble width,
@@ -329,9 +760,11 @@
                                              GimpChannelOps operation,
                                              gboolean antialias,
                                              gboolean feather,
-                                             gdouble feather_radius);

+ gdouble feather_radius); +

Create an elliptical selection over the specified image. -

+

+

This tool creates an elliptical selection over the specified image. The elliptical region can be either added to, subtracted from, or replace the contents of the previous selection mask. If antialiasing @@ -340,69 +773,243 @@ pixelized edge. This should be set as TRUE most of the time. If the feather option is enabled, the resulting selection is blurred before combining. The blur is a gaussian blur with the specified feather -radius.

+radius.

+

-

image_ID : The image. -
x : x coordinate of upper-left corner of ellipse bounding box. -
y : y coordinate of upper-left corner of ellipse bounding box. -
width : The width of the ellipse. -
height : The height of the ellipse. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
Returns : TRUE on success. -

gimp_eraser ()

gboolean    gimp_eraser                     (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+x : x coordinate of upper-left corner of ellipse bounding box. +
+y : y coordinate of upper-left corner of ellipse bounding box. +
+width : The width of the ellipse. +
+height : The height of the ellipse. +
+operation : The selection operation. +
+antialias : Antialiasing. +
+feather : Feather option for selections. +
+feather_radius : Radius for feather operation. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_eraser ()

+
gboolean    gimp_eraser                     (gint32 drawable_ID,
                                              gint num_strokes,
                                              const gdouble *strokes,
                                              GimpBrushApplicationMode hardness,
-                                             GimpPaintApplicationMode method);

+ GimpPaintApplicationMode method); +

Erase using the current brush. -

+

+

This tool erases using the current brush mask. If the specified drawable contains an alpha channel, then the erased pixels will become transparent. Otherwise, the eraser tool replaces the contents of the drawable with the background color. Like paintbrush, this -tool linearly interpolates between the specified stroke coordinates.

+tool linearly interpolates between the specified stroke coordinates.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
hardness : %desc%%. -
method : %desc%%. -
Returns : TRUE on success. -

gimp_eraser_default ()

gboolean    gimp_eraser_default             (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+hardness : %desc%%. +
+method : %desc%%. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_eraser_default ()

+
gboolean    gimp_eraser_default             (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Erase using the current brush. -

+

+

This tool erases using the current brush mask. This function performs exactly the same as the gimp_eraser function except that the tools arguments are obtained from the eraser option dialog. It this dialog has not been activated then the dialogs default values -will be used.

+will be used.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_flip ()

gint32      gimp_flip                       (gint32 drawable_ID,
-                                             GimpOrientationType flip_type);

Warning

gimp_flip is deprecated and should not be used in newly-written code.

+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_flip ()

+
gint32      gimp_flip                       (gint32 drawable_ID,
+                                             GimpOrientationType flip_type);
+
+

Warning

+

gimp_flip is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use -gimp_drawable_transform_flip_simple() instead.

+gimp_drawable_transform_flip_simple() instead.

+

-

drawable_ID : The affected drawable. -
flip_type : Type of flip. -
Returns : The flipped drawable. -

gimp_free_select ()

gboolean    gimp_free_select                (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + +
+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,
                                              GimpChannelOps operation,
                                              gboolean antialias,
                                              gboolean feather,
-                                             gdouble feather_radius);

+ gdouble feather_radius); +

Create a polygonal selection over the specified image. -

+

+

This tool creates a polygonal selection over the specified image. The polygonal region can be either added to, subtracted from, or replace the contents of the previous selection mask. The polygon is @@ -413,17 +1020,69 @@ starting point, a connecting segment is automatically added. If the feather option is enabled, the resulting selection is blurred before combining. The blur is a gaussian blur with the specified feather -radius.

+radius.

+

-

image_ID : The image. -
num_segs : Number of points (count 1 coordinate as two points). -
segs : Array of points: { p1.x, p1.y, p2.x, p2.y, ..., pn.x, pn.y}. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
Returns : TRUE on success. -

gimp_fuzzy_select ()

gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+num_segs : Number of points (count 1 coordinate as two points). +
+segs : Array of points: { p1.x, p1.y, p2.x, p2.y, ..., pn.x, pn.y}. +
+operation : The selection operation. +
+antialias : Antialiasing. +
+feather : Feather option for selections. +
+feather_radius : Radius for feather operation. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_fuzzy_select ()

+
gboolean    gimp_fuzzy_select               (gint32 drawable_ID,
                                              gdouble x,
                                              gdouble y,
                                              gint threshold,
@@ -431,10 +1090,12 @@
                                              gboolean antialias,
                                              gboolean feather,
                                              gdouble feather_radius,
-                                             gboolean sample_merged);

+ gboolean sample_merged); +

Create a fuzzy selection starting at the specified coordinates on the specified drawable. -

+

+

This tool creates a fuzzy selection over the specified image. A fuzzy selection is determined by a seed fill under the constraints of the specified threshold. Essentially, the color at the specified @@ -452,27 +1113,91 @@ all visible layers. In the case of a merged sampling, the supplied drawable is ignored. If the sample is merged, the specified coordinates are relative to the image origin; otherwise, they are -relative to the drawable's origin.

+relative to the drawable's origin.

+

-

drawable_ID : The affected drawable. -
x : x coordinate of initial seed fill point: (image coordinates). -
y : y coordinate of initial seed fill point: (image coordinates). -
threshold : Threshold in intensity levels %desc%%. -
operation : The selection operation. -
antialias : Antialiasing. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
sample_merged : Use the composite image, not the drawable. -
Returns : TRUE on success. -

gimp_paintbrush ()

gboolean    gimp_paintbrush                 (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+x : x coordinate of initial seed fill point: (image coordinates). +
+y : y coordinate of initial seed fill point: (image coordinates). +
+threshold : Threshold in intensity levels %desc%%. +
+operation : The selection operation. +
+antialias : Antialiasing. +
+feather : Feather option for selections. +
+feather_radius : Radius for feather operation. +
+sample_merged : Use the composite image, not the drawable. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_paintbrush ()

+
gboolean    gimp_paintbrush                 (gint32 drawable_ID,
                                              gdouble fade_out,
                                              gint num_strokes,
                                              const gdouble *strokes,
                                              GimpPaintApplicationMode method,
-                                             gdouble gradient_length);

+ gdouble gradient_length); +

Paint in the current brush with optional fade out parameter and pull colors from a gradient. -

+

+

This tool is the standard paintbrush. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable in the foreground color with the active brush. @@ -482,23 +1207,72 @@ stroke nears the fade_out value, the pressure will approach zero. The gradient_length is the distance to spread the gradient over. It is measured in pixels. If the gradient_length is 0, no gradient is -used.

+used.

+

-

drawable_ID : The affected drawable. -
fade_out : Fade out parameter. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
method : %desc%%. -
gradient_length : Length of gradient to draw. -
Returns : TRUE on success. -

gimp_paintbrush_default ()

gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+fade_out : Fade out parameter. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+method : %desc%%. +
+gradient_length : Length of gradient to draw. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_paintbrush_default ()

+
gboolean    gimp_paintbrush_default         (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ 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 defaults will be used. -

+

+

This tool is similar to the standard paintbrush. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable in the foreground color with the @@ -509,29 +1283,95 @@ fade_out value, the pressure will approach zero. The gradient_length (value obtained from the option dialog) is the distance to spread the gradient over. It is measured in pixels. If the gradient_length -is 0, no gradient is used.

+is 0, no gradient is used.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_pencil ()

gboolean    gimp_pencil                     (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_pencil ()

+
gboolean    gimp_pencil                     (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Paint in the current brush without sub-pixel sampling. -

+

+

This tool is the standard pencil. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable in the foreground color with the active brush. The brush mask is treated as though it contains only black and white values. Any value below half is treated as black; any above half, as -white.

+white.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_perspective ()

gint32      gimp_perspective                (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_perspective ()

+
gint32      gimp_perspective                (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble x0,
                                              gdouble y0,
@@ -540,115 +1380,450 @@
                                              gdouble x2,
                                              gdouble y2,
                                              gdouble x3,
-                                             gdouble y3);

Warning

gimp_perspective is deprecated and should not be used in newly-written code.

+ gdouble y3); +

+

Warning

+

gimp_perspective is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use -gimp_drawable_transform_perspective_default() instead.

+gimp_drawable_transform_perspective_default() instead.

+

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
x0 : The new x coordinate of upper-left corner of original bounding box. -
y0 : The new y coordinate of upper-left corner of original bounding box. -
x1 : The new x coordinate of upper-right corner of original bounding box. -
y1 : The new y coordinate of upper-right corner of original bounding box. -
x2 : The new x coordinate of lower-left corner of original bounding box. -
y2 : The new y coordinate of lower-left corner of original bounding box. -
x3 : The new x coordinate of lower-right corner of original bounding box. -
y3 : The new y coordinate of lower-right corner of original bounding box. -
Returns : The newly mapped drawable. -

gimp_rect_select ()

gboolean    gimp_rect_select                (gint32 image_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+interpolation : Whether to use interpolation. +
+x0 : The new x coordinate of upper-left corner of original bounding box. +
+y0 : The new y coordinate of upper-left corner of original bounding box. +
+x1 : The new x coordinate of upper-right corner of original bounding box. +
+y1 : The new y coordinate of upper-right corner of original bounding box. +
+x2 : The new x coordinate of lower-left corner of original bounding box. +
+y2 : The new y coordinate of lower-left corner of original bounding box. +
+x3 : The new x coordinate of lower-right corner of original bounding box. +
+y3 : The new y coordinate of lower-right corner of original bounding box. +
+Returns : The newly mapped drawable. +
+
+
+
+

+gimp_rect_select ()

+
gboolean    gimp_rect_select                (gint32 image_ID,
                                              gdouble x,
                                              gdouble y,
                                              gdouble width,
                                              gdouble height,
                                              GimpChannelOps operation,
                                              gboolean feather,
-                                             gdouble feather_radius);

+ gdouble feather_radius); +

Create a rectangular selection over the specified image; -

+

+

This tool creates a rectangular selection over the specified image. The rectangular region can be either added to, subtracted from, or replace the contents of the previous selection mask. If the feather option is enabled, the resulting selection is blurred before combining. The blur is a gaussian blur with the specified feather -radius.

+radius.

+

-

image_ID : The image. -
x : x coordinate of upper-left corner of rectangle. -
y : y coordinate of upper-left corner of rectangle. -
width : The width of the rectangle. -
height : The height of the rectangle. -
operation : The selection operation. -
feather : Feather option for selections. -
feather_radius : Radius for feather operation. -
Returns : TRUE on success. -

gimp_rotate ()

gint32      gimp_rotate                     (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+image_ID : The image. +
+x : x coordinate of upper-left corner of rectangle. +
+y : y coordinate of upper-left corner of rectangle. +
+width : The width of the rectangle. +
+height : The height of the rectangle. +
+operation : The selection operation. +
+feather : Feather option for selections. +
+feather_radius : Radius for feather operation. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_rotate ()

+
gint32      gimp_rotate                     (gint32 drawable_ID,
                                              gboolean interpolation,
-                                             gdouble angle);

Warning

gimp_rotate is deprecated and should not be used in newly-written code.

+ gdouble angle); +

+

Warning

+

gimp_rotate is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use -gimp_drawable_transform_rotate_default() instead.

+gimp_drawable_transform_rotate_default() instead.

+

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
angle : The angle of rotation (radians). -
Returns : The rotated drawable. -

gimp_scale ()

gint32      gimp_scale                      (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+interpolation : Whether to use interpolation. +
+angle : The angle of rotation (radians). +
+Returns : The rotated drawable. +
+
+
+
+

+gimp_scale ()

+
gint32      gimp_scale                      (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble x0,
                                              gdouble y0,
                                              gdouble x1,
-                                             gdouble y1);

Warning

gimp_scale is deprecated and should not be used in newly-written code.

+ gdouble y1); +

+

Warning

+

gimp_scale is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use -gimp_drawable_transform_scale_default() instead.

+gimp_drawable_transform_scale_default() instead.

+

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
x0 : The new x coordinate of upper-left corner of newly scaled region. -
y0 : The new y coordinate of upper-left corner of newly scaled region. -
x1 : The new x coordinate of lower-right corner of newly scaled region. -
y1 : The new y coordinate of lower-right corner of newly scaled region. -
Returns : The scaled drawable. -

gimp_shear ()

gint32      gimp_shear                      (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+interpolation : Whether to use interpolation. +
+x0 : The new x coordinate of upper-left corner of newly scaled region. +
+y0 : The new y coordinate of upper-left corner of newly scaled region. +
+x1 : The new x coordinate of lower-right corner of newly scaled region. +
+y1 : The new y coordinate of lower-right corner of newly scaled region. +
+Returns : The scaled drawable. +
+
+
+
+

+gimp_shear ()

+
gint32      gimp_shear                      (gint32 drawable_ID,
                                              gboolean interpolation,
                                              GimpOrientationType shear_type,
-                                             gdouble magnitude);

Warning

gimp_shear is deprecated and should not be used in newly-written code.

+ gdouble magnitude); +

+

Warning

+

gimp_shear is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use -gimp_drawable_transform_shear_default() instead.

+gimp_drawable_transform_shear_default() instead.

+

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
shear_type : Type of shear. -
magnitude : The magnitude of the shear. -
Returns : The sheared drawable. -

gimp_smudge ()

gboolean    gimp_smudge                     (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+interpolation : Whether to use interpolation. +
+shear_type : Type of shear. +
+magnitude : The magnitude of the shear. +
+Returns : The sheared drawable. +
+
+
+
+

+gimp_smudge ()

+
gboolean    gimp_smudge                     (gint32 drawable_ID,
                                              gdouble pressure,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Smudge image with varying pressure. -

+

+

This tool simulates a smudge using the current brush. High pressure results in a greater smudge of paint while low pressure results in a -lesser smudge.

+lesser smudge.

+

-

drawable_ID : The affected drawable. -
pressure : The pressure of the smudge strokes. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_smudge_default ()

gboolean    gimp_smudge_default             (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+pressure : The pressure of the smudge strokes. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_smudge_default ()

+
gboolean    gimp_smudge_default             (gint32 drawable_ID,
                                              gint num_strokes,
-                                             const gdouble *strokes);

+ const gdouble *strokes); +

Smudge image with varying pressure. -

+

+

This tool simulates a smudge using the current brush. It behaves exactly the same as gimp_smudge except that the pressure value is taken from the smudge tool options or the options default if the -tools option dialog has not been activated.

+tools option dialog has not been activated.

+

-

drawable_ID : The affected drawable. -
num_strokes : Number of stroke control points (count each coordinate as 2 points). -
strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. -
Returns : TRUE on success. -

gimp_transform_2d ()

gint32      gimp_transform_2d               (gint32 drawable_ID,
+

+
++ + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+num_strokes : Number of stroke control points (count each coordinate as 2 points). +
+strokes : Array of stroke coordinates: { s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y }. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_transform_2d ()

+
gint32      gimp_transform_2d               (gint32 drawable_ID,
                                              gboolean interpolation,
                                              gdouble source_x,
                                              gdouble source_y,
@@ -656,18 +1831,88 @@
                                              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.

+ gdouble dest_y); +

+

Warning

+

gimp_transform_2d is deprecated and should not be used in newly-written code.

+
+

This procedure is deprecated! Use -gimp_drawable_transform_2d_default() instead.

+gimp_drawable_transform_2d_default() instead.

+

-

drawable_ID : The affected drawable. -
interpolation : Whether to use interpolation. -
source_x : X coordinate of the transformation center. -
source_y : Y coordinate of the transformation center. -
scale_x : Amount to scale in x direction. -
scale_y : Amount to scale in y direction. -
angle : The angle of rotation (radians). -
dest_x : X coordinate of where the centre goes. -
dest_y : Y coordinate of where the centre goes. -
Returns : The transformed drawable. -
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+drawable_ID : The affected drawable. +
+interpolation : Whether to use interpolation. +
+source_x : X coordinate of the transformation center. +
+source_y : Y coordinate of the transformation center. +
+scale_x : Amount to scale in x direction. +
+scale_y : Amount to scale in y direction. +
+angle : The angle of rotation (radians). +
+dest_x : X coordinate of where the centre goes. +
+dest_y : Y coordinate of where the centre goes. +
+Returns : The transformed drawable. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpui.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpui.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpui.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpui.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,33 +1,106 @@ -gimpui

gimpui

gimpui — Common user interface functions. This header includes all other GIMP User -Interface Library headers.

Synopsis

+
+
+
+gimpui
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpui

+

gimpui — Common user interface functions. This header includes all other GIMP User +Interface Library headers.

+
+
+

Synopsis

+
 
 
 
 void        gimp_ui_init                    (const gchar *prog_name,
                                              gboolean preview);
-

Description

+

+
+
+

Description

+

Common user interface functions. This header includes all other GIMP User Interface Library headers. -

Details

gimp_ui_init ()

void        gimp_ui_init                    (const gchar *prog_name,
-                                             gboolean preview);

+

+
+
+

Details

+
+

+gimp_ui_init ()

+
void        gimp_ui_init                    (const gchar *prog_name,
+                                             gboolean preview);
+

This function initializes GTK+ with gtk_init() and initializes GDK's image rendering subsystem (GdkRGB) to follow the GIMP main program's colormap allocation/installation policy. -

+

+

The GIMP's colormap policy can be determinded by the user with the -gimprc variables min_colors and install_cmap.

+gimprc variables min_colors and install_cmap.

+

-

+ + +
prog_name : The name of the plug-in which will be passed as argv[0] to +

+
++ + + + + + + +
+prog_name : The name of the plug-in which will be passed as argv[0] to gtk_init(). It's a convention to use the name of the executable and _not_ the PDB procedure name or something. -
preview : This parameter is unused and exists for historical +
+preview : This parameter is unused and exists for historical reasons only. -

See Also

+

+
+
+
+

+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpundo.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpundo.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-gimpundo.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-gimpundo.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -gimpundo

gimpundo

gimpundo — Control of undo/redo.

Synopsis

+
+
+
+gimpundo
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpundo

+

gimpundo — Control of undo/redo.

+
+
+

Synopsis

+
 
 
 
@@ -9,61 +48,194 @@
 gboolean    gimp_image_undo_enable          (gint32 image_ID);
 gboolean    gimp_image_undo_freeze          (gint32 image_ID);
 gboolean    gimp_image_undo_thaw            (gint32 image_ID);
-

Description

+

+
+
+

Description

+

Control of undo/redo. -

Details

gimp_image_undo_group_start ()

gboolean    gimp_image_undo_group_start     (gint32 image_ID);

+

+
+
+

Details

+
+

+gimp_image_undo_group_start ()

+
gboolean    gimp_image_undo_group_start     (gint32 image_ID);
+

Starts a group undo. -

+

+

This function is used to start a group undo--necessary for logically combining two or more undo operations into a single operation. This call must be used in conjunction with a 'gimp-image-undo-group-end' -call.

+call.

+

-

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);

+

+
++ + + + + + + + + + +
+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);
+

Finish a group undo. -

+

+

This function must be called once for each -'gimp-image-undo-group-start' call that is made.

+'gimp-image-undo-group-start' call that is made.

+

-

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);

+

+
++ + + + + + + + + + +
+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);
+

Check if the image's undo stack is enabled. -

+

+

This procedure checks if the image's undo stack is currently enabled or disabled. This is useful when several plugins or scripts call each other and want to check if their caller has already used -'gimp_image_undo_disable' or 'gimp_image_undo_freeze'.

+'gimp_image_undo_disable' or 'gimp_image_undo_freeze'.

+

-

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);

+

+
++ + + + + + + + + + +
+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);
+

Disable the image's undo stack. -

+

+

This procedure disables the image's undo stack, allowing subsequent operations to ignore their undo steps. This is generally called in conjunction with 'gimp_image_undo_enable' to temporarily disable an image undo stack. This is advantageous because saving undo steps can -be time and memory intensive.

+be time and memory intensive.

+

-

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);

+

+
++ + + + + + + + + + +
+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);
+

Enable the image's undo stack. -

+

+

This procedure enables the image's undo stack, allowing subsequent operations to store their undo steps. This is generally called in conjunction with 'gimp_image_undo_disable' to temporarily disable an -image undo stack.

+image undo stack.

+

-

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);

+

+
++ + + + + + + + + + +
+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);
+

Freeze the image's undo stack. -

+

+

This procedure freezes the image's undo stack, allowing subsequent operations to ignore their undo steps. This is generally called in conjunction with 'gimp_image_undo_thaw' to temporarily disable an @@ -73,13 +245,37 @@ not free up all undo steps when undo is thawed, so is more suited to interactive in-situ previews. It is important in this case that the image is back to the same state it was frozen in before thawing, -else 'undo' behaviour is undefined.

+else 'undo' behaviour is undefined.

+

-

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);

+

+
++ + + + + + + + + + +
+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);
+

Thaw the image's undo stack. -

+

+

This procedure thaws the image's undo stack, allowing subsequent operations to store their undo steps. This is generally called in conjunction with 'gimp_image_undo_freeze' to temporarily freeze an @@ -89,8 +285,33 @@ one found it despite non-destructively playing with the image in the meantime. An example would be in-situ plugin previews. Balancing freezes and thaws and ensuring image consistancy is the -responsibility of the caller.

+responsibility of the caller.

+

-

image_ID : The image. -
Returns : True if the image undo has been thawed. -
+

+
++ + + + + + + + + + +
+image_ID : The image. +
+Returns : True if the image undo has been thawed. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp.html gimp-2.2.9/devel-docs/libgimp/html/libgimp.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,5 +1,45 @@ -Part II. GIMP Library

GIMP Library

+ + + +Part II. GIMP Library + + + + + + + + + + + + + + + + + + + + + + + +

+

+GIMP Library

+
+
+

GIMP's Procedural Database (PDB) offers an interface to core functions and to functionality provided by plug-ins. The role of libgimp is to provide C bindings for this interface. -

+

+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-image.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-image.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-image.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-image.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,103 @@ -Manupulating Images and all their Properties

Manupulating Images and all their Properties

gimpchannel - Functions for manipulating channels.
gimpcolor - Functions for manipulating color.
gimpconvert - Conversions between RGB, indexed, and grayscale modes.
gimpdisplay - Functions to create, delete and flush new displays (views) on an image.
gimpdrawable - Functions to manipulate drawables.
gimpdrawabletransform -
gimpedit - Edit menu functions (cut, copy, paste, clear, etc.)
gimpfileops - File operations (load, save, etc.)
gimpfloatingsel - Functions for removing or attaching floating selections.
gimpguides - Functions for manipulating guides.
gimpimage - Operations on complete images.
gimplayer - Operations on a single layer.
gimppaths - Operations related to paths.
gimppixelfetcher - Functions for operating on pixel regions.
gimppixelrgn - Functions for operating on pixel regions.
gimpregioniterator - Functions to traverse a pixel regions.
gimpselection - Functions for manipulating selections.
gimptexttool - Functions for controlling the text tool.
gimptile - Functions for working with tiles.
gimptools - Access to common toolbox tools.
gimpundo - Control of undo/redo.
+ + + +Manupulating Images and all their Properties + + + + + + + + + + + + + + + + + + + + + + + + +
+

+Manupulating Images and all their Properties

+
+
+gimpchannel - Functions for manipulating channels. +
+
+gimpcolor - Functions for manipulating color. +
+
+gimpconvert - Conversions between RGB, indexed, and grayscale modes. +
+
+gimpdisplay - Functions to create, delete and flush new displays (views) on an image. +
+
+gimpdrawable - Functions to manipulate drawables. +
+
+gimpdrawabletransform - +
+
+gimpedit - Edit menu functions (cut, copy, paste, clear, etc.) +
+
+gimpfileops - File operations (load, save, etc.) +
+
+gimpfloatingsel - Functions for removing or attaching floating selections. +
+
+gimpguides - Functions for manipulating guides. +
+
+gimpimage - Operations on complete images. +
+
+gimplayer - Operations on a single layer. +
+
+gimppaths - Operations related to paths. +
+
+gimppixelfetcher - Functions for operating on pixel regions. +
+
+gimppixelrgn - Functions for operating on pixel regions. +
+
+gimpregioniterator - Functions to traverse a pixel regions. +
+
+gimpselection - Functions for manipulating selections. +
+
+gimptexttool - Functions for controlling the text tool. +
+
+gimptile - Functions for working with tiles. +
+
+gimptools - Access to common toolbox tools. +
+
+gimpundo - Control of undo/redo. +
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimp-selectors.html gimp-2.2.9/devel-docs/libgimp/html/libgimp-selectors.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimp-selectors.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimp-selectors.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,55 @@ -Controlling the Core's Selection Dialogs

Controlling the Core's Selection Dialogs

gimpbrushselect - Functions providing a brush selection dialog.
gimpfontselect - Functions providing a font selection dialog.
gimpgradientselect - Functions providing a gradient selection dialog.
gimppaletteselect - Functions providing a palette selection dialog.
gimppatternselect - Functions providing a pattern selection dialog.
+ + + +Controlling the Core's Selection Dialogs + + + + + + + + + + + + + + + + + + + + + + + + +
+

+Controlling the Core's Selection Dialogs

+
+
+gimpbrushselect - Functions providing a brush selection dialog. +
+
+gimpfontselect - Functions providing a font selection dialog. +
+
+gimpgradientselect - Functions providing a gradient selection dialog. +
+
+gimppaletteselect - Functions providing a palette selection dialog. +
+
+gimppatternselect - Functions providing a pattern selection dialog. +
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimpui-hierarchy.html gimp-2.2.9/devel-docs/libgimp/html/libgimpui-hierarchy.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimpui-hierarchy.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimpui-hierarchy.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,35 @@ -Object Hierarchy

Object Hierarchy

+
+
+
+Object Hierarchy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+Object Hierarchy

+
     GObject
         GtkProgressBar
                         GimpProgressBar
-
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/html/libgimpui.html gimp-2.2.9/devel-docs/libgimp/html/libgimpui.html --- gimp-2.2.8/devel-docs/libgimp/html/libgimpui.html 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/html/libgimpui.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part III. GIMP User Interface Library

GIMP User Interface Library

+ + + +Part III. GIMP User Interface Library + + + + + + + + + + + + + + + + + + + + + + + +

+GIMP User Interface Library

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/Makefile.in gimp-2.2.9/devel-docs/libgimp/Makefile.in --- gimp-2.2.8/devel-docs/libgimp/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/Makefile.in 2005-10-27 17:11:38.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimp +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -427,7 +443,6 @@ -I$(top_builddir) \ @GTK_CFLAGS@ - GTKDOC_LIBS = \ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ @@ -438,7 +453,6 @@ @GTK_LIBS@ @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -449,24 +463,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -474,25 +479,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimp -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimp/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimp/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -510,13 +530,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -528,7 +544,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -549,7 +565,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -571,7 +586,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -588,6 +603,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -622,12 +639,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -640,7 +658,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -660,7 +678,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -668,11 +686,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -733,6 +751,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpaspectpreview.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpaspectpreview.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpaspectpreview.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpaspectpreview.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrushes.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrushes.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrushes.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrushes.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrushmenu.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrushmenu.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrushmenu.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrushmenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrushselect.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrushselect.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrushselect.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrushselect.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrush.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrush.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpbrush.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpbrush.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpchannel.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpchannel.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpchannel.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpchannel.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpcolor.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpcolor.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpcolor.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpcolor.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpcontext.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpcontext.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpcontext.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpcontext.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpconvert.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpconvert.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpconvert.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpconvert.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdisplay.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdisplay.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdisplay.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdisplay.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawablecombobox.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawablecombobox.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawablecombobox.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawablecombobox.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawablepreview.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawablepreview.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawablepreview.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawablepreview.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawable.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawable.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawable.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawable.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawabletransform.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawabletransform.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpdrawabletransform.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpdrawabletransform.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpedit.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpedit.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpedit.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpedit.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpenums.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpenums.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpenums.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpenums.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpexport.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpexport.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpexport.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpexport.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -25,6 +25,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfileops.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfileops.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfileops.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfileops.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfloatingsel.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfloatingsel.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfloatingsel.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfloatingsel.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfontmenu.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfontmenu.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfontmenu.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfontmenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfontselect.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfontselect.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfontselect.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfontselect.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfonts.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfonts.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpfonts.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpfonts.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgimprc.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgimprc.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgimprc.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgimprc.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradientmenu.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradientmenu.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradientmenu.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradientmenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradientselect.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradientselect.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradientselect.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradientselect.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradient.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradient.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradient.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradient.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradients.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradients.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpgradients.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpgradients.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpguides.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpguides.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpguides.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpguides.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimphelp.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimphelp.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimphelp.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimphelp.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpimagecombobox.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpimagecombobox.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpimagecombobox.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpimagecombobox.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpimage.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpimage.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpimage.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpimage.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimplayer.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimplayer.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimplayer.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimplayer.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpmenu.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpmenu.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpmenu.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpmenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpmessage.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpmessage.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpmessage.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpmessage.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppalettemenu.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppalettemenu.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppalettemenu.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppalettemenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppaletteselect.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppaletteselect.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppaletteselect.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppaletteselect.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppalette.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppalette.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppalette.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppalette.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppalettes.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppalettes.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppalettes.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppalettes.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppaths.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppaths.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppaths.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppaths.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppatternmenu.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppatternmenu.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppatternmenu.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppatternmenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppatternselect.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppatternselect.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppatternselect.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppatternselect.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppattern.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppattern.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppattern.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppattern.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppatterns.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppatterns.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppatterns.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppatterns.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppixbuf.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppixbuf.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppixbuf.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppixbuf.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppixelfetcher.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppixelfetcher.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppixelfetcher.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppixelfetcher.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -18,6 +18,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimppixelrgn.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimppixelrgn.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimppixelrgn.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimppixelrgn.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpplugin.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpplugin.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpplugin.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpplugin.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpproceduraldb.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpproceduraldb.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpproceduraldb.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpproceduraldb.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpprogressbar.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpprogressbar.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpprogressbar.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpprogressbar.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpprogress.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpprogress.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpprogress.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpprogress.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpregioniterator.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpregioniterator.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpregioniterator.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpregioniterator.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpselection.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpselection.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpselection.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpselection.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimp.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimp.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimp.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimp.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -17,6 +17,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimptexttool.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimptexttool.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimptexttool.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimptexttool.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimptile.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimptile.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimptile.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimptile.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimptools.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimptools.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimptools.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimptools.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpui.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpui.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpui.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpui.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -20,6 +20,9 @@ gtk_preview_set_gamma(). + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/tmpl/gimpundo.sgml gimp-2.2.9/devel-docs/libgimp/tmpl/gimpundo.sgml --- gimp-2.2.8/devel-docs/libgimp/tmpl/gimpundo.sgml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/tmpl/gimpundo.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimp/xml/gimpbrush.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpbrush.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpbrush.xml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpbrush.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpcolor.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpcolor.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpcolor.xml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpcolor.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpcontext.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpcontext.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpcontext.xml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpcontext.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpdrawablecombobox.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawablecombobox.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawablecombobox.xml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawablecombobox.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpdrawablepreview.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawablepreview.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawablepreview.xml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawablepreview.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpdrawabletransform.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawabletransform.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawabletransform.xml 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawabletransform.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpdrawable.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawable.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpdrawable.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpdrawable.xml 2005-10-27 17:14:10.000000000 +0200 @@ -750,7 +750,7 @@ <anchor id="gimp-drawable-mask-intersect"/>gimp_drawable_mask_intersect () -gimp_drawable_mask_intersectgboolean gimp_drawable_mask_intersect (gint32 drawable_ID, +gimp_drawable_mask_intersectgboolean gimp_drawable_mask_intersect (gint32 drawable_ID, gint *x, gint *y, gint *width, diff -uraN gimp-2.2.8/devel-docs/libgimp/xml/gimpedit.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpedit.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpedit.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpedit.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpenums.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpenums.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpenums.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpenums.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpfileops.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpfileops.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpfileops.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpfileops.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpgradient.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpgradient.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpgradient.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpgradient.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpimagecombobox.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpimagecombobox.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpimagecombobox.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpimagecombobox.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpimage.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpimage.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpimage.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpimage.xml 2005-10-27 17:14:10.000000000 +0200 @@ -433,7 +433,7 @@ <anchor id="gimp-image-resize-to-layers"/>gimp_image_resize_to_layers () -gimp_image_resize_to_layersgboolean gimp_image_resize_to_layers (gint32 image_ID); +gimp_image_resize_to_layersgboolean gimp_image_resize_to_layers (gint32 image_ID); Resize the image to fit all layers. diff -uraN gimp-2.2.8/devel-docs/libgimp/xml/gimplayer.xml gimp-2.2.9/devel-docs/libgimp/xml/gimplayer.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimplayer.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimplayer.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimppalettemenu.xml gimp-2.2.9/devel-docs/libgimp/xml/gimppalettemenu.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimppalettemenu.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimppalettemenu.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimppalette.xml gimp-2.2.9/devel-docs/libgimp/xml/gimppalette.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimppalette.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimppalette.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimppattern.xml gimp-2.2.9/devel-docs/libgimp/xml/gimppattern.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimppattern.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimppattern.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimppixbuf.xml gimp-2.2.9/devel-docs/libgimp/xml/gimppixbuf.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimppixbuf.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimppixbuf.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpplugin.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpplugin.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpplugin.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpplugin.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpprogressbar.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpprogressbar.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpprogressbar.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpprogressbar.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimpprogress.xml gimp-2.2.9/devel-docs/libgimp/xml/gimpprogress.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimpprogress.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimpprogress.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimp/xml/gimp.xml gimp-2.2.9/devel-docs/libgimp/xml/gimp.xml --- gimp-2.2.8/devel-docs/libgimp/xml/gimp.xml 2005-06-27 00:18:48.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimp/xml/gimp.xml 2005-10-27 17:14:10.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.8/devel-docs/libgimpbase/html/index.html gimp-2.2.9/devel-docs/libgimpbase/html/index.html --- gimp-2.2.8/devel-docs/libgimpbase/html/index.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/index.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,7 +1,86 @@ -GIMP Base Library Reference Manual

- for GIMP 2.2.4 + + + +GIMP Base Library Reference Manual + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

I. GIMP Base Library
gimpbaseenums - Basic GIMP enumeration data types.
gimpbasetypes - Translation between gettext translation domain identifier and GType.
gimpversion - Macros and constants useful for determining GIMP's version number and -capabilities.
gimplimits - Boundaries of some GIMP data types and some global constants.
gimpchecks - Constants and functions related to rendering checkerboards.
gimpdatafiles - Functions to handle GIMP data files.
gimpenv - Functions to access the GIMP environment.
gimpmemsize - Functions to (de)serialize a given memory size.
gimpparasite - Arbitrary pieces of data which can be attached to various GIMP objects.
gimpparasiteio - Utility functions to (de)serialize certain C structures to/from GimpParasite's.
gimpsignal - Portable signal handling.
gimpunit - Provides a collection of predefined units and functions for creating -user-defined units.
gimputils - Utilities of general interest
gimpprotocol - The communication protocol between GIMP and it's plug-ins.
gimpwire - The lowlevel I/O protocol used for communication between GIMP and -it's plug-ins.
+

+
+
+
+
+

Table of Contents

+
+
I. GIMP Base Library
+
+
+gimpbaseenums - Basic GIMP enumeration data types. +
+
+gimpbasetypes - Translation between gettext translation domain identifier and GType. +
+
+gimpversion - Macros and constants useful for determining GIMP's version number and +capabilities. +
+
+gimplimits - Boundaries of some GIMP data types and some global constants. +
+
+gimpchecks - Constants and functions related to rendering checkerboards. +
+
+gimpdatafiles - Functions to handle GIMP data files. +
+
+gimpenv - Functions to access the GIMP environment. +
+
+gimpmemsize - Functions to (de)serialize a given memory size. +
+
+gimpparasite - Arbitrary pieces of data which can be attached to various GIMP objects. +
+
+gimpparasiteio - Utility functions to (de)serialize certain C structures to/from GimpParasite's. +
+
+gimpsignal - Portable signal handling. +
+
+gimpunit - Provides a collection of predefined units and functions for creating +user-defined units. +
+
+gimputils - Utilities of general interest +
+
+gimpprotocol - The communication protocol between GIMP and it's plug-ins. +
+
+gimpwire - The lowlevel I/O protocol used for communication between GIMP and +it's plug-ins. +
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpbaseenums.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpbaseenums

gimpbaseenums

gimpbaseenums — Basic GIMP enumeration data types.

Synopsis

+
+
+
+gimpbaseenums
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpbaseenums

+

gimpbaseenums — Basic GIMP enumeration data types.

+
+
+

Synopsis

+
 
 
 
@@ -13,17 +45,35 @@
 enum        GimpProgressCommand;
 enum        GimpStackTraceMode;
 
-

Description

+

+
+
+

Description

+

Basic GIMP enumeration data types. -

Details

enum GimpCheckSize

typedef enum  /*< pdb-skip >*/
+

+
+
+

Details

+
+

+enum GimpCheckSize

+
typedef enum  /*< pdb-skip >*/
 {
   GIMP_CHECK_SIZE_SMALL_CHECKS  = 0,  /*< desc="Small"  >*/
   GIMP_CHECK_SIZE_MEDIUM_CHECKS = 1,  /*< desc="Medium" >*/
   GIMP_CHECK_SIZE_LARGE_CHECKS  = 2   /*< desc="Large"  >*/
 } GimpCheckSize;
-

+ +

-


enum GimpCheckType

typedef enum  /*< pdb-skip >*/
+

+
+
+
+

+enum GimpCheckType

+
typedef enum  /*< pdb-skip >*/
 {
   GIMP_CHECK_TYPE_LIGHT_CHECKS = 0,  /*< desc="Light Checks"    >*/
   GIMP_CHECK_TYPE_GRAY_CHECKS  = 1,  /*< desc="Mid-Tone Checks" >*/
@@ -32,17 +82,31 @@
   GIMP_CHECK_TYPE_GRAY_ONLY    = 4,  /*< desc="Gray Only"       >*/
   GIMP_CHECK_TYPE_BLACK_ONLY   = 5   /*< desc="Black Only"      >*/
 } GimpCheckType;
-

+ +

-


enum GimpImageBaseType

typedef enum
+

+
+
+
+

+enum GimpImageBaseType

+
typedef enum
 {
   GIMP_RGB,     /*< desc="RGB color"     >*/
   GIMP_GRAY,    /*< desc="Grayscale"     >*/
   GIMP_INDEXED  /*< desc="Indexed color" >*/
 } GimpImageBaseType;
-

+ +

-


enum GimpImageType

typedef enum
+

+
+
+
+

+enum GimpImageType

+
typedef enum
 {
   GIMP_RGB_IMAGE,      /*< desc="RGB"             >*/
   GIMP_RGBA_IMAGE,     /*< desc="RGB-alpha"       >*/
@@ -51,17 +115,31 @@
   GIMP_INDEXED_IMAGE,  /*< desc="Indexed"         >*/
   GIMP_INDEXEDA_IMAGE  /*< desc="Indexed-alpha"   >*/
 } GimpImageType;
-

+ +

-


enum GimpMessageHandlerType

typedef enum
+

+
+
+
+

+enum GimpMessageHandlerType

+
typedef enum
 {
   GIMP_MESSAGE_BOX,
   GIMP_CONSOLE,
   GIMP_ERROR_CONSOLE
 } GimpMessageHandlerType;
-

+ +

-


enum GimpPDBArgType

typedef enum
+

+
+
+
+

+enum GimpPDBArgType

+
typedef enum
 {
   GIMP_PDB_INT32,
   GIMP_PDB_INT16,
@@ -87,18 +165,32 @@
   GIMP_PDB_STATUS,
   GIMP_PDB_END
 } GimpPDBArgType;
-

+ +

-


enum GimpPDBProcType

typedef enum
+

+
+
+
+

+enum GimpPDBProcType

+
typedef enum
 {
   GIMP_INTERNAL,
   GIMP_PLUGIN,
   GIMP_EXTENSION,
   GIMP_TEMPORARY
 } GimpPDBProcType;
-

+ +

-


enum GimpPDBStatusType

typedef enum
+

+
+
+
+

+enum GimpPDBStatusType

+
typedef enum
 {
   GIMP_PDB_EXECUTION_ERROR,
   GIMP_PDB_CALLING_ERROR,
@@ -106,23 +198,47 @@
   GIMP_PDB_SUCCESS,
   GIMP_PDB_CANCEL
 } GimpPDBStatusType;
-

+ +

-


enum GimpProgressCommand

typedef enum
+

+
+
+
+

+enum GimpProgressCommand

+
typedef enum
 {
   GIMP_PROGRESS_COMMAND_START,
   GIMP_PROGRESS_COMMAND_END,
   GIMP_PROGRESS_COMMAND_SET_TEXT,
   GIMP_PROGRESS_COMMAND_SET_VALUE
 } GimpProgressCommand;
-

+ +

-


enum GimpStackTraceMode

typedef enum
+

+
+
+
+

+enum GimpStackTraceMode

+
typedef enum
 {
   GIMP_STACK_TRACE_NEVER,
   GIMP_STACK_TRACE_QUERY,
   GIMP_STACK_TRACE_ALWAYS
 } GimpStackTraceMode;
-

+ +

-

+

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpbasetypes.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpbasetypes

gimpbasetypes

gimpbasetypes — Translation between gettext translation domain identifier and GType.

Synopsis

+
+
+
+gimpbasetypes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpbasetypes

+

gimpbasetypes — Translation between gettext translation domain identifier and GType.

+
+
+

Synopsis

+
 
 
 
@@ -19,79 +51,251 @@
 void        gimp_flags_set_value_descriptions
                                             (GType flags_type,
                                              const GimpFlagsDesc *descriptions);
-

Description

+

+
+
+

Description

+

Translation between gettext translation domain identifier and GType. -

Details

GimpEnumDesc

typedef struct {
+

+
+
+

Details

+
+

+GimpEnumDesc

+
typedef struct {
   gint   value;
   gchar *value_desc;
   gchar *value_help;
 } GimpEnumDesc;
-

+ +

-


GimpFlagsDesc

typedef struct {
+

+
+
+
+

+GimpFlagsDesc

+
typedef struct {
   guint  value;
   gchar *value_desc;
   gchar *value_help;
 } GimpFlagsDesc;
-

+ +

-


gimp_type_set_translation_domain ()

void        gimp_type_set_translation_domain
+

+
+
+
+

+gimp_type_set_translation_domain ()

+
void        gimp_type_set_translation_domain
                                             (GType type,
-                                             const gchar *domain);

+ const gchar *domain); +

This function attaches a constant string as a gettext translation domain identifier to a GType. The only purpose of this function is to use it when registering a GTypeEnum with translatable value -names.

+names.

+

-

type : a GType -
domain : a constant string that identifies a translation domain or NULL -

Since GIMP 2.2 -


gimp_type_get_translation_domain ()

const gchar* gimp_type_get_translation_domain
-                                            (GType type);

+

+
++ + + + + + + + + + +
+type : a GType +
+domain : a constant string that identifies a translation domain or NULL +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_type_get_translation_domain ()

+
const gchar* gimp_type_get_translation_domain
+                                            (GType type);
+

Retrieves the gettext translation domain identifier that has been previously set using gimp_type_set_translation_domain(). You should not need to use this function directly, use gimp_enum_get_value() -or gimp_enum_value_get_name() instead.

+or gimp_enum_value_get_name() instead.

+

-

+ + +
type : a GType -
Returns : the translation domain associated with type +

+
++ + + + + + + +
+type : a GType +
+Returns : the translation domain associated with type or NULL if no domain was set -

Since GIMP 2.2 -


gimp_enum_set_value_descriptions ()

void        gimp_enum_set_value_descriptions
+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_enum_set_value_descriptions ()

+
void        gimp_enum_set_value_descriptions
                                             (GType enum_type,
-                                             const GimpEnumDesc *descriptions);

+ const GimpEnumDesc *descriptions); +

Sets the array of human readable and translatable descriptions -and help texts for enum values.

+and help texts for enum values.

+

-

enum_type : a GType -
descriptions : a NULL terminated constant static array of GimpEnumDesc -

Since GIMP 2.2 -


gimp_enum_get_value_descriptions ()

const GimpEnumDesc* gimp_enum_get_value_descriptions
-                                            (GType enum_type);

+

+
++ + + + + + + + + + +
+enum_type : a GType +
+descriptions : a NULL terminated constant static array of GimpEnumDesc +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_enum_get_value_descriptions ()

+
const GimpEnumDesc* gimp_enum_get_value_descriptions
+                                            (GType enum_type);
+

Retreives the array of human readable and translatable descriptions -and help texts for enum values.

+and help texts for enum values.

+

-

enum_type : a GType -
Returns : a NULL terminated constant array of GimpEnumDesc - -

Since GIMP 2.2 -


gimp_flags_get_value_descriptions ()

const GimpFlagsDesc* gimp_flags_get_value_descriptions
-                                            (GType flags_type);

+

+
++ + + + + + + + + + +
+enum_type : a GType +
+Returns : a NULL terminated constant array of GimpEnumDesc + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_flags_get_value_descriptions ()

+
const GimpFlagsDesc* gimp_flags_get_value_descriptions
+                                            (GType flags_type);
+

Retreives the array of human readable and translatable descriptions -and help texts for flags values.

- -

flags_type : a GType -
Returns : a NULL terminated constant array of GimpFlagsDesc +and help texts for flags values.

+

-

Since GIMP 2.2 -


gimp_flags_set_value_descriptions ()

void        gimp_flags_set_value_descriptions
+

+
++ + + + + + + + + + +
+flags_type : a GType +
+Returns : a NULL terminated constant array of GimpFlagsDesc + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_flags_set_value_descriptions ()

+
void        gimp_flags_set_value_descriptions
                                             (GType flags_type,
-                                             const GimpFlagsDesc *descriptions);

+ const GimpFlagsDesc *descriptions); +

Sets the array of human readable and translatable descriptions -and help texts for flags values.

+and help texts for flags values.

+

-

flags_type : a GType -
descriptions : a NULL terminated constant static array of GimpFlagsDesc -

Since GIMP 2.2 -

+

+
++ + + + + + + + + + +
+flags_type : a GType +
+descriptions : a NULL terminated constant static array of GimpFlagsDesc +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpchecks.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpchecks

gimpchecks

gimpchecks — Constants and functions related to rendering checkerboards.

Synopsis

+
+
+
+gimpchecks
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpchecks

+

gimpchecks — Constants and functions related to rendering checkerboards.

+
+
+

Synopsis

+
 
 
 
@@ -9,30 +41,101 @@
 void        gimp_checks_get_shades          (GimpCheckType type,
                                              guchar *light,
                                              guchar *dark);
-

Description

+

+
+
+

Description

+

Constants and functions related to rendering checkerboards. -

Details

GIMP_CHECK_SIZE

#define GIMP_CHECK_SIZE      8
-

+

+
+
+

Details

+
+

+GIMP_CHECK_SIZE

+
#define GIMP_CHECK_SIZE      8
+
+

The default checkerboard size in pixels. This is configurable in the core but GIMP plug-ins can't access the user preference and should use this constant instead. -


GIMP_CHECK_SIZE_SM

#define GIMP_CHECK_SIZE_SM   4
-

+

+
+
+
+

+GIMP_CHECK_SIZE_SM

+
#define GIMP_CHECK_SIZE_SM   4
+
+

The default small checkerboard size in pixels. -


GIMP_CHECK_DARK

#define GIMP_CHECK_DARK      0.4
-

+

+
+
+
+

+GIMP_CHECK_DARK

+
#define GIMP_CHECK_DARK      0.4
+
+

The dark gray value for the default checkerboard pattern. -


GIMP_CHECK_LIGHT

#define GIMP_CHECK_LIGHT     0.6
-

+

+
+
+
+

+GIMP_CHECK_LIGHT

+
#define GIMP_CHECK_LIGHT     0.6
+
+

The light gray value for the default checkerboard pattern. -


gimp_checks_get_shades ()

void        gimp_checks_get_shades          (GimpCheckType type,
+

+
+
+
+

+gimp_checks_get_shades ()

+
void        gimp_checks_get_shades          (GimpCheckType type,
                                              guchar *light,
-                                             guchar *dark);

+ guchar *dark); +

Retrieves the actual shades of gray to use when drawing a -checkerboard for a certain GimpCheckType.

+checkerboard for a certain GimpCheckType.

+

-

type : the checkerboard type -
light : return location for the light shade -
dark : return location for the dark shade -

Since GIMP 2.2 -

+

+
++ + + + + + + + + + + + + + +
+type : the checkerboard type +
+light : return location for the light shade +
+dark : return location for the dark shade +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpdatafiles.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpdatafiles

gimpdatafiles

gimpdatafiles — Functions to handle GIMP data files.

Synopsis

+
+
+
+gimpdatafiles
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpdatafiles

+

gimpdatafiles — Functions to handle GIMP data files.

+
+
+

Synopsis

+
 
 
 
@@ -11,9 +43,20 @@
                                              GFileTest flags,
                                              GimpDatafileLoaderFunc loader_func,
                                              gpointer user_data);
-

Description

+

+
+
+

Description

+

Functions to handle GIMP data files. -

Details

GimpDatafileData

typedef struct {
+

+
+
+

Details

+
+

+GimpDatafileData

+
typedef struct {
   const gchar *filename;
   const gchar *dirname;
   const gchar *basename;
@@ -22,32 +65,123 @@
   time_t       mtime;
   time_t       ctime;
 } GimpDatafileData;
-

+ +

-


GimpDatafileLoaderFunc ()

void        (*GimpDatafileLoaderFunc)       (const GimpDatafileData *file_data,
-                                             gpointer user_data);

- -

file_data : -
user_data : - - -

gimp_datafiles_check_extension ()

gboolean    gimp_datafiles_check_extension  (const gchar *filename,
-                                             const gchar *extension);

- -

filename : -
extension : -
Returns : - - -

gimp_datafiles_read_directories ()

void        gimp_datafiles_read_directories (const gchar *path_str,
+

+
+
+
+

+GimpDatafileLoaderFunc ()

+
void        (*GimpDatafileLoaderFunc)       (const GimpDatafileData *file_data,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+file_data : +
+user_data : + + +
+
+
+
+

+gimp_datafiles_check_extension ()

+
gboolean    gimp_datafiles_check_extension  (const gchar *filename,
+                                             const gchar *extension);
+

+ +

+
++ + + + + + + + + + + + + + +
+filename : +
+extension : +
+Returns : + + +
+
+
+
+

+gimp_datafiles_read_directories ()

+
void        gimp_datafiles_read_directories (const gchar *path_str,
                                              GFileTest flags,
                                              GimpDatafileLoaderFunc loader_func,
-                                             gpointer user_data);

- -

path_str : -
flags : -
loader_func : -
user_data : - + gpointer user_data); +

-

+

+
++ + + + + + + + + + + + + + + + + + +
+path_str : +
+flags : +
+loader_func : +
+user_data : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpenv.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpenv

gimpenv

gimpenv — Functions to access the GIMP environment.

Synopsis

+
+
+
+gimpenv
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpenv

+

gimpenv — Functions to access the GIMP environment.

+
+
+

Synopsis

+
 
 
 
@@ -16,126 +48,367 @@
 gchar*      gimp_path_to_str                (GList *path);
 void        gimp_path_free                  (GList *path);
 gchar*      gimp_path_get_user_writable_dir (GList *path);
-

Description

+

+
+
+

Description

+

A set of functions to find the locations of GIMP's data directories and configuration files. -

Details

gimp_directory ()

const gchar* gimp_directory                 (void);

+

+
+
+

Details

+
+

+gimp_directory ()

+
const gchar* gimp_directory                 (void);
+

Returns the user-specific GIMP settings directory. If the environment variable GIMP2_DIRECTORY exists, it is used. If it is an absolute path, it is used as is. If it is a relative path, it is taken to be a subdirectory of the home directory. If it is a relative path, and no home directory can be determined, it is taken to be a subdirectory of gimp_data_directory(). -

+

+

The usual case is that no GIMP2_DIRECTORY environment variable exists, and then we use the GIMPDIR subdirectory of the home directory. If no home directory exists, we use a per-user subdirectory of gimp_data_directory(). In any case, we always return some non-empty string, whether it corresponds to an existing directory or not. -

+

+

The returned string is allocated just once, and should *NOT* be freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

Returns : The user-specific GIMP settings directory. -

gimp_personal_rc_file ()

gchar*      gimp_personal_rc_file           (const gchar *basename);

+

+
++ + + + +
+Returns : The user-specific GIMP settings directory. +
+
+
+
+

+gimp_personal_rc_file ()

+
gchar*      gimp_personal_rc_file           (const gchar *basename);
+

Returns the name of a file in the user-specific GIMP settings directory. -

+

+

The returned string is allocated dynamically and *SHOULD* be freed with g_free() after use. The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

basename : The basename of a rc_file. -
Returns : The name of a file in the user-specific GIMP settings directory. -

gimp_data_directory ()

const gchar* gimp_data_directory            (void);

+

+
++ + + + + + + + + + +
+basename : The basename of a rc_file. +
+Returns : The name of a file in the user-specific GIMP settings directory. +
+
+
+
+

+gimp_data_directory ()

+
const gchar* gimp_data_directory            (void);
+

Returns the top directory for GIMP data. If the environment variable GIMP2_DATADIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined directory is used. On Win32, the installation directory as deduced from the executable's name is used. -

+

+

The returned string is allocated just once, and should *NOT* be freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

Returns : The top directory for GIMP data. -

gimp_locale_directory ()

const gchar* gimp_locale_directory          (void);

+

+
++ + + + +
+Returns : The top directory for GIMP data. +
+
+
+
+

+gimp_locale_directory ()

+
const gchar* gimp_locale_directory          (void);
+

Returns the top directory for GIMP locale files. If the environment variable GIMP2_LOCALEDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined directory is used. On Win32, the installation directory as deduced from the executable's name is used. -

+

+

The returned string is allocated just once, and should *NOT* be freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

Returns : The top directory for GIMP locale files. -

gimp_plug_in_directory ()

const gchar* gimp_plug_in_directory         (void);

+

+
++ + + + +
+Returns : The top directory for GIMP locale files. +
+
+
+
+

+gimp_plug_in_directory ()

+
const gchar* gimp_plug_in_directory         (void);
+

Returns the top directory for GIMP plug_ins and modules. If the environment variable GIMP2_PLUGINDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined directory is used. On Win32, the installation directory as deduced from the executable's name is used. -

+

+

The returned string is allocated just once, and should *NOT* be freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

Returns : The top directory for GIMP plug_ins and modules. -

gimp_sysconf_directory ()

const gchar* gimp_sysconf_directory         (void);

+

+
++ + + + +
+Returns : The top directory for GIMP plug_ins and modules. +
+
+
+
+

+gimp_sysconf_directory ()

+
const gchar* gimp_sysconf_directory         (void);
+

Returns the top directory for GIMP config files. If the environment variable GIMP2_SYSCONFDIR exists, that is used. It should be an absolute pathname. Otherwise, on Unix the compile-time defined directory is used. On Win32, the installation directory as deduced from the executable's name is used. -

+

+

The returned string is allocated just once, and should *NOT* be freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

Returns : The top directory for GIMP config files. -

gimp_gtkrc ()

const gchar* gimp_gtkrc                     (void);

+

+
++ + + + +
+Returns : The top directory for GIMP config files. +
+
+
+
+

+gimp_gtkrc ()

+
const gchar* gimp_gtkrc                     (void);
+

Returns the name of the GIMP's application-specific gtkrc file. -

+

+

The returned string is allocated just once, and should *NOT* be freed with g_free(). The returned string is in the encoding used for filenames by the system, which isn't necessarily UTF-8 (never -is on Windows).

+is on Windows).

+

-

Returns : The name of the GIMP's application-specific gtkrc file. -

gimp_path_parse ()

GList*      gimp_path_parse                 (const gchar *path,
+

+
++ + + + +
+Returns : The name of the GIMP's application-specific gtkrc file. +
+
+
+
+

+gimp_path_parse ()

+
GList*      gimp_path_parse                 (const gchar *path,
                                              gint max_paths,
                                              gboolean check,
-                                             GList **check_failed);

-

- -

+ + + + + + +
path : A list of directories separated by G_SEARCHPATH_SEPARATOR. -
max_paths : The maximum number of directories to return. -
check : TRUE if you want the directories to be checked. -
check_failed : Returns a GList of path elements for which the + GList **check_failed); +

+

+

+ +

+
++ + + + + + + + + + + + + + + +
+path : A list of directories separated by G_SEARCHPATH_SEPARATOR. +
+max_paths : The maximum number of directories to return. +
+check : TRUE if you want the directories to be checked. +
+check_failed : Returns a GList of path elements for which the check failed. -
Returns : A GList of all directories in path. -

gimp_path_to_str ()

gchar*      gimp_path_to_str                (GList *path);

-

- -

path : A list of directories as returned by gimp_path_parse(). -
Returns : A searchpath string separated by G_SEARCHPATH_SEPARATOR. -

gimp_path_free ()

void        gimp_path_free                  (GList *path);

+

+Returns : A GList of all directories in path. +
+
+
+
+

+gimp_path_to_str ()

+
gchar*      gimp_path_to_str                (GList *path);
+

+

+

+ +

+
++ + + + + + + + + + +
+path : A list of directories as returned by gimp_path_parse(). +
+Returns : A searchpath string separated by G_SEARCHPATH_SEPARATOR. +
+
+
+
+

+gimp_path_free ()

+
void        gimp_path_free                  (GList *path);
+

This function frees the memory allocated for the list and the strings -it contains.

+it contains.

+

-

path : A list of directories as returned by gimp_path_parse(). -

gimp_path_get_user_writable_dir ()

gchar*      gimp_path_get_user_writable_dir (GList *path);

-Note that you have to g_free() the returned string.

- -

path : A list of directories as returned by gimp_path_parse(). -
Returns : The first directory in path where the user has write permission. -
+

+
++ + + + +
+path : A list of directories as returned by gimp_path_parse(). +
+
+
+
+

+gimp_path_get_user_writable_dir ()

+
gchar*      gimp_path_get_user_writable_dir (GList *path);
+

+Note that you have to g_free() the returned string.

+

+ +

+
++ + + + + + + + + + +
+path : A list of directories as returned by gimp_path_parse(). +
+Returns : The first directory in path where the user has write permission. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimplimits.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimplimits

gimplimits

gimplimits — Boundaries of some GIMP data types and some global constants.

Synopsis

+
+
+
+gimplimits
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimplimits

+

gimplimits — Boundaries of some GIMP data types and some global constants.

+
+
+

Synopsis

+
 
 
 
@@ -7,34 +39,83 @@
 #define     GIMP_MIN_RESOLUTION
 #define     GIMP_MAX_RESOLUTION
 #define     GIMP_MAX_MEMSIZE
-

Description

+

+
+
+

Description

+

Boundaries of some GIMP data types and some global constants. -

Details

GIMP_MIN_IMAGE_SIZE

#define GIMP_MIN_IMAGE_SIZE  1
-

+

+
+
+

Details

+
+

+GIMP_MIN_IMAGE_SIZE

+
#define GIMP_MIN_IMAGE_SIZE  1
+
+

The minimum width and height of a GIMP image in pixels. -


GIMP_MAX_IMAGE_SIZE

#define GIMP_MAX_IMAGE_SIZE  262144    /*  2^18  */
-

+

+
+
+
+

+GIMP_MAX_IMAGE_SIZE

+
#define GIMP_MAX_IMAGE_SIZE  262144    /*  2^18  */
+
+

The maximum width and height of a GIMP image in pixels. This is a somewhat arbitray value that can be used when an upper value for pixel sizes is needed; for example to give a spin button an upper limit. -


GIMP_MIN_RESOLUTION

#define GIMP_MIN_RESOLUTION  5e-3      /*  shouldn't display as 0.000  */
-

+

+
+
+
+

+GIMP_MIN_RESOLUTION

+
#define GIMP_MIN_RESOLUTION  5e-3      /*  shouldn't display as 0.000  */
+
+

The minimum resolution of a GIMP image in pixels per inch. This is a somewhat arbitray value that can be used to when a lower value for a resolution is needed. GIMP will not accept resolutions smaller than this value. -


GIMP_MAX_RESOLUTION

#define GIMP_MAX_RESOLUTION  65536.0
-

+

+
+
+
+

+GIMP_MAX_RESOLUTION

+
#define GIMP_MAX_RESOLUTION  65536.0
+
+

The maximum resolution of a GIMP image in pixels per inch. This is a somewhat arbitray value that can be used to when an upper value for a resolution is needed. GIMP will not accept resolutions larger than this value. -


GIMP_MAX_MEMSIZE

#define GIMP_MAX_MEMSIZE     ((guint64) 1 << 42) /*  4 terabyte;
-

+

+
+
+
+

+GIMP_MAX_MEMSIZE

+
#define GIMP_MAX_MEMSIZE     ((guint64) 1 << 42) /*  4 terabyte;
+
+

A large but arbitrary value that can be used when an upper limit for a memory size (in bytes) is needed. It is smaller than G_MAXDOUBLE since the GimpMemsizeEntry doesn't handle larger values. -

+

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpmemsize.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpmemsize

gimpmemsize

gimpmemsize — Functions to (de)serialize a given memory size.

Synopsis

+
+
+
+gimpmemsize
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpmemsize

+

gimpmemsize — Functions to (de)serialize a given memory size.

+
+
+

Synopsis

+
 
 
 
@@ -9,44 +41,156 @@
 #define     GIMP_TYPE_MEMSIZE
 #define     GIMP_VALUE_HOLDS_MEMSIZE        (value)
 
-

Description

+

+
+
+

Description

+

Functions to (de)serialize a given memory size. -

Details

gimp_memsize_serialize ()

gchar*      gimp_memsize_serialize          (guint64 memsize);

+

+
+
+

Details

+
+

+gimp_memsize_serialize ()

+
gchar*      gimp_memsize_serialize          (guint64 memsize);
+

Creates a string representation of a given memory size. This string can be parsed by gimp_memsize_deserialize() and can thus be used in config files. It should not be displayed to the user. If you need a -nice human-readable string please use gimp_memsize_to_string().

+nice human-readable string please use gimp_memsize_to_string().

+

-

memsize : memory size in bytes -
Returns : A newly allocated string representation of memsize. - -

Since GIMP 2.2 -


gimp_memsize_deserialize ()

gboolean    gimp_memsize_deserialize        (const gchar *string,
-                                             guint64 *memsize);

+

+
++ + + + + + + + + + +
+memsize : memory size in bytes +
+Returns : A newly allocated string representation of memsize. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_memsize_deserialize ()

+
gboolean    gimp_memsize_deserialize        (const gchar *string,
+                                             guint64 *memsize);
+

Parses a string representation of a memory size as returned by -gimp_memsize_serialize().

+gimp_memsize_serialize().

+

-

+ + +
string : a string as returned by gimp_memsize_serialize() -
memsize : return location for memory size in bytes -
Returns : TRUE if the string was successfully parsed and +

+
++ + + + + + + + + + + +
+string : a string as returned by gimp_memsize_serialize() +
+memsize : return location for memory size in bytes +
+Returns : TRUE if the string was successfully parsed and memsize has been set, FALSE otherwise. -

Since GIMP 2.2 -


gimp_memsize_to_string ()

gchar*      gimp_memsize_to_string          (guint64 memsize);

+

+

Since GIMP 2.2 +

+
+
+
+

+gimp_memsize_to_string ()

+
gchar*      gimp_memsize_to_string          (guint64 memsize);
+

This function returns a human readable, translated representation of the passed memsize. Large values are displayed using a reasonable memsize unit, e.g.: "345" becomes "345 Bytes", "4500" -becomes "4.4 KB" and so on.

+becomes "4.4 KB" and so on.

+

-

memsize : A memory size in bytes. -
Returns : A newly allocated human-readable, translated string. -

GIMP_TYPE_MEMSIZE

#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
-

+

+
++ + + + + + + + + + +
+memsize : A memory size in bytes. +
+Returns : A newly allocated human-readable, translated string. +
+
+
+
+

+GIMP_TYPE_MEMSIZE

+
#define GIMP_TYPE_MEMSIZE               (gimp_memsize_get_type ())
+
+

GIMP_TYPE_MEMSIZE is a GType derived from G_TYPE_UINT64. -


GIMP_VALUE_HOLDS_MEMSIZE()

#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
-

- -

value : - - -
+

+
+
+
+

+GIMP_VALUE_HOLDS_MEMSIZE()

+
#define GIMP_VALUE_HOLDS_MEMSIZE(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_MEMSIZE))
+
+

+ +

+
++ + + + +
+value : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpparasite.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpparasite

gimpparasite

gimpparasite — Arbitrary pieces of data which can be attached to various GIMP objects.

Synopsis

+
+
+
+gimpparasite
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpparasite

+

gimpparasite — Arbitrary pieces of data which can be attached to various GIMP objects.

+
+

Description

+

+
+
+

Description

+

Arbitrary pieces of data which can be attached to various GIMP objects. -

Details

GimpParasite

typedef struct {
+

+
+
+

Details

+
+

+GimpParasite

+
typedef struct {
   gchar    *name;   /* The name of the parasite. USE A UNIQUE PREFIX! */
   guint32   flags;  /* save Parasite in XCF file, etc.                */
   guint32   size;   /* amount of data                                 */
   gpointer  data;   /* a pointer to the data.  plugin is              *
 		     * responsible for tracking byte order            */
 } GimpParasite;
-

+ +

-


gimp_parasite_new ()

GimpParasite* gimp_parasite_new             (const gchar *name,
+

+
+
+
+

+gimp_parasite_new ()

+
GimpParasite* gimp_parasite_new             (const gchar *name,
                                              guint32 flags,
                                              guint32 size,
-                                             gconstpointer data);

+ gconstpointer data); +

-

name : -
flags : -
size : -
data : -
Returns : - - -

gimp_parasite_free ()

void        gimp_parasite_free              (GimpParasite *parasite);

- -

parasite : - - -

gimp_parasite_copy ()

GimpParasite* gimp_parasite_copy            (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

gimp_parasite_compare ()

gboolean    gimp_parasite_compare           (const GimpParasite *a,
-                                             const GimpParasite *b);

- -

a : -
b : -
Returns : - - -

gimp_parasite_is_type ()

gboolean    gimp_parasite_is_type           (const GimpParasite *parasite,
-                                             const gchar *name);

- -

parasite : -
name : -
Returns : - - -

gimp_parasite_is_persistent ()

gboolean    gimp_parasite_is_persistent     (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

gimp_parasite_is_undoable ()

gboolean    gimp_parasite_is_undoable       (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

gimp_parasite_has_flag ()

gboolean    gimp_parasite_has_flag          (const GimpParasite *parasite,
-                                             gulong flag);

- -

parasite : -
flag : -
Returns : - - -

gimp_parasite_flags ()

gulong      gimp_parasite_flags             (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

gimp_parasite_name ()

const gchar* gimp_parasite_name             (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

gimp_parasite_data ()

gconstpointer gimp_parasite_data            (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

gimp_parasite_data_size ()

glong       gimp_parasite_data_size         (const GimpParasite *parasite);

- -

parasite : -
Returns : - - -

GIMP_PARASITE_PERSISTENT

#define GIMP_PARASITE_PERSISTENT 1
-

- -


GIMP_PARASITE_UNDOABLE

#define GIMP_PARASITE_UNDOABLE   2
-

- -


GIMP_PARASITE_ATTACH_PARENT

#define GIMP_PARASITE_ATTACH_PARENT     (0x80 << 8)
-

- -


GIMP_PARASITE_PARENT_PERSISTENT

#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
-

- -


GIMP_PARASITE_PARENT_UNDOABLE

#define GIMP_PARASITE_PARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 8)
-

- -


GIMP_PARASITE_ATTACH_GRANDPARENT

#define GIMP_PARASITE_ATTACH_GRANDPARENT     (0x80 << 16)
-

- -


GIMP_PARASITE_GRANDPARENT_PERSISTENT

#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
-

- -


GIMP_PARASITE_GRANDPARENT_UNDOABLE

#define GIMP_PARASITE_GRANDPARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 16)
-

- -

See Also

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+name : +
+flags : +
+size : +
+data : +
+Returns : + + +
+
+
+
+

+gimp_parasite_free ()

+
void        gimp_parasite_free              (GimpParasite *parasite);
+

+ +

+
++ + + + +
+parasite : + + +
+
+
+
+

+gimp_parasite_copy ()

+
GimpParasite* gimp_parasite_copy            (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+gimp_parasite_compare ()

+
gboolean    gimp_parasite_compare           (const GimpParasite *a,
+                                             const GimpParasite *b);
+

+ +

+
++ + + + + + + + + + + + + + +
+a : +
+b : +
+Returns : + + +
+
+
+
+

+gimp_parasite_is_type ()

+
gboolean    gimp_parasite_is_type           (const GimpParasite *parasite,
+                                             const gchar *name);
+

+ +

+
++ + + + + + + + + + + + + + +
+parasite : +
+name : +
+Returns : + + +
+
+
+
+

+gimp_parasite_is_persistent ()

+
gboolean    gimp_parasite_is_persistent     (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+gimp_parasite_is_undoable ()

+
gboolean    gimp_parasite_is_undoable       (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+gimp_parasite_has_flag ()

+
gboolean    gimp_parasite_has_flag          (const GimpParasite *parasite,
+                                             gulong flag);
+

+ +

+
++ + + + + + + + + + + + + + +
+parasite : +
+flag : +
+Returns : + + +
+
+
+
+

+gimp_parasite_flags ()

+
gulong      gimp_parasite_flags             (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+gimp_parasite_name ()

+
const gchar* gimp_parasite_name             (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+gimp_parasite_data ()

+
gconstpointer gimp_parasite_data            (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+gimp_parasite_data_size ()

+
glong       gimp_parasite_data_size         (const GimpParasite *parasite);
+

+ +

+
++ + + + + + + + + + +
+parasite : +
+Returns : + + +
+
+
+
+

+GIMP_PARASITE_PERSISTENT

+
#define GIMP_PARASITE_PERSISTENT 1
+
+

+ +

+
+
+
+

+GIMP_PARASITE_UNDOABLE

+
#define GIMP_PARASITE_UNDOABLE   2
+
+

+ +

+
+
+
+

+GIMP_PARASITE_ATTACH_PARENT

+
#define GIMP_PARASITE_ATTACH_PARENT     (0x80 << 8)
+
+

+ +

+
+
+
+

+GIMP_PARASITE_PARENT_PERSISTENT

+
#define GIMP_PARASITE_PARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 8)
+
+

+ +

+
+
+
+

+GIMP_PARASITE_PARENT_UNDOABLE

+
#define GIMP_PARASITE_PARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 8)
+
+

+ +

+
+
+
+

+GIMP_PARASITE_ATTACH_GRANDPARENT

+
#define GIMP_PARASITE_ATTACH_GRANDPARENT     (0x80 << 16)
+
+

+ +

+
+
+
+

+GIMP_PARASITE_GRANDPARENT_PERSISTENT

+
#define GIMP_PARASITE_GRANDPARENT_PERSISTENT (GIMP_PARASITE_PERSISTENT << 16)
+
+

+ +

+
+
+
+

+GIMP_PARASITE_GRANDPARENT_UNDOABLE

+
#define GIMP_PARASITE_GRANDPARENT_UNDOABLE   (GIMP_PARASITE_UNDOABLE << 16)
+
+

+ +

+
+
+
+

See Also

+

gimp_image_parasite_attach(), gimp_parasite_attach() and their related functions. -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpparasiteio.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpparasiteio

gimpparasiteio

gimpparasiteio — Utility functions to (de)serialize certain C structures to/from GimpParasite's.

Synopsis

+
+
+
+gimpparasiteio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpparasiteio

+

gimpparasiteio — Utility functions to (de)serialize certain C structures to/from GimpParasite's.

+
+
+

Synopsis

+
 
 
 
@@ -7,30 +39,114 @@
 void        gimp_pixpipe_params_parse       (const gchar *parameters,
                                              GimpPixPipeParams *params);
 gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);
-

Description

+

+
+
+

Description

+

Utility functions to (de)serialize certain C structures to/from GimpParasite's. -

Details

GIMP_PIXPIPE_MAXDIM

#define GIMP_PIXPIPE_MAXDIM 4
-

- -


gimp_pixpipe_params_init ()

void        gimp_pixpipe_params_init        (GimpPixPipeParams *params);

- -

params : - - -

gimp_pixpipe_params_parse ()

void        gimp_pixpipe_params_parse       (const gchar *parameters,
-                                             GimpPixPipeParams *params);

- -

parameters : -
params : - - -

gimp_pixpipe_params_build ()

gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);

- -

params : -
Returns : - - -

See Also

+

+
+
+

Details

+
+

+GIMP_PIXPIPE_MAXDIM

+
#define GIMP_PIXPIPE_MAXDIM 4
+
+

+ +

+
+
+
+

+gimp_pixpipe_params_init ()

+
void        gimp_pixpipe_params_init        (GimpPixPipeParams *params);
+

+ +

+
++ + + + +
+params : + + +
+
+
+
+

+gimp_pixpipe_params_parse ()

+
void        gimp_pixpipe_params_parse       (const gchar *parameters,
+                                             GimpPixPipeParams *params);
+

+ +

+
++ + + + + + + + + + +
+parameters : +
+params : + + +
+
+
+
+

+gimp_pixpipe_params_build ()

+
gchar*      gimp_pixpipe_params_build       (GimpPixPipeParams *params);
+

+ +

+
++ + + + + + + + + + +
+params : +
+Returns : + + +
+
+
+
+

See Also

+

GimpParasite -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpprotocol.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpprotocol

gimpprotocol

gimpprotocol — The communication protocol between GIMP and it's plug-ins.

Synopsis

+
+
+
+gimpprotocol
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpprotocol

+

gimpprotocol — The communication protocol between GIMP and it's plug-ins.

+
+
+

Synopsis

+
 
 
 
@@ -49,13 +81,31 @@
                                              gpointer user_data);
 gboolean    gp_extension_ack_write          (GIOChannel *channel,
                                              gpointer user_data);
-

Description

+

+
+
+

Description

+

The communication protocol between GIMP and it's plug-ins. -

Details

GIMP_PROTOCOL_VERSION

#define GIMP_PROTOCOL_VERSION  0x0011
-

- -


GPConfig

typedef struct {
+

+
+
+

Details

+
+

+GIMP_PROTOCOL_VERSION

+
#define GIMP_PROTOCOL_VERSION  0x0011
+
+

+ +

+
+
+
+

+GPConfig

+
typedef struct {
   guint32  version;
   guint32  tile_width;
   guint32  tile_height;
@@ -77,18 +127,39 @@
   gchar   *display_name;
   gint32   monitor_number;
 } GPConfig;
-

+ +

-


GPTileReq

typedef struct {
+

+
+
+
+

+GPTileReq

+
typedef struct {
   gint32   drawable_ID;
   guint32  tile_num;
   guint32  shadow;
 } GPTileReq;
-

- -


GPTileAck

typedef struct _GPTileAck GPTileAck;

+ +

-


GPTileData

typedef struct {
+

+
+
+
+

+GPTileAck

+
typedef struct _GPTileAck GPTileAck;
+

+ +

+
+
+
+

+GPTileData

+
typedef struct {
   gint32   drawable_ID;
   guint32  tile_num;
   guint32  shadow;
@@ -98,9 +169,16 @@
   guint32  use_shm;
   guchar  *data;
 } GPTileData;
-

+ +

-


GPParam

typedef struct {
+

+
+
+
+

+GPParam

+
typedef struct {
   guint32 type;
 
   union
@@ -141,30 +219,58 @@
     gint32 d_status;
   } data;
 } GPParam;
-

+ +

-


GPParamDef

typedef struct {
+

+
+
+
+

+GPParamDef

+
typedef struct {
   guint32  type;
   gchar   *name;
   gchar   *description;
 } GPParamDef;
-

+ +

-


GPProcRun

typedef struct {
+

+
+
+
+

+GPProcRun

+
typedef struct {
   gchar   *name;
   guint32  nparams;
   GPParam *params;
 } GPProcRun;
-

+ +

-


GPProcReturn

typedef struct {
+

+
+
+
+

+GPProcReturn

+
typedef struct {
   gchar   *name;
   guint32  nparams;
   GPParam *params;
 } GPProcReturn;
-

+ +

-


GPProcInstall

typedef struct {
+

+
+
+
+

+GPProcInstall

+
typedef struct {
   gchar      *name;
   gchar      *blurb;
   gchar      *help;
@@ -179,137 +285,561 @@
   GPParamDef *params;
   GPParamDef *return_vals;
 } GPProcInstall;
-

+ +

-


GPProcUninstall

typedef struct {
+

+
+
+
+

+GPProcUninstall

+
typedef struct {
   gchar *name;
 } GPProcUninstall;
-

- -


gp_init ()

void        gp_init                         (void);

- -


gp_has_init_write ()

gboolean    gp_has_init_write               (GIOChannel *channel,
-                                             gpointer user_data);

- -

channel : -
user_data : -
Returns : - - -

gp_quit_write ()

gboolean    gp_quit_write                   (GIOChannel *channel,
-                                             gpointer user_data);

- -

channel : -
user_data : -
Returns : - + +

-


gp_config_write ()

gboolean    gp_config_write                 (GIOChannel *channel,
+

+
+
+
+

+gp_init ()

+
void        gp_init                         (void);
+

+ +

+
+
+
+

+gp_has_init_write ()

+
gboolean    gp_has_init_write               (GIOChannel *channel,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+channel : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_quit_write ()

+
gboolean    gp_quit_write                   (GIOChannel *channel,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+channel : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_config_write ()

+
gboolean    gp_config_write                 (GIOChannel *channel,
                                              GPConfig *config,
-                                             gpointer user_data);

+ gpointer user_data); +

-

channel : -
config : -
user_data : -
Returns : - - -

gp_tile_req_write ()

gboolean    gp_tile_req_write               (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+config : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_tile_req_write ()

+
gboolean    gp_tile_req_write               (GIOChannel *channel,
                                              GPTileReq *tile_req,
-                                             gpointer user_data);

- -

channel : -
tile_req : -
user_data : -
Returns : - + gpointer user_data); +

-


gp_tile_ack_write ()

gboolean    gp_tile_ack_write               (GIOChannel *channel,
-                                             gpointer user_data);

- -

channel : -
user_data : -
Returns : - - -

gp_tile_data_write ()

gboolean    gp_tile_data_write              (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+tile_req : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_tile_ack_write ()

+
gboolean    gp_tile_ack_write               (GIOChannel *channel,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+channel : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_tile_data_write ()

+
gboolean    gp_tile_data_write              (GIOChannel *channel,
                                              GPTileData *tile_data,
-                                             gpointer user_data);

- -

channel : -
tile_data : -
user_data : -
Returns : + gpointer user_data); +

- -


gp_proc_run_write ()

gboolean    gp_proc_run_write               (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+tile_data : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_proc_run_write ()

+
gboolean    gp_proc_run_write               (GIOChannel *channel,
                                              GPProcRun *proc_run,
-                                             gpointer user_data);

- -

channel : -
proc_run : -
user_data : -
Returns : + gpointer user_data); +

- -


gp_proc_return_write ()

gboolean    gp_proc_return_write            (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+proc_run : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_proc_return_write ()

+
gboolean    gp_proc_return_write            (GIOChannel *channel,
                                              GPProcReturn *proc_return,
-                                             gpointer user_data);

- -

channel : -
proc_return : -
user_data : -
Returns : + gpointer user_data); +

- -


gp_temp_proc_run_write ()

gboolean    gp_temp_proc_run_write          (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+proc_return : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_temp_proc_run_write ()

+
gboolean    gp_temp_proc_run_write          (GIOChannel *channel,
                                              GPProcRun *proc_run,
-                                             gpointer user_data);

- -

channel : -
proc_run : -
user_data : -
Returns : + gpointer user_data); +

- -


gp_temp_proc_return_write ()

gboolean    gp_temp_proc_return_write       (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+proc_run : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_temp_proc_return_write ()

+
gboolean    gp_temp_proc_return_write       (GIOChannel *channel,
                                              GPProcReturn *proc_return,
-                                             gpointer user_data);

- -

channel : -
proc_return : -
user_data : -
Returns : + gpointer user_data); +

- -


gp_proc_install_write ()

gboolean    gp_proc_install_write           (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+proc_return : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_proc_install_write ()

+
gboolean    gp_proc_install_write           (GIOChannel *channel,
                                              GPProcInstall *proc_install,
-                                             gpointer user_data);

- -

channel : -
proc_install : -
user_data : -
Returns : + gpointer user_data); +

- -


gp_proc_uninstall_write ()

gboolean    gp_proc_uninstall_write         (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+proc_install : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_proc_uninstall_write ()

+
gboolean    gp_proc_uninstall_write         (GIOChannel *channel,
                                              GPProcUninstall *proc_uninstall,
-                                             gpointer user_data);

- -

channel : -
proc_uninstall : -
user_data : -
Returns : - - -

gp_extension_ack_write ()

gboolean    gp_extension_ack_write          (GIOChannel *channel,
-                                             gpointer user_data);

- -

channel : -
user_data : -
Returns : - + gpointer user_data); +

-

See Also

+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+proc_uninstall : +
+user_data : +
+Returns : + + +
+
+
+
+

+gp_extension_ack_write ()

+
gboolean    gp_extension_ack_write          (GIOChannel *channel,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+channel : +
+user_data : +
+Returns : + + +
+
+
+
+

See Also

+

libgimp-gimpwire -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpsignal.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimpsignal

gimpsignal

gimpsignal — Portable signal handling.

Synopsis

+
+
+
+gimpsignal
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpsignal

+

gimpsignal — Portable signal handling.

+
+
+

Synopsis

+
 
 
 
@@ -6,42 +38,109 @@
 GimpSignalHandlerFunc gimp_signal_private   (gint signum,
                                              GimpSignalHandlerFunc handler,
                                              gint flags);
-

Description

+

+
+
+

Description

+

Portable signal handling. -

Details

GimpSignalHandlerFunc ()

void        (*GimpSignalHandlerFunc)        (gint signum);

+

+
+
+

Details

+
+

+GimpSignalHandlerFunc ()

+
void        (*GimpSignalHandlerFunc)        (gint signum);
+

A prototype for signal handler functions. Note that each function which takes or returns a variable of this type also accepts or may return special values defined by your system's signal.h header file (like SIG_DFL or SIG_IGN). -

+ +
signum :The number of the signal. Useful if different signals are handled +

+
++ + +
+signum :The number of the signal. Useful if different signals are handled by a single handler. -

gimp_signal_private ()

GimpSignalHandlerFunc gimp_signal_private   (gint signum,
+
+
+
+
+

+gimp_signal_private ()

+
GimpSignalHandlerFunc gimp_signal_private   (gint signum,
                                              GimpSignalHandlerFunc handler,
-                                             gint flags);

+ gint flags); +

This function furnishes a workalike for signal(2) but which internally invokes sigaction(2) after certain sa_flags are set; these primarily to ensure restarting of interrupted system calls. See sigaction(2) It is a aid to transition and not new development: that effort should employ sigaction directly. [gosgood 18.04.2000] -

+

+

Cause handler to be run when signum is delivered. We use sigaction(2) rather than signal(2) so that we can control the signal handler's environment completely via flags: some signal(2) implementations differ in their sematics, so we need to nail down -exactly what we want. [austin 06.04.2000]

+exactly what we want. [austin 06.04.2000]

+

-

+ + +
signum : Selects signal to be handled see man 5 signal (or man 7 signal) -
handler : Handler that maps to signum. Invoked by O/S. +

+
++ + + + + + + + + + + + + + + +
+signum : Selects signal to be handled see man 5 signal (or man 7 signal) +
+handler : Handler that maps to signum. Invoked by O/S. Handler gets signal that caused invocation. Corresponds to the sa_handler field of the sigaction struct. -
flags : Preferences. OR'ed SA_<xxx>. See man sigaction. Corresponds +
+flags : Preferences. OR'ed SA_<xxx>. See man sigaction. Corresponds to the sa_flags field of the sigaction struct. -
Returns : A reference to the signal handling function which was +
+Returns : A reference to the signal handling function which was active before the call to gimp_signal_private(). -

See Also

+

+
+
+
+

See Also

+

signal(2), signal(5 or 7), sigaction(2). -

+

+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpunit.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,5 +1,37 @@ -gimpunit

gimpunit

gimpunit — Provides a collection of predefined units and functions for creating -user-defined units.

Synopsis

+
+
+
+gimpunit
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpunit

+

gimpunit — Provides a collection of predefined units and functions for creating +user-defined units.

+
+
+

Synopsis

+
 
 
 
@@ -27,11 +59,22 @@
 #define     GIMP_TYPE_UNIT
 #define     GIMP_VALUE_HOLDS_UNIT           (value)
 
-

Description

+

+
+
+

Description

+

Provides a collection of predefined units and functions for creating user-defined units. -

Details

enum GimpUnit

typedef enum /*< skip >*/
+

+
+
+

Details

+
+

+enum GimpUnit

+
typedef enum /*< skip >*/
 {
   GIMP_UNIT_PIXEL   = 0,
 
@@ -44,124 +87,462 @@
 
   GIMP_UNIT_PERCENT = 65536 /*< pdb-skip >*/
 } GimpUnit;
-

+ +

-


gimp_unit_get_number_of_units ()

gint        gimp_unit_get_number_of_units   (void);

-Returns the number of units which are known to the GimpUnit system.

- -

Returns : The number of defined units. -

gimp_unit_get_number_of_built_in_units ()

gint        gimp_unit_get_number_of_built_in_units
-                                            (void);

+

+
+
+
+

+gimp_unit_get_number_of_units ()

+
gint        gimp_unit_get_number_of_units   (void);
+

+Returns the number of units which are known to the GimpUnit system.

+

+ +

+
++ + + + +
+Returns : The number of defined units. +
+
+
+
+

+gimp_unit_get_number_of_built_in_units ()

+
gint        gimp_unit_get_number_of_built_in_units
+                                            (void);
+

Returns the number of GimpUnit's which are hardcoded in the unit system (UNIT_INCH, UNIT_MM, UNIT_POINT, UNIT_PICA and the two "pseudo unit" - UNIT_PIXEL).

+ UNIT_PIXEL).

+

-

Returns : The number of built-in units. -

gimp_unit_new ()

GimpUnit    gimp_unit_new                   (gchar *identifier,
+

+
++ + + + +
+Returns : The number of built-in units. +
+
+
+
+

+gimp_unit_new ()

+
GimpUnit    gimp_unit_new                   (gchar *identifier,
                                              gdouble factor,
                                              gint digits,
                                              gchar *symbol,
                                              gchar *abbreviation,
                                              gchar *singular,
-                                             gchar *plural);

+ gchar *plural); +

Returns the integer ID of the new GimpUnit. -

+

+

Note that a new unit is always created with it's deletion flag set to TRUE. You will have to set it to FALSE with -gimp_unit_set_deletion_flag() to make the unit definition persistent.

+gimp_unit_set_deletion_flag() to make the unit definition persistent.

+

-

identifier : The unit's identifier string. -
factor : The unit's factor (how many units are in one inch). -
digits : The unit's suggested number of digits (see gimp_unit_get_digits()). -
symbol : The symbol of the unit (e.g. "''" for inch). -
abbreviation : The abbreviation of the unit. -
singular : The singular form of the unit. -
plural : The plural form of the unit. -
Returns : The ID of the new unit. -

gimp_unit_get_deletion_flag ()

gboolean    gimp_unit_get_deletion_flag     (GimpUnit unit);

-

- -

unit : The unit you want to know the deletion_flag of. -
Returns : The unit's deletion_flag. -

gimp_unit_set_deletion_flag ()

void        gimp_unit_set_deletion_flag     (GimpUnit unit,
-                                             gboolean deletion_flag);

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+identifier : The unit's identifier string. +
+factor : The unit's factor (how many units are in one inch). +
+digits : The unit's suggested number of digits (see gimp_unit_get_digits()). +
+symbol : The symbol of the unit (e.g. "''" for inch). +
+abbreviation : The abbreviation of the unit. +
+singular : The singular form of the unit. +
+plural : The plural form of the unit. +
+Returns : The ID of the new unit. +
+
+
+
+

+gimp_unit_get_deletion_flag ()

+
gboolean    gimp_unit_get_deletion_flag     (GimpUnit unit);
+

+

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the deletion_flag of. +
+Returns : The unit's deletion_flag. +
+
+
+
+

+gimp_unit_set_deletion_flag ()

+
void        gimp_unit_set_deletion_flag     (GimpUnit unit,
+                                             gboolean deletion_flag);
+

Sets a GimpUnit's deletion_flag. If the deletion_flag of a unit is TRUE when GIMP exits, this unit will not be saved in the users's "unitrc" file. -

+

+

Trying to change the deletion_flag of a built-in unit will be silently -ignored.

+ignored.

+

-

unit : The unit you want to set the deletion_flag for. -
deletion_flag : The new deletion_flag. -

gimp_unit_get_factor ()

gdouble     gimp_unit_get_factor            (GimpUnit unit);

+

+
++ + + + + + + + + + +
+unit : The unit you want to set the deletion_flag for. +
+deletion_flag : The new deletion_flag. +
+
+
+
+

+gimp_unit_get_factor ()

+
gdouble     gimp_unit_get_factor            (GimpUnit unit);
+

A GimpUnit's factor is defined to be: -

+

+

distance_in_units == (factor * distance_in_inches) -

-Returns 0 for unit == GIMP_UNIT_PIXEL.

- -

unit : The unit you want to know the factor of. -
Returns : The unit's factor. -

gimp_unit_get_digits ()

gint        gimp_unit_get_digits            (GimpUnit unit);

+

+

+Returns 0 for unit == GIMP_UNIT_PIXEL.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the factor of. +
+Returns : The unit's factor. +
+
+
+
+

+gimp_unit_get_digits ()

+
gint        gimp_unit_get_digits            (GimpUnit unit);
+

Returns the number of digits an entry field should provide to get approximately the same accuracy as an inch input field with two digits. -

-Returns 0 for unit == GIMP_UNIT_PIXEL.

- -

unit : The unit you want to know the digits. -
Returns : The suggested number of digits. -

gimp_unit_get_identifier ()

const gchar* gimp_unit_get_identifier       (GimpUnit unit);

-This is an unstranslated string and must not be changed or freed.

- -

unit : The unit you want to know the identifier of. -
Returns : The unit's identifier. -

gimp_unit_get_symbol ()

const gchar* gimp_unit_get_symbol           (GimpUnit unit);

+

+

+Returns 0 for unit == GIMP_UNIT_PIXEL.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the digits. +
+Returns : The suggested number of digits. +
+
+
+
+

+gimp_unit_get_identifier ()

+
const gchar* gimp_unit_get_identifier       (GimpUnit unit);
+

+This is an unstranslated string and must not be changed or freed.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the identifier of. +
+Returns : The unit's identifier. +
+
+
+
+

+gimp_unit_get_symbol ()

+
const gchar* gimp_unit_get_symbol           (GimpUnit unit);
+

This is e.g. "''" for UNIT_INCH. -

-NOTE: This string must not be changed or freed.

- -

unit : The unit you want to know the symbol of. -
Returns : The unit's symbol. -

gimp_unit_get_abbreviation ()

const gchar* gimp_unit_get_abbreviation     (GimpUnit unit);

+

+

+NOTE: This string must not be changed or freed.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the symbol of. +
+Returns : The unit's symbol. +
+
+
+
+

+gimp_unit_get_abbreviation ()

+
const gchar* gimp_unit_get_abbreviation     (GimpUnit unit);
+

For built-in units, this function returns the translated abbreviation of the unit. -

-NOTE: This string must not be changed or freed.

- -

unit : The unit you want to know the abbreviation of. -
Returns : The unit's abbreviation. -

gimp_unit_get_singular ()

const gchar* gimp_unit_get_singular         (GimpUnit unit);

+

+

+NOTE: This string must not be changed or freed.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the abbreviation of. +
+Returns : The unit's abbreviation. +
+
+
+
+

+gimp_unit_get_singular ()

+
const gchar* gimp_unit_get_singular         (GimpUnit unit);
+

For built-in units, this function returns the translated singular form of the unit's name. -

-NOTE: This string must not be changed or freed.

- -

unit : The unit you want to know the singular form of. -
Returns : The unit's singular form. -

gimp_unit_get_plural ()

const gchar* gimp_unit_get_plural           (GimpUnit unit);

+

+

+NOTE: This string must not be changed or freed.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the singular form of. +
+Returns : The unit's singular form. +
+
+
+
+

+gimp_unit_get_plural ()

+
const gchar* gimp_unit_get_plural           (GimpUnit unit);
+

For built-in units, this function returns the translated plural form of the unit's name. -

-NOTE: This string must not be changed or freed.

- -

unit : The unit you want to know the plural form of. -
Returns : The unit's plural form. -

GIMP_TYPE_UNIT

#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
-

+

+

+NOTE: This string must not be changed or freed.

+

+ +

+
++ + + + + + + + + + +
+unit : The unit you want to know the plural form of. +
+Returns : The unit's plural form. +
+
+
+
+

+GIMP_TYPE_UNIT

+
#define GIMP_TYPE_UNIT               (gimp_unit_get_type ())
+
+

GIMP_TYPE_UNIT is a GType derived from G_TYPE_INT. -


GIMP_VALUE_HOLDS_UNIT()

#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
-

- -

value : - - -

See Also

+

+
+
+
+

+GIMP_VALUE_HOLDS_UNIT()

+
#define GIMP_VALUE_HOLDS_UNIT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_UNIT))
+
+

+ +

+
++ + + + +
+value : + + +
+
+
+
+

See Also

+

GimpUnitMenu -

+

+

GimpSizeEntry -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimputils.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimputils.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimputils.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,4 +1,36 @@ -gimputils

gimputils

gimputils — Utilities of general interest

Synopsis

+
+
+
+gimputils
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimputils

+

gimputils — Utilities of general interest

+
+
+

Synopsis

+
 
 
 
@@ -35,174 +67,601 @@
                                              GFlagsValue *flags_value);
 const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
                                              GFlagsValue *flags_value);
-

Description

- -

Details

gimp_any_to_utf8 ()

gchar*      gimp_any_to_utf8                (const gchar *str,
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+gimp_any_to_utf8 ()

+
gchar*      gimp_any_to_utf8                (const gchar *str,
                                              gssize len,
                                              const gchar *warning_format,
-                                             ...);

+ ...);

+

This function takes any string (UTF-8 or not) and always returns a valid UTF-8 string. -

+

+

If str is valid UTF-8, a copy of the string is returned. -

+

+

If UTF-8 validation fails, g_locale_to_utf8() is tried and if it succeeds the resulting string is returned. -

+

+

Otherwise, the portion of str that is UTF-8, concatenated with "(invalid UTF-8 string)" is returned. If not even the start -of str is valid UTF-8, only "(invalid UTF-8 string)" is returned.

+of str is valid UTF-8, only "(invalid UTF-8 string)" is returned.

+

-

+ + + + + + + + + + +
str : The string to be converted to UTF-8. -
len : The length of the string, or -1 if the string +

+
++ + + + + + + + + + + +
+str : The string to be converted to UTF-8. +
+len : The length of the string, or -1 if the string is nul-terminated. -
warning_format : The message format for the warning message if conversion +
+warning_format : The message format for the warning message if conversion to UTF-8 fails. See the printf() documentation. -
... : The parameters to insert into the format string. -
Returns : The UTF-8 string as described above. -

gimp_filename_to_utf8 ()

const gchar* gimp_filename_to_utf8          (const gchar *filename);

+

+... : The parameters to insert into the format string. +
+Returns : The UTF-8 string as described above. +
+
+
+
+

+gimp_filename_to_utf8 ()

+
const gchar* gimp_filename_to_utf8          (const gchar *filename);
+

Convert a filename in the filesystem's encoding to UTF-8 temporarily. The return value is a pointer to a string that is guaranteed to be valid only during the current iteration of the main loop or until the next call to gimp_filename_to_utf8(). -

+

+

The only purpose of this function is to provide an easy way to pass a filename in the filesystem encoding to a function that expects an -UTF-8 encoded filename.

+UTF-8 encoded filename.

+

-

+ + +
filename : The filename to be converted to UTF-8. -
Returns : A temporarily valid UTF-8 representation of filename. +

+
++ + + + + + + +
+filename : The filename to be converted to UTF-8. +
+Returns : A temporarily valid UTF-8 representation of filename. This string must not be changed or freed. -

gimp_utf8_strtrim ()

gchar*      gimp_utf8_strtrim               (const gchar *str,
-                                             gint max_chars);

+

+
+
+
+

+gimp_utf8_strtrim ()

+
gchar*      gimp_utf8_strtrim               (const gchar *str,
+                                             gint max_chars);
+

Creates a (possibly trimmed) copy of str. The string is cut if it exceeds max_chars characters or on the first newline. The fact -that the string was trimmed is indicated by appending an ellipsis.

+that the string was trimmed is indicated by appending an ellipsis.

+

-

+ + +
str : an UTF-8 encoded string (or NULL) -
max_chars : the maximum number of characters before the string get +

+
++ + + + + + + + + + + +
+str : an UTF-8 encoded string (or NULL) +
+max_chars : the maximum number of characters before the string get trimmed -
Returns : A (possibly trimmed) copy of str which should be freed +
+Returns : A (possibly trimmed) copy of str which should be freed using g_free() when it is not needed any longer. -

gimp_escape_uline ()

gchar*      gimp_escape_uline               (const gchar *str);

+

+
+
+
+

+gimp_escape_uline ()

+
gchar*      gimp_escape_uline               (const gchar *str);
+

This function returns a copy of str with all underline converted to two adjacent underlines. This comes in handy when needing to display strings with underlines (like filenames) in a place that would convert -them to mnemonics.

+them to mnemonics.

+

-

+ + +
str : Underline infested string (or NULL) -
Returns : A (possibly escaped) copy of str which should be +

+
++ + + + + + + +
+str : Underline infested string (or NULL) +
+Returns : A (possibly escaped) copy of str which should be freed using g_free() when it is not needed any longer. -

Since GIMP 2.2 -


gimp_strip_uline ()

gchar*      gimp_strip_uline                (const gchar *str);

+

+

Since GIMP 2.2 +

+
+
+
+

+gimp_strip_uline ()

+
gchar*      gimp_strip_uline                (const gchar *str);
+

This function returns a copy of str stripped of underline characters. This comes in handy when needing to strip mnemonics from menu paths etc. -

+

+

In some languages, mnemonics are handled by adding the mnemonic character in brackets (like "File (_F)"). This function recognizes this construct and removes the whole bracket construction to get -rid of the mnemonic (see bug 157561).

+rid of the mnemonic (see bug 157561).

+

-

+ + +
str : underline infested string (or NULL) -
Returns : A (possibly stripped) copy of str which should be +

+
++ + + + + + + +
+str : underline infested string (or NULL) +
+Returns : A (possibly stripped) copy of str which should be freed using g_free() when it is not needed any longer. -

gimp_enum_get_desc ()

GimpEnumDesc* gimp_enum_get_desc            (GEnumClass *enum_class,
-                                             gint value);

-Retrieves GimpEnumDesc associated with the given value, or NULL.

- -

enum_class : a GEnumClass -
value : a value from enum_class -
Returns : the value's GimpEnumDesc. - -

Since GIMP 2.2 -


gimp_enum_get_value ()

gboolean    gimp_enum_get_value             (GType enum_type,
+
+
+
+
+

+gimp_enum_get_desc ()

+
GimpEnumDesc* gimp_enum_get_desc            (GEnumClass *enum_class,
+                                             gint value);
+

+Retrieves GimpEnumDesc associated with the given value, or NULL.

+

+ +

+
++ + + + + + + + + + + + + + +
+enum_class : a GEnumClass +
+value : a value from enum_class +
+Returns : the value's GimpEnumDesc. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_enum_get_value ()

+
gboolean    gimp_enum_get_value             (GType enum_type,
                                              gint value,
                                              const gchar **value_name,
                                              const gchar **value_nick,
                                              const gchar **value_desc,
-                                             const gchar **value_help);

+ const gchar **value_help); +

Checks if value is valid for the enum registered as enum_type. If the value exists in that enum, its name, nick and its translated desc and help are returned (if value_name, value_nick, value_desc -and value_help are not NULL).

+and value_help are not NULL).

+

-

+ + +
enum_type : the GType of a registered enum -
value : an integer value -
value_name : return location for the value's name (or NULL) -
value_nick : return location for the value's nick (or NULL) -
value_desc : return location for the value's translated desc (or NULL) -
value_help : return location for the value's translated help (or NULL) -
Returns : TRUE if value is valid for the enum_type, +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+enum_type : the GType of a registered enum +
+value : an integer value +
+value_name : return location for the value's name (or NULL) +
+value_nick : return location for the value's nick (or NULL) +
+value_desc : return location for the value's translated desc (or NULL) +
+value_help : return location for the value's translated help (or NULL) +
+Returns : TRUE if value is valid for the enum_type, FALSE otherwise -

Since GIMP 2.2 -


gimp_enum_value_get_desc ()

const gchar* gimp_enum_value_get_desc       (GEnumClass *enum_class,
-                                             GEnumValue *enum_value);

-Retrieves the translated desc for a given enum_value.

- -

enum_class : a GEnumClass -
enum_value : a GEnumValue from enum_class -
Returns : the translated desc of the enum value - -

Since GIMP 2.2 -


gimp_enum_value_get_help ()

const gchar* gimp_enum_value_get_help       (GEnumClass *enum_class,
-                                             GEnumValue *enum_value);

-Retrieves the translated help for a given enum_value.

- -

enum_class : a GEnumClass -
enum_value : a GEnumValue from enum_class -
Returns : the translated help of the enum value - -

Since GIMP 2.2 -


gimp_flags_get_first_desc ()

GimpFlagsDesc* gimp_flags_get_first_desc    (GFlagsClass *flags_class,
-                                             guint value);

-Retrieves the first GimpFlagsDesc that matches the given value, or NULL.

- -

flags_class : a GFlagsClass -
value : a value from flags_class -
Returns : the value's GimpFlagsDesc. - -

Since GIMP 2.2 -


gimp_flags_get_first_value ()

gboolean    gimp_flags_get_first_value      (GType flags_type,
+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_enum_value_get_desc ()

+
const gchar* gimp_enum_value_get_desc       (GEnumClass *enum_class,
+                                             GEnumValue *enum_value);
+

+Retrieves the translated desc for a given enum_value.

+

+ +

+
++ + + + + + + + + + + + + + +
+enum_class : a GEnumClass +
+enum_value : a GEnumValue from enum_class +
+Returns : the translated desc of the enum value + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_enum_value_get_help ()

+
const gchar* gimp_enum_value_get_help       (GEnumClass *enum_class,
+                                             GEnumValue *enum_value);
+

+Retrieves the translated help for a given enum_value.

+

+ +

+
++ + + + + + + + + + + + + + +
+enum_class : a GEnumClass +
+enum_value : a GEnumValue from enum_class +
+Returns : the translated help of the enum value + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_flags_get_first_desc ()

+
GimpFlagsDesc* gimp_flags_get_first_desc    (GFlagsClass *flags_class,
+                                             guint value);
+

+Retrieves the first GimpFlagsDesc that matches the given value, or NULL.

+

+ +

+
++ + + + + + + + + + + + + + +
+flags_class : a GFlagsClass +
+value : a value from flags_class +
+Returns : the value's GimpFlagsDesc. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_flags_get_first_value ()

+
gboolean    gimp_flags_get_first_value      (GType flags_type,
                                              guint value,
                                              const gchar **value_name,
                                              const gchar **value_nick,
                                              const gchar **value_desc,
-                                             const gchar **value_help);

+ const gchar **value_help); +

Checks if value is valid for the flags registered as flags_type. If the value exists in that flags, its name, nick and its translated desc and help are returned (if value_name, value_nick, value_desc -and value_help are not NULL).

+and value_help are not NULL).

+

-

+ + +
flags_type : the GType of registered flags -
value : an integer value -
value_name : return location for the value's name (or NULL) -
value_nick : return location for the value's nick (or NULL) -
value_desc : return location for the value's translated desc (or NULL) -
value_help : return location for the value's translated help (or NULL) -
Returns : TRUE if value is valid for the flags_type, +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+flags_type : the GType of registered flags +
+value : an integer value +
+value_name : return location for the value's name (or NULL) +
+value_nick : return location for the value's nick (or NULL) +
+value_desc : return location for the value's translated desc (or NULL) +
+value_help : return location for the value's translated help (or NULL) +
+Returns : TRUE if value is valid for the flags_type, FALSE otherwise -

Since GIMP 2.2 -


gimp_flags_value_get_desc ()

const gchar* gimp_flags_value_get_desc      (GFlagsClass *flags_class,
-                                             GFlagsValue *flags_value);

-Retrieves the translated desc for a given flags_value.

- -

flags_class : a GFlagsClass -
flags_value : a GFlagsValue from flags_class -
Returns : the translated desc of the flags value - -

Since GIMP 2.2 -


gimp_flags_value_get_help ()

const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
-                                             GFlagsValue *flags_value);

-Retrieves the translated help for a given flags_value.

- -

flags_class : a GFlagsClass -
flags_value : a GFlagsValue from flags_class -
Returns : the translated help of the flags value - -

Since GIMP 2.2 -

+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_flags_value_get_desc ()

+
const gchar* gimp_flags_value_get_desc      (GFlagsClass *flags_class,
+                                             GFlagsValue *flags_value);
+

+Retrieves the translated desc for a given flags_value.

+

+ +

+
++ + + + + + + + + + + + + + +
+flags_class : a GFlagsClass +
+flags_value : a GFlagsValue from flags_class +
+Returns : the translated desc of the flags value + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_flags_value_get_help ()

+
const gchar* gimp_flags_value_get_help      (GFlagsClass *flags_class,
+                                             GFlagsValue *flags_value);
+

+Retrieves the translated help for a given flags_value.

+

+ +

+
++ + + + + + + + + + + + + + +
+flags_class : a GFlagsClass +
+flags_value : a GFlagsValue from flags_class +
+Returns : the translated help of the flags value + +
+

Since GIMP 2.2 +

+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpversion.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,5 +1,37 @@ -gimpversion

gimpversion

gimpversion — Macros and constants useful for determining GIMP's version number and -capabilities.

Synopsis

+
+
+
+gimpversion
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpversion

+

gimpversion — Macros and constants useful for determining GIMP's version number and +capabilities.

+
+
+

Synopsis

+
 
 
 
@@ -9,30 +41,106 @@
 #define     GIMP_VERSION
 #define     GIMP_API_VERSION
 #define     GIMP_CHECK_VERSION              (major, minor, micro)
-

Description

+

+
+
+

Description

+

Macros and constants useful for determining GIMP's version number and capabilities. -

Details

GIMP_MAJOR_VERSION

#define GIMP_MAJOR_VERSION                              (2)
-

- -


GIMP_MINOR_VERSION

#define GIMP_MINOR_VERSION                              (2)
-

- -


GIMP_MICRO_VERSION

#define GIMP_MICRO_VERSION                              (8)
-

- -


GIMP_VERSION

#define GIMP_VERSION                                    "2.2.8"
-

- -


GIMP_API_VERSION

#define GIMP_API_VERSION                                "2.0"
-

+

+
+
+

Details

+
+

+GIMP_MAJOR_VERSION

+
#define GIMP_MAJOR_VERSION                              (2)
+
+

+ +

+
+
+
+

+GIMP_MINOR_VERSION

+
#define GIMP_MINOR_VERSION                              (2)
+
+

+ +

+
+
+
+

+GIMP_MICRO_VERSION

+
#define GIMP_MICRO_VERSION                              (9)
+
+

+ +

+
+
+
+

+GIMP_VERSION

+
#define GIMP_VERSION                                    "2.2.9"
+
+

+ +

+
+
+
+

+GIMP_API_VERSION

+
#define GIMP_API_VERSION                                "2.0"
+
+

Since: GIMP 2.2 -


GIMP_CHECK_VERSION()

#define     GIMP_CHECK_VERSION(major, minor, micro)

- -

major : -
minor : -
micro : - - -
+

+
+
+
+

+GIMP_CHECK_VERSION()

+
#define     GIMP_CHECK_VERSION(major, minor, micro)
+

+ +

+
++ + + + + + + + + + + + + + +
+major : +
+minor : +
+micro : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase-gimpwire.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,5 +1,35 @@ -gimpwire

gimpwire

gimpwire — The lowlevel I/O protocol used for communication between GIMP and -it's plug-ins.

Synopsis

+
+
+
+gimpwire
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpwire

+

gimpwire — The lowlevel I/O protocol used for communication between GIMP and +it's plug-ins.

+
+
+

Synopsis

+
 
 
 
@@ -83,269 +113,1076 @@
                                              gchar **data,
                                              gint count,
                                              gpointer user_data);
-

Description

+

+
+
+

Description

+

The lowlevel I/O protocol used for communication between GIMP and it's plug-ins. -

Details

WireMessage

typedef struct {
+

+
+
+

Details

+
+

+WireMessage

+
typedef struct {
   guint32  type;
   gpointer data;
 } WireMessage;
-

+ +

-


WireReadFunc ()

void        (*WireReadFunc)                 (GIOChannel *channel,
+

+
+
+
+

+WireReadFunc ()

+
void        (*WireReadFunc)                 (GIOChannel *channel,
                                              WireMessage *msg,
-                                             gpointer user_data);

+ gpointer user_data); +

-

channel : -
msg : -
user_data : - - -

WireWriteFunc ()

void        (*WireWriteFunc)                (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + +
+channel : +
+msg : +
+user_data : + + +
+
+
+
+

+WireWriteFunc ()

+
void        (*WireWriteFunc)                (GIOChannel *channel,
                                              WireMessage *msg,
-                                             gpointer user_data);

- -

channel : -
msg : -
user_data : - + gpointer user_data); +

-


WireDestroyFunc ()

void        (*WireDestroyFunc)              (WireMessage *msg);

- -

msg : - - -

WireIOFunc ()

gboolean    (*WireIOFunc)                   (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + +
+channel : +
+msg : +
+user_data : + + +
+
+
+
+

+WireDestroyFunc ()

+
void        (*WireDestroyFunc)              (WireMessage *msg);
+

+ +

+
++ + + + +
+msg : + + +
+
+
+
+

+WireIOFunc ()

+
gboolean    (*WireIOFunc)                   (GIOChannel *channel,
                                              guint8 *buf,
                                              gulong count,
-                                             gpointer user_data);

- -

channel : -
buf : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


WireFlushFunc ()

gboolean    (*WireFlushFunc)                (GIOChannel *channel,
-                                             gpointer user_data);

- -

channel : -
user_data : -
Returns : - - -

wire_register ()

void        wire_register                   (guint32 type,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+buf : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+WireFlushFunc ()

+
gboolean    (*WireFlushFunc)                (GIOChannel *channel,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+channel : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_register ()

+
void        wire_register                   (guint32 type,
                                              WireReadFunc read_func,
                                              WireWriteFunc write_func,
-                                             WireDestroyFunc destroy_func);

- -

type : -
read_func : -
write_func : -
destroy_func : - - -

wire_set_reader ()

void        wire_set_reader                 (WireIOFunc read_func);

- -

read_func : + WireDestroyFunc destroy_func); +

- -


wire_set_writer ()

void        wire_set_writer                 (WireIOFunc write_func);

- -

write_func : - - -

wire_set_flusher ()

void        wire_set_flusher                (WireFlushFunc flush_func);

- -

flush_func : - - -

wire_read ()

gboolean    wire_read                       (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+type : +
+read_func : +
+write_func : +
+destroy_func : + + +
+
+
+
+

+wire_set_reader ()

+
void        wire_set_reader                 (WireIOFunc read_func);
+

+ +

+
++ + + + +
+read_func : + + +
+
+
+
+

+wire_set_writer ()

+
void        wire_set_writer                 (WireIOFunc write_func);
+

+ +

+
++ + + + +
+write_func : + + +
+
+
+
+

+wire_set_flusher ()

+
void        wire_set_flusher                (WireFlushFunc flush_func);
+

+ +

+
++ + + + +
+flush_func : + + +
+
+
+
+

+wire_read ()

+
gboolean    wire_read                       (GIOChannel *channel,
                                              guint8 *buf,
                                              gsize count,
-                                             gpointer user_data);

- -

channel : -
buf : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write ()

gboolean    wire_write                      (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+buf : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write ()

+
gboolean    wire_write                      (GIOChannel *channel,
                                              guint8 *buf,
                                              gsize count,
-                                             gpointer user_data);

- -

channel : -
buf : -
count : -
user_data : -
Returns : - - -

wire_flush ()

gboolean    wire_flush                      (GIOChannel *channel,
-                                             gpointer user_data);

- -

channel : -
user_data : -
Returns : - - -

wire_error ()

gboolean    wire_error                      (void);

+ gpointer user_data); +

-

Returns : - - -

wire_clear_error ()

void        wire_clear_error                (void);

- -


wire_read_msg ()

gboolean    wire_read_msg                   (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+buf : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_flush ()

+
gboolean    wire_flush                      (GIOChannel *channel,
+                                             gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+channel : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_error ()

+
gboolean    wire_error                      (void);
+

+ +

+
++ + + + +
+Returns : + + +
+
+
+
+

+wire_clear_error ()

+
void        wire_clear_error                (void);
+

+ +

+
+
+
+

+wire_read_msg ()

+
gboolean    wire_read_msg                   (GIOChannel *channel,
                                              WireMessage *msg,
-                                             gpointer user_data);

- -

channel : -
msg : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write_msg ()

gboolean    wire_write_msg                  (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+msg : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write_msg ()

+
gboolean    wire_write_msg                  (GIOChannel *channel,
                                              WireMessage *msg,
-                                             gpointer user_data);

- -

channel : -
msg : -
user_data : -
Returns : - - -

wire_destroy ()

void        wire_destroy                    (WireMessage *msg);

+ gpointer user_data); +

-

msg : - - -

wire_read_int32 ()

gboolean    wire_read_int32                 (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + +
+channel : +
+msg : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_destroy ()

+
void        wire_destroy                    (WireMessage *msg);
+

+ +

+
++ + + + +
+msg : + + +
+
+
+
+

+wire_read_int32 ()

+
gboolean    wire_read_int32                 (GIOChannel *channel,
                                              guint32 *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : - + gpointer user_data); +

-


wire_read_int16 ()

gboolean    wire_read_int16                 (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_read_int16 ()

+
gboolean    wire_read_int16                 (GIOChannel *channel,
                                              guint16 *data,
                                              gint count,
-                                             gpointer user_data);

+ gpointer user_data); +

-

channel : -
data : -
count : -
user_data : -
Returns : - - -

wire_read_int8 ()

gboolean    wire_read_int8                  (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_read_int8 ()

+
gboolean    wire_read_int8                  (GIOChannel *channel,
                                              guint8 *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_read_double ()

gboolean    wire_read_double                (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_read_double ()

+
gboolean    wire_read_double                (GIOChannel *channel,
                                              gdouble *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_read_string ()

gboolean    wire_read_string                (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_read_string ()

+
gboolean    wire_read_string                (GIOChannel *channel,
                                              gchar **data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write_int32 ()

gboolean    wire_write_int32                (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write_int32 ()

+
gboolean    wire_write_int32                (GIOChannel *channel,
                                              guint32 *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write_int16 ()

gboolean    wire_write_int16                (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write_int16 ()

+
gboolean    wire_write_int16                (GIOChannel *channel,
                                              guint16 *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write_int8 ()

gboolean    wire_write_int8                 (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write_int8 ()

+
gboolean    wire_write_int8                 (GIOChannel *channel,
                                              guint8 *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write_double ()

gboolean    wire_write_double               (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write_double ()

+
gboolean    wire_write_double               (GIOChannel *channel,
                                              gdouble *data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : + gpointer user_data); +

- -


wire_write_string ()

gboolean    wire_write_string               (GIOChannel *channel,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

+wire_write_string ()

+
gboolean    wire_write_string               (GIOChannel *channel,
                                              gchar **data,
                                              gint count,
-                                             gpointer user_data);

- -

channel : -
data : -
count : -
user_data : -
Returns : - + gpointer user_data); +

-

See Also

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+channel : +
+data : +
+count : +
+user_data : +
+Returns : + + +
+
+
+
+

See Also

+

libgimp-gimpprotocol -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase.html gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase.html --- gimp-2.2.8/devel-docs/libgimpbase/html/libgimpbase.html 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/html/libgimpbase.html 2005-10-27 17:14:05.000000000 +0200 @@ -1 +1,28 @@ -Part I. GIMP Base Library

GIMP Base Library

+ + + +Part I. GIMP Base Library + + + + + + + + + + + + + + + + +

+GIMP Base Library

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/Makefile.in gimp-2.2.9/devel-docs/libgimpbase/Makefile.in --- gimp-2.2.8/devel-docs/libgimpbase/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/Makefile.in 2005-10-27 17:11:38.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimpbase +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -423,7 +439,6 @@ GTKDOC_CFLAGS = GTKDOC_LIBS = @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -434,24 +449,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -459,25 +465,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimpbase -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpbase/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimpbase/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -495,13 +516,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -513,7 +530,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -534,7 +551,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -556,7 +572,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -573,6 +589,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -607,12 +625,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -625,7 +644,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -645,7 +664,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -653,11 +672,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -718,6 +737,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpbaseenums.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpbaseenums.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpbaseenums.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpbaseenums.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpbasetypes.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpbasetypes.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpbasetypes.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpbasetypes.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpchecks.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpchecks.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpchecks.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpchecks.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + The default checkerboard size in pixels. This is configurable in the diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpdatafiles.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpdatafiles.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpdatafiles.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpdatafiles.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpenv.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpenv.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpenv.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpenv.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimplimits.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimplimits.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimplimits.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimplimits.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -15,6 +15,9 @@ + + + The minimum width and height of a GIMP image in pixels. diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpmemsize.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpmemsize.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpmemsize.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpmemsize.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpparasiteio.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpparasiteio.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpparasiteio.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpparasiteio.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -15,6 +15,9 @@ #GimpParasite + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpparasite.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpparasite.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpparasite.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpparasite.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -16,6 +16,9 @@ gimp_parasite_attach() and their related functions. + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpprotocol.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpprotocol.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpprotocol.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpprotocol.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -15,6 +15,9 @@ #libgimp-gimpwire + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpsignal.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpsignal.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpsignal.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpsignal.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -15,6 +15,9 @@ signal(2), signal(5 or 7), sigaction(2). + + + A prototype for signal handler functions. Note that each function which diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpunit.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpunit.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpunit.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpunit.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -20,6 +20,9 @@ #GimpSizeEntry + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimputils.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimputils.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimputils.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimputils.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpversion.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpversion.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpversion.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpversion.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -17,6 +17,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpwire.sgml gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpwire.sgml --- gimp-2.2.8/devel-docs/libgimpbase/tmpl/gimpwire.sgml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/tmpl/gimpwire.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -17,6 +17,9 @@ #libgimp-gimpprotocol + + + diff -uraN gimp-2.2.8/devel-docs/libgimpbase/xml/gimpbasetypes.xml gimp-2.2.9/devel-docs/libgimpbase/xml/gimpbasetypes.xml --- gimp-2.2.8/devel-docs/libgimpbase/xml/gimpbasetypes.xml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/xml/gimpbasetypes.xml 2005-10-27 17:14:05.000000000 +0200 @@ -80,7 +80,7 @@
<anchor id="gimp-type-set-translation-domain"/>gimp_type_set_translation_domain () -gimp_type_set_translation_domainvoid gimp_type_set_translation_domain +gimp_type_set_translation_domainvoid gimp_type_set_translation_domain (GType type, const gchar *domain); @@ -101,7 +101,7 @@ <anchor id="gimp-type-get-translation-domain"/>gimp_type_get_translation_domain () -gimp_type_get_translation_domainconst gchar* gimp_type_get_translation_domain +gimp_type_get_translation_domainconst gchar* gimp_type_get_translation_domain (GType type); Retrieves the gettext translation domain identifier that has been @@ -122,7 +122,7 @@ <anchor id="gimp-enum-set-value-descriptions"/>gimp_enum_set_value_descriptions () -gimp_enum_set_value_descriptionsvoid gimp_enum_set_value_descriptions +gimp_enum_set_value_descriptionsvoid gimp_enum_set_value_descriptions (GType enum_type, const GimpEnumDesc *descriptions); @@ -141,7 +141,7 @@ <anchor id="gimp-enum-get-value-descriptions"/>gimp_enum_get_value_descriptions () -gimp_enum_get_value_descriptionsconst GimpEnumDesc* gimp_enum_get_value_descriptions +gimp_enum_get_value_descriptionsconst GimpEnumDesc* gimp_enum_get_value_descriptions (GType enum_type); Retreives the array of human readable and translatable descriptions @@ -159,7 +159,7 @@ <anchor id="gimp-flags-get-value-descriptions"/>gimp_flags_get_value_descriptions () -gimp_flags_get_value_descriptionsconst GimpFlagsDesc* gimp_flags_get_value_descriptions +gimp_flags_get_value_descriptionsconst GimpFlagsDesc* gimp_flags_get_value_descriptions (GType flags_type); Retreives the array of human readable and translatable descriptions @@ -177,7 +177,7 @@ <anchor id="gimp-flags-set-value-descriptions"/>gimp_flags_set_value_descriptions () -gimp_flags_set_value_descriptionsvoid gimp_flags_set_value_descriptions +gimp_flags_set_value_descriptionsvoid gimp_flags_set_value_descriptions (GType flags_type, const GimpFlagsDesc *descriptions); diff -uraN gimp-2.2.8/devel-docs/libgimpbase/xml/gimpchecks.xml gimp-2.2.9/devel-docs/libgimpbase/xml/gimpchecks.xml --- gimp-2.2.8/devel-docs/libgimpbase/xml/gimpchecks.xml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/xml/gimpchecks.xml 2005-10-27 17:14:05.000000000 +0200 @@ -78,7 +78,7 @@ <anchor id="gimp-checks-get-shades"/>gimp_checks_get_shades () -gimp_checks_get_shadesvoid gimp_checks_get_shades (GimpCheckType type, +gimp_checks_get_shadesvoid gimp_checks_get_shades (GimpCheckType type, guchar *light, guchar *dark); diff -uraN gimp-2.2.8/devel-docs/libgimpbase/xml/gimpmemsize.xml gimp-2.2.9/devel-docs/libgimpbase/xml/gimpmemsize.xml --- gimp-2.2.8/devel-docs/libgimpbase/xml/gimpmemsize.xml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/xml/gimpmemsize.xml 2005-10-27 17:14:05.000000000 +0200 @@ -48,7 +48,7 @@ Details <anchor id="gimp-memsize-serialize"/>gimp_memsize_serialize () -gimp_memsize_serializegchar* gimp_memsize_serialize (guint64 memsize); +gimp_memsize_serializegchar* gimp_memsize_serialize (guint64 memsize); Creates a string representation of a given memory size. This string can be parsed by gimp_memsize_deserialize() and can thus be used in @@ -67,7 +67,7 @@ <anchor id="gimp-memsize-deserialize"/>gimp_memsize_deserialize () -gimp_memsize_deserializegboolean gimp_memsize_deserialize (const gchar *string, +gimp_memsize_deserializegboolean gimp_memsize_deserialize (const gchar *string, guint64 *memsize); Parses a string representation of a memory size as returned by diff -uraN gimp-2.2.8/devel-docs/libgimpbase/xml/gimputils.xml gimp-2.2.9/devel-docs/libgimpbase/xml/gimputils.xml --- gimp-2.2.8/devel-docs/libgimpbase/xml/gimputils.xml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/xml/gimputils.xml 2005-10-27 17:14:05.000000000 +0200 @@ -161,7 +161,7 @@ <anchor id="gimp-escape-uline"/>gimp_escape_uline () -gimp_escape_ulinegchar* gimp_escape_uline (const gchar *str); +gimp_escape_ulinegchar* gimp_escape_uline (const gchar *str); This function returns a copy of str with all underline converted to two adjacent underlines. This comes in handy when needing to display @@ -204,7 +204,7 @@ <anchor id="gimp-enum-get-desc"/>gimp_enum_get_desc () -gimp_enum_get_descGimpEnumDesc* gimp_enum_get_desc (GEnumClass *enum_class, +gimp_enum_get_descGimpEnumDesc* gimp_enum_get_desc (GEnumClass *enum_class, gint value); Retrieves GimpEnumDesc associated with the given value, or NULL. @@ -224,7 +224,7 @@ <anchor id="gimp-enum-get-value"/>gimp_enum_get_value () -gimp_enum_get_valuegboolean gimp_enum_get_value (GType enum_type, +gimp_enum_get_valuegboolean gimp_enum_get_value (GType enum_type, gint value, const gchar **value_name, const gchar **value_nick, @@ -264,7 +264,7 @@ <anchor id="gimp-enum-value-get-desc"/>gimp_enum_value_get_desc () -gimp_enum_value_get_descconst gchar* gimp_enum_value_get_desc (GEnumClass *enum_class, +gimp_enum_value_get_descconst gchar* gimp_enum_value_get_desc (GEnumClass *enum_class, GEnumValue *enum_value); Retrieves the translated desc for a given enum_value. @@ -284,7 +284,7 @@ <anchor id="gimp-enum-value-get-help"/>gimp_enum_value_get_help () -gimp_enum_value_get_helpconst gchar* gimp_enum_value_get_help (GEnumClass *enum_class, +gimp_enum_value_get_helpconst gchar* gimp_enum_value_get_help (GEnumClass *enum_class, GEnumValue *enum_value); Retrieves the translated help for a given enum_value. @@ -304,7 +304,7 @@ <anchor id="gimp-flags-get-first-desc"/>gimp_flags_get_first_desc () -gimp_flags_get_first_descGimpFlagsDesc* gimp_flags_get_first_desc (GFlagsClass *flags_class, +gimp_flags_get_first_descGimpFlagsDesc* gimp_flags_get_first_desc (GFlagsClass *flags_class, guint value); Retrieves the first GimpFlagsDesc that matches the given value, or NULL. @@ -324,7 +324,7 @@ <anchor id="gimp-flags-get-first-value"/>gimp_flags_get_first_value () -gimp_flags_get_first_valuegboolean gimp_flags_get_first_value (GType flags_type, +gimp_flags_get_first_valuegboolean gimp_flags_get_first_value (GType flags_type, guint value, const gchar **value_name, const gchar **value_nick, @@ -364,7 +364,7 @@ <anchor id="gimp-flags-value-get-desc"/>gimp_flags_value_get_desc () -gimp_flags_value_get_descconst gchar* gimp_flags_value_get_desc (GFlagsClass *flags_class, +gimp_flags_value_get_descconst gchar* gimp_flags_value_get_desc (GFlagsClass *flags_class, GFlagsValue *flags_value); Retrieves the translated desc for a given flags_value. @@ -384,7 +384,7 @@ <anchor id="gimp-flags-value-get-help"/>gimp_flags_value_get_help () -gimp_flags_value_get_helpconst gchar* gimp_flags_value_get_help (GFlagsClass *flags_class, +gimp_flags_value_get_helpconst gchar* gimp_flags_value_get_help (GFlagsClass *flags_class, GFlagsValue *flags_value); Retrieves the translated help for a given flags_value. diff -uraN gimp-2.2.8/devel-docs/libgimpbase/xml/gimpversion.xml gimp-2.2.9/devel-docs/libgimpbase/xml/gimpversion.xml --- gimp-2.2.8/devel-docs/libgimpbase/xml/gimpversion.xml 2005-06-27 00:18:40.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpbase/xml/gimpversion.xml 2005-10-27 17:14:05.000000000 +0200 @@ -64,14 +64,14 @@ <anchor id="GIMP-MICRO-VERSION:CAPS"/>GIMP_MICRO_VERSION -GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (8) +GIMP_MICRO_VERSION#define GIMP_MICRO_VERSION (9) <anchor id="GIMP-VERSION:CAPS"/>GIMP_VERSION -GIMP_VERSION#define GIMP_VERSION "2.2.8" +GIMP_VERSION#define GIMP_VERSION "2.2.9" diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/index.html gimp-2.2.9/devel-docs/libgimpcolor/html/index.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/index.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/index.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,34 +1,56 @@ -GIMP Color Library Reference Manual

- for GIMP 2.2.0 + + + +GIMP Color Library Reference Manual + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

I. GIMP Color Library
GimpRGB - Definitions and Functions relating to RGB colors.
GimpHSV - Definitions and Functions relating to HSV colors.
GimpCMYK - Definitions and Functions relating to CMYK colors.
GimpColorSpace - Utility functions which convert colors between different color models.
GimpAdaptiveSupersample - Functions to perform adaptive supersampling on an area.
GimpBilinear -
+

+
+
+
+
+

Table of Contents

+
+
I. GIMP Color Library
+
+
+GimpRGB - Definitions and Functions relating to RGB colors. +
+
+GimpHSV - Definitions and Functions relating to HSV colors. +
+
+GimpCMYK - Definitions and Functions relating to CMYK colors. +
+
+GimpColorSpace - Utility functions which convert colors between different color models. +
+
+GimpAdaptiveSupersample - Functions to perform adaptive supersampling on an area. +
+
+GimpBilinear - +
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/index.sgml gimp-2.2.9/devel-docs/libgimpcolor/html/index.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/html/index.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/index.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -28,12 +28,12 @@ - - - - - - + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor.devhelp gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor.devhelp --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor.devhelp 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor.devhelp 2005-10-27 17:14:05.000000000 +0200 @@ -11,7 +11,7 @@ - + @@ -40,24 +40,24 @@ - - - - - - - + + + + + + + - + - + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpAdaptiveSupersample.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,34 +1,36 @@ -GimpAdaptiveSupersample

GimpAdaptiveSupersample

GimpAdaptiveSupersample — Functions to perform adaptive supersampling on an area.

Synopsis

+
+
+
+GimpAdaptiveSupersample
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpAdaptiveSupersample

+

GimpAdaptiveSupersample — Functions to perform adaptive supersampling on an area.

+
+
+

Synopsis

+
 
 
 
@@ -56,42 +58,149 @@
                                              gpointer put_pixel_data,
                                              GimpProgressFunc progress_func,
                                              gpointer progress_data);
-

Description

+

+
+
+

Description

+

Functions to perform adaptive supersampling on an area. -

Details

GimpProgressFunc ()

void        (*GimpProgressFunc)             (gint min,
+

+
+
+

Details

+
+

+GimpProgressFunc ()

+
void        (*GimpProgressFunc)             (gint min,
                                              gint max,
                                              gint current,
-                                             gpointer data);

+ gpointer data); +

-

min : -
max : -
current : -
data : - - -

GimpPutPixelFunc ()

void        (*GimpPutPixelFunc)             (gint x,
+

+
++ + + + + + + + + + + + + + + + + + +
+min : +
+max : +
+current : +
+data : + + +
+
+
+
+

+GimpPutPixelFunc ()

+
void        (*GimpPutPixelFunc)             (gint x,
                                              gint y,
                                              GimpRGB *color,
-                                             gpointer data);

- -

x : -
y : -
color : -
data : - + gpointer data); +

-


GimpRenderFunc ()

void        (*GimpRenderFunc)               (gdouble x,
+

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+color : +
+data : + + +
+
+
+
+

+GimpRenderFunc ()

+
void        (*GimpRenderFunc)               (gdouble x,
                                              gdouble y,
                                              GimpRGB *color,
-                                             gpointer data);

+ gpointer data); +

-

x : -
y : -
color : -
data : - - -

gimp_adaptive_supersample_area ()

gulong      gimp_adaptive_supersample_area  (gint x1,
+

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+color : +
+data : + + +
+
+
+
+

+gimp_adaptive_supersample_area ()

+
gulong      gimp_adaptive_supersample_area  (gint x1,
                                              gint y1,
                                              gint x2,
                                              gint y2,
@@ -102,21 +211,101 @@
                                              GimpPutPixelFunc put_pixel_func,
                                              gpointer put_pixel_data,
                                              GimpProgressFunc progress_func,
-                                             gpointer progress_data);

- -

x1 : -
y1 : -
x2 : -
y2 : -
max_depth : -
threshold : -
render_func : -
render_data : -
put_pixel_func : -
put_pixel_data : -
progress_func : -
progress_data : -
Returns : - + gpointer progress_data); +

-

+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+x1 : +
+y1 : +
+x2 : +
+y2 : +
+max_depth : +
+threshold : +
+render_func : +
+render_data : +
+put_pixel_func : +
+put_pixel_data : +
+progress_func : +
+progress_data : +
+Returns : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpBilinear.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,34 +1,34 @@ -GimpBilinear

GimpBilinear

GimpBilinear —

Synopsis

+
+
+
+GimpBilinear
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpBilinear

+

GimpBilinear —

+
+
+

Synopsis

+
 
 
 
@@ -56,88 +56,339 @@
                                              guint bpp,
                                              gboolean has_alpha,
                                              guchar **values);
-

Description

- -

Details

gimp_bilinear ()

gdouble     gimp_bilinear                   (gdouble x,
-                                             gdouble y,
-                                             gdouble *values);

- -

x : -
y : -
values : -
Returns : - - -

gimp_bilinear_8 ()

guchar      gimp_bilinear_8                 (gdouble x,
-                                             gdouble y,
-                                             guchar *values);

- -

x : -
y : -
values : -
Returns : - - -

gimp_bilinear_16 ()

guint16     gimp_bilinear_16                (gdouble x,
-                                             gdouble y,
-                                             guint16 *values);

- -

x : -
y : -
values : -
Returns : - - -

gimp_bilinear_32 ()

guint32     gimp_bilinear_32                (gdouble x,
-                                             gdouble y,
-                                             guint32 *values);

- -

x : -
y : -
values : -
Returns : - - -

gimp_bilinear_rgb ()

GimpRGB     gimp_bilinear_rgb               (gdouble x,
-                                             gdouble y,
-                                             GimpRGB *values);

- -

x : -
y : -
values : -
Returns : - - -

gimp_bilinear_rgba ()

GimpRGB     gimp_bilinear_rgba              (gdouble x,
-                                             gdouble y,
-                                             GimpRGB *values);

- -

x : -
y : -
values : -
Returns : - - -

gimp_bilinear_pixels_8 ()

void        gimp_bilinear_pixels_8          (guchar *dest,
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+gimp_bilinear ()

+
gdouble     gimp_bilinear                   (gdouble x,
+                                             gdouble y,
+                                             gdouble *values);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+values : +
+Returns : + + +
+
+
+
+

+gimp_bilinear_8 ()

+
guchar      gimp_bilinear_8                 (gdouble x,
+                                             gdouble y,
+                                             guchar *values);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+values : +
+Returns : + + +
+
+
+
+

+gimp_bilinear_16 ()

+
guint16     gimp_bilinear_16                (gdouble x,
+                                             gdouble y,
+                                             guint16 *values);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+values : +
+Returns : + + +
+
+
+
+

+gimp_bilinear_32 ()

+
guint32     gimp_bilinear_32                (gdouble x,
+                                             gdouble y,
+                                             guint32 *values);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+values : +
+Returns : + + +
+
+
+
+

+gimp_bilinear_rgb ()

+
GimpRGB     gimp_bilinear_rgb               (gdouble x,
+                                             gdouble y,
+                                             GimpRGB *values);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+values : +
+Returns : + + +
+
+
+
+

+gimp_bilinear_rgba ()

+
GimpRGB     gimp_bilinear_rgba              (gdouble x,
+                                             gdouble y,
+                                             GimpRGB *values);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : +
+y : +
+values : +
+Returns : + + +
+
+
+
+

+gimp_bilinear_pixels_8 ()

+
void        gimp_bilinear_pixels_8          (guchar *dest,
                                              gdouble x,
                                              gdouble y,
                                              guint bpp,
                                              gboolean has_alpha,
-                                             guchar **values);

+ guchar **values);

+

Computes bilinear interpolation of four pixels. -

-When has_alpha is FALSE, it's identical to gimp_bilinear_8() on -each channel separately. When has_alpha is TRUE, it handles +

+

+When has_alpha is FALSE, it's identical to gimp_bilinear_8() on +each channel separately. When has_alpha is TRUE, it handles alpha channel correctly. -

-The pixels in values correspond to corner x, y coordinates in the -following order: [0,0], [1,0], [0,1], [1,1].

- -

dest : Pixel, where interpolation result is to be stored. -
x : x-coordinate (0.0 to 1.0). -
y : y-coordinate (0.0 to 1.0). -
bpp : Bytes per pixel. dest and each values item is an array of - bpp bytes. -
has_alpha : TRUE if the last channel is an alpha channel. -
values : Array of four pointers to pixels. -
+

+

+The pixels in values correspond to corner x, y coordinates in the +following order: [0,0], [1,0], [0,1], [1,1].

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+dest : Pixel, where interpolation result is to be stored. +
+x : x-coordinate (0.0 to 1.0). +
+y : y-coordinate (0.0 to 1.0). +
+bpp : Bytes per pixel. dest and each values item is an array of + bpp bytes. +
+has_alpha : TRUE if the last channel is an alpha channel. +
+values : Array of four pointers to pixels. +
+ + + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpCMYK.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,38 +1,40 @@ -GimpCMYK

GimpCMYK

GimpCMYK — Definitions and Functions relating to CMYK colors.

Synopsis

+
+
+
+GimpCMYK
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpCMYK

+

GimpCMYK — Definitions and Functions relating to CMYK colors.

+
+
+

Synopsis

+
 
 
 
-struct      GimpCMYK;
+            GimpCMYK;
 void        gimp_cmyk_set                   (GimpCMYK *cmyk,
                                              gdouble cyan,
                                              gdouble magenta,
@@ -66,96 +68,359 @@
                                              guchar *yellow,
                                              guchar *black,
                                              guchar *alpha);
-

Description

+

+
+
+

Description

+

Definitions and Functions relating to CMYK colors. -

Details

struct GimpCMYK

struct GimpCMYK {
-
+

+
+
+

Details

+
+

+GimpCMYK

+
typedef struct {
   gdouble c, m, y, k, a;
-};
-

- -


gimp_cmyk_set ()

void        gimp_cmyk_set                   (GimpCMYK *cmyk,
+} GimpCMYK;
+
+

+ +

+
+
+
+

+gimp_cmyk_set ()

+
void        gimp_cmyk_set                   (GimpCMYK *cmyk,
                                              gdouble cyan,
                                              gdouble magenta,
                                              gdouble yellow,
-                                             gdouble black);

+ gdouble black); +

Very basic initialiser for the internal GimpCMYK structure. Channel -values are doubles in the range 0 to 1.

+values are doubles in the range 0 to 1.

+

-

cmyk : A GimpCMYK structure which will hold the specified CMYK value. -
cyan : The Cyan channel of the CMYK value -
magenta : The Magenta channel -
yellow : The Yellow channel -
black : The blacK channel -

gimp_cmyk_set_uchar ()

void        gimp_cmyk_set_uchar             (GimpCMYK *cmyk,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+cmyk : A GimpCMYK structure which will hold the specified CMYK value. +
+cyan : The Cyan channel of the CMYK value +
+magenta : The Magenta channel +
+yellow : The Yellow channel +
+black : The blacK channel +
+
+
+
+

+gimp_cmyk_set_uchar ()

+
void        gimp_cmyk_set_uchar             (GimpCMYK *cmyk,
                                              guchar cyan,
                                              guchar magenta,
                                              guchar yellow,
-                                             guchar black);

-The same as gimp_cmyk_set(), except that channel values are -unsigned chars in the range 0 to 255.

- -

cmyk : A GimpCMYK structure which will hold the specified CMYK value. -
cyan : The Cyan channel of the CMYK value -
magenta : The Magenta channel -
yellow : The Yellow channel -
black : The blacK channel -

gimp_cmyk_get_uchar ()

void        gimp_cmyk_get_uchar             (const GimpCMYK *cmyk,
+                                             guchar black);
+

+The same as gimp_cmyk_set(), except that channel values are +unsigned chars in the range 0 to 255.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+cmyk : A GimpCMYK structure which will hold the specified CMYK value. +
+cyan : The Cyan channel of the CMYK value +
+magenta : The Magenta channel +
+yellow : The Yellow channel +
+black : The blacK channel +
+
+
+
+

+gimp_cmyk_get_uchar ()

+
void        gimp_cmyk_get_uchar             (const GimpCMYK *cmyk,
                                              guchar *cyan,
                                              guchar *magenta,
                                              guchar *yellow,
-                                             guchar *black);

+ guchar *black); +

Retrieve individual channel values from a GimpCMYK structure. Channel -values are pointers to unsigned chars in the range 0 to 255.

+values are pointers to unsigned chars in the range 0 to 255.

+

-

cmyk : A GimpCMYK structure which will hold the specified CMYK value. -
cyan : The Cyan channel of the CMYK value -
magenta : The Magenta channel -
yellow : The Yellow channel -
black : The blacK channel -

gimp_cmyka_set ()

void        gimp_cmyka_set                  (GimpCMYK *cmyka,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+cmyk : A GimpCMYK structure which will hold the specified CMYK value. +
+cyan : The Cyan channel of the CMYK value +
+magenta : The Magenta channel +
+yellow : The Yellow channel +
+black : The blacK channel +
+
+
+
+

+gimp_cmyka_set ()

+
void        gimp_cmyka_set                  (GimpCMYK *cmyka,
                                              gdouble cyan,
                                              gdouble magenta,
                                              gdouble yellow,
                                              gdouble black,
-                                             gdouble alpha);

+ gdouble alpha); +

Initialiser for the internal GimpCMYK structure. Channel values are -doubles in the range 0 to 1.

+doubles in the range 0 to 1.

+

-

cmyka : A GimpCMYK structure which will hold the specified CMYKA value. -
cyan : The Cyan channel of the CMYK value -
magenta : The Magenta channel -
yellow : The Yellow channel -
black : The blacK channel -
alpha : The Alpha channel -

gimp_cmyka_set_uchar ()

void        gimp_cmyka_set_uchar            (GimpCMYK *cmyka,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+cmyka : A GimpCMYK structure which will hold the specified CMYKA value. +
+cyan : The Cyan channel of the CMYK value +
+magenta : The Magenta channel +
+yellow : The Yellow channel +
+black : The blacK channel +
+alpha : The Alpha channel +
+
+
+
+

+gimp_cmyka_set_uchar ()

+
void        gimp_cmyka_set_uchar            (GimpCMYK *cmyka,
                                              guchar cyan,
                                              guchar magenta,
                                              guchar yellow,
                                              guchar black,
-                                             guchar alpha);

-The same as gimp_cmyka_set(), except that channel values are -unsigned chars in the range 0 to 255.

- -

cmyka : A GimpCMYK structure which will hold the specified CMYKA value. -
cyan : The Cyan channel of the CMYK value -
magenta : The Magenta channel -
yellow : The Yellow channel -
black : The blacK channel -
alpha : The Alpha channel -

gimp_cmyka_get_uchar ()

void        gimp_cmyka_get_uchar            (const GimpCMYK *cmyka,
+                                             guchar alpha);
+

+The same as gimp_cmyka_set(), except that channel values are +unsigned chars in the range 0 to 255.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+cmyka : A GimpCMYK structure which will hold the specified CMYKA value. +
+cyan : The Cyan channel of the CMYK value +
+magenta : The Magenta channel +
+yellow : The Yellow channel +
+black : The blacK channel +
+alpha : The Alpha channel +
+
+
+
+

+gimp_cmyka_get_uchar ()

+
void        gimp_cmyka_get_uchar            (const GimpCMYK *cmyka,
                                              guchar *cyan,
                                              guchar *magenta,
                                              guchar *yellow,
                                              guchar *black,
-                                             guchar *alpha);

+ guchar *alpha); +

Retrieve individual channel values from a GimpCMYK structure. -Channel values are pointers to unsigned chars in the range 0 to 255.

+Channel values are pointers to unsigned chars in the range 0 to 255.

+

-

cmyka : A GimpCMYK structure which will hold the specified CMYKA value. -
cyan : The Cyan channel of the CMYK value -
magenta : The Magenta channel -
yellow : The Yellow channel -
black : The blacK channel -
alpha : The Alpha channel -
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+cmyka : A GimpCMYK structure which will hold the specified CMYKA value. +
+cyan : The Cyan channel of the CMYK value +
+magenta : The Magenta channel +
+yellow : The Yellow channel +
+black : The blacK channel +
+alpha : The Alpha channel +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpColorSpace.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,38 +1,40 @@ -GimpColorSpace

GimpColorSpace

GimpColorSpace — Utility functions which convert colors between different color models.

Synopsis

+
+
+
+GimpColorSpace
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorSpace

+

GimpColorSpace — Utility functions which convert colors between different color models.

+
+
+

Synopsis

+
 
 
 
-struct      GimpHSL;
+            GimpHSL;
 void        gimp_rgb_to_hsv                 (const GimpRGB *rgb,
                                              GimpHSV *hsv);
 void        gimp_rgb_to_hsl                 (const GimpRGB *rgb,
@@ -85,197 +87,708 @@
                                              gdouble hue,
                                              gdouble saturation,
                                              gdouble value);
-

Description

+

+
+
+

Description

+

When programming pixel data manipulation functions you will often use algorithms operating on a color model different from the one GIMP uses. This file provides utility functions to convert colors between different color spaces. -

Details

struct GimpHSL

struct GimpHSL {
-
+

+
+
+

Details

+
+

+GimpHSL

+
typedef struct {
   gdouble h, s, l, a;
-};
-

- -


gimp_rgb_to_hsv ()

void        gimp_rgb_to_hsv                 (const GimpRGB *rgb,
-                                             GimpHSV *hsv);

+} GimpHSL; + +

+ +

+
+
+
+

+gimp_rgb_to_hsv ()

+
void        gimp_rgb_to_hsv                 (const GimpRGB *rgb,
+                                             GimpHSV *hsv);
+

Does a conversion from RGB to HSV (Hue, Saturation, -Value) colorspace.

+Value) colorspace.

+

-

rgb : A color value in the RGB colorspace -
hsv : The value converted to the HSV colorspace -

gimp_rgb_to_hsl ()

void        gimp_rgb_to_hsl                 (const GimpRGB *rgb,
-                                             GimpHSL *hsl);

+

+
++ + + + + + + + + + +
+rgb : A color value in the RGB colorspace +
+hsv : The value converted to the HSV colorspace +
+
+
+
+

+gimp_rgb_to_hsl ()

+
void        gimp_rgb_to_hsl                 (const GimpRGB *rgb,
+                                             GimpHSL *hsl);
+

Convert an RGB color value to a HSL (Hue, Saturation, Lightness) -color value.

+color value.

+

-

rgb : A color value in the RGB colorspace -
hsl : The value converted to HSL -

gimp_rgb_to_cmyk ()

void        gimp_rgb_to_cmyk                (const GimpRGB *rgb,
+

+
++ + + + + + + + + + +
+rgb : A color value in the RGB colorspace +
+hsl : The value converted to HSL +
+
+
+
+

+gimp_rgb_to_cmyk ()

+
void        gimp_rgb_to_cmyk                (const GimpRGB *rgb,
                                              gdouble pullout,
-                                             GimpCMYK *cmyk);

+ GimpCMYK *cmyk); +

Does a naive conversion from RGB to CMYK colorspace. A simple formula that doesn't take any color-profiles into account is used. -The amount of black pullout how can be controlled via the pullout -parameter. A pullout value of 0 makes this a conversion to CMY. -A value of 1 causes the maximum amount of black to be pulled out.

- -

+ + + + + + +
rgb : A value in the RGB colorspace -
pullout : A scaling value (0-1) indicating how much black should be +The amount of black pullout how can be controlled via the pullout +parameter. A pullout value of 0 makes this a conversion to CMY. +A value of 1 causes the maximum amount of black to be pulled out.

+

+ +

+
++ + + + + + + +
+rgb : A value in the RGB colorspace +
+pullout : A scaling value (0-1) indicating how much black should be pulled out -
cmyk : The input value naively converted to the CMYK colorspace -

gimp_hsv_to_rgb ()

void        gimp_hsv_to_rgb                 (const GimpHSV *hsv,
-                                             GimpRGB *rgb);

-Converts a color value from HSV to RGB colorspace

- -

hsv : A color value in the HSV colorspace -
rgb : The returned RGB value. -

gimp_hsl_to_rgb ()

void        gimp_hsl_to_rgb                 (const GimpHSL *hsl,
-                                             GimpRGB *rgb);

-Convert a HSL color value to an RGB color value.

- -

hsl : A color value in the HSL colorspace -
rgb : The value converted to a value in the RGB colorspace -

gimp_cmyk_to_rgb ()

void        gimp_cmyk_to_rgb                (const GimpCMYK *cmyk,
-                                             GimpRGB *rgb);

+

+cmyk : The input value naively converted to the CMYK colorspace +
+
+
+
+

+gimp_hsv_to_rgb ()

+
void        gimp_hsv_to_rgb                 (const GimpHSV *hsv,
+                                             GimpRGB *rgb);
+

+Converts a color value from HSV to RGB colorspace

+

+ +

+
++ + + + + + + + + + +
+hsv : A color value in the HSV colorspace +
+rgb : The returned RGB value. +
+
+
+
+

+gimp_hsl_to_rgb ()

+
void        gimp_hsl_to_rgb                 (const GimpHSL *hsl,
+                                             GimpRGB *rgb);
+

+Convert a HSL color value to an RGB color value.

+

+ +

+
++ + + + + + + + + + +
+hsl : A color value in the HSL colorspace +
+rgb : The value converted to a value in the RGB colorspace +
+
+
+
+

+gimp_cmyk_to_rgb ()

+
void        gimp_cmyk_to_rgb                (const GimpCMYK *cmyk,
+                                             GimpRGB *rgb);
+

Does a simple transformation from the CMYK colorspace to the RGB -colorspace, without taking color profiles into account.

+colorspace, without taking color profiles into account.

+

-

cmyk : A color value in the CMYK colorspace -
rgb : The value converted to the RGB colorspace -

gimp_rgb_to_hwb ()

void        gimp_rgb_to_hwb                 (const GimpRGB *rgb,
+

+
++ + + + + + + + + + +
+cmyk : A color value in the CMYK colorspace +
+rgb : The value converted to the RGB colorspace +
+
+
+
+

+gimp_rgb_to_hwb ()

+
void        gimp_rgb_to_hwb                 (const GimpRGB *rgb,
                                              gdouble *hue,
                                              gdouble *whiteness,
-                                             gdouble *blackness);

+ gdouble *blackness); +

Theoretically, hue 0 (pure red) is identical to hue 6 in these transforms. Pure red always maps to 6 in this implementation. Therefore UNDEFINED can be defined as 0 in situations where only unsigned numbers are desired. -

+

+

RGB are each on [0, 1]. Whiteness and Blackness are returned in the range [0, 1] and H is returned in the range [0, 6]. If W == 1 - B, H is -undefined.

+undefined.

+

-

rgb : A color value in the RGB colorspace -
hue : The hue value of the above color, in the range 0 to 6 -
whiteness : The whiteness value of the above color, in the range 0 to 1 -
blackness : The blackness value of the above color, in the range 0 to 1 -

gimp_hwb_to_rgb ()

void        gimp_hwb_to_rgb                 (gdouble hue,
+

+
++ + + + + + + + + + + + + + + + + + +
+rgb : A color value in the RGB colorspace +
+hue : The hue value of the above color, in the range 0 to 6 +
+whiteness : The whiteness value of the above color, in the range 0 to 1 +
+blackness : The blackness value of the above color, in the range 0 to 1 +
+
+
+
+

+gimp_hwb_to_rgb ()

+
void        gimp_hwb_to_rgb                 (gdouble hue,
                                              gdouble whiteness,
                                              gdouble blackness,
-                                             GimpRGB *rgb);

+ GimpRGB *rgb); +

H is defined in the range [0, 6] or UNDEFINED, B and W are both in the -range [0, 1]. The returned RGB values are all in the range [0, 1].

+range [0, 1]. The returned RGB values are all in the range [0, 1].

+

-

hue : A hue value, in the range 0 to 6 -
whiteness : A whiteness value, in the range 0 to 1 -
blackness : A blackness value, in the range 0 to 1 -
rgb : The above color converted to the RGB colorspace -

gimp_rgb_to_hsv_int ()

void        gimp_rgb_to_hsv_int             (gint *red,
+

+
++ + + + + + + + + + + + + + + + + + +
+hue : A hue value, in the range 0 to 6 +
+whiteness : A whiteness value, in the range 0 to 1 +
+blackness : A blackness value, in the range 0 to 1 +
+rgb : The above color converted to the RGB colorspace +
+
+
+
+

+gimp_rgb_to_hsv_int ()

+
void        gimp_rgb_to_hsv_int             (gint *red,
                                              gint *green,
-                                             gint *blue);

+ gint *blue); +

The arguments are pointers to int representing channel values in the RGB colorspace, and the values pointed to are all in the range [0, 255]. -

+

+

The function changes the arguments to point to the HSV value corresponding, with the returned values in the following -ranges: H [0, 360], S [0, 255], V [0, 255].

+ranges: H [0, 360], S [0, 255], V [0, 255].

+

-

red : The red channel value, returns the Hue channel -
green : The green channel value, returns the Saturation channel -
blue : The blue channel value, returns the Value channel -

gimp_hsv_to_rgb_int ()

void        gimp_hsv_to_rgb_int             (gint *hue,
+

+
++ + + + + + + + + + + + + + +
+red : The red channel value, returns the Hue channel +
+green : The green channel value, returns the Saturation channel +
+blue : The blue channel value, returns the Value channel +
+
+
+
+

+gimp_hsv_to_rgb_int ()

+
void        gimp_hsv_to_rgb_int             (gint *hue,
                                              gint *saturation,
-                                             gint *value);

+ gint *value); +

The arguments are pointers to int, with the values pointed to in the following ranges: H [0, 360], S [0, 255], V [0, 255]. -

+

+

The function changes the arguments to point to the RGB value -corresponding, with the returned values all in the range [0, 255].

+corresponding, with the returned values all in the range [0, 255].

+

-

hue : The hue channel, returns the red channel -
saturation : The saturation channel, returns the green channel -
value : The value channel, returns the blue channel -

gimp_rgb_to_hsl_int ()

void        gimp_rgb_to_hsl_int             (gint *red,
+

+
++ + + + + + + + + + + + + + +
+hue : The hue channel, returns the red channel +
+saturation : The saturation channel, returns the green channel +
+value : The value channel, returns the blue channel +
+
+
+
+

+gimp_rgb_to_hsl_int ()

+
void        gimp_rgb_to_hsl_int             (gint *red,
                                              gint *green,
-                                             gint *blue);

+ gint *blue); +

The arguments are pointers to int representing channel values in the RGB colorspace, and the values pointed to are all in the range [0, 255]. -

+

+

The function changes the arguments to point to the corresponding HLS value with the values pointed to in the following ranges: H [0, 360], -L [0, 255], S [0, 255].

+L [0, 255], S [0, 255].

+

-

red : Red channel, returns Hue channel -
green : Green channel, returns Lightness channel -
blue : Blue channel, returns Saturation channel -

gimp_rgb_to_cmyk_int ()

void        gimp_rgb_to_cmyk_int            (gint *red,
+

+
++ + + + + + + + + + + + + + +
+red : Red channel, returns Hue channel +
+green : Green channel, returns Lightness channel +
+blue : Blue channel, returns Saturation channel +
+
+
+
+

+gimp_rgb_to_cmyk_int ()

+
void        gimp_rgb_to_cmyk_int            (gint *red,
                                              gint *green,
                                              gint *blue,
-                                             gint *pullout);

+ gint *pullout); +

Does a naive conversion from RGB to CMYK colorspace. A simple formula that doesn't take any color-profiles into account is used. -The amount of black pullout how can be controlled via the pullout -parameter. A pullout value of 0 makes this a conversion to CMY. -A value of 100 causes the maximum amount of black to be pulled out.

- -

+ + +
red : the red channel; returns the cyan value (0-255) -
green : the green channel; returns the magenta value (0-255) -
blue : the blue channel; returns the yellow value (0-255) -
pullout : the percentage of black to pull out (0-100); returns +The amount of black pullout how can be controlled via the pullout +parameter. A pullout value of 0 makes this a conversion to CMY. +A value of 100 causes the maximum amount of black to be pulled out.

+

+ +

+
++ + + + + + + + + + + + + + + +
+red : the red channel; returns the cyan value (0-255) +
+green : the green channel; returns the magenta value (0-255) +
+blue : the blue channel; returns the yellow value (0-255) +
+pullout : the percentage of black to pull out (0-100); returns the black value (0-255) -

gimp_cmyk_to_rgb_int ()

void        gimp_cmyk_to_rgb_int            (gint *cyan,
+
+
+
+
+

+gimp_cmyk_to_rgb_int ()

+
void        gimp_cmyk_to_rgb_int            (gint *cyan,
                                              gint *magenta,
                                              gint *yellow,
-                                             gint *black);

+ gint *black); +

Does a naive conversion from CMYK to RGB colorspace. A simple -formula that doesn't take any color-profiles into account is used.

+formula that doesn't take any color-profiles into account is used.

+

-

cyan : the cyan channel; returns the red value (0-255) -
magenta : the magenta channel; returns the green value (0-255) -
yellow : the yellow channel; returns the blue value (0-255) -
black : the black channel (0-255); doesn't change -

gimp_rgb_to_l_int ()

gint        gimp_rgb_to_l_int               (gint red,
+

+
++ + + + + + + + + + + + + + + + + + +
+cyan : the cyan channel; returns the red value (0-255) +
+magenta : the magenta channel; returns the green value (0-255) +
+yellow : the yellow channel; returns the blue value (0-255) +
+black : the black channel (0-255); doesn't change +
+
+
+
+

+gimp_rgb_to_l_int ()

+
gint        gimp_rgb_to_l_int               (gint red,
                                              gint green,
-                                             gint blue);

+ gint blue); +

Calculates the lightness value of an RGB triplet with the formula -L = (max(R, G, B) + min (R, G, B)) / 2

+L = (max(R, G, B) + min (R, G, B)) / 2

+

-

red : Red channel -
green : Green channel -
blue : Blue channel -
Returns : Luminance vaue corresponding to the input RGB value -

gimp_hsl_to_rgb_int ()

void        gimp_hsl_to_rgb_int             (gint *hue,
+

+
++ + + + + + + + + + + + + + + + + + +
+red : Red channel +
+green : Green channel +
+blue : Blue channel +
+Returns : Luminance vaue corresponding to the input RGB value +
+
+
+
+

+gimp_hsl_to_rgb_int ()

+
void        gimp_hsl_to_rgb_int             (gint *hue,
                                              gint *saturation,
-                                             gint *lightness);

+ gint *lightness); +

The arguments are pointers to int, with the values pointed to in the following ranges: H [0, 360], L [0, 255], S [0, 255]. -

+

+

The function changes the arguments to point to the RGB value -corresponding, with the returned values all in the range [0, 255].

+corresponding, with the returned values all in the range [0, 255].

+

-

hue : Hue channel, returns Red channel -
saturation : Saturation channel, returns Green channel -
lightness : Lightness channel, returns Blue channel -

gimp_rgb_to_hsv4 ()

void        gimp_rgb_to_hsv4                (guchar *rgb,
+

+
++ + + + + + + + + + + + + + +
+hue : Hue channel, returns Red channel +
+saturation : Saturation channel, returns Green channel +
+lightness : Lightness channel, returns Blue channel +
+
+
+
+

+gimp_rgb_to_hsv4 ()

+
void        gimp_rgb_to_hsv4                (guchar *rgb,
                                              gdouble *hue,
                                              gdouble *saturation,
-                                             gdouble *value);

-

- -

+ + + + + + + + + + + + + + +
rgb : RGB triplet, rgb[0] is red channel, rgb[1] is green, + gdouble *value); +

+

+

+ +

+
++ + + +
+rgb : RGB triplet, rgb[0] is red channel, rgb[1] is green, rgb[2] is blue (0..255) -
hue : Pointer to hue channel (0..1) -
saturation : Pointer to saturation channel (0..1) -
value : Pointer to value channel (0..1) -

gimp_hsv_to_rgb4 ()

void        gimp_hsv_to_rgb4                (guchar *rgb,
+
+hue : Pointer to hue channel (0..1) +
+saturation : Pointer to saturation channel (0..1) +
+value : Pointer to value channel (0..1) +
+
+
+
+

+gimp_hsv_to_rgb4 ()

+
void        gimp_hsv_to_rgb4                (guchar *rgb,
                                              gdouble hue,
                                              gdouble saturation,
-                                             gdouble value);

-

- -

+ + + + + + + + + + + + + + +
rgb : RGB triplet, rgb[0] is red channel, rgb[1] is green, + gdouble value); +

+

+

+ +

+
++ + + +
+rgb : RGB triplet, rgb[0] is red channel, rgb[1] is green, rgb[2] is blue (0..255) -
hue : Hue channel (0..1) -
saturation : Saturation channel (0..1) -
value : Value channel (0..1) -
+
+hue : Hue channel (0..1) +
+saturation : Saturation channel (0..1) +
+value : Value channel (0..1) +
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpHSV.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,38 +1,40 @@ -GimpHSV

GimpHSV

GimpHSV — Definitions and Functions relating to HSV colors.

Synopsis

+
+
+
+GimpHSV
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpHSV

+

GimpHSV — Definitions and Functions relating to HSV colors.

+
+
+

Synopsis

+
 
 
 
-struct      GimpHSV;
+            GimpHSV;
 void        gimp_hsv_set                    (GimpHSV *hsv,
                                              gdouble hue,
                                              gdouble saturation,
@@ -43,41 +45,145 @@
                                              gdouble saturation,
                                              gdouble value,
                                              gdouble alpha);
-

Description

+

+
+
+

Description

+

Definitions and Functions relating to HSV colors. -

Details

struct GimpHSV

struct GimpHSV {
-
+

+
+
+

Details

+
+

+GimpHSV

+
typedef struct {
   gdouble h, s, v, a;
-};
-

- -


gimp_hsv_set ()

void        gimp_hsv_set                    (GimpHSV *hsv,
+} GimpHSV;
+
+

+ +

+
+
+
+

+gimp_hsv_set ()

+
void        gimp_hsv_set                    (GimpHSV *hsv,
                                              gdouble hue,
                                              gdouble saturation,
-                                             gdouble value);

- -

hsv : -
hue : -
saturation : -
value : - - -

gimp_hsv_clamp ()

void        gimp_hsv_clamp                  (GimpHSV *hsv);

+ gdouble value); +

-

hsv : - - -

gimp_hsva_set ()

void        gimp_hsva_set                   (GimpHSV *hsva,
+

+
++ + + + + + + + + + + + + + + + + + +
+hsv : +
+hue : +
+saturation : +
+value : + + +
+
+
+
+

+gimp_hsv_clamp ()

+
void        gimp_hsv_clamp                  (GimpHSV *hsv);
+

+ +

+
++ + + + +
+hsv : + + +
+
+
+
+

+gimp_hsva_set ()

+
void        gimp_hsva_set                   (GimpHSV *hsva,
                                              gdouble hue,
                                              gdouble saturation,
                                              gdouble value,
-                                             gdouble alpha);

- -

hsva : -
hue : -
saturation : -
value : -
alpha : - + gdouble alpha); +

-

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+hsva : +
+hue : +
+saturation : +
+value : +
+alpha : + + +
+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor-GimpRGB.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,38 +1,40 @@ -GimpRGB

GimpRGB

GimpRGB — Definitions and Functions relating to RGB colors.

Synopsis

+
+
+
+GimpRGB
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpRGB

+

GimpRGB — Definitions and Functions relating to RGB colors.

+
+
+

Synopsis

+
 
 
 
-struct      GimpRGB;
+            GimpRGB;
 enum        GimpRGBCompositeMode;
 void        gimp_rgb_set                    (GimpRGB *rgb,
                                              gdouble red,
@@ -103,321 +105,1160 @@
                                              gdouble factor);
 gdouble     gimp_rgba_distance              (const GimpRGB *rgba1,
                                              const GimpRGB *rgba2);
-#define     GIMP_RGB_INTENSITY              (r,g,b)
-#define     GIMP_RGB_INTENSITY_RED
-#define     GIMP_RGB_INTENSITY_GREEN
-#define     GIMP_RGB_INTENSITY_BLUE
-#define     GIMP_TYPE_RGB
-#define     GIMP_VALUE_HOLDS_RGB            (value)
-
-

Description

+#define GIMP_RGB_INTENSITY (r,g,b) +#define GIMP_RGB_INTENSITY_RED +#define GIMP_RGB_INTENSITY_GREEN +#define GIMP_RGB_INTENSITY_BLUE +#define GIMP_TYPE_RGB +#define GIMP_VALUE_HOLDS_RGB (value) + +

+
+
+

Description

+

Definitions and Functions relating to RGB colors. -

Details

struct GimpRGB

struct GimpRGB {
-
+

+
+
+

Details

+
+

+GimpRGB

+
typedef struct {
   gdouble r, g, b, a;
-};
-

- -


enum GimpRGBCompositeMode

typedef enum
+} GimpRGB;
+
+

+ +

+
+
+
+

+enum GimpRGBCompositeMode

+
typedef enum
 {
   GIMP_RGB_COMPOSITE_NONE = 0,
   GIMP_RGB_COMPOSITE_NORMAL,
   GIMP_RGB_COMPOSITE_BEHIND
 } GimpRGBCompositeMode;
-

+ +

-


gimp_rgb_set ()

void        gimp_rgb_set                    (GimpRGB *rgb,
+

+
+
+
+

+gimp_rgb_set ()

+
void        gimp_rgb_set                    (GimpRGB *rgb,
                                              gdouble red,
                                              gdouble green,
-                                             gdouble blue);

-Sets the red, green and blue components of rgb and leaves the + gdouble blue); +

+Sets the red, green and blue components of rgb and leaves the alpha component unchanged. The color values should be between 0.0 and 1.0 but there is no check to enforce this and the values are -set exactly as they are passed in.

+set exactly as they are passed in.

+

-

rgb : a GimpRGB struct -
red : -
green : -
blue : -

gimp_rgb_set_alpha ()

void        gimp_rgb_set_alpha              (GimpRGB *rgb,
-                                             gdouble alpha);

-Sets the alpha component of rgb and leaves the RGB components unchanged.

- -

rgb : a GimpRGB struct -
alpha : -

gimp_rgb_set_uchar ()

void        gimp_rgb_set_uchar              (GimpRGB *rgb,
+

+
++ + + + + + + + + + + + + + + + + + +
+rgb : a GimpRGB struct +
+red : +
+green : +
+blue : +
+
+
+
+

+gimp_rgb_set_alpha ()

+
void        gimp_rgb_set_alpha              (GimpRGB *rgb,
+                                             gdouble alpha);
+

+Sets the alpha component of rgb and leaves the RGB components unchanged.

+

+ +

+
++ + + + + + + + + + +
+rgb : a GimpRGB struct +
+alpha : +
+
+
+
+

+gimp_rgb_set_uchar ()

+
void        gimp_rgb_set_uchar              (GimpRGB *rgb,
                                              guchar red,
                                              guchar green,
-                                             guchar blue);

-Sets the red, green and blue components of rgb from 8bit values -(0 to 255) and leaves the alpha component unchanged.

- -

rgb : a GimpRGB struct -
red : -
green : -
blue : -

gimp_rgb_get_uchar ()

void        gimp_rgb_get_uchar              (const GimpRGB *rgb,
+                                             guchar blue);
+

+Sets the red, green and blue components of rgb from 8bit values +(0 to 255) and leaves the alpha component unchanged.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+rgb : a GimpRGB struct +
+red : +
+green : +
+blue : +
+
+
+
+

+gimp_rgb_get_uchar ()

+
void        gimp_rgb_get_uchar              (const GimpRGB *rgb,
                                              guchar *red,
                                              guchar *green,
-                                             guchar *blue);

- -

rgb : -
red : -
green : -
blue : - + guchar *blue); +

-


gimp_rgb_parse_name ()

gboolean    gimp_rgb_parse_name             (GimpRGB *rgb,
+

+
++ + + + + + + + + + + + + + + + + + +
+rgb : +
+red : +
+green : +
+blue : + + +
+
+
+
+

+gimp_rgb_parse_name ()

+
gboolean    gimp_rgb_parse_name             (GimpRGB *rgb,
                                              const gchar *name,
-                                             gint len);

+ gint len); +

Attempts to parse a color name. This function accepts RGB hex values or SVG 1.0 color keywords. The format of an RGB value in hexadecimal notation is a '#' immediately followed by either three or six hexadecimal characters. -

-This funcion does not touch the alpha component of rgb.

- -

rgb : a GimpRGB struct used to return the parsed color -
name : a color name (in UTF-8 encoding) -
len : the length of name, in bytes. or -1 if name is nul-terminated -
Returns : TRUE if name was parsed successfully and rgb has been - set, FALSE otherwise - -

Since GIMP 2.2 -


gimp_rgb_parse_hex ()

gboolean    gimp_rgb_parse_hex              (GimpRGB *rgb,
+

+

+This funcion does not touch the alpha component of rgb.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+rgb : a GimpRGB struct used to return the parsed color +
+name : a color name (in UTF-8 encoding) +
+len : the length of name, in bytes. or -1 if name is nul-terminated +
+Returns : TRUE if name was parsed successfully and rgb has been + set, FALSE otherwise + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_rgb_parse_hex ()

+
gboolean    gimp_rgb_parse_hex              (GimpRGB *rgb,
                                              const gchar *hex,
-                                             gint len);

+ gint len); +

Attempts to parse a string describing a color in RGB value in hexadecimal notation (optionally prefixed with a '#'). -

-This funcion does not touch the alpha component of rgb.

- -

rgb : a GimpRGB struct used to return the parsed color -
hex : a string describing a color in hexadecimal notation -
len : the length of hex, in bytes. or -1 if hex is nul-terminated -
Returns : TRUE if hex was parsed successfully and rgb has been - set, FALSE otherwise - -

Since GIMP 2.2 -


gimp_rgb_parse_css ()

gboolean    gimp_rgb_parse_css              (GimpRGB *rgb,
+

+

+This funcion does not touch the alpha component of rgb.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+rgb : a GimpRGB struct used to return the parsed color +
+hex : a string describing a color in hexadecimal notation +
+len : the length of hex, in bytes. or -1 if hex is nul-terminated +
+Returns : TRUE if hex was parsed successfully and rgb has been + set, FALSE otherwise + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_rgb_parse_css ()

+
gboolean    gimp_rgb_parse_css              (GimpRGB *rgb,
                                              const gchar *css,
-                                             gint len);

+ gint len); +

Attempts to parse a string describing a color in RGB value in CSS notation. This can be either a numerical representation -(rgb(255,0,0) or rgb(100%,0%,0%)) or -a hexadecimal notation as parsed by gimp_rgb_parse_hex() -(#ff0000) or a color name as parsed by -gimp_rgb_parse_name() (red). -

-This funcion does not touch the alpha component of rgb.

- -

rgb : a GimpRGB struct used to return the parsed color -
css : a string describing a color in CSS notation -
len : the length of hex, in bytes. or -1 if hex is nul-terminated -
Returns : TRUE if css was parsed successfully and rgb has been - set, FALSE otherwise - -

Since GIMP 2.2 -


gimp_rgb_list_names ()

gint        gimp_rgb_list_names             (const gchar ***names,
-                                             GimpRGB **colors);

+(rgb(255,0,0) or rgb(100%,0%,0%)) or +a hexadecimal notation as parsed by gimp_rgb_parse_hex() +(#ff0000) or a color name as parsed by +gimp_rgb_parse_name() (red). +

+

+This funcion does not touch the alpha component of rgb.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+rgb : a GimpRGB struct used to return the parsed color +
+css : a string describing a color in CSS notation +
+len : the length of hex, in bytes. or -1 if hex is nul-terminated +
+Returns : TRUE if css was parsed successfully and rgb has been + set, FALSE otherwise + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_rgb_list_names ()

+
gint        gimp_rgb_list_names             (const gchar ***names,
+                                             GimpRGB **colors);
+

Allows to retrieve the list of SVG 1.0 color -keywords that is used by gimp_rgb_parse_name(). -

+keywords that is used by gimp_rgb_parse_name(). +

+

The returned strings are const and must not be freed. Only the two -arrays are allocated dynamically. You must call g_free() on the -names and colors arrays when they are not any longer needed.

- -

+ + +
names : return location for an array of color names -
colors : return location for an array of GimpRGB structs -
Returns : the number of named colors +arrays are allocated dynamically. You must call g_free() on the +names and colors arrays when they are not any longer needed.

+

+ +

+
++ + + + + + + + + + + +
+names : return location for an array of color names +
+colors : return location for an array of GimpRGB structs +
+Returns : the number of named colors (i.e. the length of the returned arrays) -

Since GIMP 2.2 -


gimp_rgb_add ()

void        gimp_rgb_add                    (GimpRGB *rgb1,
-                                             const GimpRGB *rgb2);

- -

rgb1 : -
rgb2 : - - -

gimp_rgb_subtract ()

void        gimp_rgb_subtract               (GimpRGB *rgb1,
-                                             const GimpRGB *rgb2);

- -

rgb1 : -
rgb2 : - - -

gimp_rgb_multiply ()

void        gimp_rgb_multiply               (GimpRGB *rgb1,
-                                             gdouble factor);

- -

rgb1 : -
factor : - - -

gimp_rgb_distance ()

gdouble     gimp_rgb_distance               (const GimpRGB *rgb1,
-                                             const GimpRGB *rgb2);

- -

rgb1 : -
rgb2 : -
Returns : - - -

gimp_rgb_max ()

gdouble     gimp_rgb_max                    (const GimpRGB *rgb);

- -

rgb : -
Returns : - - -

gimp_rgb_min ()

gdouble     gimp_rgb_min                    (const GimpRGB *rgb);

- -

rgb : -
Returns : - - -

gimp_rgb_clamp ()

void        gimp_rgb_clamp                  (GimpRGB *rgb);

- -

rgb : - - -

gimp_rgb_gamma ()

void        gimp_rgb_gamma                  (GimpRGB *rgb,
-                                             gdouble gamma);

- -

rgb : -
gamma : - - -

gimp_rgb_intensity ()

gdouble     gimp_rgb_intensity              (const GimpRGB *rgb);

- -

rgb : -
Returns : - - -

gimp_rgb_intensity_uchar ()

guchar      gimp_rgb_intensity_uchar        (const GimpRGB *rgb);

- -

rgb : -
Returns : - - -

gimp_rgb_composite ()

void        gimp_rgb_composite              (GimpRGB *color1,
+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_rgb_add ()

+
void        gimp_rgb_add                    (GimpRGB *rgb1,
+                                             const GimpRGB *rgb2);
+

+ +

+
++ + + + + + + + + + +
+rgb1 : +
+rgb2 : + + +
+
+
+
+

+gimp_rgb_subtract ()

+
void        gimp_rgb_subtract               (GimpRGB *rgb1,
+                                             const GimpRGB *rgb2);
+

+ +

+
++ + + + + + + + + + +
+rgb1 : +
+rgb2 : + + +
+
+
+
+

+gimp_rgb_multiply ()

+
void        gimp_rgb_multiply               (GimpRGB *rgb1,
+                                             gdouble factor);
+

+ +

+
++ + + + + + + + + + +
+rgb1 : +
+factor : + + +
+
+
+
+

+gimp_rgb_distance ()

+
gdouble     gimp_rgb_distance               (const GimpRGB *rgb1,
+                                             const GimpRGB *rgb2);
+

+ +

+
++ + + + + + + + + + + + + + +
+rgb1 : +
+rgb2 : +
+Returns : + + +
+
+
+
+

+gimp_rgb_max ()

+
gdouble     gimp_rgb_max                    (const GimpRGB *rgb);
+

+ +

+
++ + + + + + + + + + +
+rgb : +
+Returns : + + +
+
+
+
+

+gimp_rgb_min ()

+
gdouble     gimp_rgb_min                    (const GimpRGB *rgb);
+

+ +

+
++ + + + + + + + + + +
+rgb : +
+Returns : + + +
+
+
+
+

+gimp_rgb_clamp ()

+
void        gimp_rgb_clamp                  (GimpRGB *rgb);
+

+ +

+
++ + + + +
+rgb : + + +
+
+
+
+

+gimp_rgb_gamma ()

+
void        gimp_rgb_gamma                  (GimpRGB *rgb,
+                                             gdouble gamma);
+

+ +

+
++ + + + + + + + + + +
+rgb : +
+gamma : + + +
+
+
+
+

+gimp_rgb_intensity ()

+
gdouble     gimp_rgb_intensity              (const GimpRGB *rgb);
+

+ +

+
++ + + + + + + + + + +
+rgb : +
+Returns : + + +
+
+
+
+

+gimp_rgb_intensity_uchar ()

+
guchar      gimp_rgb_intensity_uchar        (const GimpRGB *rgb);
+

+ +

+
++ + + + + + + + + + +
+rgb : +
+Returns : + + +
+
+
+
+

+gimp_rgb_composite ()

+
void        gimp_rgb_composite              (GimpRGB *color1,
                                              const GimpRGB *color2,
-                                             GimpRGBCompositeMode mode);

- -

color1 : -
color2 : -
mode : + GimpRGBCompositeMode mode); +

- -


gimp_rgba_set ()

void        gimp_rgba_set                   (GimpRGB *rgba,
+

+
++ + + + + + + + + + + + + + +
+color1 : +
+color2 : +
+mode : + + +
+
+
+
+

+gimp_rgba_set ()

+
void        gimp_rgba_set                   (GimpRGB *rgba,
                                              gdouble red,
                                              gdouble green,
                                              gdouble blue,
-                                             gdouble alpha);

-Sets the red, green, blue and alpha components of rgb. The values + gdouble alpha); +

+Sets the red, green, blue and alpha components of rgb. The values should be between 0.0 and 1.0 but there is no check to enforce this -and the values are set exactly as they are passed in.

+and the values are set exactly as they are passed in.

+

-

rgba : a GimpRGB struct -
red : -
green : -
blue : -
alpha : -

gimp_rgba_set_uchar ()

void        gimp_rgba_set_uchar             (GimpRGB *rgba,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+rgba : a GimpRGB struct +
+red : +
+green : +
+blue : +
+alpha : +
+
+
+
+

+gimp_rgba_set_uchar ()

+
void        gimp_rgba_set_uchar             (GimpRGB *rgba,
                                              guchar red,
                                              guchar green,
                                              guchar blue,
-                                             guchar alpha);

-Sets the red, green, blue and alpha components of rgb from 8bit -values (0 to 255).

- -

rgba : a GimpRGB struct -
red : -
green : -
blue : -
alpha : -

gimp_rgba_get_uchar ()

void        gimp_rgba_get_uchar             (const GimpRGB *rgba,
+                                             guchar alpha);
+

+Sets the red, green, blue and alpha components of rgb from 8bit +values (0 to 255).

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+rgba : a GimpRGB struct +
+red : +
+green : +
+blue : +
+alpha : +
+
+
+
+

+gimp_rgba_get_uchar ()

+
void        gimp_rgba_get_uchar             (const GimpRGB *rgba,
                                              guchar *red,
                                              guchar *green,
                                              guchar *blue,
-                                             guchar *alpha);

- -

rgba : -
red : -
green : -
blue : -
alpha : + guchar *alpha); +

- -


gimp_rgba_parse_css ()

gboolean    gimp_rgba_parse_css             (GimpRGB *rgba,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+rgba : +
+red : +
+green : +
+blue : +
+alpha : + + +
+
+
+
+

+gimp_rgba_parse_css ()

+
gboolean    gimp_rgba_parse_css             (GimpRGB *rgba,
                                              const gchar *css,
-                                             gint len);

-Similar to gimp_rgb_parse_css() but handles RGB colors with alpha -channel in the numerical CSS notation (rgba(255,0,0,255) -or rgba(100%,0%,0%,1000%)). -

+ gint len); +

+Similar to gimp_rgb_parse_css() but handles RGB colors with alpha +channel in the numerical CSS notation (rgba(255,0,0,255) +or rgba(100%,0%,0%,1000%)). +

+

It doesn't handle the hexadecimal notation or color names because -they leave the alpha channel unspecified.

- -

rgba : a GimpRGB struct used to return the parsed color -
css : a string describing a color in CSS notation -
len : the length of hex, in bytes. or -1 if hex is nul-terminated -
Returns : TRUE if css was parsed successfully and rgb has been - set, FALSE otherwise - -

Since GIMP 2.2 -


gimp_rgba_add ()

void        gimp_rgba_add                   (GimpRGB *rgba1,
-                                             const GimpRGB *rgba2);

- -

rgba1 : -
rgba2 : - - -

gimp_rgba_subtract ()

void        gimp_rgba_subtract              (GimpRGB *rgba1,
-                                             const GimpRGB *rgba2);

+they leave the alpha channel unspecified.

+

-

rgba1 : -
rgba2 : - - -

gimp_rgba_multiply ()

void        gimp_rgba_multiply              (GimpRGB *rgba,
-                                             gdouble factor);

- -

rgba : -
factor : - - -

gimp_rgba_distance ()

gdouble     gimp_rgba_distance              (const GimpRGB *rgba1,
-                                             const GimpRGB *rgba2);

- -

rgba1 : -
rgba2 : -
Returns : - - -

GIMP_RGB_INTENSITY()

#define     GIMP_RGB_INTENSITY(r,g,b)

+

+
++ + + + + + + + + + + + + + + + + + +
+rgba : a GimpRGB struct used to return the parsed color +
+css : a string describing a color in CSS notation +
+len : the length of hex, in bytes. or -1 if hex is nul-terminated +
+Returns : TRUE if css was parsed successfully and rgb has been + set, FALSE otherwise + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_rgba_add ()

+
void        gimp_rgba_add                   (GimpRGB *rgba1,
+                                             const GimpRGB *rgba2);
+

+ +

+
++ + + + + + + + + + +
+rgba1 : +
+rgba2 : + + +
+
+
+
+

+gimp_rgba_subtract ()

+
void        gimp_rgba_subtract              (GimpRGB *rgba1,
+                                             const GimpRGB *rgba2);
+

+ +

+
++ + + + + + + + + + +
+rgba1 : +
+rgba2 : + + +
+
+
+
+

+gimp_rgba_multiply ()

+
void        gimp_rgba_multiply              (GimpRGB *rgba,
+                                             gdouble factor);
+

+ +

+
++ + + + + + + + + + +
+rgba : +
+factor : + + +
+
+
+
+

+gimp_rgba_distance ()

+
gdouble     gimp_rgba_distance              (const GimpRGB *rgba1,
+                                             const GimpRGB *rgba2);
+

+ +

+
++ + + + + + + + + + + + + + +
+rgba1 : +
+rgba2 : +
+Returns : + + +
+
+
+
+

+GIMP_RGB_INTENSITY()

+
#define     GIMP_RGB_INTENSITY(r,g,b)
+

This macro calculates the intensity of an RGB value based on coefficients taken from the NTSC analog television standard. -

r :red -
g :green -
b :blue - - -

GIMP_RGB_INTENSITY_RED

#define GIMP_RGB_INTENSITY_RED    0.30
-

- -


GIMP_RGB_INTENSITY_GREEN

#define GIMP_RGB_INTENSITY_GREEN  0.59
-

- -


GIMP_RGB_INTENSITY_BLUE

#define GIMP_RGB_INTENSITY_BLUE   0.11
-

- -


GIMP_TYPE_RGB

#define GIMP_TYPE_RGB               (gimp_rgb_get_type ())
-

-GIMP_TYPE_RGB is a GType derived from G_TYPE_BOXED. -


GIMP_VALUE_HOLDS_RGB()

#define GIMP_VALUE_HOLDS_RGB(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_RGB))
-

- -

value : - - -
+

+
++ + + + + + + + + + + + + + +
+r :red +
+g :green +
+b :blue + + +
+
+
+
+

+GIMP_RGB_INTENSITY_RED

+
#define GIMP_RGB_INTENSITY_RED    0.30
+
+

+ +

+
+
+
+

+GIMP_RGB_INTENSITY_GREEN

+
#define GIMP_RGB_INTENSITY_GREEN  0.59
+
+

+ +

+
+
+
+

+GIMP_RGB_INTENSITY_BLUE

+
#define GIMP_RGB_INTENSITY_BLUE   0.11
+
+

+ +

+
+
+
+

+GIMP_TYPE_RGB

+
#define GIMP_TYPE_RGB               (gimp_rgb_get_type ())
+
+

+GIMP_TYPE_RGB is a GType derived from G_TYPE_BOXED. +

+
+
+
+

+GIMP_VALUE_HOLDS_RGB()

+
#define GIMP_VALUE_HOLDS_RGB(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_RGB))
+
+

+ +

+
++ + + + +
+value : + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor.html gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor.html --- gimp-2.2.8/devel-docs/libgimpcolor/html/libgimpcolor.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/libgimpcolor.html 2005-10-27 17:14:05.000000000 +0200 @@ -1,31 +1,28 @@ -Part I. GIMP Color Library

GIMP Color Library

Table of Contents

GimpRGB - Definitions and Functions relating to RGB colors.
GimpHSV - Definitions and Functions relating to HSV colors.
GimpCMYK - Definitions and Functions relating to CMYK colors.
GimpColorSpace - Utility functions which convert colors between different color models.
GimpAdaptiveSupersample - Functions to perform adaptive supersampling on an area.
GimpBilinear -
+ + + +Part I. GIMP Color Library + + + + + + + + + + + + + + + + +

+GIMP Color Library

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/html/style.css gimp-2.2.9/devel-docs/libgimpcolor/html/style.css --- gimp-2.2.8/devel-docs/libgimpcolor/html/style.css 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/devel-docs/libgimpcolor/html/style.css 2005-10-27 17:14:05.000000000 +0200 @@ -0,0 +1,66 @@ +.synopsis, .classsynopsis +{ + background: #eeeeee; + border: solid 1px #aaaaaa; + padding: 0.5em; +} +.programlisting +{ + background: #eeeeff; + border: solid 1px #aaaaff; + padding: 0.5em; +} +.variablelist +{ + padding: 4px; + margin-left: 3em; +} +.variablelist td:first-child +{ + vertical-align: top; +} +table.navigation +{ + background: #ffeeee; + border: solid 1px #ffaaaa; + margin-top: 0.5em; + margin-bottom: 0.5em; +} +.navigation a +{ + color: #770000; +} +.navigation a:visited +{ + color: #550000; +} +.navigation .title +{ + font-size: 200%; +} +div.refnamediv +{ + margin-top: 2em; +} +div.gallery-float +{ + float: left; + padding: 10px; +} +div.gallery-float img +{ + border-style: none; +} +div.gallery-spacer +{ + clear: both; +} +a +{ + text-decoration: none; +} +a:hover +{ + text-decoration: underline; + color: #FF0000; +} diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/Makefile.in gimp-2.2.9/devel-docs/libgimpcolor/Makefile.in --- gimp-2.2.8/devel-docs/libgimpcolor/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/Makefile.in 2005-10-27 17:11:39.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimpcolor +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -419,7 +435,6 @@ GTKDOC_CFLAGS = GTKDOC_LIBS = @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -430,24 +445,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -455,25 +461,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimpcolor -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpcolor/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimpcolor/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -491,13 +512,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -509,7 +526,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -530,7 +547,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -552,7 +568,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -569,6 +585,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -603,12 +621,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -621,7 +640,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -641,7 +660,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -649,11 +668,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -714,6 +733,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpadaptivesupersample.sgml gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpadaptivesupersample.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpadaptivesupersample.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpadaptivesupersample.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@
+ + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpbilinear.sgml gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpbilinear.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpbilinear.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpbilinear.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpcmyk.sgml gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpcmyk.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpcmyk.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpcmyk.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpcolorspace.sgml gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpcolorspace.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimpcolorspace.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimpcolorspace.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -17,6 +17,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimphsv.sgml gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimphsv.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimphsv.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimphsv.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimprgb.sgml gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimprgb.sgml --- gimp-2.2.8/devel-docs/libgimpcolor/tmpl/gimprgb.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/tmpl/gimprgb.sgml 2005-10-27 17:14:05.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpadaptivesupersample.xml gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpadaptivesupersample.xml --- gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpadaptivesupersample.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpadaptivesupersample.xml 2005-10-27 17:14:05.000000000 +0200 @@ -188,7 +188,7 @@ progress_data : -Returns : +Returns : diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpbilinear.xml gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpbilinear.xml --- gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpbilinear.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpbilinear.xml 2005-10-27 17:14:05.000000000 +0200 @@ -80,7 +80,7 @@ values : -Returns : +Returns : @@ -102,7 +102,7 @@ values : -Returns : +Returns : @@ -124,7 +124,7 @@ values : -Returns : +Returns : @@ -146,7 +146,7 @@ values : -Returns : +Returns : @@ -168,7 +168,7 @@ values : -Returns : +Returns : @@ -190,7 +190,7 @@ values : -Returns : +Returns : diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpcmyk.xml gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpcmyk.xml --- gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpcmyk.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpcmyk.xml 2005-10-27 17:14:05.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpCMYK; + GimpCMYK; void gimp_cmyk_set (GimpCMYK *cmyk, gdouble cyan, gdouble magenta, @@ -74,11 +74,10 @@ Details -<anchor id="GimpCMYK"/>struct GimpCMYK -GimpCMYKstruct GimpCMYK { - +<anchor id="GimpCMYK"/>GimpCMYK +GimpCMYKtypedef struct { gdouble c, m, y, k, a; -}; +} GimpCMYK; diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpcolorspace.xml gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpcolorspace.xml --- gimp-2.2.8/devel-docs/libgimpcolor/xml/gimpcolorspace.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/xml/gimpcolorspace.xml 2005-10-27 17:14:05.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpHSL; + GimpHSL; void gimp_rgb_to_hsv (const GimpRGB *rgb, GimpHSV *hsv); void gimp_rgb_to_hsl (const GimpRGB *rgb, @@ -96,11 +96,10 @@ Details -<anchor id="GimpHSL"/>struct GimpHSL -GimpHSLstruct GimpHSL { - +<anchor id="GimpHSL"/>GimpHSL +GimpHSLtypedef struct { gdouble h, s, l, a; -}; +} GimpHSL; @@ -421,7 +420,7 @@ blue : Blue channel -Returns : Luminance vaue corresponding to the input RGB value +Returns : Luminance vaue corresponding to the input RGB value diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/xml/gimphsv.xml gimp-2.2.9/devel-docs/libgimpcolor/xml/gimphsv.xml --- gimp-2.2.8/devel-docs/libgimpcolor/xml/gimphsv.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/xml/gimphsv.xml 2005-10-27 17:14:05.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpHSV; + GimpHSV; void gimp_hsv_set (GimpHSV *hsv, gdouble hue, gdouble saturation, @@ -51,11 +51,10 @@ Details -<anchor id="GimpHSV"/>struct GimpHSV -GimpHSVstruct GimpHSV { - +<anchor id="GimpHSV"/>GimpHSV +GimpHSVtypedef struct { gdouble h, s, v, a; -}; +} GimpHSV; diff -uraN gimp-2.2.8/devel-docs/libgimpcolor/xml/gimprgb.xml gimp-2.2.9/devel-docs/libgimpcolor/xml/gimprgb.xml --- gimp-2.2.8/devel-docs/libgimpcolor/xml/gimprgb.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpcolor/xml/gimprgb.xml 2005-10-27 17:14:05.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpRGB; + GimpRGB; enum GimpRGBCompositeMode; void gimp_rgb_set (GimpRGB *rgb, gdouble red, @@ -90,12 +90,12 @@ gdouble factor); gdouble gimp_rgba_distance (const GimpRGB *rgba1, const GimpRGB *rgba2); -#define GIMP_RGB_INTENSITY (r,g,b) -#define GIMP_RGB_INTENSITY_RED -#define GIMP_RGB_INTENSITY_GREEN -#define GIMP_RGB_INTENSITY_BLUE -#define GIMP_TYPE_RGB -#define GIMP_VALUE_HOLDS_RGB (value) +#define GIMP_RGB_INTENSITY (r,g,b) +#define GIMP_RGB_INTENSITY_RED +#define GIMP_RGB_INTENSITY_GREEN +#define GIMP_RGB_INTENSITY_BLUE +#define GIMP_TYPE_RGB +#define GIMP_VALUE_HOLDS_RGB (value) @@ -118,11 +118,10 @@ Details -<anchor id="GimpRGB"/>struct GimpRGB -GimpRGBstruct GimpRGB { - +<anchor id="GimpRGB"/>GimpRGB +GimpRGBtypedef struct { gdouble r, g, b, a; -}; +} GimpRGB; @@ -233,7 +232,7 @@ <anchor id="gimp-rgb-parse-name"/>gimp_rgb_parse_name () -gimp_rgb_parse_namegboolean gimp_rgb_parse_name (GimpRGB *rgb, +gimp_rgb_parse_namegboolean gimp_rgb_parse_name (GimpRGB *rgb, const gchar *name, gint len); @@ -257,7 +256,7 @@ len : the length of name, in bytes. or -1 if name is nul-terminated -Returns : TRUE if name was parsed successfully and rgb has been +Returns : TRUE if name was parsed successfully and rgb has been set, FALSE otherwise @@ -265,7 +264,7 @@ <anchor id="gimp-rgb-parse-hex"/>gimp_rgb_parse_hex () -gimp_rgb_parse_hexgboolean gimp_rgb_parse_hex (GimpRGB *rgb, +gimp_rgb_parse_hexgboolean gimp_rgb_parse_hex (GimpRGB *rgb, const gchar *hex, gint len); @@ -286,7 +285,7 @@ len : the length of hex, in bytes. or -1 if hex is nul-terminated -Returns : TRUE if hex was parsed successfully and rgb has been +Returns : TRUE if hex was parsed successfully and rgb has been set, FALSE otherwise @@ -294,7 +293,7 @@ <anchor id="gimp-rgb-parse-css"/>gimp_rgb_parse_css () -gimp_rgb_parse_cssgboolean gimp_rgb_parse_css (GimpRGB *rgb, +gimp_rgb_parse_cssgboolean gimp_rgb_parse_css (GimpRGB *rgb, const gchar *css, gint len); @@ -319,7 +318,7 @@ len : the length of hex, in bytes. or -1 if hex is nul-terminated -Returns : TRUE if css was parsed successfully and rgb has been +Returns : TRUE if css was parsed successfully and rgb has been set, FALSE otherwise @@ -327,7 +326,7 @@ <anchor id="gimp-rgb-list-names"/>gimp_rgb_list_names () -gimp_rgb_list_namesgint gimp_rgb_list_names (const gchar ***names, +gimp_rgb_list_namesgint gimp_rgb_list_names (const gchar ***names, GimpRGB **colors); Allows to retrieve the list of colors : return location for an array of GimpRGB structs -Returns : the number of named colors +Returns : the number of named colors (i.e. the length of the returned arrays) @@ -414,7 +413,7 @@ rgb2 : -Returns : +Returns : @@ -428,7 +427,7 @@ rgb : -Returns : +Returns : @@ -442,7 +441,7 @@ rgb : -Returns : +Returns : @@ -484,7 +483,7 @@ rgb : -Returns : +Returns : @@ -498,7 +497,7 @@ rgb : -Returns : +Returns : @@ -612,7 +611,7 @@
<anchor id="gimp-rgba-parse-css"/>gimp_rgba_parse_css () -gimp_rgba_parse_cssgboolean gimp_rgba_parse_css (GimpRGB *rgba, +gimp_rgba_parse_cssgboolean gimp_rgba_parse_css (GimpRGB *rgba, const gchar *css, gint len); @@ -635,7 +634,7 @@ len : the length of hex, in bytes. or -1 if hex is nul-terminated -Returns : TRUE if css was parsed successfully and rgb has been +Returns : TRUE if css was parsed successfully and rgb has been set, FALSE otherwise @@ -702,13 +701,13 @@ rgba2 : -Returns : +Returns : -<anchor id="GIMP-RGB-INTENSITY-CAPS"/>GIMP_RGB_INTENSITY() +<anchor id="GIMP-RGB-INTENSITY:CAPS"/>GIMP_RGB_INTENSITY() GIMP_RGB_INTENSITY#define GIMP_RGB_INTENSITY(r,g,b) This macro calculates the intensity of an RGB value based on @@ -727,35 +726,35 @@ -<anchor id="GIMP-RGB-INTENSITY-RED-CAPS"/>GIMP_RGB_INTENSITY_RED +<anchor id="GIMP-RGB-INTENSITY-RED:CAPS"/>GIMP_RGB_INTENSITY_RED GIMP_RGB_INTENSITY_RED#define GIMP_RGB_INTENSITY_RED 0.30 -<anchor id="GIMP-RGB-INTENSITY-GREEN-CAPS"/>GIMP_RGB_INTENSITY_GREEN +<anchor id="GIMP-RGB-INTENSITY-GREEN:CAPS"/>GIMP_RGB_INTENSITY_GREEN GIMP_RGB_INTENSITY_GREEN#define GIMP_RGB_INTENSITY_GREEN 0.59 -<anchor id="GIMP-RGB-INTENSITY-BLUE-CAPS"/>GIMP_RGB_INTENSITY_BLUE +<anchor id="GIMP-RGB-INTENSITY-BLUE:CAPS"/>GIMP_RGB_INTENSITY_BLUE GIMP_RGB_INTENSITY_BLUE#define GIMP_RGB_INTENSITY_BLUE 0.11 -<anchor id="GIMP-TYPE-RGB-CAPS"/>GIMP_TYPE_RGB +<anchor id="GIMP-TYPE-RGB:CAPS"/>GIMP_TYPE_RGB GIMP_TYPE_RGB#define GIMP_TYPE_RGB (gimp_rgb_get_type ()) -GIMP_TYPE_RGB is a GType derived from G_TYPE_BOXED. +GIMP_TYPE_RGB is a GType derived from G_TYPE_BOXED. -<anchor id="GIMP-VALUE-HOLDS-RGB-CAPS"/>GIMP_VALUE_HOLDS_RGB() +<anchor id="GIMP-VALUE-HOLDS-RGB:CAPS"/>GIMP_VALUE_HOLDS_RGB() GIMP_VALUE_HOLDS_RGB#define GIMP_VALUE_HOLDS_RGB(value) (G_TYPE_CHECK_VALUE_TYPE ((value), GIMP_TYPE_RGB)) diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/index.html gimp-2.2.9/devel-docs/libgimpmath/html/index.html --- gimp-2.2.8/devel-docs/libgimpmath/html/index.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/index.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,34 +1,50 @@ -GIMP Math Library Reference Manual

- for GIMP 2.2.0 + + + +GIMP Math Library Reference Manual + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

I. GIMP Math Library
GimpMath - Mathematical definitions and macros.
GimpMatrix - Utilities to set up and manipulate 3x3 transformation matrices.
GimpVector - Utilities to set up and manipulate vectors.
GimpMD5 - the MD5 message-digest algorithm
+

+
+
+
+
+

Table of Contents

+
+
I. GIMP Math Library
+
+
+GimpMath - Mathematical definitions and macros. +
+
+GimpMatrix - Utilities to set up and manipulate 3x3 transformation matrices. +
+
+GimpVector - Utilities to set up and manipulate vectors. +
+
+GimpMD5 - the MD5 message-digest algorithm +
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/index.sgml gimp-2.2.9/devel-docs/libgimpmath/html/index.sgml --- gimp-2.2.8/devel-docs/libgimpmath/html/index.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/index.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -1,9 +1,9 @@ - - - - - + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath.devhelp gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath.devhelp --- gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath.devhelp 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath.devhelp 2005-10-27 17:14:06.000000000 +0200 @@ -9,16 +9,16 @@ - - - - - + + + + + - - - + + + @@ -36,9 +36,9 @@ - - - + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpMath.html gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpMath.html --- gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpMath.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpMath.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,88 +1,209 @@ -GimpMath

GimpMath

GimpMath — Mathematical definitions and macros.

Synopsis

+
+
+
+GimpMath
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpMath

+

GimpMath — Mathematical definitions and macros.

+
+
+

Synopsis

+
 
 
 
-#define     RINT                            (x)
-#define     ROUND                           (x)
-#define     SQR                             (x)
-#define     MAX255                          (a)
-#define     CLAMP0255                       (a)
+#define     RINT                            (x)
+#define     ROUND                           (x)
+#define     SQR                             (x)
+#define     MAX255                          (a)
+#define     CLAMP0255                       (a)
 #define     gimp_deg_to_rad                 (angle)
 #define     gimp_rad_to_deg                 (angle)
-

Description

+

+
+
+

Description

+

Mathematical definitions and macros. These macros should be used rather than the ones from math.h for enhanced portability. -

Details

RINT()

#define     RINT(x)

-This macro rounds its argument x to an integer value in floating point +

+
+
+

Details

+
+

+RINT()

+
#define     RINT(x)
+

+This macro rounds its argument x to an integer value in floating point format. -

x :the value to be rounded. - - -

ROUND()

#define ROUND(x) ((int) ((x) + 0.5))
-

-This macro rounds its argument x to the nearest integer. -

x :the value to be rounded. - - -

SQR()

#define SQR(x) ((x) * (x))
-

-This macro squares its argument x. -

x :the value to be squared. - - -

MAX255()

#define MAX255(a)  ((a) | (((a) & 256) - (((a) & 256) >> 8)))
-

-This macro limits it argument a, an (0-511) int, to 255. -

a :the value to be limited. - - -

CLAMP0255()

#define CLAMP0255(a)  CLAMP(a,0,255)
-

-This macro clamps its argument a, an int32-range int, between 0 and +

+
++ + + + +
+x :the value to be rounded. + + +
+
+
+
+

+ROUND()

+
#define ROUND(x) ((int) ((x) + 0.5))
+
+

+This macro rounds its argument x to the nearest integer. +

+
++ + + + +
+x :the value to be rounded. + + +
+
+
+
+

+SQR()

+
#define SQR(x) ((x) * (x))
+
+

+This macro squares its argument x. +

+
++ + + + +
+x :the value to be squared. + + +
+
+
+
+

+MAX255()

+
#define MAX255(a)  ((a) | (((a) & 256) - (((a) & 256) >> 8)))
+
+

+This macro limits it argument a, an (0-511) int, to 255. +

+
++ + + + +
+a :the value to be limited. + + +
+
+
+
+

+CLAMP0255()

+
#define CLAMP0255(a)  CLAMP(a,0,255)
+
+

+This macro clamps its argument a, an int32-range int, between 0 and 255 inclusive. -

a :the value to be clamped. - - -

gimp_deg_to_rad()

#define gimp_deg_to_rad(angle) ((angle) * (2.0 * G_PI) / 360.0)
-

-This macro converts its argument angle from degree to radian. -

angle :the angle to be converted. - - -

gimp_rad_to_deg()

#define gimp_rad_to_deg(angle) ((angle) * 360.0 / (2.0 * G_PI))
-

-This macro converts its argument angle from radian to degree. -

angle :the angle to be converted. - - -
+

+
++ + + + +
+a :the value to be clamped. + + +
+
+
+
+

+gimp_deg_to_rad()

+
#define gimp_deg_to_rad(angle) ((angle) * (2.0 * G_PI) / 360.0)
+
+

+This macro converts its argument angle from degree to radian. +

+
++ + + + +
+angle :the angle to be converted. + + +
+
+
+
+

+gimp_rad_to_deg()

+
#define gimp_rad_to_deg(angle) ((angle) * 360.0 / (2.0 * G_PI))
+
+

+This macro converts its argument angle from radian to degree. +

+
++ + + + +
+angle :the angle to be converted. + + +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html --- gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpMatrix.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,40 +1,42 @@ -GimpMatrix

GimpMatrix

GimpMatrix — Utilities to set up and manipulate 3x3 transformation matrices.

Synopsis

+
+
+
+GimpMatrix
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpMatrix

+

GimpMatrix — Utilities to set up and manipulate 3x3 transformation matrices.

+
+
+

Synopsis

+
 
 
 
-struct      GimpMatrix2;
-struct      GimpMatrix3;
-struct      GimpMatrix4;
+            GimpMatrix2;
+            GimpMatrix3;
+            GimpMatrix4;
 void        gimp_matrix2_identity           (GimpMatrix2 *matrix);
 void        gimp_matrix2_mult               (const GimpMatrix2 *matrix1,
                                              GimpMatrix2 *matrix2);
@@ -74,158 +76,627 @@
                                              gdouble *a,
                                              gdouble *b,
                                              gdouble *c);
-

Description

+

+
+
+

Description

+

When doing image manipulation you will often need 3x3 transformation matrices that define translation, rotation, scaling, shearing and arbitrary perspective transformations using a 3x3 matrix. Here you'll find a set of utility functions to set up those matrices and to perform basic matrix manipulations and tests. -

Details

struct GimpMatrix2

struct GimpMatrix2 {
-
+

+
+
+

Details

+
+

+GimpMatrix2

+
typedef struct {
   gdouble coeff[2][2];
-};
-

+} GimpMatrix2; + +

A two by two matrix. -


struct GimpMatrix3

struct GimpMatrix3 {
-
+

+
+
+
+

+GimpMatrix3

+
typedef struct {
   gdouble coeff[3][3];
-};
-

+} GimpMatrix3; + +

A three by three matrix. -


struct GimpMatrix4

struct GimpMatrix4 {
-
+

+
+
+
+

+GimpMatrix4

+
typedef struct {
   gdouble coeff[4][4];
-};
-

+} GimpMatrix4; + +

A four by four matrix. -


gimp_matrix2_identity ()

void        gimp_matrix2_identity           (GimpMatrix2 *matrix);

-Sets the matrix to the identity matrix.

- -

matrix : A matrix. -

gimp_matrix2_mult ()

void        gimp_matrix2_mult               (const GimpMatrix2 *matrix1,
-                                             GimpMatrix2 *matrix2);

-Multiplies two matrices and puts the result into the second one.

- -

matrix1 : The first input matrix. -
matrix2 : The second input matrix which will be overwritten by the result. -

gimp_matrix3_identity ()

void        gimp_matrix3_identity           (GimpMatrix3 *matrix);

-Sets the matrix to the identity matrix.

- -

matrix : A matrix. -

gimp_matrix3_mult ()

void        gimp_matrix3_mult               (const GimpMatrix3 *matrix1,
-                                             GimpMatrix3 *matrix2);

-Multiplies two matrices and puts the result into the second one.

- -

matrix1 : The first input matrix. -
matrix2 : The second input matrix which will be overwritten by the result. -

gimp_matrix3_translate ()

void        gimp_matrix3_translate          (GimpMatrix3 *matrix,
-                                             gdouble x,
-                                             gdouble y);

-Translates the matrix by x and y.

- -

matrix : The matrix that is to be translated. -
x : Translation in X direction. -
y : Translation in Y direction. -

gimp_matrix3_scale ()

void        gimp_matrix3_scale              (GimpMatrix3 *matrix,
-                                             gdouble x,
-                                             gdouble y);

-Scales the matrix by x and y

- -

matrix : The matrix that is to be scaled. -
x : X scale factor. -
y : Y scale factor. -

gimp_matrix3_rotate ()

void        gimp_matrix3_rotate             (GimpMatrix3 *matrix,
-                                             gdouble theta);

-Rotates the matrix by theta degrees.

- -

matrix : The matrix that is to be rotated. -
theta : The angle of rotation (in radians). -

gimp_matrix3_xshear ()

void        gimp_matrix3_xshear             (GimpMatrix3 *matrix,
-                                             gdouble amount);

-Shears the matrix in the X direction.

- -

matrix : The matrix that is to be sheared. -
amount : X shear amount. -

gimp_matrix3_yshear ()

void        gimp_matrix3_yshear             (GimpMatrix3 *matrix,
-                                             gdouble amount);

-Shears the matrix in the Y direction.

- -

matrix : The matrix that is to be sheared. -
amount : Y shear amount. -

gimp_matrix3_affine ()

void        gimp_matrix3_affine             (GimpMatrix3 *matrix,
+

+
+
+
+

+gimp_matrix2_identity ()

+
void        gimp_matrix2_identity           (GimpMatrix2 *matrix);
+

+Sets the matrix to the identity matrix.

+

+ +

+
++ + + + +
+matrix : A matrix. +
+
+
+
+

+gimp_matrix2_mult ()

+
void        gimp_matrix2_mult               (const GimpMatrix2 *matrix1,
+                                             GimpMatrix2 *matrix2);
+

+Multiplies two matrices and puts the result into the second one.

+

+ +

+
++ + + + + + + + + + +
+matrix1 : The first input matrix. +
+matrix2 : The second input matrix which will be overwritten by the result. +
+
+
+
+

+gimp_matrix3_identity ()

+
void        gimp_matrix3_identity           (GimpMatrix3 *matrix);
+

+Sets the matrix to the identity matrix.

+

+ +

+
++ + + + +
+matrix : A matrix. +
+
+
+
+

+gimp_matrix3_mult ()

+
void        gimp_matrix3_mult               (const GimpMatrix3 *matrix1,
+                                             GimpMatrix3 *matrix2);
+

+Multiplies two matrices and puts the result into the second one.

+

+ +

+
++ + + + + + + + + + +
+matrix1 : The first input matrix. +
+matrix2 : The second input matrix which will be overwritten by the result. +
+
+
+
+

+gimp_matrix3_translate ()

+
void        gimp_matrix3_translate          (GimpMatrix3 *matrix,
+                                             gdouble x,
+                                             gdouble y);
+

+Translates the matrix by x and y.

+

+ +

+
++ + + + + + + + + + + + + + +
+matrix : The matrix that is to be translated. +
+x : Translation in X direction. +
+y : Translation in Y direction. +
+
+
+
+

+gimp_matrix3_scale ()

+
void        gimp_matrix3_scale              (GimpMatrix3 *matrix,
+                                             gdouble x,
+                                             gdouble y);
+

+Scales the matrix by x and y

+

+ +

+
++ + + + + + + + + + + + + + +
+matrix : The matrix that is to be scaled. +
+x : X scale factor. +
+y : Y scale factor. +
+
+
+
+

+gimp_matrix3_rotate ()

+
void        gimp_matrix3_rotate             (GimpMatrix3 *matrix,
+                                             gdouble theta);
+

+Rotates the matrix by theta degrees.

+

+ +

+
++ + + + + + + + + + +
+matrix : The matrix that is to be rotated. +
+theta : The angle of rotation (in radians). +
+
+
+
+

+gimp_matrix3_xshear ()

+
void        gimp_matrix3_xshear             (GimpMatrix3 *matrix,
+                                             gdouble amount);
+

+Shears the matrix in the X direction.

+

+ +

+
++ + + + + + + + + + +
+matrix : The matrix that is to be sheared. +
+amount : X shear amount. +
+
+
+
+

+gimp_matrix3_yshear ()

+
void        gimp_matrix3_yshear             (GimpMatrix3 *matrix,
+                                             gdouble amount);
+

+Shears the matrix in the Y direction.

+

+ +

+
++ + + + + + + + + + +
+matrix : The matrix that is to be sheared. +
+amount : Y shear amount. +
+
+
+
+

+gimp_matrix3_affine ()

+
void        gimp_matrix3_affine             (GimpMatrix3 *matrix,
                                              gdouble a,
                                              gdouble b,
                                              gdouble c,
                                              gdouble d,
                                              gdouble e,
-                                             gdouble f);

-Applies the affine transformation given by six values to matrix. + gdouble f); +

+Applies the affine transformation given by six values to matrix. The six values form define an affine transformation matrix as illustrated below: -

+

+

( a c e ) ( b d f ) - ( 0 0 1 )

+ ( 0 0 1 )

+

-

matrix : The input matrix. -
a : -
b : -
c : -
d : -
e : -
f : -

gimp_matrix3_transform_point ()

void        gimp_matrix3_transform_point    (const GimpMatrix3 *matrix,
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+matrix : The input matrix. +
+a : +
+b : +
+c : +
+d : +
+e : +
+f : +
+
+
+
+

+gimp_matrix3_transform_point ()

+
void        gimp_matrix3_transform_point    (const GimpMatrix3 *matrix,
                                              gdouble x,
                                              gdouble y,
                                              gdouble *newx,
-                                             gdouble *newy);

-Transforms a point in 2D as specified by the transformation matrix.

- -

matrix : The transformation matrix. -
x : The source X coordinate. -
y : The source Y coordinate. -
newx : The transformed X coordinate. -
newy : The transformed Y coordinate. -

gimp_matrix3_determinant ()

gdouble     gimp_matrix3_determinant        (const GimpMatrix3 *matrix);

-Calculates the determinant of the given matrix.

- -

matrix : The input matrix. -
Returns : The determinant. -

gimp_matrix3_invert ()

void        gimp_matrix3_invert             (GimpMatrix3 *matrix);

-Inverts the given matrix.

- -

matrix : The matrix that is to be inverted. -

gimp_matrix3_is_diagonal ()

gboolean    gimp_matrix3_is_diagonal        (const GimpMatrix3 *matrix);

-Checks if the given matrix is diagonal.

- -

matrix : The matrix that is to be tested. -
Returns : TRUE if the matrix is diagonal. -

gimp_matrix3_is_identity ()

gboolean    gimp_matrix3_is_identity        (const GimpMatrix3 *matrix);

-Checks if the given matrix is the identity matrix.

- -

matrix : The matrix that is to be tested. -
Returns : TRUE if the matrix is the identity matrix. -

gimp_matrix3_is_simple ()

gboolean    gimp_matrix3_is_simple          (const GimpMatrix3 *matrix);

+ gdouble *newy); +

+Transforms a point in 2D as specified by the transformation matrix.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+matrix : The transformation matrix. +
+x : The source X coordinate. +
+y : The source Y coordinate. +
+newx : The transformed X coordinate. +
+newy : The transformed Y coordinate. +
+
+
+
+

+gimp_matrix3_determinant ()

+
gdouble     gimp_matrix3_determinant        (const GimpMatrix3 *matrix);
+

+Calculates the determinant of the given matrix.

+

+ +

+
++ + + + + + + + + + +
+matrix : The input matrix. +
+Returns : The determinant. +
+
+
+
+

+gimp_matrix3_invert ()

+
void        gimp_matrix3_invert             (GimpMatrix3 *matrix);
+

+Inverts the given matrix.

+

+ +

+
++ + + + +
+matrix : The matrix that is to be inverted. +
+
+
+
+

+gimp_matrix3_is_diagonal ()

+
gboolean    gimp_matrix3_is_diagonal        (const GimpMatrix3 *matrix);
+

+Checks if the given matrix is diagonal.

+

+ +

+
++ + + + + + + + + + +
+matrix : The matrix that is to be tested. +
+Returns : TRUE if the matrix is diagonal. +
+
+
+
+

+gimp_matrix3_is_identity ()

+
gboolean    gimp_matrix3_is_identity        (const GimpMatrix3 *matrix);
+

+Checks if the given matrix is the identity matrix.

+

+ +

+
++ + + + + + + + + + +
+matrix : The matrix that is to be tested. +
+Returns : TRUE if the matrix is the identity matrix. +
+
+
+
+

+gimp_matrix3_is_simple ()

+
gboolean    gimp_matrix3_is_simple          (const GimpMatrix3 *matrix);
+

Checks if we'll need to interpolate when applying this matrix as -a transformation.

+a transformation.

+

-

+ + +
matrix : The matrix that is to be tested. -
Returns : TRUE if all entries of the upper left 2x2 matrix are either +

+
++ + + + + + + +
+matrix : The matrix that is to be tested. +
+Returns : TRUE if all entries of the upper left 2x2 matrix are either 0 or 1 -

gimp_matrix4_to_deg ()

void        gimp_matrix4_to_deg             (const GimpMatrix4 *matrix,
+
+
+
+
+

+gimp_matrix4_to_deg ()

+
void        gimp_matrix4_to_deg             (const GimpMatrix4 *matrix,
                                              gdouble *a,
                                              gdouble *b,
-                                             gdouble *c);

-

- -

matrix : -
a : -
b : -
c : -

See Also

+ gdouble *c); +

+

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+matrix : +
+a : +
+b : +
+c : +
+
+
+
+

See Also

+

GimpVector2 -

+

+

GimpVector3 -

+

+

GimpVector4 -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html --- gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpMD5.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,56 +1,99 @@ -GimpMD5

GimpMD5

GimpMD5 — the MD5 message-digest algorithm

Synopsis

+
+
+
+GimpMD5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpMD5

+

GimpMD5 — the MD5 message-digest algorithm

+
+
+

Synopsis

+
 
 
 
 void        gimp_md5_get_digest             (const gchar *buffer,
                                              gint buffer_size,
                                              guchar digest[16]);
-

Description

+

+
+
+

Description

+

-

Details

gimp_md5_get_digest ()

void        gimp_md5_get_digest             (const gchar *buffer,
+

+
+
+

Details

+
+

+gimp_md5_get_digest ()

+
void        gimp_md5_get_digest             (const gchar *buffer,
                                              gint buffer_size,
-                                             guchar digest[16]);

+ guchar digest[16]); +

Get the md5 hash of a buffer. The result is put in the 16 bytes -buffer digest. -

+buffer digest. +

+

The MD5 algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. It is conjectured that it is computationally infeasible to produce two messages having the same message digest, or to produce any message having a given prespecified target message -digest. For more information see RFC 1321.

+digest. For more information see RFC 1321.

+

-

buffer : byte buffer -
buffer_size : buffer size (in bytes) or -1 if buffer is nul-terminated. -
digest : 16 bytes buffer receiving the hash code. -
+

+
++ + + + + + + + + + + + + + +
+buffer : byte buffer +
+buffer_size : buffer size (in bytes) or -1 if buffer is nul-terminated. +
+digest : 16 bytes buffer receiving the hash code. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html --- gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath-GimpVector.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,40 +1,42 @@ -GimpVector

GimpVector

GimpVector — Utilities to set up and manipulate vectors.

Synopsis

+
+
+
+GimpVector
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpVector

+

GimpVector — Utilities to set up and manipulate vectors.

+
+
+

Synopsis

+
 
 
 
-struct      GimpVector2;
-struct      GimpVector3;
-struct      GimpVector4;
+            GimpVector2;
+            GimpVector3;
+            GimpVector4;
 GimpVector2 gimp_vector2_new                (gdouble x,
                                              gdouble y);
 void        gimp_vector2_set                (GimpVector2 *vector,
@@ -139,412 +141,1660 @@
                                              gdouble *y,
                                              const GimpVector3 *vp,
                                              const GimpVector3 *p);
-

Description

+

+
+
+

Description

+

Utilities to set up and manipulate vectors. -

Details

struct GimpVector2

struct GimpVector2 {
-
+

+
+
+

Details

+
+

+GimpVector2

+
typedef struct {
   gdouble x, y;
-};
-

+} GimpVector2; + +

A two dimensional vector. -


struct GimpVector3

struct GimpVector3 {
-
+

+
+
+
+

+GimpVector3

+
typedef struct {
   gdouble x, y, z;
-};
-

+} GimpVector3; + +

A three dimensional vector. -


struct GimpVector4

struct GimpVector4 {
-
+

+
+
+
+

+GimpVector4

+
typedef struct {
   gdouble x, y, z, w;
-};
-

+} GimpVector4; + +

A four dimensional vector. -


gimp_vector2_new ()

GimpVector2 gimp_vector2_new                (gdouble x,
-                                             gdouble y);

-Creates a GimpVector2 of coordinates x and y.

- -

x : the X coordinate. -
y : the Y coordinate. -
Returns : the resulting GimpVector2. -

gimp_vector2_set ()

void        gimp_vector2_set                (GimpVector2 *vector,
+

+
+
+
+

+gimp_vector2_new ()

+
GimpVector2 gimp_vector2_new                (gdouble x,
+                                             gdouble y);
+

+Creates a GimpVector2 of coordinates x and y.

+

+ +

+
++ + + + + + + + + + + + + + +
+x : the X coordinate. +
+y : the Y coordinate. +
+Returns : the resulting GimpVector2. +
+
+
+
+

+gimp_vector2_set ()

+
void        gimp_vector2_set                (GimpVector2 *vector,
                                              gdouble x,
-                                             gdouble y);

-Sets the X and Y coordinates of vector to x and y.

- -

vector : a pointer to a GimpVector2. -
x : the X coordinate. -
y : the Y coordinate. -

gimp_vector2_length ()

gdouble     gimp_vector2_length             (const GimpVector2 *vector);

-Computes the length of a 2D vector.

- -

vector : a pointer to a GimpVector2. -
Returns : the length of vector (a positive gdouble). -

gimp_vector2_length_val ()

gdouble     gimp_vector2_length_val         (GimpVector2 vector);

-This function is identical to gimp_vector2_length() but the -vector is passed by value rather than by reference.

- -

vector : a GimpVector2. -
Returns : the length of vector (a positive gdouble). -

gimp_vector2_mul ()

void        gimp_vector2_mul                (GimpVector2 *vector,
-                                             gdouble factor);

-Multiplies each component of the vector by factor. Note that this -is equivalent to multiplying the vectors length by factor.

- -

vector : a pointer to a GimpVector2. -
factor : a scalar. -

gimp_vector2_mul_val ()

GimpVector2 gimp_vector2_mul_val            (GimpVector2 vector,
-                                             gdouble factor);

-This function is identical to gimp_vector2_mul() but the vector is -passed by value rather than by reference.

- -

vector : a GimpVector2. -
factor : a scalar. -
Returns : the resulting GimpVector2. -

gimp_vector2_normalize ()

void        gimp_vector2_normalize          (GimpVector2 *vector);

-Normalizes the vector so the length of the vector is 1.0. The nul -vector will not be changed.

- -

vector : a pointer to a GimpVector2. -

gimp_vector2_normalize_val ()

GimpVector2 gimp_vector2_normalize_val      (GimpVector2 vector);

-This function is identical to gimp_vector2_normalize() but the -vector is passed by value rather than by reference.

- -

+ + +
vector : a GimpVector2. -
Returns : a GimpVector2 parallel to vector, pointing in the same + gdouble y); +

+Sets the X and Y coordinates of vector to x and y.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector : a pointer to a GimpVector2. +
+x : the X coordinate. +
+y : the Y coordinate. +
+ +
+
+

+gimp_vector2_length ()

+
gdouble     gimp_vector2_length             (const GimpVector2 *vector);
+

+Computes the length of a 2D vector.

+

+ +

+
++ + + + + + + + + + +
+vector : a pointer to a GimpVector2. +
+Returns : the length of vector (a positive gdouble). +
+
+
+
+

+gimp_vector2_length_val ()

+
gdouble     gimp_vector2_length_val         (GimpVector2 vector);
+

+This function is identical to gimp_vector2_length() but the +vector is passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + +
+vector : a GimpVector2. +
+Returns : the length of vector (a positive gdouble). +
+
+
+
+

+gimp_vector2_mul ()

+
void        gimp_vector2_mul                (GimpVector2 *vector,
+                                             gdouble factor);
+

+Multiplies each component of the vector by factor. Note that this +is equivalent to multiplying the vectors length by factor.

+

+ +

+
++ + + + + + + + + + +
+vector : a pointer to a GimpVector2. +
+factor : a scalar. +
+
+
+
+

+gimp_vector2_mul_val ()

+
GimpVector2 gimp_vector2_mul_val            (GimpVector2 vector,
+                                             gdouble factor);
+

+This function is identical to gimp_vector2_mul() but the vector is +passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector : a GimpVector2. +
+factor : a scalar. +
+Returns : the resulting GimpVector2. +
+
+
+
+

+gimp_vector2_normalize ()

+
void        gimp_vector2_normalize          (GimpVector2 *vector);
+

+Normalizes the vector so the length of the vector is 1.0. The nul +vector will not be changed.

+

+ +

+
++ + + + +
+vector : a pointer to a GimpVector2. +
+
+
+
+

+gimp_vector2_normalize_val ()

+
GimpVector2 gimp_vector2_normalize_val      (GimpVector2 vector);
+

+This function is identical to gimp_vector2_normalize() but the +vector is passed by value rather than by reference.

+

+ +

+
++ + + + + + + +
+vector : a GimpVector2. +
+Returns : a GimpVector2 parallel to vector, pointing in the same direction but with a length of 1.0. -

gimp_vector2_neg ()

void        gimp_vector2_neg                (GimpVector2 *vector);

-Negates the vector (i.e. negate all its coordinates).

- -

vector : a pointer to a GimpVector2. -

gimp_vector2_neg_val ()

GimpVector2 gimp_vector2_neg_val            (GimpVector2 vector);

-This function is identical to gimp_vector2_neg() but the vector -is passed by value rather than by reference.

- -

vector : a GimpVector2. -
Returns : the negated GimpVector2. -

gimp_vector2_add ()

void        gimp_vector2_add                (GimpVector2 *result,
+
+
+
+
+

+gimp_vector2_neg ()

+
void        gimp_vector2_neg                (GimpVector2 *vector);
+

+Negates the vector (i.e. negate all its coordinates).

+

+ +

+
++ + + + +
+vector : a pointer to a GimpVector2. +
+
+
+
+

+gimp_vector2_neg_val ()

+
GimpVector2 gimp_vector2_neg_val            (GimpVector2 vector);
+

+This function is identical to gimp_vector2_neg() but the vector +is passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + +
+vector : a GimpVector2. +
+Returns : the negated GimpVector2. +
+
+
+
+

+gimp_vector2_add ()

+
void        gimp_vector2_add                (GimpVector2 *result,
                                              const GimpVector2 *vector1,
-                                             const GimpVector2 *vector2);

+ const GimpVector2 *vector2); +

Computes the sum of two 2D vectors. The resulting GimpVector2 is -stored in result.

+stored in result.

+

-

result : destination for the resulting GimpVector2. -
vector1 : a pointer to the first GimpVector2. -
vector2 : a pointer to the second GimpVector2. -

gimp_vector2_add_val ()

GimpVector2 gimp_vector2_add_val            (GimpVector2 vector1,
-                                             GimpVector2 vector2);

-This function is identical to gimp_vector2_add() but the vectors -are passed by value rather than by reference.

- -

vector1 : the first GimpVector2. -
vector2 : the second GimpVector2. -
Returns : the resulting GimpVector2. -

gimp_vector2_sub ()

void        gimp_vector2_sub                (GimpVector2 *result,
+

+
++ + + + + + + + + + + + + + +
+result : destination for the resulting GimpVector2. +
+vector1 : a pointer to the first GimpVector2. +
+vector2 : a pointer to the second GimpVector2. +
+
+
+
+

+gimp_vector2_add_val ()

+
GimpVector2 gimp_vector2_add_val            (GimpVector2 vector1,
+                                             GimpVector2 vector2);
+

+This function is identical to gimp_vector2_add() but the vectors +are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : the first GimpVector2. +
+vector2 : the second GimpVector2. +
+Returns : the resulting GimpVector2. +
+
+
+
+

+gimp_vector2_sub ()

+
void        gimp_vector2_sub                (GimpVector2 *result,
                                              const GimpVector2 *vector1,
-                                             const GimpVector2 *vector2);

-Computes the difference of two 2D vectors (vector1 minus vector2). -The resulting GimpVector2 is stored in result.

- -

result : the destination for the resulting GimpVector2. -
vector1 : a pointer to the first GimpVector2. -
vector2 : a pointer to the second GimpVector2. -

gimp_vector2_sub_val ()

GimpVector2 gimp_vector2_sub_val            (GimpVector2 vector1,
-                                             GimpVector2 vector2);

-This function is identical to gimp_vector2_sub() but the vectors -are passed by value rather than by reference.

- -

vector1 : the first GimpVector2. -
vector2 : the second GimpVector2. -
Returns : the resulting GimpVector2. -

gimp_vector2_inner_product ()

gdouble     gimp_vector2_inner_product      (const GimpVector2 *vector1,
-                                             const GimpVector2 *vector2);

+ const GimpVector2 *vector2); +

+Computes the difference of two 2D vectors (vector1 minus vector2). +The resulting GimpVector2 is stored in result.

+

+ +

+
++ + + + + + + + + + + + + + +
+result : the destination for the resulting GimpVector2. +
+vector1 : a pointer to the first GimpVector2. +
+vector2 : a pointer to the second GimpVector2. +
+
+
+
+

+gimp_vector2_sub_val ()

+
GimpVector2 gimp_vector2_sub_val            (GimpVector2 vector1,
+                                             GimpVector2 vector2);
+

+This function is identical to gimp_vector2_sub() but the vectors +are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : the first GimpVector2. +
+vector2 : the second GimpVector2. +
+Returns : the resulting GimpVector2. +
+
+
+
+

+gimp_vector2_inner_product ()

+
gdouble     gimp_vector2_inner_product      (const GimpVector2 *vector1,
+                                             const GimpVector2 *vector2);
+

Computes the inner (dot) product of two 2D vectors. -This product is zero if and only if the two vectors are orthognal.

+This product is zero if and only if the two vectors are orthognal.

+

-

vector1 : a pointer to the first GimpVector2. -
vector2 : a pointer to the second GimpVector2. -
Returns : The inner product. -

gimp_vector2_inner_product_val ()

gdouble     gimp_vector2_inner_product_val  (GimpVector2 vector1,
-                                             GimpVector2 vector2);

-This function is identical to gimp_vector2_inner_product() but the -vectors are passed by value rather than by reference.

- -

vector1 : the first GimpVector2. -
vector2 : the second GimpVector2. -
Returns : The inner product. -

gimp_vector2_cross_product ()

GimpVector2 gimp_vector2_cross_product      (const GimpVector2 *vector1,
-                                             const GimpVector2 *vector2);

+

+
++ + + + + + + + + + + + + + +
+vector1 : a pointer to the first GimpVector2. +
+vector2 : a pointer to the second GimpVector2. +
+Returns : The inner product. +
+
+
+
+

+gimp_vector2_inner_product_val ()

+
gdouble     gimp_vector2_inner_product_val  (GimpVector2 vector1,
+                                             GimpVector2 vector2);
+

+This function is identical to gimp_vector2_inner_product() but the +vectors are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : the first GimpVector2. +
+vector2 : the second GimpVector2. +
+Returns : The inner product. +
+
+
+
+

+gimp_vector2_cross_product ()

+
GimpVector2 gimp_vector2_cross_product      (const GimpVector2 *vector1,
+                                             const GimpVector2 *vector2);
+

Compute the cross product of two vectors. The result is a -GimpVector2 which is orthognal to both vector1 and vector2. If -vector1 and vector2 are parallel, the result will be the nul +GimpVector2 which is orthognal to both vector1 and vector2. If +vector1 and vector2 are parallel, the result will be the nul vector. -

+

+

Note that in 2D, this function is useful to test if two vectors are -parallel or not, or to compute the area spawned by two vectors.

+parallel or not, or to compute the area spawned by two vectors.

+

-

vector1 : a pointer to the first GimpVector2. -
vector2 : a pointer to the second GimpVector2. -
Returns : The cross product. -

gimp_vector2_cross_product_val ()

GimpVector2 gimp_vector2_cross_product_val  (GimpVector2 vector1,
-                                             GimpVector2 vector2);

-This function is identical to gimp_vector2_cross_product() but the -vectors are passed by value rather than by reference.

- -

vector1 : the first GimpVector2. -
vector2 : the second GimpVector2. -
Returns : The cross product. -

gimp_vector2_rotate ()

void        gimp_vector2_rotate             (GimpVector2 *vector,
-                                             gdouble alpha);

-Rotates the vector counterclockwise by alpha radians.

- -

vector : a pointer to a GimpVector2. -
alpha : an angle (in radians). -

gimp_vector2_rotate_val ()

GimpVector2 gimp_vector2_rotate_val         (GimpVector2 vector,
-                                             gdouble alpha);

-This function is identical to gimp_vector2_rotate() but the vector -is passed by value rather than by reference.

- -

+ + +
vector : a GimpVector2. -
alpha : an angle (in radians). -
Returns : a GimpVector2 representing vector rotated by alpha +

+
++ + + + + + + + + + + + + + +
+vector1 : a pointer to the first GimpVector2. +
+vector2 : a pointer to the second GimpVector2. +
+Returns : The cross product. +
+ +
+
+

+gimp_vector2_cross_product_val ()

+
GimpVector2 gimp_vector2_cross_product_val  (GimpVector2 vector1,
+                                             GimpVector2 vector2);
+

+This function is identical to gimp_vector2_cross_product() but the +vectors are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : the first GimpVector2. +
+vector2 : the second GimpVector2. +
+Returns : The cross product. +
+
+
+
+

+gimp_vector2_rotate ()

+
void        gimp_vector2_rotate             (GimpVector2 *vector,
+                                             gdouble alpha);
+

+Rotates the vector counterclockwise by alpha radians.

+

+ +

+
++ + + + + + + + + + +
+vector : a pointer to a GimpVector2. +
+alpha : an angle (in radians). +
+
+
+
+

+gimp_vector2_rotate_val ()

+
GimpVector2 gimp_vector2_rotate_val         (GimpVector2 vector,
+                                             gdouble alpha);
+

+This function is identical to gimp_vector2_rotate() but the vector +is passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + +
+vector : a GimpVector2. +
+alpha : an angle (in radians). +
+Returns : a GimpVector2 representing vector rotated by alpha radians. -

gimp_vector3_new ()

GimpVector3 gimp_vector3_new                (gdouble x,
+
+
+
+
+

+gimp_vector3_new ()

+
GimpVector3 gimp_vector3_new                (gdouble x,
                                              gdouble y,
-                                             gdouble z);

-Creates a GimpVector3 of coordinate x, y and z.

- -

x : the X coordinate. -
y : the Y coordinate. -
z : the Z coordinate. -
Returns : the resulting GimpVector3. -

gimp_vector3_set ()

void        gimp_vector3_set                (GimpVector3 *vector,
+                                             gdouble z);
+

+Creates a GimpVector3 of coordinate x, y and z.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+x : the X coordinate. +
+y : the Y coordinate. +
+z : the Z coordinate. +
+Returns : the resulting GimpVector3. +
+
+
+
+

+gimp_vector3_set ()

+
void        gimp_vector3_set                (GimpVector3 *vector,
                                              gdouble x,
                                              gdouble y,
-                                             gdouble z);

-Sets the X, Y and Z coordinates of vector to x, y and z.

- -

vector : a pointer to a GimpVector3. -
x : the X coordinate. -
y : the Y coordinate. -
z : the Z coordinate. -

gimp_vector3_length ()

gdouble     gimp_vector3_length             (const GimpVector3 *vector);

-Computes the length of a 3D vector.

- -

vector : a pointer to a GimpVector3. -
Returns : the length of vector (a positive gdouble). -

gimp_vector3_length_val ()

gdouble     gimp_vector3_length_val         (GimpVector3 vector);

-This function is identical to gimp_vector3_length() but the vector -is passed by value rather than by reference.

- -

vector : a GimpVector3. -
Returns : the length of vector (a positive gdouble). -

gimp_vector3_mul ()

void        gimp_vector3_mul                (GimpVector3 *vector,
-                                             gdouble factor);

-Multiplies each component of the vector by factor. Note that -this is equivalent to multiplying the vectors length by factor.

- -

vector : a pointer to a GimpVector3. -
factor : a scalar. -

gimp_vector3_mul_val ()

GimpVector3 gimp_vector3_mul_val            (GimpVector3 vector,
-                                             gdouble factor);

-This function is identical to gimp_vector3_mul() but the vector is -passed by value rather than by reference.

- -

vector : a GimpVector3. -
factor : a scalar. -
Returns : the resulting GimpVector3. -

gimp_vector3_normalize ()

void        gimp_vector3_normalize          (GimpVector3 *vector);

-Normalizes the vector so the length of the vector is 1.0. The nul -vector will not be changed.

- -

vector : a pointer to a GimpVector3. -

gimp_vector3_normalize_val ()

GimpVector3 gimp_vector3_normalize_val      (GimpVector3 vector);

-This function is identical to gimp_vector3_normalize() but the -vector is passed by value rather than by reference.

- -

+ + +
vector : a GimpVector3. -
Returns : a GimpVector3 parallel to vector, pointing in the same + gdouble z); +

+Sets the X, Y and Z coordinates of vector to x, y and z.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+vector : a pointer to a GimpVector3. +
+x : the X coordinate. +
+y : the Y coordinate. +
+z : the Z coordinate. +
+ +
+
+

+gimp_vector3_length ()

+
gdouble     gimp_vector3_length             (const GimpVector3 *vector);
+

+Computes the length of a 3D vector.

+

+ +

+
++ + + + + + + + + + +
+vector : a pointer to a GimpVector3. +
+Returns : the length of vector (a positive gdouble). +
+
+
+
+

+gimp_vector3_length_val ()

+
gdouble     gimp_vector3_length_val         (GimpVector3 vector);
+

+This function is identical to gimp_vector3_length() but the vector +is passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + +
+vector : a GimpVector3. +
+Returns : the length of vector (a positive gdouble). +
+
+
+
+

+gimp_vector3_mul ()

+
void        gimp_vector3_mul                (GimpVector3 *vector,
+                                             gdouble factor);
+

+Multiplies each component of the vector by factor. Note that +this is equivalent to multiplying the vectors length by factor.

+

+ +

+
++ + + + + + + + + + +
+vector : a pointer to a GimpVector3. +
+factor : a scalar. +
+
+
+
+

+gimp_vector3_mul_val ()

+
GimpVector3 gimp_vector3_mul_val            (GimpVector3 vector,
+                                             gdouble factor);
+

+This function is identical to gimp_vector3_mul() but the vector is +passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector : a GimpVector3. +
+factor : a scalar. +
+Returns : the resulting GimpVector3. +
+
+
+
+

+gimp_vector3_normalize ()

+
void        gimp_vector3_normalize          (GimpVector3 *vector);
+

+Normalizes the vector so the length of the vector is 1.0. The nul +vector will not be changed.

+

+ +

+
++ + + + +
+vector : a pointer to a GimpVector3. +
+
+
+
+

+gimp_vector3_normalize_val ()

+
GimpVector3 gimp_vector3_normalize_val      (GimpVector3 vector);
+

+This function is identical to gimp_vector3_normalize() but the +vector is passed by value rather than by reference.

+

+ +

+
++ + + + + + + +
+vector : a GimpVector3. +
+Returns : a GimpVector3 parallel to vector, pointing in the same direction but with a length of 1.0. -

gimp_vector3_neg ()

void        gimp_vector3_neg                (GimpVector3 *vector);

-Negates the vector (i.e. negate all its coordinates).

- -

vector : a pointer to a GimpVector3. -

gimp_vector3_neg_val ()

GimpVector3 gimp_vector3_neg_val            (GimpVector3 vector);

-This function is identical to gimp_vector3_neg() but the vector -is passed by value rather than by reference.

- -

vector : a GimpVector3. -
Returns : the negated GimpVector3. -

gimp_vector3_add ()

void        gimp_vector3_add                (GimpVector3 *result,
+
+
+
+
+

+gimp_vector3_neg ()

+
void        gimp_vector3_neg                (GimpVector3 *vector);
+

+Negates the vector (i.e. negate all its coordinates).

+

+ +

+
++ + + + +
+vector : a pointer to a GimpVector3. +
+
+
+
+

+gimp_vector3_neg_val ()

+
GimpVector3 gimp_vector3_neg_val            (GimpVector3 vector);
+

+This function is identical to gimp_vector3_neg() but the vector +is passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + +
+vector : a GimpVector3. +
+Returns : the negated GimpVector3. +
+
+
+
+

+gimp_vector3_add ()

+
void        gimp_vector3_add                (GimpVector3 *result,
                                              const GimpVector3 *vector1,
-                                             const GimpVector3 *vector2);

+ const GimpVector3 *vector2); +

Computes the sum of two 3D vectors. The resulting GimpVector3 is -stored in result.

+stored in result.

+

-

result : destination for the resulting GimpVector3. -
vector1 : a pointer to the first GimpVector3. -
vector2 : a pointer to the second GimpVector3. -

gimp_vector3_add_val ()

GimpVector3 gimp_vector3_add_val            (GimpVector3 vector1,
-                                             GimpVector3 vector2);

-This function is identical to gimp_vector3_add() but the vectors -are passed by value rather than by reference.

- -

vector1 : a GimpVector3. -
vector2 : a GimpVector3. -
Returns : the resulting GimpVector3. -

gimp_vector3_sub ()

void        gimp_vector3_sub                (GimpVector3 *result,
+

+
++ + + + + + + + + + + + + + +
+result : destination for the resulting GimpVector3. +
+vector1 : a pointer to the first GimpVector3. +
+vector2 : a pointer to the second GimpVector3. +
+
+
+
+

+gimp_vector3_add_val ()

+
GimpVector3 gimp_vector3_add_val            (GimpVector3 vector1,
+                                             GimpVector3 vector2);
+

+This function is identical to gimp_vector3_add() but the vectors +are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : a GimpVector3. +
+vector2 : a GimpVector3. +
+Returns : the resulting GimpVector3. +
+
+
+
+

+gimp_vector3_sub ()

+
void        gimp_vector3_sub                (GimpVector3 *result,
                                              const GimpVector3 *vector1,
-                                             const GimpVector3 *vector2);

-Computes the difference of two 3D vectors (vector1 minus vector2). -The resulting GimpVector3 is stored in result.

- -

result : the destination for the resulting GimpVector3. -
vector1 : a pointer to the first GimpVector3. -
vector2 : a pointer to the second GimpVector3. -

gimp_vector3_sub_val ()

GimpVector3 gimp_vector3_sub_val            (GimpVector3 vector1,
-                                             GimpVector3 vector2);

-This function is identical to gimp_vector3_sub() but the vectors -are passed by value rather than by reference.

- -

vector1 : a GimpVector3. -
vector2 : a GimpVector3. -
Returns : the resulting GimpVector3. -

gimp_vector3_inner_product ()

gdouble     gimp_vector3_inner_product      (const GimpVector3 *vector1,
-                                             const GimpVector3 *vector2);

+ const GimpVector3 *vector2); +

+Computes the difference of two 3D vectors (vector1 minus vector2). +The resulting GimpVector3 is stored in result.

+

+ +

+
++ + + + + + + + + + + + + + +
+result : the destination for the resulting GimpVector3. +
+vector1 : a pointer to the first GimpVector3. +
+vector2 : a pointer to the second GimpVector3. +
+
+
+
+

+gimp_vector3_sub_val ()

+
GimpVector3 gimp_vector3_sub_val            (GimpVector3 vector1,
+                                             GimpVector3 vector2);
+

+This function is identical to gimp_vector3_sub() but the vectors +are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : a GimpVector3. +
+vector2 : a GimpVector3. +
+Returns : the resulting GimpVector3. +
+
+
+
+

+gimp_vector3_inner_product ()

+
gdouble     gimp_vector3_inner_product      (const GimpVector3 *vector1,
+                                             const GimpVector3 *vector2);
+

Computes the inner (dot) product of two 3D vectors. This product -is zero if and only if the two vectors are orthognal.

+is zero if and only if the two vectors are orthognal.

+

-

vector1 : a pointer to the first GimpVector3. -
vector2 : a pointer to the second GimpVector3. -
Returns : The inner product. -

gimp_vector3_inner_product_val ()

gdouble     gimp_vector3_inner_product_val  (GimpVector3 vector1,
-                                             GimpVector3 vector2);

-This function is identical to gimp_vector3_inner_product() but the -vectors are passed by value rather than by reference.

- -

vector1 : the first GimpVector3. -
vector2 : the second GimpVector3. -
Returns : The inner product. -

gimp_vector3_cross_product ()

GimpVector3 gimp_vector3_cross_product      (const GimpVector3 *vector1,
-                                             const GimpVector3 *vector2);

+

+
++ + + + + + + + + + + + + + +
+vector1 : a pointer to the first GimpVector3. +
+vector2 : a pointer to the second GimpVector3. +
+Returns : The inner product. +
+
+
+
+

+gimp_vector3_inner_product_val ()

+
gdouble     gimp_vector3_inner_product_val  (GimpVector3 vector1,
+                                             GimpVector3 vector2);
+

+This function is identical to gimp_vector3_inner_product() but the +vectors are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : the first GimpVector3. +
+vector2 : the second GimpVector3. +
+Returns : The inner product. +
+
+
+
+

+gimp_vector3_cross_product ()

+
GimpVector3 gimp_vector3_cross_product      (const GimpVector3 *vector1,
+                                             const GimpVector3 *vector2);
+

Compute the cross product of two vectors. The result is a -GimpVector3 which is orthognal to both vector1 and vector2. If -vector1 and vector2 and parallel, the result will be the nul +GimpVector3 which is orthognal to both vector1 and vector2. If +vector1 and vector2 and parallel, the result will be the nul vector. -

+

+

This function can be used to compute the normal of the plane -defined by vector1 and vector2.

+defined by vector1 and vector2.

+

-

vector1 : a pointer to the first GimpVector3. -
vector2 : a pointer to the second GimpVector3. -
Returns : The cross product. -

gimp_vector3_cross_product_val ()

GimpVector3 gimp_vector3_cross_product_val  (GimpVector3 vector1,
-                                             GimpVector3 vector2);

-This function is identical to gimp_vector3_cross_product() but the -vectors are passed by value rather than by reference.

- -

vector1 : the first GimpVector3. -
vector2 : the second GimpVector3. -
Returns : The cross product. -

gimp_vector3_rotate ()

void        gimp_vector3_rotate             (GimpVector3 *vector,
+

+
++ + + + + + + + + + + + + + +
+vector1 : a pointer to the first GimpVector3. +
+vector2 : a pointer to the second GimpVector3. +
+Returns : The cross product. +
+
+
+
+

+gimp_vector3_cross_product_val ()

+
GimpVector3 gimp_vector3_cross_product_val  (GimpVector3 vector1,
+                                             GimpVector3 vector2);
+

+This function is identical to gimp_vector3_cross_product() but the +vectors are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + +
+vector1 : the first GimpVector3. +
+vector2 : the second GimpVector3. +
+Returns : The cross product. +
+
+
+
+

+gimp_vector3_rotate ()

+
void        gimp_vector3_rotate             (GimpVector3 *vector,
                                              gdouble alpha,
                                              gdouble beta,
-                                             gdouble gamma);

-Rotates the vector around the three axis (Z, Y, and X) by alpha, -beta and gamma, respectively. -

+ gdouble gamma); +

+Rotates the vector around the three axis (Z, Y, and X) by alpha, +beta and gamma, respectively. +

+

Note that the order of the rotation is very important. If you expect a vector to be rotated around X, and then around Y, you will have to call this function twice. Also, it is often wise to call -this function with only one of alpha, beta and gamma non-zero.

+this function with only one of alpha, beta and gamma non-zero.

+

-

vector : a pointer to a GimpVector3. -
alpha : the angle (in radian) of rotation around the Z axis. -
beta : the angle (in radian) of rotation around the Y axis. -
gamma : the angle (in radian) of rotation around the X axis. -

gimp_vector3_rotate_val ()

GimpVector3 gimp_vector3_rotate_val         (GimpVector3 vector,
+

+
++ + + + + + + + + + + + + + + + + + +
+vector : a pointer to a GimpVector3. +
+alpha : the angle (in radian) of rotation around the Z axis. +
+beta : the angle (in radian) of rotation around the Y axis. +
+gamma : the angle (in radian) of rotation around the X axis. +
+
+
+
+

+gimp_vector3_rotate_val ()

+
GimpVector3 gimp_vector3_rotate_val         (GimpVector3 vector,
                                              gdouble alpha,
                                              gdouble beta,
-                                             gdouble gamma);

-This function is identical to gimp_vector3_rotate() but the vectors -are passed by value rather than by reference.

- -

vector : a GimpVector3. -
alpha : the angle (in radian) of rotation around the Z axis. -
beta : the angle (in radian) of rotation around the Y axis. -
gamma : the angle (in radian) of rotation around the X axis. -
Returns : the rotated vector. -

gimp_vector_2d_to_3d ()

void        gimp_vector_2d_to_3d            (gint sx,
+                                             gdouble gamma);
+

+This function is identical to gimp_vector3_rotate() but the vectors +are passed by value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+vector : a GimpVector3. +
+alpha : the angle (in radian) of rotation around the Z axis. +
+beta : the angle (in radian) of rotation around the Y axis. +
+gamma : the angle (in radian) of rotation around the X axis. +
+Returns : the rotated vector. +
+
+
+
+

+gimp_vector_2d_to_3d ()

+
void        gimp_vector_2d_to_3d            (gint sx,
                                              gint sy,
                                              gint w,
                                              gint h,
                                              gint x,
                                              gint y,
                                              const GimpVector3 *vp,
-                                             GimpVector3 *p);

+ GimpVector3 *p); +

\"Compute screen (sx, sy) - (sx + w, sy + h) to 3D unit square mapping. The plane to map to is given in the z field of p. The observer is located at position vp (vp->z != 0.0).\" -

-In other words, this computes the projection of the point (x, y) -to the plane z = p->z (parallel to XY), from the vp point of view -through the screen (sx, sy)->(sx + w, sy + h)

- -

sx : the abscisse of the upper-left screen rectangle. -
sy : the ordinate of the upper-left screen rectangle. -
w : the width of the screen rectangle. -
h : the height of the screen rectangle. -
x : the abscisse of the point in the screen rectangle to map. -
y : the ordinate of the point in the screen rectangle to map. -
vp : the position of the observer. -
p : the resulting point. -

gimp_vector_2d_to_3d_val ()

GimpVector3 gimp_vector_2d_to_3d_val        (gint sx,
+

+

+In other words, this computes the projection of the point (x, y) +to the plane z = p->z (parallel to XY), from the vp point of view +through the screen (sx, sy)->(sx + w, sy + h)

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+sx : the abscisse of the upper-left screen rectangle. +
+sy : the ordinate of the upper-left screen rectangle. +
+w : the width of the screen rectangle. +
+h : the height of the screen rectangle. +
+x : the abscisse of the point in the screen rectangle to map. +
+y : the ordinate of the point in the screen rectangle to map. +
+vp : the position of the observer. +
+p : the resulting point. +
+
+
+
+

+gimp_vector_2d_to_3d_val ()

+
GimpVector3 gimp_vector_2d_to_3d_val        (gint sx,
                                              gint sy,
                                              gint w,
                                              gint h,
                                              gint x,
                                              gint y,
                                              GimpVector3 vp,
-                                             GimpVector3 p);

-This function is identical to gimp_vector_2d_to_3d() but the -position of the observer and the resulting point p are passed by -value rather than by reference.

- -

sx : the abscisse of the upper-left screen rectangle. -
sy : the ordinate of the upper-left screen rectangle. -
w : the width of the screen rectangle. -
h : the height of the screen rectangle. -
x : the abscisse of the point in the screen rectangle to map. -
y : the ordinate of the point in the screen rectangle to map. -
vp : position of the observer. -
p : the resulting point. -
Returns : the computed GimpVector3 point. -

gimp_vector_3d_to_2d ()

void        gimp_vector_3d_to_2d            (gint sx,
+                                             GimpVector3 p);
+

+This function is identical to gimp_vector_2d_to_3d() but the +position of the observer and the resulting point p are passed by +value rather than by reference.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+sx : the abscisse of the upper-left screen rectangle. +
+sy : the ordinate of the upper-left screen rectangle. +
+w : the width of the screen rectangle. +
+h : the height of the screen rectangle. +
+x : the abscisse of the point in the screen rectangle to map. +
+y : the ordinate of the point in the screen rectangle to map. +
+vp : position of the observer. +
+p : the resulting point. +
+Returns : the computed GimpVector3 point. +
+
+
+
+

+gimp_vector_3d_to_2d ()

+
void        gimp_vector_3d_to_2d            (gint sx,
                                              gint sy,
                                              gint w,
                                              gint h,
                                              gdouble *x,
                                              gdouble *y,
                                              const GimpVector3 *vp,
-                                             const GimpVector3 *p);

+ const GimpVector3 *p); +

Convert the given 3D point to 2D (project it onto the viewing plane, (sx, sy, 0) - (sx + w, sy + h, 0). The input is assumed to be in the unit square (0, 0, z) - (1, 1, z). The viewpoint of the observer is passed in vp. -

-This is basically the opposite of gimp_vector_2d_to_3d().

- -

sx : the abscisse of the upper-left screen rectangle. -
sy : the ordinate of the upper-left screen rectangle. -
w : the width of the screen rectangle. -
h : the height of the screen rectangle. -
x : the abscisse of the point in the screen rectangle to map (return value). -
y : the ordinate of the point in the screen rectangle to map (return value). -
vp : position of the observer. -
p : the 3D point to project to the plane. -

See Also

+

+

+This is basically the opposite of gimp_vector_2d_to_3d().

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+sx : the abscisse of the upper-left screen rectangle. +
+sy : the ordinate of the upper-left screen rectangle. +
+w : the width of the screen rectangle. +
+h : the height of the screen rectangle. +
+x : the abscisse of the point in the screen rectangle to map (return value). +
+y : the ordinate of the point in the screen rectangle to map (return value). +
+vp : position of the observer. +
+p : the 3D point to project to the plane. +
+
+
+
+

See Also

+

GimpMatrix3 -

+

+

GimpMatrix4 -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath.html gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath.html --- gimp-2.2.8/devel-docs/libgimpmath/html/libgimpmath.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/html/libgimpmath.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,31 +1,28 @@ -Part I. GIMP Math Library

GIMP Math Library

Table of Contents

GimpMath - Mathematical definitions and macros.
GimpMatrix - Utilities to set up and manipulate 3x3 transformation matrices.
GimpVector - Utilities to set up and manipulate vectors.
GimpMD5 - the MD5 message-digest algorithm
+ + + +Part I. GIMP Math Library + + + + + + + + + + + + + + + + +

+GIMP Math Library

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/html/style.css gimp-2.2.9/devel-docs/libgimpmath/html/style.css --- gimp-2.2.8/devel-docs/libgimpmath/html/style.css 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/devel-docs/libgimpmath/html/style.css 2005-10-27 17:14:06.000000000 +0200 @@ -0,0 +1,66 @@ +.synopsis, .classsynopsis +{ + background: #eeeeee; + border: solid 1px #aaaaaa; + padding: 0.5em; +} +.programlisting +{ + background: #eeeeff; + border: solid 1px #aaaaff; + padding: 0.5em; +} +.variablelist +{ + padding: 4px; + margin-left: 3em; +} +.variablelist td:first-child +{ + vertical-align: top; +} +table.navigation +{ + background: #ffeeee; + border: solid 1px #ffaaaa; + margin-top: 0.5em; + margin-bottom: 0.5em; +} +.navigation a +{ + color: #770000; +} +.navigation a:visited +{ + color: #550000; +} +.navigation .title +{ + font-size: 200%; +} +div.refnamediv +{ + margin-top: 2em; +} +div.gallery-float +{ + float: left; + padding: 10px; +} +div.gallery-float img +{ + border-style: none; +} +div.gallery-spacer +{ + clear: both; +} +a +{ + text-decoration: none; +} +a:hover +{ + text-decoration: underline; + color: #FF0000; +} diff -uraN gimp-2.2.8/devel-docs/libgimpmath/Makefile.in gimp-2.2.9/devel-docs/libgimpmath/Makefile.in --- gimp-2.2.8/devel-docs/libgimpmath/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/Makefile.in 2005-10-27 17:11:39.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimpmath +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -419,7 +435,6 @@ GTKDOC_CFLAGS = GTKDOC_LIBS = @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -430,24 +445,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -455,25 +461,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimpmath -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpmath/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimpmath/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -491,13 +512,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -509,7 +526,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -530,7 +547,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -552,7 +568,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -569,6 +585,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -603,12 +621,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -621,7 +640,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -641,7 +660,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -649,11 +668,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -714,6 +733,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpmath.sgml gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpmath.sgml --- gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpmath.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpmath.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -15,6 +15,9 @@
+ + + This macro rounds its argument @x to an integer value in floating point diff -uraN gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpmatrix.sgml gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpmatrix.sgml --- gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpmatrix.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpmatrix.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -24,6 +24,9 @@ #GimpVector4 + + + A two by two matrix. diff -uraN gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpmd5.sgml gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpmd5.sgml --- gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpmd5.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpmd5.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpvector.sgml gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpvector.sgml --- gimp-2.2.8/devel-docs/libgimpmath/tmpl/gimpvector.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/tmpl/gimpvector.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -18,6 +18,9 @@ #GimpMatrix4 + + + A two dimensional vector. diff -uraN gimp-2.2.8/devel-docs/libgimpmath/xml/gimpmath.xml gimp-2.2.9/devel-docs/libgimpmath/xml/gimpmath.xml --- gimp-2.2.8/devel-docs/libgimpmath/xml/gimpmath.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/xml/gimpmath.xml 2005-10-27 17:14:06.000000000 +0200 @@ -19,11 +19,11 @@ -#define RINT (x) -#define ROUND (x) -#define SQR (x) -#define MAX255 (a) -#define CLAMP0255 (a) +#define RINT (x) +#define ROUND (x) +#define SQR (x) +#define MAX255 (a) +#define CLAMP0255 (a) #define gimp_deg_to_rad (angle) #define gimp_rad_to_deg (angle) @@ -48,7 +48,7 @@ Details -<anchor id="RINT-CAPS"/>RINT() +<anchor id="RINT:CAPS"/>RINT() RINT#define RINT(x) This macro rounds its argument x to an integer value in floating point @@ -61,7 +61,7 @@ -<anchor id="ROUND-CAPS"/>ROUND() +<anchor id="ROUND:CAPS"/>ROUND() ROUND#define ROUND(x) ((int) ((x) + 0.5)) @@ -74,7 +74,7 @@ -<anchor id="SQR-CAPS"/>SQR() +<anchor id="SQR:CAPS"/>SQR() SQR#define SQR(x) ((x) * (x)) @@ -87,7 +87,7 @@ -<anchor id="MAX255-CAPS"/>MAX255() +<anchor id="MAX255:CAPS"/>MAX255() MAX255#define MAX255(a) ((a) | (((a) & 256) - (((a) & 256) >> 8))) @@ -100,7 +100,7 @@ -<anchor id="CLAMP0255-CAPS"/>CLAMP0255() +<anchor id="CLAMP0255:CAPS"/>CLAMP0255() CLAMP0255#define CLAMP0255(a) CLAMP(a,0,255) diff -uraN gimp-2.2.8/devel-docs/libgimpmath/xml/gimpmatrix.xml gimp-2.2.9/devel-docs/libgimpmath/xml/gimpmatrix.xml --- gimp-2.2.8/devel-docs/libgimpmath/xml/gimpmatrix.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/xml/gimpmatrix.xml 2005-10-27 17:14:06.000000000 +0200 @@ -19,9 +19,9 @@ -struct GimpMatrix2; -struct GimpMatrix3; -struct GimpMatrix4; + GimpMatrix2; + GimpMatrix3; + GimpMatrix4; void gimp_matrix2_identity (GimpMatrix2 *matrix); void gimp_matrix2_mult (const GimpMatrix2 *matrix1, GimpMatrix2 *matrix2); @@ -86,31 +86,28 @@ Details -<anchor id="GimpMatrix2"/>struct GimpMatrix2 -GimpMatrix2struct GimpMatrix2 { - +<anchor id="GimpMatrix2"/>GimpMatrix2 +GimpMatrix2typedef struct { gdouble coeff[2][2]; -}; +} GimpMatrix2; A two by two matrix. -<anchor id="GimpMatrix3"/>struct GimpMatrix3 -GimpMatrix3struct GimpMatrix3 { - +<anchor id="GimpMatrix3"/>GimpMatrix3 +GimpMatrix3typedef struct { gdouble coeff[3][3]; -}; +} GimpMatrix3; A three by three matrix. -<anchor id="GimpMatrix4"/>struct GimpMatrix4 -GimpMatrix4struct GimpMatrix4 { - +<anchor id="GimpMatrix4"/>GimpMatrix4 +GimpMatrix4typedef struct { gdouble coeff[4][4]; -}; +} GimpMatrix4; A four by four matrix. @@ -341,7 +338,7 @@ matrix : The input matrix. -Returns : The determinant. +Returns : The determinant. @@ -367,7 +364,7 @@ matrix : The matrix that is to be tested. -Returns : TRUE if the matrix is diagonal. +Returns : TRUE if the matrix is diagonal. @@ -381,7 +378,7 @@ matrix : The matrix that is to be tested. -Returns : TRUE if the matrix is the identity matrix. +Returns : TRUE if the matrix is the identity matrix. @@ -396,7 +393,7 @@ matrix : The matrix that is to be tested. -Returns : TRUE if all entries of the upper left 2x2 matrix are either +Returns : TRUE if all entries of the upper left 2x2 matrix are either 0 or 1 diff -uraN gimp-2.2.8/devel-docs/libgimpmath/xml/gimpvector.xml gimp-2.2.9/devel-docs/libgimpmath/xml/gimpvector.xml --- gimp-2.2.8/devel-docs/libgimpmath/xml/gimpvector.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmath/xml/gimpvector.xml 2005-10-27 17:14:06.000000000 +0200 @@ -19,9 +19,9 @@ -struct GimpVector2; -struct GimpVector3; -struct GimpVector4; + GimpVector2; + GimpVector3; + GimpVector4; GimpVector2 gimp_vector2_new (gdouble x, gdouble y); void gimp_vector2_set (GimpVector2 *vector, @@ -148,31 +148,28 @@ Details -<anchor id="GimpVector2"/>struct GimpVector2 -GimpVector2struct GimpVector2 { - +<anchor id="GimpVector2"/>GimpVector2 +GimpVector2typedef struct { gdouble x, y; -}; +} GimpVector2; A two dimensional vector. -<anchor id="GimpVector3"/>struct GimpVector3 -GimpVector3struct GimpVector3 { - +<anchor id="GimpVector3"/>GimpVector3 +GimpVector3typedef struct { gdouble x, y, z; -}; +} GimpVector3; A three dimensional vector. -<anchor id="GimpVector4"/>struct GimpVector4 -GimpVector4struct GimpVector4 { - +<anchor id="GimpVector4"/>GimpVector4 +GimpVector4typedef struct { gdouble x, y, z, w; -}; +} GimpVector4; A four dimensional vector. @@ -192,7 +189,7 @@ y : the Y coordinate. -Returns : the resulting GimpVector2. +Returns : the resulting GimpVector2. @@ -226,7 +223,7 @@ vector : a pointer to a GimpVector2. -Returns : the length of vector (a positive gdouble). +Returns : the length of vector (a positive gdouble). @@ -241,7 +238,7 @@ vector : a GimpVector2. -Returns : the length of vector (a positive gdouble). +Returns : the length of vector (a positive gdouble). @@ -277,7 +274,7 @@ factor : a scalar. -Returns : the resulting GimpVector2. +Returns : the resulting GimpVector2. @@ -305,7 +302,7 @@ vector : a GimpVector2. -Returns : a GimpVector2 parallel to vector, pointing in the same +Returns : a GimpVector2 parallel to vector, pointing in the same direction but with a length of 1.0. @@ -333,7 +330,7 @@ vector : a GimpVector2. -Returns : the negated GimpVector2. +Returns : the negated GimpVector2. @@ -373,7 +370,7 @@ vector2 : the second GimpVector2. -Returns : the resulting GimpVector2. +Returns : the resulting GimpVector2. @@ -413,7 +410,7 @@ vector2 : the second GimpVector2. -Returns : the resulting GimpVector2. +Returns : the resulting GimpVector2. @@ -432,7 +429,7 @@ vector2 : a pointer to the second GimpVector2. -Returns : The inner product. +Returns : The inner product. @@ -451,7 +448,7 @@ vector2 : the second GimpVector2. -Returns : The inner product. +Returns : The inner product. @@ -476,7 +473,7 @@ vector2 : a pointer to the second GimpVector2. -Returns : The cross product. +Returns : The cross product. @@ -495,7 +492,7 @@ vector2 : the second GimpVector2. -Returns : The cross product. +Returns : The cross product. @@ -530,7 +527,7 @@ alpha : an angle (in radians). -Returns : a GimpVector2 representing vector rotated by alpha +Returns : a GimpVector2 representing vector rotated by alpha radians. @@ -553,7 +550,7 @@ z : the Z coordinate. -Returns : the resulting GimpVector3. +Returns : the resulting GimpVector3.
@@ -591,7 +588,7 @@ vector : a pointer to a GimpVector3. -Returns : the length of vector (a positive gdouble). +Returns : the length of vector (a positive gdouble). @@ -606,7 +603,7 @@ vector : a GimpVector3. -Returns : the length of vector (a positive gdouble). +Returns : the length of vector (a positive gdouble). @@ -642,7 +639,7 @@ factor : a scalar. -Returns : the resulting GimpVector3. +Returns : the resulting GimpVector3. @@ -670,7 +667,7 @@ vector : a GimpVector3. -Returns : a GimpVector3 parallel to vector, pointing in the same +Returns : a GimpVector3 parallel to vector, pointing in the same direction but with a length of 1.0. @@ -698,7 +695,7 @@ vector : a GimpVector3. -Returns : the negated GimpVector3. +Returns : the negated GimpVector3.
@@ -738,7 +735,7 @@ vector2 : a GimpVector3. -Returns : the resulting GimpVector3. +Returns : the resulting GimpVector3. @@ -778,7 +775,7 @@ vector2 : a GimpVector3. -Returns : the resulting GimpVector3. +Returns : the resulting GimpVector3. @@ -797,7 +794,7 @@ vector2 : a pointer to the second GimpVector3. -Returns : The inner product. +Returns : The inner product. @@ -816,7 +813,7 @@ vector2 : the second GimpVector3. -Returns : The inner product. +Returns : The inner product. @@ -841,7 +838,7 @@ vector2 : a pointer to the second GimpVector3. -Returns : The cross product. +Returns : The cross product. @@ -860,7 +857,7 @@ vector2 : the second GimpVector3. -Returns : The cross product. +Returns : The cross product. @@ -918,7 +915,7 @@ gamma : the angle (in radian) of rotation around the X axis. -Returns : the rotated vector. +Returns : the rotated vector. @@ -1009,7 +1006,7 @@ p : the resulting point. -Returns : the computed GimpVector3 point. +Returns : the computed GimpVector3 point. diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/GimpModuleDB.html gimp-2.2.9/devel-docs/libgimpmodule/html/GimpModuleDB.html --- gimp-2.2.8/devel-docs/libgimpmodule/html/GimpModuleDB.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/GimpModuleDB.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,38 +1,38 @@ -GimpModuleDB

GimpModuleDB

GimpModuleDB — Keeps a list of GimpModule's found in a given searchpath.

Synopsis

+
+
+
+GimpModuleDB
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpModuleDB

+

GimpModuleDB — Keeps a list of GimpModule's found in a given searchpath.

+
+
+

Synopsis

+
 
 
 
-struct      GimpModuleDB;
+            GimpModuleDB;
 GimpModuleDB* gimp_module_db_new            (gboolean verbose);
 void        gimp_module_db_set_load_inhibit (GimpModuleDB *db,
                                              const gchar *load_inhibit);
@@ -43,11 +43,19 @@
 void        gimp_module_db_refresh          (GimpModuleDB *db,
                                              const gchar *module_path);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
   GObject
    +----GimpModuleDB
-

Signal Prototypes

+
+
+
+

Signal Prototypes

+
 
 "add"       void        user_function      (GimpModuleDB *gimpmoduledb,
                                             GimpModule *arg1,
@@ -59,71 +67,293 @@
 "remove"    void        user_function      (GimpModuleDB *gimpmoduledb,
                                             GimpModule *arg1,
                                             gpointer user_data);
-

Description

+

+
+
+

Description

+

Keeps a list of GimpModule's found in a given searchpath. -

Details

struct GimpModuleDB

struct GimpModuleDB;

+

+
+
+

Details

+
+

+GimpModuleDB

+
typedef struct _GimpModuleDB GimpModuleDB;
+

The GimpModuleDB struct contains no public members. -


gimp_module_db_new ()

GimpModuleDB* gimp_module_db_new            (gboolean verbose);

-Creates a new GimpModuleDB instance. The verbose parameter will be -passed to the created GimpModule instances using gimp_module_new().

- -

verbose : Pass TRUE to enable debugging output. -
Returns : The new GimpModuleDB instance. -

gimp_module_db_set_load_inhibit ()

void        gimp_module_db_set_load_inhibit (GimpModuleDB *db,
-                                             const gchar *load_inhibit);

-Sets the load_inhibit flag for all GimpModule's which are kept -by db (using gimp_module_set_load_inhibit()).

- -

+ + +
db : A GimpModuleDB. -
load_inhibit : A G_SEARCHPATH_SEPARATOR delimited list of module +

+ +
+
+

+gimp_module_db_new ()

+
GimpModuleDB* gimp_module_db_new            (gboolean verbose);
+

+Creates a new GimpModuleDB instance. The verbose parameter will be +passed to the created GimpModule instances using gimp_module_new().

+

+ +

+
++ + + + + + + + + + +
+verbose : Pass TRUE to enable debugging output. +
+Returns : The new GimpModuleDB instance. +
+
+
+
+

+gimp_module_db_set_load_inhibit ()

+
void        gimp_module_db_set_load_inhibit (GimpModuleDB *db,
+                                             const gchar *load_inhibit);
+

+Sets the load_inhibit flag for all GimpModule's which are kept +by db (using gimp_module_set_load_inhibit()).

+

+ +

+
++ + + + + + + +
+db : A GimpModuleDB. +
+load_inhibit : A G_SEARCHPATH_SEPARATOR delimited list of module filenames to exclude from auto-loading. -

gimp_module_db_get_load_inhibit ()

const gchar* gimp_module_db_get_load_inhibit
-                                            (GimpModuleDB *db);

+

+
+
+
+

+gimp_module_db_get_load_inhibit ()

+
const gchar* gimp_module_db_get_load_inhibit
+                                            (GimpModuleDB *db);
+

Return the G_SEARCHPATH_SEPARATOR selimited list of module filenames -which are excluded from auto-loading.

- -

db : A GimpModuleDB. -
Returns : the db's load_inhibit string. -

gimp_module_db_load ()

void        gimp_module_db_load             (GimpModuleDB *db,
-                                             const gchar *module_path);

-Scans the directories contained in module_path using -gimp_datafiles_read_directories() and creates a GimpModule -instance for every loadable module contained in the directories.

+which are excluded from auto-loading.

+

-

+ + +
db : A GimpModuleDB. -
module_path : A G_SEARCHPATH_SEPARATOR delimited list of directories +

+
++ + + + + + + + + + +
+db : A GimpModuleDB. +
+Returns : the db's load_inhibit string. +
+ +
+
+

+gimp_module_db_load ()

+
void        gimp_module_db_load             (GimpModuleDB *db,
+                                             const gchar *module_path);
+

+Scans the directories contained in module_path using +gimp_datafiles_read_directories() and creates a GimpModule +instance for every loadable module contained in the directories.

+

+ +

+
++ + + + + + + +
+db : A GimpModuleDB. +
+module_path : A G_SEARCHPATH_SEPARATOR delimited list of directories to load modules from. -

gimp_module_db_refresh ()

void        gimp_module_db_refresh          (GimpModuleDB *db,
-                                             const gchar *module_path);

-Does the same as gimp_module_db_load(), plus removes all GimpModule +

+
+
+
+

+gimp_module_db_refresh ()

+
void        gimp_module_db_refresh          (GimpModuleDB *db,
+                                             const gchar *module_path);
+

+Does the same as gimp_module_db_load(), plus removes all GimpModule instances whose modules have been deleted from disk. -

+

+

Note that the GimpModule's will just be removed from the internal list and not freed as this is not possible with GTypeModule -instances which actually implement types.

+instances which actually implement types.

+

-

+ + +
db : A GimpModuleDB. -
module_path : A G_SEARCHPATH_SEPARATOR delimited list of directories +

+
++ + + + + + + +
+db : A GimpModuleDB. +
+module_path : A G_SEARCHPATH_SEPARATOR delimited list of directories to load modules from. -

Signals

The "add" signal

void        user_function                  (GimpModuleDB *gimpmoduledb,
+
+
+
+
+

Signals

+
+

+The "add" signal

+
void        user_function                  (GimpModuleDB *gimpmoduledb,
                                             GimpModule *arg1,
-                                            gpointer user_data);

- -

gimpmoduledb :the object which received the signal. -
arg1 : + gpointer user_data); +

-

user_data :user data set when the signal handler was connected.

The "module-modified" signal

void        user_function                  (GimpModuleDB *gimpmoduledb,
+

+
++ + + + + + + + + + + + + + +
+gimpmoduledb :the object which received the signal. +
+arg1 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "module-modified" signal

+
void        user_function                  (GimpModuleDB *gimpmoduledb,
                                             GimpModule *arg1,
-                                            gpointer user_data);

+ gpointer user_data); +

-

gimpmoduledb :the object which received the signal. -
arg1 : - -
user_data :user data set when the signal handler was connected.

The "remove" signal

void        user_function                  (GimpModuleDB *gimpmoduledb,
+

+
++ + + + + + + + + + + + + + +
+gimpmoduledb :the object which received the signal. +
+arg1 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "remove" signal

+
void        user_function                  (GimpModuleDB *gimpmoduledb,
                                             GimpModule *arg1,
-                                            gpointer user_data);

- -

gimpmoduledb :the object which received the signal. -
arg1 : + gpointer user_data); +

-

user_data :user data set when the signal handler was connected.
+

+
++ + + + + + + + + + + + + + +
+gimpmoduledb :the object which received the signal. +
+arg1 : + +
+user_data :user data set when the signal handler was connected.
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/GimpModule.html gimp-2.2.9/devel-docs/libgimpmodule/html/GimpModule.html --- gimp-2.2.8/devel-docs/libgimpmodule/html/GimpModule.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/GimpModule.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,45 +1,47 @@ -GimpModule

GimpModule

GimpModule — A GTypeModule subclass which implements module loading using GModule.

Synopsis

+
+
+
+GimpModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpModule

+

GimpModule — A GTypeModule subclass which implements module loading using GModule.

+
+
+

Synopsis

+
 
 
 
-struct      GimpModule;
-struct      GimpModuleInfo;
+            GimpModule;
+            GimpModuleInfo;
 enum        GimpModuleState;
 const GimpModuleInfo* (*GimpModuleQueryFunc)
                                             (GTypeModule *module);
 gboolean    (*GimpModuleRegisterFunc)       (GTypeModule *module);
-#define     GIMP_MODULE_ABI_VERSION
-#define     GIMP_MODULE_PARAM_SERIALIZE
+#define     GIMP_MODULE_ABI_VERSION
+#define     GIMP_MODULE_PARAM_SERIALIZE
 GimpModule* gimp_module_new                 (const gchar *filename,
                                              gboolean load_inhibit,
                                              gboolean verbose);
@@ -60,20 +62,43 @@
 GimpModuleInfo* gimp_module_info_copy       (const GimpModuleInfo *info);
 void        gimp_module_info_free           (GimpModuleInfo *info);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
   GObject
    +----GTypeModule
          +----GimpModule
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpModule implements - GTypePlugin.

Signal Prototypes

+ GTypePlugin.

+
+
+

Signal Prototypes

+
 
 "modified"  void        user_function      (GimpModule *gimpmodule,
                                             gpointer user_data);
-

Description

+ +

+
+

Description

+

A GTypeModule subclass which implements module loading using GModule. -

Details

struct GimpModule

struct GimpModule {
+

+
+
+

Details

+
+

+GimpModule

+
typedef struct {
   gchar           *filename;     /* path to the module                       */
   gboolean         verbose;      /* verbose error reporting                  */
   GimpModuleState  state;        /* what's happened to the module            */
@@ -83,33 +108,80 @@
   /* stuff from now on may be NULL depending on the state the module is in   */
   GimpModuleInfo  *info;         /* returned values from module_query        */
   gchar           *last_module_error;
-
-};
-

+} GimpModule; + +

GimpModule is a generic mechanism to dynamically load modules into the GIMP. It is a GTypeModule subclass, implementing module loading using GModule. GimpModule does not know which functionality is implemented by the modules, it just provides a framework to get arbitrary GType implementations loaded from disk. -


struct GimpModuleInfo

struct GimpModuleInfo {
-
+

+
+
+
+

+GimpModuleInfo

+
typedef struct {
   guint32  abi_version;
   gchar   *purpose;
   gchar   *author;
   gchar   *version;
   gchar   *copyright;
   gchar   *date;
-};
-

+} GimpModuleInfo; + +

This structure contains information about a loadable module. -

guint32 abi_versionThe GIMP_MODULE_ABI_VERSION the module was compiled against. -
gchar *purpose The module's general purpose. -
gchar *author The module's author. -
gchar *version The module's version. -
gchar *copyright The module's copyright. -
gchar *date The module's release date. - -

enum GimpModuleState

typedef enum
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+guint32 abi_version;The GIMP_MODULE_ABI_VERSION the module was compiled against. +
+gchar *purpose; The module's general purpose. +
+gchar *author; The module's author. +
+gchar *version; The module's version. +
+gchar *copyright; The module's copyright. +
+gchar *date; The module's release date. + +
+
+
+
+

+enum GimpModuleState

+
typedef enum
 {
   GIMP_MODULE_STATE_ERROR,       /* missing gimp_module_register function
                                   * or other error
@@ -123,124 +195,488 @@
                                   * types implemented by this module
                                   */
 } GimpModuleState;
-

+ +

The possible states a GimpModule can be in. -

+ + +
GIMP_MODULE_STATE_ERROR Missing gimp_module_register() function +

+
++ + + + + + + + + + + + + + + +
+GIMP_MODULE_STATE_ERROR Missing gimp_module_register() function or other error. -
GIMP_MODULE_STATE_LOADED An instance of a type implemented by +
+GIMP_MODULE_STATE_LOADED An instance of a type implemented by this module is allocated. -
GIMP_MODULE_STATE_LOAD_FAILEDgimp_module_register() returned FALSE. -
GIMP_MODULE_STATE_NOT_LOADED There are no instances allocated of +
+GIMP_MODULE_STATE_LOAD_FAILED +gimp_module_register() returned FALSE. +
+GIMP_MODULE_STATE_NOT_LOADED There are no instances allocated of types implemented by this module. -

GimpModuleQueryFunc ()

const GimpModuleInfo* (*GimpModuleQueryFunc)
-                                            (GTypeModule *module);

+

+
+
+
+

+GimpModuleQueryFunc ()

+
const GimpModuleInfo* (*GimpModuleQueryFunc)
+                                            (GTypeModule *module);
+

The signature of the query function a loadable GIMP module must implement. In the module, the function must be called -gimp_module_query(). -

+gimp_module_query(). +

+

GimpModule will copy the returned GimpModuleInfo struct, so the module doesn't need to keep these values around (however in most cases the module will just return a pointer to a constant structure). -

module : The GimpModule responsible for this loadable module. -
Returns :The GimpModuleInfo struct describing the module. - - -

GimpModuleRegisterFunc ()

gboolean    (*GimpModuleRegisterFunc)       (GTypeModule *module);

+

+
++ + + + + + + + + + +
+module : The GimpModule responsible for this loadable module. +
+Returns :The GimpModuleInfo struct describing the module. + + +
+
+
+
+

+GimpModuleRegisterFunc ()

+
gboolean    (*GimpModuleRegisterFunc)       (GTypeModule *module);
+

The signature of the register function a loadable GIMP module must implement. In the module, the function must be called -gimp_module_register(). -

+gimp_module_register(). +

+

When this function is called, the module should register all the types -it implements with the passed module. -

module : The GimpModule responsible for this loadable module. -
Returns :TRUE on success, FALSE otherwise. - - -

GIMP_MODULE_ABI_VERSION

#define GIMP_MODULE_ABI_VERSION 0x0004
-

+it implements with the passed module. +

+
++ + + + + + + + + + +
+module : The GimpModule responsible for this loadable module. +
+Returns : +TRUE on success, FALSE otherwise. + + +
+
+
+
+

+GIMP_MODULE_ABI_VERSION

+
#define GIMP_MODULE_ABI_VERSION 0x0004
+
+

The version of the module system's ABI. Modules put this value into -GimpModuleInfo's abi_version field so the code loading the modules +GimpModuleInfo's abi_version field so the code loading the modules can check if it was compiled against the same module ABI the modules are compiled against. -


GIMP_MODULE_PARAM_SERIALIZE

#define GIMP_MODULE_PARAM_SERIALIZE (1 << (0 + G_PARAM_USER_SHIFT))
-

- -


gimp_module_new ()

GimpModule* gimp_module_new                 (const gchar *filename,
+

+
+
+
+

+GIMP_MODULE_PARAM_SERIALIZE

+
#define GIMP_MODULE_PARAM_SERIALIZE (1 << (0 + G_PARAM_USER_SHIFT))
+
+

+ +

+
+
+
+

+gimp_module_new ()

+
GimpModule* gimp_module_new                 (const gchar *filename,
                                              gboolean load_inhibit,
-                                             gboolean verbose);

-Creates a new GimpModule instance.

- -

filename : The filename of a loadable module. -
load_inhibit : Pass TRUE to exclude this module from auto-loading. -
verbose : Pass TRUE to enable debugging output. -
Returns : The new GimpModule object. -

gimp_module_modified ()

void        gimp_module_modified            (GimpModule *module);

+ gboolean verbose); +

+Creates a new GimpModule instance.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+filename : The filename of a loadable module. +
+load_inhibit : Pass TRUE to exclude this module from auto-loading. +
+verbose : Pass TRUE to enable debugging output. +
+Returns : The new GimpModule object. +
+
+
+
+

+gimp_module_modified ()

+
void        gimp_module_modified            (GimpModule *module);
+

Emits the "modified" signal. Call it whenever you have modified the module -manually (which you shouldn't do).

+manually (which you shouldn't do).

+

-

module : A GimpModule. -

gimp_module_query_module ()

gboolean    gimp_module_query_module        (GimpModule *module);

+

+
++ + + + +
+module : A GimpModule. +
+
+
+
+

+gimp_module_query_module ()

+
gboolean    gimp_module_query_module        (GimpModule *module);
+

Queries the module without actually registering any of the types it -may implement. After successful query, the info field of the -GimpModule struct will be available for further inspection.

- -

module : A GimpModule. -
Returns : TRUE on success. -

gimp_module_set_load_inhibit ()

void        gimp_module_set_load_inhibit    (GimpModule *module,
-                                             gboolean load_inhibit);

-Sets the load_inhibit property if the module. Emits "modified".

- -

module : A GimpModule. -
load_inhibit : Pass TRUE to exclude this module from auto-loading. -

gimp_module_state_name ()

const gchar* gimp_module_state_name         (GimpModuleState state);

+may implement. After successful query, the info field of the +GimpModule struct will be available for further inspection.

+

+ +

+
++ + + + + + + + + + +
+module : A GimpModule. +
+Returns : TRUE on success. +
+
+
+
+

+gimp_module_set_load_inhibit ()

+
void        gimp_module_set_load_inhibit    (GimpModule *module,
+                                             gboolean load_inhibit);
+

+Sets the load_inhibit property if the module. Emits "modified".

+

+ +

+
++ + + + + + + + + + +
+module : A GimpModule. +
+load_inhibit : Pass TRUE to exclude this module from auto-loading. +
+
+
+
+

+gimp_module_state_name ()

+
const gchar* gimp_module_state_name         (GimpModuleState state);
+

Returns the translated textual representation of a GimpModuleState. -The returned string must not be freed.

+The returned string must not be freed.

+

-

state : A GimpModuleState. -
Returns : The state's name. -

gimp_module_register_enum ()

GType       gimp_module_register_enum       (GTypeModule *module,
+

+
++ + + + + + + + + + +
+state : A GimpModuleState. +
+Returns : The state's name. +
+
+
+
+

+gimp_module_register_enum ()

+
GType       gimp_module_register_enum       (GTypeModule *module,
                                              const gchar *name,
-                                             const GEnumValue *const_static_values);

-Registers an enum similar to g_enum_register_static() but for + const GEnumValue *const_static_values); +

+Registers an enum similar to g_enum_register_static() but for modules. This function should actually live in GLib but since -there's no such API, it is provided here.

+there's no such API, it is provided here.

+

-

module : -
name : -
const_static_values : -
Returns : a new enum GType -

gimp_module_info_new ()

GimpModuleInfo* gimp_module_info_new        (guint32 abi_version,
+

+
++ + + + + + + + + + + + + + + + + + +
+module : +
+name : +
+const_static_values : +
+Returns : a new enum GType +
+
+
+
+

+gimp_module_info_new ()

+
GimpModuleInfo* gimp_module_info_new        (guint32 abi_version,
                                              const gchar *purpose,
                                              const gchar *author,
                                              const gchar *version,
                                              const gchar *copyright,
-                                             const gchar *date);

-Creates a newly allocated GimpModuleInfo struct.

- -

abi_version : The GIMP_MODULE_ABI_VERSION the module was compiled against. -
purpose : The module's general purpose. -
author : The module's author. -
version : The module's version. -
copyright : The module's copyright. -
date : The module's release date. -
Returns : The new GimpModuleInfo struct. -

gimp_module_info_copy ()

GimpModuleInfo* gimp_module_info_copy       (const GimpModuleInfo *info);

-Copies a GimpModuleInfo struct.

- -

info : The GimpModuleInfo struct to copy. -
Returns : The new copy. -

gimp_module_info_free ()

void        gimp_module_info_free           (GimpModuleInfo *info);

-Frees the passed GimpModuleInfo.

- -

info : The GimpModuleInfo struct to free -

Signals

The "modified" signal

void        user_function                  (GimpModule *gimpmodule,
-                                            gpointer user_data);

- -

gimpmodule :the object which received the signal. - -
user_data :user data set when the signal handler was connected.

See Also

+ const gchar *date); +

+Creates a newly allocated GimpModuleInfo struct.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+abi_version : The GIMP_MODULE_ABI_VERSION the module was compiled against. +
+purpose : The module's general purpose. +
+author : The module's author. +
+version : The module's version. +
+copyright : The module's copyright. +
+date : The module's release date. +
+Returns : The new GimpModuleInfo struct. +
+
+
+
+

+gimp_module_info_copy ()

+
GimpModuleInfo* gimp_module_info_copy       (const GimpModuleInfo *info);
+

+Copies a GimpModuleInfo struct.

+

+ +

+
++ + + + + + + + + + +
+info : The GimpModuleInfo struct to copy. +
+Returns : The new copy. +
+
+
+
+

+gimp_module_info_free ()

+
void        gimp_module_info_free           (GimpModuleInfo *info);
+

+Frees the passed GimpModuleInfo.

+

+ +

+
++ + + + +
+info : The GimpModuleInfo struct to free +
+
+
+
+

Signals

+
+

+The "modified" signal

+
void        user_function                  (GimpModule *gimpmodule,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpmodule :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

GModule -

+

+

GTypeModule -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/index.html gimp-2.2.9/devel-docs/libgimpmodule/html/index.html --- gimp-2.2.8/devel-docs/libgimpmodule/html/index.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/index.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,34 +1,44 @@ -GIMP Module Library Reference Manual

- for GIMP 2.2.0 + + + +GIMP Module Library Reference Manual + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

I. GIMP Module Library
GimpModule - A GTypeModule subclass which implements module loading using GModule.
GimpModuleDB - Keeps a list of GimpModule's found in a given searchpath.
+

+
+
+
+
+

Table of Contents

+
+
I. GIMP Module Library
+
+
+GimpModule - A GTypeModule subclass which implements module loading using GModule. +
+
+GimpModuleDB - Keeps a list of GimpModule's found in a given searchpath. +
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/index.sgml gimp-2.2.9/devel-docs/libgimpmodule/html/index.sgml --- gimp-2.2.8/devel-docs/libgimpmodule/html/index.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/index.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -4,8 +4,8 @@ - - + + diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/libgimpmodule.devhelp gimp-2.2.9/devel-docs/libgimpmodule/html/libgimpmodule.devhelp --- gimp-2.2.8/devel-docs/libgimpmodule/html/libgimpmodule.devhelp 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/libgimpmodule.devhelp 2005-10-27 17:14:06.000000000 +0200 @@ -7,13 +7,13 @@ - - + + - - + + @@ -24,7 +24,7 @@ - + diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/libgimpmodule.html gimp-2.2.9/devel-docs/libgimpmodule/html/libgimpmodule.html --- gimp-2.2.8/devel-docs/libgimpmodule/html/libgimpmodule.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/libgimpmodule.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,31 +1,28 @@ -Part I. GIMP Module Library

GIMP Module Library

Table of Contents

GimpModule - A GTypeModule subclass which implements module loading using GModule.
GimpModuleDB - Keeps a list of GimpModule's found in a given searchpath.
+ + + +Part I. GIMP Module Library + + + + + + + + + + + + + + + + +

+GIMP Module Library

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/html/style.css gimp-2.2.9/devel-docs/libgimpmodule/html/style.css --- gimp-2.2.8/devel-docs/libgimpmodule/html/style.css 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/devel-docs/libgimpmodule/html/style.css 2005-10-27 17:14:06.000000000 +0200 @@ -0,0 +1,66 @@ +.synopsis, .classsynopsis +{ + background: #eeeeee; + border: solid 1px #aaaaaa; + padding: 0.5em; +} +.programlisting +{ + background: #eeeeff; + border: solid 1px #aaaaff; + padding: 0.5em; +} +.variablelist +{ + padding: 4px; + margin-left: 3em; +} +.variablelist td:first-child +{ + vertical-align: top; +} +table.navigation +{ + background: #ffeeee; + border: solid 1px #ffaaaa; + margin-top: 0.5em; + margin-bottom: 0.5em; +} +.navigation a +{ + color: #770000; +} +.navigation a:visited +{ + color: #550000; +} +.navigation .title +{ + font-size: 200%; +} +div.refnamediv +{ + margin-top: 2em; +} +div.gallery-float +{ + float: left; + padding: 10px; +} +div.gallery-float img +{ + border-style: none; +} +div.gallery-spacer +{ + clear: both; +} +a +{ + text-decoration: none; +} +a:hover +{ + text-decoration: underline; + color: #FF0000; +} diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/Makefile.in gimp-2.2.9/devel-docs/libgimpmodule/Makefile.in --- gimp-2.2.8/devel-docs/libgimpmodule/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/Makefile.in 2005-10-27 17:11:39.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimpmodule +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -422,13 +438,11 @@ -I$(top_builddir) \ @GMODULE_CFLAGS@ - GTKDOC_LIBS = \ $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ @GMODULE_LIBS@ @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -439,24 +453,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -464,25 +469,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimpmodule -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpmodule/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimpmodule/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -500,13 +520,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -518,7 +534,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -539,7 +555,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -561,7 +576,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -578,6 +593,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -612,12 +629,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -630,7 +648,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -650,7 +668,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -658,11 +676,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -723,6 +741,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/tmpl/gimpmoduledb.sgml gimp-2.2.9/devel-docs/libgimpmodule/tmpl/gimpmoduledb.sgml --- gimp-2.2.8/devel-docs/libgimpmodule/tmpl/gimpmoduledb.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/tmpl/gimpmoduledb.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -14,6 +14,9 @@ + + + The #GimpModuleDB struct contains no public members. diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/tmpl/gimpmodule.sgml gimp-2.2.9/devel-docs/libgimpmodule/tmpl/gimpmodule.sgml --- gimp-2.2.8/devel-docs/libgimpmodule/tmpl/gimpmodule.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/tmpl/gimpmodule.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -17,6 +17,9 @@ #GTypeModule + + + #GimpModule is a generic mechanism to dynamically load modules into diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/xml/gimpmoduledb.xml gimp-2.2.9/devel-docs/libgimpmodule/xml/gimpmoduledb.xml --- gimp-2.2.8/devel-docs/libgimpmodule/xml/gimpmoduledb.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/xml/gimpmoduledb.xml 2005-10-27 17:14:06.000000000 +0200 @@ -19,7 +19,7 @@ -struct GimpModuleDB; + GimpModuleDB; GimpModuleDB* gimp_module_db_new (gboolean verbose); void gimp_module_db_set_load_inhibit (GimpModuleDB *db, const gchar *load_inhibit); @@ -76,8 +76,8 @@ Details -<anchor id="GimpModuleDB-struct"/>struct GimpModuleDB -GimpModuleDBstruct GimpModuleDB; +<anchor id="GimpModuleDB-struct"/>GimpModuleDB +GimpModuleDBtypedef struct _GimpModuleDB GimpModuleDB; The GimpModuleDB struct contains no public members. @@ -93,7 +93,7 @@ verbose : Pass TRUE to enable debugging output. -Returns : The new GimpModuleDB instance. +Returns : The new GimpModuleDB instance.
@@ -110,7 +110,7 @@ A GimpModuleDB. load_inhibit : - A G_SEARCHPATH_SEPARATOR delimited list of module + A G_SEARCHPATH_SEPARATOR delimited list of module filenames to exclude from auto-loading. @@ -119,7 +119,7 @@ gimp_module_db_get_load_inhibitconst gchar* gimp_module_db_get_load_inhibit (GimpModuleDB *db); -Return the G_SEARCHPATH_SEPARATOR selimited list of module filenames +Return the G_SEARCHPATH_SEPARATOR selimited list of module filenames which are excluded from auto-loading. @@ -127,7 +127,7 @@ db : A GimpModuleDB. -Returns : the db's load_inhibit string. +Returns : the db's load_inhibit string.
@@ -145,7 +145,7 @@ A GimpModuleDB. module_path : - A G_SEARCHPATH_SEPARATOR delimited list of directories + A G_SEARCHPATH_SEPARATOR delimited list of directories to load modules from. @@ -168,7 +168,7 @@ A GimpModuleDB. module_path : - A G_SEARCHPATH_SEPARATOR delimited list of directories + A G_SEARCHPATH_SEPARATOR delimited list of directories to load modules from. diff -uraN gimp-2.2.8/devel-docs/libgimpmodule/xml/gimpmodule.xml gimp-2.2.9/devel-docs/libgimpmodule/xml/gimpmodule.xml --- gimp-2.2.8/devel-docs/libgimpmodule/xml/gimpmodule.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpmodule/xml/gimpmodule.xml 2005-10-27 17:14:06.000000000 +0200 @@ -19,14 +19,14 @@ -struct GimpModule; -struct GimpModuleInfo; + GimpModule; + GimpModuleInfo; enum GimpModuleState; const GimpModuleInfo* (*GimpModuleQueryFunc) (GTypeModule *module); gboolean (*GimpModuleRegisterFunc) (GTypeModule *module); -#define GIMP_MODULE_ABI_VERSION -#define GIMP_MODULE_PARAM_SERIALIZE +#define GIMP_MODULE_ABI_VERSION +#define GIMP_MODULE_PARAM_SERIALIZE GimpModule* gimp_module_new (const gchar *filename, gboolean load_inhibit, gboolean verbose); @@ -93,8 +93,8 @@ Details -<anchor id="GimpModule-struct"/>struct GimpModule -GimpModulestruct GimpModule { +<anchor id="GimpModule-struct"/>GimpModule +GimpModuletypedef struct { gchar *filename; /* path to the module */ gboolean verbose; /* verbose error reporting */ GimpModuleState state; /* what's happened to the module */ @@ -104,8 +104,7 @@ /* stuff from now on may be NULL depending on the state the module is in */ GimpModuleInfo *info; /* returned values from module_query */ gchar *last_module_error; - -}; +} GimpModule; GimpModule is a generic mechanism to dynamically load modules into @@ -115,47 +114,46 @@ arbitrary GType implementations loaded from disk. -<anchor id="GimpModuleInfo"/>struct GimpModuleInfo -GimpModuleInfostruct GimpModuleInfo { - +<anchor id="GimpModuleInfo"/>GimpModuleInfo +GimpModuleInfotypedef struct { guint32 abi_version; gchar *purpose; gchar *author; gchar *version; gchar *copyright; gchar *date; -}; +} GimpModuleInfo; This structure contains information about a loadable module. -guint32 abi_version -The GIMP_MODULE_ABI_VERSION the module was compiled against. +guint32 abi_version; +The GIMP_MODULE_ABI_VERSION the module was compiled against. -gchar *purpose +gchar *purpose; The module's general purpose. -gchar *author +gchar *author; The module's author. -gchar *version +gchar *version; The module's version. -gchar *copyright +gchar *copyright; The module's copyright. -gchar *date +gchar *date; The module's release date. @@ -195,7 +193,7 @@ GIMP_MODULE_STATE_LOAD_FAILED -gimp_module_register() returned FALSE. +gimp_module_register() returned FALSE. @@ -224,7 +222,7 @@ module : The GimpModule responsible for this loadable module. -Returns :The GimpModuleInfo struct describing the module. +Returns :The GimpModuleInfo struct describing the module. @@ -245,13 +243,13 @@ module : The GimpModule responsible for this loadable module. -Returns :TRUE on success, FALSE otherwise. +Returns :TRUE on success, FALSE otherwise. -<anchor id="GIMP-MODULE-ABI-VERSION-CAPS"/>GIMP_MODULE_ABI_VERSION +<anchor id="GIMP-MODULE-ABI-VERSION:CAPS"/>GIMP_MODULE_ABI_VERSION GIMP_MODULE_ABI_VERSION#define GIMP_MODULE_ABI_VERSION 0x0004 @@ -261,7 +259,7 @@ are compiled against. -<anchor id="GIMP-MODULE-PARAM-SERIALIZE-CAPS"/>GIMP_MODULE_PARAM_SERIALIZE +<anchor id="GIMP-MODULE-PARAM-SERIALIZE:CAPS"/>GIMP_MODULE_PARAM_SERIALIZE GIMP_MODULE_PARAM_SERIALIZE#define GIMP_MODULE_PARAM_SERIALIZE (1 << (0 + G_PARAM_USER_SHIFT)) @@ -286,7 +284,7 @@ verbose : Pass TRUE to enable debugging output. -Returns : The new GimpModule object. +Returns : The new GimpModule object. @@ -315,7 +313,7 @@ module : A GimpModule. -Returns : TRUE on success. +Returns : TRUE on success. @@ -346,7 +344,7 @@ state : A GimpModuleState. -Returns : The state's name. +Returns : The state's name. @@ -370,7 +368,7 @@ const_static_values : -Returns : a new enum GType +Returns : a new enum GType @@ -387,7 +385,7 @@ abi_version : - The GIMP_MODULE_ABI_VERSION the module was compiled against. + The GIMP_MODULE_ABI_VERSION the module was compiled against. purpose : The module's general purpose. @@ -404,7 +402,7 @@ date : The module's release date. -Returns : The new GimpModuleInfo struct. +Returns : The new GimpModuleInfo struct. @@ -418,7 +416,7 @@ info : The GimpModuleInfo struct to copy. -Returns : The new copy. +Returns : The new copy. diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/html/GimpThumbnail.html gimp-2.2.9/devel-docs/libgimpthumb/html/GimpThumbnail.html --- gimp-2.2.8/devel-docs/libgimpthumb/html/GimpThumbnail.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/html/GimpThumbnail.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,4 +1,36 @@ -GimpThumbnail

GimpThumbnail

GimpThumbnail — The GimpThumbnail object

Synopsis

+
+
+
+GimpThumbnail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpThumbnail

+

GimpThumbnail — The GimpThumbnail object

+
+
+

Synopsis

+
 
 
 
@@ -17,15 +49,21 @@
                                              GimpThumbSize size);
 GimpThumbState gimp_thumbnail_check_thumb   (GimpThumbnail *thumbnail,
                                              GimpThumbSize size);
-GdkPixbuf*  gimp_thumbnail_load_thumb       (GimpThumbnail *thumbnail,
+GdkPixbuf*  gimp_thumbnail_load_thumb       (GimpThumbnail *thumbnail,
                                              GimpThumbSize size,
                                              GError **error);
 gboolean    gimp_thumbnail_save_thumb       (GimpThumbnail *thumbnail,
-                                             GdkPixbuf *pixbuf,
+                                             GdkPixbuf *pixbuf,
                                              const gchar *software,
                                              GError **error);
 gboolean    gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail,
-                                             GdkPixbuf *pixbuf,
+                                             GdkPixbuf *pixbuf,
                                              const gchar *software,
                                              GError **error);
 gboolean    gimp_thumbnail_save_failure     (GimpThumbnail *thumbnail,
@@ -36,11 +74,19 @@
                                              GimpThumbSize size);
 gboolean    gimp_thumbnail_has_failed       (GimpThumbnail *thumbnail);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
   GObject
    +----GimpThumbnail
-

Properties

+
+
+
+

Properties

+
 
   "image-filesize"       gint64                : Read / Write
   "image-height"         gint                  : Read / Write
@@ -52,183 +98,702 @@
   "image-uri"            gchararray            : Read / Write
   "image-width"          gint                  : Read / Write
   "thumb-state"          GimpThumbState        : Read / Write
-

Description

- -

Details

GimpThumbnail

typedef struct _GimpThumbnail GimpThumbnail;

+

+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpThumbnail

+
typedef struct _GimpThumbnail GimpThumbnail;
+

All members of GimpThumbnail are private and should only be accessed using object properties. -


gimp_thumbnail_new ()

GimpThumbnail* gimp_thumbnail_new           (void);

-Creates a new GimpThumbnail object.

- -

Returns : a newly allocated GimpThumbnail object -

gimp_thumbnail_set_uri ()

void        gimp_thumbnail_set_uri          (GimpThumbnail *thumbnail,
-                                             const gchar *uri);

+

+
+
+
+

+gimp_thumbnail_new ()

+
GimpThumbnail* gimp_thumbnail_new           (void);
+

+Creates a new GimpThumbnail object.

+

+ +

+
++ + + + +
+Returns : a newly allocated GimpThumbnail object +
+
+
+
+

+gimp_thumbnail_set_uri ()

+
void        gimp_thumbnail_set_uri          (GimpThumbnail *thumbnail,
+                                             const gchar *uri);
+

Sets the location of the image file associated with the thumbnail. -

-All informations stored in the GimpThumbnail are reset.

- -

thumbnail : a GimpThumbnail object -
uri : an escaped URI -

gimp_thumbnail_set_filename ()

gboolean    gimp_thumbnail_set_filename     (GimpThumbnail *thumbnail,
+

+

+All informations stored in the GimpThumbnail are reset.

+

+ +

+
++ + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+uri : an escaped URI +
+
+
+
+

+gimp_thumbnail_set_filename ()

+
gboolean    gimp_thumbnail_set_filename     (GimpThumbnail *thumbnail,
                                              const gchar *filename,
-                                             GError **error);

-Sets the location of the image file associated with the thumbnail.

- -

thumbnail : a GimpThumbnail object -
filename : a local filename in the encoding of the filesystem -
error : return location for possible errors -
Returns : TRUE if the filename was successfully set, - FALSE otherwise -

gimp_thumbnail_set_from_thumb ()

gboolean    gimp_thumbnail_set_from_thumb   (GimpThumbnail *thumbnail,
+                                             GError **error);
+

+Sets the location of the image file associated with the thumbnail.

+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+filename : a local filename in the encoding of the filesystem +
+error : return location for possible errors +
+Returns : TRUE if the filename was successfully set, + FALSE otherwise +
+
+
+
+

+gimp_thumbnail_set_from_thumb ()

+
gboolean    gimp_thumbnail_set_from_thumb   (GimpThumbnail *thumbnail,
                                              const gchar *filename,
-                                             GError **error);

+ GError **error); +

This function tries to load the thumbnail file pointed to by -filename and retrieves the URI of the original image file from +filename and retrieves the URI of the original image file from it. This allows you to find the image file associated with a thumbnail file. -

+

+

This will only work with thumbnails from the global thumbnail -directory that contain a valid Thumb::URI tag.

+directory that contain a valid Thumb::URI tag.

+

-

thumbnail : a GimpThumbnail object -
filename : filename of a local thumbnail file -
error : return location for possible errors -
Returns : TRUE if the pixbuf could be loaded, FALSE otherwise -

gimp_thumbnail_peek_image ()

GimpThumbState gimp_thumbnail_peek_image    (GimpThumbnail *thumbnail);

-Checks the image file associated with the thumbnail and updates -information such as state, filesize and modification time.

- -

thumbnail : a GimpThumbnail object -
Returns : the image's GimpThumbState after the update -

gimp_thumbnail_peek_thumb ()

GimpThumbState gimp_thumbnail_peek_thumb    (GimpThumbnail *thumbnail,
-                                             GimpThumbSize size);

-Checks if a thumbnail file for the thumbnail exists. It doesn't +

+
++ + + + + + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+filename : filename of a local thumbnail file +
+error : return location for possible errors +
+Returns : TRUE if the pixbuf could be loaded, FALSE otherwise +
+
+
+
+

+gimp_thumbnail_peek_image ()

+
GimpThumbState gimp_thumbnail_peek_image    (GimpThumbnail *thumbnail);
+

+Checks the image file associated with the thumbnail and updates +information such as state, filesize and modification time.

+

+ +

+
++ + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+Returns : the image's GimpThumbState after the update +
+
+
+
+

+gimp_thumbnail_peek_thumb ()

+
GimpThumbState gimp_thumbnail_peek_thumb    (GimpThumbnail *thumbnail,
+                                             GimpThumbSize size);
+

+Checks if a thumbnail file for the thumbnail exists. It doesn't load the thumbnail image and thus cannot check if the thumbnail is valid and uptodate for the image file asosciated with the -thumbnail. -

+thumbnail. +

+

If you want to check the thumbnail, either attempt to load it using -gimp_thumbnail_load_thumb(), or, if you don't need the resulting -thumbnail pixbuf, use gimp_thumbnail_check_thumb().

- -

thumbnail : a GimpThumbnail object -
size : the preferred size of the thumbnail image -
Returns : the thumbnail's GimpThumbState after the update -

gimp_thumbnail_check_thumb ()

GimpThumbState gimp_thumbnail_check_thumb   (GimpThumbnail *thumbnail,
-                                             GimpThumbSize size);

-Checks if a thumbnail file for the thumbnail exists, loads it and +gimp_thumbnail_load_thumb(), or, if you don't need the resulting +thumbnail pixbuf, use gimp_thumbnail_check_thumb().

+

+ +

+
++ + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+size : the preferred size of the thumbnail image +
+Returns : the thumbnail's GimpThumbState after the update +
+
+
+
+

+gimp_thumbnail_check_thumb ()

+
GimpThumbState gimp_thumbnail_check_thumb   (GimpThumbnail *thumbnail,
+                                             GimpThumbSize size);
+

+Checks if a thumbnail file for the thumbnail exists, loads it and verifies it is valid and uptodate for the image file asosciated -with the thumbnail.

- -

thumbnail : a GimpThumbnail object -
size : the preferred size of the thumbnail image -
Returns : the thumbnail's GimpThumbState after the update +with the thumbnail.

+

-

Since GIMP 2.2 -


gimp_thumbnail_load_thumb ()

GdkPixbuf*  gimp_thumbnail_load_thumb       (GimpThumbnail *thumbnail,
+

+
++ + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+size : the preferred size of the thumbnail image +
+Returns : the thumbnail's GimpThumbState after the update + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumbnail_load_thumb ()

+
GdkPixbuf*  gimp_thumbnail_load_thumb       (GimpThumbnail *thumbnail,
                                              GimpThumbSize size,
-                                             GError **error);

+ GError **error); +

Attempts to load a thumbnail preview for the image associated with -thumbnail. Before you use this function you need need to set an -image location using gimp_thumbnail_set_uri() or -gimp_thumbnail_set_filename(). You can also peek at the thumb +thumbnail. Before you use this function you need need to set an +image location using gimp_thumbnail_set_uri() or +gimp_thumbnail_set_filename(). You can also peek at the thumb before loading it using gimp_thumbnail_peek_thumb. -

+

+

This function will return the best matching pixbuf for the -specified size. It returns the pixbuf as loaded from disk. It is +specified size. It returns the pixbuf as loaded from disk. It is left to the caller to scale it to the desired size. The returned pixbuf may also represent an outdated preview of the image file. In order to verify if the preview is uptodate, you should check the -"thumb_state" property after calling this function.

+"thumb_state" property after calling this function.

+

-

thumbnail : a GimpThumbnail object -
size : the preferred GimpThumbSize for the preview -
error : return location for possible errors -
Returns : a preview pixbuf or NULL if no thumbnail was found -

gimp_thumbnail_save_thumb ()

gboolean    gimp_thumbnail_save_thumb       (GimpThumbnail *thumbnail,
-                                             GdkPixbuf *pixbuf,
+

+
++ + + + + + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+size : the preferred GimpThumbSize for the preview +
+error : return location for possible errors +
+Returns : a preview pixbuf or NULL if no thumbnail was found +
+
+
+
+

+gimp_thumbnail_save_thumb ()

+
gboolean    gimp_thumbnail_save_thumb       (GimpThumbnail *thumbnail,
+                                             GdkPixbuf *pixbuf,
                                              const gchar *software,
-                                             GError **error);

-Saves a preview thumbnail for the image associated with thumbnail. + GError **error); +

+Saves a preview thumbnail for the image associated with thumbnail. to the global thumbnail repository. -

+

+

The caller is responsible for setting the image file location, it's filesize, modification time. One way to set this info is to is to -call gimp_thumbnail_set_uri() followed by gimp_thumbnail_peek_image(). +call gimp_thumbnail_set_uri() followed by gimp_thumbnail_peek_image(). Since this won't work for remote images, it is left to the user of -gimp_thumbnail_save_thumb() to do this or to set the information -using the thumbnail object properties. -

+gimp_thumbnail_save_thumb() to do this or to set the information +using the thumbnail object properties. +

+

The image format type and the number of layers can optionally be -set in order to be stored with the preview image.

+set in order to be stored with the preview image.

+

-

thumbnail : a GimpThumbnail object -
pixbuf : a GdkPixbuf representing the preview thumbnail -
software : a string describing the software saving the thumbnail -
error : return location for possible errors -
Returns : TRUE if a thumbnail was successfully written, - FALSE otherwise -

gimp_thumbnail_save_thumb_local ()

gboolean    gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail,
-                                             GdkPixbuf *pixbuf,
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+pixbuf : a GdkPixbuf representing the preview thumbnail +
+software : a string describing the software saving the thumbnail +
+error : return location for possible errors +
+Returns : TRUE if a thumbnail was successfully written, + FALSE otherwise +
+
+
+
+

+gimp_thumbnail_save_thumb_local ()

+
gboolean    gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail,
+                                             GdkPixbuf *pixbuf,
                                              const gchar *software,
-                                             GError **error);

-Saves a preview thumbnail for the image associated with thumbnail + GError **error); +

+Saves a preview thumbnail for the image associated with thumbnail to the local thumbnail repository. Local thumbnails have been added with version 0.7 of the spec. -

-Please see also gimp_thumbnail_save_thumb(). The notes made there -apply here as well.

- -

thumbnail : a GimpThumbnail object -
pixbuf : a GdkPixbuf representing the preview thumbnail -
software : a string describing the software saving the thumbnail -
error : return location for possible errors -
Returns : TRUE if a thumbnail was successfully written, - FALSE otherwise - -

Since GIMP 2.2 -


gimp_thumbnail_save_failure ()

gboolean    gimp_thumbnail_save_failure     (GimpThumbnail *thumbnail,
+

+

+Please see also gimp_thumbnail_save_thumb(). The notes made there +apply here as well.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+pixbuf : a GdkPixbuf representing the preview thumbnail +
+software : a string describing the software saving the thumbnail +
+error : return location for possible errors +
+Returns : TRUE if a thumbnail was successfully written, + FALSE otherwise + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumbnail_save_failure ()

+
gboolean    gimp_thumbnail_save_failure     (GimpThumbnail *thumbnail,
                                              const gchar *software,
-                                             GError **error);

+ GError **error); +

Saves a failure thumbnail for the image associated with -thumbnail. This is an empty pixbuf that indicates that an attempt +thumbnail. This is an empty pixbuf that indicates that an attempt to create a preview for the image file failed. It should be used to -prevent the software from further attempts to create this thumbnail.

+prevent the software from further attempts to create this thumbnail.

+

-

thumbnail : a GimpThumbnail object -
software : a string describing the software saving the thumbnail -
error : return location for possible errors -
Returns : TRUE if a failure thumbnail was successfully written, - FALSE otherwise -

gimp_thumbnail_delete_failure ()

void        gimp_thumbnail_delete_failure   (GimpThumbnail *thumbnail);

+

+
++ + + + + + + + + + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+software : a string describing the software saving the thumbnail +
+error : return location for possible errors +
+Returns : TRUE if a failure thumbnail was successfully written, + FALSE otherwise +
+
+
+
+

+gimp_thumbnail_delete_failure ()

+
void        gimp_thumbnail_delete_failure   (GimpThumbnail *thumbnail);
+

Removes a failure thumbnail if one exists. This function should be -used after a thumbnail has been successfully created.

+used after a thumbnail has been successfully created.

+

-

thumbnail : a GimpThumbnail object -

Since GIMP 2.2 -


gimp_thumbnail_delete_others ()

void        gimp_thumbnail_delete_others    (GimpThumbnail *thumbnail,
-                                             GimpThumbSize size);

+

+
++ + + + +
+thumbnail : a GimpThumbnail object +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumbnail_delete_others ()

+
void        gimp_thumbnail_delete_others    (GimpThumbnail *thumbnail,
+                                             GimpThumbSize size);
+

Removes all other thumbnails from the global thumbnail -repository. Only the thumbnail for size is not deleted. This +repository. Only the thumbnail for size is not deleted. This function should be used after a thumbnail has been successfully updated. See the spec for a more detailed description on when to -delete thumbnails.

+delete thumbnails.

+

-

thumbnail : a GimpThumbnail object -
size : the thumbnail size which should not be deleted -

Since GIMP 2.2 -


gimp_thumbnail_has_failed ()

gboolean    gimp_thumbnail_has_failed       (GimpThumbnail *thumbnail);

+

+
++ + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+size : the thumbnail size which should not be deleted +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumbnail_has_failed ()

+
gboolean    gimp_thumbnail_has_failed       (GimpThumbnail *thumbnail);
+

Checks if a valid failure thumbnail for the given thumbnail exists in the global thumbnail repository. This may be the case even if -gimp_thumbnail_peek_thumb() doesn't return GIMP_THUMB_STATE_FAILED +gimp_thumbnail_peek_thumb() doesn't return GIMP_THUMB_STATE_FAILED since there might be a real thumbnail and a failure thumbnail for the same image file. -

+

+

The application should not attempt to create the thumbnail if a -valid failure thumbnail exists.

- -

thumbnail : a GimpThumbnail object -
Returns : TRUE if a failure thumbnail exists or +valid failure thumbnail exists.

+

-

Since GIMP 2.2 -

Properties

The "image-filesize" property

  "image-filesize"       gint64                : Read / Write

Size of the image file in bytes.

Allowed values: >= 0

Default value: 0


The "image-height" property

  "image-height"         gint                  : Read / Write

Height of the image in pixels.

Allowed values: >= 0

Default value: 0


The "image-mimetype" property

  "image-mimetype"       gchararray            : Read / Write

Image mimetype.

Default value: NULL


The "image-mtime" property

  "image-mtime"          gint64                : Read / Write

Modification time of the image file in seconds since the Epoch.

Allowed values: >= 0

Default value: 0


The "image-num-layers" property

  "image-num-layers"     gint                  : Read / Write

The number of layers in the image.

Allowed values: >= 0

Default value: 0


The "image-state" property

  "image-state"          GimpThumbState        : Read / Write

State of the image associated to the thumbnail object.

Default value: GIMP_THUMB_STATE_UNKNOWN


The "image-type" property

  "image-type"           gchararray            : Read / Write

String describing the type of the image format.

Default value: NULL


The "image-uri" property

  "image-uri"            gchararray            : Read / Write

URI of the image file.

Default value: NULL


The "image-width" property

  "image-width"          gint                  : Read / Write

Width of the image in pixels.

Allowed values: >= 0

Default value: 0


The "thumb-state" property

  "thumb-state"          GimpThumbState        : Read / Write

State of the thumbnail file.

Default value: GIMP_THUMB_STATE_UNKNOWN

+

+
++ + + + + + + + + + +
+thumbnail : a GimpThumbnail object +
+Returns : TRUE if a failure thumbnail exists or + +
+

Since GIMP 2.2 +

+ + +
+

Properties

+
+

+The "image-filesize" property

+
  "image-filesize"       gint64                : Read / Write
+

Size of the image file in bytes.

+

Allowed values: >= 0

+

Default value: 0

+
+
+
+

+The "image-height" property

+
  "image-height"         gint                  : Read / Write
+

Height of the image in pixels.

+

Allowed values: >= 0

+

Default value: 0

+
+
+
+

+The "image-mimetype" property

+
  "image-mimetype"       gchararray            : Read / Write
+

Image mimetype.

+

Default value: NULL

+
+
+
+

+The "image-mtime" property

+
  "image-mtime"          gint64                : Read / Write
+

Modification time of the image file in seconds since the Epoch.

+

Allowed values: >= 0

+

Default value: 0

+
+
+
+

+The "image-num-layers" property

+
  "image-num-layers"     gint                  : Read / Write
+

The number of layers in the image.

+

Allowed values: >= 0

+

Default value: 0

+
+
+
+

+The "image-state" property

+
  "image-state"          GimpThumbState        : Read / Write
+

State of the image associated to the thumbnail object.

+

Default value: GIMP_THUMB_STATE_UNKNOWN

+
+
+
+

+The "image-type" property

+
  "image-type"           gchararray            : Read / Write
+

String describing the type of the image format.

+

Default value: NULL

+
+
+
+

+The "image-uri" property

+
  "image-uri"            gchararray            : Read / Write
+

URI of the image file.

+

Default value: NULL

+
+
+
+

+The "image-width" property

+
  "image-width"          gint                  : Read / Write
+

Width of the image in pixels.

+

Allowed values: >= 0

+

Default value: 0

+
+
+
+

+The "thumb-state" property

+
  "thumb-state"          GimpThumbState        : Read / Write
+

State of the thumbnail file.

+

Default value: GIMP_THUMB_STATE_UNKNOWN

+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/html/index.html gimp-2.2.9/devel-docs/libgimpthumb/html/index.html --- gimp-2.2.8/devel-docs/libgimpthumb/html/index.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/html/index.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,4 +1,50 @@ -GIMP Thumbnail Library Reference Manual

- for GIMP 2.2.1 + + + +GIMP Thumbnail Library Reference Manual + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

I. GIMP Thumbnail Library
GimpThumbnail - The GimpThumbnail object
gimpthumb-utils - Utility functions provided and used by libgimpthumb
gimpthumb-enums - Enumerations used by libgimpthumb
gimpthumb-error - Error codes used by libgimpthumb
+

+
+
+
+
+

Table of Contents

+
+
I. GIMP Thumbnail Library
+
+
+GimpThumbnail - The GimpThumbnail object +
+
+gimpthumb-utils - Utility functions provided and used by libgimpthumb +
+
+gimpthumb-enums - Enumerations used by libgimpthumb +
+
+gimpthumb-error - Error codes used by libgimpthumb +
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-enums.html gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-enums.html --- gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-enums.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-enums.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,4 +1,36 @@ -gimpthumb-enums

gimpthumb-enums

gimpthumb-enums — Enumerations used by libgimpthumb

Synopsis

+
+
+
+gimpthumb-enums
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpthumb-enums

+

gimpthumb-enums — Enumerations used by libgimpthumb

+
+
+

Synopsis

+
 
 
 
@@ -6,36 +38,106 @@
 enum        GimpThumbSize;
 enum        GimpThumbState;
 
-

Description

- -

Details

enum GimpThumbFileType

typedef enum
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+enum GimpThumbFileType

+
typedef enum
 {
   GIMP_THUMB_FILE_TYPE_NONE,
   GIMP_THUMB_FILE_TYPE_REGULAR,
   GIMP_THUMB_FILE_TYPE_FOLDER,
   GIMP_THUMB_FILE_TYPE_SPECIAL
 } GimpThumbFileType;
-

-File types as returned by gimp_thumb_file_test(). -

GIMP_THUMB_FILE_TYPE_NONE file does not exist -
GIMP_THUMB_FILE_TYPE_REGULAR a regular file -
GIMP_THUMB_FILE_TYPE_FOLDER a directory -
GIMP_THUMB_FILE_TYPE_SPECIAL a special file (device node, fifo, socket, ...) - -

enum GimpThumbSize

typedef enum
+
+

+File types as returned by gimp_thumb_file_test(). +

+
++ + + + + + + + + + + + + + + + + + +
+GIMP_THUMB_FILE_TYPE_NONE file does not exist +
+GIMP_THUMB_FILE_TYPE_REGULAR a regular file +
+GIMP_THUMB_FILE_TYPE_FOLDER a directory +
+GIMP_THUMB_FILE_TYPE_SPECIAL a special file (device node, fifo, socket, ...) + +
+
+
+
+

+enum GimpThumbSize

+
typedef enum
 {
   GIMP_THUMB_SIZE_FAIL   = 0,
   GIMP_THUMB_SIZE_NORMAL = 128,
   GIMP_THUMB_SIZE_LARGE  = 256
 } GimpThumbSize;
-

+

+

Possible thumbnail sizes as defined by the Thumbnail Managaging Standard -

+ + + + + + + + + + +
GIMP_THUMB_SIZE_FAIL special size used to indicate a thumbnail +

+
++ + + +
+GIMP_THUMB_SIZE_FAIL special size used to indicate a thumbnail creation failure -
GIMP_THUMB_SIZE_NORMAL normal thumbnail size (128 pixels) -
GIMP_THUMB_SIZE_LARGE large thumbnail size (256 pixels) - -

enum GimpThumbState

typedef enum
+
+GIMP_THUMB_SIZE_NORMAL normal thumbnail size (128 pixels) +
+GIMP_THUMB_SIZE_LARGE large thumbnail size (256 pixels) + +
+
+
+
+

+enum GimpThumbState

+
typedef enum
 {
   GIMP_THUMB_STATE_UNKNOWN,
   GIMP_THUMB_STATE_REMOTE,
@@ -47,16 +149,76 @@
   GIMP_THUMB_STATE_FAILED,
   GIMP_THUMB_STATE_OK
 } GimpThumbState;
-

+ +

Possible image and thumbnail file states used by libgimpthumb. -

GIMP_THUMB_STATE_UNKNOWN nothing is known about the file/thumbnail -
GIMP_THUMB_STATE_REMOTE the file is on a remote file system -
GIMP_THUMB_STATE_FOLDER -
GIMP_THUMB_STATE_SPECIAL -
GIMP_THUMB_STATE_NOT_FOUND the file/thumbnail doesn't exist -
GIMP_THUMB_STATE_EXISTS the file/thumbnail exists -
GIMP_THUMB_STATE_OLD the thumbnail may be outdated -
GIMP_THUMB_STATE_FAILED the thumbnail couldn't be created -
GIMP_THUMB_STATE_OK the thumbnail exists and matches the image - -
+

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+GIMP_THUMB_STATE_UNKNOWN nothing is known about the file/thumbnail +
+GIMP_THUMB_STATE_REMOTE the file is on a remote file system +
+GIMP_THUMB_STATE_FOLDER +
+GIMP_THUMB_STATE_SPECIAL +
+GIMP_THUMB_STATE_NOT_FOUND the file/thumbnail doesn't exist +
+GIMP_THUMB_STATE_EXISTS the file/thumbnail exists +
+GIMP_THUMB_STATE_OLD the thumbnail may be outdated +
+GIMP_THUMB_STATE_FAILED the thumbnail couldn't be created +
+GIMP_THUMB_STATE_OK the thumbnail exists and matches the image + +
+ + + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html --- gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-error.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,30 +1,124 @@ -gimpthumb-error

gimpthumb-error

gimpthumb-error — Error codes used by libgimpthumb

Synopsis

+
+
+
+gimpthumb-error
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpthumb-error

+

gimpthumb-error — Error codes used by libgimpthumb

+
+
+

Synopsis

+
 
 
 
 enum        GimpThumbError;
 #define     GIMP_THUMB_ERROR
 GQuark      gimp_thumb_error_quark          (void);
-

Description

- -

Details

enum GimpThumbError

typedef enum
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+enum GimpThumbError

+
typedef enum
 {
   GIMP_THUMB_ERROR_OPEN,         /*  open failed                            */
   GIMP_THUMB_ERROR_OPEN_ENOENT,  /*  file does not exist                    */
   GIMP_THUMB_ERROR_MKDIR         /*  mkdir failed                           */
 } GimpThumbError;
-

+

+

These are the possible error codes used when a GError is set by libgimpthumb. -

GIMP_THUMB_ERROR_OPEN there was a problem opening the file -
GIMP_THUMB_ERROR_OPEN_ENOENT the file doesn't exist -
GIMP_THUMB_ERROR_MKDIR there was a problem creating a directory - -

GIMP_THUMB_ERROR

#define GIMP_THUMB_ERROR (gimp_thumb_error_quark ())
-

+

+
++ + + + + + + + + + + + + + +
+GIMP_THUMB_ERROR_OPEN there was a problem opening the file +
+GIMP_THUMB_ERROR_OPEN_ENOENT the file doesn't exist +
+GIMP_THUMB_ERROR_MKDIR there was a problem creating a directory + +
+
+
+
+

+GIMP_THUMB_ERROR

+
#define GIMP_THUMB_ERROR (gimp_thumb_error_quark ())
+
+

Identifier for the libgimpthumb error domain. -


gimp_thumb_error_quark ()

GQuark      gimp_thumb_error_quark          (void);

-This function is never called directly. Use GIMP_THUMB_ERROR() instead.

- -

Returns : the GQuark that defines the GimpThumb error domain. -
+

+ +
+
+

+gimp_thumb_error_quark ()

+
GQuark      gimp_thumb_error_quark          (void);
+

+This function is never called directly. Use GIMP_THUMB_ERROR() instead.

+

+ +

+
++ + + + +
+Returns : the GQuark that defines the GimpThumb error domain. +
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html --- gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb-gimpthumb-utils.html 2005-10-27 17:14:06.000000000 +0200 @@ -1,4 +1,36 @@ -gimpthumb-utils

gimpthumb-utils

gimpthumb-utils — Utility functions provided and used by libgimpthumb

Synopsis

+
+
+
+gimpthumb-utils
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpthumb-utils

+

gimpthumb-utils — Utility functions provided and used by libgimpthumb

+
+
+

Synopsis

+
 
 
 
@@ -26,147 +58,466 @@
                                              GimpThumbSize size);
 void        gimp_thumbs_delete_for_uri_local
                                             (const gchar *uri);
-

Description

- -

Details

gimp_thumb_init ()

gboolean    gimp_thumb_init                 (const gchar *creator,
-                                             const gchar *thumb_basedir);

+

+
+
+

Description

+

+ +

+
+
+

Details

+
+

+gimp_thumb_init ()

+
gboolean    gimp_thumb_init                 (const gchar *creator,
+                                             const gchar *thumb_basedir);
+

This function initializes the thumbnail system. It must be called before any other functions from libgimpthumb are used. You may call -it more than once if you want to change the thumb_basedir but if +it more than once if you want to change the thumb_basedir but if you do that, you should make sure that no thread is still using the library. Apart from this function, libgimpthumb is multi-thread safe. -

-The creator string must be 7bit ASCII and should contain the name +

+

+The creator string must be 7bit ASCII and should contain the name of the software that creates the thumbnails. It is used to handle thumbnail creation failures. See the spec for more details. -

-Usually you will pass NULL for thumb_basedir. Thumbnails will +

+

+Usually you will pass NULL for thumb_basedir. Thumbnails will then be stored in the user's personal thumbnail directory as defined in the spec. If you wish to use libgimpthumb to store application-specific thumbnails, you can specify a different base -directory here.

+directory here.

+

-

creator : an ASCII string that identifies the thumbnail creator -
thumb_basedir : an absolute path or NULL to use the default -
Returns : TRUE if the library was successfully initialized. -

gimp_thumb_find_thumb ()

gchar*      gimp_thumb_find_thumb           (const gchar *uri,
-                                             GimpThumbSize *size);

+

+
++ + + + + + + + + + + + + + +
+creator : an ASCII string that identifies the thumbnail creator +
+thumb_basedir : an absolute path or NULL to use the default +
+Returns : TRUE if the library was successfully initialized. +
+
+
+
+

+gimp_thumb_find_thumb ()

+
gchar*      gimp_thumb_find_thumb           (const gchar *uri,
+                                             GimpThumbSize *size);
+

This function attempts to locate a thumbnail for the given -uri. First it tries the size that is stored at size. If no +uri. First it tries the size that is stored at size. If no thumbnail of that size is found, it will look for a larger thumbnail, then falling back to a smaller size. -

+

+

If the user's thumbnail repository doesn't provide a thumbnail but a local thumbnail repository exists for the folder the image is located in, the same search is done among the local thumbnails (if there are any). -

+

+

If a thumbnail is found, it's size is written to the variable -pointer to by size and the file location is returned.

+pointer to by size and the file location is returned.

+

-

uri : an escaped URI -
size : pointer to a GimpThumbSize -
Returns : a newly allocated string in the encoding of the - filesystem or NULL if no thumbnail for uri was found -

gimp_thumb_file_test ()

GimpThumbFileType gimp_thumb_file_test      (const gchar *filename,
+

+
++ + + + + + + + + + + + + + +
+uri : an escaped URI +
+size : pointer to a GimpThumbSize +
+Returns : a newly allocated string in the encoding of the + filesystem or NULL if no thumbnail for uri was found +
+
+
+
+

+gimp_thumb_file_test ()

+
GimpThumbFileType gimp_thumb_file_test      (const gchar *filename,
                                              gint64 *mtime,
                                              gint64 *size,
-                                             gint *err_no);

-This is a convenience and portability wrapper around stat(). It -checks if the given filename exists and returns modification time -and file size in 64bit integer values.

- -

+ + +
filename : a filename in the encoding of the filesystem -
mtime : return location for modification time -
size : return location for file size -
err_no : return location for system "errno" -
Returns : The type of the file, or GIMP_THUMB_FILE_TYPE_NONE if + gint *err_no); +

+This is a convenience and portability wrapper around stat(). It +checks if the given filename exists and returns modification time +and file size in 64bit integer values.

+

+ +

+
++ + + + + + + + + + + + + + + + + + + +
+filename : a filename in the encoding of the filesystem +
+mtime : return location for modification time +
+size : return location for file size +
+err_no : return location for system "errno" +
+Returns : The type of the file, or GIMP_THUMB_FILE_TYPE_NONE if the file doesn't exist. -

gimp_thumb_name_from_uri ()

gchar*      gimp_thumb_name_from_uri        (const gchar *uri,
-                                             GimpThumbSize size);

-Creates the name of the thumbnail file of the specified size that -belongs to an image file located at the given uri.

- -

+ + +
uri : an escaped URI -
size : a GimpThumbSize -
Returns : a newly allocated filename in the encoding of the - filesystem or NULL if uri points to the user's +
+
+
+
+

+gimp_thumb_name_from_uri ()

+
gchar*      gimp_thumb_name_from_uri        (const gchar *uri,
+                                             GimpThumbSize size);
+

+Creates the name of the thumbnail file of the specified size that +belongs to an image file located at the given uri.

+

+ +

+
++ + + + + + + + + + + +
+uri : an escaped URI +
+size : a GimpThumbSize +
+Returns : a newly allocated filename in the encoding of the + filesystem or NULL if uri points to the user's thumbnail repository. -

gimp_thumb_ensure_thumb_dir ()

gboolean    gimp_thumb_ensure_thumb_dir     (GimpThumbSize size,
-                                             GError **error);

+

+
+
+
+

+gimp_thumb_ensure_thumb_dir ()

+
gboolean    gimp_thumb_ensure_thumb_dir     (GimpThumbSize size,
+                                             GError **error);
+

This function checks if the directory that is required to store -thumbnails for a particular size exist and attempts to create it +thumbnails for a particular size exist and attempts to create it if necessary. -

+

+

You shouldn't have to call this function directly since -gimp_thumbnail_save_thumb() and gimp_thumbnail_save_failure() will -do this for you.

- -

+ + +
size : a GimpThumbSize -
error : return location for possible errors -
Returns : TRUE is the directory exists, FALSE if it could not +gimp_thumbnail_save_thumb() and gimp_thumbnail_save_failure() will +do this for you.

+

+ +

+
++ + + + + + + + + + + +
+size : a GimpThumbSize +
+error : return location for possible errors +
+Returns : TRUE is the directory exists, FALSE if it could not be created -

gimp_thumb_get_thumb_dir ()

const gchar* gimp_thumb_get_thumb_dir       (GimpThumbSize size);

+

+
+
+
+

+gimp_thumb_get_thumb_dir ()

+
const gchar* gimp_thumb_get_thumb_dir       (GimpThumbSize size);
+

Retrieve the name of the thumbnail folder for a specific size. The -returned pointer will become invalid if gimp_thumb_init() is used -again. It must not be changed or freed.

- -

size : a GimpThumbSize -
Returns : the thumbnail directory in the encoding of the filesystem -

gimp_thumbs_delete_for_uri ()

void        gimp_thumbs_delete_for_uri      (const gchar *uri);

-Deletes all thumbnails for the image file specified by uri from the -user's thumbnail repository.

- -

uri : an escaped URI -

Since GIMP 2.2 -


gimp_thumb_name_from_uri_local ()

gchar*      gimp_thumb_name_from_uri_local  (const gchar *uri,
-                                             GimpThumbSize size);

-Creates the name of a local thumbnail file of the specified size -that belongs to an image file located at the given uri. Local -thumbnails have been introduced with version 0.7 of the spec.

- -

+ + +
uri : an escaped URI -
size : a GimpThumbSize -
Returns : a newly allocated filename in the encoding of the - filesystem or NULL if uri is a remote file or +returned pointer will become invalid if gimp_thumb_init() is used +again. It must not be changed or freed.

+

+ +

+
++ + + + + + + + + + +
+size : a GimpThumbSize +
+Returns : the thumbnail directory in the encoding of the filesystem +
+ +
+
+

+gimp_thumbs_delete_for_uri ()

+
void        gimp_thumbs_delete_for_uri      (const gchar *uri);
+

+Deletes all thumbnails for the image file specified by uri from the +user's thumbnail repository.

+

+ +

+
++ + + + +
+uri : an escaped URI +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumb_name_from_uri_local ()

+
gchar*      gimp_thumb_name_from_uri_local  (const gchar *uri,
+                                             GimpThumbSize size);
+

+Creates the name of a local thumbnail file of the specified size +that belongs to an image file located at the given uri. Local +thumbnails have been introduced with version 0.7 of the spec.

+

+ +

+
++ + + + + + + + + + + +
+uri : an escaped URI +
+size : a GimpThumbSize +
+Returns : a newly allocated filename in the encoding of the + filesystem or NULL if uri is a remote file or points to the user's thumbnail repository. -

Since GIMP 2.2 -


gimp_thumb_ensure_thumb_dir_local ()

gboolean    gimp_thumb_ensure_thumb_dir_local
+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumb_ensure_thumb_dir_local ()

+
gboolean    gimp_thumb_ensure_thumb_dir_local
                                             (const gchar *dirname,
                                              GimpThumbSize size,
-                                             GError **error);

+ GError **error); +

This function checks if the directory that is required to store -local thumbnails for a particular size exist and attempts to +local thumbnails for a particular size exist and attempts to create it if necessary. -

+

+

You shouldn't have to call this function directly since -gimp_thumbnail_save_thumb_local() will do this for you.

+gimp_thumbnail_save_thumb_local() will do this for you.

+

-

+ + +
dirname : -
size : a GimpThumbSize -
error : return location for possible errors -
Returns : TRUE is the directory exists, FALSE if it could not +

+
++ + + + + + + + + + + + + + + +
+dirname : +
+size : a GimpThumbSize +
+error : return location for possible errors +
+Returns : TRUE is the directory exists, FALSE if it could not be created -

Since GIMP 2.2 -


gimp_thumb_get_thumb_dir_local ()

gchar*      gimp_thumb_get_thumb_dir_local  (const gchar *dirname,
-                                             GimpThumbSize size);

+

+

Since GIMP 2.2 +

+
+
+
+

+gimp_thumb_get_thumb_dir_local ()

+
gchar*      gimp_thumb_get_thumb_dir_local  (const gchar *dirname,
+                                             GimpThumbSize size);
+

Retrieve the name of the local thumbnail folder for a specific -size. Unlike gimp_thumb_get_thumb_dir() the returned string is not -constant and should be free'd when it is not any longer needed.

- -

dirname : -
size : a GimpThumbSize -
Returns : the thumbnail directory in the encoding of the filesystem - -

Since GIMP 2.2 -


gimp_thumbs_delete_for_uri_local ()

void        gimp_thumbs_delete_for_uri_local
-                                            (const gchar *uri);

-Deletes all thumbnails for the image file specified by uri from -the local thumbnail repository.

- -

uri : an escaped URI -

Since GIMP 2.2 -

+size. Unlike gimp_thumb_get_thumb_dir() the returned string is not +constant and should be free'd when it is not any longer needed.

+

+ +

+
++ + + + + + + + + + + + + + +
+dirname : +
+size : a GimpThumbSize +
+Returns : the thumbnail directory in the encoding of the filesystem + +
+

Since GIMP 2.2 +

+ +
+
+

+gimp_thumbs_delete_for_uri_local ()

+
void        gimp_thumbs_delete_for_uri_local
+                                            (const gchar *uri);
+

+Deletes all thumbnails for the image file specified by uri from +the local thumbnail repository.

+

+ +

+
++ + + + +
+uri : an escaped URI +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb.html gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb.html --- gimp-2.2.8/devel-docs/libgimpthumb/html/libgimpthumb.html 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/html/libgimpthumb.html 2005-10-27 17:14:06.000000000 +0200 @@ -1 +1,28 @@ -Part I. GIMP Thumbnail Library

GIMP Thumbnail Library

+ + + +Part I. GIMP Thumbnail Library + + + + + + + + + + + + + + + + +

+GIMP Thumbnail Library

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/Makefile.in gimp-2.2.9/devel-docs/libgimpthumb/Makefile.in --- gimp-2.2.8/devel-docs/libgimpthumb/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/Makefile.in 2005-10-27 17:11:39.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimpthumb +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -422,14 +438,12 @@ -I$(top_builddir) \ @GDK_PIXBUF_CFLAGS@ - GTKDOC_LIBS = \ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la \ @GDK_PIXBUF_LIBS@ @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -440,24 +454,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -465,25 +470,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimpthumb -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpthumb/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimpthumb/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -501,13 +521,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/../.. + $(mkdir_p) $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -519,7 +535,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -540,7 +556,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -562,7 +577,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -579,6 +594,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -613,12 +630,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -631,7 +649,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -651,7 +669,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -659,11 +677,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -724,6 +742,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumb-enums.sgml gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumb-enums.sgml --- gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumb-enums.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumb-enums.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -14,6 +14,9 @@ + + + File types as returned by gimp_thumb_file_test(). diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumb-error.sgml gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumb-error.sgml --- gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumb-error.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumb-error.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -14,6 +14,9 @@ + + + These are the possible error codes used when a #GError is set by diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumbnail.sgml gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumbnail.sgml --- gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumbnail.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumbnail.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -14,6 +14,9 @@ + + + All members of #GimpThumbnail are private and should only be accessed diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumb-utils.sgml gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumb-utils.sgml --- gimp-2.2.8/devel-docs/libgimpthumb/tmpl/gimpthumb-utils.sgml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/tmpl/gimpthumb-utils.sgml 2005-10-27 17:14:06.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/xml/gimpthumbnail.xml gimp-2.2.9/devel-docs/libgimpthumb/xml/gimpthumbnail.xml --- gimp-2.2.8/devel-docs/libgimpthumb/xml/gimpthumbnail.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/xml/gimpthumbnail.xml 2005-10-27 17:14:06.000000000 +0200 @@ -230,7 +230,7 @@
<anchor id="gimp-thumbnail-check-thumb"/>gimp_thumbnail_check_thumb () -gimp_thumbnail_check_thumbGimpThumbState gimp_thumbnail_check_thumb (GimpThumbnail *thumbnail, +gimp_thumbnail_check_thumbGimpThumbState gimp_thumbnail_check_thumb (GimpThumbnail *thumbnail, GimpThumbSize size); Checks if a thumbnail file for the thumbnail exists, loads it and @@ -326,7 +326,7 @@ <anchor id="gimp-thumbnail-save-thumb-local"/>gimp_thumbnail_save_thumb_local () -gimp_thumbnail_save_thumb_localgboolean gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail, +gimp_thumbnail_save_thumb_localgboolean gimp_thumbnail_save_thumb_local (GimpThumbnail *thumbnail, GdkPixbuf *pixbuf, const gchar *software, GError **error); @@ -387,7 +387,7 @@ <anchor id="gimp-thumbnail-delete-failure"/>gimp_thumbnail_delete_failure () -gimp_thumbnail_delete_failurevoid gimp_thumbnail_delete_failure (GimpThumbnail *thumbnail); +gimp_thumbnail_delete_failurevoid gimp_thumbnail_delete_failure (GimpThumbnail *thumbnail); Removes a failure thumbnail if one exists. This function should be used after a thumbnail has been successfully created. @@ -401,7 +401,7 @@ <anchor id="gimp-thumbnail-delete-others"/>gimp_thumbnail_delete_others () -gimp_thumbnail_delete_othersvoid gimp_thumbnail_delete_others (GimpThumbnail *thumbnail, +gimp_thumbnail_delete_othersvoid gimp_thumbnail_delete_others (GimpThumbnail *thumbnail, GimpThumbSize size); Removes all other thumbnails from the global thumbnail @@ -422,7 +422,7 @@ <anchor id="gimp-thumbnail-has-failed"/>gimp_thumbnail_has_failed () -gimp_thumbnail_has_failedgboolean gimp_thumbnail_has_failed (GimpThumbnail *thumbnail); +gimp_thumbnail_has_failedgboolean gimp_thumbnail_has_failed (GimpThumbnail *thumbnail); Checks if a valid failure thumbnail for the given thumbnail exists in the global thumbnail repository. This may be the case even if diff -uraN gimp-2.2.8/devel-docs/libgimpthumb/xml/gimpthumb-utils.xml gimp-2.2.9/devel-docs/libgimpthumb/xml/gimpthumb-utils.xml --- gimp-2.2.8/devel-docs/libgimpthumb/xml/gimpthumb-utils.xml 2005-06-27 00:18:41.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpthumb/xml/gimpthumb-utils.xml 2005-10-27 17:14:06.000000000 +0200 @@ -224,7 +224,7 @@ <anchor id="gimp-thumbs-delete-for-uri"/>gimp_thumbs_delete_for_uri () -gimp_thumbs_delete_for_urivoid gimp_thumbs_delete_for_uri (const gchar *uri); +gimp_thumbs_delete_for_urivoid gimp_thumbs_delete_for_uri (const gchar *uri); Deletes all thumbnails for the image file specified by uri from the user's thumbnail repository. @@ -238,7 +238,7 @@ <anchor id="gimp-thumb-name-from-uri-local"/>gimp_thumb_name_from_uri_local () -gimp_thumb_name_from_uri_localgchar* gimp_thumb_name_from_uri_local (const gchar *uri, +gimp_thumb_name_from_uri_localgchar* gimp_thumb_name_from_uri_local (const gchar *uri, GimpThumbSize size); Creates the name of a local thumbnail file of the specified size @@ -262,7 +262,7 @@ <anchor id="gimp-thumb-ensure-thumb-dir-local"/>gimp_thumb_ensure_thumb_dir_local () -gimp_thumb_ensure_thumb_dir_localgboolean gimp_thumb_ensure_thumb_dir_local +gimp_thumb_ensure_thumb_dir_localgboolean gimp_thumb_ensure_thumb_dir_local (const gchar *dirname, GimpThumbSize size, GError **error); @@ -294,7 +294,7 @@ <anchor id="gimp-thumb-get-thumb-dir-local"/>gimp_thumb_get_thumb_dir_local () -gimp_thumb_get_thumb_dir_localgchar* gimp_thumb_get_thumb_dir_local (const gchar *dirname, +gimp_thumb_get_thumb_dir_localgchar* gimp_thumb_get_thumb_dir_local (const gchar *dirname, GimpThumbSize size); Retrieve the name of the local thumbnail folder for a specific @@ -316,7 +316,7 @@ <anchor id="gimp-thumbs-delete-for-uri-local"/>gimp_thumbs_delete_for_uri_local () -gimp_thumbs_delete_for_uri_localvoid gimp_thumbs_delete_for_uri_local +gimp_thumbs_delete_for_uri_localvoid gimp_thumbs_delete_for_uri_local (const gchar *uri); Deletes all thumbnails for the image file specified by uri from diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpButton.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpButton.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpButton.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpButton.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,6 +1,45 @@ -GimpButton
+ +

GimpButton

GimpButton — A + + +GimpButton + + + + + + + + + + + + + + + + + + + + + + + + +

+
+
+
+

GimpButton

+

GimpButton — A GtkButton with a little extra functionality.

Synopsis

+>GtkButton with a little extra functionality.

+
+
+

Synopsis

+
 
 
 
@@ -13,11 +52,13 @@
 href="../gdk/gdk-Windows.html#GdkModifierType"
 >GdkModifierType state);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -35,49 +76,142 @@
 >GtkButton
                                  +----GimpButton
                                        +----GimpColorButton
-

Implemented Interfaces

+ +

+
+

Implemented Interfaces

+

GimpButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "extended-clicked"
             void        user_function      (GimpButton *gimpbutton,
                                             GdkModifierType arg1,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

GimpButton adds an extra signal to the GtkButton widget that allows to distinguish a normal click from a click that was performed with modifier keys pressed. -

Details

GimpButton

typedef struct _GimpButton GimpButton;

- -


gimp_button_new ()


+
+
+

Details

+
+

+GimpButton

+
typedef struct _GimpButton GimpButton;
+

+ +

+
+
+
+

+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,
+>GtkWidget*  gimp_button_new                 (void);
+

+Creates a new GimpButton widget.

+

+ +

+
++ + + + +
+Returns : A pointer to the new GimpButton widget. +
+
+
+
+

+gimp_button_extended_clicked ()

+
void        gimp_button_extended_clicked    (GimpButton *button,
                                              GdkModifierType state);

-Emits the button's "extended_clicked" signal.

- -

button : a GimpButton. -
state : a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. -

Signals

The "extended-clicked" signal

void        user_function                  (GimpButton *gimpbutton,
+>GdkModifierType state);
+

+Emits the button's "extended_clicked" signal.

+

+ +

+
++ + + + + + + + + + +
+button : a GimpButton. +
+state : a state as found in GdkEventButton->state, e.g. GDK_SHIFT_MASK. +
+
+
+
+

Signals

+
+

+The "extended-clicked" signal

+
void        user_function                  (GimpButton *gimpbutton,
                                             GdkModifierType arg1,
-                                            gpointer user_data);

- -

gimpbutton :the object which received the signal. -
arg1 :the state of modifier keys when the button was clicked + gpointer user_data); +

-

user_data :user data set when the signal handler was connected.
+

+
++ + + + + + + + + + + + + + +
+gimpbutton :the object which received the signal. +
+arg1 :the state of modifier keys when the button was clicked + +
+user_data :user data set when the signal handler was connected.
+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpCellRendererColor.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpCellRendererColor

GimpCellRendererColor

GimpCellRendererColor —

Synopsis

+
+
+
+GimpCellRendererColor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpCellRendererColor

+

GimpCellRendererColor —

+
+
+

Synopsis

+
 
 
 
@@ -8,11 +47,13 @@
 >GtkCellRenderer* gimp_cell_renderer_color_new
                                             (void);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -20,36 +61,96 @@
 href="../gtk/GtkCellRenderer.html"
 >GtkCellRenderer
                +----GimpCellRendererColor
-

Properties

+
+
+
+

Properties

+
 
   "color"                GimpRGB               : Read / Write
-  "icon-size"            gint                  : Read / Write / Construct
-  "opaque"               gboolean              : Read / Write / Construct
-

Description

- -

Details

GimpCellRendererColor

typedef struct _GimpCellRendererColor GimpCellRendererColor;

- -


gimp_cell_renderer_color_new ()

icon-size"            gint                  : Read / Write / Construct
+  "opaque"               gboolean              : Read / Write / Construct
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpCellRendererColor

+
typedef struct _GimpCellRendererColor GimpCellRendererColor;
+

+ +

+
+
+
+

+gimp_cell_renderer_color_new ()

+
GtkCellRenderer* gimp_cell_renderer_color_new
-                                            (void);

+ (void);

+

Creates a GtkCellRenderer that displays a color.

- -

Returns : a new GimpCellRendererColor +>GtkCellRenderer that displays a color.

+

-

Since GIMP 2.2 -

+
+

Properties

+
+

+The "color" property

+
  "color"                GimpRGB               : Read / Write


The "icon-size" property

  "icon-size"            gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 1


The "opaque" property

  "opaque"               gboolean              : Read / Write / Construct

Default value: TRUE

+>GimpRGB : Read / Write +

+ +
+
+

+The "icon-size" property

+
  "icon-size"            gint                  : Read / Write / Construct
+

+

Allowed values: >= 0

+

Default value: 1

+
+
+
+

+The "opaque" property

+
  "opaque"               gboolean              : Read / Write / Construct
+

+

Default value: TRUE

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpCellRendererToggle.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpCellRendererToggle

GimpCellRendererToggle

GimpCellRendererToggle —

Synopsis

+
+
+
+GimpCellRendererToggle
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpCellRendererToggle

+

GimpCellRendererToggle —

+
+
+

Synopsis

+
 
 
 
@@ -6,23 +45,21 @@
 GtkCellRenderer* gimp_cell_renderer_toggle_new
-                                            (const gchar *stock_id);
+                                            (const gchar *stock_id);
 void        gimp_cell_renderer_toggle_clicked
                                             (GimpCellRendererToggle *cell,
-                                             const gchar *path,
+                                             const gchar *path,
                                              GdkModifierType state);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -33,79 +70,194 @@
 href="../gtk/GtkCellRendererToggle.html"
 >GtkCellRendererToggle
                      +----GimpCellRendererToggle
-

Properties

-
-  "stock-id"             gchararray            : Read / Write / Construct
-  "stock-size"           gint                  : Read / Write / Construct
-

Signal Prototypes

+
+
+
+

Properties

+
+
+  "stock-id"             gchararray            : Read / Write / Construct
+  "stock-size"           gint                  : Read / Write / Construct
+
+
+
+

Signal Prototypes

+
 
 "clicked"   void        user_function      (GimpCellRendererToggle *gimpcellrenderertoggle,
-                                            gchar *arg1,
+                                            gchar *arg1,
                                             GdkModifierType arg2,
-                                            gpointer user_data);
-

Description

- -

Details

GimpCellRendererToggle

typedef struct _GimpCellRendererToggle GimpCellRendererToggle;

- -


gimp_cell_renderer_toggle_new ()


+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpCellRendererToggle

+
typedef struct _GimpCellRendererToggle GimpCellRendererToggle;
+

+ +

+
+
+
+

+gimp_cell_renderer_toggle_new ()

+
GtkCellRenderer* gimp_cell_renderer_toggle_new
-                                            (const gchar *stock_id);

+ (const gchar *stock_id);

+

Creates a custom version of the GtkCellRendererToggle. Instead of showing the standard toggle button, it shows a stock icon if the cell is active and no icon otherwise. This cell renderer is for example used in the Layers treeview to indicate and control the -layer's visibility by showing GIMP_STOCK_VISIBLE.

+layer's visibility by showing GIMP_STOCK_VISIBLE.

+

-

stock_id : the stock_id of the icon to use for the active state -
Returns : a new GimpCellRendererToggle - -

Since GIMP 2.2 -


gimp_cell_renderer_toggle_clicked ()

void        gimp_cell_renderer_toggle_clicked
+

+
++ + + + + + + + + + +
+stock_id : the stock_id of the icon to use for the active state +
+Returns : a new GimpCellRendererToggle + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_cell_renderer_toggle_clicked ()

+
void        gimp_cell_renderer_toggle_clicked
                                             (GimpCellRendererToggle *cell,
-                                             const gchar *path,
+                                             const gchar *path,
                                              GdkModifierType state);

-Emits the "clicked" signal from a GimpCellRendererToggle.

- -

cell : a GimpCellRendererToggle -
path : -
state : -

Since GIMP 2.2 -

Properties

The "stock-id" property

  "stock-id"             gchararray            : Read / Write / Construct

Default value: NULL


The "stock-size" property

  "stock-size"           gint                  : Read / Write / Construct

Allowed values: >= 0

Default value: 4

Signals

The "clicked" signal

void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
-                                            gchar *arg1,
+>GdkModifierType state);
+

+Emits the "clicked" signal from a GimpCellRendererToggle.

+

+ +

+
++ + + + + + + + + + + + + + +
+cell : a GimpCellRendererToggle +
+path : +
+state : +
+

Since GIMP 2.2 +

+
+
+
+

Properties

+
+

+The "stock-id" property

+
  "stock-id"             gchararray            : Read / Write / Construct
+

+

Default value: NULL

+
+
+
+

+The "stock-size" property

+
  "stock-size"           gint                  : Read / Write / Construct
+

+

Allowed values: >= 0

+

Default value: 4

+
+
+
+

Signals

+
+

+The "clicked" signal

+
void        user_function                  (GimpCellRendererToggle *gimpcellrenderertoggle,
+                                            gchar *arg1,
                                             GdkModifierType arg2,
-                                            gpointer user_data);

- -

gimpcellrenderertoggle :the object which received the signal. -
arg1 : -
arg2 : + gpointer user_data); +

-

user_data :user data set when the signal handler was connected.
+

+
++ + + + + + + + + + + + + + + + + + +
+gimpcellrenderertoggle :the object which received the signal. +
+arg1 : +
+arg2 : + +
+user_data :user data set when the signal handler was connected.
+ + + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpChainButton.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpChainButton.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpChainButton.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpChainButton.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpChainButton

GimpChainButton

GimpChainButton — Widget to visually connect two entry widgets.

Synopsis

+
+
+
+GimpChainButton
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpChainButton

+

GimpChainButton — Widget to visually connect two entry widgets.

+
+
+

Synopsis

+
 
 
 
@@ -8,18 +47,16 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_chain_button_new           (GimpChainPosition position);
 void        gimp_chain_button_set_active    (GimpChainButton *button,
-                                             gboolean active);
-gboolean    gimp_chain_button_get_active    (GimpChainButton *button);
+                                             gboolean active);
+gboolean    gimp_chain_button_get_active    (GimpChainButton *button);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -33,78 +70,205 @@
 href="../gtk/GtkTable.html"
 >GtkTable
                            +----GimpChainButton
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpChainButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "toggled"   void        user_function      (GimpChainButton *gimpchainbutton,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

This widget provides a button showing either a linked or a broken chain that can be used to link two entries, spinbuttons, colors or other GUI elements and show that they may be locked. Use it for example to connect X and Y ratios to provide the possibility of a constrained aspect ratio. -

+

+

The GimpChainButton only gives visual feedback, it does not really connect widgets. You have to take care of locking the values yourself 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;

- -


enum GimpChainPosition

typedef enum
+

+
+
+

Details

+
+

+GimpChainButton

+
typedef struct _GimpChainButton GimpChainButton;
+

+ +

+
+
+
+

+enum GimpChainPosition

+
typedef enum
 {
   GIMP_CHAIN_TOP,
   GIMP_CHAIN_LEFT,
   GIMP_CHAIN_BOTTOM,
   GIMP_CHAIN_RIGHT
 } GimpChainPosition;
-

+ +

-


gimp_chain_button_new ()


+
+
+
+

+gimp_chain_button_new ()

+
GtkWidget*  gimp_chain_button_new           (GimpChainPosition position);

+>GtkWidget* gimp_chain_button_new (GimpChainPosition position); +

Creates a new GimpChainButton widget. -

+

+

This returns a button showing either a broken or a linked chain and small clamps attached to both sides that visually group the two widgets you want to connect. This widget looks best when attached to a table taking up two columns (or rows respectively) next to the widgets that it is supposed to connect. It may work -for more than two widgets, but the look is optimized for two.

+for more than two widgets, but the look is optimized for two.

+

-

+ + +
position : The position you are going to use for the button +

+
++ + + + + + + +
+position : The position you are going to use for the button with respect to the widgets you want to chain. -
Returns : Pointer to the new GimpChainButton, which is inactive +
+Returns : Pointer to the new GimpChainButton, which is inactive by default. Use gimp_chain_button_set_active() to change its state. -

gimp_chain_button_set_active ()

void        gimp_chain_button_set_active    (GimpChainButton *button,
-                                             gboolean active);

+

+
+
+
+

+gimp_chain_button_set_active ()

+
void        gimp_chain_button_set_active    (GimpChainButton *button,
+                                             gboolean active);
+

Sets the state of the GimpChainButton to be either locked (TRUE) or -unlocked (FALSE) and changes the showed pixmap to reflect the new state.

- -

button : Pointer to a GimpChainButton. -
active : The new state. -

gimp_chain_button_get_active ()

gboolean    gimp_chain_button_get_active    (GimpChainButton *button);

-Checks the state of the GimpChainButton.

- -

button : Pointer to a GimpChainButton. -
Returns : TRUE if the GimpChainButton is active (locked). -

Signals

The "toggled" signal

void        user_function                  (GimpChainButton *gimpchainbutton,
-                                            gpointer user_data);

- -

gimpchainbutton :the object which received the signal. +unlocked (FALSE) and changes the showed pixmap to reflect the new state.

+

-

user_data :user data set when the signal handler was connected.

See Also

+

+
++ + + + + + + + + + +
+button : Pointer to a GimpChainButton. +
+active : The new state. +
+
+
+
+

+gimp_chain_button_get_active ()

+
gboolean    gimp_chain_button_get_active    (GimpChainButton *button);
+

+Checks the state of the GimpChainButton.

+

+ +

+
++ + + + + + + + + + +
+button : Pointer to a GimpChainButton. +
+Returns : TRUE if the GimpChainButton is active (locked). +
+
+
+
+

Signals

+
+

+The "toggled" signal

+
void        user_function                  (GimpChainButton *gimpchainbutton,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpchainbutton :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

You may want to use the convenience function gimp_coordinates_new() to set up two GimpSizeEntries (see GimpSizeEntry) linked with a GimpChainButton. -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorArea.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorArea.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorArea.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorArea

GimpColorArea

GimpColorArea — Displays a GimpRGB color, optionally with alpha-channel.

Synopsis

+
+
+
+GimpColorArea
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorArea

+

GimpColorArea — Displays a GimpRGB color, optionally with alpha-channel.

+
+
+

Synopsis

+
 
 
 
@@ -21,21 +60,19 @@
                                              GimpRGB *color);
-gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);
+gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);
 void        gimp_color_area_set_type        (GimpColorArea *area,
                                              GimpColorAreaType type);
 void        gimp_color_area_set_draw_border (GimpColorArea *area,
-                                             gboolean draw_border);
+                                             gboolean draw_border);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -46,28 +83,59 @@
 href="../gtk/GtkDrawingArea.html"
 >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

- -

Details

GimpColorArea

typedef struct _GimpColorArea GimpColorArea;

- -


enum GimpColorAreaType

typedef enum
+                                            gpointer user_data);
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpColorArea

+
typedef struct _GimpColorArea GimpColorArea;
+

+ +

+
+
+
+

+enum GimpColorAreaType

+
typedef enum
 {
   GIMP_COLOR_AREA_FLAT = 0,
   GIMP_COLOR_AREA_SMALL_CHECKS,
   GIMP_COLOR_AREA_LARGE_CHECKS
 } GimpColorAreaType;
-

+ +

-


gimp_color_area_new ()


+
+
+
+

+gimp_color_area_new ()

+
GtkWidget*  gimp_color_area_new             (const GimpColorAreaType type,
                                              GdkModifierType drag_mask);

+>GdkModifierType drag_mask); +

Creates a new GimpColorArea widget. -

+

+

This returns a preview area showing the color. It handles color -DND. If the color changes, the "color_changed" signal is emitted.

+DND. If the color changes, the "color_changed" signal is emitted.

+

-

+ + + + + + + + + + + + + + +
color : A pointer to a +
++ + + +
+color : A pointer to a GimpRGB struct. -
type : The type of color area to create. -
drag_mask : The event_mask that should trigger drags. -
Returns : Pointer to the new GimpColorArea widget. -

gimp_color_area_set_color ()

void        gimp_color_area_set_color       (GimpColorArea *area,
+
+type : The type of color area to create. +
+drag_mask : The event_mask that should trigger drags. +
+Returns : Pointer to the new GimpColorArea widget. +
+
+
+
+

+gimp_color_area_set_color ()

+
void        gimp_color_area_set_color       (GimpColorArea *area,
                                              const GimpRGB *color);

-Sets area to a different color.

- -

+ + +
area : Pointer to a GimpColorArea. -
color : Pointer to a GimpRGB *color); +

+Sets area to a different color.

+

+ +

+
++ + + + + + + +
+area : Pointer to a GimpColorArea. +
+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);

-Retrieves the current color of the area.

- -

+ + +
area : Pointer to a GimpColorArea. -
color : Pointer to a GimpRGB *color); +

+Retrieves the current color of the area.

+

+ +

+
++ + + + + + + +
+area : Pointer to a GimpColorArea. +
+color : Pointer to a GimpRGB struct that is used to return the color. -

gimp_color_area_has_alpha ()

gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);

+

+
+
+
+

+gimp_color_area_has_alpha ()

+
gboolean    gimp_color_area_has_alpha       (GimpColorArea *area);
+

Checks whether the area shows transparency information. This is determined -via the area's GimpColorAreaType.

+via the area's GimpColorAreaType.

+

-

area : Pointer to a GimpColorArea. -
Returns : TRUE if area shows transparency information, FALSE otherwise. -

gimp_color_area_set_type ()

void        gimp_color_area_set_type        (GimpColorArea *area,
-                                             GimpColorAreaType type);

+

+
++ + + + + + + + + + +
+area : Pointer to a GimpColorArea. +
+Returns : TRUE if area shows transparency information, FALSE otherwise. +
+
+
+
+

+gimp_color_area_set_type ()

+
void        gimp_color_area_set_type        (GimpColorArea *area,
+                                             GimpColorAreaType type);
+

Allows to change the type of area. The GimpColorAreaType determines whether the widget shows transparency information and chooses the size of -the checkerboard used to do that.

+the checkerboard used to do that.

+

-

area : Pointer to a GimpColorArea. -
type : A GimpColorAreaType. -

gimp_color_area_set_draw_border ()

void        gimp_color_area_set_draw_border (GimpColorArea *area,
-                                             gboolean draw_border);

+

+
++ + + + + + + + + + +
+area : Pointer to a GimpColorArea. +
+type : A GimpColorAreaType. +
+
+
+
+

+gimp_color_area_set_draw_border ()

+
void        gimp_color_area_set_draw_border (GimpColorArea *area,
+                                             gboolean draw_border);
+

The area can draw a thin border in the foreground color around itself. This function allows to toggle this behaviour on and -off. The default is not draw a border.

- -

area : Pointer to a GimpColorArea. -
draw_border : whether to draw a border or not -

Signals

The "color-changed" signal

void        user_function                  (GimpColorArea *gimpcolorarea,
-                                            gpointer user_data);

- -

gimpcolorarea :the object which received the signal. +off. The default is not draw a border.

+

-

user_data :user data set when the signal handler was connected.
+

+
++ + + + + + + + + + +
+area : Pointer to a GimpColorArea. +
+draw_border : whether to draw a border or not +
+
+ +
+

Signals

+
+

+The "color-changed" signal

+
void        user_function                  (GimpColorArea *gimpcolorarea,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpcolorarea :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorButton.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorButton.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorButton.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,19 +1,52 @@ -GimpColorButton

GimpColorButton

GimpColorButton — Widget for selecting a color from a simple button.

Synopsis

+
+
+
+GimpColorButton
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorButton

+

GimpColorButton — Widget for selecting a color from a simple button.

+
+
+

Synopsis

+
 
 
 
             GimpColorButton;
 GtkWidget*  gimp_color_button_new           (const gchar *title,
-                                             gint width,
-                                             gint height,
+>GtkWidget*  gimp_color_button_new           (const gchar *title,
+                                             gint width,
+                                             gint height,
                                              const GimpRGB *color,
@@ -27,23 +60,19 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB *color);
 void        gimp_color_button_set_update    (GimpColorButton *button,
-                                             gboolean continuous);
-gboolean    gimp_color_button_get_update    (GimpColorButton *button);
-gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);
+                                             gboolean continuous);
+gboolean    gimp_color_button_get_update    (GimpColorButton *button);
+gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);
 void        gimp_color_button_set_type      (GimpColorButton *button,
                                              GimpColorAreaType type);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -61,114 +90,338 @@
 >GtkButton
                                  +----GimpButton
                                        +----GimpColorButton
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpColorButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "color-changed"
             void        user_function      (GimpColorButton *gimpcolorbutton,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

This widget provides a simple button with a preview showing the color. -

+

+

On click a GtkColorSelectionDialog is opened. Additionally the button 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;

- -


gimp_color_button_new ()


+
+
+

Details

+
+

+GimpColorButton

+
typedef struct _GimpColorButton GimpColorButton;
+

+ +

+
+
+
+

+gimp_color_button_new ()

+
GtkWidget*  gimp_color_button_new           (const gchar *title,
-                                             gint width,
-                                             gint height,
+>GtkWidget*  gimp_color_button_new           (const gchar *title,
+                                             gint width,
+                                             gint height,
                                              const GimpRGB *color,
-                                             GimpColorAreaType type);

+ GimpColorAreaType type); +

Creates a new GimpColorButton widget. -

+

+

This returns a button with a preview showing the color. When the button is clicked a GtkColorSelectionDialog is opened. If the user changes the color the new color is written into the array that was used to pass the initial color and the "color_changed" -signal is emitted.

+signal is emitted.

+

-

+ + + + + + + + + + +
title : String that will be used as title for the color_selector. -
width : Width of the colorpreview in pixels. -
height : Height of the colorpreview in pixels. -
color : A pointer to a +
++ + + + + + + + + + + + + + + +
+title : String that will be used as title for the color_selector. +
+width : Width of the colorpreview in pixels. +
+height : Height of the colorpreview in pixels. +
+color : A pointer to a GimpRGB color. -
type : -
Returns : Pointer to the new GimpColorButton widget. -

gimp_color_button_set_color ()

void        gimp_color_button_set_color     (GimpColorButton *button,
+
+type : +
+Returns : Pointer to the new GimpColorButton widget. +
+
+
+
+

+gimp_color_button_set_color ()

+
void        gimp_color_button_set_color     (GimpColorButton *button,
                                              const GimpRGB *color);

-Sets the button to the given color.

- -

+ + +
button : Pointer to a GimpColorButton. -
color : Pointer to the new GimpRGB *color); +

+Sets the button to the given color.

+

+ +

+
++ + + + + + + +
+button : Pointer to a GimpColorButton. +
+color : Pointer to the new GimpRGB color. -

gimp_color_button_get_color ()

void        gimp_color_button_get_color     (GimpColorButton *button,
+
+
+
+
+

+gimp_color_button_get_color ()

+
void        gimp_color_button_get_color     (GimpColorButton *button,
                                              GimpRGB *color);

-Retrieves the currently set color from the button.

- -

+ + +
button : Pointer to a GimpColorButton. -
color : Pointer to a GimpRGB *color); +

+Retrieves the currently set color from the button.

+

+ +

+
++ + + + + + + +
+button : Pointer to a GimpColorButton. +
+color : Pointer to a GimpRGB struct used to return the color. -

gimp_color_button_set_update ()

void        gimp_color_button_set_update    (GimpColorButton *button,
-                                             gboolean continuous);

+

+
+
+
+

+gimp_color_button_set_update ()

+
void        gimp_color_button_set_update    (GimpColorButton *button,
+                                             gboolean continuous);
+

When set to TRUE, the button will emit the "color_changed" continuously while the color is changed in the color selection -dialog.

+dialog.

+

-

button : A GimpColorButton widget. -
continuous : The new setting of the continuous_update property. -

gimp_color_button_get_update ()

gboolean    gimp_color_button_get_update    (GimpColorButton *button);

-Returns the color button's continuous_update property.

- -

button : A GimpColorButton widget. -
Returns : the continuous_update property. -

gimp_color_button_has_alpha ()

gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);

-Checks whether the buttons shows transparency information.

- -

+ + +
button : Pointer to a GimpColorButton. -
Returns : TRUE if the button shows transparency information, FALSE +

+
++ + + + + + + + + + +
+button : A GimpColorButton widget. +
+continuous : The new setting of the continuous_update property. +
+ +
+
+

+gimp_color_button_get_update ()

+
gboolean    gimp_color_button_get_update    (GimpColorButton *button);
+

+Returns the color button's continuous_update property.

+

+ +

+
++ + + + + + + + + + +
+button : A GimpColorButton widget. +
+Returns : the continuous_update property. +
+
+
+
+

+gimp_color_button_has_alpha ()

+
gboolean    gimp_color_button_has_alpha     (GimpColorButton *button);
+

+Checks whether the buttons shows transparency information.

+

+ +

+
++ + + + + + + +
+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,
-                                             GimpColorAreaType type);

-Sets the button to the given type. See also gimp_color_area_set_type().

- -

button : Pointer to a GimpColorButton. -
type : the new GimpColorAreaType -

Signals

The "color-changed" signal

void        user_function                  (GimpColorButton *gimpcolorbutton,
-                                            gpointer user_data);

- -

gimpcolorbutton :the object which received the signal. - -
user_data :user data set when the signal handler was connected.

See Also

+

+
+
+
+

+gimp_color_button_set_type ()

+
void        gimp_color_button_set_type      (GimpColorButton *button,
+                                             GimpColorAreaType type);
+

+Sets the button to the given type. See also gimp_color_area_set_type().

+

+ +

+
++ + + + + + + + + + +
+button : Pointer to a GimpColorButton. +
+type : the new GimpColorAreaType +
+
+
+
+

Signals

+
+

+The "color-changed" signal

+
void        user_function                  (GimpColorButton *gimpcolorbutton,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpcolorbutton :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

libgimpcolor-gimpcolorspace -

+

+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplay.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorDisplay.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorDisplay.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,35 +1,58 @@ -GimpColorDisplay

GimpColorDisplay

GimpColorDisplay — Pluggable GIMP display color correction modules.

Synopsis

+
+
+
+GimpColorDisplay
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorDisplay

+

GimpColorDisplay — Pluggable GIMP display color correction modules.

+
+
+

Synopsis

+
 
 
 
             GimpColorDisplay;
-GimpColorDisplay* gimp_color_display_new    (GType display_type);
+GimpColorDisplay* gimp_color_display_new    (GType display_type);
 GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);
 void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
-                                             gboolean enabled);
-gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);
+                                             gboolean enabled);
+gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);
 void        gimp_color_display_convert      (GimpColorDisplay *display,
-                                             guchar *buf,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);
+                                             guchar *buf,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             gint bpl);
 void        gimp_color_display_load_state   (GimpColorDisplay *display,
                                              GimpColorDisplay *display);
 void        gimp_color_display_changed      (GimpColorDisplay *display);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GimpColorDisplay
-

Properties

-
-  "enabled"              gboolean              : Read / Write / Construct
-

Signal Prototypes

+
+
+
+

Properties

+
+
+  "enabled"              gboolean              : Read / Write / Construct
+
+
+
+

Signal Prototypes

+
 
 "changed"   void        user_function      (GimpColorDisplay *gimpcolordisplay,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); +

+
+
+

Description

+

Functions and definitions for creating pluggable GIMP display color correction modules. -

Details

GimpColorDisplay

typedef struct _GimpColorDisplay GimpColorDisplay;

- -


gimp_color_display_new ()

GimpColorDisplay* gimp_color_display_new    (GType display_type);

- -

display_type : -
Returns : - - -

gimp_color_display_clone ()

GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);

- -

display : -
Returns : - - -

gimp_color_display_set_enabled ()

void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
-                                             gboolean enabled);

- -

display : -
enabled : - - -

gimp_color_display_get_enabled ()

gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);

- -

display : -
Returns : - - -

gimp_color_display_convert ()

void        gimp_color_display_convert      (GimpColorDisplay *display,
-                                             guchar *buf,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);

- -

display : -
buf : -
width : -
height : -
bpp : -
bpl : - - -

gimp_color_display_load_state ()

void        gimp_color_display_load_state   (GimpColorDisplay *display,
+

+
+
+

Details

+
+

+GimpColorDisplay

+
typedef struct _GimpColorDisplay GimpColorDisplay;
+

+ +

+
+
+
+

+gimp_color_display_new ()

+
GimpColorDisplay* gimp_color_display_new    (GType display_type);
+

+ +

+
++ + + + + + + + + + +
+display_type : +
+Returns : + + +
+
+
+
+

+gimp_color_display_clone ()

+
GimpColorDisplay* gimp_color_display_clone  (GimpColorDisplay *display);
+

+ +

+
++ + + + + + + + + + +
+display : +
+Returns : + + +
+
+
+
+

+gimp_color_display_set_enabled ()

+
void        gimp_color_display_set_enabled  (GimpColorDisplay *display,
+                                             gboolean enabled);
+

+ +

+
++ + + + + + + + + + +
+display : +
+enabled : + + +
+
+
+
+

+gimp_color_display_get_enabled ()

+
gboolean    gimp_color_display_get_enabled  (GimpColorDisplay *display);
+

+ +

+
++ + + + + + + + + + +
+display : +
+Returns : + + +
+
+
+
+

+gimp_color_display_convert ()

+
void        gimp_color_display_convert      (GimpColorDisplay *display,
+                                             guchar *buf,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             gint bpl);
+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+display : +
+buf : +
+width : +
+height : +
+bpp : +
+bpl : + + +
+
+
+
+

+gimp_color_display_load_state ()

+
void        gimp_color_display_load_state   (GimpColorDisplay *display,
                                              GimpParasite *state);

- -

display : -
state : - +>GimpParasite *state); +

-


+
+
+

+gimp_color_display_save_state ()

+
GimpParasite* gimp_color_display_save_state (GimpColorDisplay *display);

+>GimpParasite* gimp_color_display_save_state (GimpColorDisplay *display); +

-

display : -
Returns : - - -

+
+
+

+gimp_color_display_configure ()

+
GtkWidget*  gimp_color_display_configure    (GimpColorDisplay *display);

- -

display : -
Returns : +>GtkWidget* gimp_color_display_configure (GimpColorDisplay *display); +

- -


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);

- -

display : - - -

Properties

The "enabled" property

  "enabled"              gboolean              : Read / Write / Construct

Default value: TRUE

Signals

The "changed" signal

void        user_function                  (GimpColorDisplay *gimpcolordisplay,
-                                            gpointer user_data);

- -

gimpcolordisplay :the object which received the signal. - -
user_data :user data set when the signal handler was connected.

See Also

-GModule -

-GTypeModule -

+

+
++ + + + + + + + + + +
+display : +
+Returns : + + +
+
+
+
+

+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);
+

+ +

+
++ + + + +
+display : + + +
+
+
+
+

Properties

+
+

+The "enabled" property

+
  "enabled"              gboolean              : Read / Write / Construct
+

+

Default value: TRUE

+
+
+
+

Signals

+
+

+The "changed" signal

+
void        user_function                  (GimpColorDisplay *gimpcolordisplay,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpcolordisplay :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

+GModule +

+

+GTypeModule +

+

libgimp-gimpmodule -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorDisplayStack.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorDisplayStack

GimpColorDisplayStack

GimpColorDisplayStack —

Synopsis

+
+
+
+GimpColorDisplayStack
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorDisplayStack

+

GimpColorDisplayStack —

+
+
+

Synopsis

+
 
 
 
@@ -21,174 +60,454 @@
                                              GimpColorDisplay *display);
 void        gimp_color_display_stack_convert
                                             (GimpColorDisplayStack *stack,
-                                             guchar *buf,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);
-
-

Object Hierarchy

-
-  GObject
+                                             guchar *buf,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             gint bpl);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GimpColorDisplayStack
-

Signal Prototypes

+
+
+
+

Signal Prototypes

+
 
 "added"     void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gint arg2,
-                                            gpointer user_data);
+                                            gint arg2,
+                                            gpointer user_data);
 "changed"   void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "removed"   void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "reordered" void        user_function      (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gint arg2,
-                                            gpointer user_data);
-

Description

- -

Details

GimpColorDisplayStack

typedef struct _GimpColorDisplayStack GimpColorDisplayStack;

- -


gimp_color_display_stack_new ()

GimpColorDisplayStack* gimp_color_display_stack_new
-                                            (void);

- -

Returns : - - -

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
-                                            (GimpColorDisplayStack *stack);

- -

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,
-                                             GimpColorDisplay *display);

- -

stack : -
display : - - -

gimp_color_display_stack_reorder_up ()

void        gimp_color_display_stack_reorder_up
+                                            gint arg2,
+                                            gpointer user_data);
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpColorDisplayStack

+
typedef struct _GimpColorDisplayStack GimpColorDisplayStack;
+

+ +

+
+
+
+

+gimp_color_display_stack_new ()

+
GimpColorDisplayStack* gimp_color_display_stack_new
+                                            (void);
+

+ +

+
++ + + + +
+Returns : + + +
+
+
+
+

+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
+                                            (GimpColorDisplayStack *stack);
+

+ +

+
++ + + + +
+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,
+                                             GimpColorDisplay *display);
+

+ +

+
++ + + + + + + + + + +
+stack : +
+display : + + +
+
+
+
+

+gimp_color_display_stack_reorder_up ()

+
void        gimp_color_display_stack_reorder_up
                                             (GimpColorDisplayStack *stack,
-                                             GimpColorDisplay *display);

- -

stack : -
display : - + GimpColorDisplay *display); +

-


gimp_color_display_stack_reorder_down ()

void        gimp_color_display_stack_reorder_down
+

+
++ + + + + + + + + + +
+stack : +
+display : + + +
+
+
+
+

+gimp_color_display_stack_reorder_down ()

+
void        gimp_color_display_stack_reorder_down
                                             (GimpColorDisplayStack *stack,
-                                             GimpColorDisplay *display);

+ GimpColorDisplay *display);

+

-

stack : -
display : - - -

gimp_color_display_stack_convert ()

void        gimp_color_display_stack_convert
+

+
++ + + + + + + + + + +
+stack : +
+display : + + +
+
+
+
+

+gimp_color_display_stack_convert ()

+
void        gimp_color_display_stack_convert
                                             (GimpColorDisplayStack *stack,
-                                             guchar *buf,
-                                             gint width,
-                                             gint height,
-                                             gint bpp,
-                                             gint bpl);

- -

stack : -
buf : -
width : -
height : -
bpp : -
bpl : - - -

Signals

The "added" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+                                             guchar *buf,
+                                             gint width,
+                                             gint height,
+                                             gint bpp,
+                                             gint bpl);
+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+stack : +
+buf : +
+width : +
+height : +
+bpp : +
+bpl : + + +
+
+
+
+

Signals

+
+

+The "added" signal

+
void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gint arg2,
-                                            gpointer user_data);

- -

gimpcolordisplaystack :the object which received the signal. -
arg1 : -
arg2 : - -
user_data :user data set when the signal handler was connected.

The "changed" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
-                                            gpointer user_data);

- -

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,
+                                            gint arg2,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+gimpcolordisplaystack :the object which received the signal. +
+arg1 : +
+arg2 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "changed" signal

+
void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+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,
                                             GimpColorDisplay *arg1,
-                                            gpointer user_data);

- -

gimpcolordisplaystack :the object which received the signal. -
arg1 : + gpointer user_data); +

-

user_data :user data set when the signal handler was connected.

The "reordered" signal

void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
+

+
++ + + + + + + + + + + + + + +
+gimpcolordisplaystack :the object which received the signal. +
+arg1 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "reordered" signal

+
void        user_function                  (GimpColorDisplayStack *gimpcolordisplaystack,
                                             GimpColorDisplay *arg1,
-                                            gint arg2,
-                                            gpointer user_data);

- -

gimpcolordisplaystack :the object which received the signal. -
arg1 : -
arg2 : - -
user_data :user data set when the signal handler was connected.
+ gint arg2, + gpointer user_data); +

+ +

+
++ + + + + + + + + + + + + + + + + + +
+gimpcolordisplaystack :the object which received the signal. +
+arg1 : +
+arg2 : + +
+user_data :user data set when the signal handler was connected.
+ + + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorHexEntry.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorHexEntry

GimpColorHexEntry

GimpColorHexEntry — Widget for entering a color's hex triplet.

Synopsis

+
+
+
+GimpColorHexEntry
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorHexEntry

+

GimpColorHexEntry — Widget for entering a color's hex triplet.

+
+
+

Synopsis

+
 
 
 
@@ -15,11 +54,13 @@
 href="../libgimpcolor/libgimpcolor-GimpRGB.html#GimpRGB"
 >GimpRGB *color);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -30,60 +71,174 @@
 href="../gtk/GtkEntry.html"
 >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

+ gpointer user_data); + +

+
+

Description

+

Widget for entering a color's hex triplet. -

Details

GimpColorHexEntry

typedef struct _GimpColorHexEntry GimpColorHexEntry;

- -


gimp_color_hex_entry_new ()


+
+
+

Details

+
+

+GimpColorHexEntry

+
typedef struct _GimpColorHexEntry GimpColorHexEntry;
+

+ +

+
+
+
+

+gimp_color_hex_entry_new ()

+
GtkWidget*  gimp_color_hex_entry_new        (void);

-

- -

Returns : a new GimpColorHexEntry widget - -

Since GIMP 2.2 -


gimp_color_hex_entry_set_color ()

void        gimp_color_hex_entry_set_color  (GimpColorHexEntry *entry,
+>GtkWidget*  gimp_color_hex_entry_new        (void);
+

+

+

+ +

+
++ + + + +
+Returns : a new GimpColorHexEntry widget + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_color_hex_entry_set_color ()

+
void        gimp_color_hex_entry_set_color  (GimpColorHexEntry *entry,
                                              const GimpRGB *color);

+>GimpRGB *color); +

Sets the color displayed by a GimpColorHexEntry. If the new color is different to the previously set color, the "color_changed" -signal is emitted.

+signal is emitted.

+

-

+

Since GIMP 2.2 +

+
+
+
+

+gimp_color_hex_entry_get_color ()

+
void        gimp_color_hex_entry_get_color  (GimpColorHexEntry *entry,
                                              GimpRGB *color);

-Retrieves the color value displayed by a GimpColorHexEntry.

- -

+ + +
entry : a GimpColorHexEntry widget -
color : pointer to a GimpRGB *color); +

+Retrieves the color value displayed by a GimpColorHexEntry.

+

+ +

+
++ + + + + + + +
+entry : a GimpColorHexEntry widget +
+color : pointer to a GimpRGB -

Since GIMP 2.2 -

Signals

The "color-changed" signal

void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
-                                            gpointer user_data);

- -

gimpcolorhexentry :the object which received the signal. - -
user_data :user data set when the signal handler was connected.
+
+

Since GIMP 2.2 +

+
+
+
+

Signals

+
+

+The "color-changed" signal

+
void        user_function                  (GimpColorHexEntry *gimpcolorhexentry,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpcolorhexentry :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorNotebook.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorNotebook.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorNotebook.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorNotebook

GimpColorNotebook

GimpColorNotebook — A GimpColorSelector implementation.

Synopsis

+
+
+
+GimpColorNotebook
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorNotebook

+

GimpColorNotebook — A GimpColorSelector implementation.

+
+
+

Synopsis

+
 
 
 
@@ -7,18 +46,16 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_color_notebook_set_has_page
                                             (GimpColorNotebook *notebook,
-                                             GType page_type,
-                                             gboolean has_page);
-
-

Object Hierarchy

-
-  GObject
+                                             GType page_type,
+                                             gboolean has_page);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -36,43 +73,114 @@
 >GtkVBox
                                  +----GimpColorSelector
                                        +----GimpColorNotebook
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpColorNotebook implements - AtkImplementorIface.

Style Properties

+ AtkImplementorIface.

+
+
+

Style Properties

+
 
-  "tab-border"           gint                  : Read
+  "tab-border"           gint                  : Read
   "tab-icon-size"        GtkIconSize           : Read
-

Description

+ +

+
+

Description

+

The GimpColorNotebook widget is an implementation of a GimpColorSelector. It serves as a container for GimpColorSelectors. -

Details

GimpColorNotebook

typedef struct _GimpColorNotebook GimpColorNotebook;

- -


gimp_color_notebook_set_has_page ()


+
+
+

Details

+
+

+GimpColorNotebook

+
typedef struct _GimpColorNotebook GimpColorNotebook;
+

+ +

+
+
+
+

+gimp_color_notebook_set_has_page ()

+
GtkWidget*  gimp_color_notebook_set_has_page
                                             (GimpColorNotebook *notebook,
-                                             GType page_type,
-                                             gboolean has_page);

+ GType page_type, + gboolean has_page); +

This function adds and removed pages to / from a GimpColorNotebook. -The page_type passed must be a GimpColorSelector subtype.

+The page_type passed must be a GimpColorSelector subtype.

+

-

+ +
notebook : A GimpColorNotebook widget. -
page_type : The GType of the notebook page to add or remove. -
has_page : Whether the page should be added or removed. -
Returns : The new page widget, if has_page was TRUE, or NULL +

+
++ + + + + + + + + + + + + + + +
+notebook : A GimpColorNotebook widget. +
+page_type : The GType of the notebook page to add or remove. +
+has_page : Whether the page should be added or removed. +
+Returns : The new page widget, if has_page was TRUE, or NULL if has_page was FALSE. -

Style Properties

The "tab-border" style property

  "tab-border"           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"        
+
+
+
+
+

Style Properties

+
+

+The "tab-border" style property

+
  "tab-border"           gint                  : Read
+

Width of the border around the tab contents.

+

Allowed values: >= 0

+

Default value: 0

+
+
+
+

+The "tab-icon-size" style property

+
  "tab-icon-size"        GtkIconSize           : Read

Size for icons displayed in the tab.

Default value: GTK_ICON_SIZE_BUTTON

+>GtkIconSize : Read +

Size for icons displayed in the tab.

+

Default value: GTK_ICON_SIZE_BUTTON

+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScale.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorScale.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorScale.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorScale

GimpColorScale

GimpColorScale — Fancy colored sliders.

Synopsis

+
+
+
+GimpColorScale
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorScale

+

GimpColorScale — Fancy colored sliders.

+
+
+

Synopsis

+
 
 
 
@@ -19,11 +58,13 @@
 href="../libgimpcolor/libgimpcolor-GimpHSV.html#GimpHSV"
 >GimpHSV *hsv);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -37,43 +78,147 @@
 href="../gtk/GtkScale.html"
 >GtkScale
                            +----GimpColorScale
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpColorScale implements - AtkImplementorIface.

Description

- -

Details

GimpColorScale

typedef struct _GimpColorScale GimpColorScale;

- -


gimp_color_scale_new ()


+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpColorScale

+
typedef struct _GimpColorScale GimpColorScale;
+

+ +

+
+
+
+

+gimp_color_scale_new ()

+
GtkWidget*  gimp_color_scale_new            (GtkOrientation orientation,
-                                             GimpColorSelectorChannel channel);

-Creates a new GimpColorScale widget.

- -

orientation : the scale's orientation (horizontal or vertical) -
channel : the scale's color channel -
Returns : a new GimpColorScale widget -

gimp_color_scale_set_channel ()

void        gimp_color_scale_set_channel    (GimpColorScale *scale,
-                                             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,
+                                             GimpColorSelectorChannel channel);
+

+Creates a new GimpColorScale widget.

+

+ +

+
++ + + + + + + + + + + + + + +
+orientation : the scale's orientation (horizontal or vertical) +
+channel : the scale's color channel +
+Returns : a new GimpColorScale widget +
+
+
+
+

+gimp_color_scale_set_channel ()

+
void        gimp_color_scale_set_channel    (GimpColorScale *scale,
+                                             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,
                                              const GimpRGB *rgb,
                                              const GimpHSV *hsv);

-Changes the color value of the scale.

- -

+ + +
scale : a GimpColorScale widget -
rgb : the new color as GimpHSV *hsv); +

+Changes the color value of the scale.

+

+ +

+
++ + + + + + + + + + +
+scale : a GimpColorScale widget +
+rgb : the new color as GimpRGB -
hsv : the new color as +
+hsv : the new color as GimpHSV -
+
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScales.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorScales.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorScales.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorScales.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,14 +1,55 @@ -GimpColorScales

GimpColorScales

GimpColorScales — A GimpColorSelector implementation.

Synopsis

+
+
+
+GimpColorScales
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorScales

+

GimpColorScales — A GimpColorSelector implementation.

+
+
+

Synopsis

+
 
 
 
             GimpColorScales;
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -26,12 +67,37 @@
 >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.8/devel-docs/libgimpwidgets/html/GimpColorSelect.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorSelect.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorSelect.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,14 +1,55 @@ -GimpColorSelect

GimpColorSelect

GimpColorSelect — A GimpColorSelector implementation.

Synopsis

+
+
+
+GimpColorSelect
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorSelect

+

GimpColorSelect — A GimpColorSelector implementation.

+
+
+

Synopsis

+
 
 
 
             GimpColorSelect;
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -26,14 +67,39 @@
 >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.8/devel-docs/libgimpwidgets/html/GimpColorSelection.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorSelection.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorSelection.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorSelection

GimpColorSelection

GimpColorSelection — Widget for doing a color selection.

Synopsis

+
+
+
+GimpColorSelection
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorSelection

+

GimpColorSelection — Widget for doing a color selection.

+
+

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -58,90 +95,321 @@
 href="../gtk/GtkVBox.html"
 >GtkVBox
                                  +----GimpColorSelection
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpColorSelection implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "color-changed"
             void        user_function      (GimpColorSelection *gimpcolorselection,
-                                            gpointer user_data);
-

Description

- -

Details

GimpColorSelection

typedef struct _GimpColorSelection GimpColorSelection;

- -


gimp_color_selection_new ()


+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpColorSelection

+
typedef struct _GimpColorSelection GimpColorSelection;
+

+ +

+
+
+
+

+gimp_color_selection_new ()

+
GtkWidget*  gimp_color_selection_new        (void);

-Creates a new GimpColorSelection widget.

- -

Returns : The new GimpColorSelection widget. -

gimp_color_selection_set_show_alpha ()

void        gimp_color_selection_set_show_alpha
+>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
                                             (GimpColorSelection *selection,
-                                             gboolean show_alpha);

-Sets the show_alpha property of the selection widget.

- -

selection : A GimpColorSelection widget. -
show_alpha : The new show_alpha setting. -

gimp_color_selection_get_show_alpha ()

gboolean    gimp_color_selection_get_show_alpha
-                                            (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,
+                                             gboolean show_alpha);
+

+Sets the show_alpha property of the selection widget.

+

+ +

+
++ + + + + + + + + + +
+selection : A GimpColorSelection widget. +
+show_alpha : The new show_alpha setting. +
+
+
+
+

+gimp_color_selection_get_show_alpha ()

+
gboolean    gimp_color_selection_get_show_alpha
+                                            (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,
                                              const GimpRGB *color);

-Sets the GimpColorSelection's current color to the new color.

- -

selection : A GimpColorSelection widget. -
color : The color to set as current color. -

gimp_color_selection_get_color ()

void        gimp_color_selection_get_color  (GimpColorSelection *selection,
+>GimpRGB *color);
+

+Sets the GimpColorSelection's current color to the new color.

+

+ +

+
++ + + + + + + + + + +
+selection : A GimpColorSelection widget. +
+color : The color to set as current color. +
+
+
+
+

+gimp_color_selection_get_color ()

+
void        gimp_color_selection_get_color  (GimpColorSelection *selection,
                                              GimpRGB *color);

-This function returns the GimpColorSelection's current color.

- -

selection : A GimpColorSelection widget. -
color : Return location for the selection's current color. -

gimp_color_selection_set_old_color ()

void        gimp_color_selection_set_old_color
+>GimpRGB *color);
+

+This function returns the GimpColorSelection's current color.

+

+ +

+
++ + + + + + + + + + +
+selection : A GimpColorSelection widget. +
+color : Return location for the selection's current color. +
+
+
+
+

+gimp_color_selection_set_old_color ()

+
void        gimp_color_selection_set_old_color
                                             (GimpColorSelection *selection,
                                              const GimpRGB *color);

-Sets the GimpColorSelection's old color.

- -

selection : A GimpColorSelection widget. -
color : The color to set as old color. -

gimp_color_selection_get_old_color ()

void        gimp_color_selection_get_old_color
+>GimpRGB *color);
+

+Sets the GimpColorSelection's old color.

+

+ +

+
++ + + + + + + + + + +
+selection : A GimpColorSelection widget. +
+color : The color to set as old color. +
+
+
+
+

+gimp_color_selection_get_old_color ()

+
void        gimp_color_selection_get_old_color
                                             (GimpColorSelection *selection,
                                              GimpRGB *color);

-This function returns the GimpColorSelection's old color.

- -

selection : A GimpColorSelection widget. -
color : Return location for the selection's old color. -

gimp_color_selection_reset ()

void        gimp_color_selection_reset      (GimpColorSelection *selection);

-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
-                                            (GimpColorSelection *selection);

-Emits the "color_changed" signal.

- -

selection : A GimpColorSelection widget. -

Signals

The "color-changed" signal

void        user_function                  (GimpColorSelection *gimpcolorselection,
-                                            gpointer user_data);

- -

gimpcolorselection :the object which received the signal. - -
user_data :user data set when the signal handler was connected.
+>GimpRGB *color); +

+This function returns the GimpColorSelection's old color.

+

+ +

+
++ + + + + + + + + + +
+selection : A GimpColorSelection widget. +
+color : Return location for the selection's old color. +
+
+
+
+

+gimp_color_selection_reset ()

+
void        gimp_color_selection_reset      (GimpColorSelection *selection);
+

+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
+                                            (GimpColorSelection *selection);
+

+Emits the "color_changed" signal.

+

+ +

+
++ + + + +
+selection : A GimpColorSelection widget. +
+
+ +
+

Signals

+
+

+The "color-changed" signal

+
void        user_function                  (GimpColorSelection *gimpcolorselection,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpcolorselection :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelector.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorSelector.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpColorSelector.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpColorSelector

GimpColorSelector

GimpColorSelector — Pluggable GIMP color selector modules.

Synopsis

+
+
+
+GimpColorSelector
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpColorSelector

+

GimpColorSelector — Pluggable GIMP color selector modules.

+
+
+

Synopsis

+
 
 
 
@@ -8,9 +47,7 @@
 enum        GimpColorSelectorChannel;
 GtkWidget*  gimp_color_selector_new         (GType selector_type,
+>GtkWidget*  gimp_color_selector_new         (GType selector_type,
                                              const GimpRGB *rgb,
@@ -20,19 +57,13 @@
                                              GimpColorSelectorChannel channel);
 void        gimp_color_selector_set_toggles_visible
                                             (GimpColorSelector *selector,
-                                             gboolean visible);
+                                             gboolean visible);
 void        gimp_color_selector_set_toggles_sensitive
                                             (GimpColorSelector *selector,
-                                             gboolean sensitive);
+                                             gboolean sensitive);
 void        gimp_color_selector_set_show_alpha
                                             (GimpColorSelector *selector,
-                                             gboolean show_alpha);
+                                             gboolean show_alpha);
 void        gimp_color_selector_set_color   (GimpColorSelector *selector,
                                              const gimp_color_selector_channel_changed
                                             (GimpColorSelector *selector);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -71,41 +104,71 @@
                                        +----GimpColorNotebook
                                        +----GimpColorScales
                                        +----GimpColorSelect
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpColorSelector implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "channel-changed"
             void        user_function      (GimpColorSelector *gimpcolorselector,
-                                            gint arg1,
-                                            gpointer user_data);
+                                            gint arg1,
+                                            gpointer user_data);
 "color-changed"
             void        user_function      (GimpColorSelector *gimpcolorselector,
-                                            gpointer arg1,
-                                            gpointer arg2,
-                                            gpointer user_data);
-

Description

+ gpointer arg1, + gpointer arg2, + gpointer user_data); + +

+
+

Description

+

Functions and definitions for creating pluggable GIMP color selector modules. -

Details

GimpColorSelector

typedef struct _GimpColorSelector GimpColorSelector;

- -


GIMP_COLOR_SELECTOR_SIZE

#define GIMP_COLOR_SELECTOR_SIZE      150
-

+

+
+
+

Details

+
+

+GimpColorSelector

+
typedef struct _GimpColorSelector GimpColorSelector;
+

+ +

+
+
+
+

+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,
@@ -115,132 +178,409 @@
   GIMP_COLOR_SELECTOR_BLUE,
   GIMP_COLOR_SELECTOR_ALPHA
 } GimpColorSelectorChannel;
-

- -

GIMP_COLOR_SELECTOR_HUEthe hue channel -
GIMP_COLOR_SELECTOR_SATURATIONthe saturation channel -
GIMP_COLOR_SELECTOR_VALUEthe value channel -
GIMP_COLOR_SELECTOR_REDthe red channel -
GIMP_COLOR_SELECTOR_GREENthe green channel -
GIMP_COLOR_SELECTOR_BLUEthe blue channel -
GIMP_COLOR_SELECTOR_ALPHAthe alpha channel + +

-


+
+
+

+gimp_color_selector_new ()

+
GtkWidget*  gimp_color_selector_new         (GType selector_type,
+>GtkWidget*  gimp_color_selector_new         (GType selector_type,
                                              const GimpRGB *rgb,
                                              const GimpHSV *hsv,
-                                             GimpColorSelectorChannel channel);

- -

selector_type : -
rgb : -
hsv : -
channel : -
Returns : - + GimpColorSelectorChannel channel); +

-


gimp_color_selector_set_toggles_visible ()

void        gimp_color_selector_set_toggles_visible
+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+selector_type : +
+rgb : +
+hsv : +
+channel : +
+Returns : + + +
+
+
+
+

+gimp_color_selector_set_toggles_visible ()

+
void        gimp_color_selector_set_toggles_visible
                                             (GimpColorSelector *selector,
-                                             gboolean visible);

+ gboolean visible); +

-

selector : -
visible : - - -

gimp_color_selector_set_toggles_sensitive ()

void        gimp_color_selector_set_toggles_sensitive
+

+
++ + + + + + + + + + +
+selector : +
+visible : + + +
+
+
+
+

+gimp_color_selector_set_toggles_sensitive ()

+
void        gimp_color_selector_set_toggles_sensitive
                                             (GimpColorSelector *selector,
-                                             gboolean sensitive);

- -

selector : -
sensitive : + gboolean sensitive); +

- -


gimp_color_selector_set_show_alpha ()

void        gimp_color_selector_set_show_alpha
+

+
++ + + + + + + + + + +
+selector : +
+sensitive : + + +
+
+
+
+

+gimp_color_selector_set_show_alpha ()

+
void        gimp_color_selector_set_show_alpha
                                             (GimpColorSelector *selector,
-                                             gboolean show_alpha);

- -

selector : -
show_alpha : + gboolean show_alpha); +

- -


gimp_color_selector_set_color ()

void        gimp_color_selector_set_color   (GimpColorSelector *selector,
+

+
++ + + + + + + + + + +
+selector : +
+show_alpha : + + +
+
+
+
+

+gimp_color_selector_set_color ()

+
void        gimp_color_selector_set_color   (GimpColorSelector *selector,
                                              const GimpRGB *rgb,
                                              const GimpHSV *hsv);

- -

selector : -
rgb : -
hsv : - - -

gimp_color_selector_set_channel ()

void        gimp_color_selector_set_channel (GimpColorSelector *selector,
-                                             GimpColorSelectorChannel channel);

- -

selector : -
channel : +>GimpHSV *hsv); +

- -


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
-                                            (GimpColorSelector *selector);

- -

selector : - - -

Signals

The "channel-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
-                                            gint arg1,
-                                            gpointer user_data);

- -

gimpcolorselector :the object which received the signal. -
arg1 : - -
user_data :user data set when the signal handler was connected.

The "color-changed" signal

void        user_function                  (GimpColorSelector *gimpcolorselector,
-                                            gpointer arg1,
-                                            gpointer arg2,
-                                            gpointer user_data);

- -

gimpcolorselector :the object which received the signal. -
arg1 : -
arg2 : - -
user_data :user data set when the signal handler was connected.

See Also

-GModule -

-GTypeModule -

+

+
++ + + + + + + + + + + + + + +
+selector : +
+rgb : +
+hsv : + + +
+
+
+
+

+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
+                                            (GimpColorSelector *selector);
+

+ +

+
++ + + + +
+selector : + + +
+
+
+
+

+gimp_color_selector_channel_changed ()

+
void        gimp_color_selector_channel_changed
+                                            (GimpColorSelector *selector);
+

+ +

+
++ + + + +
+selector : + + +
+
+
+
+

Signals

+
+

+The "channel-changed" signal

+
void        user_function                  (GimpColorSelector *gimpcolorselector,
+                                            gint arg1,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + +
+gimpcolorselector :the object which received the signal. +
+arg1 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "color-changed" signal

+
void        user_function                  (GimpColorSelector *gimpcolorselector,
+                                            gpointer arg1,
+                                            gpointer arg2,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+gimpcolorselector :the object which received the signal. +
+arg1 : +
+arg2 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

+GModule +

+

+GTypeModule +

+

libgimp-gimpmodule -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpController.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpController.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpController.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpController.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpController

GimpController

GimpController — Pluggable GIMP input controller modules.

Synopsis

+
+
+
+GimpController
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpController

+

GimpController — Pluggable GIMP input controller modules.

+
+
+

Synopsis

+
 
 
 
@@ -8,164 +47,359 @@
             GimpControllerEventValue;
 union       GimpControllerEvent;
             GimpController;
-GimpController* gimp_controller_new         (GType controller_type);
-gint        gimp_controller_get_n_events    (GimpController *controller);
-const gchar* gimp_controller_get_event_name (GimpController *controller,
-                                             gint event_id);
-const gchar* gimp_controller_get_event_blurb
+GimpController* gimp_controller_new         (GType controller_type);
+gint        gimp_controller_get_n_events    (GimpController *controller);
+const gchar* gimp_controller_get_event_name (GimpController *controller,
+                                             gint event_id);
+const gchar* gimp_controller_get_event_blurb
                                             (GimpController *controller,
-                                             gint event_id);
-gboolean    gimp_controller_event           (GimpController *controller,
+                                             gint event_id);
+gboolean    gimp_controller_event           (GimpController *controller,
                                              const GimpControllerEvent *event);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GimpController
-

Properties

-
-  "name"                 gchararray            : Read / Write / Construct
-  "state"                gchararray            : Read / Write / Construct
-

Signal Prototypes

-
-"event"     gboolean    user_function      (GimpController *gimpcontroller,
-                                            gpointer arg1,
-                                            gpointer user_data);
-

Description

+

+
+
+

Properties

+
+
+  "name"                 gchararray            : Read / Write / Construct
+  "state"                gchararray            : Read / Write / Construct
+
+
+
+

Signal Prototypes

+
+
+"event"     gboolean    user_function      (GimpController *gimpcontroller,
+                                            gpointer arg1,
+                                            gpointer user_data);
+
+
+
+

Description

+

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;
   GValue                   value;
 } GimpControllerEventValue;
-

+ +

-


union GimpControllerEvent

union GimpControllerEvent
+

+
+
+
+

+union GimpControllerEvent

+
union GimpControllerEvent
 {
   GimpControllerEventType    type;
   GimpControllerEventAny     any;
   GimpControllerEventTrigger trigger;
   GimpControllerEventValue   value;
 };
-

- -


GimpController

typedef struct _GimpController GimpController;

- -


gimp_controller_new ()

GimpController* gimp_controller_new         (GType controller_type);

- -

controller_type : -
Returns : - - -

gimp_controller_get_n_events ()

gint        gimp_controller_get_n_events    (GimpController *controller);

- -

controller : -
Returns : - - -

gimp_controller_get_event_name ()

const gchar* gimp_controller_get_event_name (GimpController *controller,
-                                             gint event_id);

- -

controller : -
event_id : -
Returns : - + +

-


gimp_controller_get_event_blurb ()

const gchar* gimp_controller_get_event_blurb
+

+
+
+
+

+GimpController

+
typedef struct _GimpController GimpController;
+

+ +

+
+
+
+

+gimp_controller_new ()

+
GimpController* gimp_controller_new         (GType controller_type);
+

+ +

+
++ + + + + + + + + + +
+controller_type : +
+Returns : + + +
+
+
+
+

+gimp_controller_get_n_events ()

+
gint        gimp_controller_get_n_events    (GimpController *controller);
+

+ +

+
++ + + + + + + + + + +
+controller : +
+Returns : + + +
+
+
+
+

+gimp_controller_get_event_name ()

+
const gchar* gimp_controller_get_event_name (GimpController *controller,
+                                             gint event_id);
+

+ +

+
++ + + + + + + + + + + + + + +
+controller : +
+event_id : +
+Returns : + + +
+
+
+
+

+gimp_controller_get_event_blurb ()

+
const gchar* gimp_controller_get_event_blurb
                                             (GimpController *controller,
-                                             gint event_id);

- -

controller : -
event_id : -
Returns : - - -

gimp_controller_event ()

gboolean    gimp_controller_event           (GimpController *controller,
-                                             const GimpControllerEvent *event);

- -

controller : -
event : -
Returns : - - -

Properties

The "name" property

  "name"                 gchararray            : Read / Write / Construct

Default value: "Unnamed Controller"


The "state" property

  "state"                gchararray            : Read / Write / Construct

Default value: "Unknown"

Signals

The "event" signal

gboolean    user_function                  (GimpController *gimpcontroller,
-                                            gpointer arg1,
-                                            gpointer user_data);

- -

gimpcontroller :the object which received the signal. -
arg1 : -
user_data :user data set when the signal handler was connected.
Returns : + gint event_id); +

-

+

+
++ + + + + + + + + + + + + + +
+controller : +
+event_id : +
+Returns : + + +
+
+
+
+

+gimp_controller_event ()

+
gboolean    gimp_controller_event           (GimpController *controller,
+                                             const GimpControllerEvent *event);
+

+ +

+
++ + + + + + + + + + + + + + +
+controller : +
+event : +
+Returns : + + +
+
+ +
+

Properties

+
+

+The "name" property

+
  "name"                 gchararray            : Read / Write / Construct
+

+

Default value: "Unnamed Controller"

+
+
+
+

+The "state" property

+
  "state"                gchararray            : Read / Write / Construct
+

+

Default value: "Unknown"

+
+
+
+

Signals

+
+

+The "event" signal

+
gboolean    user_function                  (GimpController *gimpcontroller,
+                                            gpointer arg1,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+gimpcontroller :the object which received the signal. +
+arg1 : +
+user_data :user data set when the signal handler was connected.
+Returns : + +
+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpDialog.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpDialog.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpDialog.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpDialog.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,19 +1,54 @@ -GimpDialog
+ +

GimpDialog

GimpDialog — Constructors for + + +GimpDialog + + + + + + + + + + + + + + + + + + + + + + + + +

+
+
+
+

GimpDialog

+

GimpDialog — Constructors for GtkDialog's and action_areas as well as other -dialog-related stuff.

Synopsis

+dialog-related stuff.

+
+
+

Synopsis

+
 
 
 
             GimpDialog;
 GtkWidget*  gimp_dialog_new                 (const gchar *title,
-                                             const gchar *role,
+>GtkWidget*  gimp_dialog_new                 (const gchar *title,
+                                             const gchar *role,
                                              GtkWidget *parent,
@@ -21,18 +56,12 @@
 href="../gtk/GtkDialog.html#GtkDialogFlags"
 >GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
+                                             const gchar *help_id,
                                              ...);
 GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
-                                             const gchar *role,
+>GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
+                                             const gchar *role,
                                              GtkWidget *parent,
@@ -40,24 +69,20 @@
 href="../gtk/GtkDialog.html#GtkDialogFlags"
 >GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
+                                             const gchar *help_id,
                                              va_list args);
 void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
                                              va_list args);
-gint        gimp_dialog_run                 (GimpDialog *dialog);
-void        gimp_dialogs_show_help_button   (gboolean show);
-
-

Object Hierarchy

-
-  GObject
+gint        gimp_dialog_run                 (GimpDialog *dialog);
+void        gimp_dialogs_show_help_button   (gboolean show);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -77,28 +102,46 @@
 href="../gtk/GtkDialog.html"
 >GtkDialog
                                        +----GimpDialog
-

Implemented Interfaces

+ +

+
+

Implemented Interfaces

+

GimpDialog implements - AtkImplementorIface.

Properties

-
-  "help-func"            gpointer              : Read / Write / Construct Only
-  "help-id"              gchararray            : Read / Write / Construct Only
-

Description

- -

Details

GimpDialog

typedef struct _GimpDialog GimpDialog;

- -


gimp_dialog_new ()

GtkWidget*  gimp_dialog_new                 (const gchar *title,
-                                             const gchar *role,
+ AtkImplementorIface.

+
+
+

Properties

+
+
+  "help-func"            gpointer              : Read / Write / Construct Only
+  "help-id"              gchararray            : Read / Write / Construct Only
+
+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpDialog

+
typedef struct _GimpDialog GimpDialog;
+

+ +

+
+
+
+

+gimp_dialog_new ()

+
GtkWidget*  gimp_dialog_new                 (const gchar *title,
+                                             const gchar *role,
                                              GtkWidget *parent,
@@ -106,45 +149,94 @@
 href="../gtk/GtkDialog.html#GtkDialogFlags"
 >GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             ...);

+ const gchar *help_id, + ...); +

Creates a new GimpDialog widget. -

+

+

This function simply packs the action_area arguments passed in "..." into a va_list variable and passes everything to gimp_dialog_new_valist(). -

+

+

For a description of the format of the va_list describing the action_area buttons see gtk_dialog_new_with_buttons().

+>gtk_dialog_new_with_buttons().

+

-

+ + + + + +
title : The dialog's title which will be set with +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : The dialog's title which will be set with gtk_window_set_title(). -
role : The dialog's role which will be set with +
+role : The dialog's role which will be set with gtk_window_set_role(). -
parent : The parent widget of this dialog. -
flags : The flags (see the +
+parent : The parent widget of this dialog. +
+flags : The flags (see the GtkDialog documentation). -
help_func : The function which will be called if the user presses "F1". -
help_id : The help_id which will be passed to help_func. -
... : A NULL-terminated va_list destribing the +
+help_func : The function which will be called if the user presses "F1". +
+help_id : The help_id which will be passed to help_func. +
+... : A NULL-terminated va_list destribing the action_area buttons. -
Returns : A GimpDialog. -

gimp_dialog_new_valist ()


+
+Returns : A GimpDialog. +
+
+
+
+

+gimp_dialog_new_valist ()

+
GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
-                                             const gchar *role,
+>GtkWidget*  gimp_dialog_new_valist          (const gchar *title,
+                                             const gchar *role,
                                              GtkWidget *parent,
@@ -152,64 +244,189 @@
 href="../gtk/GtkDialog.html#GtkDialogFlags"
 >GtkDialogFlags flags,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             va_list args);

+ const gchar *help_id, + va_list args); +

Creates a new GimpDialog widget. If a GtkWindow is specified as parent then the dialog will be made transient for this window. -

+

+

For a description of the format of the va_list describing the action_area buttons see gtk_dialog_new_with_buttons().

+>gtk_dialog_new_with_buttons().

+

-

+ + + + + + + + + + + + + + + + + + +
title : The dialog's title which will be set with +

+
++ + + + + + + + + + + + + + +
+title : The dialog's title which will be set with gtk_window_set_title(). -
role : The dialog's role which will be set with +
+role : The dialog's role which will be set with gtk_window_set_role(). -
parent : The parent widget of this dialog or NULL. -
flags : The flags (see the +
+parent : The parent widget of this dialog or NULL. +
+flags : The flags (see the GtkDialog documentation). -
help_func : The function which will be called if the user presses "F1". -
help_id : The help_id which will be passed to help_func. -
args : A va_list destribing the action_area buttons. -
Returns : A GimpDialog. -

gimp_dialog_add_buttons_valist ()

void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
-                                             va_list args);

+

+help_func : The function which will be called if the user presses "F1". +
+help_id : The help_id which will be passed to help_func. +
+args : A va_list destribing the action_area buttons. +
+Returns : A GimpDialog. +
+
+
+
+

+gimp_dialog_add_buttons_valist ()

+
void        gimp_dialog_add_buttons_valist  (GimpDialog *dialog,
+                                             va_list args);
+

This function is essentially the same as gtk_dialog_add_buttons() -except it takes a va_list instead of '...'

+except it takes a va_list instead of '...'

+

-

dialog : The dialog to add buttons to. -
args : The buttons as va_list. -

gimp_dialog_run ()

gint        gimp_dialog_run                 (GimpDialog *dialog);

+

+
++ + + + + + + + + + +
+dialog : The dialog to add buttons to. +
+args : The buttons as va_list. +
+
+
+
+

+gimp_dialog_run ()

+
gint        gimp_dialog_run                 (GimpDialog *dialog);
+

This function does exactly the same as gtk_dialog_run() except it -does not make the dialog modal while the GMainLoop is running.

- -

dialog : a GimpDialog -
Returns : response ID -

gimp_dialogs_show_help_button ()

void        gimp_dialogs_show_help_button   (gboolean show);

-This function is for internal use only.

- -

show : whether a help button should be added when creating a GimpDialog -

Since GIMP 2.2 -

Properties

The "help-func" property

  "help-func"            gpointer              : Read / Write / Construct Only


The "help-id" property

  "help-id"              gchararray            : Read / Write / Construct Only

Default value: NULL

+does not make the dialog modal while the GMainLoop is running.

+

+ +

+
++ + + + + + + + + + +
+dialog : a GimpDialog +
+Returns : response ID +
+
+
+
+

+gimp_dialogs_show_help_button ()

+
void        gimp_dialogs_show_help_button   (gboolean show);
+

+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"            gpointer              : Read / Write / Construct Only
+

+
+
+
+

+The "help-id" property

+
  "help-id"              gchararray            : Read / Write / Construct Only
+

+

Default value: NULL

+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFileEntry.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpFileEntry.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpFileEntry.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,35 +1,64 @@ -GimpFileEntry

GimpFileEntry

GimpFileEntry — Widget for entering a filename.

Synopsis

+
+
+
+GimpFileEntry
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpFileEntry

+

GimpFileEntry — Widget for entering a filename.

+
+
+

Synopsis

+
 
 
 
             GimpFileEntry;
 GtkWidget*  gimp_file_entry_new             (const gchar *title,
-                                             const gchar *filename,
-                                             gboolean dir_only,
-                                             gboolean check_valid);
-gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);
+>GtkWidget*  gimp_file_entry_new             (const gchar *title,
+                                             const gchar *filename,
+                                             gboolean dir_only,
+                                             gboolean check_valid);
+gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);
 void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
-                                             const gchar *filename);
-
-

Object Hierarchy

-
-  GObject
+                                             const gchar *filename);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -46,85 +75,206 @@
 href="../gtk/GtkHBox.html"
 >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

+ gpointer user_data); + +

+
+

Description

+

This widget is used to enter filenames or directories. -

+

+

There is a GtkEntry for entering the filename manually and a "..." button which will pop up a GtkFileSelection dialog. -

+

+

You can restrict the GimpFileSelection to directories. In this case the filename listbox of the GtkFileSelection dialog will be hidden. -

+

+

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;

- -


gimp_file_entry_new ()


+
+
+

Details

+
+

+GimpFileEntry

+
typedef struct _GimpFileEntry GimpFileEntry;
+

+ +

+
+
+
+

+gimp_file_entry_new ()

+
GtkWidget*  gimp_file_entry_new             (const gchar *title,
-                                             const gchar *filename,
-                                             gboolean dir_only,
-                                             gboolean check_valid);

-Creates a new GimpFileEntry widget.

- -

+ + + + + + +
title : The title of the GtkFileEntry dialog. -
filename : The initial filename. -
dir_only : TRUE if the file entry should accept directories only. -
check_valid : TRUE if the widget should check if the entered file +>GtkWidget* gimp_file_entry_new (const gchar *title, + const gchar *filename, + gboolean dir_only, + gboolean check_valid); +

+Creates a new GimpFileEntry widget.

+

+ +

+
++ + + + + + + + + + + + + + + +
+title : The title of the GtkFileEntry dialog. +
+filename : The initial filename. +
+dir_only : TRUE if the file entry should accept directories only. +
+check_valid : TRUE if the widget should check if the entered file really exists. -
Returns : A pointer to the new GimpFileEntry widget. -

gimp_file_entry_get_filename ()

gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);

-Note that you have to g_free() the returned string.

- -

entry : The file entry you want to know the filename from. -
Returns : The file or directory the user has entered. -

gimp_file_entry_set_filename ()

void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
-                                             const gchar *filename);

+

+Returns : A pointer to the new GimpFileEntry widget. +
+
+
+
+

+gimp_file_entry_get_filename ()

+
gchar*      gimp_file_entry_get_filename    (GimpFileEntry *entry);
+

+Note that you have to g_free() the returned string.

+

+ +

+
++ + + + + + + + + + +
+entry : The file entry you want to know the filename from. +
+Returns : The file or directory the user has entered. +
+
+
+
+

+gimp_file_entry_set_filename ()

+
void        gimp_file_entry_set_filename    (GimpFileEntry *entry,
+                                             const gchar *filename);
+

If you specified check_valid as TRUE in gimp_file_entry_new() the GimpFileEntry will immediately check the validity of the file -name.

- -

entry : The file entry you want to set the filename for. -
filename : The new filename. -

Signals

The "filename-changed" signal

void        user_function                  (GimpFileEntry *arg0,
-                                            gpointer user_data);

-This signal is emitted whenever the user changes the filename.

+name.

+

-

user_data :user data set when the signal handler was connected.

See Also

+

+
++ + + + + + + + + + +
+entry : The file entry you want to set the filename for. +
+filename : The new filename. +
+
+
+
+

Signals

+
+

+The "filename-changed" signal

+
void        user_function                  (GimpFileEntry *arg0,
+                                            gpointer user_data);
+

+This signal is emitted whenever the user changes the filename.

+

+ +

+
++ + + + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

GimpPathEditor -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFrame.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpFrame.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpFrame.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,21 +1,60 @@ -GimpFrame
+ +

GimpFrame

GimpFrame — A widget providing a HIG-compliant subclass of + + +GimpFrame + + + + + + + + + + + + + + + + + + + + + + + + +

+
+
+
+

GimpFrame

+

GimpFrame — A widget providing a HIG-compliant subclass of GtkFrame.

Synopsis

+>GtkFrame.

+
+
+

Synopsis

+
 
 
 
             GimpFrame;
 GtkWidget*  gimp_frame_new                  (const gchar *label);
-
-

Object Hierarchy

-
-  GObject
+>GtkWidget*  gimp_frame_new                  (const gchar *label);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -32,41 +71,103 @@
 href="../gtk/GtkFrame.html"
 >GtkFrame
                                  +----GimpFrame
-

Implemented Interfaces

+ +

+
+

Implemented Interfaces

+

GimpFrame implements - AtkImplementorIface.

Style Properties

-
-  "label-bold"           gboolean              : Read
-  "label-spacing"        gint                  : Read
-

Description

+ AtkImplementorIface.

+
+
+

Style Properties

+
+
+  "label-bold"           gboolean              : Read
+  "label-spacing"        gint                  : Read
+
+
+
+

Description

+

A widget providing a HIG-compliant subclass of GtkFrame. -

Details

GimpFrame

typedef struct _GimpFrame GimpFrame;

- -


gimp_frame_new ()


+
+
+

Details

+
+

+GimpFrame

+
typedef struct _GimpFrame GimpFrame;
+

+ +

+
+
+
+

+gimp_frame_new ()

+
GtkWidget*  gimp_frame_new                  (const gchar *label);

+>GtkWidget* gimp_frame_new (const gchar *label); +

Creates a GimpFrame widget. A GimpFrame is a HIG-compliant variant of GtkFrame. It doesn't render a frame at all but otherwise behaves like a frame. The frame's title is rendered in bold and the frame content is indented four spaces as suggested by -the GNOME HIG (see http://developer.gnome.org/projects/gup/hig/).

- -

label : text to set as the frame's title label (or NULL for no title) -
Returns : a new GimpFrame widget +the GNOME HIG (see http://developer.gnome.org/projects/gup/hig/).

+

-

Since GIMP 2.2 -

Style Properties

The "label-bold" style property

  "label-bold"           gboolean              : Read

Default value: TRUE


The "label-spacing" style property

  "label-spacing"        gint                  : Read

Allowed values: >= 0

Default value: 6

+

+
++ + + + + + + + + + +
+label : text to set as the frame's title label (or NULL for no title) +
+Returns : a new GimpFrame widget + +
+

Since GIMP 2.2 +

+
+ +
+

Style Properties

+
+

+The "label-bold" style property

+
  "label-bold"           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.8/devel-docs/libgimpwidgets/html/GimpIntComboBox.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpIntComboBox.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpIntComboBox.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,68 +1,81 @@ -GimpIntComboBox

GimpIntComboBox

GimpIntComboBox — A widget providing a popup menu of integer values (e.g. enums).

Synopsis

+
+
+
+GimpIntComboBox
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpIntComboBox

+

GimpIntComboBox — A widget providing a popup menu of integer values (e.g. enums).

+
+
+

Synopsis

+
 
 
 
             GimpIntComboBox;
 GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
-                                             gint first_value,
+>GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
+                                             gint first_value,
                                              ...);
 GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
-                                             gint first_value,
+>GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
+                                             gint first_value,
                                              va_list values);
 GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
-                                             const gchar *labels[]);
+>GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
+                                             const gchar *labels[]);
 void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
                                              ...);
 void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
                                              ...);
-gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
-                                             gint value);
-gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
-                                             gint *value);
-gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
-                                             gint value,
-                                             GCallback callback,
-                                             gpointer data);
-
-

Object Hierarchy

-
-  GObject
+gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
+                                             gint value);
+gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
+                                             gint *value);
+gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
+                                             gint value,
+                                             GCallback callback,
+                                             gpointer data);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -79,155 +92,393 @@
 href="../gtk/GtkComboBox.html"
 >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;

- -


gimp_int_combo_box_new ()


+
+
+

Details

+
+

+GimpIntComboBox

+
typedef struct _GimpIntComboBox GimpIntComboBox;
+

+ +

+
+
+
+

+gimp_int_combo_box_new ()

+
GtkWidget*  gimp_int_combo_box_new          (const gchar *first_label,
-                                             gint first_value,
-                                             ...);

+>GtkWidget* gimp_int_combo_box_new (const gchar *first_label, + gint first_value, + ...); +

Creates a GtkComboBox that has integer values associated with each item. The items to fill the combo box with are specified as a NULL -terminated list of label/value pairs.

+terminated list of label/value pairs.

+

-

first_label : the label of the first item -
first_value : the value of the first item -
... : a NULL terminated list of more label, value pairs -
Returns : a new GimpIntComboBox. - -

Since GIMP 2.2 -


gimp_int_combo_box_new_valist ()

GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
-                                             gint first_value,
-                                             va_list values);

+

+
++ + + + + + + + + + + + + + + + + + +
+first_label : the label of the first item +
+first_value : the value of the first item +
+... : a NULL terminated list of more label, value pairs +
+Returns : a new GimpIntComboBox. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_new_valist ()

+
GtkWidget*  gimp_int_combo_box_new_valist   (const gchar *first_label,
+                                             gint first_value,
+                                             va_list values);
+

A variant of gimp_int_combo_box_new() that takes a va_list of -label/value pairs. Probably only useful for language bindings.

+label/value pairs. Probably only useful for language bindings.

+

-

first_label : the label of the first item -
first_value : the value of the first item -
values : a va_list with more values -
Returns : a new GimpIntComboBox. - -

Since GIMP 2.2 -


gimp_int_combo_box_new_array ()

GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
-                                             const gchar *labels[]);

+

+
++ + + + + + + + + + + + + + + + + + +
+first_label : the label of the first item +
+first_value : the value of the first item +
+values : a va_list with more values +
+Returns : a new GimpIntComboBox. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_new_array ()

+
GtkWidget*  gimp_int_combo_box_new_array    (gint n_values,
+                                             const gchar *labels[]);
+

A variant of gimp_int_combo_box_new() that takes an array of labels. -The array indices are used as values.

+The array indices are used as values.

+

-

n_values : the number of values -
labels : an array of labels (array length must be n_values) -
Returns : a new GimpIntComboBox. - -

Since GIMP 2.2 -


gimp_int_combo_box_prepend ()

void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
-                                             ...);

+

+
++ + + + + + + + + + + + + + +
+n_values : the number of values +
+labels : an array of labels (array length must be n_values) +
+Returns : a new GimpIntComboBox. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_prepend ()

+
void        gimp_int_combo_box_prepend      (GimpIntComboBox *combo_box,
+                                             ...);
+

This function provides a convenient way to prepend items to a GimpIntComboBox. It prepends a row to the combo_box's list store and calls gtk_list_store_set() for you. -

-The column number must be taken from the enum GimpIntStoreColumns.

- -

combo_box : a GimpIntComboBox -
... : pairs of column number and value, terminated with -1 -

Since GIMP 2.2 -


gimp_int_combo_box_append ()

void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
-                                             ...);

+

+

+The column number must be taken from the enum GimpIntStoreColumns.

+

+ +

+
++ + + + + + + + + + +
+combo_box : a GimpIntComboBox +
+... : pairs of column number and value, terminated with -1 +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_append ()

+
void        gimp_int_combo_box_append       (GimpIntComboBox *combo_box,
+                                             ...);
+

This function provides a convenient way to append items to a GimpIntComboBox. It appends a row to the combo_box's list store and calls gtk_list_store_set() for you. -

-The column number must be taken from the enum GimpIntStoreColumns.

- -

combo_box : a GimpIntComboBox -
... : pairs of column number and value, terminated with -1 -

Since GIMP 2.2 -


gimp_int_combo_box_set_active ()

gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
-                                             gint value);

+

+

+The column number must be taken from the enum GimpIntStoreColumns.

+

+ +

+
++ + + + + + + + + + +
+combo_box : a GimpIntComboBox +
+... : pairs of column number and value, terminated with -1 +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_set_active ()

+
gboolean    gimp_int_combo_box_set_active   (GimpIntComboBox *combo_box,
+                                             gint value);
+

Looks up the item that belongs to the given value and makes it the -selected item in the combo_box.

+selected item in the combo_box.

+

-

+ + +
combo_box : a GimpIntComboBox -
value : an integer value -
Returns : TRUE on success or FALSE if there was no item for +

+
++ + + + + + + + + + + +
+combo_box : a GimpIntComboBox +
+value : an integer value +
+Returns : TRUE on success or FALSE if there was no item for this value. -

Since GIMP 2.2 -


gimp_int_combo_box_get_active ()

gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
-                                             gint *value);

-Retrieves the value of the selected (active) item in the combo_box.

- -

+ + +
combo_box : a GimpIntComboBox -
value : return location for the integer value -
Returns : TRUE if value has been set or FALSE if no item was +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_get_active ()

+
gboolean    gimp_int_combo_box_get_active   (GimpIntComboBox *combo_box,
+                                             gint *value);
+

+Retrieves the value of the selected (active) item in the combo_box.

+

+ +

+
++ + + + + + + + + + + +
+combo_box : a GimpIntComboBox +
+value : return location for the integer value +
+Returns : TRUE if value has been set or FALSE if no item was active. -

Since GIMP 2.2 -


gimp_int_combo_box_connect ()

gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
-                                             gint value,
-                                             GCallback callback,
-                                             gpointer data);

+

+

Since GIMP 2.2 +

+
+
+
+

+gimp_int_combo_box_connect ()

+
gulong      gimp_int_combo_box_connect      (GimpIntComboBox *combo_box,
+                                             gint value,
+                                             GCallback callback,
+                                             gpointer data);
+

A convenience function that sets the inital value of a GimpIntComboBox and connects callback to the "changed" signal. -

+

+

This function also calls the callback once after setting the initial value. This is often convenient when working with combo boxes that select a default active item (like for example gimp_drawable_combo_box_new). If you pass an invalid initial -value, the callback will be called with the default item active.

- -

combo_box : a GimpIntComboBox -
value : the value to set -
callback : a callback to connect to the combo_box's "changed" signal -
data : a pointer passed as data to g_signal_connect() -
Returns : the signal handler ID as returned by g_signal_connect() +value, the callback will be called with the default item active.

+

-

Since GIMP 2.2 -

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+combo_box : a GimpIntComboBox +
+value : the value to set +
+callback : a callback to connect to the combo_box's "changed" signal +
+data : a pointer passed as data to g_signal_connect() +
+Returns : the signal handler ID as returned by g_signal_connect() + +
+

Since GIMP 2.2 +

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntStore.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpIntStore.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpIntStore.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpIntStore.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpIntStore

GimpIntStore

GimpIntStore — A model for integer based name-value pairs (e.g. enums)

Synopsis

+
+
+
+GimpIntStore
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpIntStore

+

GimpIntStore — A model for integer based name-value pairs (e.g. enums)

+
+
+

Synopsis

+
 
 
 
@@ -7,28 +46,30 @@
 GtkListStore* gimp_int_store_new            (void);
-gboolean    gimp_int_store_lookup_by_value  (gimp_int_store_lookup_by_value  (GtkTreeModel *model,
-                                             gint value,
+                                             gint value,
                                              GtkTreeIter *iter);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----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;

- -


enum GimpIntStoreColumns

typedef enum
+

+
+
+

Details

+
+

+GimpIntStore

+
typedef struct _GimpIntStore GimpIntStore;
+

+ +

+
+
+
+

+enum GimpIntStoreColumns

+
typedef enum
 {
   GIMP_INT_STORE_VALUE,
   GIMP_INT_STORE_LABEL,
@@ -51,38 +110,95 @@
   GIMP_INT_STORE_USER_DATA,
   GIMP_INT_STORE_NUM_COLUMNS
 } GimpIntStoreColumns;
-

+ +

-


gimp_int_store_new ()


+
+
+
+

+gimp_int_store_new ()

+
GtkListStore* gimp_int_store_new            (void);

+>GtkListStore* gimp_int_store_new (void); +

Creates a GtkListStore with a number of useful columns. GimpIntStore is especially useful if the items you want to store -are identified using an integer value.

+are identified using an integer value.

+

-

Returns : a new GimpIntStore. - -

Since GIMP 2.2 -


+
+
+

+gimp_int_store_lookup_by_value ()

+
gboolean    gimp_int_store_lookup_by_value  (GtkTreeModel *model,
-                                             gint value,
+                                             gint value,
                                              GtkTreeIter *iter);

-Iterate over the model looking for value.

- -

+ + +
model : a GimpIntStore -
value : an integer value to lookup in the model -
iter : return location for the iter of the given value -
Returns : TRUE if the value has been located and iter is +>GtkTreeIter *iter); +

+Iterate over the model looking for value.

+

+ +

+
++ + + + + + + + + + + + + + + +
+model : a GimpIntStore +
+value : an integer value to lookup in the model +
+iter : return location for the iter of the given value +
+Returns : TRUE if the value has been located and iter is valid, FALSE otherwise. -

Since GIMP 2.2 -

+
+

Since GIMP 2.2 +

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpMemsizeEntry.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,32 +1,63 @@ -GimpMemsizeEntry

GimpMemsizeEntry

GimpMemsizeEntry — A composite widget that allows to enter a memory size.

Synopsis

+
+
+
+GimpMemsizeEntry
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpMemsizeEntry

+

GimpMemsizeEntry — A composite widget that allows to enter a memory size.

+
+
+

Synopsis

+
 
 
 
             GimpMemsizeEntry;
 GtkWidget*  gimp_memsize_entry_new          (guint64 value,
-                                             guint64 lower,
-                                             guint64 upper);
+>GtkWidget*  gimp_memsize_entry_new          (guint64 value,
+                                             guint64 lower,
+                                             guint64 upper);
 void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
-                                             guint64 value);
-guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);
+                                             guint64 value);
+guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -43,32 +74,51 @@
 href="../gtk/GtkHBox.html"
 >GtkHBox
                                  +----GimpMemsizeEntry
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpMemsizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "value-changed"
             void        user_function      (GimpMemsizeEntry *gimpmemsizeentry,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

Similar to a GimpSizeEntry but instead of lengths, this widget is used to let the user enter memory sizes. An option menu allows to switch between Kilobytes, Megabytes and Gigabytes. Used in the GIMP preferences dialog. -

Details

GimpMemsizeEntry

typedef struct _GimpMemsizeEntry GimpMemsizeEntry;

+

+
+
+

Details

+
+

+GimpMemsizeEntry

+
typedef struct _GimpMemsizeEntry GimpMemsizeEntry;
+

The GimpSizeEntry struct is considered private. -


gimp_memsize_entry_new ()


+
+
+
+

+gimp_memsize_entry_new ()

+
GtkWidget*  gimp_memsize_entry_new          (guint64 value,
-                                             guint64 lower,
-                                             guint64 upper);

+>GtkWidget* gimp_memsize_entry_new (guint64 value, + guint64 lower, + guint64 upper); +

Creates a new GimpMemsizeEntry which is a GtkHBox with a GtkSpinButton and a GtkOptionMenu all setup to allow the user to enter memory sizes.

+>GtkOptionMenu all setup to allow the user to enter memory sizes.

+

-

value : the initial value (in Bytes) -
lower : the lower limit for the value (in Bytes) -
upper : the upper limit for the value (in Bytes) -
Returns : Pointer to the new GimpMemsizeEntry. -

gimp_memsize_entry_set_value ()

void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
-                                             guint64 value);

+

+
++ + + + + + + + + + + + + + + + + + +
+value : the initial value (in Bytes) +
+lower : the lower limit for the value (in Bytes) +
+upper : the upper limit for the value (in Bytes) +
+Returns : Pointer to the new GimpMemsizeEntry. +
+
+
+
+

+gimp_memsize_entry_set_value ()

+
void        gimp_memsize_entry_set_value    (GimpMemsizeEntry *entry,
+                                             guint64 value);
+

Sets the entry's value. Please note that the GimpMemsizeEntry rounds -the value to full Kilobytes.

- -

entry : a GimpMemsizeEntry -
value : the new value (in Bytes) -

gimp_memsize_entry_get_value ()

guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);

-Retrieves the current value from a GimpMemsizeEntry.

- -

entry : a GimpMemsizeEntry -
Returns : the current value of entry (in Bytes). -

Signals

The "value-changed" signal

void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
-                                            gpointer user_data);

- -

gimpmemsizeentry :the object which received the signal. +the value to full Kilobytes.

+

-

user_data :user data set when the signal handler was connected.
+

+
++ + + + + + + + + + +
+entry : a GimpMemsizeEntry +
+value : the new value (in Bytes) +
+
+
+
+

+gimp_memsize_entry_get_value ()

+
guint64     gimp_memsize_entry_get_value    (GimpMemsizeEntry *entry);
+

+Retrieves the current value from a GimpMemsizeEntry.

+

+ +

+
++ + + + + + + + + + +
+entry : a GimpMemsizeEntry +
+Returns : the current value of entry (in Bytes). +
+
+
+
+

Signals

+
+

+The "value-changed" signal

+
void        user_function                  (GimpMemsizeEntry *gimpmemsizeentry,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpmemsizeentry :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpOffsetArea.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpOffsetArea.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpOffsetArea.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,40 +1,69 @@ -GimpOffsetArea

GimpOffsetArea

GimpOffsetArea — Widget to control image offsets.

Synopsis

+
+
+
+GimpOffsetArea
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpOffsetArea

+

GimpOffsetArea — Widget to control image offsets.

+
+
+

Synopsis

+
 
 
 
             GimpOffsetArea;
 GtkWidget*  gimp_offset_area_new            (gint orig_width,
-                                             gint orig_height);
+>GtkWidget*  gimp_offset_area_new            (gint orig_width,
+                                             gint orig_height);
 void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
-                                             gint width,
-                                             gint height);
+                                             gint width,
+                                             gint height);
 void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
-                                             gint offset_x,
-                                             gint offset_y);
+                                             gint offset_x,
+                                             gint offset_y);
 void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
                                              GdkPixbuf *pixbuf);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -45,92 +74,239 @@
 href="../gtk/GtkDrawingArea.html"
 >GtkDrawingArea
                      +----GimpOffsetArea
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpOffsetArea implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "offsets-changed"
             void        user_function      (GimpOffsetArea *gimpoffsetarea,
-                                            gint arg1,
-                                            gint arg2,
-                                            gpointer user_data);
-

Description

- -

Details

GimpOffsetArea

typedef struct _GimpOffsetArea GimpOffsetArea;

- -


gimp_offset_area_new ()


+
+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpOffsetArea

+
typedef struct _GimpOffsetArea GimpOffsetArea;
+

+ +

+
+
+
+

+gimp_offset_area_new ()

+
GtkWidget*  gimp_offset_area_new            (gint orig_width,
-                                             gint orig_height);

+>GtkWidget* gimp_offset_area_new (gint orig_width, + gint orig_height); +

Creates a new GimpOffsetArea widget. A GimpOffsetArea can be used when resizing an image or a drawable to allow the user to interactively -specify the new offsets.

+specify the new offsets.

+

-

orig_width : the original width -
orig_height : the original height -
Returns : the new GimpOffsetArea widget. -

gimp_offset_area_set_size ()

void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
-                                             gint width,
-                                             gint height);

+

+
++ + + + + + + + + + + + + + +
+orig_width : the original width +
+orig_height : the original height +
+Returns : the new GimpOffsetArea widget. +
+
+
+
+

+gimp_offset_area_set_size ()

+
void        gimp_offset_area_set_size       (GimpOffsetArea *offset_area,
+                                             gint width,
+                                             gint height);
+

Sets the size of the image/drawable displayed by the GimpOffsetArea. If the offsets change as a result of this change, the offsets_changed -signal is emitted.

+signal is emitted.

+

-

offset_area : a GimpOffsetArea. -
width : the new width -
height : the new height -

gimp_offset_area_set_offsets ()

void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
-                                             gint offset_x,
-                                             gint offset_y);

+

+
++ + + + + + + + + + + + + + +
+offset_area : a GimpOffsetArea. +
+width : the new width +
+height : the new height +
+
+
+
+

+gimp_offset_area_set_offsets ()

+
void        gimp_offset_area_set_offsets    (GimpOffsetArea *offset_area,
+                                             gint offset_x,
+                                             gint offset_y);
+

Sets the offsets of the image/drawable displayed by the GimpOffsetArea. -It does not emit the offsets_changed signal.

+It does not emit the offsets_changed signal.

+

-

offset_area : a GimpOffsetArea. -
offset_x : the X offset -
offset_y : the Y offset -

gimp_offset_area_set_pixbuf ()

void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
+

+
++ + + + + + + + + + + + + + +
+offset_area : a GimpOffsetArea. +
+offset_x : the X offset +
+offset_y : the Y offset +
+
+
+
+

+gimp_offset_area_set_pixbuf ()

+
void        gimp_offset_area_set_pixbuf     (GimpOffsetArea *offset_area,
                                              GdkPixbuf *pixbuf);

+>GdkPixbuf *pixbuf); +

Sets the pixbuf which represents the original image/drawable which -is being offset.

+is being offset.

+

-

+ + +
offset_area : a GimpOffsetArea. -
pixbuf : a +
++ + + + + + + +
+offset_area : a GimpOffsetArea. +
+pixbuf : a GdkPixbuf. -

Since GIMP 2.2 -

Signals

The "offsets-changed" signal

void        user_function                  (GimpOffsetArea *gimpoffsetarea,
-                                            gint arg1,
-                                            gint arg2,
-                                            gpointer user_data);

- -

gimpoffsetarea :the object which received the signal. -
arg1 : -
arg2 : - -
user_data :user data set when the signal handler was connected.
+
+

Since GIMP 2.2 +

+
+
+
+

Signals

+
+

+The "offsets-changed" signal

+
void        user_function                  (GimpOffsetArea *gimpoffsetarea,
+                                            gint arg1,
+                                            gint arg2,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + + + + + + + + + +
+gimpoffsetarea :the object which received the signal. +
+arg1 : +
+arg2 : + +
+user_data :user data set when the signal handler was connected.
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPathEditor.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPathEditor.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPathEditor.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,53 +1,74 @@ -GimpPathEditor

GimpPathEditor

GimpPathEditor — Widget for editing a file search path.

Synopsis

+
+
+
+GimpPathEditor
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpPathEditor

+

GimpPathEditor — Widget for editing a file search path.

+
+
+

Synopsis

+
 
 
 
             GimpPathEditor;
 GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
-                                             const gchar *path);
-gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);
+>GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
+                                             const gchar *path);
+gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);
 void        gimp_path_editor_set_path       (GimpPathEditor *editor,
-                                             const gchar *path);
-gchar*      gimp_path_editor_get_writable_path
+                                             const gchar *path);
+gchar*      gimp_path_editor_get_writable_path
                                             (GimpPathEditor *editor);
 void        gimp_path_editor_set_writable_path
                                             (GimpPathEditor *editor,
-                                             const gchar *path);
-gboolean    gimp_path_editor_get_dir_writable
+                                             const gchar *path);
+gboolean    gimp_path_editor_get_dir_writable
                                             (GimpPathEditor *editor,
-                                             const gchar *directory);
+                                             const gchar *directory);
 void        gimp_path_editor_set_dir_writable
                                             (GimpPathEditor *editor,
-                                             const gchar *directory,
-                                             gboolean writable);
-
-

Object Hierarchy

-
-  GObject
+                                             const gchar *directory,
+                                             gboolean writable);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -64,137 +85,352 @@
 href="../gtk/GtkVBox.html"
 >GtkVBox
                                  +----GimpPathEditor
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpPathEditor implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "path-changed"
             void        user_function      (GimpPathEditor *arg0,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "writable-changed"
             void        user_function      (GimpPathEditor *arg0,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

This widget is used to edit file search paths. -

+

+

It shows a list of all directories which are in the search path. You can click a directory to select it. The widget provides a GimpFileEntry to change the currently selected directory. -

+

+

There are buttons to add or delete directories as well as "up" and "down" buttons to change the order in which the directories will be searched. -

+

+

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;

- -


gimp_path_editor_new ()


+
+
+

Details

+
+

+GimpPathEditor

+
typedef struct _GimpPathEditor GimpPathEditor;
+

+ +

+
+
+
+

+gimp_path_editor_new ()

+
GtkWidget*  gimp_path_editor_new            (const gchar *filesel_title,
-                                             const gchar *path);

+>GtkWidget* gimp_path_editor_new (const gchar *filesel_title, + const gchar *path); +

Creates a new GimpPathEditor widget. -

+

+

The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character.

+G_SEARCHPATH_SEPARATOR character.

+

-

+
+
+
+

+gimp_path_editor_get_path ()

+
gchar*      gimp_path_editor_get_path       (GimpPathEditor *editor);
+

The elements of the returned search path string are separated with the G_SEARCHPATH_SEPARATOR character. -

-Note that you have to g_free() the returned string.

- -

editor : The path editor you want to get the search path from. -
Returns : The search path the user has selected in the path editor. -

gimp_path_editor_set_path ()

void        gimp_path_editor_set_path       (GimpPathEditor *editor,
-                                             const gchar *path);

+

+

+Note that you have to g_free() the returned string.

+

+ +

+
++ + + + + + + + + + +
+editor : The path editor you want to get the search path from. +
+Returns : The search path the user has selected in the path editor. +
+
+
+
+

+gimp_path_editor_set_path ()

+
void        gimp_path_editor_set_path       (GimpPathEditor *editor,
+                                             const gchar *path);
+

The elements of the initial search path must be separated with the -G_SEARCHPATH_SEPARATOR character.

- -

editor : The path editor you want to set the search path from. -
path : The new path to set. -

gimp_path_editor_get_writable_path ()

gchar*      gimp_path_editor_get_writable_path
-                                            (GimpPathEditor *editor);

- -

editor : -
Returns : +G_SEARCHPATH_SEPARATOR character.

+

- -


gimp_path_editor_set_writable_path ()

void        gimp_path_editor_set_writable_path
+

+
++ + + + + + + + + + +
+editor : The path editor you want to set the search path from. +
+path : The new path to set. +
+
+
+
+

+gimp_path_editor_get_writable_path ()

+
gchar*      gimp_path_editor_get_writable_path
+                                            (GimpPathEditor *editor);
+

+ +

+
++ + + + + + + + + + +
+editor : +
+Returns : + + +
+
+
+
+

+gimp_path_editor_set_writable_path ()

+
void        gimp_path_editor_set_writable_path
                                             (GimpPathEditor *editor,
-                                             const gchar *path);

- -

editor : -
path : + const gchar *path); +

- -


gimp_path_editor_get_dir_writable ()

gboolean    gimp_path_editor_get_dir_writable
+

+
++ + + + + + + + + + +
+editor : +
+path : + + +
+
+
+
+

+gimp_path_editor_get_dir_writable ()

+
gboolean    gimp_path_editor_get_dir_writable
                                             (GimpPathEditor *editor,
-                                             const gchar *directory);

- -

editor : -
directory : -
Returns : + const gchar *directory); +

- -


gimp_path_editor_set_dir_writable ()

void        gimp_path_editor_set_dir_writable
+

+
++ + + + + + + + + + + + + + +
+editor : +
+directory : +
+Returns : + + +
+
+
+
+

+gimp_path_editor_set_dir_writable ()

+
void        gimp_path_editor_set_dir_writable
                                             (GimpPathEditor *editor,
-                                             const gchar *directory,
-                                             gboolean writable);

- -

editor : -
directory : -
writable : - - -

Signals

The "path-changed" signal

void        user_function                  (GimpPathEditor *arg0,
-                                            gpointer user_data);

+ const gchar *directory, + gboolean writable); +

+ +

+
++ + + + + + + + + + + + + + +
+editor : +
+directory : +
+writable : + + +
+
+
+
+

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.

+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,
-                                            gpointer user_data);

+

+
++ + + + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "writable-changed" signal

+
void        user_function                  (GimpPathEditor *arg0,
+                                            gpointer user_data);
+

This signal is emitted whenever the "writable" column of a directory is changed, either by the user clicking on it or by calling -gimp_path_editor_set_dir_writable().

+gimp_path_editor_set_dir_writable().

+

-

user_data :user data set when the signal handler was connected.

See Also

+

+
++ + + + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

GimpFileEntry -

+

+

G_SEARCHPATH_SEPARATOR -

+

+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPickButton.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPickButton.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPickButton.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpPickButton

GimpPickButton

GimpPickButton — Widget to pick a color from screen.

Synopsis

+
+
+
+GimpPickButton
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpPickButton

+

GimpPickButton — Widget to pick a color from screen.

+
+
+

Synopsis

+
 
 
 
@@ -7,11 +46,13 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_pick_button_new            (void);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -28,41 +69,107 @@
 href="../gtk/GtkButton.html"
 >GtkButton
                                  +----GimpPickButton
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpPickButton implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "color-picked"
             void        user_function      (GimpPickButton *gimppickbutton,
-                                            gpointer arg1,
-                                            gpointer user_data);
-

Description

+ gpointer arg1, + gpointer user_data); + +

+
+

Description

+

GimpPickButton is a specialized button. When clicked, it changes the cursor to a color-picker pipette and allows the user to pick a color from any point on the screen. -

Details

GimpPickButton

typedef struct _GimpPickButton GimpPickButton;

- -


gimp_pick_button_new ()


+
+
+

Details

+
+

+GimpPickButton

+
typedef struct _GimpPickButton GimpPickButton;
+

+ +

+
+
+
+

+gimp_pick_button_new ()

+
GtkWidget*  gimp_pick_button_new            (void);

-Creates a new GimpPickButton widget.

- -

Returns : A new GimpPickButton widget. -

Signals

The "color-picked" signal

void        user_function                  (GimpPickButton *gimppickbutton,
-                                            gpointer arg1,
-                                            gpointer user_data);

- -

+ + + + + + +
gimppickbutton :the object which received the signal. -
arg1 :pointer to a GtkWidget* gimp_pick_button_new (void); +

+Creates a new GimpPickButton widget.

+

+ +

+
++ + + + +
+Returns : A new GimpPickButton widget. +
+ + +
+

Signals

+
+

+The "color-picked" signal

+
void        user_function                  (GimpPickButton *gimppickbutton,
+                                            gpointer arg1,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + +
+gimppickbutton :the object which received the signal. +
+arg1 :pointer to a GimpRGB structure that holds the picked color -
user_data :user data set when the signal handler was connected.
+
+user_data :user data set when the signal handler was connected.
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPixmap.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPixmap.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPixmap.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPixmap.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,25 +1,62 @@ -GimpPixmap
+ +

GimpPixmap

GimpPixmap — Widget which creates a + + +GimpPixmap + + + + + + + + + + + + + + + + + + + + + + + + +

+
+
+
+

GimpPixmap

+

GimpPixmap — Widget which creates a GtkPixmap from XPM data.

Synopsis

+>GtkPixmap from XPM data.

+
+
+

Synopsis

+
 
 
 
             GimpPixmap;
 GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);
+>GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);
 void        gimp_pixmap_set                 (GimpPixmap *pixmap,
-                                             gchar **xpm_data);
-
-

Object Hierarchy

-
-  GObject
+                                             gchar **xpm_data);
+
+
+
+
+

Object Hierarchy

+
+
+  GObject
    +----GtkObject
@@ -33,46 +70,132 @@
 href="../gtk/GtkImage.html"
 >GtkImage
                            +----GimpPixmap
-

Implemented Interfaces

+ +

+
+

Implemented Interfaces

+

GimpPixmap implements - AtkImplementorIface.

Description

+ AtkImplementorIface.

+
+
+

Description

+

Widget which creates a GtkPixmap from XPM data. -

+

+

Use this widget instead of GtkPixmap if you don't want to worry about the parent container's "realized" state. -

+

+

Note that the drawback of the easy interface is that the actual GdkPixmap and it's mask have to be constructed every time you call gimp_pixmap_new() and cannot be cached in memory without doing bad hacks. -

Details

GimpPixmap

typedef struct _GimpPixmap GimpPixmap;

Warning

GimpPixmap is deprecated and should not be used in newly-written code.

- -


gimp_pixmap_new ()


+
+
+

Details

+
+

+GimpPixmap

+
typedef struct _GimpPixmap GimpPixmap;
+
+

Warning

+

GimpPixmap is deprecated and should not be used in newly-written code.

+
+

+ +

+
+
+
+

+gimp_pixmap_new ()

+
GtkWidget*  gimp_pixmap_new                 (gchar **xpm_data);

Warning

gimp_pixmap_new is deprecated and should not be used in newly-written code.

-Creates a new GimpPixmap widget.

- -

xpm_data : A pointer to a XPM data structure as found in XPM files. -
Returns : A pointer to the new GimpPixmap widget. -

gimp_pixmap_set ()

void        gimp_pixmap_set                 (GimpPixmap *pixmap,
-                                             gchar **xpm_data);

Warning

gimp_pixmap_set is deprecated and should not be used in newly-written code.

-Sets a new image for an existing GimpPixmap widget.

- -

pixmap : The pixmap widget you want to set the new xpm_data for. -
xpm_data : A pointer to a XPM data structure as found in XPM files. -

See Also

+>GtkWidget* gimp_pixmap_new (gchar **xpm_data); +

+

Warning

+

gimp_pixmap_new is deprecated and should not be used in newly-written code.

+
+

+Creates a new GimpPixmap widget.

+

+ +

+
++ + + + + + + + + + +
+xpm_data : A pointer to a XPM data structure as found in XPM files. +
+Returns : A pointer to the new GimpPixmap widget. +
+
+
+
+

+gimp_pixmap_set ()

+
void        gimp_pixmap_set                 (GimpPixmap *pixmap,
+                                             gchar **xpm_data);
+
+

Warning

+

gimp_pixmap_set is deprecated and should not be used in newly-written code.

+
+

+Sets a new image for an existing GimpPixmap widget.

+

+ +

+
++ + + + + + + + + + +
+pixmap : The pixmap widget you want to set the new xpm_data for. +
+xpm_data : A pointer to a XPM data structure as found in XPM files. +
+
+
+
+

See Also

+

gimp_pixmap_button_new() -

+

+

GtkPixmap -

+

+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPreviewArea.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPreviewArea.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPreviewArea.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpPreviewArea

GimpPreviewArea

GimpPreviewArea — A general purpose preview widget which caches its pixel data.

Synopsis

+
+
+
+GimpPreviewArea
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpPreviewArea

+

GimpPreviewArea — A general purpose preview widget which caches its pixel data.

+
+
+

Synopsis

+
 
 
 
@@ -7,145 +46,71 @@
 href="../gtk/GtkWidget.html"
 >GtkWidget*  gimp_preview_area_new           (void);
 void        gimp_preview_area_draw          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf,
-                                             gint rowstride);
+                                             const guchar *buf,
+                                             gint rowstride);
 void        gimp_preview_area_fill          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
-                                             guchar red,
-                                             guchar green,
-                                             guchar blue);
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
+                                             guchar red,
+                                             guchar green,
+                                             guchar blue);
 void        gimp_preview_area_blend         (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             guchar opacity);
+                                             const guchar *buf1,
+                                             gint rowstride1,
+                                             const guchar *buf2,
+                                             gint rowstride2,
+                                             guchar opacity);
 void        gimp_preview_area_mask          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             const guchar *mask,
-                                             gint rowstride_mask);
+                                             const guchar *buf1,
+                                             gint rowstride1,
+                                             const guchar *buf2,
+                                             gint rowstride2,
+                                             const guchar *mask,
+                                             gint rowstride_mask);
 void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y);
+                                             gint x,
+                                             gint y);
 void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
-                                             const guchar *colormap,
-                                             gint num_colors);
+                                             const guchar *colormap,
+                                             gint num_colors);
 void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
-                                             gint width,
-                                             gint height);
+                                             gint width,
+                                             gint height);
 void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
                                              GdkEventButton *event);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -156,9 +121,17 @@
 href="../gtk/GtkDrawingArea.html"
 >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;

- -


gimp_preview_area_new ()


+
+
+

Details

+
+

+GimpPreviewArea

+
typedef struct _GimpPreviewArea GimpPreviewArea;
+

+ +

+
+
+
+

+gimp_preview_area_new ()

+
GtkWidget*  gimp_preview_area_new           (void);

-

- -

+ +
Returns : a new GimpPreviewArea widget. +>GtkWidget* gimp_preview_area_new (void); +

+

+

+ +

+
++ + +
+Returns : a new GimpPreviewArea widget. Since GIMP 2.2 -

gimp_preview_area_draw ()

void        gimp_preview_area_draw          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+
+
+
+
+

+gimp_preview_area_draw ()

+
void        gimp_preview_area_draw          (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf,
-                                             gint rowstride);

+ const guchar *buf, + gint rowstride); +

Draws buf on area and queues a redraw on the given rectangle. -

-Since GIMP 2.2

- -

+ + + + + + + + + + +
area : a GimpPreviewArea widget. -
x : x offset in preview -
y : y offset in preview -
width : buffer width -
height : buffer height -
type : the +

+Since GIMP 2.2

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + +
+area : a GimpPreviewArea widget. +
+x : x offset in preview +
+y : y offset in preview +
+width : buffer width +
+height : buffer height +
+type : the GimpImageType of buf -
buf : a guchar buffer that contains the preview pixel data. -
rowstride : rowstride of buf -

gimp_preview_area_fill ()

void        gimp_preview_area_fill          (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
-                                             guchar red,
-                                             guchar green,
-                                             guchar blue);

+

+buf : a guchar buffer that contains the preview pixel data. +
+rowstride : rowstride of buf +
+
+
+
+

+gimp_preview_area_fill ()

+
void        gimp_preview_area_fill          (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
+                                             guchar red,
+                                             guchar green,
+                                             guchar blue);
+

Fills area in the given color and queues a redraw on the given rectangle. -

-Since GIMP 2.2

- -

area : a GimpPreviewArea widget. -
x : x offset in preview -
y : y offset in preview -
width : buffer width -
height : buffer height -
red : red component of the fill color (0-255) -
green : green component of the fill color (0-255) -
blue : red component of the fill color (0-255) -

gimp_preview_area_blend ()

void        gimp_preview_area_blend         (GimpPreviewArea *area,
-                                             gint x,
-                                             gint y,
-                                             gint width,
-                                             gint height,
+

+

+Since GIMP 2.2

+

+ +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+area : a GimpPreviewArea widget. +
+x : x offset in preview +
+y : y offset in preview +
+width : buffer width +
+height : buffer height +
+red : red component of the fill color (0-255) +
+green : green component of the fill color (0-255) +
+blue : red component of the fill color (0-255) +
+
+
+
+

+gimp_preview_area_blend ()

+
void        gimp_preview_area_blend         (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             guchar opacity);

+ const guchar *buf1, + gint rowstride1, + const guchar *buf2, + gint rowstride2, + guchar opacity); +

Composites buf1 on buf2 with the given opacity, draws the result to area and queues a redraw on the given rectangle. -

-Since GIMP 2.2

- -

+
+
+
+

+gimp_preview_area_mask ()

+
void        gimp_preview_area_mask          (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y,
+                                             gint width,
+                                             gint height,
                                              GimpImageType type,
-                                             const guchar *buf1,
-                                             gint rowstride1,
-                                             const guchar *buf2,
-                                             gint rowstride2,
-                                             const guchar *mask,
-                                             gint rowstride_mask);

+ const guchar *buf1, + gint rowstride1, + const guchar *buf2, + gint rowstride2, + const guchar *mask, + gint rowstride_mask); +

Composites buf1 on buf2 with the given mask, draws the result on area and queues a redraw on the given rectangle. -

-Since GIMP 2.2

- -

+
+
+
+

+gimp_preview_area_set_offsets ()

+
void        gimp_preview_area_set_offsets   (GimpPreviewArea *area,
+                                             gint x,
+                                             gint y);
+

Sets the offsets of the previewed area. This information is used -when drawing the checkerboard and to determine the dither offsets.

+when drawing the checkerboard and to determine the dither offsets.

+

-

area : a GimpPreviewArea -
x : horizontal offset -
y : vertical offset -

Since GIMP 2.2 -


gimp_preview_area_set_colormap ()

void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
-                                             const guchar *colormap,
-                                             gint num_colors);

+

+
++ + + + + + + + + + + + + + +
+area : a GimpPreviewArea +
+x : horizontal offset +
+y : vertical offset +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_area_set_colormap ()

+
void        gimp_preview_area_set_colormap  (GimpPreviewArea *area,
+                                             const guchar *colormap,
+                                             gint num_colors);
+

Sets the colormap for the GimpPreviewArea widget. You need to call this function before you use gimp_preview_area_draw() with an image type of GIMP_INDEXED_IMAGE or GIMP_INDEXEDA_IMAGE. -

-Since GIMP 2.2

- -

area : a GimpPreviewArea -
colormap : a guchar buffer that contains the colormap -
num_colors : the number of colors in the colormap -

gimp_preview_area_set_max_size ()

void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
-                                             gint width,
-                                             gint height);

+

+

+Since GIMP 2.2

+

+ +

+
++ + + + + + + + + + + + + + +
+area : a GimpPreviewArea +
+colormap : a guchar buffer that contains the colormap +
+num_colors : the number of colors in the colormap +
+
+
+
+

+gimp_preview_area_set_max_size ()

+
void        gimp_preview_area_set_max_size  (GimpPreviewArea *area,
+                                             gint width,
+                                             gint height);
+

Usually a GimpPreviewArea fills the size that it is allocated. This funtion allows you to limit the preview area to a maximum size. If a larger size is allocated for the widget, the -preview will draw itself centered into the allocated area.

+preview will draw itself centered into the allocated area.

+

-

area : a GimpPreviewArea widget -
width : the maximum width in pixels or -1 to unset the limit -
height : the maximum height in pixels or -1 to unset the limit -

Since GIMP 2.2 -


gimp_preview_area_menu_popup ()

void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
+

+
++ + + + + + + + + + + + + + +
+area : a GimpPreviewArea widget +
+width : the maximum width in pixels or -1 to unset the limit +
+height : the maximum height in pixels or -1 to unset the limit +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_area_menu_popup ()

+
void        gimp_preview_area_menu_popup    (GimpPreviewArea *area,
                                              GdkEventButton *event);

+>GdkEventButton *event); +

Creates a popup menu that allows to configure the size and type of -the checkerboard pattern that the area uses to visualize transparency.

+the checkerboard pattern that the area uses to visualize transparency.

+

-

area : a GimpPreviewArea -
event : the button event that causes the menu to popup or NULL -

Since GIMP 2.2 -

+
+

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

+>GimpCheckType : Read / Write +

+

Default value: GIMP_CHECK_TYPE_GRAY_CHECKS

+
+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPreview.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPreview.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpPreview.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,61 +1,78 @@ -GimpPreview

GimpPreview

GimpPreview — A widget providing a GimpPreviewArea plus framework to update the preview.

Synopsis

+
+
+
+GimpPreview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpPreview

+

GimpPreview — A widget providing a GimpPreviewArea plus framework to update the preview.

+
+
+

Synopsis

+
 
 
 
             GimpPreview;
-gboolean    gimp_preview_get_update         (GimpPreview *preview);
+gboolean    gimp_preview_get_update         (GimpPreview *preview);
 void        gimp_preview_set_update         (GimpPreview *preview,
-                                             gboolean update);
+                                             gboolean update);
 void        gimp_preview_set_bounds         (GimpPreview *preview,
-                                             gint xmin,
-                                             gint ymin,
-                                             gint xmax,
-                                             gint ymax);
+                                             gint xmin,
+                                             gint ymin,
+                                             gint xmax,
+                                             gint ymax);
 void        gimp_preview_get_size           (GimpPreview *preview,
-                                             gint *width,
-                                             gint *height);
+                                             gint *width,
+                                             gint *height);
 void        gimp_preview_get_position       (GimpPreview *preview,
-                                             gint *x,
-                                             gint *y);
+                                             gint *x,
+                                             gint *y);
 void        gimp_preview_draw               (GimpPreview *preview);
 void        gimp_preview_draw_buffer        (GimpPreview *preview,
-                                             const guchar *buffer,
-                                             gint rowstride);
+                                             const guchar *buffer,
+                                             gint rowstride);
 void        gimp_preview_invalidate         (GimpPreview *preview);
 void        gimp_preview_set_default_cursor (GimpPreview *preview,
                                              GdkCursor *cursor);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -72,159 +89,440 @@
 href="../gtk/GtkVBox.html"
 >GtkVBox
                                  +----GimpPreview
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpPreview implements - AtkImplementorIface.

Properties

-
-  "update"               gboolean              : Read / Write / Construct
-

Style Properties

-
-  "size"                 gint                  : Read
-

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Properties

+
+
+  "update"               gboolean              : Read / Write / Construct
+
+
+
+

Style Properties

+
+
+  "size"                 gint                  : Read
+
+
+
+

Signal Prototypes

+
 
 "invalidated"
             void        user_function      (GimpPreview *gimppreview,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

A widget providing a GimpPreviewArea plus framework to update the preview. -

Details

GimpPreview

typedef struct _GimpPreview GimpPreview;

- -


gimp_preview_get_update ()

gboolean    gimp_preview_get_update         (GimpPreview *preview);

-

- -

preview : a GimpPreview widget -
Returns : the state of the "Preview" check button. - -

Since GIMP 2.2 -


gimp_preview_set_update ()

void        gimp_preview_set_update         (GimpPreview *preview,
-                                             gboolean update);

-Sets the state of the "Preview" check button.

- -

+ + +
preview : a GimpPreview widget -
update : TRUE if the preview should invalidate itself when being +

+ +
+

Details

+
+

+GimpPreview

+
typedef struct _GimpPreview GimpPreview;
+

+ +

+
+
+
+

+gimp_preview_get_update ()

+
gboolean    gimp_preview_get_update         (GimpPreview *preview);
+

+

+

+ +

+
++ + + + + + + + + + +
+preview : a GimpPreview widget +
+Returns : the state of the "Preview" check button. + +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_set_update ()

+
void        gimp_preview_set_update         (GimpPreview *preview,
+                                             gboolean update);
+

+Sets the state of the "Preview" check button.

+

+ +

+
++ + + + + + + +
+preview : a GimpPreview widget +
+update : TRUE if the preview should invalidate itself when being scrolled or when gimp_preview_invalidate() is being called -

Since GIMP 2.2 -


gimp_preview_set_bounds ()

void        gimp_preview_set_bounds         (GimpPreview *preview,
-                                             gint xmin,
-                                             gint ymin,
-                                             gint xmax,
-                                             gint ymax);

+

+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_set_bounds ()

+
void        gimp_preview_set_bounds         (GimpPreview *preview,
+                                             gint xmin,
+                                             gint ymin,
+                                             gint xmax,
+                                             gint ymax);
+

Sets the lower and upper limits for the previewed area. The difference between the upper and lower value is used to set the -maximum size of the GimpPreviewArea used in the preview.

+maximum size of the GimpPreviewArea used in the preview.

+

-

preview : a GimpPreview widget -
xmin : -
ymin : -
xmax : -
ymax : -

Since GIMP 2.2 -


gimp_preview_get_size ()

void        gimp_preview_get_size           (GimpPreview *preview,
-                                             gint *width,
-                                             gint *height);

-

- -

preview : a GimpPreview widget -
width : return location for the preview area width -
height : return location for the preview area height -

Since GIMP 2.2 -


gimp_preview_get_position ()

void        gimp_preview_get_position       (GimpPreview *preview,
-                                             gint *x,
-                                             gint *y);

-

- -

preview : a GimpPreview widget -
x : return location for the horizontal offset -
y : return location for the vertical offset -

Since GIMP 2.2 -


gimp_preview_draw ()

void        gimp_preview_draw               (GimpPreview *preview);

+

+
++ + + + + + + + + + + + + + + + + + + + + + +
+preview : a GimpPreview widget +
+xmin : +
+ymin : +
+xmax : +
+ymax : +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_get_size ()

+
void        gimp_preview_get_size           (GimpPreview *preview,
+                                             gint *width,
+                                             gint *height);
+

+

+

+ +

+
++ + + + + + + + + + + + + + +
+preview : a GimpPreview widget +
+width : return location for the preview area width +
+height : return location for the preview area height +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_get_position ()

+
void        gimp_preview_get_position       (GimpPreview *preview,
+                                             gint *x,
+                                             gint *y);
+

+

+

+ +

+
++ + + + + + + + + + + + + + +
+preview : a GimpPreview widget +
+x : return location for the horizontal offset +
+y : return location for the vertical offset +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_draw ()

+
void        gimp_preview_draw               (GimpPreview *preview);
+

Calls the GimpPreview::draw method. GimpPreview itself doesn't implement a default draw method so the behaviour is determined by the derived class implementing this method. -

+

+

GimpDrawablePreview implements gimp_preview_draw() by drawing the -original, unmodified drawable to the preview.

+original, unmodified drawable to the preview.

+

-

preview : a GimpPreview widget -

Since GIMP 2.2 -


gimp_preview_draw_buffer ()

void        gimp_preview_draw_buffer        (GimpPreview *preview,
-                                             const guchar *buffer,
-                                             gint rowstride);

+

+
++ + + + +
+preview : a GimpPreview widget +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_draw_buffer ()

+
void        gimp_preview_draw_buffer        (GimpPreview *preview,
+                                             const guchar *buffer,
+                                             gint rowstride);
+

Calls the GimpPreview::draw_buffer method. GimpPreview itself doesn't implement this method so the behaviour is determined by the -derived class implementing this method.

+derived class implementing this method.

+

-

preview : a GimpPreview widget -
buffer : a pixel buffer the size of the preview -
rowstride : the buffer's rowstride -

Since GIMP 2.2 -


gimp_preview_invalidate ()

void        gimp_preview_invalidate         (GimpPreview *preview);

+

+
++ + + + + + + + + + + + + + +
+preview : a GimpPreview widget +
+buffer : a pixel buffer the size of the preview +
+rowstride : the buffer's rowstride +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_invalidate ()

+
void        gimp_preview_invalidate         (GimpPreview *preview);
+

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. -

+

+

This function does nothing unless the "Preview" button is checked. -

+

+

During the emission of the signal a busy cursor is set on the toplevel window containing the preview and on the preview area -itself.

+itself.

+

-

preview : a GimpPreview widget -

Since GIMP 2.2 -


gimp_preview_set_default_cursor ()

void        gimp_preview_set_default_cursor (GimpPreview *preview,
+

+
++ + + + +
+preview : a GimpPreview widget +
+

Since GIMP 2.2 +

+
+
+
+

+gimp_preview_set_default_cursor ()

+
void        gimp_preview_set_default_cursor (GimpPreview *preview,
                                              GdkCursor *cursor);

+>GdkCursor *cursor); +

Sets the default mouse cursor for the preview. Note that this will be overriden by a GDK_FLEUR if the preview has scrollbars, or by a -GDK_WATCH when the preview is invalidated.

+GDK_WATCH when the preview is invalidated.

+

-

+ + +
preview : a GimpPreview widget -
cursor : a +
++ + + + + + + +
+preview : a GimpPreview widget +
+cursor : a GdkCursor or NULL -

Since GIMP 2.2 -

Properties

The "update" property

  "update"               gboolean              : Read / Write / Construct

Default value: TRUE

Style Properties

The "size" style property

  "size"                 gint                  : Read

Allowed values: [1,1024]

Default value: 150

Signals

The "invalidated" signal

void        user_function                  (GimpPreview *gimppreview,
-                                            gpointer user_data);

- -

gimppreview :the object which received the signal. - -
user_data :user data set when the signal handler was connected.
+
+

Since GIMP 2.2 +

+
+
+
+

Properties

+
+

+The "update" property

+
  "update"               gboolean              : Read / Write / Construct
+

+

Default value: TRUE

+
+
+
+

Style Properties

+
+

+The "size" style property

+
  "size"                 gint                  : Read
+

+

Allowed values: [1,1024]

+

Default value: 150

+
+
+
+

Signals

+
+

+The "invalidated" signal

+
void        user_function                  (GimpPreview *gimppreview,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimppreview :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpSizeEntry.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpSizeEntry.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpSizeEntry.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpSizeEntry

GimpSizeEntry

GimpSizeEntry — Widget for entering pixel values and resolutions.

Synopsis

+
+
+
+GimpSizeEntry
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpSizeEntry

+

GimpSizeEntry — Widget for entering pixel values and resolutions.

+
+
+

Synopsis

+
 
 
 
@@ -7,27 +46,15 @@
 enum        GimpSizeEntryUpdatePolicy;
 GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
+>GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
                                              GimpUnit unit,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gboolean show_refval,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gboolean show_refval,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy);
 void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
                                              GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
-                                             const gchar *text,
-                                             gint row,
-                                             gint column,
-                                             gfloat alignment);
+                                             const gchar *text,
+                                             gint row,
+                                             gint column,
+                                             gfloat alignment);
 void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble resolution,
-                                             gboolean keep_size);
+                                             gint field,
+                                             gdouble resolution,
+                                             gboolean keep_size);
 void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
 void        gimp_size_entry_set_value_boundaries
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);
-gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
-                                             gint field);
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
+gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
+                                             gint field);
 void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble value);
+                                             gint field,
+                                             gdouble value);
 void        gimp_size_entry_set_refval_boundaries
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
 void        gimp_size_entry_set_refval_digits
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gint digits);
-gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
-                                             gint field);
+                                             gint field,
+                                             gint digits);
+gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
+                                             gint field);
 void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble refval);
+                                             gint field,
+                                             gdouble refval);
 GimpUnit    gimp_size_entry_get_unit        (GimpSizeEntry *gse);
@@ -136,22 +111,20 @@
 >GimpUnit unit);
 void        gimp_size_entry_set_pixel_digits
                                             (GimpSizeEntry *gse,
-                                             gint digits);
+                                             gint digits);
 void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);
 GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
-                                             gint field);
+                                             gint field);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -165,37 +138,46 @@
 href="../gtk/GtkTable.html"
 >GtkTable
                            +----GimpSizeEntry
-

Implemented Interfaces

+

+
+
+

Implemented Interfaces

+

GimpSizeEntry implements - AtkImplementorIface.

Signal Prototypes

+ AtkImplementorIface.

+
+
+

Signal Prototypes

+
 
 "refval-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "unit-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);
+                                            gpointer user_data);
 "value-changed"
             void        user_function      (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);
-

Description

+ gpointer user_data); + +

+
+

Description

+

This widget is used to enter pixel distances/sizes and resolutions. -

+

+

You can specify the number of fields the widget should provide. For each field automatic mappings are performed between the field's "reference value" and it's "value". -

+

+

There is a GimpUnitMenu right of the entry fields which lets you specify the GimpUnit of the displayed values. -

+

+

For each field, there can be one or two GtkSpinButton's to enter @@ -204,7 +186,8 @@ href="../gtk/GtkSpinButton.html" >GtkSpinButton and the GimpUnitMenu will contain an item for selecting GIMP_UNIT_PIXEL. -

+

+

The "reference value" is either of GIMP_UNIT_PIXEL or dpi, depending on which GimpSizeEntryUpdatePolicy you specify in gimp_size_entry_new(). The "value" is either the size in pixels mapped to the size in a @@ -212,413 +195,983 @@ href="../libgimpbase/libgimpbase-gimpunit.html#GimpUnit" >GimpUnit) or the dpi value mapped to pixels per real-world-unit. -

Details

GimpSizeEntry

typedef struct _GimpSizeEntry GimpSizeEntry;

- -


GimpSizeEntryField

typedef struct _GimpSizeEntryField GimpSizeEntryField;

- -


enum GimpSizeEntryUpdatePolicy

typedef enum
+

+
+
+

Details

+
+

+GimpSizeEntry

+
typedef struct _GimpSizeEntry GimpSizeEntry;
+

+ +

+
+
+
+

+GimpSizeEntryField

+
typedef struct _GimpSizeEntryField GimpSizeEntryField;
+

+ +

+
+
+
+

+enum GimpSizeEntryUpdatePolicy

+
typedef enum
 {
   GIMP_SIZE_ENTRY_UPDATE_NONE       = 0,
   GIMP_SIZE_ENTRY_UPDATE_SIZE       = 1,
   GIMP_SIZE_ENTRY_UPDATE_RESOLUTION = 2
 } GimpSizeEntryUpdatePolicy;
-

+ +

-


gimp_size_entry_new ()


+
+
+
+

+gimp_size_entry_new ()

+
GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
+>GtkWidget*  gimp_size_entry_new             (gint number_of_fields,
                                              GimpUnit unit,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gboolean show_refval,
-                                             gint spinbutton_width,
-                                             GimpSizeEntryUpdatePolicy update_policy);

+ const gchar *unit_format, + gboolean menu_show_pixels, + gboolean menu_show_percent, + gboolean show_refval, + gint spinbutton_width, + GimpSizeEntryUpdatePolicy update_policy); +

Creates a new GimpSizeEntry widget. -

+

+

To have all automatic calculations performed correctly, set up the widget in the following order: -

+

+

1. gimp_size_entry_new() -

+

+

2. (for each additional input field) gimp_size_entry_add_field() -

+

+

3. gimp_size_entry_set_unit() -

+

+

For each input field: -

+

+

4. gimp_size_entry_set_resolution() -

+

+

5. gimp_size_entry_set_refval_boundaries() (or gimp_size_entry_set_value_boundaries()) -

+

+

6. gimp_size_entry_set_size() -

+

+

7. gimp_size_entry_set_refval() (or gimp_size_entry_set_value()) -

+

+

The GimpSizeEntry is derived from GtkTable and will have an empty border of one cell width on each side plus an empty column left of the GimpUnitMenu to allow the caller to add labels or a -GimpChainButton.

+GimpChainButton.

+

-

+ + + + + + +
number_of_fields : The number of input fields. -
unit : The initial unit. -
unit_format : A printf-like unit-format string as is used with +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+number_of_fields : The number of input fields. +
+unit : The initial unit. +
+unit_format : A printf-like unit-format string as is used with gimp_unit_menu_new(). -
menu_show_pixels : TRUE if the unit menu shold contain an item for +
+menu_show_pixels : TRUE if the unit menu shold contain an item for GIMP_UNIT_PIXEL (ignored if the update_policy is not GIMP_SIZE_ENTRY_UPDATE_NONE). -
menu_show_percent : TRUE if the unit menu shold contain an item for +
+menu_show_percent : TRUE if the unit menu shold contain an item for GIMP_UNIT_PERCENT. -
show_refval : TRUE if you want an extra "reference value" +
+show_refval : TRUE if you want an extra "reference value" spinbutton per input field. -
spinbutton_width : The minimal horizontal size of the +
+spinbutton_width : The minimal horizontal size of the GtkSpinButton's. -
update_policy : How the automatic pixel <-> real-world-unit +
+update_policy : How the automatic pixel <-> real-world-unit calculations should be done. -
Returns : A Pointer to the new GimpSizeEntry widget. -

gimp_size_entry_add_field ()

void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
+
+Returns : A Pointer to the new GimpSizeEntry widget. +
+
+
+
+

+gimp_size_entry_add_field ()

+
void        gimp_size_entry_add_field       (GimpSizeEntry *gse,
                                              GtkSpinButton *value_spinbutton,
                                              GtkSpinButton *refval_spinbutton);

+>GtkSpinButton *refval_spinbutton); +

Adds an input field to the GimpSizeEntry. -

+

+

The new input field will have the index 0. If you specified show_refval as TRUE in gimp_size_entry_new() you have to pass an additional GtkSpinButton to hold the reference value. If show_refval was FALSE, -refval_spinbutton will be ignored.

+refval_spinbutton will be ignored.

+

-

gse : The sizeentry you want to add a field to. -
value_spinbutton : The spinbutton to display the field's value. -
refval_spinbutton : The spinbutton to display the field's reference value. -

+
+
+

+gimp_size_entry_attach_label ()

+
GtkWidget*  gimp_size_entry_attach_label    (GimpSizeEntry *gse,
-                                             const gchar *text,
-                                             gint row,
-                                             gint column,
-                                             gfloat alignment);

+ const gchar *text, + gint row, + gint column, + gfloat alignment); +

Attaches a GtkLabel to the GimpSizeEntry (which is a GtkTable).

+>GtkTable).

+

-

+ + +
gse : The sizeentry you want to add a label to. -
text : The text of the label. -
row : The row where the label will be attached. -
column : The column where the label will be attached. -
alignment : The horizontal alignment of the label. -
Returns : A pointer to the new +
++ + + + + + + + + + + + + + + + + + + + + + + +
+gse : The sizeentry you want to add a label to. +
+text : The text of the label. +
+row : The row where the label will be attached. +
+column : The column where the label will be attached. +
+alignment : The horizontal alignment of the label. +
+Returns : A pointer to the new GtkLabel widget. -

gimp_size_entry_set_resolution ()

void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble resolution,
-                                             gboolean keep_size);

+

+
+
+
+

+gimp_size_entry_set_resolution ()

+
void        gimp_size_entry_set_resolution  (GimpSizeEntry *gse,
+                                             gint field,
+                                             gdouble resolution,
+                                             gboolean keep_size);
+

Sets the resolution (in dpi) for field # field of the GimpSizeEntry. -

+

+

The resolution passed will be clamped to fit in [GIMP_MIN_RESOLUTION..GIMP_MAX_RESOLUTION]. -

+

+

This function does nothing if the GimpSizeEntryUpdatePolicy specified in -gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

+gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

+

-

+ + +
gse : The sizeentry you want to set a resolution for. -
field : The index of the field you want to set the resolution for. -
resolution : The new resolution (in dpi) for the chosen field. -
keep_size : TRUE if the field's size in pixels should stay the same. +

+
++ + + + + + + + + + + + + + + +
+gse : The sizeentry you want to set a resolution for. +
+field : The index of the field you want to set the resolution for. +
+resolution : The new resolution (in dpi) for the chosen field. +
+keep_size : TRUE if the field's size in pixels should stay the same. FALSE if the field's size in units should stay the same. -

gimp_size_entry_set_size ()

void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);

+

+
+
+
+

+gimp_size_entry_set_size ()

+
void        gimp_size_entry_set_size        (GimpSizeEntry *gse,
+                                             gint field,
+                                             gdouble lower,
+                                             gdouble upper);
+

Sets the pixel values for field # field of the GimpSizeEntry which will be treated as 0% and 100%. -

+

+

These values will be used if you specified menu_show_percent as TRUE in gimp_size_entry_new() and the user has selected GIMP_UNIT_PERCENT in the GimpSizeEntry's GimpUnitMenu. -

+

+

This function does nothing if the GimpSizeEntryUpdatePolicy specified in -gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

+gimp_size_entry_new() doesn't equal to GIMP_SIZE_ENTRY_UPDATE_SIZE.

+

-

gse : The sizeentry you want to set a size for. -
field : The index of the field you want to set the size for. -
lower : The reference value which will be treated as 0%. -
upper : The reference value which will be treated as 100%. -

gimp_size_entry_set_value_boundaries ()

void        gimp_size_entry_set_value_boundaries
+

+
++ + + + + + + + + + + + + + + + + + +
+gse : The sizeentry you want to set a size for. +
+field : The index of the field you want to set the size for. +
+lower : The reference value which will be treated as 0%. +
+upper : The reference value which will be treated as 100%. +
+
+
+
+

+gimp_size_entry_set_value_boundaries ()

+
void        gimp_size_entry_set_value_boundaries
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);

+ gint field, + gdouble lower, + gdouble upper); +

Limits the range of possible values which can be entered in field # field of the GimpSizeEntry. -

+

+

The current value of the field will be clamped to fit in the field's new boundaries. -

+

+

NOTE: In most cases you won't be interested in these values because the GimpSizeEntry's purpose is to shield the programmer from unit calculations. Use gimp_size_entry_set_refval_boundaries() instead. Whatever you do, don't mix these calls. A size entry should either - be clamped by the value or the reference value.

+ be clamped by the value or the reference value.

+

-

gse : The sizeentry you want to set value boundaries for. -
field : The index of the field you want to set value boundaries for. -
lower : The new lower boundary of the value of the chosen field. -
upper : The new upper boundary of the value of the chosen field. -

gimp_size_entry_get_value ()

gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
-                                             gint field);

+

+
++ + + + + + + + + + + + + + + + + + +
+gse : The sizeentry you want to set value boundaries for. +
+field : The index of the field you want to set value boundaries for. +
+lower : The new lower boundary of the value of the chosen field. +
+upper : The new upper boundary of the value of the chosen field. +
+
+
+
+

+gimp_size_entry_get_value ()

+
gdouble     gimp_size_entry_get_value       (GimpSizeEntry *gse,
+                                             gint field);
+

Returns the value of field # field of the GimpSizeEntry. -

+

+

The value returned is a distance or resolution in the GimpUnit the user has selected in the GimpSizeEntry's GimpUnitMenu. -

+

+

NOTE: In most cases you won't be interested in this value because the GimpSizeEntry's purpose is to shield the programmer from unit - calculations. Use gimp_size_entry_get_refval() instead.

+ calculations. Use gimp_size_entry_get_refval() instead.

+

-

gse : The sizeentry you want to know a value of. -
field : The index of the field you want to know the value of. -
Returns : The value of the chosen field. -

gimp_size_entry_set_value ()

void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble value);

+

+
++ + + + + + + + + + + + + + +
+gse : The sizeentry you want to know a value of. +
+field : The index of the field you want to know the value of. +
+Returns : The value of the chosen field. +
+
+
+
+

+gimp_size_entry_set_value ()

+
void        gimp_size_entry_set_value       (GimpSizeEntry *gse,
+                                             gint field,
+                                             gdouble value);
+

Sets the value for field # field of the GimpSizeEntry. -

+

+

The value passed is treated to be a distance or resolution in the GimpUnit the user has selected in the GimpSizeEntry's GimpUnitMenu. -

+

+

NOTE: In most cases you won't be interested in this value because the GimpSizeEntry's purpose is to shield the programmer from unit - calculations. Use gimp_size_entry_set_refval() instead.

+ calculations. Use gimp_size_entry_set_refval() instead.

+

-

gse : The sizeentry you want to set a value for. -
field : The index of the field you want to set a value for. -
value : The new value for field. -

gimp_size_entry_set_refval_boundaries ()

void        gimp_size_entry_set_refval_boundaries
+

+
++ + + + + + + + + + + + + + +
+gse : The sizeentry you want to set a value for. +
+field : The index of the field you want to set a value for. +
+value : The new value for field. +
+
+
+
+

+gimp_size_entry_set_refval_boundaries ()

+
void        gimp_size_entry_set_refval_boundaries
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble lower,
-                                             gdouble upper);

+ gint field, + gdouble lower, + gdouble upper); +

Limits the range of possible reference values which can be entered in field # field of the GimpSizeEntry. -

+

+

The current reference value of the field will be clamped to fit in the -field's new boundaries.

+field's new boundaries.

+

-

+ + + + + + + + + + +
gse : The sizeentry you want to set the reference value boundaries for. -
field : The index of the field you want to set the reference value +

+
++ + + + + + + +
+gse : The sizeentry you want to set the reference value boundaries for. +
+field : The index of the field you want to set the reference value boundaries for. -
lower : The new lower boundary of the reference value of the chosen field. -
upper : The new upper boundary of the reference value of the chosen field. -

gimp_size_entry_set_refval_digits ()

void        gimp_size_entry_set_refval_digits
+
+lower : The new lower boundary of the reference value of the chosen field. +
+upper : The new upper boundary of the reference value of the chosen field. +
+
+
+
+

+gimp_size_entry_set_refval_digits ()

+
void        gimp_size_entry_set_refval_digits
                                             (GimpSizeEntry *gse,
-                                             gint field,
-                                             gint digits);

+ gint field, + gint digits); +

Sets the decimal digits of field # field of the GimpSizeEntry to digits. -

+

+

If you don't specify this value explicitly, the reference value's number of digits will equal to 0 for GIMP_SIZE_ENTRY_UPDATE_SIZE and to 2 for -GIMP_SIZE_ENTRY_UPDATE_RESOLUTION.

+GIMP_SIZE_ENTRY_UPDATE_RESOLUTION.

+

-

+ + +
gse : The sizeentry you want to set the reference value digits for. -
field : The index of the field you want to set the reference value for. -
digits : The new number of decimal digits for the +
++ + + + + + + + + + + +
+gse : The sizeentry you want to set the reference value digits for. +
+field : The index of the field you want to set the reference value for. +
+digits : The new number of decimal digits for the GtkSpinButton which displays field's reference value. -

gimp_size_entry_get_refval ()

gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
-                                             gint field);

+

+
+
+
+

+gimp_size_entry_get_refval ()

+
gdouble     gimp_size_entry_get_refval      (GimpSizeEntry *gse,
+                                             gint field);
+

Returns the reference value for field # field of the GimpSizeEntry. -

+

+

The reference value is either a distance in pixels or a resolution in dpi, depending on which GimpSizeEntryUpdatePolicy you chose in -gimp_size_entry_new().

+gimp_size_entry_new().

+

-

gse : The sizeentry you want to know a reference value of. -
field : The index of the field you want to know the reference value of. -
Returns : The reference value of the chosen field. -

gimp_size_entry_set_refval ()

void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
-                                             gint field,
-                                             gdouble refval);

+

+
++ + + + + + + + + + + + + + +
+gse : The sizeentry you want to know a reference value of. +
+field : The index of the field you want to know the reference value of. +
+Returns : The reference value of the chosen field. +
+
+
+
+

+gimp_size_entry_set_refval ()

+
void        gimp_size_entry_set_refval      (GimpSizeEntry *gse,
+                                             gint field,
+                                             gdouble refval);
+

Sets the reference value for field # field of the GimpSizeEntry. -

+

+

The refval passed is either a distance in pixels or a resolution in dpi, depending on which GimpSizeEntryUpdatePolicy you chose in -gimp_size_entry_new().

+gimp_size_entry_new().

+

-

gse : The sizeentry you want to set a reference value for. -
field : The index of the field you want to set the reference value for. -
refval : The new reference value for field. -

+
+
+

+gimp_size_entry_get_unit ()

+
GimpUnit    gimp_size_entry_get_unit        (GimpSizeEntry *gse);

+>GimpUnit gimp_size_entry_get_unit (GimpSizeEntry *gse); +

Returns the GimpUnit the user has selected in the GimpSizeEntry's -GimpUnitMenu.

+GimpUnitMenu.

+

-

gse : The sizeentry you want to know the unit of. -
Returns : The sizeentry's unit. -

gimp_size_entry_set_unit ()

void        gimp_size_entry_set_unit        (GimpSizeEntry *gse,
+

+
++ + + + + + + + + + +
+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,
                                              GimpUnit unit);

+>GimpUnit unit); +

Sets the GimpSizeEntry's unit. The reference value for all fields will stay the same but the value in units or pixels per unit will change according to which GimpSizeEntryUpdatePolicy you chose in -gimp_size_entry_new().

+gimp_size_entry_new().

+

-

gse : The sizeentry you want to change the unit for. -
unit : The new unit. -

gimp_size_entry_set_pixel_digits ()

void        gimp_size_entry_set_pixel_digits
+

+
++ + + + + + + + + + +
+gse : The sizeentry you want to change the unit for. +
+unit : The new unit. +
+
+
+
+

+gimp_size_entry_set_pixel_digits ()

+
void        gimp_size_entry_set_pixel_digits
                                             (GimpSizeEntry *gse,
-                                             gint digits);

+ gint digits); +

Similar to gimp_unit_menu_set_pixel_digits(), this function allows -you set up a GimpSizeEntry so that sub-pixel sizes can be entered.

+you set up a GimpSizeEntry so that sub-pixel sizes can be entered.

+

-

gse : a GimpSizeEntry -
digits : the number of digits to display for a pixel size -

gimp_size_entry_grab_focus ()

void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);

+

+
++ + + + + + + + + + +
+gse : a GimpSizeEntry +
+digits : the number of digits to display for a pixel size +
+
+
+
+

+gimp_size_entry_grab_focus ()

+
void        gimp_size_entry_grab_focus      (GimpSizeEntry *gse);
+

This function is rather ugly and just a workaround for the fact that it's impossible to implement gtk_widget_grab_focus() for a GtkTable.

+>GtkTable.

+

-

gse : The sizeentry you want to grab the keyboard focus. -

+
+
+

+gimp_size_entry_get_help_widget ()

+
GtkWidget*  gimp_size_entry_get_help_widget (GimpSizeEntry *gse,
-                                             gint field);

+ gint field); +

You shouldn't fiddle with the internals of a GimpSizeEntry but if you want to set tooltips using gimp_help_set_help_data() you -can use this function to get a pointer to the spinbuttons.

+can use this function to get a pointer to the spinbuttons.

+

-

+ + +
gse : a GimpSizeEntry -
field : the index of the widget you want to get a pointer to -
Returns : a +
++ + + + + + + + + + + +
+gse : a GimpSizeEntry +
+field : the index of the widget you want to get a pointer to +
+Returns : a GtkWidget pointer that you can attach a tooltip to. -

Signals

The "refval-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);

- -

gimpsizeentry :the object which received the signal. - -
user_data :user data set when the signal handler was connected.

The "unit-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);

- -

gimpsizeentry :the object which received the signal. - -
user_data :user data set when the signal handler was connected.

The "value-changed" signal

void        user_function                  (GimpSizeEntry *gimpsizeentry,
-                                            gpointer user_data);

- -

gimpsizeentry :the object which received the signal. - -
user_data :user data set when the signal handler was connected.

See Also

+

+
+
+
+

Signals

+
+

+The "refval-changed" signal

+
void        user_function                  (GimpSizeEntry *gimpsizeentry,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpsizeentry :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "unit-changed" signal

+
void        user_function                  (GimpSizeEntry *gimpsizeentry,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpsizeentry :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

+The "value-changed" signal

+
void        user_function                  (GimpSizeEntry *gimpsizeentry,
+                                            gpointer user_data);
+

+ +

+
++ + + + + + + + + + +
+gimpsizeentry :the object which received the signal. + +
+user_data :user data set when the signal handler was connected.
+
+
+
+

See Also

+

GimpUnit -

+

+

GimpUnitMenu -

+

+

gimp_coordinates_new() -

+

+
+ + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpUnitMenu.html gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpUnitMenu.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/GimpUnitMenu.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,27 +1,58 @@ -GimpUnitMenu

GimpUnitMenu

GimpUnitMenu — Widget for selecting a GimpUnit.

Synopsis

+
+
+
+GimpUnitMenu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpUnitMenu

+

GimpUnitMenu — Widget for selecting a GimpUnit.

+
+
+

Synopsis

+
 
 
 
             GimpUnitMenu;
 GtkWidget*  gimp_unit_menu_new              (const gchar *format,
+>GtkWidget*  gimp_unit_menu_new              (const gchar *format,
                                              GimpUnit unit,
-                                             gboolean show_pixels,
-                                             gboolean show_percent,
-                                             gboolean show_custom);
+                                             gboolean show_pixels,
+                                             gboolean show_percent,
+                                             gboolean show_custom);
 void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
                                              GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);
-gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);
+gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);
 void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
-                                             gint digits);
+                                             gint digits);
 
-

Object Hierarchy

+
+
+
+

Object Hierarchy

+
 
-  GObject
+  GObject
    +----GtkObject
@@ -61,124 +90,334 @@
 href="../gtk/GtkOptionMenu.html"
 >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

+ gpointer user_data); + +

+
+

Description

+

This widget provides a GtkOptionMenu which contains a list of GimpUnit's. -

+

+

You can specify the string that will be displayed for each unit by passing a printf-like format string to gimp_unit_menu_new(). -

+

+

The constructor also lets you choose if the menu should contain items for GIMP_UNIT_PIXEL, GIMP_UNIT_PERCENT and a "More..." item which will pop up a dialog for selecting user-defined units. -

+

+

Whenever the user selects a unit from the menu or the dialog, the "unit_changed" signal will be emitted. -

Details

GimpUnitMenu

typedef struct _GimpUnitMenu GimpUnitMenu;

- -


gimp_unit_menu_new ()


+
+
+

Details

+
+

+GimpUnitMenu

+
typedef struct _GimpUnitMenu GimpUnitMenu;
+

+ +

+
+
+
+

+gimp_unit_menu_new ()

+
GtkWidget*  gimp_unit_menu_new              (const gchar *format,
+>GtkWidget*  gimp_unit_menu_new              (const gchar *format,
                                              GimpUnit unit,
-                                             gboolean show_pixels,
-                                             gboolean show_percent,
-                                             gboolean show_custom);

+ gboolean show_pixels, + gboolean show_percent, + gboolean show_custom); +

Creates a new GimpUnitMenu widget. -

+

+

The format string supports the following percent expansions: -

-

% fFactor (how many units make up an inch)
% ySymbol (e.g. "''" for GIMP_UNIT_INCH)
% aAbbreviation
% sSingular
% pPlural
%%Literal percent

- -

+ + + + + + +
format : A printf-like format string which is used to create the unit +

+

+

+
++++ + + + + + + + + + + + + + + + + + + + + + + + + + + +
% fFactor (how many units make up an inch)
% ySymbol (e.g. "''" for GIMP_UNIT_INCH)
% aAbbreviation
% sSingular
% pPlural
%%Literal percent
+

+ +

+
++ + + + + + + + + + + + + + + + + + + +
+format : A printf-like format string which is used to create the unit strings. -
unit : The initially selected unit. -
show_pixels : TRUE if the unit menu should contain an item for +
+unit : The initially selected unit. +
+show_pixels : TRUE if the unit menu should contain an item for GIMP_UNIT_PIXEL. -
show_percent : TRUE in the unit menu should contain an item for +
+show_percent : TRUE in the unit menu should contain an item for GIMP_UNIT_PERCENT. -
show_custom : TRUE if the unit menu should contain a "More..." item for +
+show_custom : TRUE if the unit menu should contain a "More..." item for opening the user-defined-unit selection dialog. -
Returns : A pointer to the new GimpUnitMenu widget. -

gimp_unit_menu_set_unit ()

void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
+
+Returns : A pointer to the new GimpUnitMenu widget. +
+
+
+
+

+gimp_unit_menu_set_unit ()

+
void        gimp_unit_menu_set_unit         (GimpUnitMenu *menu,
                                              GimpUnit unit);

+>GimpUnit unit); +

Sets a new GimpUnit for the specified GimpUnitMenu.

+>GimpUnit for the specified GimpUnitMenu.

+

-

menu : The unit menu you want to set the unit for. -
unit : The new unit. -

+
+
+

+gimp_unit_menu_get_unit ()

+
GimpUnit    gimp_unit_menu_get_unit         (GimpUnitMenu *menu);

+>GimpUnit gimp_unit_menu_get_unit (GimpUnitMenu *menu); +

Returns the GimpUnit the user has selected from the GimpUnitMenu.

+>GimpUnit the user has selected from the GimpUnitMenu.

+

-

menu : The unit menu you want to know the unit of. -
Returns : The unit the user has selected. -

gimp_unit_menu_get_pixel_digits ()

gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);

+

+
++ + + + + + + + + + +
+menu : The unit menu you want to know the unit of. +
+Returns : The unit the user has selected. +
+
+
+
+

+gimp_unit_menu_get_pixel_digits ()

+
gint        gimp_unit_menu_get_pixel_digits (GimpUnitMenu *menu);
+

Retrieve the number of digits for a pixel size as set by -gimp_unit_set_pixel_digits().

+gimp_unit_set_pixel_digits().

+

-

menu : a GimpUnitMenu -
Returns : the configured number of digits for a pixel size -

gimp_unit_menu_set_pixel_digits ()

void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
-                                             gint digits);

+

+
++ + + + + + + + + + +
+menu : a GimpUnitMenu +
+Returns : the configured number of digits for a pixel size +
+
+
+
+

+gimp_unit_menu_set_pixel_digits ()

+
void        gimp_unit_menu_set_pixel_digits (GimpUnitMenu *menu,
+                                             gint digits);
+

A GimpUnitMenu can be setup to control the number of digits shown by attached spinbuttons. Please refer to the documentation of gimp_unit_menu_update() to see how this is done. -

+

+

This function allows to specify the number of digits shown for a size in pixels. Usually this is 0 (only full pixels). If you want to allow the user to specify sub-pixel sizes using the attached spinbuttons, specify the number of digits after the decimal point -here. You should do this after attaching your spinbuttons.

+here. You should do this after attaching your spinbuttons.

+

-

menu : a GimpUnitMenu -
digits : the number of digits to display for a pixel size -

Signals

The "unit-changed" signal

void        user_function                  (GimpUnitMenu *arg0,
-                                            gpointer user_data);

+

+
++ + + + + + + + + + +
+menu : a GimpUnitMenu +
+digits : the number of digits to display for a pixel size +
+
+
+
+

Signals

+
+

+The "unit-changed" signal

+
void        user_function                  (GimpUnitMenu *arg0,
+                                            gpointer user_data);
+

This signal is emitted whenever the user selects a GimpUnit from -the GimpUnitMenu.

+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 -

+

+

GimpSizeEntry -

+

+

gimp_coordinates_new() -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/index.html gimp-2.2.9/devel-docs/libgimpwidgets/html/index.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/index.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/index.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,7 +1,171 @@ -GIMP Widgets Library Reference Manual

- for GIMP 2.2.4 + + + +GIMP Widgets Library Reference Manual + + + + + + + + + + + + + + + +

+
+
+
+

+ for GIMP 2.2.9 -


Table of Contents

I. GIMP Widgets
Object Hierarchy
GimpButton - A GtkButton with a little extra functionality.
GimpChainButton - Widget to visually connect two entry widgets.
GimpColorArea - Displays a GimpRGB color, optionally with alpha-channel.
GimpColorButton - Widget for selecting a color from a simple button.
GimpColorHexEntry - Widget for entering a color's hex triplet.
GimpColorScale - Fancy colored sliders.
GimpColorSelection - Widget for doing a color selection.
GimpDialog - Constructors for GtkDialog's and action_areas as well as other -dialog-related stuff.
GimpFileEntry - Widget for entering a filename.
GimpFrame - A widget providing a HIG-compliant subclass of GtkFrame.
GimpIntComboBox - A widget providing a popup menu of integer values (e.g. enums).
GimpIntStore - A model for integer based name-value pairs (e.g. enums)
GimpMemsizeEntry - A composite widget that allows to enter a memory size.
GimpOffsetArea - Widget to control image offsets.
GimpPathEditor - Widget for editing a file search path.
GimpPickButton - Widget to pick a color from screen.
GimpPixmap - Widget which creates a GtkPixmap from XPM data.
GimpPreviewArea - A general purpose preview widget which caches its pixel data.
GimpPreview - A widget providing a GimpPreviewArea plus framework to update the preview.
GimpScrolledPreview - A widget providing a GimpPreview enhanced by scrolling capabilities.
GimpUnitMenu - Widget for selecting a GimpUnit.
Cell Renderers for GtkTreeView
GimpCellRendererColor -
GimpCellRendererToggle -
II. GIMP Display Filters
GimpColorDisplay - Pluggable GIMP display color correction modules.
GimpColorDisplayStack -
III. GIMP Color Selectors
GimpColorSelector - Pluggable GIMP color selector modules.
GimpColorNotebook - A GimpColorSelector implementation.
GimpColorScales - A GimpColorSelector implementation.
GimpColorSelect - A GimpColorSelector implementation.
IV. GIMP Controllers
GimpController - Pluggable GIMP input controller modules.
V. GIMP Widgets Utilities
GimpHelpUI - Functions for setting GtkTooltips and help identifier used by GIMP help -system.
GimpQueryBox - Some simple dialogs to enter a single int, double, string or boolean value.
GimpSizeEntry - Widget for entering pixel values and resolutions.
GimpStock - Prebuilt common menu/toolbar items and corresponding icons
GimpWidgets - A collection of convenient widget constructors, standard callbacks and -helper functions.
VI. Deprecated API
gimpoldwidgets - Old API that is still available but declared as deprecated.
+

+
+
+
+
+

Table of Contents

+
+
I. GIMP Widgets
+
+
Object Hierarchy
+
+GimpButton - A GtkButton with a little extra functionality. +
+
+GimpChainButton - Widget to visually connect two entry widgets. +
+
+GimpColorArea - Displays a GimpRGB color, optionally with alpha-channel. +
+
+GimpColorButton - Widget for selecting a color from a simple button. +
+
+GimpColorHexEntry - Widget for entering a color's hex triplet. +
+
+GimpColorScale - Fancy colored sliders. +
+
+GimpColorSelection - Widget for doing a color selection. +
+
+GimpDialog - Constructors for GtkDialog's and action_areas as well as other +dialog-related stuff. +
+
+GimpFileEntry - Widget for entering a filename. +
+
+GimpFrame - A widget providing a HIG-compliant subclass of GtkFrame. +
+
+GimpIntComboBox - A widget providing a popup menu of integer values (e.g. enums). +
+
+GimpIntStore - A model for integer based name-value pairs (e.g. enums) +
+
+GimpMemsizeEntry - A composite widget that allows to enter a memory size. +
+
+GimpOffsetArea - Widget to control image offsets. +
+
+GimpPathEditor - Widget for editing a file search path. +
+
+GimpPickButton - Widget to pick a color from screen. +
+
+GimpPixmap - Widget which creates a GtkPixmap from XPM data. +
+
+GimpPreviewArea - A general purpose preview widget which caches its pixel data. +
+
+GimpPreview - A widget providing a GimpPreviewArea plus framework to update the preview. +
+
+GimpScrolledPreview - A widget providing a GimpPreview enhanced by scrolling capabilities. +
+
+GimpUnitMenu - Widget for selecting a GimpUnit. +
+
+
Cell Renderers for GtkTreeView
+
+
+GimpCellRendererColor - +
+
+GimpCellRendererToggle - +
+
+
II. GIMP Display Filters
+
+
+GimpColorDisplay - Pluggable GIMP display color correction modules. +
+
+GimpColorDisplayStack - +
+
+
III. GIMP Color Selectors
+
+
+GimpColorSelector - Pluggable GIMP color selector modules. +
+
+GimpColorNotebook - A GimpColorSelector implementation. +
+
+GimpColorScales - A GimpColorSelector implementation. +
+
+GimpColorSelect - A GimpColorSelector implementation. +
+
+
IV. GIMP Controllers
+
+GimpController - Pluggable GIMP input controller modules. +
+
V. GIMP Widgets Utilities
+
+
+GimpHelpUI - Functions for setting GtkTooltips and help identifier used by GIMP help +system. +
+
+GimpQueryBox - Some simple dialogs to enter a single int, double, string or boolean value. +
+
+GimpSizeEntry - Widget for entering pixel values and resolutions. +
+
+GimpStock - Prebuilt common menu/toolbar items and corresponding icons +
+
+GimpWidgets - A collection of convenient widget constructors, standard callbacks and +helper functions. +
+
+
VI. Deprecated API
+
+gimpoldwidgets - Old API that is still available but declared as deprecated. +
+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-cell-renderers.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,45 @@ -Cell Renderers for GtkTreeView

Cell Renderers for GtkTreeView

+ + + +Cell Renderers for GtkTreeView + + + + + + + + + + + + + + + + + + + + + + + +
+

+Cell Renderers for GtkTreeView

+ +
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-colordisplay.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part II. GIMP Display Filters

GIMP Display Filters

+ + + +Part II. GIMP Display Filters + + + + + + + + + + + + + + + + + + + + + + + +

+GIMP Display Filters

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-colorselector.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part III. GIMP Color Selectors

GIMP Color Selectors

+ + + +Part III. GIMP Color Selectors + + + + + + + + + + + + + + + + + + + + + + + +

+GIMP Color Selectors

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-controller.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,3 +1,40 @@ -Part IV. GIMP Controllers

GIMP Controllers

+ + + +Part IV. GIMP Controllers + + + + + + + + + + + + + + + + + + + + + + + +

+

+GIMP Controllers

+

Note that the controller API is work in progress. -

+

+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-deprecated.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part VI. Deprecated API

Deprecated API

+ + + +Part VI. Deprecated API + + + + + + + + + + + + + + + + + + + + + + + +

+Deprecated API

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpHelpUI.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,65 +1,99 @@ -GimpHelpUI
+ +

GimpHelpUI

GimpHelpUI — Functions for setting + + +GimpHelpUI + + + + + + + + + + + + + + + + + + + + + + + + +

+
+
+
+

GimpHelpUI

+

GimpHelpUI — Functions for setting GtkTooltips and help identifier used by GIMP help -system.

Synopsis

+system.

+
+
+

Synopsis

+
 
 
 
-void        (*GimpHelpFunc)                 (const gchar *help_id,
-                                             gpointer help_data);
+void        (*GimpHelpFunc)                 (const gchar *help_id,
+                                             gpointer help_data);
 #define     GIMP_HELP_ID
 void        gimp_help_enable_tooltips       (void);
 void        gimp_help_disable_tooltips      (void);
-void        gimp_standard_help_func         (const gchar *help_id,
-                                             gpointer help_data);
+void        gimp_standard_help_func         (const gchar *help_id,
+                                             gpointer help_data);
 void        gimp_help_connect               (GtkWidget *widget,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             gpointer help_data);
+                                             const gchar *help_id,
+                                             gpointer help_data);
 void        gimp_help_set_help_data         (GtkWidget *widget,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);
+                                             const gchar *tooltip,
+                                             const gchar *help_id);
 void        gimp_context_help               (GtkWidget *widget);
 
-

Description

- -

Details

GimpHelpFunc ()

void        (*GimpHelpFunc)                 (const gchar *help_id,
-                                             gpointer help_data);

+ +

+
+

Description

+

+ +

+
+
+

Details

+
+

+GimpHelpFunc ()

+
void        (*GimpHelpFunc)                 (const gchar *help_id,
+                                             gpointer help_data);
+

This is the prototype for all functions you pass as help_func to the various GIMP dialog constructors like gimp_dialog_new(), gimp_query_int_box() etc. -

+

+

Help IDs are textual identifiers the help system uses to figure which page to display. -

+

+

All these dialog constructors functions call gimp_help_connect(). -

+

+

In most cases it will be ok to use gimp_standard_help_func() which does nothing but passing the help_id string to gimp_help() to actually display the help. -

help_id : -
help_data : - - -

GIMP_HELP_ID

#define GIMP_HELP_ID (gimp_help_id_quark ())
-

+

+
++ + + + + + + + + + +
+help_id : +
+help_data : + + +
+
+
+
+

+GIMP_HELP_ID

+
#define GIMP_HELP_ID (gimp_help_id_quark ())
+
+

Since: GIMP 2.2 -


gimp_help_enable_tooltips ()

void        gimp_help_enable_tooltips       (void);

+

+
+
+
+

+gimp_help_enable_tooltips ()

+
void        gimp_help_enable_tooltips       (void);
+

This function calls gtk_tooltips_enable().

+>gtk_tooltips_enable().

+

-


gimp_help_disable_tooltips ()

void        gimp_help_disable_tooltips      (void);

+

+
+
+
+

+gimp_help_disable_tooltips ()

+
void        gimp_help_disable_tooltips      (void);
+

This function calls gtk_tooltips_disable().

+>gtk_tooltips_disable().

+

-


gimp_standard_help_func ()

void        gimp_standard_help_func         (const gchar *help_id,
-                                             gpointer help_data);

+

+
+
+
+

+gimp_standard_help_func ()

+
void        gimp_standard_help_func         (const gchar *help_id,
+                                             gpointer help_data);
+

This is the standard GIMP help function which does nothing but calling gimp_help(). It is the right function to use in almost all cases.

+>gimp_help(). It is the right function to use in almost all cases.

+

-

help_id : A unique help identifier. -
help_data : The help_data passed to gimp_help_connect(). -

+
+
+

+gimp_help_connect ()

+
void        gimp_help_connect               (GtkWidget *widget,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             gpointer help_data);

+ const gchar *help_id, + gpointer help_data); +

Note that this function is automatically called by all libgimp dialog constructors. You only have to call it for windows/dialogs you created -"manually".

+"manually".

+

-

+ + + + + + + + + + + + + +
widget : The widget you want to connect the help accelerator for. Will +

+
++ + + +
+widget : The widget you want to connect the help accelerator for. Will be a GtkWindow in most cases. -
help_func : The function which will be called if the user presses "F1". -
help_id : The help_id which will be passed to help_func. -
help_data : The help_data pointer which will be passed to help_func. -

gimp_help_set_help_data ()

void        gimp_help_set_help_data         (
+
+help_func : The function which will be called if the user presses "F1". +
+help_id : The help_id which will be passed to help_func. +
+help_data : The help_data pointer which will be passed to help_func. +
+
+
+
+

+gimp_help_set_help_data ()

+
void        gimp_help_set_help_data         (GtkWidget *widget,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);

+ const gchar *tooltip, + const gchar *help_id); +

The reason why we don't use gtk_tooltips_set_tip() is that it's impossible to set a private_tip (aka help_id) without a visible tooltip. -

+

+

This function can be called with NULL for tooltip. Use this feature if you want to set a help link for a widget which shouldn't have -a visible tooltip.

+a visible tooltip.

+

-

+
+
+
+

+gimp_context_help ()

+
void        gimp_context_help               (GtkWidget *widget);

+>GtkWidget *widget); +

This function invokes the context help inspector. -

+

+

The mouse cursor will turn turn into a question mark and the user can click on any widget of the application which started the inspector. -

+

+

If the widget the user clicked on has a help_id string attached (see gimp_help_set_help_data()), the corresponding help page will be displayed. Otherwise the help system will ascend the widget hierarchy until it finds an attached help_id string (which should be the -case at least for every window/dialog).

+case at least for every window/dialog).

+

-

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-gimpoldwidgets.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,112 +1,117 @@ -gimpoldwidgets

gimpoldwidgets

gimpoldwidgets — Old API that is still available but declared as deprecated.

Synopsis

+
+
+
+gimpoldwidgets
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

gimpoldwidgets

+

gimpoldwidgets — Old API that is still available but declared as deprecated.

+
+
+

Synopsis

+
 
 
 
 GtkWidget*  gimp_int_option_menu_new        (gboolean menu_only,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gint initial,
+>GtkWidget*  gimp_int_option_menu_new        (gboolean menu_only,
+                                             GCallback menu_item_callback,
+                                             gpointer menu_item_callback_data,
+                                             gint initial,
                                              ...);
 void        gimp_int_option_menu_set_history
                                             (GtkOptionMenu *option_menu,
-                                             gint item_data);
-gboolean    (*GimpIntOptionMenuSensitivityCallback)
-                                            (gint item_data,
-                                             gpointer callback_data);
+                                             gint item_data);
+gboolean    (*GimpIntOptionMenuSensitivityCallback)
+                                            (gint item_data,
+                                             gpointer callback_data);
 void        gimp_int_option_menu_set_sensitive
                                             (GtkOptionMenu *option_menu,
                                              GimpIntOptionMenuSensitivityCallback callback,
-                                             gpointer callback_data);
+                                             gpointer callback_data);
 GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
+>GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
                                              ...);
 GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gpointer initial,
+>GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
+                                             GCallback menu_item_callback,
+                                             gpointer menu_item_callback_data,
+                                             gpointer initial,
                                              ...);
 void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
-                                             gpointer item_data);
-gboolean    (*GimpOptionMenuSensitivityCallback)
-                                            (gpointer item_data,
-                                             gpointer callback_data);
+                                             gpointer item_data);
+gboolean    (*GimpOptionMenuSensitivityCallback)
+                                            (gpointer item_data,
+                                             gpointer callback_data);
 void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
                                              GimpOptionMenuSensitivityCallback callback,
-                                             gpointer callback_data);
+                                             gpointer callback_data);
 void        gimp_menu_item_update           (GtkWidget *widget,
-                                             gpointer data);
-

Description

+ gpointer data); +

+
+
+

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        (gboolean menu_only,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gint initial,
-                                             ...);

Warning

gimp_int_option_menu_new is deprecated and should not be used in newly-written code.

+>GtkWidget* gimp_int_option_menu_new (gboolean menu_only, + GCallback menu_item_callback, + gpointer menu_item_callback_data, + gint initial, + ...); +

+

Warning

+

gimp_int_option_menu_new is deprecated and should not be used in newly-written code.

+
+

Convenience function to create a GtkOptionMenu or a gimp_option_menu_new2(), but it takes integers as item_data instead of pointers, since that is a very common case (mapping an -enum to a menu).

+enum to a menu).

+

-

+
+
+
+

+gimp_int_option_menu_set_history ()

+
void        gimp_int_option_menu_set_history
                                             (GtkOptionMenu *option_menu,
-                                             gint item_data);

Warning

gimp_int_option_menu_set_history is deprecated and should not be used in newly-written code.

+ gint item_data); +

+

Warning

+

gimp_int_option_menu_set_history is deprecated and should not be used in newly-written code.

+
+

Iterates over all entries in a GtkOptionMenu and selects the one with the @@ -148,112 +196,259 @@ >GtkOptionMenu that was created using gimp_int_option_menu_new(). This function does the same thing as gimp_option_menu_set_history(), but takes integers as -item_data instead of pointers.

+item_data instead of pointers.

+

-

+ + + + + + +
option_menu : A +
++ + + +
+option_menu : A GtkOptionMenu as returned by gimp_int_option_menu_new(). -
item_data : The item_data of the menu item you want to select. -

GimpIntOptionMenuSensitivityCallback ()

gboolean    (*GimpIntOptionMenuSensitivityCallback)
-                                            (gint item_data,
-                                             gpointer callback_data);

Warning

GimpIntOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

- -

item_data : -
callback_data : -
Returns : - - -

gimp_int_option_menu_set_sensitive ()

void        gimp_int_option_menu_set_sensitive
+
+item_data : The item_data of the menu item you want to select. +
+
+
+
+

+GimpIntOptionMenuSensitivityCallback ()

+
gboolean    (*GimpIntOptionMenuSensitivityCallback)
+                                            (gint item_data,
+                                             gpointer callback_data);
+
+

Warning

+

GimpIntOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

+
+

+ +

+
++ + + + + + + + + + + + + + +
+item_data : +
+callback_data : +
+Returns : + + +
+
+
+
+

+gimp_int_option_menu_set_sensitive ()

+
void        gimp_int_option_menu_set_sensitive
                                             (GtkOptionMenu *option_menu,
                                              GimpIntOptionMenuSensitivityCallback callback,
-                                             gpointer callback_data);

Warning

gimp_int_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

+ gpointer callback_data); +

+

Warning

+

gimp_int_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

+
+

Calls the given callback for each item in the menu and passes it the item_data and the callback_data. The menu item's sensitivity is set according to the return value of this function. This function does the same thing as gimp_option_menu_set_sensitive(), but takes integers as -item_data instead of pointers.

+item_data instead of pointers.

+

-

+
+
+
+

+gimp_option_menu_new ()

+
GtkWidget*  gimp_option_menu_new            (gboolean menu_only,
-                                             ...);

Warning

gimp_option_menu_new is deprecated and should not be used in newly-written code.

+>GtkWidget* gimp_option_menu_new (gboolean menu_only, + ...); +

+

Warning

+

gimp_option_menu_new is deprecated and should not be used in newly-written code.

+
+

Convenience function to create a GtkOptionMenu or a GtkMenu.

+>GtkMenu.

+

-

+
+
+
+

+gimp_option_menu_new2 ()

+
GtkWidget*  gimp_option_menu_new2           (gboolean menu_only,
-                                             GCallback menu_item_callback,
-                                             gpointer menu_item_callback_data,
-                                             gpointer initial,
-                                             ...);

Warning

gimp_option_menu_new2 is deprecated and should not be used in newly-written code.

+>GtkWidget* gimp_option_menu_new2 (gboolean menu_only, + GCallback menu_item_callback, + gpointer menu_item_callback_data, + gpointer initial, + ...); +

+

Warning

+

gimp_option_menu_new2 is deprecated and should not be used in newly-written code.

+
+

Convenience function to create a GtkOptionMenu or a GtkMenu.

+>GtkMenu.

+

-

+
+
+
+

+gimp_option_menu_set_history ()

+
void        gimp_option_menu_set_history    (GtkOptionMenu *option_menu,
-                                             gpointer item_data);

Warning

gimp_option_menu_set_history is deprecated and should not be used in newly-written code.

+ gpointer item_data); +

+

Warning

+

gimp_option_menu_set_history is deprecated and should not be used in newly-written code.

+
+

Iterates over all entries in a GtkOptionMenu and selects the one @@ -261,61 +456,168 @@ a GtkOptionMenu that was created using gimp_option_menu_new() or -gimp_option_menu_new2().

+gimp_option_menu_new2().

+

-

+ + + + + +
option_menu : A +
++ + + +
+option_menu : A GtkOptionMenu as returned by gimp_option_menu_new() or gimp_option_menu_new2(). -
item_data : The item_data of the menu item you want to select. -

GimpOptionMenuSensitivityCallback ()

gboolean    (*GimpOptionMenuSensitivityCallback)
-                                            (gpointer item_data,
-                                             gpointer callback_data);

Warning

GimpOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

- -

item_data : -
callback_data : -
Returns : - - -

gimp_option_menu_set_sensitive ()

void        gimp_option_menu_set_sensitive  (
+
+item_data : The item_data of the menu item you want to select. +
+
+
+
+

+GimpOptionMenuSensitivityCallback ()

+
gboolean    (*GimpOptionMenuSensitivityCallback)
+                                            (gpointer item_data,
+                                             gpointer callback_data);
+
+

Warning

+

GimpOptionMenuSensitivityCallback is deprecated and should not be used in newly-written code.

+
+

+ +

+
++ + + + + + + + + + + + + + +
+item_data : +
+callback_data : +
+Returns : + + +
+
+
+
+

+gimp_option_menu_set_sensitive ()

+
void        gimp_option_menu_set_sensitive  (GtkOptionMenu *option_menu,
                                              GimpOptionMenuSensitivityCallback callback,
-                                             gpointer callback_data);

Warning

gimp_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

+ gpointer callback_data); +

+

Warning

+

gimp_option_menu_set_sensitive is deprecated and should not be used in newly-written code.

+
+

Calls the given callback for each item in the menu and passes it the item_data and the callback_data. The menu item's sensitivity is set -according to the return value of this function.

+according to the return value of this function.

+

-

+
+
+ +
+
+

See Also

+

GimpIntComboBox -

+

+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpQueryBox.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,627 +1,1017 @@ -GimpQueryBox

GimpQueryBox

GimpQueryBox — Some simple dialogs to enter a single int, double, string or boolean value.

Synopsis

+
+
+
+GimpQueryBox
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpQueryBox

+

GimpQueryBox — Some simple dialogs to enter a single int, double, string or boolean value.

+
+
+

Synopsis

+
 
 
 
 void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
-                                             const gchar *string,
-                                             gpointer data);
+                                             const gchar *string,
+                                             gpointer data);
 void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
-                                             gint value,
-                                             gpointer data);
+                                             gint value,
+                                             gpointer data);
 void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
-                                             gdouble value,
-                                             gpointer data);
+                                             gdouble value,
+                                             gpointer data);
 void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
-                                             gdouble size,
+                                             gdouble size,
                                              GimpUnit unit,
-                                             gpointer data);
+                                             gpointer data);
 void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
-                                             gboolean value,
-                                             gpointer data);
+                                             gboolean value,
+                                             gpointer data);
 GtkWidget*  gimp_query_string_box           (const gchar *title,
+>GtkWidget*  gimp_query_string_box           (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             const gchar *initial,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             const gchar *initial,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryStringCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_query_int_box              (const gchar *title,
+>GtkWidget*  gimp_query_int_box              (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gint initial,
-                                             gint lower,
-                                             gint upper,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gint initial,
+                                             gint lower,
+                                             gint upper,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryIntCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_query_double_box           (const gchar *title,
+>GtkWidget*  gimp_query_double_box           (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryDoubleCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_query_size_box             (const gchar *title,
+>GtkWidget*  gimp_query_size_box             (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
                                              GimpUnit unit,
-                                             gdouble resolution,
-                                             gboolean dot_for_dot,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             gdouble resolution,
+                                             gboolean dot_for_dot,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQuerySizeCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_query_boolean_box          (const gchar *title,
+>GtkWidget*  gimp_query_boolean_box          (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *stock_id,
-                                             const gchar *message,
-                                             const gchar *true_button,
-                                             const gchar *false_button,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *stock_id,
+                                             const gchar *message,
+                                             const gchar *true_button,
+                                             const gchar *false_button,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryBooleanCallback callback,
-                                             gpointer data);
+                                             gpointer data);
 #define     GIMP_QUERY_BOX_VBOX             (qbox)
-

Description

+

+
+
+

Description

+

These functions provide simple dialogs for entering a single string, integer, double, boolean or pixel size value. -

+

+

They return a pointer to a GtkDialog which has to be shown with gtk_widget_show() by the caller. -

+

+

The dialogs contain an entry widget for the kind of value they ask for and "OK" and "Cancel" buttons. On "Cancel", all query boxes except the boolean one silently destroy themselves. On "OK" the user defined callback function is called and returns the entered value. -

Details

GimpQueryStringCallback ()

void        (*GimpQueryStringCallback)      (
+
+
+

Details

+
+

+GimpQueryStringCallback ()

+
void        (*GimpQueryStringCallback)      (GtkWidget *query_box,
-                                             const gchar *string,
-                                             gpointer data);

-Note that you have to g_free() the returned string. -

query_box :The query box. -
string :The entered string. -
data :The user data. - - -

+
+
+

+GimpQueryIntCallback ()

+
void        (*GimpQueryIntCallback)         (GtkWidget *query_box,
-                                             gint value,
-                                             gpointer data);

- -

query_box :The query box. -
value :The entered integer value. -
data :The user data. - - -

+
+
+

+GimpQueryDoubleCallback ()

+
void        (*GimpQueryDoubleCallback)      (GtkWidget *query_box,
-                                             gdouble value,
-                                             gpointer data);

- -

query_box :The query box. -
value :The entered double value. -
data :The user data. - - -

+
+
+

+GimpQuerySizeCallback ()

+
void        (*GimpQuerySizeCallback)        (GtkWidget *query_box,
-                                             gdouble size,
+                                             gdouble size,
                                              GimpUnit unit,
-                                             gpointer data);

+ gpointer data); +

-

query_box :The query box. -
size :The entered size in pixels. -
unit :The selected unit from the GimpUnitMenu. -
data :The user data. - - -

+
+
+

+GimpQueryBooleanCallback ()

+
void        (*GimpQueryBooleanCallback)     (GtkWidget *query_box,
-                                             gboolean value,
-                                             gpointer data);

- -

query_box :The query box. -
value :The entered boolean value. -
data :The user data. - - -

+
+
+

+gimp_query_string_box ()

+
GtkWidget*  gimp_query_string_box           (const gchar *title,
+>GtkWidget*  gimp_query_string_box           (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             const gchar *initial,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             const gchar *initial,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryStringCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkDialog that queries the user for a string value.

+>GtkDialog that queries the user for a string value.

+

-

+ +
title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. -
Returns : A pointer to the new +
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : The query box dialog's title. +
+parent : The dialog's parent widget. +
+help_func : The help function to show this dialog's help page. +
+help_id : A string identifying this dialog's help page. +
+message : A string which will be shown above the dialog's entry widget. +
+initial : The initial value. +
+object : The object this query box is associated with. +
+signal : The object's signal which will cause the query box to be closed. +
+callback : The function which will be called when the user selects "OK". +
+data : The callback's user data. +
+Returns : A pointer to the new GtkDialog. -

gimp_query_int_box ()


+
+
+
+
+

+gimp_query_int_box ()

+
GtkWidget*  gimp_query_int_box              (const gchar *title,
+>GtkWidget*  gimp_query_int_box              (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gint initial,
-                                             gint lower,
-                                             gint upper,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gint initial,
+                                             gint lower,
+                                             gint upper,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryIntCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkDialog that queries the user for an integer value.

+>GtkDialog that queries the user for an integer value.

+

-

+ +
title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
lower : The lower boundary of the range of possible values. -
upper : The upper boundray of the range of possible values. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. -
Returns : A pointer to the new +
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : The query box dialog's title. +
+parent : The dialog's parent widget. +
+help_func : The help function to show this dialog's help page. +
+help_id : A string identifying this dialog's help page. +
+message : A string which will be shown above the dialog's entry widget. +
+initial : The initial value. +
+lower : The lower boundary of the range of possible values. +
+upper : The upper boundray of the range of possible values. +
+object : The object this query box is associated with. +
+signal : The object's signal which will cause the query box to be closed. +
+callback : The function which will be called when the user selects "OK". +
+data : The callback's user data. +
+Returns : A pointer to the new GtkDialog. -

gimp_query_double_box ()


+
+
+
+
+

+gimp_query_double_box ()

+
GtkWidget*  gimp_query_double_box           (const gchar *title,
+>GtkWidget*  gimp_query_double_box           (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryDoubleCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkDialog that queries the user for a double value.

+>GtkDialog that queries the user for a double value.

+

-

+ +
title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
lower : The lower boundary of the range of possible values. -
upper : The upper boundray of the range of possible values. -
digits : The number of decimal digits the +
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : The query box dialog's title. +
+parent : The dialog's parent widget. +
+help_func : The help function to show this dialog's help page. +
+help_id : A string identifying this dialog's help page. +
+message : A string which will be shown above the dialog's entry widget. +
+initial : The initial value. +
+lower : The lower boundary of the range of possible values. +
+upper : The upper boundray of the range of possible values. +
+digits : The number of decimal digits the GtkSpinButton will provide. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. -
Returns : A pointer to the new +
+object : The object this query box is associated with. +
+signal : The object's signal which will cause the query box to be closed. +
+callback : The function which will be called when the user selects "OK". +
+data : The callback's user data. +
+Returns : A pointer to the new GtkDialog. -

gimp_query_size_box ()


+
+
+
+
+

+gimp_query_size_box ()

+
GtkWidget*  gimp_query_size_box             (const gchar *title,
+>GtkWidget*  gimp_query_size_box             (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *message,
-                                             gdouble initial,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gint digits,
+                                             const gchar *help_id,
+                                             const gchar *message,
+                                             gdouble initial,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gint digits,
                                              GimpUnit unit,
-                                             gdouble resolution,
-                                             gboolean dot_for_dot,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             gdouble resolution,
+                                             gboolean dot_for_dot,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQuerySizeCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkDialog that queries the user for a size using a -GimpSizeEntry.

+GimpSizeEntry.

+

-

+ +
title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
message : A string which will be shown above the dialog's entry widget. -
initial : The initial value. -
lower : The lower boundary of the range of possible values. -
upper : The upper boundray of the range of possible values. -
digits : The number of decimal digits the GimpSizeEntry provide in +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : The query box dialog's title. +
+parent : The dialog's parent widget. +
+help_func : The help function to show this dialog's help page. +
+help_id : A string identifying this dialog's help page. +
+message : A string which will be shown above the dialog's entry widget. +
+initial : The initial value. +
+lower : The lower boundary of the range of possible values. +
+upper : The upper boundray of the range of possible values. +
+digits : The number of decimal digits the GimpSizeEntry provide in "pixel" mode. -
unit : The unit initially shown by the GimpUnitMenu. -
resolution : The resolution (in dpi) which will be used for pixel/unit +
+unit : The unit initially shown by the GimpUnitMenu. +
+resolution : The resolution (in dpi) which will be used for pixel/unit calculations. -
dot_for_dot : TRUE if the GimpUnitMenu's initial unit should be "pixels". -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box +
+dot_for_dot : TRUE if the GimpUnitMenu's initial unit should be "pixels". +
+object : The object this query box is associated with. +
+signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user selects "OK". -
data : The callback's user data. -
Returns : A pointer to the new +
+callback : The function which will be called when the user selects "OK". +
+data : The callback's user data. +
+Returns : A pointer to the new GtkDialog. -

gimp_query_boolean_box ()


+
+
+
+
+

+gimp_query_boolean_box ()

+
GtkWidget*  gimp_query_boolean_box          (const gchar *title,
+>GtkWidget*  gimp_query_boolean_box          (const gchar *title,
                                              GtkWidget *parent,
                                              GimpHelpFunc help_func,
-                                             const gchar *help_id,
-                                             const gchar *stock_id,
-                                             const gchar *message,
-                                             const gchar *true_button,
-                                             const gchar *false_button,
-                                             GObject *object,
-                                             const gchar *signal,
+                                             const gchar *help_id,
+                                             const gchar *stock_id,
+                                             const gchar *message,
+                                             const gchar *true_button,
+                                             const gchar *false_button,
+                                             GObject *object,
+                                             const gchar *signal,
                                              GimpQueryBooleanCallback callback,
-                                             gpointer data);

+ gpointer data); +

Creates a new GtkDialog that asks the user to do a boolean decision.

+>GtkDialog that asks the user to do a boolean decision.

+

-

+ + +
title : The query box dialog's title. -
parent : The dialog's parent widget. -
help_func : The help function to show this dialog's help page. -
help_id : A string identifying this dialog's help page. -
stock_id : A stock_id to specify an icon to appear on the left +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+title : The query box dialog's title. +
+parent : The dialog's parent widget. +
+help_func : The help function to show this dialog's help page. +
+help_id : A string identifying this dialog's help page. +
+stock_id : A stock_id to specify an icon to appear on the left on the dialog's message. -
message : A string which will be shown in the query box. -
true_button : The string to be shown in the dialog's left button. -
false_button : The string to be shown in the dialog's right button. -
object : The object this query box is associated with. -
signal : The object's signal which will cause the query box +
+message : A string which will be shown in the query box. +
+true_button : The string to be shown in the dialog's left button. +
+false_button : The string to be shown in the dialog's right button. +
+object : The object this query box is associated with. +
+signal : The object's signal which will cause the query box to be closed. -
callback : The function which will be called when the user clicks one +
+callback : The function which will be called when the user clicks one of the buttons. -
data : The callback's user data. -
Returns : A pointer to the new +
+data : The callback's user data. +
+Returns : A pointer to the new GtkDialog. -

GIMP_QUERY_BOX_VBOX()

#define     GIMP_QUERY_BOX_VBOX(qbox)

+

+
+
+
+

+GIMP_QUERY_BOX_VBOX()

+
#define     GIMP_QUERY_BOX_VBOX(qbox)
+

A macro to access the GtkVBox in a GimpQueryBox. Useful if you want to add more widgets. -

qbox : - - -

See Also

+

+
++ + + + +
+qbox : + + +
+
+
+
+

See Also

+

GimpSizeEntry -

+

+

GimpUnitMenu -

+

+ + + + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpScrolledPreview.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,14 +1,74 @@ -GimpScrolledPreview

GimpScrolledPreview

GimpScrolledPreview — A widget providing a GimpPreview enhanced by scrolling capabilities.

Synopsis

+
+
+
+GimpScrolledPreview
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpScrolledPreview

+

GimpScrolledPreview — A widget providing a GimpPreview enhanced by scrolling capabilities.

+
+
+

Synopsis

+
 
 
 
             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.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html 2005-06-27 00:24:10.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,4 +1,43 @@ -GimpStock

GimpStock

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

Synopsis

+
+
+
+GimpStock
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpStock

+

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

+
+
+

Synopsis

+
 
 
 
@@ -182,655 +221,1925 @@
 #define     GIMP_STOCK_PALETTE
 #define     GIMP_STOCK_PATTERN
 #define     GIMP_STOCK_ZOOM_FOLLOW_WINDOW
-

Description

+

+
+
+

Description

+

GIMP registers a set of menu/toolbar items and corresponding icons in addition to the standard GTK+ stock items. These can be used just like GTK+ stock items. GIMP also overrides a few of the GTK+ icons (namely the ones in dialog size). -

+

+

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.

+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.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html~ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html~ --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html~ 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpStock.html~ 2005-10-27 17:14:10.000000000 +0200 @@ -0,0 +1,2145 @@ + + + +GimpStock + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+

GimpStock

+

GimpStock — Prebuilt common menu/toolbar items and corresponding icons

+
+
+

Synopsis

+
+
+
+
+void        gimp_stock_init                 (void);
+
+#define     GIMP_STOCK_ANCHOR
+#define     GIMP_STOCK_CENTER
+#define     GIMP_STOCK_DUPLICATE
+#define     GIMP_STOCK_EDIT
+#define     GIMP_STOCK_RESET
+#define     GIMP_STOCK_CLOSE
+#define     GIMP_STOCK_MENU_LEFT
+#define     GIMP_STOCK_MENU_RIGHT
+#define     GIMP_STOCK_MOVE_TO_SCREEN
+#define     GIMP_STOCK_INVERT
+#define     GIMP_STOCK_LAYER_TO_IMAGESIZE
+#define     GIMP_STOCK_MERGE_DOWN
+#define     GIMP_STOCK_NAVIGATION
+#define     GIMP_STOCK_PASTE_AS_NEW
+#define     GIMP_STOCK_PASTE_INTO
+#define     GIMP_STOCK_PATH_STROKE
+#define     GIMP_STOCK_PLUGIN
+#define     GIMP_STOCK_QMASK_OFF
+#define     GIMP_STOCK_QMASK_ON
+#define     GIMP_STOCK_HISTOGRAM
+#define     GIMP_STOCK_HISTOGRAM_LINEAR
+#define     GIMP_STOCK_HISTOGRAM_LOGARITHMIC
+#define     GIMP_STOCK_RESHOW_FILTER
+#define     GIMP_STOCK_RESIZE
+#define     GIMP_STOCK_FLIP_HORIZONTAL
+#define     GIMP_STOCK_FLIP_VERTICAL
+#define     GIMP_STOCK_ROTATE_180
+#define     GIMP_STOCK_ROTATE_270
+#define     GIMP_STOCK_ROTATE_90
+#define     GIMP_STOCK_SCALE
+#define     GIMP_STOCK_LINKED
+#define     GIMP_STOCK_VISIBLE
+#define     GIMP_STOCK_LIST
+#define     GIMP_STOCK_GRID
+#define     GIMP_STOCK_PORTRAIT
+#define     GIMP_STOCK_LANDSCAPE
+#define     GIMP_STOCK_VIDEO
+#define     GIMP_STOCK_WEB
+#define     GIMP_STOCK_IMAGE
+#define     GIMP_STOCK_LAYER
+#define     GIMP_STOCK_LAYER_MASK
+#define     GIMP_STOCK_CHANNEL
+#define     GIMP_STOCK_CHANNEL_RED
+#define     GIMP_STOCK_CHANNEL_GREEN
+#define     GIMP_STOCK_CHANNEL_BLUE
+#define     GIMP_STOCK_CHANNEL_GRAY
+#define     GIMP_STOCK_CHANNEL_INDEXED
+#define     GIMP_STOCK_CHANNEL_ALPHA
+#define     GIMP_STOCK_PATH
+#define     GIMP_STOCK_TEXT_LAYER
+#define     GIMP_STOCK_FLOATING_SELECTION
+#define     GIMP_STOCK_TEMPLATE
+#define     GIMP_STOCK_IMAGES
+#define     GIMP_STOCK_LAYERS
+#define     GIMP_STOCK_CHANNELS
+#define     GIMP_STOCK_PATHS
+#define     GIMP_STOCK_INDEXED_PALETTE
+#define     GIMP_STOCK_SHAPE_CIRCLE
+#define     GIMP_STOCK_SHAPE_SQUARE
+#define     GIMP_STOCK_SHAPE_DIAMOND
+#define     GIMP_STOCK_CAP_BUTT
+#define     GIMP_STOCK_CAP_ROUND
+#define     GIMP_STOCK_CAP_SQUARE
+#define     GIMP_STOCK_JOIN_MITER
+#define     GIMP_STOCK_JOIN_ROUND
+#define     GIMP_STOCK_JOIN_BEVEL
+#define     GIMP_STOCK_SELECTION
+#define     GIMP_STOCK_SELECTION_ALL
+#define     GIMP_STOCK_SELECTION_NONE
+#define     GIMP_STOCK_SELECTION_GROW
+#define     GIMP_STOCK_SELECTION_SHRINK
+#define     GIMP_STOCK_SELECTION_BORDER
+#define     GIMP_STOCK_SELECTION_ADD
+#define     GIMP_STOCK_SELECTION_SUBTRACT
+#define     GIMP_STOCK_SELECTION_REPLACE
+#define     GIMP_STOCK_SELECTION_INTERSECT
+#define     GIMP_STOCK_SELECTION_STROKE
+#define     GIMP_STOCK_SELECTION_TO_CHANNEL
+#define     GIMP_STOCK_SELECTION_TO_PATH
+#define     GIMP_STOCK_GRADIENT_LINEAR
+#define     GIMP_STOCK_GRADIENT_BILINEAR
+#define     GIMP_STOCK_GRADIENT_RADIAL
+#define     GIMP_STOCK_GRADIENT_SQUARE
+#define     GIMP_STOCK_GRADIENT_CONICAL_SYMMETRIC
+#define     GIMP_STOCK_GRADIENT_CONICAL_ASYMMETRIC
+#define     GIMP_STOCK_GRADIENT_SHAPEBURST_SPHERICAL
+#define     GIMP_STOCK_GRADIENT_SHAPEBURST_ANGULAR
+#define     GIMP_STOCK_GRADIENT_SHAPEBURST_DIMPLED
+#define     GIMP_STOCK_GRADIENT_SPIRAL_CLOCKWISE
+#define     GIMP_STOCK_GRADIENT_SPIRAL_ANTICLOCKWISE
+#define     GIMP_STOCK_GRAVITY_NORTH_WEST
+#define     GIMP_STOCK_GRAVITY_NORTH
+#define     GIMP_STOCK_GRAVITY_NORTH_EAST
+#define     GIMP_STOCK_GRAVITY_WEST
+#define     GIMP_STOCK_GRAVITY_EAST
+#define     GIMP_STOCK_GRAVITY_SOUTH_WEST
+#define     GIMP_STOCK_GRAVITY_SOUTH
+#define     GIMP_STOCK_GRAVITY_SOUTH_EAST
+#define     GIMP_STOCK_CHAR_PICKER
+#define     GIMP_STOCK_LETTER_SPACING
+#define     GIMP_STOCK_LINE_SPACING
+#define     GIMP_STOCK_TEXT_DIR_LTR
+#define     GIMP_STOCK_TEXT_DIR_RTL
+#define     GIMP_STOCK_PRINT_RESOLUTION
+#define     GIMP_STOCK_TOOLS
+#define     GIMP_STOCK_TOOL_OPTIONS
+#define     GIMP_STOCK_DEVICE_STATUS
+#define     GIMP_STOCK_DISPLAY_FILTER
+#define     GIMP_STOCK_CURVE_FREE
+#define     GIMP_STOCK_CURVE_SMOOTH
+#define     GIMP_STOCK_COLOR_PICKER_BLACK
+#define     GIMP_STOCK_COLOR_PICKER_GRAY
+#define     GIMP_STOCK_COLOR_PICKER_WHITE
+#define     GIMP_STOCK_COLOR_TRIANGLE
+#define     GIMP_STOCK_COLOR_PICK_FROM_SCREEN
+#define     GIMP_STOCK_CONVERT_GRAYSCALE
+#define     GIMP_STOCK_CONVERT_INDEXED
+#define     GIMP_STOCK_CONVERT_RGB
+#define     GIMP_STOCK_TRANSPARENCY
+#define     GIMP_STOCK_DEFAULT_COLORS
+#define     GIMP_STOCK_SWAP_COLORS
+#define     GIMP_STOCK_UNDO_HISTORY
+#define     GIMP_STOCK_TOOL_AIRBRUSH
+#define     GIMP_STOCK_TOOL_BLEND
+#define     GIMP_STOCK_TOOL_BLUR
+#define     GIMP_STOCK_TOOL_BRIGHTNESS_CONTRAST
+#define     GIMP_STOCK_TOOL_BUCKET_FILL
+#define     GIMP_STOCK_TOOL_BY_COLOR_SELECT
+#define     GIMP_STOCK_TOOL_CLONE
+#define     GIMP_STOCK_TOOL_COLOR_BALANCE
+#define     GIMP_STOCK_TOOL_COLOR_PICKER
+#define     GIMP_STOCK_TOOL_COLORIZE
+#define     GIMP_STOCK_TOOL_CROP
+#define     GIMP_STOCK_TOOL_CURVES
+#define     GIMP_STOCK_TOOL_DODGE
+#define     GIMP_STOCK_TOOL_ELLIPSE_SELECT
+#define     GIMP_STOCK_TOOL_ERASER
+#define     GIMP_STOCK_TOOL_FLIP
+#define     GIMP_STOCK_TOOL_FREE_SELECT
+#define     GIMP_STOCK_TOOL_FUZZY_SELECT
+#define     GIMP_STOCK_TOOL_HUE_SATURATION
+#define     GIMP_STOCK_TOOL_INK
+#define     GIMP_STOCK_TOOL_ISCISSORS
+#define     GIMP_STOCK_TOOL_LEVELS
+#define     GIMP_STOCK_TOOL_MEASURE
+#define     GIMP_STOCK_TOOL_MOVE
+#define     GIMP_STOCK_TOOL_PAINTBRUSH
+#define     GIMP_STOCK_TOOL_PATH
+#define     GIMP_STOCK_TOOL_PENCIL
+#define     GIMP_STOCK_TOOL_PERSPECTIVE
+#define     GIMP_STOCK_TOOL_POSTERIZE
+#define     GIMP_STOCK_TOOL_RECT_SELECT
+#define     GIMP_STOCK_TOOL_ROTATE
+#define     GIMP_STOCK_TOOL_SCALE
+#define     GIMP_STOCK_TOOL_SHEAR
+#define     GIMP_STOCK_TOOL_SMUDGE
+#define     GIMP_STOCK_TOOL_TEXT
+#define     GIMP_STOCK_TOOL_THRESHOLD
+#define     GIMP_STOCK_TOOL_ZOOM
+#define     GIMP_STOCK_HCHAIN
+#define     GIMP_STOCK_HCHAIN_BROKEN
+#define     GIMP_STOCK_VCHAIN
+#define     GIMP_STOCK_VCHAIN_BROKEN
+#define     GIMP_STOCK_TEXTURE
+#define     GIMP_STOCK_FRAME
+#define     GIMP_STOCK_ERROR
+#define     GIMP_STOCK_INFO
+#define     GIMP_STOCK_QUESTION
+#define     GIMP_STOCK_WARNING
+#define     GIMP_STOCK_WILBER
+#define     GIMP_STOCK_WILBER_EEK
+#define     GIMP_STOCK_BRUSH
+#define     GIMP_STOCK_BUFFER
+#define     GIMP_STOCK_FONT
+#define     GIMP_STOCK_GRADIENT
+#define     GIMP_STOCK_PALETTE
+#define     GIMP_STOCK_PATTERN
+#define     GIMP_STOCK_ZOOM_FOLLOW_WINDOW
+
+
+
+

Description

+

+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 +the ones in dialog size). +

+

+Stock icons may have a RTL variant which gets used for right-to-left +locales. +

+
+
+

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_CENTER

+
#define GIMP_STOCK_CENTER                   "gimp-center"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_DUPLICATE

+
#define GIMP_STOCK_DUPLICATE                "gimp-duplicate"
+
+

+ +

+
+
+
+

+GIMP_STOCK_EDIT

+
#define GIMP_STOCK_EDIT                     "gimp-edit"
+
+

+ +

+
+
+
+

+GIMP_STOCK_RESET

+
#define GIMP_STOCK_RESET                    "gimp-reset"
+
+

+ +

+
+
+
+

+GIMP_STOCK_CLOSE

+
#define GIMP_STOCK_CLOSE                    "gimp-close"
+
+

+ +

+
+
+
+

+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"
+
+

+ +RTL variant + +

+
+
+
+

+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_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_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_INTO

+
#define GIMP_STOCK_PASTE_INTO               "gimp-paste-into"
+
+

+ +

+
+
+
+

+GIMP_STOCK_PATH_STROKE

+
#define GIMP_STOCK_PATH_STROKE              "gimp-path-stroke"
+
+

+ +

+
+
+
+

+GIMP_STOCK_PLUGIN

+
#define GIMP_STOCK_PLUGIN                   "gimp-plugin"
+
+

+ +

+
+
+
+

+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_HISTOGRAM

+
#define GIMP_STOCK_HISTOGRAM                "gimp-histogram"
+
+

+ + +

+
+
+
+

+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_RESHOW_FILTER

+
#define GIMP_STOCK_RESHOW_FILTER            "gimp-reshow-filter"
+
+

+ +

+
+
+
+

+GIMP_STOCK_RESIZE

+
#define GIMP_STOCK_RESIZE                   "gimp-resize"
+
+

+ +

+
+
+
+

+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_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_90

+
#define GIMP_STOCK_ROTATE_90                "gimp-rotate-90"
+
+

+ +

+
+
+
+

+GIMP_STOCK_SCALE

+
#define GIMP_STOCK_SCALE                    "gimp-scale"
+
+

+ +

+
+
+
+

+GIMP_STOCK_LINKED

+
#define GIMP_STOCK_LINKED                   "gimp-linked"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_VISIBLE

+
#define GIMP_STOCK_VISIBLE                  "gimp-visible"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_LIST

+
#define GIMP_STOCK_LIST                     "gimp-list"
+
+

+ +

+
+
+
+

+GIMP_STOCK_GRID

+
#define GIMP_STOCK_GRID                     "gimp-grid"
+
+

+ +

+
+
+
+

+GIMP_STOCK_PORTRAIT

+
#define GIMP_STOCK_PORTRAIT                 "gimp-portrait"
+
+

+ +

+
+
+
+

+GIMP_STOCK_LANDSCAPE

+
#define GIMP_STOCK_LANDSCAPE                "gimp-landscape"
+
+

+ +

+
+
+
+

+GIMP_STOCK_VIDEO

+
#define GIMP_STOCK_VIDEO                    "gimp-video"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_WEB

+
#define GIMP_STOCK_WEB                      "gimp-web"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_IMAGE

+
#define GIMP_STOCK_IMAGE                    "gimp-image"
+
+

+ + + + +

+
+
+
+

+GIMP_STOCK_LAYER

+
#define GIMP_STOCK_LAYER                    "gimp-layer"
+
+

+ + + + +

+
+
+
+

+GIMP_STOCK_LAYER_MASK

+
#define GIMP_STOCK_LAYER_MASK               "gimp-layer-mask"
+
+

+ + + + +

+
+
+
+

+GIMP_STOCK_CHANNEL

+
#define GIMP_STOCK_CHANNEL                  "gimp-channel"
+
+

+ + + + +

+
+
+
+

+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_BLUE

+
#define GIMP_STOCK_CHANNEL_BLUE             "gimp-channel-blue"
+
+

+ + + + +

+
+
+
+

+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_ALPHA

+
#define GIMP_STOCK_CHANNEL_ALPHA            "gimp-channel-alpha"
+
+

+ + + + +

+
+
+
+

+GIMP_STOCK_PATH

+
#define GIMP_STOCK_PATH                     "gimp-path"
+
+

+ + +

+
+
+
+

+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_TEMPLATE

+
#define GIMP_STOCK_TEMPLATE                 "gimp-template"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_IMAGES

+
#define GIMP_STOCK_IMAGES                   "gimp-images"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_LAYERS

+
#define GIMP_STOCK_LAYERS                   "gimp-layers"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_CHANNELS

+
#define GIMP_STOCK_CHANNELS                 "gimp-channels"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_PATHS

+
#define GIMP_STOCK_PATHS                    "gimp-paths"
+
+

+ + +

+
+
+
+

+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_SQUARE

+
#define GIMP_STOCK_SHAPE_SQUARE             "gimp-shape-square"
+
+

+ +

+
+
+
+

+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_ROUND

+
#define GIMP_STOCK_CAP_ROUND                "gimp-cap-round"
+
+

+ +

+
+
+
+

+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_ROUND

+
#define GIMP_STOCK_JOIN_ROUND               "gimp-join-round"
+
+

+ +

+
+
+
+

+GIMP_STOCK_JOIN_BEVEL

+
#define GIMP_STOCK_JOIN_BEVEL               "gimp-join-bevel"
+
+

+ +

+
+
+
+

+GIMP_STOCK_SELECTION

+
#define GIMP_STOCK_SELECTION                "gimp-selection"
+
+

+ +

+
+
+
+

+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_GROW

+
#define GIMP_STOCK_SELECTION_GROW           "gimp-selection-grow"
+
+

+ +

+
+
+
+

+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_ADD

+
#define GIMP_STOCK_SELECTION_ADD            "gimp-selection-add"
+
+

+ +

+
+
+
+

+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_INTERSECT

+
#define GIMP_STOCK_SELECTION_INTERSECT      "gimp-selection-intersect"
+
+

+ +

+
+
+
+

+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_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_BILINEAR

+
#define GIMP_STOCK_GRADIENT_BILINEAR             "gimp-gradient-bilinear"
+
+

+ +

+
+
+
+

+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_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_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_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_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

+
#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_WEST

+
#define GIMP_STOCK_GRAVITY_WEST             "gimp-gravity-west"
+
+

+ +

+
+
+
+

+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

+
#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_CHAR_PICKER

+
#define GIMP_STOCK_CHAR_PICKER              "gimp-char-picker"
+
+

+ +

+
+
+
+

+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_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_PRINT_RESOLUTION

+
#define GIMP_STOCK_PRINT_RESOLUTION         "gimp-print-resolution"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_TOOLS

+
#define GIMP_STOCK_TOOLS                    "gimp-tools"
+
+

+ + +

+
+
+
+

+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_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_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_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_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_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_RGB

+
#define GIMP_STOCK_CONVERT_RGB              "gimp-convert-rgb"
+
+

+ +

+
+
+
+

+GIMP_STOCK_TRANSPARENCY

+
#define GIMP_STOCK_TRANSPARENCY             "gimp-transparency"
+
+

+ +

+
+
+
+

+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_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_BLEND

+
#define GIMP_STOCK_TOOL_BLEND               "gimp-tool-blend"
+
+

+ + +

+
+
+
+

+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_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_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_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_CROP

+
#define GIMP_STOCK_TOOL_CROP                "gimp-tool-crop"
+
+

+ + +

+
+
+
+

+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_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_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_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_INK

+
#define GIMP_STOCK_TOOL_INK                 "gimp-tool-ink"
+
+

+ + +

+
+
+
+

+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_MEASURE

+
#define GIMP_STOCK_TOOL_MEASURE             "gimp-tool-measure"
+
+

+ + +

+
+
+
+

+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_PATH

+
#define GIMP_STOCK_TOOL_PATH                "gimp-tool-path"
+
+

+ + +

+
+
+
+

+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_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_ROTATE

+
#define GIMP_STOCK_TOOL_ROTATE              "gimp-tool-rotate"
+
+

+ + +

+
+
+
+

+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_SMUDGE

+
#define GIMP_STOCK_TOOL_SMUDGE              "gimp-tool-smudge"
+
+

+ + +

+
+
+
+

+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_ZOOM

+
#define GIMP_STOCK_TOOL_ZOOM                "gimp-tool-zoom"
+
+

+ + +

+
+
+
+

+GIMP_STOCK_HCHAIN

+
#define GIMP_STOCK_HCHAIN                   "gimp-hchain"
+
+

+ +

+
+
+
+

+GIMP_STOCK_HCHAIN_BROKEN

+
#define GIMP_STOCK_HCHAIN_BROKEN            "gimp-hchain-broken"
+
+

+ +

+
+
+
+

+GIMP_STOCK_VCHAIN

+
#define GIMP_STOCK_VCHAIN                   "gimp-vchain"
+
+

+ +

+
+
+
+

+GIMP_STOCK_VCHAIN_BROKEN

+
#define GIMP_STOCK_VCHAIN_BROKEN            "gimp-vchain-broken"
+
+

+ +

+
+
+
+

+GIMP_STOCK_TEXTURE

+
#define GIMP_STOCK_TEXTURE                  "gimp-texture"
+
+

+ +

+
+
+
+

+GIMP_STOCK_FRAME

+
#define GIMP_STOCK_FRAME                    "gimp-frame"
+
+

+ +

+
+
+
+

+GIMP_STOCK_ERROR

+
#define GIMP_STOCK_ERROR                    "gimp-error"
+
+

+ +

+
+
+
+

+GIMP_STOCK_INFO

+
#define GIMP_STOCK_INFO                     "gimp-info"
+
+

+ + + +

+
+
+
+

+GIMP_STOCK_QUESTION

+
#define GIMP_STOCK_QUESTION                 "gimp-question"
+
+

+ +

+
+
+
+

+GIMP_STOCK_WARNING

+
#define GIMP_STOCK_WARNING                  "gimp-warning"
+
+

+ + + +

+
+
+
+

+GIMP_STOCK_WILBER

+
#define GIMP_STOCK_WILBER                   "gimp-wilber"
+
+

+ + +

+
+
+
+

+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_BUFFER

+
#define GIMP_STOCK_BUFFER                   GTK_STOCK_PASTE
+
+

+ +

+
+
+
+

+GIMP_STOCK_FONT

+
#define GIMP_STOCK_FONT                     GTK_STOCK_SELECT_FONT
+
+

+ +

+
+
+
+

+GIMP_STOCK_GRADIENT

+
#define GIMP_STOCK_GRADIENT                 GIMP_STOCK_TOOL_BLEND
+
+

+ +

+
+
+
+

+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_ZOOM_FOLLOW_WINDOW

+
#define GIMP_STOCK_ZOOM_FOLLOW_WINDOW       "gimp-zoom-follow-window"
+
+

+ +

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-GimpWidgets.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,94 +1,89 @@ -GimpWidgets

GimpWidgets

GimpWidgets — A collection of convenient widget constructors, standard callbacks and -helper functions.

Synopsis

+
+
+
+GimpWidgets
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+

GimpWidgets

+

GimpWidgets — A collection of convenient widget constructors, standard callbacks and +helper functions.

+
+
+

Synopsis

+
 
 
 
 GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
-                                             const gchar *frame_title,
+>GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
+                                             const gchar *frame_title,
                                              ...);
 GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gpointer initial,
+>GtkWidget*  gimp_radio_group_new2           (gboolean in_frame,
+                                             const gchar *frame_title,
+                                             GCallback radio_button_callback,
+                                             gpointer radio_button_callback_data,
+                                             gpointer initial,
                                              ...);
 void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
-                                             gpointer item_data);
+                                             gpointer item_data);
 GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gint initial,
+>GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
+                                             const gchar *frame_title,
+                                             GCallback radio_button_callback,
+                                             gpointer radio_button_callback_data,
+                                             gint initial,
                                              ...);
 void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
-                                             gint item_data);
+                                             gint item_data);
 GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             gdouble page_size,
-                                             gdouble climb_rate,
-                                             guint digits);
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             gdouble page_size,
+                                             gdouble climb_rate,
+                                             guint digits);
 #define     GIMP_SCALE_ENTRY_LABEL          (adj)
 #define     GIMP_SCALE_ENTRY_SCALE          (adj)
 #define     GIMP_SCALE_ENTRY_SCALE_ADJ      (adj)
@@ -99,70 +94,32 @@
 >GtkObject*  gimp_scale_entry_new            (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             gboolean constrain,
-                                             gdouble unconstrained_lower,
-                                             gdouble unconstrained_upper,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);
+                                             gint column,
+                                             gint row,
+                                             const gchar *text,
+                                             gint scale_width,
+                                             gint spinbutton_width,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             guint digits,
+                                             gboolean constrain,
+                                             gdouble unconstrained_lower,
+                                             gdouble unconstrained_upper,
+                                             const gchar *tooltip,
+                                             const gchar *help_id);
 void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
-                                             gboolean sensitive);
+                                             gboolean sensitive);
 void        gimp_scale_entry_set_logarithmic
                                             (GtkObject *adjustment,
-                                             gboolean logarithmic);
-gboolean    gimp_scale_entry_get_logarithmic
+                                             gboolean logarithmic);
+gboolean    gimp_scale_entry_get_logarithmic
                                             (GtkObject *adjustment);
@@ -171,131 +128,57 @@
 >GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);
+                                             gint column,
+                                             gint row,
+                                             const gchar *text,
+                                             gint scale_width,
+                                             gint spinbutton_width,
+                                             gdouble value,
+                                             gdouble lower,
+                                             gdouble upper,
+                                             gdouble step_increment,
+                                             gdouble page_increment,
+                                             guint digits,
+                                             const gchar *tooltip,
+                                             const gchar *help_id);
 #define     GIMP_RANDOM_SEED_SPINBUTTON     (hbox)
 #define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ (hbox)
 #define     GIMP_RANDOM_SEED_TOGGLE         (hbox)
 GtkWidget*  gimp_random_seed_new            (guint32 *seed,
-                                             gboolean *random_seed);
+>GtkWidget*  gimp_random_seed_new            (guint32 *seed,
+                                             gboolean *random_seed);
 #define     GIMP_COORDINATES_CHAINBUTTON    (sizeentry)
 GtkWidget*  gimp_coordinates_new            (GimpUnit unit,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy,
-                                             gboolean chainbutton_active,
-                                             gboolean chain_constrains_ratio,
-                                             const gchar *xlabel,
-                                             gdouble x,
-                                             gdouble xres,
-                                             gdouble lower_boundary_x,
-                                             gdouble upper_boundary_x,
-                                             gdouble xsize_0,
-                                             gdouble xsize_100,
-                                             const gchar *ylabel,
-                                             gdouble y,
-                                             gdouble yres,
-                                             gdouble lower_boundary_y,
-                                             gdouble upper_boundary_y,
-                                             gdouble ysize_0,
-                                             gdouble ysize_100);
+                                             gboolean chainbutton_active,
+                                             gboolean chain_constrains_ratio,
+                                             const gchar *xlabel,
+                                             gdouble x,
+                                             gdouble xres,
+                                             gdouble lower_boundary_x,
+                                             gdouble upper_boundary_x,
+                                             gdouble xsize_0,
+                                             gdouble xsize_100,
+                                             const gchar *ylabel,
+                                             gdouble y,
+                                             gdouble yres,
+                                             gdouble lower_boundary_y,
+                                             gdouble upper_boundary_y,
+                                             gdouble ysize_0,
+                                             gdouble ysize_100);
 GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
-                                             const gchar *text);
+>GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
+                                             const gchar *text);
 void        gimp_toggle_button_sensitive_update
                                             (gimp_toggle_button_update       (GtkWidget *widget,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_radio_button_update        (GtkWidget *widget,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_float_adjustment_update    (GtkAdjustment *adjustment,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_double_adjustment_update   (GtkAdjustment *adjustment,
-                                             gpointer data);
+                                             gpointer data);
 void        gimp_unit_menu_update           (GtkWidget *widget,
-                                             gpointer data);
+                                             gpointer data);
 GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *label_text,
-                                             gfloat xalign,
-                                             gfloat yalign,
+                                             gint column,
+                                             gint row,
+                                             const gchar *label_text,
+                                             gfloat xalign,
+                                             gfloat yalign,
                                              GtkWidget *widget,
-                                             gint colspan,
-                                             gboolean left_align);
+                                             gint colspan,
+                                             gboolean left_align);
 void        gimp_label_set_attributes       (GtkLabel *label,
                                              ...);
-

Description

- -

Details

gimp_radio_group_new ()

GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
-                                             const gchar *frame_title,
-                                             ...);

+

+
+
+

Description

+

+ +

+
+
+

Details

+
+

+gimp_radio_group_new ()

+
GtkWidget*  gimp_radio_group_new            (gboolean in_frame,
+                                             const gchar *frame_title,
+                                             ...);
+

Convenience function to create a group of radio buttons embedded into a GtkFrame or GtkVbox.

+>GtkFrame or GtkVbox.

+

-

+
+
+ +
+
+

+gimp_radio_group_set_active ()

+
void        gimp_radio_group_set_active     (GtkRadioButton *radio_button,
-                                             gpointer item_data);

+ gpointer item_data); +

Calls gtk_toggle_button_set_active() with the radio button that was -created with a matching item_data.

+created with a matching item_data.

+

-

+ + + + + + +
radio_button : Pointer to a +
++ + + +
+radio_button : Pointer to a GtkRadioButton. -
item_data : The item_data of the radio button you want to select. -

gimp_int_radio_group_new ()

GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
-                                             const gchar *frame_title,
-                                             GCallback radio_button_callback,
-                                             gpointer radio_button_callback_data,
-                                             gint initial,
-                                             ...);

+

+item_data : The item_data of the radio button you want to select. +
+
+
+
+

+gimp_int_radio_group_new ()

+
GtkWidget*  gimp_int_radio_group_new        (gboolean in_frame,
+                                             const gchar *frame_title,
+                                             GCallback radio_button_callback,
+                                             gpointer radio_button_callback_data,
+                                             gint initial,
+                                             ...);
+

Convenience function to create a group of radio buttons embedded into a GtkFrame or GtkVbox. This function does the same thing as gimp_radio_group_new2(), but it takes integers as item_data instead of pointers, since that is a very common case (mapping an enum to a radio -group).

+group).

+

-

+
+
+
+

+gimp_int_radio_group_set_active ()

+
void        gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
-                                             gint item_data);

+ gint item_data); +

Calls gtk_toggle_button_set_active() with the radio button that was created with a matching item_data. This function does the same thing as gimp_radio_group_set_active(), but takes integers as item_data instead -of pointers.

+of pointers.

+

-

+ + + + + +
radio_button : Pointer to a +
++ + + +
+radio_button : Pointer to a GtkRadioButton. -
item_data : The item_data of the radio button you want to select. -

gimp_spin_button_new ()


+
+item_data : The item_data of the radio button you want to select. +
+
+
+
+

+gimp_spin_button_new ()

+
GtkWidget*  gimp_spin_button_new            (GtkObject **adjustment,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             gdouble page_size,
-                                             gdouble climb_rate,
-                                             guint digits);

+ gdouble value, + gdouble lower, + gdouble upper, + gdouble step_increment, + gdouble page_increment, + gdouble page_size, + gdouble climb_rate, + guint digits); +

This function is a shortcut for gtk_adjustment_new() and a subsequent gtk_spin_button_new() and does some more initialisation stuff like -setting a standard minimum horizontal size.

+setting a standard minimum horizontal size.

+

-

+
+
+
+

+GIMP_SCALE_ENTRY_LABEL()

+
#define     GIMP_SCALE_ENTRY_LABEL(adj)
+

Returns the scale_entry's GtkLabel. -

+
+
+
+

+GIMP_SCALE_ENTRY_SCALE()

+
#define     GIMP_SCALE_ENTRY_SCALE(adj)
+

Returns the scale_entry's GtkHScale. -

+
+
+
+

+GIMP_SCALE_ENTRY_SCALE_ADJ()

+
#define     GIMP_SCALE_ENTRY_SCALE_ADJ(adj)
+

Returns the GtkAdjustment of the scale_entry's GtkHScale. -

+
+
+
+

+GIMP_SCALE_ENTRY_SPINBUTTON()

+
#define     GIMP_SCALE_ENTRY_SPINBUTTON(adj)
+

Returns the scale_entry's GtkSpinButton. -

+
+
+
+

+GIMP_SCALE_ENTRY_SPINBUTTON_ADJ()

+
#define     GIMP_SCALE_ENTRY_SPINBUTTON_ADJ(adj)
+

Returns the GtkAdjustment of the scale_entry's GtkSpinButton. -

+
+
+
+

+gimp_scale_entry_new ()

+
GtkObject*  gimp_scale_entry_new            (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             gboolean constrain,
-                                             gdouble unconstrained_lower,
-                                             gdouble unconstrained_upper,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);

+ gint column, + gint row, + const gchar *text, + gint scale_width, + gint spinbutton_width, + gdouble value, + gdouble lower, + gdouble upper, + gdouble step_increment, + gdouble page_increment, + guint digits, + gboolean constrain, + gdouble unconstrained_lower, + gdouble unconstrained_upper, + const gchar *tooltip, + const gchar *help_id); +

This function creates a GtkLabel, a GtkSpinButton and attaches them to a 3-column GtkTable.

+>GtkTable.

+

-

+ +
table : The +
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+table : The GtkTable the widgets will be attached to. -
column : The column to start with. -
row : The row to attach the widgets. -
text : The text for the +
+column : The column to start with. +
+row : The row to attach the widgets. +
+text : The text for the GtkLabel which will appear left of the GtkHScale. -
scale_width : The minimum horizontal size of the +
+scale_width : The minimum horizontal size of the GtkHScale. -
spinbutton_width : The minimum horizontal size of the +
+spinbutton_width : The minimum horizontal size of the GtkSpinButton. -
value : The initial value. -
lower : The lower boundary. -
upper : The upper boundary. -
step_increment : The step increment. -
page_increment : The page increment. -
digits : The number of decimal digits. -
constrain : TRUE if the range of possible values of the +
+value : The initial value. +
+lower : The lower boundary. +
+upper : The upper boundary. +
+step_increment : The step increment. +
+page_increment : The page increment. +
+digits : The number of decimal digits. +
+constrain : TRUE if the range of possible values of the GtkSpinButton should be the same as of the GtkHScale. -
unconstrained_lower : The spinbutton's lower boundary +
+unconstrained_lower : The spinbutton's lower boundary if constrain == FALSE. -
unconstrained_upper : The spinbutton's upper boundary +
+unconstrained_upper : The spinbutton's upper boundary if constrain == FALSE. -
tooltip : A tooltip message for the scale and the spinbutton. -
help_id : The widgets' help_id (see gimp_help_set_help_data()). -
Returns : The +
+tooltip : A tooltip message for the scale and the spinbutton. +
+help_id : The widgets' help_id (see gimp_help_set_help_data()). +
+Returns : The GtkSpinButton's GtkAdjustment. -

gimp_scale_entry_set_sensitive ()

void        gimp_scale_entry_set_sensitive  (
+
+
+
+
+

+gimp_scale_entry_set_sensitive ()

+
void        gimp_scale_entry_set_sensitive  (GtkObject *adjustment,
-                                             gboolean sensitive);

+ gboolean sensitive); +

Sets the sensitivity of the scale_entry's GtkLabel, GtkHScale and -GtkSpinbutton.

+GtkSpinbutton.

+

-

+
+
+
+

+gimp_scale_entry_set_logarithmic ()

+
void        gimp_scale_entry_set_logarithmic
                                             (GtkObject *adjustment,
-                                             gboolean logarithmic);

+ gboolean logarithmic); +

Sets whether the scale_entry's scale widget will behave in a linear or logharithmic fashion. Useful when an entry has to attend large ranges, but smaller selections on that range require a finer -adjustment.

+adjustment.

+

-

+

Since GIMP 2.2 +

+
+
+
+

+gimp_scale_entry_get_logarithmic ()

+
gboolean    gimp_scale_entry_get_logarithmic
                                             (GtkObject *adjustment);

-

- -

+ +
adjustment : a GtkObject *adjustment); +

+

+

+ +

+
++ + + + + + + +
+adjustment : a GtkAdjustment as returned by gimp_scale_entry_new() -
Returns : TRUE if the the entry's scale widget will behave in +
+Returns : TRUE if the the entry's scale widget will behave in logharithmic fashion, FALSE for linear behaviour. -

Since GIMP 2.2 -


gimp_color_scale_entry_new ()


+
+

Since GIMP 2.2 +

+
+
+
+

+gimp_color_scale_entry_new ()

+
GtkObject*  gimp_color_scale_entry_new      (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *text,
-                                             gint scale_width,
-                                             gint spinbutton_width,
-                                             gdouble value,
-                                             gdouble lower,
-                                             gdouble upper,
-                                             gdouble step_increment,
-                                             gdouble page_increment,
-                                             guint digits,
-                                             const gchar *tooltip,
-                                             const gchar *help_id);

+ gint column, + gint row, + const gchar *text, + gint scale_width, + gint spinbutton_width, + gdouble value, + gdouble lower, + gdouble upper, + gdouble step_increment, + gdouble page_increment, + guint digits, + const gchar *tooltip, + const gchar *help_id); +

This function creates a GtkLabel, a GimpColorScale and a @@ -824,78 +1066,225 @@ href="../gtk/GtkSpinButton.html" >GtkSpinButton and attaches them to a 3-column GtkTable.

+>GtkTable.

+

-

+ + +
table : The +
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+table : The GtkTable the widgets will be attached to. -
column : The column to start with. -
row : The row to attach the widgets. -
text : The text for the +
+column : The column to start with. +
+row : The row to attach the widgets. +
+text : The text for the GtkLabel which will appear left of the GtkHScale. -
scale_width : The minimum horizontal size of the +
+scale_width : The minimum horizontal size of the GtkHScale. -
spinbutton_width : The minimum horizontal size of the +
+spinbutton_width : The minimum horizontal size of the GtkSpinButton. -
value : The initial value. -
lower : The lower boundary. -
upper : The upper boundary. -
step_increment : The step increment. -
page_increment : The page increment. -
digits : The number of decimal digits. -
tooltip : A tooltip message for the scale and the spinbutton. -
help_id : The widgets' help_id (see gimp_help_set_help_data()). -
Returns : The +
+value : The initial value. +
+lower : The lower boundary. +
+upper : The upper boundary. +
+step_increment : The step increment. +
+page_increment : The page increment. +
+digits : The number of decimal digits. +
+tooltip : A tooltip message for the scale and the spinbutton. +
+help_id : The widgets' help_id (see gimp_help_set_help_data()). +
+Returns : The GtkSpinButton's GtkAdjustment. -

GIMP_RANDOM_SEED_SPINBUTTON()

#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)

+

+
+
+
+

+GIMP_RANDOM_SEED_SPINBUTTON()

+
#define     GIMP_RANDOM_SEED_SPINBUTTON(hbox)
+

Returns the random_seed's GtkSpinButton. -

+ +
hbox :The +
++ + +
+hbox :The GtkHBox returned by gimp_random_seed_new(). -

GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)

+

+
+
+
+

+GIMP_RANDOM_SEED_SPINBUTTON_ADJ()

+
#define     GIMP_RANDOM_SEED_SPINBUTTON_ADJ(hbox)
+

Returns the GtkAdjustment of the random_seed's GtkSpinButton. -

+ +
hbox :The +
++ + +
+hbox :The GtkHBox returned by gimp_random_seed_new(). -

GIMP_RANDOM_SEED_TOGGLE()

#define     GIMP_RANDOM_SEED_TOGGLE(hbox)

- -

hbox : - - -

gimp_random_seed_new ()

GtkWidget*  gimp_random_seed_new            (guint32 *seed,
-                                             gboolean *random_seed);

+

+
+
+
+

+GIMP_RANDOM_SEED_TOGGLE()

+
#define     GIMP_RANDOM_SEED_TOGGLE(hbox)
+

+ +

+
++ + + + +
+hbox : + + +
+
+
+
+

+gimp_random_seed_new ()

+
GtkWidget*  gimp_random_seed_new            (guint32 *seed,
+                                             gboolean *random_seed);
+

Creates a widget that allows the user to control how the random number -generator is initialized.

+generator is initialized.

+

-

+ + +
seed : A pointer to the variable which stores the random seed. -
random_seed : A pointer to a boolean indicating whether seed should be +

+
++ + + + + + + + + + +
+seed : A pointer to the variable which stores the random seed. +
+random_seed : A pointer to a boolean indicating whether seed should be initialised randomly or not. -
Returns : A +
+Returns : A GtkHBox containing a GtkButton for setting a random seed. -

GIMP_COORDINATES_CHAINBUTTON()

#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)

+

+
+
+
+

+GIMP_COORDINATES_CHAINBUTTON()

+
#define     GIMP_COORDINATES_CHAINBUTTON(sizeentry)
+

Returns the GimpChainButton which is attached to the GimpSizeEntry. -

sizeentry :The GimpSizeEntry returned by gimp_coordinates_new(). - - -

+
+
+

+gimp_coordinates_new ()

+
GtkWidget*  gimp_coordinates_new            (GimpUnit unit,
-                                             const gchar *unit_format,
-                                             gboolean menu_show_pixels,
-                                             gboolean menu_show_percent,
-                                             gint spinbutton_width,
+                                             const gchar *unit_format,
+                                             gboolean menu_show_pixels,
+                                             gboolean menu_show_percent,
+                                             gint spinbutton_width,
                                              GimpSizeEntryUpdatePolicy update_policy,
-                                             gboolean chainbutton_active,
-                                             gboolean chain_constrains_ratio,
-                                             const gchar *xlabel,
-                                             gdouble x,
-                                             gdouble xres,
-                                             gdouble lower_boundary_x,
-                                             gdouble upper_boundary_x,
-                                             gdouble xsize_0,
-                                             gdouble xsize_100,
-                                             const gchar *ylabel,
-                                             gdouble y,
-                                             gdouble yres,
-                                             gdouble lower_boundary_y,
-                                             gdouble upper_boundary_y,
-                                             gdouble ysize_0,
-                                             gdouble ysize_100);

+ gboolean chainbutton_active, + gboolean chain_constrains_ratio, + const gchar *xlabel, + gdouble x, + gdouble xres, + gdouble lower_boundary_x, + gdouble upper_boundary_x, + gdouble xsize_0, + gdouble xsize_100, + const gchar *ylabel, + gdouble y, + gdouble yres, + gdouble lower_boundary_y, + gdouble upper_boundary_y, + gdouble ysize_0, + gdouble ysize_100); +

Convenience function that creates a GimpSizeEntry with two fields for x/y coordinates/sizes with a GimpChainButton attached to constrain either the -two fields' values or the ratio between them.

+two fields' values or the ratio between them.

+

-

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
unit : The initial unit of the GimpUnitMenu. -
unit_format : A printf-like unit-format string as is used with +

+
++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+unit : The initial unit of the GimpUnitMenu. +
+unit_format : A printf-like unit-format string as is used with gimp_unit_menu_new(). -
menu_show_pixels : TRUE if the GimpUnitMenu should contain an item +
+menu_show_pixels : TRUE if the GimpUnitMenu should contain an item for GIMP_UNIT_PIXEL. -
menu_show_percent : TRUE if the GimpUnitMenu should contain an item +
+menu_show_percent : TRUE if the GimpUnitMenu should contain an item for GIMP_UNIT_PERCENT. -
spinbutton_width : The horizontal size of the GimpSizeEntry's +
+spinbutton_width : The horizontal size of the GimpSizeEntry's GtkSpinButton's. -
update_policy : The update policy for the GimpSizeEntry. -
chainbutton_active : TRUE if the attached GimpChainButton should be +
+update_policy : The update policy for the GimpSizeEntry. +
+chainbutton_active : TRUE if the attached GimpChainButton should be active. -
chain_constrains_ratio : TRUE if the chainbutton should constrain the +
+chain_constrains_ratio : TRUE if the chainbutton should constrain the fields' aspect ratio. If FALSE, the values will be constrained. -
xlabel : The label for the X coordinate. -
x : The initial value of the X coordinate. -
xres : The horizontal resolution in DPI. -
lower_boundary_x : The lower boundary of the X coordinate. -
upper_boundary_x : The upper boundary of the X coordinate. -
xsize_0 : The X value which will be treated as 0%. -
xsize_100 : The X value which will be treated as 100%. -
ylabel : The label for the Y coordinate. -
y : The initial value of the Y coordinate. -
yres : The vertical resolution in DPI. -
lower_boundary_y : The lower boundary of the Y coordinate. -
upper_boundary_y : The upper boundary of the Y coordinate. -
ysize_0 : The Y value which will be treated as 0%. -
ysize_100 : The Y value which will be treated as 100%. -
Returns : The new GimpSizeEntry. -

gimp_pixmap_button_new ()

GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
-                                             const gchar *text);

Warning

gimp_pixmap_button_new is deprecated and should not be used in newly-written code.

+

+xlabel : The label for the X coordinate. +
+x : The initial value of the X coordinate. +
+xres : The horizontal resolution in DPI. +
+lower_boundary_x : The lower boundary of the X coordinate. +
+upper_boundary_x : The upper boundary of the X coordinate. +
+xsize_0 : The X value which will be treated as 0%. +
+xsize_100 : The X value which will be treated as 100%. +
+ylabel : The label for the Y coordinate. +
+y : The initial value of the Y coordinate. +
+yres : The vertical resolution in DPI. +
+lower_boundary_y : The lower boundary of the Y coordinate. +
+upper_boundary_y : The upper boundary of the Y coordinate. +
+ysize_0 : The Y value which will be treated as 0%. +
+ysize_100 : The Y value which will be treated as 100%. +
+Returns : The new GimpSizeEntry. +
+
+
+
+

+gimp_pixmap_button_new ()

+
GtkWidget*  gimp_pixmap_button_new          (gchar **xpm_data,
+                                             const gchar *text);
+
+

Warning

+

gimp_pixmap_button_new is deprecated and should not be used in newly-written code.

+
+

Convenience function that creates a GtkButton with a GimpPixmap and an optional GtkLabel.

+>GtkLabel.

+

-

+ + +
xpm_data : The XPM data which will be passed to gimp_pixmap_new(). -
text : An optional text which will appear right of the pixmap. -
Returns : The new +
++ + + + + + + + + + + +
+xpm_data : The XPM data which will be passed to gimp_pixmap_new(). +
+text : An optional text which will appear right of the pixmap. +
+Returns : The new GtkButton. -

gimp_toggle_button_sensitive_update ()

void        gimp_toggle_button_sensitive_update
+
+
+
+
+

+gimp_toggle_button_sensitive_update ()

+
void        gimp_toggle_button_sensitive_update
                                             (GtkToggleButton *toggle_button);

+>GtkToggleButton *toggle_button); +

If you attached a pointer to a GtkWidget with g_object_set_data() and +>GtkWidget with g_object_set_data() and the "set_sensitive" key to the GtkToggleButton, the sensitive state of the attached widget will be set according to the toggle button's "active" state. -

+

+

You can attach an arbitrary list of widgets by attaching another "set_sensitive" data pointer to the first widget (and so on...). -

+

+

This function can also set the sensitive state according to the toggle button's inverse "active" state by attaching widgets with the -"inverse_sensitive" key.

+"inverse_sensitive" key.

+

-

+
+
+
+

+gimp_toggle_button_update ()

+
void        gimp_toggle_button_update       (GtkWidget *widget,
-                                             gpointer data);

-Note that this function calls gimp_toggle_button_sensitive_update().

- -

+ +
widget : A +

+Note that this function calls gimp_toggle_button_sensitive_update().

+

+ +

+
++ + + + + + + +
+widget : A GtkToggleButton. -
data : A pointer to a gint variable which will store the value of +
+data : A pointer to a gint variable which will store the value of gtk_toggle_button_get_active(). -

gimp_radio_button_update ()

void        gimp_radio_button_update        (
+
+
+
+
+

+gimp_radio_button_update ()

+
void        gimp_radio_button_update        (GtkWidget *widget,
-                                             gpointer data);

-Note that this function calls gimp_toggle_button_sensitive_update().

- -

+ +
widget : A +

+Note that this function calls gimp_toggle_button_sensitive_update().

+

+ +

+
++ + + + + + + +
+widget : A GtkRadioButton. -
data : A pointer to a gint variable which will store the value of +
+data : A pointer to a gint variable which will store the value of GPOINTER_TO_INT (g_object_get_data (widget, "gimp-item-data")). -

gimp_int_adjustment_update ()

void        gimp_int_adjustment_update      (
+
+
+
+
+

+gimp_int_adjustment_update ()

+
void        gimp_int_adjustment_update      (GtkAdjustment *adjustment,
-                                             gpointer data);

+ gpointer data); +

Note that the GtkAdjustment's value (which is a gdouble) will be +>GtkAdjustment's value (which is a gdouble) will be rounded with RINT().

+>RINT().

+

-

+
+
+
+

+gimp_uint_adjustment_update ()

+
void        gimp_uint_adjustment_update     (GtkAdjustment *adjustment,
-                                             gpointer data);

+ gpointer data); +

Note that the GtkAdjustment's value (which is a gdouble) will be rounded -with (guint) (value + 0.5).

- -

+ +
adjustment : A GtkAdjustment's value (which is a gdouble) will be rounded +with (guint) (value + 0.5).

+

+ +

+
++ + + + + + + +
+adjustment : A GtkAdjustment. -
data : A pointer to a guint variable which will store the +
+data : A pointer to a 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,
-                                             gpointer data);

-

- -

+
+
+ +
+
+

+gimp_unit_menu_update ()

+
void        gimp_unit_menu_update           (GtkWidget *widget,
-                                             gpointer data);

+ gpointer data); +

This callback can set the number of decimal digits of an arbitrary number of GtkSpinButton's. To use this functionality, attach the spinbuttons -as list of data pointers attached with g_object_set_data() with the +as list of data pointers attached with g_object_set_data() with the "set_digits" key. -

+

+

See gimp_toggle_button_sensitive_update() for a description of how -to set up the list.

+to set up the list.

+

-

+
+
+
+

+gimp_table_attach_aligned ()

+
GtkWidget*  gimp_table_attach_aligned       (GtkTable *table,
-                                             gint column,
-                                             gint row,
-                                             const gchar *label_text,
-                                             gfloat xalign,
-                                             gfloat yalign,
+                                             gint column,
+                                             gint row,
+                                             const gchar *label_text,
+                                             gfloat xalign,
+                                             gfloat yalign,
                                              GtkWidget *widget,
-                                             gint colspan,
-                                             gboolean left_align);

+ gint colspan, + gboolean left_align); +

Note that the label_text can be NULL and that the widget will be -attached starting at (column + 1) in this case, too.

+attached starting at (column + 1) in this case, too.

+

-

+
+
+
+

+gimp_label_set_attributes ()

+
void        gimp_label_set_attributes       (GtkLabel *label,
-                                             ...);

+ ...); +

Sets Pango attributes on a GtkLabel in a more convenient way than gtk_label_set_attributes(). -

+

+

This function is useful if you want to change the font attributes of a GtkLabel. This is an alternative to using PangoMarkup which is slow to parse and akward to handle in an i18n-friendly way. -

+

+

The attributes are set on the complete label, from start to end. If you need to set attributes on part of the label, you will have to -use the PangoAttributes API directly.

+use the PangoAttributes API directly.

+

-

+

Since GIMP 2.2 +

+
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-hierarchy.html 2005-10-27 17:14:10.000000000 +0200 @@ -1,7 +1,36 @@ -Object Hierarchy

Object Hierarchy

-    GObject
+
+
+
+Object Hierarchy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+Object Hierarchy

+
+    GObject
         GtkObject
@@ -101,4 +130,11 @@
 href="../gtk/GtkListStore.html"
 >GtkListStore
             GimpIntStore
-
+
+
+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-utils.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part V. GIMP Widgets Utilities

GIMP Widgets Utilities

+ + + +Part V. GIMP Widgets Utilities + + + + + + + + + + + + + + + + + + + + + + + +

+GIMP Widgets Utilities

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html --- gimp-2.2.8/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html 2005-06-27 00:18:47.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/html/libgimpwidgets-widgets.html 2005-10-27 17:14:10.000000000 +0200 @@ -1 +1,35 @@ -Part I. GIMP Widgets

GIMP Widgets

+ + + +Part I. GIMP Widgets + + + + + + + + + + + + + + + + + + + + + + + +

+GIMP Widgets

+ + + + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/Makefile.in gimp-2.2.9/devel-docs/libgimpwidgets/Makefile.in --- gimp-2.2.8/devel-docs/libgimpwidgets/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/Makefile.in 2005-10-27 17:11:39.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -19,7 +19,6 @@ #################################### # Everything below here is generic # #################################### - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -27,7 +26,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -41,7 +39,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/version.in $(top_srcdir)/gtk-doc.make +subdir = devel-docs/libgimpwidgets +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = version +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -240,6 +253,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -290,6 +304,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -336,6 +351,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -374,7 +391,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - AUTOMAKE_OPTIONS = 1.6 # The name of the module. @@ -429,7 +445,6 @@ @GTK_CFLAGS@ \ -DGIMP_ENABLE_CONTROLLER_UNDER_CONSTRUCTION - GTKDOC_LIBS = \ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ @@ -438,7 +453,6 @@ @GTK_LIBS@ @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_CC = $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) - @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_CC = $(LIBTOOL) --mode=compile $(CC) $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) @GTK_DOC_USE_LIBTOOL_FALSE@GTKDOC_LD = $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @GTK_DOC_USE_LIBTOOL_TRUE@GTKDOC_LD = $(LIBTOOL) --mode=link $(CC) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) @@ -449,24 +463,15 @@ # searched for in VPATH/GPATH. # GPATH = $(srcdir) - TARGET_DIR = $(HTML_DIR)/$(DOC_MODULE) - # Other files to distribute -EXTRA_DIST = \ - $(content_files) \ - $(HTML_IMAGES) \ - $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ - $(DOC_MODULE)-sections.txt \ - $(DOC_MODULE)-overrides.txt\ -version.in - +EXTRA_DIST = $(content_files) $(HTML_IMAGES) $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt \ + version.in DOC_STAMPS = scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \ $(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp - SCANOBJ_FILES = \ $(DOC_MODULE).args \ $(DOC_MODULE).hierarchy \ @@ -474,25 +479,40 @@ $(DOC_MODULE).prerequisites \ $(DOC_MODULE).signals - CLEANFILES = $(SCANOBJ_FILES) $(DOC_MODULE)-unused.txt $(DOC_STAMPS) -subdir = devel-docs/libgimpwidgets -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = version -DIST_SOURCES = -DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/gtk-doc.make \ - Makefile.am version.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/gtk-doc.make $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/gtk-doc.make $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/libgimpwidgets/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/libgimpwidgets/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -version: $(top_builddir)/config.status version.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +version: $(top_builddir)/config.status $(srcdir)/version.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -510,13 +530,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/$(IMAGES_DIR) $(distdir)/$(IMAGES_DIR)/tools $(distdir)/../.. + $(mkdir_p) $(distdir)/$(IMAGES_DIR) $(distdir)/$(IMAGES_DIR)/tools $(distdir)/../.. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -528,7 +544,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -549,7 +565,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -571,7 +586,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -588,6 +603,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -622,12 +639,13 @@ uninstall-am: uninstall-info-am uninstall-local .PHONY: all all-am all-local check check-am clean clean-generic \ - clean-libtool clean-local distclean distclean-generic \ - distclean-libtool distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ + clean-libtool clean-local dist-hook distclean \ + distclean-generic distclean-libtool distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-local @@ -640,7 +658,7 @@ @ENABLE_GTK_DOC_TRUE@scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @ENABLE_GTK_DOC_TRUE@ @echo '*** Scanning header files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ +@ENABLE_GTK_DOC_TRUE@ if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ @ENABLE_GTK_DOC_TRUE@ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ @ENABLE_GTK_DOC_TRUE@ else \ @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) ; \ @@ -660,7 +678,7 @@ @ENABLE_GTK_DOC_TRUE@tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @ENABLE_GTK_DOC_TRUE@ @echo '*** Rebuilding template files ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) -@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) +@ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch tmpl-build.stamp @ENABLE_GTK_DOC_TRUE@tmpl.stamp: tmpl-build.stamp @@ -668,11 +686,11 @@ #### xml #### -@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +@ENABLE_GTK_DOC_TRUE@sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @ENABLE_GTK_DOC_TRUE@ @echo '*** Building XML ***' @ENABLE_GTK_DOC_TRUE@ @-chmod -R u+w $(srcdir) @ENABLE_GTK_DOC_TRUE@ cd $(srcdir) && \ -@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) +@ENABLE_GTK_DOC_TRUE@ gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) @ENABLE_GTK_DOC_TRUE@ touch sgml-build.stamp @ENABLE_GTK_DOC_TRUE@sgml.stamp: sgml-build.stamp @@ -733,6 +751,9 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpbutton.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpbutton.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpbutton.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpbutton.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@
+ + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcellrenderercolor.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcellrenderercolor.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcellrenderercolor.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcellrenderercolor.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcellrenderertoggle.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcellrenderertoggle.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcellrenderertoggle.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcellrenderertoggle.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpchainbutton.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpchainbutton.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpchainbutton.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpchainbutton.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -26,6 +26,9 @@ up two GimpSizeEntries (see #GimpSizeEntry) linked with a #GimpChainButton. + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorarea.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorarea.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorarea.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorarea.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorbutton.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorbutton.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorbutton.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorbutton.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -21,6 +21,9 @@ #libgimpcolor-gimpcolorspace + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolordisplay.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolordisplay.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolordisplay.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolordisplay.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -21,6 +21,9 @@ #libgimp-gimpmodule + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolordisplaystack.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolordisplaystack.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolordisplaystack.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolordisplaystack.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorhexentry.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorhexentry.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorhexentry.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorhexentry.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolornotebook.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolornotebook.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolornotebook.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolornotebook.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorscale.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorscale.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorscale.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorscale.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorscales.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorscales.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorscales.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorscales.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorselection.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorselection.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorselection.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorselection.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorselector.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorselector.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorselector.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorselector.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -21,6 +21,9 @@ #libgimp-gimpmodule + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorselect.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorselect.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcolorselect.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcolorselect.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -18,6 +18,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcontroller.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcontroller.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpcontroller.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpcontroller.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpdialog.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpdialog.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpdialog.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpdialog.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpfileentry.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpfileentry.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpfileentry.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpfileentry.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -31,6 +31,9 @@ #GimpPathEditor + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpframe.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpframe.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpframe.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpframe.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimphelpui.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimphelpui.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimphelpui.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimphelpui.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + This is the prototype for all functions you pass as @help_func to the diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpintcombobox.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpintcombobox.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpintcombobox.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpintcombobox.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpintstore.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpintstore.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpintstore.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpintstore.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpmemsizeentry.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpmemsizeentry.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpmemsizeentry.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpmemsizeentry.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@ + + + The #GimpSizeEntry struct is considered private. diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpoffsetarea.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpoffsetarea.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpoffsetarea.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpoffsetarea.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpoldwidgets.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpoldwidgets.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpoldwidgets.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpoldwidgets.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ GimpIntComboBox + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppatheditor.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppatheditor.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppatheditor.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppatheditor.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -30,6 +30,9 @@ #G_SEARCHPATH_SEPARATOR + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppickbutton.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppickbutton.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppickbutton.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppickbutton.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -16,6 +16,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppixmap.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppixmap.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppixmap.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppixmap.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -26,6 +26,9 @@ #GtkPixmap + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppreviewarea.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppreviewarea.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppreviewarea.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppreviewarea.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppreview.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppreview.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimppreview.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimppreview.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpquerybox.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpquerybox.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpquerybox.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpquerybox.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -28,6 +28,9 @@ GimpUnitMenu + + + Note that you have to g_free() the returned string. diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpscrolledpreview.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpscrolledpreview.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpscrolledpreview.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpscrolledpreview.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -14,6 +14,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpsizeentry.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpsizeentry.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpsizeentry.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpsizeentry.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -42,6 +42,9 @@ gimp_coordinates_new() + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpstock.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -21,6 +21,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpunitmenu.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpunitmenu.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpunitmenu.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpunitmenu.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -33,6 +33,9 @@ gimp_coordinates_new() + + + diff -uraN gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpwidgets.sgml gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpwidgets.sgml --- gimp-2.2.8/devel-docs/libgimpwidgets/tmpl/gimpwidgets.sgml 2005-06-27 00:18:46.000000000 +0200 +++ gimp-2.2.9/devel-docs/libgimpwidgets/tmpl/gimpwidgets.sgml 2005-10-27 17:14:10.000000000 +0200 @@ -15,6 +15,9 @@ + + + diff -uraN gimp-2.2.8/devel-docs/Makefile.in gimp-2.2.9/devel-docs/Makefile.in --- gimp-2.2.8/devel-docs/Makefile.in 2005-06-26 21:28:19.000000000 +0200 +++ gimp-2.2.9/devel-docs/Makefile.in 2005-10-27 17:11:38.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +33,31 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = devel-docs +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + ChangeLog +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +394,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = \ libgimpbase \ libgimpcolor \ @@ -378,7 +403,6 @@ libgimpwidgets \ libgimp - EXTRA_DIST = \ ChangeLog \ README \ @@ -396,28 +420,38 @@ undo.txt \ xcf.txt -subdir = devel-docs -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in ChangeLog Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu devel-docs/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu devel-docs/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -436,7 +470,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -448,7 +488,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -456,7 +496,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -477,7 +523,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -488,14 +534,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -504,19 +542,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -526,10 +567,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -552,10 +594,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -569,7 +607,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -584,15 +622,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -605,7 +645,6 @@ all-am: Makefile installdirs: installdirs-recursive installdirs-am: - install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -625,7 +664,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -643,6 +682,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -677,22 +718,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ - ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ + ctags-recursive dist-hook distclean distclean-generic \ + distclean-libtool distclean-recursive distclean-tags distdir \ + dvi dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am # require gtk-doc when making dist diff -uraN gimp-2.2.8/docs/gimprc.5.in gimp-2.2.9/docs/gimprc.5.in --- gimp-2.2.8/docs/gimprc.5.in 2005-06-27 00:18:27.000000000 +0200 +++ gimp-2.2.9/docs/gimprc.5.in 2005-10-27 17:13:52.000000000 +0200 @@ -6,7 +6,7 @@ .SH DESCRIPTION The .B gimprc -file is a configuation file read by the GIMP when it starts up. There +file is a configuration file read by the GIMP when it starts up. There are two of these: one system-wide one stored in @gimpsysconfdir@/gimprc and a per-user \fB$HOME\fP/@gimpdir@/gimprc which may override system settings. diff -uraN gimp-2.2.8/docs/Makefile.in gimp-2.2.9/docs/Makefile.in --- gimp-2.2.8/docs/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/docs/Makefile.in 2005-10-27 17:11:40.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +33,29 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = docs +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/gimp-remote.1.in $(srcdir)/gimp.1.in \ + $(srcdir)/gimprc.5.in $(srcdir)/gimptool.1.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = gimp-2.2.1 gimprc-2.2.5 gimptool-2.0.1 \ + gimp-remote-2.2.1 +SOURCES = +DIST_SOURCES = +man1dir = $(mandir)/man1 +am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" +man5dir = $(mandir)/man5 +NROFF = nroff +MANS = $(man_MANS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +254,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +305,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +352,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,18 +392,15 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - default_binary_mans = \ gimp-$(GIMP_APP_VERSION).1 \ gimprc-$(GIMP_APP_VERSION).5 \ gimp-remote-$(GIMP_APP_VERSION).1 - man_MANS = \ $(default_binary_mans) \ gimptool-$(GIMP_TOOL_VERSION).1 - EXTRA_DIST = \ Wilber.svg \ Wilber.xcf.gz \ @@ -389,33 +410,45 @@ quick_reference.ps \ quick_reference.tar.gz -subdir = docs -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = gimp-2.2.1 gimprc-2.2.5 gimptool-2.0.1 \ - gimp-remote-2.2.1 -DIST_SOURCES = - -NROFF = nroff -MANS = $(man_MANS) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am gimp-remote.1.in \ - gimp.1.in gimprc.5.in gimptool.1.in all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu docs/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -gimp-2.2.1: $(top_builddir)/config.status gimp.1.in +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +gimp-2.2.1: $(top_builddir)/config.status $(srcdir)/gimp.1.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -gimprc-2.2.5: $(top_builddir)/config.status gimprc.5.in +gimprc-2.2.5: $(top_builddir)/config.status $(srcdir)/gimprc.5.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -gimptool-2.0.1: $(top_builddir)/config.status gimptool.1.in +gimptool-2.0.1: $(top_builddir)/config.status $(srcdir)/gimptool.1.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ -gimp-remote-2.2.1: $(top_builddir)/config.status gimp-remote.1.in +gimp-remote-2.2.1: $(top_builddir)/config.status $(srcdir)/gimp-remote.1.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ mostlyclean-libtool: @@ -427,11 +460,9 @@ distclean-libtool: -rm -f libtool uninstall-info-am: - -man1dir = $(mandir)/man1 install-man1: $(man1_MANS) $(man_MANS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(man1dir) + test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)" @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ @@ -450,8 +481,8 @@ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ - echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ - $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \ done uninstall-man1: @$(NORMAL_UNINSTALL) @@ -471,14 +502,12 @@ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ - echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ - rm -f $(DESTDIR)$(man1dir)/$$inst; \ + echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \ + rm -f "$(DESTDIR)$(man1dir)/$$inst"; \ done - -man5dir = $(mandir)/man5 install-man5: $(man5_MANS) $(man_MANS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(man5dir) + test -z "$(man5dir)" || $(mkdir_p) "$(DESTDIR)$(man5dir)" @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ @@ -497,8 +526,8 @@ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ - echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst"; \ - $(INSTALL_DATA) $$file $(DESTDIR)$(man5dir)/$$inst; \ + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst"; \ done uninstall-man5: @$(NORMAL_UNINSTALL) @@ -518,8 +547,8 @@ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ inst=`echo $$inst | sed -e 's/^.*\///'`; \ inst=`echo $$inst | sed '$(transform)'`.$$ext; \ - echo " rm -f $(DESTDIR)$(man5dir)/$$inst"; \ - rm -f $(DESTDIR)$(man5dir)/$$inst; \ + echo " rm -f '$(DESTDIR)$(man5dir)/$$inst'"; \ + rm -f "$(DESTDIR)$(man5dir)/$$inst"; \ done tags: TAGS TAGS: @@ -527,10 +556,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -544,7 +569,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -562,9 +587,10 @@ check-am: all-am check: check-am all-am: Makefile $(MANS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(man1dir) $(DESTDIR)$(man5dir) + for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -584,7 +610,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -601,6 +627,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -639,14 +667,15 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-man1 install-man5 \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-info-am uninstall-local \ - uninstall-man uninstall-man1 uninstall-man5 + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-data-hook install-exec \ + install-exec-am install-info install-info-am install-man \ + install-man1 install-man5 install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-local uninstall-man uninstall-man1 \ + uninstall-man5 install-data-hook: diff -uraN gimp-2.2.8/etc/Makefile.in gimp-2.2.9/etc/Makefile.in --- gimp-2.2.8/etc/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/etc/Makefile.in 2005-10-27 17:11:40.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = etc +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(gimpsysconfdir)" +gimpsysconfDATA_INSTALL = $(INSTALL_DATA) +DATA = $(gimpsysconf_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +394,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - gimpsysconf_DATA = \ gimprc \ gtkrc \ @@ -378,27 +403,41 @@ sessionrc \ controllerrc - EXTRA_DIST = \ $(gimpsysconf_DATA) -subdir = etc -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(gimpsysconf_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu etc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu etc/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -409,23 +448,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -gimpsysconfDATA_INSTALL = $(INSTALL_DATA) install-gimpsysconfDATA: $(gimpsysconf_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(gimpsysconfdir) + test -z "$(gimpsysconfdir)" || $(mkdir_p) "$(DESTDIR)$(gimpsysconfdir)" @list='$(gimpsysconf_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(gimpsysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(gimpsysconfdir)/$$f"; \ - $(gimpsysconfDATA_INSTALL) $$d$$p $(DESTDIR)$(gimpsysconfdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(gimpsysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gimpsysconfdir)/$$f'"; \ + $(gimpsysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gimpsysconfdir)/$$f"; \ done uninstall-gimpsysconfDATA: @$(NORMAL_UNINSTALL) @list='$(gimpsysconf_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(gimpsysconfdir)/$$f"; \ - rm -f $(DESTDIR)$(gimpsysconfdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(gimpsysconfdir)/$$f'"; \ + rm -f "$(DESTDIR)$(gimpsysconfdir)/$$f"; \ done tags: TAGS TAGS: @@ -433,10 +471,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -450,7 +484,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -468,9 +502,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(gimpsysconfdir) + for dir in "$(DESTDIR)$(gimpsysconfdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -490,7 +525,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -507,6 +542,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -541,8 +578,8 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ install-gimpsysconfDATA install-info install-info-am \ install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ diff -uraN gimp-2.2.8/gimptool-win32.c.in gimp-2.2.9/gimptool-win32.c.in --- gimp-2.2.8/gimptool-win32.c.in 2005-06-06 17:59:20.000000000 +0200 +++ gimp-2.2.9/gimptool-win32.c.in 2005-09-20 18:23:58.000000000 +0200 @@ -147,7 +147,7 @@ { *r = '\0'; if (strlen (path) >= 4 && - g_strcasecmp (r - 4, G_DIR_SEPARATOR_S "bin") == 0) + g_ascii_strcasecmp (r - 4, G_DIR_SEPARATOR_S "bin") == 0) { r[-4] = '\0'; prefix = path; @@ -623,7 +623,7 @@ #ifdef G_OS_WIN32 gchar *p = strrchr (what, '.'); - if (p == NULL || g_strcasecmp (p, ".exe") != 0) + if (p == NULL || g_ascii_strcasecmp (p, ".exe") != 0) return g_strconcat (what, ".exe"); #endif diff -uraN gimp-2.2.8/gtk-doc.make gimp-2.2.9/gtk-doc.make --- gimp-2.2.8/gtk-doc.make 2005-06-05 11:09:05.000000000 +0200 +++ gimp-2.2.9/gtk-doc.make 2005-07-04 11:50:39.000000000 +0200 @@ -25,7 +25,6 @@ $(content_files) \ $(HTML_IMAGES) \ $(DOC_MAIN_SGML_FILE) \ - $(DOC_MODULE).types \ $(DOC_MODULE)-sections.txt \ $(DOC_MODULE)-overrides.txt @@ -49,7 +48,7 @@ scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB) @echo '*** Scanning header files ***' @-chmod -R u+w $(srcdir) - if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ + if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ else \ cd $(srcdir) ; \ @@ -69,7 +68,7 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt @echo '*** Rebuilding template files ***' @-chmod -R u+w $(srcdir) - cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) + cd $(srcdir) && gtkdoc-mktmpl --module=$(DOC_MODULE) $(MKTMPL_OPTIONS) touch tmpl-build.stamp tmpl.stamp: tmpl-build.stamp @@ -77,11 +76,11 @@ #### xml #### -sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml +sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml $(expand_content_files) @echo '*** Building XML ***' @-chmod -R u+w $(srcdir) cd $(srcdir) && \ - gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml $(MKDB_OPTIONS) + gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --output-format=xml --expand-content-files="$(expand_content_files)" $(MKDB_OPTIONS) touch sgml-build.stamp sgml.stamp: sgml-build.stamp @@ -147,5 +146,8 @@ -cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl -cp $(srcdir)/xml/*.xml $(distdir)/xml -cp $(srcdir)/html/* $(distdir)/html + if test -f $(srcdir)/$(DOC_MODULE).types; then \ + cp $(srcdir)/$(DOC_MODULE).types $(distdir)/$(DOC_MODULE).types; \ + fi .PHONY : dist-hook-local diff -uraN gimp-2.2.8/INSTALL gimp-2.2.9/INSTALL --- gimp-2.2.8/INSTALL 2004-12-19 03:07:30.000000000 +0100 +++ gimp-2.2.9/INSTALL 2005-08-15 12:07:02.000000000 +0200 @@ -126,6 +126,16 @@ use --without-mng to disable it expliticely. The same switch exists for aalib, use --without-aa if you run into problems. + --without-gtkhtml2. If for some reason you don't want to build the + helpbrowser plug-in, you can use --without-gtkhtml2 to disable + it explicitly. + + --without-svg. If for some reason you want to build GIMP without + SVG support, you can build --without-svg. + + --without-lcms. If for some reason you want to build GIMP without + using lcms for color support, you can build with --without-lcms. + --with-gif-compression=[lzw|rle|none]. Allows to tune the compression algorithm used by the GIF plug-in. If you are afraid of Unisys' LZW patent (which should have expired in most countries by now), you diff -uraN gimp-2.2.8/intltool-extract.in gimp-2.2.9/intltool-extract.in --- gimp-2.2.8/intltool-extract.in 2005-01-25 23:56:20.000000000 +0100 +++ gimp-2.2.9/intltool-extract.in 2005-08-02 18:40:07.000000000 +0200 @@ -32,7 +32,7 @@ ## Release information my $PROGRAM = "intltool-extract"; my $PACKAGE = "intltool"; -my $VERSION = "0.33"; +my $VERSION = "0.34.1"; ## Loaded modules use strict; @@ -59,6 +59,8 @@ my %comments = (); my $strcount = 0; +my $XMLCOMMENT = ""; + ## Use this instead of \w for XML files to handle more possible characters. my $w = "[-A-Za-z0-9._:]"; @@ -186,6 +188,7 @@ &convert; open OUT, ">$OUTFILE"; + binmode (OUT) if $^O eq 'MSWin32'; &msg_write; close OUT; @@ -266,24 +269,344 @@ sub type_xml { ### For generic translatable XML files ### - - while ($input =~ /(?:[^\n]*\n?[^\n]*)?\s_$w+\s*=\s*\"([^"]*)\"/sg) { # " - $messages{entity_decode_minimal($2)} = []; - $comments{entity_decode_minimal($2)} = $1 if (defined($1)); - } + my $tree = readXml($input); + parseTree(0, $tree); +} - while ($input =~ /(?:\s*)?<_($w+)(?: xml:space="($w+)")?[^>]*>(.*?)<\/_\2>/sg) { - $_ = $4; - if (!defined($3) || $3 ne "preserve") { - s/\s+/ /g; - s/^ //; - s/ $//; +sub print_var { + my $var = shift; + my $vartype = ref $var; + + if ($vartype =~ /ARRAY/) { + my @arr = @{$var}; + print "[ "; + foreach my $el (@arr) { + print_var($el); + print ", "; + } + print "] "; + } elsif ($vartype =~ /HASH/) { + my %hash = %{$var}; + print "{ "; + foreach my $key (keys %hash) { + print "$key => "; + print_var($hash{$key}); + print ", "; } - $messages{$_} = []; - $comments{$_} = $1 if (defined($1)); + print "} "; + } else { + print $var; + } +} + +# Same syntax as getAttributeString in intltool-merge.in.in, similar logic (look for ## differences comment) +sub getAttributeString +{ + my $sub = shift; + my $do_translate = shift || 1; + my $language = shift || ""; + my $translate = shift; + my $result = ""; + foreach my $e (reverse(sort(keys %{ $sub }))) { + my $key = $e; + my $string = $sub->{$e}; + my $quote = '"'; + + $string =~ s/^[\s]+//; + $string =~ s/[\s]+$//; + + if ($string =~ /^'.*'$/) + { + $quote = "'"; + } + $string =~ s/^['"]//g; + $string =~ s/['"]$//g; + + ## differences from intltool-merge.in.in + if ($key =~ /^_/) { + $comments{entity_decode($string)} = $XMLCOMMENT if $XMLCOMMENT; + $messages{entity_decode($string)} = []; + $$translate = 2; + } + ## differences end here from intltool-merge.in.in + $result .= " $key=$quote$string$quote"; + } + return $result; +} + +# Verbatim copy from intltool-merge.in.in +sub getXMLstring +{ + my $ref = shift; + my $spacepreserve = shift || 0; + my @list = @{ $ref }; + my $result = ""; + + my $count = scalar(@list); + my $attrs = $list[0]; + my $index = 1; + + $spacepreserve = 1 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/)); + $spacepreserve = 0 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?default["']?$/)); + + while ($index < $count) { + my $type = $list[$index]; + my $content = $list[$index+1]; + if (! $type ) { + # We've got CDATA + if ($content) { + # lets strip the whitespace here, and *ONLY* here + $content =~ s/\s+/ /gs if (!$spacepreserve); + $result .= $content; + } + } elsif ( "$type" ne "1" ) { + # We've got another element + $result .= "<$type"; + $result .= getAttributeString(@{$content}[0], 0); # no nested translatable elements + if ($content) { + my $subresult = getXMLstring($content, $spacepreserve); + if ($subresult) { + $result .= ">".$subresult . ""; + } else { + $result .= "/>"; + } + } else { + $result .= "/>"; + } + } + $index += 2; + } + return $result; +} + +# Verbatim copy from intltool-merge.in.in, except for MULTIPLE_OUTPUT handling removed +# Translate list of nodes if necessary +sub translate_subnodes +{ + my $fh = shift; + my $content = shift; + my $language = shift || ""; + my $singlelang = shift || 0; + my $spacepreserve = shift || 0; + + my @nodes = @{ $content }; + + my $count = scalar(@nodes); + my $index = 0; + while ($index < $count) { + my $type = $nodes[$index]; + my $rest = $nodes[$index+1]; + traverse($fh, $type, $rest, $language, $spacepreserve); + $index += 2; + } +} + +# Based on traverse() in intltool-merge.in.in +sub traverse +{ + my $fh = shift; # unused, to allow us to sync code between -merge and -extract + my $nodename = shift; + my $content = shift; + my $language = shift || ""; + my $spacepreserve = shift || 0; + + if ($nodename && "$nodename" eq "1") { + $XMLCOMMENT = $content; + } elsif ($nodename) { + # element + my @all = @{ $content }; + my $attrs = shift @all; + my $translate = 0; + my $outattr = getAttributeString($attrs, 1, $language, \$translate); + + if ($nodename =~ /^_/) { + $translate = 1; + $nodename =~ s/^_//; + } + my $lookup = ''; + + $spacepreserve = 0 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?default["']?$/)); + $spacepreserve = 1 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/)); + + if ($translate) { + $lookup = getXMLstring($content, $spacepreserve); + if (!$spacepreserve) { + $lookup =~ s/^\s+//s; + $lookup =~ s/\s+$//s; + } + + if ($lookup && $translate != 2) { + $comments{$lookup} = $XMLCOMMENT if $XMLCOMMENT; + $messages{$lookup} = []; + } elsif ($translate == 2) { + translate_subnodes($fh, \@all, $language, 1, $spacepreserve); + } + } else { + $XMLCOMMENT = ""; + my $count = scalar(@all); + if ($count > 0) { + my $index = 0; + while ($index < $count) { + my $type = $all[$index]; + my $rest = $all[$index+1]; + traverse($fh, $type, $rest, $language, $spacepreserve); + $index += 2; + } + } + } + $XMLCOMMENT = ""; + } +} + + +# Verbatim copy from intltool-merge.in.in, $fh for compatibility +sub parseTree +{ + my $fh = shift; + my $ref = shift; + my $language = shift || ""; + + my $name = shift @{ $ref }; + my $cont = shift @{ $ref }; + + while (!$name || "$name" eq "1") { + $name = shift @{ $ref }; + $cont = shift @{ $ref }; + } + + my $spacepreserve = 0; + my $attrs = @{$cont}[0]; + $spacepreserve = 1 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/)); + + traverse($fh, $name, $cont, $language, $spacepreserve); +} + +# Verbatim copy from intltool-merge.in.in +sub intltool_tree_comment +{ + my $expat = shift; + my $data = shift; + my $clist = $expat->{Curlist}; + my $pos = $#$clist; + + push @$clist, 1 => $data; +} + +# Verbatim copy from intltool-merge.in.in +sub intltool_tree_cdatastart +{ + my $expat = shift; + my $clist = $expat->{Curlist}; + my $pos = $#$clist; + + push @$clist, 0 => $expat->original_string(); +} + +# Verbatim copy from intltool-merge.in.in +sub intltool_tree_cdataend +{ + my $expat = shift; + my $clist = $expat->{Curlist}; + my $pos = $#$clist; + + $clist->[$pos] .= $expat->original_string(); +} + +# Verbatim copy from intltool-merge.in.in +sub intltool_tree_char +{ + my $expat = shift; + my $text = shift; + my $clist = $expat->{Curlist}; + my $pos = $#$clist; + + # Use original_string so that we retain escaped entities + # in CDATA sections. + # + if ($pos > 0 and $clist->[$pos - 1] eq '0') { + $clist->[$pos] .= $expat->original_string(); + } else { + push @$clist, 0 => $expat->original_string(); } } +# Verbatim copy from intltool-merge.in.in +sub intltool_tree_start +{ + my $expat = shift; + my $tag = shift; + my @origlist = (); + + # Use original_string so that we retain escaped entities + # in attribute values. We must convert the string to an + # @origlist array to conform to the structure of the Tree + # Style. + # + my @original_array = split /\x/, $expat->original_string(); + my $source = $expat->original_string(); + + # Remove leading tag. + # + $source =~ s|^\s*<\s*(\S+)||s; + + # Grab attribute key/value pairs and push onto @origlist array. + # + while ($source) + { + if ($source =~ /^\s*([\w:-]+)\s*[=]\s*["]/) + { + $source =~ s|^\s*([\w:-]+)\s*[=]\s*["]([^"]*)["]||s; + push @origlist, $1; + push @origlist, '"' . $2 . '"'; + } + elsif ($source =~ /^\s*([\w:-]+)\s*[=]\s*[']/) + { + $source =~ s|^\s*([\w:-]+)\s*[=]\s*[']([^']*)[']||s; + push @origlist, $1; + push @origlist, "'" . $2 . "'"; + } + else + { + last; + } + } + + my $ol = [ { @origlist } ]; + + push @{ $expat->{Lists} }, $expat->{Curlist}; + push @{ $expat->{Curlist} }, $tag => $ol; + $expat->{Curlist} = $ol; +} + +# Copied from intltool-merge.in.in and added comment handler. +sub readXml +{ + my $xmldoc = shift || return; + my $ret = eval 'require XML::Parser'; + if(!$ret) { + die "You must have XML::Parser installed to run $0\n\n"; + } + my $xp = new XML::Parser(Style => 'Tree'); + $xp->setHandlers(Char => \&intltool_tree_char); + $xp->setHandlers(Start => \&intltool_tree_start); + $xp->setHandlers(CdataStart => \&intltool_tree_cdatastart); + $xp->setHandlers(CdataEnd => \&intltool_tree_cdataend); + + ## differences from intltool-merge.in.in + $xp->setHandlers(Comment => \&intltool_tree_comment); + ## differences end here from intltool-merge.in.in + + my $tree = $xp->parse($xmldoc); + #print_var($tree); + +# Hello thereHowdydo +# would be: +# [foo, [{}, 1, "comment", head, [{id => "a"}, 0, "Hello ", em, [{}, 0, "there"]], bar, +# [{}, 0, "Howdy", ref, [{}]], 0, "do" ] ] + + return $tree; +} + sub type_schemas { ### For schemas XML files ### diff -uraN gimp-2.2.8/intltool-merge.in gimp-2.2.9/intltool-merge.in --- gimp-2.2.8/intltool-merge.in 2005-01-25 23:56:20.000000000 +0100 +++ gimp-2.2.9/intltool-merge.in 2005-08-02 18:40:07.000000000 +0200 @@ -35,7 +35,7 @@ ## Release information my $PROGRAM = "intltool-merge"; my $PACKAGE = "intltool"; -my $VERSION = "0.33"; +my $VERSION = "0.34.1"; ## Loaded modules use strict; @@ -92,6 +92,7 @@ my %po_files_by_lang = (); my %translations = (); my $iconv = $ENV{"ICONV"} || $ENV{"INTLTOOL_ICONV"} || "/usr/bin/iconv"; +my $devnull = ($^O eq 'MSWin32' ? 'NUL:' : '/dev/null'); # Use this instead of \w for XML files to handle more possible characters. my $w = "[-A-Za-z0-9._:]"; @@ -299,7 +300,7 @@ $encoding = "ISO-8859-1"; } - system ("$iconv -f $encoding -t UTF-8 /dev/null"); + system ("$iconv -f $encoding -t UTF-8 <$devnull 2>$devnull"); if ($?) { $encoding = get_local_charset($encoding); } @@ -542,6 +543,8 @@ } open OUTPUT, ">$OUTFILE" or die "can't open $OUTFILE: $!"; + # Binmode so that selftest works ok if using a native Win32 Perl... + binmode (OUTPUT) if $^O eq 'MSWin32'; while ($source =~ s|^(.*?)([ \t]*<\s*$w+\s+($w+\s*=\s*"$q"\s*)+/?>)([ \t]*\n)?||s) { @@ -610,23 +613,16 @@ if ($do_translate && $key =~ /^_/) { $key =~ s|^_||g; if ($language) { - # Handle translation - # my $decode_string = entity_decode($string); my $translation = $translations{$language, $decode_string}; if ($translation) { $translation = entity_encode($translation); $string = $translation; - $$translate = 2; - } else { - $$translate = 2; # we still want translations for deep nesting (FIXME: this will cause - # problems since we might get untranslated duplicated entries, but with xml:lang set) - # Fix would be to set it here to eg. 3, and do a check in traverse() to see if any of the containing tags - # really need translation, and only emit "translation" if there is (this means parsing same data twice) } + $$translate = 2; } else { - $$translate = 2 if ($translate && (!$$translate)); # watch not to "overwrite" if $translate == 2 + $$translate = 2 if ($translate && (!$$translate)); # watch not to "overwrite" $translate } } @@ -636,13 +632,10 @@ } # Returns a translatable string from XML node, it works on contents of every node in XML::Parser tree -# doesn't support nesting of translatable tags (i.e. <_blah>this <_doh>doesn't work -- besides -# can you define the correct semantics for this?) -# - sub getXMLstring { my $ref = shift; + my $spacepreserve = shift || 0; my @list = @{ $ref }; my $result = ""; @@ -650,6 +643,9 @@ my $attrs = $list[0]; my $index = 1; + $spacepreserve = 1 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/)); + $spacepreserve = 0 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?default["']?$/)); + while ($index < $count) { my $type = $list[$index]; my $content = $list[$index+1]; @@ -657,19 +653,15 @@ # We've got CDATA if ($content) { # lets strip the whitespace here, and *ONLY* here - $content =~ s/\s+/ /gs if (!((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/))); - $result .= ($content); - } else { - #print "no cdata content when expected it\n"; # is this possible, is this ok? - # what to do if this happens? - # Did I mention that I hate XML::Parser tree style? + $content =~ s/\s+/ /gs if (!$spacepreserve); + $result .= $content; } - } else { + } elsif ( "$type" ne "1" ) { # We've got another element $result .= "<$type"; $result .= getAttributeString(@{$content}[0], 0); # no nested translatable elements if ($content) { - my $subresult = getXMLstring($content); + my $subresult = getXMLstring($content, $spacepreserve); if ($subresult) { $result .= ">".$subresult . ""; } else { @@ -691,6 +683,7 @@ my $content = shift; my $language = shift || ""; my $singlelang = shift || 0; + my $spacepreserve = shift || 0; my @nodes = @{ $content }; @@ -702,21 +695,39 @@ if ($singlelang) { my $oldMO = $MULTIPLE_OUTPUT; $MULTIPLE_OUTPUT = 1; - traverse($fh, $type, $rest, $language); + traverse($fh, $type, $rest, $language, $spacepreserve); $MULTIPLE_OUTPUT = $oldMO; } else { - traverse($fh, $type, $rest, $language); + traverse($fh, $type, $rest, $language, $spacepreserve); } $index += 2; } } +sub isWellFormedXmlFragment +{ + my $ret = eval 'require XML::Parser'; + if(!$ret) { + die "You must have XML::Parser installed to run $0\n\n"; + } + + my $fragment = shift; + return 0 if (!$fragment); + + $fragment = "$fragment"; + my $xp = new XML::Parser(Style => 'Tree'); + my $tree = 0; + eval { $tree = $xp->parse($fragment); }; + return $tree; +} + sub traverse { my $fh = shift; my $nodename = shift; my $content = shift; my $language = shift || ""; + my $spacepreserve = shift || 0; if (!$nodename) { if ($content =~ /^[\s]*$/) { @@ -735,22 +746,26 @@ $nodename =~ s/^_//; } my $lookup = ''; + + $spacepreserve = 0 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?default["']?$/)); + $spacepreserve = 1 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/)); + print $fh "<$nodename", $outattr; if ($translate) { - $lookup = getXMLstring($content); - if (!((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/))) { + $lookup = getXMLstring($content, $spacepreserve); + if (!$spacepreserve) { $lookup =~ s/^\s+//s; $lookup =~ s/\s+$//s; } if ($lookup || $translate == 2) { - my $translation = $translations{$language, $lookup}; + my $translation = $translations{$language, $lookup} if isWellFormedXmlFragment($translations{$language, $lookup}); if ($MULTIPLE_OUTPUT && ($translation || $translate == 2)) { $translation = $lookup if (!$translation); print $fh " xml:lang=\"", $language, "\"" if $language; print $fh ">"; if ($translate == 2) { - translate_subnodes($fh, \@all, $language, 1); + translate_subnodes($fh, \@all, $language, 1, $spacepreserve); } else { print $fh $translation; } @@ -761,7 +776,7 @@ } else { print $fh ">"; if ($translate == 2) { - translate_subnodes($fh, \@all, $language, 1); + translate_subnodes($fh, \@all, $language, 1, $spacepreserve); } else { print $fh $lookup; } @@ -780,7 +795,7 @@ # my $translate = 0; my $localattrs = getAttributeString($attrs, 1, $lang, \$translate); - my $translation = $translations{$lang, $lookup}; + my $translation = $translations{$lang, $lookup} if isWellFormedXmlFragment($translations{$lang, $lookup}); if ($translate && !$translation) { $translation = $lookup; } @@ -791,7 +806,7 @@ print $fh $leading_space; print $fh "<", $nodename, " xml:lang=\"", $lang, "\"", $localattrs, ">"; if ($translate == 2) { - translate_subnodes($fh, \@all, $lang, 1); + translate_subnodes($fh, \@all, $lang, 1, $spacepreserve); } else { print $fh $translation; } @@ -808,7 +823,7 @@ while ($index < $count) { my $type = $all[$index]; my $rest = $all[$index+1]; - traverse($fh, $type, $rest, $language); + traverse($fh, $type, $rest, $language, $spacepreserve); $index += 2; } print $fh ""; @@ -819,6 +834,16 @@ } } +sub intltool_tree_comment +{ + my $expat = shift; + my $data = shift; + my $clist = $expat->{Curlist}; + my $pos = $#$clist; + + push @$clist, 1 => $data; +} + sub intltool_tree_cdatastart { my $expat = shift; @@ -962,7 +987,17 @@ my $name = shift @{ $ref }; my $cont = shift @{ $ref }; - traverse($fh, $name, $cont, $language); + + while (!$name || "$name" eq "1") { + $name = shift @{ $ref }; + $cont = shift @{ $ref }; + } + + my $spacepreserve = 0; + my $attrs = @{$cont}[0]; + $spacepreserve = 1 if ((exists $attrs->{"xml:space"}) && ($attrs->{"xml:space"} =~ /^["']?preserve["']?$/)); + + traverse($fh, $name, $cont, $language, $spacepreserve); } sub xml_merge_output @@ -975,6 +1010,7 @@ mkdir $lang or die "Cannot create subdirectory $lang: $!\n"; } open OUTPUT, ">$lang/$OUTFILE" or die "Cannot open $lang/$OUTFILE: $!\n"; + binmode (OUTPUT) if $^O eq 'MSWin32'; my $tree = readXml($FILE); print_header($FILE, \*OUTPUT); parseTree(\*OUTPUT, $tree, $lang); @@ -983,6 +1019,7 @@ } } open OUTPUT, ">$OUTFILE" or die "Cannot open $OUTFILE: $!\n"; + binmode (OUTPUT) if $^O eq 'MSWin32'; my $tree = readXml($FILE); print_header($FILE, \*OUTPUT); parseTree(\*OUTPUT, $tree); @@ -994,6 +1031,7 @@ { open INPUT, "<${FILE}" or die; open OUTPUT, ">${OUTFILE}" or die; + binmode (OUTPUT) if $^O eq 'MSWin32'; while () { @@ -1029,6 +1067,7 @@ { open INPUT, "<${FILE}" or die; open OUTPUT, ">${OUTFILE}" or die; + binmode (OUTPUT) if $^O eq 'MSWin32'; while () { @@ -1072,6 +1111,7 @@ } open OUTPUT, ">$OUTFILE" or die; + binmode (OUTPUT) if $^O eq 'MSWin32'; # FIXME: support attribute translations @@ -1173,6 +1213,7 @@ } open OUTPUT, ">${OUTFILE}" or die; + binmode (OUTPUT) if $^O eq 'MSWin32'; while ($source =~ /(^|\n+)(_*)([^:\s]+)(:[ \t]*)(.*?)(?=\n[\S\n]|$)/sg) { diff -uraN gimp-2.2.8/intltool-update.in gimp-2.2.9/intltool-update.in --- gimp-2.2.8/intltool-update.in 2005-01-25 23:56:20.000000000 +0100 +++ gimp-2.2.9/intltool-update.in 2005-08-02 18:40:07.000000000 +0200 @@ -30,7 +30,7 @@ ## Release information my $PROGRAM = "intltool-update"; -my $VERSION = "0.33"; +my $VERSION = "0.34.1"; my $PACKAGE = "intltool"; ## Loaded modules @@ -95,6 +95,8 @@ $SRCDIR = $ENV{"srcdir"} if $ENV{"srcdir"}; $POTFILES_in = "<$SRCDIR/POTFILES.in"; +my $devnull = ($^O eq 'MSWin32' ? 'NUL:' : '/dev/null'); + ## Handle options GetOptions ( @@ -442,7 +444,7 @@ while () { # FIXME: share the pattern matching code with intltool-extract - if (/\s_(.*)=\"/ || /<_[^>]+>/ || /translatable=\"yes\"/) + if (/\s_[-A-Za-z0-9._:]+\s*=\s*\"([^"]+)\"/ || /<_[^>]+>/ || /translatable=\"yes\"/) { if (defined isNotValidMissing (unpack("x3 A*", $file))) { push @buf_allfiles, unpack("x3 A*", $file) . "\n"; @@ -628,7 +630,7 @@ my $gettext_support_nonascii = 0; # checks for GNU gettext >= 0.12 - my $dummy = `$XGETTEXT --version --from-code=UTF-8 >/dev/null 2>/dev/null`; + my $dummy = `$XGETTEXT --version --from-code=UTF-8 >$devnull 2>$devnull`; if ($? == 0) { $gettext_support_nonascii = 1; @@ -826,7 +828,7 @@ $output_file = "$SRCDIR/$lang.po" if ($output_file eq ""); - system ("$MSGFMT", "-o", "/dev/null", "--statistics", $output_file); + system ("$MSGFMT", "-o", "$devnull", "--verbose", $output_file); } sub Console_Write_CoverageReport @@ -846,7 +848,7 @@ foreach my $lang (@languages) { print "$lang: "; - system ("$MSGFMT", "-o", "/dev/null", "--statistics", "$SRCDIR/$lang.po"); + system ("$MSGFMT", "-o", "$devnull", "--verbose", "$SRCDIR/$lang.po"); } } diff -uraN gimp-2.2.8/libgimp/Makefile.in gimp-2.2.9/libgimp/Makefile.in --- gimp-2.2.8/libgimp/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/libgimp/Makefile.in 2005-10-27 17:11:40.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,90 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = libgimp +DIST_COMMON = $(gimpinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in COPYING +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(gimpincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = +am__objects_1 = gimpbrush_pdb.lo gimpbrushes_pdb.lo \ + gimpbrushselect_pdb.lo gimpchannel_pdb.lo gimpcolor_pdb.lo \ + gimpcontext_pdb.lo gimpconvert_pdb.lo gimpdisplay_pdb.lo \ + gimpdrawable_pdb.lo gimpdrawabletransform_pdb.lo \ + gimpedit_pdb.lo gimpfileops_pdb.lo gimpfloatingsel_pdb.lo \ + gimpfonts_pdb.lo gimpfontselect_pdb.lo gimpgimprc_pdb.lo \ + gimpgradient_pdb.lo gimpgradients_pdb.lo \ + gimpgradientselect_pdb.lo gimpguides_pdb.lo gimphelp_pdb.lo \ + gimpimage_pdb.lo gimplayer_pdb.lo gimpmessage_pdb.lo \ + gimpmisc_pdb.lo gimppainttools_pdb.lo gimppalette_pdb.lo \ + gimppalettes_pdb.lo gimppaletteselect_pdb.lo \ + gimpparasite_pdb.lo gimppaths_pdb.lo gimppattern_pdb.lo \ + gimppatterns_pdb.lo gimppatternselect_pdb.lo gimpplugin_pdb.lo \ + gimpproceduraldb_pdb.lo gimpprogress_pdb.lo \ + gimpselection_pdb.lo gimpselectiontools_pdb.lo \ + gimptexttool_pdb.lo gimptransformtools_pdb.lo gimpundo_pdb.lo \ + gimpunit_pdb.lo +am__objects_2 = +am__objects_3 = gimp.lo $(am__objects_1) $(am__objects_2) \ + gimpbrushes.lo gimpbrushselect.lo gimpchannel.lo \ + gimpdrawable.lo gimpfontselect.lo gimpgradients.lo \ + gimpgradientselect.lo gimpimage.lo gimplayer.lo gimppalette.lo \ + gimppalettes.lo gimppaletteselect.lo gimppatterns.lo \ + gimppatternselect.lo gimppixelfetcher.lo gimppixelrgn.lo \ + gimpplugin.lo gimpproceduraldb.lo gimpprogress.lo \ + gimpregioniterator.lo gimpselection.lo gimptile.lo \ + gimpunitcache.lo +am__objects_4 = gimpenums.lo +am_libgimp_2_0_la_OBJECTS = $(am__objects_3) $(am__objects_4) +libgimp_2_0_la_OBJECTS = $(am_libgimp_2_0_la_OBJECTS) +am__DEPENDENCIES_4 = ./libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la +am_libgimpui_2_0_la_OBJECTS = gimpui.lo gimpmenu.lo \ + gimpaspectpreview.lo gimpbrushmenu.lo gimpdrawablepreview.lo \ + gimpfontmenu.lo gimpgradientmenu.lo gimppalettemenu.lo \ + gimppatternmenu.lo gimpdrawablecombobox.lo \ + gimpimagecombobox.lo gimppixbuf.lo gimpprogressbar.lo \ + gimpexport.lo +libgimpui_2_0_la_OBJECTS = $(am_libgimpui_2_0_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimp_2_0_la_SOURCES) $(libgimpui_2_0_la_SOURCES) +DIST_SOURCES = $(libgimp_2_0_la_SOURCES) $(libgimpui_2_0_la_SOURCES) +DATA = $(noinst_DATA) +gimpincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(gimpinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +318,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +369,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +416,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,37 +456,28 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = ./libgimp-$(GIMP_API_VERSION).la - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @OS_WIN32_TRUE@gimp_def = gimp.def @OS_WIN32_TRUE@gimpui_def = gimpui.def @OS_WIN32_TRUE@libgimp_export_symbols = -export-symbols gimp.def @OS_WIN32_TRUE@libgimpui_export_symbols = -export-symbols gimpui.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimp-$(GIMP_API_VERSION).lib gimpui-$(GIMP_API_VERSION).lib - gimpincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimp - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimp\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - lib_LTLIBRARIES = libgimp-2.0.la libgimpui-2.0.la - PDB_WRAPPERS_C = \ gimpbrush_pdb.c \ gimpbrushes_pdb.c \ @@ -444,7 +523,6 @@ gimpundo_pdb.c \ gimpunit_pdb.c - PDB_WRAPPERS_H = \ gimp_pdb.h \ gimpbrush_pdb.h \ @@ -491,7 +569,6 @@ gimpundo_pdb.h \ gimpunit_pdb.h - libgimp_2_0_la_sources = \ gimp.c \ gimp.h \ @@ -549,13 +626,10 @@ stdplugins-intl.h \ libgimp-intl.h - libgimp_2_0_la_built_sources = \ gimpenums.c - libgimp_2_0_la_extra_sources = gimpenums.c.tail - EXTRA_DIST = \ COPYING \ makefile.msc \ @@ -563,12 +637,10 @@ gimpui.def \ $(libgimp_2_0_la_extra_sources) - libgimp_2_0_la_SOURCES = \ $(libgimp_2_0_la_sources) \ $(libgimp_2_0_la_built_sources) - libgimpui_2_0_la_SOURCES = \ gimpui.c \ gimpui.h \ @@ -600,7 +672,6 @@ gimpexport.c \ gimpexport.h - gimpinclude_HEADERS = \ gimp.h \ gimpcompat.h \ @@ -646,27 +717,21 @@ gimpimagecombobox.h \ gimpexport.h - libgimp_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimp_export_symbols) - libgimp_2_0_la_LIBADD = $(libgimpcolor) $(libgimpbase) $(GLIB_LIBS) $(RT_LIBS) - libgimp_2_0_la_DEPENDENCIES = $(gimp_def) $(libgimpcolor) $(libgimpbase) - libgimpui_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpui_export_symbols) - libgimpui_2_0_la_LIBADD = $(libgimp) $(libgimpwidgets) $(libgimpcolor) \ $(libgimpbase) $(libgimpmodule) $(GTK_LIBS) $(RT_LIBS) - libgimpui_2_0_la_DEPENDENCIES = $(gimpui_def) $(libgimp) $(libgimpwidgets) $(libgimpbase) # @@ -675,183 +740,63 @@ # setup autogeneration dependencies gen_sources = xgen-cec CLEANFILES = $(gen_sources) -subdir = libgimp -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -am__objects_1 = gimpbrush_pdb.lo gimpbrushes_pdb.lo \ - gimpbrushselect_pdb.lo gimpchannel_pdb.lo gimpcolor_pdb.lo \ - gimpcontext_pdb.lo gimpconvert_pdb.lo gimpdisplay_pdb.lo \ - gimpdrawable_pdb.lo gimpdrawabletransform_pdb.lo \ - gimpedit_pdb.lo gimpfileops_pdb.lo gimpfloatingsel_pdb.lo \ - gimpfonts_pdb.lo gimpfontselect_pdb.lo gimpgimprc_pdb.lo \ - gimpgradient_pdb.lo gimpgradients_pdb.lo \ - gimpgradientselect_pdb.lo gimpguides_pdb.lo gimphelp_pdb.lo \ - gimpimage_pdb.lo gimplayer_pdb.lo gimpmessage_pdb.lo \ - gimpmisc_pdb.lo gimppainttools_pdb.lo gimppalette_pdb.lo \ - gimppalettes_pdb.lo gimppaletteselect_pdb.lo \ - gimpparasite_pdb.lo gimppaths_pdb.lo gimppattern_pdb.lo \ - gimppatterns_pdb.lo gimppatternselect_pdb.lo gimpplugin_pdb.lo \ - gimpproceduraldb_pdb.lo gimpprogress_pdb.lo \ - gimpselection_pdb.lo gimpselectiontools_pdb.lo \ - gimptexttool_pdb.lo gimptransformtools_pdb.lo gimpundo_pdb.lo \ - gimpunit_pdb.lo -am__objects_2 = -am__objects_3 = gimp.lo $(am__objects_1) $(am__objects_2) gimpbrushes.lo \ - gimpbrushselect.lo gimpchannel.lo gimpdrawable.lo \ - gimpfontselect.lo gimpgradients.lo gimpgradientselect.lo \ - gimpimage.lo gimplayer.lo gimppalette.lo gimppalettes.lo \ - gimppaletteselect.lo gimppatterns.lo gimppatternselect.lo \ - gimppixelfetcher.lo gimppixelrgn.lo gimpplugin.lo \ - gimpproceduraldb.lo gimpprogress.lo gimpregioniterator.lo \ - gimpselection.lo gimptile.lo gimpunitcache.lo -am__objects_4 = gimpenums.lo -am_libgimp_2_0_la_OBJECTS = $(am__objects_3) $(am__objects_4) -libgimp_2_0_la_OBJECTS = $(am_libgimp_2_0_la_OBJECTS) -am_libgimpui_2_0_la_OBJECTS = gimpui.lo gimpmenu.lo gimpaspectpreview.lo \ - gimpbrushmenu.lo gimpdrawablepreview.lo gimpfontmenu.lo \ - gimpgradientmenu.lo gimppalettemenu.lo gimppatternmenu.lo \ - gimpdrawablecombobox.lo gimpimagecombobox.lo gimppixbuf.lo \ - gimpprogressbar.lo gimpexport.lo -libgimpui_2_0_la_OBJECTS = $(am_libgimpui_2_0_la_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpaspectpreview.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrush_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushes.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushes_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushmenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushselect.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbrushselect_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchannel.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchannel_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolor_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontext_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpconvert_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdisplay_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawable_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawablecombobox.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawablepreview.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdrawabletransform_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpedit_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenums.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpexport.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfileops_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfloatingsel_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfontmenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfonts_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfontselect.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfontselect_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgimprc_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradient_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradientmenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradients.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradients_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradientselect.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpgradientselect_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpguides_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphelp_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimage_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpimagecombobox.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplayer.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimplayer_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmessage_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmisc_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppainttools_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalette.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalette_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalettemenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalettes.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppalettes_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaletteselect.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaletteselect_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpparasite_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppaths_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppattern_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatternmenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatterns.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatterns_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatternselect.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatternselect_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppixbuf.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppixelfetcher.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppixelrgn.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpplugin.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpplugin_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpproceduraldb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpproceduraldb_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprogress.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprogress_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprogressbar.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpregioniterator.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselection.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselection_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpselectiontools_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptexttool_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptile.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimptransformtools_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpui.Plo ./$(DEPDIR)/gimpundo_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpunit_pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpunitcache.Plo -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimp_2_0_la_SOURCES) $(libgimpui_2_0_la_SOURCES) -DATA = $(noinst_DATA) - -HEADERS = $(gimpinclude_HEADERS) - -DIST_COMMON = $(gimpinclude_HEADERS) $(srcdir)/Makefile.in COPYING \ - Makefile.am -SOURCES = $(libgimp_2_0_la_SOURCES) $(libgimpui_2_0_la_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimp/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimp/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -861,7 +806,7 @@ $(LINK) -rpath $(libdir) $(libgimpui_2_0_la_LDFLAGS) $(libgimpui_2_0_la_OBJECTS) $(libgimpui_2_0_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -950,37 +895,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpunitcache.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -991,33 +924,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -gimpincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-gimpincludeHEADERS: $(gimpinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(gimpincludedir) + test -z "$(gimpincludedir)" || $(mkdir_p) "$(DESTDIR)$(gimpincludedir)" @list='$(gimpinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(gimpincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gimpincludedir)/$$f"; \ - $(gimpincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(gimpincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(gimpincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(gimpincludedir)/$$f'"; \ + $(gimpincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(gimpincludedir)/$$f"; \ done uninstall-gimpincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(gimpinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(gimpincludedir)/$$f"; \ - rm -f $(DESTDIR)$(gimpincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(gimpincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(gimpincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -1026,6 +950,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1037,10 +962,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -1063,10 +989,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -1080,7 +1002,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -1098,9 +1020,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(gimpincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(gimpincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -1121,7 +1044,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1141,6 +1064,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -1179,16 +1104,16 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-gimpincludeHEADERS \ - install-info install-info-am install-libLTLIBRARIES install-man \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am \ - uninstall-gimpincludeHEADERS uninstall-info-am \ - uninstall-libLTLIBRARIES uninstall-local + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-exec install-exec-am \ + install-gimpincludeHEADERS install-info install-info-am \ + install-libLTLIBRARIES install-man install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-gimpincludeHEADERS \ + uninstall-info-am uninstall-libLTLIBRARIES uninstall-local @OS_WIN32_TRUE@install-libtool-import-lib: diff -uraN gimp-2.2.8/libgimpbase/gimpdatafiles.c gimp-2.2.9/libgimpbase/gimpdatafiles.c --- gimp-2.2.8/libgimpbase/gimpdatafiles.c 2004-11-14 03:49:39.000000000 +0100 +++ gimp-2.2.9/libgimpbase/gimpdatafiles.c 2005-09-20 18:24:00.000000000 +0200 @@ -77,7 +77,7 @@ i = 0; while (exts[i] != NULL) { - if (g_strcasecmp (ext, exts[i]) == 0) + if (g_ascii_strcasecmp (ext, exts[i]) == 0) return TRUE; i++; } diff -uraN gimp-2.2.8/libgimpbase/gimpenv.c gimp-2.2.9/libgimpbase/gimpenv.c --- gimp-2.2.8/libgimpbase/gimpenv.c 2004-12-14 00:41:47.000000000 +0100 +++ gimp-2.2.9/libgimpbase/gimpenv.c 2005-09-20 18:24:00.000000000 +0200 @@ -44,6 +44,7 @@ #define WIN32_LEAN_AND_MEAN /* without it DATADIR in objidl.h will collide */ #include /* For GetModuleFileName */ #include +#include #ifndef S_IWUSR # define S_IWUSR _S_IWRITE #endif @@ -208,10 +209,10 @@ * Otherwise, use the directory where the executable is. */ - sep1 = strrchr (filename, '\\'); + sep1 = _mbsrchr (filename, '\\'); *sep1 = '\0'; - sep2 = strrchr (filename, '\\'); + sep2 = _mbsrchr (filename, '\\'); if (sep2 != NULL) { if (g_ascii_strcasecmp (sep2 + 1, "bin") == 0) diff -uraN gimp-2.2.8/libgimpbase/gimputils.c gimp-2.2.9/libgimpbase/gimputils.c --- gimp-2.2.8/libgimpbase/gimputils.c 2005-01-22 17:22:39.000000000 +0100 +++ gimp-2.2.9/libgimpbase/gimputils.c 2005-10-20 12:20:15.000000000 +0200 @@ -395,10 +395,11 @@ { GEnumClass *enum_class; GEnumValue *enum_value; + gboolean success = FALSE; g_return_val_if_fail (G_TYPE_IS_ENUM (enum_type), FALSE); - enum_class = g_type_class_peek (enum_type); + enum_class = g_type_class_ref (enum_type); enum_value = g_enum_get_value (enum_class, value); if (enum_value) @@ -428,10 +429,12 @@ NULL); } - return TRUE; + success = TRUE; } - return FALSE; + g_type_class_unref (enum_class); + + return success; } /** diff -uraN gimp-2.2.8/libgimpbase/gimpversion.h gimp-2.2.9/libgimpbase/gimpversion.h --- gimp-2.2.8/libgimpbase/gimpversion.h 2005-06-06 19:07:34.000000000 +0200 +++ gimp-2.2.9/libgimpbase/gimpversion.h 2005-08-15 12:09:21.000000000 +0200 @@ -11,8 +11,8 @@ #define GIMP_MAJOR_VERSION (2) #define GIMP_MINOR_VERSION (2) -#define GIMP_MICRO_VERSION (8) -#define GIMP_VERSION "2.2.8" +#define GIMP_MICRO_VERSION (9) +#define GIMP_VERSION "2.2.9" #define GIMP_API_VERSION "2.0" #define GIMP_CHECK_VERSION(major, minor, micro) \ (GIMP_MAJOR_VERSION > (major) || \ diff -uraN gimp-2.2.8/libgimpbase/Makefile.in gimp-2.2.9/libgimpbase/Makefile.in --- gimp-2.2.8/libgimpbase/Makefile.in 2005-06-26 21:28:20.000000000 +0200 +++ gimp-2.2.9/libgimpbase/Makefile.in 2005-10-27 17:11:41.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,56 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = libgimpbase +DIST_COMMON = $(libgimpbaseinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(libgimpbaseincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = +am__objects_1 = gimpbasetypes.lo gimpbase-private.lo gimpchecks.lo \ + gimpdatafiles.lo gimpenv.lo gimpmemsize.lo gimpparasite.lo \ + gimpparasiteio.lo gimpprotocol.lo gimpsignal.lo gimpunit.lo \ + gimputils.lo gimpwire.lo +am__objects_2 = gimpbaseenums.lo +am_libgimpbase_2_0_la_OBJECTS = $(am__objects_1) $(am__objects_2) +libgimpbase_2_0_la_OBJECTS = $(am_libgimpbase_2_0_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpbase_2_0_la_SOURCES) +DIST_SOURCES = $(libgimpbase_2_0_la_SOURCES) +DATA = $(noinst_DATA) +libgimpbaseincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libgimpbaseinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +284,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +335,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +382,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,16 +422,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @OS_WIN32_TRUE@gimpbase_def = gimpbase.def @OS_WIN32_TRUE@libgimpbase_export_symbols = -export-symbols gimpbase.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimpbase-$(GIMP_API_VERSION).lib - libgimpbaseincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpbase - AM_CPPFLAGS = \ -DPREFIX=\""$(prefix)"\" \ -DGIMPDIR=\""$(gimpdir)"\" \ @@ -388,20 +437,16 @@ -DG_LOG_DOMAIN=\"LibGimpBase\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ makefile.msc \ gimpbase.def - lib_LTLIBRARIES = libgimpbase-2.0.la - libgimpbase_sources = \ gimpbase.h \ gimpbaseenums.h \ @@ -436,13 +481,10 @@ gimpwire.c \ gimpwire.h - libgimpbase_built_sources = \ gimpbaseenums.c - libgimpbase_2_0_la_SOURCES = $(libgimpbase_sources) $(libgimpbase_built_sources) - libgimpbaseinclude_HEADERS = \ gimpbase.h \ gimpbaseenums.h \ @@ -460,102 +502,76 @@ gimpunit.h \ gimputils.h - libgimpbase_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpbase_export_symbols) - libgimpbase_2_0_la_DEPENDENCIES = $(gimpbase_def) - libgimpbase_2_0_la_LIBADD = $(GLIB_LIBS) - # # rules to generate built sources # gen_sources = xgen-bec CLEANFILES = $(gen_sources) -subdir = libgimpbase -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -am__objects_1 = gimpbasetypes.lo gimpbase-private.lo gimpchecks.lo \ - gimpdatafiles.lo gimpenv.lo gimpmemsize.lo gimpparasite.lo \ - gimpparasiteio.lo gimpprotocol.lo gimpsignal.lo gimpunit.lo \ - gimputils.lo gimpwire.lo -am__objects_2 = gimpbaseenums.lo -am_libgimpbase_2_0_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libgimpbase_2_0_la_OBJECTS = $(am_libgimpbase_2_0_la_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpbase-private.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbaseenums.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbasetypes.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchecks.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdatafiles.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpenv.Plo ./$(DEPDIR)/gimpmemsize.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpparasite.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpparasiteio.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprotocol.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsignal.Plo ./$(DEPDIR)/gimpunit.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimputils.Plo ./$(DEPDIR)/gimpwire.Plo -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpbase_2_0_la_SOURCES) -DATA = $(noinst_DATA) - -HEADERS = $(libgimpbaseinclude_HEADERS) - -DIST_COMMON = $(libgimpbaseinclude_HEADERS) $(srcdir)/Makefile.in \ - Makefile.am -SOURCES = $(libgimpbase_2_0_la_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimpbase/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimpbase/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -563,7 +579,7 @@ $(LINK) -rpath $(libdir) $(libgimpbase_2_0_la_LDFLAGS) $(libgimpbase_2_0_la_OBJECTS) $(libgimpbase_2_0_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -584,37 +600,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpwire.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -625,33 +629,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -libgimpbaseincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-libgimpbaseincludeHEADERS: $(libgimpbaseinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libgimpbaseincludedir) + test -z "$(libgimpbaseincludedir)" || $(mkdir_p) "$(DESTDIR)$(libgimpbaseincludedir)" @list='$(libgimpbaseinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(libgimpbaseincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpbaseincludedir)/$$f"; \ - $(libgimpbaseincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpbaseincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(libgimpbaseincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libgimpbaseincludedir)/$$f'"; \ + $(libgimpbaseincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libgimpbaseincludedir)/$$f"; \ done uninstall-libgimpbaseincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libgimpbaseinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(libgimpbaseincludedir)/$$f"; \ - rm -f $(DESTDIR)$(libgimpbaseincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libgimpbaseincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libgimpbaseincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -660,6 +655,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -671,10 +667,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -697,10 +694,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -714,7 +707,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -732,9 +725,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgimpbaseincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgimpbaseincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -755,7 +749,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -775,6 +769,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -813,16 +809,17 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-libLTLIBRARIES install-libgimpbaseincludeHEADERS \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-info-am uninstall-libLTLIBRARIES \ - uninstall-libgimpbaseincludeHEADERS uninstall-local + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-exec install-exec-am install-info \ + install-info-am install-libLTLIBRARIES \ + install-libgimpbaseincludeHEADERS install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am \ + uninstall-libLTLIBRARIES uninstall-libgimpbaseincludeHEADERS \ + uninstall-local @OS_WIN32_TRUE@install-libtool-import-lib: diff -uraN gimp-2.2.8/libgimpcolor/Makefile.in gimp-2.2.9/libgimpcolor/Makefile.in --- gimp-2.2.8/libgimpcolor/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/libgimpcolor/Makefile.in 2005-10-27 17:11:41.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,57 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +EXTRA_PROGRAMS = test-color-parser$(EXEEXT) +subdir = libgimpcolor +DIST_COMMON = $(libgimpcolorinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(libgimpcolorincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = +am_libgimpcolor_2_0_la_OBJECTS = gimpadaptivesupersample.lo \ + gimpbilinear.lo gimpcmyk.lo gimpcolorspace.lo gimphsv.lo \ + gimprgb.lo gimprgb-parse.lo +libgimpcolor_2_0_la_OBJECTS = $(am_libgimpcolor_2_0_la_OBJECTS) +test_color_parser_SOURCES = test-color-parser.c +test_color_parser_OBJECTS = test-color-parser.$(OBJEXT) +am__DEPENDENCIES_2 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpcolor_2_0_la_SOURCES) test-color-parser.c +DIST_SOURCES = $(libgimpcolor_2_0_la_SOURCES) test-color-parser.c +DATA = $(noinst_DATA) +libgimpcolorincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libgimpcolorinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +285,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +336,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +383,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,38 +423,27 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @PLATFORM_WIN32_FALSE@libm = -lm - @OS_WIN32_TRUE@gimpcolor_def = gimpcolor.def @OS_WIN32_TRUE@libgimpcolor_export_symbols = -export-symbols gimpcolor.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimpcolor-$(GIMP_API_VERSION).lib - libgimpcolorincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpcolor - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimpColor\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ makefile.msc \ gimpcolor.def - lib_LTLIBRARIES = libgimpcolor-2.0.la - libgimpcolor_2_0_la_SOURCES = \ gimpcolor.h \ gimpcolortypes.h \ @@ -417,7 +461,6 @@ gimprgb.h \ gimprgb-parse.c - libgimpcolorinclude_HEADERS = \ gimpcolor.h \ gimpcolortypes.h \ @@ -428,112 +471,83 @@ gimphsv.h \ gimprgb.h - libgimpcolor_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpcolor_export_symbols) - libgimpcolor_2_0_la_DEPENDENCIES = $(gimpcolor_def) $(libgimpbase) - libgimpcolor_2_0_la_LIBADD = $(GLIB_LIBS) $(libm) - # # test programs, not to be built by default and never installed # TESTS = test-color-parser$(EXEEXT) - -EXTRA_PROGRAMS = test-color-parser - test_color_parser_DEPENDENCIES = \ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la - test_color_parser_LDADD = \ $(GLIB_LIBS) \ $(test_color_parser_DEPENDENCIES) - CLEANFILES = $(EXTRA_PROGRAMS) -subdir = libgimpcolor -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -am_libgimpcolor_2_0_la_OBJECTS = gimpadaptivesupersample.lo \ - gimpbilinear.lo gimpcmyk.lo gimpcolorspace.lo gimphsv.lo \ - gimprgb.lo gimprgb-parse.lo -libgimpcolor_2_0_la_OBJECTS = $(am_libgimpcolor_2_0_la_OBJECTS) -EXTRA_PROGRAMS = test-color-parser$(EXEEXT) -test_color_parser_SOURCES = test-color-parser.c -test_color_parser_OBJECTS = test-color-parser.$(OBJEXT) -test_color_parser_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpadaptivesupersample.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpbilinear.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcmyk.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorspace.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphsv.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprgb-parse.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimprgb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/test-color-parser.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpcolor_2_0_la_SOURCES) test-color-parser.c -DATA = $(noinst_DATA) - -HEADERS = $(libgimpcolorinclude_HEADERS) - -DIST_COMMON = $(libgimpcolorinclude_HEADERS) $(srcdir)/Makefile.in \ - Makefile.am -SOURCES = $(libgimpcolor_2_0_la_SOURCES) test-color-parser.c - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimpcolor/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimpcolor/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -544,7 +558,7 @@ $(LINK) $(test_color_parser_LDFLAGS) $(test_color_parser_OBJECTS) $(test_color_parser_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -559,37 +573,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-color-parser.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -600,33 +602,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -libgimpcolorincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-libgimpcolorincludeHEADERS: $(libgimpcolorinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libgimpcolorincludedir) + test -z "$(libgimpcolorincludedir)" || $(mkdir_p) "$(DESTDIR)$(libgimpcolorincludedir)" @list='$(libgimpcolorinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(libgimpcolorincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpcolorincludedir)/$$f"; \ - $(libgimpcolorincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpcolorincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(libgimpcolorincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libgimpcolorincludedir)/$$f'"; \ + $(libgimpcolorincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libgimpcolorincludedir)/$$f"; \ done uninstall-libgimpcolorincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libgimpcolorinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(libgimpcolorincludedir)/$$f"; \ - rm -f $(DESTDIR)$(libgimpcolorincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libgimpcolorincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libgimpcolorincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -635,6 +628,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -646,10 +640,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -686,24 +681,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -728,27 +723,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ echo "$$dashes"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -762,7 +753,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -781,9 +772,10 @@ $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgimpcolorincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgimpcolorincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -804,7 +796,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -824,6 +816,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -861,10 +855,11 @@ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-generic clean-libLTLIBRARIES clean-libtool ctags \ - distclean distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am \ install-libLTLIBRARIES install-libgimpcolorincludeHEADERS \ install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ diff -uraN gimp-2.2.8/libgimpmath/Makefile.in gimp-2.2.9/libgimpmath/Makefile.in --- gimp-2.2.8/libgimpmath/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/libgimpmath/Makefile.in 2005-10-27 17:11:41.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,55 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +EXTRA_PROGRAMS = test-md5$(EXEEXT) +subdir = libgimpmath +DIST_COMMON = $(libgimpmathinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(libgimpmathincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = +am_libgimpmath_2_0_la_OBJECTS = gimpmatrix.lo gimpmd5.lo gimpvector.lo +libgimpmath_2_0_la_OBJECTS = $(am_libgimpmath_2_0_la_OBJECTS) +test_md5_SOURCES = test-md5.c +test_md5_OBJECTS = test-md5.$(OBJEXT) +am__DEPENDENCIES_2 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpmath_2_0_la_SOURCES) test-md5.c +DIST_SOURCES = $(libgimpmath_2_0_la_SOURCES) test-md5.c +DATA = $(noinst_DATA) +libgimpmathincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libgimpmathinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +283,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +334,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +381,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,38 +421,27 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @PLATFORM_WIN32_FALSE@libm = -lm - @OS_WIN32_TRUE@gimpmath_def = gimpmath.def @OS_WIN32_TRUE@libgimpmath_export_symbols = -export-symbols gimpmath.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimpmath-$(GIMP_API_VERSION).lib - libgimpmathincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpmath - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimpMath\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ makefile.msc \ gimpmath.def - lib_LTLIBRARIES = libgimpmath-2.0.la - libgimpmath_2_0_la_SOURCES = \ gimpmath.h \ gimpmathtypes.h \ @@ -410,7 +452,6 @@ gimpvector.c \ gimpvector.h - libgimpmathinclude_HEADERS = \ gimpmath.h \ gimpmathtypes.h \ @@ -418,105 +459,83 @@ gimpmd5.h \ gimpvector.h - libgimpmath_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpmath_export_symbols) - libgimpmath_2_0_la_DEPENDENCIES = $(gimpmath_def) $(libgimpbase) - libgimpmath_2_0_la_LIBADD = $(GLIB_LIBS) $(libm) - # # test programs, not to be built by default and never installed # TESTS = test-md5$(EXEEXT) - -EXTRA_PROGRAMS = test-md5 - test_md5_DEPENDENCIES = \ $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la - test_md5_LDADD = \ $(GLIB_LIBS) \ $(test_md5_DEPENDENCIES) - CLEANFILES = $(EXTRA_PROGRAMS) -subdir = libgimpmath -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -am_libgimpmath_2_0_la_OBJECTS = gimpmatrix.lo gimpmd5.lo gimpvector.lo -libgimpmath_2_0_la_OBJECTS = $(am_libgimpmath_2_0_la_OBJECTS) -EXTRA_PROGRAMS = test-md5$(EXEEXT) -test_md5_SOURCES = test-md5.c -test_md5_OBJECTS = test-md5.$(OBJEXT) -test_md5_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpmatrix.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmd5.Plo ./$(DEPDIR)/gimpvector.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/test-md5.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpmath_2_0_la_SOURCES) test-md5.c -DATA = $(noinst_DATA) - -HEADERS = $(libgimpmathinclude_HEADERS) - -DIST_COMMON = $(libgimpmathinclude_HEADERS) $(srcdir)/Makefile.in \ - Makefile.am -SOURCES = $(libgimpmath_2_0_la_SOURCES) test-md5.c - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimpmath/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimpmath/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -527,7 +546,7 @@ $(LINK) $(test_md5_LDFLAGS) $(test_md5_OBJECTS) $(test_md5_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -538,37 +557,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-md5.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -579,33 +586,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -libgimpmathincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-libgimpmathincludeHEADERS: $(libgimpmathinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libgimpmathincludedir) + test -z "$(libgimpmathincludedir)" || $(mkdir_p) "$(DESTDIR)$(libgimpmathincludedir)" @list='$(libgimpmathinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(libgimpmathincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpmathincludedir)/$$f"; \ - $(libgimpmathincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpmathincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(libgimpmathincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libgimpmathincludedir)/$$f'"; \ + $(libgimpmathincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libgimpmathincludedir)/$$f"; \ done uninstall-libgimpmathincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libgimpmathinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(libgimpmathincludedir)/$$f"; \ - rm -f $(DESTDIR)$(libgimpmathincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libgimpmathincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libgimpmathincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -614,6 +612,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -625,10 +624,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -665,24 +665,24 @@ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xpass=`expr $$xpass + 1`; \ - failed=`expr $$failed + 1`; \ - echo "XPASS: $$tst"; \ + xpass=`expr $$xpass + 1`; \ + failed=`expr $$failed + 1`; \ + echo "XPASS: $$tst"; \ ;; \ *) \ - echo "PASS: $$tst"; \ + echo "PASS: $$tst"; \ ;; \ esac; \ elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ *" $$tst "*) \ - xfail=`expr $$xfail + 1`; \ - echo "XFAIL: $$tst"; \ + xfail=`expr $$xfail + 1`; \ + echo "XFAIL: $$tst"; \ ;; \ *) \ - failed=`expr $$failed + 1`; \ - echo "FAIL: $$tst"; \ + failed=`expr $$failed + 1`; \ + echo "FAIL: $$tst"; \ ;; \ esac; \ else \ @@ -707,27 +707,23 @@ skipped=""; \ if test "$$skip" -ne 0; then \ skipped="($$skip tests were not run)"; \ - test `echo "$$skipped" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$skipped"; \ fi; \ report=""; \ if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \ report="Please report to $(PACKAGE_BUGREPORT)"; \ - test `echo "$$report" | wc -c` -gt `echo "$$banner" | wc -c` && \ + test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \ dashes="$$report"; \ fi; \ dashes=`echo "$$dashes" | sed s/./=/g`; \ echo "$$dashes"; \ echo "$$banner"; \ - test -n "$$skipped" && echo "$$skipped"; \ - test -n "$$report" && echo "$$report"; \ + test -z "$$skipped" || echo "$$skipped"; \ + test -z "$$report" || echo "$$report"; \ echo "$$dashes"; \ test "$$failed" -eq 0; \ else :; fi -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -741,7 +737,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -760,9 +756,10 @@ $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgimpmathincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgimpmathincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -783,7 +780,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -803,6 +800,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -840,10 +839,11 @@ .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-generic clean-libLTLIBRARIES clean-libtool ctags \ - distclean distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am \ install-libLTLIBRARIES install-libgimpmathincludeHEADERS \ install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ diff -uraN gimp-2.2.8/libgimpmodule/Makefile.in gimp-2.2.9/libgimpmodule/Makefile.in --- gimp-2.2.8/libgimpmodule/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/libgimpmodule/Makefile.in 2005-10-27 17:11:41.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,52 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = libgimpmodule +DIST_COMMON = $(libgimpmoduleinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(libgimpmoduleincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = +am_libgimpmodule_2_0_la_OBJECTS = gimpmodule.lo gimpmoduledb.lo +libgimpmodule_2_0_la_OBJECTS = $(am_libgimpmodule_2_0_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpmodule_2_0_la_SOURCES) +DIST_SOURCES = $(libgimpmodule_2_0_la_SOURCES) +DATA = $(noinst_DATA) +libgimpmoduleincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libgimpmoduleinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,37 +418,27 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @OS_WIN32_TRUE@gimpmodule_def = gimpmodule.def @OS_WIN32_TRUE@libgimpmodule_export_symbols = -export-symbols gimpmodule.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimpmodule-$(GIMP_API_VERSION).lib - libgimpmoduleincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpmodule - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimpModule\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ $(GMODULE_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ makefile.msc \ gimpmodule.def - lib_LTLIBRARIES = libgimpmodule-2.0.la - libgimpmodule_2_0_la_SOURCES = \ gimpmoduletypes.h \ gimpmodule.c \ @@ -406,90 +446,78 @@ gimpmoduledb.c \ gimpmoduledb.h - libgimpmoduleinclude_HEADERS = \ gimpmoduletypes.h \ gimpmodule.h \ gimpmoduledb.h - libgimpmodule_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpmodule_export_symbols) - libgimpmodule_2_0_la_DEPENDENCIES = $(gimpmodule_def) - libgimpmodule_2_0_la_LIBADD = \ $(libgimpbase) \ $(GMODULE_LIBS) -subdir = libgimpmodule -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -am_libgimpmodule_2_0_la_OBJECTS = gimpmodule.lo gimpmoduledb.lo -libgimpmodule_2_0_la_OBJECTS = $(am_libgimpmodule_2_0_la_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpmodule.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmoduledb.Plo -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpmodule_2_0_la_SOURCES) -DATA = $(noinst_DATA) - -HEADERS = $(libgimpmoduleinclude_HEADERS) - -DIST_COMMON = $(libgimpmoduleinclude_HEADERS) $(srcdir)/Makefile.in \ - Makefile.am -SOURCES = $(libgimpmodule_2_0_la_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimpmodule/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimpmodule/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -497,7 +525,7 @@ $(LINK) -rpath $(libdir) $(libgimpmodule_2_0_la_LDFLAGS) $(libgimpmodule_2_0_la_OBJECTS) $(libgimpmodule_2_0_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -506,37 +534,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpmoduledb.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -547,33 +563,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -libgimpmoduleincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-libgimpmoduleincludeHEADERS: $(libgimpmoduleinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libgimpmoduleincludedir) + test -z "$(libgimpmoduleincludedir)" || $(mkdir_p) "$(DESTDIR)$(libgimpmoduleincludedir)" @list='$(libgimpmoduleinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(libgimpmoduleincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpmoduleincludedir)/$$f"; \ - $(libgimpmoduleincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpmoduleincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(libgimpmoduleincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libgimpmoduleincludedir)/$$f'"; \ + $(libgimpmoduleincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libgimpmoduleincludedir)/$$f"; \ done uninstall-libgimpmoduleincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libgimpmoduleinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(libgimpmoduleincludedir)/$$f"; \ - rm -f $(DESTDIR)$(libgimpmoduleincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libgimpmoduleincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libgimpmoduleincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -582,6 +589,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -593,10 +601,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -619,10 +628,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -636,7 +641,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -654,9 +659,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgimpmoduleincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgimpmoduleincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -676,7 +682,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -696,11 +702,14 @@ dvi-am: +html: html-am + info: info-am info-am: -install-data-am: install-data-local install-libgimpmoduleincludeHEADERS +install-data-am: install-data-local \ + install-libgimpmoduleincludeHEADERS install-exec-am: install-libLTLIBRARIES @@ -734,16 +743,17 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-libLTLIBRARIES install-libgimpmoduleincludeHEADERS \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-info-am uninstall-libLTLIBRARIES \ - uninstall-libgimpmoduleincludeHEADERS uninstall-local + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-exec install-exec-am install-info \ + install-info-am install-libLTLIBRARIES \ + install-libgimpmoduleincludeHEADERS install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am \ + uninstall-libLTLIBRARIES uninstall-libgimpmoduleincludeHEADERS \ + uninstall-local @OS_WIN32_TRUE@install-libtool-import-lib: diff -uraN gimp-2.2.8/libgimpthumb/Makefile.in gimp-2.2.9/libgimpthumb/Makefile.in --- gimp-2.2.8/libgimpthumb/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/libgimpthumb/Makefile.in 2005-10-27 17:11:42.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,55 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = libgimpthumb +DIST_COMMON = $(libgimpthumbinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(libgimpthumbincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = +libgimpthumb_2_0_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) +am_libgimpthumb_2_0_la_OBJECTS = gimpthumb-enums.lo gimpthumb-error.lo \ + gimpthumb-utils.lo gimpthumbnail.lo +libgimpthumb_2_0_la_OBJECTS = $(am_libgimpthumb_2_0_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpthumb_2_0_la_SOURCES) +DIST_SOURCES = $(libgimpthumb_2_0_la_SOURCES) +DATA = $(noinst_DATA) +libgimpthumbincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libgimpthumbinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +283,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +334,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +381,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,36 +421,26 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @OS_WIN32_TRUE@gimpthumb_def = gimpthumb.def @OS_WIN32_TRUE@libgimpthumb_export_symbols = -export-symbols gimpthumb.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimpthumb-$(GIMP_API_VERSION).lib - libgimpthumbincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpthumb - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimpThumb\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GDK_PIXBUF_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ makefile.msc \ gimpthumb.def - lib_LTLIBRARIES = libgimpthumb-2.0.la - libgimpthumb_2_0_la_SOURCES = \ gimpthumb.h \ gimpthumb-enums.c \ @@ -410,7 +453,6 @@ gimpthumbnail.c \ gimpthumbnail.h - libgimpthumbinclude_HEADERS = \ gimpthumb.h \ gimpthumb-enums.h \ @@ -419,13 +461,11 @@ gimpthumb-utils.h \ gimpthumbnail.h - libgimpthumb_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpthumb_export_symbols) - libgimpthumb_2_0_la_LIBADD = $(libgimpmath) $(GDK_PIXBUF_LIBS) # @@ -434,76 +474,63 @@ # setup autogeneration dependencies gen_sources = xgen-tec CLEANFILES = $(gen_sources) -subdir = libgimpthumb -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -libgimpthumb_2_0_la_DEPENDENCIES = \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la -am_libgimpthumb_2_0_la_OBJECTS = gimpthumb-enums.lo gimpthumb-error.lo \ - gimpthumb-utils.lo gimpthumbnail.lo -libgimpthumb_2_0_la_OBJECTS = $(am_libgimpthumb_2_0_la_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpthumb-enums.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpthumb-error.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpthumb-utils.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpthumbnail.Plo -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpthumb_2_0_la_SOURCES) -DATA = $(noinst_DATA) - -HEADERS = $(libgimpthumbinclude_HEADERS) - -DIST_COMMON = $(libgimpthumbinclude_HEADERS) $(srcdir)/Makefile.in \ - Makefile.am -SOURCES = $(libgimpthumb_2_0_la_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimpthumb/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimpthumb/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -511,7 +538,7 @@ $(LINK) -rpath $(libdir) $(libgimpthumb_2_0_la_LDFLAGS) $(libgimpthumb_2_0_la_OBJECTS) $(libgimpthumb_2_0_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -522,37 +549,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gimpthumbnail.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -563,33 +578,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -libgimpthumbincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-libgimpthumbincludeHEADERS: $(libgimpthumbinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libgimpthumbincludedir) + test -z "$(libgimpthumbincludedir)" || $(mkdir_p) "$(DESTDIR)$(libgimpthumbincludedir)" @list='$(libgimpthumbinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(libgimpthumbincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpthumbincludedir)/$$f"; \ - $(libgimpthumbincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpthumbincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(libgimpthumbincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libgimpthumbincludedir)/$$f'"; \ + $(libgimpthumbincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libgimpthumbincludedir)/$$f"; \ done uninstall-libgimpthumbincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libgimpthumbinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(libgimpthumbincludedir)/$$f"; \ - rm -f $(DESTDIR)$(libgimpthumbincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libgimpthumbincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libgimpthumbincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -598,6 +604,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -609,10 +616,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -635,10 +643,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -652,7 +656,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -670,9 +674,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgimpthumbincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgimpthumbincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -693,7 +698,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -713,6 +718,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -751,16 +758,17 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-libLTLIBRARIES install-libgimpthumbincludeHEADERS \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-info-am uninstall-libLTLIBRARIES \ - uninstall-libgimpthumbincludeHEADERS uninstall-local + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-exec install-exec-am install-info \ + install-info-am install-libLTLIBRARIES \ + install-libgimpthumbincludeHEADERS install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am \ + uninstall-libLTLIBRARIES uninstall-libgimpthumbincludeHEADERS \ + uninstall-local @OS_WIN32_TRUE@install-libtool-import-lib: diff -uraN gimp-2.2.8/libgimpwidgets/Makefile.in gimp-2.2.9/libgimpwidgets/Makefile.in --- gimp-2.2.8/libgimpwidgets/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/libgimpwidgets/Makefile.in 2005-10-27 17:11:42.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,8 @@ @SET_MAKE@ + + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +36,74 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +EXTRA_PROGRAMS = test-preview-area$(EXEEXT) +subdir = libgimpwidgets +DIST_COMMON = $(libgimpwidgetsinclude_HEADERS) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" \ + "$(DESTDIR)$(libgimpwidgetsincludedir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = +am__objects_1 = gimpwidgetsmarshal.lo +am__objects_2 = gimpwidgets.lo gimpbutton.lo gimpcellrenderercolor.lo \ + gimpcellrenderertoggle.lo gimpchainbutton.lo gimpcolorarea.lo \ + gimpcolorbutton.lo gimpcolordisplay.lo \ + gimpcolordisplaystack.lo gimpcolorhexentry.lo \ + gimpcolornotebook.lo gimpcolorscale.lo gimpcolorscales.lo \ + gimpcolorselector.lo gimpcolorselect.lo gimpcolorselection.lo \ + gimpcontroller.lo gimpdialog.lo gimpfileentry.lo gimpframe.lo \ + gimphelpui.lo gimpintcombobox.lo gimpintstore.lo \ + gimpmemsizeentry.lo gimpoldwidgets.lo gimpoffsetarea.lo \ + gimppatheditor.lo gimppickbutton.lo gimppixmap.lo \ + gimppreview.lo gimppreviewarea.lo gimpquerybox.lo \ + gimpscrolledpreview.lo gimpsizeentry.lo gimpstock.lo \ + gimpunitmenu.lo gimpwidgets-private.lo +am_libgimpwidgets_2_0_la_OBJECTS = $(am__objects_1) $(am__objects_2) +libgimpwidgets_2_0_la_OBJECTS = $(am_libgimpwidgets_2_0_la_OBJECTS) +am_test_preview_area_OBJECTS = test-preview-area.$(OBJEXT) +test_preview_area_OBJECTS = $(am_test_preview_area_OBJECTS) +am__DEPENDENCIES_4 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ + $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpwidgets_2_0_la_SOURCES) \ + $(test_preview_area_SOURCES) +DIST_SOURCES = $(libgimpwidgets_2_0_la_SOURCES) \ + $(test_preview_area_SOURCES) +DATA = $(noinst_DATA) +libgimpwidgetsincludeHEADERS_INSTALL = $(INSTALL_HEADER) +HEADERS = $(libgimpwidgetsinclude_HEADERS) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +302,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +353,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +400,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,34 +440,24 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la - @PLATFORM_WIN32_TRUE@no_undefined = -no-undefined - @PLATFORM_WIN32_FALSE@libm = -lm - @OS_WIN32_TRUE@gimpwidgets_def = gimpwidgets.def @OS_WIN32_TRUE@libgimpwidgets_export_symbols = -export-symbols gimpwidgets.def - @MS_LIB_AVAILABLE_TRUE@noinst_DATA = gimpwidgets-$(GIMP_API_VERSION).lib - libgimpwidgetsincludedir = $(includedir)/gimp-$(GIMP_API_VERSION)/libgimpwidgets - AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"LibGimpWidgets\" \ @GIMP_THREAD_FLAGS@ - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - lib_LTLIBRARIES = libgimpwidgets-2.0.la - libgimpwidgets_2_0_la_sources = \ gimpwidgets.c \ gimpwidgets.h \ @@ -473,25 +535,20 @@ gimpwidgets-private.c \ gimpwidgets-private.h - libgimpwidgets_2_0_la_built_sources = \ gimpwidgetsmarshal.c \ gimpwidgetsmarshal.h - libgimpwidgets_2_0_la_extra_sources = gimpwidgetsmarshal.list - EXTRA_DIST = \ makefile.msc \ gimpwidgets.def \ $(libgimpwidgets_2_0_la_extra_sources) - libgimpwidgets_2_0_la_SOURCES = \ $(libgimpwidgets_2_0_la_built_sources) \ $(libgimpwidgets_2_0_la_sources) - libgimpwidgetsinclude_HEADERS = \ gimpwidgets.h \ gimpwidgetstypes.h \ @@ -531,20 +588,17 @@ gimpstock.h \ gimpunitmenu.h - libgimpwidgets_2_0_la_LDFLAGS = \ -version-info $(LT_VERSION_INFO) \ $(no_undefined) \ $(libgimpwidgets_export_symbols) - libgimpwidgets_2_0_la_LIBADD = \ $(libgimpbase) \ $(libgimpcolor) \ $(GTK_LIBS) \ $(libm) - libgimpwidgets_2_0_la_DEPENDENCIES = $(gimpwidgets_def) # @@ -553,144 +607,72 @@ # setup autogeneration dependancies gen_sources = xgen-gwmh xgen-gwmc CLEANFILES = $(gen_sources) - - -# -# test programs, not to be built by default and never installed -# -EXTRA_PROGRAMS = test-preview-area - test_preview_area_SOURCES = test-preview-area.c - test_preview_area_DEPENDENCIES = \ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la - test_preview_area_LDADD = \ $(GTK_LIBS) \ $(test_preview_area_DEPENDENCIES) -subdir = libgimpwidgets -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -am__objects_1 = gimpwidgetsmarshal.lo -am__objects_2 = gimpwidgets.lo gimpbutton.lo gimpcellrenderercolor.lo \ - gimpcellrenderertoggle.lo gimpchainbutton.lo gimpcolorarea.lo \ - gimpcolorbutton.lo gimpcolordisplay.lo gimpcolordisplaystack.lo \ - gimpcolorhexentry.lo gimpcolornotebook.lo gimpcolorscale.lo \ - gimpcolorscales.lo gimpcolorselector.lo gimpcolorselect.lo \ - gimpcolorselection.lo gimpcontroller.lo gimpdialog.lo \ - gimpfileentry.lo gimpframe.lo gimphelpui.lo gimpintcombobox.lo \ - gimpintstore.lo gimpmemsizeentry.lo gimpoldwidgets.lo \ - gimpoffsetarea.lo gimppatheditor.lo gimppickbutton.lo \ - gimppixmap.lo gimppreview.lo gimppreviewarea.lo gimpquerybox.lo \ - gimpscrolledpreview.lo gimpsizeentry.lo gimpstock.lo \ - gimpunitmenu.lo gimpwidgets-private.lo -am_libgimpwidgets_2_0_la_OBJECTS = $(am__objects_1) $(am__objects_2) -libgimpwidgets_2_0_la_OBJECTS = $(am_libgimpwidgets_2_0_la_OBJECTS) -EXTRA_PROGRAMS = test-preview-area$(EXEEXT) -am_test_preview_area_OBJECTS = test-preview-area.$(OBJEXT) -test_preview_area_OBJECTS = $(am_test_preview_area_OBJECTS) -test_preview_area_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpbutton.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcellrenderercolor.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcellrenderertoggle.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpchainbutton.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorarea.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorbutton.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolordisplay.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolordisplaystack.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorhexentry.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolornotebook.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorscale.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorscales.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorselect.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorselection.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcolorselector.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpcontroller.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpdialog.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpfileentry.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpframe.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimphelpui.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpintcombobox.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpintstore.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpmemsizeentry.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpoffsetarea.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpoldwidgets.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppatheditor.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppickbutton.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppixmap.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppreview.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimppreviewarea.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpquerybox.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpscrolledpreview.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpsizeentry.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpstock.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpunitmenu.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpwidgets-private.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpwidgets.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpwidgetsmarshal.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/test-preview-area.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpwidgets_2_0_la_SOURCES) \ - $(test_preview_area_SOURCES) -DATA = $(noinst_DATA) - -HEADERS = $(libgimpwidgetsinclude_HEADERS) - -DIST_COMMON = $(libgimpwidgetsinclude_HEADERS) $(srcdir)/Makefile.in \ - Makefile.am -SOURCES = $(libgimpwidgets_2_0_la_SOURCES) $(test_preview_area_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libgimpwidgets/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu libgimpwidgets/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -701,7 +683,7 @@ $(LINK) $(test_preview_area_LDFLAGS) $(test_preview_area_OBJECTS) $(test_preview_area_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -747,37 +729,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-preview-area.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -788,33 +758,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -libgimpwidgetsincludeHEADERS_INSTALL = $(INSTALL_HEADER) install-libgimpwidgetsincludeHEADERS: $(libgimpwidgetsinclude_HEADERS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libgimpwidgetsincludedir) + test -z "$(libgimpwidgetsincludedir)" || $(mkdir_p) "$(DESTDIR)$(libgimpwidgetsincludedir)" @list='$(libgimpwidgetsinclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(libgimpwidgetsincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpwidgetsincludedir)/$$f"; \ - $(libgimpwidgetsincludeHEADERS_INSTALL) $$d$$p $(DESTDIR)$(libgimpwidgetsincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(libgimpwidgetsincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libgimpwidgetsincludedir)/$$f'"; \ + $(libgimpwidgetsincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libgimpwidgetsincludedir)/$$f"; \ done uninstall-libgimpwidgetsincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(libgimpwidgetsinclude_HEADERS)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(libgimpwidgetsincludedir)/$$f"; \ - rm -f $(DESTDIR)$(libgimpwidgetsincludedir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(libgimpwidgetsincludedir)/$$f'"; \ + rm -f "$(DESTDIR)$(libgimpwidgetsincludedir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -823,6 +784,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -834,10 +796,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -860,10 +823,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -877,7 +836,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -895,9 +854,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(libgimpwidgetsincludedir) + for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libgimpwidgetsincludedir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -918,7 +878,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -938,11 +898,14 @@ dvi-am: +html: html-am + info: info-am info-am: -install-data-am: install-data-local install-libgimpwidgetsincludeHEADERS +install-data-am: install-data-local \ + install-libgimpwidgetsincludeHEADERS install-exec-am: install-libLTLIBRARIES @@ -976,15 +939,16 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-data-local \ - install-exec install-exec-am install-info install-info-am \ - install-libLTLIBRARIES install-libgimpwidgetsincludeHEADERS \ - install-man install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ - uninstall-am uninstall-info-am uninstall-libLTLIBRARIES \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am \ + install-data-local install-exec install-exec-am install-info \ + install-info-am install-libLTLIBRARIES \ + install-libgimpwidgetsincludeHEADERS install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-info-am \ + uninstall-libLTLIBRARIES \ uninstall-libgimpwidgetsincludeHEADERS uninstall-local diff -uraN gimp-2.2.8/ltmain.sh gimp-2.2.9/ltmain.sh --- gimp-2.2.8/ltmain.sh 2005-04-01 02:47:06.000000000 +0200 +++ gimp-2.2.9/ltmain.sh 2005-09-25 16:53:57.000000000 +0200 @@ -1,7 +1,7 @@ # ltmain.sh - Provide generalized library-building support services. # NOTE: Changing this file will not affect anything until you rerun configure. # -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit , 1996 # @@ -17,7 +17,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -43,9 +43,14 @@ PROGRAM=ltmain.sh PACKAGE=libtool -VERSION=1.5.6 -TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 224 $" +VERSION="1.5.20 Debian 1.5.20-2" +TIMESTAMP=" (1.1220.2.287 2005/08/31 18:54:15)" +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes. +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi # Check that we have a working $echo. if test "X$1" = X--no-reexec; then @@ -83,14 +88,15 @@ Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g' # test EBCDIC or ASCII -case `echo A|tr A '\301'` in - A) # EBCDIC based system - SP2NL="tr '\100' '\n'" - NL2SP="tr '\r\n' '\100\100'" +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + SP2NL='tr \040 \012' + NL2SP='tr \015\012 \040\040' ;; - *) # Assume ASCII based system - SP2NL="tr '\040' '\012'" - NL2SP="tr '\015\012' '\040\040'" + *) # EBCDIC based system + SP2NL='tr \100 \n' + NL2SP='tr \r\n \100\100' ;; esac @@ -107,8 +113,9 @@ fi # Make sure IFS has a sensible default -: ${IFS=" -"} +lt_nl=' +' +IFS=" $lt_nl" if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then $echo "$modename: not configured to build any kind of library" 1>&2 @@ -138,7 +145,8 @@ # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. -func_win32_libid () { +func_win32_libid () +{ win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in @@ -178,7 +186,8 @@ # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' -func_infer_tag () { +func_infer_tag () +{ if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do @@ -235,6 +244,108 @@ esac fi } + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + + $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)" + $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $? + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + $echo "$modename: ERROR: object name conflicts: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2 + exit $EXIT_FAILURE + fi +} + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + my_status="" + + $show "${rm}r $my_gentop" + $run ${rm}r "$my_gentop" + $show "$mkdir $my_gentop" + $run $mkdir "$my_gentop" + my_status=$? + if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then + exit $my_status + fi + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` + my_xdir="$my_gentop/$my_xlib" + + $show "${rm}r $my_xdir" + $run ${rm}r "$my_xdir" + $show "$mkdir $my_xdir" + $run $mkdir "$my_xdir" + status=$? + if test "$status" -ne 0 && test ! -d "$my_xdir"; then + exit $status + fi + case $host in + *-darwin*) + $show "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + if test -z "$run"; then + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'` + darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null` + if test -n "$darwin_arches"; then + darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + $show "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + lipo -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $rm "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we have a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print| xargs basename | sort -u | $NL2SP` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` + lipo -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + ${rm}r unfat-$$ + cd "$darwin_orig_dir" + else + cd "$darwin_orig_dir" + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + fi # $run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` + done + func_extract_archives_result="$my_oldobjs" +} # End of Shell function definitions ##################################### @@ -305,10 +416,10 @@ --version) $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP" $echo - $echo "Copyright (C) 2003 Free Software Foundation, Inc." + $echo "Copyright (C) 2005 Free Software Foundation, Inc." $echo "This is free software; see the source for copying conditions. There is NO" $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - exit $EXIT_SUCCESS + exit $? ;; --config) @@ -317,7 +428,7 @@ for tagname in $taglist; do ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath" done - exit $EXIT_SUCCESS + exit $? ;; --debug) @@ -342,7 +453,7 @@ else $echo "disable static libraries" fi - exit $EXIT_SUCCESS + exit $? ;; --finish) mode="finish" ;; @@ -399,7 +510,7 @@ # Infer the operation mode. if test -z "$mode"; then $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2 - $echo "*** Future versions of Libtool will require -mode=MODE be specified." 1>&2 + $echo "*** Future versions of Libtool will require --mode=MODE be specified." 1>&2 case $nonopt in *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*) mode=link @@ -465,7 +576,7 @@ for arg do - case "$arg_mode" in + case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg="$arg" @@ -547,7 +658,10 @@ case $lastarg in # Double-quote args containing other shell metacharacters. # Many Bourne shells cannot handle close brackets correctly - # in scan sets, so we specify it separately. + # in scan sets, and some SunOS ksh mistreat backslash-escaping + # in scan sets (worked around with variable expansion), + # and furthermore cannot handle '|' '&' '(' ')' in scan sets + # at all, so we specify them separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") lastarg="\"$lastarg\"" ;; @@ -621,6 +735,14 @@ esac done + qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"` + case $qlibobj in + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + qlibobj="\"$qlibobj\"" ;; + esac + test "X$libobj" != "X$qlibobj" \ + && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && $echo "$modename: libobj name \`$libobj' may not contain shell special characters." objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'` if test "X$xdir" = "X$obj"; then @@ -693,12 +815,17 @@ $run $rm $removelist exit $EXIT_FAILURE fi - $echo $srcfile > "$lockfile" + $echo "$srcfile" > "$lockfile" fi if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi + qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"` + case $qsrcfile in + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + qsrcfile="\"$qsrcfile\"" ;; + esac $run $rm "$libobj" "${libobj}T" @@ -720,10 +847,10 @@ fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then - command="$base_compile $srcfile $pic_flag" + command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code - command="$base_compile $srcfile" + command="$base_compile $qsrcfile" fi if test ! -d "${xdir}$objdir"; then @@ -803,9 +930,9 @@ if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code - command="$base_compile $srcfile" + command="$base_compile $qsrcfile" else - command="$base_compile $srcfile $pic_flag" + command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then command="$command -o $obj" @@ -1227,6 +1354,13 @@ prev= continue ;; + darwin_framework) + compiler_flags="$compiler_flags $arg" + compile_command="$compile_command $arg" + finalize_command="$finalize_command $arg" + prev= + continue + ;; *) eval "$prev=\"\$arg\"" prev= @@ -1285,6 +1419,14 @@ continue ;; + -framework|-arch) + prev=darwin_framework + compiler_flags="$compiler_flags $arg" + compile_command="$compile_command $arg" + finalize_command="$finalize_command $arg" + continue + ;; + -inst-prefix-dir) prev=inst_prefix continue @@ -1345,7 +1487,7 @@ # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; - *-*-openbsd* | *-*-freebsd*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; @@ -1356,7 +1498,7 @@ esac elif test "X$arg" = "X-lc_r"; then case $host in - *-*-openbsd* | *-*-freebsd*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; @@ -1366,8 +1508,20 @@ continue ;; + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + -model) + compile_command="$compile_command $arg" + compiler_flags="$compiler_flags $arg" + finalize_command="$finalize_command $arg" + prev=xcompiler + continue + ;; + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe) - deplibs="$deplibs $arg" + compiler_flags="$compiler_flags $arg" + compile_command="$compile_command $arg" + finalize_command="$finalize_command $arg" continue ;; @@ -1376,13 +1530,14 @@ continue ;; - # gcc -m* arguments should be passed to the linker via $compiler_flags - # in order to pass architecture information to the linker - # (e.g. 32 vs 64-bit). This may also be accomplished via -Wl,-mfoo - # but this is not reliable with gcc because gcc may use -mfoo to - # select a different linker, different libraries, etc, while - # -Wl,-mfoo simply passes -mfoo to the linker. - -m*) + # -64, -mips[0-9] enable 64-bit mode on the SGI compiler + # -r[0-9][0-9]* specifies the processor on the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler + # +DA*, +DD* enable 64-bit mode on the HP compiler + # -q* pass through compiler args for the IBM compiler + # -m* pass through architecture-specific compiler args for GCC + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*) + # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` @@ -1858,7 +2013,7 @@ compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else - deplibs="$deplib $deplibs" + compiler_flags="$compiler_flags $deplib" fi continue ;; @@ -1977,7 +2132,22 @@ fi case $linkmode in lib) - if test "$deplibs_check_method" != pass_all; then + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method + match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` + if eval $echo \"$deplib\" 2>/dev/null \ + | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then $echo $echo "*** Warning: Trying to link with static lib archive $deplib." $echo "*** I have the capability to make that library automatically link in when" @@ -2051,6 +2221,8 @@ # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no + avoidtemprpath= + # Read the .la file case $lib in @@ -2149,11 +2321,19 @@ dir="$libdir" absdir="$libdir" fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else - dir="$ladir/$objdir" - absdir="$abs_ladir/$objdir" - # Remove this search path later - notinst_path="$notinst_path $abs_ladir" + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + notinst_path="$notinst_path $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + notinst_path="$notinst_path $abs_ladir" + fi fi # $installed = yes name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'` @@ -2226,12 +2406,12 @@ if test -n "$library_names" && { test "$prefer_static_libs" = no || test -z "$old_library"; }; then # We need to hardcode the library path - if test -n "$shlibpath_var"; then + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath " in *" $dir "*) ;; *" $absdir "*) ;; - *) temp_rpath="$temp_rpath $dir" ;; + *) temp_rpath="$temp_rpath $absdir" ;; esac fi @@ -2417,7 +2597,7 @@ add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then - case "$libdir" in + case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; @@ -2490,7 +2670,7 @@ add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then - case "$libdir" in + case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; @@ -2551,8 +2731,6 @@ fi fi else - convenience="$convenience $dir/$old_library" - old_convenience="$old_convenience $dir/$old_library" deplibs="$dir/$old_library $deplibs" link_static=yes fi @@ -2670,12 +2848,12 @@ *) continue ;; esac case " $deplibs " in - *" $depdepl "*) ;; - *) deplibs="$depdepl $deplibs" ;; + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; esac case " $deplibs " in - *" $path "*) ;; - *) deplibs="$deplibs $path" ;; + *" $depdepl "*) ;; + *) deplibs="$depdepl $deplibs" ;; esac done fi # link_all_deplibs != no @@ -2947,7 +3125,7 @@ case $current in 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: CURRENT \`$current' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; @@ -2956,7 +3134,7 @@ case $revision in 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: REVISION \`$revision' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; @@ -2965,7 +3143,7 @@ case $age in 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: AGE \`$age' must be a nonnegative integer" 1>&2 $echo "$modename: \`$vinfo' is not valid version information" 1>&2 exit $EXIT_FAILURE ;; @@ -2991,7 +3169,7 @@ versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... minor_current=`expr $current + 1` - verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" ;; freebsd-aout) @@ -3197,7 +3375,7 @@ *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; - *-*-openbsd* | *-*-freebsd*) + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; @@ -3247,7 +3425,7 @@ if test "$?" -eq 0 ; then ldd_output=`ldd conftest` for i in $deplibs; do - name="`expr $i : '-l\(.*\)'`" + name=`expr $i : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test "$name" != "" && test "$name" -ne "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then @@ -3284,7 +3462,7 @@ # Error occurred in the first compile. Let's try to salvage # the situation: Compile a separate program for each library. for i in $deplibs; do - name="`expr $i : '-l\(.*\)'`" + name=`expr $i : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test "$name" != "" && test "$name" != "0"; then $rm conftest @@ -3336,7 +3514,7 @@ set dummy $deplibs_check_method file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do - name="`expr $a_deplib : '-l\(.*\)'`" + name=`expr $a_deplib : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test "$name" != "" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then @@ -3405,7 +3583,7 @@ set dummy $deplibs_check_method match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"` for a_deplib in $deplibs; do - name="`expr $a_deplib : '-l\(.*\)'`" + name=`expr $a_deplib : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. if test -n "$name" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then @@ -3646,6 +3824,9 @@ # The command line is too long to execute in one step. $show "using reloadable object file for export list..." skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break fi done IFS="$save_ifs" @@ -3679,67 +3860,13 @@ eval libobjs=\"\$libobjs $whole_archive_flag_spec\" else gentop="$output_objdir/${outputname}x" - $show "${rm}r $gentop" - $run ${rm}r "$gentop" - $show "$mkdir $gentop" - $run $mkdir "$gentop" - status=$? - if test "$status" -ne 0 && test ! -d "$gentop"; then - exit $status - fi generated="$generated $gentop" - for xlib in $convenience; do - # Extract the objects. - case $xlib in - [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; - *) xabs=`pwd`"/$xlib" ;; - esac - xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'` - xdir="$gentop/$xlib" - - $show "${rm}r $xdir" - $run ${rm}r "$xdir" - $show "$mkdir $xdir" - $run $mkdir "$xdir" - status=$? - if test "$status" -ne 0 && test ! -d "$xdir"; then - exit $status - fi - # We will extract separately just the conflicting names and we will no - # longer touch any unique names. It is faster to leave these extract - # automatically by $AR in one run. - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "$modename: warning: object name conflicts; renaming object files" 1>&2 - $echo "$modename: warning: to ensure that they will not overwrite" 1>&2 - $AR t "$xabs" | sort | uniq -cd | while read -r count name - do - i=1 - while test "$i" -le "$count" - do - # Put our $i before any first dot (extension) - # Never overwrite any file - name_to="$name" - while test "X$name_to" = "X$name" || test -f "$xdir/$name_to" - do - name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"` - done - $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')" - $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $? - i=`expr $i + 1` - done - done - fi - - libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` - done + func_extract_archives $gentop $convenience + libobjs="$libobjs $func_extract_archives_result" fi fi - + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" @@ -3769,7 +3896,8 @@ fi fi - if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` && + if test "X$skipped_export" != "X:" && + len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else @@ -3788,6 +3916,7 @@ save_libobjs=$libobjs fi save_output=$output + output_la=`$echo "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. @@ -3797,13 +3926,13 @@ delfiles= last_robj= k=1 - output=$output_objdir/$save_output-${k}.$objext + output=$output_objdir/$output_la-${k}.$objext # Loop over the list of objects to be linked. for obj in $save_libobjs do eval test_cmds=\"$reload_cmds $objlist $last_robj\" if test "X$objlist" = X || - { len=`expr "X$test_cmds" : ".*"` && + { len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; }; then objlist="$objlist $obj" else @@ -3817,9 +3946,9 @@ # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj\" fi - last_robj=$output_objdir/$save_output-${k}.$objext + last_robj=$output_objdir/$output_la-${k}.$objext k=`expr $k + 1` - output=$output_objdir/$save_output-${k}.$objext + output=$output_objdir/$output_la-${k}.$objext objlist=$obj len=1 fi @@ -3839,13 +3968,13 @@ eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\" fi - # Set up a command to remove the reloadale object files + # Set up a command to remove the reloadable object files # after they are used. i=0 while test "$i" -lt "$k" do i=`expr $i + 1` - delfiles="$delfiles $output_objdir/$save_output-${i}.$objext" + delfiles="$delfiles $output_objdir/$output_la-${i}.$objext" done $echo "creating a temporary reloadable object file: $output" @@ -3893,13 +4022,30 @@ IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" - $run eval "$cmd" || exit $? + $run eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$mode" = relink; then + $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' + fi + + exit $lt_exit + } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + $show "${rm}r $gentop" + $run ${rm}r "$gentop" + fi + fi + exit $EXIT_SUCCESS fi @@ -3977,64 +4123,10 @@ eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\" else gentop="$output_objdir/${obj}x" - $show "${rm}r $gentop" - $run ${rm}r "$gentop" - $show "$mkdir $gentop" - $run $mkdir "$gentop" - status=$? - if test "$status" -ne 0 && test ! -d "$gentop"; then - exit $status - fi generated="$generated $gentop" - for xlib in $convenience; do - # Extract the objects. - case $xlib in - [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; - *) xabs=`pwd`"/$xlib" ;; - esac - xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'` - xdir="$gentop/$xlib" - - $show "${rm}r $xdir" - $run ${rm}r "$xdir" - $show "$mkdir $xdir" - $run $mkdir "$xdir" - status=$? - if test "$status" -ne 0 && test ! -d "$xdir"; then - exit $status - fi - # We will extract separately just the conflicting names and we will no - # longer touch any unique names. It is faster to leave these extract - # automatically by $AR in one run. - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "$modename: warning: object name conflicts; renaming object files" 1>&2 - $echo "$modename: warning: to ensure that they will not overwrite" 1>&2 - $AR t "$xabs" | sort | uniq -cd | while read -r count name - do - i=1 - while test "$i" -le "$count" - do - # Put our $i before any first dot (extension) - # Never overwrite any file - name_to="$name" - while test "X$name_to" = "X$name" || test -f "$xdir/$name_to" - do - name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"` - done - $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')" - $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $? - i=`expr $i + 1` - done - done - fi - - reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` - done + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi @@ -4296,12 +4388,12 @@ # Prepare the list of exported symbols if test -z "$export_symbols"; then - export_symbols="$output_objdir/$output.exp" + export_symbols="$output_objdir/$outputname.exp" $run $rm $export_symbols - $run eval "${SED} -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' else - $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"' - $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T' + $run eval "${SED} -e 's/\([ ][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' $run eval 'mv "$nlist"T "$nlist"' fi fi @@ -4353,7 +4445,26 @@ #endif /* The mapping between symbol names and symbols. */ +" + + case $host in + *cygwin* | *mingw* ) + $echo >> "$output_objdir/$dlsyms" "\ +/* DATA imports from DLLs on WIN32 can't be const, because + runtime relocations are performed -- see ld's documentation + on pseudo-relocs */ +struct { +" + ;; + * ) + $echo >> "$output_objdir/$dlsyms" "\ const struct { +" + ;; + esac + + + $echo >> "$output_objdir/$dlsyms" "\ const char *name; lt_ptr address; } @@ -4582,7 +4693,7 @@ esac case $host in *cygwin* | *mingw* ) - cwrappersource=`$echo ${objdir}/lt-${output}.c` + cwrappersource=`$echo ${objdir}/lt-${outputname}.c` cwrapper=`$echo ${output}.exe` $rm $cwrappersource $cwrapper trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 @@ -4681,6 +4792,7 @@ EOF cat >> $cwrappersource <<"EOF" + return 127; } void * @@ -4815,7 +4927,7 @@ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. -if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" @@ -4944,13 +5056,13 @@ # Backslashes separate directories on plain windows *-*-mingw | *-*-os2*) $echo >> $output "\ - exec \$progdir\\\\\$program \${1+\"\$@\"} + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $echo >> $output "\ - exec \$progdir/\$program \${1+\"\$@\"} + exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac @@ -4960,7 +5072,7 @@ fi else # The program doesn't exist. - \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2 + \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$echo \"This script is just a wrapper for \$program.\" 1>&2 $echo \"See the $PACKAGE documentation for more information.\" 1>&2 exit $EXIT_FAILURE @@ -4992,71 +5104,73 @@ if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" - $show "${rm}r $gentop" - $run ${rm}r "$gentop" - $show "$mkdir $gentop" - $run $mkdir "$gentop" - status=$? - if test "$status" -ne 0 && test ! -d "$gentop"; then - exit $status - fi generated="$generated $gentop" - # Add in members from convenience archives. - for xlib in $addlibs; do - # Extract the objects. - case $xlib in - [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;; - *) xabs=`pwd`"/$xlib" ;; - esac - xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'` - xdir="$gentop/$xlib" - - $show "${rm}r $xdir" - $run ${rm}r "$xdir" - $show "$mkdir $xdir" - $run $mkdir "$xdir" - status=$? - if test "$status" -ne 0 && test ! -d "$xdir"; then - exit $status - fi - # We will extract separately just the conflicting names and we will no - # longer touch any unique names. It is faster to leave these extract - # automatically by $AR in one run. - $show "(cd $xdir && $AR x $xabs)" - $run eval "(cd \$xdir && $AR x \$xabs)" || exit $? - if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "$modename: warning: object name conflicts; renaming object files" 1>&2 - $echo "$modename: warning: to ensure that they will not overwrite" 1>&2 - $AR t "$xabs" | sort | uniq -cd | while read -r count name - do - i=1 - while test "$i" -le "$count" - do - # Put our $i before any first dot (extension) - # Never overwrite any file - name_to="$name" - while test "X$name_to" = "X$name" || test -f "$xdir/$name_to" - do - name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"` - done - $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' '$name_to')" - $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' '$name_to')" || exit $? - i=`expr $i + 1` - done - done - fi - - oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP` - done + func_extract_archives $gentop $addlibs + oldobjs="$oldobjs $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + $echo "X$obj" | $Xsed -e 's%^.*/%%' + done | sort | sort -uc >/dev/null 2>&1); then + : + else + $echo "copying selected object files to avoid basename conflicts..." + + if test -z "$gentop"; then + gentop="$output_objdir/${outputname}x" + generated="$generated $gentop" + + $show "${rm}r $gentop" + $run ${rm}r "$gentop" + $show "$mkdir $gentop" + $run $mkdir "$gentop" + status=$? + if test "$status" -ne 0 && test ! -d "$gentop"; then + exit $status + fi + fi + + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'` + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + counter=`expr $counter + 1` + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + $run ln "$obj" "$gentop/$newobj" || + $run cp "$obj" "$gentop/$newobj" + oldobjs="$oldobjs $gentop/$newobj" + ;; + *) oldobjs="$oldobjs $obj" ;; + esac + done + fi + eval cmds=\"$old_archive_cmds\" if len=`expr "X$cmds" : ".*"` && @@ -5070,20 +5184,7 @@ objlist= concat_cmds= save_oldobjs=$oldobjs - # GNU ar 2.10+ was changed to match POSIX; thus no paths are - # encoded into archives. This makes 'ar r' malfunction in - # this piecewise linking case whenever conflicting object - # names appear in distinct ar calls; check, warn and compensate. - if (for obj in $save_oldobjs - do - $echo "X$obj" | $Xsed -e 's%^.*/%%' - done | sort | sort -uc >/dev/null 2>&1); then - : - else - $echo "$modename: warning: object name conflicts; overriding AR_FLAGS to 'cq'" 1>&2 - $echo "$modename: warning: to ensure that POSIX-compatible ar will work" 1>&2 - AR_FLAGS=cq - fi + # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do @@ -5094,7 +5195,7 @@ oldobjs="$objlist $obj" objlist="$objlist $obj" eval test_cmds=\"$old_archive_cmds\" - if len=`expr "X$test_cmds" : ".*"` && + if len=`expr "X$test_cmds" : ".*" 2>/dev/null` && test "$len" -le "$max_cmd_len"; then : else @@ -5291,11 +5392,11 @@ # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. - $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then + $echo "X$nonopt" | grep shtool > /dev/null; then # Aesthetically quote it. arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"` case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac @@ -5304,14 +5405,14 @@ shift else install_prog= - arg="$nonopt" + arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac @@ -5329,28 +5430,31 @@ do if test -n "$dest"; then files="$files $dest" - dest="$arg" + dest=$arg continue fi case $arg in -d) isdir=yes ;; - -f) prev="-f" ;; - -g) prev="-g" ;; - -m) prev="-m" ;; - -o) prev="-o" ;; + -f) + case " $install_prog " in + *[\\\ /]cp\ *) ;; + *) prev=$arg ;; + esac + ;; + -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; - -*) ;; - + -*) + ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else - dest="$arg" + dest=$arg continue fi ;; @@ -5359,7 +5463,7 @@ # Aesthetically quote the argument. arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"` case $arg in - *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*) + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") arg="\"$arg\"" ;; esac @@ -5528,11 +5632,14 @@ if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. for linkname do if test "$linkname" != "$realname"; then - $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)" - $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)" + $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" + $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { $rm $linkname && $LN_S $realname $linkname; }; })" fi done fi @@ -5545,7 +5652,16 @@ IFS="$save_ifs" eval cmd=\"$cmd\" $show "$cmd" - $run eval "$cmd" || exit $? + $run eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$mode" = relink; then + $run eval '(cd $output_objdir && $rm ${realname}T && $mv ${realname}U $realname)' + fi + + exit $lt_exit + } done IFS="$save_ifs" fi @@ -5639,17 +5755,15 @@ notinst_deplibs= relink_command= - # To insure that "foo" is sourced, and not "foo.exe", - # finese the cygwin/MSYS system by explicitly sourcing "foo." - # which disallows the automatic-append-.exe behavior. - case $build in - *cygwin* | *mingw*) wrapperdot=${wrapper}. ;; - *) wrapperdot=${wrapper} ;; - esac + # Note that it is not necessary on cygwin/mingw to append a dot to + # foo even if both foo and FILE.exe exist: automatic-append-.exe + # behavior happens only for exec(3), not for open(2)! Also, sourcing + # `FILE.' does not work on cygwin managed mounts. + # # If there is no directory component, then add one. - case $file in - */* | *\\*) . ${wrapperdot} ;; - *) . ./${wrapperdot} ;; + case $wrapper in + */* | *\\*) . ${wrapper} ;; + *) . ./${wrapper} ;; esac # Check the variables that should have been set. @@ -5677,17 +5791,15 @@ done relink_command= - # To insure that "foo" is sourced, and not "foo.exe", - # finese the cygwin/MSYS system by explicitly sourcing "foo." - # which disallows the automatic-append-.exe behavior. - case $build in - *cygwin* | *mingw*) wrapperdot=${wrapper}. ;; - *) wrapperdot=${wrapper} ;; - esac + # Note that it is not necessary on cygwin/mingw to append a dot to + # foo even if both foo and FILE.exe exist: automatic-append-.exe + # behavior happens only for exec(3), not for open(2)! Also, sourcing + # `FILE.' does not work on cygwin managed mounts. + # # If there is no directory component, then add one. - case $file in - */* | *\\*) . ${wrapperdot} ;; - *) . ./${wrapperdot} ;; + case $wrapper in + */* | *\\*) . ${wrapper} ;; + *) . ./${wrapper} ;; esac outputname= @@ -5728,7 +5840,7 @@ fi # remove .exe since cygwin /usr/bin/install will append another - # one anyways + # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in @@ -6398,7 +6510,7 @@ $echo $echo "Try \`$modename --help' for more information about other modes." -exit $EXIT_SUCCESS +exit $? # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting diff -uraN gimp-2.2.8/m4macros/Makefile.in gimp-2.2.9/m4macros/Makefile.in --- gimp-2.2.8/m4macros/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/m4macros/Makefile.in 2005-10-27 17:11:42.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -23,7 +23,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -37,7 +36,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = m4macros +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(m4datadir)" +m4dataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(m4data_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -236,6 +258,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -286,6 +309,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -332,6 +356,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -370,30 +396,42 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - installed_m4 = gimp-2.0.m4 - EXTRA_DIST = $(installed_m4) - m4datadir = $(datadir)/aclocal m4data_DATA = $(installed_m4) -subdir = m4macros -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(m4data_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4macros/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu m4macros/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -404,23 +442,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -m4dataDATA_INSTALL = $(INSTALL_DATA) install-m4dataDATA: $(m4data_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(m4datadir) + test -z "$(m4datadir)" || $(mkdir_p) "$(DESTDIR)$(m4datadir)" @list='$(m4data_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(m4dataDATA_INSTALL) $$d$$p $(DESTDIR)$(m4datadir)/$$f"; \ - $(m4dataDATA_INSTALL) $$d$$p $(DESTDIR)$(m4datadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(m4dataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(m4datadir)/$$f'"; \ + $(m4dataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(m4datadir)/$$f"; \ done uninstall-m4dataDATA: @$(NORMAL_UNINSTALL) @list='$(m4data_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(m4datadir)/$$f"; \ - rm -f $(DESTDIR)$(m4datadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(m4datadir)/$$f'"; \ + rm -f "$(DESTDIR)$(m4datadir)/$$f"; \ done tags: TAGS TAGS: @@ -428,10 +465,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -445,7 +478,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -463,9 +496,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(m4datadir) + for dir in "$(DESTDIR)$(m4datadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -485,7 +519,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -502,6 +536,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -536,13 +572,13 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-m4dataDATA install-man install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-info-am uninstall-m4dataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-m4dataDATA install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-info-am uninstall-m4dataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/Makefile.in gimp-2.2.9/Makefile.in --- gimp-2.2.8/Makefile.in 2005-06-26 21:28:16.000000000 +0200 +++ gimp-2.2.9/Makefile.in 2005-10-27 17:11:59.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = . - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +35,61 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/config.h.in \ + $(srcdir)/gimp-zip.in $(srcdir)/gimp.pc.in \ + $(srcdir)/gimpthumb.pc.in $(srcdir)/gimptool-2.0.in \ + $(srcdir)/gimptool-win32.c.in $(srcdir)/gimpui.pc.in \ + $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ + compile config.guess config.sub depcomp install-sh ltmain.sh \ + missing mkinstalldirs py-compile +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno configure.status.lineno +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = gimptool-win32.c gimp-zip gimptool-2.0 \ + gimp-2.0.pc gimpthumb-2.0.pc gimpui-2.0.pc +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)" +binSCRIPT_INSTALL = $(INSTALL_SCRIPT) +SCRIPTS = $(bin_SCRIPTS) +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +pkgconfigDATA_INSTALL = $(INSTALL_DATA) +DATA = $(pkgconfig_DATA) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + { test ! -d $(distdir) \ + || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr $(distdir); }; } +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +distcleancheck_listfiles = find . -type f -print AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +288,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +339,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +386,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +426,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = \ m4macros \ tools \ @@ -396,18 +453,14 @@ devel-docs \ docs - bin_SCRIPTS = gimptool-@GIMP_TOOL_VERSION@ @GIMPINSTALL@ - pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = \ gimp-@GIMP_PKGCONFIG_VERSION@.pc \ gimpthumb-@GIMP_PKGCONFIG_VERSION@.pc \ gimpui-@GIMP_PKGCONFIG_VERSION@.pc - EXTRA_SCRIPTS = gimpinstall-@GIMP_TOOL_VERSION@ - EXTRA_DIST = \ AUTHORS \ COPYING \ @@ -439,58 +492,48 @@ po-plug-ins/update.sh \ po-script-fu/update.sh - DISTCHECK_CONFIGURE_FLAGS = --enable-gimp-console - DISTCLEANFILES = \ intltool-extract \ intltool-merge \ intltool-update -subdir = . -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = gimptool-win32.c gimp-zip gimptool-2.0 gimp-2.0.pc \ - gimpthumb-2.0.pc gimpui-2.0.pc -SCRIPTS = $(bin_SCRIPTS) - -DIST_SOURCES = -DATA = $(pkgconfig_DATA) - - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure AUTHORS \ - COPYING ChangeLog INSTALL Makefile.am NEWS acinclude.m4 \ - aclocal.m4 compile config.guess config.h.in config.sub \ - configure configure.in depcomp gimp-zip.in gimp.pc.in \ - gimpthumb.pc.in gimptool-2.0.in gimptool-win32.c.in \ - gimpui.pc.in install-sh ltmain.sh missing mkinstalldirs \ - py-compile -DIST_SUBDIRS = $(SUBDIRS) all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: - -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +am--refresh: + @: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ + cd $(srcdir) && $(AUTOMAKE) --gnu \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; -$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck -$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4 +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) config.h: stamp-h1 @@ -502,35 +545,34 @@ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h - -$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_srcdir) && $(AUTOHEADER) - touch $(srcdir)/config.h.in + rm -f stamp-h1 + touch $@ distclean-hdr: -rm -f config.h stamp-h1 -gimptool-win32.c: $(top_builddir)/config.status gimptool-win32.c.in +gimptool-win32.c: $(top_builddir)/config.status $(srcdir)/gimptool-win32.c.in cd $(top_builddir) && $(SHELL) ./config.status $@ -gimp-zip: $(top_builddir)/config.status gimp-zip.in +gimp-zip: $(top_builddir)/config.status $(srcdir)/gimp-zip.in cd $(top_builddir) && $(SHELL) ./config.status $@ -gimptool-2.0: $(top_builddir)/config.status gimptool-2.0.in +gimptool-2.0: $(top_builddir)/config.status $(srcdir)/gimptool-2.0.in cd $(top_builddir) && $(SHELL) ./config.status $@ -gimp-2.0.pc: $(top_builddir)/config.status gimp.pc.in +gimp-2.0.pc: $(top_builddir)/config.status $(srcdir)/gimp.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ -gimpthumb-2.0.pc: $(top_builddir)/config.status gimpthumb.pc.in +gimpthumb-2.0.pc: $(top_builddir)/config.status $(srcdir)/gimpthumb.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ -gimpui-2.0.pc: $(top_builddir)/config.status gimpui.pc.in +gimpui-2.0.pc: $(top_builddir)/config.status $(srcdir)/gimpui.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ -binSCRIPT_INSTALL = $(INSTALL_SCRIPT) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " $(binSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(bindir)/$$f"; \ - $(binSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(bindir)/$$f; \ + echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \ else :; fi; \ done @@ -538,8 +580,8 @@ @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; for p in $$list; do \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ - rm -f $(DESTDIR)$(bindir)/$$f; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done mostlyclean-libtool: @@ -551,23 +593,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -pkgconfigDATA_INSTALL = $(INSTALL_DATA) install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir) + test -z "$(pkgconfigdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(pkgconfigDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgconfigdir)/$$f"; \ - $(pkgconfigDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgconfigdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \ + $(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(pkgconfigdir)/$$f"; \ - rm -f $(DESTDIR)$(pkgconfigdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \ + rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd @@ -577,7 +618,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -589,7 +636,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -597,7 +644,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -618,7 +671,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -629,14 +682,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -645,19 +690,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -667,10 +715,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -693,24 +742,11 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = . -distdir = $(PACKAGE)-$(VERSION) - -am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } - -GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print distdir: $(DISTFILES) $(am__remove_distdir) mkdir $(distdir) - $(mkinstalldirs) $(distdir)/. $(distdir)/data/misc $(distdir)/devel-docs/app $(distdir)/devel-docs/libgimp $(distdir)/devel-docs/libgimpbase $(distdir)/devel-docs/libgimpcolor $(distdir)/devel-docs/libgimpmath $(distdir)/devel-docs/libgimpmodule $(distdir)/devel-docs/libgimpthumb $(distdir)/devel-docs/libgimpwidgets $(distdir)/docs $(distdir)/po $(distdir)/po-libgimp $(distdir)/po-plug-ins $(distdir)/po-script-fu + $(mkdir_p) $(distdir)/. $(distdir)/data/misc $(distdir)/devel-docs/app $(distdir)/devel-docs/libgimp $(distdir)/devel-docs/libgimpbase $(distdir)/devel-docs/libgimpcolor $(distdir)/devel-docs/libgimpmath $(distdir)/devel-docs/libgimpmodule $(distdir)/devel-docs/libgimpthumb $(distdir)/devel-docs/libgimpwidgets $(distdir)/docs $(distdir)/po $(distdir)/po-libgimp $(distdir)/po-plug-ins $(distdir)/po-script-fu @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -722,7 +758,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -737,15 +773,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -759,19 +797,46 @@ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir - $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir - $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist - $(am__remove_distdir) - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst @@ -791,19 +856,20 @@ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ - (cd ../.. && $(mkinstalldirs) "$$dc_destdir") \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \ - && rm -f $(distdir).tar.gz \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck $(am__remove_distdir) - @echo "$(distdir).tar.gz is ready for distribution" | \ - sed 'h;s/./=/g;p;x;p;x' + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ @@ -827,8 +893,9 @@ all-am: Makefile $(SCRIPTS) $(DATA) config.h installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(pkgconfigdir) - + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgconfigdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -848,7 +915,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @@ -861,13 +928,15 @@ distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-hdr distclean-libtool \ - distclean-tags +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -905,25 +974,22 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ - ctags-recursive dist dist-all dist-gzip distcheck distclean \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ + check-am clean clean-generic clean-libtool clean-recursive \ + ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ + dist-hook dist-shar dist-tarZ dist-zip distcheck distclean \ distclean-generic distclean-hdr distclean-libtool \ distclean-recursive distclean-tags distcleancheck distdir \ - distuninstallcheck dvi dvi-am dvi-recursive info info-am \ - info-recursive install install-am install-binSCRIPTS \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-pkgconfigDATA install-recursive install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - installdirs-recursive maintainer-clean maintainer-clean-generic \ + distuninstallcheck dvi dvi-am html html-am info info-am \ + install install-am install-binSCRIPTS install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-pkgconfigDATA \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-binSCRIPTS uninstall-info-am \ - uninstall-info-recursive uninstall-pkgconfigDATA \ - uninstall-recursive + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am \ + uninstall-binSCRIPTS uninstall-info-am uninstall-pkgconfigDATA AUTHORS: authors.xml diff -uraN gimp-2.2.8/menus/Makefile.in gimp-2.2.9/menus/Makefile.in --- gimp-2.2.8/menus/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/menus/Makefile.in 2005-10-27 17:11:43.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = menus +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(menudatadir)" +menudataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(menudata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,17 +394,13 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - menudatadir = $(gimpdatadir)/menus - menudata_in_files = \ dockable-menu.xml.in \ image-menu.xml.in \ toolbox-menu.xml.in - menudata_built_files = $(menudata_in_files:.xml.in=.xml) - menudata_DATA = \ $(menudata_built_files) \ brushes-menu.xml \ @@ -403,7 +425,6 @@ tools-menu.xml \ vectors-menu.xml - EXTRA_DIST = \ $(menudata_DATA) \ $(menudata_in_files) \ @@ -411,25 +432,39 @@ gtkuimanager.dtd \ menus.xsl - MAINTAINERCLEAN_FILES = $(menudata_built_files) -subdir = menus -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(menudata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu menus/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu menus/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -440,23 +475,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -menudataDATA_INSTALL = $(INSTALL_DATA) install-menudataDATA: $(menudata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(menudatadir) + test -z "$(menudatadir)" || $(mkdir_p) "$(DESTDIR)$(menudatadir)" @list='$(menudata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(menudataDATA_INSTALL) $$d$$p $(DESTDIR)$(menudatadir)/$$f"; \ - $(menudataDATA_INSTALL) $$d$$p $(DESTDIR)$(menudatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(menudataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(menudatadir)/$$f'"; \ + $(menudataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(menudatadir)/$$f"; \ done uninstall-menudataDATA: @$(NORMAL_UNINSTALL) @list='$(menudata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(menudatadir)/$$f"; \ - rm -f $(DESTDIR)$(menudatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(menudatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(menudatadir)/$$f"; \ done tags: TAGS TAGS: @@ -464,10 +498,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -481,7 +511,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -502,9 +532,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(menudatadir) + for dir in "$(DESTDIR)$(menudatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -524,7 +555,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -541,6 +572,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -574,11 +607,12 @@ uninstall-am: uninstall-info-am uninstall-menudataDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-menudataDATA install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ + dist-hook distclean distclean-generic distclean-libtool \ + distdir dvi dvi-am html html-am info info-am install \ + install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-menudataDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-menudataDATA diff -uraN gimp-2.2.8/modules/Makefile.am gimp-2.2.9/modules/Makefile.am --- gimp-2.2.8/modules/Makefile.am 2004-11-18 15:51:19.000000000 +0100 +++ gimp-2.2.9/modules/Makefile.am 2005-09-20 18:24:00.000000000 +0200 @@ -5,7 +5,7 @@ libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -if OS_WIN32 +if PLATFORM_WIN32 no_undefined = -no-undefined endif diff -uraN gimp-2.2.8/modules/Makefile.in gimp-2.2.9/modules/Makefile.in --- gimp-2.2.8/modules/Makefile.in 2005-06-26 21:28:21.000000000 +0200 +++ gimp-2.2.9/modules/Makefile.in 2005-10-27 17:11:43.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,105 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = modules +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(libdir)" +libLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(lib_LTLIBRARIES) +am__DEPENDENCIES_1 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = +am__DEPENDENCIES_5 = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) +libcdisplay_colorblind_la_DEPENDENCIES = $(am__DEPENDENCIES_5) +am_libcdisplay_colorblind_la_OBJECTS = cdisplay_colorblind.lo +libcdisplay_colorblind_la_OBJECTS = \ + $(am_libcdisplay_colorblind_la_OBJECTS) +libcdisplay_gamma_la_DEPENDENCIES = $(am__DEPENDENCIES_5) +am_libcdisplay_gamma_la_OBJECTS = cdisplay_gamma.lo +libcdisplay_gamma_la_OBJECTS = $(am_libcdisplay_gamma_la_OBJECTS) +libcdisplay_highcontrast_la_DEPENDENCIES = $(am__DEPENDENCIES_5) +am_libcdisplay_highcontrast_la_OBJECTS = cdisplay_highcontrast.lo +libcdisplay_highcontrast_la_OBJECTS = \ + $(am_libcdisplay_highcontrast_la_OBJECTS) +libcdisplay_proof_la_DEPENDENCIES = $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_4) +am_libcdisplay_proof_la_OBJECTS = cdisplay_proof.lo +libcdisplay_proof_la_OBJECTS = $(am_libcdisplay_proof_la_OBJECTS) +@HAVE_LCMS_TRUE@am_libcdisplay_proof_la_rpath = -rpath $(libdir) +am__DEPENDENCIES_6 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_7 = $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) +libcolorsel_cmyk_la_DEPENDENCIES = $(am__DEPENDENCIES_7) +am_libcolorsel_cmyk_la_OBJECTS = colorsel_cmyk.lo +libcolorsel_cmyk_la_OBJECTS = $(am_libcolorsel_cmyk_la_OBJECTS) +libcolorsel_triangle_la_DEPENDENCIES = $(am__DEPENDENCIES_7) +am_libcolorsel_triangle_la_OBJECTS = colorsel_triangle.lo +libcolorsel_triangle_la_OBJECTS = \ + $(am_libcolorsel_triangle_la_OBJECTS) +libcolorsel_water_la_DEPENDENCIES = $(am__DEPENDENCIES_7) +am_libcolorsel_water_la_OBJECTS = colorsel_water.lo +libcolorsel_water_la_OBJECTS = $(am_libcolorsel_water_la_OBJECTS) +am__DEPENDENCIES_8 = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) +libcontroller_linux_input_la_DEPENDENCIES = $(am__DEPENDENCIES_8) +am_libcontroller_linux_input_la_OBJECTS = controller_linux_input.lo +libcontroller_linux_input_la_OBJECTS = \ + $(am_libcontroller_linux_input_la_OBJECTS) +@HAVE_LINUX_INPUT_TRUE@am_libcontroller_linux_input_la_rpath = -rpath \ +@HAVE_LINUX_INPUT_TRUE@ $(libdir) +libcontroller_midi_la_DEPENDENCIES = $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_4) +am_libcontroller_midi_la_OBJECTS = \ + libcontroller_midi_la-controller_midi.lo +libcontroller_midi_la_OBJECTS = $(am_libcontroller_midi_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libcdisplay_colorblind_la_SOURCES) \ + $(libcdisplay_gamma_la_SOURCES) \ + $(libcdisplay_highcontrast_la_SOURCES) \ + $(libcdisplay_proof_la_SOURCES) $(libcolorsel_cmyk_la_SOURCES) \ + $(libcolorsel_triangle_la_SOURCES) \ + $(libcolorsel_water_la_SOURCES) \ + $(libcontroller_linux_input_la_SOURCES) \ + $(libcontroller_midi_la_SOURCES) +DIST_SOURCES = $(libcdisplay_colorblind_la_SOURCES) \ + $(libcdisplay_gamma_la_SOURCES) \ + $(libcdisplay_highcontrast_la_SOURCES) \ + $(libcdisplay_proof_la_SOURCES) $(libcolorsel_cmyk_la_SOURCES) \ + $(libcolorsel_triangle_la_SOURCES) \ + $(libcolorsel_water_la_SOURCES) \ + $(libcontroller_linux_input_la_SOURCES) \ + $(libcontroller_midi_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +331,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +382,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +429,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -350,7 +451,6 @@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ - libdir = $(gimpplugindir)/modules libexecdir = @libexecdir@ localedir = @localedir@ @@ -369,28 +469,21 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la - -@OS_WIN32_TRUE@no_undefined = -no-undefined - +@PLATFORM_WIN32_TRUE@no_undefined = -no-undefined INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ makefile.msc - @HAVE_LCMS_TRUE@cdisplay_proof_module = libcdisplay_proof.la - @HAVE_LINUX_INPUT_TRUE@controller_linux_input_module = libcontroller_linux_input.la - lib_LTLIBRARIES = \ libcolorsel_cmyk.la \ libcolorsel_triangle.la \ @@ -402,175 +495,94 @@ libcontroller_midi.la \ $(controller_linux_input_module) - colorsel_libadd = $(libgimpcolor) $(libgimpmodule) $(libgimpwidgets) $(GTK_LIBS) cdisplay_libadd = $(libgimpbase) $(libgimpmodule) $(libgimpwidgets) $(GTK_LIBS) controller_libadd = $(libgimpmodule) $(libgimpwidgets) $(GTK_LIBS) - libcolorsel_cmyk_la_SOURCES = colorsel_cmyk.c libcolorsel_cmyk_la_LDFLAGS = -avoid-version -module $(no_undefined) libcolorsel_cmyk_la_LIBADD = $(colorsel_libadd) - libcolorsel_triangle_la_SOURCES = colorsel_triangle.c libcolorsel_triangle_la_LDFLAGS = -avoid-version -module $(no_undefined) libcolorsel_triangle_la_LIBADD = $(colorsel_libadd) - libcolorsel_water_la_SOURCES = colorsel_water.c libcolorsel_water_la_LDFLAGS = -avoid-version -module $(no_undefined) libcolorsel_water_la_LIBADD = $(colorsel_libadd) - libcdisplay_colorblind_la_SOURCES = cdisplay_colorblind.c libcdisplay_colorblind_la_LDFLAGS = -avoid-version -module $(no_undefined) libcdisplay_colorblind_la_LIBADD = $(cdisplay_libadd) - libcdisplay_gamma_la_SOURCES = cdisplay_gamma.c libcdisplay_gamma_la_LDFLAGS = -avoid-version -module $(no_undefined) libcdisplay_gamma_la_LIBADD = $(cdisplay_libadd) - libcdisplay_highcontrast_la_SOURCES = cdisplay_highcontrast.c libcdisplay_highcontrast_la_LDFLAGS = -avoid-version -module $(no_undefined) libcdisplay_highcontrast_la_LIBADD = $(cdisplay_libadd) - libcdisplay_proof_la_SOURCES = cdisplay_proof.c libcdisplay_proof_la_LDFLAGS = -avoid-version -module $(no_undefined) libcdisplay_proof_la_LIBADD = $(cdisplay_libadd) $(LCMS_LIBS) - libcontroller_linux_input_la_SOURCES = controller_linux_input.c libcontroller_linux_input_la_LDFLAGS = -avoid-version -module $(no_undefined) libcontroller_linux_input_la_LIBADD = $(controller_libadd) - libcontroller_midi_la_SOURCES = controller_midi.c libcontroller_midi_la_CFLAGS = $(ALSA_CFLAGS) libcontroller_midi_la_LDFLAGS = -avoid-version -module $(no_undefined) libcontroller_midi_la_LIBADD = $(controller_libadd) $(ALSA_LIBS) -subdir = modules -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(lib_LTLIBRARIES) - -libcdisplay_colorblind_la_DEPENDENCIES = \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcdisplay_colorblind_la_OBJECTS = cdisplay_colorblind.lo -libcdisplay_colorblind_la_OBJECTS = \ - $(am_libcdisplay_colorblind_la_OBJECTS) -libcdisplay_gamma_la_DEPENDENCIES = \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcdisplay_gamma_la_OBJECTS = cdisplay_gamma.lo -libcdisplay_gamma_la_OBJECTS = $(am_libcdisplay_gamma_la_OBJECTS) -libcdisplay_highcontrast_la_DEPENDENCIES = \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcdisplay_highcontrast_la_OBJECTS = cdisplay_highcontrast.lo -libcdisplay_highcontrast_la_OBJECTS = \ - $(am_libcdisplay_highcontrast_la_OBJECTS) -libcdisplay_proof_la_DEPENDENCIES = \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcdisplay_proof_la_OBJECTS = cdisplay_proof.lo -libcdisplay_proof_la_OBJECTS = $(am_libcdisplay_proof_la_OBJECTS) -libcolorsel_cmyk_la_DEPENDENCIES = \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcolorsel_cmyk_la_OBJECTS = colorsel_cmyk.lo -libcolorsel_cmyk_la_OBJECTS = $(am_libcolorsel_cmyk_la_OBJECTS) -libcolorsel_triangle_la_DEPENDENCIES = \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcolorsel_triangle_la_OBJECTS = colorsel_triangle.lo -libcolorsel_triangle_la_OBJECTS = $(am_libcolorsel_triangle_la_OBJECTS) -libcolorsel_water_la_DEPENDENCIES = \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcolorsel_water_la_OBJECTS = colorsel_water.lo -libcolorsel_water_la_OBJECTS = $(am_libcolorsel_water_la_OBJECTS) -libcontroller_linux_input_la_DEPENDENCIES = \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcontroller_linux_input_la_OBJECTS = controller_linux_input.lo -libcontroller_linux_input_la_OBJECTS = \ - $(am_libcontroller_linux_input_la_OBJECTS) -libcontroller_midi_la_DEPENDENCIES = \ - $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -am_libcontroller_midi_la_OBJECTS = \ - libcontroller_midi_la-controller_midi.lo -libcontroller_midi_la_OBJECTS = $(am_libcontroller_midi_la_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/cdisplay_colorblind.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/cdisplay_gamma.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/cdisplay_highcontrast.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/cdisplay_proof.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/colorsel_cmyk.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/colorsel_triangle.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/colorsel_water.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/controller_linux_input.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/libcontroller_midi_la-controller_midi.Plo -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libcdisplay_colorblind_la_SOURCES) \ - $(libcdisplay_gamma_la_SOURCES) \ - $(libcdisplay_highcontrast_la_SOURCES) \ - $(libcdisplay_proof_la_SOURCES) $(libcolorsel_cmyk_la_SOURCES) \ - $(libcolorsel_triangle_la_SOURCES) \ - $(libcolorsel_water_la_SOURCES) \ - $(libcontroller_linux_input_la_SOURCES) \ - $(libcontroller_midi_la_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libcdisplay_colorblind_la_SOURCES) $(libcdisplay_gamma_la_SOURCES) $(libcdisplay_highcontrast_la_SOURCES) $(libcdisplay_proof_la_SOURCES) $(libcolorsel_cmyk_la_SOURCES) $(libcolorsel_triangle_la_SOURCES) $(libcolorsel_water_la_SOURCES) $(libcontroller_linux_input_la_SOURCES) $(libcontroller_midi_la_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu modules/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) + test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f"; \ - $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(libdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ else :; fi; \ done uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \ + @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -581,7 +593,7 @@ libcdisplay_highcontrast.la: $(libcdisplay_highcontrast_la_OBJECTS) $(libcdisplay_highcontrast_la_DEPENDENCIES) $(LINK) -rpath $(libdir) $(libcdisplay_highcontrast_la_LDFLAGS) $(libcdisplay_highcontrast_la_OBJECTS) $(libcdisplay_highcontrast_la_LIBADD) $(LIBS) libcdisplay_proof.la: $(libcdisplay_proof_la_OBJECTS) $(libcdisplay_proof_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libcdisplay_proof_la_LDFLAGS) $(libcdisplay_proof_la_OBJECTS) $(libcdisplay_proof_la_LIBADD) $(LIBS) + $(LINK) $(am_libcdisplay_proof_la_rpath) $(libcdisplay_proof_la_LDFLAGS) $(libcdisplay_proof_la_OBJECTS) $(libcdisplay_proof_la_LIBADD) $(LIBS) libcolorsel_cmyk.la: $(libcolorsel_cmyk_la_OBJECTS) $(libcolorsel_cmyk_la_DEPENDENCIES) $(LINK) -rpath $(libdir) $(libcolorsel_cmyk_la_LDFLAGS) $(libcolorsel_cmyk_la_OBJECTS) $(libcolorsel_cmyk_la_LIBADD) $(LIBS) libcolorsel_triangle.la: $(libcolorsel_triangle_la_OBJECTS) $(libcolorsel_triangle_la_DEPENDENCIES) @@ -589,12 +601,12 @@ libcolorsel_water.la: $(libcolorsel_water_la_OBJECTS) $(libcolorsel_water_la_DEPENDENCIES) $(LINK) -rpath $(libdir) $(libcolorsel_water_la_LDFLAGS) $(libcolorsel_water_la_OBJECTS) $(libcolorsel_water_la_LIBADD) $(LIBS) libcontroller_linux_input.la: $(libcontroller_linux_input_la_OBJECTS) $(libcontroller_linux_input_la_DEPENDENCIES) - $(LINK) -rpath $(libdir) $(libcontroller_linux_input_la_LDFLAGS) $(libcontroller_linux_input_la_OBJECTS) $(libcontroller_linux_input_la_LIBADD) $(LIBS) + $(LINK) $(am_libcontroller_linux_input_la_rpath) $(libcontroller_linux_input_la_LDFLAGS) $(libcontroller_linux_input_la_OBJECTS) $(libcontroller_linux_input_la_LIBADD) $(LIBS) libcontroller_midi.la: $(libcontroller_midi_la_OBJECTS) $(libcontroller_midi_la_DEPENDENCIES) $(LINK) -rpath $(libdir) $(libcontroller_midi_la_LDFLAGS) $(libcontroller_midi_la_OBJECTS) $(libcontroller_midi_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -610,70 +622,32 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcontroller_midi_la-controller_midi.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< - -libcontroller_midi_la-controller_midi.o: controller_midi.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -MT libcontroller_midi_la-controller_midi.o -MD -MP -MF "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" \ -@am__fastdepCC_TRUE@ -c -o libcontroller_midi_la-controller_midi.o `test -f 'controller_midi.c' || echo '$(srcdir)/'`controller_midi.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" "$(DEPDIR)/libcontroller_midi_la-controller_midi.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='controller_midi.c' object='libcontroller_midi_la-controller_midi.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libcontroller_midi_la-controller_midi.Po' tmpdepfile='$(DEPDIR)/libcontroller_midi_la-controller_midi.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -c -o libcontroller_midi_la-controller_midi.o `test -f 'controller_midi.c' || echo '$(srcdir)/'`controller_midi.c - -libcontroller_midi_la-controller_midi.obj: controller_midi.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -MT libcontroller_midi_la-controller_midi.obj -MD -MP -MF "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" \ -@am__fastdepCC_TRUE@ -c -o libcontroller_midi_la-controller_midi.obj `if test -f 'controller_midi.c'; then $(CYGPATH_W) 'controller_midi.c'; else $(CYGPATH_W) '$(srcdir)/controller_midi.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" "$(DEPDIR)/libcontroller_midi_la-controller_midi.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='controller_midi.c' object='libcontroller_midi_la-controller_midi.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libcontroller_midi_la-controller_midi.Po' tmpdepfile='$(DEPDIR)/libcontroller_midi_la-controller_midi.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -c -o libcontroller_midi_la-controller_midi.obj `if test -f 'controller_midi.c'; then $(CYGPATH_W) 'controller_midi.c'; else $(CYGPATH_W) '$(srcdir)/controller_midi.c'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< libcontroller_midi_la-controller_midi.lo: controller_midi.c -@am__fastdepCC_TRUE@ if $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -MT libcontroller_midi_la-controller_midi.lo -MD -MP -MF "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" \ -@am__fastdepCC_TRUE@ -c -o libcontroller_midi_la-controller_midi.lo `test -f 'controller_midi.c' || echo '$(srcdir)/'`controller_midi.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" "$(DEPDIR)/libcontroller_midi_la-controller_midi.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -MT libcontroller_midi_la-controller_midi.lo -MD -MP -MF "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" -c -o libcontroller_midi_la-controller_midi.lo `test -f 'controller_midi.c' || echo '$(srcdir)/'`controller_midi.c; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo" "$(DEPDIR)/libcontroller_midi_la-controller_midi.Plo"; else rm -f "$(DEPDIR)/libcontroller_midi_la-controller_midi.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='controller_midi.c' object='libcontroller_midi_la-controller_midi.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/libcontroller_midi_la-controller_midi.Plo' tmpdepfile='$(DEPDIR)/libcontroller_midi_la-controller_midi.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -c -o libcontroller_midi_la-controller_midi.lo `test -f 'controller_midi.c' || echo '$(srcdir)/'`controller_midi.c +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libcontroller_midi_la_CFLAGS) $(CFLAGS) -c -o libcontroller_midi_la-controller_midi.lo `test -f 'controller_midi.c' || echo '$(srcdir)/'`controller_midi.c mostlyclean-libtool: -rm -f *.lo @@ -685,14 +659,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -701,6 +667,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -712,10 +679,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -738,10 +706,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -755,7 +719,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -773,9 +737,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libdir) + for dir in "$(DESTDIR)$(libdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -795,7 +760,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -815,6 +780,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -852,8 +819,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libLTLIBRARIES clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libLTLIBRARIES install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/NEWS gimp-2.2.9/NEWS --- gimp-2.2.8/NEWS 2005-06-23 19:15:07.000000000 +0200 +++ gimp-2.2.9/NEWS 2005-10-27 17:06:17.000000000 +0200 @@ -6,8 +6,37 @@ released as GIMP version 2.4. +Bugs fixed in GIMP 2.2.9 +======================== + +- fixed minor problem in JPEG plug-in (bug #309091) +- allow to disable build of gtkhtml2, svg, and lcms features (bug #307704) +- fixed bug in Imagemap plug-in (bug #169698) +- handle PSD files with untitled channels (bug #312963) +- fixed build of MMX/SSE assembly code on gcc 4.0 (bug #308412) +- fixed crash in image preview code (bug #312144) +- fixed redraw of previews in Rotate Colormap plug-in (bug #172284) +- fixed redraw of previews in Filterpack plug-in (bug #160032) +- cross-compilation fixes and build fixes for Cygwin (bug #314893) +- fixed character placement in Text Circle script (bug #144588) +- made GIMP more robust against strange characters in directory names +- fixed minor issue in Dicom plug-in (bug #313008) +- deal with API change in librsvg >= 2.11.0 (bug #314400) +- fixed bug in ellipse selection (bug #315417) +- fixed build issue on Cygwin (bug #314893) +- fixed problem in ellipse selection (bug #315417) +- ease closing of iscissors outline (bug #134250) +- fixed handling of Tab key if NumLock is active (bug #317118) +- fixed problem with random number generator in QBist plug-in (bug #317355) +- raise palettes grid instead of creating a new one (bug #317435) +- fixed problem with environment maps in Lighting plug-in (bug #313872) +- fixed Gaussian Blur for small radii (bug #315953) +- fixed Select By Color tool on grayscale layers (bug #319683) + + Bugs fixed in GIMP 2.2.8 ======================== + - fixed possible crash in plug-ins-query PDB function - fixes to Script-Fu server mode on Win32 - fixed possible crash in win32 gimptool variant @@ -27,6 +56,7 @@ 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) @@ -42,11 +72,13 @@ Bugs fixed in GIMP 2.2.6 ======================== + - reverted change to the print plug-in (see bug #169909) Bugs fixed in GIMP 2.2.5 ======================== + - fixed double-click behaviour of GimpButton - properly handle 302 redirect output from wget in URL plug-in (bug #168322) - fixed loading of layer masks in PSD plug-in (bug #166976) @@ -93,6 +125,7 @@ Bugs fixed in GIMP 2.2.4 ======================== + - fixed an out-of-bounds read access in the Edge plug-in (bug #164963) - limit aspect ratio in crop tool to sane values (bug #164827) - fixed indexed conversion on floating selections (bug #165342) @@ -119,6 +152,7 @@ Bugs fixed in GIMP 2.2.3 ======================== + - fixed build problem in MIDI input controller (bug #163593) - remember last used directory in file open and save dialogs (bug #162385) - fixed crashed in DND of indexed drawables (bug #163879) @@ -142,6 +176,7 @@ Bugs fixed in GIMP 2.2.2 ======================== + - let Decompose plug-in create layers with alpha channel - fixed crash in save dialog (bug #162443) - fixed misbehaviour in Scale and Resize dialogs (bug #162387) diff -uraN gimp-2.2.8/plug-ins/bmp/Makefile.in gimp-2.2.9/plug-ins/bmp/Makefile.in --- gimp-2.2.8/plug-ins/bmp/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/bmp/Makefile.in 2005-10-27 17:11:45.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,53 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = bmp$(EXEEXT) +subdir = plug-ins/bmp +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_bmp_OBJECTS = bmp.$(OBJEXT) bmpread.$(OBJEXT) bmpwrite.$(OBJEXT) +bmp_OBJECTS = $(am_bmp_OBJECTS) +bmp_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +bmp_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(bmp_SOURCES) +DIST_SOURCES = $(bmp_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +279,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +330,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +377,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +400,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,32 +417,24 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = bmp - bmp_SOURCES = \ bmp.c \ bmp.h \ bmpread.c \ bmpwrite.c - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -405,62 +445,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/bmp -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = bmp$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_bmp_OBJECTS = bmp.$(OBJEXT) bmpread.$(OBJEXT) bmpwrite.$(OBJEXT) -bmp_OBJECTS = $(am_bmp_OBJECTS) -bmp_LDADD = $(LDADD) -bmp_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -bmp_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/bmp.Po ./$(DEPDIR)/bmpread.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/bmpwrite.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(bmp_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(bmp_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/bmp/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/bmp/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -468,8 +496,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -483,7 +511,7 @@ $(LINK) $(bmp_LDFLAGS) $(bmp_OBJECTS) $(bmp_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -493,37 +521,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bmpwrite.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -535,14 +551,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -551,6 +559,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -562,10 +571,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -588,10 +598,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -605,7 +611,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -623,9 +629,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -645,7 +652,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -665,6 +672,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -702,8 +711,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/common/dicom.c gimp-2.2.9/plug-ins/common/dicom.c --- gimp-2.2.8/plug-ins/common/dicom.c 2004-10-28 14:12:51.000000000 +0200 +++ gimp-2.2.9/plug-ins/common/dicom.c 2005-09-20 18:24:01.000000000 +0200 @@ -695,7 +695,7 @@ /* Patient Birth date */ add_tag_string (group_stream, group, 0x0030, "DA", today_string); /* Patient sex */ - add_tag_string (group_stream, group, 0x0040, "CS", "?"); + add_tag_string (group_stream, group, 0x0040, "CS", "" /* unknown */); write_group_to_file (DICOM, group, group_stream); /* Relationship group */ diff -uraN gimp-2.2.8/plug-ins/common/fp.c gimp-2.2.9/plug-ins/common/fp.c --- gimp-2.2.8/plug-ins/common/fp.c 2005-01-03 16:06:48.000000000 +0100 +++ gimp-2.2.9/plug-ins/common/fp.c 2005-08-15 13:49:07.000000000 +0200 @@ -49,41 +49,47 @@ GDK_POINTER_MOTION_HINT_MASK -typedef struct { +typedef struct +{ gint run; } fpInterface; -typedef struct { - gint width; - gint height; +typedef struct +{ + gint width; + gint height; guchar *rgb; gdouble *hsv; guchar *mask; } ReducedImage; -typedef enum { +typedef enum +{ SHADOWS, MIDTONES, HIGHLIGHTS, INTENSITIES -}FP_Intensity; +}FPIntensity; -enum { - NONEATALL =0, - CURRENT =1, - HUE =2, - SATURATION =4, - VALUE =8 +enum +{ + NONEATALL = 0, + CURRENT = 1, + HUE = 2, + SATURATION = 4, + VALUE = 8 }; -enum { +enum +{ BY_HUE, BY_SAT, BY_VAL, JUDGE_BY }; -enum { +enum +{ RED, GREEN, BLUE, @@ -93,120 +99,125 @@ ALL_PRIMARY }; -enum { +enum +{ DOWN = -1, UP = 1 }; -typedef struct { +typedef struct +{ GtkWidget *window; - GtkWidget *shadowsEntry; - GtkWidget *midtonesEntry; - GtkWidget *rangePreview; - GtkWidget *aliasingPreview; - GtkObject *aliasingData; - GtkWidget *aliasingGraph; + GtkWidget *range_preview; + GtkWidget *aliasing_preview; + GtkWidget *aliasing_graph; } AdvancedWindow; -typedef struct { - int Color; - float Rough; - GtkWidget *roughnessScale; - float Alias; - GtkWidget *aliasingScale; - float PreviewSize; - GtkWidget *previewSizeScale; - FP_Intensity Range; - gint ValueBy; - gint SlctnOnly; - gint RealTime; - guchar Offset; - guchar VisibleFrames; - guchar Cutoffs[INTENSITIES]; - gint Touched[JUDGE_BY]; - gint redAdj[JUDGE_BY][256]; - gint blueAdj[JUDGE_BY][256]; - gint greenAdj[JUDGE_BY][256]; - gint satAdj[JUDGE_BY][256]; - GtkWidget *rangeLabels[12]; -} FP_Params; - -static void fp_show_hide_frame(GtkWidget *button, - GtkWidget *frame); - -static ReducedImage *Reduce_The_Image (GimpDrawable *, - GimpDrawable *, - gint, - gint); - -static void fp_render_preview (GtkWidget *, - gint, - gint); - -static void Update_Current_FP (gint, - gint); - -static void fp_Create_Nudge (gint*); - -static gboolean fp_dialog (void); -static void fp_advanced_dialog (void); - -static void selectionMade (GtkWidget *, - gpointer ); -static void fp_scale_update (GtkAdjustment *, - float* ); -static void resetFilterPacks (void); - -static void fp_create_smoothness_graph (GtkWidget* ); - -static void fp_range_preview_spill (GtkWidget*, - gint ); -static void Adjust_Preview_Sizes (gint width, - gint height ); -static void fp_redraw_all_windows (void); -static void refreshPreviews (int); -static void initializeFilterPacks (void); - -static void As_You_Drag (GtkWidget *button); -static void preview_size_scale_update (GtkAdjustment *adjustment, - float *scale_val); - -static void fp (GimpDrawable *drawable); -static GtkWidget *fp_create_bna (void); -static GtkWidget *fp_create_rough (void); -static GtkWidget *fp_create_range (void); -static GtkWidget *fp_create_circle_palette(void); -static GtkWidget *fp_create_lnd (void); -static GtkWidget *fp_create_show (void); -static GtkWidget *fp_create_msnls (void); -static GtkWidget *fp_create_pixels_select_by(void); -static void update_range_labels (void); -static gboolean FP_Range_Change_Events (GtkWidget *widget, - GdkEvent *event, - FP_Params *current); - -static void Create_A_Preview (GtkWidget **, - GtkWidget **, - int, - int ); - -static void Create_A_Table_Entry (GtkWidget **, - GtkWidget *, - const gchar *); - -static void Check_Button_In_A_Box (GtkWidget *, - const gchar *label, - GtkSignalFunc func, - gpointer data, - int clicked); - -static void Frames_Check_Button_In_A_Box (GtkWidget *, - const gchar *label, - GtkSignalFunc func, - GtkWidget *frame, - int clicked); +typedef struct +{ + gdouble roughness; + gdouble aliasing; + gdouble preview_size; + FPIntensity intensity_range; + gint value_by; + gint selection_only; + gboolean real_time; + guchar offset; + guchar visible_frames; + guchar cutoff[INTENSITIES]; + gint touched[JUDGE_BY]; + gint red_adjust[JUDGE_BY][256]; + gint blue_adjust[JUDGE_BY][256]; + gint green_adjust[JUDGE_BY][256]; + gint sat_adjust[JUDGE_BY][256]; +} FPValues; + +typedef struct +{ + GtkWidget *roughness_scale; + GtkWidget *aliasing_scale; + GtkWidget *preview_size_scale; + GtkWidget *range_label[12]; +} FPWidgets; + +static void fp_show_hide_frame (GtkWidget *button, + GtkWidget *frame); + +static ReducedImage * fp_reduce_image (GimpDrawable *drawable, + GimpDrawable *mask, + gint longer_size, + gint selection); + +static void fp_render_preview (GtkWidget *preview, + gint change_what, + gint change_which); + +static void update_current_fp (gint change_what, + gint change_which); + +static void fp_create_nudge (gint *adj_array); + +static gboolean fp_dialog (void); +static void fp_advanced_dialog (void); + +static void fp_selection_made (GtkWidget *widget, + gpointer data); +static void fp_scale_update (GtkAdjustment *adjustment, + gdouble *scale_val); +static void fp_reset_filter_packs (void); + +static void fp_create_smoothness_graph (GtkWidget *preview); + +static void fp_range_preview_spill (GtkWidget *preview, + gint type); +static void fp_adjust_preview_sizes (gint width, + gint height); +static void fp_redraw_all_windows (void); +static void fp_refresh_previews (gint which); +static void fp_init_filter_packs (void); + +static void fp_drag (GtkWidget *button); +static void fp_preview_scale_update (GtkAdjustment *adjustment, + gdouble *scale_val); + +static void fp (GimpDrawable *drawable); +static GtkWidget * fp_create_bna (void); +static GtkWidget * fp_create_rough (void); +static GtkWidget * fp_create_range (void); +static GtkWidget * fp_create_circle_palette (void); +static GtkWidget * fp_create_lnd (void); +static GtkWidget * fp_create_show (void); +static GtkWidget * fp_create_msnls (void); +static GtkWidget * fp_create_pixels_select_by (void); +static void update_range_labels (void); +static gboolean fp_range_change_events (GtkWidget *widget, + GdkEvent *event, + FPValues *current); + +static void fp_create_preview (GtkWidget **preview, + GtkWidget **frame, + gint preview_width, + gint preview_height); + +static void fp_create_table_entry (GtkWidget **box, + GtkWidget *smaller_frame, + const gchar *description); + +static void fp_checkbutton_in_box (GtkWidget *vbox, + const gchar *label, + GtkSignalFunc func, + gpointer data, + gboolean clicked); + +static void fp_frames_checkbutton_in_box (GtkWidget *vbox, + const gchar *label, + GtkSignalFunc func, + GtkWidget *frame, + gboolean clicked); +static void fp_preview_size_allocate (GtkWidget *widget, + GtkAllocation *allocation); #define RESPONSE_RESET 1 @@ -232,7 +243,9 @@ static gint colorSign[3][ALL_PRIMARY]= {{1,-1,-1,-1,1,1},{-1,1,-1,1,1,-1},{-1,-1,1,1,-1,1}}; -static AdvancedWindow AW = { NULL, NULL, NULL, NULL, NULL, NULL, NULL }; +static AdvancedWindow AW = { NULL, NULL, NULL, NULL }; + +static FPWidgets fp_widgets = { NULL, NULL, NULL }; static gint nudgeArray[256]; @@ -255,7 +268,7 @@ GtkWidget *pixelsBy; GtkWidget *frameSelect; GtkWidget *satur; -} fpFrames; +} fp_frames; static fpInterface FPint = { @@ -264,23 +277,19 @@ static ReducedImage *reduced; -static FP_Params Current = +static FPValues fpvals = { - 1, .25, /* Initial Roughness */ - NULL, .6, /* Initial Degree of Aliasing */ - NULL, - 80, - NULL, + 80, /* Initial preview size */ MIDTONES, /* Initial Range */ BY_VAL, /* Initial God knows what */ TRUE, /* Selection Only */ TRUE, /* Real Time */ 0, /* Offset */ - 0, - {32,224,255}, - {0,0,0} + 0, /* Visible frames */ + {32,224,255}, /* cutoffs */ + {0,0,0} /* touched */ }; static GimpDrawable *drawable, *mask; @@ -350,26 +359,61 @@ values[0].type = GIMP_PDB_STATUS; values[0].data.d_status = status; - initializeFilterPacks(); + fp_init_filter_packs(); drawable = gimp_drawable_get (param[2].data.d_drawable); mask = gimp_drawable_get (gimp_image_get_selection (param[1].data.d_image)); - if (gimp_drawable_is_indexed (drawable->drawable_id) || - gimp_drawable_is_gray (drawable->drawable_id) ) + switch (run_mode) { - gimp_message (_("Convert the image to RGB first!")); - status = GIMP_PDB_EXECUTION_ERROR; + case GIMP_RUN_INTERACTIVE: + /* Possibly retrieve data */ + gimp_get_data ("plug_in_filter_pack", &fpvals); + + if (gimp_drawable_is_indexed (drawable->drawable_id) || + gimp_drawable_is_gray (drawable->drawable_id) ) + { + gimp_message (_("FP can only be used on RGB images.")); + status = GIMP_PDB_EXECUTION_ERROR; + } + else if (! fp_dialog()) + { + status = GIMP_PDB_CANCEL; + } + break; + + case GIMP_RUN_NONINTERACTIVE: + gimp_message (_("FP can only be run interactively.")); + status = GIMP_PDB_CALLING_ERROR; + break; + + case GIMP_RUN_WITH_LAST_VALS: + /* Possibly retrieve data */ + gimp_get_data ("plug_in_filter_pack", &fpvals); + break; + + default: + break; } - else if (gimp_drawable_is_rgb (drawable->drawable_id) && fp_dialog()) + + if (status == GIMP_PDB_SUCCESS) { - gimp_progress_init (_("Applying the Filter Pack...")); - gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1)); - fp (drawable); - gimp_displays_flush (); - } - else status = GIMP_PDB_EXECUTION_ERROR; + /* Make sure that the drawable is gray or RGB color */ + if (gimp_drawable_is_rgb (drawable->drawable_id)) + { + gimp_progress_init (_("Applying Filter Pack...")); + gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1)); + fp (drawable); + + /* Store data */ + if (run_mode == GIMP_RUN_INTERACTIVE) + gimp_set_data ("plug_in_filter_pack", + &fpvals, sizeof (FPValues)); + gimp_displays_flush (); + } + else status = GIMP_PDB_EXECUTION_ERROR; + } values[0].data.d_status = status; @@ -398,7 +442,7 @@ for (JudgeBy = BY_HUE; JudgeBy < JUDGE_BY; JudgeBy++) { - if (!Current.Touched[JudgeBy]) + if (!fpvals.touched[JudgeBy]) continue; switch (JudgeBy) @@ -431,14 +475,14 @@ if (M != m) { if (P[k] == M) - P[k] = MAX (P[k] + Current.satAdj[JudgeBy][Intensity], middle); + P[k] = MAX (P[k] + fpvals.sat_adjust[JudgeBy][Intensity], middle); else if (P[k] == m) - P[k] = MIN (P[k] - Current.satAdj[JudgeBy][Intensity], middle); + P[k] = MIN (P[k] - fpvals.sat_adjust[JudgeBy][Intensity], middle); } - P[0] += Current.redAdj[JudgeBy][Intensity]; - P[1] += Current.greenAdj[JudgeBy][Intensity]; - P[2] += Current.blueAdj[JudgeBy][Intensity]; + P[0] += fpvals.red_adjust[JudgeBy][Intensity]; + P[1] += fpvals.green_adjust[JudgeBy][Intensity]; + P[2] += fpvals.blue_adjust[JudgeBy][Intensity]; P[0] = CLAMP0255(P[0]); P[1] = CLAMP0255(P[1]); @@ -470,8 +514,8 @@ GtkWidget *label; GtkWidget *bframe, *aframe; - Create_A_Preview (&origPreview, &bframe, reduced->width, reduced->height); - Create_A_Preview (&curPreview, &aframe, reduced->width, reduced->height); + fp_create_preview (&origPreview, &bframe, reduced->width, reduced->height); + fp_create_preview (&curPreview, &aframe, reduced->width, reduced->height); table = gtk_table_new (2, 2, FALSE); gtk_table_set_row_spacings (GTK_TABLE (table), 6); @@ -542,22 +586,22 @@ gtk_container_add (GTK_CONTAINER (win), table); gtk_widget_show (table); - Create_A_Preview (&rPreview, &rFrame, reduced->width, reduced->height); - Create_A_Preview (&gPreview, &gFrame, reduced->width, reduced->height); - Create_A_Preview (&bPreview, &bFrame, reduced->width, reduced->height); - Create_A_Preview (&cPreview, &cFrame, reduced->width, reduced->height); - Create_A_Preview (&yPreview, &yFrame, reduced->width, reduced->height); - Create_A_Preview (&mPreview, &mFrame, reduced->width, reduced->height); - Create_A_Preview (¢erPreview, ¢erFrame, + fp_create_preview (&rPreview, &rFrame, reduced->width, reduced->height); + fp_create_preview (&gPreview, &gFrame, reduced->width, reduced->height); + fp_create_preview (&bPreview, &bFrame, reduced->width, reduced->height); + fp_create_preview (&cPreview, &cFrame, reduced->width, reduced->height); + fp_create_preview (&yPreview, &yFrame, reduced->width, reduced->height); + fp_create_preview (&mPreview, &mFrame, reduced->width, reduced->height); + fp_create_preview (¢erPreview, ¢erFrame, reduced->width, reduced->height); - Create_A_Table_Entry (&rVbox, rFrame, hue_red); - Create_A_Table_Entry (&gVbox, gFrame, hue_green); - Create_A_Table_Entry (&bVbox, bFrame, hue_blue); - Create_A_Table_Entry (&cVbox, cFrame, hue_cyan); - Create_A_Table_Entry (&yVbox, yFrame, hue_yellow); - Create_A_Table_Entry (&mVbox, mFrame, hue_magenta); - Create_A_Table_Entry (¢erVbox, centerFrame, current_val); + fp_create_table_entry (&rVbox, rFrame, hue_red); + fp_create_table_entry (&gVbox, gFrame, hue_green); + fp_create_table_entry (&bVbox, bFrame, hue_blue); + fp_create_table_entry (&cVbox, cFrame, hue_cyan); + fp_create_table_entry (&yVbox, yFrame, hue_yellow); + fp_create_table_entry (&mVbox, mFrame, hue_magenta); + fp_create_table_entry (¢erVbox, centerFrame, current_val); gtk_table_attach (GTK_TABLE (table), rVbox, 8, 11 ,4 , 7, GTK_EXPAND , GTK_EXPAND, 0 ,0); @@ -590,8 +634,8 @@ gtk_container_add (GTK_CONTAINER (frame), vbox); gtk_widget_show (vbox); - data = gtk_adjustment_new (Current.Rough, 0, 1.0, 0.05, 0.01, 0.0); - Current.roughnessScale = scale = gtk_hscale_new (GTK_ADJUSTMENT (data)); + data = gtk_adjustment_new (fpvals.roughness, 0, 1.0, 0.05, 0.01, 0.0); + fp_widgets.roughness_scale = scale = gtk_hscale_new (GTK_ADJUSTMENT (data)); gtk_widget_set_size_request (scale, 60, -1); gtk_scale_set_value_pos (GTK_SCALE (scale), GTK_POS_TOP); @@ -600,7 +644,7 @@ g_signal_connect (data, "value_changed", G_CALLBACK (fp_scale_update), - &Current.Rough); + &fpvals.roughness); gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0); @@ -615,9 +659,9 @@ if (GTK_TOGGLE_BUTTON (widget)->active) { - refreshPreviews (Current.VisibleFrames); + fp_refresh_previews (fpvals.visible_frames); if (AW.window && GTK_WIDGET_VISIBLE (AW.window)) - fp_create_smoothness_graph (AW.aliasingPreview); + fp_create_smoothness_graph (AW.aliasing_preview); } } @@ -628,7 +672,7 @@ frame = gimp_int_radio_group_new (TRUE, _("Affected Range"), G_CALLBACK (fp_change_current_range), - &Current.Range, Current.Range, + &fpvals.intensity_range, fpvals.intensity_range, _("Sha_dows"), SHADOWS, NULL, _("_Midtones"), MIDTONES, NULL, @@ -652,19 +696,19 @@ gtk_container_add (GTK_CONTAINER (frame), box); gtk_widget_show (box); - Frames_Check_Button_In_A_Box (box, _("_Hue"), + fp_frames_checkbutton_in_box (box, _("_Hue"), GTK_SIGNAL_FUNC (fp_show_hide_frame), - fpFrames.palette, - Current.VisibleFrames & HUE); - Frames_Check_Button_In_A_Box (box, _("_Saturation"), + fp_frames.palette, + fpvals.visible_frames & HUE); + fp_frames_checkbutton_in_box (box, _("_Saturation"), GTK_SIGNAL_FUNC (fp_show_hide_frame), - fpFrames.satur, - Current.VisibleFrames & SATURATION); - Frames_Check_Button_In_A_Box (box, _("_Value"), + fp_frames.satur, + fpvals.visible_frames & SATURATION); + fp_frames_checkbutton_in_box (box, _("_Value"), GTK_SIGNAL_FUNC (fp_show_hide_frame), - fpFrames.lnd, - Current.VisibleFrames & VALUE); - Frames_Check_Button_In_A_Box (box, _("A_dvanced"), + fp_frames.lnd, + fpvals.visible_frames & VALUE); + fp_frames_checkbutton_in_box (box, _("A_dvanced"), GTK_SIGNAL_FUNC (fp_show_hide_frame), AW.window, FALSE); @@ -690,16 +734,16 @@ G_CALLBACK (sub_dialog_destroy), NULL); - Create_A_Preview (&lighterPreview, &lighterFrame, + fp_create_preview (&lighterPreview, &lighterFrame, reduced->width, reduced->height); - Create_A_Preview (&middlePreview, &middleFrame, + fp_create_preview (&middlePreview, &middleFrame, reduced->width, reduced->height); - Create_A_Preview (&darkerPreview, &darkerFrame, + fp_create_preview (&darkerPreview, &darkerFrame, reduced->width, reduced->height); - Create_A_Table_Entry (&lighterVbox, lighterFrame, val_lighter); - Create_A_Table_Entry (&middleVbox, middleFrame, current_val); - Create_A_Table_Entry (&darkerVbox, darkerFrame, val_darker); + fp_create_table_entry (&lighterVbox, lighterFrame, val_lighter); + fp_create_table_entry (&middleVbox, middleFrame, current_val); + fp_create_table_entry (&darkerVbox, darkerFrame, val_darker); table = gtk_table_new (1, 11, FALSE); gtk_table_set_col_spacings (GTK_TABLE (table), 6); @@ -734,16 +778,16 @@ G_CALLBACK (sub_dialog_destroy), NULL); - Create_A_Preview (&minusSatPreview, &lessFrame, + fp_create_preview (&minusSatPreview, &lessFrame, reduced->width, reduced->height); - Create_A_Preview (&SatPreview, &middleFrame, + fp_create_preview (&SatPreview, &middleFrame, reduced->width, reduced->height); - Create_A_Preview (&plusSatPreview, &moreFrame, + fp_create_preview (&plusSatPreview, &moreFrame, reduced->width, reduced->height); - Create_A_Table_Entry (&moreVbox, moreFrame, sat_more); - Create_A_Table_Entry (&middleVbox, middleFrame, current_val); - Create_A_Table_Entry (&lessVbox, lessFrame, sat_less); + fp_create_table_entry (&moreVbox, moreFrame, sat_more); + fp_create_table_entry (&middleVbox, middleFrame, current_val); + fp_create_table_entry (&lessVbox, lessFrame, sat_less); table = gtk_table_new (1, 11, FALSE); gtk_table_set_col_spacings (GTK_TABLE (table), 6); @@ -769,9 +813,9 @@ if (GTK_TOGGLE_BUTTON (widget)->active) { - refreshPreviews (Current.VisibleFrames); - if (AW.window && GTK_WIDGET_VISIBLE (AW.window) && AW.rangePreview) - fp_range_preview_spill (AW.rangePreview,Current.ValueBy); + fp_refresh_previews (fpvals.visible_frames); + if (AW.window && GTK_WIDGET_VISIBLE (AW.window) && AW.range_preview) + fp_range_preview_spill (AW.range_preview,fpvals.value_by); } } @@ -782,8 +826,8 @@ frame = gimp_int_radio_group_new (TRUE, _("Select Pixels by"), G_CALLBACK (fp_change_current_pixels_by), - &Current.ValueBy, - Current.ValueBy, + &fpvals.value_by, + fpvals.value_by, _("H_ue"), 0, NULL, _("Satu_ration"), 1, NULL, @@ -815,8 +859,8 @@ frame = gimp_int_radio_group_new (TRUE, _("Show"), G_CALLBACK (fp_change_selection), - &Current.SlctnOnly, - Current.SlctnOnly, + &fpvals.selection_only, + fpvals.selection_only, _("_Entire Image"), 0, NULL, _("Se_lection Only"), 1, NULL, @@ -830,23 +874,25 @@ } static void -Create_A_Preview (GtkWidget **preview, - GtkWidget **frame, - gint previewWidth, - gint previewHeight) +fp_create_preview (GtkWidget **preview, + GtkWidget **frame, + gint preview_width, + gint preview_height) { *frame = gtk_frame_new (NULL); gtk_frame_set_shadow_type (GTK_FRAME (*frame), GTK_SHADOW_IN); gtk_widget_show (*frame); *preview = gimp_preview_area_new (); - gtk_widget_set_size_request (*preview, previewWidth, previewHeight); + gtk_widget_set_size_request (*preview, preview_width, preview_height); + g_signal_connect (*preview, "size_allocate", + G_CALLBACK (fp_preview_size_allocate), NULL); gtk_widget_show (*preview); gtk_container_add (GTK_CONTAINER (*frame), *preview); } static void -Check_Button_In_A_Box (GtkWidget *vbox, +fp_checkbutton_in_box (GtkWidget *vbox, const gchar *label, GtkSignalFunc function, gpointer data, @@ -866,7 +912,7 @@ } static void -Frames_Check_Button_In_A_Box (GtkWidget *vbox, +fp_frames_checkbutton_in_box (GtkWidget *vbox, const gchar *label, GtkSignalFunc function, GtkWidget *frame, @@ -887,8 +933,8 @@ } static void -Create_A_Table_Entry (GtkWidget **box, - GtkWidget *SmallerFrame, +fp_create_table_entry (GtkWidget **box, + GtkWidget *smaller_frame, const gchar *description) { GtkWidget *label, *button, *table; @@ -918,15 +964,15 @@ 0, 0, 0, 4); gtk_widget_show (button); - gtk_container_add (GTK_CONTAINER (button), SmallerFrame); + gtk_container_add (GTK_CONTAINER (button), smaller_frame); g_signal_connect (button, "clicked", - G_CALLBACK (selectionMade), + G_CALLBACK (fp_selection_made), (gchar *) description); } else { - gtk_table_attach (GTK_TABLE (table), SmallerFrame, 0, 1, 1, 2, + gtk_table_attach (GTK_TABLE (table), smaller_frame, 0, 1, 1, 2, 0, 0, 0, 4); } } @@ -934,24 +980,24 @@ static void fp_redraw_all_windows (void) { - reduced = Reduce_The_Image (drawable,mask, - Current.PreviewSize, - Current.SlctnOnly); - Adjust_Preview_Sizes (reduced->width, reduced->height); - - gtk_widget_queue_draw (fpFrames.palette); - gtk_widget_queue_draw (fpFrames.satur); - gtk_widget_queue_draw (fpFrames.lnd); + reduced = fp_reduce_image (drawable,mask, + fpvals.preview_size, + fpvals.selection_only); + fp_adjust_preview_sizes (reduced->width, reduced->height); + + gtk_widget_queue_draw (fp_frames.palette); + gtk_widget_queue_draw (fp_frames.satur); + gtk_widget_queue_draw (fp_frames.lnd); gtk_widget_queue_draw (dlg); - refreshPreviews (Current.VisibleFrames); + fp_refresh_previews (fpvals.visible_frames); } static void fp_show_hide_frame (GtkWidget *button, GtkWidget *frame) { - gint prev = Current.VisibleFrames; + gint prev = fpvals.visible_frames; if (frame == NULL) return; @@ -962,16 +1008,16 @@ { gtk_widget_show (frame); - if (frame==fpFrames.palette) - Current.VisibleFrames |= HUE; - else if (frame==fpFrames.satur) - Current.VisibleFrames |= SATURATION; - else if (frame==fpFrames.lnd) - Current.VisibleFrames |= VALUE; - - refreshPreviews (Current.VisibleFrames & ~prev); - fp_create_smoothness_graph (AW.aliasingPreview); - fp_range_preview_spill (AW.rangePreview,Current.ValueBy); + if (frame==fp_frames.palette) + fpvals.visible_frames |= HUE; + else if (frame==fp_frames.satur) + fpvals.visible_frames |= SATURATION; + else if (frame==fp_frames.lnd) + fpvals.visible_frames |= VALUE; + + fp_refresh_previews (fpvals.visible_frames & ~prev); + fp_create_smoothness_graph (AW.aliasing_preview); + fp_range_preview_spill (AW.range_preview,fpvals.value_by); } } else @@ -980,19 +1026,19 @@ { gtk_widget_hide (frame); - if (frame==fpFrames.palette) - Current.VisibleFrames &= ~HUE; - else if (frame==fpFrames.satur) - Current.VisibleFrames &= ~SATURATION; - else if (frame==fpFrames.lnd) - Current.VisibleFrames &= ~VALUE; + if (frame==fp_frames.palette) + fpvals.visible_frames &= ~HUE; + else if (frame==fp_frames.satur) + fpvals.visible_frames &= ~SATURATION; + else if (frame==fp_frames.lnd) + fpvals.visible_frames &= ~VALUE; } } } static void -Adjust_Preview_Sizes (gint width, - gint height) +fp_adjust_preview_sizes (gint width, + gint height) { gtk_widget_set_size_request (origPreview, width, height); gtk_widget_set_size_request (curPreview, width, height); @@ -1009,43 +1055,44 @@ gtk_widget_set_size_request (minusSatPreview, width, height); gtk_widget_set_size_request (SatPreview, width, height); gtk_widget_set_size_request (plusSatPreview, width, height); + } static void -selectionMade (GtkWidget *widget, - gpointer data) +fp_selection_made (GtkWidget *widget, + gpointer data) { - Current.Touched[Current.ValueBy] = 1; + fpvals.touched[fpvals.value_by] = 1; if (data == (gpointer) hue_red) { - Update_Current_FP (HUE, RED); + update_current_fp (HUE, RED); } else if (data == (gpointer) hue_green) { - Update_Current_FP (HUE, GREEN); + update_current_fp (HUE, GREEN); } else if (data == (gpointer) hue_blue) { - Update_Current_FP (HUE, BLUE); + update_current_fp (HUE, BLUE); } else if (data == (gpointer) hue_cyan) { - Update_Current_FP (HUE, CYAN); + update_current_fp (HUE, CYAN); } else if (data == (gpointer) hue_yellow) { - Update_Current_FP (HUE, YELLOW); + update_current_fp (HUE, YELLOW); } else if (data == (gpointer) hue_magenta) { - Update_Current_FP (HUE, MAGENTA); + update_current_fp (HUE, MAGENTA); } else if (data == (gpointer) val_darker) { - Update_Current_FP (VALUE, DOWN); + update_current_fp (VALUE, DOWN); } else if (data == (gpointer) val_lighter) { - Update_Current_FP (VALUE, UP); + update_current_fp (VALUE, UP); } else if (data == (gpointer) sat_more) { - Update_Current_FP (SATURATION, UP); + update_current_fp (SATURATION, UP); } else if (data == (gpointer) sat_less) { - Update_Current_FP (SATURATION, DOWN); + update_current_fp (SATURATION, DOWN); } - refreshPreviews (Current.VisibleFrames); + fp_refresh_previews (fpvals.visible_frames); } static void -refreshPreviews (gint which) +fp_refresh_previews (gint which) { - fp_Create_Nudge (nudgeArray); + fp_create_nudge (nudgeArray); fp_render_preview (origPreview, NONEATALL, 0); fp_render_preview (curPreview, CURRENT, 0); if (which & HUE) @@ -1080,7 +1127,7 @@ switch (response_id) { case RESPONSE_RESET: - resetFilterPacks (); + fp_reset_filter_packs (); break; case GTK_RESPONSE_OK: @@ -1096,18 +1143,18 @@ static void fp_scale_update (GtkAdjustment *adjustment, - float *scale_val) + gdouble *scale_val) { - static gfloat prevValue = 0.25; + static gdouble prevValue = 0.25; *scale_val = adjustment->value; if (prevValue != adjustment->value) { - fp_Create_Nudge (nudgeArray); - refreshPreviews (Current.VisibleFrames); + fp_create_nudge (nudgeArray); + fp_refresh_previews (fpvals.visible_frames); if (AW.window != NULL && GTK_WIDGET_VISIBLE (AW.window)) - fp_create_smoothness_graph (AW.aliasingPreview); + fp_create_smoothness_graph (AW.aliasing_preview); prevValue = adjustment->value; } } @@ -1126,9 +1173,9 @@ GtkWidget *control; GtkWidget *table; - reduced = Reduce_The_Image (drawable,mask, - Current.PreviewSize, - Current.SlctnOnly); + reduced = fp_reduce_image (drawable,mask, + fpvals.preview_size, + fpvals.selection_only); gimp_ui_init ("fp", TRUE); @@ -1152,14 +1199,14 @@ fp_advanced_dialog (); - fpFrames.bna = bna = fp_create_bna(); - fpFrames.rough = rough = fp_create_rough(); - fpFrames.range = range = fp_create_range(); - fpFrames.palette = palette = fp_create_circle_palette(); - fpFrames.lnd = lnd = fp_create_lnd(); - fpFrames.show = show = fp_create_show(); - fpFrames.satur = satur = fp_create_msnls(); - fpFrames.pixelsBy = pixelsBy = fp_create_pixels_select_by(); + fp_frames.bna = bna = fp_create_bna(); + fp_frames.rough = rough = fp_create_rough(); + fp_frames.range = range = fp_create_range(); + fp_frames.palette = palette = fp_create_circle_palette(); + fp_frames.lnd = lnd = fp_create_lnd(); + fp_frames.show = show = fp_create_show(); + fp_frames.satur = satur = fp_create_msnls(); + fp_frames.pixelsBy = pixelsBy = fp_create_pixels_select_by(); control = fp_create_control(); /********************************************************************/ /******************** PUT EVERYTHING TOGETHER ******************/ @@ -1191,7 +1238,7 @@ gtk_widget_show (dlg); - refreshPreviews (Current.VisibleFrames); + fp_refresh_previews (fpvals.visible_frames); gtk_main (); @@ -1203,7 +1250,7 @@ /***********************************************************/ static void -As_You_Drag (GtkWidget *button) +fp_drag (GtkWidget *button) { static gboolean notFirstTime = FALSE; @@ -1214,28 +1261,28 @@ if (GTK_TOGGLE_BUTTON (button)->active) { - Current.RealTime=TRUE; - gtk_range_set_update_policy (GTK_RANGE (Current.roughnessScale),0); - gtk_range_set_update_policy (GTK_RANGE (Current.aliasingScale),0); - gtk_range_set_update_policy (GTK_RANGE (Current.previewSizeScale),0); + fpvals.real_time=TRUE; + gtk_range_set_update_policy (GTK_RANGE (fp_widgets.roughness_scale),0); + gtk_range_set_update_policy (GTK_RANGE (fp_widgets.aliasing_scale),0); + gtk_range_set_update_policy (GTK_RANGE (fp_widgets.preview_size_scale),0); } else { - Current.RealTime=FALSE; - gtk_range_set_update_policy (GTK_RANGE (Current.roughnessScale), + fpvals.real_time=FALSE; + gtk_range_set_update_policy (GTK_RANGE (fp_widgets.roughness_scale), GTK_UPDATE_DELAYED); - gtk_range_set_update_policy (GTK_RANGE (Current.aliasingScale), + gtk_range_set_update_policy (GTK_RANGE (fp_widgets.aliasing_scale), GTK_UPDATE_DELAYED); - gtk_range_set_update_policy (GTK_RANGE (Current.previewSizeScale), + gtk_range_set_update_policy (GTK_RANGE (fp_widgets.preview_size_scale), GTK_UPDATE_DELAYED); } } static void -preview_size_scale_update (GtkAdjustment *adjustment, - float *scale_val) +fp_preview_scale_update (GtkAdjustment *adjustment, + gdouble *scale_val) { - Current.PreviewSize = adjustment->value; + fpvals.preview_size = adjustment->value; fp_redraw_all_windows(); } @@ -1295,19 +1342,19 @@ gtk_container_add (GTK_CONTAINER (alignment), inner_vbox); gtk_widget_show (inner_vbox); - AW.aliasingPreview = gimp_preview_area_new (); - gtk_widget_set_size_request (AW.aliasingPreview, 256, MAX_ROUGHNESS); - gtk_box_pack_start (GTK_BOX (inner_vbox), AW.aliasingPreview, TRUE, TRUE, 0); - gtk_widget_show (AW.aliasingPreview); - - fp_create_smoothness_graph (AW.aliasingPreview); - - AW.rangePreview = gimp_preview_area_new (); - gtk_widget_set_size_request (AW.rangePreview, 256, RANGE_HEIGHT); - gtk_box_pack_start(GTK_BOX (inner_vbox), AW.rangePreview, TRUE, TRUE, 0); - gtk_widget_show (AW.rangePreview); + AW.aliasing_preview = gimp_preview_area_new (); + gtk_widget_set_size_request (AW.aliasing_preview, 256, MAX_ROUGHNESS); + gtk_box_pack_start (GTK_BOX (inner_vbox), AW.aliasing_preview, TRUE, TRUE, 0); + gtk_widget_show (AW.aliasing_preview); + + fp_create_smoothness_graph (AW.aliasing_preview); + + AW.range_preview = gimp_preview_area_new (); + gtk_widget_set_size_request (AW.range_preview, 256, RANGE_HEIGHT); + gtk_box_pack_start(GTK_BOX (inner_vbox), AW.range_preview, TRUE, TRUE, 0); + gtk_widget_show (AW.range_preview); - fp_range_preview_spill (AW.rangePreview, Current.ValueBy); + fp_range_preview_spill (AW.range_preview, fpvals.value_by); labelTable = gtk_table_new (3, 4, FALSE); gtk_table_set_col_spacings (GTK_TABLE (labelTable), 6); @@ -1318,7 +1365,7 @@ for (i = 0; i < 12; i++) { - label = Current.rangeLabels[i] = gtk_label_new ("-"); + label = fp_widgets.range_label[i] = gtk_label_new ("-"); if (!(i % 4)) { gtk_label_set_text (GTK_LABEL(label), gettext (rangeNames[i/4])); @@ -1331,23 +1378,23 @@ /************************************************************/ - AW.aliasingGraph = gtk_drawing_area_new (); - gtk_widget_set_size_request (AW.aliasingGraph, + AW.aliasing_graph = gtk_drawing_area_new (); + gtk_widget_set_size_request (AW.aliasing_graph, 2 * MARGIN + 256, RANGE_HEIGHT); - gtk_box_pack_start (GTK_BOX (vbox), AW.aliasingGraph, TRUE, TRUE, 0); - gtk_widget_show (AW.aliasingGraph); - gtk_widget_set_events (AW.aliasingGraph, RANGE_ADJUST_MASK); - - g_signal_connect (AW.aliasingGraph, "event", - G_CALLBACK (FP_Range_Change_Events), - &Current); + gtk_box_pack_start (GTK_BOX (vbox), AW.aliasing_graph, TRUE, TRUE, 0); + gtk_widget_show (AW.aliasing_graph); + gtk_widget_set_events (AW.aliasing_graph, RANGE_ADJUST_MASK); + + g_signal_connect (AW.aliasing_graph, "event", + G_CALLBACK (fp_range_change_events), + &fpvals); /************************************************************/ - smoothnessData = gtk_adjustment_new (Current.Alias, 0, 1.0, 0.05, 0.01, 0.0); + smoothnessData = gtk_adjustment_new (fpvals.aliasing, 0, 1.0, 0.05, 0.01, 0.0); - Current.aliasingScale = scale = + fp_widgets.aliasing_scale = scale = gtk_hscale_new (GTK_ADJUSTMENT (smoothnessData)); gtk_widget_set_size_request (scale, 200, -1); gtk_scale_set_digits (GTK_SCALE (scale), 2); @@ -1359,7 +1406,7 @@ g_signal_connect (smoothnessData, "value_changed", G_CALLBACK (fp_scale_update), - &Current.Alias); + &fpvals.aliasing); /******************* MISC OPTIONS ***************************/ @@ -1367,18 +1414,18 @@ gtk_box_pack_start (GTK_BOX (mainvbox), vbox, TRUE, TRUE, 0); gtk_widget_show (vbox); - Check_Button_In_A_Box (vbox, _("Preview as You Drag"), - GTK_SIGNAL_FUNC (As_You_Drag), + fp_checkbutton_in_box (vbox, _("Preview as You Drag"), + GTK_SIGNAL_FUNC (fp_drag), NULL, TRUE); frame = gimp_frame_new (_("Preview Size")); gtk_widget_show (frame); - smoothnessData = gtk_adjustment_new (Current.PreviewSize, + smoothnessData = gtk_adjustment_new (fpvals.preview_size, 50, MAX_PREVIEW_SIZE, 5, 5, 0.0); - Current.previewSizeScale = scale = + fp_widgets.preview_size_scale = scale = gtk_hscale_new (GTK_ADJUSTMENT (smoothnessData)); gtk_container_add (GTK_CONTAINER (frame), scale); gtk_widget_set_size_request (scale, 100, -1); @@ -1388,8 +1435,8 @@ gtk_widget_show (scale); g_signal_connect (smoothnessData, "value_changed", - G_CALLBACK (preview_size_scale_update), - &Current.PreviewSize); + G_CALLBACK (fp_preview_scale_update), + &fpvals.preview_size); gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0); } @@ -1427,26 +1474,26 @@ static void draw_it (GtkWidget *widget) { - draw_slider (AW.aliasingGraph->window, - AW.aliasingGraph->style->black_gc, - AW.aliasingGraph->style->dark_gc[GTK_STATE_NORMAL], - Current.Cutoffs[SHADOWS]); - - draw_slider (AW.aliasingGraph->window, - AW.aliasingGraph->style->black_gc, - AW.aliasingGraph->style->dark_gc[GTK_STATE_NORMAL], - Current.Cutoffs[MIDTONES]); - - draw_slider (AW.aliasingGraph->window, - AW.aliasingGraph->style->black_gc, - AW.aliasingGraph->style->dark_gc[GTK_STATE_SELECTED], - Current.Offset); + draw_slider (AW.aliasing_graph->window, + AW.aliasing_graph->style->black_gc, + AW.aliasing_graph->style->dark_gc[GTK_STATE_NORMAL], + fpvals.cutoff[SHADOWS]); + + draw_slider (AW.aliasing_graph->window, + AW.aliasing_graph->style->black_gc, + AW.aliasing_graph->style->dark_gc[GTK_STATE_NORMAL], + fpvals.cutoff[MIDTONES]); + + draw_slider (AW.aliasing_graph->window, + AW.aliasing_graph->style->black_gc, + AW.aliasing_graph->style->dark_gc[GTK_STATE_SELECTED], + fpvals.offset); } static gboolean -FP_Range_Change_Events (GtkWidget *widget, +fp_range_change_events (GtkWidget *widget, GdkEvent *event, - FP_Params *current) + FPValues *current) { GdkEventButton *bevent; GdkEventMotion *mevent; @@ -1463,43 +1510,43 @@ case GDK_BUTTON_PRESS: bevent= (GdkEventButton *) event; - shad = abs (bevent->x - Current.Cutoffs[SHADOWS]); - mid = abs (bevent->x - Current.Cutoffs[MIDTONES]); - offset = abs (bevent->x - Current.Offset); + shad = abs (bevent->x - fpvals.cutoff[SHADOWS]); + mid = abs (bevent->x - fpvals.cutoff[MIDTONES]); + offset = abs (bevent->x - fpvals.offset); min = MIN (MIN (shad, mid), offset); if (bevent->x >0 && bevent->x<256) { if (min == shad) - new = &Current.Cutoffs[SHADOWS]; + new = &fpvals.cutoff[SHADOWS]; else if (min == mid) - new = &Current.Cutoffs[MIDTONES]; + new = &fpvals.cutoff[MIDTONES]; else - new = &Current.Offset; + new = &fpvals.offset; - slider_erase (AW.aliasingGraph->window, *new); + slider_erase (AW.aliasing_graph->window, *new); *new = bevent->x; } draw_it (NULL); - if (Current.RealTime) + if (fpvals.real_time) { - fp_range_preview_spill (AW.rangePreview, Current.ValueBy); + fp_range_preview_spill (AW.range_preview, fpvals.value_by); update_range_labels (); - fp_create_smoothness_graph (AW.aliasingPreview); - refreshPreviews (Current.VisibleFrames); + fp_create_smoothness_graph (AW.aliasing_preview); + fp_refresh_previews (fpvals.visible_frames); } break; case GDK_BUTTON_RELEASE: - if (!Current.RealTime) + if (!fpvals.real_time) { - fp_range_preview_spill (AW.rangePreview, Current.ValueBy); + fp_range_preview_spill (AW.range_preview, fpvals.value_by); update_range_labels (); - fp_create_smoothness_graph (AW.aliasingPreview); - refreshPreviews (Current.VisibleFrames); + fp_create_smoothness_graph (AW.aliasing_preview); + fp_refresh_previews (fpvals.visible_frames); } break; @@ -1509,15 +1556,15 @@ if (x >= 0 && x < 256) { - slider_erase (AW.aliasingGraph->window, *new); + slider_erase (AW.aliasing_graph->window, *new); *new = x; draw_it (NULL); - if (Current.RealTime) + if (fpvals.real_time) { - fp_range_preview_spill (AW.rangePreview, Current.ValueBy); + fp_range_preview_spill (AW.range_preview, fpvals.value_by); update_range_labels (); - fp_create_smoothness_graph (AW.aliasingPreview); - refreshPreviews (Current.VisibleFrames); + fp_create_smoothness_graph (AW.aliasing_preview); + fp_refresh_previews (fpvals.visible_frames); } } break; @@ -1534,45 +1581,45 @@ { gchar buffer[3]; - gtk_label_set_text (GTK_LABEL(Current.rangeLabels[1]),"0"); + gtk_label_set_text (GTK_LABEL(fp_widgets.range_label[1]),"0"); - g_snprintf (buffer, sizeof (buffer), "%d", Current.Cutoffs[SHADOWS]); - gtk_label_set_text (GTK_LABEL (Current.rangeLabels[3]), buffer); - gtk_label_set_text (GTK_LABEL (Current.rangeLabels[5]), buffer); + g_snprintf (buffer, sizeof (buffer), "%d", fpvals.cutoff[SHADOWS]); + gtk_label_set_text (GTK_LABEL (fp_widgets.range_label[3]), buffer); + gtk_label_set_text (GTK_LABEL (fp_widgets.range_label[5]), buffer); - g_snprintf (buffer, sizeof (buffer), "%d", Current.Cutoffs[MIDTONES]); - gtk_label_set_text (GTK_LABEL (Current.rangeLabels[7]), buffer); - gtk_label_set_text (GTK_LABEL (Current.rangeLabels[9]), buffer); + g_snprintf (buffer, sizeof (buffer), "%d", fpvals.cutoff[MIDTONES]); + gtk_label_set_text (GTK_LABEL (fp_widgets.range_label[7]), buffer); + gtk_label_set_text (GTK_LABEL (fp_widgets.range_label[9]), buffer); - gtk_label_set_text (GTK_LABEL(Current.rangeLabels[11]), "255"); + gtk_label_set_text (GTK_LABEL(fp_widgets.range_label[11]), "255"); } static void -initializeFilterPacks (void) +fp_init_filter_packs (void) { gint i, j; for (i = 0; i < 256; i++) for (j = BY_HUE; j < JUDGE_BY; j++) { - Current.redAdj [j][i] = 0; - Current.greenAdj [j][i] = 0; - Current.blueAdj [j][i] = 0; - Current.satAdj [j][i] = 0; + fpvals.red_adjust [j][i] = 0; + fpvals.green_adjust [j][i] = 0; + fpvals.blue_adjust [j][i] = 0; + fpvals.sat_adjust [j][i] = 0; } } static void -resetFilterPacks (void) +fp_reset_filter_packs (void) { - initializeFilterPacks (); - refreshPreviews (Current.VisibleFrames); + fp_init_filter_packs (); + fp_refresh_previews (fpvals.visible_frames); } static ReducedImage * -Reduce_The_Image (GimpDrawable *drawable, - GimpDrawable *mask, - gint LongerSize, - gint Slctn) +fp_reduce_image (GimpDrawable *drawable, + GimpDrawable *mask, + gint longer_size, + gint selection) { gint RH, RW, width, height, bytes=drawable->bpp; ReducedImage *temp = (ReducedImage *) malloc (sizeof (ReducedImage)); @@ -1591,14 +1638,14 @@ if (width != drawable->width && height != drawable->height) NoSelectionMade = FALSE; - if (Slctn == 0) + if (selection == 0) { x1 = 0; x2 = drawable->width; y1 = 0; y2 = drawable->height; } - else if (Slctn == 2) + else if (selection == 2) { x1 = MAX (0, x1 - width / 2.0); x2 = MIN (drawable->width, x2 + width / 2.0); @@ -1611,13 +1658,13 @@ if (width > height) { - RW = LongerSize; - RH = (gfloat) height * (gfloat) LongerSize / (gfloat) width; + RW = longer_size; + RH = (gdouble) height * (gdouble) longer_size / (gdouble) width; } else { - RH = LongerSize; - RW = (gfloat) width * (gfloat) LongerSize / (gfloat) height; + RH = longer_size; + RW = (gdouble) width * (gdouble) longer_size / (gdouble) height; } tempRGB = (guchar *) malloc (RW * RH * bytes); @@ -1632,14 +1679,14 @@ for (i = 0; i < RH; i++) { - whichrow = (gfloat) i * (gfloat) height / (gfloat) RH; + whichrow = (gdouble) i * (gdouble) height / (gdouble) RH; gimp_pixel_rgn_get_row (&srcPR, src_row, x1, y1 + whichrow, width); gimp_pixel_rgn_get_row (&srcMask, src_mask_row, x1, y1 + whichrow, width); for (j = 0; j < RW; j++) { - whichcol = (gfloat) j * (gfloat) width / (gfloat) RW; + whichcol = (gdouble) j * (gdouble) width / (gdouble) RW; if (NoSelectionMade) tempmask[i * RW + j] = 255; @@ -1678,104 +1725,119 @@ static void fp_render_preview(GtkWidget *preview, - gint changewhat, - gint changewhich) + gint change_what, + gint change_which) { guchar *a; - gint Inten, bytes = drawable->bpp; - gint i, j, k, nudge, M, m, middle,JudgeBy; - float partial; - gint RW = reduced->width; - gint RH = reduced->height; - gint backupP[3], P[3], tempSat[JUDGE_BY][256]; + gint Inten; + gint bytes = drawable->bpp; + gint i, j, k, nudge, M, m, middle, JudgeBy; + gdouble partial; + gint RW = reduced->width; + gint RH = reduced->height; + gint backupP[3]; + gint P[3]; + gint tempSat[JUDGE_BY][256]; a = g_new (guchar, 4*RW*RH); - if (changewhat==SATURATION) - for (k=0; k<256; k++) { - for (JudgeBy=BY_HUE; JudgeByrgb[i*RW*bytes + j*bytes + 0]; - backupP[1] = P[1] = (int) reduced->rgb[i*RW*bytes + j*bytes + 1]; - backupP[2] = P[2] = (int) reduced->rgb[i*RW*bytes + j*bytes + 2]; - - m = MIN(MIN(P[0],P[1]),P[2]); - M = MAX(MAX(P[0],P[1]),P[2]); - middle=(M+m)/2; - for (k=0; k<3; k++) - if (P[k]!=m && P[k]!=M) middle=P[k]; - - partial = reduced->mask[i*RW+j]/255.0; - - for (JudgeBy=BY_HUE; JudgeByhsv[i*RW*bytes + j*bytes + JudgeBy]*255.0; - - /*DO SATURATION FIRST*/ - if (changewhat != NONEATALL) { - if (M!=m) { - for (k=0; k<3; k++) - if (backupP[k] == M) - P[k] = MAX(P[k]+partial*Current.satAdj[JudgeBy][Inten],middle); - else if (backupP[k] == m) - P[k] = MIN(P[k]-partial*Current.satAdj[JudgeBy][Inten],middle); - } - P[0] += partial*Current.redAdj[JudgeBy][Inten]; - P[1] += partial*Current.greenAdj[JudgeBy][Inten]; - P[2] += partial*Current.blueAdj[JudgeBy][Inten]; - } + if (change_what==SATURATION) + for (k = 0; k < 256; k++) + { + for (JudgeBy = BY_HUE; JudgeBy < JUDGE_BY; JudgeBy++) + tempSat[JudgeBy][k] = 0; + tempSat[fpvals.value_by][k] += change_which * nudgeArray[(k + fpvals.offset) % 256]; } - Inten = reduced->hsv[i*RW*bytes + j*bytes + Current.ValueBy]*255.0; - nudge = partial*nudgeArray[(Inten+Current.Offset)%256]; + for (i = 0; i < RH; i++) + { + for (j = 0; j < RW; j++) + { + backupP[0] = P[0] = (int) reduced->rgb[i * RW * bytes + j * bytes + 0]; + backupP[1] = P[1] = (int) reduced->rgb[i * RW * bytes + j * bytes + 1]; + backupP[2] = P[2] = (int) reduced->rgb[i * RW * bytes + j * bytes + 2]; - switch (changewhat) { - case HUE: - P[0] += colorSign[RED][changewhich] * nudge; - P[1] += colorSign[GREEN][changewhich] * nudge; - P[2] += colorSign[BLUE][changewhich] * nudge; - break; + m = MIN (MIN (P[0], P[1]), P[2]); + M = MAX (MAX (P[0], P[1]), P[2]); - case SATURATION: - for (JudgeBy=BY_HUE; JudgeBymask[i * RW + j] / 255.0; + + for (JudgeBy = BY_HUE; JudgeBy < JUDGE_BY; JudgeBy++) + { + if (!fpvals.touched[JudgeBy]) continue; + + Inten = reduced->hsv[i * RW * bytes + j * bytes + JudgeBy] * 255.0; + + /*DO SATURATION FIRST*/ + if (change_what != NONEATALL) + { + if (M != m) + { + for (k = 0; k < 3; k++) + if (backupP[k] == M) + P[k] = MAX (P[k] + partial * fpvals.sat_adjust[JudgeBy][Inten], + middle); + else if (backupP[k] == m) + P[k] = MIN (P[k] - partial * fpvals.sat_adjust[JudgeBy][Inten], + middle); + } + + P[0] += partial * fpvals.red_adjust[JudgeBy][Inten]; + P[1] += partial * fpvals.green_adjust[JudgeBy][Inten]; + P[2] += partial * fpvals.blue_adjust[JudgeBy][Inten]; + } + } + + Inten = reduced->hsv[i * RW * bytes + j * bytes + fpvals.value_by] * 255.0; + nudge = partial * nudgeArray[(Inten + fpvals.offset) % 256]; + + switch (change_what) + { + case HUE: + P[0] += colorSign[RED][change_which] * nudge; + P[1] += colorSign[GREEN][change_which] * nudge; + P[2] += colorSign[BLUE][change_which] * nudge; + break; + + case SATURATION: + for (JudgeBy = BY_HUE; JudgeBy < JUDGE_BY; JudgeBy++) + for (k = 0; k < 3; k++) + if (M != m) + { + if (backupP[k] == M) + P[k] = MAX (P[k] + partial * tempSat[JudgeBy][Inten], + middle); + else if (backupP[k] == m) + P[k] = MIN (P[k]- partial * tempSat[JudgeBy][Inten], + middle); + } + break; + + case VALUE: + P[0] += change_which * nudge; + P[1] += change_which * nudge; + P[2] += change_which * nudge; + break; + + default: + break; + } a[(i * RW + j) * 4 + 0] = CLAMP0255(P[0]); a[(i * RW + j) * 4 + 1] = CLAMP0255(P[1]); a[(i * RW + j) * 4 + 2] = CLAMP0255(P[2]); if (bytes == 4) - a[(i * RW + j) * 4 + 3] = reduced->rgb[i*RW*bytes+j*bytes+3]; + a[(i * RW + j) * 4 + 3] = reduced->rgb[i * RW * bytes + j * bytes + 3]; else a[(i * RW + j) * 4 + 3] = 255; + } } - } gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview), 0, 0, RW, RH, @@ -1786,8 +1848,8 @@ } static void -Update_Current_FP (gint changewhat, - gint changewhich) +update_current_fp (gint change_what, + gint change_which) { gint i; @@ -1795,29 +1857,29 @@ { gint nudge; - fp_Create_Nudge (nudgeArray); - nudge = nudgeArray[(i + Current.Offset) % 256]; + fp_create_nudge (nudgeArray); + nudge = nudgeArray[(i + fpvals.offset) % 256]; - switch (changewhat) { + switch (change_what) { case HUE: - Current.redAdj[Current.ValueBy][i] += - colorSign[RED][changewhich] * nudge; + fpvals.red_adjust[fpvals.value_by][i] += + colorSign[RED][change_which] * nudge; - Current.greenAdj[Current.ValueBy][i] += - colorSign[GREEN][changewhich] * nudge; + fpvals.green_adjust[fpvals.value_by][i] += + colorSign[GREEN][change_which] * nudge; - Current.blueAdj[Current.ValueBy][i] += - colorSign[BLUE][changewhich] * nudge; + fpvals.blue_adjust[fpvals.value_by][i] += + colorSign[BLUE][change_which] * nudge; break; case SATURATION: - Current.satAdj[Current.ValueBy][i] += changewhich * nudge; + fpvals.sat_adjust[fpvals.value_by][i] += change_which * nudge; break; case VALUE: - Current.redAdj[Current.ValueBy][i] += changewhich * nudge; - Current.greenAdj[Current.ValueBy][i] += changewhich * nudge; - Current.blueAdj[Current.ValueBy][i] += changewhich * nudge; + fpvals.red_adjust[fpvals.value_by][i] += change_which * nudge; + fpvals.green_adjust[fpvals.value_by][i] += change_which * nudge; + fpvals.blue_adjust[fpvals.value_by][i] += change_which * nudge; break; default: @@ -1834,7 +1896,7 @@ gint i, j; gboolean toBeBlack; - fp_Create_Nudge(nArray); + fp_create_nudge(nArray); for (i = 0; i < MAX_ROUGHNESS; i++) { @@ -1902,14 +1964,14 @@ switch (type) { case BY_VAL: - data[3 * (i * 256 + j) + 0] = j - Current.Offset; - data[3 * (i * 256 + j) + 1] = j - Current.Offset; - data[3 * (i * 256 + j) + 2] = j - Current.Offset; + data[3 * (i * 256 + j) + 0] = j - fpvals.offset; + data[3 * (i * 256 + j) + 1] = j - fpvals.offset; + data[3 * (i * 256 + j) + 2] = j - fpvals.offset; break; case BY_HUE: gimp_hsv_set (&hsv, - ((j - Current.Offset + 256) % 256) / 255.0, + ((j - fpvals.offset + 256) % 256) / 255.0, 1.0, 0.5); gimp_hsv_to_rgb (&hsv, &rgb); @@ -1922,7 +1984,7 @@ case BY_SAT: gimp_hsv_set (&hsv, 0.5, - ((j-(gint)Current.Offset+256)%256) / 255.0, + ((j-(gint)fpvals.offset+256)%256) / 255.0, 0.5); gimp_hsv_to_rgb (&hsv, &rgb); gimp_rgb_get_uchar (&rgb, @@ -1942,27 +2004,76 @@ } static void -fp_Create_Nudge(gint *adjArray) +fp_create_nudge (gint *adj_array) { gint left, right, middle,i; /* The following function was determined by trial and error */ - gdouble Steepness = pow (1 - Current.Alias, 4) * .8; + gdouble Steepness = pow (1 - fpvals.aliasing, 4) * .8; - left = (Current.Range == SHADOWS) ? 0 : Current.Cutoffs[Current.Range - 1]; - right = Current.Cutoffs[Current.Range]; + left = (fpvals.intensity_range == SHADOWS) ? 0 : fpvals.cutoff[fpvals.intensity_range - 1]; + right = fpvals.cutoff[fpvals.intensity_range]; middle = (left + right)/2; - if (Current.Alias) + if (fpvals.aliasing) for (i = 0; i < 256; i++) if (i <= middle) - adjArray[i] = MAX_ROUGHNESS * - Current.Rough * (1 + tanh (Steepness * (i - left))) / 2; + adj_array[i] = MAX_ROUGHNESS * + fpvals.roughness * (1 + tanh (Steepness * (i - left))) / 2; else - adjArray[i] = MAX_ROUGHNESS * - Current.Rough * (1 + tanh (Steepness * (right - i))) / 2; + adj_array[i] = MAX_ROUGHNESS * + fpvals.roughness * (1 + tanh (Steepness * (right - i))) / 2; else for (i = 0; i < 256; i++) - adjArray[i] = (left <= i && i <= right) - ? MAX_ROUGHNESS * Current.Rough : 0; + adj_array[i] = (left <= i && i <= right) + ? MAX_ROUGHNESS * fpvals.roughness : 0; } +static void +fp_preview_size_allocate (GtkWidget *widget, + GtkAllocation *allocation) +{ + gint which = fpvals.visible_frames; + + if (widget == origPreview) + fp_render_preview (origPreview, NONEATALL, 0); + else if (widget == curPreview) + fp_render_preview (curPreview, CURRENT, 0); + + if (which & HUE) + { + if (widget == rPreview) + fp_render_preview (rPreview, HUE, RED); + else if (widget == gPreview) + fp_render_preview (gPreview, HUE, GREEN); + else if (widget == bPreview) + fp_render_preview (bPreview, HUE, BLUE); + else if (widget == cPreview) + fp_render_preview (cPreview, HUE, CYAN); + else if (widget == yPreview) + fp_render_preview (yPreview, HUE, YELLOW); + else if (widget == mPreview) + fp_render_preview (mPreview, HUE, MAGENTA); + else if (widget == centerPreview) + fp_render_preview (centerPreview, CURRENT, 0); + } + + if (which & VALUE) + { + if (widget == lighterPreview) + fp_render_preview (lighterPreview, VALUE, UP); + else if (widget == middlePreview) + fp_render_preview (middlePreview, CURRENT, 0); + else if (widget == darkerPreview) + fp_render_preview (darkerPreview, VALUE, DOWN); + } + + if (which & SATURATION) + { + if (widget == plusSatPreview) + fp_render_preview (plusSatPreview, SATURATION, UP); + else if (widget == SatPreview) + fp_render_preview (SatPreview, CURRENT, 0); + else if (widget == minusSatPreview) + fp_render_preview (minusSatPreview, SATURATION, DOWN); + } +} diff -uraN gimp-2.2.8/plug-ins/common/gauss.c gimp-2.2.9/plug-ins/common/gauss.c --- gimp-2.2.8/plug-ins/common/gauss.c 2005-04-08 14:22:53.000000000 +0200 +++ gimp-2.2.9/plug-ins/common/gauss.c 2005-10-20 12:20:16.000000000 +0200 @@ -644,6 +644,13 @@ guchar *preview_buffer1 = NULL; guchar *preview_buffer2 = NULL; + /* + * IIR goes wrong if the blur radius is less than 1, so we silently + * switch to RLE in this case. See bug #315953 + */ + if (horz <= 1.0 || vert <= 1.0) + method = BLUR_RLE; + if (horz <= 0.0 && vert <= 0.0) { if (preview) diff -uraN gimp-2.2.8/plug-ins/common/gqbist.c gimp-2.2.9/plug-ins/common/gqbist.c --- gimp-2.2.8/plug-ins/common/gqbist.c 2004-11-08 12:24:42.000000000 +0100 +++ gimp-2.2.9/plug-ins/common/gqbist.c 2005-10-20 12:20:16.000000000 +0200 @@ -113,7 +113,9 @@ static void dialog_select_preview (GtkWidget *widget, ExpInfo *n_info); -static QbistInfo qbist_info; +static QbistInfo qbist_info; +static GRand *gr = NULL; + /** qbist functions *********************************************************/ @@ -121,9 +123,6 @@ create_info (ExpInfo *info) { gint k; - GRand *gr; - - gr = g_rand_new(); for (k = 0; k < MAX_TRANSFORMS; k++) { @@ -132,8 +131,6 @@ info->control[k] = g_rand_int_range (gr, 0, NUM_REGISTERS); info->dest[k] = g_rand_int_range (gr, 0, NUM_REGISTERS); } - - g_rand_free(gr); } static void @@ -141,9 +138,7 @@ ExpInfo *n_info) { gint k, n; - GRand *gr; - gr = g_rand_new (); *n_info = *o_info; n = g_rand_int_range (gr, 0, MAX_TRANSFORMS); for (k = 0; k < n; k++) @@ -171,7 +166,6 @@ break; } } - g_rand_free (gr); } /* @@ -464,6 +458,8 @@ if (status == GIMP_PDB_SUCCESS) { + gr = g_rand_new (); + memset (&qbist_info, 0, sizeof (qbist_info)); create_info (&qbist_info.info); qbist_info.oversampling = 4; @@ -544,6 +540,8 @@ gimp_displays_flush (); } + + g_rand_free (gr); } values[0].type = GIMP_PDB_STATUS; diff -uraN gimp-2.2.8/plug-ins/common/jpeg.c gimp-2.2.9/plug-ins/common/jpeg.c --- gimp-2.2.8/plug-ins/common/jpeg.c 2005-01-22 17:22:40.000000000 +0100 +++ gimp-2.2.9/plug-ins/common/jpeg.c 2005-08-15 12:07:04.000000000 +0200 @@ -2040,6 +2040,8 @@ GTK_FILL, 0, 0, 0); gtk_widget_show (restart); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (restart), jsvals.restart); + gtk_widget_set_sensitive (restart_markers_label, jsvals.restart); gtk_widget_set_sensitive (restart_markers_scale, jsvals.restart); diff -uraN gimp-2.2.8/plug-ins/common/Makefile.in gimp-2.2.9/plug-ins/common/Makefile.in --- gimp-2.2.8/plug-ins/common/Makefile.in 2005-06-26 21:28:23.000000000 +0200 +++ gimp-2.2.9/plug-ins/common/Makefile.in 2005-10-27 17:11:47.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,2634 +34,15 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ -AA = @AA@ -ACLOCAL = @ACLOCAL@ -ALLOCA = @ALLOCA@ -ALSA_CFLAGS = @ALSA_CFLAGS@ -ALSA_LIBS = @ALSA_LIBS@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AR = @AR@ -AS = @AS@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -BUILD_HELPBROWSER_FALSE = @BUILD_HELPBROWSER_FALSE@ -BUILD_HELPBROWSER_TRUE = @BUILD_HELPBROWSER_TRUE@ -BUILD_PRINT_FALSE = @BUILD_PRINT_FALSE@ -BUILD_PRINT_TRUE = @BUILD_PRINT_TRUE@ -BUILD_PYTHON_FALSE = @BUILD_PYTHON_FALSE@ -BUILD_PYTHON_TRUE = @BUILD_PYTHON_TRUE@ -BUILD_XJT_FALSE = @BUILD_XJT_FALSE@ -BUILD_XJT_TRUE = @BUILD_XJT_TRUE@ -CATALOGS = @CATALOGS@ -CATOBJEXT = @CATOBJEXT@ -CC = @CC@ -CCAS = @CCAS@ -CCASFLAGS = @CCASFLAGS@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DATADIRNAME = @DATADIRNAME@ -DEFAULT_BINARY_FALSE = @DEFAULT_BINARY_FALSE@ -DEFAULT_BINARY_TRUE = @DEFAULT_BINARY_TRUE@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DESKTOP_DATADIR = @DESKTOP_DATADIR@ -DESKTOP_DATADIR_FALSE = @DESKTOP_DATADIR_FALSE@ -DESKTOP_DATADIR_TRUE = @DESKTOP_DATADIR_TRUE@ -DLLTOOL = @DLLTOOL@ -ECHO = @ECHO@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -ENABLE_GIMP_CONSOLE_FALSE = @ENABLE_GIMP_CONSOLE_FALSE@ -ENABLE_GIMP_CONSOLE_TRUE = @ENABLE_GIMP_CONSOLE_TRUE@ -ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ -ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ -EXEEXT = @EXEEXT@ -EXIF_CFLAGS = @EXIF_CFLAGS@ -EXIF_LIBS = @EXIF_LIBS@ -F77 = @F77@ -FFLAGS = @FFLAGS@ -FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ -FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ -FONTCONFIG_REQUIRED_VERSION = @FONTCONFIG_REQUIRED_VERSION@ -FREETYPE_CONFIG = @FREETYPE_CONFIG@ -FREETYPE_LIBS = @FREETYPE_LIBS@ -GDK_PIXBUF_CFLAGS = @GDK_PIXBUF_CFLAGS@ -GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ -GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ -GDK_PIXBUF_REQUIRED_VERSION = @GDK_PIXBUF_REQUIRED_VERSION@ -GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ -GIMPINSTALL = @GIMPINSTALL@ -GIMPPRINT_CFLAGS = @GIMPPRINT_CFLAGS@ -GIMPPRINT_CONFIG = @GIMPPRINT_CONFIG@ -GIMPPRINT_LIBS = @GIMPPRINT_LIBS@ -GIMPPRINT_REQUIRED_VERSION = @GIMPPRINT_REQUIRED_VERSION@ -GIMPPRINT_TOONEW_VERSION = @GIMPPRINT_TOONEW_VERSION@ -GIMP_API_VERSION = @GIMP_API_VERSION@ -GIMP_APP_VERSION = @GIMP_APP_VERSION@ -GIMP_BINARY_AGE = @GIMP_BINARY_AGE@ -GIMP_DATA_VERSION = @GIMP_DATA_VERSION@ -GIMP_DESKTOP_ICON = @GIMP_DESKTOP_ICON@ -GIMP_FULL_NAME = @GIMP_FULL_NAME@ -GIMP_INTERFACE_AGE = @GIMP_INTERFACE_AGE@ -GIMP_MAJOR_VERSION = @GIMP_MAJOR_VERSION@ -GIMP_MICRO_VERSION = @GIMP_MICRO_VERSION@ -GIMP_MINOR_VERSION = @GIMP_MINOR_VERSION@ -GIMP_MKENUMS = @GIMP_MKENUMS@ -GIMP_MODULES = @GIMP_MODULES@ -GIMP_MP_FLAGS = @GIMP_MP_FLAGS@ -GIMP_MP_LIBS = @GIMP_MP_LIBS@ -GIMP_PKGCONFIG_VERSION = @GIMP_PKGCONFIG_VERSION@ -GIMP_PLUGINS = @GIMP_PLUGINS@ -GIMP_PLUGIN_VERSION = @GIMP_PLUGIN_VERSION@ -GIMP_REAL_VERSION = @GIMP_REAL_VERSION@ -GIMP_REMOTE = @GIMP_REMOTE@ -GIMP_SYSCONF_VERSION = @GIMP_SYSCONF_VERSION@ -GIMP_THREAD_FLAGS = @GIMP_THREAD_FLAGS@ -GIMP_THREAD_LIBS = @GIMP_THREAD_LIBS@ -GIMP_TOOL_VERSION = @GIMP_TOOL_VERSION@ -GIMP_UNSTABLE = @GIMP_UNSTABLE@ -GIMP_USER_VERSION = @GIMP_USER_VERSION@ -GIMP_VERSION = @GIMP_VERSION@ -GLIB_CFLAGS = @GLIB_CFLAGS@ -GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ -GLIB_LIBS = @GLIB_LIBS@ -GLIB_MKENUMS = @GLIB_MKENUMS@ -GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@ -GMODULE_CFLAGS = @GMODULE_CFLAGS@ -GMODULE_LIBS = @GMODULE_LIBS@ -GMOFILES = @GMOFILES@ -GMSGFMT = @GMSGFMT@ -GOBJECT_QUERY = @GOBJECT_QUERY@ -GTKDOC_REQUIRED_VERSION = @GTKDOC_REQUIRED_VERSION@ -GTKHTML2_CFLAGS = @GTKHTML2_CFLAGS@ -GTKHTML2_LIBS = @GTKHTML2_LIBS@ -GTKHTML2_REQUIRED_VERSION = @GTKHTML2_REQUIRED_VERSION@ -GTK_CFLAGS = @GTK_CFLAGS@ -GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ -GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ -GTK_LIBS = @GTK_LIBS@ -GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@ -HAVE_FINITE = @HAVE_FINITE@ -HAVE_GLIBC_REGEX = @HAVE_GLIBC_REGEX@ -HAVE_GLIBC_REGEX_FALSE = @HAVE_GLIBC_REGEX_FALSE@ -HAVE_GLIBC_REGEX_TRUE = @HAVE_GLIBC_REGEX_TRUE@ -HAVE_ISFINITE = @HAVE_ISFINITE@ -HAVE_LCMS_FALSE = @HAVE_LCMS_FALSE@ -HAVE_LCMS_TRUE = @HAVE_LCMS_TRUE@ -HAVE_LINUX_INPUT_FALSE = @HAVE_LINUX_INPUT_FALSE@ -HAVE_LINUX_INPUT_TRUE = @HAVE_LINUX_INPUT_TRUE@ -HAVE_MAC_TWAIN_FALSE = @HAVE_MAC_TWAIN_FALSE@ -HAVE_MAC_TWAIN_TRUE = @HAVE_MAC_TWAIN_TRUE@ -HAVE_WINDRES_FALSE = @HAVE_WINDRES_FALSE@ -HAVE_WINDRES_TRUE = @HAVE_WINDRES_TRUE@ -HAVE_XMLLINT_FALSE = @HAVE_XMLLINT_FALSE@ -HAVE_XMLLINT_TRUE = @HAVE_XMLLINT_TRUE@ -HAVE_XSLTPROC_FALSE = @HAVE_XSLTPROC_FALSE@ -HAVE_XSLTPROC_TRUE = @HAVE_XSLTPROC_TRUE@ -HTML_DIR = @HTML_DIR@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INSTOBJEXT = @INSTOBJEXT@ -INTLLIBS = @INTLLIBS@ -INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ -INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ -INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ -INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ -INTLTOOL_ICONV = @INTLTOOL_ICONV@ -INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ -INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ -INTLTOOL_MERGE = @INTLTOOL_MERGE@ -INTLTOOL_MSGFMT = @INTLTOOL_MSGFMT@ -INTLTOOL_MSGMERGE = @INTLTOOL_MSGMERGE@ -INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ -INTLTOOL_PERL = @INTLTOOL_PERL@ -INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ -INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ -INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ -INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ -INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ -INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ -INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ -INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ -INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ -INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ -INTLTOOL_XGETTEXT = @INTLTOOL_XGETTEXT@ -INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ -INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ -JPEG = @JPEG@ -LCMS_LIBS = @LCMS_LIBS@ -LDFLAGS = @LDFLAGS@ -LIBAA = @LIBAA@ -LIBART_CFLAGS = @LIBART_CFLAGS@ -LIBART_LIBS = @LIBART_LIBS@ -LIBJPEG = @LIBJPEG@ -LIBMNG = @LIBMNG@ -LIBOBJS = @LIBOBJS@ -LIBPNG = @LIBPNG@ -LIBS = @LIBS@ -LIBSCREENSHOT = @LIBSCREENSHOT@ -LIBSVG = @LIBSVG@ -LIBTIFF = @LIBTIFF@ -LIBTOOL = @LIBTOOL@ -LIBWMF = @LIBWMF@ -LIBXMU = @LIBXMU@ -LIBXPM = @LIBXPM@ -LIBZ = @LIBZ@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ -LT_VERSION_INFO = @LT_VERSION_INFO@ -MAIL = @MAIL@ -MAINT = @MAINT@ -MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ -MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ -MAKEINFO = @MAKEINFO@ -MKINSTALLDIRS = @MKINSTALLDIRS@ -MNG = @MNG@ -MSGFMT = @MSGFMT@ -MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ -MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ -OBJDUMP = @OBJDUMP@ -OBJEXT = @OBJEXT@ -OS_UNIX_FALSE = @OS_UNIX_FALSE@ -OS_UNIX_TRUE = @OS_UNIX_TRUE@ -OS_WIN32_FALSE = @OS_WIN32_FALSE@ -OS_WIN32_TRUE = @OS_WIN32_TRUE@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PANGOFT2_CFLAGS = @PANGOFT2_CFLAGS@ -PANGOFT2_LIBS = @PANGOFT2_LIBS@ -PANGOFT2_REQUIRED_VERSION = @PANGOFT2_REQUIRED_VERSION@ -PATHSEP = @PATHSEP@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PERL = @PERL@ -PKG_CONFIG = @PKG_CONFIG@ -PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ -PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ -PNG = @PNG@ -POFILES = @POFILES@ -POSUB = @POSUB@ -PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ -PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ -PRINT_CFLAGS = @PRINT_CFLAGS@ -PRINT_LIBS = @PRINT_LIBS@ -PSP = @PSP@ -PYGIMP_EXTRA_CFLAGS = @PYGIMP_EXTRA_CFLAGS@ -PYGTK_CFLAGS = @PYGTK_CFLAGS@ -PYGTK_LIBS = @PYGTK_LIBS@ -PYTHON = @PYTHON@ -PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ -PYTHON_INCLUDES = @PYTHON_INCLUDES@ -PYTHON_PLATFORM = @PYTHON_PLATFORM@ -PYTHON_PREFIX = @PYTHON_PREFIX@ -PYTHON_VERSION = @PYTHON_VERSION@ -RANLIB = @RANLIB@ -RSVG_REQUIRED_VERSION = @RSVG_REQUIRED_VERSION@ -RT_LIBS = @RT_LIBS@ -SCREENSHOT = @SCREENSHOT@ -SENDMAIL = @SENDMAIL@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -SOCKET_LIBS = @SOCKET_LIBS@ -STATICLIBS_FALSE = @STATICLIBS_FALSE@ -STATICLIBS_TRUE = @STATICLIBS_TRUE@ -STRIP = @STRIP@ -SVG = @SVG@ -SVG_CFLAGS = @SVG_CFLAGS@ -SVG_LIBS = @SVG_LIBS@ -SYMPREFIX = @SYMPREFIX@ -TIFF = @TIFF@ -URL = @URL@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -WINCLIPBOARD = @WINCLIPBOARD@ -WINDRES = @WINDRES@ -WINPRINT = @WINPRINT@ -WITH_PDBGEN_FALSE = @WITH_PDBGEN_FALSE@ -WITH_PDBGEN_TRUE = @WITH_PDBGEN_TRUE@ -WMF = @WMF@ -WMF_CFLAGS = @WMF_CFLAGS@ -WMF_CONFIG = @WMF_CONFIG@ -WMF_REQUIRED_VERSION = @WMF_REQUIRED_VERSION@ -XGETTEXT = @XGETTEXT@ -XMLLINT = @XMLLINT@ -XPM = @XPM@ -XSLTPROC = @XSLTPROC@ -X_CFLAGS = @X_CFLAGS@ -X_EXTRA_LIBS = @X_EXTRA_LIBS@ -X_LIBS = @X_LIBS@ -X_PRE_LIBS = @X_PRE_LIBS@ -ac_ct_AR = @ac_ct_AR@ -ac_ct_AS = @ac_ct_AS@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ -ac_ct_F77 = @ac_ct_F77@ -ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ -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@ -am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -gimpdatadir = @gimpdatadir@ -gimpdir = @gimpdir@ -gimpplugindir = @gimpplugindir@ -gimpsysconfdir = @gimpsysconfdir@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ - -libexecdir = $(gimpplugindir)/plug-ins -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -ms_librarian = @ms_librarian@ -oldincludedir = @oldincludedir@ -pkgpyexecdir = @pkgpyexecdir@ -pkgpythondir = @pkgpythondir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -pyexecdir = @pyexecdir@ -pythondir = @pythondir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ - -libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la -libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la -libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la -libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la -libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -@OS_WIN32_TRUE@mwindows = -mwindows - -AM_LDFLAGS = $(mwindows) - -EXTRA_DIST = \ - mkgen.pl \ - plugin-defs.pl - - -INCLUDES = \ - -I$(top_srcdir) \ - $(GTK_CFLAGS) \ - $(EXIF_CFLAGS) \ - $(SVG_CFLAGS) \ - $(WMF_CFLAGS) \ - -I$(includedir) - - -libexec_PROGRAMS = \ - AlienMap2 \ - CEL \ - CML_explorer \ - $(AA) \ - align_layers \ - animationplay \ - animoptimize \ - apply_lens \ - autocrop \ - autostretch_hsv \ - blinds \ - blur \ - borderaverage \ - bumpmap \ - c_astretch \ - cartoon \ - ccanalyze \ - channel_mixer \ - checkerboard \ - color_enhance \ - colorify \ - colortoalpha \ - compose \ - compressor \ - convmatrix \ - csource \ - cubism \ - curve_bend \ - decompose \ - deinterlace \ - depthmerge \ - despeckle \ - destripe \ - dicom \ - diffraction \ - displace \ - dog \ - edge \ - emboss \ - engrave \ - exchange \ - film \ - flarefx \ - fp \ - fractaltrace \ - gauss \ - gbr \ - gee \ - gee_zoom \ - gif \ - gifload \ - gih \ - glasstile \ - glob \ - gqbist \ - gradmap \ - grid \ - gtm \ - guillotine \ - header \ - hot \ - illusion \ - iwarp \ - jigsaw \ - $(JPEG) \ - laplace \ - lic \ - $(MAIL) \ - mapcolor \ - max_rgb \ - mblur \ - $(MNG) \ - mosaic \ - neon \ - newsprint \ - nlfilt \ - noisify \ - normalize \ - nova \ - oilify \ - papertile \ - pat \ - pcx \ - photocopy \ - pix \ - pixelize \ - plasma \ - $(PNG) \ - pnm \ - polar \ - postscript \ - psd \ - psd_save \ - $(PSP) \ - randomize \ - raw \ - retinex \ - ripple \ - rotate \ - sample_colorize \ - scatter_hsv \ - $(SCREENSHOT) \ - sel_gauss \ - semiflatten \ - sharpen \ - shift \ - sinus \ - smooth_palette \ - snoise \ - sobel \ - softglow \ - sparkle \ - spheredesigner \ - spread \ - struc \ - sunras \ - $(SVG) \ - tga \ - threshold_alpha \ - $(TIFF) \ - tile \ - tileit \ - tiler \ - uniteditor \ - unsharp \ - $(URL) \ - video \ - vinvert \ - vpropagate \ - warp \ - waves \ - webbrowser \ - whirlpinch \ - $(WINCLIPBOARD) \ - wind \ - $(WINPRINT) \ - $(WMF) \ - xbm \ - $(XPM) \ - xwd \ - zealouscrop - - -EXTRA_PROGRAMS = \ - aa \ - jpeg \ - mail \ - mng \ - png \ - psp \ - screenshot \ - svg \ - tiff \ - url \ - winclipboard \ - winprint \ - wmf \ - xpm - - -AlienMap2_SOURCES = \ - AlienMap2.c - - -AlienMap2_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -CEL_SOURCES = \ - CEL.c - - -CEL_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -CML_explorer_SOURCES = \ - CML_explorer.c - - -CML_explorer_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -aa_SOURCES = \ - aa.c - - -aa_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBAA) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -align_layers_SOURCES = \ - align_layers.c - - -align_layers_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -animationplay_SOURCES = \ - animationplay.c - - -animationplay_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -animoptimize_SOURCES = \ - animoptimize.c - - -animoptimize_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -apply_lens_SOURCES = \ - apply_lens.c - - -apply_lens_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -autocrop_SOURCES = \ - autocrop.c - - -autocrop_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -autostretch_hsv_SOURCES = \ - autostretch_hsv.c - - -autostretch_hsv_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -blinds_SOURCES = \ - blinds.c - - -blinds_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -blur_SOURCES = \ - blur.c - - -blur_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -borderaverage_SOURCES = \ - borderaverage.c - - -borderaverage_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -bumpmap_SOURCES = \ - bumpmap.c - - -bumpmap_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -c_astretch_SOURCES = \ - c_astretch.c - - -c_astretch_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -cartoon_SOURCES = \ - cartoon.c - - -cartoon_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -ccanalyze_SOURCES = \ - ccanalyze.c - - -ccanalyze_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -channel_mixer_SOURCES = \ - channel_mixer.c - - -channel_mixer_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -checkerboard_SOURCES = \ - checkerboard.c - - -checkerboard_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -color_enhance_SOURCES = \ - color_enhance.c - - -color_enhance_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -colorify_SOURCES = \ - colorify.c - - -colorify_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -colortoalpha_SOURCES = \ - colortoalpha.c - - -colortoalpha_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -compose_SOURCES = \ - compose.c - - -compose_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -compressor_SOURCES = \ - compressor.c - - -compressor_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -convmatrix_SOURCES = \ - convmatrix.c - - -convmatrix_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -csource_SOURCES = \ - csource.c - - -csource_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -cubism_SOURCES = \ - cubism.c - - -cubism_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -curve_bend_SOURCES = \ - curve_bend.c - - -curve_bend_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -decompose_SOURCES = \ - decompose.c - - -decompose_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -deinterlace_SOURCES = \ - deinterlace.c - - -deinterlace_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -depthmerge_SOURCES = \ - depthmerge.c - - -depthmerge_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -despeckle_SOURCES = \ - despeckle.c - - -despeckle_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -destripe_SOURCES = \ - destripe.c - - -destripe_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -dicom_SOURCES = \ - dicom.c - - -dicom_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -diffraction_SOURCES = \ - diffraction.c - - -diffraction_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -displace_SOURCES = \ - displace.c - - -displace_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -dog_SOURCES = \ - dog.c - - -dog_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -edge_SOURCES = \ - edge.c - - -edge_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -emboss_SOURCES = \ - emboss.c - - -emboss_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -engrave_SOURCES = \ - engrave.c - - -engrave_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -exchange_SOURCES = \ - exchange.c - - -exchange_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -film_SOURCES = \ - film.c - - -film_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -flarefx_SOURCES = \ - flarefx.c - - -flarefx_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -fp_SOURCES = \ - fp.c - - -fp_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -fractaltrace_SOURCES = \ - fractaltrace.c - - -fractaltrace_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gauss_SOURCES = \ - gauss.c - - -gauss_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gbr_SOURCES = \ - gbr.c - - -gbr_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gee_SOURCES = \ - gee.c - - -gee_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gee_zoom_SOURCES = \ - gee_zoom.c - - -gee_zoom_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gif_SOURCES = \ - gif.c - - -gif_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gifload_SOURCES = \ - gifload.c - - -gifload_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gih_SOURCES = \ - gih.c - - -gih_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -glasstile_SOURCES = \ - glasstile.c - - -glasstile_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -glob_SOURCES = \ - glob.c - - -glob_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gqbist_SOURCES = \ - gqbist.c - - -gqbist_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gradmap_SOURCES = \ - gradmap.c - - -gradmap_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -grid_SOURCES = \ - grid.c - - -grid_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -gtm_SOURCES = \ - gtm.c - - -gtm_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -guillotine_SOURCES = \ - guillotine.c - - -guillotine_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -header_SOURCES = \ - header.c - - -header_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -hot_SOURCES = \ - hot.c - - -hot_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -illusion_SOURCES = \ - illusion.c - - -illusion_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -iwarp_SOURCES = \ - iwarp.c - - -iwarp_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -jigsaw_SOURCES = \ - jigsaw.c - - -jigsaw_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -jpeg_SOURCES = \ - jpeg.c - - -jpeg_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBJPEG) \ - $(GTK_LIBS) \ - $(EXIF_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -laplace_SOURCES = \ - laplace.c - - -laplace_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -lic_SOURCES = \ - lic.c - - -lic_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -mail_SOURCES = \ - mail.c - - -mail_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBMAIL) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -mapcolor_SOURCES = \ - mapcolor.c - - -mapcolor_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -max_rgb_SOURCES = \ - max_rgb.c - - -max_rgb_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -mblur_SOURCES = \ - mblur.c - - -mblur_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -mng_SOURCES = \ - mng.c - - -mng_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBMNG) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -mosaic_SOURCES = \ - mosaic.c - - -mosaic_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -neon_SOURCES = \ - neon.c - - -neon_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -newsprint_SOURCES = \ - newsprint.c - - -newsprint_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -nlfilt_SOURCES = \ - nlfilt.c - - -nlfilt_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -noisify_SOURCES = \ - noisify.c - - -noisify_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -normalize_SOURCES = \ - normalize.c - - -normalize_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -nova_SOURCES = \ - nova.c - - -nova_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -oilify_SOURCES = \ - oilify.c - - -oilify_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -papertile_SOURCES = \ - papertile.c - - -papertile_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -pat_SOURCES = \ - pat.c - - -pat_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -pcx_SOURCES = \ - pcx.c - - -pcx_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -photocopy_SOURCES = \ - photocopy.c - - -photocopy_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -pix_SOURCES = \ - pix.c - - -pix_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -pixelize_SOURCES = \ - pixelize.c - - -pixelize_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -plasma_SOURCES = \ - plasma.c - - -plasma_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -png_SOURCES = \ - png.c - - -png_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBPNG) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -pnm_SOURCES = \ - pnm.c - - -pnm_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -polar_SOURCES = \ - polar.c - - -polar_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -postscript_SOURCES = \ - postscript.c - - -postscript_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -psd_SOURCES = \ - psd.c - - -psd_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -psd_save_SOURCES = \ - psd_save.c - - -psd_save_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -psp_SOURCES = \ - psp.c - - -psp_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBZ) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -randomize_SOURCES = \ - randomize.c - - -randomize_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -raw_SOURCES = \ - raw.c - - -raw_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -retinex_SOURCES = \ - retinex.c - - -retinex_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -ripple_SOURCES = \ - ripple.c - - -ripple_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -rotate_SOURCES = \ - rotate.c - - -rotate_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sample_colorize_SOURCES = \ - sample_colorize.c - - -sample_colorize_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -scatter_hsv_SOURCES = \ - scatter_hsv.c - - -scatter_hsv_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -screenshot_SOURCES = \ - screenshot.c - - -screenshot_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBSCREENSHOT) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sel_gauss_SOURCES = \ - sel_gauss.c - - -sel_gauss_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -semiflatten_SOURCES = \ - semiflatten.c - - -semiflatten_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sharpen_SOURCES = \ - sharpen.c - - -sharpen_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -shift_SOURCES = \ - shift.c - - -shift_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sinus_SOURCES = \ - sinus.c - - -sinus_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -smooth_palette_SOURCES = \ - smooth_palette.c - - -smooth_palette_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -snoise_SOURCES = \ - snoise.c - - -snoise_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sobel_SOURCES = \ - sobel.c - - -sobel_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -softglow_SOURCES = \ - softglow.c - - -softglow_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sparkle_SOURCES = \ - sparkle.c - - -sparkle_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -spheredesigner_SOURCES = \ - spheredesigner.c - - -spheredesigner_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -spread_SOURCES = \ - spread.c - - -spread_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -struc_SOURCES = \ - struc.c - - -struc_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -sunras_SOURCES = \ - sunras.c - - -sunras_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -svg_SOURCES = \ - svg.c - - -svg_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBSVG) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -tga_SOURCES = \ - tga.c - - -tga_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -threshold_alpha_SOURCES = \ - threshold_alpha.c - - -threshold_alpha_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -tiff_SOURCES = \ - tiff.c - - -tiff_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBTIFF) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -tile_SOURCES = \ - tile.c - - -tile_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -tileit_SOURCES = \ - tileit.c - - -tileit_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -tiler_SOURCES = \ - tiler.c - - -tiler_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -uniteditor_SOURCES = \ - uniteditor.c - - -uniteditor_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -unsharp_SOURCES = \ - unsharp.c - - -unsharp_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -url_SOURCES = \ - url.c - - -url_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBURL) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -video_SOURCES = \ - video.c - - -video_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -vinvert_SOURCES = \ - vinvert.c - - -vinvert_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -vpropagate_SOURCES = \ - vpropagate.c - - -vpropagate_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -warp_SOURCES = \ - warp.c - - -warp_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -waves_SOURCES = \ - waves.c - - -waves_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -webbrowser_SOURCES = \ - webbrowser.c - - -webbrowser_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -whirlpinch_SOURCES = \ - whirlpinch.c - - -whirlpinch_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -winclipboard_SOURCES = \ - winclipboard.c - - -winclipboard_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBWINCLIPBOARD) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -wind_SOURCES = \ - wind.c - - -wind_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -winprint_SOURCES = \ - winprint.c - - -winprint_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBWINPRINT) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -wmf_SOURCES = \ - wmf.c - - -wmf_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBWMF) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -xbm_SOURCES = \ - xbm.c - - -xbm_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -xpm_SOURCES = \ - xpm.c - - -xpm_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(LIBXPM) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -xwd_SOURCES = \ - xwd.c - - -xwd_LDADD = \ - $(libgimpui) \ - $(libgimpwidgets) \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GTK_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - - -zealouscrop_SOURCES = \ - zealouscrop.c - - -zealouscrop_LDADD = \ - $(libgimp) \ - $(libgimpcolor) \ - $(libgimpbase) \ - $(GLIB_LIBS) \ - $(RT_LIBS) \ - $(INTLLIBS) - -subdir = plug-ins/common -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -EXTRA_PROGRAMS = aa$(EXEEXT) jpeg$(EXEEXT) mail$(EXEEXT) mng$(EXEEXT) \ - png$(EXEEXT) psp$(EXEEXT) screenshot$(EXEEXT) svg$(EXEEXT) \ - tiff$(EXEEXT) url$(EXEEXT) winclipboard$(EXEEXT) \ - winprint$(EXEEXT) wmf$(EXEEXT) xpm$(EXEEXT) -libexec_PROGRAMS = AlienMap2$(EXEEXT) CEL$(EXEEXT) CML_explorer$(EXEEXT) \ - @AA@ align_layers$(EXEEXT) animationplay$(EXEEXT) \ - animoptimize$(EXEEXT) apply_lens$(EXEEXT) autocrop$(EXEEXT) \ - autostretch_hsv$(EXEEXT) blinds$(EXEEXT) blur$(EXEEXT) \ - borderaverage$(EXEEXT) bumpmap$(EXEEXT) c_astretch$(EXEEXT) \ - cartoon$(EXEEXT) ccanalyze$(EXEEXT) channel_mixer$(EXEEXT) \ +libexec_PROGRAMS = AlienMap2$(EXEEXT) CEL$(EXEEXT) \ + CML_explorer$(EXEEXT) $(am__EXEEXT_1) align_layers$(EXEEXT) \ + animationplay$(EXEEXT) animoptimize$(EXEEXT) \ + apply_lens$(EXEEXT) autocrop$(EXEEXT) autostretch_hsv$(EXEEXT) \ + blinds$(EXEEXT) blur$(EXEEXT) borderaverage$(EXEEXT) \ + bumpmap$(EXEEXT) c_astretch$(EXEEXT) cartoon$(EXEEXT) \ + ccanalyze$(EXEEXT) channel_mixer$(EXEEXT) \ checkerboard$(EXEEXT) color_enhance$(EXEEXT) colorify$(EXEEXT) \ colortoalpha$(EXEEXT) compose$(EXEEXT) compressor$(EXEEXT) \ convmatrix$(EXEEXT) csource$(EXEEXT) cubism$(EXEEXT) \ @@ -2674,1427 +54,3251 @@ fractaltrace$(EXEEXT) gauss$(EXEEXT) gbr$(EXEEXT) gee$(EXEEXT) \ gee_zoom$(EXEEXT) gif$(EXEEXT) gifload$(EXEEXT) gih$(EXEEXT) \ glasstile$(EXEEXT) glob$(EXEEXT) gqbist$(EXEEXT) \ - gradmap$(EXEEXT) grid$(EXEEXT) gtm$(EXEEXT) guillotine$(EXEEXT) \ - header$(EXEEXT) hot$(EXEEXT) illusion$(EXEEXT) iwarp$(EXEEXT) \ - jigsaw$(EXEEXT) @JPEG@ laplace$(EXEEXT) lic$(EXEEXT) @MAIL@ \ - mapcolor$(EXEEXT) max_rgb$(EXEEXT) mblur$(EXEEXT) @MNG@ \ - mosaic$(EXEEXT) neon$(EXEEXT) newsprint$(EXEEXT) \ - nlfilt$(EXEEXT) noisify$(EXEEXT) normalize$(EXEEXT) \ - nova$(EXEEXT) oilify$(EXEEXT) papertile$(EXEEXT) pat$(EXEEXT) \ - pcx$(EXEEXT) photocopy$(EXEEXT) pix$(EXEEXT) pixelize$(EXEEXT) \ - plasma$(EXEEXT) @PNG@ pnm$(EXEEXT) polar$(EXEEXT) \ - postscript$(EXEEXT) psd$(EXEEXT) psd_save$(EXEEXT) @PSP@ \ - randomize$(EXEEXT) raw$(EXEEXT) retinex$(EXEEXT) \ - ripple$(EXEEXT) rotate$(EXEEXT) sample_colorize$(EXEEXT) \ - scatter_hsv$(EXEEXT) @SCREENSHOT@ sel_gauss$(EXEEXT) \ - semiflatten$(EXEEXT) sharpen$(EXEEXT) shift$(EXEEXT) \ - sinus$(EXEEXT) smooth_palette$(EXEEXT) snoise$(EXEEXT) \ - sobel$(EXEEXT) softglow$(EXEEXT) sparkle$(EXEEXT) \ - spheredesigner$(EXEEXT) spread$(EXEEXT) struc$(EXEEXT) \ - sunras$(EXEEXT) @SVG@ tga$(EXEEXT) threshold_alpha$(EXEEXT) \ - @TIFF@ tile$(EXEEXT) tileit$(EXEEXT) tiler$(EXEEXT) \ - uniteditor$(EXEEXT) unsharp$(EXEEXT) @URL@ video$(EXEEXT) \ + gradmap$(EXEEXT) grid$(EXEEXT) gtm$(EXEEXT) \ + guillotine$(EXEEXT) header$(EXEEXT) hot$(EXEEXT) \ + illusion$(EXEEXT) iwarp$(EXEEXT) jigsaw$(EXEEXT) \ + $(am__EXEEXT_2) laplace$(EXEEXT) lic$(EXEEXT) $(am__EXEEXT_3) \ + mapcolor$(EXEEXT) max_rgb$(EXEEXT) mblur$(EXEEXT) \ + $(am__EXEEXT_4) mosaic$(EXEEXT) neon$(EXEEXT) \ + newsprint$(EXEEXT) nlfilt$(EXEEXT) noisify$(EXEEXT) \ + normalize$(EXEEXT) nova$(EXEEXT) oilify$(EXEEXT) \ + papertile$(EXEEXT) pat$(EXEEXT) pcx$(EXEEXT) \ + photocopy$(EXEEXT) pix$(EXEEXT) pixelize$(EXEEXT) \ + plasma$(EXEEXT) $(am__EXEEXT_5) pnm$(EXEEXT) polar$(EXEEXT) \ + postscript$(EXEEXT) psd$(EXEEXT) psd_save$(EXEEXT) \ + $(am__EXEEXT_6) randomize$(EXEEXT) raw$(EXEEXT) \ + retinex$(EXEEXT) ripple$(EXEEXT) rotate$(EXEEXT) \ + sample_colorize$(EXEEXT) scatter_hsv$(EXEEXT) $(am__EXEEXT_7) \ + sel_gauss$(EXEEXT) semiflatten$(EXEEXT) sharpen$(EXEEXT) \ + shift$(EXEEXT) sinus$(EXEEXT) smooth_palette$(EXEEXT) \ + snoise$(EXEEXT) sobel$(EXEEXT) softglow$(EXEEXT) \ + sparkle$(EXEEXT) spheredesigner$(EXEEXT) spread$(EXEEXT) \ + struc$(EXEEXT) sunras$(EXEEXT) $(am__EXEEXT_8) tga$(EXEEXT) \ + threshold_alpha$(EXEEXT) $(am__EXEEXT_9) tile$(EXEEXT) \ + tileit$(EXEEXT) tiler$(EXEEXT) uniteditor$(EXEEXT) \ + unsharp$(EXEEXT) $(am__EXEEXT_10) video$(EXEEXT) \ vinvert$(EXEEXT) vpropagate$(EXEEXT) warp$(EXEEXT) \ waves$(EXEEXT) webbrowser$(EXEEXT) whirlpinch$(EXEEXT) \ - @WINCLIPBOARD@ wind$(EXEEXT) @WINPRINT@ @WMF@ xbm$(EXEEXT) \ - @XPM@ xwd$(EXEEXT) zealouscrop$(EXEEXT) + $(am__EXEEXT_11) wind$(EXEEXT) $(am__EXEEXT_12) \ + $(am__EXEEXT_13) xbm$(EXEEXT) $(am__EXEEXT_14) xwd$(EXEEXT) \ + zealouscrop$(EXEEXT) +EXTRA_PROGRAMS = aa$(EXEEXT) jpeg$(EXEEXT) mail$(EXEEXT) mng$(EXEEXT) \ + png$(EXEEXT) psp$(EXEEXT) screenshot$(EXEEXT) svg$(EXEEXT) \ + tiff$(EXEEXT) url$(EXEEXT) winclipboard$(EXEEXT) \ + winprint$(EXEEXT) wmf$(EXEEXT) xpm$(EXEEXT) +subdir = plug-ins/common +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__EXEEXT_1 = @AA@ +am__EXEEXT_2 = @JPEG@ +am__EXEEXT_3 = @MAIL@ +am__EXEEXT_4 = @MNG@ +am__EXEEXT_5 = @PNG@ +am__EXEEXT_6 = @PSP@ +am__EXEEXT_7 = @SCREENSHOT@ +am__EXEEXT_8 = @SVG@ +am__EXEEXT_9 = @TIFF@ +am__EXEEXT_10 = @URL@ +am__EXEEXT_11 = @WINCLIPBOARD@ +am__EXEEXT_12 = @WINPRINT@ +am__EXEEXT_13 = @WMF@ +am__EXEEXT_14 = @XPM@ +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(libexec_PROGRAMS) - am_AlienMap2_OBJECTS = AlienMap2.$(OBJEXT) AlienMap2_OBJECTS = $(am_AlienMap2_OBJECTS) -AlienMap2_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -AlienMap2_LDFLAGS = +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +AlienMap2_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_CEL_OBJECTS = CEL.$(OBJEXT) CEL_OBJECTS = $(am_CEL_OBJECTS) -CEL_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -CEL_LDFLAGS = +CEL_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_CML_explorer_OBJECTS = CML_explorer.$(OBJEXT) CML_explorer_OBJECTS = $(am_CML_explorer_OBJECTS) -CML_explorer_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -CML_explorer_LDFLAGS = +CML_explorer_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_aa_OBJECTS = aa.$(OBJEXT) aa_OBJECTS = $(am_aa_OBJECTS) -aa_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -aa_LDFLAGS = +aa_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_align_layers_OBJECTS = align_layers.$(OBJEXT) align_layers_OBJECTS = $(am_align_layers_OBJECTS) -align_layers_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -align_layers_LDFLAGS = +align_layers_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_animationplay_OBJECTS = animationplay.$(OBJEXT) animationplay_OBJECTS = $(am_animationplay_OBJECTS) -animationplay_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -animationplay_LDFLAGS = +animationplay_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_animoptimize_OBJECTS = animoptimize.$(OBJEXT) animoptimize_OBJECTS = $(am_animoptimize_OBJECTS) -animoptimize_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -animoptimize_LDFLAGS = +animoptimize_DEPENDENCIES = $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_apply_lens_OBJECTS = apply_lens.$(OBJEXT) apply_lens_OBJECTS = $(am_apply_lens_OBJECTS) -apply_lens_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -apply_lens_LDFLAGS = +apply_lens_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_autocrop_OBJECTS = autocrop.$(OBJEXT) autocrop_OBJECTS = $(am_autocrop_OBJECTS) -autocrop_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -autocrop_LDFLAGS = +autocrop_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_autostretch_hsv_OBJECTS = autostretch_hsv.$(OBJEXT) autostretch_hsv_OBJECTS = $(am_autostretch_hsv_OBJECTS) -autostretch_hsv_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -autostretch_hsv_LDFLAGS = +autostretch_hsv_DEPENDENCIES = $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_blinds_OBJECTS = blinds.$(OBJEXT) blinds_OBJECTS = $(am_blinds_OBJECTS) -blinds_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -blinds_LDFLAGS = +blinds_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_blur_OBJECTS = blur.$(OBJEXT) blur_OBJECTS = $(am_blur_OBJECTS) -blur_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -blur_LDFLAGS = +blur_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_borderaverage_OBJECTS = borderaverage.$(OBJEXT) borderaverage_OBJECTS = $(am_borderaverage_OBJECTS) -borderaverage_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -borderaverage_LDFLAGS = +borderaverage_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_bumpmap_OBJECTS = bumpmap.$(OBJEXT) bumpmap_OBJECTS = $(am_bumpmap_OBJECTS) -bumpmap_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -bumpmap_LDFLAGS = +bumpmap_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_c_astretch_OBJECTS = c_astretch.$(OBJEXT) c_astretch_OBJECTS = $(am_c_astretch_OBJECTS) -c_astretch_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -c_astretch_LDFLAGS = +c_astretch_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_cartoon_OBJECTS = cartoon.$(OBJEXT) cartoon_OBJECTS = $(am_cartoon_OBJECTS) -cartoon_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -cartoon_LDFLAGS = +cartoon_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_ccanalyze_OBJECTS = ccanalyze.$(OBJEXT) ccanalyze_OBJECTS = $(am_ccanalyze_OBJECTS) -ccanalyze_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -ccanalyze_LDFLAGS = +ccanalyze_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_channel_mixer_OBJECTS = channel_mixer.$(OBJEXT) channel_mixer_OBJECTS = $(am_channel_mixer_OBJECTS) -channel_mixer_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -channel_mixer_LDFLAGS = +channel_mixer_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_checkerboard_OBJECTS = checkerboard.$(OBJEXT) checkerboard_OBJECTS = $(am_checkerboard_OBJECTS) -checkerboard_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -checkerboard_LDFLAGS = +checkerboard_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_color_enhance_OBJECTS = color_enhance.$(OBJEXT) color_enhance_OBJECTS = $(am_color_enhance_OBJECTS) -color_enhance_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -color_enhance_LDFLAGS = +color_enhance_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_colorify_OBJECTS = colorify.$(OBJEXT) colorify_OBJECTS = $(am_colorify_OBJECTS) -colorify_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -colorify_LDFLAGS = +colorify_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_colortoalpha_OBJECTS = colortoalpha.$(OBJEXT) colortoalpha_OBJECTS = $(am_colortoalpha_OBJECTS) -colortoalpha_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -colortoalpha_LDFLAGS = +colortoalpha_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_compose_OBJECTS = compose.$(OBJEXT) compose_OBJECTS = $(am_compose_OBJECTS) -compose_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -compose_LDFLAGS = +compose_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_compressor_OBJECTS = compressor.$(OBJEXT) compressor_OBJECTS = $(am_compressor_OBJECTS) -compressor_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -compressor_LDFLAGS = +compressor_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_convmatrix_OBJECTS = convmatrix.$(OBJEXT) convmatrix_OBJECTS = $(am_convmatrix_OBJECTS) -convmatrix_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -convmatrix_LDFLAGS = +convmatrix_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_csource_OBJECTS = csource.$(OBJEXT) csource_OBJECTS = $(am_csource_OBJECTS) -csource_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -csource_LDFLAGS = +csource_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_cubism_OBJECTS = cubism.$(OBJEXT) cubism_OBJECTS = $(am_cubism_OBJECTS) -cubism_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -cubism_LDFLAGS = +cubism_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_curve_bend_OBJECTS = curve_bend.$(OBJEXT) curve_bend_OBJECTS = $(am_curve_bend_OBJECTS) -curve_bend_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -curve_bend_LDFLAGS = +curve_bend_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_decompose_OBJECTS = decompose.$(OBJEXT) decompose_OBJECTS = $(am_decompose_OBJECTS) -decompose_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -decompose_LDFLAGS = +decompose_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_deinterlace_OBJECTS = deinterlace.$(OBJEXT) deinterlace_OBJECTS = $(am_deinterlace_OBJECTS) -deinterlace_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -deinterlace_LDFLAGS = +deinterlace_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_depthmerge_OBJECTS = depthmerge.$(OBJEXT) depthmerge_OBJECTS = $(am_depthmerge_OBJECTS) -depthmerge_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -depthmerge_LDFLAGS = +depthmerge_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_despeckle_OBJECTS = despeckle.$(OBJEXT) despeckle_OBJECTS = $(am_despeckle_OBJECTS) -despeckle_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -despeckle_LDFLAGS = +despeckle_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_destripe_OBJECTS = destripe.$(OBJEXT) destripe_OBJECTS = $(am_destripe_OBJECTS) -destripe_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -destripe_LDFLAGS = +destripe_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_dicom_OBJECTS = dicom.$(OBJEXT) dicom_OBJECTS = $(am_dicom_OBJECTS) -dicom_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -dicom_LDFLAGS = +dicom_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_diffraction_OBJECTS = diffraction.$(OBJEXT) diffraction_OBJECTS = $(am_diffraction_OBJECTS) -diffraction_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -diffraction_LDFLAGS = +diffraction_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_displace_OBJECTS = displace.$(OBJEXT) displace_OBJECTS = $(am_displace_OBJECTS) -displace_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -displace_LDFLAGS = +displace_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_dog_OBJECTS = dog.$(OBJEXT) dog_OBJECTS = $(am_dog_OBJECTS) -dog_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -dog_LDFLAGS = +dog_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_edge_OBJECTS = edge.$(OBJEXT) edge_OBJECTS = $(am_edge_OBJECTS) -edge_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -edge_LDFLAGS = +edge_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_emboss_OBJECTS = emboss.$(OBJEXT) emboss_OBJECTS = $(am_emboss_OBJECTS) -emboss_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -emboss_LDFLAGS = +emboss_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_engrave_OBJECTS = engrave.$(OBJEXT) engrave_OBJECTS = $(am_engrave_OBJECTS) -engrave_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -engrave_LDFLAGS = +engrave_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_exchange_OBJECTS = exchange.$(OBJEXT) exchange_OBJECTS = $(am_exchange_OBJECTS) -exchange_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -exchange_LDFLAGS = +exchange_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_film_OBJECTS = film.$(OBJEXT) film_OBJECTS = $(am_film_OBJECTS) -film_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -film_LDFLAGS = +film_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_flarefx_OBJECTS = flarefx.$(OBJEXT) flarefx_OBJECTS = $(am_flarefx_OBJECTS) -flarefx_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -flarefx_LDFLAGS = +flarefx_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_fp_OBJECTS = fp.$(OBJEXT) fp_OBJECTS = $(am_fp_OBJECTS) -fp_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -fp_LDFLAGS = +fp_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_fractaltrace_OBJECTS = fractaltrace.$(OBJEXT) fractaltrace_OBJECTS = $(am_fractaltrace_OBJECTS) -fractaltrace_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -fractaltrace_LDFLAGS = +fractaltrace_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_gauss_OBJECTS = gauss.$(OBJEXT) gauss_OBJECTS = $(am_gauss_OBJECTS) -gauss_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gauss_LDFLAGS = +gauss_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gbr_OBJECTS = gbr.$(OBJEXT) gbr_OBJECTS = $(am_gbr_OBJECTS) -gbr_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gbr_LDFLAGS = +gbr_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gee_OBJECTS = gee.$(OBJEXT) gee_OBJECTS = $(am_gee_OBJECTS) -gee_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gee_LDFLAGS = +gee_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gee_zoom_OBJECTS = gee_zoom.$(OBJEXT) gee_zoom_OBJECTS = $(am_gee_zoom_OBJECTS) -gee_zoom_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gee_zoom_LDFLAGS = +gee_zoom_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gif_OBJECTS = gif.$(OBJEXT) gif_OBJECTS = $(am_gif_OBJECTS) -gif_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gif_LDFLAGS = +gif_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gifload_OBJECTS = gifload.$(OBJEXT) gifload_OBJECTS = $(am_gifload_OBJECTS) -gifload_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gifload_LDFLAGS = +gifload_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gih_OBJECTS = gih.$(OBJEXT) gih_OBJECTS = $(am_gih_OBJECTS) -gih_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gih_LDFLAGS = +gih_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_glasstile_OBJECTS = glasstile.$(OBJEXT) glasstile_OBJECTS = $(am_glasstile_OBJECTS) -glasstile_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -glasstile_LDFLAGS = +glasstile_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_glob_OBJECTS = glob.$(OBJEXT) glob_OBJECTS = $(am_glob_OBJECTS) -glob_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -glob_LDFLAGS = +glob_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gqbist_OBJECTS = gqbist.$(OBJEXT) gqbist_OBJECTS = $(am_gqbist_OBJECTS) -gqbist_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gqbist_LDFLAGS = +gqbist_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gradmap_OBJECTS = gradmap.$(OBJEXT) gradmap_OBJECTS = $(am_gradmap_OBJECTS) -gradmap_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gradmap_LDFLAGS = +gradmap_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_grid_OBJECTS = grid.$(OBJEXT) grid_OBJECTS = $(am_grid_OBJECTS) -grid_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -grid_LDFLAGS = +grid_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_gtm_OBJECTS = gtm.$(OBJEXT) gtm_OBJECTS = $(am_gtm_OBJECTS) -gtm_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gtm_LDFLAGS = +gtm_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_guillotine_OBJECTS = guillotine.$(OBJEXT) guillotine_OBJECTS = $(am_guillotine_OBJECTS) -guillotine_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -guillotine_LDFLAGS = +guillotine_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_header_OBJECTS = header.$(OBJEXT) header_OBJECTS = $(am_header_OBJECTS) -header_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -header_LDFLAGS = +header_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_hot_OBJECTS = hot.$(OBJEXT) hot_OBJECTS = $(am_hot_OBJECTS) -hot_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -hot_LDFLAGS = +hot_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_illusion_OBJECTS = illusion.$(OBJEXT) illusion_OBJECTS = $(am_illusion_OBJECTS) -illusion_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -illusion_LDFLAGS = +illusion_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_iwarp_OBJECTS = iwarp.$(OBJEXT) iwarp_OBJECTS = $(am_iwarp_OBJECTS) -iwarp_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -iwarp_LDFLAGS = +iwarp_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_jigsaw_OBJECTS = jigsaw.$(OBJEXT) jigsaw_OBJECTS = $(am_jigsaw_OBJECTS) -jigsaw_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -jigsaw_LDFLAGS = +jigsaw_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_jpeg_OBJECTS = jpeg.$(OBJEXT) jpeg_OBJECTS = $(am_jpeg_OBJECTS) -jpeg_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -jpeg_LDFLAGS = +jpeg_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_laplace_OBJECTS = laplace.$(OBJEXT) laplace_OBJECTS = $(am_laplace_OBJECTS) -laplace_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -laplace_LDFLAGS = +laplace_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_lic_OBJECTS = lic.$(OBJEXT) lic_OBJECTS = $(am_lic_OBJECTS) -lic_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -lic_LDFLAGS = +lic_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_mail_OBJECTS = mail.$(OBJEXT) mail_OBJECTS = $(am_mail_OBJECTS) -mail_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -mail_LDFLAGS = +mail_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_mapcolor_OBJECTS = mapcolor.$(OBJEXT) mapcolor_OBJECTS = $(am_mapcolor_OBJECTS) -mapcolor_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -mapcolor_LDFLAGS = +mapcolor_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_max_rgb_OBJECTS = max_rgb.$(OBJEXT) max_rgb_OBJECTS = $(am_max_rgb_OBJECTS) -max_rgb_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -max_rgb_LDFLAGS = +max_rgb_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_mblur_OBJECTS = mblur.$(OBJEXT) mblur_OBJECTS = $(am_mblur_OBJECTS) -mblur_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -mblur_LDFLAGS = +mblur_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_mng_OBJECTS = mng.$(OBJEXT) mng_OBJECTS = $(am_mng_OBJECTS) -mng_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -mng_LDFLAGS = +mng_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_mosaic_OBJECTS = mosaic.$(OBJEXT) mosaic_OBJECTS = $(am_mosaic_OBJECTS) -mosaic_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -mosaic_LDFLAGS = +mosaic_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_neon_OBJECTS = neon.$(OBJEXT) neon_OBJECTS = $(am_neon_OBJECTS) -neon_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -neon_LDFLAGS = +neon_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_newsprint_OBJECTS = newsprint.$(OBJEXT) newsprint_OBJECTS = $(am_newsprint_OBJECTS) -newsprint_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -newsprint_LDFLAGS = +newsprint_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_nlfilt_OBJECTS = nlfilt.$(OBJEXT) nlfilt_OBJECTS = $(am_nlfilt_OBJECTS) -nlfilt_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -nlfilt_LDFLAGS = +nlfilt_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_noisify_OBJECTS = noisify.$(OBJEXT) noisify_OBJECTS = $(am_noisify_OBJECTS) -noisify_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -noisify_LDFLAGS = +noisify_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_normalize_OBJECTS = normalize.$(OBJEXT) normalize_OBJECTS = $(am_normalize_OBJECTS) -normalize_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -normalize_LDFLAGS = +normalize_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_nova_OBJECTS = nova.$(OBJEXT) nova_OBJECTS = $(am_nova_OBJECTS) -nova_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -nova_LDFLAGS = +nova_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_oilify_OBJECTS = oilify.$(OBJEXT) oilify_OBJECTS = $(am_oilify_OBJECTS) -oilify_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -oilify_LDFLAGS = +oilify_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_papertile_OBJECTS = papertile.$(OBJEXT) papertile_OBJECTS = $(am_papertile_OBJECTS) -papertile_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -papertile_LDFLAGS = +papertile_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_pat_OBJECTS = pat.$(OBJEXT) pat_OBJECTS = $(am_pat_OBJECTS) -pat_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -pat_LDFLAGS = +pat_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_pcx_OBJECTS = pcx.$(OBJEXT) pcx_OBJECTS = $(am_pcx_OBJECTS) -pcx_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -pcx_LDFLAGS = +pcx_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_photocopy_OBJECTS = photocopy.$(OBJEXT) photocopy_OBJECTS = $(am_photocopy_OBJECTS) -photocopy_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -photocopy_LDFLAGS = +photocopy_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_pix_OBJECTS = pix.$(OBJEXT) pix_OBJECTS = $(am_pix_OBJECTS) -pix_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -pix_LDFLAGS = +pix_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_pixelize_OBJECTS = pixelize.$(OBJEXT) pixelize_OBJECTS = $(am_pixelize_OBJECTS) -pixelize_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -pixelize_LDFLAGS = +pixelize_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_plasma_OBJECTS = plasma.$(OBJEXT) plasma_OBJECTS = $(am_plasma_OBJECTS) -plasma_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -plasma_LDFLAGS = +plasma_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_png_OBJECTS = png.$(OBJEXT) png_OBJECTS = $(am_png_OBJECTS) -png_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -png_LDFLAGS = +png_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_pnm_OBJECTS = pnm.$(OBJEXT) pnm_OBJECTS = $(am_pnm_OBJECTS) -pnm_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -pnm_LDFLAGS = +pnm_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_polar_OBJECTS = polar.$(OBJEXT) polar_OBJECTS = $(am_polar_OBJECTS) -polar_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -polar_LDFLAGS = +polar_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_postscript_OBJECTS = postscript.$(OBJEXT) postscript_OBJECTS = $(am_postscript_OBJECTS) -postscript_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -postscript_LDFLAGS = +postscript_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_psd_OBJECTS = psd.$(OBJEXT) psd_OBJECTS = $(am_psd_OBJECTS) -psd_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -psd_LDFLAGS = +psd_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_psd_save_OBJECTS = psd_save.$(OBJEXT) psd_save_OBJECTS = $(am_psd_save_OBJECTS) -psd_save_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -psd_save_LDFLAGS = +psd_save_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_psp_OBJECTS = psp.$(OBJEXT) psp_OBJECTS = $(am_psp_OBJECTS) -psp_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -psp_LDFLAGS = +psp_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_randomize_OBJECTS = randomize.$(OBJEXT) randomize_OBJECTS = $(am_randomize_OBJECTS) -randomize_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -randomize_LDFLAGS = +randomize_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_raw_OBJECTS = raw.$(OBJEXT) raw_OBJECTS = $(am_raw_OBJECTS) -raw_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -raw_LDFLAGS = +raw_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_retinex_OBJECTS = retinex.$(OBJEXT) retinex_OBJECTS = $(am_retinex_OBJECTS) -retinex_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -retinex_LDFLAGS = +retinex_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_ripple_OBJECTS = ripple.$(OBJEXT) ripple_OBJECTS = $(am_ripple_OBJECTS) -ripple_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -ripple_LDFLAGS = +ripple_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_rotate_OBJECTS = rotate.$(OBJEXT) rotate_OBJECTS = $(am_rotate_OBJECTS) -rotate_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -rotate_LDFLAGS = +rotate_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_sample_colorize_OBJECTS = sample_colorize.$(OBJEXT) sample_colorize_OBJECTS = $(am_sample_colorize_OBJECTS) -sample_colorize_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sample_colorize_LDFLAGS = +sample_colorize_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_scatter_hsv_OBJECTS = scatter_hsv.$(OBJEXT) scatter_hsv_OBJECTS = $(am_scatter_hsv_OBJECTS) -scatter_hsv_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -scatter_hsv_LDFLAGS = +scatter_hsv_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_screenshot_OBJECTS = screenshot.$(OBJEXT) screenshot_OBJECTS = $(am_screenshot_OBJECTS) -screenshot_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -screenshot_LDFLAGS = +screenshot_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_sel_gauss_OBJECTS = sel_gauss.$(OBJEXT) sel_gauss_OBJECTS = $(am_sel_gauss_OBJECTS) -sel_gauss_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sel_gauss_LDFLAGS = +sel_gauss_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_semiflatten_OBJECTS = semiflatten.$(OBJEXT) semiflatten_OBJECTS = $(am_semiflatten_OBJECTS) -semiflatten_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -semiflatten_LDFLAGS = +semiflatten_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_sharpen_OBJECTS = sharpen.$(OBJEXT) sharpen_OBJECTS = $(am_sharpen_OBJECTS) -sharpen_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sharpen_LDFLAGS = +sharpen_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_shift_OBJECTS = shift.$(OBJEXT) shift_OBJECTS = $(am_shift_OBJECTS) -shift_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -shift_LDFLAGS = +shift_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_sinus_OBJECTS = sinus.$(OBJEXT) sinus_OBJECTS = $(am_sinus_OBJECTS) -sinus_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sinus_LDFLAGS = +sinus_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_smooth_palette_OBJECTS = smooth_palette.$(OBJEXT) smooth_palette_OBJECTS = $(am_smooth_palette_OBJECTS) -smooth_palette_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -smooth_palette_LDFLAGS = +smooth_palette_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_snoise_OBJECTS = snoise.$(OBJEXT) snoise_OBJECTS = $(am_snoise_OBJECTS) -snoise_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -snoise_LDFLAGS = +snoise_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_sobel_OBJECTS = sobel.$(OBJEXT) sobel_OBJECTS = $(am_sobel_OBJECTS) -sobel_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sobel_LDFLAGS = +sobel_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_softglow_OBJECTS = softglow.$(OBJEXT) softglow_OBJECTS = $(am_softglow_OBJECTS) -softglow_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -softglow_LDFLAGS = +softglow_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_sparkle_OBJECTS = sparkle.$(OBJEXT) sparkle_OBJECTS = $(am_sparkle_OBJECTS) -sparkle_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sparkle_LDFLAGS = +sparkle_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_spheredesigner_OBJECTS = spheredesigner.$(OBJEXT) spheredesigner_OBJECTS = $(am_spheredesigner_OBJECTS) -spheredesigner_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -spheredesigner_LDFLAGS = +spheredesigner_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_spread_OBJECTS = spread.$(OBJEXT) spread_OBJECTS = $(am_spread_OBJECTS) -spread_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -spread_LDFLAGS = +spread_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_struc_OBJECTS = struc.$(OBJEXT) struc_OBJECTS = $(am_struc_OBJECTS) -struc_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -struc_LDFLAGS = +struc_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_sunras_OBJECTS = sunras.$(OBJEXT) sunras_OBJECTS = $(am_sunras_OBJECTS) -sunras_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sunras_LDFLAGS = +sunras_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_svg_OBJECTS = svg.$(OBJEXT) svg_OBJECTS = $(am_svg_OBJECTS) -svg_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -svg_LDFLAGS = +svg_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_tga_OBJECTS = tga.$(OBJEXT) tga_OBJECTS = $(am_tga_OBJECTS) -tga_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -tga_LDFLAGS = +tga_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_threshold_alpha_OBJECTS = threshold_alpha.$(OBJEXT) threshold_alpha_OBJECTS = $(am_threshold_alpha_OBJECTS) -threshold_alpha_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -threshold_alpha_LDFLAGS = +threshold_alpha_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_tiff_OBJECTS = tiff.$(OBJEXT) tiff_OBJECTS = $(am_tiff_OBJECTS) -tiff_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -tiff_LDFLAGS = +tiff_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_tile_OBJECTS = tile.$(OBJEXT) tile_OBJECTS = $(am_tile_OBJECTS) -tile_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -tile_LDFLAGS = +tile_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_tileit_OBJECTS = tileit.$(OBJEXT) tileit_OBJECTS = $(am_tileit_OBJECTS) -tileit_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -tileit_LDFLAGS = +tileit_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_tiler_OBJECTS = tiler.$(OBJEXT) tiler_OBJECTS = $(am_tiler_OBJECTS) -tiler_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -tiler_LDFLAGS = +tiler_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_uniteditor_OBJECTS = uniteditor.$(OBJEXT) uniteditor_OBJECTS = $(am_uniteditor_OBJECTS) -uniteditor_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -uniteditor_LDFLAGS = +uniteditor_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_unsharp_OBJECTS = unsharp.$(OBJEXT) unsharp_OBJECTS = $(am_unsharp_OBJECTS) -unsharp_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -unsharp_LDFLAGS = +unsharp_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_url_OBJECTS = url.$(OBJEXT) url_OBJECTS = $(am_url_OBJECTS) -url_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -url_LDFLAGS = +url_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_video_OBJECTS = video.$(OBJEXT) video_OBJECTS = $(am_video_OBJECTS) -video_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -video_LDFLAGS = +video_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_vinvert_OBJECTS = vinvert.$(OBJEXT) vinvert_OBJECTS = $(am_vinvert_OBJECTS) -vinvert_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -vinvert_LDFLAGS = +vinvert_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_vpropagate_OBJECTS = vpropagate.$(OBJEXT) vpropagate_OBJECTS = $(am_vpropagate_OBJECTS) -vpropagate_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -vpropagate_LDFLAGS = +vpropagate_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_warp_OBJECTS = warp.$(OBJEXT) warp_OBJECTS = $(am_warp_OBJECTS) -warp_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -warp_LDFLAGS = +warp_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_waves_OBJECTS = waves.$(OBJEXT) waves_OBJECTS = $(am_waves_OBJECTS) -waves_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -waves_LDFLAGS = +waves_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_webbrowser_OBJECTS = webbrowser.$(OBJEXT) webbrowser_OBJECTS = $(am_webbrowser_OBJECTS) -webbrowser_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -webbrowser_LDFLAGS = +webbrowser_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_whirlpinch_OBJECTS = whirlpinch.$(OBJEXT) whirlpinch_OBJECTS = $(am_whirlpinch_OBJECTS) -whirlpinch_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -whirlpinch_LDFLAGS = +whirlpinch_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_winclipboard_OBJECTS = winclipboard.$(OBJEXT) winclipboard_OBJECTS = $(am_winclipboard_OBJECTS) -winclipboard_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -winclipboard_LDFLAGS = +winclipboard_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_wind_OBJECTS = wind.$(OBJEXT) wind_OBJECTS = $(am_wind_OBJECTS) -wind_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -wind_LDFLAGS = +wind_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_winprint_OBJECTS = winprint.$(OBJEXT) winprint_OBJECTS = $(am_winprint_OBJECTS) -winprint_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -winprint_LDFLAGS = +winprint_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_wmf_OBJECTS = wmf.$(OBJEXT) wmf_OBJECTS = $(am_wmf_OBJECTS) -wmf_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -wmf_LDFLAGS = +wmf_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_xbm_OBJECTS = xbm.$(OBJEXT) xbm_OBJECTS = $(am_xbm_OBJECTS) -xbm_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -xbm_LDFLAGS = +xbm_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_xpm_OBJECTS = xpm.$(OBJEXT) xpm_OBJECTS = $(am_xpm_OBJECTS) -xpm_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -xpm_LDFLAGS = +xpm_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) am_xwd_OBJECTS = xwd.$(OBJEXT) xwd_OBJECTS = $(am_xwd_OBJECTS) -xwd_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -xwd_LDFLAGS = +xwd_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) am_zealouscrop_OBJECTS = zealouscrop.$(OBJEXT) zealouscrop_OBJECTS = $(am_zealouscrop_OBJECTS) -zealouscrop_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -zealouscrop_LDFLAGS = +zealouscrop_DEPENDENCIES = $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(AlienMap2_SOURCES) $(CEL_SOURCES) $(CML_explorer_SOURCES) \ + $(aa_SOURCES) $(align_layers_SOURCES) $(animationplay_SOURCES) \ + $(animoptimize_SOURCES) $(apply_lens_SOURCES) \ + $(autocrop_SOURCES) $(autostretch_hsv_SOURCES) \ + $(blinds_SOURCES) $(blur_SOURCES) $(borderaverage_SOURCES) \ + $(bumpmap_SOURCES) $(c_astretch_SOURCES) $(cartoon_SOURCES) \ + $(ccanalyze_SOURCES) $(channel_mixer_SOURCES) \ + $(checkerboard_SOURCES) $(color_enhance_SOURCES) \ + $(colorify_SOURCES) $(colortoalpha_SOURCES) $(compose_SOURCES) \ + $(compressor_SOURCES) $(convmatrix_SOURCES) $(csource_SOURCES) \ + $(cubism_SOURCES) $(curve_bend_SOURCES) $(decompose_SOURCES) \ + $(deinterlace_SOURCES) $(depthmerge_SOURCES) \ + $(despeckle_SOURCES) $(destripe_SOURCES) $(dicom_SOURCES) \ + $(diffraction_SOURCES) $(displace_SOURCES) $(dog_SOURCES) \ + $(edge_SOURCES) $(emboss_SOURCES) $(engrave_SOURCES) \ + $(exchange_SOURCES) $(film_SOURCES) $(flarefx_SOURCES) \ + $(fp_SOURCES) $(fractaltrace_SOURCES) $(gauss_SOURCES) \ + $(gbr_SOURCES) $(gee_SOURCES) $(gee_zoom_SOURCES) \ + $(gif_SOURCES) $(gifload_SOURCES) $(gih_SOURCES) \ + $(glasstile_SOURCES) $(glob_SOURCES) $(gqbist_SOURCES) \ + $(gradmap_SOURCES) $(grid_SOURCES) $(gtm_SOURCES) \ + $(guillotine_SOURCES) $(header_SOURCES) $(hot_SOURCES) \ + $(illusion_SOURCES) $(iwarp_SOURCES) $(jigsaw_SOURCES) \ + $(jpeg_SOURCES) $(laplace_SOURCES) $(lic_SOURCES) \ + $(mail_SOURCES) $(mapcolor_SOURCES) $(max_rgb_SOURCES) \ + $(mblur_SOURCES) $(mng_SOURCES) $(mosaic_SOURCES) \ + $(neon_SOURCES) $(newsprint_SOURCES) $(nlfilt_SOURCES) \ + $(noisify_SOURCES) $(normalize_SOURCES) $(nova_SOURCES) \ + $(oilify_SOURCES) $(papertile_SOURCES) $(pat_SOURCES) \ + $(pcx_SOURCES) $(photocopy_SOURCES) $(pix_SOURCES) \ + $(pixelize_SOURCES) $(plasma_SOURCES) $(png_SOURCES) \ + $(pnm_SOURCES) $(polar_SOURCES) $(postscript_SOURCES) \ + $(psd_SOURCES) $(psd_save_SOURCES) $(psp_SOURCES) \ + $(randomize_SOURCES) $(raw_SOURCES) $(retinex_SOURCES) \ + $(ripple_SOURCES) $(rotate_SOURCES) $(sample_colorize_SOURCES) \ + $(scatter_hsv_SOURCES) $(screenshot_SOURCES) \ + $(sel_gauss_SOURCES) $(semiflatten_SOURCES) $(sharpen_SOURCES) \ + $(shift_SOURCES) $(sinus_SOURCES) $(smooth_palette_SOURCES) \ + $(snoise_SOURCES) $(sobel_SOURCES) $(softglow_SOURCES) \ + $(sparkle_SOURCES) $(spheredesigner_SOURCES) $(spread_SOURCES) \ + $(struc_SOURCES) $(sunras_SOURCES) $(svg_SOURCES) \ + $(tga_SOURCES) $(threshold_alpha_SOURCES) $(tiff_SOURCES) \ + $(tile_SOURCES) $(tileit_SOURCES) $(tiler_SOURCES) \ + $(uniteditor_SOURCES) $(unsharp_SOURCES) $(url_SOURCES) \ + $(video_SOURCES) $(vinvert_SOURCES) $(vpropagate_SOURCES) \ + $(warp_SOURCES) $(waves_SOURCES) $(webbrowser_SOURCES) \ + $(whirlpinch_SOURCES) $(winclipboard_SOURCES) $(wind_SOURCES) \ + $(winprint_SOURCES) $(wmf_SOURCES) $(xbm_SOURCES) \ + $(xpm_SOURCES) $(xwd_SOURCES) $(zealouscrop_SOURCES) +DIST_SOURCES = $(AlienMap2_SOURCES) $(CEL_SOURCES) \ + $(CML_explorer_SOURCES) $(aa_SOURCES) $(align_layers_SOURCES) \ + $(animationplay_SOURCES) $(animoptimize_SOURCES) \ + $(apply_lens_SOURCES) $(autocrop_SOURCES) \ + $(autostretch_hsv_SOURCES) $(blinds_SOURCES) $(blur_SOURCES) \ + $(borderaverage_SOURCES) $(bumpmap_SOURCES) \ + $(c_astretch_SOURCES) $(cartoon_SOURCES) $(ccanalyze_SOURCES) \ + $(channel_mixer_SOURCES) $(checkerboard_SOURCES) \ + $(color_enhance_SOURCES) $(colorify_SOURCES) \ + $(colortoalpha_SOURCES) $(compose_SOURCES) \ + $(compressor_SOURCES) $(convmatrix_SOURCES) $(csource_SOURCES) \ + $(cubism_SOURCES) $(curve_bend_SOURCES) $(decompose_SOURCES) \ + $(deinterlace_SOURCES) $(depthmerge_SOURCES) \ + $(despeckle_SOURCES) $(destripe_SOURCES) $(dicom_SOURCES) \ + $(diffraction_SOURCES) $(displace_SOURCES) $(dog_SOURCES) \ + $(edge_SOURCES) $(emboss_SOURCES) $(engrave_SOURCES) \ + $(exchange_SOURCES) $(film_SOURCES) $(flarefx_SOURCES) \ + $(fp_SOURCES) $(fractaltrace_SOURCES) $(gauss_SOURCES) \ + $(gbr_SOURCES) $(gee_SOURCES) $(gee_zoom_SOURCES) \ + $(gif_SOURCES) $(gifload_SOURCES) $(gih_SOURCES) \ + $(glasstile_SOURCES) $(glob_SOURCES) $(gqbist_SOURCES) \ + $(gradmap_SOURCES) $(grid_SOURCES) $(gtm_SOURCES) \ + $(guillotine_SOURCES) $(header_SOURCES) $(hot_SOURCES) \ + $(illusion_SOURCES) $(iwarp_SOURCES) $(jigsaw_SOURCES) \ + $(jpeg_SOURCES) $(laplace_SOURCES) $(lic_SOURCES) \ + $(mail_SOURCES) $(mapcolor_SOURCES) $(max_rgb_SOURCES) \ + $(mblur_SOURCES) $(mng_SOURCES) $(mosaic_SOURCES) \ + $(neon_SOURCES) $(newsprint_SOURCES) $(nlfilt_SOURCES) \ + $(noisify_SOURCES) $(normalize_SOURCES) $(nova_SOURCES) \ + $(oilify_SOURCES) $(papertile_SOURCES) $(pat_SOURCES) \ + $(pcx_SOURCES) $(photocopy_SOURCES) $(pix_SOURCES) \ + $(pixelize_SOURCES) $(plasma_SOURCES) $(png_SOURCES) \ + $(pnm_SOURCES) $(polar_SOURCES) $(postscript_SOURCES) \ + $(psd_SOURCES) $(psd_save_SOURCES) $(psp_SOURCES) \ + $(randomize_SOURCES) $(raw_SOURCES) $(retinex_SOURCES) \ + $(ripple_SOURCES) $(rotate_SOURCES) $(sample_colorize_SOURCES) \ + $(scatter_hsv_SOURCES) $(screenshot_SOURCES) \ + $(sel_gauss_SOURCES) $(semiflatten_SOURCES) $(sharpen_SOURCES) \ + $(shift_SOURCES) $(sinus_SOURCES) $(smooth_palette_SOURCES) \ + $(snoise_SOURCES) $(sobel_SOURCES) $(softglow_SOURCES) \ + $(sparkle_SOURCES) $(spheredesigner_SOURCES) $(spread_SOURCES) \ + $(struc_SOURCES) $(sunras_SOURCES) $(svg_SOURCES) \ + $(tga_SOURCES) $(threshold_alpha_SOURCES) $(tiff_SOURCES) \ + $(tile_SOURCES) $(tileit_SOURCES) $(tiler_SOURCES) \ + $(uniteditor_SOURCES) $(unsharp_SOURCES) $(url_SOURCES) \ + $(video_SOURCES) $(vinvert_SOURCES) $(vpropagate_SOURCES) \ + $(warp_SOURCES) $(waves_SOURCES) $(webbrowser_SOURCES) \ + $(whirlpinch_SOURCES) $(winclipboard_SOURCES) $(wind_SOURCES) \ + $(winprint_SOURCES) $(wmf_SOURCES) $(xbm_SOURCES) \ + $(xpm_SOURCES) $(xwd_SOURCES) $(zealouscrop_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +AA = @AA@ +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +ALSA_CFLAGS = @ALSA_CFLAGS@ +ALSA_LIBS = @ALSA_LIBS@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +BUILD_HELPBROWSER_FALSE = @BUILD_HELPBROWSER_FALSE@ +BUILD_HELPBROWSER_TRUE = @BUILD_HELPBROWSER_TRUE@ +BUILD_PRINT_FALSE = @BUILD_PRINT_FALSE@ +BUILD_PRINT_TRUE = @BUILD_PRINT_TRUE@ +BUILD_PYTHON_FALSE = @BUILD_PYTHON_FALSE@ +BUILD_PYTHON_TRUE = @BUILD_PYTHON_TRUE@ +BUILD_XJT_FALSE = @BUILD_XJT_FALSE@ +BUILD_XJT_TRUE = @BUILD_XJT_TRUE@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCAS = @CCAS@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFAULT_BINARY_FALSE = @DEFAULT_BINARY_FALSE@ +DEFAULT_BINARY_TRUE = @DEFAULT_BINARY_TRUE@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DESKTOP_DATADIR = @DESKTOP_DATADIR@ +DESKTOP_DATADIR_FALSE = @DESKTOP_DATADIR_FALSE@ +DESKTOP_DATADIR_TRUE = @DESKTOP_DATADIR_TRUE@ +DLLTOOL = @DLLTOOL@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_GIMP_CONSOLE_FALSE = @ENABLE_GIMP_CONSOLE_FALSE@ +ENABLE_GIMP_CONSOLE_TRUE = @ENABLE_GIMP_CONSOLE_TRUE@ +ENABLE_GTK_DOC_FALSE = @ENABLE_GTK_DOC_FALSE@ +ENABLE_GTK_DOC_TRUE = @ENABLE_GTK_DOC_TRUE@ +EXEEXT = @EXEEXT@ +EXIF_CFLAGS = @EXIF_CFLAGS@ +EXIF_LIBS = @EXIF_LIBS@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +FONTCONFIG_CFLAGS = @FONTCONFIG_CFLAGS@ +FONTCONFIG_LIBS = @FONTCONFIG_LIBS@ +FONTCONFIG_REQUIRED_VERSION = @FONTCONFIG_REQUIRED_VERSION@ +FREETYPE_CONFIG = @FREETYPE_CONFIG@ +FREETYPE_LIBS = @FREETYPE_LIBS@ +GDK_PIXBUF_CFLAGS = @GDK_PIXBUF_CFLAGS@ +GDK_PIXBUF_CSOURCE = @GDK_PIXBUF_CSOURCE@ +GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@ +GDK_PIXBUF_REQUIRED_VERSION = @GDK_PIXBUF_REQUIRED_VERSION@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GIMPINSTALL = @GIMPINSTALL@ +GIMPPRINT_CFLAGS = @GIMPPRINT_CFLAGS@ +GIMPPRINT_CONFIG = @GIMPPRINT_CONFIG@ +GIMPPRINT_LIBS = @GIMPPRINT_LIBS@ +GIMPPRINT_REQUIRED_VERSION = @GIMPPRINT_REQUIRED_VERSION@ +GIMPPRINT_TOONEW_VERSION = @GIMPPRINT_TOONEW_VERSION@ +GIMP_API_VERSION = @GIMP_API_VERSION@ +GIMP_APP_VERSION = @GIMP_APP_VERSION@ +GIMP_BINARY_AGE = @GIMP_BINARY_AGE@ +GIMP_DATA_VERSION = @GIMP_DATA_VERSION@ +GIMP_DESKTOP_ICON = @GIMP_DESKTOP_ICON@ +GIMP_FULL_NAME = @GIMP_FULL_NAME@ +GIMP_INTERFACE_AGE = @GIMP_INTERFACE_AGE@ +GIMP_MAJOR_VERSION = @GIMP_MAJOR_VERSION@ +GIMP_MICRO_VERSION = @GIMP_MICRO_VERSION@ +GIMP_MINOR_VERSION = @GIMP_MINOR_VERSION@ +GIMP_MKENUMS = @GIMP_MKENUMS@ +GIMP_MODULES = @GIMP_MODULES@ +GIMP_MP_FLAGS = @GIMP_MP_FLAGS@ +GIMP_MP_LIBS = @GIMP_MP_LIBS@ +GIMP_PKGCONFIG_VERSION = @GIMP_PKGCONFIG_VERSION@ +GIMP_PLUGINS = @GIMP_PLUGINS@ +GIMP_PLUGIN_VERSION = @GIMP_PLUGIN_VERSION@ +GIMP_REAL_VERSION = @GIMP_REAL_VERSION@ +GIMP_REMOTE = @GIMP_REMOTE@ +GIMP_SYSCONF_VERSION = @GIMP_SYSCONF_VERSION@ +GIMP_THREAD_FLAGS = @GIMP_THREAD_FLAGS@ +GIMP_THREAD_LIBS = @GIMP_THREAD_LIBS@ +GIMP_TOOL_VERSION = @GIMP_TOOL_VERSION@ +GIMP_UNSTABLE = @GIMP_UNSTABLE@ +GIMP_USER_VERSION = @GIMP_USER_VERSION@ +GIMP_VERSION = @GIMP_VERSION@ +GLIB_CFLAGS = @GLIB_CFLAGS@ +GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ +GLIB_LIBS = @GLIB_LIBS@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GLIB_REQUIRED_VERSION = @GLIB_REQUIRED_VERSION@ +GMODULE_CFLAGS = @GMODULE_CFLAGS@ +GMODULE_LIBS = @GMODULE_LIBS@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GOBJECT_QUERY = @GOBJECT_QUERY@ +GTKDOC_REQUIRED_VERSION = @GTKDOC_REQUIRED_VERSION@ +GTKHTML2_CFLAGS = @GTKHTML2_CFLAGS@ +GTKHTML2_LIBS = @GTKHTML2_LIBS@ +GTKHTML2_REQUIRED_VERSION = @GTKHTML2_REQUIRED_VERSION@ +GTK_CFLAGS = @GTK_CFLAGS@ +GTK_DOC_USE_LIBTOOL_FALSE = @GTK_DOC_USE_LIBTOOL_FALSE@ +GTK_DOC_USE_LIBTOOL_TRUE = @GTK_DOC_USE_LIBTOOL_TRUE@ +GTK_LIBS = @GTK_LIBS@ +GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@ +HAVE_FINITE = @HAVE_FINITE@ +HAVE_GLIBC_REGEX = @HAVE_GLIBC_REGEX@ +HAVE_GLIBC_REGEX_FALSE = @HAVE_GLIBC_REGEX_FALSE@ +HAVE_GLIBC_REGEX_TRUE = @HAVE_GLIBC_REGEX_TRUE@ +HAVE_ISFINITE = @HAVE_ISFINITE@ +HAVE_LCMS_FALSE = @HAVE_LCMS_FALSE@ +HAVE_LCMS_TRUE = @HAVE_LCMS_TRUE@ +HAVE_LINUX_INPUT_FALSE = @HAVE_LINUX_INPUT_FALSE@ +HAVE_LINUX_INPUT_TRUE = @HAVE_LINUX_INPUT_TRUE@ +HAVE_MAC_TWAIN_FALSE = @HAVE_MAC_TWAIN_FALSE@ +HAVE_MAC_TWAIN_TRUE = @HAVE_MAC_TWAIN_TRUE@ +HAVE_WINDRES_FALSE = @HAVE_WINDRES_FALSE@ +HAVE_WINDRES_TRUE = @HAVE_WINDRES_TRUE@ +HAVE_XMLLINT_FALSE = @HAVE_XMLLINT_FALSE@ +HAVE_XMLLINT_TRUE = @HAVE_XMLLINT_TRUE@ +HAVE_XSLTPROC_FALSE = @HAVE_XSLTPROC_FALSE@ +HAVE_XSLTPROC_TRUE = @HAVE_XSLTPROC_TRUE@ +HTML_DIR = @HTML_DIR@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_ICONV = @INTLTOOL_ICONV@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_MSGFMT = @INTLTOOL_MSGFMT@ +INTLTOOL_MSGMERGE = @INTLTOOL_MSGMERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XGETTEXT = @INTLTOOL_XGETTEXT@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +JPEG = @JPEG@ +LCMS_LIBS = @LCMS_LIBS@ +LDFLAGS = @LDFLAGS@ +LIBAA = @LIBAA@ +LIBART_CFLAGS = @LIBART_CFLAGS@ +LIBART_LIBS = @LIBART_LIBS@ +LIBJPEG = @LIBJPEG@ +LIBMNG = @LIBMNG@ +LIBOBJS = @LIBOBJS@ +LIBPNG = @LIBPNG@ +LIBS = @LIBS@ +LIBSCREENSHOT = @LIBSCREENSHOT@ +LIBSVG = @LIBSVG@ +LIBTIFF = @LIBTIFF@ +LIBTOOL = @LIBTOOL@ +LIBWMF = @LIBWMF@ +LIBXMU = @LIBXMU@ +LIBXPM = @LIBXPM@ +LIBZ = @LIBZ@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +LT_CURRENT_MINUS_AGE = @LT_CURRENT_MINUS_AGE@ +LT_VERSION_INFO = @LT_VERSION_INFO@ +MAIL = @MAIL@ +MAINT = @MAINT@ +MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ +MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +MAKEINFO = @MAKEINFO@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ +MNG = @MNG@ +MSGFMT = @MSGFMT@ +MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ +MS_LIB_AVAILABLE_TRUE = @MS_LIB_AVAILABLE_TRUE@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OS_UNIX_FALSE = @OS_UNIX_FALSE@ +OS_UNIX_TRUE = @OS_UNIX_TRUE@ +OS_WIN32_FALSE = @OS_WIN32_FALSE@ +OS_WIN32_TRUE = @OS_WIN32_TRUE@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PANGOFT2_CFLAGS = @PANGOFT2_CFLAGS@ +PANGOFT2_LIBS = @PANGOFT2_LIBS@ +PANGOFT2_REQUIRED_VERSION = @PANGOFT2_REQUIRED_VERSION@ +PATHSEP = @PATHSEP@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PERL = @PERL@ +PKG_CONFIG = @PKG_CONFIG@ +PLATFORM_WIN32_FALSE = @PLATFORM_WIN32_FALSE@ +PLATFORM_WIN32_TRUE = @PLATFORM_WIN32_TRUE@ +PNG = @PNG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +PRINT_CFLAGS = @PRINT_CFLAGS@ +PRINT_LIBS = @PRINT_LIBS@ +PSP = @PSP@ +PYGIMP_EXTRA_CFLAGS = @PYGIMP_EXTRA_CFLAGS@ +PYGTK_CFLAGS = @PYGTK_CFLAGS@ +PYGTK_LIBS = @PYGTK_LIBS@ +PYTHON = @PYTHON@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_INCLUDES = @PYTHON_INCLUDES@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +RSVG_REQUIRED_VERSION = @RSVG_REQUIRED_VERSION@ +RT_LIBS = @RT_LIBS@ +SCREENSHOT = @SCREENSHOT@ +SENDMAIL = @SENDMAIL@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ +STATICLIBS_FALSE = @STATICLIBS_FALSE@ +STATICLIBS_TRUE = @STATICLIBS_TRUE@ +STRIP = @STRIP@ +SVG = @SVG@ +SVG_CFLAGS = @SVG_CFLAGS@ +SVG_LIBS = @SVG_LIBS@ +SYMPREFIX = @SYMPREFIX@ +TIFF = @TIFF@ +URL = @URL@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WINCLIPBOARD = @WINCLIPBOARD@ +WINDRES = @WINDRES@ +WINPRINT = @WINPRINT@ +WITH_PDBGEN_FALSE = @WITH_PDBGEN_FALSE@ +WITH_PDBGEN_TRUE = @WITH_PDBGEN_TRUE@ +WMF = @WMF@ +WMF_CFLAGS = @WMF_CFLAGS@ +WMF_CONFIG = @WMF_CONFIG@ +WMF_REQUIRED_VERSION = @WMF_REQUIRED_VERSION@ +XGETTEXT = @XGETTEXT@ +XMLLINT = @XMLLINT@ +XPM = @XPM@ +XSLTPROC = @XSLTPROC@ +X_CFLAGS = @X_CFLAGS@ +X_EXTRA_LIBS = @X_EXTRA_LIBS@ +X_LIBS = @X_LIBS@ +X_PRE_LIBS = @X_PRE_LIBS@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_AS = @ac_ct_AS@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DLLTOOL = @ac_ct_DLLTOOL@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_OBJDUMP = @ac_ct_OBJDUMP@ +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@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +gimpdatadir = @gimpdatadir@ +gimpdir = @gimpdir@ +gimpplugindir = @gimpplugindir@ +gimpsysconfdir = @gimpsysconfdir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = $(gimpplugindir)/plug-ins +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +ms_librarian = @ms_librarian@ +oldincludedir = @oldincludedir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +pyexecdir = @pyexecdir@ +pythondir = @pythondir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +@OS_WIN32_TRUE@mwindows = -mwindows +AM_LDFLAGS = $(mwindows) +EXTRA_DIST = \ + mkgen.pl \ + plugin-defs.pl + +INCLUDES = \ + -I$(top_srcdir) \ + $(GTK_CFLAGS) \ + $(EXIF_CFLAGS) \ + $(SVG_CFLAGS) \ + $(WMF_CFLAGS) \ + -I$(includedir) + +AlienMap2_SOURCES = \ + AlienMap2.c + +AlienMap2_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +CEL_SOURCES = \ + CEL.c + +CEL_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +CML_explorer_SOURCES = \ + CML_explorer.c + +CML_explorer_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +aa_SOURCES = \ + aa.c + +aa_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBAA) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +align_layers_SOURCES = \ + align_layers.c + +align_layers_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +animationplay_SOURCES = \ + animationplay.c + +animationplay_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +animoptimize_SOURCES = \ + animoptimize.c + +animoptimize_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +apply_lens_SOURCES = \ + apply_lens.c + +apply_lens_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +autocrop_SOURCES = \ + autocrop.c + +autocrop_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +autostretch_hsv_SOURCES = \ + autostretch_hsv.c + +autostretch_hsv_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +blinds_SOURCES = \ + blinds.c + +blinds_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +blur_SOURCES = \ + blur.c + +blur_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +borderaverage_SOURCES = \ + borderaverage.c + +borderaverage_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +bumpmap_SOURCES = \ + bumpmap.c + +bumpmap_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +c_astretch_SOURCES = \ + c_astretch.c + +c_astretch_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +cartoon_SOURCES = \ + cartoon.c + +cartoon_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +ccanalyze_SOURCES = \ + ccanalyze.c + +ccanalyze_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +channel_mixer_SOURCES = \ + channel_mixer.c + +channel_mixer_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +checkerboard_SOURCES = \ + checkerboard.c + +checkerboard_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +color_enhance_SOURCES = \ + color_enhance.c + +color_enhance_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +colorify_SOURCES = \ + colorify.c + +colorify_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +colortoalpha_SOURCES = \ + colortoalpha.c + +colortoalpha_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +compose_SOURCES = \ + compose.c + +compose_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +compressor_SOURCES = \ + compressor.c + +compressor_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +convmatrix_SOURCES = \ + convmatrix.c + +convmatrix_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +csource_SOURCES = \ + csource.c + +csource_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +cubism_SOURCES = \ + cubism.c + +cubism_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +curve_bend_SOURCES = \ + curve_bend.c + +curve_bend_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +decompose_SOURCES = \ + decompose.c + +decompose_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +deinterlace_SOURCES = \ + deinterlace.c + +deinterlace_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +depthmerge_SOURCES = \ + depthmerge.c + +depthmerge_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +despeckle_SOURCES = \ + despeckle.c + +despeckle_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +destripe_SOURCES = \ + destripe.c + +destripe_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +dicom_SOURCES = \ + dicom.c + +dicom_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +diffraction_SOURCES = \ + diffraction.c + +diffraction_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +displace_SOURCES = \ + displace.c + +displace_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +dog_SOURCES = \ + dog.c + +dog_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +edge_SOURCES = \ + edge.c + +edge_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +emboss_SOURCES = \ + emboss.c + +emboss_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +engrave_SOURCES = \ + engrave.c + +engrave_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +exchange_SOURCES = \ + exchange.c + +exchange_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +film_SOURCES = \ + film.c + +film_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +flarefx_SOURCES = \ + flarefx.c + +flarefx_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +fp_SOURCES = \ + fp.c + +fp_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +fractaltrace_SOURCES = \ + fractaltrace.c + +fractaltrace_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gauss_SOURCES = \ + gauss.c + +gauss_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gbr_SOURCES = \ + gbr.c + +gbr_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gee_SOURCES = \ + gee.c + +gee_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gee_zoom_SOURCES = \ + gee_zoom.c + +gee_zoom_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gif_SOURCES = \ + gif.c + +gif_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gifload_SOURCES = \ + gifload.c + +gifload_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gih_SOURCES = \ + gih.c + +gih_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +glasstile_SOURCES = \ + glasstile.c + +glasstile_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +glob_SOURCES = \ + glob.c + +glob_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gqbist_SOURCES = \ + gqbist.c + +gqbist_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gradmap_SOURCES = \ + gradmap.c + +gradmap_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +grid_SOURCES = \ + grid.c + +grid_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +gtm_SOURCES = \ + gtm.c + +gtm_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +guillotine_SOURCES = \ + guillotine.c + +guillotine_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +header_SOURCES = \ + header.c + +header_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +hot_SOURCES = \ + hot.c + +hot_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +illusion_SOURCES = \ + illusion.c + +illusion_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +iwarp_SOURCES = \ + iwarp.c + +iwarp_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +jigsaw_SOURCES = \ + jigsaw.c + +jigsaw_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +jpeg_SOURCES = \ + jpeg.c + +jpeg_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBJPEG) \ + $(GTK_LIBS) \ + $(EXIF_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +laplace_SOURCES = \ + laplace.c + +laplace_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +lic_SOURCES = \ + lic.c + +lic_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +mail_SOURCES = \ + mail.c + +mail_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBMAIL) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +mapcolor_SOURCES = \ + mapcolor.c + +mapcolor_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +max_rgb_SOURCES = \ + max_rgb.c + +max_rgb_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +mblur_SOURCES = \ + mblur.c + +mblur_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +mng_SOURCES = \ + mng.c + +mng_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBMNG) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +mosaic_SOURCES = \ + mosaic.c + +mosaic_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +neon_SOURCES = \ + neon.c + +neon_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +newsprint_SOURCES = \ + newsprint.c + +newsprint_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +nlfilt_SOURCES = \ + nlfilt.c + +nlfilt_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +noisify_SOURCES = \ + noisify.c + +noisify_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +normalize_SOURCES = \ + normalize.c + +normalize_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +nova_SOURCES = \ + nova.c + +nova_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +oilify_SOURCES = \ + oilify.c + +oilify_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +papertile_SOURCES = \ + papertile.c + +papertile_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +pat_SOURCES = \ + pat.c + +pat_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +pcx_SOURCES = \ + pcx.c + +pcx_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +photocopy_SOURCES = \ + photocopy.c + +photocopy_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +pix_SOURCES = \ + pix.c + +pix_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +pixelize_SOURCES = \ + pixelize.c + +pixelize_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +plasma_SOURCES = \ + plasma.c + +plasma_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +png_SOURCES = \ + png.c + +png_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBPNG) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +pnm_SOURCES = \ + pnm.c + +pnm_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +polar_SOURCES = \ + polar.c + +polar_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +postscript_SOURCES = \ + postscript.c + +postscript_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +psd_SOURCES = \ + psd.c + +psd_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +psd_save_SOURCES = \ + psd_save.c + +psd_save_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +psp_SOURCES = \ + psp.c + +psp_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBZ) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +randomize_SOURCES = \ + randomize.c + +randomize_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +raw_SOURCES = \ + raw.c + +raw_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +retinex_SOURCES = \ + retinex.c + +retinex_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +ripple_SOURCES = \ + ripple.c + +ripple_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +rotate_SOURCES = \ + rotate.c + +rotate_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sample_colorize_SOURCES = \ + sample_colorize.c + +sample_colorize_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +scatter_hsv_SOURCES = \ + scatter_hsv.c + +scatter_hsv_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +screenshot_SOURCES = \ + screenshot.c + +screenshot_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBSCREENSHOT) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sel_gauss_SOURCES = \ + sel_gauss.c + +sel_gauss_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +semiflatten_SOURCES = \ + semiflatten.c + +semiflatten_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sharpen_SOURCES = \ + sharpen.c + +sharpen_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +shift_SOURCES = \ + shift.c + +shift_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sinus_SOURCES = \ + sinus.c + +sinus_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +smooth_palette_SOURCES = \ + smooth_palette.c + +smooth_palette_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +snoise_SOURCES = \ + snoise.c + +snoise_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sobel_SOURCES = \ + sobel.c + +sobel_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +softglow_SOURCES = \ + softglow.c + +softglow_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sparkle_SOURCES = \ + sparkle.c + +sparkle_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +spheredesigner_SOURCES = \ + spheredesigner.c + +spheredesigner_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +spread_SOURCES = \ + spread.c + +spread_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +struc_SOURCES = \ + struc.c + +struc_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +sunras_SOURCES = \ + sunras.c + +sunras_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +svg_SOURCES = \ + svg.c + +svg_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBSVG) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +tga_SOURCES = \ + tga.c + +tga_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +threshold_alpha_SOURCES = \ + threshold_alpha.c + +threshold_alpha_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +tiff_SOURCES = \ + tiff.c + +tiff_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBTIFF) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +tile_SOURCES = \ + tile.c + +tile_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +tileit_SOURCES = \ + tileit.c + +tileit_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +tiler_SOURCES = \ + tiler.c + +tiler_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +uniteditor_SOURCES = \ + uniteditor.c + +uniteditor_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +unsharp_SOURCES = \ + unsharp.c + +unsharp_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +url_SOURCES = \ + url.c + +url_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBURL) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +video_SOURCES = \ + video.c + +video_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/AlienMap2.Po ./$(DEPDIR)/CEL.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/CML_explorer.Po ./$(DEPDIR)/aa.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/align_layers.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/animationplay.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/animoptimize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/apply_lens.Po ./$(DEPDIR)/autocrop.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/autostretch_hsv.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/blinds.Po ./$(DEPDIR)/blur.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/borderaverage.Po ./$(DEPDIR)/bumpmap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/c_astretch.Po ./$(DEPDIR)/cartoon.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/ccanalyze.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/channel_mixer.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/checkerboard.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/color_enhance.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/colorify.Po ./$(DEPDIR)/colortoalpha.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/compose.Po ./$(DEPDIR)/compressor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/convmatrix.Po ./$(DEPDIR)/csource.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/cubism.Po ./$(DEPDIR)/curve_bend.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/decompose.Po ./$(DEPDIR)/deinterlace.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/depthmerge.Po ./$(DEPDIR)/despeckle.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/destripe.Po ./$(DEPDIR)/dicom.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/diffraction.Po ./$(DEPDIR)/displace.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/dog.Po ./$(DEPDIR)/edge.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/emboss.Po ./$(DEPDIR)/engrave.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/exchange.Po ./$(DEPDIR)/film.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/flarefx.Po ./$(DEPDIR)/fp.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/fractaltrace.Po ./$(DEPDIR)/gauss.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gbr.Po ./$(DEPDIR)/gee.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gee_zoom.Po ./$(DEPDIR)/gif.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gifload.Po ./$(DEPDIR)/gih.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/glasstile.Po ./$(DEPDIR)/glob.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gqbist.Po ./$(DEPDIR)/gradmap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/grid.Po ./$(DEPDIR)/gtm.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/guillotine.Po ./$(DEPDIR)/header.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/hot.Po ./$(DEPDIR)/illusion.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/iwarp.Po ./$(DEPDIR)/jigsaw.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/jpeg.Po ./$(DEPDIR)/laplace.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lic.Po ./$(DEPDIR)/mail.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapcolor.Po ./$(DEPDIR)/max_rgb.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mblur.Po ./$(DEPDIR)/mng.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mosaic.Po ./$(DEPDIR)/neon.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/newsprint.Po ./$(DEPDIR)/nlfilt.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/noisify.Po ./$(DEPDIR)/normalize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/nova.Po ./$(DEPDIR)/oilify.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/papertile.Po ./$(DEPDIR)/pat.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pcx.Po ./$(DEPDIR)/photocopy.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pix.Po ./$(DEPDIR)/pixelize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/plasma.Po ./$(DEPDIR)/png.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pnm.Po ./$(DEPDIR)/polar.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/postscript.Po ./$(DEPDIR)/psd.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/psd_save.Po ./$(DEPDIR)/psp.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/randomize.Po ./$(DEPDIR)/raw.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/retinex.Po ./$(DEPDIR)/ripple.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/rotate.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/sample_colorize.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/scatter_hsv.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/screenshot.Po ./$(DEPDIR)/sel_gauss.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/semiflatten.Po ./$(DEPDIR)/sharpen.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/shift.Po ./$(DEPDIR)/sinus.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/smooth_palette.Po ./$(DEPDIR)/snoise.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/sobel.Po ./$(DEPDIR)/softglow.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/sparkle.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/spheredesigner.Po ./$(DEPDIR)/spread.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/struc.Po ./$(DEPDIR)/sunras.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/svg.Po ./$(DEPDIR)/tga.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/threshold_alpha.Po ./$(DEPDIR)/tiff.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tile.Po ./$(DEPDIR)/tileit.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tiler.Po ./$(DEPDIR)/uniteditor.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/unsharp.Po ./$(DEPDIR)/url.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/video.Po ./$(DEPDIR)/vinvert.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/vpropagate.Po ./$(DEPDIR)/warp.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/waves.Po ./$(DEPDIR)/webbrowser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/whirlpinch.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/winclipboard.Po ./$(DEPDIR)/wind.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/winprint.Po ./$(DEPDIR)/wmf.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/xbm.Po ./$(DEPDIR)/xpm.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/xwd.Po ./$(DEPDIR)/zealouscrop.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(AlienMap2_SOURCES) $(CEL_SOURCES) \ - $(CML_explorer_SOURCES) $(aa_SOURCES) $(align_layers_SOURCES) \ - $(animationplay_SOURCES) $(animoptimize_SOURCES) \ - $(apply_lens_SOURCES) $(autocrop_SOURCES) \ - $(autostretch_hsv_SOURCES) $(blinds_SOURCES) $(blur_SOURCES) \ - $(borderaverage_SOURCES) $(bumpmap_SOURCES) \ - $(c_astretch_SOURCES) $(cartoon_SOURCES) $(ccanalyze_SOURCES) \ - $(channel_mixer_SOURCES) $(checkerboard_SOURCES) \ - $(color_enhance_SOURCES) $(colorify_SOURCES) \ - $(colortoalpha_SOURCES) $(compose_SOURCES) \ - $(compressor_SOURCES) $(convmatrix_SOURCES) $(csource_SOURCES) \ - $(cubism_SOURCES) $(curve_bend_SOURCES) $(decompose_SOURCES) \ - $(deinterlace_SOURCES) $(depthmerge_SOURCES) \ - $(despeckle_SOURCES) $(destripe_SOURCES) $(dicom_SOURCES) \ - $(diffraction_SOURCES) $(displace_SOURCES) $(dog_SOURCES) \ - $(edge_SOURCES) $(emboss_SOURCES) $(engrave_SOURCES) \ - $(exchange_SOURCES) $(film_SOURCES) $(flarefx_SOURCES) \ - $(fp_SOURCES) $(fractaltrace_SOURCES) $(gauss_SOURCES) \ - $(gbr_SOURCES) $(gee_SOURCES) $(gee_zoom_SOURCES) \ - $(gif_SOURCES) $(gifload_SOURCES) $(gih_SOURCES) \ - $(glasstile_SOURCES) $(glob_SOURCES) $(gqbist_SOURCES) \ - $(gradmap_SOURCES) $(grid_SOURCES) $(gtm_SOURCES) \ - $(guillotine_SOURCES) $(header_SOURCES) $(hot_SOURCES) \ - $(illusion_SOURCES) $(iwarp_SOURCES) $(jigsaw_SOURCES) \ - $(jpeg_SOURCES) $(laplace_SOURCES) $(lic_SOURCES) \ - $(mail_SOURCES) $(mapcolor_SOURCES) $(max_rgb_SOURCES) \ - $(mblur_SOURCES) $(mng_SOURCES) $(mosaic_SOURCES) \ - $(neon_SOURCES) $(newsprint_SOURCES) $(nlfilt_SOURCES) \ - $(noisify_SOURCES) $(normalize_SOURCES) $(nova_SOURCES) \ - $(oilify_SOURCES) $(papertile_SOURCES) $(pat_SOURCES) \ - $(pcx_SOURCES) $(photocopy_SOURCES) $(pix_SOURCES) \ - $(pixelize_SOURCES) $(plasma_SOURCES) $(png_SOURCES) \ - $(pnm_SOURCES) $(polar_SOURCES) $(postscript_SOURCES) \ - $(psd_SOURCES) $(psd_save_SOURCES) $(psp_SOURCES) \ - $(randomize_SOURCES) $(raw_SOURCES) $(retinex_SOURCES) \ - $(ripple_SOURCES) $(rotate_SOURCES) $(sample_colorize_SOURCES) \ - $(scatter_hsv_SOURCES) $(screenshot_SOURCES) \ - $(sel_gauss_SOURCES) $(semiflatten_SOURCES) $(sharpen_SOURCES) \ - $(shift_SOURCES) $(sinus_SOURCES) $(smooth_palette_SOURCES) \ - $(snoise_SOURCES) $(sobel_SOURCES) $(softglow_SOURCES) \ - $(sparkle_SOURCES) $(spheredesigner_SOURCES) $(spread_SOURCES) \ - $(struc_SOURCES) $(sunras_SOURCES) $(svg_SOURCES) \ - $(tga_SOURCES) $(threshold_alpha_SOURCES) $(tiff_SOURCES) \ - $(tile_SOURCES) $(tileit_SOURCES) $(tiler_SOURCES) \ - $(uniteditor_SOURCES) $(unsharp_SOURCES) $(url_SOURCES) \ - $(video_SOURCES) $(vinvert_SOURCES) $(vpropagate_SOURCES) \ - $(warp_SOURCES) $(waves_SOURCES) $(webbrowser_SOURCES) \ - $(whirlpinch_SOURCES) $(winclipboard_SOURCES) $(wind_SOURCES) \ - $(winprint_SOURCES) $(wmf_SOURCES) $(xbm_SOURCES) \ - $(xpm_SOURCES) $(xwd_SOURCES) $(zealouscrop_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(AlienMap2_SOURCES) $(CEL_SOURCES) $(CML_explorer_SOURCES) $(aa_SOURCES) $(align_layers_SOURCES) $(animationplay_SOURCES) $(animoptimize_SOURCES) $(apply_lens_SOURCES) $(autocrop_SOURCES) $(autostretch_hsv_SOURCES) $(blinds_SOURCES) $(blur_SOURCES) $(borderaverage_SOURCES) $(bumpmap_SOURCES) $(c_astretch_SOURCES) $(cartoon_SOURCES) $(ccanalyze_SOURCES) $(channel_mixer_SOURCES) $(checkerboard_SOURCES) $(color_enhance_SOURCES) $(colorify_SOURCES) $(colortoalpha_SOURCES) $(compose_SOURCES) $(compressor_SOURCES) $(convmatrix_SOURCES) $(csource_SOURCES) $(cubism_SOURCES) $(curve_bend_SOURCES) $(decompose_SOURCES) $(deinterlace_SOURCES) $(depthmerge_SOURCES) $(despeckle_SOURCES) $(destripe_SOURCES) $(dicom_SOURCES) $(diffraction_SOURCES) $(displace_SOURCES) $(dog_SOURCES) $(edge_SOURCES) $(emboss_SOURCES) $(engrave_SOURCES) $(exchange_SOURCES) $(film_SOURCES) $(flarefx_SOURCES) $(fp_SOURCES) $(fractaltrace_SOURCES) $(gauss_SOURCES) $(gbr_SOURCES) $(gee_SOURCES) $(gee_zoom_SOURCES) $(gif_SOURCES) $(gifload_SOURCES) $(gih_SOURCES) $(glasstile_SOURCES) $(glob_SOURCES) $(gqbist_SOURCES) $(gradmap_SOURCES) $(grid_SOURCES) $(gtm_SOURCES) $(guillotine_SOURCES) $(header_SOURCES) $(hot_SOURCES) $(illusion_SOURCES) $(iwarp_SOURCES) $(jigsaw_SOURCES) $(jpeg_SOURCES) $(laplace_SOURCES) $(lic_SOURCES) $(mail_SOURCES) $(mapcolor_SOURCES) $(max_rgb_SOURCES) $(mblur_SOURCES) $(mng_SOURCES) $(mosaic_SOURCES) $(neon_SOURCES) $(newsprint_SOURCES) $(nlfilt_SOURCES) $(noisify_SOURCES) $(normalize_SOURCES) $(nova_SOURCES) $(oilify_SOURCES) $(papertile_SOURCES) $(pat_SOURCES) $(pcx_SOURCES) $(photocopy_SOURCES) $(pix_SOURCES) $(pixelize_SOURCES) $(plasma_SOURCES) $(png_SOURCES) $(pnm_SOURCES) $(polar_SOURCES) $(postscript_SOURCES) $(psd_SOURCES) $(psd_save_SOURCES) $(psp_SOURCES) $(randomize_SOURCES) $(raw_SOURCES) $(retinex_SOURCES) $(ripple_SOURCES) $(rotate_SOURCES) $(sample_colorize_SOURCES) $(scatter_hsv_SOURCES) $(screenshot_SOURCES) $(sel_gauss_SOURCES) $(semiflatten_SOURCES) $(sharpen_SOURCES) $(shift_SOURCES) $(sinus_SOURCES) $(smooth_palette_SOURCES) $(snoise_SOURCES) $(sobel_SOURCES) $(softglow_SOURCES) $(sparkle_SOURCES) $(spheredesigner_SOURCES) $(spread_SOURCES) $(struc_SOURCES) $(sunras_SOURCES) $(svg_SOURCES) $(tga_SOURCES) $(threshold_alpha_SOURCES) $(tiff_SOURCES) $(tile_SOURCES) $(tileit_SOURCES) $(tiler_SOURCES) $(uniteditor_SOURCES) $(unsharp_SOURCES) $(url_SOURCES) $(video_SOURCES) $(vinvert_SOURCES) $(vpropagate_SOURCES) $(warp_SOURCES) $(waves_SOURCES) $(webbrowser_SOURCES) $(whirlpinch_SOURCES) $(winclipboard_SOURCES) $(wind_SOURCES) $(winprint_SOURCES) $(wmf_SOURCES) $(xbm_SOURCES) $(xpm_SOURCES) $(xwd_SOURCES) $(zealouscrop_SOURCES) +vinvert_SOURCES = \ + vinvert.c + +vinvert_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +vpropagate_SOURCES = \ + vpropagate.c + +vpropagate_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +warp_SOURCES = \ + warp.c + +warp_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +waves_SOURCES = \ + waves.c + +waves_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +webbrowser_SOURCES = \ + webbrowser.c + +webbrowser_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +whirlpinch_SOURCES = \ + whirlpinch.c + +whirlpinch_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +winclipboard_SOURCES = \ + winclipboard.c + +winclipboard_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBWINCLIPBOARD) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +wind_SOURCES = \ + wind.c + +wind_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +winprint_SOURCES = \ + winprint.c + +winprint_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBWINPRINT) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +wmf_SOURCES = \ + wmf.c + +wmf_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBWMF) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +xbm_SOURCES = \ + xbm.c + +xbm_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +xpm_SOURCES = \ + xpm.c + +xpm_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(LIBXPM) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +xwd_SOURCES = \ + xwd.c + +xwd_LDADD = \ + $(libgimpui) \ + $(libgimpwidgets) \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GTK_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) + +zealouscrop_SOURCES = \ + zealouscrop.c + +zealouscrop_LDADD = \ + $(libgimp) \ + $(libgimpcolor) \ + $(libgimpbase) \ + $(GLIB_LIBS) \ + $(RT_LIBS) \ + $(INTLLIBS) all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/common/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/common/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -4102,8 +3306,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -4537,7 +3741,7 @@ $(LINK) $(zealouscrop_LDFLAGS) $(zealouscrop_OBJECTS) $(zealouscrop_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -4685,37 +3889,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zealouscrop.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -4727,14 +3919,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -4743,6 +3927,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -4754,10 +3939,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -4780,10 +3966,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -4797,7 +3979,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -4815,9 +3997,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -4837,7 +4020,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -4857,6 +4040,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -4894,8 +4079,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/common/psd.c gimp-2.2.9/plug-ins/common/psd.c --- gimp-2.2.8/plug-ins/common/psd.c 2005-03-08 16:47:59.000000000 +0100 +++ gimp-2.2.9/plug-ins/common/psd.c 2005-08-15 12:07:04.000000000 +0200 @@ -403,6 +403,7 @@ static void throwchunk(size_t n, FILE * fd, gchar *why); static void dumpchunk(size_t n, FILE * fd, gchar *why); static void seek_to_and_unpack_pixeldata(FILE* fd, gint layeri, gint channeli); +static void validate_aux_channel_name(gint aux_index); MAIN () @@ -1562,6 +1563,19 @@ } static +void validate_aux_channel_name(gint aux_index) +{ + if (psd_image.aux_channel[aux_index].name == NULL) + { + if (aux_index == 0) + psd_image.aux_channel[aux_index].name = g_strdup ("Aux channel"); + else + psd_image.aux_channel[aux_index].name = + g_strdup_printf ("Aux channel #%d", aux_index); + } +} + +static void extract_data_and_channels(guchar* src, gint gimpstep, gint psstep, gint32 image_ID, GimpDrawable* drawable, gint width, gint height) @@ -1604,7 +1618,7 @@ aux_data = g_malloc (width * height); { - int pix, chan; + int pix, chan, aux_index; gint32 channel_ID; GimpDrawable* chdrawable; GimpRGB colour; @@ -1617,8 +1631,12 @@ { aux_data [pix] = src [pix * psstep + chan]; } + + aux_index = chan - gimpstep; + validate_aux_channel_name (aux_index); + channel_ID = gimp_channel_new (image_ID, - psd_image.aux_channel[chan-gimpstep].name, + psd_image.aux_channel[aux_index].name, width, height, 100.0, &colour); gimp_image_add_channel (image_ID, channel_ID, 0); @@ -1660,7 +1678,7 @@ aux_data = g_malloc(width * height); { - int pix, chan; + int pix, chan, aux_index; gint32 channel_ID; GimpDrawable* chdrawable; GimpRGB colour; @@ -1674,8 +1692,11 @@ aux_data [pix] = src [pix * psstep + chan]; } + aux_index = chan - (psstep - num_wanted); + validate_aux_channel_name (aux_index); + channel_ID = gimp_channel_new (image_ID, - psd_image.aux_channel[chan-(psstep-num_wanted)].name, + psd_image.aux_channel[aux_index].name, width, height, 100.0, &colour); gimp_image_add_channel (image_ID, channel_ID, 0); diff -uraN gimp-2.2.8/plug-ins/common/svg.c gimp-2.2.9/plug-ins/common/svg.c --- gimp-2.2.8/plug-ins/common/svg.c 2004-11-18 20:00:02.000000000 +0100 +++ gimp-2.2.9/plug-ins/common/svg.c 2005-10-20 12:20:16.000000000 +0200 @@ -28,6 +28,7 @@ #include #include +#include /* for version check */ #include @@ -436,7 +437,12 @@ handle = rsvg_handle_new (); - rsvg_handle_set_dpi (handle, vals->resolution); +#if (LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION < 99) + rsvg_handle_set_dpi_x_y (handle, vals->resolution, vals->resolution); +#else + rsvg_handle_set_dpi (handle, vals->resolution, vals->resolution); +#endif + rsvg_handle_set_size_callback (handle, load_set_size_callback, vals, NULL); while (success && status != G_IO_STATUS_EOF) @@ -532,7 +538,12 @@ handle = rsvg_handle_new (); - rsvg_handle_set_dpi (handle, vals->resolution); +#if (LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION < 99) + rsvg_handle_set_dpi_x_y (handle, vals->resolution, vals->resolution); +#else + rsvg_handle_set_dpi (handle, vals->resolution, vals->resolution); +#endif + rsvg_handle_set_size_callback (handle, load_get_size_callback, vals, NULL); while (success && status != G_IO_STATUS_EOF && vals->resolution > 0.0) diff -uraN gimp-2.2.8/plug-ins/dbbrowser/Makefile.in gimp-2.2.9/plug-ins/dbbrowser/Makefile.in --- gimp-2.2.8/plug-ins/dbbrowser/Makefile.in 2005-06-26 21:28:23.000000000 +0200 +++ gimp-2.2.9/plug-ins/dbbrowser/Makefile.in 2005-10-27 17:11:47.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +35,69 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = plugin-browser$(EXEEXT) procedure-browser$(EXEEXT) +subdir = plug-ins/dbbrowser +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libgimpprocbrowser_la_LIBADD = +am_libgimpprocbrowser_la_OBJECTS = gimpprocbox.lo gimpprocbrowser.lo \ + gimpprocview.lo +libgimpprocbrowser_la_OBJECTS = $(am_libgimpprocbrowser_la_OBJECTS) +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_plugin_browser_OBJECTS = plugin-browser.$(OBJEXT) +plugin_browser_OBJECTS = $(am_plugin_browser_OBJECTS) +plugin_browser_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +plugin_browser_DEPENDENCIES = libgimpprocbrowser.la \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +am_procedure_browser_OBJECTS = procedure-browser.$(OBJEXT) +procedure_browser_OBJECTS = $(am_procedure_browser_OBJECTS) +procedure_browser_LDADD = $(LDADD) +procedure_browser_DEPENDENCIES = libgimpprocbrowser.la \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libgimpprocbrowser_la_SOURCES) $(plugin_browser_SOURCES) \ + $(procedure_browser_SOURCES) +DIST_SOURCES = $(libgimpprocbrowser_la_SOURCES) \ + $(plugin_browser_SOURCES) $(procedure_browser_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +296,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +347,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +394,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +417,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,20 +434,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - noinst_LTLIBRARIES = libgimpprocbrowser.la -libexec_PROGRAMS = plugin-browser procedure-browser - libgimpprocbrowser_la_SOURCES = \ gimpprocbox.c \ gimpprocbox.h \ @@ -391,23 +450,18 @@ gimpprocview.c \ gimpprocview.h - plugin_browser_SOURCES = \ plugin-browser.c - procedure_browser_SOURCES = \ procedure-browser.c - EXTRA_DIST = README - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ libgimpprocbrowser.la \ $(libgimpui) \ @@ -419,94 +473,61 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/dbbrowser -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) - -libgimpprocbrowser_la_LDFLAGS = -libgimpprocbrowser_la_LIBADD = -am_libgimpprocbrowser_la_OBJECTS = gimpprocbox.lo gimpprocbrowser.lo \ - gimpprocview.lo -libgimpprocbrowser_la_OBJECTS = $(am_libgimpprocbrowser_la_OBJECTS) -libexec_PROGRAMS = plugin-browser$(EXEEXT) procedure-browser$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_plugin_browser_OBJECTS = plugin-browser.$(OBJEXT) -plugin_browser_OBJECTS = $(am_plugin_browser_OBJECTS) -plugin_browser_LDADD = $(LDADD) -plugin_browser_DEPENDENCIES = libgimpprocbrowser.la \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -plugin_browser_LDFLAGS = -am_procedure_browser_OBJECTS = procedure-browser.$(OBJEXT) -procedure_browser_OBJECTS = $(am_procedure_browser_OBJECTS) -procedure_browser_LDADD = $(LDADD) -procedure_browser_DEPENDENCIES = libgimpprocbrowser.la \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -procedure_browser_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpprocbox.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprocbrowser.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpprocview.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/plugin-browser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/procedure-browser.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libgimpprocbrowser_la_SOURCES) \ - $(plugin_browser_SOURCES) $(procedure_browser_SOURCES) -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libgimpprocbrowser_la_SOURCES) $(plugin_browser_SOURCES) $(procedure_browser_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/dbbrowser/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/dbbrowser/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done libgimpprocbrowser.la: $(libgimpprocbrowser_la_OBJECTS) $(libgimpprocbrowser_la_DEPENDENCIES) $(LINK) $(libgimpprocbrowser_la_LDFLAGS) $(libgimpprocbrowser_la_OBJECTS) $(libgimpprocbrowser_la_LIBADD) $(LIBS) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -514,8 +535,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -532,7 +553,7 @@ $(LINK) $(procedure_browser_LDFLAGS) $(procedure_browser_OBJECTS) $(procedure_browser_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -544,37 +565,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/procedure-browser.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -586,14 +595,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -602,6 +603,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -613,10 +615,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -639,10 +642,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -656,7 +655,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -674,9 +673,10 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -696,7 +696,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -716,6 +716,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -753,15 +755,15 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool clean-noinstLTLIBRARIES \ ctags distclean distclean-compile distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-am info \ - info-am install install-am install-data install-data-am \ - install-exec install-exec-am install-info install-info-am \ - install-libexecPROGRAMS install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-info-am \ - uninstall-libexecPROGRAMS + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/faxg3/Makefile.in gimp-2.2.9/plug-ins/faxg3/Makefile.in --- gimp-2.2.8/plug-ins/faxg3/Makefile.in 2005-06-26 21:28:23.000000000 +0200 +++ gimp-2.2.9/plug-ins/faxg3/Makefile.in 2005-10-27 17:11:47.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,49 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = faxg3$(EXEEXT) +subdir = plug-ins/faxg3 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_faxg3_OBJECTS = faxg3.$(OBJEXT) g3.$(OBJEXT) run_tbl.$(OBJEXT) +faxg3_OBJECTS = $(am_faxg3_OBJECTS) +faxg3_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = +faxg3_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_4) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(faxg3_SOURCES) +DIST_SOURCES = $(faxg3_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +275,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +326,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +373,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +396,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,32 +413,24 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = faxg3 - faxg3_SOURCES = \ faxg3.c \ g3.c \ g3.h \ run_tbl.c - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimp) \ $(libgimpcolor) \ @@ -403,60 +439,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/faxg3 -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = faxg3$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_faxg3_OBJECTS = faxg3.$(OBJEXT) g3.$(OBJEXT) run_tbl.$(OBJEXT) -faxg3_OBJECTS = $(am_faxg3_OBJECTS) -faxg3_LDADD = $(LDADD) -faxg3_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -faxg3_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/faxg3.Po ./$(DEPDIR)/g3.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/run_tbl.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(faxg3_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(faxg3_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/faxg3/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/faxg3/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -464,8 +490,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -479,7 +505,7 @@ $(LINK) $(faxg3_LDFLAGS) $(faxg3_OBJECTS) $(faxg3_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -489,37 +515,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/run_tbl.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -531,14 +545,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -547,6 +553,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -558,10 +565,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -584,10 +592,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -601,7 +605,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -619,9 +623,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -641,7 +646,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -661,6 +666,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -698,8 +705,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/fits/Makefile.in gimp-2.2.9/plug-ins/fits/Makefile.in --- gimp-2.2.8/plug-ins/fits/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/fits/Makefile.in 2005-10-27 17:11:48.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,53 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = fits$(EXEEXT) +subdir = plug-ins/fits +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_fits_OBJECTS = fits.$(OBJEXT) fitsrw.$(OBJEXT) +fits_OBJECTS = $(am_fits_OBJECTS) +fits_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +fits_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(fits_SOURCES) +DIST_SOURCES = $(fits_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +279,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +330,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +377,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +400,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,31 +417,23 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = fits - fits_SOURCES = \ fits.c \ fitsrw.c \ fitsrw.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -404,61 +444,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/fits -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = fits$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_fits_OBJECTS = fits.$(OBJEXT) fitsrw.$(OBJEXT) -fits_OBJECTS = $(am_fits_OBJECTS) -fits_LDADD = $(LDADD) -fits_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -fits_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/fits.Po ./$(DEPDIR)/fitsrw.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(fits_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(fits_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/fits/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/fits/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -466,8 +495,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -481,7 +510,7 @@ $(LINK) $(fits_LDFLAGS) $(fits_OBJECTS) $(fits_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -490,37 +519,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fitsrw.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -532,14 +549,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -548,6 +557,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -559,10 +569,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -585,10 +596,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -602,7 +609,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -620,9 +627,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -642,7 +650,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -662,6 +670,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -699,8 +709,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/flame/Makefile.in gimp-2.2.9/plug-ins/flame/Makefile.in --- gimp-2.2.8/plug-ins/flame/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/flame/Makefile.in 2005-10-27 17:11:48.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = flame$(EXEEXT) +subdir = plug-ins/flame +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_flame_OBJECTS = cmap.$(OBJEXT) flame.$(OBJEXT) libifs.$(OBJEXT) \ + rect.$(OBJEXT) +flame_OBJECTS = $(am_flame_OBJECTS) +flame_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +flame_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(flame_SOURCES) +DIST_SOURCES = $(flame_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +401,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,19 +418,13 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = flame - flame_SOURCES = \ cmap.c \ cmap.h \ @@ -392,15 +435,12 @@ rect.c \ rect.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - EXTRA_DIST = README - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -411,63 +451,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/flame -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = flame$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_flame_OBJECTS = cmap.$(OBJEXT) flame.$(OBJEXT) libifs.$(OBJEXT) \ - rect.$(OBJEXT) -flame_OBJECTS = $(am_flame_OBJECTS) -flame_LDADD = $(LDADD) -flame_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -flame_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/cmap.Po ./$(DEPDIR)/flame.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/libifs.Po ./$(DEPDIR)/rect.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(flame_SOURCES) -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -SOURCES = $(flame_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/flame/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/flame/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -475,8 +502,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -490,7 +517,7 @@ $(LINK) $(flame_LDFLAGS) $(flame_OBJECTS) $(flame_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -501,37 +528,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rect.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -543,14 +558,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -559,6 +566,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -570,10 +578,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -596,10 +605,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -613,7 +618,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -631,9 +636,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -653,7 +659,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -673,6 +679,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -710,8 +718,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/FractalExplorer/examples/Makefile.in gimp-2.2.9/plug-ins/FractalExplorer/examples/Makefile.in --- gimp-2.2.8/plug-ins/FractalExplorer/examples/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/FractalExplorer/examples/Makefile.in 2005-10-27 17:11:43.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/FractalExplorer/examples +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(fractalexplorerdatadir)" +fractalexplorerdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(fractalexplorerdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - fractalexplorerdatadir = $(gimpdatadir)/fractalexplorer - fractalexplorerdata_DATA = \ Asteroid_Field \ Bar_Code_Label \ @@ -406,25 +430,39 @@ Wood \ Zooming_Circle - EXTRA_DIST = $(fractalexplorerdata_DATA) -subdir = plug-ins/FractalExplorer/examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(fractalexplorerdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/FractalExplorer/examples/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/FractalExplorer/examples/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -435,23 +473,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -fractalexplorerdataDATA_INSTALL = $(INSTALL_DATA) install-fractalexplorerdataDATA: $(fractalexplorerdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(fractalexplorerdatadir) + test -z "$(fractalexplorerdatadir)" || $(mkdir_p) "$(DESTDIR)$(fractalexplorerdatadir)" @list='$(fractalexplorerdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(fractalexplorerdataDATA_INSTALL) $$d$$p $(DESTDIR)$(fractalexplorerdatadir)/$$f"; \ - $(fractalexplorerdataDATA_INSTALL) $$d$$p $(DESTDIR)$(fractalexplorerdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(fractalexplorerdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(fractalexplorerdatadir)/$$f'"; \ + $(fractalexplorerdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(fractalexplorerdatadir)/$$f"; \ done uninstall-fractalexplorerdataDATA: @$(NORMAL_UNINSTALL) @list='$(fractalexplorerdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(fractalexplorerdatadir)/$$f"; \ - rm -f $(DESTDIR)$(fractalexplorerdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(fractalexplorerdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(fractalexplorerdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -459,10 +496,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -476,7 +509,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -494,9 +527,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(fractalexplorerdatadir) + for dir in "$(DESTDIR)$(fractalexplorerdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -516,7 +550,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -533,6 +567,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -567,8 +603,8 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ install-fractalexplorerdataDATA install-info install-info-am \ install-man install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ diff -uraN gimp-2.2.8/plug-ins/FractalExplorer/Makefile.in gimp-2.2.9/plug-ins/FractalExplorer/Makefile.in --- gimp-2.2.8/plug-ins/FractalExplorer/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/FractalExplorer/Makefile.in 2005-10-27 17:11:43.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,62 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = FractalExplorer$(EXEEXT) +subdir = plug-ins/FractalExplorer +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_FractalExplorer_OBJECTS = Dialogs.$(OBJEXT) \ + FractalExplorer.$(OBJEXT) +FractalExplorer_OBJECTS = $(am_FractalExplorer_OBJECTS) +FractalExplorer_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +FractalExplorer_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(FractalExplorer_SOURCES) +DIST_SOURCES = $(FractalExplorer_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +288,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +339,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +386,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +409,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,21 +426,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - SUBDIRS = examples - -libexec_PROGRAMS = FractalExplorer - FractalExplorer_SOURCES = \ Dialogs.h \ Dialogs.c \ @@ -392,13 +442,11 @@ logo.h \ pix_data.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -409,69 +457,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/FractalExplorer -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = FractalExplorer$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_FractalExplorer_OBJECTS = Dialogs.$(OBJEXT) FractalExplorer.$(OBJEXT) -FractalExplorer_OBJECTS = $(am_FractalExplorer_OBJECTS) -FractalExplorer_LDADD = $(LDADD) -FractalExplorer_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -FractalExplorer_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/Dialogs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/FractalExplorer.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(FractalExplorer_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(FractalExplorer_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/FractalExplorer/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/FractalExplorer/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -479,8 +508,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -494,7 +523,7 @@ $(LINK) $(FractalExplorer_LDFLAGS) $(FractalExplorer_OBJECTS) $(FractalExplorer_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -503,37 +532,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FractalExplorer.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -552,7 +569,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -564,7 +587,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -572,7 +595,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -593,7 +622,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -604,14 +633,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -620,19 +641,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -642,10 +666,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -668,10 +693,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -685,7 +706,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -700,15 +721,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -718,8 +741,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -739,7 +763,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -759,6 +783,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -795,24 +821,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gfig/gfig-examples/Makefile.in gimp-2.2.9/plug-ins/gfig/gfig-examples/Makefile.in --- gimp-2.2.8/plug-ins/gfig/gfig-examples/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/gfig/gfig-examples/Makefile.in 2005-10-27 17:11:48.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/gfig/gfig-examples +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(gfigdatadir)" +gfigdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(gfigdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - gfigdatadir = $(gimpdatadir)/gfig - gfigdata_DATA = \ A_star \ curves \ @@ -383,25 +407,39 @@ star2 \ stars - EXTRA_DIST = $(gfigdata_DATA) -subdir = plug-ins/gfig/gfig-examples -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(gfigdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gfig/gfig-examples/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gfig/gfig-examples/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -412,23 +450,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -gfigdataDATA_INSTALL = $(INSTALL_DATA) install-gfigdataDATA: $(gfigdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(gfigdatadir) + test -z "$(gfigdatadir)" || $(mkdir_p) "$(DESTDIR)$(gfigdatadir)" @list='$(gfigdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(gfigdataDATA_INSTALL) $$d$$p $(DESTDIR)$(gfigdatadir)/$$f"; \ - $(gfigdataDATA_INSTALL) $$d$$p $(DESTDIR)$(gfigdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(gfigdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gfigdatadir)/$$f'"; \ + $(gfigdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gfigdatadir)/$$f"; \ done uninstall-gfigdataDATA: @$(NORMAL_UNINSTALL) @list='$(gfigdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(gfigdatadir)/$$f"; \ - rm -f $(DESTDIR)$(gfigdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(gfigdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(gfigdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -436,10 +473,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -453,7 +486,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -471,9 +504,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(gfigdatadir) + for dir in "$(DESTDIR)$(gfigdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -493,7 +527,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -510,6 +544,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -544,13 +580,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ install-gfigdataDATA install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-gfigdataDATA uninstall-info-am + uninstall uninstall-am uninstall-gfigdataDATA \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gfig/images/Makefile.in gimp-2.2.9/plug-ins/gfig/images/Makefile.in --- gimp-2.2.8/plug-ins/gfig/images/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/gfig/images/Makefile.in 2005-10-27 17:11:49.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/gfig/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +248,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +299,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +346,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +386,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - STOCK_IMAGES = \ stock-bezier.png \ stock-circle.png \ @@ -386,28 +403,41 @@ stock-star.png \ stock-logo.png - EXTRA_DIST = $(STOCK_IMAGES) - noinst_DATA = gfig-stock-pixbufs.h CLEANFILES = $(noinst_DATA) stock-icons.list -subdir = plug-ins/gfig/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gfig/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gfig/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -424,10 +454,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -441,7 +467,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -459,7 +485,6 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: install: install-am install-exec: install-exec-am @@ -481,7 +506,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -498,6 +523,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -532,10 +559,10 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am diff -uraN gimp-2.2.8/plug-ins/gfig/Makefile.in gimp-2.2.9/plug-ins/gfig/Makefile.in --- gimp-2.2.8/plug-ins/gfig/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/gfig/Makefile.in 2005-10-27 17:11:48.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,66 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = gfig$(EXEEXT) +subdir = plug-ins/gfig +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_gfig_OBJECTS = gfig.$(OBJEXT) gfig-arc.$(OBJEXT) \ + gfig-bezier.$(OBJEXT) gfig-circle.$(OBJEXT) \ + gfig-dialog.$(OBJEXT) gfig-dobject.$(OBJEXT) \ + gfig-ellipse.$(OBJEXT) gfig-grid.$(OBJEXT) gfig-line.$(OBJEXT) \ + gfig-poly.$(OBJEXT) gfig-preview.$(OBJEXT) \ + gfig-spiral.$(OBJEXT) gfig-star.$(OBJEXT) gfig-stock.$(OBJEXT) \ + gfig-style.$(OBJEXT) +gfig_OBJECTS = $(am_gfig_OBJECTS) +gfig_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +gfig_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gfig_SOURCES) +DIST_SOURCES = $(gfig_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +292,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +343,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +390,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +413,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,21 +430,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - SUBDIRS = gfig-examples images - -libexec_PROGRAMS = gfig - gfig_SOURCES = \ gfig.c \ gfig.h \ @@ -417,15 +471,12 @@ gfig-style.h \ gfig-types.h - EXTRA_DIST = README - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -436,85 +487,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/gfig -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = gfig$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_gfig_OBJECTS = gfig.$(OBJEXT) gfig-arc.$(OBJEXT) \ - gfig-bezier.$(OBJEXT) gfig-circle.$(OBJEXT) \ - gfig-dialog.$(OBJEXT) gfig-dobject.$(OBJEXT) \ - gfig-ellipse.$(OBJEXT) gfig-grid.$(OBJEXT) gfig-line.$(OBJEXT) \ - gfig-poly.$(OBJEXT) gfig-preview.$(OBJEXT) \ - gfig-spiral.$(OBJEXT) gfig-star.$(OBJEXT) gfig-stock.$(OBJEXT) \ - gfig-style.$(OBJEXT) -gfig_OBJECTS = $(am_gfig_OBJECTS) -gfig_LDADD = $(LDADD) -gfig_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gfig_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gfig-arc.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-bezier.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-circle.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-dobject.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-ellipse.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-grid.Po ./$(DEPDIR)/gfig-line.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-poly.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-spiral.Po ./$(DEPDIR)/gfig-star.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig-stock.Po ./$(DEPDIR)/gfig-style.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gfig.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gfig_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(gfig_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gfig/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gfig/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -522,8 +538,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -537,7 +553,7 @@ $(LINK) $(gfig_LDFLAGS) $(gfig_OBJECTS) $(gfig_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -559,37 +575,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gfig.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -608,7 +612,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -620,7 +630,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -628,7 +638,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -649,7 +665,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -660,14 +676,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -676,19 +684,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -698,10 +709,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -724,10 +736,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -741,7 +749,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -756,15 +764,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -774,8 +784,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -795,7 +806,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -815,6 +826,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -851,24 +864,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gflare/gflares/Makefile.in gimp-2.2.9/plug-ins/gflare/gflares/Makefile.in --- gimp-2.2.8/plug-ins/gflare/gflares/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/gflare/gflares/Makefile.in 2005-10-27 17:11:49.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/gflare/gflares +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(gflaredir)" +gflareDATA_INSTALL = $(INSTALL_DATA) +DATA = $(gflare_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - gflaredir = $(gimpdatadir)/gflare - gflare_DATA = \ Bright_Star \ Classic \ @@ -380,25 +404,39 @@ GFlare_102 \ Hidden_Planet - EXTRA_DIST = $(gflare_DATA) -subdir = plug-ins/gflare/gflares -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(gflare_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gflare/gflares/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gflare/gflares/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -409,23 +447,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -gflareDATA_INSTALL = $(INSTALL_DATA) install-gflareDATA: $(gflare_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(gflaredir) + test -z "$(gflaredir)" || $(mkdir_p) "$(DESTDIR)$(gflaredir)" @list='$(gflare_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(gflareDATA_INSTALL) $$d$$p $(DESTDIR)$(gflaredir)/$$f"; \ - $(gflareDATA_INSTALL) $$d$$p $(DESTDIR)$(gflaredir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(gflareDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gflaredir)/$$f'"; \ + $(gflareDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gflaredir)/$$f"; \ done uninstall-gflareDATA: @$(NORMAL_UNINSTALL) @list='$(gflare_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(gflaredir)/$$f"; \ - rm -f $(DESTDIR)$(gflaredir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(gflaredir)/$$f'"; \ + rm -f "$(DESTDIR)$(gflaredir)/$$f"; \ done tags: TAGS TAGS: @@ -433,10 +470,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -450,7 +483,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -468,9 +501,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(gflaredir) + for dir in "$(DESTDIR)$(gflaredir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -490,7 +524,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -507,6 +541,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -541,13 +577,13 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-gflareDATA \ - install-info install-info-am install-man install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-gflareDATA uninstall-info-am + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-gflareDATA install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-gflareDATA uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gflare/Makefile.in gimp-2.2.9/plug-ins/gflare/Makefile.in --- gimp-2.2.8/plug-ins/gflare/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/gflare/Makefile.in 2005-10-27 17:11:49.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,60 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = gflare$(EXEEXT) +subdir = plug-ins/gflare +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_gflare_OBJECTS = gflare.$(OBJEXT) +gflare_OBJECTS = $(am_gflare_OBJECTS) +gflare_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +gflare_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gflare_SOURCES) +DIST_SOURCES = $(gflare_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +286,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +337,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +384,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +407,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,29 +424,20 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - SUBDIRS = gflares - -libexec_PROGRAMS = gflare - gflare_SOURCES = gflare.c - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -402,68 +448,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/gflare -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = gflare$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_gflare_OBJECTS = gflare.$(OBJEXT) -gflare_OBJECTS = $(am_gflare_OBJECTS) -gflare_LDADD = $(LDADD) -gflare_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gflare_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gflare.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gflare_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(gflare_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gflare/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gflare/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -471,8 +499,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -486,7 +514,7 @@ $(LINK) $(gflare_LDFLAGS) $(gflare_OBJECTS) $(gflare_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -494,37 +522,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gflare.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -543,7 +559,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -555,7 +577,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -563,7 +585,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -584,7 +612,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -595,14 +623,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -611,19 +631,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -633,10 +656,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -659,10 +683,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -676,7 +696,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -691,15 +711,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -709,8 +731,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -730,7 +753,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -750,6 +773,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -786,24 +811,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gfli/Makefile.in gimp-2.2.9/plug-ins/gfli/Makefile.in --- gimp-2.2.8/plug-ins/gfli/Makefile.in 2005-06-26 21:28:24.000000000 +0200 +++ gimp-2.2.9/plug-ins/gfli/Makefile.in 2005-10-27 17:11:49.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,53 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = gfli$(EXEEXT) +subdir = plug-ins/gfli +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_gfli_OBJECTS = fli.$(OBJEXT) gfli.$(OBJEXT) +gfli_OBJECTS = $(am_gfli_OBJECTS) +gfli_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +gfli_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gfli_SOURCES) +DIST_SOURCES = $(gfli_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +279,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +330,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +377,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +400,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,31 +417,23 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = gfli - gfli_SOURCES = \ fli.h \ fli.c \ gfli.c - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -404,61 +444,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/gfli -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = gfli$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_gfli_OBJECTS = fli.$(OBJEXT) gfli.$(OBJEXT) -gfli_OBJECTS = $(am_gfli_OBJECTS) -gfli_LDADD = $(LDADD) -gfli_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gfli_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/fli.Po ./$(DEPDIR)/gfli.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gfli_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(gfli_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gfli/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gfli/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -466,8 +495,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -481,7 +510,7 @@ $(LINK) $(gfli_LDFLAGS) $(gfli_OBJECTS) $(gfli_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -490,37 +519,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gfli.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -532,14 +549,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -548,6 +557,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -559,10 +569,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -585,10 +596,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -602,7 +609,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -620,9 +627,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -642,7 +650,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -662,6 +670,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -699,8 +709,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/gimpressionist/Brushes/Makefile.in gimp-2.2.9/plug-ins/gimpressionist/Brushes/Makefile.in --- gimp-2.2.8/plug-ins/gimpressionist/Brushes/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/gimpressionist/Brushes/Makefile.in 2005-10-27 17:11:50.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/gimpressionist/Brushes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(brushdatadir)" +brushdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(brushdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - brushdatadir = $(gimpdatadir)/gimpressionist/Brushes - brushdata_DATA = \ arrow01.pgm \ ball.ppm \ @@ -433,25 +457,39 @@ weave.pgm \ worm.pgm - EXTRA_DIST = $(brushdata_DATA) -subdir = plug-ins/gimpressionist/Brushes -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(brushdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gimpressionist/Brushes/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gimpressionist/Brushes/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -462,23 +500,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -brushdataDATA_INSTALL = $(INSTALL_DATA) install-brushdataDATA: $(brushdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(brushdatadir) + test -z "$(brushdatadir)" || $(mkdir_p) "$(DESTDIR)$(brushdatadir)" @list='$(brushdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(brushdataDATA_INSTALL) $$d$$p $(DESTDIR)$(brushdatadir)/$$f"; \ - $(brushdataDATA_INSTALL) $$d$$p $(DESTDIR)$(brushdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(brushdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(brushdatadir)/$$f'"; \ + $(brushdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(brushdatadir)/$$f"; \ done uninstall-brushdataDATA: @$(NORMAL_UNINSTALL) @list='$(brushdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(brushdatadir)/$$f"; \ - rm -f $(DESTDIR)$(brushdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(brushdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(brushdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -486,10 +523,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -503,7 +536,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -521,9 +554,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(brushdatadir) + for dir in "$(DESTDIR)$(brushdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -543,7 +577,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -560,6 +594,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -594,13 +630,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-brushdataDATA \ - install-data install-data-am install-exec install-exec-am \ - install-info install-info-am install-man install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-brushdataDATA uninstall-info-am + dvi-am html html-am info info-am install install-am \ + install-brushdataDATA install-data install-data-am \ + install-exec install-exec-am install-info install-info-am \ + install-man install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am uninstall uninstall-am uninstall-brushdataDATA \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gimpressionist/Makefile.in gimp-2.2.9/plug-ins/gimpressionist/Makefile.in --- gimp-2.2.8/plug-ins/gimpressionist/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/gimpressionist/Makefile.in 2005-10-27 17:11:50.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,69 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = gimpressionist$(EXEEXT) +subdir = plug-ins/gimpressionist +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + ChangeLog +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am__objects_1 = +am__objects_2 = brush.$(OBJEXT) color.$(OBJEXT) general.$(OBJEXT) \ + gimp.$(OBJEXT) gimpressionist.$(OBJEXT) globals.$(OBJEXT) \ + orientation.$(OBJEXT) orientmap.$(OBJEXT) paper.$(OBJEXT) \ + placement.$(OBJEXT) plasma.$(OBJEXT) ppmtool.$(OBJEXT) \ + presets.$(OBJEXT) preview.$(OBJEXT) repaint.$(OBJEXT) \ + size.$(OBJEXT) sizemap.$(OBJEXT) utils.$(OBJEXT) +am_gimpressionist_OBJECTS = $(am__objects_1) $(am__objects_2) +gimpressionist_OBJECTS = $(am_gimpressionist_OBJECTS) +gimpressionist_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +gimpressionist_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gimpressionist_SOURCES) +DIST_SOURCES = $(gimpressionist_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +295,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +346,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +393,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +416,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,31 +433,22 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - SUBDIRS = Brushes Paper Presets - @OS_WIN32_TRUE@mwindows = -mwindows - AM_CPPFLAGS = \ -DDEFAULTPATH=\""~/$(gimpdir)/gimpressionist:$(gimpdatadir)/gimpressionist"\" - AM_LDFLAGS = $(mwindows) - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - -libexec_PROGRAMS = gimpressionist - gimpressionist_sources = \ brush.c \ brush.h \ @@ -428,13 +483,10 @@ sizemap.c \ utils.c - gimpressionist_built_sources = logo-pixbuf.h - gimpressionist_SOURCES = \ $(gimpressionist_built_sources) $(gimpressionist_sources) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -445,91 +497,55 @@ $(RT_LIBS) \ $(INTLLIBS) - EXTRA_DIST = \ README \ logo.png - CLEANFILES = logo-pixbuf.h -subdir = plug-ins/gimpressionist -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = gimpressionist$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am__objects_1 = -am__objects_2 = brush.$(OBJEXT) color.$(OBJEXT) general.$(OBJEXT) \ - gimp.$(OBJEXT) gimpressionist.$(OBJEXT) globals.$(OBJEXT) \ - orientation.$(OBJEXT) orientmap.$(OBJEXT) paper.$(OBJEXT) \ - placement.$(OBJEXT) plasma.$(OBJEXT) ppmtool.$(OBJEXT) \ - presets.$(OBJEXT) preview.$(OBJEXT) repaint.$(OBJEXT) \ - size.$(OBJEXT) sizemap.$(OBJEXT) utils.$(OBJEXT) -am_gimpressionist_OBJECTS = $(am__objects_1) $(am__objects_2) -gimpressionist_OBJECTS = $(am_gimpressionist_OBJECTS) -gimpressionist_LDADD = $(LDADD) -gimpressionist_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -gimpressionist_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/brush.Po ./$(DEPDIR)/color.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/general.Po ./$(DEPDIR)/gimp.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimpressionist.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/globals.Po ./$(DEPDIR)/orientation.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/orientmap.Po ./$(DEPDIR)/paper.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/placement.Po ./$(DEPDIR)/plasma.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/ppmtool.Po ./$(DEPDIR)/presets.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/preview.Po ./$(DEPDIR)/repaint.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/size.Po ./$(DEPDIR)/sizemap.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/utils.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gimpressionist_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in ChangeLog Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(gimpressionist_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gimpressionist/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gimpressionist/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -537,8 +553,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -552,7 +568,7 @@ $(LINK) $(gimpressionist_LDFLAGS) $(gimpressionist_OBJECTS) $(gimpressionist_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -577,37 +593,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -626,7 +630,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -638,7 +648,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -646,7 +656,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -667,7 +683,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -678,14 +694,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -694,19 +702,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -716,10 +727,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -742,10 +754,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -759,7 +767,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -774,15 +782,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -792,8 +802,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -814,7 +825,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -834,6 +845,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -870,24 +883,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS gimpressionist.c: $(gimpressionist_built_sources) diff -uraN gimp-2.2.8/plug-ins/gimpressionist/Paper/Makefile.in gimp-2.2.9/plug-ins/gimpressionist/Paper/Makefile.in --- gimp-2.2.8/plug-ins/gimpressionist/Paper/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/gimpressionist/Paper/Makefile.in 2005-10-27 17:11:50.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/gimpressionist/Paper +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(paperdatadir)" +paperdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(paperdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - paperdatadir = $(gimpdatadir)/gimpressionist/Paper - paperdata_DATA = \ bricks.pgm \ bricks2.pgm \ @@ -382,25 +406,39 @@ stone.pgm \ struc.pgm - EXTRA_DIST = $(paperdata_DATA) -subdir = plug-ins/gimpressionist/Paper -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(paperdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gimpressionist/Paper/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gimpressionist/Paper/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -411,23 +449,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -paperdataDATA_INSTALL = $(INSTALL_DATA) install-paperdataDATA: $(paperdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(paperdatadir) + test -z "$(paperdatadir)" || $(mkdir_p) "$(DESTDIR)$(paperdatadir)" @list='$(paperdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(paperdataDATA_INSTALL) $$d$$p $(DESTDIR)$(paperdatadir)/$$f"; \ - $(paperdataDATA_INSTALL) $$d$$p $(DESTDIR)$(paperdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(paperdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(paperdatadir)/$$f'"; \ + $(paperdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(paperdatadir)/$$f"; \ done uninstall-paperdataDATA: @$(NORMAL_UNINSTALL) @list='$(paperdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(paperdatadir)/$$f"; \ - rm -f $(DESTDIR)$(paperdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(paperdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(paperdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -435,10 +472,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -452,7 +485,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -470,9 +503,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(paperdatadir) + for dir in "$(DESTDIR)$(paperdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -492,7 +526,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -509,6 +543,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -543,13 +579,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-paperdataDATA install-strip \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-info-am uninstall-paperdataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-paperdataDATA \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-info-am \ + uninstall-paperdataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/gimpressionist/Presets/Makefile.in gimp-2.2.9/plug-ins/gimpressionist/Presets/Makefile.in --- gimp-2.2.8/plug-ins/gimpressionist/Presets/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/gimpressionist/Presets/Makefile.in 2005-10-27 17:11:50.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/gimpressionist/Presets +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(presetsdatadir)" +presetsdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(presetsdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - presetsdatadir = $(gimpdatadir)/gimpressionist/Presets - presetsdata_DATA = \ ApplyCanvas \ Ballpark \ @@ -398,25 +422,39 @@ Weave \ Wormcan - EXTRA_DIST = $(presetsdata_DATA) -subdir = plug-ins/gimpressionist/Presets -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(presetsdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/gimpressionist/Presets/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/gimpressionist/Presets/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -427,23 +465,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -presetsdataDATA_INSTALL = $(INSTALL_DATA) install-presetsdataDATA: $(presetsdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(presetsdatadir) + test -z "$(presetsdatadir)" || $(mkdir_p) "$(DESTDIR)$(presetsdatadir)" @list='$(presetsdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(presetsdataDATA_INSTALL) $$d$$p $(DESTDIR)$(presetsdatadir)/$$f"; \ - $(presetsdataDATA_INSTALL) $$d$$p $(DESTDIR)$(presetsdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(presetsdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(presetsdatadir)/$$f'"; \ + $(presetsdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(presetsdatadir)/$$f"; \ done uninstall-presetsdataDATA: @$(NORMAL_UNINSTALL) @list='$(presetsdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(presetsdatadir)/$$f"; \ - rm -f $(DESTDIR)$(presetsdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(presetsdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(presetsdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -451,10 +488,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -468,7 +501,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -486,9 +519,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(presetsdatadir) + for dir in "$(DESTDIR)$(presetsdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -508,7 +542,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -525,6 +559,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -559,14 +595,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-presetsdataDATA \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-info-am \ - uninstall-presetsdataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-presetsdataDATA install-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ + uninstall-info-am uninstall-presetsdataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/help/Makefile.in gimp-2.2.9/plug-ins/help/Makefile.in --- gimp-2.2.8/plug-ins/help/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/help/Makefile.in 2005-10-27 17:11:51.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,53 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = help$(EXEEXT) +noinst_PROGRAMS = gimp-help-lookup$(EXEEXT) +subdir = plug-ins/help +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS) +am_gimp_help_lookup_OBJECTS = domain.$(OBJEXT) locales.$(OBJEXT) \ + gimp-help-lookup.$(OBJEXT) +gimp_help_lookup_OBJECTS = $(am_gimp_help_lookup_OBJECTS) +am__DEPENDENCIES_3 = +gimp_help_lookup_DEPENDENCIES = $(am__DEPENDENCIES_3) +am_help_OBJECTS = domain.$(OBJEXT) locales.$(OBJEXT) help.$(OBJEXT) +help_OBJECTS = $(am_help_OBJECTS) +help_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +help_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_3) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gimp_help_lookup_SOURCES) $(help_SOURCES) +DIST_SOURCES = $(gimp_help_lookup_SOURCES) $(help_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +279,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +330,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +377,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +400,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,18 +417,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_CPPFLAGS = -DDATADIR=\""$(gimpdatadir)"\" - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = help - help_SOURCES = \ domain.c \ domain.h \ @@ -389,13 +430,11 @@ help.c \ help.h - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimp) \ $(libgimpbase) \ @@ -403,9 +442,6 @@ $(RT_LIBS) \ $(INTLLIBS) - -noinst_PROGRAMS = gimp-help-lookup - gimp_help_lookup_SOURCES = \ domain.c \ domain.h \ @@ -414,68 +450,51 @@ help.h \ gimp-help-lookup.c - gimp_help_lookup_LDADD = $(GLIB_LIBS) -subdir = plug-ins/help -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = help$(EXEEXT) -noinst_PROGRAMS = gimp-help-lookup$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS) - -am_gimp_help_lookup_OBJECTS = domain.$(OBJEXT) locales.$(OBJEXT) \ - gimp-help-lookup.$(OBJEXT) -gimp_help_lookup_OBJECTS = $(am_gimp_help_lookup_OBJECTS) -gimp_help_lookup_DEPENDENCIES = -gimp_help_lookup_LDFLAGS = -am_help_OBJECTS = domain.$(OBJEXT) locales.$(OBJEXT) help.$(OBJEXT) -help_OBJECTS = $(am_help_OBJECTS) -help_LDADD = $(LDADD) -help_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -help_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/domain.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp-help-lookup.Po ./$(DEPDIR)/help.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/locales.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gimp_help_lookup_SOURCES) $(help_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(gimp_help_lookup_SOURCES) $(help_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/help/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/help/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -483,8 +502,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -508,7 +527,7 @@ $(LINK) $(help_LDFLAGS) $(help_OBJECTS) $(help_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -519,37 +538,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/locales.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -561,14 +568,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -577,6 +576,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -588,10 +588,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -614,10 +615,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -631,7 +628,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -649,9 +646,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -671,7 +669,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -691,6 +689,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -727,16 +727,16 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool clean-noinstPROGRAMS ctags \ - distclean distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am \ - install-libexecPROGRAMS install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-info-am \ - uninstall-libexecPROGRAMS + distclean distclean-compile distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/helpbrowser/dialog.c gimp-2.2.9/plug-ins/helpbrowser/dialog.c --- gimp-2.2.8/plug-ins/helpbrowser/dialog.c 2005-06-06 17:59:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/helpbrowser/dialog.c 2005-10-20 12:20:16.000000000 +0200 @@ -514,7 +514,16 @@ { if (new_title) { - gchar *title = g_strstrip (g_strdup (new_title)); + gchar *title = g_strdup (new_title); + gchar *c; + + for (c = title; *c; c++) + { + if (*c == '\n' || *c == '\r') + *c = ' '; + } + + title = g_strstrip (title); history_add (GTK_COMBO_BOX (data), current_ref, title); diff -uraN gimp-2.2.8/plug-ins/helpbrowser/Makefile.in gimp-2.2.9/plug-ins/helpbrowser/Makefile.in --- gimp-2.2.8/plug-ins/helpbrowser/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/helpbrowser/Makefile.in 2005-10-27 17:11:51.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = helpbrowser$(EXEEXT) +subdir = plug-ins/helpbrowser +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_helpbrowser_OBJECTS = helpbrowser.$(OBJEXT) dialog.$(OBJEXT) \ + queue.$(OBJEXT) uri.$(OBJEXT) +helpbrowser_OBJECTS = $(am_helpbrowser_OBJECTS) +helpbrowser_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +helpbrowser_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(helpbrowser_SOURCES) +DIST_SOURCES = $(helpbrowser_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +401,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,19 +418,13 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = helpbrowser - helpbrowser_SOURCES = \ helpbrowser.c \ dialog.c \ @@ -391,13 +434,11 @@ uri.c \ uri.h - INCLUDES = \ -I$(top_srcdir) \ $(GTKHTML2_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -408,63 +449,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/helpbrowser -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = helpbrowser$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_helpbrowser_OBJECTS = helpbrowser.$(OBJEXT) dialog.$(OBJEXT) \ - queue.$(OBJEXT) uri.$(OBJEXT) -helpbrowser_OBJECTS = $(am_helpbrowser_OBJECTS) -helpbrowser_LDADD = $(LDADD) -helpbrowser_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -helpbrowser_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/dialog.Po ./$(DEPDIR)/helpbrowser.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/queue.Po ./$(DEPDIR)/uri.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(helpbrowser_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(helpbrowser_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/helpbrowser/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/helpbrowser/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -472,8 +500,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -487,7 +515,7 @@ $(LINK) $(helpbrowser_LDFLAGS) $(helpbrowser_OBJECTS) $(helpbrowser_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -498,37 +526,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uri.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -540,14 +556,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -556,6 +564,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -567,10 +576,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -593,10 +603,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -610,7 +616,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -628,9 +634,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -650,7 +657,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -670,6 +677,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -707,8 +716,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/ifscompose/Makefile.in gimp-2.2.9/plug-ins/ifscompose/Makefile.in --- gimp-2.2.8/plug-ins/ifscompose/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/ifscompose/Makefile.in 2005-10-27 17:11:51.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = ifscompose$(EXEEXT) +subdir = plug-ins/ifscompose +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_ifscompose_OBJECTS = ifscompose.$(OBJEXT) \ + ifscompose_utils.$(OBJEXT) ifscompose_storage.$(OBJEXT) +ifscompose_OBJECTS = $(am_ifscompose_OBJECTS) +ifscompose_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +ifscompose_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(ifscompose_SOURCES) +DIST_SOURCES = $(ifscompose_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +401,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,34 +418,25 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = ifscompose - ifscompose_SOURCES = \ ifscompose.c \ ifscompose.h \ ifscompose_utils.c \ ifscompose_storage.c - EXTRA_DIST = README.ifscompose - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -407,64 +447,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/ifscompose -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = ifscompose$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_ifscompose_OBJECTS = ifscompose.$(OBJEXT) ifscompose_utils.$(OBJEXT) \ - ifscompose_storage.$(OBJEXT) -ifscompose_OBJECTS = $(am_ifscompose_OBJECTS) -ifscompose_LDADD = $(LDADD) -ifscompose_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -ifscompose_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ifscompose.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/ifscompose_storage.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/ifscompose_utils.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(ifscompose_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(ifscompose_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/ifscompose/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/ifscompose/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -472,8 +498,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -487,7 +513,7 @@ $(LINK) $(ifscompose_LDFLAGS) $(ifscompose_OBJECTS) $(ifscompose_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -497,37 +523,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ifscompose_utils.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -539,14 +553,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -555,6 +561,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -566,10 +573,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -592,10 +600,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -609,7 +613,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -627,9 +631,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -649,7 +654,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -669,6 +674,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -706,8 +713,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/imagemap/images/Makefile.in gimp-2.2.9/plug-ins/imagemap/images/Makefile.in --- gimp-2.2.8/plug-ins/imagemap/images/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/imagemap/images/Makefile.in 2005-10-27 17:11:52.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/imagemap/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +248,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +299,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +346,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +386,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - STOCK_IMAGES = \ stock-arrow.png \ stock-circle.png \ @@ -382,28 +399,41 @@ stock-to-back.png \ stock-to-front.png - EXTRA_DIST = $(STOCK_IMAGES) - noinst_DATA = imap-stock-pixbufs.h CLEANFILES = $(noinst_DATA) stock-icons.list -subdir = plug-ins/imagemap/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/imagemap/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/imagemap/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -420,10 +450,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -437,7 +463,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -455,7 +481,6 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: install: install-am install-exec: install-exec-am @@ -477,7 +502,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -494,6 +519,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -528,10 +555,10 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am diff -uraN gimp-2.2.8/plug-ins/imagemap/imap_csim_parse.c gimp-2.2.9/plug-ins/imagemap/imap_csim_parse.c --- gimp-2.2.8/plug-ins/imagemap/imap_csim_parse.c 2004-05-20 22:50:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/imagemap/imap_csim_parse.c 2005-08-15 12:07:04.000000000 +0200 @@ -1,42 +1,125 @@ -/* A Bison parser, made from imap_csim.y - by GNU bison 1.35. */ +/* A Bison parser, made by GNU Bison 2.0. */ -#define YYBISON 1 /* Identify Bison output. */ +/* Skeleton parser for Yacc-like parsing with Bison, + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. + 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, 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, when this file is copied by Bison into a + Bison output file, you may use that output file without restriction. + This special exception was added by the Free Software Foundation + in version 1.24 of Bison. */ + +/* Written by Richard Stallman by simplifying the original so called + ``semantic'' parser. */ + +/* All symbols defined below should begin with yy or YY, to avoid + infringing on user name space. This should be done even for local + variables, as they might otherwise be expanded by user macros. + There are some unavoidable exceptions within include files to + define necessary library symbols; they are noted "INFRINGES ON + USER NAME SPACE" below. */ + +/* Identify Bison output. */ +#define YYBISON 1 + +/* Skeleton name. */ +#define YYSKELETON_NAME "yacc.c" + +/* Pure parsers. */ +#define YYPURE 0 + +/* Using locations. */ +#define YYLSP_NEEDED 0 + +/* Substitute the variable and function names. */ #define yyparse csim_parse -#define yylex csim_lex +#define yylex csim_lex #define yyerror csim_error -#define yylval csim_lval -#define yychar csim_char +#define yylval csim_lval +#define yychar csim_char #define yydebug csim_debug #define yynerrs csim_nerrs -# define IMG 257 -# define SRC 258 -# define WIDTH 259 -# define HEIGHT 260 -# define BORDER 261 -# define USEMAP 262 -# define START_MAP 263 -# define END_MAP 264 -# define NAME 265 -# define AREA 266 -# define SHAPE 267 -# define COORDS 268 -# define ALT 269 -# define HREF 270 -# define NOHREF 271 -# define TARGET 272 -# define ONMOUSEOVER 273 -# define ONMOUSEOUT 274 -# define ONFOCUS 275 -# define ONBLUR 276 -# define AUTHOR 277 -# define DESCRIPTION 278 -# define BEGIN_COMMENT 279 -# define END_COMMENT 280 -# define FLOAT 281 -# define STRING 282 + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + IMG = 258, + SRC = 259, + WIDTH = 260, + HEIGHT = 261, + BORDER = 262, + USEMAP = 263, + START_MAP = 264, + END_MAP = 265, + NAME = 266, + AREA = 267, + SHAPE = 268, + COORDS = 269, + ALT = 270, + HREF = 271, + NOHREF = 272, + TARGET = 273, + ONMOUSEOVER = 274, + ONMOUSEOUT = 275, + ONFOCUS = 276, + ONBLUR = 277, + AUTHOR = 278, + DESCRIPTION = 279, + BEGIN_COMMENT = 280, + END_COMMENT = 281, + FLOAT = 282, + STRING = 283 + }; +#endif +#define IMG 258 +#define SRC 259 +#define WIDTH 260 +#define HEIGHT 261 +#define BORDER 262 +#define USEMAP 263 +#define START_MAP 264 +#define END_MAP 265 +#define NAME 266 +#define AREA 267 +#define SHAPE 268 +#define COORDS 269 +#define ALT 270 +#define HREF 271 +#define NOHREF 272 +#define TARGET 273 +#define ONMOUSEOVER 274 +#define ONMOUSEOUT 275 +#define ONFOCUS 276 +#define ONBLUR 277 +#define AUTHOR 278 +#define DESCRIPTION 279 +#define BEGIN_COMMENT 280 +#define END_COMMENT 281 +#define FLOAT 282 +#define STRING 283 + + + + +/* Copy the first part of user declarations. */ #line 1 "imap_csim.y" /* @@ -44,7 +127,7 @@ * * Generates clickable image maps. * - * Copyright (C) 1998-2003 Maurits Rijk lpeek.mrijk@consunet.nl + * Copyright (C) 1998-2005 Maurits Rijk lpeek.mrijk@consunet.nl * * 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 @@ -83,281 +166,59 @@ static MapInfo_t *_map_info; -#line 47 "imap_csim.y" -#ifndef YYSTYPE -typedef union { - int val; - double value; - char id[256]; -} yystype; -# define YYSTYPE yystype -# define YYSTYPE_IS_TRIVIAL 1 -#endif + +/* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif - - -#define YYFINAL 106 -#define YYFLAG -32768 -#define YYNTBASE 33 - -/* YYTRANSLATE(YYLEX) -- Bison token number corresponding to YYLEX. */ -#define YYTRANSLATE(x) ((unsigned)(x) <= 282 ? yytranslate[x] : 63) - -/* YYTRANSLATE[YYLEX] -- Bison token number corresponding to YYLEX. */ -static const char yytranslate[] = -{ - 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 32, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 29, 30, 31, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 1, 3, 4, 5, - 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28 -}; - -#if YYDEBUG -static const short yyprhs[] = -{ - 0, 0, 6, 14, 15, 18, 20, 22, 26, 30, - 34, 38, 42, 44, 46, 53, 54, 57, 59, 61, - 63, 67, 71, 75, 76, 79, 84, 86, 89, 90, - 93, 95, 97, 99, 101, 103, 105, 107, 109, 111, - 113, 117, 121, 125, 128, 129, 132, 136, 140, 144, - 148, 152, 156 -}; -static const short yyrhs[] = -{ - 34, 40, 41, 46, 62, 0, 29, 3, 4, 30, - 28, 35, 48, 0, 0, 35, 36, 0, 37, 0, - 38, 0, 7, 30, 39, 0, 8, 30, 28, 0, - 15, 30, 28, 0, 5, 30, 39, 0, 6, 30, - 39, 0, 27, 0, 28, 0, 29, 9, 11, 30, - 28, 31, 0, 0, 41, 42, 0, 44, 0, 45, - 0, 43, 0, 25, 28, 26, 0, 23, 28, 26, - 0, 24, 28, 26, 0, 0, 46, 47, 0, 29, - 12, 49, 48, 0, 31, 0, 32, 31, 0, 0, - 49, 50, 0, 51, 0, 52, 0, 53, 0, 54, - 0, 56, 0, 57, 0, 58, 0, 59, 0, 60, - 0, 61, 0, 13, 30, 28, 0, 14, 30, 28, - 0, 16, 30, 28, 0, 17, 55, 0, 0, 30, - 28, 0, 15, 30, 28, 0, 18, 30, 28, 0, - 19, 30, 28, 0, 20, 30, 28, 0, 21, 30, - 28, 0, 22, 30, 28, 0, 29, 10, 31, 0 -}; - -#endif - -#if YYDEBUG -/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ -static const short yyrline[] = -{ - 0, 64, 67, 73, 74, 77, 78, 79, 80, 81, - 84, 90, 96, 100, 106, 112, 113, 116, 117, 118, - 121, 126, 133, 143, 144, 147, 154, 155, 158, 159, - 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, - 174, 191, 249, 259, 264, 265, 270, 276, 282, 288, - 294, 300, 306 -}; +/* Enabling verbose error messages. */ +#ifdef YYERROR_VERBOSE +# undef YYERROR_VERBOSE +# define YYERROR_VERBOSE 1 +#else +# define YYERROR_VERBOSE 0 #endif - -#if (YYDEBUG) || defined YYERROR_VERBOSE - -/* YYTNAME[TOKEN_NUM] -- String name of the token TOKEN_NUM. */ -static const char *const yytname[] = -{ - "$", "error", "$undefined.", "IMG", "SRC", "WIDTH", "HEIGHT", "BORDER", - "USEMAP", "START_MAP", "END_MAP", "NAME", "AREA", "SHAPE", "COORDS", - "ALT", "HREF", "NOHREF", "TARGET", "ONMOUSEOVER", "ONMOUSEOUT", - "ONFOCUS", "ONBLUR", "AUTHOR", "DESCRIPTION", "BEGIN_COMMENT", - "END_COMMENT", "FLOAT", "STRING", "'<'", "'='", "'>'", "'/'", - "csim_file", "image", "image_tags", "image_tag", "image_width", - "image_height", "integer_value", "start_map", "comment_lines", - "comment_line", "real_comment", "author_line", "description_line", - "area_list", "area", "xhtml_close", "tag_list", "tag", "shape_tag", - "coords_tag", "href_tag", "nohref_tag", "optional_value", "alt_tag", - "target_tag", "onmouseover_tag", "onmouseout_tag", "onfocus_tag", - "onblur_tag", "end_map", 0 -}; +#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) +#line 47 "imap_csim.y" +typedef union YYSTYPE { + int val; + double value; + char id[1024]; +} YYSTYPE; +/* Line 190 of yacc.c. */ +#line 192 "y.tab.c" +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif -/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ -static const short yyr1[] = -{ - 0, 33, 34, 35, 35, 36, 36, 36, 36, 36, - 37, 38, 39, 39, 40, 41, 41, 42, 42, 42, - 43, 44, 45, 46, 46, 47, 48, 48, 49, 49, - 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, - 51, 52, 53, 54, 55, 55, 56, 57, 58, 59, - 60, 61, 62 -}; - -/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ -static const short yyr2[] = -{ - 0, 5, 7, 0, 2, 1, 1, 3, 3, 3, - 3, 3, 1, 1, 6, 0, 2, 1, 1, 1, - 3, 3, 3, 0, 2, 4, 1, 2, 0, 2, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 3, 3, 3, 2, 0, 2, 3, 3, 3, 3, - 3, 3, 3 -}; - -/* YYDEFACT[S] -- default rule to reduce with in state S when YYTABLE - doesn't specify something else to do. Zero means the default is an - error. */ -static const short yydefact[] = -{ - 0, 0, 0, 0, 0, 15, 0, 0, 23, 0, - 0, 0, 0, 0, 16, 19, 17, 18, 0, 3, - 0, 0, 0, 0, 0, 24, 1, 0, 0, 21, - 22, 20, 0, 28, 0, 0, 0, 0, 0, 26, - 0, 4, 5, 6, 2, 14, 52, 0, 0, 0, - 0, 0, 0, 27, 0, 0, 0, 0, 44, 0, - 0, 0, 0, 0, 25, 29, 30, 31, 32, 33, - 34, 35, 36, 37, 38, 39, 12, 13, 10, 11, - 7, 8, 9, 0, 0, 0, 0, 0, 43, 0, - 0, 0, 0, 0, 40, 41, 46, 42, 45, 47, - 48, 49, 50, 51, 0, 0, 0 -}; -static const short yydefgoto[] = -{ - 104, 2, 27, 41, 42, 43, 78, 5, 8, 14, - 15, 16, 17, 18, 25, 44, 47, 65, 66, 67, - 68, 69, 88, 70, 71, 72, 73, 74, 75, 26 -}; -static const short yypact[] = -{ - -21, 22, -1, 27, 23,-32768, 3, 24, -19, 6, - 7, 8, 10, 11,-32768,-32768,-32768,-32768, 12,-32768, - 14, 17, 18, 19, -3,-32768,-32768, -5, 9,-32768, - -32768,-32768, 15,-32768, 20, 21, 25, 26, 28,-32768, - 16,-32768,-32768,-32768,-32768,-32768,-32768, -2, -6, -6, - -6, 29, 31,-32768, 30, 32, 33, 34, 35, 36, - 37, 38, 39, 40,-32768,-32768,-32768,-32768,-32768,-32768, - -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768, - -32768,-32768,-32768, 43, 44, 45, 46, 47,-32768, 48, - 49, 50, 51, 52,-32768,-32768,-32768,-32768,-32768,-32768, - -32768,-32768,-32768,-32768, 53, 54,-32768 -}; +/* Copy the second part of user declarations. */ -static const short yypgoto[] = -{ - -32768,-32768,-32768,-32768,-32768,-32768, -26,-32768,-32768,-32768, - -32768,-32768,-32768,-32768,-32768, 1,-32768,-32768,-32768,-32768, - -32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768,-32768 -}; +/* Line 213 of yacc.c. */ +#line 204 "y.tab.c" -#define YYLAST 80 +#if ! defined (yyoverflow) || YYERROR_VERBOSE - -static const short yytable[] = -{ - 34, 35, 36, 37, 11, 12, 13, 32, 1, 33, - 38, 54, 55, 56, 57, 58, 59, 60, 61, 62, - 63, 76, 77, 79, 80, 3, 39, 40, 4, 39, - 40, 6, 7, 9, 19, 10, 21, 20, 22, 23, - 45, 24, 28, 29, 30, 31, 46, 53, 64, 0, - 48, 49, 0, 105, 106, 50, 51, 81, 52, 82, - 83, 0, 84, 85, 86, 87, 89, 90, 91, 92, - 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, - 103 -}; - -static const short yycheck[] = -{ - 5, 6, 7, 8, 23, 24, 25, 10, 29, 12, - 15, 13, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 27, 28, 49, 50, 3, 31, 32, 29, 31, - 32, 4, 9, 30, 28, 11, 28, 30, 28, 28, - 31, 29, 28, 26, 26, 26, 31, 31, 47, -1, - 30, 30, -1, 0, 0, 30, 30, 28, 30, 28, - 30, -1, 30, 30, 30, 30, 30, 30, 30, 30, - 30, 28, 28, 28, 28, 28, 28, 28, 28, 28, - 28 -}; -/* -*-C-*- Note some compilers choke on comments on `#line' lines. */ -#line 3 "/usr/share/bison/bison.simple" - -/* Skeleton output parser for bison, - - Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 Free Software - Foundation, Inc. - - 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, 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, when this file is copied by Bison into a - Bison output file, you may use that output file without restriction. - This special exception was added by the Free Software Foundation - in version 1.24 of Bison. */ - -/* This is the parser code that is written into each bison parser when - the %semantic_parser declaration is not specified in the grammar. - It was written by Richard Stallman by simplifying the hairy parser - used when %semantic_parser is specified. */ - -/* All symbols defined below should begin with yy or YY, to avoid - infringing on user name space. This should be done even for local - variables, as they might otherwise be expanded by user macros. - There are some unavoidable exceptions within include files to - define necessary library symbols; they are noted "INFRINGES ON - USER NAME SPACE" below. */ - -#if ! defined (yyoverflow) || defined (YYERROR_VERBOSE) +# ifndef YYFREE +# define YYFREE free +# endif +# ifndef YYMALLOC +# define YYMALLOC malloc +# endif /* The parser invokes alloca or malloc; define the necessary symbols. */ -# if YYSTACK_USE_ALLOCA -# define YYSTACK_ALLOC alloca -# else -# ifndef YYSTACK_USE_ALLOCA -# if defined (alloca) || defined (_ALLOCA_H) -# define YYSTACK_ALLOC alloca +# ifdef YYSTACK_USE_ALLOCA +# if YYSTACK_USE_ALLOCA +# ifdef __GNUC__ +# define YYSTACK_ALLOC __builtin_alloca # else -# ifdef __GNUC__ -# define YYSTACK_ALLOC __builtin_alloca -# endif +# define YYSTACK_ALLOC alloca # endif # endif # endif @@ -370,45 +231,36 @@ # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # endif -# define YYSTACK_ALLOC malloc -# define YYSTACK_FREE free +# define YYSTACK_ALLOC YYMALLOC +# define YYSTACK_FREE YYFREE # endif -#endif /* ! defined (yyoverflow) || defined (YYERROR_VERBOSE) */ +#endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */ #if (! defined (yyoverflow) \ && (! defined (__cplusplus) \ - || (YYLTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) + || (defined (YYSTYPE_IS_TRIVIAL) && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { - short yyss; + short int yyss; YYSTYPE yyvs; -# if YYLSP_NEEDED - YYLTYPE yyls; -# endif -}; + }; /* The size of the maximum gap between one aligned stack and the next. */ -# define YYSTACK_GAP_MAX (sizeof (union yyalloc) - 1) +# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ -# if YYLSP_NEEDED -# define YYSTACK_BYTES(N) \ - ((N) * (sizeof (short) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \ - + 2 * YYSTACK_GAP_MAX) -# else -# define YYSTACK_BYTES(N) \ - ((N) * (sizeof (short) + sizeof (YYSTYPE)) \ - + YYSTACK_GAP_MAX) -# endif +# define YYSTACK_BYTES(N) \ + ((N) * (sizeof (short int) + sizeof (YYSTYPE)) \ + + YYSTACK_GAP_MAXIMUM) /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY -# if 1 < __GNUC__ +# if defined (__GNUC__) && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else @@ -434,13 +286,276 @@ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack, Stack, yysize); \ Stack = &yyptr->Stack; \ - yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAX; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif +#if defined (__STDC__) || defined (__cplusplus) + typedef signed char yysigned_char; +#else + typedef short int yysigned_char; +#endif + +/* YYFINAL -- State number of the termination state. */ +#define YYFINAL 5 +/* YYLAST -- Last index in YYTABLE. */ +#define YYLAST 84 + +/* YYNTOKENS -- Number of terminals. */ +#define YYNTOKENS 33 +/* YYNNTS -- Number of nonterminals. */ +#define YYNNTS 31 +/* YYNRULES -- Number of rules. */ +#define YYNRULES 53 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 106 + +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ +#define YYUNDEFTOK 2 +#define YYMAXUTOK 283 + +#define YYTRANSLATE(YYX) \ + ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) + +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ +static const unsigned char yytranslate[] = +{ + 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 32, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 29, 30, 31, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28 +}; + +#if YYDEBUG +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const unsigned char yyprhs[] = +{ + 0, 0, 3, 9, 17, 18, 21, 23, 25, 29, + 33, 37, 41, 45, 47, 49, 56, 57, 60, 62, + 64, 66, 70, 74, 78, 79, 82, 87, 89, 92, + 93, 96, 98, 100, 102, 104, 106, 108, 110, 112, + 114, 116, 120, 124, 128, 131, 132, 135, 139, 143, + 147, 151, 155, 159 +}; + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const yysigned_char yyrhs[] = +{ + 34, 0, -1, 35, 41, 42, 47, 63, -1, 29, + 3, 4, 30, 28, 36, 49, -1, -1, 36, 37, + -1, 38, -1, 39, -1, 7, 30, 40, -1, 8, + 30, 28, -1, 15, 30, 28, -1, 5, 30, 40, + -1, 6, 30, 40, -1, 27, -1, 28, -1, 29, + 9, 11, 30, 28, 31, -1, -1, 42, 43, -1, + 45, -1, 46, -1, 44, -1, 25, 28, 26, -1, + 23, 28, 26, -1, 24, 28, 26, -1, -1, 47, + 48, -1, 29, 12, 50, 49, -1, 31, -1, 32, + 31, -1, -1, 50, 51, -1, 52, -1, 53, -1, + 54, -1, 55, -1, 57, -1, 58, -1, 59, -1, + 60, -1, 61, -1, 62, -1, 13, 30, 28, -1, + 14, 30, 28, -1, 16, 30, 28, -1, 17, 56, + -1, -1, 30, 28, -1, 15, 30, 28, -1, 18, + 30, 28, -1, 19, 30, 28, -1, 20, 30, 28, + -1, 21, 30, 28, -1, 22, 30, 28, -1, 29, + 10, 31, -1 +}; + +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ +static const unsigned short int yyrline[] = +{ + 0, 64, 64, 67, 73, 74, 77, 78, 79, 80, + 81, 84, 90, 96, 100, 106, 112, 113, 116, 117, + 118, 121, 126, 133, 143, 144, 147, 154, 155, 158, + 159, 162, 163, 164, 165, 166, 167, 168, 169, 170, + 171, 174, 191, 249, 259, 264, 265, 270, 276, 282, + 288, 294, 300, 306 +}; +#endif + +#if YYDEBUG || YYERROR_VERBOSE +/* YYTNME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + First, the terminals, then, starting at YYNTOKENS, nonterminals. */ +static const char *const yytname[] = +{ + "$end", "error", "$undefined", "IMG", "SRC", "WIDTH", "HEIGHT", + "BORDER", "USEMAP", "START_MAP", "END_MAP", "NAME", "AREA", "SHAPE", + "COORDS", "ALT", "HREF", "NOHREF", "TARGET", "ONMOUSEOVER", "ONMOUSEOUT", + "ONFOCUS", "ONBLUR", "AUTHOR", "DESCRIPTION", "BEGIN_COMMENT", + "END_COMMENT", "FLOAT", "STRING", "'<'", "'='", "'>'", "'/'", "$accept", + "csim_file", "image", "image_tags", "image_tag", "image_width", + "image_height", "integer_value", "start_map", "comment_lines", + "comment_line", "real_comment", "author_line", "description_line", + "area_list", "area", "xhtml_close", "tag_list", "tag", "shape_tag", + "coords_tag", "href_tag", "nohref_tag", "optional_value", "alt_tag", + "target_tag", "onmouseover_tag", "onmouseout_tag", "onfocus_tag", + "onblur_tag", "end_map", 0 +}; +#endif + +# ifdef YYPRINT +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ +static const unsigned short int yytoknum[] = +{ + 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, + 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, + 275, 276, 277, 278, 279, 280, 281, 282, 283, 60, + 61, 62, 47 +}; +# endif + +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const unsigned char yyr1[] = +{ + 0, 33, 34, 35, 36, 36, 37, 37, 37, 37, + 37, 38, 39, 40, 40, 41, 42, 42, 43, 43, + 43, 44, 45, 46, 47, 47, 48, 49, 49, 50, + 50, 51, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 52, 53, 54, 55, 56, 56, 57, 58, 59, + 60, 61, 62, 63 +}; + +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const unsigned char yyr2[] = +{ + 0, 2, 5, 7, 0, 2, 1, 1, 3, 3, + 3, 3, 3, 1, 1, 6, 0, 2, 1, 1, + 1, 3, 3, 3, 0, 2, 4, 1, 2, 0, + 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 3, 3, 3, 2, 0, 2, 3, 3, 3, + 3, 3, 3, 3 +}; + +/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state + STATE-NUM when YYTABLE doesn't specify something else to do. Zero + means the default is an error. */ +static const unsigned char yydefact[] = +{ + 0, 0, 0, 0, 0, 1, 0, 16, 0, 0, + 24, 0, 0, 0, 0, 0, 17, 20, 18, 19, + 0, 4, 0, 0, 0, 0, 0, 25, 2, 0, + 0, 22, 23, 21, 0, 29, 0, 0, 0, 0, + 0, 27, 0, 5, 6, 7, 3, 15, 53, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, + 45, 0, 0, 0, 0, 0, 26, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 13, 14, + 11, 12, 8, 9, 10, 0, 0, 0, 0, 0, + 44, 0, 0, 0, 0, 0, 41, 42, 47, 43, + 46, 48, 49, 50, 51, 52 +}; + +/* YYDEFGOTO[NTERM-NUM]. */ +static const yysigned_char yydefgoto[] = +{ + -1, 2, 3, 29, 43, 44, 45, 80, 7, 10, + 16, 17, 18, 19, 20, 27, 46, 49, 67, 68, + 69, 70, 71, 90, 72, 73, 74, 75, 76, 77, + 28 +}; + +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -29 +static const yysigned_char yypact[] = +{ + -21, 22, 28, 2, 29, -29, 23, -29, 4, 24, + -19, 8, 7, 10, 11, 12, -29, -29, -29, -29, + 13, -29, 15, 18, 19, 20, -3, -29, -29, -5, + 16, -29, -29, -29, 17, -29, 21, 25, 26, 27, + 30, -29, 31, -29, -29, -29, -29, -29, -29, -2, + -6, -6, -6, 33, 35, -29, 34, 36, 37, 38, + 39, 40, 41, 42, 43, 44, -29, -29, -29, -29, + -29, -29, -29, -29, -29, -29, -29, -29, -29, -29, + -29, -29, -29, -29, -29, 47, 48, 49, 50, 51, + -29, 52, 53, 54, 55, 56, -29, -29, -29, -29, + -29, -29, -29, -29, -29, -29 +}; + +/* YYPGOTO[NTERM-NUM]. */ +static const yysigned_char yypgoto[] = +{ + -29, -29, -29, -29, -29, -29, -29, -28, -29, -29, + -29, -29, -29, -29, -29, -29, -8, -29, -29, -29, + -29, -29, -29, -29, -29, -29, -29, -29, -29, -29, + -29 +}; + +/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If + positive, shift that token. If negative, reduce the rule which + number is the opposite. If zero, do what YYDEFACT says. + If YYTABLE_NINF, syntax error. */ +#define YYTABLE_NINF -1 +static const unsigned char yytable[] = +{ + 36, 37, 38, 39, 13, 14, 15, 34, 1, 35, + 40, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 78, 79, 81, 82, 4, 41, 42, 5, 41, + 42, 6, 9, 8, 11, 12, 21, 22, 23, 24, + 25, 66, 26, 30, 31, 32, 33, 47, 48, 0, + 0, 50, 0, 0, 0, 51, 52, 53, 0, 0, + 54, 83, 55, 84, 85, 0, 86, 87, 88, 89, + 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, + 101, 102, 103, 104, 105 +}; + +static const yysigned_char yycheck[] = +{ + 5, 6, 7, 8, 23, 24, 25, 10, 29, 12, + 15, 13, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 27, 28, 51, 52, 3, 31, 32, 0, 31, + 32, 29, 9, 4, 30, 11, 28, 30, 28, 28, + 28, 49, 29, 28, 26, 26, 26, 31, 31, -1, + -1, 30, -1, -1, -1, 30, 30, 30, -1, -1, + 30, 28, 31, 28, 30, -1, 30, 30, 30, 30, + 30, 30, 30, 30, 30, 28, 28, 28, 28, 28, + 28, 28, 28, 28, 28 +}; + +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const unsigned char yystos[] = +{ + 0, 29, 34, 35, 3, 0, 29, 41, 4, 9, + 42, 30, 11, 23, 24, 25, 43, 44, 45, 46, + 47, 28, 30, 28, 28, 28, 29, 48, 63, 36, + 28, 26, 26, 26, 10, 12, 5, 6, 7, 8, + 15, 31, 32, 37, 38, 39, 49, 31, 31, 50, + 30, 30, 30, 30, 30, 31, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 49, 51, 52, 53, + 54, 55, 57, 58, 59, 60, 61, 62, 27, 28, + 40, 40, 40, 28, 28, 30, 30, 30, 30, 30, + 56, 30, 30, 30, 30, 30, 28, 28, 28, 28, + 28, 28, 28, 28, 28, 28 +}; #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__) # define YYSIZE_T __SIZE_TYPE__ @@ -460,71 +575,93 @@ #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) -#define YYEMPTY -2 +#define YYEMPTY (-2) #define YYEOF 0 + #define YYACCEPT goto yyacceptlab -#define YYABORT goto yyabortlab -#define YYERROR goto yyerrlab1 +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab + + /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. */ + #define YYFAIL goto yyerrlab + #define YYRECOVERING() (!!yyerrstatus) + #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ - yychar1 = YYTRANSLATE (yychar); \ + yytoken = YYTRANSLATE (yychar); \ YYPOPSTACK; \ goto yybackup; \ } \ else \ { \ - yyerror ("syntax error: cannot back up"); \ + yyerror ("syntax error: cannot back up");\ YYERROR; \ } \ while (0) + #define YYTERROR 1 #define YYERRCODE 256 -/* YYLLOC_DEFAULT -- Compute the default location (before the actions - are run). - - When YYLLOC_DEFAULT is run, CURRENT is set the location of the - first token. By default, to implement support for ranges, extend - its range to the last symbol. */ +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT -# define YYLLOC_DEFAULT(Current, Rhs, N) \ - Current.last_line = Rhs[N].last_line; \ - Current.last_column = Rhs[N].last_column; +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (N) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (0) #endif -/* YYLEX -- calling `yylex' with the right arguments. */ +/* YY_LOCATION_PRINT -- Print the location on the stream. + This macro was not mandated originally: define only if we know + we won't break user code: when these are the locations we know. */ + +#ifndef YY_LOCATION_PRINT +# if YYLTYPE_IS_TRIVIAL +# define YY_LOCATION_PRINT(File, Loc) \ + fprintf (File, "%d.%d-%d.%d", \ + (Loc).first_line, (Loc).first_column, \ + (Loc).last_line, (Loc).last_column) +# else +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# endif +#endif -#if YYPURE -# if YYLSP_NEEDED -# ifdef YYLEX_PARAM -# define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM) -# else -# define YYLEX yylex (&yylval, &yylloc) -# endif -# else /* !YYLSP_NEEDED */ -# ifdef YYLEX_PARAM -# define YYLEX yylex (&yylval, YYLEX_PARAM) -# else -# define YYLEX yylex (&yylval) -# endif -# endif /* !YYLSP_NEEDED */ -#else /* !YYPURE */ -# define YYLEX yylex () -#endif /* !YYPURE */ +/* YYLEX -- calling `yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX yylex (YYLEX_PARAM) +#else +# define YYLEX yylex () +#endif /* Enable debugging if requested. */ #if YYDEBUG @@ -539,13 +676,86 @@ if (yydebug) \ YYFPRINTF Args; \ } while (0) + +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + yysymprint (stderr, \ + Type, Value); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (0) + +/*------------------------------------------------------------------. +| yy_stack_print -- Print the state stack from its BOTTOM up to its | +| TOP (included). | +`------------------------------------------------------------------*/ + +#if defined (__STDC__) || defined (__cplusplus) +static void +yy_stack_print (short int *bottom, short int *top) +#else +static void +yy_stack_print (bottom, top) + short int *bottom; + short int *top; +#endif +{ + YYFPRINTF (stderr, "Stack now"); + for (/* Nothing. */; bottom <= top; ++bottom) + YYFPRINTF (stderr, " %d", *bottom); + YYFPRINTF (stderr, "\n"); +} + +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (yydebug) \ + yy_stack_print ((Bottom), (Top)); \ +} while (0) + + +/*------------------------------------------------. +| Report that the YYRULE is going to be reduced. | +`------------------------------------------------*/ + +#if defined (__STDC__) || defined (__cplusplus) +static void +yy_reduce_print (int yyrule) +#else +static void +yy_reduce_print (yyrule) + int yyrule; +#endif +{ + int yyi; + unsigned int yylno = yyrline[yyrule]; + YYFPRINTF (stderr, "Reducing stack by rule %d (line %u), ", + yyrule - 1, yylno); + /* Print the symbols being reduced, and their result. */ + for (yyi = yyprhs[yyrule]; 0 <= yyrhs[yyi]; yyi++) + YYFPRINTF (stderr, "%s ", yytname [yyrhs[yyi]]); + YYFPRINTF (stderr, "-> %s\n", yytname [yyr1[yyrule]]); +} + +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (yydebug) \ + yy_reduce_print (Rule); \ +} while (0) + /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) +# define YY_STACK_PRINT(Bottom, Top) +# define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ + /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 @@ -558,15 +768,13 @@ SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ -#if YYMAXDEPTH == 0 -# undef YYMAXDEPTH -#endif - #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif + -#ifdef YYERROR_VERBOSE + +#if YYERROR_VERBOSE # ifndef yystrlen # if defined (__GLIBC__) && defined (_STRING_H) @@ -616,86 +824,139 @@ } # endif # endif -#endif + +#endif /* !YYERROR_VERBOSE */ + -#line 315 "/usr/share/bison/bison.simple" +#if YYDEBUG +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ + +#if defined (__STDC__) || defined (__cplusplus) +static void +yysymprint (FILE *yyoutput, int yytype, YYSTYPE *yyvaluep) +#else +static void +yysymprint (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE *yyvaluep; +#endif +{ + /* Pacify ``unused variable'' warnings. */ + (void) yyvaluep; + + if (yytype < YYNTOKENS) + YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); + else + YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); -/* The user can define YYPARSE_PARAM as the name of an argument to be passed - into yyparse. The argument should have type void *. - It should actually point to an object. - Grammar actions can access the variable by casting it - to the proper pointer type. */ + +# ifdef YYPRINT + if (yytype < YYNTOKENS) + YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); +# endif + switch (yytype) + { + default: + break; + } + YYFPRINTF (yyoutput, ")"); +} + +#endif /* ! YYDEBUG */ +/*-----------------------------------------------. +| Release the memory associated to this symbol. | +`-----------------------------------------------*/ + +#if defined (__STDC__) || defined (__cplusplus) +static void +yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) +#else +static void +yydestruct (yymsg, yytype, yyvaluep) + const char *yymsg; + int yytype; + YYSTYPE *yyvaluep; +#endif +{ + /* Pacify ``unused variable'' warnings. */ + (void) yyvaluep; + + if (!yymsg) + yymsg = "Deleting"; + YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); + + switch (yytype) + { + + default: + break; + } +} + + +/* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM # if defined (__STDC__) || defined (__cplusplus) -# define YYPARSE_PARAM_ARG void *YYPARSE_PARAM -# define YYPARSE_PARAM_DECL +int yyparse (void *YYPARSE_PARAM); # else -# define YYPARSE_PARAM_ARG YYPARSE_PARAM -# define YYPARSE_PARAM_DECL void *YYPARSE_PARAM; +int yyparse (); # endif -#else /* !YYPARSE_PARAM */ -# define YYPARSE_PARAM_ARG -# define YYPARSE_PARAM_DECL -#endif /* !YYPARSE_PARAM */ - -/* Prevent warning if -Wstrict-prototypes. */ -#ifdef __GNUC__ -# ifdef YYPARSE_PARAM -int yyparse (void *); -# else +#else /* ! YYPARSE_PARAM */ +#if defined (__STDC__) || defined (__cplusplus) int yyparse (void); -# endif +#else +int yyparse (); #endif +#endif /* ! YYPARSE_PARAM */ -/* YY_DECL_VARIABLES -- depending whether we use a pure parser, - variables are global, or local to YYPARSE. */ -#define YY_DECL_NON_LSP_VARIABLES \ -/* The lookahead symbol. */ \ -int yychar; \ - \ -/* The semantic value of the lookahead symbol. */ \ -YYSTYPE yylval; \ - \ -/* Number of parse errors so far. */ \ -int yynerrs; -#if YYLSP_NEEDED -# define YY_DECL_VARIABLES \ -YY_DECL_NON_LSP_VARIABLES \ - \ -/* Location data for the lookahead symbol. */ \ -YYLTYPE yylloc; -#else -# define YY_DECL_VARIABLES \ -YY_DECL_NON_LSP_VARIABLES -#endif +/* The look-ahead symbol. */ +int yychar; + +/* The semantic value of the look-ahead symbol. */ +YYSTYPE yylval; + +/* Number of syntax errors so far. */ +int yynerrs; -/* If nonreentrant, generate the variables here. */ -#if !YYPURE -YY_DECL_VARIABLES -#endif /* !YYPURE */ +/*----------. +| yyparse. | +`----------*/ +#ifdef YYPARSE_PARAM +# if defined (__STDC__) || defined (__cplusplus) +int yyparse (void *YYPARSE_PARAM) +# else +int yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +# endif +#else /* ! YYPARSE_PARAM */ +#if defined (__STDC__) || defined (__cplusplus) int -yyparse (YYPARSE_PARAM_ARG) - YYPARSE_PARAM_DECL -{ - /* If reentrant, generate the variables here. */ -#if YYPURE - YY_DECL_VARIABLES -#endif /* !YYPURE */ +yyparse (void) +#else +int +yyparse () +#endif +#endif +{ + register int yystate; register int yyn; int yyresult; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; - /* Lookahead token as an internal (translated) token number. */ - int yychar1 = 0; + /* Look-ahead token as an internal (translated) token number. */ + int yytoken = 0; /* Three stacks and their tools: `yyss': related to states, @@ -705,41 +966,29 @@ Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ - /* The state stack. */ - short yyssa[YYINITDEPTH]; - short *yyss = yyssa; - register short *yyssp; + /* The state stack. */ + short int yyssa[YYINITDEPTH]; + short int *yyss = yyssa; + register short int *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; register YYSTYPE *yyvsp; -#if YYLSP_NEEDED - /* The location stack. */ - YYLTYPE yylsa[YYINITDEPTH]; - YYLTYPE *yyls = yylsa; - YYLTYPE *yylsp; -#endif -#if YYLSP_NEEDED -# define YYPOPSTACK (yyvsp--, yyssp--, yylsp--) -#else -# define YYPOPSTACK (yyvsp--, yyssp--) -#endif - YYSIZE_T yystacksize = YYINITDEPTH; +#define YYPOPSTACK (yyvsp--, yyssp--) + YYSIZE_T yystacksize = YYINITDEPTH; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; -#if YYLSP_NEEDED - YYLTYPE yyloc; -#endif + /* When reducing, the number of symbols on the RHS of the reduced - rule. */ + rule. */ int yylen; YYDPRINTF ((stderr, "Starting parse\n")); @@ -756,9 +1005,10 @@ yyssp = yyss; yyvsp = yyvs; -#if YYLSP_NEEDED - yylsp = yyls; -#endif + + + yyvsp[0] = yylval; + goto yysetstate; /*------------------------------------------------------------. @@ -773,7 +1023,7 @@ yysetstate: *yyssp = yystate; - if (yyssp >= yyss + yystacksize - 1) + if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; @@ -784,26 +1034,19 @@ these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; - short *yyss1 = yyss; + short int *yyss1 = yyss; + /* Each stack pointer address is followed by the size of the - data in use in that stack, in bytes. */ -# if YYLSP_NEEDED - YYLTYPE *yyls1 = yyls; - /* This used to be a conditional around just the two extra args, - but that might be undefined if yyoverflow is a macro. */ - yyoverflow ("parser stack overflow", - &yyss1, yysize * sizeof (*yyssp), - &yyvs1, yysize * sizeof (*yyvsp), - &yyls1, yysize * sizeof (*yylsp), - &yystacksize); - yyls = yyls1; -# else + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if yyoverflow is a macro. */ yyoverflow ("parser stack overflow", &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), + &yystacksize); -# endif + yyss = yyss1; yyvs = yyvs1; } @@ -812,24 +1055,22 @@ goto yyoverflowlab; # else /* Extend the stack our own way. */ - if (yystacksize >= YYMAXDEPTH) + if (YYMAXDEPTH <= yystacksize) goto yyoverflowlab; yystacksize *= 2; - if (yystacksize > YYMAXDEPTH) + if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { - short *yyss1 = yyss; + short int *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyoverflowlab; YYSTACK_RELOCATE (yyss); YYSTACK_RELOCATE (yyvs); -# if YYLSP_NEEDED - YYSTACK_RELOCATE (yyls); -# endif -# undef YYSTACK_RELOCATE + +# undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } @@ -838,14 +1079,12 @@ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; -#if YYLSP_NEEDED - yylsp = yyls + yysize - 1; -#endif + YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); - if (yyssp >= yyss + yystacksize - 1) + if (yyss + yystacksize - 1 <= yyssp) YYABORT; } @@ -853,101 +1092,67 @@ goto yybackup; - /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. */ -/* Read a lookahead token if we need one and don't already have one. */ +/* Read a look-ahead token if we need one and don't already have one. */ /* yyresume: */ - /* First try to decide what to do without reference to lookahead token. */ + /* First try to decide what to do without reference to look-ahead token. */ yyn = yypact[yystate]; - if (yyn == YYFLAG) + if (yyn == YYPACT_NINF) goto yydefault; - /* Not known => get a lookahead token if don't already have one. */ - - /* yychar is either YYEMPTY or YYEOF - or a valid token in external form. */ + /* Not known => get a look-ahead token if don't already have one. */ + /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } - /* Convert token to internal form (in yychar1) for indexing tables with */ - - if (yychar <= 0) /* This means end of input. */ + if (yychar <= YYEOF) { - yychar1 = 0; - yychar = YYEOF; /* Don't call YYLEX any more */ - + yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { - yychar1 = YYTRANSLATE (yychar); - -#if YYDEBUG - /* We have to keep this `#if YYDEBUG', since we use variables - which are defined only if `YYDEBUG' is set. */ - if (yydebug) - { - YYFPRINTF (stderr, "Next token is %d (%s", - yychar, yytname[yychar1]); - /* Give the individual parser a way to print the precise - meaning of a token, for further debugging info. */ -# ifdef YYPRINT - YYPRINT (stderr, yychar, yylval); -# endif - YYFPRINTF (stderr, ")\n"); - } -#endif + yytoken = YYTRANSLATE (yychar); + YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } - yyn += yychar1; - if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1) + /* If the proper action on seeing token YYTOKEN is to reduce or to + detect an error, take that action. */ + yyn += yytoken; + if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; - yyn = yytable[yyn]; - - /* yyn is what to do for this token type in this state. - Negative => reduce, -yyn is rule number. - Positive => shift, yyn is new state. - New state is final state => don't bother to shift, - just return success. - 0, or most negative number => error. */ - - if (yyn < 0) + if (yyn <= 0) { - if (yyn == YYFLAG) + if (yyn == 0 || yyn == YYTABLE_NINF) goto yyerrlab; yyn = -yyn; goto yyreduce; } - else if (yyn == 0) - goto yyerrlab; if (yyn == YYFINAL) YYACCEPT; - /* Shift the lookahead token. */ - YYDPRINTF ((stderr, "Shifting token %d (%s), ", - yychar, yytname[yychar1])); + /* Shift the look-ahead token. */ + YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the token being shifted unless it is eof. */ if (yychar != YYEOF) yychar = YYEMPTY; *++yyvsp = yylval; -#if YYLSP_NEEDED - *++yylsp = yylloc; -#endif + /* Count tokens shifted since error; after three, turn off error status. */ @@ -978,142 +1183,134 @@ /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. - Otherwise, the following line sets YYVAL to the semantic value of - the lookahead token. This behavior is undocumented and Bison + Otherwise, the following line sets YYVAL to garbage. + This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; -#if YYLSP_NEEDED - /* Similarly for the default location. Let the user run additional - commands if for instance locations are ranges. */ - yyloc = yylsp[1-yylen]; - YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen); -#endif -#if YYDEBUG - /* We have to keep this `#if YYDEBUG', since we use variables which - are defined only if `YYDEBUG' is set. */ - if (yydebug) - { - int yyi; - - YYFPRINTF (stderr, "Reducing via rule %d (line %d), ", - yyn, yyrline[yyn]); - - /* Print the symbols being reduced, and their result. */ - for (yyi = yyprhs[yyn]; yyrhs[yyi] > 0; yyi++) - YYFPRINTF (stderr, "%s ", yytname[yyrhs[yyi]]); - YYFPRINTF (stderr, " -> %s\n", yytname[yyr1[yyn]]); - } -#endif - - switch (yyn) { - -case 2: + YY_REDUCE_PRINT (yyn); + switch (yyn) + { + case 3: #line 68 "imap_csim.y" -{ - g_strreplace(&_map_info->image_name, yyvsp[-2].id); + { + g_strreplace(&_map_info->image_name, (yyvsp[-2].id)); } break; -case 7: + + case 8: #line 79 "imap_csim.y" -{} + {} break; -case 8: + + case 9: #line 80 "imap_csim.y" -{} + {} break; -case 9: + + case 10: #line 81 "imap_csim.y" -{} + {} break; -case 10: + + case 11: #line 85 "imap_csim.y" -{ - _map_info->old_image_width = yyvsp[0].val; + { + _map_info->old_image_width = (yyvsp[0].val); } break; -case 11: + + case 12: #line 91 "imap_csim.y" -{ - _map_info->old_image_height = yyvsp[0].val; + { + _map_info->old_image_height = (yyvsp[0].val); } break; -case 12: + + case 13: #line 97 "imap_csim.y" -{ - yyval.val = (gint) yyvsp[0].value; + { + (yyval.val) = (gint) (yyvsp[0].value); } break; -case 13: + + case 14: #line 101 "imap_csim.y" -{ - yyval.val = (gint) atof(yyvsp[0].id); + { + (yyval.val) = (gint) atof((yyvsp[0].id)); } break; -case 14: + + case 15: #line 107 "imap_csim.y" -{ - g_strreplace(&_map_info->title, yyvsp[-1].id); + { + g_strreplace(&_map_info->title, (yyvsp[-1].id)); } break; -case 20: + + case 21: #line 122 "imap_csim.y" -{ + { } break; -case 21: + + case 22: #line 127 "imap_csim.y" -{ - g_strreplace(&_map_info->author, yyvsp[-1].id); + { + g_strreplace(&_map_info->author, (yyvsp[-1].id)); } break; -case 22: + + case 23: #line 134 "imap_csim.y" -{ + { gchar *description; - description = g_strconcat(_map_info->description, yyvsp[-1].id, "\n", + description = g_strconcat(_map_info->description, (yyvsp[-1].id), "\n", NULL); g_strreplace(&_map_info->description, description); } break; -case 25: + + case 26: #line 148 "imap_csim.y" -{ + { if (current_type != UNDEFINED) add_shape(current_object); } break; -case 40: + + case 41: #line 175 "imap_csim.y" -{ - if (!g_ascii_strcasecmp(yyvsp[0].id, "RECT")) { + { + if (!g_ascii_strcasecmp((yyvsp[0].id), "RECT")) { current_object = create_rectangle(0, 0, 0, 0); current_type = RECTANGLE; - } else if (!g_ascii_strcasecmp(yyvsp[0].id, "CIRCLE")) { + } else if (!g_ascii_strcasecmp((yyvsp[0].id), "CIRCLE")) { current_object = create_circle(0, 0, 0); current_type = CIRCLE; - } else if (!g_ascii_strcasecmp(yyvsp[0].id, "POLY")) { + } else if (!g_ascii_strcasecmp((yyvsp[0].id), "POLY")) { current_object = create_polygon(NULL); current_type = POLYGON; - } else if (!g_ascii_strcasecmp(yyvsp[0].id, "DEFAULT")) { + } else if (!g_ascii_strcasecmp((yyvsp[0].id), "DEFAULT")) { current_type = UNDEFINED; } } break; -case 41: + + case 42: #line 192 "imap_csim.y" -{ + { char *p; if (current_type == RECTANGLE) { Rectangle_t *rectangle; rectangle = ObjectToRectangle(current_object); - p = strtok(yyvsp[0].id, ","); + p = strtok((yyvsp[0].id), ","); rectangle->x = atoi(p); p = strtok(NULL, ","); rectangle->y = atoi(p); @@ -1125,7 +1322,7 @@ Circle_t *circle; circle = ObjectToCircle(current_object); - p = strtok(yyvsp[0].id, ","); + p = strtok((yyvsp[0].id), ","); circle->x = atoi(p); p = strtok(NULL, ","); circle->y = atoi(p); @@ -1137,7 +1334,7 @@ GdkPoint *point, *first; gint x, y; - p = strtok(yyvsp[0].id, ","); + p = strtok((yyvsp[0].id), ","); x = atoi(p); p = strtok(NULL, ","); y = atoi(p); @@ -1163,88 +1360,86 @@ } } break; -case 42: + + case 43: #line 250 "imap_csim.y" -{ + { if (current_type == UNDEFINED) { - g_strreplace(&_map_info->default_url, yyvsp[0].id); + g_strreplace(&_map_info->default_url, (yyvsp[0].id)); } else { - object_set_url(current_object, yyvsp[0].id); + object_set_url(current_object, (yyvsp[0].id)); } } break; -case 43: + + case 44: #line 260 "imap_csim.y" -{ + { } break; -case 45: + + case 46: #line 266 "imap_csim.y" -{ + { } break; -case 46: + + case 47: #line 271 "imap_csim.y" -{ - object_set_comment(current_object, yyvsp[0].id); + { + object_set_comment(current_object, (yyvsp[0].id)); } break; -case 47: + + case 48: #line 277 "imap_csim.y" -{ - object_set_target(current_object, yyvsp[0].id); + { + object_set_target(current_object, (yyvsp[0].id)); } break; -case 48: + + case 49: #line 283 "imap_csim.y" -{ - object_set_mouse_over(current_object, yyvsp[0].id); + { + object_set_mouse_over(current_object, (yyvsp[0].id)); } break; -case 49: + + case 50: #line 289 "imap_csim.y" -{ - object_set_mouse_out(current_object, yyvsp[0].id); + { + object_set_mouse_out(current_object, (yyvsp[0].id)); } break; -case 50: + + case 51: #line 295 "imap_csim.y" -{ - object_set_focus(current_object, yyvsp[0].id); + { + object_set_focus(current_object, (yyvsp[0].id)); } break; -case 51: + + case 52: #line 301 "imap_csim.y" -{ - object_set_blur(current_object, yyvsp[0].id); + { + object_set_blur(current_object, (yyvsp[0].id)); } break; -} -#line 705 "/usr/share/bison/bison.simple" + } + +/* Line 1037 of yacc.c. */ +#line 1434 "y.tab.c" yyvsp -= yylen; yyssp -= yylen; -#if YYLSP_NEEDED - yylsp -= yylen; -#endif -#if YYDEBUG - if (yydebug) - { - short *yyssp1 = yyss - 1; - YYFPRINTF (stderr, "state stack now"); - while (yyssp1 != yyssp) - YYFPRINTF (stderr, " %d", *++yyssp1); - YYFPRINTF (stderr, "\n"); - } -#endif + + YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; -#if YYLSP_NEEDED - *++yylsp = yyloc; -#endif + /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule @@ -1252,11 +1447,11 @@ yyn = yyr1[yyn]; - yystate = yypgoto[yyn - YYNTBASE] + *yyssp; - if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp) + yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; + if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else - yystate = yydefgoto[yyn - YYNTBASE]; + yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; @@ -1269,155 +1464,159 @@ if (!yyerrstatus) { ++yynerrs; - -#ifdef YYERROR_VERBOSE +#if YYERROR_VERBOSE yyn = yypact[yystate]; - if (yyn > YYFLAG && yyn < YYLAST) + if (YYPACT_NINF < yyn && yyn < YYLAST) { YYSIZE_T yysize = 0; + int yytype = YYTRANSLATE (yychar); + const char* yyprefix; char *yymsg; - int yyx, yycount; + int yyx; - yycount = 0; /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. */ - for (yyx = yyn < 0 ? -yyn : 0; - yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++) - if (yycheck[yyx + yyn] == yyx) - yysize += yystrlen (yytname[yyx]) + 15, yycount++; - yysize += yystrlen ("parse error, unexpected ") + 1; - yysize += yystrlen (yytname[YYTRANSLATE (yychar)]); + int yyxbegin = yyn < 0 ? -yyn : 0; + + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yycount = 0; + + yyprefix = ", expecting "; + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) + { + yysize += yystrlen (yyprefix) + yystrlen (yytname [yyx]); + yycount += 1; + if (yycount == 5) + { + yysize = 0; + break; + } + } + yysize += (sizeof ("syntax error, unexpected ") + + yystrlen (yytname[yytype])); yymsg = (char *) YYSTACK_ALLOC (yysize); if (yymsg != 0) { - char *yyp = yystpcpy (yymsg, "parse error, unexpected "); - yyp = yystpcpy (yyp, yytname[YYTRANSLATE (yychar)]); + char *yyp = yystpcpy (yymsg, "syntax error, unexpected "); + yyp = yystpcpy (yyp, yytname[yytype]); if (yycount < 5) { - yycount = 0; - for (yyx = yyn < 0 ? -yyn : 0; - yyx < (int) (sizeof (yytname) / sizeof (char *)); - yyx++) - if (yycheck[yyx + yyn] == yyx) + yyprefix = ", expecting "; + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) { - const char *yyq = ! yycount ? ", expecting " : " or "; - yyp = yystpcpy (yyp, yyq); + yyp = yystpcpy (yyp, yyprefix); yyp = yystpcpy (yyp, yytname[yyx]); - yycount++; + yyprefix = " or "; } } yyerror (yymsg); YYSTACK_FREE (yymsg); } else - yyerror ("parse error; also virtual memory exhausted"); + yyerror ("syntax error; also virtual memory exhausted"); } else -#endif /* defined (YYERROR_VERBOSE) */ - yyerror ("parse error"); +#endif /* YYERROR_VERBOSE */ + yyerror ("syntax error"); } - goto yyerrlab1; -/*--------------------------------------------------. -| yyerrlab1 -- error raised explicitly by an action | -`--------------------------------------------------*/ -yyerrlab1: + if (yyerrstatus == 3) { - /* If just tried and failed to reuse lookahead token after an + /* If just tried and failed to reuse look-ahead token after an error, discard it. */ - /* return failure if at end of input */ - if (yychar == YYEOF) - YYABORT; - YYDPRINTF ((stderr, "Discarding token %d (%s).\n", - yychar, yytname[yychar1])); - yychar = YYEMPTY; + if (yychar <= YYEOF) + { + /* If at end of input, pop the error token, + then the rest of the stack, then return failure. */ + if (yychar == YYEOF) + for (;;) + { + + YYPOPSTACK; + if (yyssp == yyss) + YYABORT; + yydestruct ("Error: popping", + yystos[*yyssp], yyvsp); + } + } + else + { + yydestruct ("Error: discarding", yytoken, &yylval); + yychar = YYEMPTY; + } } - /* Else will try to reuse lookahead token after shifting the error + /* Else will try to reuse look-ahead token after shifting the error token. */ - - yyerrstatus = 3; /* Each real token shifted decrements this */ - - goto yyerrhandle; + goto yyerrlab1; -/*-------------------------------------------------------------------. -| yyerrdefault -- current state does not do anything special for the | -| error token. | -`-------------------------------------------------------------------*/ -yyerrdefault: -#if 0 - /* This is wrong; only states that explicitly want error tokens - should shift them. */ +/*---------------------------------------------------. +| yyerrorlab -- error raised explicitly by YYERROR. | +`---------------------------------------------------*/ +yyerrorlab: - /* If its default is to accept any token, ok. Otherwise pop it. */ - yyn = yydefact[yystate]; - if (yyn) - goto yydefault; +#ifdef __GNUC__ + /* Pacify GCC when the user code never invokes YYERROR and the label + yyerrorlab therefore never appears in user code. */ + if (0) + goto yyerrorlab; #endif +yyvsp -= yylen; + yyssp -= yylen; + yystate = *yyssp; + goto yyerrlab1; -/*---------------------------------------------------------------. -| yyerrpop -- pop the current state because it cannot handle the | -| error token | -`---------------------------------------------------------------*/ -yyerrpop: - if (yyssp == yyss) - YYABORT; - yyvsp--; - yystate = *--yyssp; -#if YYLSP_NEEDED - yylsp--; -#endif -#if YYDEBUG - if (yydebug) +/*-------------------------------------------------------------. +| yyerrlab1 -- common code for both syntax error and YYERROR. | +`-------------------------------------------------------------*/ +yyerrlab1: + yyerrstatus = 3; /* Each real token shifted decrements this. */ + + for (;;) { - short *yyssp1 = yyss - 1; - YYFPRINTF (stderr, "Error: state stack now"); - while (yyssp1 != yyssp) - YYFPRINTF (stderr, " %d", *++yyssp1); - YYFPRINTF (stderr, "\n"); - } -#endif + yyn = yypact[yystate]; + if (yyn != YYPACT_NINF) + { + yyn += YYTERROR; + if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) + { + yyn = yytable[yyn]; + if (0 < yyn) + break; + } + } -/*--------------. -| yyerrhandle. | -`--------------*/ -yyerrhandle: - yyn = yypact[yystate]; - if (yyn == YYFLAG) - goto yyerrdefault; + /* Pop the current state because it cannot handle the error token. */ + if (yyssp == yyss) + YYABORT; - yyn += YYTERROR; - if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR) - goto yyerrdefault; - yyn = yytable[yyn]; - if (yyn < 0) - { - if (yyn == YYFLAG) - goto yyerrpop; - yyn = -yyn; - goto yyreduce; + yydestruct ("Error: popping", yystos[yystate], yyvsp); + YYPOPSTACK; + yystate = *yyssp; + YY_STACK_PRINT (yyss, yyssp); } - else if (yyn == 0) - goto yyerrpop; if (yyn == YYFINAL) YYACCEPT; - YYDPRINTF ((stderr, "Shifting error token, ")); - *++yyvsp = yylval; -#if YYLSP_NEEDED - *++yylsp = yylloc; -#endif + + + /* Shift the error token. */ + YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; @@ -1434,16 +1633,21 @@ | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: + yydestruct ("Error: discarding lookahead", + yytoken, &yylval); + yychar = YYEMPTY; yyresult = 1; goto yyreturn; -/*---------------------------------------------. -| yyoverflowab -- parser overflow comes here. | -`---------------------------------------------*/ +#ifndef yyoverflow +/*----------------------------------------------. +| yyoverflowlab -- parser overflow comes here. | +`----------------------------------------------*/ yyoverflowlab: yyerror ("parser stack overflow"); yyresult = 2; /* Fall through. */ +#endif yyreturn: #ifndef yyoverflow @@ -1452,6 +1656,8 @@ #endif return yyresult; } + + #line 309 "imap_csim.y" @@ -1477,3 +1683,4 @@ } return status; } + diff -uraN gimp-2.2.8/plug-ins/imagemap/imap_csim_parse.h gimp-2.2.9/plug-ins/imagemap/imap_csim_parse.h --- gimp-2.2.8/plug-ins/imagemap/imap_csim_parse.h 2004-05-20 22:50:23.000000000 +0200 +++ gimp-2.2.9/plug-ins/imagemap/imap_csim_parse.h 2005-08-15 12:07:04.000000000 +0200 @@ -1,43 +1,107 @@ -#ifndef BISON_Y_TAB_H -# define BISON_Y_TAB_H +/* A Bison parser, made by GNU Bison 2.0. */ -#ifndef YYSTYPE -typedef union { +/* Skeleton parser for Yacc-like parsing with Bison, + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. + + 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, 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, when this file is copied by Bison into a + Bison output file, you may use that output file without restriction. + This special exception was added by the Free Software Foundation + in version 1.24 of Bison. */ + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + IMG = 258, + SRC = 259, + WIDTH = 260, + HEIGHT = 261, + BORDER = 262, + USEMAP = 263, + START_MAP = 264, + END_MAP = 265, + NAME = 266, + AREA = 267, + SHAPE = 268, + COORDS = 269, + ALT = 270, + HREF = 271, + NOHREF = 272, + TARGET = 273, + ONMOUSEOVER = 274, + ONMOUSEOUT = 275, + ONFOCUS = 276, + ONBLUR = 277, + AUTHOR = 278, + DESCRIPTION = 279, + BEGIN_COMMENT = 280, + END_COMMENT = 281, + FLOAT = 282, + STRING = 283 + }; +#endif +#define IMG 258 +#define SRC 259 +#define WIDTH 260 +#define HEIGHT 261 +#define BORDER 262 +#define USEMAP 263 +#define START_MAP 264 +#define END_MAP 265 +#define NAME 266 +#define AREA 267 +#define SHAPE 268 +#define COORDS 269 +#define ALT 270 +#define HREF 271 +#define NOHREF 272 +#define TARGET 273 +#define ONMOUSEOVER 274 +#define ONMOUSEOUT 275 +#define ONFOCUS 276 +#define ONBLUR 277 +#define AUTHOR 278 +#define DESCRIPTION 279 +#define BEGIN_COMMENT 280 +#define END_COMMENT 281 +#define FLOAT 282 +#define STRING 283 + + + + +#if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) +#line 47 "imap_csim.y" +typedef union YYSTYPE { int val; double value; - char id[256]; -} yystype; -# define YYSTYPE yystype + char id[1024]; +} YYSTYPE; +/* Line 1318 of yacc.c. */ +#line 99 "y.tab.h" +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ +# define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 #endif -# define IMG 257 -# define SRC 258 -# define WIDTH 259 -# define HEIGHT 260 -# define BORDER 261 -# define USEMAP 262 -# define START_MAP 263 -# define END_MAP 264 -# define NAME 265 -# define AREA 266 -# define SHAPE 267 -# define COORDS 268 -# define ALT 269 -# define HREF 270 -# define NOHREF 271 -# define TARGET 272 -# define ONMOUSEOVER 273 -# define ONMOUSEOUT 274 -# define ONFOCUS 275 -# define ONBLUR 276 -# define AUTHOR 277 -# define DESCRIPTION 278 -# define BEGIN_COMMENT 279 -# define END_COMMENT 280 -# define FLOAT 281 -# define STRING 282 - extern YYSTYPE csim_lval; -#endif /* not BISON_Y_TAB_H */ + + diff -uraN gimp-2.2.8/plug-ins/imagemap/imap_csim.y gimp-2.2.9/plug-ins/imagemap/imap_csim.y --- gimp-2.2.8/plug-ins/imagemap/imap_csim.y 2004-05-20 22:50:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/imagemap/imap_csim.y 2005-08-15 12:07:04.000000000 +0200 @@ -4,7 +4,7 @@ * * Generates clickable image maps. * - * Copyright (C) 1998-2003 Maurits Rijk lpeek.mrijk@consunet.nl + * Copyright (C) 1998-2005 Maurits Rijk lpeek.mrijk@consunet.nl * * 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 @@ -47,7 +47,7 @@ %union { int val; double value; - char id[256]; + char id[1024]; } %token IMG SRC WIDTH HEIGHT BORDER USEMAP diff -uraN gimp-2.2.8/plug-ins/imagemap/Makefile.in gimp-2.2.9/plug-ins/imagemap/Makefile.in --- gimp-2.2.8/plug-ins/imagemap/Makefile.in 2005-06-26 21:28:25.000000000 +0200 +++ gimp-2.2.9/plug-ins/imagemap/Makefile.in 2005-10-27 17:11:51.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,93 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = imagemap$(EXEEXT) +subdir = plug-ins/imagemap +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + AUTHORS NEWS TODO +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_imagemap_OBJECTS = imap_about.$(OBJEXT) imap_browse.$(OBJEXT) \ + imap_cern_lex.$(OBJEXT) imap_cern_parse.$(OBJEXT) \ + imap_circle.$(OBJEXT) imap_cmd_clear.$(OBJEXT) \ + imap_cmd_copy.$(OBJEXT) imap_cmd_copy_object.$(OBJEXT) \ + imap_cmd_create.$(OBJEXT) imap_cmd_cut.$(OBJEXT) \ + imap_cmd_cut_object.$(OBJEXT) imap_cmd_delete.$(OBJEXT) \ + imap_cmd_delete_point.$(OBJEXT) imap_cmd_edit_object.$(OBJEXT) \ + imap_cmd_gimp_guides.$(OBJEXT) imap_cmd_guides.$(OBJEXT) \ + imap_cmd_insert_point.$(OBJEXT) imap_cmd_move.$(OBJEXT) \ + imap_cmd_move_down.$(OBJEXT) imap_cmd_move_sash.$(OBJEXT) \ + imap_cmd_move_selected.$(OBJEXT) \ + imap_cmd_move_to_front.$(OBJEXT) imap_cmd_move_up.$(OBJEXT) \ + imap_cmd_object_down.$(OBJEXT) imap_cmd_object_move.$(OBJEXT) \ + imap_cmd_object_up.$(OBJEXT) imap_cmd_paste.$(OBJEXT) \ + imap_cmd_select.$(OBJEXT) imap_cmd_select_all.$(OBJEXT) \ + imap_cmd_select_next.$(OBJEXT) imap_cmd_select_prev.$(OBJEXT) \ + imap_cmd_select_region.$(OBJEXT) \ + imap_cmd_send_to_back.$(OBJEXT) imap_cmd_unselect.$(OBJEXT) \ + imap_cmd_unselect_all.$(OBJEXT) imap_command.$(OBJEXT) \ + imap_csim_lex.$(OBJEXT) imap_csim_parse.$(OBJEXT) \ + imap_default_dialog.$(OBJEXT) imap_edit_area_info.$(OBJEXT) \ + imap_file.$(OBJEXT) imap_grid.$(OBJEXT) imap_main.$(OBJEXT) \ + imap_menu.$(OBJEXT) imap_menu_funcs.$(OBJEXT) \ + imap_misc.$(OBJEXT) imap_mru.$(OBJEXT) imap_ncsa_lex.$(OBJEXT) \ + imap_ncsa_parse.$(OBJEXT) imap_object.$(OBJEXT) \ + imap_object_popup.$(OBJEXT) imap_polygon.$(OBJEXT) \ + imap_popup.$(OBJEXT) imap_preferences.$(OBJEXT) \ + imap_preview.$(OBJEXT) imap_rectangle.$(OBJEXT) \ + imap_selection.$(OBJEXT) imap_settings.$(OBJEXT) \ + imap_source.$(OBJEXT) imap_stock.$(OBJEXT) \ + imap_statusbar.$(OBJEXT) imap_string.$(OBJEXT) \ + imap_table.$(OBJEXT) imap_taglist.$(OBJEXT) \ + imap_toolbar.$(OBJEXT) imap_tools.$(OBJEXT) +imagemap_OBJECTS = $(am_imagemap_OBJECTS) +imagemap_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +imagemap_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(imagemap_SOURCES) +DIST_SOURCES = $(imagemap_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +319,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +370,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +417,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +440,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,21 +457,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - SUBDIRS = images - -libexec_PROGRAMS = imagemap - EXTRA_DIST = \ AUTHORS \ NEWS \ @@ -396,7 +477,6 @@ imap_csim.y \ imap_ncsa.y - imagemap_SOURCES = \ imap_about.c \ imap_about.h \ @@ -499,13 +579,11 @@ imap_tools.c \ imap_tools.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -516,168 +594,53 @@ $(RT_LIBS) \ $(INTLLIBS) - CLEANFILES = y.tab.c y.tab.h - LEX = flex YACC = bison -y -subdir = plug-ins/imagemap -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = imagemap$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_imagemap_OBJECTS = imap_about.$(OBJEXT) imap_browse.$(OBJEXT) \ - imap_cern_lex.$(OBJEXT) imap_cern_parse.$(OBJEXT) \ - imap_circle.$(OBJEXT) imap_cmd_clear.$(OBJEXT) \ - imap_cmd_copy.$(OBJEXT) imap_cmd_copy_object.$(OBJEXT) \ - imap_cmd_create.$(OBJEXT) imap_cmd_cut.$(OBJEXT) \ - imap_cmd_cut_object.$(OBJEXT) imap_cmd_delete.$(OBJEXT) \ - imap_cmd_delete_point.$(OBJEXT) imap_cmd_edit_object.$(OBJEXT) \ - imap_cmd_gimp_guides.$(OBJEXT) imap_cmd_guides.$(OBJEXT) \ - imap_cmd_insert_point.$(OBJEXT) imap_cmd_move.$(OBJEXT) \ - imap_cmd_move_down.$(OBJEXT) imap_cmd_move_sash.$(OBJEXT) \ - imap_cmd_move_selected.$(OBJEXT) \ - imap_cmd_move_to_front.$(OBJEXT) imap_cmd_move_up.$(OBJEXT) \ - imap_cmd_object_down.$(OBJEXT) imap_cmd_object_move.$(OBJEXT) \ - imap_cmd_object_up.$(OBJEXT) imap_cmd_paste.$(OBJEXT) \ - imap_cmd_select.$(OBJEXT) imap_cmd_select_all.$(OBJEXT) \ - imap_cmd_select_next.$(OBJEXT) imap_cmd_select_prev.$(OBJEXT) \ - imap_cmd_select_region.$(OBJEXT) \ - imap_cmd_send_to_back.$(OBJEXT) imap_cmd_unselect.$(OBJEXT) \ - imap_cmd_unselect_all.$(OBJEXT) imap_command.$(OBJEXT) \ - imap_csim_lex.$(OBJEXT) imap_csim_parse.$(OBJEXT) \ - imap_default_dialog.$(OBJEXT) imap_edit_area_info.$(OBJEXT) \ - imap_file.$(OBJEXT) imap_grid.$(OBJEXT) imap_main.$(OBJEXT) \ - imap_menu.$(OBJEXT) imap_menu_funcs.$(OBJEXT) \ - imap_misc.$(OBJEXT) imap_mru.$(OBJEXT) imap_ncsa_lex.$(OBJEXT) \ - imap_ncsa_parse.$(OBJEXT) imap_object.$(OBJEXT) \ - imap_object_popup.$(OBJEXT) imap_polygon.$(OBJEXT) \ - imap_popup.$(OBJEXT) imap_preferences.$(OBJEXT) \ - imap_preview.$(OBJEXT) imap_rectangle.$(OBJEXT) \ - imap_selection.$(OBJEXT) imap_settings.$(OBJEXT) \ - imap_source.$(OBJEXT) imap_stock.$(OBJEXT) \ - imap_statusbar.$(OBJEXT) imap_string.$(OBJEXT) \ - imap_table.$(OBJEXT) imap_taglist.$(OBJEXT) \ - imap_toolbar.$(OBJEXT) imap_tools.$(OBJEXT) -imagemap_OBJECTS = $(am_imagemap_OBJECTS) -imagemap_LDADD = $(LDADD) -imagemap_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -imagemap_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/imap_about.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_browse.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cern_lex.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cern_parse.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_circle.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_clear.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_copy.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_copy_object.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_create.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_cut.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_cut_object.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_delete.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_delete_point.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_edit_object.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_gimp_guides.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_guides.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_insert_point.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_move.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_move_down.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_move_sash.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_move_selected.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_move_to_front.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_move_up.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_object_down.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_object_move.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_object_up.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_paste.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_select.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_select_all.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_select_next.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_select_prev.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_select_region.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_send_to_back.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_unselect.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_cmd_unselect_all.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_command.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_csim_lex.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_csim_parse.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_default_dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_edit_area_info.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_file.Po ./$(DEPDIR)/imap_grid.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_main.Po ./$(DEPDIR)/imap_menu.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_menu_funcs.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_misc.Po ./$(DEPDIR)/imap_mru.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_ncsa_lex.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_ncsa_parse.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_object.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_object_popup.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_polygon.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_popup.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_preferences.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_rectangle.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_selection.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_settings.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_source.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_statusbar.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_stock.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_string.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_table.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_taglist.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_toolbar.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/imap_tools.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(imagemap_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in AUTHORS Makefile.am NEWS \ - TODO -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(imagemap_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/imagemap/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/imagemap/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -685,8 +648,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -700,7 +663,7 @@ $(LINK) $(imagemap_LDFLAGS) $(imagemap_OBJECTS) $(imagemap_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -773,37 +736,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imap_tools.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -822,7 +773,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -834,7 +791,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -842,7 +799,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -863,7 +826,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -874,14 +837,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -890,19 +845,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -912,10 +870,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -938,10 +897,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -955,7 +910,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -970,15 +925,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -988,8 +945,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -1010,7 +968,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -1030,6 +988,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -1066,24 +1026,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS imap_cern_lex.c: imap_cern.l diff -uraN gimp-2.2.8/plug-ins/Lighting/images/Makefile.in gimp-2.2.9/plug-ins/Lighting/images/Makefile.in --- gimp-2.2.8/plug-ins/Lighting/images/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/Lighting/images/Makefile.in 2005-10-27 17:11:44.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/Lighting/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +248,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +299,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +346,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,7 +386,6 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - STOCK_IMAGES = \ stock-intensity-ambient-high.png \ stock-intensity-ambient-low.png \ @@ -381,28 +398,41 @@ stock-reflectivity-highlight-high.png \ stock-reflectivity-highlight-low.png - EXTRA_DIST = $(STOCK_IMAGES) - noinst_DATA = stock-pixbufs.h CLEANFILES = $(noinst_DATA) stock-icons.list -subdir = plug-ins/Lighting/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/Lighting/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/Lighting/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -419,10 +449,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -436,7 +462,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -454,7 +480,6 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: install: install-am install-exec: install-exec-am @@ -476,7 +501,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -493,6 +518,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -527,10 +554,10 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am diff -uraN gimp-2.2.8/plug-ins/Lighting/lighting_shade.c gimp-2.2.9/plug-ins/Lighting/lighting_shade.c --- gimp-2.2.8/plug-ins/Lighting/lighting_shade.c 2005-04-27 16:53:04.000000000 +0200 +++ gimp-2.2.9/plug-ins/Lighting/lighting_shade.c 2005-10-20 12:20:16.000000000 +0200 @@ -474,11 +474,10 @@ GimpRGB get_ray_color_ref (GimpVector3 *position) { - GimpRGB color_sum; GimpRGB color_int; GimpRGB light_color; GimpRGB color, env_color; - gint x, f; + gint x; gdouble xf, yf; GimpVector3 normal, *p, v, r; gint k; @@ -489,13 +488,10 @@ if (mapvals.transparent_background && heights[1][x] == 0) { - gimp_rgb_set_alpha (&color_sum, 0.0); + gimp_rgb_set_alpha (&light_color, 0.0); } else { - color = get_image_color (xf, yf, &f); - color_sum = color; - for (k = 0; k < NUM_LIGHTS; k++) { if (!mapvals.lightsource[k].active @@ -543,13 +539,11 @@ &color_int, mapvals.lightsource[0].type); } - - gimp_rgb_add (&color_sum, &light_color); } } - gimp_rgb_clamp (&color_sum); - return color_sum; + gimp_rgb_clamp (&light_color); + return light_color; } GimpRGB @@ -627,7 +621,6 @@ GimpRGB get_ray_color_no_bilinear_ref (GimpVector3 *position) { - GimpRGB color_sum; GimpRGB color_int; GimpRGB light_color; GimpRGB color, env_color; @@ -642,13 +635,10 @@ if (mapvals.transparent_background && heights[1][x] == 0) { - gimp_rgb_set_alpha (&color_sum, 0.0); + gimp_rgb_set_alpha (&light_color, 0.0); } else { - color = peek (RINT (xf), RINT (yf)); - color_sum = color; - for (k = 0; k < NUM_LIGHTS; k++) { if (!mapvals.lightsource[k].active @@ -714,12 +704,10 @@ &env_color, &color_int, mapvals.lightsource[0].type); - - gimp_rgb_add (&color_sum, &light_color); } } } - gimp_rgb_clamp (&color_sum); - return color_sum; + gimp_rgb_clamp (&light_color); + return light_color; } diff -uraN gimp-2.2.8/plug-ins/Lighting/Makefile.in gimp-2.2.9/plug-ins/Lighting/Makefile.in --- gimp-2.2.8/plug-ins/Lighting/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/Lighting/Makefile.in 2005-10-27 17:11:44.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,65 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = Lighting$(EXEEXT) +subdir = plug-ins/Lighting +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in TODO +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_Lighting_OBJECTS = lighting_apply.$(OBJEXT) \ + lighting_image.$(OBJEXT) lighting_main.$(OBJEXT) \ + lighting_preview.$(OBJEXT) lighting_shade.$(OBJEXT) \ + lighting_stock.$(OBJEXT) lighting_ui.$(OBJEXT) +Lighting_OBJECTS = $(am_Lighting_OBJECTS) +Lighting_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_7 = +Lighting_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_7) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_7) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(Lighting_SOURCES) +DIST_SOURCES = $(Lighting_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +291,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +342,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +389,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +412,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,22 +429,15 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - SUBDIRS = images - -libexec_PROGRAMS = Lighting - Lighting_SOURCES = \ lighting_apply.c \ lighting_apply.h \ @@ -401,13 +454,11 @@ lighting_ui.c \ lighting_ui.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -419,78 +470,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/Lighting -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = Lighting$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_Lighting_OBJECTS = lighting_apply.$(OBJEXT) lighting_image.$(OBJEXT) \ - lighting_main.$(OBJEXT) lighting_preview.$(OBJEXT) \ - lighting_shade.$(OBJEXT) lighting_stock.$(OBJEXT) \ - lighting_ui.$(OBJEXT) -Lighting_OBJECTS = $(am_Lighting_OBJECTS) -Lighting_LDADD = $(LDADD) -Lighting_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -Lighting_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/lighting_apply.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lighting_image.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lighting_main.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lighting_preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lighting_shade.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lighting_stock.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/lighting_ui.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(Lighting_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am TODO -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(Lighting_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/Lighting/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/Lighting/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -498,8 +521,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -513,7 +536,7 @@ $(LINK) $(Lighting_LDFLAGS) $(Lighting_OBJECTS) $(Lighting_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -527,37 +550,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighting_ui.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -576,7 +587,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -588,7 +605,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -596,7 +613,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -617,7 +640,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -628,14 +651,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -644,19 +659,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -666,10 +684,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -692,10 +711,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -709,7 +724,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -724,15 +739,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -742,8 +759,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -763,7 +781,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -783,6 +801,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -819,24 +839,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/Makefile.in gimp-2.2.9/plug-ins/Makefile.in --- gimp-2.2.8/plug-ins/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/Makefile.in 2005-10-27 17:11:44.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +33,33 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = dbbrowser script-fu FractalExplorer Lighting MapObject \ + bmp faxg3 fits flame gfig gflare gfli gimpressionist help \ + helpbrowser ifscompose imagemap maze pagecurl print pygimp rcm \ + sgi sel2path twain winicon winsnap xjt common +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +258,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +309,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +356,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,24 +396,16 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - EXTRA_DIST = \ makefile.msc - @BUILD_HELPBROWSER_TRUE@helpbrowser = helpbrowser - @BUILD_PRINT_TRUE@print = print - @BUILD_PYTHON_TRUE@pygimp = pygimp - @HAVE_MAC_TWAIN_TRUE@twain = twain - @OS_WIN32_TRUE@twain = twain @OS_WIN32_TRUE@winsnap = winsnap - @BUILD_XJT_TRUE@xjt = xjt - SUBDIRS = \ dbbrowser \ script-fu \ @@ -417,31 +437,38 @@ $(xjt) \ common -subdir = plug-ins -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = dbbrowser script-fu FractalExplorer Lighting MapObject \ - bmp faxg3 fits flame gfig gflare gfli gimpressionist help \ - helpbrowser ifscompose imagemap maze pagecurl print pygimp rcm \ - sgi sel2path twain winicon winsnap xjt common all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -460,7 +487,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -472,7 +505,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -480,7 +513,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -501,7 +540,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -512,14 +551,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -528,19 +559,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -550,10 +584,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -576,10 +611,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -593,7 +624,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -610,13 +641,15 @@ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -626,7 +659,6 @@ all-am: Makefile installdirs: installdirs-recursive installdirs-am: - install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -646,7 +678,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -664,6 +696,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -698,22 +732,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic maintainer-clean-recursive \ + mostlyclean mostlyclean-generic mostlyclean-libtool \ + mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/MapObject/Makefile.in gimp-2.2.9/plug-ins/MapObject/Makefile.in --- gimp-2.2.8/plug-ins/MapObject/Makefile.in 2005-06-26 21:28:22.000000000 +0200 +++ gimp-2.2.9/plug-ins/MapObject/Makefile.in 2005-10-27 17:11:44.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,58 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = MapObject$(EXEEXT) +subdir = plug-ins/MapObject +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in TODO +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_MapObject_OBJECTS = mapobject_apply.$(OBJEXT) \ + mapobject_image.$(OBJEXT) mapobject_main.$(OBJEXT) \ + mapobject_preview.$(OBJEXT) mapobject_shade.$(OBJEXT) \ + mapobject_stock.$(OBJEXT) mapobject_ui.$(OBJEXT) +MapObject_OBJECTS = $(am_MapObject_OBJECTS) +MapObject_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_7 = +MapObject_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_7) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_7) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(MapObject_SOURCES) +DIST_SOURCES = $(MapObject_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +284,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +335,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +382,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +405,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,20 +422,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = MapObject - MapObject_SOURCES = \ arcball.h \ mapobject_apply.c \ @@ -400,13 +447,11 @@ mapobject_ui.c \ mapobject_ui.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -418,71 +463,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/MapObject -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = MapObject$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_MapObject_OBJECTS = mapobject_apply.$(OBJEXT) \ - mapobject_image.$(OBJEXT) mapobject_main.$(OBJEXT) \ - mapobject_preview.$(OBJEXT) mapobject_shade.$(OBJEXT) \ - mapobject_stock.$(OBJEXT) mapobject_ui.$(OBJEXT) -MapObject_OBJECTS = $(am_MapObject_OBJECTS) -MapObject_LDADD = $(LDADD) -MapObject_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -MapObject_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/mapobject_apply.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapobject_image.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapobject_main.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapobject_preview.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapobject_shade.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapobject_stock.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/mapobject_ui.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(MapObject_SOURCES) -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am TODO -SOURCES = $(MapObject_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/MapObject/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/MapObject/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -490,8 +514,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -505,7 +529,7 @@ $(LINK) $(MapObject_LDFLAGS) $(MapObject_OBJECTS) $(MapObject_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -519,37 +543,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mapobject_ui.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -561,14 +573,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -577,6 +581,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -588,10 +593,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -614,10 +620,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -631,7 +633,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -649,9 +651,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -671,7 +674,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -691,6 +694,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -728,8 +733,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/maze/Makefile.in gimp-2.2.9/plug-ins/maze/Makefile.in --- gimp-2.2.8/plug-ins/maze/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/maze/Makefile.in 2005-10-27 17:11:52.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = maze$(EXEEXT) +subdir = plug-ins/maze +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_maze_OBJECTS = algorithms.$(OBJEXT) handy.$(OBJEXT) maze.$(OBJEXT) \ + maze_face.$(OBJEXT) +maze_OBJECTS = $(am_maze_OBJECTS) +maze_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +maze_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(maze_SOURCES) +DIST_SOURCES = $(maze_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +401,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,19 +418,13 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = maze - maze_SOURCES = \ algorithms.c \ handy.c \ @@ -389,13 +432,11 @@ maze.h \ maze_face.c - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -406,63 +447,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/maze -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = maze$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_maze_OBJECTS = algorithms.$(OBJEXT) handy.$(OBJEXT) maze.$(OBJEXT) \ - maze_face.$(OBJEXT) -maze_OBJECTS = $(am_maze_OBJECTS) -maze_LDADD = $(LDADD) -maze_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -maze_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/algorithms.Po ./$(DEPDIR)/handy.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/maze.Po ./$(DEPDIR)/maze_face.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(maze_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(maze_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/maze/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/maze/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -470,8 +498,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -485,7 +513,7 @@ $(LINK) $(maze_LDFLAGS) $(maze_OBJECTS) $(maze_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -496,37 +524,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maze_face.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -538,14 +554,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -554,6 +562,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -565,10 +574,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -591,10 +601,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -608,7 +614,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -626,9 +632,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -648,7 +655,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -668,6 +675,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -705,8 +714,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/pagecurl/Makefile.in gimp-2.2.9/plug-ins/pagecurl/Makefile.in --- gimp-2.2.8/plug-ins/pagecurl/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/pagecurl/Makefile.in 2005-10-27 17:11:52.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,57 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = pagecurl$(EXEEXT) +subdir = plug-ins/pagecurl +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am__objects_1 = +am__objects_2 = pagecurl.$(OBJEXT) +am_pagecurl_OBJECTS = $(am__objects_1) $(am__objects_2) +pagecurl_OBJECTS = $(am_pagecurl_OBJECTS) +pagecurl_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_7 = +pagecurl_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_7) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_7) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(pagecurl_SOURCES) +DIST_SOURCES = $(pagecurl_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +283,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +334,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +381,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +404,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,34 +421,24 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = pagecurl - pagecurl_sources = pagecurl.c - pagecurl_built_sources = pagecurl-icons.h - pagecurl_SOURCES = \ $(pagecurl_built_sources) $(pagecurl_sources) - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -408,7 +450,6 @@ $(RT_LIBS) \ $(INTLLIBS) - PAGECURL_IMAGES = \ curl0.png \ curl1.png \ @@ -419,68 +460,52 @@ curl6.png \ curl7.png - EXTRA_DIST = $(PAGECURL_IMAGES) - CLEANFILES = $(pagecurl_built_sources) pagecurl-icons.list -subdir = plug-ins/pagecurl -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = pagecurl$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am__objects_1 = -am__objects_2 = pagecurl.$(OBJEXT) -am_pagecurl_OBJECTS = $(am__objects_1) $(am__objects_2) -pagecurl_OBJECTS = $(am_pagecurl_OBJECTS) -pagecurl_LDADD = $(LDADD) -pagecurl_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -pagecurl_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/pagecurl.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(pagecurl_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(pagecurl_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/pagecurl/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/pagecurl/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -488,8 +513,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -503,7 +528,7 @@ $(LINK) $(pagecurl_LDFLAGS) $(pagecurl_OBJECTS) $(pagecurl_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -511,37 +536,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pagecurl.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -553,14 +566,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -569,6 +574,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -580,10 +586,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -606,10 +613,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -623,7 +626,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -641,9 +644,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -664,7 +668,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -684,6 +688,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -721,8 +727,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/print/Makefile.in gimp-2.2.9/plug-ins/print/Makefile.in --- gimp-2.2.8/plug-ins/print/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/print/Makefile.in 2005-10-27 17:11:53.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,55 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = print$(EXEEXT) +subdir = plug-ins/print +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in AUTHORS +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_print_OBJECTS = print.$(OBJEXT) print-image-gimp.$(OBJEXT) \ + gimp_color_window.$(OBJEXT) gimp_main_window.$(OBJEXT) +print_OBJECTS = $(am_print_OBJECTS) +print_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +print_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(print_SOURCES) +DIST_SOURCES = $(print_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +281,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +332,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +379,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +402,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,15 +419,11 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -libexec_PROGRAMS = print - print_SOURCES = \ print.c \ print-image-gimp.c \ @@ -385,14 +431,12 @@ gimp_main_window.c \ print_gimp.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ $(GIMPPRINT_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -404,65 +448,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/print -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = print$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_print_OBJECTS = print.$(OBJEXT) print-image-gimp.$(OBJEXT) \ - gimp_color_window.$(OBJEXT) gimp_main_window.$(OBJEXT) -print_OBJECTS = $(am_print_OBJECTS) -print_LDADD = $(LDADD) -print_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -print_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp_color_window.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/gimp_main_window.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/print-image-gimp.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/print.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(print_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in AUTHORS Makefile.am -SOURCES = $(print_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/print/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/print/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -470,8 +499,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -485,7 +514,7 @@ $(LINK) $(print_LDFLAGS) $(print_OBJECTS) $(print_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -496,37 +525,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -538,14 +555,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -554,6 +563,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -565,10 +575,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -591,10 +602,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -608,7 +615,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -626,9 +633,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -648,7 +656,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -668,6 +676,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -705,8 +715,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/pygimp/acinclude.m4 gimp-2.2.9/plug-ins/pygimp/acinclude.m4 --- gimp-2.2.8/plug-ins/pygimp/acinclude.m4 1999-09-05 17:46:56.000000000 +0200 +++ gimp-2.2.9/plug-ins/pygimp/acinclude.m4 1970-01-01 01:00:00.000000000 +0100 @@ -1,135 +0,0 @@ -## Find the install dirs for the python installation. -## By James Henstridge - -# serial 1 - -AC_DEFUN(AM_PATH_PYTHON, - [AC_CHECK_PROGS(PYTHON, python python1.5 python1.4 python1.3,no) - if test "$PYTHON" != no; then - AC_MSG_CHECKING([where .py files should go]) -changequote(, )dnl - pythondir=`$PYTHON -c ' -import sys -if sys.version[0] > "1" or sys.version[2] > "4": - print "%s/lib/python%s/site-packages" % (sys.prefix, sys.version[:3]) -else: - print "%s/lib/python%s" % (sys.prefix, sys.version[:3])'` -changequote([, ])dnl - AC_MSG_RESULT($pythondir) - AC_MSG_CHECKING([where python extensions should go]) -changequote(, )dnl - pyexecdir=`$PYTHON -c ' -import sys -if sys.version[0] > "1" or sys.version[2] > "4": - print "%s/lib/python%s/site-packages" % (sys.exec_prefix, sys.version[:3]) -else: - print "%s/lib/python%s/sharedmodules" % (sys.exec_prefix, sys.version[:3])'` -changequote([, ])dnl - AC_MSG_RESULT($pyexecdir) - else - # these defaults are version independent ... - AC_MSG_CHECKING([where .py files should go]) - pythondir='$(prefix)/lib/site-python' - AC_MSG_RESULT($pythondir) - AC_MSG_CHECKING([where python extensions should go]) - pyexecdir='$(exec_prefix)/lib/site-python' - AC_MSG_RESULT($pyexecdir) - fi - AC_SUBST(pythondir) - AC_SUBST(pyexecdir)]) - - -## this one is commonly used with AM_PATH_PYTHONDIR ... -dnl AM_CHECK_PYMOD(MODNAME [,SYMBOL [,ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]]]) -dnl Check if a module containing a given symbol is visible to python. -AC_DEFUN(AM_CHECK_PYMOD, -[AC_REQUIRE([AM_PATH_PYTHON]) -py_mod_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'` -AC_MSG_CHECKING(for ifelse([$2],[],,[$2 in ])python module $1) -AC_CACHE_VAL(py_cv_mod_$py_mod_var, [ -ifelse([$2],[], [prog=" -import sys -try: - import $1 -except ImportError: - sys.exit(1) -except: - sys.exit(0) -sys.exit(0)"], [prog=" -import $1 -$1.$2"]) -if $PYTHON -c "$prog" 1>&AC_FD_CC 2>&AC_FD_CC - then - eval "py_cv_mod_$py_mod_var=yes" - else - eval "py_cv_mod_$py_mod_var=no" - fi -]) -py_val=`eval "echo \`echo '$py_cv_mod_'$py_mod_var\`"` -if test "x$py_val" != xno; then - AC_MSG_RESULT(yes) - ifelse([$3], [],, [$3 -])dnl -else - AC_MSG_RESULT(no) - ifelse([$4], [],, [$4 -])dnl -fi -]) - - - -# serial 1 - -dnl finds information needed for compilation of shared library style python -dnl extensions. AM_PATH_PYTHON should be called before hand. -AC_DEFUN(AM_INIT_PYEXEC_MOD, - [AC_REQUIRE([AM_PATH_PYTHON]) - AC_MSG_CHECKING([for python headers]) - AC_CACHE_VAL(am_cv_python_includes, - [changequote(,)dnl - am_cv_python_includes="`$PYTHON -c ' -import sys -includepy = \"%s/include/python%s\" % (sys.prefix, sys.version[:3]) -if sys.version[0] > \"1\" or sys.version[2] > \"4\": - libpl = \"%s/include/python%s\" % (sys.exec_prefix, sys.version[:3]) -else: - libpl = \"%s/lib/python%s/config\" % (sys.exec_prefix, sys.version[:3]) -print \"-I%s -I%s\" % (includepy, libpl)'`" - changequote([, ])]) - PYTHON_INCLUDES="$am_cv_python_includes" - AC_MSG_RESULT(found) - AC_SUBST(PYTHON_INCLUDES) - - AC_MSG_CHECKING([definitions from Python makefile]) - AC_CACHE_VAL(am_cv_python_makefile, - [changequote(,)dnl - py_makefile="`$PYTHON -c ' -import sys -print \"%s/lib/python%s/config/Makefile\"%(sys.exec_prefix, sys.version[:3])'`" - if test ! -f "$py_makefile"; then - AC_MSG_ERROR([*** Couldn't find the python config makefile. Maybe you are -*** missing the development portion of the python installation]) - fi - eval `sed -n \ --e "s/^CC=[ ]*\(.*\)/am_cv_python_CC='\1'/p" \ --e "s/^OPT=[ ]*\(.*\)/am_cv_python_OPT='\1'/p" \ --e "s/^CCSHARED=[ ]*\(.*\)/am_cv_python_CCSHARED='\1'/p" \ --e "s/^LDSHARED=[ ]*\(.*\)/am_cv_python_LDSHARED='\1'/p" \ --e "s/^SO=[ ]*\(.*\)/am_cv_python_SO='\1'/p" \ - $py_makefile` - am_cv_python_makefile=found - changequote([, ])]) - AC_MSG_RESULT(done) - CC="$am_cv_python_CC" - OPT="$am_cv_python_OPT" - SO="$am_cv_python_SO" - PYTHON_CFLAGS="$am_cv_python_CCSHARED \$(OPT)" - PYTHON_LINK="$am_cv_python_LDSHARED -o \[$]@" - - AC_SUBST(CC)dnl - AC_SUBST(OPT)dnl - AC_SUBST(SO)dnl - AC_SUBST(PYTHON_CFLAGS)dnl - AC_SUBST(PYTHON_LINK)]) - diff -uraN gimp-2.2.8/plug-ins/pygimp/configure.in gimp-2.2.9/plug-ins/pygimp/configure.in --- gimp-2.2.8/plug-ins/pygimp/configure.in 1999-09-05 17:46:56.000000000 +0200 +++ gimp-2.2.9/plug-ins/pygimp/configure.in 1970-01-01 01:00:00.000000000 +0100 @@ -1,26 +0,0 @@ -AC_INIT(gimpmodule.c) - -AM_INIT_AUTOMAKE(pygimp, 0.5) - -AM_PATH_PYTHON -AM_INIT_PYEXEC_MOD - -AM_CHECK_PYMOD(gtk,,,AC_MSG_ERROR([You need the pygtk package to use pygimp])) - -AC_PATH_PROG(GIMPTOOL, gimptool, no) - -if test "x$GIMPTOOL" = xno; then - AC_MSG_ERROR([could not find gimptool script]) -fi - -GIMP_CFLAGS_NOUI=`$GIMPTOOL --cflags-noui` -GIMP_LIBS_NOUI=`$GIMPTOOL --libs-noui` - -gimp_ver=`$GIMPTOOL --version | cut -d. -f 1-2 ` -pluginexecdir=\${libdir}/gimp/$gimp_ver/plug-ins - -AC_SUBST(GIMP_CFLAGS_NOUI) -AC_SUBST(GIMP_LIBS_NOUI) -AC_SUBST(pluginexecdir) - -AC_OUTPUT(Makefile doc/Makefile plug-ins/Makefile) diff -uraN gimp-2.2.8/plug-ins/pygimp/doc/Makefile.in gimp-2.2.9/plug-ins/pygimp/doc/Makefile.in --- gimp-2.2.8/plug-ins/pygimp/doc/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/pygimp/doc/Makefile.in 2005-10-27 17:11:53.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/pygimp/doc +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +248,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +299,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +346,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +386,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_DATA = pygimp.html - EXTRA_DIST = \ pygimp.sgml \ pygimp.html \ @@ -381,23 +397,38 @@ support-modules.html \ end-note.html -subdir = plug-ins/pygimp/doc -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/pygimp/doc/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/pygimp/doc/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -414,10 +445,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -431,7 +458,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -449,7 +476,6 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: install: install-am install-exec: install-exec-am @@ -470,7 +496,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -487,6 +513,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -521,10 +549,10 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am diff -uraN gimp-2.2.8/plug-ins/pygimp/Makefile.in gimp-2.2.9/plug-ins/pygimp/Makefile.in --- gimp-2.2.8/plug-ins/pygimp/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/pygimp/Makefile.in 2005-10-27 17:11:53.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +35,83 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/pygimp +DIST_COMMON = README $(pygimp_PYTHON) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in AUTHORS COPYING ChangeLog INSTALL NEWS \ + py-compile +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(pygimpdir)" "$(DESTDIR)$(pygimpdir)" \ + "$(DESTDIR)$(pygimpdir)" +pygimpLTLIBRARIES_INSTALL = $(INSTALL) +LTLIBRARIES = $(pygimp_LTLIBRARIES) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = +gimpmodule_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_4) +am_gimpmodule_la_OBJECTS = gimpmodule.lo pygimp-image.lo \ + pygimp-drawable.lo pygimp-tile.lo pygimp-display.lo \ + pygimp-parasite.lo pygimp-pdb.lo +gimpmodule_la_OBJECTS = $(am_gimpmodule_la_OBJECTS) +am__DEPENDENCIES_5 = \ + $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la +am__DEPENDENCIES_6 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_7 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +gimpprocbrowsermodule_la_DEPENDENCIES = $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_4) +am_gimpprocbrowsermodule_la_OBJECTS = procbrowser.lo +gimpprocbrowsermodule_la_OBJECTS = \ + $(am_gimpprocbrowsermodule_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gimpmodule_la_SOURCES) $(gimpprocbrowsermodule_la_SOURCES) +DIST_SOURCES = $(gimpmodule_la_SOURCES) \ + $(gimpprocbrowsermodule_la_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +pygimpPYTHON_INSTALL = $(INSTALL_DATA) +py_compile = $(top_srcdir)/py-compile +pygimpDATA_INSTALL = $(INSTALL_DATA) +DATA = $(pygimp_DATA) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +310,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +361,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +408,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,24 +448,17 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpprocbrowser = $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la - SUBDIRS = doc plug-ins - AM_CFLAGS = $(PYGIMP_EXTRA_CFLAGS) - INCLUDES = -I$(top_srcdir) $(PYTHON_INCLUDES) $(PYGTK_CFLAGS) $(GTK_CFLAGS) - pygimpdir = $(gimpplugindir)/python - pygimp_LTLIBRARIES = gimpmodule.la gimpprocbrowsermodule.la - gimpmodule_la_SOURCES = \ gimpmodule.c \ pygimp-image.c \ @@ -396,11 +469,9 @@ pygimp-pdb.c \ pygimp.h - gimpmodule_la_LDFLAGS = -module -avoid-version \ -export-symbols-regex 'initgimp|PLUG_IN_INFO' - gimpmodule_la_LIBADD = \ $(libgimp) \ $(libgimpcolor) \ @@ -408,13 +479,10 @@ $(GLIB_LIBS) \ $(RT_LIBS) - gimpprocbrowsermodule_la_SOURCES = \ procbrowser.c - gimpprocbrowsermodule_la_LDFLAGS = -module -avoid-version - gimpprocbrowsermodule_la_LIBADD = \ $(libgimpprocbrowser) \ $(libgimpui) \ @@ -426,7 +494,6 @@ $(RT_LIBS) \ $(INTLLIBS) - pygimp_PYTHON = \ gimpplugin.py \ gimpenums.py \ @@ -434,110 +501,69 @@ gimpui.py \ gimpfu.py - pygimp_DATA = pygimp-logo.png - pyenvdir = $(gimpplugindir)/environ - EXTRA_DIST = \ $(pygimp_DATA) \ makefile.msc -subdir = plug-ins/pygimp -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(pygimp_LTLIBRARIES) - -gimpmodule_la_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -am_gimpmodule_la_OBJECTS = gimpmodule.lo pygimp-image.lo \ - pygimp-drawable.lo pygimp-tile.lo pygimp-display.lo \ - pygimp-parasite.lo pygimp-pdb.lo -gimpmodule_la_OBJECTS = $(am_gimpmodule_la_OBJECTS) -gimpprocbrowsermodule_la_DEPENDENCIES = \ - $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -am_gimpprocbrowsermodule_la_OBJECTS = procbrowser.lo -gimpprocbrowsermodule_la_OBJECTS = \ - $(am_gimpprocbrowsermodule_la_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimpmodule.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/procbrowser.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/pygimp-display.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/pygimp-drawable.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/pygimp-image.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/pygimp-parasite.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/pygimp-pdb.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/pygimp-tile.Plo -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gimpmodule_la_SOURCES) \ - $(gimpprocbrowsermodule_la_SOURCES) -py_compile = $(top_srcdir)/py-compile -DATA = $(pygimp_DATA) - - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = README $(pygimp_PYTHON) $(srcdir)/Makefile.in AUTHORS \ - COPYING ChangeLog INSTALL Makefile.am NEWS acinclude.m4 \ - configure.in py-compile -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(gimpmodule_la_SOURCES) $(gimpprocbrowsermodule_la_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/pygimp/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/pygimp/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -pygimpLTLIBRARIES_INSTALL = $(INSTALL) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-pygimpLTLIBRARIES: $(pygimp_LTLIBRARIES) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(pygimpdir) + test -z "$(pygimpdir)" || $(mkdir_p) "$(DESTDIR)$(pygimpdir)" @list='$(pygimp_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=install $(pygimpLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pygimpdir)/$$f"; \ - $(LIBTOOL) --mode=install $(pygimpLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pygimpdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=install $(pygimpLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(pygimpdir)/$$f'"; \ + $(LIBTOOL) --mode=install $(pygimpLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(pygimpdir)/$$f"; \ else :; fi; \ done uninstall-pygimpLTLIBRARIES: @$(NORMAL_UNINSTALL) - @list='$(pygimp_LTLIBRARIES)'; for p in $$list; do \ - p="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(pygimpdir)/$$p"; \ - $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(pygimpdir)/$$p; \ + @set -x; list='$(pygimp_LTLIBRARIES)'; for p in $$list; do \ + p=$(am__strip_dir) \ + echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(pygimpdir)/$$p'"; \ + $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(pygimpdir)/$$p"; \ done clean-pygimpLTLIBRARIES: -test -z "$(pygimp_LTLIBRARIES)" || rm -f $(pygimp_LTLIBRARIES) @list='$(pygimp_LTLIBRARIES)'; for p in $$list; do \ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ - test "$$dir" = "$$p" && dir=.; \ + test "$$dir" != "$$p" || dir=.; \ echo "rm -f \"$${dir}/so_locations\""; \ rm -f "$${dir}/so_locations"; \ done @@ -547,7 +573,7 @@ $(LINK) -rpath $(pygimpdir) $(gimpprocbrowsermodule_la_LDFLAGS) $(gimpprocbrowsermodule_la_OBJECTS) $(gimpprocbrowsermodule_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -562,37 +588,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pygimp-tile.Plo@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -603,46 +617,50 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -pygimpPYTHON_INSTALL = $(INSTALL_DATA) install-pygimpPYTHON: $(pygimp_PYTHON) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(pygimpdir) + test -z "$(pygimpdir)" || $(mkdir_p) "$(DESTDIR)$(pygimpdir)" @list='$(pygimp_PYTHON)'; dlist=''; for p in $$list; do\ if test -f "$$p"; then b=; else b="$(srcdir)/"; fi; \ if test -f $$b$$p; then \ - d=`echo "$$p" | sed -e 's,^.*/,,'`; \ - dlist="$$dlist $$d"; \ - echo " $(pygimpPYTHON_INSTALL) $$b$$p $(DESTDIR)$(pygimpdir)/$$d"; \ - $(pygimpPYTHON_INSTALL) $$b$$p $(DESTDIR)$(pygimpdir)/$$d; \ + f=$(am__strip_dir) \ + dlist="$$dlist $$f"; \ + echo " $(pygimpPYTHON_INSTALL) '$$b$$p' '$(DESTDIR)$(pygimpdir)/$$f'"; \ + $(pygimpPYTHON_INSTALL) "$$b$$p" "$(DESTDIR)$(pygimpdir)/$$f"; \ else :; fi; \ done; \ - PYTHON=$(PYTHON) $(py_compile) --basedir $(DESTDIR)$(pygimpdir) $$dlist + if test -n "$$dlist"; then \ + if test -z "$(DESTDIR)"; then \ + PYTHON=$(PYTHON) $(py_compile) --basedir "$(pygimpdir)" $$dlist; \ + else \ + PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(pygimpdir)" $$dlist; \ + fi; \ + else :; fi uninstall-pygimpPYTHON: @$(NORMAL_UNINSTALL) - list='$(pygimp_PYTHON)'; for p in $$list; do \ - d=`echo "$$p" | sed -e 's,^.*/,,'`; \ - rm -f $(DESTDIR)$(pygimpdir)/$$d; \ - rm -f $(DESTDIR)$(pygimpdir)/$${d}c; \ - rm -f $(DESTDIR)$(pygimpdir)/$${d}o; \ + @list='$(pygimp_PYTHON)'; dlist=''; for p in $$list; do\ + f=$(am__strip_dir) \ + rm -f "$(DESTDIR)$(pygimpdir)/$$f"; \ + rm -f "$(DESTDIR)$(pygimpdir)/$${f}c"; \ + rm -f "$(DESTDIR)$(pygimpdir)/$${f}o"; \ done -pygimpDATA_INSTALL = $(INSTALL_DATA) install-pygimpDATA: $(pygimp_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(pygimpdir) + test -z "$(pygimpdir)" || $(mkdir_p) "$(DESTDIR)$(pygimpdir)" @list='$(pygimp_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(pygimpDATA_INSTALL) $$d$$p $(DESTDIR)$(pygimpdir)/$$f"; \ - $(pygimpDATA_INSTALL) $$d$$p $(DESTDIR)$(pygimpdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(pygimpDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pygimpdir)/$$f'"; \ + $(pygimpDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pygimpdir)/$$f"; \ done uninstall-pygimpDATA: @$(NORMAL_UNINSTALL) @list='$(pygimp_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(pygimpdir)/$$f"; \ - rm -f $(DESTDIR)$(pygimpdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(pygimpdir)/$$f'"; \ + rm -f "$(DESTDIR)$(pygimpdir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd @@ -652,7 +670,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -664,7 +688,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -672,7 +696,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -693,7 +723,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -704,14 +734,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -720,19 +742,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -742,10 +767,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -768,10 +794,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -785,7 +807,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -800,15 +822,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -818,8 +842,9 @@ all-am: Makefile $(LTLIBRARIES) $(DATA) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(pygimpdir) $(DESTDIR)$(pygimpdir) $(DESTDIR)$(pygimpdir) - + for dir in "$(DESTDIR)$(pygimpdir)" "$(DESTDIR)$(pygimpdir)" "$(DESTDIR)$(pygimpdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -839,7 +864,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -859,6 +884,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -897,27 +924,23 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-pygimpLTLIBRARIES \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-pygimpLTLIBRARIES \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-local \ - install-data-recursive install-exec install-exec-am \ - install-exec-recursive install-info install-info-am \ - install-info-recursive install-man install-pygimpDATA \ - install-pygimpLTLIBRARIES install-pygimpPYTHON \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ - pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ - tags-recursive uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-pygimpDATA \ - uninstall-pygimpLTLIBRARIES uninstall-pygimpPYTHON \ - uninstall-recursive + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ + install-exec-am install-info install-info-am install-man \ + install-pygimpDATA install-pygimpLTLIBRARIES \ + install-pygimpPYTHON install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic maintainer-clean-recursive \ + mostlyclean mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am \ + uninstall-pygimpDATA uninstall-pygimpLTLIBRARIES \ + uninstall-pygimpPYTHON install-data-local: diff -uraN gimp-2.2.8/plug-ins/pygimp/plug-ins/Makefile.in gimp-2.2.9/plug-ins/pygimp/plug-ins/Makefile.in --- gimp-2.2.8/plug-ins/pygimp/plug-ins/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/pygimp/plug-ins/Makefile.in 2005-10-27 17:11:53.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +35,33 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/pygimp/plug-ins +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(pluginexecdir)" \ + "$(DESTDIR)$(pluginexecdir)" +pluginexecSCRIPT_INSTALL = $(INSTALL_SCRIPT) +SCRIPTS = $(pluginexec_SCRIPTS) +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +pluginexecDATA_INSTALL = $(INSTALL_DATA) +DATA = $(pluginexec_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +260,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +311,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +358,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -369,7 +399,6 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ pluginexecdir = $(gimpplugindir)/plug-ins - pluginexec_SCRIPTS = \ colorxhtml.py \ clothify.py \ @@ -380,39 +409,49 @@ shadow_bevel.py \ whirlpinch.py - pluginexec_DATA = gtkcons.py - EXTRA_DIST = $(pluginexec_DATA) $(pluginexec_SCRIPTS) sphere.py -subdir = plug-ins/pygimp/plug-ins -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SCRIPTS = $(pluginexec_SCRIPTS) - -DIST_SOURCES = -DATA = $(pluginexec_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/pygimp/plug-ins/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/pygimp/plug-ins/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -pluginexecSCRIPT_INSTALL = $(INSTALL_SCRIPT) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-pluginexecSCRIPTS: $(pluginexec_SCRIPTS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(pluginexecdir) + test -z "$(pluginexecdir)" || $(mkdir_p) "$(DESTDIR)$(pluginexecdir)" @list='$(pluginexec_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " $(pluginexecSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(pluginexecdir)/$$f"; \ - $(pluginexecSCRIPT_INSTALL) $$d$$p $(DESTDIR)$(pluginexecdir)/$$f; \ + echo " $(pluginexecSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(pluginexecdir)/$$f'"; \ + $(pluginexecSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(pluginexecdir)/$$f"; \ else :; fi; \ done @@ -420,8 +459,8 @@ @$(NORMAL_UNINSTALL) @list='$(pluginexec_SCRIPTS)'; for p in $$list; do \ f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " rm -f $(DESTDIR)$(pluginexecdir)/$$f"; \ - rm -f $(DESTDIR)$(pluginexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(pluginexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(pluginexecdir)/$$f"; \ done mostlyclean-libtool: @@ -433,23 +472,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -pluginexecDATA_INSTALL = $(INSTALL_DATA) install-pluginexecDATA: $(pluginexec_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(pluginexecdir) + test -z "$(pluginexecdir)" || $(mkdir_p) "$(DESTDIR)$(pluginexecdir)" @list='$(pluginexec_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(pluginexecDATA_INSTALL) $$d$$p $(DESTDIR)$(pluginexecdir)/$$f"; \ - $(pluginexecDATA_INSTALL) $$d$$p $(DESTDIR)$(pluginexecdir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(pluginexecDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pluginexecdir)/$$f'"; \ + $(pluginexecDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pluginexecdir)/$$f"; \ done uninstall-pluginexecDATA: @$(NORMAL_UNINSTALL) @list='$(pluginexec_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(pluginexecdir)/$$f"; \ - rm -f $(DESTDIR)$(pluginexecdir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(pluginexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(pluginexecdir)/$$f"; \ done tags: TAGS TAGS: @@ -457,10 +495,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -474,7 +508,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -492,9 +526,10 @@ check-am: all-am check: check-am all-am: Makefile $(SCRIPTS) $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(pluginexecdir) $(DESTDIR)$(pluginexecdir) + for dir in "$(DESTDIR)$(pluginexecdir)" "$(DESTDIR)$(pluginexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -514,7 +549,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -531,6 +566,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -566,11 +603,11 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-pluginexecDATA \ - install-pluginexecSCRIPTS install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man \ + install-pluginexecDATA install-pluginexecSCRIPTS install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-pluginexecDATA \ diff -uraN gimp-2.2.8/plug-ins/rcm/images/Makefile.in gimp-2.2.9/plug-ins/rcm/images/Makefile.in --- gimp-2.2.8/plug-ins/rcm/images/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/rcm/images/Makefile.in 2005-10-27 17:11:54.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,22 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/rcm/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DATA = $(noinst_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +248,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +299,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +346,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,35 +386,47 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - STOCK_IMAGES = \ rcm-360.png \ rcm-a-b.png \ rcm-ccw.png \ rcm-cw.png - EXTRA_DIST = $(STOCK_IMAGES) - noinst_DATA = rcm-stock-pixbufs.h CLEANFILES = $(noinst_DATA) stock-icons.list -subdir = plug-ins/rcm/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/rcm/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/rcm/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -413,10 +443,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -430,7 +456,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -448,7 +474,6 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: install: install-am install-exec: install-exec-am @@ -470,7 +495,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -487,6 +512,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -521,10 +548,10 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am diff -uraN gimp-2.2.8/plug-ins/rcm/Makefile.in gimp-2.2.9/plug-ins/rcm/Makefile.in --- gimp-2.2.8/plug-ins/rcm/Makefile.in 2005-06-26 21:28:26.000000000 +0200 +++ gimp-2.2.9/plug-ins/rcm/Makefile.in 2005-10-27 17:11:54.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,62 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = rcm$(EXEEXT) +subdir = plug-ins/rcm +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_rcm_OBJECTS = rcm.$(OBJEXT) rcm_callback.$(OBJEXT) \ + rcm_dialog.$(OBJEXT) rcm_gdk.$(OBJEXT) rcm_misc.$(OBJEXT) \ + rcm_stock.$(OBJEXT) +rcm_OBJECTS = $(am_rcm_OBJECTS) +rcm_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +rcm_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(rcm_SOURCES) +DIST_SOURCES = $(rcm_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +288,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +339,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +386,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +409,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,21 +426,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - SUBDIRS = images - -libexec_PROGRAMS = rcm - rcm_SOURCES = \ rcm.c \ rcm.h \ @@ -398,13 +448,11 @@ rcm_stock.c \ rcm_stock.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -415,72 +463,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/rcm -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = rcm$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_rcm_OBJECTS = rcm.$(OBJEXT) rcm_callback.$(OBJEXT) \ - rcm_dialog.$(OBJEXT) rcm_gdk.$(OBJEXT) rcm_misc.$(OBJEXT) \ - rcm_stock.$(OBJEXT) -rcm_OBJECTS = $(am_rcm_OBJECTS) -rcm_LDADD = $(LDADD) -rcm_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -rcm_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/rcm.Po ./$(DEPDIR)/rcm_callback.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/rcm_dialog.Po ./$(DEPDIR)/rcm_gdk.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/rcm_misc.Po ./$(DEPDIR)/rcm_stock.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(rcm_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(rcm_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/rcm/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/rcm/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -488,8 +514,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -503,7 +529,7 @@ $(LINK) $(rcm_LDFLAGS) $(rcm_OBJECTS) $(rcm_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -516,37 +542,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rcm_stock.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -565,7 +579,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -577,7 +597,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -585,7 +605,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -606,7 +632,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -617,14 +643,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -633,19 +651,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -655,10 +676,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -681,10 +703,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -698,7 +716,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -713,15 +731,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -731,8 +751,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -752,7 +773,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -772,6 +793,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -808,24 +831,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/rcm/rcm_callback.c gimp-2.2.9/plug-ins/rcm/rcm_callback.c --- gimp-2.2.8/plug-ins/rcm/rcm_callback.c 2004-11-17 11:44:01.000000000 +0100 +++ gimp-2.2.9/plug-ins/rcm/rcm_callback.c 2005-08-15 13:34:26.000000000 +0200 @@ -96,7 +96,7 @@ rcm_draw_arrows (circle->preview->window, circle->preview->style->black_gc, circle->angle); circle->action_flag = VIRGIN; - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } void @@ -129,7 +129,7 @@ circle->angle); circle->action_flag = VIRGIN; - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } @@ -299,7 +299,7 @@ return; Current.Gray_to_from = GRAY_TO; - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } void @@ -310,7 +310,7 @@ return; Current.Gray_to_from = GRAY_FROM; - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } @@ -323,32 +323,6 @@ Current.RealTime = GTK_TOGGLE_BUTTON (button)->active; } -static void -rcm_change_preview (void) -{ - /* must hide and show or resize would not work ... */ - - gtk_widget_hide (Current.Bna->before); - gtk_widget_hide (Current.Bna->after); - - gtk_widget_set_size_request (Current.Bna->before, - Current.reduced->width, - Current.reduced->height); - - gtk_widget_set_size_request (Current.Bna->after, - Current.reduced->width, - Current.reduced->height); - - rcm_render_preview (Current.Bna->before, ORIGINAL); - rcm_render_preview (Current.Bna->after, CURRENT); - - gtk_widget_queue_draw (Current.Bna->before); - gtk_widget_queue_draw (Current.Bna->after); - - gtk_widget_show (Current.Bna->before); - gtk_widget_show (Current.Bna->after); -} - void rcm_combo_callback (GtkWidget *widget, gpointer data) @@ -359,7 +333,13 @@ Current.reduced = rcm_reduce_image (Current.drawable, Current.mask, MAX_PREVIEW_SIZE, value); - rcm_change_preview (); + + gtk_widget_set_size_request (Current.Bna->before, + Current.reduced->width, + Current.reduced->height); + gtk_widget_set_size_request (Current.Bna->after, + Current.reduced->width, + Current.reduced->height); } @@ -370,18 +350,11 @@ GdkEvent *event, RcmCircle *circle) { - switch (circle->action_flag) + if (circle->action_flag == VIRGIN) { - case DO_NOTHING: return FALSE; break; + rcm_draw_arrows (widget->window, widget->style->black_gc, circle->angle); + } - case VIRGIN: rcm_draw_arrows(widget->window, widget->style->black_gc, - circle->angle); - break; - - default: if (Current.RealTime) - rcm_render_preview(Current.Bna->after,CURRENT); - break; - } return TRUE; } @@ -426,7 +399,7 @@ rcm_units_factor(Current.Units)); if (Current.RealTime) - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } } else @@ -448,8 +421,7 @@ circle->action_flag = VIRGIN; - if (! Current.RealTime) - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); return TRUE; } @@ -517,7 +489,7 @@ rcm_units_factor(Current.Units)); if (Current.RealTime) - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } return TRUE; @@ -539,8 +511,6 @@ rcm_draw_large_circle (widget->window, widget->style->black_gc, circle->gray_sat); } - else if (Current.RealTime) - rcm_render_preview (Current.Bna->after, CURRENT); return TRUE; } @@ -579,7 +549,7 @@ circle->satur); if (Current.RealTime) - rcm_render_preview (Current.Bna->after,CURRENT); + rcm_render_preview (Current.Bna->after); return TRUE; } @@ -597,8 +567,7 @@ circle->action_flag = VIRGIN; - if (!Current.RealTime) - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); return TRUE; } @@ -652,7 +621,7 @@ circle->satur); if (Current.RealTime) - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); return TRUE; } @@ -677,7 +646,7 @@ rcm_draw_arrows (circle->preview->window, circle->preview->style->black_gc, circle->angle); - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } void @@ -697,7 +666,7 @@ rcm_draw_arrows (circle->preview->window, circle->preview->style->black_gc, circle->angle); - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } void @@ -722,7 +691,7 @@ circle->preview->style->black_gc, circle->gray_sat); - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } void @@ -746,7 +715,7 @@ circle->preview->style->black_gc, circle->gray_sat); - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } void @@ -763,5 +732,5 @@ circle->preview->style->black_gc, circle->gray_sat); - rcm_render_preview (Current.Bna->after, CURRENT); + rcm_render_preview (Current.Bna->after); } diff -uraN gimp-2.2.8/plug-ins/rcm/rcm_dialog.c gimp-2.2.9/plug-ins/rcm/rcm_dialog.c --- gimp-2.2.8/plug-ins/rcm/rcm_dialog.c 2005-04-01 12:21:14.000000000 +0200 +++ gimp-2.2.9/plug-ins/rcm/rcm_dialog.c 2005-08-15 13:34:26.000000000 +0200 @@ -76,6 +76,7 @@ static GtkWidget * rcm_create_one_preview (GtkWidget **preview, + gint mode, gint width, gint height) { @@ -93,6 +94,8 @@ gtk_container_add (GTK_CONTAINER (frame), *preview); gtk_widget_show (*preview); + g_object_set_data (G_OBJECT (*preview), "mode", GINT_TO_POINTER (mode)); + return align; } @@ -120,12 +123,16 @@ gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); gtk_widget_show (label); - frame = rcm_create_one_preview (&Current.Bna->before, + frame = rcm_create_one_preview (&Current.Bna->before, ORIGINAL, Current.reduced->width, Current.reduced->height); gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0); gtk_widget_show (frame); + g_signal_connect_after (Current.Bna->before, "size-allocate", + G_CALLBACK (rcm_render_preview), + NULL); + vbox = gtk_vbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (top_vbox), vbox, TRUE, TRUE, 0); gtk_widget_show (vbox); @@ -134,12 +141,16 @@ gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0); gtk_widget_show (label); - frame = rcm_create_one_preview (&Current.Bna->after, + frame = rcm_create_one_preview (&Current.Bna->after, CURRENT, Current.reduced->width, Current.reduced->height); gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0); gtk_widget_show (frame); + g_signal_connect_after (Current.Bna->after, "size-allocate", + G_CALLBACK (rcm_render_preview), + NULL); + vbox = gtk_vbox_new (FALSE, 6); gtk_box_pack_start (GTK_BOX (top_vbox), vbox, FALSE, FALSE, 0); gtk_widget_show (vbox); @@ -684,8 +695,6 @@ gtk_widget_show (dlg); - rcm_render_preview (Current.Bna->before, ORIGINAL); - rcm_render_preview (Current.Bna->after, CURRENT); rcm_render_circle (Current.From->preview, SUM, MARGIN); rcm_render_circle (Current.To->preview, SUM, MARGIN); rcm_render_circle (Current.Gray->preview, GRAY_SUM, GRAY_MARGIN); diff -uraN gimp-2.2.8/plug-ins/rcm/rcm_misc.c gimp-2.2.9/plug-ins/rcm/rcm_misc.c --- gimp-2.2.8/plug-ins/rcm/rcm_misc.c 2004-08-03 00:16:35.000000000 +0200 +++ gimp-2.2.9/plug-ins/rcm/rcm_misc.c 2005-08-15 13:34:26.000000000 +0200 @@ -317,21 +317,22 @@ /* render before/after preview */ void -rcm_render_preview (GtkWidget *preview, - gint version) +rcm_render_preview (GtkWidget *preview) { ReducedImage *reduced; - gint RW, RH, bytes, i, j, unchanged, skip; + gint version; + gint RW, RH, bytes, i, j; + gboolean unchanged, skip; guchar *rgb_array, *a; gdouble H, S, V; gdouble *hsv_array; guchar rgb[3]; gfloat degree; - /* init some variables */ - g_return_if_fail (preview != NULL); + version = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (preview), "mode")); + reduced = Current.reduced; RW = reduced->width; RH = reduced->height; @@ -347,8 +348,8 @@ { for (j = 0; j < RW; j++) { - unchanged = 1; /* TRUE */ - skip = 0; /* FALSE */ + unchanged = TRUE; + skip = FALSE; H = hsv_array[i*RW*bytes + j*bytes + 0]; S = hsv_array[i*RW*bytes + j*bytes + 1]; @@ -366,13 +367,16 @@ S = Current.Gray->satur; } else - skip = 1; + skip = TRUE; break; case GRAY_TO: - unchanged = 0; - skip = 1; - gimp_hsv_to_rgb4 (rgb, Current.Gray->hue/TP, Current.Gray->satur, V); + unchanged = FALSE; + skip = TRUE; + gimp_hsv_to_rgb4 (rgb, + Current.Gray->hue/TP, + Current.Gray->satur, + V); break; default: @@ -382,7 +386,7 @@ if (!skip) { - unchanged = 0; + unchanged = FALSE; H = rcm_linear (rcm_left_end (Current.From->angle), rcm_right_end (Current.From->angle), rcm_left_end (Current.To->angle), @@ -427,11 +431,12 @@ } } } - gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview), - 0, 0, RW, RH, - GIMP_RGBA_IMAGE, - a, - RW * 4); + + gimp_preview_area_draw (GIMP_PREVIEW_AREA (preview), + 0, 0, RW, RH, + GIMP_RGBA_IMAGE, + a, + RW * 4); g_free (a); } diff -uraN gimp-2.2.8/plug-ins/rcm/rcm_misc.h gimp-2.2.9/plug-ins/rcm/rcm_misc.h --- gimp-2.2.8/plug-ins/rcm/rcm_misc.h 2004-01-30 12:53:28.000000000 +0100 +++ gimp-2.2.9/plug-ins/rcm/rcm_misc.h 2005-08-15 13:34:26.000000000 +0200 @@ -53,12 +53,11 @@ gfloat *beta, gfloat angle); float angle_mod_2PI (gfloat angle); -ReducedImage *rcm_reduce_image (GimpDrawable *, - GimpDrawable *, - gint , - gint ); -void rcm_render_preview (GtkWidget *, - gint); +ReducedImage *rcm_reduce_image (GimpDrawable *drawable, + GimpDrawable *mask, + gint longer_size, + gint selection); +void rcm_render_preview (GtkWidget *preview); void rcm_render_circle (GtkWidget *preview, gint sum, gint margin); diff -uraN gimp-2.2.8/plug-ins/script-fu/Makefile.in gimp-2.2.9/plug-ins/script-fu/Makefile.in --- gimp-2.2.8/plug-ins/script-fu/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/script-fu/Makefile.in 2005-10-27 17:11:54.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,69 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = script-fu$(EXEEXT) +subdir = plug-ins/script-fu +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_script_fu_OBJECTS = script-fu.$(OBJEXT) script-fu-console.$(OBJEXT) \ + script-fu-interface.$(OBJEXT) script-fu-text-console.$(OBJEXT) \ + script-fu-scripts.$(OBJEXT) script-fu-server.$(OBJEXT) \ + siod-wrapper.$(OBJEXT) +script_fu_OBJECTS = $(am_script_fu_OBJECTS) +script_fu_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la +am__DEPENDENCIES_2 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +@HAVE_GLIBC_REGEX_FALSE@am__DEPENDENCIES_7 = \ +@HAVE_GLIBC_REGEX_FALSE@ $(top_builddir)/regexrepl/libregex.a +am__DEPENDENCIES_8 = +script_fu_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) siod/libsiod.a \ + $(am__DEPENDENCIES_7) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_8) \ + $(am__DEPENDENCIES_8) $(am__DEPENDENCIES_8) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(script_fu_SOURCES) +DIST_SOURCES = $(script_fu_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +295,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +346,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +393,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +416,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,23 +433,16 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la libgimpprocbrowser = $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la - @OS_WIN32_TRUE@mwindows = -mwindows @OS_WIN32_TRUE@WINSOCK_LIBS = -lws2_32 - AM_LDFLAGS = $(mwindows) - SUBDIRS = siod scripts - -libexec_PROGRAMS = script-fu - script_fu_SOURCES = \ script-fu.c \ script-fu-console.c \ @@ -404,16 +461,13 @@ siod-wrapper.c \ siod-wrapper.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) @HAVE_GLIBC_REGEX_FALSE@REGEXREPL = $(top_builddir)/regexrepl/libregex.a - @HAVE_GLIBC_REGEX_TRUE@REGEXREPL = - LDADD = \ $(libgimpprocbrowser) \ $(libgimpui) \ @@ -429,105 +483,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/script-fu -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = script-fu$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_script_fu_OBJECTS = script-fu.$(OBJEXT) script-fu-console.$(OBJEXT) \ - script-fu-interface.$(OBJEXT) script-fu-text-console.$(OBJEXT) \ - script-fu-scripts.$(OBJEXT) script-fu-server.$(OBJEXT) \ - siod-wrapper.$(OBJEXT) -script_fu_OBJECTS = $(am_script_fu_OBJECTS) -script_fu_LDADD = $(LDADD) -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@script_fu_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ siod/libsiod.a \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_TRUE@ $(top_builddir)/regexrepl/libregex.a -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@script_fu_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ siod/libsiod.a \ -@HAVE_GLIBC_REGEX_FALSE@@OS_WIN32_FALSE@ $(top_builddir)/regexrepl/libregex.a -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@script_fu_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_TRUE@ siod/libsiod.a -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@script_fu_DEPENDENCIES = \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ $(top_builddir)/plug-ins/dbbrowser/libgimpprocbrowser.la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la \ -@HAVE_GLIBC_REGEX_TRUE@@OS_WIN32_FALSE@ siod/libsiod.a -script_fu_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/script-fu-console.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/script-fu-interface.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/script-fu-scripts.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/script-fu-server.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/script-fu-text-console.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/script-fu.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/siod-wrapper.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(script_fu_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(script_fu_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/script-fu/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/script-fu/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -535,8 +534,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -550,7 +549,7 @@ $(LINK) $(script_fu_LDFLAGS) $(script_fu_OBJECTS) $(script_fu_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -564,37 +563,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/siod-wrapper.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -613,7 +600,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -625,7 +618,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -633,7 +626,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -654,7 +653,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -665,14 +664,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -681,19 +672,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -703,10 +697,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -729,10 +724,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -746,7 +737,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -761,15 +752,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -779,8 +772,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) - + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -800,7 +794,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -820,6 +814,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -856,24 +852,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libexecPROGRAMS clean-libtool \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libexecPROGRAMS clean-libtool \ clean-recursive ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive \ - install-libexecPROGRAMS install-man install-recursive \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-libexecPROGRAMS install-man \ install-strip installcheck installcheck-am installdirs \ - installdirs-am installdirs-recursive maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ - mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \ - ps-recursive tags tags-recursive uninstall uninstall-am \ - uninstall-info-am uninstall-info-recursive \ - uninstall-libexecPROGRAMS uninstall-recursive + installdirs-am maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-compile \ + mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/script-fu/script-fu-interface.c gimp-2.2.9/plug-ins/script-fu/script-fu-interface.c --- gimp-2.2.8/plug-ins/script-fu/script-fu-interface.c 2004-11-17 18:06:22.000000000 +0100 +++ gimp-2.2.9/plug-ins/script-fu/script-fu-interface.c 2005-09-20 18:24:02.000000000 +0200 @@ -703,6 +703,9 @@ gint response_id, SFScript *script) { + if (! GTK_WIDGET_SENSITIVE (GTK_DIALOG (sf_interface->dialog)->action_area)) + return; + switch (response_id) { case GTK_RESPONSE_HELP: diff -uraN gimp-2.2.8/plug-ins/script-fu/scripts/images/Makefile.in gimp-2.2.9/plug-ins/script-fu/scripts/images/Makefile.in --- gimp-2.2.8/plug-ins/script-fu/scripts/images/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/script-fu/scripts/images/Makefile.in 2005-10-27 17:11:55.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/script-fu/scripts/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(imagesdatadir)" +imagesdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(imagesdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - imagesdatadir = $(gimpdatadir)/scripts/images - imagesdata_DATA = \ beavis.jpg \ texture.jpg \ @@ -378,25 +402,39 @@ texture2.jpg \ texture3.jpg - EXTRA_DIST = $(imagesdata_DATA) -subdir = plug-ins/script-fu/scripts/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(imagesdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/script-fu/scripts/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/script-fu/scripts/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -407,23 +445,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -imagesdataDATA_INSTALL = $(INSTALL_DATA) install-imagesdataDATA: $(imagesdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(imagesdatadir) + test -z "$(imagesdatadir)" || $(mkdir_p) "$(DESTDIR)$(imagesdatadir)" @list='$(imagesdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(imagesdataDATA_INSTALL) $$d$$p $(DESTDIR)$(imagesdatadir)/$$f"; \ - $(imagesdataDATA_INSTALL) $$d$$p $(DESTDIR)$(imagesdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(imagesdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(imagesdatadir)/$$f'"; \ + $(imagesdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(imagesdatadir)/$$f"; \ done uninstall-imagesdataDATA: @$(NORMAL_UNINSTALL) @list='$(imagesdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(imagesdatadir)/$$f"; \ - rm -f $(DESTDIR)$(imagesdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(imagesdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(imagesdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -431,10 +468,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -448,7 +481,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -466,9 +499,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(imagesdatadir) + for dir in "$(DESTDIR)$(imagesdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -488,7 +522,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -505,6 +539,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -539,13 +575,13 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am \ - install-imagesdataDATA install-info install-info-am install-man \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - uninstall uninstall-am uninstall-imagesdataDATA \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-imagesdataDATA install-info install-info-am \ + install-man install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ + ps ps-am uninstall uninstall-am uninstall-imagesdataDATA \ uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/plug-ins/script-fu/scripts/Makefile.in gimp-2.2.9/plug-ins/script-fu/scripts/Makefile.in --- gimp-2.2.8/plug-ins/script-fu/scripts/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/script-fu/scripts/Makefile.in 2005-10-27 17:11:54.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,39 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/script-fu/scripts +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(scriptdatadir)" +scriptdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(scriptdata_DATA) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +265,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +316,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +363,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,11 +403,8 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = images - scriptdatadir = $(gimpdatadir)/scripts - scriptdata_DATA = \ 3d-outline.scm \ 3dTruchet.scm \ @@ -472,35 +504,42 @@ web-browser.scm \ xach-effect.scm - EXTRA_DIST = \ $(scriptdata_DATA) \ test-sphere.scm -subdir = plug-ins/script-fu/scripts -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(scriptdata_DATA) - - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/script-fu/scripts/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/script-fu/scripts/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -511,23 +550,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -scriptdataDATA_INSTALL = $(INSTALL_DATA) install-scriptdataDATA: $(scriptdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(scriptdatadir) + test -z "$(scriptdatadir)" || $(mkdir_p) "$(DESTDIR)$(scriptdatadir)" @list='$(scriptdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(scriptdataDATA_INSTALL) $$d$$p $(DESTDIR)$(scriptdatadir)/$$f"; \ - $(scriptdataDATA_INSTALL) $$d$$p $(DESTDIR)$(scriptdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(scriptdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(scriptdatadir)/$$f'"; \ + $(scriptdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(scriptdatadir)/$$f"; \ done uninstall-scriptdataDATA: @$(NORMAL_UNINSTALL) @list='$(scriptdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(scriptdatadir)/$$f"; \ - rm -f $(DESTDIR)$(scriptdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(scriptdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(scriptdatadir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd @@ -537,7 +575,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -549,7 +593,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -557,7 +601,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -578,7 +628,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -589,14 +639,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -605,19 +647,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -627,10 +672,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -653,10 +699,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -670,7 +712,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -685,15 +727,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -703,8 +747,9 @@ all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(scriptdatadir) - + for dir in "$(DESTDIR)$(scriptdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -724,7 +769,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -742,6 +787,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -776,22 +823,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-scriptdataDATA install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - installdirs-recursive maintainer-clean maintainer-clean-generic \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-scriptdataDATA \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am \ uninstall-scriptdataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/plug-ins/script-fu/scripts/text-circle.scm gimp-2.2.9/plug-ins/script-fu/scripts/text-circle.scm --- gimp-2.2.8/plug-ins/script-fu/scripts/text-circle.scm 2004-11-18 23:44:28.000000000 +0100 +++ gimp-2.2.9/plug-ins/script-fu/scripts/text-circle.scm 2005-09-20 18:24:02.000000000 +0200 @@ -5,7 +5,11 @@ ;; Thanks: ;; jseymour@jimsun.LinxNet.com (Jim Seymour) ;; Sven Neumann - +;; +;; Modified June 24, 2005 by Kevin Cozens +;; Incorporated changes made by Daniel P. Stasinski in his text-circle3.scm +;; script. The letters are now placed properly for both positive and negative +;; fill angles. (if (not (symbol-bound? 'script-fu-text-circle-debug? (the-environment))) (define script-fu-text-circle-debug? #f)) @@ -17,6 +21,7 @@ (define (wrap-string str) (string-append "\"" str "\"")) (define (white-space-string? str) (or (equal? " " str) (equal? " " str))) + (let* ((drawable-size (* 2.0 (+ radius (* 2 font-size)))) (img (car (gimp-image-new drawable-size drawable-size RGB))) (BG-layer (car (gimp-layer-new img drawable-size drawable-size @@ -30,14 +35,28 @@ (font-infos (gimp-text-get-extents-fontname "lAgy" font-size PIXELS font-name)) (desc (nth 3 font-infos)) + (start-angle-rad (* (/ (modulo start-angle 360) 360) 2 *pi*)) (angle-list #f) (letter "") (new-layer #f) - (index 0)) + (index 0) + (ndx 0) + (ndx-start 0) + (ndx-step 1) + (ccw 0) + (rot-op)) (gimp-image-undo-disable img) (gimp-image-add-layer img BG-layer 0) (gimp-edit-fill BG-layer BACKGROUND-FILL) + ;; change units + (if (< fill-angle 0) + (begin + (set! ccw 1) + (set! fill-angle (abs fill-angle)) + (set! start-angle-rad (* (/ (modulo (+ (- start-angle fill-angle) 360) 360) 360) 2 *pi*)) + (set! ndx-start (- char-num 1)) + (set! ndx-step -1))) (set! start-angle-rad (* (/ (modulo start-angle 360) 360) 2 *pi*)) (set! fill-angle-rad (* (/ fill-angle 360) 2 *pi*)) (set! radian-step (/ fill-angle-rad char-num)) @@ -52,9 +71,10 @@ (temp-layer #f) (scale 0) (temp #f)) + (set! ndx ndx-start) (set! index 0) (while (< index char-num) - (set! temp-str (substring text index (+ index 1))) + (set! temp-str (substring text ndx (+ ndx 1))) (if (white-space-string? temp-str) (set! temp-str "x")) (set! temp-layer (car (gimp-text-fontname img -1 0 0 @@ -64,6 +84,7 @@ font-name))) (set! temp-list (cons (car (gimp-drawable-width temp-layer)) temp-list)) (gimp-image-remove-layer img temp-layer) + (set! ndx (+ ndx ndx-step)) (set! index (+ index 1))) (set! angle-list (nreverse temp-list)) (set! temp 0) @@ -75,9 +96,10 @@ angle-list)) (set! scale (/ fill-angle-rad temp)) (set! angle-list (mapcar (lambda (angle) (* scale angle)) angle-list))) + (set! ndx ndx-start) (set! index 0) (while (< index char-num) - (set! letter (substring text index (+ index 1))) + (set! letter (substring text ndx (+ ndx 1))) (if (not (white-space-string? letter)) ;; Running gimp-text with " " causes an error! (let* ((new-layer @@ -95,9 +117,11 @@ (set! width (car (gimp-drawable-width new-layer))) (if (not script-fu-text-circle-debug?) (begin - (gimp-drawable-transform-rotate-default new-layer - ((if (< 0 fill-angle-rad) - + -) angle rad-90) + (if (= ccw 0) + (set! rot-op (if (< 0 fill-angle-rad) + -)) + (set! rot-op (if (> 0 fill-angle-rad) + -))) + (gimp-drawable-transform-rotate-default new-layer + (rot-op angle rad-90) TRUE 0 0 TRUE FALSE) (gimp-layer-translate new-layer @@ -117,6 +141,7 @@ (- (/ height 2)))) )))) + (set! ndx (+ ndx ndx-step)) (set! index (+ index 1))) (gimp-drawable-set-visible BG-layer 0) (if (not script-fu-text-circle-debug?) @@ -134,7 +159,7 @@ (gimp-displays-flush))) (script-fu-register "script-fu-text-circle" - _"Text Circle..." + _"Text C_ircle..." "Render the specified text along the perimeter of a circle" "Shuji Narazaki " "Shuji Narazaki" @@ -149,4 +174,4 @@ SF-FONT _"Font" "Sans") (script-fu-menu-register "script-fu-text-circle" - _"/Xtns/Script-Fu/Logos") + "/Xtns/Script-Fu/Logos") diff -uraN gimp-2.2.8/plug-ins/script-fu/siod/Makefile.in gimp-2.2.9/plug-ins/script-fu/siod/Makefile.in --- gimp-2.2.8/plug-ins/script-fu/siod/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/script-fu/siod/Makefile.in 2005-10-27 17:11:55.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,41 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = plug-ins/script-fu/siod +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libsiod_a_AR = $(AR) $(ARFLAGS) +libsiod_a_LIBADD = +am_libsiod_a_OBJECTS = regex.$(OBJEXT) slib.$(OBJEXT) sliba.$(OBJEXT) \ + trace.$(OBJEXT) +libsiod_a_OBJECTS = $(am_libsiod_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libsiod_a_SOURCES) +DIST_SOURCES = $(libsiod_a_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +267,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +318,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +365,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +405,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - noinst_LIBRARIES = libsiod.a - libsiod_a_SOURCES = \ regex.c \ slib.c \ @@ -379,50 +414,44 @@ siod.h \ siodp.h - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) -subdir = plug-ins/script-fu/siod -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libsiod_a_AR = $(AR) cru -libsiod_a_LIBADD = -am_libsiod_a_OBJECTS = regex.$(OBJEXT) slib.$(OBJEXT) sliba.$(OBJEXT) \ - trace.$(OBJEXT) -libsiod_a_OBJECTS = $(am_libsiod_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/regex.Po ./$(DEPDIR)/slib.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/sliba.Po ./$(DEPDIR)/trace.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libsiod_a_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libsiod_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/script-fu/siod/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/script-fu/siod/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -432,7 +461,7 @@ $(RANLIB) libsiod.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -443,37 +472,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trace.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -485,14 +502,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -501,6 +510,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -512,10 +522,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -538,10 +549,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -555,7 +562,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -573,7 +580,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -594,7 +600,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -614,6 +620,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -651,13 +659,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/sel2path/Makefile.in gimp-2.2.9/plug-ins/sel2path/Makefile.in --- gimp-2.2.8/plug-ins/sel2path/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/sel2path/Makefile.in 2005-10-27 17:11:55.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,56 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = sel2path$(EXEEXT) +subdir = plug-ins/sel2path +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_sel2path_OBJECTS = curve.$(OBJEXT) edge.$(OBJEXT) fit.$(OBJEXT) \ + math.$(OBJEXT) pxl-outline.$(OBJEXT) sel2path.$(OBJEXT) \ + sel2path_adv_dialog.$(OBJEXT) spline.$(OBJEXT) \ + vector.$(OBJEXT) +sel2path_OBJECTS = $(am_sel2path_OBJECTS) +sel2path_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +sel2path_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(sel2path_SOURCES) +DIST_SOURCES = $(sel2path_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +282,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +333,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +380,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +403,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,19 +420,13 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = sel2path - sel2path_SOURCES = \ bitmap.h \ bounding-box.h \ @@ -404,18 +449,15 @@ vector.c \ vector.h - EXTRA_DIST = \ README \ README.limn - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -426,67 +468,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/sel2path -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = sel2path$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_sel2path_OBJECTS = curve.$(OBJEXT) edge.$(OBJEXT) fit.$(OBJEXT) \ - math.$(OBJEXT) pxl-outline.$(OBJEXT) sel2path.$(OBJEXT) \ - sel2path_adv_dialog.$(OBJEXT) spline.$(OBJEXT) vector.$(OBJEXT) -sel2path_OBJECTS = $(am_sel2path_OBJECTS) -sel2path_LDADD = $(LDADD) -sel2path_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sel2path_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/curve.Po ./$(DEPDIR)/edge.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/fit.Po ./$(DEPDIR)/math.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/pxl-outline.Po ./$(DEPDIR)/sel2path.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/sel2path_adv_dialog.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/spline.Po ./$(DEPDIR)/vector.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(sel2path_SOURCES) -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -SOURCES = $(sel2path_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/sel2path/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/sel2path/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -494,8 +519,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -509,7 +534,7 @@ $(LINK) $(sel2path_LDFLAGS) $(sel2path_OBJECTS) $(sel2path_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -525,37 +550,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -567,14 +580,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -583,6 +588,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -594,10 +600,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -620,10 +627,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -637,7 +640,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -655,9 +658,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -677,7 +681,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -697,6 +701,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -734,8 +740,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/sgi/Makefile.in gimp-2.2.9/plug-ins/sgi/Makefile.in --- gimp-2.2.8/plug-ins/sgi/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/sgi/Makefile.in 2005-10-27 17:11:55.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,53 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = sgi$(EXEEXT) +subdir = plug-ins/sgi +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_sgi_OBJECTS = sgi.$(OBJEXT) sgilib.$(OBJEXT) +sgi_OBJECTS = $(am_sgi_OBJECTS) +sgi_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +sgi_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(sgi_SOURCES) +DIST_SOURCES = $(sgi_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +279,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +330,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +377,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +400,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,31 +417,23 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = sgi - sgi_SOURCES = \ sgi.c \ sgi.h \ sgilib.c - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -404,61 +444,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/sgi -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = sgi$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_sgi_OBJECTS = sgi.$(OBJEXT) sgilib.$(OBJEXT) -sgi_OBJECTS = $(am_sgi_OBJECTS) -sgi_LDADD = $(LDADD) -sgi_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -sgi_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/sgi.Po ./$(DEPDIR)/sgilib.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(sgi_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(sgi_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/sgi/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/sgi/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -466,8 +495,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -481,7 +510,7 @@ $(LINK) $(sgi_LDFLAGS) $(sgi_OBJECTS) $(sgi_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -490,37 +519,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sgilib.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -532,14 +549,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -548,6 +557,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -559,10 +569,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -585,10 +596,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -602,7 +609,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -620,9 +627,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -642,7 +650,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -662,6 +670,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -699,8 +709,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/twain/Makefile.in gimp-2.2.9/plug-ins/twain/Makefile.in --- gimp-2.2.8/plug-ins/twain/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/twain/Makefile.in 2005-10-27 17:11:56.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -14,6 +14,7 @@ @SET_MAKE@ + srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +22,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +35,63 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = twain$(EXEEXT) +subdir = plug-ins/twain +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" \ + "$(DESTDIR)$(twaindatadir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am__twain_SOURCES_DIST = tw_func.c tw_func.h tw_util.c tw_util.h \ + twain.c twain.h tw_local.h tw_platform.h tw_mac.c tw_win.c +@HAVE_MAC_TWAIN_FALSE@@OS_WIN32_TRUE@am__objects_1 = tw_win.$(OBJEXT) +@HAVE_MAC_TWAIN_TRUE@am__objects_1 = tw_mac.$(OBJEXT) +am_twain_OBJECTS = tw_func.$(OBJEXT) tw_util.$(OBJEXT) twain.$(OBJEXT) \ + $(am__objects_1) +twain_OBJECTS = $(am_twain_OBJECTS) +twain_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = +twain_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_4) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(twain_SOURCES) +DIST_SOURCES = $(am__twain_SOURCES_DIST) +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +twaindataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(twaindata_DATA) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +290,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +341,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +388,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +411,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,29 +428,19 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -libexec_PROGRAMS = twain - @OS_WIN32_TRUE@twain_LDFLAGS = -mwindows @OS_WIN32_TRUE@winlink = -luser32 - @HAVE_MAC_TWAIN_TRUE@twainplatform = tw_mac.c - @OS_WIN32_TRUE@twainplatform = tw_win.c - @HAVE_MAC_TWAIN_TRUE@maclink = -framework Carbon -framework TWAIN - @HAVE_MAC_TWAIN_TRUE@twaindatadir = $(gimpdatadir)/twain @HAVE_MAC_TWAIN_TRUE@twaindata_DATA = gimp-twain.png - AM_LDFLAGS = $(winlink) $(maclink) - twain_SOURCES = \ tw_func.c \ tw_func.h \ @@ -403,7 +452,6 @@ tw_platform.h \ $(twainplatform) - EXTRA_DIST = \ README \ gimp-twain.png \ @@ -412,13 +460,11 @@ tw_win.c \ tw_mac.c - INCLUDES = \ -I$(top_srcdir) \ $(GLIB_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimp) \ $(libgimpcolor) \ @@ -428,67 +474,50 @@ $(INTLLIBS) \ $(twain_LIBS) -subdir = plug-ins/twain -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = twain$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am__twain_SOURCES_DIST = tw_func.c tw_func.h tw_util.c tw_util.h twain.c \ - twain.h tw_local.h tw_platform.h tw_mac.c tw_win.c -@HAVE_MAC_TWAIN_TRUE@am__objects_1 = tw_mac.$(OBJEXT) -@OS_WIN32_TRUE@am__objects_1 = tw_win.$(OBJEXT) -am_twain_OBJECTS = tw_func.$(OBJEXT) tw_util.$(OBJEXT) twain.$(OBJEXT) \ - $(am__objects_1) -twain_OBJECTS = $(am_twain_OBJECTS) -twain_LDADD = $(LDADD) -twain_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/tw_func.Po ./$(DEPDIR)/tw_mac.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/tw_util.Po ./$(DEPDIR)/tw_win.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/twain.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(am__twain_SOURCES_DIST) -DATA = $(twaindata_DATA) - -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -SOURCES = $(twain_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/twain/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/twain/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -496,8 +525,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -511,7 +540,7 @@ $(LINK) $(twain_LDFLAGS) $(twain_OBJECTS) $(twain_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -523,37 +552,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/twain.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -564,33 +581,24 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -twaindataDATA_INSTALL = $(INSTALL_DATA) install-twaindataDATA: $(twaindata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(twaindatadir) + test -z "$(twaindatadir)" || $(mkdir_p) "$(DESTDIR)$(twaindatadir)" @list='$(twaindata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(twaindataDATA_INSTALL) $$d$$p $(DESTDIR)$(twaindatadir)/$$f"; \ - $(twaindataDATA_INSTALL) $$d$$p $(DESTDIR)$(twaindatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(twaindataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(twaindatadir)/$$f'"; \ + $(twaindataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(twaindatadir)/$$f"; \ done uninstall-twaindataDATA: @$(NORMAL_UNINSTALL) @list='$(twaindata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(twaindatadir)/$$f"; \ - rm -f $(DESTDIR)$(twaindatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(twaindatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(twaindatadir)/$$f"; \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -599,6 +607,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -610,10 +619,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -636,10 +646,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -653,7 +659,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -671,9 +677,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) $(DESTDIR)$(twaindatadir) + for dir in "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(twaindatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -693,7 +700,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -713,6 +720,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -751,15 +760,16 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip \ install-twaindataDATA installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am \ - uninstall-libexecPROGRAMS uninstall-twaindataDATA + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am uninstall-libexecPROGRAMS \ + uninstall-twaindataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/plug-ins/winicon/Makefile.in gimp-2.2.9/plug-ins/winicon/Makefile.in --- gimp-2.2.8/plug-ins/winicon/Makefile.in 2005-06-26 21:28:27.000000000 +0200 +++ gimp-2.2.9/plug-ins/winicon/Makefile.in 2005-10-27 17:11:56.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,56 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = winicon$(EXEEXT) +subdir = plug-ins/winicon +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_winicon_OBJECTS = icodialog.$(OBJEXT) icoload.$(OBJEXT) \ + icosave.$(OBJEXT) main.$(OBJEXT) +winicon_OBJECTS = $(am_winicon_OBJECTS) +winicon_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_7 = +winicon_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_7) $(am__DEPENDENCIES_7) \ + $(am__DEPENDENCIES_7) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(winicon_SOURCES) +DIST_SOURCES = $(winicon_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +282,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +333,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +380,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +403,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,20 +420,14 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - @OS_WIN32_TRUE@mwindows = -mwindows - AM_LDFLAGS = $(mwindows) - -libexec_PROGRAMS = winicon - winicon_SOURCES = \ icodialog.c \ icodialog.h \ @@ -393,13 +438,11 @@ main.c \ main.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -411,64 +454,50 @@ $(RT_LIBS) \ $(INTLLIBS) -subdir = plug-ins/winicon -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = winicon$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_winicon_OBJECTS = icodialog.$(OBJEXT) icoload.$(OBJEXT) \ - icosave.$(OBJEXT) main.$(OBJEXT) -winicon_OBJECTS = $(am_winicon_OBJECTS) -winicon_LDADD = $(LDADD) -winicon_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -winicon_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/icodialog.Po ./$(DEPDIR)/icoload.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/icosave.Po ./$(DEPDIR)/main.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(winicon_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(winicon_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/winicon/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/winicon/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -476,8 +505,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -491,7 +520,7 @@ $(LINK) $(winicon_LDFLAGS) $(winicon_OBJECTS) $(winicon_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -502,37 +531,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -544,14 +561,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -560,6 +569,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -571,10 +581,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -597,10 +608,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -614,7 +621,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -632,9 +639,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -654,7 +662,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -674,6 +682,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -711,8 +721,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/plug-ins/winsnap/Makefile.am gimp-2.2.9/plug-ins/winsnap/Makefile.am --- gimp-2.2.8/plug-ins/winsnap/Makefile.am 2004-01-22 04:51:44.000000000 +0100 +++ gimp-2.2.9/plug-ins/winsnap/Makefile.am 2005-09-20 18:24:02.000000000 +0200 @@ -24,8 +24,8 @@ winsnap.rc INCLUDES = \ - -I$(top_srcdir) \ - $(GTK_CFLAGS) \ + -I$(top_srcdir) \ + $(GTK_CFLAGS) \ -I$(includedir) LDADD = \ @@ -40,4 +40,4 @@ $(INTLLIBS) winsnap-win32res.o: winsnap.rc select.cur small.ico winsnap.ico - windres winsnap.rc winsnap-win32res.o + $(WINDRES) winsnap.rc winsnap-win32res.o diff -uraN gimp-2.2.8/plug-ins/winsnap/Makefile.in gimp-2.2.9/plug-ins/winsnap/Makefile.in --- gimp-2.2.8/plug-ins/winsnap/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/plug-ins/winsnap/Makefile.in 2005-10-27 17:11:56.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = winsnap$(EXEEXT) +subdir = plug-ins/winsnap +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_winsnap_OBJECTS = winsnap.$(OBJEXT) +winsnap_OBJECTS = $(am_winsnap_OBJECTS) +winsnap_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +winsnap_DEPENDENCIES = winsnap-win32res.o $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_3) \ + $(am__DEPENDENCIES_4) $(am__DEPENDENCIES_5) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(winsnap_SOURCES) +DIST_SOURCES = $(winsnap_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +401,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,22 +418,16 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - winsnap_LDFLAGS = -mwindows - -libexec_PROGRAMS = winsnap - winsnap_SOURCES = \ winsnap.c \ winsnap.h - EXTRA_DIST = \ resource.h \ select.cur \ @@ -392,13 +435,11 @@ winsnap.ico \ winsnap.rc - INCLUDES = \ - -I$(top_srcdir) \ - $(GTK_CFLAGS) \ + -I$(top_srcdir) \ + $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ winsnap-win32res.o \ $(libgimpui) \ @@ -410,60 +451,50 @@ $(GTK_LIBS) \ $(INTLLIBS) -subdir = plug-ins/winsnap -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = winsnap$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_winsnap_OBJECTS = winsnap.$(OBJEXT) -winsnap_OBJECTS = $(am_winsnap_OBJECTS) -winsnap_LDADD = $(LDADD) -winsnap_DEPENDENCIES = winsnap-win32res.o \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/winsnap.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(winsnap_SOURCES) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(winsnap_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/winsnap/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/winsnap/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -471,8 +502,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -486,7 +517,7 @@ $(LINK) $(winsnap_LDFLAGS) $(winsnap_OBJECTS) $(winsnap_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -494,37 +525,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/winsnap.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -536,14 +555,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -552,6 +563,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -563,10 +575,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -589,10 +602,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -606,7 +615,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -624,9 +633,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -646,7 +656,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -666,6 +676,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -703,8 +715,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ @@ -715,7 +727,7 @@ winsnap-win32res.o: winsnap.rc select.cur small.ico winsnap.ico - windres winsnap.rc winsnap-win32res.o + $(WINDRES) winsnap.rc winsnap-win32res.o # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff -uraN gimp-2.2.8/plug-ins/winsnap/winsnap.rc gimp-2.2.9/plug-ins/winsnap/winsnap.rc --- gimp-2.2.8/plug-ins/winsnap/winsnap.rc 1999-07-29 02:23:51.000000000 +0200 +++ gimp-2.2.9/plug-ins/winsnap/winsnap.rc 2005-09-20 18:24:02.000000000 +0200 @@ -32,8 +32,8 @@ // Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. -SNAPPY ICON DISCARDABLE "WINSNAP.ICO" -SMALL ICON DISCARDABLE "SMALL.ICO" +SNAPPY ICON DISCARDABLE "winsnap.ico" +SMALL ICON DISCARDABLE "small.ico" ///////////////////////////////////////////////////////////////////////////// // diff -uraN gimp-2.2.8/plug-ins/xjt/Makefile.in gimp-2.2.9/plug-ins/xjt/Makefile.in --- gimp-2.2.8/plug-ins/xjt/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/plug-ins/xjt/Makefile.in 2005-10-27 17:11:57.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,54 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +libexec_PROGRAMS = xjt$(EXEEXT) +subdir = plug-ins/xjt +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(libexecdir)" +libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(libexec_PROGRAMS) +am_xjt_OBJECTS = xjt.$(OBJEXT) xjpeg.$(OBJEXT) +xjt_OBJECTS = $(am_xjt_OBJECTS) +xjt_LDADD = $(LDADD) +am__DEPENDENCIES_1 = \ + $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la +am__DEPENDENCIES_2 = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la +am__DEPENDENCIES_3 = \ + $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la +am__DEPENDENCIES_4 = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la +am__DEPENDENCIES_5 = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la +am__DEPENDENCIES_6 = +xjt_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) \ + $(am__DEPENDENCIES_3) $(am__DEPENDENCIES_4) \ + $(am__DEPENDENCIES_5) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) $(am__DEPENDENCIES_6) \ + $(am__DEPENDENCIES_6) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(xjt_SOURCES) +DIST_SOURCES = $(xjt_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +280,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +331,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +378,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -351,7 +401,6 @@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ - libexecdir = $(gimpplugindir)/plug-ins localedir = @localedir@ localstatedir = @localstatedir@ @@ -369,32 +418,25 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - libgimpui = $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la libgimp = $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la - -libexec_PROGRAMS = xjt - EXTRA_DIST = \ README \ README_xjt_fileformat.txt - xjt_SOURCES = \ xjt.c \ xjpeg.c \ xjpeg.h - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - LDADD = \ $(libgimpui) \ $(libgimpwidgets) \ @@ -406,61 +448,50 @@ $(LIBJPEG) \ $(INTLLIBS) -subdir = plug-ins/xjt -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -libexec_PROGRAMS = xjt$(EXEEXT) -PROGRAMS = $(libexec_PROGRAMS) - -am_xjt_OBJECTS = xjt.$(OBJEXT) xjpeg.$(OBJEXT) -xjt_OBJECTS = $(am_xjt_OBJECTS) -xjt_LDADD = $(LDADD) -xjt_DEPENDENCIES = \ - $(top_builddir)/libgimp/libgimpui-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimp/libgimp-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la \ - $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la -xjt_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/xjpeg.Po ./$(DEPDIR)/xjt.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(xjt_SOURCES) -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am -SOURCES = $(xjt_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu plug-ins/xjt/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu plug-ins/xjt/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libexecPROGRAMS: $(libexec_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" @list='$(libexec_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) $$p $(DESTDIR)$(libexecdir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ else :; fi; \ done @@ -468,8 +499,8 @@ @$(NORMAL_UNINSTALL) @list='$(libexec_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(libexecdir)/$$f"; \ - rm -f $(DESTDIR)$(libexecdir)/$$f; \ + echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \ + rm -f "$(DESTDIR)$(libexecdir)/$$f"; \ done clean-libexecPROGRAMS: @@ -483,7 +514,7 @@ $(LINK) $(xjt_LDFLAGS) $(xjt_OBJECTS) $(xjt_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -492,37 +523,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xjt.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -534,14 +553,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -550,6 +561,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -561,10 +573,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -587,10 +600,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -604,7 +613,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -622,9 +631,10 @@ check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(libexecdir) + for dir in "$(DESTDIR)$(libexecdir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -644,7 +654,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -664,6 +674,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -701,8 +713,8 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libexecPROGRAMS clean-libtool ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am \ install-libexecPROGRAMS install-man install-strip installcheck \ installcheck-am installdirs maintainer-clean \ diff -uraN gimp-2.2.8/po/bg.gmo gimp-2.2.9/po/bg.gmo --- gimp-2.2.8/po/bg.gmo 2005-06-06 19:07:35.000000000 +0200 +++ gimp-2.2.9/po/bg.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,189 +0,0 @@ -Þ•­„%=ìJàc ác ëc -õc -d dd01dbdsd†dd¦d®d¶dÅd Êd…×d]eoeve…eŒee£e ¶eÀeÏeÞeðeff0fAfJfjf ~fˆf1˜f3Êf -þf gg &g -3g>gAPgJ’gÝgågÿghh0hHh -Qh\hmh†h h«h²hËhåhêh -ðhûh i i4i :i GiUi\i di qi}i …i ’imŸi jj j0j7jUj3kj!Ÿj Áj ËjÕjíjÿj,kIk \kjk€k•kªk ³kÁkÈkÏkÕkèk ÷klOljl -sl~l†lŒl “ll¸lÕl ålól ül -mm$m3mHm em†m"›m¾mÆmÏmàm èm -öm n -n!n#sJsSses vs€s ss¦s¶sÈsÛsësýs tt>t Nt [thtmt…t˜t±tÅtÛtîtuu 4u -BuMu -eupu ˆu–u ¬u¹u ÎuÛuöuÿuv#$v"Hvkvˆv&§vÎv ävðv,w#1wUw\w kwywŒw¦wÃwàwöwxx x ,x -6xAxWx`x fxrx „x’x§x¬x ¾x Êx Øxæxýxy%y9yLy_yvy†yšy¶yÑyÚyõy z -zz ,z:zMz -^ziz…z z™z z ¨zµz»z -ÁzOÌz -{ '{3{F{ -Y{ d{p{u{ „{ ‘{ž{¯{Ã{uÒ{H|ÌZ|'}/}8}G}P}`}u}&†}'­} Õ} ß}é} ø}~~~~#~5~R~g~p~†~~–~ž~ £~ °~¼~×~î~ -ó~þ~H!Oq vƒŠCš1Þ€ € -#€ -.€9€P€c€ {€(‰€ -²€½€ Ä€Ѐ߀î€"@V r6€ · Á Ï ð/‚A‚*R‚}‚Ž‚«‚´‚Ê‚Ü‚å‚õ‚ƒ ƒ&ƒ ,ƒ8ƒ>ƒOƒgƒwƒ -ƒ šƒ ¦ƒ³ƒă Ùƒçƒ îƒúƒ„#„@+„ l„ z„‡„¥„ ª„¶„Í„ á„ ë„÷„…'… =…K… c…o… -………¥…®…³…»… Ó…á…ö… †††:†W† ^† j† w†…†š†³†̆ á†î†ý†‡/‡E‡W‡k‡z‡ ‰‡•‡ ‡«‡ -°‡»‡ʇ Ú‡ä‡ý‡ ˆ#ˆ*ˆ =ˆIˆNˆ Tˆ`ˆrˆ†ˆ™ˆ ¬ˆ¶ˆ¿ˆ Ј ݈爉‰%‰ 7‰ D‰N‰ i‰ v‰‚‰ œ‰ ¨‰,´‰á‰Bõ‰8ŠJŠQŠcŠkŠtŠ -yŠ„Š ˜Š¦Š½Š ϊ܊‹ 7‹ A‹ M‹W‹_‹n‹‚‹’‹ ¡‹¯‹ ¸‹Æ‹Ù‹ î‹ ú‹ ŒŒ&.Œ,UŒ ‚ŒŒ -ŸŒªŒ½ŒÏŒጠ-çŒòŒúŒ  5!Acr‰™¶4ÓŽŽ Ž%Ž :ŽDŽLŽUŽ^ŽgŽoŽ -…ŽŽ¦Ž -¶Ž ÁŽ ËŽÙŽÝŽ÷Ž  $8S[q „’ §³ -ÆÑãÿ !)K!i#‹¯ Å -Ò"Ý‘‘#‘'‘,‘1‘A‘S‘d‘u‘‹‘ ‘´‘ Í‘ Ú‘è‘’ ’'’A’ S’ _’ k’u’’­’¿’Ó’ä’÷’“$“;“S“ s““—“ ¬“7¹“ñ“”$”+”B” X”e”w” ‹”˜” ¶”” -×” -â”í” õ”••• 1•=• -T•_••œ•®•É•å• – ––5–E–Y–n–‡–š–©–.ÖEò–8— I— W—d— |—Š— — œ— -¨—³—Å— Í—Ù—ë—˜˜#7˜[˜y˜ ˜™˜«˜ǘݘ#÷˜™9™ M™Z™m™Š™¡™$¼™á™š šš/šIš]š!uš—š³šÅš -Ìš ךäš ››%›7›L›_›v› -ˆ›“›­›Ç› á›í›=œ6FœS}œJÑœ5H[q ¡­ÃÞ öžž),ž2Vž‰ž4 Ÿ/@Ÿ pŸ|Ÿ‚Ÿ;‹Ÿ ÇŸÔŸäŸõŸ -  #( L  a  o |  - š ­ ½ Í Þ ý ¡#¡4¡M¡a¡f¡v¡+|¡¨¡ ®¡ »¡É¡Ï¡Ö¡Þ¡å¡ý¡¢ ¢!<¢^¢v¢’¢­¢Æ¢ã¢£££*£D£ K£X£ h£t£…£¢£!±£Ó£ç£ð£÷£ -ý£ ¤¤!¤<¤ -A¤ L¤ -X¤ c¤q¤Kz¤HƤA¥ŠQ¥!Ü¥ þ¥ § §§)&§1P§0‚§1³§(å§2¨A¨[¨`¨o¨x¨~¨‘¨ ª¨·¨ ɨ רá¨ú¨© ©© -© )© 7©A©Q© `©m©©†©© ”© ¡©¯©µ© Ç©è©ñ©# -ª.ªFªLªSªpªFyªÀª -ઠ-ëªöª ûª «!«!9« [« g«+s«5Ÿ«Õ«0Û« ¬¬¬+¬ <¬J¬6L¬oƒ¬ó¬õ¬ü¬G­%L­r­{­„­Œ­ -•­  ­ ¬­¶­ ¿­É­Ò­#ä­® ®®'®-®4®=®P®c®l®~® ®š® Ÿ®­® Ä®ήÖ® Ü®æ®ù® ¯9¯ ?¯L¯S¯\¯ {¯ˆ¯ ¯ š¯ ¤¯²¯Ư -ͯد à¯í¯õ¯° °,°2°A° `°l° -t°° °°¬° ¼°Ê° Þ° ì°ú° -±±*±@±P±b± s±±Ž±—±¨± ± -̱×±ݱì±²²)²C²T²m²~² ² š²¤² ¬²¶² ¼²Ȳײ ݲë²û²³³³"³ +³ 5³ -?³ -J³U³^³ f³p³v³|³‚³‰³‘³™³ ¬³¸³Ò³Ú³á³è³ð³ -´´9´H´P´X´n´ }´ Š´ –´ ´¥´«´¾´Ç´Ï´ â´ï´õ´µ µµ -µ %µ2µ Bµ Pµ -^µ iµ wµ „µ Žµ ›µ¨µ ¹µõ ˵Õµܵ -âµíµ öµ¶ ¶¶!¶ (¶6¶F¶M¶ V¶ c¶p¶ y¶ ‡¶•¶ ¤¶°¶öɶζÖ¶ å¶ ò¶ þ¶ · ·&·/·@·S·e·w··•·­·¿·4Ù·1¸/@¸p¸†¸–¸¶¸¾¸ĸظ#é¸ ¹.¹M¹]¹m¹u¹‡¹˜¹Ÿ¹¨¹¾¹ ϹÛ¹â¹ô¹ º -"º --º -8ºCºIºOº_ºeº -lºwºˆºŽº—ºº¦º«ºÀºϺ׺Ûºáºåº -ëºöº -ýº »»»#» *»8»]K» ©¼ µ¼Á¼Ѽ%ã¼ ½X½!x½#š½¾½"Ô½ -÷½ -¾ ¾,¾1¾žO¾(î¾ ¿!¿5¿F¿<W¿#”¿¸¿,׿-À'2À6ZÀB‘À-ÔÀ+Á -.Á39ÁImÁ·Á!ÓÁeõÁc[¿Â-Ñ ÿ à Ã'+ÃfSÃaºÃ ÄV(Ä.Ä)®ÄØÄ$õÄ Å(Å/ÅFÅeÅxÅ ŒÅ=˜ÅAÖÅ -Æ #Æ /Æ"<Æ%_Æ …Æ -¦Æ ±ÆÒÆ ëÆ -÷ÆÇÇ )Ç 6Ç%CÇiÇjÈyÈ"ȲÈCÇÈ< ÉXHÉF¡É'èÉ%Ê,6Ê9cÊ:ÊQØÊ$*ËOË;hË:¤Ë:ßË Ì 'Ì4Ì=ÌSÌ?hÌ/¨Ì<ØÌDÍ–ZÍñÍ' Î4ÎDÎ MÎWÎ+hÎ.”Î(ÃÎìÎ ÏÏ#Ï*6Ï&aÏFˆÏ5ÏÏ9Ð5?ÐcuÐÙÐêÐ$Ñ(Ñ:CÑ~Ñ'”ѼÑBÙÑDÒBaÒr¤ÒÓ-2Ó `Ó7Ó'¹Ó+áÓK ÔZYÔ+´Ô.àÔÕ*Õ@ÕTÕ pÕ‘Õ °ÕÑÕñÕÖ.-Ö#\Ö€Ö'˜Ö%ÀÖ-æÖ!×)6×)`×'Š×*²×Ý× ò×ü×(ØH8ØPØ'ÒØ"úØ$Ù&BÙ$iÙ ŽÙ(¯Ù ØÙ&ùÙ( Ú&IÚ>pÚ#¯Ú5ÓÚ7 Û8AÛUzÛÐÛáÛöÛÜ!܉7ÜwÁÜ9ÝTÝ+cÝ*ݺÝÍÝ!éÝ Þ&Þ$CÞ,hÞ •Þ*¶Þ(áÞ& -ß51ß+gß“ß%ªßÐß7çß+à3Kà3à3³à1çà;áDUá8šá"Óá*öá6!â$Xâ7}â,µâ3ââ*ã;Aã*}ã9¨ãâãBúã=ä6Lä8ƒä%¼ä'âäA -å4Låå(–åm¿åL-æzæ%ƒæ$©æ-Îæ@üæ2=ç8pç4©ç?Þç è+è:èQègè+|è¨èÁèÐè.éèé16éhéqé!é)²éÜé=úé*8ê-cê.‘ê6Àê%÷ê,ëJë7ië.¡ë&Ðë ÷ë?ì5Eì{ìŒì1«ìÝì*ùì&$í0Kí8|íµíÉí -Ýí -èíóí îî/î‚IîÌîßîüîï8ïTïkïpïï¬ï*Éï"ôïð­7ð(åð_ñnòwòŠò©ò&ºò/áòóL0óN}óÌóÞóïó ô *ô 7ô -Eô0Pô3ôRµôUõ^õ qõ’õ£õ´õ -ÆõÑõðõKö3[öö¯öÅö™ÔöTn÷Ã÷Ô÷ï÷,øŠ4øb¿ø"ù,9ùfù,†ù<³ù@ðùF1ú0xúH©ú,òúû6û*Vû"û+¤û"Ðûóû ü#ü.7ü5fü!œü[¾üý-ý<Mý*Šý~µý*4þb_þ*Âþ3íþ.!ÿ6Pÿ2‡ÿºÿ,Ïÿüÿ -<Gf o0¯<à;Q h;v² ÇÔ@ê2+^in1Ø -@'h"{3ž0Ò!9#X#|" "à æ ó"6 LX*m%˜E¾IN^8q8ª ã%ð$";1^55Æ2ü$/"T9w:±-ì/ <J ‡ *¢ Í  æ  ó  -$+ -.P -7 -0· ->è -.' 3V Š ¢ ¼ Ð × ß #ñ - C -b    1¶ è ü ? P e ,ƒ ° Ê OÚ *=3U‰¢F¶ýt’©&¾å,-BZ 5¾$ô",<1i7›6Ó -'7$F<k¨ Åæ+<#\€#•¹HÙ7"Z(r ›)©(Ó(ü %2 -H -S^ r -~‰¤B»þ7 JQkQ½iyŒŸ²Ïáð+,J7[“1±ã 6QUo €*” ¿"Í ð$þ##$G#l#´(È"ñS*8~X·TBeF¨Bï27Gpð-<L,[2ˆ0»(ì9Oj-„"²&Õ,ü#) &M at 5Ö * !*7!b!D{!JÀ!. "0:"@k"I¬"Zö"3Q#N…#HÔ#U$!s$@•$ Ö$N÷$RF%4™%4Î%&h&Y& Ù&3ú&+.'2Z'6'Ä'"Ú''ý'%( <()H(1r(¤(4·("ì(M)2])^)?ï)E/*>u*D´*>ù*8+&X+=+1½+0ï+, ,DM,4’,,Ç,;ô,z0-«-';.#c.‡.8¥.2Þ./&/,E/!r/$”/¹/!Ì/'î/10+H0/t09¤03Þ0)1!<1'^11†1+¸1/ä1923N2)‚2#¬2)Ð23ú2-.31\3;Ž35Ê3+4!,4'N41v4+¨4/Ô4953>5)r5œ5"­5Ð5;é5%6,B6$o63”62È62û63.7"b7=…77Ã7û78;28Un8KÄ8”9ƒ¥9;):!e:?‡:Ç:NÐ:>;^;>{;8º;1ó;4%<)Z<4„<5¹<hï<%X=¡~> ?°? -Ë? Ö?Tã?+8@?d@-¤@<Ò@%A+5ALaA<®A%ëA+B@=B'~B=¦B+äB?C-PC?~CN¾C+ D,9DHfD/¯D ßDìD EuE -E›E)±E ÛEèEùE F(F*EFpFXƒFPÜF>-GAlGI®G6øGE/HLuHÂH ÞH0êH3IOI+cI.I*¾I,éIMJ-dJQ’J1äJK)K AK%MKsK‚K3šK -ÎKÙK ôKL"-L PL†ZLŠáL¡lM¢NB±N ôN •P¢P¿PHÎP[Q[sQXÏQN(RswR:ëR&S&;SbSsS4ƒS=¸S2öS7)T3aT&•T6¼T%óT$U->UlUƒU£U»UÖU ôUVV9V -@V KVXV'gVV$©V<ÎV W,$WSQW8¥WÞWïW'X )X•7XPÍXY4Y JY&WY(~Y]§Y]ZcZuZ`‡ZvèZ_[Oo[ ¿[Ì[.Þ[2 \@\^\N`\¯\¸] -º] Å]xÑ]:J^…^(”^½^Ô^(é^)_(<_e_}_(“_¼_]Ì_*`.A`p` …`‘`¡`(±`7Ú`a)+a,Ua ‚a Ža œa9½a÷ab'b?bWb/pb3 bÔbìb ûb c+c?c Sc_c nc=|cBºcýcd .dnw#­wDÑwx&x/:x2jxgxNyMTy"¢y0Åyöy)z2z JzVz-jz1˜zÊz äz.ðz2{)R{|{–{¥{ µ{Á{×{ñ{||;| Y|g| }| ‹|—|Ÿ|»|Û|î|ò|} }} )}6}I} \}i}z}‰}\˜}! Ò ±(Oèßb‘$"½µ°§…àÍÌ£+=Ÿ‘Ï?¬—ç]Sq.•Pæ™ܧ1`V/ºôål˜Ã;ø…æ£c\÷g<“ÀlRªEîoœ½˜F&r›üëüRÂÚ8qëg4¾ÿ ñŸ=© ®”Còb“LdÅ5otôG }#é¾¼6QÞš1°gÜc]›û†3^“…ž²Ó_™¥¼ÿ'X<PÉpçâW^ª£Ãÿ€Ñ|Lª^Wq|0~üÉDŽÕ ¾3ËìM»µëŒÙb ¾«ê(ÈtMÉý°s¬ÔuiS/yÏE¬,yœÅMDÙʹ«]’dÌ>` ×3À$²n·Ûp†:V+âi3ïAË6 -’W™dDúZ;`»§Æ>-Z„E¥X¹àûÔTÒBxfOÖ*ÄnG3j6C2[^Vj!ƒ˜ãâvI™¬Jãõ”‘ÄGó9©Hýº„„Iï)–iÕNwÙƒí‡ÎL þ?t­ŠÖïbá]ÞæK jðOÆKƒÐ¶Í,;TŽñ8‹Fç„ ,á貃íœh ×Ìwß -ÁMÖŽÚÐLA_HFû¢¸PK¤‹Al¦ê ñð'Ê”!îýªŠÎÓ·e‘ ‰Q -­Š¸HÚÍIH¥4|msîN}zUÐ`U‚"Qh§E~:Xúø"¦èŒ!†y¦9(ÛB? aYvf|Ymµ„ðໂTlâÏQŒU0ˆž œã/ãNgê¨:“x³óX\†7?i_˜ «NÑUSžúk…ýe8<x´>².³’JW: 'Ø÷Ç?í_{ÒP’ê 9¯ÛôȇD'Ý8xF 9n')ßÇò]¨“š¢‚ Wkå£Î‚€—øy -%õ¶>y,&å=ùÏóZ­1o&ˆ qÝËÿt$áì.¨"¡K2/ÓAh><r.Ðp´hÔŽdImi¶Ñ¼p@5d4ñ ¤-6¬×+Áš…´{¤–R0äÂQ”ÄÀöùe5Õ‹m9*œY©@cé±G­j—KB±*[«Ü-þ’q1uÂV2ŒÕüVe§4¼¯AÛÆç{~7‰%~wfù#2&[ŽH‰£¤Å: w˜Þ_h•2š³º‡ -×%zép¨a´Dg~}‰Sì €oÄ`¸CÆ%ðÇ¥€vŸ½›õµ·°þ7@=äC7vºX=t¹YŸÓ#öZ›*Á,å­z‰Tˆ7žuȸaOa4‹Ákæ\FÊÔ¦l÷JÑ!B(¦¡;–Oòm«Ý—¡Ù†@Iž‡é@Ò‹$ä;ß+Ú0Š¤ Ã6®ú}UÖËìu½¯/™%8BíŸ-”Ìá³n G¡¡©e{óÇ1-ÈzL¹RîfEn5û•©±‘M¶–—Êw)ªrvsTP®ÉØ"C{z#^•)Â$s÷Í\+5þïsŒ€¯Þö–؇c ÃJÝbu¢·®rJ¨ƒcëøÀäö¿¿Zùˆ[}ŠjÎ)*[š¿ à•o#òè.(xØ¥ôÜ<Rr¢a»\¢k Å›¿S|N0‚ˆY&fkõ%d Layers%d layers%d minutes%d seconds%s Channel Copy(%0.3f, %0.3f, %0.3f)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(Varies)(invalid UTF-8 string)1 Layer1 layer15 degrees %s<%s>The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.A_dd to SelectionA_ngleAbout The GIMPActionAddAdd Alpha C_hannelAdd La_yer Mask...Add LayerAdd Layer MaskAdd Text LayerAdd color from BGAdd color from FGAdd text to the imageAdding theme '%s' (%s) -Advanced optionsAirbrushAirbrush with variable pressureAl_pha to SelectionAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAn_imationAnchor floating layerAngle:AntialiasingAppearanceApply Layer _MaskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Author:Auto _Follow Active ImageAutoloadAutomatically DetectedAvailable Types:B_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBlack & whiteBlack:Ble_nd Endpoints' ColorsBlend Endpoints' Opacit_yBlueBlue:Bo_rder...Border SelectionBorder selection byBrightness-ContrastBrushBrush EditorBrush FoldersBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.C_olumns:C_ombineCan_vas Size...CancelCannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot save. Nothing is selected.Center X:Center Y:Change Background ColorChange Print SizeChange grid background colorChange perspective of the layer or selectionChannel AttributesChannel Name:Channel to Sele_ctionChannel to SelectionChannel to selectionChannelsChannels MenuCircleCl_earClearClear Undo HistoryClear all textClear errorsClear undo history...Click to update preview -%s Click to force update even if preview is up-to-dateClose %sCo_py PathColo_rsColorColor:Color_mapColoring _Type for SegmentColoring _Type for SelectionColormap EditorColormap MenuColumns:Comme_nt:Con_trast:Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm Text EditingConfirm closing of unsa_ved imagesContextContinueContributions byConvertConvert imageCopy NamedCopy _VisibleCopyright:Could not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not start the GIMP help browser plug-in.Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreating folder '%s'...Crop LayerCrosshair onlyCu_tCu_t Named...Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:Cursor _mode:Cursor re_ndering:Custom colorCut NamedD_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...DashedDate:DebugDefault GridDefault Image GridDefault _layer & channel preview size:Delete Layer Mas_kDelete ObjectDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDeleting "%s" failed: %sDesaturate operates only on RGB color layers.DescriptionDevicesDialogsDialogs MenuDistance:Do you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDouble dashedDrawableDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateE_xport Path...E_xtra SmallEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit the selected templateEn_hanceEnable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sErrorsEventEx_tra LargeExposure:ExtensionsF_it Canvas to LayersFade outFancyFea_ther...Feather SelectionFeather edgesFeather selection byFileFile Open _DialogFile existsFill Opacity:Fill Type %sFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFilte_rsFinding Contiguous RegionsFinding Similar ColorsFlipFlip LayerFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...FolderFoldersFont FoldersFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Fr_om PathFrom _ThemeFrom left to rightFrom right to leftFrom themeFullscr_eenGIMPGIMP ExtensionGIMP MessageGIMP Plug-InGIMP Text EditorGIMP Tip of the DayGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GeneralGiganticGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient:GradientsGradients MenuGrayscaleGreenGreen:GridGrow SelectionGrow selection byHSV (_counter-clockwise hue)HSV (clockwise _hue)H_eight:H_elp browser to use:HardnessHeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHex:Histogra_mHistoryHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.HugeI_con & TextI_mageI_mport Path...If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.ImageImage EditorImage MenuImage SizeImage Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage sizeImagesImages MenuImport OptionsImport PaletteImport a New PaletteImport paletteIn_vertIndent:Indentation of the first lineInitializing Plug-insInitializing plug-in: '%s' -Input DevicesInstallation successful. Click "Continue" to proceed.IntersectInvalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid width or height. Both must be positive.Invert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?Justify:Keep aspect ratio %sKeep transparencyKeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LargeLast Error:LayerLayer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SizeLayer _ModeLayer _Name:Layer to _BottomLayer to _Image SizeLayer to _TopLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.Line -spacing:Line _Style:Line style used for the grid.LoadLoad CurvesLoad Right Color Fr_omLoad text from fileLocation:Long dashesLooking for data filesLower Channel to _BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyMa_pMagnifyManage Loadable ModulesMask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:MeasureMeasure Distances and AnglesMeasure distances and anglesMediumMerge Do_wnMerge LayersMerge PaletteMerge Visible LayersMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMessage repeated %d times.Message repeated once.Modify Selected ColorModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove LayerMove SelectionMove Text LayerMove ToolMove layers & selectionsMove selectionMove the current layerMove: N_umber of colors:Na_vigationNameName:New ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNo brushes available for use with this tool.No longer availableNot enough visible layers for a merge. There must be at least two.Number of layers:OffsetOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sP_atternsPaint _ModePal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette _Name:Palette _filePalettesPalettes MenuPaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPath AttributesPath _ToolPath to Sele_ctionPath to SelectionPath to selectionPathsPaths MenuPatternPatternsPatterns MenuPe_ncilPencilPersonal GIMP FolderPerspectivePerspective Transform InformationPerspective...Please wait...Plug-InPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPreferencesPressure sensitivityPressure:PreviewPreview:PreviewsPurpose:QualityQuerying new Plug-insQuick LoadQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRTLR_e-show "%s"R_eset Tool OptionsR_ight Endpoint's Color...Radius:Raise Channel to _TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRe-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Really clear image's undo history?Recreate _PreviewRecreate previewRedRed:RedoRefresh brushesRefresh gradientsRefresh palettesRefresh patternsReload C_urrent ThemeReload _all PreviewsReload all previewsRemove Dangling E_ntriesRemove LayerRemove _EntryRemove dangling entriesRemove the selected entryRename LayerRename Saved Tool OptionsRename Text LayerRename itemRepeat LastReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all tool optionsReset to default valuesReset tool order and visibilityResizing...Restore options from...Revert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate LayerRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save gradient as POV-RaySave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%sSaving ImagesScaleScale ImageScale LayerScaling...Script-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect ColorSelect Primary Color to ModifySelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect rectangular regionsSelect the number of times -to replicate the selected segment.Select the number of times -to replicate the selection.Select the number of uniform parts -in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.Select transparent areasSelect web browserSelecti_on to PathSelection Editor MenuSelection to Path (_Advanced)Selection to pathSensitivitySet Image Canvas SizeSet Image Print ResolutionSet Layer Boundary SizeSet OpacitySet background colorSet foreground colorSets the browser used by the help system.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Shadow typeShapeShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show R_ulersShow S_tatusbarShow Scroll_barsShow _Layer BoundaryShow _MenubarShow _SelectionShow _foreground & background colorShow _layer boundaryShow _menubarShow _rulersShow active _imageShow gri_dShow help _buttonsShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShrink SelectionShrink from image borderShrink selection bySizeSize in memory:Size:Skipping '%s': wrong GIMP protocol version.SmallSmooth edgesSna_p to GridSolidSourceSpacingSpeed:Spherical (_decreasing)Spherical (i_ncreasing)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSt_atus & TextStac_kStarting ExtensionsStarting extension: '%s' -State:Stro_ke PathStro_ke Path...Stroke PathStroke SelectionStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...SubtractT_oolsTe_xtTe_xt ToolTemplatesTemplates MenuTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The foreground color of the grid.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke to.There is one image with unsaved changes:This folder is searched for user-installed themes.This tool has no options.TinyTitle & StatusTo _PathTo_ysToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransformTransforming...Translation byTransparencyTransparency _type:TypeType %sUndoUndo HistoryUndo _HistoryUnitsUnknown file typeUnknown type of palette file: -%sUntitledUse _web browser insteadUse black and white (1-bit) paletteUse color from gradientValueValue:Version %s brought to you byVersion:Vertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListWarning: Failed to load data: - -%sWarning: Failed to save data: - -%sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled, pressing F1 will open the help browser.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Arbitrary Rotation..._Artistic_Aspect_Auto_BG Color_Background color:_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_Channels_Clear Errors_Clear Undo History_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop Image_Curved_Curves..._Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Enormous_Equalize_Eraser_FG Color_File_Fill with:_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Generic_Gigantic_Gradient_Gradients_Grayscale_Grow..._Guides_Hardness_Help_Huge_Icon_Image_Images_Import_Import Palette..._Indexed..._Intersect with Selection_Invert_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Light Effects_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_Manually_Map_Mask_Mask to Selection_Measure_Medium_Merge Palettes..._Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Paint Tools_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale Image..._Scale Layer..._Select_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Tiny_Tip of the Day_Tool_Tools_Transform_Transform Tools_Undo_Undo %s_View_Visible_Web_Web browser to use:_White Balance_Width:_X:_Xtns_Y:_Zoom_Zoom (%s)inchesmillimetermillimetersminutepercentsecondtips-locale:Ctranslator-creditsProject-Id-Version: gimp.HEAD -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-05-12 09:31+0300 -PO-Revision-Date: 2005-05-12 09:28+0300 -Last-Translator: Victor Dachev -Language-Team: -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Plural-Forms: nplurals=2; plural=n != 1; -%d ÑлоÑ%d ÑлоÑ%d минути%d Ñекунди%s Копиране на канала(%0.3f, %0.3f, %0.3f)(Този прозорец ще Ñе затвори Ñлед деÑет Ñекунди) -(Ðеименован буфер)(Ðеименован шаблон)(ÐŸÑ€Ð¾Ð¼ÐµÐ½Ñ Ñе)(грешен уникод низ)1 Ñлой1 ÑлойПрез 15 градуÑа %s<%s><ЛипÑват модули>The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis и екипът за разработка на the GIMPДобавÑне към ÑелекциÑ_ЪгълОтноÑно GIMPДейÑтвиеДобавÑнеДобавÑне на канал за прозрачноÑтДобавÑне на маÑка...ДобавÑне на ÑлойДобавÑне на маÑка в ÑлойДобавÑне на текÑтов ÑлойДобавÑне цвÑÑ‚ от фонаДобавÑне цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½Ð”Ð¾Ð±Ð°Ð²Ñне на текÑÑ‚ към изображениетоДобавÑне на изглед "%s" (%s) -Допълнителни наÑтройкиСпрейСпрей Ñ Ð¿Ñ€Ð¾Ð¼ÐµÐ½Ð»Ð¸Ð²Ð¾ налÑганеПревръщане на прозрачноÑтта в _ÑелекциÑÐ’Ñички файловеВÑички файлове (*.*)Разрешаване запълването на изцÑло прозрачните облаÑтиРазрешаване избирането на изцÑло прозрачните облаÑтиÐни_мациÑФикÑиране на плаващ ÑлойЪгъл:ЗаглажданеИзгледПрилагане на _маÑкатаПотвърждаваш ли изтриването на '%s' от ÑпиÑъка и от диÑка?Сигурен ли Ñи че иÑкаш да изтриеш шаблона '%s' от диÑка?Ðвтор:Следване автоматично на активното изображениеЗареждане при ÑтартиранеÐвтоматично откриванеÐалични видове:Яр_коÑÑ‚ и контраÑÑ‚...Б_уфериФонЦвÑÑ‚ на фонаЦветът на фона е:Фон: %d, %d, %dЧерно-бÑлоЧерно:Преливане между крайните цветовеПреливане между крайните плътноÑтиСиньоСиньо:По_ÑÑ...ПоÑÑ Ð½Ð° ÑелекциÑтаПоÑÑ Ð½Ð° ÑелекциÑта ÑЯркоÑÑ‚ и контраÑтЧеткаРедактор на четкиПапки Ñ Ñ‡ÐµÑ‚ÐºÐ¸Ð§ÐµÑ‚ÐºÐ°:ЧеткиМеню четкиЗапълванеБуфериБуфериСпоред разширениетоС връщане на изображението към ÑÑŠÑтоÑнието, запиÑано на диÑка, ще изгубиш вÑички промени, включително информациÑта за отмÑна на дейÑтвиÑта.Ко_лони:К_омбинациÑРаз_мер на полето...ПрекъÑванеГрешка при Ñъздаване на папката "%s": %sГрешка при Ñъздаване на прегледаÐе може да Ñе отреже, защото ÑелекциÑта е празна.Ðе може да Ñе запази. Ðищо не е избрано.Център по хоризонтал:Център по веритикал:ПромÑна на цвета на фонаПромÑна размера за отпечатванеПромÑна Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑÑ‚ на мрежатаПромÑна перÑпективата на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоÐаÑтройки на каналаИме на каналаСъздаване на Ñеле_ÐºÑ†Ð¸Ñ Ð¾Ñ‚ каналаСъздаване на ÑÐµÐ»ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ каналаСъздаване на ÑÐµÐ»ÐµÐºÑ†Ð¸Ñ Ð¾Ñ‚ каналаКаналиКаналиКръг_ИзчиÑтванеИзчиÑтванеИзчиÑтване иÑториÑта на променитеИзчиÑтване на Ñ†ÐµÐ»Ð¸Ñ Ñ‚ÐµÐºÑтИзчиÑтване на прозореца Ñ Ð³Ñ€ÐµÑˆÐºÐ¸Ð˜Ð·Ñ‡Ð¸Ñтване иÑториÑта на дейÑтвиÑта...ÐатиÑнете за обновÑване на прегледа -%s ÐатиÑнете за Ñилово обновÑване на прегледаЗатварÑне на %s_Копиране на пътекатаЦве_товеЦвÑтЦвÑÑ‚:ЦветноÑтОцветÑване _на ÑегментаОцветÑване на ÑелекциÑтаРедактор на цветоветеЦветово менюКолони:Беле_жки:Кон_траÑÑ‚:ÐаÑтройка на м_режата...ÐаÑтройка на мрежатаÐаÑтройка на мрежата на изображениетоÐаÑтройка на бързите клавишиÐаÑтройка на _бързите клавиши...Потвърди промÑната на текÑтаПотвърждаване затварÑнето на не_запазени изображениÑКонтекÑÑ‚ÐŸÑ€Ð¾Ð´ÑŠÐ»Ð¶Ð°Ð²Ð°Ð½ÐµÐ¡ÑŠÑ ÑъдейÑтвието наПреобразуванеПреобразуване на изображениетоКопиране наКопиране на _видимитеÐвторÑки права:Ðе е открит четецът за помощта на GIMP.Грешка при отварÑне на "%s" за четене: %sГрешка при отварÑне на "%s" за запиÑ: %sÐе може да бъде пуÑната приÑтавката за четене на помощта на GIMP.РÑзане на ÑлоÑСъздаване на ново гнездоСъздай нов шаблонСъздаване на ново изображениеСъздаване на нов ÑлойСъздаване на нов шаблонСъздаване на нов изглед на изображениетоСъздаване на ново изображение по Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½Ð¡ÑŠÐ·Ð´Ð°Ð²Ð°Ð½Ðµ на нов шаблонСъздаване на папката '%s'...РÑзане на ÑлоÑСамо мерникИз_Ñ€ÑзванеИзрÑзване _на...Текущо _ÑÑŠÑтоÑниеТекуща виÑочина:Само Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ ÑлойТекущо ÑÑŠÑтоÑниеТекуща широчина:_Вид на курÑора:_ИзобразÑване на курÑора:ПотребителÑки цвÑтИзрÑзване наД_ублиране на четкатаД_ублиране на каналаД_ублиране на преливката_Дублиране на ÑлоÑД_ублиране на плитратаД_ублиране на пътекатаД_ублиране на шаркатаД_ублиране на шаблона...ПунктираниДата:ПоправÑнеМрежа по подразбиранеМрежа на изображението по подразбиранеПреглед по под_разбиране на Ñлоеве и канали:_Изтриване на маÑкатаИзтриване на обектИзтриване на шаблонИзтриване на четкатаИзтриване на каналаИзтриване на цвÑтИзтриване на преливкаИзтриване на ÑлоÑИзтриване на палитраИзтриване на пътекатаИзтриване на шаркатаИзтриване на запазени наÑтройки...Премахни избранотоИзтриване на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½Ð˜Ð·Ñ‚Ñ€Ð¸Ð²Ð°Ð½Ðµ на това изображениеГрешка при изтриването на "%s": %sИзваждането на цветове работи Ñамо в RGB Ñлоеве.ОпиÑаниеУÑтройÑтваПрозорциМеню ПрозорциРазÑтоÑние:ÐаиÑтина ли иÑкаш да върнеш вÑички филтри към наÑтройките по подразбиране?ÐаиÑтина ли иÑкаш да върнеш вÑички наÑтройки към първоначалните?_Без запазванеЗалепимИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° _документитеИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° документитеДокументиМеню документиДвойно пунктираниРиÑуванеДублиране на четкатаДублиране на каналаДублиране на преливкатаДублиране на ÑлоÑДублиране на палитратаДублиране на пътекатаДублиране на шаркатаДублиране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½_ЕкÑпортиране на пътекаМ_ного малъкОткриване на _ръбовеРедактиранеПромÑна наÑтройките на каналаПромÑна цвета на каналаПромÑна номера на палитратаПромÑна на цветова ÑтойноÑтПромÑна ÐаÑтройките на СлоÑПромÑна цвета на палитратаПромÑна наÑтройките на пътекатаПромÑна наÑтройките на бързата маÑкаПромÑна цвета на бързата маÑкаПромÑна на шаблонаРедактиране на четкатаПромÑнанаÑтройките на каналаРедактиране на цвÑтПромÑна на цветова ÑтойноÑÑ‚ #%dРедактиране на преливкаПромÑна наÑтройките на ÑлоÑРедактиране на палитраПромÑна наÑтройките на пътекатаРедактиране на шаркатаРедактиране на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½ÐŸÐ¾_добрÑванеВключване показването на подÑказки.ОгроменВъведи име на ÑлÑтата палитраВъведете име за тези наÑтройкиВъведи име на буфераВъведи име на шаблонаВъведете ново име за тези наÑтройкиВъведете меÑтоположенеи (URI):ОбкръжениеПапки на обкръжениетоФината наÑтройка не работи на Ñлоеве Ñ Ð¸Ð½Ð´ÐµÐºÑирани цветове.Изтриване Ñ Ñ„Ð¾Ð½Ð¾Ð² цвÑÑ‚ или до прозрачноÑтГума_Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° Ð³Ñ€ÐµÑˆÐºÐ¸Ð¡ÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешкиГрешка в конзолното менюГрешка при запазването на XCF файл: %sГрешка при четенето на "%s": %sГрешка при запиÑването на "%s": %sГрешка при Ð·Ð°Ð¿Ð¸Ñ Ð½Ð° XCF файл: %sГрешка при запиÑване на файла "%s": -%sГрешкиСъбитиеМног_о голÑмЕкÑпозициÑ:РазширениÑРазмер _Ñпоред ÑлоеветеИзбледнÑванеКраÑивоСме_кчаване...Смекчаване на ÑелекциÑтаСмекчи ръбоветеСмекчаване на ÑелекциÑта ÑФайлОтварÑне на файлФайлът ÑъщеÑтвуваПлътноÑÑ‚ на запълване:Вид запълване %sЗапълване на прозрачните облаÑтиЗапълване на избранотоЗапълване Ñ Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ _Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ Ñ†Ð²ÐµÑ‚Ð° за риÑуванеЗапълване ÑÑŠÑ Ñˆ_аркаЗапълване Ñ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ÑтЗапълване Ñ Ð±ÑлоЗапълване Ñ Ñ†Ð²ÐµÑ‚Ð° за _риÑуванеЗапълване Ñ _Ñ„Ð¾Ð½Ð¾Ð²Ð¸Ñ Ñ†Ð²ÑтЗапълване Ñ Ð¿Ñ€ÐµÐ»Ð¸Ð²ÐºÐ°_ФилтриОткриване на непрекъÑнати облаÑтиОткриване на подобни цветовеОбръщанеОбръщане на ÑлоÑОбръщане на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойВид обръщане %s_Хоризонтално обръщане_Вертикално обръщанеОбръщане на изображениетоОбръщане на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоОбръщане...Обръщане...ПапкаПапкиПапки Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²ÐµÐ¨Ñ€Ð¸Ñ„Ñ‚:ШрифтовеМеню шрифтовеЗа правилната инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° GIMP Ñ‚Ñ€Ñбва да бъде Ñъздадена папката '%s'._От пътекаСпоред _изгледаОт лÑво на дÑÑноОт дÑÑно на лÑвоСпоред изгледаПълен _екранGIMPРазширение на GIMPСъобщение от GIMPПриÑтавка на GIMPРедактор на текÑÑ‚ на GIMPСъвет за Ð´ÐµÐ½Ñ Ð¾Ñ‚ GIMPGIMP XCF изображениеGIMP не може да намери графичниÑÑ‚ външе вид. -Увери Ñе че графичната ÑиÑтема е наÑтроена правилно.Четец за помощта на GIMPGIMP не е правилно инÑталиран за този потребител. -ИнÑталациÑта не беше завършена защото беше изпозван флаг '--нÑма-външен вид'. -За да оÑъщеÑтвите инÑталациÑта, пуÑнете GIMP Ñ Ñ„Ð»Ð°Ð³ '--нÑма-външен вид' ОбщиГигантÑкиСтъ_клени ефектиПреливкаРедактор на преливкиМеню редактор на преливкиПапки Ñ Ð¿Ñ€ÐµÐ»Ð¸Ð²ÐºÐ¸Ð¦Ð²ÑÑ‚ на лÑвата крайна точка на преливкатаЦвÑÑ‚ на дÑÑната крайна точка на преливкатаПреливка:ПреливкиМеню преливкиСтепени на ÑивотоЗеленоЗелено:МрежаУвеличаване на ÑелекциÑтаУвеличаване на ÑелекциÑта ÑHSV (_тонове, обратно на чаÑовниковата Ñтрелка)HSV (_тонове, по поÑока на чаÑовниковата Ñтрелка)ВиÑо_чина:Четец за _помощта:ТвърдоÑтВиÑочинаВиÑочина:ПомощЧетец за помощтаСиÑтема за помощЧетецът за помощта не може да бъде пуÑнатÐе е открит четец за помощтаШеÑтнадеÑетично:ХиÑтограм_аИÑториÑХоризонтално отÑтоÑние на първата черта на мрежата. Може да бъде отрицателно чиÑло.Хоризонтално отÑтоÑние на чертите на мрежата.ГрамаденИ_конка итекÑтИзо_бражение_Импортиране на пътека...Ðко не запазите изображението, промените от поÑледната %s ще бъдат загубени.Ðко напуÑнете GIMP Ñега, тези промени ще бъдат изгубени.ИзображениеРедактор на изображениÑМеню кзображениеРазмер на изображениетоФормат на ивицата за ÑÑŠÑтоÑниетоФормат на заглавието на прозорцитеИзглед на прозорците на изображениÑтаПрозорци на изображениÑтаИзображението не Ñъдържа видими ÑлоевеРазмер на изображениетоИзображениÑМеню изображениÑÐаÑтройки на внаÑÑнетоВнаÑÑне на палитраВнаÑÑне на нова палитраВнаÑÑне на палитраОбръ_щанеОтÑтъп:ОтÑтъп на първи редЗареждане на приÑтавкитеЗареждане на приÑтавката: '%s' -Входни уÑтройÑтваИнÑталациÑта е уÑпешна. ÐатиÑнете "Продължаване".ПреÑичанеÐевалиден уникодГрешни уникод данни във файла "%s".Грешен UTF-8 низ в XCFфайлаГрешна широчина или виÑочина. И двете Ñ‚Ñ€Ñбва да Ñа положителни чиÑла.Обръщане на избиранетоОбръщането не работи на Ñлоеве Ñ Ð¸Ð½Ð´ÐµÐºÑирани цветове.Обръщане на избиранетотова ли иÑкате да направите?Подравни от двете Ñтрани:Запазване на Ñъотношението %sЗапазване на прозрачноÑÑ‚Ñ‚Ð°ÐšÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ð°Ð¡ÑŠÐ±Ð¸Ñ‚Ð¸Ñ Ð¾Ñ‚ клавиатуратаБързи клавишиЛнДЛ_Ñв краен цвÑÑ‚...ГолÑмПоÑледна грешка:СлойÐаÑтройки на СлоÑРазмер на _ÑлоÑ...Вид на запълването на ÑлоÑПревръщане на маÑката в ÑелекциÑРазмери на ÑлоÑ:_Тип на ÑлоÑ_Име на ÑлоÑ:_ОтдолуСлой Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на _ИзображениетоÐай-_отгореСлоевеМеню ÑлоевеÐаÑтройки на Ñливането на ÑлоеветеЦвÑÑ‚ на лÑвата крайна точкаДължина:ВъзÑтановÑване на поÑледната ви ÑеÑÐ¸Ñ Ð² GIMP при зареждане.РазÑтоÑние -между редовете:_Вид на чертите:Вид на чертите, изграждащи мрежата.ЗарежданеЗареждане на кривиЗареждане на деÑÐ½Ð¸Ñ Ñ†Ð²ÑÑ‚ _отЗареждане на текÑÑ‚ от файлМетÑоположение:Дълги тиретаТърÑене на данниПремеÑтване _отдолyСнижаване най-_долуПремеÑтване надолyПремеÑтване отдолyÐадолуОтдолуСнижаванеСнижаване най-долуУве_личениеКа_ртаУевличениеУправление на модулитеПлътноÑÑ‚ на маÑката:Създаване на маÑка за избраните чаÑтиСъздаване на маÑка за неизбраните чаÑтиМатрица:ИзмерванеИзмерване на разÑтоÑÐ½Ð¸Ñ Ð¸ ъглиИзмерване на разÑтоÑÐ½Ð¸Ñ Ð¸ ъглиСреденСливане на _ÑлоеветеСливане на ÑлоеветеСливане на палитраСливане на видимите ÑлоевеСливане на видимите _Ñлоеве...Сливане на _видимите Ñлоеве...Сливане на _видимите пътекиСливане на ÑлоеветеСливане на палитриСъобщението е повторено %d пъти.Съобщението е повторено веднъж.ПромÑна на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñ†Ð²ÑтПромÑна на вÑички цветовеПромени междуредовото разтоÑниеПапки Ñ Ð¼Ð¾Ð´ÑƒÐ»Ð¸ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ðµ на модулитеПът до модулаМодулиКурÑор на мишкатаПремеÑтванеПремеÑтване на ÑлоÑПремеÑтване на избранотоПремеÑтване на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойИнÑтрумент за премеÑтванеПремеÑтване на Ñлоеве и избираниÑПремеÑтване на избранотоПремеÑтване на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ ÑлойПремеÑтване:_Брой цветове:Ðа_вигациÑИмеИме:Ðов каналЦвÑÑ‚ на Ð½Ð¾Ð²Ð¸Ñ ÐºÐ°Ð½Ð°Ð»ÐаÑтройки на Ð½Ð¾Ð²Ð¸Ñ ÐºÐ°Ð½Ð°Ð»Ðов цвÑÑ‚ от _фонаÐов цвÑÑ‚ от _Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½Ðов ÑлойÐова пътекаÐаÑтройки на новата пътекаÐов шаблонÐова четкаÐов канал Ñ Ð½Ð°Ñтройки на предишниÑÐов канал...Ðов цвÑÑ‚ от фонаÐов цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½Ðова преливкаÐов ÑлойÐов Ñлой Ñ Ð¿Ð¾Ñледно използваните ÑтойноÑтиÐов Ñлой...Ðова палитраÐова пътека като предишнатаÐова пътека...Ðова шаркаÐÑма налични четки за този инÑтрумент.Вече не е наличноÐÑма доÑтатъчно видими Ñлоеве за Ñливане. ТрÑбва да Ñа поне два.Брой Ñлоеве:ОтмеÑтванеОт_варÑне като Ñлой...ÐепрозрачноÑÑ‚ÐепрозрачноÑÑ‚:ОтварÑнеОтварÑне на изображениеОтварÑне на изображението като ÑлойОтварÑне на адреÑОтварÑне на текÑтов файл (UTF-8)ОтварÑне на _адреÑ..._ÐаÑкоро зарежданиОтварÑне на изображениеОтварÑне на Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ð¾Ð±ÐµÐºÑ‚Ð“Ñ€ÐµÑˆÐºÐ° при отварÑнето на '%s': - -%sГрешка при отварÑнето на '%s': %sШ_аркиРиÑуванеПа_литриПалитраРедактор на палитриМеню за редактиране на палитратаПапки Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð¸Ð˜Ð¼Ðµ _на палитрата:Файл на _палитраПалитриМеню ПалитриВмъкни _вВмъкни като _ново_Вмъкване на пътекаВмъкване _вВмъкване като _новоВмъкни избранотоВмъкни избраното като ново изображениеВмъкни избраното в ÑелекциÑтаВмъкнат ÑлойÐаÑтройки на пътеката_ПътекаПревръщане в _ÑелекциÑПревръщане в ÑелекциÑПревръщане в ÑелекциÑПътищаМеню ПътекиШаркаШаркиМеню шаркиМо_ливМоливЛична GIMP папкаПерÑпективаДанни за промÑната на перÑпективатаПерÑпектива...ÐœÐ¾Ð»Ñ Ð¸Ð·Ñ‡Ð°ÐºÐ°Ð¹Ñ‚Ðµ...ПриÑтавкаПапки Ñ Ð¿Ñ€Ð¸ÑтавкиПриÑтавката не може да отвори изображениетоПриÑтавката не може да запише изображениетоПриÑтавката върна Ñъобщение SUCCESS, но не върна изображениеПриÑтавкиПриÑтавкаÐаÑтройкиСила на натиÑкаÐалÑгане:ПрегледПреглед:Предварителни прегледиПредназначение:КачеÑтвоПретърÑване за нови приÑтавкиБързо зарежданеÐаÑтройки на бързата маÑкаМеню Бърза маÑкаБързо запазванеБърза маÑкаИзлизане от GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB цвÑтДнЛПока_зване отново на "%s"_ОтновоД_еÑен краен цвÑÑ‚...РадиуÑ:ПремеÑтване _отгореПовдигане най-_гореПремеÑтване нагореПремеÑтване отгореПремеÑтване нагореÐай-отгореПовдигане на пътекатаПовдигане най-горе_УвеличениеПоказване на изображение, ако е вече отвореноПоказ_ване отново на поÑледниÑЦентриране _отново Ñредната точка на ÑелекциÑтаЦентриране _отново Ñредната точка на ÑегментаПреориентиране _точките на ÑегментаПреориентиране _точките на ÑелекциÑтаПре_именуване на запазени наÑтройкиПо_втори "%s"Връщане _в начално ÑÑŠÑтоÑние...Пълно изчиÑтване иÑториÑта на промените за това изображение?Обнови _прегледаОбнови прегледаЧервеноЧервено:ВръщанеПрезареждане на четкитеПрезареждане на преливкитеПрезареждане на палитритеОбновÑване на шаркитеПрезареждане на Ñ‚ÐµÐºÑƒÑ‰Ð¸Ñ Ð¸Ð·Ð³Ð»ÐµÐ´ÐžÐ±Ð½Ð¾Ð²Ð¸ _вÑичкиОбнови вÑичкиПремахване на и_злишнитеПремахване на ÑлойПремахване на запиÑаПремахване на излишнитеПремахни избранотоПреименуване на ÑлоÑПреименуване на запазени наÑтройки на инÑтрументитеПреименуване на текÑтов ÑлойПреименуване на обектаПовтарÑне на поÑледниÑРазмножаванеРазмножаване на Ñегмента от преливкаРазмножаване на избраното от преливкатаРазмножаване на ÑегментаРазмножаване на избранотоПрезареждане на ÑпиÑъка Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²ÐµÐ’Ñ€ÑŠÑ‰Ð°Ð½Ðµ наÑтройките към първоначалнитеВръщане на_вÑички наÑтройки към първоначалните...ИзчиÑтване на вÑички филтриВръщане наÑтройките на вÑички инÑтрументиВръщане на ÑтойноÑтите по подразбиранеИзчиÑтване реда на инÑтрументите и видимоÑттаПреоразмерÑване...ВъзÑтановÑване на наÑтройките от...Връщане '%s' към '%s'?Връщане изображението в начално ÑÑŠÑтоÑниеВръщането невъзможно. ÐÑма файл Ñ Ñ‚Ð°ÐºÐ¾Ð²Ð° име.Връщане към '%s' невъзможно: - -%sЦвÑÑ‚ на дÑÑната крайна точкаЗавъртанеЗавъртане на 90 градуÑа _обратно на чаÑовниковата ÑтрелкаЗавъртане на 90 градуÑа _по чаÑовниковата ÑтрелкаЗавъртане на ÑлоÑЗавъртане на текÑÑ‚Ð¾Ð²Ð¸Ñ ÑлойЗавъртане на _180 градуÑаЗавъртане на изображениетоВъртене на ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ избранотоЗавъртане...Данни за въртенетоПоказване на _мрежатаС_малÑване...Б_одлиОбръ_щане на цветоветеЗа_пазване на деÑÐ½Ð¸Ñ Ñ†Ð²ÑÑ‚ вЗапазванеЗапазване на '%s' в POV-Ray форматЗапазване на кривиЗапазване опиÑанието на грешките във файлЗапазване на изображениетоЗапазване наÑтройките на входното уÑтройÑтво _ÑегаЗапазване на бързите клавиши _ÑегаЗапазване наÑтройките на инÑтрументаЗапомнÑне на разположението _ÑегаЗапазване на вÑички грешки във файл...Запазване на _избраното във файл...Запазване _като...Запазване на _копие...Запазване копие на изображениетоЗапазване на вÑички грешкиЗапазване като _POV-Ray файл...Запазване като _шаблон...Запазване на преливката в POV-Ray форматЗапазване на наÑтройките в...Запазване на ÑелекциÑтаЗапазване ÑелекциÑта като каналДа бъдат ли запазени промените в изображението "%s" преди затварÑне?Запазване разположението и размерите на оÑновните прозорци при Ñпиране на GIMP.Запазване като _каналЗапазени наÑтройкиЗапазване на '%s' -Грешка при запазването на '%s' - -%sЗапазване на изображениÑтаМащабиранеПреоразмерÑванеПреоразмерÑване на ÑлоÑПреоразмерÑване...Папки ÑÑŠÑ ÑкриптовеСкриптовеПревъртане надолуПревъртане надолу (Alt)Превъртане надолу (Control + Alt)Превъртане надолу (Control)Превъртане надолу (Shift + Alt)Превъртане надолу (Shift + Control + Alt)Превъртане надолу (Shift + Control)Превъртане надолу (Shift)Превъртане налÑвоПревъртане налÑво (Alt)Превъртане налÑво (Control + Alt)Превъртане налÑво (Control)Превъртане налÑво (Shift + Alt)Превъртане налÑво (Shift + Control + Alt)Превъртане налÑво (Shift + Control)Превъртане налÑво (Shift)Превъртане надÑÑноПревъртане надÑÑно (Alt)Превъртане надÑÑно (Control + Alt)Превъртане надÑÑно (Control)Превъртане надÑÑно (Shift + Alt)Превъртане надÑÑно (Shift + Control + Alt)Превъртане надÑÑно (Shift + Control)Превъртане надÑÑно (Shift)Превъртане нагореПревъртане нагоре (Alt)Превъртане нагоре (Control + Alt)Превъртане нагоре (Control)Превъртане нагоре (Shift + Alt)Превъртане нагоре (Shift + Control + Alt)Превъртане нагоре (Shift + Control)Превъртане нагоре (Shift)ИзбиранеИзбиране на вÑичкоИзбор на цвÑтИзбор на оÑновен цвÑÑ‚ за промÑнаИзбор на изгледИзбор на папки Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð·Ð±Ð¾Ñ€ на увеличениеИзбиране на най-_Ð´Ð¾Ð»Ð½Ð¸Ñ ÑлойИзбиране на _ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ ÑлойИзбиране на _Ð¿Ñ€ÐµÐ´Ð¸ÑˆÐ½Ð¸Ñ ÑлойИзбиране на най-_Ð³Ð¾Ñ€Ð½Ð¸Ñ ÑлойИзбиране на вÑичкоИзбиране на непрекъÑнати облаÑтиИзбиране на елиптични облаÑтиРъчно избиранеДеÑелектиранеИзбиране на правоъгълни облаÑтиКолко пъти да бъде -размножен избрниÑÑ‚ Ñегмент.Колко пъти да бъде -размножено избраното.Избиране Ð±Ñ€Ð¾Ñ Ð½Ð° равните чаÑти, -на които да Ñе разделÑÑ‚ Ñегментите на ÑелекциÑта.Избиране Ð±Ñ€Ð¾Ñ Ð½Ð° равните чаÑти, -на които да Ñе раздели Ð¸Ð·Ð±Ñ€Ð°Ð½Ð¸Ñ Ñегмент.Избиране на прозрачните облаÑтиИзбор на уеб-четецПре_връщане на ÑелекциÑта в пътекаМенюПревръщане на ÑелекциÑта в пътека (_Ñложно)Превръщане на ÑелекциÑта в пътекаЧувÑтвителноÑтРазмер за полето на изображениетоИзбиране на Ñ€ÐµÐ·Ð¾Ð»ÑŽÑ†Ð¸Ñ Ð·Ð° печатОпределÑне размера на ÑлоÑЗадаване на непрозрачноÑттаЗадаване цвета на фонаЗадаване на цвÑÑ‚ за риÑуванеЗадаване на четец за помощта.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на прегледите в иÑториÑта на промените.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° на прегледите в прозореца за отварÑне на изображение. Забележете, че GIMP не може да Ñъздаде прегледите, ако прегледите на Ñлоевете Ñа забранени.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ‚ÐµÐºÑта, който ще Ñе поÑвÑва в ивицата за ÑÑŠÑтоÑние на прозорците Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ.ÐžÐ¿Ñ€ÐµÐ´ÐµÐ»Ñ Ñ‚ÐµÐºÑта, който ще Ñе поÑвÑва в заглавиÑта на прозорците Ñ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ.Вид на ÑенкитеФормаКлавишКлавишът "%s" вече е запазен за "%s" от групата "%s".Показване на _линийкитеПоказване на ивицата за _ÑÑŠÑтоÑниеПоказване на _плъзгачитеПоказване _границите на ÑлоеветеПоказване на _менютоПоказване на _избранотоПоказване на _цвета на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½ и фонаПоказване _границите на ÑлоеветеПоказване на _менютоПоказване на _линийкитеПоказване на текущото _изображениеПоказване на _мрежатаПоказване на _бутоните на помощтаПоказване на из_бранотоПоказване на ивицата за Ñ_ÑŠÑтоÑниеПоказване на _плъзгачитеПоказване на Ñъвет и ÑÐ»ÐµÐ´Ð²Ð°Ñ‰Ð¸Ñ Ð¿ÑŠÑ‚ÐŸÐ¾ÐºÐ°Ð·Ð²Ð°Ð½Ðµ на Ñъвети при начално _зарежданеПоказване на _подÑказкиСмалÑване на ÑелекциÑтаСмалÑване от краищата на изображениетоСмалÑване на ÑелекциÑта ÑРазмерРазмер в паметта:Размер:ПропуÑкане на '%s': неÑъответÑтвие на верÑиÑта на протокола на GIMP.МалъкМеки краищаПре_лепÑне към прежатаПлътниИзточникОтÑтоÑниÑСкороÑÑ‚:Сферично (_намалÑване)Сферично (у_величаване)РазделÑнеРазделÑне Ñегмента от преливката на равни чаÑтиРазделÑне Ñегментите на преливката поравноРазделÑне Ñегмента на равни чаÑтиРазделÑне Ñегмента на равни чаÑти...РазделÑне Ñегмента през _Ñредната точкаРазделÑне Ñегментите поравноРазделÑне Ñегментите на равни чаÑти...РазделÑне Ñегментите през Ñредната точкаСт_Ð°Ñ‚ÑƒÑ Ð¸ текÑтП_акетЗареждане на разширениÑтаЗареждане на разширение: '%s' -СъÑтоÑние:О_чертаване на пътекатаО_чертаване на пътеката...Очертаване на пътекатаОчертаване на ÑелециÑтаОчертаване на пътеката като поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¿ÑŠÑ‚ÐžÑ‡ÐµÑ€Ñ‚Ð°Ð²Ð°Ð½Ðµ на пътеката...Очертаване на ÑелекциÑта като поÑÐ»ÐµÐ´Ð½Ð¸Ñ Ð¿ÑŠÑ‚ÐžÑ‡ÐµÑ€Ñ‚Ð°Ð²Ð°Ð½Ðµ на ÑелекциÑта...ИзважданеИн_ÑтрументиТе_кÑтИнÑтрумент за _текÑтШаблониМеню шаблониПрекъÑване на приÑтавка: '%s' -ТекÑтЦвÑÑ‚ на текÑтаРедактор на текÑтТекÑтов ÑлойТекÑÑ‚ÑŠÑ‚ е промененThe·GIMPПриÑтавката за четене на помощта на GIMP изглежда липÑва в инÑталациÑта ви.Фонов цвÑÑ‚ на мрежата; използва Ñе Ñамо при мрежа Ñ Ð´Ð²Ð¾Ð¹Ð½Ð¾ пунктирани линии.Интерптретаторът за пакетна обработка '%s' не е наличен, пакетната обработка е изключена.Името на файла не може да бъде конветирано в UTF-8: %s - -МолÑ, провери променливата G_FILENAME_ENCODING.ЦвÑÑ‚ на чертите, изграждащи мрежата.Името на директориÑта, Ñъдържаща личните ти наÑтройки за GIMP не може да Ñе конвертира в UTF-8: %s - -Ðай-вероÑтно твоÑта файлова ÑиÑтема запазва файловете различно от UTF-8 и GLib не е наÑтроен за това. МолÑ, наÑтрой променливата G_FILENAME_ENCODING.ИзгледПапки Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð·Ð³Ð»ÐµÐ´Ð¸Ð˜Ð¼Ð° %d Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ Ð½ÐµÐ·Ð°Ð¿Ð°Ð·ÐµÐ½Ð¸ промени:ÐÑма активен Ñлой или канал, от който да Ñе копира.ÐÑма активен Ñлой или канал, от който да Ñе изреже.ÐÑма активен Ñлой или канал, който да Ñе очертае.Има едно изображение Ñ Ð½ÐµÐ·Ð°Ð¿Ð°Ð·ÐµÐ½Ð¸ промени:Тази папка Ñе претърÑва за инÑталирани от Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñ Ð¸Ð·Ð³Ð»ÐµÐ´Ð¸.Този инÑтрумент нÑма наÑтройки.МиниатюренЗаглавие и ÑÑŠÑтоÑниеВ _пътекаИг_рачки_Превключване на бърза маÑкаТвърде много ÑÑŠÐ¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð·Ð° грешки!ÐаÑтройки на инÑтрументитеМеню ÐаÑтройки на интÑрументаÐаÑтройки на _инÑтрументитеИкона на инÑтрументаИкона на инÑтрумента Ñ Ð¼ÐµÑ€Ð½Ð¸Ðº_ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑÑ‚Ñ€ÑƒÐ¼ÐµÐ½Ñ‚Ð¸ÐšÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑтрументиМеню ÐºÑƒÑ‚Ð¸Ñ Ñ Ð¸Ð½ÑтрументиИнÑтрументиМеню ИнÑтрументи_ПрозрачноÑтПреобразуванеПреобразуване...Превод:ПрозрачноÑтВид _прозрачноÑÑ‚:ВидВид %sОтмÑнаИÑториÑИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° _променитеМерни единициÐеизвеÑтен вид файлÐеизвеÑтен вид файл на палитра: -%sÐеозаглавеноИзползване на _уеб-четецИзползване на черно-бÑла (еднобитова) палитраИзползване на цвÑÑ‚ от преливкаСтойноÑтСтойноÑÑ‚:ВерÑÐ¸Ñ %s Ñъздадена отВерÑиÑ:Вертикално отÑтоÑние на първата черта на мрежата. Може да бъде отрицателно чиÑло.Вертикално отÑтоÑние на чертите на мрежата.Много голÑмМного малъкИзгледПоказване като мрежаПоказване като ÑпиÑъкПредупреждение: Грешка при зареждане на данните: - -%sПредупреждение: Грешка при запазване на данните: - -%sУеб-четецУеб-четецДобре дошли -в потребителÑката инÑÑ‚Ð°Ð»Ð°Ñ†Ð¸Ñ Ð½Ð° The GIMP %d.%dÐко е зададено, при натиÑкане на F1 ще Ñе Ð¾Ñ‚Ð²Ð°Ñ€Ñ Ñ‡ÐµÑ‚ÐµÑ†Ð° за помощта.БÑл цвÑтБаланÑÑŠÑ‚ на бÑлото работи Ñамо на RGB Ñлоеве.ШиринаШирочина:Управление на прозорцитеРазположение на прозорцитеЗапиÑване на '%s' -XXCF грешка: неподдържана верÑÐ¸Ñ %d на XCF файлаПредупреждение за XCF: ВерÑиÑта 0 на -Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ XCF не запазва правилно -индекÑирани цветови карти. -ЗамÑна Ñ Ñ†Ð²ÐµÑ‚Ð¾Ð²Ð° карта на Ñтепени на Ñивото.YЖълтоЖълто:ТрÑбва да изпълните отново GIMP, за да Ñе приложат Ñледните промени:ИнÑталациÑта ви на GIMP е непълна:Мащаб 1:1Увеличаване на вÑичкоУвеличаванеÐамалÑванеМащаб на увеличениетоМащаб на увеличението:Увеличаване на_вÑичко_Увеличаване_ÐамалÑванеУвеличаване на вÑичкоМащаб %d:1ПромÑна на мащаба при промÑна размера на прозорецаУвеличаванеÐамалÑване и увеличаванеÐамалÑванеМащаб:_ОтноÑно_Снимане_ДобавÑне цвÑÑ‚ от фона_ДобавÑне цвÑÑ‚ от Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½_Добави модул_ДобавÑне към ÑелекциÑ_Допълнителни наÑтройки_Спрей_Ð’ÑичкоФикÑиране на ÑлоÑ_Въртене по зададена ÑтойноÑÑ‚..._ХудожеÑтвени_СплеÑкване_Ðвтоматично_ЦвÑÑ‚ на фона_ЦвÑÑ‚ на фона:_ИзбледнÑване на Ñегмента_ИзбледнÑване на ÑелекциÑта_ЗамъглÑване_ЯркоÑÑ‚:_Четка_Четки_Четки, шарки и преливки_Запълване_Буфер_По цвÑÑ‚_Канали_ИзчиÑтване на прозореца Ñ Ð³Ñ€ÐµÑˆÐºÐ¸_ИзчиÑтване иÑториÑта на дейÑтвиÑта_ЗатварÑне_Затвори модула_Облаци_Цветове_Цветове_ÐаÑтройване на цвÑÑ‚ и плътноÑÑ‚..._КонтекÑÑ‚_КонтекÑтна помощ_Копиране_Копиране на..._Създаване на изображение по шаблон..._РÑзане_Криви_Криви..._Цветове по подразбиране_Изтриване на четката_Изпразване на буфера_Изтриване на канала_Изтриване на цвÑÑ‚_Изтриване на преливка..._Изтриване на изображение_Изтриване на ÑлоÑ_Изтриване на палитра_Изтриване на пътеката_Изтриване на шарката..._Изтриване на запазени наÑтройки_Изтриване на Ñегмента_Изтриване на ÑелекциÑта_Изтриване на шаблон_ОÑвободи модула_СъÑтоÑние на уÑтройÑтвото_ПрозорциОт_хвърлÑне на промените_Унищожаване на информациÑта за текÑта_ДеÑтуктивни_Размножаване_Редактиране_Редактиране на четката..._ПромÑна наÑтройките на канала..._Редактиране на цвÑÑ‚..._Редактиране на преливка..._ПромÑна наÑтройките на ÑлоÑ..._Редактиране на палитра..._ПромÑна наÑтройките на пътеката..._Редактиране на шарката..._Редактиране на шаблон...Ог_ромен_Фина наÑтройка_Гума_ЦвÑÑ‚ на Ð¿Ñ€ÐµÐ´Ð½Ð¸Ñ Ð¿Ð»Ð°Ð½_Файл_Запълване Ñ:_Слепване на Ñлоевете_Обръщане_Обръщане на Ñегмента_Обръщане на ÑелекциÑта_Плаваща ÑелекциÑ_Шрифт_ШрифтовеЦвÑÑ‚ на _чертите:_ОбщиГига_нтÑки_Преливка_ПреливкиСтепени на _Ñивото_Увеличаване..._Водачи_ТвърдоÑÑ‚_ПомощГрам_аден_Иконка_Изображение_ИзображениÑ_ВнаÑÑне_ВнаÑÑне на палитра..._ИндекÑиран..._ПреÑичане ÑÑŠÑ ÑелекциÑ_Обръщане_ГолÑм_Слой_Слоеве_Слоеве, канали и пътеки_ЛÑва крайна точка_ДÑÑна крайна точка на лÑвата ÑÑŠÑедна_Светлинни ефекти_Линейно_Свързан_Зареждане на Ð»ÐµÐ²Ð¸Ñ Ñ†Ð²ÑÑ‚ от_ПремеÑтване надолy_Ðадолу_Снижаване_Ръчно_Карта_МаÑка_Превръщане на маÑката в ÑелекциÑ_Измерване_Среден_Сливане на палитри..._Други_Тип_Управление на модулите_ПремеÑтване_Име:_Природа_Ðова четка_Ðов канал_Ðов канал..._Ðова наÑтройка..._Ðова преливка_Ðов Ñлой_Ðов Ñлой..._Ðова палитра_Ðова пътека_Ðова пътека..._Ðова шарка_Ðов шаблон..._Ðов изглед_Ðов..._Следващ Ñъвет_Шум_Ðищо_ОтмеÑтване..._ÐепрозрачноÑÑ‚_ОтварÑне на изображението_ОтварÑне..._РиÑуване_Палитра_Вмъкване_Вмъкване на буфера_Вмъкване на..._Пътеки_Шарка_ПерÑпектива_ÐаÑтройки_ПрегледРазмер на _прегледа_Предишен Ñъвет_Размер при печат..._ÐаÑтройки_Бързата маÑка активна_Изход_RGB_РадиуÑ_ПремеÑтване нагоре_ПремеÑтване нагоре_Повдигане на пътеката_Увеличение_Показване или отварÑне на изображениÑ_Връщане_ПовтарÑне на %s_Презареждане на четките_Презареждане на преливките_Презареждане на палитрите_ОбновÑване на шарките_Генериране_ПодмÑна на Ñегмента..._ПодмÑна на ÑелекциÑта..._Презареждане на ÑпиÑъка Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²Ðµ_ИзчиÑтване реда и видимоÑтта_Връщане на подразбиращите Ñе наÑтройки на входните уÑтройÑтва_Връщане на подразбиращите Ñе бързи клавиши_Връщане на подразбиращите Ñе разположениÑ_ВъзÑтановÑване на наÑтройките от_ДÑÑна крайна точка_ЛÑва крайна точка на дÑÑната ÑÑŠÑедна_Въртене_Запазване_Запазване на Ð»ÐµÐ²Ð¸Ñ Ñ†Ð²ÑÑ‚ в_Запазване на наÑтройките в_Запазване наÑтройките на входното уÑтройÑтво при изход_Запазване на бързите клавиши при излизане_ЗапомнÑне на разположението при излизане_ПреоразмерÑване..._ПреоразмерÑване на ÑлоÑ..._Избиране_ПромÑна на ÑелекциÑта_Селектиране_Форма_ИзоÑÑ‚Ñ€Ñне_Показване на ÑелекциÑта_Показване в инÑтрументите_СинуÑоидалноМа_лъкОчертаване на ÑелекциÑта_Очертаване на ÑелекциÑта..._Изваждане от ÑелекциÑ_Вид на модула_Шаблон:_Шаблони_ТекÑÑ‚_Миниатюрен_Съвет за денÑ_ИнÑтрумент_ИнÑтрументи_Преобразуване_ТранÑформиране_ОтмÑна_ОтмÑна на %s_Изглед_Видим_Уеб_Използване на:_Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° бÑлото_Широчина:_X:_ДопълнениÑ_Y:_Мащаб_Мащаб (%s)инчовемилиметърмилиметриминутапроцентаÑекундаtips-locale:bgЯÑен Праматаров -Виктор Дачев \ No newline at end of file diff -uraN gimp-2.2.8/po/ca.gmo gimp-2.2.9/po/ca.gmo --- gimp-2.2.8/po/ca.gmo 2005-02-12 14:38:00.000000000 +0100 +++ gimp-2.2.9/po/ca.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,426 +0,0 @@ -Þ•O ”Jm •ÀÆÁÆ&×ÆkþÆGjÇ9²ÇGìÇA4ÈNvÈiÅÈ</ÉklÉ@ØÉ2Ê;LÊPˆÊOÙÊ2)Ë9\Ë-–Ë9ÄË;þË7:Ì rÌ|Ì -ƒÌ ŽÌ -˜Ì -£Ì ®ÌºÌÊÌ -ÙÌäÌçÌ÷Ì -ÍÍ"Í*ÍFÍ`ÍvÍ0}ͮͿÍÒÍÛÍãÍ -úÍÎ ÎÎÎ +Î 9Î EÎ -SÎ -^Î iÎ v΂Π’Î žÎªÎ ¯Î »ÎKÈÎ…Ï.šÏ1ÉÏ!ûÏÐ/Ð6ÐEÐLÐhÐwЎВХР-·Ð ÂÐÎÐ äÐ -ðÐûÐÑ #Ñ-Ñ<Ñ -EÑPÑ_ÑrъќѮѽÑ*ÓÑ6þÑ5ÒHÒeÒ}Ò†Ò£ÒÂÒ×ÒëÒÿÒÓ3ÓGÓ#[ÓÓ™Ó -µÓÀÓÑÓÙÓëÓôÓÔ(Ô 0Ô :Ô GÔQÔaÔ1vÕ3¨ÕÜÕðÕöÕ Ö‹Ö -œÖ§ÖÁÖ×ÖñÖøÖ × -××0×B×R×Ac×J¥×ð×<Ø @Ø NØ\ØlØ…ØØ­ØµØºØ ÔØàØöØ ÙÙ)Ù;Ù LÙZÙrÙ -{نٰٗÙÇÙ&ÝÙ$Ú)Ú0Ú 6Ú @ÚNÚUÚnÚuÚ{Ú•Ú"Ú ÀÚÌÚÑÚ×ÚÜÚ -ìÚ÷ÚÛÛ+Û7?ÛwÛ }Û ŠÛ˜Û¡Û¨Û °Û ½ÛÉÛ ÑÛÞÛãÛ èÛmõÛcÜ hÜ vÜ „ÜŽÜ—Ü ´ÜÂÜÒÜ ÙÜCæÜ7*Ý=bÝ@ Ý6áÝdÞ}Þ›Þ3±ÞåÞ<ùÞ#6ß!Zß|ß™ß ³ß¿ß Õßßßèßàà.àFàXàjà‡à¤àÁà,Øàáá'á :áHá há ‰á!—á¹áÔáêáÿáââ &â 4âAâUâ\âcâ iâwâŠâ ™â¦â.¼â5ëâ5!ã7Wã8ã)Èã,òãä;äSä2pä £äÄäßäOûäAKå%å&³å4Úå1æ#Aæ eæsæ æ ›æ¥æ½æÎæÔæÝæ -ìæ÷æÿæ çç )ç6çOçaç0sç ¤ç °ç½ç Äç Îç Ûçèçè è+)èUèhè{è„è ”è¢è «èµè -½è ÈèÒè$òèé*é9éNé kéŒé¦éÄé×éçé"üéê5ê DêRêbê kêwêêë -ëë #ë0ëKëdë„ë ™ë"§ë"Êëíëìì -!ì,ì -Kì)Vì€ì,šìÇì!áì#í#'í!Kí%mí“í.²íáí èíôíîî,î?î#Uî-yî§î%½îãîùîï*ï?ïWï \ïjï -„ï -ï -šï¥ï½ïÄïÓï Øï æïóïðð&ð5ðDð KðYð -lðwð-~ð¬ð ³ðÀðÐðçð ëðõðúðññ$ñ8ñIñ\ñlññ–ñ §ñ³ñ Ãñ Ïñ Ýñêñññ÷ñ%ýñ!#ò EòRòeò&}ò¤ò ¸òÆòÕòèò úòóó 'ó4ó CóPó `ómóó Žóšó©óÁóÜóùó ôô -3ô ->ô-Iô wôƒô Šô˜ô ô ¨ôµô -½ô ÈôÕôèôûôõõ/õCõ Võdõ~õ ‡õ‘õ ¡õ«õ²õ:Ðõ? ö8Kö „öö™ö«ö ¼öÆö -Õöàöæö -üö ÷ ÷ !÷ -.÷ 9÷ E÷ -O÷ Z÷f÷ o÷|÷÷ Ÿ÷>­÷ ì÷ øø/øBøRødøsø…ø¥øµø ÅøÒø áøîøóø ùù7ùKùaù qù{ùŽù£ù¾ù Ôù -âùíù -úú (ú6ú LúYú nú{ú‹ú¦ú µú Ãú -ÏúÚú*ëúûû!1ûSû.jû™ûµû#¾û"âûü"ü&Aühü ~üŠüžü,§ü#Ôüøüÿü ýý/ý'Iýqý'Žý¶ýÓýéýþFþTfþ»þÂþ ÈþÕþëþ þþÿ 6ÿ@ÿ -Wÿ bÿpÿ ÿ®ÿ½ÿÌÿÞÿðÿ öÿ   6(?$h=“6Ñ<?EA…7Ç9ÿc99B×=fX>¿CþJBg õ #1FK] m wƒ • ¢ °¾Òéþ%8K]t„˜´Ïìóü6Mau ‰— -ª µÃ È -Õ àê ú -,7S [gw ‡•­Éåù( ; A H  P ] e k  -q O| Ì  -Þ ”é ~ - -¨ -¿ - -Õ - à - ì -ø -  . < O b  -q  |  Š  – £ ¨  · Ä  Ü  é ö   2 uA · ÌÉ Å– c\ ÀzÍHNrVÉâù#,<Q&b'‰ ± ½ ÇÑ à îú ÿ  -:I[ayŠŽ¨ÅÚéò  -)4 =GNV [ ht¦¶ -»ÆÛHò -; FP` -hHs!¼BÞ!%14fy~ ƒ—§ -·Â Ç Ó`ß™@CÚ10P ‡ ”¡ -³ -¾Éàð 3 K(Y -‚ -H˜ -á ì -ù & 5BXm | ‰—œ ¤ ±½Åãê ò€ š¦»Õë  + 9 FKT3 6Ô "0 S]u‰ ˜$¢Çâ ÷  &(G+p)œ*Æ!ñ/%U\k*|§¸'Õý & -8CSe{‹¬µÄÝð (CT]l…˜ ¯Ðë ü  0 D !\ ~ š ¬  ³ À × è ý !5!-D!r"{"Ž"’" ¬"¶"¼"Ì" Ü"è"3î""#3#K#[# s# -€# ‹# —#¤#Â#á#$$.$?$ T$b$y$ €$Œ$¡$µ$Ä$@Ì$ %-%B% T%a% f% t% €%%«% ²%¾% Ã% Ï%Û%ò%&0&D& X& b& n&z& ‘&Ÿ&·& Ð&Ü& -ò&ý&' ('6' N'Z' -p'{''™'¡'´'¹'Á'Ê' Ò'à'ñ'(( 1(?(T(k( -s(#~(¢(»(Ô(ê(ð(ø()+2)^)f) m) {) -‡) ’) Ÿ)­)Â)Ö)ï)* *** 9*G*Z*u*"Œ*¯*¸*Î* î*ü*++ +$#+H+Z+n+}+ Œ+˜+  + ®+º+ ¿+ Ì+Ù+ -ñ+ ü+ - ,, $,.,=, M, W,a,z,‰, ,¶,Ô,ð,- -- %-1-D-^-c- -i- t-€-’-¦-¹- Ì- Ö-à-é- ú- . ..:.I.[. m. -z. ….. ª. ·.Ã. Ý. é. õ.,/./!A/c/w/Ž/)«/ Õ/â/ ú/ 000(0/0 @0 L0Z0Bm0A°0ò01%1 71A1H1W1 g1t1†1›1£1„«102?2Q2Y2b2 -g2r2 †2”2«2 ½2Ê2Ü2ü2"3!>3!`3‚3š3³3 Ë3 Õ3 ß3é3ù34 44V&4+}4 ©4³4"¹4Ü4 ò4 þ4 -5$5%<5 -b5 m5w55Ž5¢5 -²5½5 Ì5Ú5 ã5ñ5 6 66#666 K6 W6 c6q6&‹6,²6 ß6ì6ñ6 -7 - 7747R7q7‰7œ74®7ã7õ7 -û788 -8 )868E8 N8\8d8k8 ˆ8”8 ©8!µ8×8 æ8ô8 -99'9B9 R9\9m9 9Œ9“9?›9Û9ê9ò9::3:¡P:4ò:';0;-8; f<p<y< -‰< ”<#ž<Â<-Õ< ==$= 9=C=K=b=k= -t= =¥‹=1>E>Y> b>o>x>€>†>œ> -´> -¿>Ê>à> -ð> û> ???1? B? L?!V?x? |?Š?ž? ­? º?Ç?â?é? ñ?ÿ?@ *@6@ -I@T@f@ y@‡@ œ@¨@ -»@Æ@Ø@ô@AA A!)AKA!iA#‹A¯A ÅA -ÒA9ÝAUB=mB<«B=èB"&C?IC‰C›C ¬C¸C¼CÁC(ÆC,ïCD,D>DOD -`DkDD–DJªD õDEE*E DE QE^EyE “E ŸE­EÅEßEïE; FEF_F nF {F‡F¡F ³F ¿FÍF ÝF ëF øFG G *G4GOGlG~G’G¥G¶GÉGÚGíGHH/H+FHrHŠHªH±H ÀH ÍH ÚHæH øH II#(I LIXI jIvI‹I¢I6ºIñIJJJ 2J7?JwJ•JªJºJÁJØJîJ ýJ -KK(K u*¼uBçvæ*wx0x‚²x5y ;yIy)Py5zy¯°y1`z0’z0Ãz1ôz(&{CO{€“{S|,h|2•| È|Aé}A+~*m~«˜~íD 2€Î?£‚ª²‚§]ƒ§„­„˜°…GI†葆ïz‡2jˆˆ ·ˆ-Áˆ -ïˆúˆ ‰‰0‰6‰;‰J‰S‰Y‰k‰~‰ —‰¤‰¶‰ Ɖ Ô‰Þ‰÷‰Š ŠŠ -Š<&Š c‹q‹ ˆ‹’‹¤‹¸‹È‹׋ì‹ŒŒ%Œ9ŒHŒ?bŒ¢Œ²Œ ÁŒÎŒâŒ -òŒýŒ 3";V;’¡ÎpŽFw ¾È Í Úèîö )08A_3˜#Ìð‘‘+‘E‘[‘j‘y‘‘ †‘’‘¯‘¸‘FÁ‘’ -(’ -3’>’ C’ Q’ _’ l’ y’ ‡’!•’!·’ Ù’ å’+ñ’K“0i“Qš“˜ì“¢…”$(•5M•Pƒ•GÔ•-–OJ—jš—o˜eu˜jÛ˜~F™pÅ™o6šw¦š<›?[›>››tÚ›tOœ`Äœ‰%¯/ž05žfžlžsž…žšž «ž¹ž6»žoòžbŸdŸgŸnŸ4vŸ#«ŸÈÏŸG˜ Xà U9¡O¡ß¡ö¡ÿ¡¢¢ -¢ $¢ 0¢:¢ C¢M¢V¢#h¢Œ¢ ”¢¢¢«¢±¢À¢Ç¢Тã¢ö¢ÿ¢£ #£-£ 2£ @£N£ e£o£w£}£ €£Š££¸£ ×£ø£ þ£ ¤¤¤ :¤G¤ O¤Y¤j¤ m¤ y¤ ƒ¤‘¤¥¤¬¤ -³¤¾¤ ƤÓ¤Û¤û¤ ¥¥¥'¥F¥ U¥a¥ -i¥t¥†¥ –¥¤¥³¥ åѥ å¥ ó¥¦ ¦¦1¦G¦W¦i¦ z¦ †¦’¦¡¦ª¦ Ħ Φ -Û¦æ¦ì¦û¦§&§8§R§c§|§§Ÿ§ ¯§ Ч Ú§ä§ ì§ö§ ü§¨¨,¨ 2¨@¨P¨W¨]¨d¨ w¨„¨‡¨ ¨ š¨ -¤¨ -¯¨º¨Ó¨ܨ ä¨î¨ ô¨©© ©©©!©)©1© D© P©]©w© ©Œ©“©š©¢©¼©Ë© -ë©ö© ª ª $ª0ª8ª@ªVª eª rª~ª ª‹ªª–ª©ªĪͪÕªèªþª « +«9«?«O«U«\« -d« o«|« Œ« š« -¨« ³« Á« Ϋ Ø« å«ò« ¬ ¬ ¬¬&¬ -,¬7¬ @¬L¬U¬ d¬ q¬}¬†¬ ¬›¬«¬²¬ »¬ Ȭ Ö¬ã¬ ì¬ ú¬­ ­#­6­<­?­D­L­ [­ h­ t­­–­ ©­¶­¼­Å­Ö­é­û­( ®6®>®G®]®u®‡®4¡®1Ö®/¯8¯N¯^¯~¯ †¯“¯™¯­¯#¾¯ ⯰"°)°9°"I°l° -t°°‘°¢°©°²°È° Ù°å°ì°ô°±±+± -D± -O± -Z±e± k±y±±±•±œ± -¼±DZرÞ± -ç±ò±ø±²²²1²@² H²U²d²h²n²q²€²„² -Š²•²œ²¡²5¥²Û² í²÷²³ ³³ ³)³!>³ `³ ³¢³ -³ ͳÙ³à³ä³ì³ñ³÷³ý³ ´ ´´´%´ ,´:´.M´|´*™´ĵ)ݵq¶Vy¶CжR·Rg·eº·~ ¸CŸ¸sã¸NW¹:¦¹=á¹bºR‚º=ÕºB»2V»F‰»<л@ ¼N¼W¼ -^¼i¼ r¼ |¼ †¼’¼¢¼ -²¼½¼À¼ϼ ì¼ ø¼ ½½1½Q½g½8m½ ¦½ǽݽæ½ ï½ ¾¾"¾+¾ 2¾ >¾ L¾ X¾ -f¾ -q¾ |¾ ‰¾•¾ ¦¾ ²¾¾¾ þ Ͼ]ܾ:¿KÈ¿<À$QÀvÀÀ –À¤À«ÀÇÀÖÀïÀ÷À ÁÁ.Á?Á^Á mÁ{Á”Á ±Á¾Á ÛÁéÁùÁÂ$ÂCÂZÂw”Â.­Â<ÜÂÃ0Ã"NÃqÃ"zÃ"ÃÀÃÛÃöÃ"Ä5ÄPÄkÄ%‡Ä­ÄÊÄ -èÄóÄÅÅ !Å".ÅQÅcÅ -kÅvņŗÅ7®Å4æÆ4ÇPÇdÇiÇÇ•‡Ç -È(ÈAÈXÈqÈxÈ ŽÈ ˜È¢È¾È×ÈæÈ<ÉI?ɉÉ;ŸÉÛÉïÉÊÊ1ÊMÊ^Ê -eÊpÊŠÊ&šÊÁÊÚÊîÊËË.ËIËaËxË }ˋˢ˳Ë+ÉË*õË Ì(Ì/Ì 8ÌFÌ MÌnÌvÌ }ÌžÌ3§ÌÛÌïÌôÌúÌÍÍÍ/ÍDÍYÍ3mͩ͡ͼÍÑÍéÍòÍûÍ -ÎÎ'ÎCÎIÎ OÎo]ÎÍÎÒÎÛÎ -ðÎûÎ!Ï&Ï:Ï -NÏYÏUiÏF¿ÏNÐDUÐ8šÐuÓÐ#IÑ$mÑA’ÑÔÑKíÑ<9Ò*vÒ¡Ò ¿ÒàÒðÒ ÓÓÓ#7Ó[ÓyÓ—Ó¯ÓËÓ%éÓ+Ô;Ô)RÔ$|Ô¡Ô§ÔºÔ ÉÔ%êÔÕ Õ?Õ^ÕuÕ‡Õ™Õ Õ §Õ´ÕÇÕÝÕäÕìÕóÕÖ"Ö 5ÖCÖ@aÖD¢ÖJçÖ=2×<p×0­×-Þ× Ø&*Ø#QØ6uØ$¬ØÑØêØŒÙF”Ù6ÛÙ7ÚAJÚ?ŒÚ1ÌÚþÚ!Û1Û DÛ&RÛyÛ”ÛšÛ£ÛºÛÊÛÒÛØÛ#éÛ Ü#!ÜEÜZÜ:kܦܺÜÌÜÓÜãÜ óÜÝ"Ý AÝ4K݀ݔݨݷÝÑÝ æÝ -ðÝ ûÝ -Þ Þ1Þ+LÞxÞŽÞ! Þ!ÂÞ$äÞ ß#)ßMßlßß1›ßÍßãß÷ß -àà %à/à‘7àÉà Òà -ààëà$ûà á#<á`áxá(á)¶áàáâ ââ+4â -`â8kâ¤â3Áâõâ3ã(Iã(rã)›ã.Åã)ôãBä aäkä~ä”ä¨ä½äÐä/ää5åJå"bå…å™å°å+Ìå!øåæ#æ'=æeæxæŠæ&æ -Äæ ÏæÛæäæç ç!ç1ç GçTçcçjç|ç•ç¤ç6«ç âçïçèè:èBèTèYè_èpè‚è—è¨è¸èÊèÚèðè -éé1éAéPéeémé -sé4~é'³éÛéïé ê7)êaêwêˆê›ê·êÕêéêûêë$ë7ëJë`ërëë¡ë´ëÈë.åë#ì8ìQìgì ‡ì”ì6ì Ôìàìéì þì -íí"í *í 6íDí`í|íší©í¿íÚíùí"î5î <îHîZîlî'uîCî@áî4"ïWï `ïlïƒï ™ï£ï³ïÂï Êï ëï ùïðð,ð<ðLð\ðkð -|ð‡ð—ð°ð¿ð\Îð)+ñUñeñvñŠñšñ©ñºñ!Éñ(ëñò )ò6òPòdòjò‡ò& ò"Çò êò ó -"ó-óFó)có"ó°ó ÀóÎó ëó&÷óô-ôGôWô pô}ô”ô´ô -Êô -Õô -àôëô+þô*õ3õ*Mõxõ<’õ;Ïõ ö+ö>ö/ZöŠö¤öÀöàöçö ùö(÷(,÷U÷e÷w÷ˆ÷1Ÿ÷BÑ÷)ø>>ø)}ø*§ø5Òø+ù[4ùhùùù ú - úú0ú,Dúqú ˆú”ú -³ú!¾ú(àú, û6ûQûlûˆû¤û!´ûÖûêûþûü1ü19ü2küžü_§ü]ýkeýlÑýn>þ`­þ^ÿËmÿQ9U‹iá’KeÞgDp¬ž ¼ÆØîý0GWm…”§»Õï -% Abw‹¤!´Öò08*AlŠªÆàü *6GO` p~–¬ÅÛí - ,< LXo‹¤*¸<ã & . 7 S s „ ” Rª ý  - -² -Î -â -ÿ -  - ; L ]  ` 7n ¦ ¹ Í  á í ÿ  # + > P m ƒ ’ ª  à ä –ø  ÿ­ ­~¶5oF¶¼ÄD^~…¯¸Ìæ.ü*+V o yƒ“ ¥³¸ÉÎÔÜü&=B]rv¯Ê Ùã  -)4;CKTZl&|#£ÇÜ á/ë0gL ´ -ÀË á ëW÷.OF~Å È4Ö ! (6>S -cnt ˆm•¯?³.ó1"T[l} –£#µÙí,2!Ln%‚¨¸gÊ2DXg o}“ ¦´Îæõ -% 8DLlt |Š—§?,V%ƒ$©&Îõû #:L_\S¼DUn$† «·Óè÷ý * @ ,_ 6Œ Eà F !DP!E•!)Û!"H" `"j"}"-”"Â"Ù".õ"$#<# -U#`#{#‹#¡#!À#â#ô#$ !$-$?$[$q$!‰$«$Ç$Ú$é$þ$%6%$Q%v%•% ª%¶%È%ä%ú%!&4&P& b&n&€&œ&²&!Ê&ì&'N'i(p(ƒ(‡( ¥(±(¶(Å( ã(ñ(Pö(G)[)x))°)Â) Ò)à)ñ)$*6*T*r*‹**·*Ê*á* ç*ó*+(+ @+MJ+˜+7 +Ø+ñ+,,,.,(@,i,p,‚,Š,,­,3Ë,-ÿ,--+E- -q- |-ˆ-$—-¼-Ì-é-..2.B."_.‚.’.¯.¾.Ú.ê. ///,/2/:/C/L/]/x/‰/'©/Ñ/ê/$ -0/070*L0w0”0±0Î0Õ0Ü0ø041I1R1Y1i11”1¦1µ1Ð1ì1 2*2G2Y2i2}2–2!³2+Õ2 33"-3P3_3f3k3q32Œ3¿3Ø3÷3 44.464J4[4 _4 l4y4’4 ›4 ¥4±4 É4Ó4ä4ø4 55.5?5R5f5!†5¨5º5 -À5Ë5 Þ5ê5)6,606 -56 @6J6^6t6‹6 ¨6 ´6 ¾6È6á6 ð6 ü6 7 '747J7 f7s7 „7 Ž7 ¯7 ¼7 È7 é7 -ö7 8<8K8(k8”8®8.Í85ü8 29%@9f9 w9…9‰9ž9¥9 ¶9Ä9Ô9Jì9J7:#‚:¦:Ã: -Ô: ß:í:ý:;%;@;W;f;žn; <"<6< ?<I< Q<]<t<ƒ<Ÿ<²<Â<(Ö</ÿ<(/=&X=&=¦=Æ=ä= > > >>1>A>F> Y>¤c>e?n?w?)}?§?Ç?Ö?"æ? @/'@W@_@h@o@€@—@ª@À@Ð@â@ ê@ø@ AA2A":A']A…A -—A¢A,µA<âA>B^BmBsB†B•B ¤B%ÅBëB -C)CX(bX5‹XÁX+ÞX -YY.YJYdY!wY™YµY$ÑY;öY2ZLZ `ZlZZ›Z>¶ZõZ[+[;[V[Qg[7¹[ñ[\\"\>\ V\ d\ -q\|\‘\¡\°\Ì\Þ\ù\ÿ\] ]']/]G]]]l]}] -ƒ]Ž]“]«]#»]ß]*î] ^ :^G^&[^"‚^¥^Å^Ø^ì^ __5_2N_,_®_Ê_+æ_`$`6`8M`K†`Ò`á`ñ`a$aBaXaua|aŒaa ¬a¸aÏaàañabb0bNbVb›obP c\cpcxcc”c«c¿c#Ùcýcd(;d#ddˆd¢d»d(Úd"e$&e.Ke(ze£eÂeØe%òef!6f+Xf%„fªfÅfÙf#ófg5g)Ug#g£g -½gÈgÚgúgh/ h Ph qh&’h ¹h"Úhýhi0i!Oi$qi–i´iÒi#äij(jŠ5ÌŠ9‹X<‹O•‹‘å‹BwŒ%ºŒíàŒ'Îùö,ðŽ·“Õ;i‘E¥’ë’!”°#”¬Ô”•†•˜•-ž•.Ì•÷û•-ó–-!—+O—,{—-¨—NÖ—%˜cØ2'™3Z™bŽ™VñšXH›;¡›õݛӜ ëäùž¯ÞŸÇŽ ÃV¡Á¢MÜ¢¬*¤Vפ.¥6¦<>§{§˜§* §˧Ô§$ç§$ ¨ 1¨>¨F¨U¨ ^¨h¨€¨™¨²¨Á¨Ö¨í¨ -ý¨©© +©9©M© S©M_©­ª½ª -Ùªäªøª « «1«&L«s«†«—«¬«»«OÚ«*¬ B¬O¬^¬x¬ -‡¬’¬˜¬¡¬;½¬Dù¬E>­³„­l8®X¥¯ -þ¯ °°%°:° -B°M°(i° -’° ° §°#´°(Ø°+±9-±(g±±!¬±"α)ñ±)²E²Z²n²t²{²(Œ²µ²¾²TDz+³ H³ -R³ -]³h³‚³›³´³̳Û³)ï³)´ C´ Q´8_´Y˜´Gò´j:µ¦¥µ¾L¶5 ·AA·Wƒ·}Û·5Y¸`¹yð¹njº[Ùºa5»‰—»~!¼n ¼½MŸ½Ní½L<¾}‰¾|¿`„¿tå¿›ZÀöÀ:üÀ7Á?ÁHÁ\ÁzÁ“Á«ÁP­Á†þÁ…‡ŠÂÂ4•Â+ÊÂÕöÂCÌÃÄkÄtüÄqÅ‘Å šÅ¦ÅµÅ"ÅÅ#èÅ ÆÆÆ $Æ0Æ3EÆyƈơƱƷÆÇÆ -ÐÆÛÆóÆÇ$Ç=Ç QÇ_ÇdÇ -tÇÇ -ŽÇ™Ç ¢Ç®Ç±ÇÀÇÑÇ'îÇ,È CÈ MÈZÈ cÈmÈŒÈ”È -«È¶ÈÌÈÏÈáÈéÈøÈÉÉ$É4É=ÉMÉUÉtÉ}ÉÉ–É ³ÉÔÉïÉÊ - ÊÊ1ÊEÊXÊxÊŒÊÊ·ÊÌÊßÊñÊËË9ËNËeË {Ë…Ë–Ë ¬Ë¶Ë ÕË âËïËøËÿË Ì2ÌBÌUÌsÌ„Ì ¡Ì¯ÌÃÌ*ÚÌÍ - ÍÍ)Í>Í FÍRÍmÍ|͙ͅͰͷÍÈÍÙÍðÍÎ ÎÎ Î -"Î-Î"?Î bÎoÎvÎ~Î …ΓΘΡΨΰθÎÁÎÊÎ ÚÎæÎþÎ -Ï!Ï5Ï;ÏBÏIÏaÏ-rÏ Ï©ÏÃÏÔÏãÏôÏ -üÏ"Ð*Ð;ÐKÐ\Ð _ÐlÐ rÐ|ВЬднÐÑÐ,ïÐÑ.Ñ@ÑFÑYÑ^ÑdÑ lÑ -yÑ „Ñ’Ñ £Ñ -±Ñ ¼Ñ ÊÑ -×Ñ âÑ ðÑüÑ ÒÒ#Ò5Ò=ÒBÒ QÒ [ÒhÒqÒƒÒ•ÒžÒ¦Ò ¯ÒÐÒïÒ÷Ò ÿÒ ÓÓ)Ó8ÓSÓeÓ {Ó‡Ó Ó¦Ó©Ó®Ó´ÓÄÓÓÓãÓõÓ -ÔÔ 7ÔDÔTÔgÔ{ÔÔ6ŸÔÖÔ ßÔëÔÿÔ1Õ$GÕRlÕD¿ÕGÖLÖ eÖ/rÖ¢Ö ¨ÖµÖ»ÖÕÖ:åÖ" ×.C×r×z××4¢× ×× -ã×î×ØØØ%Ø@Ø [ØhØpØvØآغØÓØ åØ ñØýØ Ù ÙÙ*Ù1Ù!8Ù ZÙfÙÙ -ˆÙ -“Ù žÙªÙ³Ù¸ÙÔÙêÙ üÙÚÚ&Ú *Ú6Ú9ÚHÚLÚ -RÚ]ÚdÚkÚBoÚ'²ÚÚÚëÚÛ -ÛÛ Û(Û,GÛ-tÛ,¢Û.ÏÛ þÛ ÜÜ!Ü %Ü1Ü6Ü=ÜDÜ -LÜ -WÜbÜgÜmÜsÜ‚ÜC•ÜÙÜsÍÉóhò ù;}q‘wŒn ¸Õ{ƒböàá\)  ò·5Ûý¾Ò«×Ǿ5²ü‚÷AÖª›SM÷’Hþ‚«ì$á I®N; =` ¡®½žñ ?f»{Y@4°ö¡—Xú< ·?BM|J­3ð}9„(]KƒÖr*±$lï»óþÏàëâ¼i ¼®§=5̲†c¯Ã³+»Œ›jZUk“O*ýv).¼¶j#œú½æˆ¾ Éh5. ¨cçòƒé¦×¶dfzèécÍѬWQb˜®ºoèŸäÕGñ ¦ù Y°Ö4Ÿ qÚiÚ§—ïä&Zò–¼²èç6F\!ã7Ràäuªq"fZ‹6ô+ô!a¿–@rŒî× â Ï31u)%70Neå |Æ`eÁUâßÔ?"ñ}øÆ ÿ0.* Ýç&wÆž À€/KÂDG¶‹«w€@J­Ø[,ßõŽNg~cgEd D µoDÿt½ÚS–:ÿùt±«>ÁFÍ…ãæ! EÀ¢œ¨Óƒ2˧ϛ®sû¹á¹éQˆÌsï5H ?<j:s·WÞ@ß…Ýø4„ìp1— -KÂMÎ*¯Våår†f£b×3– ¦·î…ðouØ ê½B Š‘žˆ¬|mÙy®ž7 ddœ§õÒ#î.¬< ABIgÄ"Bnuí}¦ ÏËet Ï öøöèyN­!L aŒ´­ý†x†™ ” &c9 T(+% ˜”Á—þ&D3, èëk^žï¶!ÉËRV_¸TØŸ](Ѿ¸d ð¯#£ÍT¡ÞUÔ,¼ Þ؇ë@“ ‹“ ¸/á[„‰ Óbm㣾1ñ˜ ٱ̮VÍÓ/Ÿ±ŠGI ¿Ôüª²:—vhT¿¡<‰Êó0 vÌ/= Ž: Á\gƒ$?m~Å!›ÃRaŸnñš‰Øµ{‘™Ž å Î1XFHIQ°Î]1‰ýa 'ˆÆ5âAæÂ÷GÙÝ„—ņ_-- ƒ ´©Ä×¾Oé9óÊ'  §gfíÄò8 Ð)X^íkzL -‘(& (‡à• ™æ‹§ô§ŸÇ(¤ 8O:´˜¼Bãª9úcl$Bð,›(5 zgÐ} ñ+6Ú Êå¶nÑjÜ4=_ûCÏT’·ˆR> ÿ}Ü ·±¬Ô‹¢níúwÌŒ 亩ª‚g: ¦ˆÍÑA6š´~7É©ÙCMíJá5¹>zy0w¢ pÄó’Sg²¥À9-PœË*ÔÖìÕ+ÐÎWx%'š)èܶóMôŽbœ×='¯×@*Ž«ã‡OŽßÃ|©’? ŠQÕD2³Ü¶XGã.߸á…Ö‰s°²ì É»“FŽ@Edë" ôr^¡Ùzîz2ï3îH%3e™¾DM ¤D¯Ù<€ GÞ÷qu6}š:·"( ¹0L(á0ÒH~t•>†ÆYüºð/já!,qÆ‘6ôÓzýPø èfþ'„r:,ÁÐû%ÐOÂêÓ+¥ Uzù8…‡?Ï“‚™ÃHÚ݈OfÁ<óxšÈÐCßo’*# -J•pè–0—ýRÒøÄu;_ày›aÿç•tšhw¨¨­.ðLCÃiR¸ÆÌÚC`µ¢»†^!»cƒiÊ0õ0ÍZxÅ2¸Sì>9¼´Ç¹o& ]ë-l/Cbö¤]µã{K³{8.*E!™H”LÓvúШ«úâÊ¢ò\w6 ç'é@4ÅXÅ`=ÖÛ¥¸3Ãh”HùŠÈL« p4q‰>Sƒ 6M SŸRÀç”`2:.VKÛßËœ9"Rÿ÷÷34F¯m+ ‚$ò71 - l=2 vPô€Ü­bÛ;ȵtHkË’ÿ÷Yäšì‰éN¤jkr\ "ª[Qh7^#í|gbÒÇç¥E¢`€û>ež¿vQtæ^åKQ_~‘þõGQ -?kßE–£YY›/åIñ Û& péĈ¬ )8G÷$ ½˜hE¦”¨‡´Üy®VìƒðþIÛ^RŠÂÇŽ-£³Åk]æŒ‘É´Ì -Š±ÒN [µ ¥™K„”ëÔ*vXïùŸeAhWÙ]_lêâU1W7B‡¦<; ;€±†PàØÉvÓTk -ª-8âCØ3¿“µ£mBa ÿ@ ÊP'³as,™ý9ÎÀ©ä<Ks>ié#Z +%‚™¨ Ëd/ ÀC3 nB²‹{@~NÑŽ©8•–W+Lq&Mx€†Âë/À¡Wý‹<ê©}֌! „ÔUK ØÅÊ'wuŠü? ’Á³º›1¤$ˆ×FùÊÞNø¢—¨Ä1 ½ùpIJm2’A…õJ- ûêÄá¢ÛG )#/h¯…Î42ûÒñaFm«Î&įž’;ÃÛpH]{íÞՉꪡ6 Óìþ<q ÈP(¥Úqå¥Ö%X{)ÜP+ÕVº“¯Œ xÁIöC ­¹ ÊÝ;܂ݾ‡½ºXI°^\ÎeìÃsl£ÍÛ¥Þêzõ¬ÔO”4Z…‹å_ÜÇrä>ÕÐTi¨ =Aú‘,ân•OŒ)xà¹F_¸y²BºÑ,`U˜rÕûüLAUjÉDoú œ©€fË -\8y8˜|oZ%"ÔYÆSWßæÂdA±˜\5øM°àÃF ›Wµ~u¹«¶ÈÈó í p[#)¤Îªö¾l|§GçïžKã¿Ï²°½Á`ö“æÚNt»_E ãÇȳVïÈö S¤äžê¼4 ¶ïA Ò¦2À³ imœoŸ¹|î|°J}±¿sËLM³Tôü ðŠ`Ö;…´Ñc#¿r#LCõ'µ[­-€J~ÍþOñ QJ œÞy°p–Uyd£:Ic‰£V‘O nê&ÕZ0ÐÀV©8 뤔® Ñ¥-Y¢l´71ðjiF‚òxJÝù‡Zb¬õëmE$;÷î[ŠxɺÞ7èŽÌ¤ü%îD5ÏÙneS~9a–Ó  N È{['‡ýÆ2.•·7,9 —X¿=^·$š6¡âk>ØPü l¦çwYÝ"•-ûÒ]íšfût ¬TÙ»»ÇEú„% -ià‚o[v é×üøeóä¼õÝò* -æ\P.jøÅ?§ÌÑôu‹$•=D¡Ç“ ºþ¬˜Ú"ÿ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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. -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:Hinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratioKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -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:MagnifyMain KeyboardMain Mouse WheelMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -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_atternsPaintPaint 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) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.Really clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%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)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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 proceduresTransformations do not work on layers that contain layer masks.Transforming...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.YY:YellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.0 -POT-Creation-Date: 2004-11-17 11:04+0100 -PO-Revision-Date: 2005-01-02 19:30+0100 -Last-Translator: Xavier Beà -Language-Team: Catalan -MIME-Version: 1.0 -Content-Type: text/plain; charset=utf-8 -Content-Transfer-Encoding: 8bit - -Opció no vàlida "%s" - -Forma d'us: %s [opció...] [fitxer...] - - --batch-interpreter - El procediment amb el que executar ordres per lots. - --debug-handlers Habilita la depuració dels gestors de senyals no fatals. - --display Utilitza la visualització X indicada. - --dump-gimprc Surt un fitxer gimprc amb els paràmetres per defecte. - --no-cpu-accel No utilitzis acceleradors espacials per la unitat central. - --no-shm No utilitzis la memòria compartida entre el GIMP i els seus connectors. - --pdb-compat-mode - Mode de compatibilitat amb la base de dades de procediments. - --session Utilitza un fitxer sesionrc alternatiu. - ---stack-trace-mode - Mode de depuració per a senyals fatals. - --system-gimprc Utilitza un fitxer gimprc del sistema alternatiu. - --verbose Mostra els missatges inicials. - -b, --batch Execució en processament per lots. - -c, --console-messages Mostra els avisos a la consola en comptes d'usar un quadre de diàleg - -d, --no-data No carreguis pinzells, degradats, paletes ni patrons. - -f, --no-fonts No carreguis cap tipus de lletra. - -g, --gimprc Utilitza un fitxer gimprc alternatiu. - -h, --help Escriu aquesta ajuda. - -i, --no-interface Execució sense una interfície d'usuari. - -s, --no-splash No mostris la finestra inicial. - -v, --version Escriu la informació de la versió. -%d capes%d ppp%d ppp, %s%d capes%d minuts%d segons%d x %d ppp%d x %d ppp, %s%d x %d píxels%g x %g %s%p%s canal copiaCanal %s per a la seleccióMissatge %scòpia de %smàscara %s%s%sClic: estendre la selecció%s%sArrossega: mou i comprimeix(%0.3f, %0.3f, %0.3f)(Cap)(Aquesta finestra de consola es tancarà en deu segons) -(Memòria intermèdia sense nom)(Plantilla sense nom)(Varies)(neteja)(Cadena de text UTF-8 invàlida)(modificat)(cap)Una capaCapa 115 graus %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Transforma 2D...4:1 (400%)8:1 (800%)<%s><>Perquè el GIMP rendeixi de manera òptima, potser s'han d'ajustar alguns paràmetres.El GIMP - Programa de retoc d'imatges GNU -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis i l'equip de desenvolupament del GIMP.El fitxer de consells del GIMP no s'ha pogut analitzar correctament.Sembla que s'ha perdut el fitxer de consells del GIMPJa existeix un fitxer anomenat '%s'._Afegieix a la seleccióA_ngleQuant al GIMPAccióActiva la imatge _iluminadaFiltres actiusSupermostratge adaptableAfegeixAfegeix canal _alfaAfegeix canal alfaAfegeix àncoraAfegeix un canalAfegeix color al mapa de colorAfegeix guies:Afegeix guiesAfegeix guia horitzontalAfegeix màscara de _capa...Afegeix capaAfegeix una màscara de capaAfegeix CamíAfegeix traçatAfegeix capa de textAfegeix guia verticalAfegeix una màscara a la capaAfegeix color del fonsAfegeix color del primer plaAfegeix una màscara de capaAfegeix text a la imatgeAfegeix el color actual al histograma de colorAfegeix el filtre seleccionat a la llista de filtres actius.Afegeix a la paleta %sAfegeix a la selecció actualS'està afegint el tema '%s' (%s) -AddicióControladors d'entrada addicionalsAjusta la brillantor i el contrastAjusta el balanç de colorAjusta les corbes de colorAjusta els nivells de colorAjusta la brillantor i el contrastAjusta el balanç de colorAjusta les corbes de colorAjusta els nivells de color Ajusta to, lluminositat i saturacióAjusta el to i la saturacióAjust automàtic dels nivellsAjustamentOpcions avançadesAfecta:Àrea afectada %sVaporitzadorVaporitzador amb pressió variableAl_fa a seleccióAlineatAlineacióTots els canalsTots els fitxersTots els fitxers (*.*)Totes les imatges i les dades per desfer que no caben en la memòria mosàic s'escriuen en un fitxer d'intercanvi. Caldria posar-lo en un sistema de fitxers local amb prou espai lliure (alguns centenars de MB). En sistemes UNIX, potser voldreu fer servir el directori temporal del sistema ("/tmp" o "/var/tmp").Deixa regions completament transparents per a omplirPermet seleccionar regions completament transparentsPermet allargar %sAlfaAlfa cap a la seleccióAlfa:Una imatge de la mida escollida utilitzarà més memòria que la configurada com "Mida d'imatge màxima" en el diàleg preferències (actualment %s).An_imacióAncora selecció flotantAncora la capa flotantAncora selecció flotantAngle:No es pot esborrar %sSuavitzatAparençaAplica una màscara de capaAplica _màscara de capaAplica llindarAplica una màscara de capaEsteu segur que voleu suprimir '%s' de la llista i del disc?Esteu segur que voleu suprimir la plantilla '%s' de la llista i del disc?Com en _preferènciesDemana confirmació abans de tancar una imatge sense desar.Relació d'aspecte:Relació d'aspecte:Adjunta paràsitAdjunta paràsit a la imatgeAdjunta paràsit al elementAdjunta paràsitAutor:AutomàticSegueix la _imatge activaAutoencongimentEncongeix automàticament la seleccióRedimensiona la finestraCarrega automàticaDetectat automàticamentFiltres disponiblesTipus disponibles:Omple amb el color de fonsB_rillantor-Contrast...Memòria _intermèdia.FonsColor de fonsColor de fons definit:Fons: %d, %d, %dEndarrere (correctiu)Area base plena en totes les capes visiblesSelecció base en totes les capes visiblesDarrereBisellBilinealBlanc i negreNegre:Combi_na els colors dels extrems_MesclaMesclaCombina l'opac_itat dels extremsMescla: Mescla: No és vàlida per a les imatges indexades.S'està mesclant...BlauBlau:DifuminaDesenfoca o afilaVo_ra...Bordeja el canalBordeja la seleccióVoreja selecció perBrillantor-ContrastBrillantor-Contrast no funciona en capes indexades.PinzellEditor del pinzellCarpetes de pinzellsInterfície del pinzellPinzell:PinzellsMenú PinzellsCubellMemòria intermèdia.Menú Memòria intermèdia.CremaPuntaPer extensióSi deixeu la imatge al estat desat al disc, perdreu tots els canvis incloent-hi tota la informació per desfer.CMYKC_alibraCapturador de c_olorC_olumnes:C_ombinaCalibra la resolució del monitorNo es pot desfer %sMida del _llenç...Cancel·laCancel·la guiaNo es pot afegir una màscara de capa de dimensions diferents de la capa especificadaNo es pot afegir una màscara de capa a una capa sense un canal alfa.No es pot afegir una màscara de capa a una capa que no és part d'una imatge.No es pot ancorar aquesta capa perquè no és una selecció flotant.No es pot convertir a una paleta amb més de 256 colors.No es pot crear una capa nova a partir de la selecció flotant perquè pertany a una màscara de la capa o del canal.No es pot crear la carpeta '%s': %sNo es pot crear la previsualitzacióNo s'ha pogut escapçar perquè l'àrea seleccionada està buida.No es pot expandir ${%s}No s'ha pogut flotar la selecció perquè l'àrea seleccionada està buida.No es pot apujar la capa sense informació de transparènciaNo es pot desar. No hi ha res seleccionat.No es pot traçar canal buit.No es pot traçar un camí buit.Mida del llençMode d'em_plenat del llenç:Centre X:CentratCanvia el color de fonsCanvia la entrada del mapa de colorCanvia el color de primer plaCanvia la resolució d'imatgeCanvia unitats d'imatgeCanvia la mida d'impressióCanvia la capa o camí actualCanvia el color de fons de la graellaCanvia el color de primer pla de la graellaCanvia paleta indexadaCanvia perspectiva de la capa o seleccióNo s'han pogut canviar les dreceres.CanalAtributs del canalNom del canal:El canal no es pot abaixar més.El canal no es pot apujar més amunt.Color del canalEl canal ja és a sota de tot.El canal ja és a dalt de tot.Canal per a sele_ccióCanal a seleccióCanal a seleccióCanal:CanalsMenú CanalsComprova la _mida:Tria estil de traçatCercleN_etejaNetejaAclareix el canalNeteja l'historial de desferNeteja tot el textNeteja errorsNeteja historial de desfer...Feu un clic a "Continua" per acceptar els paràmetres anteriors.Feu clic a "Continua" per crear la vostra carpeta personal del GIMP.Feu clic a "Continua" per entrar a la instal·lació de l'usuari del GIMP.Cliqueu a "Continua" per entrar a la instal·lació d'usuari.Clica per connectar aquesta ancora amb l'extrem seleccionat.Clica per a crear una nova àncora. (proveu Maj)Clica per a crear un nou component del camí.Clica per crear un nou camí.Cliqueu per crear la previsualitzacióClica per suprimir aquesta àncora.Clica per inserir una ancora en el camí. (proveu Maj)Clica per crear aquest punt amgular.Clica per obrir el camíClica al camí per editar-loCliqueu a la previsualització actualitzada -%s Cliqueu per a forçar l'actualització, encara que la previsualització estigui actualitzada.Clica i arrossega per canviar l'ombra de la corba. (Maj: simétriques)Clica i arrossega per moure el contorn de l'ancoratge.Clica i arrossega per moure el contorn dels ancoratges.Clica i arrossega per moure el contorn del component (proveu Maj)Clica i arrossega per moure el contorn de la nansa (proveu Maj)Clica i arrossega per moure el contorn del camí.Clic: seleccionaClic: selecciona Arrossega: mouResultat de tallarPorta-retallsTallat a la mida de la capa més baixaTallat a mida de la imatgeClonaTanca %sTanca aquesta etiquetaCo_pia el camíColo_rsColorBalanç de colorFiltres de visualització de colorsCapturador de colorInformació del capturador de color_Balanç de color...Tramat _de colorEl balanç de color només funciona en capes de color RGB.Esborrador de colorÃndex del color:Color:_Mapa de colorsE_spai de colorAc_oloreix...Tipus d'acolorit pel segment_Tipus d'acolorit per la seleccióAcoloreixL'acoloriment només funciona en capes de color RGB.Acoloreix la imatgeAcoloreix la imatgeMapa de colorsEditor del mapa de colorsMenú Mapa de colorsColumnes:Come_ntariComentariCon_trast:Con_volveConfigura els filtres de visualització de colorsConfigura dispositius d'entrada e_stesos...Configura g_raella...Configura graellaConfigura la graella de la imatgeConfigureu les dreceres de teclatConfigura les dreceres de _teclat...Configura el filtre seleccionatConfigura el filtre seleccionat: %sConfirmeu la mida de la imatgeConfirma l'escalatConfirma l'edició del textConfirma el tancament de les imatges _sense desarDreceres conflictivesCònic (asimètric)Cònic (simètric)Connecta traçatsConstantTancamentContextEls cursors relatius al context són interessants. Es fan servir per defecte. De totes maneres, suposen una sobrecàrrega que potser no desitgeu.ContinuaContribucionsConverteixConverteix voraConverteix imatge a escala de grisosConverteix imatge a indexatConverteix imatge a colors indexatsConverteix imatge a RGBConverteix la imatgeS'està convertint a indexat (etapa )...S'està convertint a indexat (etapa 3)...S'està convertint a indexat...ConvolveTipus de convolve %sCopia allò designatS'està copiant el fitxer %s des de '%s'...Copyright:Hi ha un segment corrupte %d al fitxer de degradat '%s'.No s'ha pogut crear '%s': %sNo s'ha pogut crear el fitxer temporal per '%s': %sNo s'ha pogut esborrar '%s': %sNo s'ha pogut trobar el navegador d'ajuda del GIMP.No s'ha pogut obrir '%s' per lectura: %sNo s'ha pogut obrir '%s' en escriure: %sNo s'ha pogut obrir la miniatura '%s': %sNo s'han pogut llegir %d bytes des de '%s': %sNo s'ha pogut cercar en el fitxer XCF: %sNo s'ha pogut iniciar el connector del navegador d'ajuda del GIMP.Recompte:Escap_ça la capaCrea nou _desplegableCrea nova plantillaCrea una nova imatgeCrea una capa novaCrea nova plantillaCrea una nova visualització per aquesta imatgeCrea una nova imatge des de la plantilla seleccionadaCrea una nova plantillaCrea i edita imatges o fotografiesCrea i edita caminsCrea camí des de textCrea selecció des de camíS'està carregant una previsualització ...S'està creant la carpeta '%s'...EscapçaEscapça i canvia la midaInformació d'escapçat i canvi de midaEscapça la imatgeEscapça la capaEscapça la imatgeEscapça o canvia la mida d'una imatgeEscapça: Només creuRe_tallaRe_talla l'objecte anomenat...Cúbic (millor)E_stat actualAlçada actual:Només la capa actualEstat actualAmplada actualCursor_Mode del cursor:Com_posició del cursor:Tipus de corbaCorbesLes corbes de les capes indexades no es poden ajustar.PersonalitzaColor personalitzatDegradat personalitzatColor d'emplenat person_alitzatRetallaRetalla i anomenaCiàCian:D_uplica pinzellD_uplica el canalD_uplica el degradatD_uplica la capaD_uplica paletaD_uplica el camíD_uplica patróD_uplica plantilla...Color dels quadres foscosNomés enfosqueixGuionet-punt-punt...Guionet-punt...Traça patró:Traç preconfigurat:TraçatData:DepuracióAparença predeterminada en mode a pantalla completaAparença predeterminada en mode normalGraella per defecteGraella d'imatge per defecte:_Interpolació per defecte:Mida de previsualització per defecte de _capa i canal:Llindar per defec_te:Suprimeix ancoraSuprimeix àncoresSuprimeix màs_cara de capaSuprimeix la màscara de capaSuprimeix l'objecteSuprimeix segmentSuprimeix la plantillaSuprimeix pinzellSuprimeix el canalSuprimeix el colorSuprimeix el degradatSuprimeix la capaSuprimeix la màscara de capaSuprimeix paletaSuprimeix el camíSuprimeix patró...Suprimeix opcions desades...Suprimeix la memòria intermèdia seleccionadaSuprimeix la plantilla seleccionadaSuprimeix aquesta imatgeSuprimeix els vectorsNo s'ha pogut suprimir "%s": %sPunts densosDesaturaLa desaturació només funciona en capes de color RGB.DescripcióDissenyaEstat del dispositiuDispositiusDiàlegsMenú DiàlegsDiamantDiferènciaColor directeInhabilita màscara de capaInhabilita màscara ràpidaDescarta informació del textVisualitzacióVisualitza NavegacióVisualitza els _filtres...Procediments de visualitzacióTipus de visualització:S'esta visualitzant [%0.6f, %0.6f]FondreDistància:Distància: %0.6fS'està retallantDivideixFes una instal·lació d'usuari _frescaVoleu tornar a iniciar tots els filtres amb els valors per defecte?Voleu tornar a iniciar amb totes les opcions d'eina per defecte?Voleu reemplaçar-lo amb la imatge que esteu desant?No desisDesplegableLlista de l'histor_ialLlista de l'historialDocumentsMenú DocumentsEs_vaeix/cremaEsvaeixOpcions de l'esvaïment o crematEsvaeix/cremaDoble traçatArrossega àncoraArrossega àncoresArrossega corbaArrossega nansaArrossega camíArrossega: mouDibuixa en tintaDibuixableMode dibuixableProcediments dibuixablesPerd papa novaPerd camí nouDegut a l'absència d'alguns tipus de lletra, la funcionalitat del text no està disponible.Volca incidències per aquest controladorDuplica pinzellDuplica el canalDuplica el degradatDuplica la capaDuplica paletaDuplica el camíDuplica patróDuplica la plantilla seleccionadaS'ha produït un error: No es pot desferE_xporta el camí...Molt pe_titaComportament de les voresDe_tecció de voresEditaEdita els atributs del canalEdita el color del canalEdita la entrada de la paleta de colorEdita la entrada del mapa de colorEdició dels atributs de la capaEdita màscara de capaEdita modeEdita color de la paletaEdita els atributs del camíEdita els atributs de la màscara ràpidaEdita color de la màscara ràpidaEdita plantillaEdita pinzellEdita els atributs del canalEdita colorEdita la entrada del mapa de color #%dEdita degradatEdita atributs de la capaEdita paleta...Edita atributs del camíEdita patróProcediments d'edicióEdita la plantilla seleccionadaSelecció d'el·lipseCanal buitCapa buidaCamí buitCapa de text buidaNom de variable buida en fitxer d'entorn %s_MilloraHabilita màscara ràpidaHabilita el tramatge de la _transparènciaActiva aquest controladorHabiliteu-lo pèr visualitzar un consell del GIMP a l'inici.Habiliteu-lo per visualitzar rètols indicadors de funció.EnormeIntrodueix un nom per a la paleta fusionadaAnomena les opcions desadesEntra un nom per a aquesta memòria intermèdiaAnomena aquesta plantillaAnomena les opcions desadesIntroduïu una ubicació (URI):EntornCarpetes d'entornEqualitzaEqualize no funciona en capes indexades.Esborra fins al fons o la transparènciaGoma d'esborrarCo_nsola d'errorsConsola d'errorsMenú Consola d'errorsS'ha produït un error en desar el fitxer XCF: %sS'ha produït un error mentre s'analitzava '%s' a la línia %d: %sS'ha produít un error en llegir '%s': %sS'ha produít un error en llegir el fitxer de pinzell '%s': %sS'ha produït un error en llegir '%s': %sS'ha produït un error en escriure XCF: %sS'ha produït un error en escriure el fitxer '%s': -%sS'ha produït un error en escriure '%s': %sS'ha produït un error en escriure el fitxer temporal per '%s': %s -No s'ha creat cap fitxerS'ha produït un error en escriure el fitxer temporal per '%s': %s -El fitxer original no ha estat tocat.ErrorsEsdevenimentMolt g_ranAmpliat tant com calguiExporta camí a SVGExporta tots els camins des d'aquesta imatgeExporta el camí actiuExposició:Dispositius d'entrada extesos:ExtensionsOmple amb el color del primer plaPrimer pla a fons (HSV en sentit horari)Primer pla a fons (HSV en sentit antihorari)De primer pla a fons (HSV)De primer pla a fons (RGB)De primer pla a transparentDe primer pla a transparentPrimer pla/FonsColor de primer pla/Color de fonsRelax de primer plaRigor de primer plaDe primer pla a capaA_justa el llenç a les capesEsvaeixNo s'han pogut importar degradats des de '%s': %sNo s'han pogut importar els camins des de "%s": %sFantasiaS'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El fitxer sembla truncat.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': El fitxer és corrupte.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': no és un fitxer de pinzell del GIMP.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': forma desconeguda de pinzell del GIMP.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': versió desconeguda de pinzell del GIMP.S'ha produït un error d'analisi fatal en el fitxer de pinzells '%s': Intensitat desconeguda %d.S'ha produït un error d'anàlisi fatal en el fitxer de pinzells '%s': versió desconeguda %d.S'ha produït un error d'anàlisi fatal en el fitxer de pinzell '%s': La profunditat de pinzell no es pot fer servir %d -Els pinzells del GIMP han de ser GRIS (escala de grisos) o RGBA (paleta de colors).S'ha produït un error fatal d'anàlisi: el fitxer de degradat '%s' és corrupte.S'ha produït un error d'anàlisi fatal: '%s' no és un fitxer de degradat del GIMP.S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': S'ha perdut l'encapçalament màgic.S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': S'ha perdut l'encapçalament màgic. -Cal convertir aquest fitxer des del DOS?S'ha produït un error fatal d'anàlisi en el fitxer de paleta '%s': Error de lectura en la linia %d.S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': No s'han pogut llegir %d bytes: %sS'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': Versió de format de patró %d desconeguda.S'ha produït un error fatal d'anàlisi en el fitxer de patró '%s': La profunditat de patró %d no és suportada. -Els patrons del GIMP han de ser GRIS o RGB._Ploma...Suavitza el canalSuavitza la seleccióSuavitza voresSuavitza selecció perFitxerFitxer Obre _diàlegOperacions amb fitxersTipus de fitxerEl fitxer ja existeixEl fitxer està truncatOmple el canalOmple la opacitat:Manera d'omplir %sOmple amb colors similarsOmple àrees transparentsOmple del tot la seleccióOmple amb el color de fonsOmple amb el color de _fonsOmple amb el color de primer plaOmple amb el p_atróOmple amb el patróOmple amb transparènciaOmple amb blancOmple amb el color de _primer plaOmple amb el color de _fonsOmple amb un degradat de colorOmple amb un color o un patróOmplertFilt_resLa capa fusionada resultant hauria de ser:Cerca les regions contígüesS'està cercant colors similarsAjusta imatge a la finestraAjusta imatge en finestraAjusta imatge a la finestraAjusta a la finestraRelació d'aspecte fixatMida fixadaAplana la imatgeVoltejaVolteja el canalVolteja la CapaVolteja CamíVolteja la capa de textManera de voltejar %sVolteja _horitzontalmentVolteja _verticalmentVolteja la imatgeVolteja la capa o la seleccióVolteja...S'està voltejant...Flota seleccióFlota seleccióCap flotantSelecció flotant -(%s)Selecció flotant a la capaSelecció flotant a capaSeleccions flotantsTramatge de color Floyd-Steinberg (normal)Tramatge de color Floyd-Steinberg (barreja de color reduït)FocusCarpetaCarpetesCarpetes de tipus de lletraInterfície del tipus de lletraTipus de lletra:Tipus de lletraMenú Tipus de lletraPer instal·lar el GIMP correctament, cal crear una carpeta anomenada '%s'.Força Auto-HinterPrimer plaColors de primer pla i de fons. Els quadrats blancs i negres restableixen els colors. Les fletxes canvien els colors. Feu doble clic per obrir el diàleg de selecció de color.Color de primer plaColor de primer pla definit:Primer pla: %d, %d, %dEndavant (tradicional)Des de ca_míSelecció lliureSelecció lliureMaDes del _temaDes del sistema de _finestres (actualment, %d x %d ppp)D'esquerra a dretaDe dreta a esquerraDes de la seleccióDes de temaSelecció _difosaPantalla compl_etaSelecció difusaEl GIMPExtensió del GIMPMissatge del GIMPAjust del rendiment del GIMPConnector per al GIMPInici del GIMPEditor de text del GIMPConsell del dia del GIMPInstal·lació d'usuari del GIMPImatge XJT del GIMPEl GIMP no ha pogut inicialitzar la interfície gràfica d'usuari -Assegureu-vos que el vostre entorn de visualització està configurat adequadament.Navegador de l'ajuda del GIMPLa instal·lació del GIMP no és adequada per l'usuari actual. -La instal·lació de l'usuari ha estat omesa ja que s'ha usat el senyalador '--no-interface'. -Per realitzar una instal·lació d'usuari, executeu el GIMP sense el senyalador '--no-interface'.El GIMP utilitza una quantitat limitada de memòria per emmagatzemar les dades de la imatge, anomenada "Tile Cache". Us caldrà ajustar-ne la mida per encabir-la a la memòria. Tingueu en compte la quantitat de memòria que utilitzen altres processos en execució.El GIMP fa servir un fitxet gtkrc addicional per a que el pogueu configurar perquè es vegi diferent d'altres aplicacions GTK.Versió del GIMPEl GIMP advertirà a l'usuari si es vol crear una imatge que ocupi més memòria que la que s'especifica aquí.GammaGeneralGeneralment només afecta a visualitzacions de 8-bits, això especifica el nombre mínim de colors creats en memòria pel GIMP.Genera la paleta òptima:Obté la resolució del monitorGegantProcediments del GimprcEfecte_s de vidreDegradatEditor de degradatsMenú Editor de degradatsCarpetes de degradatsColor del límit esquerre del segment degradatColor del límit dret del segment degradatInterfície del degradatDegradat:DegradatsMenú DegradatsExtracció de graFusió de graGrisEscala de grisosVerdVerd:GraellaEspaiat de la línia de graellaEngrandeix el canalAugmenta la seleccióAugmenta selecció perGuiaForçat de guies i graellaProcediments de guiaHSVHSV (%0.3f, %0.3f, %0.3f)HSV (to en sentit _antihorari)HSV (to en sentit _horari)Notació HTML:Al_çada:_Navegador d'ajuda a utilitzar:Posició de la nansa: %0.6fVora duraLlum fortaDuresaDuresa:AlçadaAlçada:AjudaNavegador d'ajudaSistema d'ajudaNo es pot iniciar el navegador d'ajudaNo s'ha trobat el navegador d'ajudaProcediments d'ajudaHex:ResaltatsTipus de finestra aconsellat per _desplegables:Tipus de finestra aconsellat per _caixa d'eines:El hinting altera el contorn dels tipus de lletra per produïr un mapa de bits crispat a mides petites.Histogra_maHistogramaEscala del histogramaHistorialHoritzontalCompensació horitzontal de la primera línia de graella; ha de ser un número negatiu.Espaiat horitzontal de les línies de graella.Quants fitxers d'imatge recentment oberts es mantenen al menú Fitxer.ToTo-SaturacióTo-Saturació només funciona en capes de color RGB.To-_Saturació...To:ImmensI_cona i TextI_matgeI_mporta el camí...I_nterpolació:I_nterval:IconaIcona i descripcióIcona i textSi estan disponibles, s'utilitzaran els consells sobre la font, però podeu preferir rebre consells aleatorisActivat, l'eina moure canvia la capa o camí actiu quan una capa o camí està essent premuda. Aquest acostumava a ser el comportament per defecte en les versions més velles.Si no deseu la imatge, es perdran els canvis des del darrer %s.Si sortiu ara del GIMP, es perdran els canvis.Nom de variable ilegal en entorn de fitxer %s: %sImatgeImatge + graellaEditor de imatgeInformació de la imatgeMenú ImatgeMida de la imatgeFormat d'imatge de la barra d'estatPlantilles d'imatgeMiniatures de la imatgeFormat de títol d'imatge i de barra d'estatFormat de títol d'imatgeAparença de la finestra d'imatgeFinestres d'imatgesLa imatge no conté capa capa visibleFitxer d'imatgeMàscara d'imatgeLa resolució de la imatge està fora de limits. En el seu lloc es fa servir la resolució per defecte.Mida de la imatgeOrigen de la imatgeTipus d'imatgeImatgesMenú ImatgesOpcions d'importacióImporta una paletaImporta camíImporta camins des de SVGImporta una paleta novaImporta paletaImporta caminsCamí importat_TintaIn_verteixInverteix màscaraIncrementalSagnat:Indexació de la primera líniaÃndex:IndexatColor indexatConversió a colors indexatsLes capes de color indexat sempre s'escalen sense interpolació. El tipus d'interpolació escollida només afectarà a l'escalat de canals i màscares.Finestra d'informació_Relació d'aspecte de l'ampliació inicial:Inicialitza la màscara de la capa a:S'estan inicialitzant els connectorsS'està inicialitzant connector: '%s' -TintaPixbuf en líniaControladors d'entradaDispositius d'entrada:Nivells d'entradaInserta àncoraInsta·leu un mapa de colors personal; pot ser útil en visualitzacions de 8-bits (256 colors).La instal·lació ha fallat. Poseu-vos en contacte amb l'administrador del sistema.La instal·lació s'ha completat correctament. Feu clic a "Continua"Actualització immediataTisores _intel·ligentsIntensitat: %0.3f Opacitat: %0.3fInterfícieProcediment intern del GIMPProcediments internsInterpolació:CreuaCreua amb la seleccióInterseccions (creus)Interseccions (punts)Cadena de text UTF-8 invàlidaHi ha dades UTF-8 invàlides al fitxer '%s'.Hi ha una cadena de text UTF-8 invàlida en fitxer XCFHi ha una cadena de text UTF-8 invàlida en el fitxer de pinzell '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de degradat '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de paleta '%s'Hi ha una cadena de text UTF-8 invàlida en el fitxer de patró '%s'.Sequencia de caràcters invàlida en URIDrecera invàlidaL'amplada o l'alçada no són vàlides. Totes dues han de ser positives.InverteixInverteix el canalInverteix la seleccióLa inversió no funciona amb capes indexades.Inverteix la seleccióÉs aixó el que voleu fer?Sembla que ja heu utilitzat el GIMP 2.0 abans.Propietats de l'elementVisibilitat de l'elementJustifica:Conserva la transparènciaMantenir damuntConserva l'aspecte %sConserva la relació d'aspecteConserva la relació d'aspecte %sManté alçada %sConserva la transparènciaManté amplada %sTecla avallTecla avall (Alt)Tecla avall (Control + Alt)Tecla avall (Control)Tecla avall (Maj + Alt)Tecla avall (Maj + Control + Alt)Tecla avall (Maj + Control)Tecla avall ((Maj)Tecla esquerraTecla esquerra (Alt)Tecla esquerra (Control + Alt)Tecla esquerra (Control)Tecla esquerra (Maj + Alt)Tecla esquerra (Maj + Control + Alt)Tecla esquerra (Maj + Control)Tecla esquerra (Maj)Tecla dretaTecla dreta (Alt)Tecla dreta (Control + Alt)Tecla amunt (Control)Tecla dreta (Maj + Alt)Tecla dreta (Maj + Control + Alt)Tecla dreta (Maj + Control)Tecla dreta (Maj)Tecla amuntTecla amunt (Alt)Tecla amunt (Control + Alt)Tecla amunt (Control)Tecla amunt (Maj + Alt)Tecla amunt (Maj + Control + Alt)Tecla amunt (Maj + Control)Tecla amunt (Maj)Les dreceres del teclat es poden redefinir dinàmicament en el GIMP. El menurc conté un buidatge de la vostra configuració; es pot recuperar per a la sessió següent. Podeu editar aquest fitxer, si voleu, però és molt més fàcil definir les tecles des del GIMP. Si suprimiu aquest fitxer es restauraran les dreceres per defecte.TeclatDreceres de teclatLTRColor del límit _esquerre...HoritzontalGranGran (256x256)Previsualitzacions més gransDarrer error:CapaLa capa '%s' no te informació de transparència. La capa s'ha ficat damunt seu.Atributs de la capaMida del _marc de la capa...Tipus d'omplert de capaMàscara de capa a la seleccióSelecció de capaMida de la capa_Mode de capa_Nom de la capa:La capa no es pot abaixar més.No es pot apujar la capa més amunt.La capa ja és a sota de tot.La capa ja és a dalt de tot.Capa a mida de la imatgeCapa al capdavallCapa a mida de la _imatgeCapa al capda_muntCanal _alfa de la capaCapesMenú CapesOpcions per fusionar capesColor del límit esquerreJustificat a l'esquerraLongitut:Permet al GIMP que intenti restaurar la darrera sessió desada en cada inici.NivellsEls nivells de les capes indexades no es poden ajustar.Color dels quadres clarsNomés aclareixLíniaEspaiat -de línia:Amplada de línia:E_stil de línia:Estil de línia utilitzat per la graellaLinealElement enllaçatCarregaCarrega les corbesCarrega nivellsCarrega el color dret _des deCarrega el paràmetres de les corbes des del fitxerCarrega paràmetres de nivells des del fitxerCarrega text del fitxerS'està carregant una previsualització ...Ubicació:LogarítmicTraços llargsS'estan cercant els fitxers de dadesAbaixa el canalAbaixa el canal al capdavallAbaixa el canal al capda_vallAbaixa la capaAbaixa la capa al capdavallAbaixa el camíAbaixa el camí al capdavallAbaixa el camí fins al capda_vallAbaixa el canalAbaixa el canal al capdavallAbaixa la capaAbaixa la capa al capdavallAbaixa el camíAbaixa el camí al capdavall_AugmentaM_estreM_ou a pantalla...Ma_paMagentaMagenta:AugmentaTeclat principalRoda principal del ratolíFes _transparentGestiona el mòduls carregables_Velocitat del contorn de la selecció:Opacitat de la màscara:Arees de mascara _seleccionadesArees de màscara _no seleccionadesMatriu:Profunditat màxima:Mida de _fitxer màxima pel miniaturitzat:Mida màxima de nova imatge:Màxima diferència de colorMemòria màxima per desfer:Mitja:MesuraMesura distàncies i anglesMesura distàncies i anglesMesureu els regles i introduïu-ne la seva llargada:Mitjana:MitjàTraços mitjansFusiona al capda_vallFusiona al capdavallFusiona les capesFusiona paletaFusiona les capes visiblesFusiona els camins visiblesFusiona les capes _visibles...Fusiona les capes _visibles...Fusiona els camins _visiblesFusiona les capesFusiona paletesFusiona els vectorsProcediments de missatgeMissatge repetit %d vegades.Missatge repetit una sola vegada.Els missatges són redireccionats a stderr.Tons mitjansMigra els paràmetres d'usuariNombre mínim de nivells a desfer:Miscel·làniaMestreModeMode:Modifica color seleccionatModifica els nivells de color del rang seleccionatModifica tots els colorsModifica l'espaiat de la liniaCarpetes de mòdulsGestor del mòdulCamí del mòdulMòdulsPunters del ratolíRoda del ratolíMouMou àncoresMou el canalMou la selecció flotantMou guiaMou guia:Mou la CapaMou la màscara de capaMou camíMou la seleccióMou la capa de textEina mouMou l'elementMou les capes i les seleccionsMou la seleccióMou la capa actualMou el camí actualMou el filtre seleccionat avallMou el filtre seleccionades amuntMou a pantalla...Mou: MultiplicaNom_bre de colors:Na_vegacióFinestra de na_vegacióMida de previsualització del na_vegador:NomNom:NavegacióNou canalColor del nou canalOpcions del nou canalNou color per al _fonsNou color per al _primer plaNova imatgeNova capaNou camíOpcions per un nou camíNova plantillaNou pinzellNou canalNou canal amb els darrers valorsNou canal...Nou color per al fonsNou color per al primer plaNou degradatNova importacióNova capaNova capa amb els darrers valorsNova capa...Nova paletaNou camí amb els darrers valorsNou camí...Nou patróNous vectorsNo es disposa de cap pinzell per utilitzar amb aquesta eina.No hi ha cap filtre seleccionatNo s'ha trobat degradats lineals en '%s'Ja no es troba disponibleNo s'han trovat camins en '%s'No s'han trovat camins en memòria intermèdiaNo hi ha patrons disponibles per a aquesta operació.Cap seleccióNo hi ha res seleccionat per traçar.Sense miniaturesSense alinearCapCap (el més ràpid)NormalNormal (128x128)Punts normalsFinestra normalNo és un fitxer vàlidNo hi ha prou capes visibles per una fusió. Almenys n'hi ha d'haver dues.No hi ha prou camins visibles per una fusió. Almenys n'hi ha d'haver dos.Nombre de processadors a utilitzar:Nombre de línies de graellaNombre de capes:Al_tres...DesplaçamentDesplaça canalDesplaçament dibuixableDesplaça capaDesplaça màscara de capaDesplaça (x/_2),(y/2)Desplaçament:Al discEn màquines multiprocessador, si el GIMP ha estat compilat amb multiprocessador habilitat, això defineix quants processadors usarà el GIMP simultàniament.Només a la memòriaObr_e com a capa...OpacitatOpacitat:Obre...Obre imatgeObre imatge com a capaObre ubicacióObre fitxer de text (UTF-8)Obre _ubicació...Obre el _recentObre diàleg imatgeObre el diàleg de selecció de pinzell Obre el diàleg de selecció de tipus de lletraObre el diàleg de selecció de degradatObre el diàleg de selecció de paletaObre el diàleg de selecció de patróObre les entrades seleccionadesNo s'ha pogut obrir '%s': - -%sNo s'ha pogut obrir '%s': %sOpcions: -Origen X:Origen Y:Amplada original:Altres (%s) ...ForaNivells de sortidaSobreposaS'ha produït un error en cridar la base de dades de procediments al procedir '%s': -El tipus d'argument #%d està mal emparellat (s'esperava %s, i s'ha obtingut %s)S'ha produït un error en cridar la base de dades de procediments: -no s'ha trobat el procediment '%s'P_atronsPintaOpcions de pintura compartits entre einesProcediments d'eines de pinturaEina de pintar_Mode de pintarPinta amb pinzells de traç difúsPinta els pixels de les voresPinta utilitzant patrons o regions de la imatgePinzellPal_etesPaletaEditor de PaletaMenú Editor de paletaCarpeta de paletesInterfície de paleta_Nom de paleta:_Fitxer de paletaPaletesMenú PaletesProcediments paràsitsParàsitsS'està analitzant '%s' -EnganxaEnganxa la memòria _intermèdia aEnganxa memòria intermèdia com a _nou_Enganxa el camíEnganxa _aEnganxa com a _nouEnganxa la memòria intermèdia seleccionadaEnganxa la memòria intermèdia seleccionada com nova imatgeEnganxa la memòria intermèdia seleccionada dins la seleccióCapa enganxadaCamíAtributs del camíNom del camí:_Eina de camíEl camí no es pot abaixar més.El camí no es pot apujar més amunt.El camí ja és a sota de tot.El camí ja és a dalt de tot.Camí a sele_ccióCamí a lseleccióCamí a selecció -%s Afegeix -%s Sostreu -%s CreuaCamí a seleccióCaminsMenú CaminsPatróCarpetes de patronsInterfície de patróOmple amb el patróOrigen del patróPatronsMenú Patrons_LlapisLlapisPercentatge d'amplada de pinzellPercentil:Carpeta personal del GIMPPerspectivaInformació de la transformació de la perspectivaPerspectiva...Tria mode %sTria una capa o guiaTria un camíTria punt negreTria els colors de la imatgeTria punt grisNomés triaTria punt blancDimensions del píxel:Valors del píxelPíxelsPíxels:Espereu mentre es crea la vostra carpeta personal en el GIMP...Espereu...ConnectorEntorn de connectorCarpetes de connectorsEl connector no ha pogut obrir la imatgeEl connector no ha pogut desar la imatgeEl connector ha fallat: "%s" -(%s) - -El connector que ha fallat pot haver fet malbé l'estat intern del GIMP. Potser convé que deseu les imatges i torneu a iniciar el GIMP per treballar sobre segur.La resposta del connector és correcta però no es veu cap imatge.ConnectorsConnectorEls connectors i les extensions són programes externs executats pel GIMP que proporcionen una funcionalitat addicional. Aquests programes es cerquen en executar el programa i la informació sobre la seva funcionalitat i temps mod s'emmagatzema en aquest fitxer. Se suposa que aquest fitxer només es pot llegir des del GIMP i no s'ha d'editar.PoligonalVerticalPosició: %0.6fPosicionatPosterizePosterize (Redueix nombre de colors)Nive_lls de posterize:Posterize no funciona en capes indexadesPreferènciesConserva la _lluminositatSensibilitat de la pressióPressió:PrevisualitzaLa previsualització està caducada.Previsualització:PrevisualitzacionsMida d'impressióMida d'impressió:S'han produït problemes analitzant el text paràsit per capa '%s': -%s - -Algunes propietats del text poden estar malament. A no ser que es vulgui editar la capa del text, no cal preocupar-se.Base de dades proceduralBase de dades de procedimentsEn procésPseudo colorFinalitat:QualitatConsultaS'estan consultant nous connectorsS'està consultant connector:'%s' -Carrega ràpidMàscara ràpidaAtributs de la màscara ràpidaMenú Màscara ràpidaDesa ràpidMàscara ràpidaSurt del GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)Color RGBRGB-buitRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLTorna a mostrar "%s"Torna a iniciar opcions d'_einaR_einicia el canalR_einicia colorTorna _el rang al valor originalColor del límit _dret...RadialRadi:Apuja el canalApuja el canal al capdamuntApuja el canal al capda_muntApuja la capaApuja la capa al capdamuntApuja el CamíApuja la capa al capdamuntApuja el camí fins al capda_muntApuja el canalApuja el canal al capdamuntApuja la capaApuja la capa al capdamuntApuja el camíApuja el camí fins al capdamuntApuja la visualització d'aquesta imatgeApuja la finestra si ja és obertaVelocitatRàtio:Torna a ensenyar l'últimTorna a _centrar els punts mitjos a la seleccióTorna a _centrar el punt mig del segmentTorna a distribuir els cursors al segmentTorna a distribuir les nanses en la seleccióTorna a_ nomenar les opcions desadesRe_peteix "%s"Tornar-ho a _ferS'està llegint el fitxer de paleta '%s': S'ha perdut el component VERD en la línia %d.S'està llegint el fitxer de paleta '%s': El nombre de columnes a la línia %d és invàlid. S'utilitzaran els valors per defecteS'està llegint el fitxer de paleta '%s': S'ha perdut el component BLAU en la línia %d.S'està llegint el fitxer de paleta '%s': S'ha perdut el component VERMELL en la línia %d.S'està llegint el fitxer de paleta '%s': El valor RGB està fora de límits en la línia %d.Voleu netejar l'historial de desfer imatges realment?Reassignar la drecera farà que es suprimeixi de "%s".Regenera _previsualitzacióRegenera previsualitzacióSelecció de rectangleVermellVermell:Torna a ferRedueix la imatge a un nombre fix de colorsRedueix la imatge a dos colors fent servir un llindarRefresca pinzellsRefresca degradatsRefresca paletesRefresca patronsRegistratTorna a carregar tema actualCarrega de nou _totes les previsualitzacionsCarrega de nou _totes les previsualitzacionsRecorda l'eina actual, patró, color i pinzell entre sessions del GIMP.Allunya imatgeSuprimeix el canalSuprimeix les e_ntrades penjadesSuprimeix la selecció flotantEsborra guiaSuprimeix la capaSuprimeix el paràsit de la imatgeSuprimeix paràsit del elementEsborra CamíSuprimeix _entradaSuprimeix les entrades penjadesSuprimeix la selecció flotantSuprimeix paràsitSuprimeix la entrada seleccionadaSuprimeix els filtres seleccionats de la llista de filtres actius.No s'ha pogut suprimir la drecera.Canvia el nom del canalCanvia el nom de la capaCanvia el nom del camíTorna a nomenar les opcions d'eina desadesCanvia el nom de la capa de textReanomena l'elementRender traçatReordena el canalReordena la capaReordena el camíRepeteix l'últimRepeteix:Canvia la selecció actualReplicaReplica el segment degradatReplica la selecció degradadaReplica el segmentReplica la seleccióCanal de reposicióCapa de reposicióVectors de reposicióTorna a escanejar la llista de tipus de lletraTorna opcions d'eina a valor inicialTorna _a iniciar totes les opcions d'eina...Torna a iniciar tots els filtresTorna a iniciar tots els filtres...Torna a iniciar totes les opcions d'einaTorna el filtre seleccionat als valors predeterminatsTorna als valors per defecteReinicialitza ordre i visibilitat de l'einaCanvi de midaRedimensiona el canalCanvia la mida de la imatgeCanvia la mida de la capaRedimensiona camíCanvia la mida de la capa de textCanvia la mida de la imatgeCanvia la mida de l'elementRedimensiona la finestra en el _zoomRedimen_siona la finestra amb el canvi de mida de la imatgeS'està redimensionant...Canvi de resolucióResolució:Consum dels recursosConfiguració de recursosRestaura opcions des de...Restaura les dreceres de teclat desades en cada inici del GIMPRestringeix edició a poligonsTorna a estat anteriorTornar-ho a ferVoleu tornar '%s' to '%s'?Inverteix imatgeNo es pot tornar endarrera. No hi ha cap nom de fitxer associat a aquesta imatge.No s'ha pogut carregar el fitxer sense canvis '%s': - -%sColor del límit dretJustificat a la dretaGiraGira 90 graus (_antihorari)Gira 90 graus (_horari)Gira el canalGira la CapaGira camíGira la capa de textGira _180 grausGira la imatgeGira la capa o la seleccióS'està girant...Informació de la rotacióRodóRe_tallaMostra la gra_ella_Retalla..._Puntes_Intercanvia els colors_Desa el color dret aMostra mitjanaMostra fusionadaSat.:SaturacióDesaDesa '%s' com a POV-RayDesa les corbesDesa el registre d'errors al fitxerDesa la imatgeDesa _ara els paràmetres dels dispositiusDesa _ara les dreceres de teclatDesa nivellsDesa opcions d'einaDesa _ara les posicions de la finestraDesa tots els errors _al fitxer...Desa la _selecció al fitxer..._Anomena i desa...Desa una còp_ia...Desa una còpia de la imatgeDesa tots els errorsDesa com a _POV-Ray...Desa com a plan_tilla...Desa els canvis de les dreceres de teclat al GIMP.Desa els paràmetres de les corbes al fitxerDesa l'estat del dispositiuDesa degradat com a POV-RayDesa els paràmetres dels nivells al fitxerDesa opcions a...Desa la seleccióDesa selecció a canalVoleu desar els canvis a la imatge '%s' abans de tancar?Desa les posicions i les mides dels diàlegs principals quan el GIMP acabi.Desa al _canalOpcions desadesS'està desant '%s' -No s'ha pogut desar '%s': - -%sS'estan desant les imatges...Ona de dents de serraImatge SVG escalable (*.svg)EscalaEscala el canalEscala la imatgeEscala la capaEscala camiEscala la capa de textEscala la imatgeEscala l'elementRelació d'escala X:Relació d'escala Y:Relació d'escala:Escala la capa o la seleccióEscalatInformació de l'escalatEscalar la imatge a la mida escollida utilitzarà més memòria que la configurada com "Mida d'imatge màxima" en el diàleg preferències (actualment %s).Escalar la imatge a la mida escollida farà encongir algunes capes completament.S'està escalant...TisoresPantallaCarpetes Script-FuFitxers de seqüènciaDesplaçament avallDesplaçament avall (Alt)Desplaçament avall (Control + Alt)Desplaçament avall (Control)Desplaçament avall (Maj + Alt)Desplaçament avall (Maj + Contol + Alt)Desplaçament avall (Maj + Control)Desplaçament avall (Maj)Desplaçament a esquerraDesplaçament a esquerra (Alt)Desplaçament a esquerra (Control + Alt)Desplaçament a esquerra (Control)Desplaçament a esquerra (Maj + Alt)Desplaçament a esquerra (Maj + Control + Alt)Desplaçament a esquerra (Maj + Control)Desplaçament a esquerra (Maj)Desplaçament a dretaDesplaçament dreta (Alt)Desplaçament a dreta (Control + Alt)Desplaçament dreta (Control)Desplaçament a dreta (Maj + Alt)Desplaçament a dreta (Maj + Control + Alt)Desplaçament a dreta (Maj + Control)Desplaçament dreta ((Maj)Desplaçament amuntDesplaçament amunt (Alt)Desplaçament amunt (Control + Alt)Desplaçament amunt (Control)Desplaçament amunt (Maj + Alt)Desplaçament amunt (Maj + Control + Alt)Desplaçament amunt (Maj + Control)Desplaçament amunt (Maj)SeleccionaSelecciona-ho totSelecciona carpetes de pinzellsSelecciona per colorSelecciona colorSeleccioneu controlador d'acció d'incidènciesSelecciona les carpetes d'entornSelecciona _tipus de fitxer (%s)Selecciona carpetes de tipus de lletraSelecciona carpetes de degradatsSelecciona les carpetes de mòdulsNo seleccionis resSelecciona lcarpetes de paletesSelecciona carpetes de patronsSelecciona carpetes de connectorsSelecciona color primari a modificarSeleciona el rang a modificarSelecciona carpetes Script-FuSelecciona origenSeleccioneu la carpeta d'intercanviSeleccioneu la carpeta temporalSeleccioneu un temaSelecciona carpetes de temesSelecciona relació d'aspecte de l'ampliacióSelecciona capa _inferiorSelecciona _color personalitzat...Selecciona capa s_egüentSelecciona capa _anteriorSelecciona capa _superiorSelecciona-ho totSelecciona per colorSelecciona les regions contínuesSelecciona color personalitzat d'emplenat del llençSelecciona regions el·líptiquesSelecciona les regions a mà alçadaNo seleccionis resSeleccioneu el fitxer de paletaSelecciona regions rectangularsSelecciona les regions per colorSelecciona les ombres de la imatgeSelecciona el directori d'intercanviSelecciona el nombre de cops -que s'ha de replicar el segment seleccionat.Selecciona el nombre de cops -que s'ha de replicar la selecció.Selecciona el nombre de parts uniformes -en què vulgueu partir els segments de la selecció.Selecciona el nombre de parts uniformes -en què vulgueu partir el segment seleccionat.Selecciona àrees transparentsSelecciona navegador webSelecci_ó a camíSeleccióEditor de seleccióMenú Editor de seleccióMàscara de seleccióProcediments d'eines de seleccióMàscara de seleccióSelecció a camí (_Avançat)Selecció a camíSelecció: Selecció: afegeixSelecció: creuaSelecció: reemplaçaSelecció: sostreuSensibilitatDefineix el color d'emplenat del llençDefineix el color del canalDefineix la opacitat del canalDefiniu el mapa de colorsDefiniu un color personalitzat d'emplenat del llençDefineix mida del llenç de la imatgeDefiniu la resolució d'impressió d'imatgeDefineix només element enllaçatDefineix només element visibleDefineix mida del marc de la capaEstableix el nom des de textDefineix opacitatDefineix el color de fonsDefineix el color de primer plaDefineix element enllaçatDefineix el mode de la capaDefineix opacitat de la capaPreserva la transparènciaDefineix un màxim de memòria que es pot usar per imatge per mantenir operacions a la pila de desfer. Sense fer cas d'aquests paràmetres, al menys es poden desfer tants nivells de refer com s'hagin configurat.Definiu el navegador que usareu per visualitzar l'ajudaDefineix el color d'emplenat del llenç que s'usarà quan el mode d'emplenat es defineixi com a color personalitzat.Defineix el navegador web extern a utilitzar. Això pot ser un camí absolut o el nom d'un executable a cercar en el camí d'usuari. Si l'ordre conté '%s' es reemplaçarà amb la URL, a més la URL s'afegirà a l'ordre amb un espai de separació.Definiu el nivell d'interpolació a usar per l'escalat i altres transformacions.Defineix com es visualitza la transparència en les imatges.Defineix el nombre mínim de operacions que es poden tornar a fer. Es poden mantenir més nivells fins arribar al límit de la mida per tornar a fer.Definiu el mode de cursor que usarà el GIMP.Estableix la resolució horitzontal del monitor, en punts per polzada. Si s'estableix a 0, força a que el sevidor X demani informació de les dues resolucions, horitzontal i vertical.Estableix la resolució vertical del monitor, en punts per polzada. Si s'estableix a 0, força a que el sevidor X demani informació de les dues resolucions, horitzontal i vertical.Definiu el format de píxel dels cursors que utilitzarà el GIMP.Definiu la mida de previsualització utilitzada per les previsualitzacions de capes i canals en els nous diàlegs creats.Defineix la mida del tauler usat per visualitzar transparències.Definiu la mida de la previsualització de navegació disponible en el cantó inferior dret de la finestra de la imatge.Defineix la mida de les previsualitzacions en la història de desfer.Definiu la mida de les miniatures mostrades en el diàleg obre. Tingue en compte que el GIMP no pot desar miniatures si la capa de previsualització és desactivada.Defineix la ubicació del fitxer d'intercanvi. El GIMP fa servir un esquema d'ubicació de memòria basat en mosaic. El fitxer d'intercanvi s'usa per intercanviar amb el disc la memòria mosaic d'una manera ràpida i fàcil. Tingueu en compte que el fitxer d'intercanvi pot creixer molt si el GIMP es fa servir amb imatges grans. També, les coses poden anar molt lentes si el fitxer d'intercanvi es crea en un directori muntat sobre NFS. Per aquestes raons, es desitjable posar el vostre fitxer d'intercanvi a "tmp".Defineix el directori d'emmagatzematge temporal. Els fitxers apareixeran aqui durant la sessió del GIMP. La majoria de fitxers despareixen quan el GIMP acaba, però d'altres hi seguiran sent, així que és millor que aquest directori no sigui un dels compartits amb altres usuaris.Definiu el text que apareixarà en les barres d'estat de les finestres d'imatgeDefiniu el text que apareixarà en lels títols de les finestres d'imatges.Defineix si el GIMP crearà previsualitzacions de capes i canals. És útil tenir previsualitzacions en el diàleg de capes i canals però la velocitat pot minvar quan es treballi amb imatges grans.Tipus d'ombraOmbresOmbraOmbra:Adaptació a la forma (angular)Adaptació a la forma (foradada)Adaptació a la forma (esfèrica)AfilaEnfosqueix el canalEncongeix la seleccióRetallaMagnitud del retall en X:Magnitud del retall en X:Retalla la capa o la seleccióInformació del retallatS'està retallant...Traços curtsDreceraLa drecera "%s" ja està assignada a "%s" del grup "%s".Mostra màscara de capaMostra els _reglesMostra la barra d'es_tatMostra les barres de _desplaçamentMostra _guiesMostra el _marc de la capaMostra la barra de _menúMostra la _seleccióMostra contorn de pin_zellMostra el color de primer pla i de _fonsMostra _guiesMostra el _marc de la capaMostra la barra de _menúMostra els _reglesMostra el pinzell, patró i degradat actiuMostra _imatge activaMostra la grae_llaMostra els _botons d'ajudaMostra la mida de la imatgeMostra el marc interactiuMostra forma d'us de la memòriaMostra menú _mnemonics (tecles d'accés)Mostra el cursor de la eina de pintarMostra s_eleccióMostra la barra d'es_tatMostra les barres de _desplaçamentMostra un consell la propera vegada que s'iniciï el GIMPMostra consell_s en començarMostra els _consells de les einesMostrar el percentatge del zoomMostra la relació d'aspecte de l'ampliacióEncongeix el canalEncongeix la seleccióEncongeix el _contornEncongeix des de la vora de la imatgeEncongeix selecció perEncongeix el contornMidaMida en memòria:Mida de les _miniatures:Mida:S'està omitint '%s': versió errònia de protocol del GIMP.PetitPrevisualitzacions més petitesSuauSuavitza les voresTacaTaca la imatgeForç_a a les guiesFor_ça a la graellaLlum suauSòlidOrigenEspaiatEspaiat:Punts espaiatsFitxer especialEspecifica com ha de dibuixar-se l'àrea al voltant de la imatgeVelocitat de moviment en el contorn de selecció. Aquest valor és en milisegons (menys temps indica més velocitat).Velocitat:Esfèrica (_decreixent)Esfèrica (creixe_nt))Puntes:Espiral (antihorari)Espiral (horari)ParteixParteix el segment degradat uniformementParteix segments degradats uniformementParteix el segment uniformementParteix el segment _uniformementParteix el segment per la _meitatParteix segments uniformementParteix els segments _uniformement...Parteix els segments per la _meitatQuadratE_stat i TextP_ilaEstàndardS'estan iniciant les extensionsS'està iniciant l'extensió: '%s' -Estat:Color estàticGris estàticEstat i descripcióEstat i textDesviació estàndardPuntejatsTra_ça camíTra_ça camí...Traça el canalTraça camíTraça la seleccióLínia de traçatTraça el camíTraça camí amb els darrers valorsTraça camí...Traça la selecció amb els últims valorsTraça la selecció...Traça amb una eina de pintarEstil de biselat al voltant del text de la barra d'estatSostraccióSostreu de la selecció actualSupermostratgeDirectori d'intercanvi:_EinesTe_xtEina te_xtCarpeta temporal:PlantillesMenú PlantillesProcediment temporalAcabament del connector:'%s' -TextColor de textEditor de textCapa de textText modificatProcediments de textEl GIMPSembla haver-se perdut de la vostra instal·lació el connector del navegador d'ajuda del GIMPEl pinzell actiu. -Feu clic per obrir el diàleg del pinzell.El degradat actiu. -Feu clic per obrir el diàleg de degradats.La imatge activa. -Cliqueu per obrir el diàleg ImatgeEl patró actiu. -Feu clic per obrir el diàleg del patro.El color de fons de la graella; només s'utilitza en l'estil del ínia de doble traçat.L'interpret de lots '%s' no està disponible. El mode de lots està desactivat.La codificació del nom de fitxer configurat no s'ha pogut convertir a UTF-8: %s - -Comproveu el valor de la variable d'entorn G_FILENAME_ENCODING.No s'ha pogut convertir el nom de fitxer '%s' a un URI vàlid: - -%sEl color de primer pla de la graella.El gimprc s'utilitza per emmagatzemar les preferències personals que poden afectar al comportament per defecte del GIMP. Els camins per buscar pinzells, paletes, degradats, patrons, connectors i mòduls també es poden configurar aquí.La resolució horitzontal de la imatge.La capa que heu seleccionat és una capa de text, però ha esta modificada utilitzant altres eines. Editar lacapa amb l'eina text descartarà aquestes modificacions. - -Podeu editar la capa o crear una nova capa de text des dels seus atributs de text.El nom del directori que penja de la configuració d'usuari del GIMP no s'ha pogut convertir a UTF-8:%s - -El més probable és que el vostre sistema de fitxers emmagatzemi fitxers en una codificació diferent de UTF-8 i no heu informat a Glib d'això. Definiu la variable d'entorn G_FILENAME_ENCODING.La sessionrc es fa servir per emmagatzemar les finestres de diàleg obertes l'últim cop que es va sortir del GIMP. Podeu configurar el GIMP per obrir-les de nou a la posició desada.La miniatura en el diàleg Obre s'actualitzarà automàticament si el fitxer que s'està previsualitzant és més petit que la mida definida aquí.El caché de mosàic s'usa per assegurar que el GIMP no mogui mosaics entre memòria i disc. En incrementar el valor, el GIMP utilitzarà menys espai d'intercanvi, però també més memòria. Per contra, una mida més petita de la memòria caché farà que el GIMP utilitzi més espai d'intercanvi i menys memòria.La unitat utilitzada per coordenades quan no és en mode punt a punt.L'unitrc s'utilitza per emmagatzemar la vostra base de dades de les unitats. Podeu definir unitats addicionals i utilitzar-les tal com utilitzeu les polzades, mil·límetres, punts i piques que ja venen predefinits. Aquest fitxer es sobreescriu cada vegada que sortiu del GIMP.Resolució vertical de la imatge.El tipus de finestra aconsella que s'especifiqui en les finestres desplegables. Això pot afectar a com el vostre gestor de finestres decora i maneja les finestrs desplegables.El tipus de finestra aconsella que s'especifiqui en la caixa d'eines. Això pot afectar a com el vostre gestor de finestres decora i maneja la finestra de la caixa d'eines.TemaCarpetes de temesTemesHi han %d imatges amb els canvis sense desar:No hi ha prou capes visibles per a una fusió.No sempre és possible trobar un equilibri entre la memòria i la velocitat. En la majoria dels casos, el GIMP prefereix la velocitat per sobre de l'us de memòria. De totes maneres, si disposeu de poca memòria proveu d'activar aquest paràmetre.No hi ha cap capa ni canal actiu d'on copiar.No hi ha cap capa ni canal actiu d'on tallar.No hi ha cap capa ni canal actiu on traçarNo hi ha cap capa ni canal actiu on traçar.Hia ha una imatge amb els canvis sense desar:Hi hauria d'haver un fitxer anomenat '%s'. Comproveu la vostra instal·lació.Hi ha hagut un error en analitzar el fitxer '%s'. S'utilitzaran els valors per defecte. S'ha creat una còpia de seguretat de la vostra configuració a '%s'.Aquest fitxer disposa d'una col·lecció de mides estandar que serveixen com a plantilles d'imatge.En aquesta carpeta es cerquen plantilles d'imatge.En aquesta carpeta es cerquen temes personalitzats.Aquesta carpeta s'utiliza per emmagatzemar tipus de lletra que voleu veure només al GIMP. El GIMP comprova aquesta carpeta a més dels tipus de lletra de la instal·lació del sistema quan es busquen tipus de lletra. Utilitzar-la si només voleu tenir tipus de lletra del GIMP. Si no en podeu posar més en el vostre directori de tipus de lletra global.Aquesta carpeta s'utilitza per emmagatzemar fitxers de paràmetres per a l'eina Corba.Aquesta carpeta s'utilitza per emmagatzemar fitxers de paràmetres per a l'eina Nivells.Aquesta carpeta s'utilitza per emmagatzemar opcions d'eina.Aquesta carpeta s'utiliza per emmagatzemar fitxers de seqüència creats i instal·lats per l'usuari. El GIMP comprova aquesta carpeta a més de la carpeta de fitxers de seqüència per defecte del sistema quan es cerquen fitxers de seqüència.Aquesta carpeta s'utiliza per emmagatzemar mòduls DLL creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més del directori de mòduls del sistema GIMP quan es cerquen mòduls que s'han de carregar en la inicialització.Aquesta carpeta s'utiliza per emmagatzemar connectors creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més dels directoris del sistema GIMP quan es cerquen fitxers de modificació de l'entorn dels connectors.Aquesta carpeta s'utiliza per emmagatzemar connectors creats per l'usuari, temporals o en general no suportats pel sistema. El GIMP comprova aquest subdirectori a més dels directoris del sistema GIMP quan es cerquen connectors.Aquesta carpeta s'utiliza per emmagatzemar pinzells definits per l'usuari. El GIMP comprova aquesta carpeta a més dels pinzells instal·lats al GIMP quan es busquen pinzells.Aquesta carpeta s'utiliza per emmagatzemar degradats definits per l'usuari. El GIMP comprova aquest subdirectori a més dels degradats de la instal·lació del sistema GIMP quan es cerquen degradats.Aquesta carpeta s'utiliza per emmagatzemar paletes definits per l'usuari. El GIMP comprova aquest subdirectori a més de les paletes de la instal·lació del sistema GIMP quan es cerquen paletes.Aquesta carpeta s'utiliza per emmagatzemar patrons definits per l'usuari. El GIMP comprova aquest subdirectori a més dels patrons de la instal·lació del sistema GIMP quan es cerquen patrons.Aquesta carpeta s'utiliza per emmagatzemar algunes memòries intermèdies per desfer amb la intenció de reduir l'ús de memòria. Si el GIMP s'interromp de manera anòmala, poden quedar fitxers en aquesta carpeta amb la forma següent: gimp<#>.<#>. Són fitxers inútils per a les sessions GIMP i es poden eliminar tranquil·lament.Aquesta carpeta contindrà un nombre important de fitxers. Feu clic en un d'aquests fitxers o carpetes de l'arbre per aconseguir més informació sobre l'ítem seleccionat.Aquesta és la distància en píxels on s'activa el forçat de les guies i la graella.Aquest programa es distribueix amb l'esperança que serà útil, però SENSE CAP GARANTIA; ni tan sols les garanties implícites de la COMERCIALITZACIÓ o de l'ADEQUACIÓ A UN ÚS DETERMINAT. Consulteu la llicència pública general de GNU per a més informació.Aquest programa és de lliure distribució; el podeu distribuir i/o modificar sota els termes de la llicència pública general de GNU publicada per la Free Software Foundation, ja sigui la versió 2 de la Llicència o (com desitgeu) qualsevol versió posterior.Aquest camp d'entrada de text està limitat a %d caràcters.Aquesta eina no té opcions.LlindarEl llindar no funciona en capes indexades.Llindar:Miniatura %d de %dMida de la memòria cau de mosàics:Mida de la memòria cau de mosàics:Inclinació:DiminutTítol i estatA ca_mí_JoguinesCommuta mascara ràpidaCommuta mascara _ràpidaMassa missatges d'error!Opcions d'einaMenú Opcions d'einaCommutador d'eines %s_Opcions d'einaIcona EinaIcona eina amb creu_Caixa d'einesCaixa d'einesMenú Caixa d'einesEinesMenú EinesEines com la selecció difusa i el cubell troben regions basades en l'algorisme seed-fill. El seed-fill comença al pixel seleccionat inicialment i progresa en totes direccions fins que la diferència d'intensitat del pixel respecte l'original és més gran que el llindar especificat. Aquest valor representa el llindar per defecte.Tr_ansparènciaTransfereix alfa a màscaraTransformaTransforma el canalTransforma direccióTransforma la capaTransforma camíTransforma la capa de textProcediments d'eines de transformacióTransforma la capaTransforma camíTransforma seleccióTransformacióProcediments de transformacióLes transformacions no funcionen en les capes que continguin màscares de capa.S'està transformant...Traduït perTransparència_Tipus de transparència:Ona triangularColor realTipusTipus %sTeclejeu un accelerador nouTeclejeu una nova drecera , o premeu retrocés per esborrarNo es pot afegir una màscara de capa ja que la capa ja en té una.No es pot retallar o copiar perquè l'àrea seleccionada està buida.No es pot obrir un fitxer d'intercanvi de prova. Per evitar perdre dades comproveu la ubicació i permisos del directori d'intercanvi a les vostres preferencies (actualment "%s").No s'ha pogut obrir el fitxer d'intercanvi. El Gimp està executant-se sense memòria i no pot utilitzar el fitxer d'intercanvi. Algunes parts de les vostres imatges poden estar corrompudes. Proveu a desar el vostre treball utilitzant noms de fitxer diferents. Torneu a iniciar el Gimp i proveu la ubicació del directori d'intercanvi en les vostres preferències.No es pot usar la crida de retorn %s. El connector corresponent no funciona correctamentNo definitDesfésHistorial de desfer_Historial de desferUnitatsDesconegutTipus de fitxer desconegut.Tipus desconegut de fitxer de paleta: -%sDescarregaSense nomSense títolUtilitza "_Punt a punt" per defecteUtilitza dreceres de teclat _dinàmiquesUtilitza el navegador _web de totes maneresUtiliza totes les capes visibles al encongir la seleccióUtilitza la paleta blanc i negre (1-bit)Utilitza color del degradatUtilitza la paleta personalitzadaUtilitza la finestra d'informacióUtilitza la paleta optimitzada per al webRegistre de la instal·lació de l'usuariInterfície d'usuariFinestra d'utilitatValorValor:Mode del vectorsLa versió %s ha estat desenvolupada perVersió:VerticalCompensació vertical de la primera línia de graella; ha de ser un número negatiu.Espaiat vertical de les línies de graella.Molt granMolt petitVisualitzaVisualitza com a _graellaVisualitza com a _llistaVisualitza com a graellaVisualitza com a llistaClasse visual:Profunditat visual:Avís: No s'ha pogut obrir les dades: - -%sAvís: No s'ha pogut desar les dades: - -%sNavegador webNavegador webBenvingut a -la instal·lació de l'usuari %d.%d del GIMPQuan sigui activat, el diàleg segueix automàticament la imatge en que s'està trballantQuan sigui activat, el GIMP mostrarà tecles mnemoniques en els menús.Quan sigui activat, totes les eines de pintura mosten una previsualització del contorn de pinzell actual.Quan sigui activat, una imatge es tornarà la imatge activa quan la seva finestra rebi el focus. Això s'utilitza per gestors de finestres fent anar "clica al focus".Quan sigui activat, els diàlegs mostraran un botó d'ajuda que donaran accés a la pàgina d'ajuda esmentada. Sense aquest botó, la pàgina d'ajuda podrà encara ser accessible prement F1.Quan sigui activat, el menús no es poden desprendre.Quan sigui activat, en prèmer F1 s'obrirà el navegador d'ajuda.Quan sigui activat, el GIMP no desa si la imatge no s'ha canviat des de que s'ha obert.Quan sigui activat, el GIMP utilitzarà una finestra d'informació diferent per a cadascuna de les visualitzacions d'imatges.Quan sigui activat, el servidor X preguntarà la posició actual del ratolí cada vegada que hi hagi un esceveniment de moviment. Això significa que pintar amb pinzells grans serà més precís, però també més lent. Perversament, en alguns servidors X, habilitar aquesta opció farà més rapid el pintat.Quan sigui activat, el cursor es mostrarà sobre la imatge mentre s'utilitzi una eina de pintar.Quan sigui activat, es veu la graella per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra graella".Quan sigui activat, es veuen els regles. Això també es pot commutar amb l'ordre "Visualitza->Mostra regles".Quan sigui activat, en apropar i allunyar les imatges, la finestra es redimensionarà sola.Quan sigui activat, sempre que canviï la mida de la imatge, la finestra es redimensionarà sola.Quan sigui activat, es veu el marc de la capa per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra marc de la capa".Quan sigui activat, es veu la barra de menú. Això també es pot commutar amb l'ordre "Visualitza->Mostra la barra de menú".Quan sigui activat, es veuen els regles. Això també es pot commutar amb l'ordre "Visualitza->Mostra Regles".Quan sigui activat, es veuen les barres de desplaçament. Això també es pot commutar amb l'ordre "Visualitza->Mostra barra de desplaçament".Quan sigui activat, el pinzell seleccionat s'utilitzarà per totes les eines.Quan sigui activat, el degradat seleccionat s'utilitzarà per totes les eines.Quan sigui activat, el patró seleccionat s'utilitzarà per totes les eines.Quan sigui activat, es veu la selecció per defecte. Això també es pot commutar amb l'ordre "Visualitza->Mostra selecció".Quan sigui activat, es mostra la barra d'estat. Això també es pot commutar amb l'ordre "Visualitza->Mostra Barra d'Estat".Quan sigui activat, assegura que cada pixel d'una imatge és mapejat com a pixel en la pantalla.Quan sigui activat, assegura que tota la imatge és visible un cop obert el fitxer; si no, es mostrarà a escala 1:1Quan sigui activat, es poden canviar les dreceres de teclat pels elements de menú prement una combina de tecles mentre l'element del menú està resaltat.BlancEl balanç de blanc només funciona en capes de color RGB.AmpladaAmplada:Gestió de finestraTipus de finestra aconsellatsPosicions de la finestraS'està escrivint '%s' -XS'ha produït un error en el XCF: no es pot treballar amb fitxers XCF versió %dAdvertència del XCF: la versió 0 no desava -correctament els mapes de color indexats. -S'està substituint el mapa d'escala de grisos.YY:GrocGroc:Esteu intentant crear una imatge amb una mida de %s.Pots deixar el diàlegs desplegables aquí.Heu d'haver rebut una còpia de la llicència pública general de GNU amb aquest programa; si no és així, demaneu-la a la Free Software Foundation, Inc. , 59 Temple Place - Suite 330, Boston, MA 02111-1307, EUA.Cal que reinicialitzeu el GIMP per a que els canvis tinguin efecte:Els paràmetres del vostre dispositu d'entrada es reiniciaran amb els valors per defecte la propera vegada que inicieu el GIMP.Les vostres dreceres de teclat es reiniciaran als valors per defecte la propera vegada que inicieu el GIMP.La vostra configuració de finestra es reiniciarà amb els valors per defecte la propera vegada que inicieu el GIMP.Opcions de zoom i canvi de midaZoom 1:1Zoom totalAmplia el zoomRedueix el zoomRelació d'aspecte de l'ampliacióRelació d'aspecte de l'ampliació:Tot_alAmpl_iaRed_ueixZoom totalFactor de zoom: %d:1Amplia la imatge quan canvia la mida de la finestraAmplia el zoomAmplia i redueix el zoomRedueix el zoomZoom:[ Imatge base ]_Quant a_Adquireix_Afegeix color del fons_Afegeix color del primer pla_Afegieix etiqueta_Afegieix a la seleccióOpcions _avançadesV_aporitzador_Tot_Ancora la capa_SuavitzatGir _lliure..._Artístic_Aspecte_Automàtic_BColor de _fonsColor del _fons:_Negre (transparent del tot)S'està mesclant la funció pel segmentS'està mesclant la funció per la selecció_Difumina_Brillantor:_Pinzell_Pinzells_Pinzells, patrons i degradats_Cubell_Memòria intermèdia._per colorSelecciona per _color_CEstil _principal:Ca_nals_Neteja errors_Neteja l'historial de desfer_Clona_TancaTan_ca etiqueta_NúvolsEines de _color_Colors_Configura color i opacitat..._ContextAjuda _contextual_Copia_Copia l'objecte anomenat..._Crea imatge des de plantilla...Es_capça i canvia la midaEs_capça la imatge_Corbat_Corbes...Color dels quadres _foscosColors per _defecte_Suprimeix pinzell_Suprimeix memòria intermèdia_Suprimeix el canal_Suprimeix color_Suprimeix el degradat..._Suprimeix la imatge_Suprimeix la capa_Suprimeix paleta_Suprimeix el camí_Suprimeix patró..._Suprimeix les opcions desadesSuprimeix el segmentSuprimeix la selecció_Suprimeix plantilla_Desatura_Depega etiquetaEstat del _dispositiu_Diàlegs_Descarta informació del text_Distorsions_Punt a punt_Duplica_Edita_Edita pinzell..._Edita els atributs del canal..._Edita color..._Edita degradat..._Edita atributs de la capa..._Edita paleta..._Edita atributs del camí..._Edita patró_Edita plantilla...Selecció d'_el·lipseActiva pr_evisualitzacions de capa i canal_Enorme_EqualitzaGoma d'_esborrarColor de _primer pla_Fitxer_Omple amb:A_justa imatge en finestra_Aplana imatge_Volteja_Volteja el segment_Voltejar la selecció_FlotaTipus de _lletraTipus de _lletraColor del _primer pla:Selecció _lliure_G_Genèric_GegantaDe_gradatDe_gradatsEscala de _grisosCopia de capa en escala de _grisosAu_gmenta..._Guies_Duresa_Ajuda_Horitzontal:_To:_Immensa_Icona_Icona:_Imatge_Imatges_Importa_Importa paleta_Indexat...Finestra d'_informació_Creua amb la selecció_InverteixEstil de la _unió:_Gran_Capes_Capes_Capes, canals i caminsLímit _esquerreEl més proper al límit dret per l'_esquerraNive_llsColor dels quadres _clarsEfectes de _llum_Lluminositat:Estil de _línia_LinealEn_llaçat_Carrega el color esquerra des de A_baixa el canalA_baixa la capaA_baixa el camí_M_Manualment:_Mapa_Màscara_Màscara a seleccióNombre _màxim de colors:_Mesura_Mitjana_Fusiona paletes..._Fusiona els camins importats_Migra els paràmetres d'usuari del GIMP 2.0_Opcions diversesLimit de _mesura:_ModeGestor del _mòdul_Mou_Nom:_Natura_Nou pinzell_Nou canal_Nou canal..._Nova entrada..._Nou degradat_Nova capa_Nova capa..._Nova paleta_Nou camí_Nou camí..._Nou patró_Nova plantilla..._Nova vista_Nou...Consell _següent_Soroll_CapDes_plaçament_Opacitat_Obre imatge_Obre...Color d'em_plenatEines de _pintura_Pinzell_Paleta_EnganxaEn_ganxa la memòria intermèdia_Enganxa l'objecte anomenat...Ca_mins_Patró_Perspectiva_Posterize..._Preferències_PrevisualitzaMida de _previsualitzacióConsell _anteriorMida d'im_pressió..._PropietatsMàscara _ràpida activa_Surt_R_RGB_RadiA_puja el canalA_puja la capaA_puja el camí_Apuja les vistes_Apuja o obre imatge_Reassigna dreceresSelecció de _rectangle_Torna a fer_Torna a fer %s_Refresca pinzells_Refresca degradats_Refresca paletes_Refresca patronsSup_rimeix els colors no utilitzats de la paleta final_Composa_Reemplaça_Replica el segment_Replica la seleccióTo_rna a escanejar la llista dels tipus de lletraTo_rna a iniciar ordre i visibilitat_Reinicia els paràmetres dels dispositius d'entrada desats als valors per defecte_Reinicia les dreceres de teclat desades als seus valors per defecte_Reinicia les posicions de les finestres desades als valors per defecte_Restaura opcions des deLímit _dretEl més proper al límit esquerra per la _dretaGi_ra_Saturació:_DesaDe_sa el color esquerra aDe_sa opcions aDe_sa els paràmetres dels dispositius d'entrada en sortirDe_sa dreceres de teclat en sortirDe_sa les posicions de les finestres en sortirE_scalaE_scala la imatge...E_scala la capa...Escala els camins importats fins ajustar a la imatge_Selecciona_SeleccióEditor de _seleccióEines de _selecció_Ombra_AfilaMostra _selecció d'imatgeMostra en la caixa d'eines_Sinusoïdal_Petita_TacaDi_stància de forçatTraça la _seleccióTraça la _selecció..._Sostreu de la seleccióEstil d'e_tiquetaPlan_tilla:Plan_tilles_Text_Llindar..._Diminuta_Consell del dia_Eines_Eines_Tranfereix canal alfa de la capa_TransformaEines de _transformació_DesfésDesfés %s_Vertical:_Visualitza_Visible_WebNavegador _web a utilitzar:_Blanc (opac del tot)Balanç de _blancAm_plada:_Ajusta l'entornResolució _X:_X:E_xtensions_YResolució _Y:_Y:_Zoom_Zoom (%s)colorscòpiapppS'esperava 'yes' o 'no' per l'element booleà %s. S'obtingué '%s'S'ha produït un error fatal d'anàlisiescala de grisosescala de grisos-buidapolzadapolzadesindexatindexat-buitCadena de text UTF-8 invàlidaEl valor '%ld' és invalid pel tipus d'iconaEl valor '%ld' no és vàlid per l'element %sEl valor '%s' és invàlid pel tipus d'iconaEl valor '%s' no és vàlid per a l'element %smil·límetremil·límetresminutn/apercentatgepicapiquespíxelpíxelspíxels/%apíxels/%spuntpuntssegontips-locale:catraductor-créditsEl valor per a l'element %s no és una cadena de text UTF-8 vàlidaAnalitzant l'element '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/ChangeLog gimp-2.2.9/po/ChangeLog --- gimp-2.2.8/po/ChangeLog 2005-06-23 19:00:07.000000000 +0200 +++ gimp-2.2.9/po/ChangeLog 2005-09-20 18:24:03.000000000 +0200 @@ -1,3 +1,33 @@ +2005-09-20 Sven Neumann + + * de.po: fixed wrong translation. + +2005-09-17 Takeshi AIHANA + + * ja.po: Updated Japanese translation by + kano@na.rim.or.jp. + +2005-08-11 Funda Wang + + * zh_CN.po: Updated Simplified Chinese translation. + +2005-08-02 Takeshi AIHANA + + * ja.po: Fixed wrong translations pointed by + kano@na.rim.or.jp. + +2005-07-07 Abel Cheung + + * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team + +2005-07-05 Sven Neumann + + * de.po: fixed incorrect translation. + +2005-07-05 Hendrik Richter + + * de.po: Updated German translation. + 2005-06-21 Hendrik Richter * de.po: Fixed German translation (#308553) diff -uraN gimp-2.2.8/po/cs.gmo gimp-2.2.9/po/cs.gmo --- gimp-2.2.8/po/cs.gmo 2005-05-08 12:15:21.000000000 +0200 +++ gimp-2.2.9/po/cs.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,425 +0,0 @@ -Þ•^  Kƒ ü•È È&ÈkFÈG²È9úÈG4ÉA|ÉN¾Éi Ê<wÊk´Ê@ Ë2aË;”ËPÐËO!Ì2qÌ9¤Ì-ÞÌ9 Í;FÍ7‚Í ºÍÄÍ -ËÍ ÖÍ -àÍ -ëÍ öÍÎÎ -!Î,Î/Î?Î -WÎbÎjÎrΎΨξÎ0ÅÎöÎÏÏ#Ï+Ï -BÏMÏTÏ\ÏdÏ sÏ Ï Ï -›Ï -¦Ï ±Ï ¾ÏÊÏ ÚÏ æÏòÏ ÷Ï ÐKÐ…\Ð.âÐ1Ñ!CÑeÑwÑ~ÑєѰѿÑÖÑÚÑíÑ -ÿÑ -ÒÒ ,Ò -8ÒCÒXÒ kÒuÒ„Ò -Ò˜Ò§ÒºÒÒÒäÒöÒÓ*Ó6FÓ}ÓÓ­ÓÅÓÎÓëÓ -ÔÔ3ÔGÔfÔ{ÔÔ#£ÔÇÔáÔ -ýÔÕÕ!Õ3Õ<Õ\ÕpÕ xÕ ‚Õ Õ™Õ©Õ1¾Ö3ðÖ$×8×>×Q׋X× -ä×ï× ØØ9Ø@Ø OØ -\ØgØxØŠØšØA«ØJíØ8Ù<KÙ ˆÙ –٤ٴÙÍÙåÙõÙýÙÚ Ú(Ú>ÚQÚZÚqÚƒÚ ”Ú¢ÚºÚ -ÃÚÎÚßÚøÚÛ&%Û$LÛqÛxÛ ~Û ˆÛ–ÛÛ¶Û½ÛÃÛÝÛ"åÛ ÜÜÜÜ$Ü -4Ü?ÜNÜ_ÜsÜ7‡Ü¿Ü ÅÜ ÒÜàÜéÜðÜ øÜ ÝÝ Ý&Ý+Ý 0Ým=Ý«Ý °Ý ¾Ý ÌÝÖÝßÝ üÝ -ÞÞ !ÞC.Þ7rÞ=ªÞ@èÞ6)ßd`ßÅßãß3ùß-à<Aà#~à!¢àÄàáà ûàá á 'á1á:áRáhá€á˜áªá¼áÙáöáâ,*âWâqâyâ Œâšâ ºâ Ûâ!éâ ã&ã<ãQãfãoã xã †ã“ã§ã®ãµã »ãÉãÜã ëãøã.ä5=ä5sä7©ä8áä)å,Dåqåå¥å2Âå õåæ1æOMæAæ%ßæ&ç4,ç1aç#“ç ·çÅç áç íç÷çè è&è/è>èNè -]èhèpè vè„è šè§èÀèÒè0äè é !é.é 5é ?é LéYété‘é+šéÆéÙéìéõé êê ê&ê -.ê 9êCê$cêˆê›êªê¿ê Üêýêë5ëHëXë"mëë¦ë µëÃëÓë Üëèëðërì{ìŒì ”ì¡ì¼ìÕìõì -í"í";í^íwí€í -’í í«í -Êí)Õíÿí,îFî!`î#‚î#¦î!Êî%ìîï.1ï`ï gïsï„ï˜ï«ï¾ï#Ôï-øï&ð%<ðbðxðŽð©ð¾ðÖð Ûðéð -ñ -ñ -ñ$ñ<ñCñRñ Wñ eñrñ‚ñ’ñ¥ñ´ñÃñ ÊñØñ -ëñöñ-ýñ+ò 2ò?òOòfò jòtòyòòò£ò·òÈòÛòëòþòó &ó2ó Bó Nó \óiópóvó%|ó!¢ó ÄóÑóäó&üó#ô 7ôEôTôgô yô‡ô–ô ¦ô³ô ÂôÏô ßôìôþô õõ(õ@õ[õxõŠõ™õ -²õ -½õ-Èõ öõö ööö 'ö4ö -<ö GöTögözö“ö›ö®öÂö Õöãöýö ÷÷ ÷*÷1÷:O÷?Š÷8Ê÷ øøø*ø ;øEø -Tø_øeø -{ø †ø ”ø  ø -­ø ¸ø Äø -Îø Ùøåø îøûøù ù>,ù kùŒùœù®ùÁùÑùãùòùú$ú4ú DúQú `úmúrúŠúú¶úÊúàú ðúúú û"û=û Sû -aûlû -„ûû §ûµû ËûØû íûúû -ü%ü 4ü Bü -NüYü*jü•üžü!°üÒü.éüý4ý#=ý"aý„ý¡ý&Àýçý ýý þþ,&þ#Sþwþ~þ þ›þ®þ'Èþðþ' ÿ5ÿRÿhÿ„ÿFžÿTåÿ:A GTj }ž µ¿ -Ö áï -<K]o uŠ “Ÿµ(¾$ç 0=C61¸<ê?'Ag7©9ác09°Bê=-fk>ÒCJUg  $ 6DY^p € Š– ¨ µ ÃÑåü$8K^p‡—«Çâÿ  . I ` t ˆ  œ ª  -½  È Ö  Û  -è  ó ý  - -. - -? -J -f - n -z -Š - š -¨ -À -Ü -ø - (% N T [  c p x ~  -„ O ß  -ñ ”ü ‘ ¢ » Ò  -è  ó  ÿ    . O b u  -„    © ¶ »  Ê ×  ï  ü  .EuTÊÌÜÅ©co Ózà[ariÜõ '6?Od&u'œ ÄBÐ  ' 6 DP U_elq ƒŸ±·Ïàäþ0?H^ u -Š “¤¬ ± ¾Êåü  -1HHP -™ ¤®¾ -ÆHÑ!B<ƒ1’Ä×Ü áîõ -  % 1`=™žC81|0®ß å òÿ - -'>N_~‘ ©(· -à -ëHö -? J -Wb iu„ “ ¶Ë Ú çõú  #AH P^€w ø3Ie iw ‰ — ¤K²3þ62ix"Ž ±»Óç ö$%@ U c „(¥+Î)ú*$!Oq/ƒ³ºÉ*Ú  '3 [ k { „  -– ¡ ± Ç × é ø !!)!? I?#S?w?-Š? ¸?Ä?Ù? î?ø?@@ @ -)@ 4@¥@@æ@ú@A A$A-A5A;AQA -iA -tAA•A -¥A °A ºAÈAÌAæA ÷A B! B-B 1B?BSB bB oB|B—BžB ¦B´BÉB ßBëB -þB CC .CM\MqMMˆMŸMµM ÄM ÑMÝMïM NN .N:NONUN -\N -gNrN zN‡NœN «N¹N -¿NÊNÏN äNðN -OO2O OO[OmOˆO¤O ¿OËOÛOôOPP4-PbPP’P«PÈPÛPêP.QE3QyQ ŠQ ˜Q¥Q ½Q ËQÙQôQ úQ R R - R+R ŒOŒUŒZŒiŒorŒâŒèŒúŒ  &3E U cm† —¤ -ª<µ òŽ !3GWf{•¥´È×ñ 1 -ALQZ3q;¥;á¡‘¿‘FÆ’ ““ “ )“7“=“E“ W“x““‡““®“Γ3ç“#”?”W”j”z”””ª”¹”È”Δ Õ”á”þ”•F•W• -w• -‚•• ’•  • ®• »• È• Ö•!ä•!– (– 4–+@–Kl–0¸–Qé–˜;—¢Ô—$w˜5œ˜PÒ˜G#™-k™O™šjéšoT›eÄ›j*œ~•œpo…wõ<mž?ªž>êžt)ŸtžŸ` ‰t þ ~¡0„¡µ¡»¡¡Ô¡é¡ ú¡¢6 -¢oA¢±¢³¢º¢4¢#÷¢È£Gä£%,¤XR¤U«¤O¥Q¥h¥q¥z¥‚¥ -‹¥ –¥ ¢¥¬¥ µ¥¿¥È¥#Ú¥þ¥ ¦¦¦#¦2¦9¦B¦U¦h¦q¦ƒ¦ •¦Ÿ¦ ¤¦ ²¦À¦ צá¦é¦ï¦ ò¦ü¦§*§ I§j§ p§}§„§§ ¬§¹§ Á§˧ܧ ߧ ë§ õ§¨¨¨ -%¨0¨ 8¨E¨M¨m¨ v¨„¨Š¨™¨¸¨ ǨÓ¨ -Û¨æ¨ø¨ ©©%© 5©C© W© e©s© ƒ©©£©¹©É©Û© ì© ø©ªªª-ª Gª Qª -^ªiªoª~ªšª©ª»ªÕªæªÿª«"« 2« S« ]«g« o«y« «‹« «¯« µ«ëÓ«Ú«à«ç« ú«¬ -¬ ¬ ¬ -'¬ -2¬=¬V¬_¬ g¬q¬ w¬„¬Š¬¬–¬¬¤¬¬¬´¬ Ǭ Ó¬à¬ú¬ ­­­­%­?­N­ -n­y­Œ­ ›­ §­³­»­íÙ­ è­ õ­® ®®®®,®G®P®X®k®® ¡® ®®¼®®Ò®Ø®ß® -ç® ò®ÿ® ¯ ¯ -+¯ 6¯ D¯ Q¯ [¯ h¯u¯ †¯¯ ˜¯¢¯©¯ -¯¯º¯ ïϯد ç¯ ô¯° ° °°.°5° >° K° Y°f° o° }°‹° š°¦°¹°¿°°Ç°Ï° Þ° ë° ÷°±± ,±9±?±H±Y±l±~±(±¹±Á±ʱà±ø± -²4$²1Y²/‹²»²Ѳá²³ ³³³0³#A³ e³†³¥³¬³¼³"̳ï³ -÷³´´%´,´5´K´ \´h´o´w´‡´™´®´ -Ç´ -Ò´ -Ý´è´ î´ü´µµµµ -?µJµ[µaµ -jµuµ{µ„µ‰µžµ´µõ ˵صçµëµñµôµ¶¶ - ¶¶¶$¶5(¶^¶ p¶z¶Š¶¶–¶ ž¶¬¶!Á¶ 㶠·%· -E· P·\·c·g·o·t·z·€· ‡· ‘·›·¡·¨· ¯·½·.зÿ·%¸B¹)Y¹qƒ¹Lõ¹8BºN{ºDʺu»k…»Eñ»p7¼M¨¼<ö¼F3½Vz½Dѽ/¾AF¾5ˆ¾B¾¾8¿7:¿ r¿€¿ -‡¿ ’¿œ¿ ¥¿ ¯¿¼¿Í¿ Þ¿ê¿í¿þ¿ -ÀÀ(À"1ÀTÀtÀŠÀ3ÀÄÀÜÀ öÀ Á) Á 6Á -BÁMÁVÁ_Á oÁ }Á ‰Á -—Á -¢Á ­Á ºÁÆÁ ÙÁ åÁñÁ öÁÂYÂ|pÂ4íÂ1"Ã#TÃxÃÕÃâÃÁÃÑÃíÃõà -ÄÄ0Ä?Ä[ÄnÄěĴÄÃÄ ØÄæÄúÄÅ+ÅCÅ[ÅuÅŠÅ*§Å5ÒÅÆÆ=ÆZÆbÆ}Æ–Æ°ÆËÆâÆùÆÇ.Ç*EÇpÇ‹Ç -¨Ç³Ç ÅÇÏÇ æÇ%ôÇÈ ,È 8ÈDÈUÈeÈl|È-éÉ)ÊAÊ[Ê`ÊqÊŸwÊË Ë:ËSËmË tË ‚ËË—Ë­ËÄËÔË>êËG)ÌqÌ?ƒÌ ÃÌ ÑÌßÌôÌÍ2ÍEÍ LÍ*XÍƒÍ˜Í µÍÖÍêÍÎÎ#Î@ÎQÎZÎ bÎpΌΠÎ=´Î1òÎ $Ï0Ï 6Ï CÏOÏ XÏ yσÏ!ŒÏ -®Ï2¹Ï ìÏøÏÿÏ ÐÐ 1Ð ;Ð IÐ VÐ cÐ2pУР©ÐµÐËÐÚÐáÐ -çÐ òÐüÐ Ñ Ñ Ñ%Ñz5ѰѵÑÄÑ -ÕÑ -àÑëÑ -ÒÒ0Ò8ÒDIÒ/ŽÒH¾Ò@Ó4HÓf}Ó"äÓÔ8ÔXÔHpÔ%¹Ô#ßÔ"Õ!&ÕHÕYÕ xÕ ‚Õ ŒÕ˜Õ®ÕÊÕâÕþÕÖ$.ÖSÖ!sÖ•Ö'°Ö#ØÖüÖ××#&×#J× n×|ד׫׿×Ò×å×í× õ×ØØ8Ø=ØFØNØ]ØwØ Ø›ØA¸ØFúØCAÙB…Ù?ÈÙ6Ú.?Ú#nÚ’Ú&¯Ú7ÖÚ,Û;Û*WÛa‚ÛBäÛ,'Ü,TÜ<Ü?¾Ü(þÜ'Ý%9Ý_Ý tÝ~ÝœÝ ´Ý ÀÝÌÝèÝÞÞ/Þ6Þ<ÞNÞkÞ{Þ˜Þ®Þ:¾ÞùÞ -ßß ß*ß :ßFßc߀ß2ˆß»ßÌß -Ýßèßýß à à -"à --à8à%Ià/oàŸà¶àÉàåà á#á;áWáqáŒá-£á Ñáòá â&â9â@âIâŒQâ Þâ -êâõâýâ$ ã!2ã'Tã|ã–ã&©ã&Ðã÷ãä%ä>äVämä -ä3˜äÌä.æäå+.å$Zå#å#£å%Çå#íå>æPæXæhæ}æ–æ³æÊæ*ãæ,ç;ç,Tçç›ç³çÍçäçèè'èFèWèfè0wè¨è°èÇèÐèéèÿèé$é<éLéaéhéyé ’éžé;¦éâéëéúé ê+ê3êLê Uê_êqê„ê™ê¬ê¿êÑêäêüêë%ë>ëPëfë …ë’ë™ë2¢ë(Õëþëì3ì1Mìì“ì§ì»ìÓìêìûì í í0íAíQídíuíŒíží®í¿íÜíöíî+î =î ^îlî3uî©î¯î¶î ÇîÓî Ûî èî -õîïï%ï<ï Vïdïxïï¥ïµïÎï Ýïêïýïð(ðC7ðM{ð1Éð ûð ññ)ñ =ñGñVñqñ&ñ¨ñÂñØñëñþñò&ò9òJò Zòdòuò‰òò<°ò&íòó%ó7óKó]óoó€ó’ó¯óÉó Þóëó ûó ôô,ôBô`ô|ô—ô ¬ôºôÏôèôõ#õ 4õBõ [õ"iõŒõõµõÄõÛõêõöö)ö:öKö[ö4uö ªö·öÍöìöB÷/F÷v÷ ÷  ÷Á÷ß÷&ý÷$ø ?øKø -eø0pø(¡øÊøÏøáøòø&ù1/ùaù)}ù§ùÃù(âù úW'úZúÚúàú éú÷úû+&ûRûlû"sû –û ûB¿û=ü@ü[üvü‘ü¬ü¾üÖüöüý2ýRý&Yý"€ý£ý<¬ýLéýE6þ=|þMºþLÿMUÿF£ÿDêÿw/>§IæW0PˆzÙQTQ¦Wø|P ÍÚêû %D Vbr…”ªÀ×ó  8Qbr‰˜²"Ê!í >\w“¯Ëèü  ,>Pa|’©¼!Ð ò"4E\x”(§7Ð    - &  -8 C K  R Q^ °  Î –Ø o - - -³ -É -Ò -á - ð - -ü -%  -  ;  -I  T ^ t ‹   ¥  ¹ Ç à ö    - K †] ä õ õø rî -awlä étõj‡ ¤°ÁÒÛí01L~I’ Ü æðÿ'.=E NXwˆš®)·áõù1.E t &‹² ÑÞíõþ -2&E!lŽ¡¦®ÄßOç -7 BLb -kKv$ÂEç-57D|Œ • Ÿ ­· Ì -Úå ë ùsŸzB8]8–ÏØíþ ! 3Tg*{¦¿ Ô%âU'} ž« ´  ÐÞï,=P Ye w -Œ§ ®ºÌ–æ}®Í#í ':Oags3Û?Of!} Ÿ©Ã ×äì -A2Q)„A®Dð@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]0n0Š0'¥0Í0Ý0!ý01'1.151=1*T11–1³1Ç1Ø1é1 ð1þ1 2&2.2C2U2q2…2›2®2Æ2×2ê233+3F3Y3v3’3±3Ð3 ë3 -õ34 44!+4M4T4\4 e4r4ˆ4ž4µ4Î4 Ý4 ê4ö45 5 #5$05U5e5{5“5 ¢5 ¯5$¼5á5 ñ5#þ5"6 16 >6BL66)«6Õ6%ì6(74;7p77˜7 «7¸7¼7 -Ö7á7ô788H,8Fu8 ¼8Ý8÷8 99 9$9 59C9W9i9p9‹y9::/: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 ‚AŒA §A$³AØAçAûA B&B:BUB -hBsB†BœB¬B´BM½BE CQCeCuC •C)¶C'àC·DHÀD EE:*EeF -tF F F ™F"¥FÈF1ßF -GG0GBGHGPGfGoGxG‡G·—GOHhHH ŠH—HŸH§H­HÌHëH ýH I"I5I GI UI cImI‡I ˜I¢I!¸I ÚIèIýIJ,J;J"MJ -pJ {J …J ’J J ¯J ¼J ÊJ ÖJ ãJ ñJ þJ K K 'K 3K%@K#fKŠK “KK(¶K$ßK(L)-L!WLyL ‰L?—Lb×L>:M=yM?·M -÷M+NA.NpN‰N¡N µN -¿NÊN-ÐN,þN+O>OPOdOxO ‡O!¨O ÊONëO:PNP_P|P˜P«P ¼P ÝPþPQ"Q>QZQmQ€Q7œQ ÔQõQ RR'3R[RxR ŽR˜RªR¼RÍR àRíR - SS1SNSaStSS«SÈSåS*T.TKT&kT2’T#ÅT+éTU&U?UYUqU ˆU©UÃU(ÝU3V:VNV aVnV€V”VE§V!íVW W"W:WMMW ›W¼WÛWîWöWX3XBX QX_XwXX X ¼XÆXÙX áXëX YYY%Y>YQYcYiYpYxY’Y¢YÁY0ÑY'Z*Z:ZSZ%sZ™Z¸ZÉZÛZóZ -[#[7=[%u[›[´[&Ò[ù[ \\08\Ci\­\Á\Ñ\á\ÿ\ ]$"]G]O]`]r]‚]“]¬]¾]Ð]æ] ü]" ^,^=^ÂW^I_ d_r_z_€_•_ _©_»_×_í_#`+`I` ]`j`}`š`±`$Ì`ñ`a %a3aGaea}a%™a¿aßa õabb2bIb$db‰b¨b½b ÄbÐbæb øb$c+cIcbc{c—c -°c»cÒc$ëc$d5dPd ldyd–d ±d¾dÖdíde"e@e[e ve‚e”e,°eÝeûe -ff 4fUfrfŒf5©f,ßfS gO`g°gËgãgõgýg h#h 2hShbh‚h “hh±hÂh×h ëh!õhi.iFi*Zi%…i#«i(Ïi(øi"!jDj]jmj„jj¸jÏjæjÞÿj:Þkdl~lVƒmCÚm•n6´n¡ënžo=,pSjpI¾p[q1dq™–q 0r:tHKu<”u´Ñu -†v‘v˜vv£v¼vÖv îvúv ww&wAw \w}w •w£w´w2Èwûwx'xCx^xsxŽx¨x¼x%Ôxúxy*yDy-Zyˆy¦y!¼yÞyûyz05z(fzz£z¿z/Ûz! {-{"I{ l{{{®{Æ{ã{ö{ ||*| >|0H|y|||™|¬|´|Ê|Þ|ò|}}} }!}1}2D}xw} ð}ú}~+~*2~*]~ ˆ~)’~*¼~ç~#&+ R$s)˜ Â Î Û çó €,€2€B€ R€ _€k€ t€€€¡€µ€Æ€Ö€è€û€' 3)Fp'…&­ÔÜú ‚ -"‚-‚3‚B‚W‚ `‚n‚ ‚¢‚ §‚³‚ ӂá‚ò‚S÷‚1Kƒ:}ƒ8¸ƒ5ñƒR'„Hz„†Ã„=J…ˆ…Þ£… ‚†ࣆ„‡Áˆˆ’J‰„݉Jb‹ñ­‹ŸŒ¡½Œœ_üŽŽ)Ž7IŽ¹Ž=;:y;´<ð*-JX‘£g5‘2‘@Б5’WG“XŸ“@ø“Ê9”•5–ÿJ—¤J˜²ï˜¥¢™©HšòšªœZ¬œêßò4ÒžŸZ#Ÿ~Ÿ+„Ÿ°Ÿ·Ÿ)ÉŸ(óŸ # +  : ‘D Ö ß ÷ "¡3¡D¡Z¡u¡‡¡%—¡½¡Ï¡à¡ ï¡ù¡E¢ N£\£ t££–£©£¾£Ò£&ð£¤,¤@¤ V¤c¤z¤ Š¤ –¤£¤·¤ ΤÛ¤ߤ$ç¤K ¥;X¥J”¥Ôߥ4´¦Qé§ ;¨I¨O¨a¨t¨ }¨‡¨ ¨¾¨ ƨ -Ò¨$ݨ*©&-©<T©'‘©¹©Ô©í©'ª"0ªSªkª{ªªˆª˜ª²ª¹ªHÀª! « +« 8«D«M«f«|«”«©«»«%Í«$ó«¬)¬/:¬Mj¬6¸¬^ﬡN­Çð­*¸®>ã®V"¯\y¯MÖ¯a$±†±²s†²sú²‰n³‡ø³€´‹µHŽµK×µI#¶{m¶‹é¶Yu·vÏ·…F¸̸;Ó¸¹ ¹ "¹/¹ H¹T¹c¹7e¹Œ¹*º,º4º1=º*oºÀšºA[»$»g»_*¼ZŠ¼-å¼½$½ 3½@½I½X½h½ x½ †½½Ÿ½;»½ ÷½¾#¾,¾<¾ T¾`¾i¾‚¾¾°¾žܾë¾ñ¾¿¿&¿ /¿ =¿J¿M¿\¿l¿Œ¿©¿ Ç¿Õ¿Û¿â¿é¿ -ÀÀ À$À:À=ÀPÀYÀhÀ ƒÀ À—À«À²ÀÃÀÊÀæÀïÀ ÁÁ"/ÁRÁiÁ {Á ˆÁ”Á®ÁÁÁÒÁäÁöÁÂÂ2ÂDÂVÂgÂ|›®ÂÁ ÕÂßÂòÂà Ãà 8à Dà PÃ\ÃeÃwÔæûÃ×ÃêÃÄÄ-Ä#=Ä aÄ kÄxÄ~ÄÄ -—Ä¢Ä¿Ä ÓÄáÄõÄ - ÅÅÅ$Å6ÅFÅIÅ RÅ _Å -iÅtÅ „Å ¥Å ³Å½Å ÆÅ ÒÅ ßÅ -éÅôÅûÅ Æ Æ Æ#Æ9ÆIÆ\Æ qÆ}ÆÆ•ÆƥƾÆ)×Æ ÇÇ*Ç >Ç JÇ WÇ cÇmÇ …Ç “Ç ¡Ç®Ç±ÇºÇÀÇÇÇÚÇ -õÇ -È ÈÈ.<ÈkÈtÈ…ÈÈŸÈ¨È -±È ¼È ÉÈ×ÈèÈûÈ ÉÉ *É 8ÉEÉ UÉcÉ vÉ „ÉŽÉ¢É¨É ­É·É¿É ÓÉáÉóÉ ÊÊÊ#Ê3ÊLÊSÊ [ÊhÊ yÊ…ÊŽÊ¡Ê²Ê ÅÊÑÊ éÊóÊöÊ ûÊ Ë Ë !Ë.Ë!=Ë_Ë}Ë’Ë ™Ë£Ë·ËÊËßË/ôË $Ì 1Ì;ÌRÌiÌ$‡ÌK¬Ì=øÌ56ÍlÍÍ)›ÍÅÍÎÍ×ÍàÍøÍ:Î,IÎ%vΜΥλÎB×ÎÏ"Ï+Ï<ÏSÏ -YÏdÏÏ œÏ©Ï°Ï¹ÏØÏëÏÐÐ -#Ð .Ð8Ð >ÐHÐQÐ ZÐ -dÐoÐМдР½ÐÇÐ ÐÐ ÜÐèÐíÐ Ñ&Ñ -:ÑEÑdÑtÑxруѓїѧѼÑÂÑÈÑVÌÑ#Ò@ÒOÒjÒpÒ wÒƒÒ'›Ò%ÃÒ$éÒ$Ó#3ÓWÓ -`ÓkÓrÓvÓ~ÓƒÓ‡ÓÓ -•Ó - Ó«Ó¯ÓµÓ½Ó0ÌÓ@ýÓ >Ô[¯­›}røʪ2ç7=ù€ž-‡~U³º>8 W8WÌòV¸nÚ•€ê†Ã0¡ŠeŸÜr<Ý4üãšOÍ®š†¨éÝŒ° S ß+#åc8ùt®ù§W–sòï£lBýg\0'ÍG©=b½mŒº/¿x:‘Ö¦6 ø\T\ן¬Ã#ìýB-ÂLÞƈSs‰àïM2 Ï=€±ÏMú‰ÛåHÕv;—í§3%(þ ÌºÅÜ—w$ Z_v ê!Reþ÷`Hxç+±¼ B†Z„´ ¢X‚!¾+[À!Æ·¥+*¼hesªcw3 ‚ÅëÂã0žiŠò# Òô§oëLóž›TÓÔKªXg€_ -ÚN;69 ^ÖÚÞ¥´öP Œzï}"„+²Ûß, –éêùn( µÞµ2§.Cö/µ™ðœ‡­£VƒèúšG9×ô·üEO=OÄv!ú†õ1_çš>ö¡Ã?¯þpÝÖ¯è _,Ë] C ‹ë6`€G|ž  {89ßÑ®áØvS½›àýºXÖãœãÛ”(¥M ÉåU0 Nÿ±XÓ½E : ¼2Òr”˜ÍHƒ³ªÁa„ꋺð5oÇVhü­|?B¡A &4³~ µ’>LÛfÞË$®0èâ¼5Ÿ™47zç³–ç±}Ï -€]ÈP•ú -¸]F 2ð -•"x[§i„'Éø¬eãï&ñ’Ç›("äqä>ŠU9Ü…±m> t`,’ÜrGäÀQ¶v¸¨Š - ' Ó´âÉù|’¿è£Ð,NÍí34±ã Dn†EŸ›3$ i«¸gùìLÔéc>túIÐB†·'^ü©"Û~@! ûÀŽ]ïY ìø ]èw7Q-Ý—hË ”€i«©–UªËˆAî yJá…OyAjapmÐZü D­Ùš k,º{Z…΋ol *#¨(¹S1 åWȸÉ@Ӊίzo*ŒVoŽELVÔœrG ©J ; ?=|Qí›Ì´ñ áþ Ì—fJÙY@0«¤bø—ÔX% =óvRIm/IÆjûF1Y&wÓÜXÚ$æ ômŠYi4È TsGAè}*2ÿC厎N¡ïÜRkH²¢‘ñmŸ«!r£ükE«Õß”‡^Tm·ÅŽ A^­N Y¿I½?3[ÍÖ' K1e,&n-wkɺôÐkd6êoI˜“Š¨›ƒ³ó—¦;Ç0•Cæ× ß—§5?HuW ŒÄqÿÕSB  ï>I”ýÀﶷý ‘d†IÂÁa;Þu°d½ ÑF²£¤ŒL×eèß[BR°°Æ -zfþNñ¥\Ï[é)çóNž‡ÒòC¾Ëùö øà^™ÿ.îku•1ã:vKÂdAát*5 X»s­C•H6vÉÖ¶TFc­x'^+ûf( ÷Ä–ŒHÒ*ÕNÙòæ‘ JƒO ¨#QqAÌj™;:Q Ì ×Õ…Äü&(mBì²ôÛ÷è -6‡£uÎëÕ.öžj.  ‰’\t¬p¶kÄÍüêb%Qý¢`泃zF£gœé0|ˆð8SqÔß wñ&"§F¢)}Põâ@ ¬œµJœÈæa¥2Ò¥ÇxJwÉÄÏ<¥êFPúСÑp¢#4p›5 ðqc)¹K“Sê';«·ëÚ$ÿÓ'O/Î txƒÌ< L ΑÈt£ëÏâlCµœõÜ%B j§Âi+š ,÷1¤l¶K@ f-= "& “Ñ)s…äØd+òT "¿W¹¦=AÏôÆ&sjíÐà®<›þÐæH ¬ñ?‡óÔñDEO±Ø«$À…ÑC„bñU -%íÞ“×êMÑóVJ €°ag‰˜<ø~\ 6K Ó? yBß‹¯Dä"Å/ÊÅr =ô[ Z¬ØÚTðé„h- ¤<@ì]i lc d»ÿ] ‰JU:*ó¦pð4à`V‡˜¯Û}‘P“ku é V ¿ŽA?4 ^ÊFåPZ—ªDasˆ»wó©x†~n„ÜD7.Ë[ô7 l¤-1ÒoÚ‚´;î~ûC@ÛbÀ 12Ýò³ž™Ã¬Þ/¹ÁØ%†Öw:ÃÊ ;”#Xy(+ÜÙÃØ"擹MÙÊWUÆ”Ìy…åƒ. ²%°ÞõnÑdòà´{ÖæeÁƃæIy™±€½¢žh`h{ë O 6 ²@œg¡Ðèl >5 C‹ª@Ý9‚ÈVšXG‘´=Ŷ:l˜±øMÑ {õp¾•L÷ýbK ¢ÀìÇö:áf· ³îÒ~tES ÓG¾çn¬!Guj$ˆ2)ÿ<éKÝTýu*P9ì>ls¢Óà#5E¾9íY߇[ú$z¡“z[ÇGûeد’fà jüDúM¹}¦…uôÍ,>¾~Žc3xi9Ò•÷IÍ7ò.‚»z#õžFÚQSA8©%Œ1îΘ©´ -Ÿ)Â/’{½Q¼agÙ¸Á9(®bþ;oR4þQ²‹ë\ä ¿¤Å˜#Ý:«M L”âPí,ÊÎõ»¨¡ŠD©Õ ²%Ð÷$à¸É¿}* š._|'-h Á7Ϙ&÷´8|‹¡äáħ$) þ_Ò°) xÌŠÞµãʼnö]¶ûq^i¾úU)ùO°!ã{â+ ^²MY·ÉHö n¨àR ?@ ÊY ÈM‡^ hRŸ×¼»JbýX í‹Æ7-¼EךR _]<¼{TEaŽ®\5Äk¹Õ‹\(–! yqÀWñ3ºyP®¥ V–¿5/ ÚWÙZâªá`I 3P‚û…‘³f ¬îåù¤ÙÕûáªÝ–¥á4Ûp»7S|r«ïË~Ñ!â& ¦¨3rÿ™¤ì¹Z ¯œZð®U ˜íÇî<-‘‚YëÖ¦—<L*ìÎn×»K‰q.à -H eÁ¨» " „Ù•–d°|Ë NW ¹øˆpŽ,äˆ:‰8ój\zaˆÔé÷¤¾Z0b¿_ÿcÁ0Ê ¸ `5R1À¢gŠ ç6¶ä”_’UÇ’{¦½OD½hD ™2ŒJcö]Ÿ`ˆº9vØF?õ·)ðÔ8Í'Q¯¦RKÄ©õØy8/ µÏ¶­¼ÎâÂgÅÆ “ ÇoÁm%dÂt¸q6 Nf}7å­.“Ô Èµu‚‚™3/ûÈçTþËYÊ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.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: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.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-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 - -Neplatná volba "%s" - -Užití: %s [volba ... ] [soubor ... ] - - --batch-interpreter - Procedura, kterou zpracovávat dávkové příkazy. - --debug-handlers Povolí ladicí obsluhu nefatálních signálů. - --display Použije zvolený X displej. - --dump-gimprc Vypsat soubor gimprc s implicitními nastaveními. - --no-cpu-accel Nepoužívat speciální akcelerace CPU. - --no-shm Nepoužije sdílenou paměť mezi GIMPem a zásuvnými - moduly. - --pdb-compat-mode - Režim kompatibility Procedural Database. - --session Použije alternativní soubor sessionrc. - --stack-trace-mode - Ladicí režim pro fatální signály. - --system-gimprc Použije alternativní systémový soubor gimprc. - --verbose Zobrazí zprávy o spouÅ¡tÄ›ní. - -b, --batch ProvádÄ›t příkazy dávkovém režimu. - -c, --console-messages Zobrazí varování na konzole namísto dialogového okna. - -d, --no-data NeÄte stopy, pÅ™echody, palety, vzorky. - -f, --no-fonts NenaÄítat písma. - -g, --gimprc Použije alternativní soubor gimprc. - -h, --help Vypíše tuto nápovÄ›du. - -i, --no-interface Spustit bez uživatelského rozhraní. - -s, --no-splash Neukáže okno spouÅ¡tÄ›ní. - -v, --version Vypíše informace o verzi. -%d vrstvy(ev)%d dpi%d dpi, %s%d vrstev%d minut%d sekund%d × %d dpi%d × %d dpi, %s%d × %d pixelů%g × %g %s%pKopie kanálu %sKanál %s do výbÄ›ruZpráva %s%s kopie%s maska%s%sKlepnutí: rozšířit výbÄ›r%s%sTáhnutí: posun a komprese(%0.3f, %0.3f, %0.3f)(Nic)(Toto okno konzoly se zavÅ™e bÄ›hem deseti sekund) -(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 %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í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.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í 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 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': -Nesouhlasí typ argumentu #%d (oÄekávám %s, dostal jsem %s)Chyba volání PDB: -procedura '%s' nenalezena_VzorkyPříliÅ¡ žluÅ¥ouÄký kůň -úpÄ›l Äábelské kódy.KresleníMožnosti kreslení sdílené mezi nástrojiProcedury kreslicích nástrojůKreslicí nástroj:_Režim kresleníKreslení neostrých tahů Å¡tÄ›tcemKreslení pixelů s ostrými hranamiKreslit pomocí stop nebo oblastí obrázkuÅ tÄ›tecPa_letyPaletaEditor paletyMenu Editor paletyAdresáře s paletamiUI Palety_Název palety:_Soubor palety:PaletyMenu PaletyProcedury parazitůParazityZpracovávám '%s' -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ář 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 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..._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 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 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. -Dialog pÅ™echodů otevÅ™ete klepnutím.Aktivní obrázek. -Dialog obrázku otevÅ™ete klepnutím.Aktivní vzorek. -Dialog vzorků otevÅ™ete klepnutím.Barva pozadí mřížky; používá se jen u dvojitÄ› Äárkovaného stylu Äáry.Dávkový interpretr '%s' není k dispozici, dávkový režim zakázán.Nastavené kódování souborů nelze pÅ™evést do UTF-8: %s - -Zkontrolujte prosím hodnotu promÄ›nné prostÅ™edí G_FILENAME_ENCODING.Název souboru '%s' nemohl být pÅ™eveden na platné URI: - -%sBarva popÅ™edí mřížky.gimprc se používá pro ukládání osobních nastavení, která ovlivňují implicitní chování GIMPu. Také zde mohou být nastaveny cesty pro hledání stop, palet, pÅ™echodů, vzorků, zásuvných modulů a modulů.Vodorovné rozliÅ¡ení obrázku.Vrstva, kterou jste vybrali, je vrstva textu, ale byla upravena jinými nástroji. Úprava vrstvy s nástrojem text tyto zmÄ›ny zahodí. - -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_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 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í 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.8/po/da.gmo gimp-2.2.9/po/da.gmo --- gimp-2.2.8/po/da.gmo 2005-03-14 11:01:06.000000000 +0100 +++ gimp-2.2.9/po/da.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,492 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·4¸5¹%N¹ut¹Oê¹8:ºLsºDÀº\»pb»>Ó»u¼Bˆ¼8˼=½QB½S”½;è½6$¾7[¾9“¾3;8¿:¿A¿ -H¿S¿ Z¿ f¿ r¿~¿Ž¿ -ž¿©¿ ¬¿¹¿ пÞ¿æ¿ï¿ À'À=À.EÀtÀŽÀ -¤À¯ÀµÀ ÌÀÖÀÞÀäÀ êÀ øÀ Á Á - Á -+Á 6Á CÁOÁ `Á lÁxÁ }Á‰Áf™ÁÂ1€Â,²Â)ß Ãà -%Ã0à 9à ZÃhÃ~ÆÙà «Ã¹Ã!ÎÃðÃÄÄ:Ä OÄ[Ä sĀĔĥÄÁÄÜÄõÄÅÅ1:Å7lŤÅ$ºÅßÅûÅÆÆ<ÆQÆeÆ{ƙƯÆÃÆÙÆøÆÇ 0Ç:ÇSÇ\ÇrÇ!Ç£Ç·Ç ÀÇ ÊÇ -×ÇâÇ?ôÇ<4É:qɬÉÅÉÊÉÝÉ™ãÉ -}Ê ˆÊ©Ê¾ÊÙÊ áÊ -îÊùÊËË*Ë:Ë@JËK‹Ë×ËBìË/Ì>ÌMÌaÌ~Ì›Ì -¬Ì·Ì¼ÌÒÌçÌ#Í *Í6ÍIÍ^ÍsÍÍ ¤Í²Í»ÍÊÍâÍ÷Í.Î%=ÎcÎjÎ -oÎ z·ÎÎ ªÎ´Î&½Î -äÎ+ïÎ -Ï&Ï+Ï 1Ï;Ï -RÏ]ÏrσϜÏ3¯ÏãÏêÏ ûÏÐÐ#Ð +Ð7Ð GÐTÐ -eÐpÐ uЃÐÑ Ñ&Ñ -6Ñ AÑNÑiÑÑ •ÑŸÑE¶Ñ8üÑD5ÒDzÒ9¿Ò`ùÒ ZÓ{Ó6—ÓÎÓHåÓ.ÔLÔlÔ‰Ô¥Ô·Ô -ÔÔ -ßÔ êÔôÔ Õ'Õ<ÕSÕeÕ՜շÕÒÕ-éÕÖ7Ö=Ö -MÖXÖwÖ -•Ö Ö»ÖÖÖëÖÿÖ×× "×,×=×T×[×`× d×n× ‡×•×ž×@·×=ø×>6Ø?uØ:µØ6ðØ.'ÙVÙvÙ”Ù>´Ù&óÙÚ+3Úk_Ú>ËÚ! -Û!,Û:NÛ9‰ÛÃÛ ãÛñÛÜ -Ü*ÜEÜ[ÜcÜjÜ}Ü‘Ü  Ü®Ü¶Ü ¼ÜÉÜáÜðÜÿÜÝ/"Ý RÝ \ÝiÝ pÝ -|Ý‡Ý—Ý®Ý ÇÝ.ÓÝÞÞ,Þ>ÞNÞ ]Þ gÞ sÞ -}ÞˆÞ#˜Þ$¼ÞáÞøÞ ß$ß@ß_ß!}ߟ߹ßÌß$åß -àà4àHà^àgàvà‚àá á -á á0á!Pá)ráœá·á/Êá/úá*âHâWâoââ‘â -±â-¼âêâ/ã6ã+Qã&}ã'¤ã(Ìã%õãä1:älä sä €äŽä£ä¸äÉä%Þä,å1å,Fåså‹å å¹åÏåçå"ðåæ-æ @æMæ.]æ -Œæ —æ¥æ«æ¾æÍæÜæïæ ÿæ ç ç(ç:ç LçVç-]ç‹ç›ç±ç"Êçíçòçèè èè/èCèRècèsè‡èžè®èÀè Óèáèôèéé é' é"Hékézéé1­éßé -óé -þé êê -ê 9ê Fê Tê`ê -rê }ê‹ê”ê -¥ê °ê ºêÈêäêëë ,ë :ë[ë -jë/uë ¥ë±ë ¸ëÅëÍë Õëáë éë óëìì,ì EìQìdìsì „ì’ì§ì®ì·ìÆìÖì$ßì8íE=í5ƒí ¹í ÃíÍíßí -ðíûí -îî'îCîWî fî rî ~îŠî -™î ¤î°î ¿îËîàî öî ïMï!^ï€ï ‘ïŸï ²ïÀïÐïßïòïð(ð <ð Ið Wðdðmð†ðšð¶ðÒðíðÿðñ'ñ?ñ^ñxñŠñšñ³ñ"Âñåñ÷ñò!ò:òMòcò€ò -‘òœò ¥ò ¯ò"½ò àòìò-ó/ó:Fó"ó¤ó&­ó)Ôó%þó"$ô.Gôvôô –ô£ô-ªôØô öô õ -õõ(õ-Hõvõ+–õ Âõ!ãõ$ö*öTHö^öüö ÷ ÷÷+÷'C÷k÷†÷•÷ª÷¼÷ Ö÷ ÷÷ø*ø<øQø føtøˆøœø²øÃøÛø+âø'ù6ù4<ùNqù=Àù6þùE5úB{úE¾ú;û=@ûz~û6ùûE0üRvü=Éüsý?{ýI»ýMþ~Sþ -Òþ Ýþêþ ûþ ÿ#ÿ'ÿ:ÿIÿQÿbÿ rÿÿ •ÿ¢ÿ¹ÿ×ÿíÿ-BZu…›¶%Òøþ##*N^x’¬¾Ñáò -÷  # 4 B O\ t ~ˆž ­ºÒí*6agmt… œ ¨´QÄ-6ÆÕí  ! /= F<P¤ »ÉÒ èô '7O -do–°~Á@ÖQ(}* ¨ i¸ " -( -o1 -¡ -¸ - Î -Ø - ê -ø -  8 -N ,| © MÄ    +  >  K W  \ f l  s €  • ¢ ³  Ê × ÷   , F ` o $x   -¶  Á Ï  Ø â é ñ ø  5Rd -it‡£^¨ - +4L<&‰E° ö5I`fl{„— -§²· Ë‚ÙÍ\G*<r*¯Úâó -! 2Sd u–¯ É)×  Ph y -… ™¥¿Ïäû!1 A -KV -g r~ž -¦±Ä€á -bm™´ÔÝî ý  _':‡;Âþ+) Ubx‹š"©Ìâ ö!&(E.n%*Ãî7 PZj,~«"¿*â  -0; R^qˆš±ÃÌÛñ6N _l™­!Èê '9Re  »Ï ×åú <S$cˆ‘¤´Çäíò    8$  ] k  ’  ©  ³  Á Î Ý ú !1!L! e!s! !š!¬!°!!¸!Ú!ó!"I "V"/_" ""­"³" Å" Ò"!Þ"#### .#<#"S##v#š#°# -Ç# Ò# Þ#ì# $$#$ 9$C$ -V$a$u$ Š$–$ «$µ$ -È$Ó$ ç$ ñ$û$ %%#%,%5%'H%p%Š%¡% ½%Þ% æ%'ó%$&@&!V& x&†&&¦&*¿&ê&ò&ù& ' '#' 4'A'T'i'€'—' -«'¶'Æ'Ö'ì' -()(( R(^($z(Ÿ(§(®( ¿(É((Û())))A) S)a) s))Š)ž) -£) -®)¹)Ñ)ã)÷)**'* 6*D* T*a*y*ˆ*ž*µ*Ð*ê*ý*+ + +$+,7+d+i+ -o+z+ ƒ+‘+¬+Ã+ Û+ç+ï+÷+ , ,',0, M,Y,p,‡,˜,§,¯, -Ë,Ö,ß, -û, - -0 -Q-&d-‹-§-"Á-.ä- ..;. L.Z.`.q.x.‰.™.¨.F¿.H/ O/p/ -ƒ/ Ž/ ˜/ ¤/²/ Æ/Ò/ã/û/0Œ 0™0ª0»0Ì0Þ0 ã0ð011*1 =1 K1X1m1†1£1·1Î1 ä12 %2 /2 ;2G2 Z2h2o2 ~2Wˆ2)à2 -3<3Q3)U33™3 ¨3´3Ô3&ï3 4 "4,424B4 W4c4u4 †44 ™4£4 -µ4À4Ð4Ø4ï4 5 -5$545.S5,‚5 -¯5º5¿5Î5Ý5ì5 6%6?6Y6m6;€6¼6Ï6 Õ6ß6è6÷6 7 7-7 67C7K7R7 j7v7 -‹7–7¯7Á7"Ô7 ÷78808 B8L8^8 v8 „8’87›8?Ó89$949J9(`9(‰9ò9Dv:»:Í:Eß: %</<8<H< Q<_<v<.< ¾<Ì<á<ð<ö<ÿ< = =*=>=¼S=>">4> =>I>R> -[>!f>#ˆ> ¬> ¹>Å>Û> ë> ÷>???0? -A?L?!T?v?‰? ˜?¹?È?×?é?@ @ -@@2@F@O@ `@j@|@ -@š@­@¶@ Ç@Ñ@ã@ A "A,A;A$KA!pA’A ¯AÐA ìA ùA;BRAB:”B:ÏBJ -CUC5[C0‘CÂCÕCçCþCD D)D0:DkD|DD¡D ³D¿DØDôDPEaEpEƒE™E²E ÅEÏEéE -FFF2F KFYF5pF ¦F ÇF -ÔF ßF$ëFG G/G @G -MG XG dGrGzGšG¢G»GØGèG -þG H H H8H(XHH•H$¬H0ÑHI,ILI]IxI•I¯IÉIâIùI"J:8J sJJ “JŸJ®JÀJ7ÜJ!K6K>KFKcKGsK#»KßK÷KL L#L 9L -FL QL]L mL{LŠL -©L´L½L -ÂL ÍL ÙLçL îLüLM!M0M7M@MDM -YMdM wMƒMŸM ·M#ÄMèMNN 7NCNSN kNyNN4¢N×NôNOOV"XV{V™V¹V ÐV!ÜVþV -W$WïX6.YCeYB©YìY Z*Z >ZHZ]ZwZ‡Z¦Z¶ZÖZ éZõZ [ [2[ G[S[q[ ˆ[©[¿[Þ[÷[\6\V\n\ƒ\œ\±\Æ\Ú\ì\]è!]4 -^b?^F¢^Eé_//`’_`2ò`%aœÃa7`bQ˜bFêbk1cBcŒàcÈmdî6f<%g;bgµžg -Th_hghlhrhŠh£h¼hÃh×h ïhùh i!!i Ci Oi ]iki9ri ¬i ¹iÇiØiêiýi jj+j!=j_jrj‚j ‘j/ŸjÏj ãjïjkk/kFkWkrkk’k#¤kÈkÛkîkþkll 2l>lWl -ol -zl…lžl ½l1Élûlmmm+m3mCmYm om }m‡m m -—m ¢m ®m6ºmñm -sn~n”n©n±nÃnÕnÛnùno.oGofo}o ˜o -¹oÄoÕoÛoäoþo p (p 6pCpYp -iptp}p †p”p ¥p ³pÀp Òp àp ípq%qDqYq3vq ªq"´q ×qåq þq rr "r -/r:rIr!_rr -‡r’r¢r «r¹rÉrKÑr3sBQs4”s7ÉsMtFOt€–t<uTuçruZvëzv -fw¬qx‡y6¦yIÝzè'{|…/|Ÿµ|U} -Z}e})l}9–}ÈÐ}D™~CÞ~="A`(¢BË›€[ª€:6AœxD‚EZ‚8 ‚ÆÙ‚× ƒåx„ë^…ŸJ†¨ê†œ“‡œ0ˆ8͈¡ŠF¨ŠïïŠ÷ß‹1׌( e2˜+¡ Í× ê Ž +Ž5Ž;Ž KŽUŽ ÕŽߎøŽ-Eax‘ ½ÎÞ òþF T‘e‘ }‘Š‘‘´‘Å‘ב#í‘’"’4’K’Z’t’…’–’¦’½’ Î’Û’à’é’Mþ’7L“B„“˜Ç“:`”\›• ø•––#–9–A–H–W–o– -v– -–#Œ– °–(Ñ–6ú–1—O—m—‰—š—¸—Ï—â—ó—ú—˜˜3˜<˜KC˜%˜ -µ˜ À˜̘Иà˜ï˜ þ˜ ™ ™' ™$H™m™†™4Ÿ™JÔ™1š[Qš¢­š£P›$ô›)œBCœ?†œ&ÆœVífDžt«žZ Ÿ]{ŸmÙŸkG j³ r¡F‘¡MØ¡H&¢lo¢pÜ¢MM£p›£ƒ ¤¤.•¤ĤˤӤ椥 ¥#¥4%¥lZ¥Ç¥É¥Í¥<Ò¥¦¹-¦Vç¦'>§mf§ZÔ§_/¨¨«¨ ´¨¾¨Ǩ Ϩ Û¨ -è¨ ó¨ý¨ ©©0!©R©[©m©u©{©Œ©©™©³© Í©Û©ï© ªª ª +ª7ª Oª\ªdªjªmª}ªŽª©ª Ȫ -éª ôª««$«6« G« U«b«y« -|«‡« «š«´«º« ¿«É«Ыâ«(ê« ¬¬-¬6¬I¬h¬†¬—¬ -¬¨¬¹¬ ɬÖ¬ è¬ ô¬­ ­ ­ *­ -6­A­S­ m­{­­ ž­ ª­ ¸­Æ­Ï­ã­ý­ ® -® &®0®D®a®u®‹®¦®¹®Ö®ì®¯!¯6¯=¯ E¯R¯b¯ g¯t¯¯¡¯ §¯µ¯ɯ ϯ Û¯è¯ù¯° ° -°°.° ->°I° -`°k° z°„° Œ° –°¢°ª°°°·° À° -Ê°Õ°é° ø°± -±$±3±9±>±C±Z±l± Œ±™± ¨± µ± -Á±̱Õ±ݱ õ± -² ²²² %²1²8²M²b²j²r²†²) ²ʲÓ² ã²í²³³ ³ -³ ³ )³6³ F³S³ \³ h³r³ {³ ‡³•³ ¥³±³ ¸³ij˳ҳⳠô³´ ´´ .´;´B´K´`´s´ z´ „´ ´´ -¬´·´ Ì´Ù´ ñ´ý´µµµ µ (µ 4µ ->µIµYµrµƒµ›µ £µ°µµÖµéµ'üµ $¶.¶6¶J¶d¶"}¶7 ¶3ض6 ·C·]·o·· -—·¢·§·¼·&Ñ·#ø·&¸C¸L¸`¸&p¸ -—¸ -¢¸­¸øÚ¸à¸è¸ý¸¹¹ ¹)¹8¹K¹a¹ v¹ -€¹ ‹¹—¹ ž¹«¹ ²¹ -¾¹ ɹÖ¹ñ¹ºº &º4º=ºBº Jº,Tºº žº«º ´ººѺ Õºáºäºóº÷º -ýº»»»;»T» k» u»‚»ˆ» -»š»©»"¾»$á»!¼#(¼ -L¼ -W¼b¼h¼j¼r¼w¼ ~¼ Š¼ -˜¼ -£¼®¼´¼¼¼üšÒ¼5m½$£½[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-26 13:18+0100 -PO-Revision-Date: 2005-03-13 19:33+0100 -Last-Translator: Ole Laursen -Language-Team: Danish -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Ugyldigt tilvalg "%s". - -Brug: %s [tilvalg ... ] [fil ... ] - - --batch-interpreter - Den procedure som batchkommandoer skal processeres med. - --debug-handlers Benyt ikke-fatale fejlsøgningssignalhÃ¥ndteringer. - --display Benyt den angivne X-skærm. - --dump-gimprc Udskriv en gimprc-fil med standardindstillinger. - --no-cpu-accel Benyt ikke specielle CPU-accelereringer. - --no-shm Benyt ikke delt hukommelse mellem Gimp'en og udvidelsesmoduler. - --pdb-compat-mode - Kompatibilitetstilstand for proceduredatabase. - --session Benyt en alternativ sessionrc-fil. - --stack-trace-mode - Fejlsøgningstilstand til fatale signaler. - - --system-gimprc Benyt en alternativ system-gimprc-fil. - --verbose Vis meddelelser under start. - -b, --batch Kør kommandoer i batch-tilstand. - -c, --console-messages Vis advarsler pÃ¥ konsollen i stedet for i et vindue. - -d, --no-data Indlæs ikke pensler, overgange, paletter og mønstre. - -f, --no-fonts Indlæs ikke nogen skrifttyper. - -g, --gimprc Benyt en anden gimprc-fil. - -h, --help Udskriv denne hjælpetekst. - -i, --no-interface Kør uden brugergrænseflade. - -s, --no-splash Vis ikke startsvinduet. - -v, --version Udskriv versionsinformation. -%d lag%d dpi%d dpi, %s%d lag%d minutter%d sekunder%d x %d dpi%d x %d dpi, %s%d x %d punkter%g x %g %s%p%s-kanalkopi%s-kanal til markering%s-meddelelse%s-kopi%s-maske%s%sklik: udvid markering%s%stræk: flyt og komprimér(%0.3f, %0.3f, %0.3f)(ingen)(Dette konsolvindue vil lukke om ti sekunder) -(unavngivent mellemlager)(unavngiven skabelon)(varierer)(ren)(ugyldig UTF-8-streng)(ændret)(ingen)1 lag1 lag15 grader %s16:1 (1600%)1:1 (100%)1:16 (6,25%)1:2 (50%)1:4 (25%)1:8 (12,5%)2:1 (200%)Transformerer...4:1 (400%)8:1 (800%)<%s><>For optimal ydelse i Gimp'en kan det være nødvendigt at justere nogle af disse indstillinger.Gimp'en - GNU Image Manipulation Program Copyright © 1995-2003 Spencer Kimball, Peter Mattis og Gimp-udviklingsgruppen.Tipfilen til Gimp'en kunne ikke fortolkes!Din Gimp-tipfil ser ud til at mangle!En fil ved navn "%s" eksisterer allerede._Læg til markeringV_inkelOm Gimp'enHandlingAktivér det _fokuserede billedeAktive filtreAdaptiv supersamplingTilføjTilføj al_fakanalTilføj alfakanalTilføj ankerTilføjelse af kanalTilføj farve til farveafbildningTilføj hjælpelinje: Tilføj hjælpelinjerTilføj vandret hjælpelinjeTilføj lag_maske...Tilføj lagTilføjelse af lagmaskeTilføj baneTilføj bestrygningTilføj tekstlagTilføj lodret hjælpelinjeTilføj en maske til lagetTilføj farve fra baggr.Tilføj farve fra forgr.Tilføj lagmaskeTilføj tekst til billedetTilføj den nuværende farve til farvehistorikkenTilføj det valgte filter til listen over aktive filtreTilføj til palet %sTilføj til den nuværende markeringTilføjer temaet '%s' (%s) -Læg tilYderligere pegekontrollerJustér lysstyrke og kontrastJustér farvebalanceJustér farvekurverJustér farveniveauerJustér lysstyrke og kontrastJustér farvebalancenJustér farvekurverJustér farveniveauerJustér farvetone/lys/mætningJustér farvetone og mætningJustér niveau automatiskJusteringAvancerede indstillingerPÃ¥virk:PÃ¥virket omrÃ¥de %sSprøjtepenselSprøjtepensel med variabelt tryk_Alfa til markeringJusteretJusteringAlle kanalerAlle filerAlle filer (*.*))Alle billed- og fortrydelsesdata som ikke passer i 'flisemellemlageret' vil blive skrevet til en reservehukommelsesfil. Denne fil bør placeres pÃ¥ et lokalt filsystem med tilstrækkelig plads (flere hundrede Mb). PÃ¥ et UNIX-system vil du mÃ¥ske bruge systemets mappe til midlertidige filer. ("/tmp" eller "/var/tmp").Tillad fuldstændigt gennemsigtige omrÃ¥der at blive udfyldtTillad fuldstændigt gennemsigtige omrÃ¥der at blive valgtTillad forstørrelse %sAlfaAlfa til markeringAlfa:Et billede af den valgte størrelse vil bruge mere hukommelse end der er konfigureret som "Maksimal billedstørrelse" under indstillingerne (aktuelt %s)._AnimationForankring af flydende markeringForankr flydende lagForankr flydende markeringVinkel:Antislet %sUdjævningUdseendeAnvendelse af lagmaske_Anvend lagmaskeAnvend tærskelAnvend lagmaskeEr du sikker pÃ¥ at du vil slette '%s' fra listen og fra disken?Er du sikker pÃ¥ at du vil slette skabelonen '%s' fra listen og fra disken?Som i _indstillingerSpørg efter bekræftelse før lukning af et vindue uden at gemme.Formatforhold:Formatforhold:ParasitvedhæftningVedhæft parasit til billedeVedhæft parasit til elementVedhæft parasitForfatter:AutoFølg aktivt _billedeFormindsk automatiskFormindsk markering automatiskTilpas vinduesstørrelse automatiskAutoindlæsAutomatisk bestemtTilgængelige filtreTilgængelige typer:Baggrundsfarve-udfyldning_Lysstyrke/kontrast..._MellemlagereBaggrundBaggrundsfarveBaggrundsfarve sat til:Baggrund: %d, %d, %dTilbage (korrigerende)Basér udfyldningsomrÃ¥de pÃ¥ alle synlige lagBasér markering pÃ¥ alle synlige lagBagvedKantBi-lineærSort og hvidSort:Bland endepunkternes f_arver_BlandingBlandingBland endepunkternes _ugennemsigtighedBlanding: Blanding: Ugyldig for indekserede billeder.Blander...BlÃ¥BlÃ¥:BlødgørBlødgør eller skærpIn_dram...Sæt ramme pÃ¥ kanalIndram markeringIndram det markerede medLysstyrke/kontrastLysstyrke/kontrast virker ikke pÃ¥ indekserede lag.PenselPenselredigeringPenselmapperPenselgrænsefladePensel:PenslerPenslermenuSpandudfyldningMellemlagereMellemlageremenuSværtningSlutEfter endelseVed at bringe billedet tilbage til den tilstand der er gemt pÃ¥ disken, vil du miste alle dine ændringer inklusive al fortrydelsesinformation.CMYK_Kalibrér..._Farveopsnapper_Kolonner:_KombineringKalibrér skærmopløsning%s kan ikke fortrydes_Lærredstørrelse...AnnullérAnnullér hjælpelinjeKan ikke tilføje lagmaske med andre dimensioner end det angivne lag.Kan ikke tilføje lagmaske til et lag uden en alfakanal.Kan ikke tilføje lagmaske til lag som ikke er en del af et billede.Kan ikke forankre dette lag fordi det ikke er en flydende markering.Kan ikke konvertere til en palet med mere end 256 farver.Kan ikke oprette nyt lag fra den flydende markering fordi den tilhører en lagmaske eller kanal.Kan ikke oprette mappen '%s': %sKan ikke generere miniatureKan ikke beskære fordi den aktuelle markering er tom.Kan ikke udfolde ${%s}Kan ikke oprette flydende markering fordi det markerede omrÃ¥de er tomt.Kan ikke hæve lag uden alfa.Kan ikke gemme. Intet er valgt.Kan ikke bestryge tom kanal.Kan ikke bestryge tom bane.LærredstørrelseLærred_udfyldningstilstand:Centrum x:Centrum y:CentreretSkift baggrundsfarveSkift farveafbildningselementSkift forgrundsfarveSkift billedopløsningSkift billedenhedSkift udskriftsstørrelseÆndr aktuelt lag eller baneSkift gitterbaggrundsfarveSkift gitterforgrundsfarveSkift indekseret paletVend perspektivet pÃ¥ laget eller markeringenÆndring af genvej mislykkedes.KanalKanalegenskaberKanalnavn:Kanalen kan ikke sænkes mere.Kanalen kan ikke hæves mere.KanalfarveKanal er allerede nederst.Kanal er allerede øverst.Kanal til _markeringKanal til markeringKanal til markeringKanal:KanalerKanalmenuTern_størrelse:Vælg bestrygningsstilCircle_RydRydRyd kanalRyd fortrydelseshistorikRyd alt tekstRyd fejlRyd fortrydelseshistorikKlik pÃ¥ "Fortsæt" for at acceptere ovenstÃ¥ende indstillinger.Klik pÃ¥ "Fortsæt" for at oprette din personlige Gimp-mappe.Klik pÃ¥ "Fortsæt" for at starte Gimp'ens brugerinstallation.Klik pÃ¥ "Fortsæt" for at fortsætte med brugerinstallationen.Klik for at forbinde dette anker med det valgte slutpunkt.Klik for at oprette et nyt anker (prøv skiftetasten).Klik for at oprette en ny komponent til banen.Klik for at oprette en ny bane.Klik for at oprette miniatureKlik for at slette dette anker.Klik for at indsætte en ankor pÃ¥ banen (prøv skiftetasten).Klik for at gøre denne knude vinklet.Klik for at Ã¥bne banen.Klik for at vælge bane der skal redigeres.Klik for at opdatere miniature -%s Klik for at gennemtvinge opdatering ogsÃ¥ selvom miniaturen er opdateretKlik-træk for at ændre formen af kurven (skift: symmetrisk).Klik-træk for at flytte ankeret.Klik-træk for at flytte ankrene.Klik-træk for at flytte komponenten (prøv skiftetasten).Klik-træk for at flytte hÃ¥ndtaget (prøv skiftetasten).Klik-træk for at flytte banen.Klik: markérKlik: markér Træk: flytBeskær resultatKlippebordBeskæres til nederste lagBeskæres til billedeKloningLuk %sLuk alle fanebladeLuk alle faneblade?Luk denne fane_Kopiér bane_FarverFarveFarvebalanceFarvefremvisningsfiltreFarveopsnapperFarveopsnapperFarve_balance...Farve_reducering:Farvebalance virker kun pÃ¥ lag med RGB-farver.FarvesletFarveindeks:Farve:Farve_paletFarve_rum:_Kulørisér...Farve_type for segmentFarve_type for markeringKulørisérKulørisér virker kun pÃ¥ lag med RGB-farver.Kulørisér billedetKulørisér billedetFarvekortlægningFarveredigeringFarvepaletmenuKolonner:Kom_mentar:KommentarKo_ntrast:K_onturændringKonfigurér farvefremvisningsfiltreKonfigurér _udvidede pegeenheder...Konfigurér g_itter...Konfigurér gitterKonfigurér billedgitterKonfigurér tastaturgenvejeKonfigurér tastaturgenveje...Konfigurér det valgte filterKonfigurér det valgte filter: %sBekræft billedstørrelseBekræft skaleringBekræft tekstredigeringBekræft lukning af _ugemte billederModstridende genvejeKonisk (asymmetrisk)Konisk (symmetrisk)Forbind bestrygningerKonstantBegrænsningerKontekstKontekstafhængige markører er lækre og aktiveret som standard. Men de kræver lidt mere, hvilket du muligvis ønsker at undgÃ¥.FortsætBidrag afKonvertérKonvertér kantKonvertér billede til grÃ¥toneKonvertér billede til indekseretKonvertér billede til indekserede farverKonvertér billede til RGBKonvertér billedeKonvertér billede til indekseret (skridt 2)...Konvertér billede til indekseret (skridt 3)...Konverterer til indekseret...KonturændringKonturændringstype %sKopiér navngivenKopiér _synligKopierer filen '%s' fra '%s'...Ophavsret:Ødelagt segment %d i farveovergangsfil '%s'.Kunne ikke oprette '%s': %sKunne ikke oprette midlertidig fil for '%s': %sKunne ikke slette '%s': %sKunne ikke finde Gimp'ens hjælpefremviser.Kunne ikke Ã¥bne '%s' til læsning: %sKunne ikke Ã¥bne '%s' til skrivning: %sKunne ikke Ã¥bne miniaturefilen '%s': %sKunne ikke læse %d byte fra '%s': %sKunne ikke søge i XCF-fil: %sKunne ikke starte Gimp'ens hjælpefremvisermodul.Antal:_Beskær lagOpret ny _dokOpret en ny skabelonOpret et nyt billedeOpret et nyt lagOpret en ny skabelonOpret en ny visning til dette billedeOpret et nyt billede fra den valgte skabelonOpret en ny skabelonOpret og redigér billeder eller fotografierOpret og redigér banerOpret bane fra tekstOpret markering fra baneOpretter miniature...Opretter mappen '%s'...TilskærTilskæring og størrelsesændringTilskæring og størrelseTilskæring af lagTilskær lagBeskær billedeTilskær eller ændr størrelsen af et billedeTilskær: Kun sigtekornK_lipK_lip navngiven...Kubisk (bedst)Aktuel _statusNuværende højde:Kun aktuelt lagAktuel statusNuværende bredde:MarkørMarkør_tilstand:Markør_udseende:KurvetypeKurverKurver for indekserede lag kan ikke justeres.BrugerdefineretBrugerdefineret farveBrugerdefineret overgang_Brugerdefineret udfyldningsfarve:KlipKlip navngivenCyanCyan:_Duplikér pensel_Duplikér kanal_Duplikér overgang_Duplikér lag_Duplikér palet_Duplikér bane_Duplikér mønster_Duplikér skabelon...Mørk ternfarveGør kun mørkereStreg-prik-prik...Streg-prik...Stiplingsmønster:Stiplingsforvalg:StipletDato:FejlfindingForvalgt udseende i fuldskærmstilstandStandardudseende i normal tilstandStandardgitterStandardbilledgitterStandard-_interpoleringstype:Forvalgt miniaturestørrelse for _lag og kanaler:Forvalgt _tærskel:Slet ankerSlet ankre_Slet lagmaskeSletning af lagmaskeSlet objektSlet segmentSlet skabelonSlet penselSletning af kanalSlet farveSlet overgangSlet lagSlet af lagmaskeSlet paletSlet baneSlet mønsterSlet gemte indstillinger...Slet det valgte mellemlagerSlet den valgte skabelonSlet dette billedeSlet vektorerSletning af "%s" mislykkedes: %sTætte prikkerAfmætningAfmætning opererer kun pÃ¥ lag med RGB-farver.BeskrivelseDesignEnhedsstatusEnhederVinduerVinduesmenuDiamantTræk fraDirekte farveDeaktivér lagmaskeDeaktivér hurtigmaskeKassér tekstoplysningerFremvisningVisningsnavigeringVis _filtre...SkærmprocedurerVisningstype:Viser [%0.6f, %0.6f]OpløsAfstand:Afstand: %0.6fFarvereduceringDividérForetag en _frisk brugerinstallationVil du nulstille alle filtre til deres standardværdier?Vil du nulstille alle værktøjsindstillinger til standardværdierne?Ønsker du at erstatte den med det billede du gemmer?Gem _ikkeDokobjektDokument_historikDokumenthistorikDokumenterDokumentermenuBlegning/sværtningBlegningBlegning-/sværtningsstrøgBlegning/sværtningDobbeltstipletTræk ankerTræk ankreTræk kurveTræk hÃ¥ndtagTræk baneTræk: flytTegn med blækTegneobjektTegneobjektsændringTegneobjektprocedurerDrop nyt lagDrop ny baneDa der ikke er nogen skrifttyper, er tekstfunktionaliteten ikke tilgængelig.Dump hændelser fra denne kontrolDuplikér penselKopiér kanalDuplikér overgangDuplikér lagDuplikér paletDublikér baneDuplikér mønsterDuplikér den valgte skabelonArgh: kan ikke fortryde_Eksportér bane...Meget l_illeKantopførselKant_findingRedigérRedigér kanalegenskaberRedigér kanalfarveRedigér farvepalet-elementRedigér farvepaletselementRedigér lagets egenskaberRedigér lagmaskeRedigeringstilstandRedigér paletfarveRedigér baneegenskaberRedigér hurtigmaskeegenskaberRedigér hurtigmaskefarveRedigér skabelonRedigér penselRedigér kanalegenskaberRedigér farveRedigér farvepaletselement nr. %dRedigér overgangRedigér lagets egenskaberRedigér paletRedigér bane-egenskaber_Redigér mønsterRedigeringsprocedurerRedigér den valgte skabelonEllipsemarkeringTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i miljøfilen %s_ReparationAktivér hurtigmaskeAktivér farvereducering pÃ¥ _gennemsigtighedAktivér denne kontrolAngiv om et praktisk tip til Gimp'en skal vises ved start.Angiv om værktøjstip skal vises.KolossalIndtast et navn til den forenede paletIndtast et navn til den gemte indstillingIndtast et navn til dette mellemlagerIndtast et navn til denne skabelonIndtast et nyt navn til de gemte indstillingerIndtast placering (URI):MiljøMiljømapperUdlignUdjævning opererer ikke pÃ¥ indekserede lag.Slet sÃ¥ baggrunden dukker opViskelæderFejlk_onsolFejlkonsolFejlkonsolmenuFejl ved gemning af XCF-fil: %sFejl ved fortolkning af '%s' pÃ¥ linje %d: %sFejl under læsning af '%s': %sFejl under læsning af penselfilen "%s": %sFejl under skrivning af '%s': %sFejl ved skrivning af XCF-fil: %sFejl ved skrivning af filen '%s': -%sFejl ved skrivning i '%s': %sFejl ved skrivning i den midlertidige fil for '%s': %s -Ingen fil er blevet oprettet.Fejl ved skrivning i den midlertidige fil for '%s': %s -Den originale fil er ikke blevet rørt.FejlHændelseMeget st_orUdvides efter behovEksportér bane til SVGEksportér alle baner fra dette billedeEksportér den aktive baneVirkningsgrad:Udvidede pegeenhederProgramudvidelserForgrundsfarve-udfyldningForgr. til baggr. (HSV med uret)Forgr. til baggr. (HSV mod uret)Fg. til bg. (HSV)Fg. til bg. (RGB)Fg. til gennemsigtigFg. til gennemsigtigFor-/baggrundFor-/baggrundsfarveLøsnen af flydendeStramning af flydendeFlydende til lag_Tilpas lærred til lagFalmenKunne ikke importere overgange fra "%s": %sKunne ikke importere baner fra '%s': %sSmartFatal fortolkningsfejl i penselfilen "%s": byte = 0.Fatal fortolkningsfejl i penselfilen "%s": filen ser ud til at være afkortet.Fatal fortolkningsfejl i penselfilen "%s": filen er ødelagt.Fatal fortolkningsfejl i penselfilen "%s": højde = 0.Fatal fortolkningsfejl i penselfilen "%s": er ikke en Gimp-penselfil.Fatal fortolkningsfejl i penselfilen "%s": ukendt Gimp-penselform.Fatal fortolkningsfejl i penselfilen "%s": ukendt Gimp-penselversion.Fatal fortolkningsfejl i penselfilen "%s": ukendt dybde %d.Fatal fortolkningsfejl i penselfilen "%s": ukendt version %d.Fatal fortolkningsfejl i penselfilen "%s": ikke-understøttet penseldybdde %d -Gimp-pensler skal være grÃ¥tone eller RGBA.Fatal fortolkningsfejl i penselfilen "%s": bredde = 0.Fatal fortolkningsfejl i farveovergangsfilen '%s': filen er ødelagt.Fatal fortolkningsfejl i fareovergangsfil '%s': er ikke en Gimp-farveovergangsfil.Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved.Fatal fortolkningsfejl i paletfil '%s': mangler magisk hoved. -Har denne fil behov for at blive konverteret fra DOS?Fatal fortolkningsfejl i paletfil '%s': læsefejl pÃ¥ linje %d.Fatal fortolkningsfejl i mønsterfilen '%s': kunne ikke læse %d byte: %sFatal fortolkningsfejl i mønsterfilen '%s': ukendt mønsterformatversion %d.Fatal fortolkningsfejl i mønsterfilen '%s': ikke-understøttet mønsterdybde %d. -Gimp-mønstre skal være grÃ¥tone eller RGB._Udvisk...Udvisk kanalUdvisk markeringUdvisk kanterUdvisk det markerede overFilFilÃ¥bnings_vindueFiloperationerFiltypeFilen eksistererFil er afkortetUdfyld kanalFyldugennemsigtighed:Fyldtype %sUdfyld lignende farverUdfyld gennemsigtige omrÃ¥derUdfyld hele markeringUdfyld med bg.-farveUdfyld med _bg.-farveUdfyld med fg.-farveUdfyld med _mønsterUdfyldning med mønsterUdfyld med gennemsigtighedUdfyld med hvidUdfyld med _fg.-farveUdfyld med _baggrundsfarveUdfyld med en farveovergangUdfyld med en farve eller et mønsterFyldt_FiltreDet resulterende forenede lag skal:Finding af sammenhængende omrÃ¥derFind ens farverTilpas billede til vindueTilpas billede til vindueTilpas billede til vindueTilpas til vindueFast formatforholdFast størrelseFladgør billedeVendVend kanalVend lagVend baneVend tekstlagVendingstype %sVend _vandretVend _lodretVend billedeVend lag og markeringerVender...Vender...Flydning af markeringFlyd markeringFlydende lagFlydende markering -(%s)Flydende markering til lagFlydende markering til lagFlydende markeringerFloyd-Steinberg (normal)Floyd-Steinberg (reduceret farveblødning)FokusMappeMapperSkrifttypemapperSkrifttypegrænsefladeSkrifttype:SkrifttyperSkrifttypermenuTil en korrekt installation af Gimp'en skal en mappe ved navn %s oprettes.Tving automatiske hintForgrundForgrunds- og baggrundsfarver. De sorte og hvide firkanter nulstiller farver mens pilene ombytter dem. Dobbeltklik for at Ã¥bne farvevælgeren.ForgrundsfarveForgrundsfarve sat til:Forgrund: %d, %d, %dFremad (traditionel)Fr_a baneFri markeringFri markeringFrihÃ¥ndFra _temaHent opløsning fra _vinduessystem (i øjeblikket %dx%d dpi)Fra venstre mod højreFra højre mod venstreFra markeringFra tema_Udflydende markeringFuldsk_ærmUdflydende markeringGimp'enGimp-programudvidelseGimp-meddelelseGimp - ydelsesjusteringGimp-udvidelsesmodulGimp-startTekstredigeringDagens tip til Gimp'enGimp - brugerinstallationGimp XCF-billedeGimp'en kunne ikke klargøre den grafisk brugergrænseflade. -Sikr dig at en korrekt opsætning af terminalmiljøet eksisterer.HjælpefremviserGimp'en blev ikke korrekt installeret for den aktuelle bruger. -Brugerinstallationen blev oversprunget fordi tilvalget '--no-interface' blev benyttet. -Kør Gimp'en uden tilvalget for at udføre brugerinstallationen.Gimp'en bruger en begrænset mængde hukommelse til at lagre billeddata, det sÃ¥kaldte 'flisemellemlager'. Du bør justere lagerets størrelse sÃ¥ det kan være i hukommelsen. Tag den mængde hukommelse der bruges af andre kørende processer, i betragtning.Gimp'en bruger en ekstra gtkrc fil sÃ¥ du kan konfigurere programmet -til at have et andet udseende end andre GTK+-programmer.Gimp'en versionGimp'en advarer ved forsøg pÃ¥ at oprette et billede der vil bruge mere hukommelse end denne størrelse.GammaGenereltDette angiver det minimale antal farve der bliver allokeret til Gimp'en (kun interessant for 8 bit-terminaler).Generér optimal paletSkaf skærmopløsningGigantiskGimprc-procedurerGl_aseffekterOvergangFarveovergangsredigeringFarveovergangsredigeringsmenuFarveovergangesmapperVenstre endepunkts farve for overgangssegmentHøjre endepunkts farve for overgangssegmentFarveovergangsgrænsefladeFarveovergangsfilen "%s" er ødelagt: Segmenter følger ikke intervallet 0-1.Overgang:FarveovergangeFarveovergangemenuUdtræk kornForén kornGrÃ¥GrÃ¥tonerGrønGrøn:HjælpelinjeGitterlinjemellemrumForøg kanalForøg markeringForøg markeringen medHjælpelinjeHjælpelinje- og gitterlÃ¥sningHjælpelinjeprocedurerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (farvetone m_od uret)HSV (farvetone m_ed uret)HTML-notation:_Højde:Hjælpe_fremviser der skal anvendes:HÃ¥ndtagsposition: %0.6fHÃ¥rd kantHÃ¥rdgør lysHÃ¥rdhedHÃ¥rdhed:HøjdeHøjde:HjælpHjælpefremviserHjælpesystemHjælpefremviser starter ikkeHjælpefremviser ikke fundetHjælpeprocedurerHex:Lyse tonerHint til _dokkene:Hint til _værktøjskassen:HintAnvendelse af hint ændrer skriftformerne for at give et tydeligt billede ved smÃ¥ størrelserHistogra_mHistogramHistogramskalaHistorikVandretVandret afsæt til den første gitterlinje; dette kan være et negativt tal.Vandret mellemrum mellem gitterlinjer.Hvor mange senest Ã¥bnede billedfilnavne der skal gemmes i filmenuen.FarvetoneFarvetone/mætningFarvetone/mætning virker kun pÃ¥ lag med RGB-farver.Farvetone/_mætning...Tone:EnormI_kon og tekst_BilledeIm_portér bane..._Interpolering:_Interval:IkonIkon og beskrivelseIkon og tekstHvis tilgængelige bliver hint fra skrifttypen benyttet, men du kan foretrække altid at benytte den automatiske beregning af hintHvis aktiveret, vil flytteværktøjet ændre det aktive lag eller den aktive bane nÃ¥r et lag eller en bane bliver valgt. Dette plejede at være den mÃ¥de programmet opførte sig pÃ¥ i tidligere versioner.Hvis du ikke gemmer billedet, vil ændringer fra for %s siden gÃ¥ tabt.Hvis du afslutter Gimp'en nu, vil disse ændringer gÃ¥ tabt.Ugyldigt variabelnavn i miljøfilen %s: %sBilledeBillede + gitterBilledredigeringBilledinformationBilledmenuBilledstørrelseStatuslinjeformatet for billederBilledskabelonerBilledminiaturerBilledtitel og statuslinjeformatTitelformat for billederUdseende af billedvinduerBilledvinduerBillede indeholder ikke nogen synlige lagBilledfilBilledmaskeBilledopløsningen er uden for grænserne, bruger standardopløsningen i stedet.BilledstørrelseBilledkildeBilledtypeBillederBilledemenuImporteringsindstillingerImportér paletImportering af banerImportér bane fra SVGImportér en ny paletImportér paletImportér banerImporteret bane_Blækpen_InvertérIn_vertér maskeForøgendeIndrykning:Indrykning af den første linjeIndeks:IndekseretIndekserede farverIndekseret farvekonverteringIndekserede farvelag bliver altid skaleret uden interpolering. Den valgte interpoleringstype vil kun pÃ¥virke kanaler og masker.InfovindueStartzoomforhold:Lagets maske starter som:Klargør udvidelsesmodulerKlargør udvidelsesmodul: '%s' -BlækpenIndlejret pixbufPegekontrollerPegeenhederInddataniveauerIndsæt ankerInstallér en privat farveafbildning; kan være brugbart pÃ¥ terminaler med indekserede farver.Installationen mislykkedes. Kontakt systemadministratoren.Installationen lykkedes. Klik "Fortsæt" for at gÃ¥ videre.Øjeblikkelig opdateringIntelligent _saksIntensitet: %0.3f Ugennemsigtighed: %0.3fGrænsefladeIntern Gimp-procedureInterne procedurerInterpolering:FællesmængdeKryds med den nuværende markeringKryds med (sigtekorn)Kryds med (prikker)Ugyldig UTF-8Ugyldige UTF-8-data i filen '%s'.Ugyldig UTF-8-streng i XCF-filUgyldig UTF-8-streng i penselfilen "%s".Ugyldig UTF-8-streng i farveovergangsfil '%s'.Ugyldig UTF-8-streng i paletfil '%s'.Ugyldig UTF-8-streng i mønsterfilen '%s'.Ugyldig tegnsekvens i URIUgyldig genvej.Ugyldig bredde eller højde. Begge skal være positive.InvertérInvertér kanalInvertér markeringInvertering virker ikke pÃ¥ indekserede lag.Invertér markeringEr dette hvad du ønsker at gøre?Det ser ud til du har brugt Gimp 2.0 før.ElementegenskaberElementsynlighedJustering:Behold gennemsigtighedBehold overBehold forhold %sFast formatforhold %sBehold højde %sBehold gennemsigtighedBehold bredde %sTast nedTast ned (Alt)Tast ned (Ctrl + Alt)Tast ned (Ctrl)Tast ned (Skift + Alt)Tast ned (Skift + Ctrl + Alt)Tast ned (Skift + Ctrl)Tast ned (Skift)Tast venstreTast venstre (Alt)Tast venstre (Ctrl + Alt)Tast venstre (Ctrl)Tast venstre (Skift + Alt)Tast venstre (Skift + Ctrl + Alt)Tast venstre (Skift + Ctrl)Tast venstre (Skift)Tast højreTast højre (Alt)Tast højre (Ctrl + Alt)Tast højre (Ctrl)Tast højre (Skift + Alt)Tast højre (Skift + Ctrl + Alt)Tast højre (Skift + Ctrl)Tast højre (Skift)Tast opTast op (Alt)Tast op (Ctrl + Alt)Tast op (Ctrl)Tast op (Skift + Alt)Tast op (Skift + Ctrl + Alt)Tast op (Skift + Ctrl)Tast op (Skift)Tastaturgenveje kan omdefineres dynamisk i Gimp'en. Menurc gemmer konfigurationen sÃ¥ den bliver husket ved næste session. Du kan redigere denne fil hvis du ønsker, men det er meget lettere at definere tasterne inde i Gimp'en. Sletning af denne fil vil genoprette standardtastaturgenvejene.TastaturTastaturhændelserTastaturgenvejeVenstre mod højre_Venstre endepunkts farve...LandskabStorStor (256x256)Større eksemplerSidste fejl:LagLaget "%s" har ingen alfa. Laget blev placeret over det.LagegenskaberLag_kantstørrelse...Fyldtype for lagLagmaske til markeringVælg lagLagstørrelseLag_tilstand_Navn pÃ¥ lag:Laget kan ikke sænkes mere.Laget kan ikke hæves mere.Laget er allerede nederst.Laget er allerede øverst.Lag til billedstørrelseLag til _bundLag til _billedstørrelseLag til _topLagets _alfakanalLagLagmenuIndstillinger for forening af lagVenstre endepunkts farveVenstrejusteretLængde:Lad Gimp'en forsøge at gendanne din sidste gemte session ved hver start.NiveauerNiveauer for indekserede lag kan ikke justeres.Lys ternfarveGør kun lysereLinjeLinje- -mellemrum:Linjebredde:Linje_stil:Linjestil som bruges af gitteret.LineærKædet elementIndlæsIndlæs kurverHent niveauerHent højre farve _fraIndlæs kurveindstillinger fra filIndlæs niveauindstillinger fra filIndlæs tekst fra filIndlæser miniature...Placering:LogaritmiskLange stregerLeder efter datafilerSænk kanalSænk kanal til bundSænk kanal til _bundSænk lagSænk lag til bundSænk baneSænk bane til bundSænk bane til _bundSænk kanalSænk kanal til bundSænk lagSænk lag til bundSænk baneSænk bane til bundForst_ør_Original_Flyt til skærm..._AfbildningMagentaMagenta:ForstørGør _gennemsigtigGennemse og hÃ¥ndtér programudvidelserMarcherende _myrers fart:Maskeugennemsigtighed:Maskér _markerede omrÃ¥derMaskér _ikke-markerede omrÃ¥derMatrix:Maks. dybde:Maksimal _filstørrelse for miniaturer:Maksimal størrelse af _nyt billede:Maksimal farveforskelMaksimal fortrydelses_hukommelse:Middelværdi:OpmÃ¥lMÃ¥l afstande og vinklerMÃ¥l afstande og vinklerMÃ¥l linealerne og indtast deres længder:Median:MellemMellem stregerForén _nedadForén nedadForenelse af lagForén paletForén synlige lagForén synlige banerForén synlige _lag...Forén _synlige lag...Forén _synlige lagForén lagForén paletterForén vektorerMeddelelsesprocedurerMeddelelse gentaget %d gange.Meddelelse gentaget én gang.Meddelelse bliver videresendt til stderr.MellemtonerMigrér brugerindstillingerMinimum antal _fortrydelsesniveauer:DiverseMellemPÃ¥virkede tonerTilstand:Ændr valgt farveÆndr det valgte intervals farveniveauerÆndr alle farverÆndr linjeafstandProgramudvidelsesmapperProgramudvidelserUdvidelsesstiProgramudvidelserMusemarkørerMusehjulMusehjulshændelserFlytFlyt ankreFlyt kanalFlyt flydende markeringFlyt hjælpelinjeFlyt hjælpelinje: Flyt lagFlytning af lagmaskeFjernelse af baneFlyt markeringFlyt tekstlagFlytteværktøjFlyt elementFlyt lag og markeringerFlyt markeringFlyt det aktuelle lagFlyt den aktuelle baneFlyt det valgte filter nedFlyt det valgte filter opFlyt til skærm...Flyt: GangA_ntal farver:_NavigeringNa_vigationsvindueMiniaturestørrelse for _navigeringsvinduer:NavnNavn:NavigeringNy kanalNy kanalfarveIndstillinger for ny kanalNy farve fra _baggrundNy farve fra _forggrundNyt billedeNyt lagNy baneIndstillinger for ny baneNy skabelonNy penselNy kanalNy kanal med sidste værdierNy kanal...Ny farve fra _baggrundNy farve fra forggrundNy farveovergangNy importeringNyt lagNyt lag med sidste værdierNyt lag...Ny paletNy bane med sidste værdierNy bane...Nyt mønsterNye vektorerIngen pensler tilgængelige til dette værktøj.Intet filter valgtIngen lineære overgange fundet i "%s"Ingen længere tilgængeligIngen baner fundet i '%s'Ingen baner fundet i mellemlageretIngen mønstre disponible for denne operation.Intet valgtIngen markering til strøg.Ingen miniaturerIkke justeretIntetIngen (hurtigst)NormalNormal (128x128)Normale prikkerNormalt vindueIkke en almindelig filDer er ikke nok synlige lag til en forening. Det skal være mindst to.Der er ikke nok synlige baner til en forening. Det skal være mindst to.Antal _processorer som benyttes:Antal gitterlinjerAntal lag:_Anden...ForskydningForskyd kanalForskyd tegneobjektForskyd lagForskyd lagmaskeForskyd med (x/_2, y/2)Afsæt:PÃ¥ diskPÃ¥ flerprocessormaskiner hvor Gimp'en er blevet oversat med --enable-mp, angiver dette hvor mange processor Gimp'en skal benytte samtidigt.Kun i hukommelseÃ…_bn som lag...UgennemsigtighedUgennemsigtighed:Ã…bnÃ…bn billedeÃ…bn billede som lagÃ…bn placeringÃ…bn tekstfil (UTF-8)Ã…bn _placering...Ã…bn _senesteÃ…bn billedeÃ…bn penselvælgerenÃ…bn skrifttypevælgerenÃ…bn farveovergangsvælgerenÃ…bn paletvælgerenÃ…bn mønstervælgerenÃ…bn det valgte punktÃ…bning af '%s' mislykkedes: - -%sÃ…bning af '%s' mislykkedes: %sTilvalg: -Nulpunkt x:Nulpunkt y:Oprindelig bredde:Anden (%s)...OmridsUddataniveauerLæg overPDB-kaldefejl for procedure '%s': -Typefejl for parameter nr. %d (forventede %s, fik %s)PDB-kaldefejl: -procedure '%s' ikke fundet_MønstreCølibatisk havfrue pÃ¥ brynjeklædt -wc med plexiglas i zoo.MalMaleindstillinger delt mellem værktøjerTegneværktøjsprocedurerMaleværktøj:Tegne_mÃ¥deMal med udflydende penselstrøgTegn linjer med skarp kantTegn med mønstre eller billedomrÃ¥derMalerpenselPa_letterPaletPaletredigeringPaletredigeringsmenuPaletmapperPaletgrænseflade_Navn pÃ¥ palet:Palet_filPaletterPaletmenuParasitprocedurerParasitterFortolker '%s' -IndsætIndsæt mellemlager _iIndsæt mellemlager som _ny_Indsæt baneIndsæt _iIndsæt som _nyIndsæt det valgte mellemlagerIndsæt det valgte mellemlager som nyt billedeIndsæt det valgte mellemlager i markeringenIndsat lagBaneBaneegenskaberNavn pÃ¥ bane:Bane_værktøjBanen kan ikke sænkes mere.Banen kan ikke hæves mere.Bane er allerede nederst.Bane er allerede øverst.Bane til _markeringBane til markeringBane til markering -%s Læg til -%s Træk fra -%s Kryds medBane til markeringBanerBane-menuMønsterMønstermapperMønstergrænsefladeMønsterudfyldningMønsterkildeMønstreMønstremenu_BlyantBlyantProcent af penselbreddeProcentdel:Personlig Gimp-mappePerspektivPerspektivtransformeringPerspektiverer...Vælgetilstand %sVælg et lag eller en hjælpelinjeVælg en baneVælg sort punktVælg farver fra billedetVælg grÃ¥t punktVælg kunVælg hvidt punktSkærmpunktdimensioner:PunktværdierBilledpunkterPunkter:Kontrollér at menu-XML-filerne er korrekt installeret.Vent venligst mens din personlige Gimp-mappe bliver oprettet...Vent venligst...UdvidelsesmodulUdvidelsesmodulmiljøUdvidelsesmodulmapperUdvidelsesmodul kunne ikke Ã¥bne billedeUdvidelsesmodul kunne ikke gemme billedeUdvidelsesmodul gik ned: "%s" -(%s) - -Det døende modul kan have lavet rod internt i Gimp'en. Det er mÃ¥ske bedst hvis du gemmer dine billeder og genstarter Gimp'en for at være pÃ¥ den sikre side.Udvidelsesmodul returnerede SUCCESS, men returnerede ikke et billedeUdvidelsesmodulerUdvidelsesmodulerUdvidelsesmoduler og programudvidelser er eksterne programmer som køres af Gimp'en, og giver ekstra funktionalitet. Ved starten søges der efter programmerne, og information om deres funktionalitet og ændringstider mellemlagres i denne fil. Denne fil er beregnet til at være læsbar for Gimp'en kun og bør ikke redigeres.PolygonelPortrætPosition: %0.6fPlaceretPosteriseringReducér farveantalletPosteriserings_niveauer:Posterisering virker ikke pÃ¥ indekserede lag.IndstillingerBevar _lysintensitetTrykfølsomhedTryk:EksempelMiniature er forældetEksempel:EksemplerUdskriftsstørrelseUdskriftsstørrelse:Problemer ved fortolkning af tekstparasitten for laget '%s': -%s - -Nogle tekstegenskaber kan være forkerte. Medmindre du ønsker at redigere tekstlaget, behøver du ikke bekymre dig om det.ProceduredatabaseProceduredatabaseFremgangPseudofarveFormÃ¥l:KvalitetForespørgUndersøger nye udvidelsesmodulerForespørger udvidelsesmodul: '%s' -Hent hurtigtHurtigmaskeHurtigmaskeegenskaberHurtigmaskemenuGem hurtigtHurtigmaskeAfslut Gimp'enRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-farverRGB-tomRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Højre mod venstreVis "%s" _igen_Nulstil værktøjsindstillingerN_ulstil kanalN_ulstil farveN_ulstil interval_Højre endepunkts farve...RadialRadius:Hæv kanalHæv kanal til topHæv kanal til _topHæv lagHæv lag til topHæv baneHæv bane til topHæv bane til _topHæv kanalHæv kanal til topHæv lagHæv lag til topHæv baneHæv bane til topHæv dette billedes visningerHæv vindue hvis allerede Ã¥bentHastighedVirkningsgrad:Vis sidste igenGen_centrér midtpunkter i markeringGen_centrér segmentets midtpunktOmfordel _hÃ¥ndtag i segmentOmfordel _hÃ¥ndtag i markeringen_Omdøb gemte indstillinger_Gentag "%s"_Forkast...Læser paletfil %s: manglende grøn komponent pÃ¥ linje %d.Læser paletfil '%s': ugyldigt antal kolonner pÃ¥ linje %d. Bruger standardværdi.Læser paletfil %s: manglende blÃ¥ komponent pÃ¥ linje %d.Læser paletfil %s: manglende rød komponent pÃ¥ linje %d.Læser paletfil %s: RGB-værdi uden for det gyldige interval pÃ¥ linje %d.ParatVil du virkelig rydde billedets fortrydelseshistorik?Omtildeling af genvejen vil fjerne den fra "%s".Genskab _miniatureGenskab miniatureRektangulær markeringRødRød:OmgørReducér billede til et fast antal farverReducér billedet til to farver vha. en tærskelOpdatér penslerOpdatér overgangeOpdatér paletterOpdatér mønstreRegistreretGenindlæs _aktuelt temaGenindlæs _alle miniaturerGenindlæs _alle miniaturerHusk benyttet værktøj, mønster, farve og pensel pÃ¥ tværs af Gimp-sessioner.Fjernt billedeFjernelse af kanalFjern ekstra _punkterFjern flydende markeringFjern hjælpelinjeFjern lagFjern parasit fra billedeFjern parasit fra elementFjern baneFjern _elementFjern ekstra punkterFjern flydende markeringFjern parasitFjern det valgte punktFjern det valgte filter fra listen over aktive filtreFjernelse af genvej mislykkedes.Omdøb kanalOmdøb lagOmdøb baneOmdøb gemte værktøjsindstillingerOmdøb tekstlagOmdøb elementTegn bestrygningOmordn kanalOmordn lagOmordn baneGentag sidsteGentag:Erstat den nuværende markeringKopiérKopiér overgangssegmentKopiér overgangsmarkeringenKopiér segmentKopiér det markeredeFlyt kanalFlyt lagFlyt vektorerGenskan skrifttypelisteNulstil værktøjsindstillingerNulstil _alle værktøjsindstillinger...Nulstil alle filtreNulstil alle filtre...Nulstil alle værktøjsindstillingerNulstil det valgte filter til standardværdierneNulstil til standardværdierNulstil værktøjsrækkefølge og -synlighedÆndr størrelseÆndr størrelse pÃ¥ kanalÆndring af billedstørrelseÆndring af lagstørrelseÆndr størrelse pÃ¥ baneÆndr tekstlagstørrelseÆndr billedstørrelseÆndr størrelse af elementTilpas vinduesstørrelse ved _zoomTilpas vinduesstørrelse ved ændring af _billedstørrelseSkalerer...OpløsningsændringOpløsning:ResurseforbrugResurseopsætningGendan indstillinger fra...Gendan gemte tastaturgenveje ved hver start af Gimp'en.Begræns redigering til polygonerOmvendtForkastBring "%s" tilbage til "%s"?Forkast billedeGenskabning mislykkedes. Intet filnavn er associeret med dette billede.Genskabning af '%s mislykkedes: - -%sHøjre endepunkts farveHøjrejusteretRotérRotér 90° m_od uretRotér 90° m_ed uretRotér kanalRotér lagRotér baneRotér tekstlagRotér _180°Rotér billedeRotér laget eller markeringenRoterer...RotationRund_TrapezérVis _gitterFor_mindsk..._Pigge_Ombyt farverG_em højre farve iPrøvegennemsnitBenyt alle lagMæt.:MætningGemGem "%s" som POV-RayGem kurverGem fejllog i fejlGem billedeGem enhedsindstillinger _nuGem tastaturgenveje _nuGem niveauerIndstillinger for gemningsværktøjGem vinduesplaceringer _nuGem _alle fejl i fil...Gem det _markerede i fil...Gem _som...Gem en _kopi...Gem en kopi af billedetGem alle fejlGem som _POV-Ray...Gem som sk_abelon...Gem ændrede tastaturgenveje nÃ¥r Gimp'en afslutter.Gem kurveindstillinger i filGem enhedsstatusGem overgang som POV-RayGem niveauindstillinger i filGem indstillinger som...Gem markeringGem markering som kanalGem ændringerne i billedet "%s" før lukning?Gem placeringerne og størrelsen af hovedvinduerne nÃ¥r Gimp'en afslutter.Gem som _kanalGemte indstillingerGemmer '%s' -Gemning af '%s' mislykkedes: - -%sGemning af billederSavtakket bølgeSkalérbare SVG-billeder (*.svg)SkalérSkalér kanalSkalér billedeSkalering af lagSkalér baneSkalér tekstlagSkalér billedeSkalér elementSkaleringsforhold x:Skaleringsforhold y:Formatforhold:Skalér laget eller markeringenSkaleringSkaleringSkalering af billedet til den valgte størrelse vil bruge mere hukommelse end der er konfigureret som "Maksimal billedstørrelse" under indstillingerne (aktuelt %s).Skalering af billedet til den valgte størrelse vil formindske nogle lag helt bort.Skalerer...SaksSkærmScript-Fu-mapperProgrammerRul nedRul ned (Alt)Rul ned (Ctrl + Alt)Rul ned (Ctrl)Rul ned (Skift + Alt)Rul ned (Skift + Ctrl + Alt)Rul ned (Skift + Ctrl)Rul ned (Skift)Rul venstreRul venstre (Alt)Rul venstre (Ctrl + Alt)Rul venstre (Ctrl)Rul venstre (Skift + Alt)Rul venstre (Skift + Ctrl + Alt)Rul venstre (Skift + Ctrl)Rul venstre (Skift)Rul højreRul højre (Alt)Rul højre (Ctrl + Alt)Rul højre (Ctrl)Rul højre (Skift + Alt)Rul højre (Skift + Ctrl + Alt)Rul højre (Skift + Ctrl)Rul højre (Skift)Rul opRul op (Alt)Rul op (Ctrl + Alt)Rul op (Ctrl)Rul op (Skift + Alt)Rul op (Skift + Ctrl + Alt)Rul op (Skift + Ctrl)Rul op (Skift)MarkeringMarkér altVælg mapper til penslerMarkér efter farve...Markér farveVælg kontrolhændelseshandlingVælg mapper til miljøVælg fil_type (%s)Vælg skrifttypemapperVælg mapper til farveovergangeVælg mapper til programudvidelserMarkér intetVælg mapper til paletterVælg mapper til mønstreVælg mapper til udvidelsesmodulerVælg primær farve at ændreVælg interval der skal ændresVælg Script-Fu-mapperVælg kildeVælg mappe til reservehukommelseVælg mappe til midlertigeVælg temaVælg mapper til temaerVælg zoomforholdVælg n_ederste lagVælg _anden farve...Vælg _næste lagVælg _forrige lagVælg _øverste lagMarkér altMarkér efter farveMarkér sammenhængende omrÃ¥derAngiv brugerdefineret lærredudfyldningsfarveMarkér elliptiske omrÃ¥derMarkér hÃ¥ndtegnede omrÃ¥derMarkér intetVælg paletfilMarkér rektangulære omrÃ¥derMarkér omrÃ¥der efter farveMarkér former i billedetVælg mappe til reservehukommelseVælg antal gange du ønsker -at kopiere det markerede segment.Vælg antal gange du ønsker -at kopiere det markerede.Vælg antallet af ens dele du vil -opdele segment i det markerede i.Vælg antallet af ens dele du -vil opdele det markerede segment i.Markér gennemsigtige omrÃ¥derVælg internetsurfningsprogramMarkering til _baneMarkeringMarkeringsredigeringMarkeringsredigeringsmenuMarkeringsmaskeMarkeringsværktøjsprocedurerMarkeringsmaskeMarkering til bane (_avanceret)Markering til baneMarkering: Markering: LÆG TILMarkering: FÆLLESSNITMarkering: ERSTATMarkering: TRÆK FRAFølsomhed:Angiv lærredudfyldningsfarveÆndring af kanalfarveÆndring af kanalgennemsigtighedÆndr farveafbildningTilpas lærredudfyldningsfarveAngiv lærredstørrelsenSkift billedudskriftsopløsningSæt element eksklusivt kædetSæt element eksklusivt synligtVælg lagkantstørrelseSæt navn fra _tekstVælg laggennemsigtighedSkift baggrundsfarveSkift forgrundsfarveSæt kædet elementÆndr lagtilstandÆndr laggennemsigtighedÆndr bevar gennemsigtighedAngiv en øvre grænse pÃ¥ den hukommelse som bruges pr. billede til at gemme handlinger pÃ¥ fortrydelsesstakken. Ligegyldig hvilken værdi indstillinger har kan mindst lige sÃ¥ mange fortrydelsesniveauer som konfigureret fortrydes.Angiv den fremviser der benyttes af hjælpesystemet.Angiv udfyldningsfarven for lærredet hvis udfyldningstilstanden er sat til brugerdefineret farve.Angiver det eksterne internetsurfningsprogram der skal bruges. Dette kan være en absolut sti eller navnet pÃ¥ en kørbar fil der skal søges efter i brugerens PATH. Hvis kommandoen indeholder '%s', vil det blive erstattet med addressen, ellers vil addressen blive tilføjet i slutningen af kommandoen med et mellemrum mellem.Angiv interpoleringsniveauet for skalering og andre transformationer.Angiv hvordan gennemsigtighed vises i billeder.Angiv det minimale antal handlinger som kan fortrydes. Flere fortrydelsesniveauer beholdes indtil begrænsningen pÃ¥ fortrydelsesstørrelsen nÃ¥s.Angiver tilstanden for den markør Gimp'en bruger.Angiver skærmens vandrette opløsning i punkter pr. tomme. Hvis sat til 0, bliver X-serveren spurgt efter oplysninger om bÃ¥de vandret og lodret opløsning.Angiver skærmens lodrette opløsning i punkter pr. tomme. Hvis sat til 0, bliver X-serveren spurgt efter oplysninger om bÃ¥de vandret og lodret opløsning.Angiver punktformatet for markører som Gimp'en bruger.Angiv standardstørrelsen af miniaturer for lag og kanaler i nysoprettede vindue.Angiver størrelsen af de tern der bruges til at vise gennemsigtighed.Angiver størrelsen af navigationsminiaturen der er tilgængelig i nederste højre hjørne i billedvinduet.Angiv størrelsen af forhÃ¥ndsvisninger i fortrydelseshistorikken.Angiv størrelsen af den miniature der vises i Ã…bn-vinduet. Bemærk at Gimp'en ikke kan gemme miniaturer hvis lagminiaturer er deaktiveret.Angiv swapfilens placering. Gimp'en bruger et flisebaseret hukommelsesallokeringssystem. Swapfilen bliver brug til hurtigt at og let at kopiere fliser ud til disken og tilbage igen. Bemærk at swapfilen hurtigt kan blive meget stor hvis Gimp'en bliver brug med store billeder. Desuden kan det være forfærdeligt langsomt hvis swapfilen bliver oprettet i en mappe som er monteret over NFS. Derfor kan det være en god idé at anbringe din swapfil i "/tmp".Angiv mappen til midlertidig lagring. Filer vil dukke op her under kørslen af Gimp'en. De fleste filer vil forsvinde nÃ¥r Gimp'en afslutter, men nogle filer bliver sÃ¥ det er bedst hvis dette er en mappe som ikke deles med andre brugere.Angiv den tekst der optræder i billedvinduers statuslinjer.Angiv den tekst der optræder i billedvinduers titellinjer.Angiv om Gimp'en skal oprette miniaturer for lag og kanaler. Miniaturer i lag- og kanalvinduer er behagelige at have, men kan sløve alting ned nÃ¥r der arbejdes med store billeder.SkyggetypeSkyggerFormForm:Formtilpasset (vinklet)Formtilpasset (fordybet)Formtilpasset (sfærisk)SkærpGør kanal skarpereGør markering skarpereTrapezérStørrelsesorden x:Størrelsesorden y:Trapezér laget eller markeringenTrapezeringTrapezerer...Korte stregerGenvejGenvejen "%s" er allerede taget af "%s" fra gruppen "%s".Vis lagmaskeVis _linealerVis _statuslinjeVis _rulleskakterVis _hjælpelinjerVis _laggrænseVis _menulinjeVis m_arkeringVis _penselomridsVis _forgrunds- og baggrundsfarveVis _hjælpelinjerVis _laggrænseVis m_enulinjeVis _linealerVis aktive _pensler, mønstre og farveovergangeVis aktivt _billedeVis _gitterVis _hjælpeknapperVis billedstørrelseVis interaktiv grænseVis hukommelsesforbrugVis menu_genvejeVis maleværktøjs_markørVis _markeringVis _statuslinjeVis _rulleskakterVis tip næste gang Gimp'en starterVis tip ved _startVis værktøjs_tipVis zoomprocentVis zoomforholdFormindsk kanalFormindsk markering_Pak sammenFormindsk fra billedkantFormindsk markering medPak sammenStørrelseStørrelse i hukommelse:Størrelse af _miniaturefiler:Størrelse:Springer over "%s": forkert Gimp-protokolversion.LilleMindre eksemplerUdtværBlødgør kanterUdtværUdtvær billede_Ret ind efter linjerRet _ind efter gitterBlødgør lysEnsfarvetKildeMellemrumMellemrum:FÃ¥ prikkerSpeciel filAngiver hvordan omrÃ¥det omkring billedet skal tegnes.Hastigheden for de marcherende myrer for markeringsomridset. Denne værdi er i millisekunder (kortere tid giver hurtigere march).Hastighed:Sfærisk (_aftagende)Sfærisk (_voksende)Spigre:Spiral (mod uret)Spiral (med uret)OpdelOpdel overgangssegment jævntOpdel overgangssegmenter jævntOpdel segment jævntOpdel segment _jævnt...Opdel segment ved _midtpunktetOpdel segmenter jævntOpdel segmenter _jævnt...Opdel segmenter ved _midtpunkterKvadratiskSt_atus og tekstS_takStandardStarter programudvidelserStarter programudvidelse: '%s' -Tilstand:Statisk farveStatisk grÃ¥Status og beskrivelseStatus og tekstStd.afvig:StiplingLager-idBestr_yg baneBestr_yg bane...Bestryg kanalBestryg baneBestryg markeringBestryg linjeBestryg baneBestryg bane med sidste værdierBestryg bane...Bestryg markering med sidste værdierBestryg markering...Bestryg med et maleværktøjDen stil kanten omkring statuslinjeteksten benytterTræk fraTræk fra den nuværende markeringSupersamplingReservehukommelsesmappe:Væ_rktøjer_TekstTe_kstværktøjMidlertidig:SkabelonerSkabelonermenuMidlertidig procedureTerminerer udvidelsesmodul: "%s" -TekstTekstfarveTekstredigeringTekstlagTekst ændretTekstprocedurerGimp'enGimp'ens hjælpefremvisermodul mangler tilsyneladende fra din installation.Den aktive pensel. -Klik for at Ã¥bne penselvinduet.Den aktive farveovergang. -Klik for at Ã¥bne farveovergangsvinduet.Det aktive billede. -Klik for at Ã¥bne billedvinduet.Det aktive mønster. -Klik for at Ã¥bne mønstervinduet.Forgrundsfarven for gitteret; benyttes kun med en dobbelt-stipplet linjestil.Batchfortolkeren '%s' er ikke tilgængelig, batchtilstand deaktiveret.Kodningen af det konfigurerede filnavn kan ikke konverteres til UTF-8: %s - -Tjek værdien af miljøvariablen G_FILENAME_ENCODING.Filnavnet '%s' kunne ikke konverteres til en gyldig URI: - -%sForgrundsfarven for gitteret.Gimprc bruges til at gemme personlige indstillinger som indvirker pÃ¥ Gimp'ens standardopførsel. Stier til søgning af pensler, paletter, farveovergange, mønstre, udvidelsesmoduler og programudvidelser kan ogsÃ¥ konfigureres her.Den vandrette billedopløsning.Det lag du valgte, er et tekstlag, men det er blevet ændret vha. andre værktøjer. Redigering af laget med tekstværktøjet vil forkaste disse ændringer. - -Du kan redigere laget eller oprette et nyt tekstlag fra dets tekstegenskaber.Navnet pÃ¥ det katalog som indeholder brugerkonfigurationen til Gimp'ene kan ikke konverteres til UTF-8: %s - -Sandsynligvis gemmer dit filsystem filer i en anden kodning end UTF-8 uden at du har fortalt det til GLib. Sæt venligst miljøvariablen G_FILENAME_ENCODING.Sessionrc bruges til at gemme information om de Ã¥bne vinduer ved sidste afslutning af Gimp'en. Du kan indstille Gimp'en til at genÃ¥bne disse vinduer der hvor de var før.Miniaturen i Ã…bn-vinduet vil automatisk blive opdateret hvis billedet der bliver vist er mindre end den størrelse der er angivet her.Flisemellemlageret bruges til at sikre at Gimp'en ikke smider fliser ud mellem hukommelsen og disken. Hvis denne værdi sættes højere vil Gimp'en bruge mindre swapplads, men samtidig mere hukommelse. Modsat vil en mindre mellemlagerstørrelse forÃ¥rsage at Gimp'en bruger mere swapplads og mindre hukommelse.Enhed benyttet til koordinatvisning hvis ikke i punkt for punkt-tilstand.Unitrc bruges til at gemme din brugerenhedsdatabase. Du kan definere ekstra enheder og bruge dem akkurat som du bruger de indbyggede enheder millimeter, tommer punkter og picaer. Denne fil overskrives hver gang du afslutter Gimp'en.Den lodrette billedopløsning.Vinduestypehintet der sættes pÃ¥ dokvinduer. Dette kan pÃ¥virke den mÃ¥de din vindueshÃ¥ndtering dekorerer og hÃ¥ndterer dokvinduer.Det vinduestypehint som sættes pÃ¥ værktøjskassen. Dette kan have betydning for hvordan vindueshÃ¥ndteringen dekorerer og hÃ¥ndterer værktøjskassevinduet.TemaTemamapperTemaerDer er %d billeder med ugemte ændringer:Der er ikke nok synlige lag til en nedadgÃ¥ende forening.Hukommelsesforbrug og hastighed skal altid afvejes. I de fleste tilfælde gÃ¥r Gimp'en efter hastighed frem for hukommelse. Men prøv at slÃ¥ denne indstilling til hvis hukommelse er et stort problem.Der er ikke noget aktivt lag eller nogen aktiv kanal at kopiere fra.Der er ikke noget aktivt lag eller nogen aktiv kanal at klippe fra.Der er ikke noget aktivt lag eller en aktiv kanal at bestrygeDer er ikke noget aktivt lag eller nogen aktiv kanal at bestryge.Der er et billede med ugemte ændringer:Der skal være en fil med navnet %s. Kontrollér din installation.Der opstod en fejl ved fortolkningen af din '%s'-fil. Standardværdier vil blive brugt. En sikkerhedskopi af din konfiguration er blevet oprettet ved '%s'.Denne fil indeholder en samling af standardmediestørrelse der bruges som billedskabeloner.Denne mappe søges i efter bruger-installerede skabeloner.Denne mappe søges i efter bruger-installerede temaer.Denne mappe bruges til at gemme brugerdefinerede mønstre. Gimp'en tjekker denne mappe sammen med systemmapperne efter mønstre nÃ¥r der søges efter disse.Denne mappe bruges til at gemme parameterfiler til kurveværktøjet.Denne mappe bruges til at gemme parameterfiler til niveauværktøjet.Denne mappe bruges til at gemme værktøjsindstillinger.Denne mappe bruges til at gemme brugeroprettede og -installerede fortolkede programmer. Gimp'en tjekker denne mappe sammen med systemmapperne efter fortolkede programmer nÃ¥r der søges efter disse.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre DLL-moduler som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen efter programudvidelser under starten.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre tilføjelser til udvidelsesmiljøet som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen nÃ¥r der søges efter disse.Denne mappe bruges til at gemme brugeroprettede, midlertidige eller andre udvidelsesmoduler som ikke installeres for alle brugere. Gimp'en tjekker denne mappe sammen med systemmappen efter udvidelsesmoduler nÃ¥r der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede pensler. Gimp'en tjekker denne mappe sammen med systemmapperne efter Gimp-pensler nÃ¥r der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede farveovergange. Gimp'en tjekker denne mappe sammen med systemmapperne efter farveovergange nÃ¥r der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede paletter. Gimp'en tjekker denne mappe sammen med systemmapperne efter paletter nÃ¥r der søges efter disse.Denne mappe bruges til at gemme brugerdefinerede mønstre. Gimp'en tjekker denne mappe sammen med systemmapperne efter mønstre nÃ¥r der søges efter disse.Denne mappe bruges af Gimp'en til midlertidigt at opbevare fortrydelsesmellemlagere for at reducere hukommelsesforbruget. Hvis Gimp'en ikke dræbes behørigt, kan nogle filer pÃ¥ formen 'gimp<#>.<#>' mÃ¥ske overleve. Disse filer er ubrugelige pÃ¥ tværs af forskellige Gimp-sessioner og kan udryddes nÃ¥desløst.Denne mappe vil komme til at indeholde et antal vigtige filer. Klik pÃ¥ en af filerne eller mapperne i træet for at fÃ¥ flere oplysninger om det valgte element.Dette er afstanden i punkter som hjælpelinjer og gitteret lÃ¥ser til.Dette program distribueres med det hÃ¥b at det vil vise sig nyttigt, men UDEN NOGEN FORM FOR GARANTI; endda uden garanti for KØB- ELLER SALGBARHED eller EGNETHED TIL NOGET BESTEMT FORMÃ…L. Se GNU General Public License for flere detaljer.Dette program er frit programmel; du kan redistribuere det og/eller ændre det under betingelsene i GNU General Public License som udgivet af Free Software Foundation; enten version 2 af licensen, eller (hvis du ønsker det) enhver senere version.Dette indtastningsfelt er begrænset til %d tegn.Dette værktøj har ingen indstillinger.Dette vindue har %d faneblade Ã¥bne. Hvis du lukker vinduet, vil alle fanebladene ogsÃ¥ blive lukket.TærskelTærskel opererer ikke pÃ¥ indekserede lag.Tærskel:Miniature %d af %dStørrelse af flisemellem_lager:Størrelse af flisemellemlager:Vinkling:BitteTitel og statusTil _baneGenvejstaster ændres ved at klikke pÃ¥ en række og indtaste den nye genvej eller trykke pÃ¥ slet tilbage-tasten for at rydde._LegetøjSlÃ¥ hurtigmaske til/fraSlÃ¥ hurtigmaske _til/fraFor mange fejlmeddelelser!VærktøjsindstillingerVærktøjsindstillingermenuVærktøjstilstand %sVærktøjs_indstillingerVærktøjsikonVærktøjsikon med sigtekornVærktøjs_kasseVærktøjskasseVærktøjskassemenuVærktøjerVærktøjsmenuVærktøjer som udflydende markering og spandudfyldning finder omrÃ¥der baseret pÃ¥ et frøudfyldningsalgoritme. Frøudfyldningen begynder ved startpunktet og gÃ¥r videre i alle retninger indtil forskellen i punktintensitet fra originalen er større end en angivet tærskel. Denne værdi repræsenterer den forvalgte tærskel.G_ennemsigtighedOverfør alfa til maskeTransformérTransformér kanalTransformeringsretningTransformér lagTransformér baneTransformér tekstlagTransformeringsværktøjsprocedurerTransformér lagTransformér baneTransformér markeringTransformeringTransformeringsprocedurerTransformerer...Oversættelse afGennemsigtighedGennemsigtigheds_type:Trekantet bølgeRigtig farveTypeType %sIndtast en ny genvejIndtast en ny genvej eller tryk pÃ¥ slet tilbage-tasten for at rydde genvejenKan ikke tilføje en lagmaske da laget allerede har en.Kan ikke klippe eller kopiere fordi det markerede omrÃ¥de er tomt.Kunne ikke Ã¥bne en testmellemlagerfil. Kontrollér placeringen og rettighederne for mellemlagerkataloget defineret i dine indstillinger (aktuelt "%s").Kunne ikke Ã¥bne reservehukommelsesfilen. Gimp'en er løbet tør for hukommelse og kan ikke bruge reservehukommelsesfilen pÃ¥ disken. Dele af dit billede kan være ødelagt. Prøv at gemme dit arbejde med andre filnavne, genstart Gimp'en og kontroller placeringen af reservehukommelsesmappen under indstillingerne.Kunne ikke udføre tilbagekaldsfunktionen til %s. MÃ¥ske er det tilhørende modul gÃ¥et ned.IkkedefineretFortrydFortrydelseshistorikF_ortrydelseshistorikEnhederUkendtUkendt filtypeUkendt paletfiltype: -%sFrigivUnavngivenUnavngivenBenyt som standard "_prik for prik"Benyt _dynamiske tastaturgenvejeBenyt _internetsurfningsprogram i stedetBrug alle synlige lag ved formindskelse af markeringenBenyt sort/hvid-palet (1-bit)Benyt farve fra farveovergangBenyt brugerdefineret paletBenyt infovindueBenyt internetoptimeret paletBrugerinstallationslogBrugergrænsefladeVærktøjsvindueVærdiVærdi:Ændring af vektorerVersion %s bragt til dig afVersion:LodretLodret afsæt til den første gitterlinje; dette kan være et negativt tal.Lodret mellemrum mellem gitterlinjer.Meget storMeget lilleVisVis som _gitterVis som _listeVis som gitterVis som listeKlasse:Farvedybde:Advarsel: kunne ikke indlæse data: - -%sAdvarsel: kunne ikke gemme data: - -%sInternetsurfningsprogramInternetsurfningsprogramVelkommen til brugerinstallationen -til Gimp'en %d.%dHvis aktiveret, vil vinduet automatisk følge det billede du arbejder pÃ¥.Hvis aktiveret vil Gimp'en vise genveje i menuer.Hvis aktiveret, vil alle tegneværktøjer vise et eksempel pÃ¥ den aktuelle pensels omrids.Hvis aktiveret, bliver et billede det aktive billede nÃ¥r dets vindue modtager fokus. Dette er nyttigt med vindueshÃ¥ndteringer der bruger "klik for at fokusere".Hvis aktiveret, vil vinduer vise en hjælpeknap som giver adgang til den relaterede hjælpeside. Hjælpesiden kan stadig nÃ¥s uden denne knap ved at trykke pÃ¥ F1.Angiv om menuer skal kunne rives af.Tryk pÃ¥ F1 vil Ã¥bne hjælpefremviseren.Undlad at gemme hvis et billede er uændret siden det blev Ã¥bnet.Benyt forskellige infovinduer til de forskellige billedvinduer.Spørg X-serveren efter musens aktuelle position ved hver bevægelseshændelse i stedet for at forlade sig pÃ¥ positionshintet. Dette betyder at malning med større pensler skulle være mere præcis, men det kan være langsommere. Mærkeligt nok giver det hurtigere malning pÃ¥ nogle X-servere.Hvis aktiveret, vil markøren blive vist over billedet nÃ¥r et maleværktøj benyttes.Hvis aktiveret, vises gitteret som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis gitter".Hvis aktiveret, vises hjælpelinjerne som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis hjælpelinjer".Lad billedvinduet ændre sin størrelse automatisk nÃ¥r der zoomes ind og ud pÃ¥ billedet.Lad billedvinduet ændre sin størrelse automatisk nÃ¥r den fysiske billedstørrelse ændres.Hvis aktiveret, vises laggrænsen som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis laggrænse".Hvis aktiveret, vises menulinjen som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis menulinje".Hvis aktiveret, vises linealerne som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis linealer".Hvis aktiveret, vises rulleskakterne som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis rulleskakter".Hvis aktiveret vil den valgte pensel blive brugt til alle værktøjer.Hvis aktiveret vil den valgte farveovergang blive brugt til alle værktøjer.Hvis aktiveret vil det valgte mønster blive brugt til alle værktøjer.Hvis aktiveret, vises markeringen som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis markering".Hvis aktiveret, vises statuslinjens som standard. Dette kan ogsÃ¥ skiftes med kommandoen "Vis->Vis statuslinje".Sikrer at hvert punkt i et billede bliver afbildet til et punkt pÃ¥ skærmen.Sikr at det komplette billede er synligt efter en fil er Ã¥bnet, ellers vil den blive vist i skalaforholdet 1:1.Hvis aktiveret, kan du ændre tastaturgenveje for menupunkter ved at trykke pÃ¥ en tastekombination mens menupunktet er fremhævet.HvidHvidbalance virker kun pÃ¥ lag med RGB-farver.BreddeBredde:VindueshÃ¥ndteringHint til vindueshÃ¥ndteringVinduesplaceringerSkriver '%s' -xXCF-fejl: ikke-understøttet XCF-filversion %d mødtXCF-advarsel: version 0 af XCF-filformatet -gemte ikke indekserede farvekort rigtigt. -Erstatter grÃ¥tonekort.yGulGul:Du forsøger at oprette et billede med en størrelse pÃ¥ %s.Du kan slippe dokvinduer her.Du burde have modtaget GNU General Public License sammen med dette program; hvis ikke, skriv til Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du bliver nødt til at genstarte Gimp'en før de følgende ændringer træder i kraft:Den Gimp-installation er ufuldstændig:Din indstillinger for pegeenheder vil blive nulstillet til standardværdierne næste gang du starter Gimp'en.Tastegenvejene vil blive nulstillet til standardværdierne næste gang du starter Gimp'en.Vinduesopsætningen vil blive nulstillet til standardværdierne næste gang du starter Gimp'en.Zoom og størrelsesændringZoom 1:1Zoom 100%Zoom indZoom udZoomforholdZoomforhold:_Zoom 100%Zoom _indZoom _udZoom 100%Zoomfaktor: %d:1Zoom billede nÃ¥r vinduesstørrelsen ændrer sigZoom indZoom ind eller udZoom udZoom:[ grundbillede ]_OmInd_hent_Tilføj farve fra baggr._Tilføj farve fra forgr._Tilføj fane_Læg til markering_Avancerede indstillinger_Sprøjtepensel_Alt_Forankr lag_Udjævning_VilkÃ¥rlig rotering..._Kunstnerisk_Aspekt_Auto_B_Baggrundsfarve_Baggrundsfarve:_Sort (helt gennemsigtigt)_Blandingsfunktion for segment_Blandingsfunktion for markering_Blødgør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og farveovergange_Spandudfyldning_Mellemlagere_Efter farveMarkering efter _farve_C_Endestil:_Kanaler_Ryd fejl_Ryd fortrydelseshistorik_Klon_Luk_Luk fane_Skyer_Farveværktøjer_Farver_Konfigurér farve og gennemsigtighed..._Kontekst_Konteksthjælp_Kopiér_Kopiér navngiven_Opret billede fra skabelon..._Tilskær og ændr størrelse_Beskær billede_Buet_Kurver..._Mørk ternfarve_Standardfarver_Slet pensel_Slet mellemlagerS_let kanal_Slet farve_Slet overgang..._Slet billedeS_let lag_Slet palet_Slet bane_Slet mønster..._Slet gemte indstillinger_Slet segment_Slet det markerede_Slet skabelon_Afmætning_Frigør fane_EnhedsstatusVin_duer_Forkast ændringer_Kassér tekstoplysninger_Forvrængning_Prik for prik_Duplikér_Redigér_Redigér pensel..._Redigér kanalegenskaber.../_Redigér farve..._Redigér overgang..._Redigér lagegenskaber..._Redigér palet..._Redigér bane-egenskaber..._Redigér mønster..._Redigér skabelon..._Ellipsemarkering_Aktivér lag- og kanalminiaturer_Enorm_Udlign_Viskelæder_Forgrundsfarve_Fil_Udfyld med:_Tilpas billede til vindue_Fladgør billedeV_end_Vend segment_Vend det markerede_Flyd_Skrifttype_Skrifttyper_Forgrundsfarve:_Fri markering_G_Generel_Gigantisk_Farveovergang_Farveovergange_GrÃ¥toner_GrÃ¥tonekopi af lagetFor_øg..._Hjælpelinjer_HÃ¥rdhed_Hjælp_Vandret:_Farvetone:_Kæmpe_Ikon_Ikon:_Billede_Billeder_Importér_Importér palet..._Indekseret..._Infovindue_Kryds med markering_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og banerVenstre endepunkt_Venstre nabos højre endepunkt_Niveauer..._Lys ternfarve_Lyseffekter_Lysstyrke:Linje_stil_Lineær_Kædet_Hent venstre farve fra_Sænk kanal_Sænk lagSæn_k bane_M_Manuelt_Afbildning_MaskeMaske til ma_rkering_Maks. antal farver:O_pmÃ¥l_Mellem_Forén paletter..._Forén importerede baner_Migrér brugerindstillinger fra Gimp 2.0_Diverse_Mellemgrænse:_Tilstand_ProgramudvidelserF_lyt_Navn:_Natur_Ny pensel_Ny kanal_Ny kanal..._Nyt element..._Ny overgang_Nyt lag_Nyt lag..._Ny palet_Ny bane_Ny bane..._Nyt mønster_Ny skabelon..._Ny visning_Ny..._Næste tip_Støj_Intet_Forskydning..._Ugennemsigtighed_Ã…bn billede_Ã…bn..._UdfyldningsfarveM_aleværktøjerM_alerpensel_Palet_Indsæt_Indsæt mellemlager_Indsæt navngiven_Baner_Mønster_Perspektiv_Posterisér_Indstillinger_Miniature_Miniaturestørrelse_Forrige tip_Udskriftsstørrelse..._Egenskaber_Hurtigmaske aktiv_Afslut_R_RGB_Radius_Hæv kanal_Hæv lag_Hæv bane_Hæv visninger_Hæv eller Ã¥bn billede_Omtildel genvej_Rektangulær markering_Omgør_Omgør '%s'_Opdatér pensler_Opdatér overgange_Opdatér paletter_Opdatér mønstre_Fjern ubrugte farver fra endelig palet_Generér_Erstat_Kopiér segment..._Kopiér det markerede..._Genskan skrifttypeliste_Nulstil rækkefølge og synlighed_Nulstil gemte enhedsindstillinger til standardværdier_Nulstil gemte tastaturgenveje til standardværdier_Nulstil gemte vinduesplaceringer til standardværdierGen_dan indstillinger fra_Højre endepunkt_Højre nabos venstre endepunkt_Rotér_Mætning:_Gem_Gem venstre farve i_Gem indstillinger i_Gem enhedsindstilinger ved afslutning_Gem tastaturgenveje ved afslutning_Gem vinduesplaceringer ved afslutning_Skalér_Skalér billede..._Skalér lag..._Skalér importerede baner til billede_Markering_Markering_Markeringsredigering_Markeringsværktøjer_Form_Skærp_Vis billedmarkering_Vis i værktøjstip_Sinus_Lille_Udtvær_LÃ¥seafstand:_Bestryg markering_Bestryg markering..._Træk fra markering_Fanestil_Skabelon:S_kabeloner_Tekst_Tærskel..._Bitte_Dagens tip_VærktøjVærk_tøjer_Overfør lagets alfakanal_Transformering_Transformeringsværktøjer_Fortryd_Fortryd '%s'_Lodret:_Vis_Synlig_Internet_Internetsurfningsprogram der skal anvendes:_Hvidt (helt ugennemsigtigt)_Hvidbalance_Bredde:_Fold omkring_x-opløsning:_x:_Udvidelser_Y_y-opløsning:_y:_Zoom_Zoom (%s)farverkopidpiforventede 'yes' eller 'no' for boolesk symbol %s, fik '%s'fatal fortolkningsfejlgrÃ¥tonergrÃ¥tone-tomtommetommerindekseretindekseret-tomugyldig UTF-8-strengugyldig værdi "%ld" for ikontypenugyldig værdi '%ld' for symbolet %sugyldig værdi "%s" for ikontypenugyldig værdi '%s' for symbolet %smillimetermillimeterminut-procentpicapicaerbilledpunktbilledpunkterpunkter/%apunkter/%spunktpunktersekundtips-locale:daBirger Langkjer -Keld Simonsen -Kenneth Christiansen -Martin Willemoes Hansen -Ole Laursen - -Dansk-gruppen -Mere info: http://www.klid.dk/dansk/værdi for symbolet %s er ikke en gyldig UTF-8-strengved fortolkning af symbolet '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/de.gmo gimp-2.2.9/po/de.gmo --- gimp-2.2.8/po/de.gmo 2005-06-23 19:23:49.000000000 +0200 +++ gimp-2.2.9/po/de.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,456 +0,0 @@ -Þ•^  Kƒ ü•È È&ÈkFÈG²È9úÈG4ÉA|ÉN¾Éi Ê<wÊk´Ê@ Ë2aË;”ËPÐËO!Ì2qÌ9¤Ì-ÞÌ9 Í;FÍ7‚Í ºÍÄÍ -ËÍ ÖÍ -àÍ -ëÍ öÍÎÎ -!Î,Î/Î?Î -WÎbÎjÎrΎΨξÎ0ÅÎöÎÏÏ#Ï+Ï -BÏMÏTÏ\ÏdÏ sÏ Ï Ï -›Ï -¦Ï ±Ï ¾ÏÊÏ ÚÏ æÏòÏ ÷Ï ÐKÐ…\Ð.âÐ1Ñ!CÑeÑwÑ~ÑєѰѿÑÖÑÚÑíÑ -ÿÑ -ÒÒ ,Ò -8ÒCÒXÒ kÒuÒ„Ò -Ò˜Ò§ÒºÒÒÒäÒöÒÓ*Ó6FÓ}ÓÓ­ÓÅÓÎÓëÓ -ÔÔ3ÔGÔfÔ{ÔÔ#£ÔÇÔáÔ -ýÔÕÕ!Õ3Õ<Õ\ÕpÕ xÕ ‚Õ Õ™Õ©Õ1¾Ö3ðÖ$×8×>×Q׋X× -ä×ï× ØØ9Ø@Ø OØ -\ØgØxØŠØšØA«ØJíØ8Ù<KÙ ˆÙ –٤ٴÙÍÙåÙõÙýÙÚ Ú(Ú>ÚQÚZÚqÚƒÚ ”Ú¢ÚºÚ -ÃÚÎÚßÚøÚÛ&%Û$LÛqÛxÛ ~Û ˆÛ–ÛÛ¶Û½ÛÃÛÝÛ"åÛ ÜÜÜÜ$Ü -4Ü?ÜNÜ_ÜsÜ7‡Ü¿Ü ÅÜ ÒÜàÜéÜðÜ øÜ ÝÝ Ý&Ý+Ý 0Ým=Ý«Ý °Ý ¾Ý ÌÝÖÝßÝ üÝ -ÞÞ !ÞC.Þ7rÞ=ªÞ@èÞ6)ßd`ßÅßãß3ùß-à<Aà#~à!¢àÄàáà ûàá á 'á1á:áRáhá€á˜áªá¼áÙáöáâ,*âWâqâyâ Œâšâ ºâ Ûâ!éâ ã&ã<ãQãfãoã xã †ã“ã§ã®ãµã »ãÉãÜã ëãøã.ä5=ä5sä7©ä8áä)å,Dåqåå¥å2Âå õåæ1æOMæAæ%ßæ&ç4,ç1aç#“ç ·çÅç áç íç÷çè è&è/è>èNè -]èhèpè vè„è šè§èÀèÒè0äè é !é.é 5é ?é LéYété‘é+šéÆéÙéìéõé êê ê&ê -.ê 9êCê$cêˆê›êªê¿ê Üêýêë5ëHëXë"mëë¦ë µëÃëÓë Üëèëðërì{ìŒì ”ì¡ì¼ìÕìõì -í"í";í^íwí€í -’í í«í -Êí)Õíÿí,îFî!`î#‚î#¦î!Êî%ìîï.1ï`ï gïsï„ï˜ï«ï¾ï#Ôï-øï&ð%<ðbðxðŽð©ð¾ðÖð Ûðéð -ñ -ñ -ñ$ñ<ñCñRñ Wñ eñrñ‚ñ’ñ¥ñ´ñÃñ ÊñØñ -ëñöñ-ýñ+ò 2ò?òOòfò jòtòyòòò£ò·òÈòÛòëòþòó &ó2ó Bó Nó \óiópóvó%|ó!¢ó ÄóÑóäó&üó#ô 7ôEôTôgô yô‡ô–ô ¦ô³ô ÂôÏô ßôìôþô õõ(õ@õ[õxõŠõ™õ -²õ -½õ-Èõ öõö ööö 'ö4ö -<ö GöTögözö“ö›ö®öÂö Õöãöýö ÷÷ ÷*÷1÷:O÷?Š÷8Ê÷ øøø*ø ;øEø -Tø_øeø -{ø †ø ”ø  ø -­ø ¸ø Äø -Îø Ùøåø îøûøù ù>,ù kùŒùœù®ùÁùÑùãùòùú$ú4ú DúQú `úmúrúŠúú¶úÊúàú ðúúú û"û=û Sû -aûlû -„ûû §ûµû ËûØû íûúû -ü%ü 4ü Bü -NüYü*jü•üžü!°üÒü.éüý4ý#=ý"aý„ý¡ý&Àýçý ýý þþ,&þ#Sþwþ~þ þ›þ®þ'Èþðþ' ÿ5ÿRÿhÿ„ÿFžÿTåÿ:A GTj }ž µ¿ -Ö áï -<K]o uŠ “Ÿµ(¾$ç 0=C61¸<ê?'Ag7©9ác09°Bê=-fk>ÒCJUg  $ 6DY^p € Š– ¨ µ ÃÑåü$8K^p‡—«Çâÿ  . I ` t ˆ  œ ª  -½  È Ö  Û  -è  ó ý  - -. - -? -J -f - n -z -Š - š -¨ -À -Ü -ø - (% N T [  c p x ~  -„ O ß  -ñ ”ü ‘ ¢ » Ò  -è  ó  ÿ    . O b u  -„    © ¶ »  Ê ×  ï  ü  .EuTÊÌÜÅ©co Ózà[ariÜõ '6?Od&u'œ ÄBÐ  ' 6 DP U_elq ƒŸ±·Ïàäþ0?H^ u -Š “¤¬ ± ¾Êåü  -1HHP -™ ¤®¾ -ÆHÑ!B<ƒ1’Ä×Ü áîõ -  % 1`=™žC81|0®ß å òÿ - -'>N_~‘ ©(· -à -ëHö -? J -Wb iu„ “ ¶Ë Ú çõú  #AH P^€w ø3Ie iw ‰ — ¤K²3þ62ix"Ž ±»Óç ö$%@ U c „(¥+Î)ú*$!Oq/ƒ³ºÉ*Ú  '3 [ k { „  -– ¡ ± Ç × é ø !!)!? I?#S?w?-Š? ¸?Ä?Ù? î?ø?@@ @ -)@ 4@¥@@æ@ú@A A$A-A5A;AQA -iA -tAA•A -¥A °A ºAÈAÌAæA ÷A B! B-B 1B?BSB bB oB|B—BžB ¦B´BÉB ßBëB -þB CC .CM\MqMMˆMŸMµM ÄM ÑMÝMïM NN .N:NONUN -\N -gNrN zN‡NœN «N¹N -¿NÊNÏN äNðN -OO2O OO[OmOˆO¤O ¿OËOÛOôOPP4-PbPP’P«PÈPÛPêP.QE3QyQ ŠQ ˜Q¥Q ½Q ËQÙQôQ úQ R R - R+R ŒOŒUŒZŒiŒorŒâŒèŒúŒ  &3E U cm† —¤ -ª<µ òŽ !3GWf{•¥´È×ñ 1 -ALQZ3q;¥;á¡‘¿‘FÆ’ ““ “ )“7“=“E“ W“x““‡““®“Γ3ç“#”?”W”j”z”””ª”¹”È”Δ Õ”á”þ”•F•W• -w• -‚•• ’•  • ®• »• È• Ö•!ä•!– (– 4–+@–Kl–0¸–Qé–˜;—¢Ô—$w˜5œ˜PÒ˜G#™-k™O™šjéšoT›eÄ›j*œ~•œpo…wõ<mž?ªž>êžt)ŸtžŸ` ‰t þ ~¡0„¡µ¡»¡¡Ô¡é¡ ú¡¢6 -¢oA¢±¢³¢º¢4¢#÷¢È£Gä£%,¤XR¤U«¤O¥Q¥h¥q¥z¥‚¥ -‹¥ –¥ ¢¥¬¥ µ¥¿¥È¥#Ú¥þ¥ ¦¦¦#¦2¦9¦B¦U¦h¦q¦ƒ¦ •¦Ÿ¦ ¤¦ ²¦À¦ צá¦é¦ï¦ ò¦ü¦§*§ I§j§ p§}§„§§ ¬§¹§ Á§˧ܧ ߧ ë§ õ§¨¨¨ -%¨0¨ 8¨E¨M¨m¨ v¨„¨Š¨™¨¸¨ ǨÓ¨ -Û¨æ¨ø¨ ©©%© 5©C© W© e©s© ƒ©©£©¹©É©Û© ì© ø©ªªª-ª Gª Qª -^ªiªoª~ªšª©ª»ªÕªæªÿª«"« 2« S« ]«g« o«y« «‹« «¯« µ«ëÓ«Ú«à«ç« ú«¬ -¬ ¬ ¬ -'¬ -2¬=¬V¬_¬ g¬q¬ w¬„¬Š¬¬–¬¬¤¬¬¬´¬ Ǭ Ó¬à¬ú¬ ­­­­%­?­N­ -n­y­Œ­ ›­ §­³­»­íÙ­ è­ õ­® ®®®®,®G®P®X®k®® ¡® ®®¼®®Ò®Ø®ß® -ç® ò®ÿ® ¯ ¯ -+¯ 6¯ D¯ Q¯ [¯ h¯u¯ †¯¯ ˜¯¢¯©¯ -¯¯º¯ ïϯد ç¯ ô¯° ° °°.°5° >° K° Y°f° o° }°‹° š°¦°¹°¿°°Ç°Ï° Þ° ë° ÷°±± ,±9±?±H±Y±l±~±(±¹±Á±ʱà±ø± -²4$²1Y²/‹²»²Ѳá²³ ³³³0³#A³ e³†³¥³¬³¼³"̳ï³ -÷³´´%´,´5´K´ \´h´o´w´‡´™´®´ -Ç´ -Ò´ -Ý´è´ î´ü´µµµµ -?µJµ[µaµ -jµuµ{µ„µ‰µžµ´µõ ˵صçµëµñµôµ¶¶ - ¶¶¶$¶5(¶^¶ p¶z¶Š¶¶–¶ ž¶¬¶!Á¶ 㶠·%· -E· P·\·c·g·o·t·z·€· ‡· ‘·›·¡·¨· ¯·½·.зÿ·@¸]¹*x¹n£¹[º=nºP¬ºQýºNO»ož»F¼|U¼DÒ¼4½KL½[˜½Wô½5L¾E‚¾1Ⱦ=ú¾78¿;p¿ ¬¿¶¿ -½¿ È¿ -Ò¿ Ý¿ é¿õ¿ À -ÀÀ!À2À -GÀRÀ[ÀdÀ"À¤ÀºÀ;ÂÀþÀÁ -%Á 0Á<Á \ÁiÁpÁxÁ €Á ŒÁ šÁ ¦Á -´Á -¿Á ÊÁ ×ÁãÁ øÁ  Â#Ân2‚¡ÂD$Ã7iÃ6¡ÃØÃñà ùÃÄ Ä .Ä<Ä TÄ`ÄxÄÄ¡Ä!³ÄÕÄîÄ"Å(ÅDÅVÅnÅ -ÅŠÅ  Å ÁÅ"âÅ"Æ(Æ@Æ,ZÆ;‡ÆÃÆâÆ$úÆÇ(Ç CÇdÇzÇŽÇ ¡ÇÂÇØÇìÇ*ÿÇ*ÈJÈ -eÈpÈ -‰È”È ­È»ÈØÈ ðÈ ýÈ É É#É76É9nÊ4¨ÊÝÊ÷ÊýÊË—Ë -³Ë¾ËÛËøËÌÌ-Ì=ÌNÌcÌ|Ì‘Ì:¦ÌBáÌ$Í>D͖̓ͩͺÍËÍÜÍíÍôÍ$ùÍÎ5Î:MÎ ˆÎ•ÎªÎ½ÎÐÎÙÎîÎ ÷ÎÏÏ+ÏCÏ8^Ï-—ÏÅÏÌÏ ÔÏÞÏîÏ÷Ï Ð !Ð-Ð MÐ2[ÐŽÐТР¨Ð¶ÐÐÐÙÐèÐùÐÑ>&ÑeÑ lÑ yÑ †ÑÑ˜Ñ ŸÑ«Ñ³Ñ »Ñ ÇÑÕÑ ÜÑŠèÑsÒ xÒ …Ò ’Ò œÒ ©Ò+ÊÒöÒ ÓÓS&ÓFzÓFÁÓOÔ@XÔ™Ô.Õ$HÕYmÕ*ÇÕXòÕ6KÖ@‚Ö/ÃÖ-óÖ!×1× -M× -X× c×m׆ע׻×Ò×æ×'û×$#Ø$HØmØ1ŒØ+¾ØêØðØ -Ù0Ù0?ÙpÙ.Ù-°ÙÞÙñÙÚÚ&Ú -.Ú9ÚTÚkÚ qÚ{Ú„Ú “Ú´ÚËÚ!ÛÚ=ýÚE;ÛEÛIÇÛ9ÜCKÜ(Ü ¸Ü"ÙÜüÜKÝ"d݇Ý#¢ÝAÆÝAÞ"JÞ"mÞIÞEÚÞ! ßBß$Qßvߋߚ߸ßÍß Ôßâßùßà*à9àAà GàTà gàsà ‘àŸà1¯àáà -ñàüà á -á á'áBá -]á*há“á§á »áÇáÚáìá õá â - â â #â(Dâmâƒâ˜â±âÍâ#êâ'ã6ãNã'dã.Œã»ã×ãîãää%ä6ä¢>äáä èä ôäþäå&.å&Uå|å—å3©å3Ýå)æ ;æGæ\æoæ'ƒæ -«æ4¶æ'ëæ;ç(Oç;xç2´ç6çç6è4Uè#Šè=®èìèôèéé3éLéfé+é*­éØé*ôéê>êUêfêê žêªêÈêàêñêë&ë ;ëIë Xëfë~ë’ë¤ë´ëÉëÜëíë ôëì ì -ì='ìeìwìì ¤ì ÅìÒìéìîìôìíí4íGí`írí†íží ·íÅíÜí ííûí îî #î2/î3bî–î¥î#¸î>Üîï9ïHïWïmï‚ï’ï£ï´ïÄïÓïâïúï ðð 4ðBðVðpðð¯ðÄð Öð ÷ð ñ9ñ KñXñ _ñmñ|ñ „ññ ˜ñ ¤ñ±ñÊñæñò -òò0ò CòOò mòyò‚ò ‘ò›ò)¤òŽÎòN]ó<¬óéó úóôô %ô/ô?ô\ôeô~ô•ô ©ô ¶ô Ãô Ðô Þôêôþôõõ&õ6õIõJ\õ §õÈõÛõíõöö0öAö"Uö+xö¤ö ¹öÅöÕö -äöïö ÷#÷C÷b÷÷—÷©÷Ã÷(Õ÷$þ÷#ø6øKøiø%zø øºøÙøôøù$ù#:ù^ù rù ù ‹ù—ù0§ù Øùäù&þù%ú\8ú[•úñú2÷ú**û#Uû$yû0žûÏûïûøû ü9ü1Nü€ü‰ü ˜ü¦ü'ºü2âü ý 6ý$Wý'|ý*¤ý$ÏýVôý`Kþ¬þ³þ ¼þÈþÞþ$ùþÿ 7ÿCÿ ]ÿiÿ)rÿ$œÿÁÿÒÿãÿ÷ÿ    '1O -l-w&¥ ÌIØt"U—Jíl8i¥icyaÝŸ?Kßf+w’k -vhh}kæŸRò  % 7 M T j { „ œ  °  -¾  É Ö ï  -# -8 -N -c -w -Š -¢ -´ - Ê -ë -)  3 = &E !l Ž ¦  Á  â    1 ? S \ k  z ˆ › ª ¿  Ò à    ( : K c  › ° (É ò ø ÿ   - (2XAš ±¥½cu‹£ ¼ Æ Ôâë=AW my  œ -¦±¶ ÇÔ ñ -ý- GƒUÙôù^ n€{ü  š ´ -Õà ò   8$K$p•D¤ é ö (6 -;FLSZs†› -³"¾áøü"9Yhp ¦ ³ÀÇÏÕÜ â ðü&CT Yf*ƒ®a¶  -$/? -GOR&¢\É&.3Au‰Ž•¦¬Á ÑÝä÷|í„OrAÂ9> C -Q\ n x„ œ ª*¸ã ù -& T `lj × -ãîö ý  3 E _ | ” ¦ ¸  ¿ Ì  ß é ñ  ! !!,!‘F! Ø!%å!! "-"!J"l" r"€"" -ž"©"]¹"D#B\#Ÿ#³#%É# ï#û#$$$ 3$@$[$w$Ž$' $#È$-ì$:%5U%+‹%·%Ö%9î% (&4&F&:Z&•&.©&@Ø&'-' F'S' h'v'$•'º'Ð'å'ü'(&(E(^(&~( ¥(Æ(à(ñ()&)>)%W)}))¶)È)à)ÿ)*&8* _*€*š*ª*À*Ý*ô*(+;+Z+}r+ð,ù, --,- -L-W-]-m-†-–-Gœ-ä-ø- .. 2. @. N. [./h./˜.-È.,ö.#/9/P/g/}/“/ š/¦/Ä/ à/í/lõ/ b0=l0ª0 Â0 Ð0Ý0 î0 ü0* 141;1O1W1 f1(t1#1Á1×1ì12 -2 2&2>2M2l2‹2š2 °2¾2Ü2û2 -3)383 W3e3ƒ3¢3¨3 Ç3Ñ3Ù3â3ý34'*4R4c4v4–4ž4+®4Ú4ú4%5 75E5M5i5@…5Æ5Î5Õ5Ý5ò566+6E6^6|6š6³6Ã6Ø6ç6þ67547j7!q7%“7 ¹7Ç7Ï7Õ7Ü70÷7(8?8 X8d8 u88 †8’8š8 ¬8¸8Ê8Ü8÷89 '959I9Z9n9„9—9 ª9Ë9ß9ø9,:+>:j: ˆ:–:¥: ¹:Å:!Ù:û:; -; ;;5;T;p; -Œ; -—; -¢;)­; ×; ä; ñ;$ý;"<1<L<g<y< -ˆ<#“< ·<Å<#×< û< = =,$=Q=.i=˜=®="Í=1ð= ">0>N>]>p>v>>”>¥>¬>½>•Ó>“i?&ý?$@<@ -O@Z@b@t@†@˜@°@È@Ñ@¤à@…A•A «A -µAÀA ÈAÕAìABB/BBB$`B%…B'«B&ÓB$úBC!:C(\C -…C C œC¨C¿CÏC ÖC àC_ìC.LD{D+ƒD¯D8¸DñD EE(E FE$gEŒE “E ¡E­EÀEØE çEóE F FF.F CFMF fFpF …F¦F¶FÌFæF*G%0GVGhGmG G ‰G/—G/ÇG-÷G,%HRHdH;uH±HÂH ÈHÒH ÙH æHðH ÷HI III$I AINI hI,tI¡I°I ÁIâIòIJ$J7JFJZJ lJxJ~JM…J<ÓJK K'K 7K$EK&jK­‘K6?LvL~LQ…L ×M -áMìM üM N%N =N8JN ƒN‘N¦N»NÂNËN áNëNúNOÞ&OPP )P 5PBP IPSP\PzP˜P¨P·PÕPêP þP QQQ3Q DQNQ!WQyQ‹Q$¤QÉQÞQóQ -R +R8R @RNRkR ˆR–R «R¸RÔR ñRÿR S*S GSTS#pS@”SÕSÚS àS#T$%T*JT*uT& TÇTÛT@íT^.U?U>ÍUP V]V;dVD VåVüVW&W*W /W8;W>tW³WÄWÝWõW X%X9XYXvxXïXÿXY.YKY`YpY‚Y”Y£Y¶YÔYçYøY -Z='Z,eZ’Z£Z´Z%ÄZêZÿZ -[[5[O[g[ ƒ[‘[ ¢[®[Î[î[\\*\>\U\#q\,•\Â\*Ü\(]50]f]5…]»]Ë]à]ô] -^^8^L^:`^;›^×^í^ _ _ _8_MS_$¡_Æ_ Ï_.Ý_ `W`'w`Ÿ` ¼`Ê`Ñ`æ` ü` a a"a 3a AaMagapa‚a‡aa¡a±aºaÎa éa÷ab -b $b".bQb"bb…b”b³bÒbâb"c"%cHcgc{c•c°cÆcæc?d)@djd"‚d!¥dÇdædødIeM]e«e¿eÚe)óef.f =f ^fhfxf‡f—f¦fºfÉfØfífgg -2g=g¬Rgjÿg -jhuh -|h‡h˜h h¯hÄhàhöh#i7iUili{ii¬iÂi#ßij!j8jHj^j{j’j$°jÕjôj kk,kFkZk!tk–k²k -ÇkÒkãkll$'lLl llzl"˜l»l×lélm%m'Cm$km m±m"Ãm"æm nny€︀ ¨´½ÂÈàø ‚‚-‚?‚F‚V‚f‚‚ -”‚ Ÿ‚ ­‚Q»‚ ƒ"ƒ4ƒKƒbƒxƒƒ¥ƒ·ƒ(΃÷ƒ „$„:„6L„ƒ„›„¬„Á„Ö„ö„…!+…M…^…u…#Š…®…É…Þ…!þ… †2†F†X†q†ˆ†™†¡†¶†Ó†9܆‡‡4‡:‡ J‡W‡i‡‚‡ —‡ ¥‡²‡¹‡Á‡ ʇׇEç‡-ˆ¾ˆψçˆÿˆ‰ ‰8‰(?‰,h‰•‰#²‰Ö‰ í‰$Š#3Š WŠcŠtŠ|Š…Š"¤ŠÇŠ ÏŠ ÜŠèŠ ùŠ‹ -‹#‹,‹=‹Q‹d‹t‹‡‹‹$­‹Ò‹+å‹Œ''Œ&OŒ vŒ‚Œ —Œ¤Œ -¸ŒÃŒÉŒØŒìŒ õŒ 9 -> I U_o`ˆ3é>Ž.\Ž3‹Žn¿Ž\.œ‹I(!rÝ”!r‘”‘%¨’åΓ´”.D•Ts•È•Ý–™ý–¬——D˜ J˜W˜<^˜›˜2™[Pšf¬š^›_r›9Ò›\ œžiœ\0eE–4ÜYŸXkŸDÄŸ  Ù™ ís¡Ña¢‘3£žÅ£™d¤–þ¤D•¥ Ú¦j{§ 槩2!ª@Tª_•ª õª6« 8«B« U«v«’«›«¢« -³«²¾« -q¬&|¬'£¬ˬå¬ û¬ ­­3­C­b­s­ƒ­ ˜­¢­a·­ ¯&¯A¯P¯e¯}¯’¯¦¯¿¯ܯñ¯°°"+°N°_° p°|° ° -›°¦°ª°+²°LÞ°Y+±P…±òÖ±’ɲg\´Ä´ Ô´á´é´ ò´ ü´µ µ<µEµNµ+Wµ"ƒµ&¦µ=͵' ¶3¶I¶b¶%y¶Ÿ¶¼¶жá¶æ¶ ì¶"ø¶·$·M-·${· - · -«·¶·¾·Ó·ç·û·¸¸//¸3_¸“¸ -¤¸.¯¸SÞ¸+2¹n^¹Å͹M‚»_лy0¼Kª¼fö¼h]¾‘ƾ›X¿ô¿”„ÀÁ›·Á“S™çÂ_ÃdáÃ_FÄ“¦Ä:ÅØÅŸXÆÈøÆÁÇ2ÇÇúÇÈ ÈÈ4ÈFÈ_È?aȃ¡È%É'É,É02É&cÉÝŠÉKhÊ2´ÊkçÊWSË^«Ë! -Ì ,Ì9Ì HÌ UÌbÌ yÌ…Ì •Ì £Ì±ÌÀÌ1ÏÌ ÍÍ )Í 6Í @ÍNÍUÍ\Ízͬ͘ÍÅÍßÍîÍõÍÎÎ+Î :Î GÎTÎ WÎcÎvÎ"“Î"¶ÎÙÎ èÎõÎýÎ!Ï'Ï0Ï 9ÏEÏ\Ï _ÏmÏvÏ"‡ÏªÏ ²Ï¾ÏÑÏÙÏáÏ!éÏ Ð Ð "Ð,Ð@Ð_Ð~ÐИРкÐÉÐÚÐëÐûÐ Ñ$Ñ3ÑCÑYÑhÑ$|ѡѳÑÅÑ×ÑíÑüÑ ÒÒ+Ò -HÒSÒ eÒ rÒ~Ò”Ò«ÒÀÒÛÒóÒÓ$Ó:ÓQÓ,fÓ“Ó šÓ §Ó ±Ó½Ó -ÄÓÏÓéÓ þÓÔÔ -,Ô7Ô -@ÔKÔ^ÔmÔ -pÔ {Ô ‡Ô”Ô £Ô¯ÔËÔ ÜÔèÔðÔ ÷Ô ÕÕÕÕ'Õ-Õ 5ÕBÕ -^Õ iÕwÕ ŒÕ™Õ«Õ²Õ¹ÕÁÕÜÕ;øÕ4Ö;ÖTÖ cÖ pÖ|Ö „ÖÖ§Ö·ÖÇÖÖÖÙÖ âÖìÖóÖ× "×,×4×"N×2qפ׳×Ã×Ê× Û×è×ï× ö× ØØ!Ø3Ø FØRØaØ sØØ ŽØœØ ­Ø»ØÃØ ÓØ ÝØçØ -ðØ ûØ ÙÙ 5ÙCÙKÙ -TÙ_Ùqيّ٠™Ù¦ÙµÙ ÄÙÎÙßÙðÙÚÚ&Ú/Ú2Ú7Ú?ÚNÚ ]ÚkÚ~Ú™ÚµÚ ÊÚ×ÚèÚúÚÛ+Û;=ÛyÛ Û‹Û¢ÛºÛ(ÒÛ,ûÛ-(Ü0V܇ܠÜ<½ÜúÜ Ý -ÝÝ4Ý%QÝ%wÝ)Ý -ÇÝÒÝâÝ,öÝ#Þ,Þ5ÞDÞVÞ -\ÞgÞ}Þ ™Þ¥Þ ¬ÞºÞÔÞèÞüÞ ß -ß )ß 3ß =ßJßRß bß -lß!wß™ß©ß »ßÉß -Ûßæß ïßùß"þß!à:àIàRàZàiàmàsàvà…à‰à -àšà¡à§àG«à(óà -á'á7á<á AáKáZá'qá'™á&Áá&èá -â -â%â,â1â9â>âCâIâOâXâaâgâmâuâW„â9Üâã[¯­›}røʪ2ç7=ù€ž-‡~U³º>8 W8WÌòV¸nÚ•€ê†Ã0¡ŠeŸÜr<Ý4üãšOÍ®š†¨éÝŒ° S ß+#åc8ùt®ù§W–sòï£lBýg\0'ÍG©=b½mŒº/¿x:‘Ö¦6 ø\T\ן¬Ã#ìýB-ÂLÞƈSs‰àïM2 Ï=€±ÏMú‰ÛåHÕv;—í§3%(þ ÌºÅÜ—w$ Z_v ê!Reþ÷`Hxç+±¼ B†Z„´ ¢X‚!¾+[À!Æ·¥+*¼hesªcw3 ‚ÅëÂã0žiŠò# Òô§oëLóž›TÓÔKªXg€_ -ÚN;69 ^ÖÚÞ¥´öP Œzï}"„+²Ûß, –éêùn( µÞµ2§.Cö/µ™ðœ‡­£VƒèúšG9×ô·üEO=OÄv!ú†õ1_çš>ö¡Ã?¯þpÝÖ¯è _,Ë] C ‹ë6`€G|ž  {89ßÑ®áØvS½›àýºXÖãœãÛ”(¥M ÉåU0 Nÿ±XÓ½E : ¼2Òr”˜ÍHƒ³ªÁa„ꋺð5oÇVhü­|?B¡A &4³~ µ’>LÛfÞË$®0èâ¼5Ÿ™47zç³–ç±}Ï -€]ÈP•ú -¸]F 2ð -•"x[§i„'Éø¬eãï&ñ’Ç›("äqä>ŠU9Ü…±m> t`,’ÜrGäÀQ¶v¸¨Š - ' Ó´âÉù|’¿è£Ð,NÍí34±ã Dn†EŸ›3$ i«¸gùìLÔéc>túIÐB†·'^ü©"Û~@! ûÀŽ]ïY ìø ]èw7Q-Ý—hË ”€i«©–UªËˆAî yJá…OyAjapmÐZü D­Ùš k,º{Z…΋ol *#¨(¹S1 åWȸÉ@Ӊίzo*ŒVoŽELVÔœrG ©J ; ?=|Qí›Ì´ñ áþ Ì—fJÙY@0«¤bø—ÔX% =óvRIm/IÆjûF1Y&wÓÜXÚ$æ ômŠYi4È TsGAè}*2ÿC厎N¡ïÜRkH²¢‘ñmŸ«!r£ükE«Õß”‡^Tm·ÅŽ A^­N Y¿I½?3[ÍÖ' K1e,&n-wkɺôÐkd6êoI˜“Š¨›ƒ³ó—¦;Ç0•Cæ× ß—§5?HuW ŒÄqÿÕSB  ï>I”ýÀﶷý ‘d†IÂÁa;Þu°d½ ÑF²£¤ŒL×eèß[BR°°Æ -zfþNñ¥\Ï[é)çóNž‡ÒòC¾Ëùö øà^™ÿ.îku•1ã:vKÂdAát*5 X»s­C•H6vÉÖ¶TFc­x'^+ûf( ÷Ä–ŒHÒ*ÕNÙòæ‘ JƒO ¨#QqAÌj™;:Q Ì ×Õ…Äü&(mBì²ôÛ÷è -6‡£uÎëÕ.öžj.  ‰’\t¬p¶kÄÍüêb%Qý¢`泃zF£gœé0|ˆð8SqÔß wñ&"§F¢)}Põâ@ ¬œµJœÈæa¥2Ò¥ÇxJwÉÄÏ<¥êFPúСÑp¢#4p›5 ðqc)¹K“Sê';«·ëÚ$ÿÓ'O/Î txƒÌ< L ΑÈt£ëÏâlCµœõÜ%B j§Âi+š ,÷1¤l¶K@ f-= "& “Ñ)s…äØd+òT "¿W¹¦=AÏôÆ&sjíÐà®<›þÐæH ¬ñ?‡óÔñDEO±Ø«$À…ÑC„bñU -%íÞ“×êMÑóVJ €°ag‰˜<ø~\ 6K Ó? yBß‹¯Dä"Å/ÊÅr =ô[ Z¬ØÚTðé„h- ¤<@ì]i lc d»ÿ] ‰JU:*ó¦pð4à`V‡˜¯Û}‘P“ku é V ¿ŽA?4 ^ÊFåPZ—ªDasˆ»wó©x†~n„ÜD7.Ë[ô7 l¤-1ÒoÚ‚´;î~ûC@ÛbÀ 12Ýò³ž™Ã¬Þ/¹ÁØ%†Öw:ÃÊ ;”#Xy(+ÜÙÃØ"擹MÙÊWUÆ”Ìy…åƒ. ²%°ÞõnÑdòà´{ÖæeÁƃæIy™±€½¢žh`h{ë O 6 ²@œg¡Ðèl >5 C‹ª@Ý9‚ÈVšXG‘´=Ŷ:l˜±øMÑ {õp¾•L÷ýbK ¢ÀìÇö:áf· ³îÒ~tES ÓG¾çn¬!Guj$ˆ2)ÿ<éKÝTýu*P9ì>ls¢Óà#5E¾9íY߇[ú$z¡“z[ÇGûeد’fà jüDúM¹}¦…uôÍ,>¾~Žc3xi9Ò•÷IÍ7ò.‚»z#õžFÚQSA8©%Œ1îΘ©´ -Ÿ)Â/’{½Q¼agÙ¸Á9(®bþ;oR4þQ²‹ë\ä ¿¤Å˜#Ý:«M L”âPí,ÊÎõ»¨¡ŠD©Õ ²%Ð÷$à¸É¿}* š._|'-h Á7Ϙ&÷´8|‹¡äáħ$) þ_Ò°) xÌŠÞµãʼnö]¶ûq^i¾úU)ùO°!ã{â+ ^²MY·ÉHö n¨àR ?@ ÊY ÈM‡^ hRŸ×¼»JbýX í‹Æ7-¼EךR _]<¼{TEaŽ®\5Äk¹Õ‹\(–! yqÀWñ3ºyP®¥ V–¿5/ ÚWÙZâªá`I 3P‚û…‘³f ¬îåù¤ÙÕûáªÝ–¥á4Ûp»7S|r«ïË~Ñ!â& ¦¨3rÿ™¤ì¹Z ¯œZð®U ˜íÇî<-‘‚YëÖ¦—<L*ìÎn×»K‰q.à -H eÁ¨» " „Ù•–d°|Ë NW ¹øˆpŽ,äˆ:‰8ój\zaˆÔé÷¤¾Z0b¿_ÿcÁ0Ê ¸ `5R1À¢gŠ ç6¶ä”_’UÇ’{¦½OD½hD ™2ŒJcö]Ÿ`ˆº9vØF?õ·)ðÔ8Í'Q¯¦RKÄ©õØy8/ µÏ¶­¼ÎâÂgÅÆ “ ÇoÁm%dÂt¸q6 Nf}7å­.“Ô Èµu‚‚™3/ûÈçTþËYÊ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.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: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.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-06-18 02:39+0200 -PO-Revision-Date: 2005-06-21 19:47+0200 -Last-Translator: Hendrik Richter -Language-Team: German -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Ungültige Option »%s« - -Verwendung: %s [Option ...] [Datei ...] - - --batch-interpreter - Die Prozedur um Stapelverarbeitung auszuführen. - --debug-handlers Aktiviert Fehlersuchroutinen für nicht-schwerwiegende Signale. - --display Benutzt die angegebene X Anzeige. - --dump-gimprc Eine gimprc-Datei mit Vorgabeeinstellungen ausgeben. - --no-no-cpu-accel Keine speziellen Prozessorbeschleunigungen verwenden. - --no-shm Kein geteilter Speicher zwischen GIMP und Plugins. - --pdb-compat-mode - Prozeduraler Datenbank-Kompatibilitätsmodus. - --session Ein alternatives Sitzungsprofil verwenden. - --stack-trace-mode - Fehlerdiagnose-Modus bei schwerwiegenden Signalen. - --system-gimprc Ein alternatives Systemprofil verwenden. - --verbose Startmeldungen ausgeben. - -b, --batch Befehle im Stapelverarbeitungsmodus ausführen. - -c, --console-messages Warnungen auf der Kommandozeile statt in einem Dialog ausgeben. - -d, --no-data Keine Muster, Farbverläufe, Farbpaletten und Pinsel laden. - -f, --no-fonts Keine Schriftarten laden. - -g, --gimprc Ein alternatives gimprc-Profil verwenden. - -h, --help Diese Hilfe ausgeben. - -i, --no-interface Ohne Benutzeroberfläche starten. - -s, --no-splash Kein Startfenster anzeigen. - -v, --version Versionsinformationen ausgeben. -%d Ebenen%d dpi%d dpi, %s%d Ebenen%d Minuten%d Sekunden%d x %d dpi%d x %d dpi, %s%d x %d Pixel%g x %g %s%pKanal-Kopie (%s)Auswahl aus %s-Kanal%s Meldung%s-Kopie%s Maske%s%sKlick: Auswahl erweitern%s%sZiehen: Verschieben & Stauchen(%0.3f, %0.3f, %0.3f)(Keine)(Dieses Konsolenfenster wird in zehn Sekunden geschlossen) -(Namenlose Ablage)(Namenlose Vorlage)(Variiert)(bereinigt)(ungültige UTF-8-Zeichenkette)(verändert)(Kein)1 Ebene1 Ebene15 Grad %s16:1 (1600%)1:1 (100%)1:16 (6,25%)1:2 (50%)1:4 (25%)1:8 (12,5%)2:1 (200%)2D Transformation...4:1 (400%)8:1 (800%)<%s><>Für eine optimale Arbeitleistung ist es möglicherweise erforderlich, einige -Einstellungen anzupassen.The GIMP - GNU Image Manipulation Program -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis und das GIMP-Entwicklerteam.Die Syntax der GIMP-Tippdatei konnte nicht analysiert werden!Ihre GIMP-Tippdatei scheint nicht zu existieren!Eine Datei mit dem Namen »%s« ist bereits vorhanden.Zur Auswahl _hinzufügenWi_nkelInfo zu GIMPAktionDas _fokussierte Bild aktivierenAktive FilterAnpassende HochrechnungHinzufügenAlphakanal hin_zufügenAlphakanal hinzufügenAnker hinzufügenKanal hinzufügenFarbe zur Farbpalette hinzufügenHilfslinie hinzufügen: Hilfslinie hinzufügenHorizontale Hilfslinie hinzufügenEbenenmaske _hinzufügen...Ebene hinzufügenEbenenmaske hinzufügenPfad hinzufügenNachziehenTextebene hinzufügenVertikale Hilfslinie hinzufügenEine Maske zur Ebene hinzufügenFarbe des Hintergrunds hinzufügenFarbe des Vordergrunds hinzufügenEbenenmaske hinzufügenText zum Bild hinzufügenDie aktuelle Farbe der Farbliste hinzufügenDen gewählten Filter zur Liste aktiver Filter hinzufügen.Zur Farbpalette hinzufügen %sZur Auswahl hinzufügenThema »%s« wird hinzugefügt (%s) -AdditionZusätzliche EingabegräteHelligkeit und Kontrast anpassenFarbabgleich anpassenFarbkurven anpassenFarbwerte anpassenHelligkeit und Kontrast anpassenFarbabgleich anpassenFarbkurven anpassenFarbwerte anpassenFarbton / Helligkeit / Sättigung anpassenFarbton und Sättigung anpassenWerte automatisch anpassenJustierungErweiterte EinstellungenWirkt auf:Beeinflusster Bereich %sSprühpistoleMit variablem Druck sprühenAus_wahl aus AlphakanalAusgerichtetAusrichtungAlle KanäleAlle DateienAlle Dateien (*.*)Alle Bilddaten, die nicht in den Tile Cache passen, werden in eine Auslagerungsdatei geschrieben. Diese Datei sollte sich auf einem lokalen Dateisystem mit genügend freiem Speicher (einige hundert MB) befinden. Unter UNIX ist das systemweite temporäre Ordner eine gute Wahl (meist »/tmp« oder »/var/tmp«).Füllen von vollständig transparenten Bereichen zulassenAuswahl vollständig transparenter Bereiche erlaubenVergrößern zulassen %sAlphaAuswahl aus AlphakanalAlpha:Ein Bild mit der ausgwählten Größe wird mehr Speicher verwenden, als unter »Maximale Bildgröße« in den Einstellungen angegeben ist (derzeit %s).A_nimationSchwebende Auswahl verankernSchwebende Auswahl verankernSchwebende Auswahl verankernWinkel:Un-Radieren %sKantenglättungErscheinungsbildEbenenmaske anwendenEbenenmaske an_wenden...Schwellwert anwendenEbenenmaske anwenden»%s« wirklich aus der Liste und von der Platte löschen?Vorlage »%s« wirklich aus der Liste und von der Platte löschen?Den _Einstellungen entsprechendVor dem Schließen eines Bildes ohne zu Speichern rückfragen.Seitenverhältnis:Seitenverhältnis:Parasit zuweisenParasit zuweisenParasit zuweisenParasit zuweisenAutor:AutoAutomatisch dem a_ktiven Bild folgenAutomatisch schrumpfenAutomatisch verkleinernFenstergröße beim _Vergrößern und Verkleinern anpassenAutom. ladenAutomatisch bestimmtVerfügbare FilterVerfügbare Typen:HG-Farbe_Helligkeit-KontrastA_blagenHintergrundHintergrundfarbe:Hintergrundfarbe ist:Hintergrund: %d, %d, %dRückwärts (Korrigierend)Gefüllten Bereich auf alle sichtbaren Bereiche stützenAuswahl auf alle sichtbaren Bereiche stützenHinterSchrägBi-LinearSchwarz & WeißSchwarz:Farben der Enpunkte _mitteln_FarbverlaufFarbverlaufDeckkraft der Enpunkte m_ittelnFarbverlauf: Ãœbergang: Bei indizierten Bildern nicht möglich.Farbverlauf...BlauBlau:WeichzeichnenWeichzeichnen / Schärfen_Rand...Kanal umrandenAuswahl umrandenNeue Auswahl größer umHelligkeit-KontrastHelligkeit-Kontrast funktioniert nicht bei indizierten Ebenen.PinselPinseleditorPinselordnerPinsel UIPinsel:PinselPinselmenüFüllenAblagenAblagemenüNachbelichtenStumpfNach EndungIndem Sie das Bild auf den zuletzt gespeicherten Stand zurücksetzen, werden alle Änderungen einschließlich des Journals verloren gehen.CMYK_KalibrierenFa_rbpipette_Spalten:K_ombinierenBildschirmauflösung kalibrieren%s konnte nicht rückgängig gemacht werden_LeinwandgrößeAbbrechenHilfslinie abbrechenEbenenmasken mit anderen Abmessungen als die Ebene können nicht hinzufügt werden.Masken können nicht zu einer Ebene ohne Alphakanal hinzufügt werden.Masken können nicht zu einer Ebene ohne Alphakanal hinzufügt werden.Diese Ebene konnte nicht verankert werden, da sie keine schwebende Auswahl ist.Kann nicht in eine Palette mit mehr als 256 Farben konvertieren.Es konnte keine neue Ebene aus dieser schwebenden Auswahl erzeugt werden, da sie zu einer Ebenenmaske oder einem Kanal gehört.Ordner »%s« konnte nicht angelegt werden: %sVorschau konnte nicht erzeugt werdenEs konnte nicht ausgeschnitten oder kopiert werden, -da der ausgewählte Bereich leer ist.${%s} konnte nicht nicht expandiert werdenDie Auswahl konnte nicht schwebend gemacht werden, da der ausgewählte Bereich leer ist.Ebenen ohne Alphakanal können nicht angehoben werden.Es konnte nicht gespeichert werden, da nichts ausgewählt wurde.Leere Kanäle können nicht nachgezogen werden.Leere Pfade können nicht nachgezogen werden.LeinwandgrößeModus des Leinwand_rahmens:Zentrum X:Zentrum Y:ZentriertHintergrundfarbe ändernFarbpaletteneintrag ändernVordergrundfarbe ändernBildauflösung ändernBildeinheit ändernDruckgröße ändernAktive Ebene oder aktiven Pfad wechselnHintergrundfarbe des Gitters ändernVordergrundfarbe des Gitters ändernIndizierte Farbpalette ändernDie Perspektive der Ebene oder Auswahl verändernWechseln des Tastenkürzels fehlgeschlagen.KanalKanaleigenschaftenKanalname:Dieser Kanal kann nicht weiter abgesenkt werden.Dieser Kanal kann nicht weiter angehoben werden.Farbe des KanalsDieser Kanal befindet sich bereits ganz unten.Dieser Kanal befindet sich bereits ganz oben.Aus_wahl aus KanalAuswahl aus KanalAuswahl aus Kanal erstellenKanal:KanäleKanalmenü_Größe des Schachbretts:Nachziehstil festlegenKreis_LöschenLöschenKanal löschenListe alter Operationen löschenGesamten Text löschenFehler löschenListe alter Operationen entfernenDrücken Sie »Weiter«, um die Einstellungen zu übernehmen.Drücken Sie »Weiter« um Ihren -persönlichen GIMP-Ordner anzulegen.Drücken Sie »Weiter«, um die -GIMP Benutzerinstallation zu starten.Klicken Sie auf »Weiter«, um mit der Benutzerinstallation fortzufahren.Klick verbindet diesen Anker mit dem gewählten Endpunkt.Klick erstellt einen neuen Anker (versuchen Sie die Umschalttaste).Klick erstellt eine neue Pfadkomponente.Klick erstellt einen neuen Pfad.Anklicken um Vorschau zu erstellenKlick löscht diesen Anker.Klick fügt einen Anker auf dem Pfad ein (versuchen Sie die Umschalttaste).Klick macht diesen Knoten winklig.Klick trennt den Pfad auf.Klick wählt zu bearbeitenden Pfad.Klick erneuert die Vorschau -%s Klick erzwingt eine neue VorschauKlick-Ziehen ändert die Kurvenform (Umschalttaste: symmetrisch).Klick-Ziehen verschiebt den Anker.Klick-Ziehen verschiebt die Anker.Klick-Ziehen verschiebt die Komponente (versuchen Sie die Umschalttaste).Klick-Ziehen verschiebt den Marker (versuchen Sie die Umschalttaste).Klick-Ziehen verschiebt den Pfad.Klick: AuswahlKlick: Auswahl Ziehen: VerschiebenErgebnis beschneidenZwischenablageAuf oberste Ebene beschnittenAuf Bild beschnittenKlonen%s schließenAlle Reiter schließenAlle Reiter schließen?Diesen Reiter schließenPfad _kopieren_FarbenFarbeFarbabgleichAnsichtsfarbfilterFarbpipetteInformationen zur FarbpipetteFarb_abgleichFarb_rasterung:Der Farbabgleich funktioniert nur bei RGB Ebenen.Farbe entfernenFarbindex:Farbe:Farb_tabelleFarb_raum:_Einfärben_Färbungsart für Segment_Färbungsart für AuswahlEinfärbenNur RGB Ebenen können eingefärbt werden.Das Bild einfärbenDas Bild einfärbenFarbtabelleFarbtabelleneditorFarbtabellenmenüSpalten:Ko_mmentar:KommentarKon_trast:_VerknüpfenAnsichtsfarbfilter konfigurieren_Erweiterte Eingabegeräte konfigurieren_Gitter konfigurierenGitter konfigurierenBildgitter konfigurierenTastenkürzel konfigurierenTastenkürzel _konfigurierenDen gewählten Filter konfigurierenDen gewählten Filter konfigurieren: %sBildgröße bestätigenSkalieren bestätigenBestätigung für Bearbeiten des TextesSchließen _ungespeicherter Bilder bestätigenKollidierende TastenkürzelKonisch (asymmetrisch)Konisch (symmetrisch)Nachziehungen verbindenKonstantEinschränkungenKontextVom Kontext abhängige Zeiger sind eine feine Sache und per Vorgabe aktiviert. Leider verschwenden Sie Ressourcen, die Sie möglicherweise anderweitig benötigen.WeiterMitwirkendeUmwandelnKante umwandelnBild in Graustufen konvertierenBild in indizierte Farben konvertierenBild in indizierte Farben konvertierenBild nach RGB konvertierenBild konvertierenBild in indizierte Farben konvertieren (Stufe 2)...Bild in indizierte Farben konvertieren (Stufe 3)...Bild in indizierte Farben konvertieren...VerknüpfenVerknüpfungsart %sIn Ablage kopierenKopiere _SichtbaresDatei »%s« wird von »%s« kopiert...Copyright:Fehlerhaftes Segment %d in Farbverlaufsdatei »%s«.»%s« konnte nicht angelegt werden: %sTemporärdatei für »%s« konnte nicht angelegt werden: %s»%s« konnte nicht gelöscht werden: %sDer Hilfe-Browser von The Gimp konnte nicht gefunden werden»%s« konnte nicht zum Lesen geöffnet werden: %s»%s« konnte nicht zum Schreiben geöffnet werden: %sVorschaudatei »%s« konnte nicht geöffnet werden: %s%d Bytes konnten nicht von »%s« gelesen werden: %sFehler beim Spulen in XCF-Datei: %sDer Hilfe-Browser von The Gimp konnte nicht gestartet werden.Anzahl:Ebene zuschneidenDock _hinzufügenEin neue Vorlage erstellenEin neues Bild erstellenEine neue Ebene erstellenEin neue Vorlage erstellenEine neue Ansicht für dieses Bild erzeugenEin neues Bild von dieser Vorlage erzeugenEine neue Vorlage erstellenBilder und Photos erstellen und bearbeitenPfade erstellen und bearbeitenPfad aus Text erzeugenPfad aus AuswahlVorschau wird erzeugt...Ordner »%s« wird angelegt...ZuschneidenZuschneiden / Größe ändernZuschneideinformationenBild zuschneidenEbene zuschneidenBild zuschneidenBildgröße ändern / Bild zuschneidenZuschneiden: Nur Fadenkreuz_AusschneidenIn Ablage _ausschneidenKubisch (am besten)Aktueller _StatusAktuelle Höhe:Nur die aktive EbeneDerzeitiger StatusAktuelle Breite:ZeigerZeiger_modus:Zeiger_anzeige:KurventypFarbkurvenKurven können bei indizierten Ebenen nicht angepaßt werden.BenutzerdefiniertBenutzerdefinierte FarbeEigener FarbverlaufBenutzerdefinierte _Rahmenfarbe:AusschneidenIn Ablage ausschneidenCyanCyan:Pinsel _duplizierenKanal _duplizierenFarbverlauf _duplizierenEbene _duplizierenFarbpalette _duplizierenPfad _duplizierenMuster _duplizierenVorlage _duplizieren...Dunkle Schachbrett-FarbeNur AbdunkelnStrich Punkt Punkt ...Strich Punkt ...Strichmuster:Strich Vordefiniert:GestricheltDatum:FehlersucheVoreingestelltes Erscheinungsbild im VollbildmodusVoreingestelltes Erscheinungsbild im normalen ModusVorgabe-GitterVorgabe-BildgitterVoreingestellte _Interpolationsart:Voreingestellte _Größe der Vorschau von Ebenen und Kanälen:Voreingstellter _Schwellwert:Anker löschenAnker löschenEbenenmaske lös_chenEbenenmaske löschenObjekt löschenSegment löschenVorlage löschenPinsel löschenKanal löschenFarbe löschenFarbverlauf löschen...Ebene löschenEbenenmaske löschenFarbpalette _löschenPfad löschenMuster _löschen...Einstellungen löschen...Die gewählten Ablage löschenDie gewählten Vorlage löschenDieses Bild löschenVektoren löschenÖffnen von '%s' schlug fehl: %sViele PunkteEntsättigenDie Sättigung kann nur bei RGB-Ebenen verringert werden.BeschreibungDesignGerätestatusEingabegeräteDialogeDialogmenüDiamantUnterschiedDirektfarbenEbenenmaske deaktivierenSchnelle Maske deaktivierenTextinformationen verwerfenAnzeigeAnsichtsnavigationAnsichts_filter...Anzeige-ProzedurenAnzeigeart:[%0.6f, %0.6f] wird angezeigtVernichtendAbstand:Abstand: %0.6fRasterungDivisionEine _neue Benutzerinstallation erstellenMöchten sie alle Filter auf Vorgabeeinstellungen zurücksetzen?Wollen Sie wirklich alle Werkzeugeinstellungen auf Vorgabewerte zurüchsetzen?Wollen Sie wirklich alle Werkzeugeinstellungen auf Vorgabewerte zurüchsetzen?Möchten Sie dieses durch das zu speichernden Bild ersetzen?_Nicht speichernAndockbar_DokumentenindexDokumentenindexDokumenteDokumentenmenüAb_wedeln bzw. NachbelichtenAbwedelnAbwedeln / NachbelichtenAbwedeln/NachbelichtenDoppelt GestricheltAnker ziehenAnker ziehenKurve ziehenMarker ziehenPfad ziehenZiehen: VerschiebenMit Tinte zeichnenBildBild-ProzedurenBild-ProzedurenNeue Ebene ablegenNeuen Pfad ablegenDie Text-Funktion ist nicht verfügbar, da keine Schriften vorhanden sind.Ereignisse des Gerätes ausgebenPinsel duplizierenKanal duplizierenFarbverlauf duplizierenEbene duplizierenFarbpalette _duplizierenPfad duplizierenMuster _duplizierenDie gewählten Vorlage duplizierenEEK: kann nicht rückgängig gemacht werdenPfad e_xportieren..._Sehr kleinKantenverhalten_Kanten findenBearbeitenKanaleigenschaften bearbeitenKanalfarbe bearbeitenPaletten-Farbeintrag bearbeitenFarbpaletteneintrag bearbeitenEbeneneigenschaften bearbeitenEbenenmaske editierenBearbeitungsmodusPaletten-Farbe bearbeitenPfadeigenschaftenAttribute der schnellen Maske bearbeitenFarbe der schnellen Maske bearbeitenVorlage bearbeitenPinsel bearbeiten...Kanaleigenschaften bearbeitenFarbe bearbeitenFarbpaletteneintrag Nr. %d bearbeitenFarbverlauf bearbeiten...Ebeneneigenschaften bearbeitenFarbpalette _bearbeiten...Pfadeigenschaften ändernMuster _bearbeiten...Bearbeiten-ProzedurenDie ausgewählte Vorlage bearbeitenElliptische AuswahlLeerer KanalLeere EbeneLeerer PfadLeere TextebeneUmgebungsdatei %s enthält leeren Variablennamen_VerbessernSchnelle Maske aktivierenRasterung für _Transparenz aktivierenGerät einschaltenWenn diese Option ausgewählt ist, wird ein kurzer Tipp beim Starten von The Gimp angezeigt.Wenn diese Option ausgewählt ist, wird eine Minihilfe unterhalb des Mauszeigers angezeigt.EnormGeben sie dieser vereinten Farbpalette einen NamenGeben Sie diesen Einstellungen einen NamenGeben Sie dieser Ablage einen NamenGeben Sie dieser Vorlage einen NamenGeben Sie diesen Einstellungen einen neuen NamenVerweis(URI) zum Bild eingeben:UmgebungUmgebungsordnerEgalisierenDas Angleichen funktioniert mit indizierten Ebenen nicht.Bis zum Hintergrund oder zur Transparenz löschenRadierer_FehleranzeigeFehlerkonsoleFehlerkonsolenmenüFehler beim Schreiben der XCF-Datei: %sFehler beim Verarbeiten von »%s« in Zeile %d: %sFehler beim Lesen von »%s«: %sFehler beim Lesen von »%s«: %sFehler beim Schreiben von »%s«: %sFehler beim Schreiben der XCF-Datei: %sFehler beim Schreiben der Datei »%s«: -%sFehler beim Schreiben von »%s«: %sFehler beim Schreiben in Temporärdatei für »%s«: %s -Es wurde keine Datei angelegt.Fehler beim Schreiben in Temporärdatei für »%s«: %s -Die Originaldatei wurde nicht geändert.FehlerEreignisS_ehr großNach Bedarf erweiternPfade nach SVG exportierenAlle Pfade dieses Bildes exportierenAktiven Pfad exportierenBelichtung:Erweiterte EingabegeräteNach EndungVG-FarbeVG nach HG (HSV-Farbton im Uhrzeigersinn)VG nach HG (HSV gegen Uhrzeigersinn)VG nach HG (HSV)VG nach HG (RGB)VG nach TransparentVG nach TransparentVG/HGVG/HG FarbeFS LockerFS StarreEbene aus Schwebender AuswahlLeinwand auf Ebenen anpassenVerblassenFehler beim Farbverlauf-Import aus »%s«: %sFehler beim Pfad-Import aus »%s«: %sAusgefallenSchwerwiegender Fehler beim Verarbeiten der Pinseldatei »%s«: Byte = 0.Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Datei scheint nicht vollständig zu sein.Schwerwiegender Fehler beim Verarbeiten von Pinseldatei »%s«: Datei ist fehlerhaft.Schwerwiegender Fehler beim Verarbeiten der Pinseldatei »%s«: Höhe = 0.Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Datei ist keine GIMP Pinsel DateiSchwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Unbekannte GIMP Pinsel VersionSchwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Unbekannte GIMP Pinsel VersionSchwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Unbekannte Farbtiefe %d.Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Unbekannte Version %d.Schwerwiegender Fehler beim Verarbeiten der Syntax der Pinseldatei »%s«: Nicht unterstütze Farbtiefe %d -GIMP Pinsel müssen in GRAUSTUFE oder RGB vorliegen.Schwerwiegender Fehler beim Verarbeiten der Pinseldatei »%s«: Breite = 0.Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbverlaufsdatei »%s«: Datei ist fehlerhaft.Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbverlaufsdatei »%s«: Datei ist keine GIMP-FarbverlaufsdateiSchwerwiegender Fehler beim Verarbeiten der Syntax der Farbverlaufsdatei »%s«: »magic«-Kopfzeile fehlt.Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbpalettendatei »%s«: »magic«-Kopfzeile fehlt. -Muß diese Datei erst von DOS konvertiert werden?Schwerwiegender Fehler beim Verarbeiten der Syntax der Farbpalettendatei »%s«: Lesefehler in Zeile %d.Schwerwiegender Fehler beim Verarbeiten der Syntax der Musterdatei '%s': Konnte %d Bytes nicht lesen: %sSchwerwiegender Fehler beim Verarbeiten der Syntax der Musterdatei '%s': Unbekannte Musterdatei version %d.Schwerwiegender Fehler beim Verarbeiten der Syntax der Musterdatei '%s: Nicht unterstütze Mustertiefe %d. -GIMP-Muster müssen in GRAUSTUFE oder RGB vorliegen.A_usblenden...Kanal ausblendenAuswahl ausblendenKanten ausblendenAuswahl ausblenden um_DateiDatei Öffnen-_DialogDatei-ProzedurenFüllartDatei bereits vorhandenDatei ist verkürztKanal füllenDeckkraft:Füllart %sÄhnliche Farben füllenTransparente Bereiche füllenGanze Auswahl füllenMit HG-Farbe füllenMit _HG-Farbe füllenMit VG-Farbe füllenMit _Muster füllenMit Muster füllenMit Transparenz füllenMit weiß füllenMit _VG-Farbe füllenMit _Hintergrundfarbe auffüllenMit einem Farbverlauf füllenMit einer Farbe oder einem Muster füllenBlocksatzFilte_rDie fertige, vereinte Ebene soll sein:Zusammenhängende Bereiche findenÄhnliche Farben finden_Bild dem Fenster anpassenFenstergröße an Bild anpassen.Bildgröße dem Fenster anpassenAns Fenster anpassenFestes SeitenverhältnisFeste GrößeBild zusammenfügenSpiegelnKanal spiegelnEbene spiegelnPfad spiegelnTextebene spiegelnSpiegeltyp %s_Horizontal spiegeln_Vertikal spiegelnBild spiegelnDie Ebene oder Auswahl spiegelnSpiegeln...Spiegeln...Auswahl anhebenAuswahl schwebendSchwebende EbeneSchwebende Auswahl -(%s)Schwebende Auswahl in EbeneSchwebende Auswahl in EbeneSchwebende AuswahlenFloyd-Steinberg (normal)Floyd-Steinberg (reduziertes Farbbluten)FokusOrdnerOrdnerSchriftordnerSchrift-UISchrift:SchriftenSchriftenmenüFür die GIMP Benutzerinstallation muss ein Ordner namens »%s« angelegt werden.Auto-Hinting erzwingenVordergrundVorder- und Hintergrundfarben. Das schwarze und weiße Rechteck setzt die Farben zurück. Die Pfeile vertauschen die Farbe. Doppelklick öffnet den FarbauswahldialogVordergrundfarbe:Vordergrundfarbe ist:Vordergrund: %d, %d, %dVorwärts (Traditionell)_Vom PfadFreie AuswahlFreie AuswahlFreihandDem _Thema entsprechendAuflösung vom _Fenstersystem beziehen (zur Zeit %d x %d dpi)Von Links nach RechtsVon Rechts nach LinksAus AuswahlDem Thema entsprechend_Zauberstab_VollbildZauberstabGIMPGIMP ErweiterungGIMP MeldungLeistungsfähigkeit von GIMPGIMP PluginGIMP StartGIMP Text EditorGIMP Tipp des TagesGIMP-BenutzerinstallationGIMP XCF BildGIMP konnte die grafische Benutzeroberfläche nicht initialisieren. -Stellen Sie sicher, dass Ihre Anzeige korrekt eingerichtet ist.Hilfe-Browser von The GimpGIMP wurde für den aktuellen Benutzer nicht korrekt installiert. -Es wurde keine Benutzerinstallation ausgeführt, da die Option »--nointerface« übergeben wurde. -Starten Sie GIMP ohne die Option »--nointerface«, um die Benutzerinstallation durchzuführen.GIMP verwendet für Bilddaten eine begrenzte Menge an Arbeitsspeicher, den sogenannten »Kachel-Cache«. Sie sollten seine Größe so wählen, daß er in den Arbeitsspeicher passt. Bedenken Sie dabei die Menge an Arbeitsspeicher, die bereits von anderen Programmen belegt wird.GIMP verwendet eine zusätzliche gtkrc-Datei für GIMP-spezifische Oberflächen-Einstellungen.GIMP-VersionGIMP warnt den Benutzer, falls versucht wurde, ein Bild zu erstellen, das mehr Speicher belegen würde, als die hier angegebene.GammaAllgemeinDies ist generell ausschließlich für 8-Bit-Anzeigen relevant. Dies legt die Mindestanzahl der für GIMP bereitgestellten Systemfarben fest.Optimale Palette erzeugenQuelle für BildschirmauflösungGigantischGimprc-Prozeduren_Glas-EffekteFarbverlauf:FarbverlaufseditorFarbverlaufseditormenüFarbverlaufsordnerFarbe des linken Segment-Endpunktes Farbe des rechten Segment-EndpunktesFarbverlauf-UIFarbverlauf '%s' ist fehlerhaft: Segmente reichen nicht von 0 bis 1.Farbverlauf:FarbverläufeFarbverlaufsmenüFaser extrahierenFaser mischenGrauGraustufenGrünGrün:GitterAbstand der GitterlinienKanal vergrößernAuswahl vergrößernAuswahl vergrößern umHilfslinieMagnetische Hilfslinien und GitterHilfslinien-ProzedurenHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Farbton _gegen Uhrzeigersinn)HSV (Farbton _im Uhrzeigersinn)HTML_Notation:Höh_e:Zu verwendender Hilfe-_Browser:Markerposition: %0.6fHarte KantenHarte KantenHärteHärte:HöheHöhe:HilfeHilfe-BrowserHilfesystemDer Hilfe-Browser startet nichtDer Hilfe-Browser wurde nicht gefundenHilfe-ProzedurenHex:GlanzlichterFenstertyp-Hint für _Docks:Fenstertyp-Hint für das _Werkzeugfenster:HintingHinting ändert die Schriftränder, um bei kleinen Größen ein schickes Schriftbild zu erzeugen._HistogrammHistogrammHistogrammskalaJournalHorizontalHorizontaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein.Horizontaler Abstand der Gitterlinien.Legt fest, wieviele »zuletzt geöffnet«-Einträge im Dateimenü vorgehalten werden sollen.FarbtonFarbton-SättigungFarbton-Sättigung funktioniert nur bei RGB Ebenen.Farb_ton-SättigungTon:RiesigSymbol _und Text_BildPfad i_mportieren...I_nterpolation:I_ntervall:SymbolSymbol und Beschr.Symbol und TextFalls verfügbar, werden Hints von den Schriften verwenden, möglicherweise bevorzugen Sie aber stets automatisches Hinting.Wenn diese Option ausgewählt ist, wird das Verschiebenwerkzeug die aktive Ebene oder den aktiven Pfad wechseln, wenn eine Ebene oder ein Pfad angeklickt wird. Diese Funktion bildet das normale Verhalten älterer The-Gimp-Versionen nach.Wenn Sie das Bild nicht sichern, gehen die Änderungen der letzten %s verloren.Wenn Sie GIMP jetzt beenden, gehen folgende Änderungenverlorgen:Umgebungsdatei %s enthält ungültigen Variablennamen: %sBildBild + GitterBildeditorBildinformationenBildmenüBildgrößeFormat der StatusleisteBild-VorlagenBild VorschauFormat des Bildtitels und der StatusleisteFormat des BildtitelsErscheinungsbild der BildfensterBildfensterAuswahl auf alle sichtbaren Bereiche stützenBildgrößeBildmaskeDa die Auflösung des Bildes außerhalb des gültigen Bereiches liegt, wird die Vorgabeauflösung verwendet.BildgrößeBildquelleBildartBilderBildmenüImporteinstellungenFarbpalette importierenPfade importierenPfade aus SVG importierenEine Farbpalette importierenFarbpalette importierenPfade importierenImportierter Pfad_Tinte_InvertierenMaske in_vertierenSteigerndEinzug:Einzug der ersten ZeileIndex:IndiziertIndizierte FarbenIndizierte FarbumwandlungIndizierte Farbebenen werden immer ohne Interpolation skaliert. Die ausgewählte Interpolation wird nur auf Kanäle und Maske Auswirkungen haben.Info-FensterAnfänglicher _Vergrößerungsfaktor:Initialisierung Ebenenmaske nach:Plugins werden initialisiertPlugin »%s« wird initialisiert -TinteInline pixbufEingabegeräteEingabegeräteQuellwerteAnker einfügenEine private Farbtabelle installieren; ist möglicherweise auf Pseudocolor-Anzeigen sinnvoll.Installation fehlgeschlagen. Wenden Sie sich an den Systemverwalter.Installation erfolgreich. Drücken Sie »Weiter« um fortzufahren.Dauernd auffrischenIntelligente _ScherenIntensität %0.3f Deckkraft: %0.3fOberflächeInterne GIMP ProzedurInterne ProzedurenInterpolation:ÃœberkreuzenAuswahlschnittmenge bildenSchnittpunkte (Fadenkreuze)Schnittpunkte (Punkte)Ungültiges UTF-8Ungültige UTF-8-Daten in Datei »%s«.Ungültiger UTF-8 Text in XCF DateiUngültiger UTF-8 Text in Pinseldatei »%s«.Ungültige UTF-8-Zeichenkette in Farbverlaufsdatei »%s«.Ungültige UTF-8-Zeichenkette in Palettendatei »%s«Ungültiger UTF-8 Text in Musterdatei '%s'.Ungültige Zeichenfolge in URIFalscher Tastenkürzel.Ungültige Breite oder Höhe. Beide müssen positiv sein.InvertierenKanal invertierenAuswahl invertierenDas Invertieren funktioniert mit indizierten Ebenen nicht.Auswahl invertierenSind Sie sicher, dass Sie fortfahren möchten?Scheinbar haben Sie bereits The Gimp in der Version 2.0 benutzt.ObjekteigenschaftenSichtbarkeit des ObjektsAusrichtung:Transparenz erhaltenOben behaltenVerhältnis von %s beibehaltenSeitenverhältnis von %s beibehaltenHöhe beibehalten %sTransparenz erhaltenBreite beibehalten %sPfeiltaste RunterPfeiltaste Runter (Alt)Pfeiltaste Runter (Strg + Alt)Pfeiltaste Runter (Strg)Pfeiltaste Runter (Shift + Alt)Pfeiltaste Runter (Shift + Strg + Alt)Pfeiltaste Runter (Shift + Strg)Pfeiltaste Runter (Shift)Pfeiltaste LinksPfeiltaste Links (Alt)Pfeiltaste Links (Strg + Alt)Pfeiltaste Links (Strg)Pfeiltaste (Shift + Alt)Pfeiltaste Links (Shift + Strg + Alt)Pfeiltaste Links (Shift + Strg)Pfeiltaste Links (Shift)Pfeiltaste RechtsPfeiltaste Rechts (Alt)Pfeiltaste Rechts (Strg + Alt)Pfeiltaste Rechts (Strg)Pfeiltaste Rechts (Shift + Alt)Pfeiltaste Rechts (Shift + Strg + Alt)Pfeiltaste Rechts (Shift + Strg)Pfeiltaste Rechts (Shift)Pfeiltaste HochPfeiltaste Hoch (Alt)Pfeiltaste Hoch (Strg + Alt)Pfeiltaste Hoch (Strg)Pfeiltaste Hoch (Shift + Alt)Pfeiltaste »Hoch« (Shift + Strg + Alt)Pfeiltaste Hoch (Shift + Strg)Pfeiltaste Hoch (Shift)Tastenkombinationen können in GIMP dynamisch vergeben werden. Die Datei menurc ist eine Speicherung Ihrer Konfiguration, so daß diese auch in der nächsten Sitzung erhalten bleibt. Diese Datei kann editiert werden, es ist jedoch einfacher, die Tastenkombinationen aus GIMP heraus zu konfigurieren. Wird diese Datei gelöscht, so wird die Vorgabe-Tastenbelegung wiederhergestellt.TastaturTastaturereignisseTastenkürzelLinks nach RechtsFarbe des li_nken Endpunktes...QuerformatGroßGroß (256x256)Größere VorschaubilderLetzter Fehler:EbeneEbene »%s« hat keinen Alphakanal. Ebene ist darüber plaziert worden.EbeneneigenschaftenEbenen_größe... EbenenfüllartAuswahl aus EbenenmaskeEbenenauswahlEbenengrößeEbenen_modusEbenen_name:Diese Ebene kann nicht weiter abgesenkt werden.Diese Ebene kann nicht weiter angehoben werden.Diese Ebene befindet sich bereits ganz unten.Diese Ebene befindet sich bereits ganz oben.Ebene auf BildgrößeEbene nach ganz _untenEbene auf _BildgrößeEbene nach ganz _oben_Alphakanal der EbeneEbenenEbenenmenüEigenschaften Ebenen vereinenFarbe des linken EndpunktesLinksbündigLänge:Wenn diese Option ausgewählt ist, versucht The Gimp bei jedem Start die letzte Sitzung wieder herzustellen.FarbwerteWerte für indizierte Ebenen können nicht geändert werden. Helle Schachbrett-FarbeNur AufhellenDurchgezogenZeilen- -abstand:Linienbreite:Linien_stil:Der für das Gitter verwendete Linienstil.LinearVerknüpftes ObjektÖffnenKurven öffnenWerte öffnenRechte Farbe laden von _HintergrundfarbeKurveneinstellungen aus Datei ladenWerte aus Datei ladenText aus Datei ladenVorschau wird geladen...Ort:LogarithmischLange StricheSuche nach ArbeitsdatenKanal absenkenKanel nach ganz unten absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz untenPfad absenkenPfad nach ganz unten absenkenPfad nach ganz _unten absenkenKanal absenkenKanel nach ganz unten absenkenEbene absenkenEbene nach ganz unten absenkenPfad absenkenPfad nach ganz unten absenkenVer_größern bzw. VerkleinernA_lleAuf Bildschirm _verschieben..._AbbildenMagentaMagenta:Vergrößern / Verkleinern_Transparent machenLadbare Module verwaltenGeschwindigkeit der laufenden _Ameisen:Maskendeckkraft:Maske aus _AuswahlMaske aus _invertierter AuswahlMatrix:Maximale Tiefe:Maximale Datei_größe für Vorschaubilder:Maximale Größe _neuer Bilder:Maximale Farbdifferenz_Maximaler Speicher für das Journal:Durchschnitt:Me_ssenAbstände und Winkel messenAbstände und Winkel messenMessen Sie die Lineale aus und tragen Sie die Längen unten ein.Median:MittelStricheNach un_ten vereinenNach unten vereinenEbenen vereinenFarbpalette vereinenSichtbare Ebenen vereinenSichtbare Pfade vereinenSichtbare _Ebenen vereinen...Sichtbare _Ebenen vereinen...Sichtbare Pfade vereinenEbenen vereinenFarbpalette vereinenPfade vereinenNachrichten-ProzedurenMeldung %d mal wiederholt.Meldung einmal wiederholt.Ausgabe erfolgt jetzt auf der Standard-Fehlerausgabe.MittenBenutzereinstellungen übernehmenMinimale Anzahl an _Journalschritten:VerschiedenesGehrungModusModus:Gewählte Farbe bearbeitenDie Farbwerte des gewählten Bereichs bearbeitenAlle Farben bearbeitenZeilenabstand verändernModulordnerModule verwaltenModulpfadModuleMousezeigerMausradMausradereignisseVerschiebenAnker verschiebenKanal verschiebenSchwebende Auswahl bewegenHilfslinie verschiebenHilfslinie verschieben: Ebene bewegenEbenenmaske bewegenPfad verschiebenAuswahl verschiebenTextebene verschiebenVerschiebewerkzeugObjekt verschiebenEbenen und Auswahlen verschiebenAuswahl verschiebenAktive Ebene verschiebenAktiven Pfad verschiebenDen gewählten Filter nach unten verschiebenDen gewählten Filter nach oben verschiebenAuf Bildschirm verschieben...Verschieben: Multiplikation_Anzahl der Farben:_NavigationNavi_gationsfensterGröße der _Navigationsvorschau:Name_Name:NavigationNeuer KanalFarbe für neuen KanalEinstellungen des neuen KanalsNeue Farbe aus _HintergrundNeue Farbe aus _VordergrundNeues BildNeue EbeneNeuer PfadEinstellungen des hinzuzufügenden PfadesNeue VorlageNeuer PinselNeuer KanalNeuer Kanal mit den aktuellen WertenNeuer Kanal...Neue Farbe aus HintergrundNeue Farbe aus VordergrundNeuer FarbverlaufNeu importiertNeue EbeneNeue Ebene mit den aktuellen WertenNeue Ebene..._Neue FarbpaletteNeuer Pfad mit den aktuellen WertenNeuer Pfad...Neues MusterNeue VektorenKeine Pinsel für dieses Werkzeug vorhanden.Kein Filter ausgewähltKeinen linearen Farbverlauf in »%s« gefundenNicht mehr verfügbarKeine Pfade in »%s« gefundenKeine Pfade in der Ablage gefundenFür diese Operation sind keine Muster vorhanden.Keine AuswahlKeine Auswahl zum Nachziehen.Keine VorschauNicht ausgerichtetKeineKeine (am schnellsten)NormalNormal (128x128)PunkteNormales FensterKeine reguläre DateiEs sind nicht genügend Ebenen als »Sichtbar« markiert, um den Vorgang »Sichtbare Ebenen vereinen« auszuführen. Es müssen mindestens zwei sein.Es sind nicht genügend Pfade als »Sichtbar« markiert, um den Vorgang »Sichtbare Pfade vereinen« auszuführen. Es müssen mindestens zwei sein.Zahl der zu verwendenden _Prozessoren:Anzahl der GitterlinienAnzahl der Ebenen:A_nders...VersatzKanal verschiebenEbene verschiebenEbene verschiebenEbenenmaske verschiebenVersatz um (x/_2),(y/2)Versatz:Auf FestplatteAuf Rechnern mit mehreren Prozessoren legt dieser Wert fest, wieviele Prozessoren GIMP gleichzeitig belegen soll (nur, falls GIMP mit --enable-mp kompiliert wurde).Nur im SpeicherAls _Ebene öffnen...DeckkraftDeckkraft:ÖffnenBild öffnenBild als Ebene öffnenBild von Ort öffnenTextdatei (UTF-8) öffnen_Von Ort öffnen..._Zuletzt geöffnetDialog um ein Bild zu öffnenDen Dialog zur Pinselauswahl öffnenDen Dialog zur Schriftauswahl öffnenDen Dialog zur Farbverlaufswahl öffnenDen Dialog zur Palettenauswahl öffnenDen Dialog zur Musterauswahl öffnenGewählten Eintrag öffnenÖffnen von '%s' schlug fehl: - -%s»%s« konnte nicht geöffnet werden: %sOptionen: -Ursprung X:Ursprung Y:Ursprüngliche Breite:Anders (%s) ...UmrissZielwerteÃœberlagernPDB-Aufruffehler für Prozedur »%s«: -Falscher Typ bei Argument #%d (%s erwartet, %s erhalten)PDB-Aufruffehler: -Prozedur '%s' nicht gefunden_MusterZwei Boxkämpfer jagen -Eva quer durch Sylt.ZeichnenMaleinstellungen werden von Werkzeuge gemeinsam benutzt.Malwerkzeug ProzedurenMalwerkzeug:Bearbeitungs_modusWeiche Pinselstriche zeichnenPixel mit harten Kanten zeichnenMit Mustern oder Bildteilen zeichnenPinselFarb_palettenFarbpaletteFarbpaletteneditorFarbpaletteneditormenüPalettenordnerPaletten-UIPaletten_name:_FarbpaletteFarbpalettenFarbpalettenmenüParasiten-ProzedurenParasiten»%s« wird verarbeitet -EinfügenAblage ein_fügen inAblage als _neues Bild einfügenPfad e_infügenIn Aus_wahl einfügenAls _neues Bild einfügenAusgewählte Ablage einfügen.Neues Bild aus gewählte Ablage erstellen.Gewählte Ablage in Auswahl einfügenEingefügte EbenePfadPfadeigenschaftenPfadname:Pfadwe_rkzeugDieser Pfad kann nicht weiter abgesenkt werden.Dieser Pfad kann nicht weiter angehoben werden.Dieser Pfad befindet sich bereits ganz unten.Dieser Pfad befindet sich bereits ganz oben.Aus_wahl aus PfadAuswahl aus PfadAuswahl aus Pfad -%s Hinzufügen -%s Abziehen -%s SchneidenAuswahl aus PfadPfadePfadmenüMusterMusterordnerMuster-UIMusterMusterquelleMusterMustermenü_StiftStiftProzentsatz der PinselbreiteProzentsatz:Persönlicher GIMP-OrdnerPerspektiveInformationen zur PerspektiventransformationPerspektive...Auswahlmodus %sEbene oder Hilfslinie auswählenPfad auswählenSchwarz-Punkt wählenFarben aus dem Bild wählenGrau-Punkt wählenNur auswählenWeiß-Punkt wählenGröße in Pixel:Pixel WertePixelPixel:Bitte stellen Sie sicher, dass die XML-Menüdateien korrekt installiert sind.Bitte warten. Ihr persönlicher GIMP-Ordner wird angelegt...Bitte warten...PluginPlugin-UmgebungPlugin-OrdnerPlugin konnte das Bild nicht öffnenPlugin konnte das Bild nicht speichernDas Plugin »%s« ist abgestürzt -(%s) - -Das abgestürzte Plugin hat GIMP eventuell durcheinander gebracht. Am besten speichern Sie Ihre Bilder jetzt ab und starten GIMP neu.Plugin lieferte ERFOLG, hat jedoch kein Bild geliefertPluginsPluginPlugins und Erweiterungen sind externe Programme, die von GIMP gestartet werden und Zusatzfunktionen bereitstellen. Diese Programme werden zur Laufzeit gesucht und die Informationen zu ihrer Funktionalität und ihrem Erzeugungsdatum werden in dieser Datei gespeichert. Diese Datei sollte nur von GIMP gelesen und nicht bearbeitet werden.PolygonalHochformatPosition: %0.6fPositioniertPosterisierenPosterisieren (Farbanzahl vemindern):_Farbanzahl:Posterisieren funktioniert nicht mit indizierten Ebenen.Einstellungen_Helligkeit erhaltenDruckempfindlichkeitDruck:VorschauVorschau ist veraltetVorschau:VorschaubilderGröße des AusdrucksGröße beim Drucken:Probleme beim Verarbeiten der Syntax des Textparasists für Ebene »%s«: -%s - -Möglicherweise sind eines oder mehrere Textattribute fehlerhaft. Falls Sie die Textebene nicht bearbeiten, können Sie dies getrost ignorieren.ProzedurdatenbankProzedurdatenbankFortschrittPseudofarbenZweck:QualitätErkundenNeue Plugins werden abgefragtPlugin »%s« wird abgefragt -Schnelles LadenSchnelle MaskeAttribute der schnellen MaskeSchnelle Maske MenüSchnelles SpeichernQuickMaskGIMP beendenRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB FarbeRGB leerRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Rechts nach Links»%s« _nochmal anzeigenWerkzeugeinstellungen _zurücksetzenKanal _zurücksetzenFarbe _zurücksetzenBereich _zurücksetzenFarbe des _rechten Endpunktes...KreisförmigRadius:Kanal anhebenKanal nach ganz oben anhebenKanal nach ganz oben anhebenEbene anhebenEbene nach ganz obenPfad anhebenPfad nach ganz oben anhebenPfad nach ganz _oben anhebenKanal anhebenKanal nach ganz oben anhebenEbene anhebenEbene nach ganz oben anhebenPfad anhebenPfad nach ganz oben anhebenDie Ansichten dieses Bildes anhebenFenster in den Vordergrund bringen, falls es schon geöffnet istRateRate:Letzten Vorgang nochmal anzeigenMittelpunkte in Auswahl _zentrierenMittelpunkt des Segments _zentrierenPunkte _gleichmäßig im Segment verteilenPunkte _gleichmäßig in Auswahl verteilenGespeicherte Einstellungen _umbenennen»%s« _wiederholen_Zurücksetzen...Palette »%s« wird gelesen: Keine Grün-Komponente in Zeile %d.Farbpalette »%s« wird geladen: Falsche Anzahl von Spalten in Zeile %d. Benutze Standardwert.Palette »%s« wird gelesen: Keine Blau-Komponente in Zeile %d.Palette »%s« wird gelesen: Keine Rot-Komponente in Zeile %d.Palette »%s« wird gelesen: RGB-Wert in Zeile %d außerhalb des Wertebereiches.BereitMöchten Sie wirklich die Liste alter Operationen löschen?Die Neuzuweisung dieses Tastenkürzels wird es von »%s« entfernen._Vorschau neu erzeugenVorschau neu erzeugenRechteckige AuswahlRotRot:WiederholenDas Bild auf eine bestimmte Anzahl von Farben reduzierenDas Bild mittels eines Schwellwerts auf zwei Farben reduzierenPinsel neu ladenFarbverläufe n_eu ladenFarbpaletten n_eu ladenMuster n_eu ladenRegistriert_Momentan verwendetes Thema neu ladenA_lle Vorschaufenster neu ladenAlle Vorschaufenster neu ladenDas gewählte Werkzeug und Muster, die gewählte Farbe sowie den gewählten Pinsel über GIMP-Sitzungen hinweg merken.Entferntes BildKanal entfernen_Hängende Einträge entfernenSchwebende Auswahl entfernenHilfslinie entfernenEbene entfernenParasit entfernenParasit entfernenPfad entfernenEintrag _entfernenHängende Einträge entfernenSchwebende AuswahlObjekt entfernenParasit entfernenGewählten Eintrag entfernenDen gewählten Filter aus der Liste aktiver Filter entfernen.Entfernen des Tastenkürzels fehlgeschlagen.Kanal umbenennenEbene umbenennenPfad umbenennenGespeicherte Einstellungen umbenennenTextebene umbenennenObjekt umbenennenNachziehenKanalreihenfolge ändernEbenenreihenfolge ändernPfadreihenfolge ändernLetzten Vorgang wiederholenWiederholung:Auswahl ersetzenDuplizierenFarbverlauf-Segment duplizierenFarbverlauf-Auswahl duplizierenSegment duplizierenAuswahl duplizierenKanal zurücksetzenEbene zurücksetzenVektoren zurücksetzenSchriftenliste neu einlesenWerkzeugeinstellungen zurücksetzen_Alle Werkzeugeinstellungen zurücksetzen...Alle Filter zurücksetzen_Alle Filtereinstellungen zurücksetzen...Alle Werkzeugeinstellungen zurücksetzenDen gewählten Filter auf Vorgabewerte zurücksetzen.Auf Vorgabewerte zurücksetzenOrdnung & Sichtbarkeit der Werkzeuge wiederherstellenGröße ändernKanalgröße ändernBildgröße ändernEbenengröße ändernPfadgröße ändernTextebenengröße ändernBildgröße ändernBildgröße ändernFenstergröße beim _Vergrößern und Verkleinern anpassenFenstergröße anpassen, wenn sich die _Bildgröße ändertGröße verändern...Auflösung ändernAuflösung:RessourcenverbrauchRessourcenkonfigurationEinstellungen laden von...Stellt gespeicherte Tastenkürzel bei jedem Neustart von The Gimp wieder her.Bearbeiten auf Polygone beschränkenUmkehrenZurücksetzenWollen Sie von »%s« zu »%s« zurückkehren?Bild zurücksetzenBild konnte nicht zurückgesetzt werden, da kein Dateiname mit dem Bild verknüpft ist.Zurücksetzen von '%s' schlug fehl: - -%sFarbe des rechten EndpunktesRechtsbündigDrehen90° drehen (_links)90° drehen (_rechts)Kanal drehenEbene drehenPfad drehenTextebene drehen_180° drehenBild drehenEbene oder Auswahl drehenDrehe...DrehinformationenRundS_cheren_Gitter anzeigenVer_kleinern...S_pitzenFarben _vertauschenRechte Farbe s_peichern inAbtastgrößeVereinigung überprüfenSättg.:SättigungSpeichern»%s« als POV-Ray-Datei speichernKurven speichernFehlerprotokoll in Datei speichernBild speichernGerätestatus _jetzt speichernTastenkürzel _jetzt speichernWerte speichernWerkzeugeinstellungen speichernFensterpositionen _jetzt speichernAlle Fehler in Datei _speichern...Aus_wahl in Datei speichern...Speichern _unter..._Kopie speichern unter...Kopie des Bildes speichernAlle Fehler speichernAls _POV-Ray-Datei speichern...Als _Vorlage speichern...Speichert geänderte Tastenkürzel, wenn The Gimp beendet wird.Aktuelle Einstellungen in Datei speichernGerätestatus speichern»%s« als POV-Ray-Datei speichernAktuelle Werte in Datei speichernEinstellungen speichern als...Auswahl speichernAuswahl in Kanal speichernMöchten Sie die Änderungen am Bild »%s« vor dem Schließen speichern?Die Positionen und Größen der Hauptdialoge beim Beenden von GIMP speichern.In _Kanal speichernGespeicherte Einstellungen»%s« wird gespeichert -'%s' konnte nicht gespeichert werden: - -%sBilder speichernSägezahnwelleSkalierbare Vektorgrafik (*.svg)SkalierenKanal skalierenBild skalierenEbene skalierenPfad skalierenTextebene skalierenBild skalierenBild skalierenSkalierungsfaktor X:Skalierungsfaktor Y:Skalierungsfaktor:Ebene oder Auswahl skalierenSkalierungSkalierinformationenWenn Sie das Bild zur gewählten Größe skalieren, wird dadurch mehr Speicher verwendet als unter »Maximale Bildgröße« in den Einstellungen angegeben ist (derzeit %s).Wenn Sie das Bild auf die gewünschte Größe verkleinern, werden einige Ebenen vollständig verschwinden.SkalierungSchereBildschirmSkript-Fu-OrdnerSkripteRunterscrollenRunterscrollen (Alt)Runterscrollen (Strg + Alt)Runterscrollen (Strg)Runterscrollen (Shift + Alt)Runterscrollen (Shift + Strg + Alt)Runterscrollen (Shift + Strg)Runterscrollen (Shift)Links ScrollenLinks Scrollen (Alt)Links Scrollen (Strg + Alt)Links Scrollen (Strg)Links Scrollen (Shift + Alt)Links Scrollen (Shift + Strg + Alt)Links Scrollen (Shift + Strg)Links Scrollen (Shift)Rechts ScrollenRechts Scrollen (Alt)Rechts Scrollen (Strg + Alt)Rechts Scrollen (Strg)Rechts Scrollen (Shift + Alt)Rechts Scrollen (Shift + Strg + Alt)Rechts Scrollen (Shift + Strg)Rechts Scrollen (Shift)HochscrollenHochscrollen (Alt)Hochscrollen (Strg + Alt)Hochscrollen (Strg)Hochsrollen (Shift + Alt)Hochscrollen (Shift + Strg + Alt)Hochscrollen (Shift + Strg)Hochscrollen (Shift)AuswählenAlles auswählenWählen Sie die PinselordnerNach Farbe auswählenFarbe auswählenEreigniskontrolleuraktion auswählenWählen Sie die UmgebungsordnerDatei_typ: %sWählen Sie die SchriftordnerWählen Sie die FarbverlaufsordnerWählen Sie die ModulordnerNichts auswählenWählen Sie die PalettenordnerWählen Sie die MusterordnerWählen Sie die Plugin-OrdnerZu bearbeitende Primärfarbe auswählenDen zu bearbeitenden Bereich wählenWählen Sie die Skript-Fu-OrdnerQuelle auswählenWählen Sie den AuslagerungsordnerWählen Sie den Temporären OrdnerWählen Sie ein ThemaWählen Sie die ThemenordnerSkalierung festlegen_Unterste Ebene auswählen_Benutzerdefinierte Farbe wählen..._Nächste Ebene auswählen_Vorherige Ebene auswählen_Oberste Ebene auswählenAlles auswählenNach Farbe auswählenZusammenhängenden Bereich wählenBenutzerdefinierte Farbe für Leinwandrahmen festlegenEinen elliptischen Bereich wählenEinen Bereich frei Hand wählenAuswahl aufhebenWählen Sie die PalettenordnerEinen rechteckigen Bereich wählenBereiche nach Farbe wählenUmrisse des Bildes wählenWählen Sie den AuslagerungsordnerGeben Sie an, wie oft das -ausgewählte Segments wiederholt werden soll.Geben Sie an, wie oft die -Auswahl wiederholt werden soll.Geben Sie an, in wieviele Abschnitte die -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-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. -Klick öffnet den Bilddialog.Das aktive Muster. -Klick öffnet die Musterauswahl.Die Hintergrundfarbe des Rasters. Diese wird nur verwendet falls doppelt gestrichelte Linien verwendet werden.Der Interpreter »%s« ist nicht verfügbar, der Stapelverarbeitungsmodus wurde deaktiviert.Die eingestellte Dateinamenskodierung kann nicht in UTF-8 umgewandelt werden: %s - -Bitte überprüfen Sie den Wert der Umgebungsvariable G_FILENAME_ENCODING.Der Dateiname »%s« konnte in keine gültige URI konvertiert werden: - -%sDie Vordergrundfarbe des Gitters.Die Datei gimprc wird verwendet, um persönliche Einstellungen wie GIMPs Vorgabeverhalten zu speichern. Auch die Suchpfade für Pinsel, Paletten, Farbverläufe, Muster, Plugins und Module können hier konfiguriert werden.Horizontale Auflösung des BildesDie ausgewählte Ebene ist eine Text-Ebene aber sie ist mit anderen Werkzeugen modifiziert wurde. Diese Änderungen gehen verloren, wenn Sie jetzt das Text-Werkzeug benutzen. - -Sie können die Ebene bearbeiten oder eine neue Text-Ebene mit denselben Text-Attributen erstellen.Der Name des Verzeichnisses mit der GIMP-Benutzerkonfiguration kann nicht inUTF-8 umgewandelt werden: %s - -Wahrscheinlich speichert Ihr Dateisystem Dateien in einer Kodierung anders als UTF-8 und dieser Zustand ist GLib nicht bekannt. Bitte setzen Sie die Umgebungsvariable G_FILENAME_ENCODING.Die Datei sessionrc wird verwendet, um zu speichern, welche Fenster beim Schließen von GIMP geöffnet waren. Sie können GIMP so konfigurieren, daß diese Dialoge beim Start an der gespeicherten Position wieder geöffnet werden.Das Vorschaubild im Bild-öffnen-Dialog wird automatisch aktualisiert, wenn die anzusehende Datei kleiner als die hier festgelegte Größe ist.Der Blockspeicher stellt sicher, dass The GimpDie Einheit des Koordinatensystems, wenn der Punkt-für-Punkt-Modus nicht aktiv ist.Die Datei unitrc wird dazu verwendet, Ihre Einheiten-Datenbank zu speichern. Sie können zusätzliche Einheiten definieren und sie wie die vordefinierten Einheiten wie Zoll, Millimeter, Punkt und Pica einsetzen. Diese Datei wird jedesmal überschrieben, wenn Sie GIMP beenden.Vertikale Auflösung des BildesDer für Dock-Fenster gesetzte Fenstertyp-Hint. Dies beeinflusst möglicherweise die Art, auf die Ihr Fenstermanager Dock-Fenster dekoriert und handhabt.Der für die Werkzeugkiste gesetzte Fenstertyp-Hint. Dies beeinflusst möglicherweise die Art, auf die Ihr Fenstermanager das Werkzeugkisten-Fenster dekoriert und handhabt.ThemaThemenordnerThemenEs sind %d Bilder mit ungespeicherten Änderungen geöffnet:Es sind nicht genügend Ebenen unter dieser Ebene als »Sichtbar« -markiert, um den Vorgang »Nach unten vereinen« auszuführen.Es gibt immer einen Zusammenhang zwischen Speicherbenutzung und Geschwindigkeit. In den meisten Fällen versucht The Gimp die Geschwindigkeit durch Verwendung des Zwischenspeichers zu erhöhen. Falls jedoch nicht ausreichend Zwischenspeicher bereitgestellt werden kann, sollten Sie diese Option auswählen.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der kopiert werden kann.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, aus der bzw. dem ausgeschnitten werden kann.Es gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der nachgezogen werden kannEs gibt weder eine aktive Ebene noch einen aktiven Kanal, die bzw. der nachgezogen werden kann.Es ist ein Bild mit ungesicherten Änderungen geeöffnet:Es sollte eine Datei namens »%s« vorhanden sein. Bitte überprüfen Sie Ihre Installation.Fehler beim Verarbeiten der Syntax Ihrer »%s«-Datei. Vorgabewerte werden verwendet. Unter »%s« wurde eine Sicherungskopie Ihrer Konfiguration gespeichert.Diese Datei enthält eine Sammlung von Standard-Mediengrößen, die als Bildvorlagen dienen.Dieser Ordner wird nach Bildvorlagen durchsucht.Dieser Ordner wird nach vom Benutzer installierten Themen durchsucht.Dieser Ordner wird verwendet, um benutzerdefinierte Schriften zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Schriftordner. Verwenden Sie diese Funktion ausschließlich, falls Sie GIMP-spezifische Schriften verwenden wollen. Legen Sie diese andernfalls im globalen Schriftordner ab.Dieser Ordner wird verwendet, um Parameter-Dateien für das Kurven-Werkzeug zu speichern.Dieser Ordner wird verwendet, um Parameter-Dateien für das Werte-Werkzeug zu speichern.Dieser Ordner wird verwendet, um Werkzeugeinstellungen -zu speichern.Dieser Ordner wird verwendet, um selbsterstellte Skripte zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Skriptordner.Dieser Ordner wird verwendet, um vom Benutzer erstellte, temporäre oder in anderer Weise nicht systemweit unterstützte DLL-Module zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Modulordner.Dieser Ordner wird verwendet, um selbsterstellte, temporäre oder in anderer Weise nicht systemweit unterstützte Erweiterungen der Plugin-Umgebung zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Umgebungsordner.Dieser Ordner wird verwendet, um selbsterstellte, temporäre oder in anderer Weise nicht systemweit unterstützte Plugins zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Plugin-Ordner.Dieser Ordner wird verwendet, um benutzerdefinierte Pinsel zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Pinselordner.Dieser Ordner wird verwendet, um benutzerdefinierte Farbverläufe zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Farbverlaufsordner.Dieser Ordner wird verwendet, um benutzerdefinierte Farbpaletten zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Palettenordner.Dieser Ordner wird verwendet, um benutzerdefinierte Füllmuster zu speichern. GIMP durchsucht diesen Ordner zusätzlich zum systemweiten Musterordner.Dieser Ordner wird verwendet, um temporäre Bilddaten abzulegen, um so den Bedarf an Hauptspeicher zu verringern. Falls GIMP unsauber beendet wird, kann es passieren, das hier Dateien mit Namen wie gimp<#>.<#> zurückbleiben. Diese Dateien sind für eine andere GIMP-Sitzung nutzlos und können bedenkenlos gelöscht werden.Dieser Ordner wird eine Reihe von wichtigen Dateien enthalten. Wählen Sie eine der Dateien oder Ordner aus der Liste aus, um weitere Informationen zu erhalten.Innerhalb dieses Abstands in Pixeln ist das automatische Einrasten bei Hilfslinien und Rasterlinien aktiv.Die Veröffentlichung dieses Programms erfolgt in der Hoffnung, daß es Ihnen von Nutzen sein wird, aber OHNE JEDE GEWÄHRLEISTUNG - sogar ohne die implizite Gewährleistung der MARKTREIFE oder der EIGNUNG FÃœR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License.Dieses Programm ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 der Lizenz oder (wenn Sie es wünschen) jeder späteren Version.Dieses Eingabefeld ist auf %d Zeichen beschränkt.Dieses Werkzeug verfügt über keine Einstellungsmöglichkeiten.Dieses Fenster hat %d offene Reiter. Das Schließen dieses Fensters wird auch diese schließen.SchwellwertSchwellwert funktioniert nicht mit indizierten Ebenen.Schwelle:Vorschau %d von %dGröße des gesamten _Speichers:Größe des Datenspeichers:Neigung:WinzigTitel und StatusNac_h PfadUm ein Tastenkürzel zu konfigurieren, klicken Sie auf die entsprechende Zeile und geben Sie dann ein neues Tastenkürzel ein oder drücken Sie die Rücktaste, um es zu löschen.Viel SpassSchnelle Maske aktivieren/deaktivieren_Schnelle Maske aktivieren/deaktivierenZu viele Fehlermeldungen!WerkzeugeinstellungenWerkzeugmenüWerkzeug-Modus %sWerkzeug_einstellungenWerkzeug-SymbolWerkzeug-Symbol mit Fadenkreuz_WerkzeugfensterWerkzeugfensterWerkzeugfenstermenüWerkzeugeWerkzeugfenstermenüWerzeuge wie die unscharfe Auswahl und Ausfüllen erkennen Regionen mit Hilfe eines Ähnlichkeitsalgorithmus. Die Erkennung beginnt am ausgwählten Pixel und setzt sich nach allen Seiten solange fort, bis der Farbunterschied eines Pixels vom Ausgangspixel größer ist, als ein zuvor festgelegter Wert. Dieser Wert repräsentiert den Vorgabeschwellwert.Tr_ansparenzAlpha in Maske übernehmenTransformationKanal transformierenTransformationsrichtungEbene transformierenPfad transformierenTextebene transformierenTransformwerkzeug ProzedurenEbene transformierenPfad transformierenAuswahl transformierenTransformationTransformationswerkzeug ProzedurenTransformiere...Ãœbersetzung vonTransparenzTransparenz_typ:DreieckswelleEchtfarbenTypTyp %sBitte geben Sie ein neues Tastenkürzel einNeues Tastenkürzel eingeben oder die Rücktaste drücken, um es zu löschenEs konnte keine Ebenenenmaske hinzugefügt werden, da diese Ebene bereits eine Maske hat.Ausschneiden oder Kopieren fehlgeschlagen, da der ausgewählte Bereich leer ist.Es konnte testweise keine Auslangerungsdatei geöffnet werden. Um einen Datenverlust zu vermeiden überprüfen Sie bitte den Ort und die Zugriffsrechte des Auslagerungsverzeichnis welches in Ihren Einstellungen angegeben ist .(derzeit »%s«)Die Auslagerungsdatei konnte nicht geöffnet werden. Der Speicher für The Gimp hat sich erschöpft und es kann keine Auslagerungsdatei verwendet werden. Einige Elemente Ihres Bildes könnten verloren gehen. Versuchen Sie Ihre Arbeit unter einem anderen Dateinamen abzuspeichern, starten Sie anschließend The Gimp neu und überprüfen Sie den Ort Ihres Auslagerungsverzeichnisses in den Einstellungen.%s Rückfrage konnte nicht ausgeführt werden. Möglicherweise ist das ensprechende Plugin abgestürzt.Nicht definiertRückgängigJournal_JournalEinheitenUnbekanntUnbekannter DateitypUnbekannter Palettendateityp: -%sEntladenNamenlosNamenlos»_Punkt für Punkt« als Vorgabe verwendenDynamische _Tastenkürzel benutzenStattdessen Internet-Browser verwendenBeim Verkleinern der Auswahl alle sichtbaren Ebenen verwendenSchwarz/Weiß-Palette (1-Bit) verwendenFarbe aus FarbverlaufEigene Palette verwendenInfo-Fenster verwendenInternet-optimierte Palette verwendenBenutzerinstallation LogbuchBenutzeroberflächeWerkzeug FensterWertWert:VektormodusVersion %s wurde Euch gebracht vonVersion:VertikalVertikaler Versatz der ersten Gitterlinie; dies darf eine negative Zahl sein.Vertikaler Abstand der Gitterlinien.Sehr großSehr kleinAnsichtAls _Raster anzeigenAls _Liste anzeigenAls Raster anzeigenAls Liste anzeigenVisuelle Klasse:Visuelle Tiefe:Warnung: Daten konnten nicht geladen werden: -%sWarnung: Daten konnten nicht gespeichert werden: -%sInternet-BrowserWebbrowserWillkommen zur -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_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 -Roman Joost -Hendrik BrandtWert für Symbol %s ist keine gültige UTF-8-Zeichenkettebeim Verarbeiten von %s: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/de.po gimp-2.2.9/po/de.po --- gimp-2.2.8/po/de.po 2005-06-23 19:00:08.000000000 +0200 +++ gimp-2.2.9/po/de.po 2005-09-20 18:24:03.000000000 +0200 @@ -13,8 +13,8 @@ msgstr "" "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-06-18 02:39+0200\n" -"PO-Revision-Date: 2005-06-21 19:47+0200\n" +"POT-Creation-Date: 2005-09-20 15:49+0200\n" +"PO-Revision-Date: 2005-09-20 15:48+0200\n" "Last-Translator: Hendrik Richter \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -4889,7 +4889,7 @@ msgid "Select by Color" msgstr "Nach Farbe auswählen" -#: ../app/core/gimpdata.c:314 +#: ../app/core/gimpdata.c:320 #, c-format msgid "Could not delete '%s': %s" msgstr "»%s« konnte nicht gelöscht werden: %s" @@ -6996,7 +6996,7 @@ #: ../app/dialogs/quit-dialog.c:126 msgid "If you quit GIMP now, these changes will be lost." -msgstr "Wenn Sie GIMP jetzt beenden, gehen folgende Änderungenverlorgen:" +msgstr "Wenn Sie GIMP jetzt beenden, gehen diese Änderungen verloren." #: ../app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" @@ -8042,7 +8042,7 @@ "PDB-Aufruffehler:\n" "Prozedur '%s' nicht gefunden" -#: ../app/pdb/procedural_db.c:275 ../app/pdb/procedural_db.c:387 +#: ../app/pdb/procedural_db.c:275 ../app/pdb/procedural_db.c:392 #, c-format msgid "" "PDB calling error for procedure '%s':\n" @@ -8071,12 +8071,12 @@ msgid "Free Select" msgstr "Freie Auswahl" -#: ../app/plug-in/plug-in.c:544 ../app/plug-in/plug-in.c:574 +#: ../app/plug-in/plug-in.c:551 ../app/plug-in/plug-in.c:581 #, c-format msgid "Terminating plug-in: '%s'\n" msgstr "Plugin wird abgebrochen: »%s«\n" -#: ../app/plug-in/plug-in.c:730 +#: ../app/plug-in/plug-in.c:737 #, c-format msgid "" "Plug-In crashed: \"%s\"\n" @@ -9544,7 +9544,7 @@ #: ../app/tools/gimpvectoroptions.c:196 msgid "Create selection from path" -msgstr "Pfad aus Auswahl" +msgstr "Auswahl aus Pfad erzeugen" #: ../app/tools/gimpvectoroptions.c:207 msgid "Stroke path" diff -uraN gimp-2.2.8/po/el.gmo gimp-2.2.9/po/el.gmo --- gimp-2.2.8/po/el.gmo 2005-01-22 17:33:14.000000000 +0100 +++ gimp-2.2.9/po/el.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,140 +0,0 @@ -Þ•r¬<7°I±I&ÇIîI -õI -J - J -J!J$J -Ž LŽYŽsŽ ŽšŽ´Ž,¹ŽWæŽ ->IBÚC0a’¬ ¼%Éï ‘‘7‘M‘%b‘ˆˆ‘i’j{’æ’3ú’.“ ->“)I“#s“ —“ £“±“ À“Í“!à“B”FE”6Œ”ÔÚ”ë”Kþ”EJ•*•#»•5ß•*–Z@–7›–VÓ–M*—Nx—?Ç—˜.˜5H˜Y~˜Eؘ5™/T™ „™6‘™È™×™$ç™ š##šGšbšqš‚š%šÚÒš -òšýš›_,›TŒ›'á›6 œ0@œ!qœ“œ!³œ!Õœ?÷œ17i€#“·ÈÙè -ž#ž5žDžVžnžIž¦Éž"pŸ"“Ÿ!¶ŸØŸçŸ  2 P #p S” è >ÿ 8>¡<w¡'´¡%Ü¡-¢'0¢ZX¢‰³¢=£PN£FŸ£,棤(¤?¤"H¤!k¤H¤cÖ¤=:¥;x¥;´¥¤ð¥•¦ ¦¦³¦ ʦ6ئ§^$§Sƒ§קè§ù§¨¡¨Œº¨G©Šå©wpªyèªÕb«š8¬­Ó¬#­'¥­1Í­ ÿ­% ®2® L®m®&®3´®&讯 .¯<¯#Z¯%~¯%¤¯7ʯ*°-°<°+K°w°”°§°Ç°æ°±M$±)r±)œ±ƱÖ±ï± ²²+²&=²d².²(°²Ù²1ï²!³ 3³&@³g³1|³®³ȳÞ³÷³$´%´4´ D´!Q´!s´+•´ Á´-δü´ -µ µ,µBµ KµUµ#dµˆµ@¨µ<éµ'&¶N¶c¶y¶Ž¶Ÿ¶›²¶FN·•·!¦·È·$×· ü· -¸#¸A¸cѸg5¹ ¹%ª¹й'î¹2ºIºiºƒº¡º»º#ʺ!$»#7»6[» ’»Ÿ»¿»ß»|ÿ»u|¼ò¼½+½K½_½{½™½A±½Hó½Y<¾a–¾ø¾% ¿%3¿oY¿3É¿ý¿ ÀÀ 4À UÀ!bÀS„ÀNØÀ'Á 8ÁDÁ SÁ`ÁVzÁÑÁâÁñÁ3ÂEÂ4YÂ!ŽÂ°Â;РÃÃ.ÃMIà —Ã¡Ã ·Ã-ÄÃ'òÃ4Ä4OÄ„Ä0•ÄÆÄ ÕÄâÄõÄ Å!Å:Å%OÅ!uÅ%—Å+½ÅéÅÆ!Æ6Æ JÆVÆiÆ$}Æ*¢ÆÍÆáÆõÆ Ç#Ç7ÇNÇfÇf|ÇãÇ ýÇ -ÈÈ!6È/XȆˆÈ—ɧɼÉÑÉãÉþÉ#Ê68Ê'oÊ"—ʺÊÍÊäÊÿÊË Ë(Ë:ËIË)ZË„Ë#•Ë¹ËÎË!éË% Ì1ÌBÌ UÌbÌ €Ì Ì(šÌ2ÃÌöÌÍ(1ÍZÍ)m͗ͦͻÍÐÍàÍ ÷ÍÎ"Î2AÎtΔΣΠ¸ÎÆÎ×ÎæÎùÎÏÏ5ÏFÏ UÏbÏ sÏ!Ï7£Ï ÛÏ èÏöÏ<Ð;LÐ!ˆÐªÐ¹ÐÉÐYâÐ<Ñ\Ñ!uÑ—Ñ#µÑKÙÑ'%Ò)MÒ/wÒ'§ÒÏÒ-ãÒ6ÓHÓ.fÓ,•Ó0ÂÓ0óÓ$ÔBÔRÔ+rÔžÔ±Ô7ÆÔ1þÔ%0Õ'VÕ~ÕšÕ+²ÕÞÕñÕÖ%Ö#=ÖRaÖ>´ÖMóÖ;A×}×6›×7Ò×, -Ø:7Ø-rØ% ØeÆØ!,Ù7NÙ#†Ù'ªÙ8ÒÙ4 Ú8@Ú:yÚN´ÚÛ -ÛÛ,Û1DÛ.vÛA¥Û1çÛÜ"3Ü2V܉ܧܿÜhÞÜUGÝ€Ý8ÞWÞfÞ‚Þ“Þ6¨Þ<ßÞ*ß=GßÙ…ß_àtßà Tá -õá -â ââ#6â5Zâ/âÀâ+ßâ" ã.ã+Mã/yã$©ã0Îã*ÿã_*ä"Šä5­ä/ãä&å4:åoå%å=µåóå/æ2æ -Bæ -Mæ!Xæzæ‹æ”æ¤æn¾æ-ç?ç6Pç6‡ç¾çÑçâçöçè#(èLè]èrè„è"”è$·èÜèëèúè'é >épHé2¹é;ìé=(êfêoê êgšêkëgnë^Öë5îXDîî#­îÑîáî!úî8ï#Uï$yïžï·ïÈï/çï5ð1Mðð!žðÀð!àðñ -ñ %ñv3ñ!ªñÌñÛñ*êñò(ò>òLMòšò#¶òÚò7ãò ó)ó>óHÜó%ô!4ôVô vô—ô[¶ô+õ+>õRjõ’½õmPö€¾öl?÷ -¬ø ·ø Äø'Òøúøùeùƒù†ù•ù¬ùÊùçùûùú"ú5úIú gú qú"{ú žú¿úÕúÝú#ïúû"û7û(Gûpû"‚û¥ûµû/Åûõû* ü 4ü"Uü"xü ›ü"¼ü"ßü"ý$%ýJý*\ý‡ý)Ÿý+Éýõýþ þ-þCþ_þ!}þŸþµþÅþÚþêþþþ ÿ!ÿ1ÿ"Cÿ fÿtÿ†ÿ2 ÿ ÓÿMáÿ/ C PZo„œ²Ì -ãî þ - 6IYo‡,£Ð äò ÷4]JI¨ò 9JZ%j¢¹Éè÷*/5INb{Šh¡0 - ; -\ gt4‡=¼<ú7H -Yds­Í íú m"K~çØ™~‹§ãª F:ZßE(ãi5[hSG „…-Ý ¹šº D5Ì|•O'x\)Ç[ä-¨a½·Ü­çMË/ŠlÿŽltE0þìÚ#Ép‰&´§2Š¦ QŠ5H»vØ]cqË!,þœù³ö×Ó'О9ï…€«eNt;2ß™A€Âîhõ¾æ¿¾d`²úb%½U3U Kx|ƒä†7\‘íˆÄø4 5ÈÓ§¥·0z$AHQìðFãy(`”bZJú 8 –’OLšR9„.BôMŽ/Ga± nȼ²ÅŽWw;£ºH_˜1M=J¶\D]uI‚”ÐyAPn Iµ¦á­{ómVB}®l+f6B_SÄΫ‰Ú¯H_U?šŸÔ±$QÊÞ›]†"žÕwÁ´˜¢WÛ¼Í/YTeŒP‡#EXëCéñ- u;fÕÅî}À)¬m -ôgÇRœ¨>üki·ÙoÉza&@{nRöàðý•œ©ËÒ` -^³TWŸë>σtÔ¤W\®eC4â¬ÇÊ´ÞìeŤ¯rïÏ)Ìl7Â1ÛÒi&SÓ+AÀíKÏ*Lÿ‰þ¢9õLRmÎ?b£›hé."Zæ% k3D¬ñ-Üd or¹"“B…O=åq.jâ,qv>¸<1Û?cqŒ+ÉXô—&m /_ûkÀ¿?ꣽMu‡s 8ë4õ“}T -Tú Gå@¥¡ï(„ù9ÖÑD¹ ¢êIIñÙû3U@!såÍé0™‹°sûX‘Œæ o×[GÞzgc¥±®g×NdÖ~Ã"‘‚ '^ÃÙFjêL`»–ü›óFÆJ»YOC. ©ø—Z^#,+òh%•<èý­ò’øKfN -:d:Ö{1¨«3Q÷‹¼ó$y7gýá!ÐÒo*°ð2¤çÊ¡N¡€‡V(ÔÕ¸ ,ÁVòV‚”¿Y–Äî³èaä<j—6%p²i*kžâ=àˆ¶õ¦µX<÷ƒ†ÿ6]$“CK7ݸ2ª8àÍjªÈpÎí߈©¯ÜÆ;rv¾˜°Sè'c4º=)w#>fÚJörEx^ÑÂÑÁ@ÆÝùá¶:ØpbY6÷P*PÌ’Ÿ n[ü08|! -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - -%d dpi%d dpi, %s%d minutes%d seconds%g x %g %s%p%s Channel to Selection%s Message%s copy%s mask(This console window will close in ten seconds) -(Unnamed Buffer)(modified)1 Layer1 layer16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s><>A_ngleAbout The GIMPActionActive FiltersAddAdd AnchorAdd ChannelAdd Horizontal GuideAdd LayerAdd Layer MaskAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdditionAdditional Input ControllersAdjust color levelsAdjustmentAirbrushAirbrush with variable pressureAlignedAlignmentAll FilesAll Files (*.*)Allow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAsk for confirmation before closing an image without saving.Aspect Ratio:Attach ParasiteAuthor:AutoAutoloadAutomatically DetectedAvailable Types:BackgroundBackground colorBackground: %d, %d, %dBehindBevelBlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBorder SelectionBorder selection byBrightness-ContrastBrushBrush EditorBrush FoldersBrush:BrushesBrushes MenuBucket FillBurnBy ExtensionCMYKCalibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask to layer which is not part of an image.Cannot create folder '%s': %sCannot create previewCannot expand ${%s}Canvas SizeCenter X:ChannelChannel AttributesChannel Name:ChannelsChannels MenuCl_earClearClear ChannelClick "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Close %sClose this TabColo_rsColorColor BalanceColor PickerColor:Columns:Comme_nt:CommentCon_trast:Configure GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm Image SizeConstraintsContinueConvertConvert Image to GrayscaleConvert Image to IndexedConvert Image to RGBCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate and edit images or photographsCreate and edit pathsCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop: Cu_tCurrent _StatusCurrent height:Current statusCurrent width:CursorCurvesCustomCustom colorCutCut NamedCyanDashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete Layer MaskDelete TemplateDelete brushDelete channelDelete paletteDelete saved options...Delete this imageDesaturateDescriptionDevice StatusDevicesDialogsDifferenceDirect ColorDisplayDisplay _Filters...DissolveDistance:Distance: %0.6fDivideDo a _fresh user installationDo you really want to reset all tool options to default values?Do_n't saveDocument Histor_yDocument HistoryDocumentsDocuments MenuDodgeDrag AnchorDrag AnchorsDrag CurveDrag HandleEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Layer AttributesEdit TemplateEdit brushEdit proceduresEllipse SelectEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.EnormousEnter a name for this bufferEnter a name for this templateEnter location (URI):EnvironmentEqualizeEraserError Co_nsoleError ConsoleError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing to '%s': %sError writing to temporary file for '%s': %s -No file has been created.ErrorsEventEx_tra LargeExposure:Extended Input DevicesExtensionsFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFatal 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.Feather ChannelFeather SelectionFeather selection byFileFile OperationsFile TypeFile existsFill ChannelFill Opacity:Fill with FG ColorFill with TransparencyFill with WhiteFilte_rsFixed sizeFlip ChannelFlip LayerFlip PathFloating Selection to LayerFloating selectionsFolderFoldersFont FoldersFontsForegroundForeground colorForeground: %d, %d, %dFree SelectFreehandFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom themeFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP StartupGIMP Text EditorGIMP User InstallationGIMP XCF imageGIMP help browserGIMP versionGeneralGet Monitor ResolutionGiganticGradient EditorGradient UIGradient:GradientsGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide proceduresHSVH_eight:Handle position: %0.6fHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHighlightsHistogra_mHistogramHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.HueHue-SaturationHugeI_con & TextI_mageIconIcon & textIf you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage InformationImage SizeImage ThumbnailsImage Window AppearanceImage WindowsImage maskImage sizeImage typeImagesImport PathsImport paletteIndex:IndexedIndexed ColorIndexed Color ConversionInkInput ControllersInput DevicesInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal ProceduresInterpolation:Intersections (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'.InvertInvert ChannelInvert SelectionIt seems you have used GIMP 2.0 before.Keyboard ShortcutsLandscapeLargeLarge (256x256)Last Error:LayerLayer SelectLayer cannot be lowered more.Layer cannot be raised higher.LayersLength:LevelsLineLine _Style:Line style used for the grid.LinearLoadLoad CurvesLoad text from fileLocation:Looking for data filesLower ChannelLower LayerLower Path to BottomMagentaMagnifyMax Depth:Maximum _filesize for thumbnailing:Mean:Median:MediumMerge DownMerge LayersMerge Visible LayersMerge Visible PathsMidtonesMigrate User SettingsMiscellaneousMiterModeMode:ModulesMouse CursorsMoveMove ChannelMove GuideMove SelectionMove to Screen...Move: MultiplyN_umber of colors:Na_vigationName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew TemplateNew brushNew channel...New importNew paletteNo patterns available for this operation.No selectionNoneNormalNormal (128x128)Normal 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.OffsetOffset:On diskOnly in memoryOpacity:Open LocationOpen Text File (UTF-8)Open _Location...Open _RecentOptions: -Origin X:Original Width:OverlayPaintPaintbrushPal_ettesPalettePalettesParasite proceduresParasitesParsing '%s' -PastePaste _IntoPaste as _NewPasted LayerPathPathsPatternPattern FoldersPatternsPencilPersonal GIMP FolderPixel dimensions:PixelsPixels:Please wait...Plug-InPlug-In EnvironmentPlug-inPolygonalPortraitPosition: %0.6fPreferencesPressure:PreviewPrint size:Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRadialRadius:Raise LayerRaise Path to TopRateRate:Re_peat "%s"Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to two colors using a thresholdRefresh brushesRegisteredRemove ChannelRemove GuideRemove LayerRemove the selected entryRename ChannelRename LayerRename itemRepeat LastRepeat:ReplicateReset Tool OptionsResizeResize ChannelResize ImageResize LayerResize PathResolution changeResolution:Resource ConsumptionRestore options from...RevertRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate _180 degreesRotating...Rotation InformationRoundSaturationSaveSave CurvesSave ImageSave Keyboard Shortcuts _NowSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save all errorsSave as _Template...Save device statusSave options to...Save selectionSave the changes to image '%s' before closing?Saving '%s' -Saving '%s' failed: - -%sSaving ImagesScaleScale ChannelScale ImageScale LayerScale PathScale the layer or selectionScissorsScreenSelectSelect AllSelect Brush FoldersSelect File _Type (%s)Select Font FoldersSelect Pattern FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect allSelect by ColorSelect 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 selected segment.Select web browserSelectionSelection MaskSelection: SensitivitySet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Layer Boundary SizeSets the canvas padding color used if the padding mode is set to custom color.Sets the manner in which transparency is displayed in images.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.ShadowsShapeSharpenSharpen ChannelSharpen SelectionShow S_tatusbarShow Scroll_barsShow _GuidesShow _MenubarShow _SelectionShow _guidesShow _menubarShow active _imageShow gri_dShow image sizeShow memory usageShow menu _mnemonics (access keys)Show s_electionShow s_tatusbarShow scroll_barsShow tool _tipsShow zoom percentageShrink ChannelShrink SelectionShrink from image borderSizeSize of _thumbnails:Size:SmallSmoothSmooth edgesSolidSourceSpacing:Special FileSpecifies how the area around the image should be drawn.Speed:SplitSplit Segment UniformlySplit Segments UniformlySquareStandardState:Static ColorStatic GrayStatus & textSubtractSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTextText ColorText proceduresThe GIMPThe active image. -Click to open the Image Dialog.The foreground color of the grid.The horizontal image resolution.The vertical image resolution.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is one image with unsaved changes: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.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusToo many error messages!Tool OptionsTool _OptionsToolboxToolsTransformTransform ChannelTransform DirectionTransform LayerTransformationTransforming...Translation byTransparency _type:True ColorTypeType %sUnable to add a layer mask since the layer already has one.UndoUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse _web browser insteadUser InterfaceUtility windowValueVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.ViewView as _GridView as _ListView as gridView as listWarning: Failed to save data: - -%sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled, GIMP will show mnemonics in menus.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow PositionsXXCF error: unsupported XCF file version %d encounteredYYellowZoom 1:1Zoom AllZoom _AllZoom _InZoom _OutZoom inZoom outZoom:[ Base Image ]_About_Acquire_Add Tab_Advanced Options_Airbrush_All_Auto_Background color:_Brush_By Color_Channels_Clear Errors_Close_Close Tab_Clouds_Colors_Context Help_Copy_Default Colors_Delete Brush_Delete Channel_Delete Color_Delete Image_Delete Palette_Delete Segment_Detach Tab_Device Status_Dialogs_Duplicate_Edit_Edit Brush..._Edit Color..._Enormous_Equalize_File_Fill with:_Font_Fonts_Foreground color:_Gigantic_Help_Horizontal:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Large_Linear_Manually_Maximum number of colors:_Medium_Migrate GIMP 2.0 user settings_Mode_Name:_Nature_New Brush_New Channel_New Channel..._New Palette_New Template..._New View_New..._Noise_None_Offset..._Open Image_Open..._Palette_Paste_Preferences_Preview_Preview Size_Properties_Quit_RGB_Refresh Brushes_Replace_Save_Save keyboard shortcuts on exit_Save window positions on exit_Select_Selection_Small_Tab Style_Template:_Templates_Text_Tip of the Day_Tools_Vertical:_View_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscaleinchinchesindexedinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersminutepercentpixelpixelspixels/%apixels/%spointpointssecondvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: el -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-11-08 17:04+0200 -Last-Translator: Nikos Charonitakis -Language-Team: -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3.1 - -Μη έγκυÏη επιλογή "%s" - -ΧÏήση: %s [επιλογή ... ] [αÏχείο ... ] - -%d dpi%d dpi, %s%d λεπτά%d δευτεÏόλεπτα%g x %g %s%pΕπιλογή από Κανάλι %s%s Μήνυμα%s αντίγÏαφο%s μάσκα(Αυτό το παÏάθυÏο κονσόλας θα κλείσει σε δέκα δευτεÏόλεπτα) -(Ανώνυμος ενταμιευτής)(Ï„Ïοποποιημένο)1 ΣτÏώμα1 στÏώμα16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s><<Μη έγκυÏο>>_ΓωνίαΠεÏί του GIMPΕνέÏγειαΕνεÏγά ΦίλτÏαΠÏοσθήκηΠÏοσθήκη ΆγκυÏαςΠÏοσθήκη ΚαναλιοÏΠÏοσθήκη ΟÏιζόντιου ΟδηγοÏΠÏοσθήκη ΣτÏώματοςΠÏοσθήκη Μάσκας ΣτÏωμάτωνΠÏοσθήκη ΚατακόÏυφου ΟδηγοÏΠÏοσθήκη Μάσκας στο ΣτÏώμαΠÏοσθήκη κειμένου στην εικόναΠÏοσθήκηΠÏόσθετοι Ελεγκτές ΕισόδουΠÏοσαÏμογή επιπέδων χÏώματοςΠÏοσαÏμογήΑεÏογÏάφοςΑεÏογÏάφος με μεταβλητή πίεσηΕυθυγÏαμμισμένοΕυθυγÏάμμισηΌλα τα ΑÏχείαΌλα τα ΑÏχεία (*.*)ΕπιτÏέπονται πλήÏως διαφανείς πεÏιοχές να επιλέγονταιΆλφαΕπιλογή από ΆλφαΆλφα:ΑγκÏÏωση Επιπλέουσας ΕπιλογήςΓωνία:ΕξομάλυνσηΕμφάνισηΕφαÏμογή Μάσκας ΣτÏωμάτωνΕφαÏμογή ΚατωφλίουÎα ζητάται επιβεβαίωση Ï€Ïιν το κλείσιμο μίας εικόνας που δεν έχει αποθηκευθεί.Λόγος αναλογιών:ΠÏοσκόλληση ΠαÏασίτουΣυγγÏαφέας:ΑυτόματοΑυτόματη φόÏτωσηΕντοπίστηκε ΑυτόματαΔιαθέσιμοι ΤÏποι:ΦόντοΧÏώμα παÏασκηνίουΠαÏασκήνιο: %d, %d, %dΠίσωΓωνίαΑνάμιξηΑνάμειξη: Ανάμειξη: ΆκυÏο για εικόνες καταλόγου χÏωμάτων.Γίνεται ανάμειξη...ΜπλεΜπλε:ΘόλωσηΕπιλογή ΠεÏιγÏάμματοςΕπιλογή ΠεÏιγÏάμματος από:Φωτεινότητα-ΑντίθεσηΠινέλοΕπεξεÏγαστής ΠινέλουΦάκελοι ΠινέλωνΠινέλο:Î Î¹Î½Î­Î»Î±ÎœÎµÎ½Î¿Ï Î Î¹Î½Î­Î»Ï‰Î½Î“Î­Î¼Î¹ÏƒÎ¼Î± ΚουβάΚάψιμοΚατά ΕπέκτασηCMYKΡÏθμιση Ανάλυσης ΟθόνηςΑδυναμία ακÏÏωσης της Ï€ÏοηγοÏμενης ενέÏγειας %sΆκυÏοΑδυναμία Ï€Ïοσθήκης μάσκας στÏωμάτων σε στÏώμα που δεν είναι τμήμα της εικόνας.ΑδÏνατη η δημιουÏγία καταλόγου '%s': %sΑδÏνατη η δημιουÏγία Ï€ÏοεπισκόπησηςΑδυναμία ανάπτυξης του ${%s}Μέγεθος ΚαμβάΚέντÏο X:ΚανάλιΓνωÏίσματα ΚαναλιοÏΌνομα ΚαναλιοÏ:ÎšÎ±Î½Î¬Î»Î¹Î±ÎœÎµÎ½Î¿Ï ÎšÎ±Î½Î±Î»Î¹ÏŽÎ½ÎšÎ±_θαÏισμόςΚαθαÏισμόςΚαθαÏισμός ΚαναλιοÏΠατήστε "Συνέχεια" για να δημιουÏγήσετε τον Ï€Ïοσωπικό σας φάκελο για το GIMP.Πατήστε "Συνέχεια" για να αÏχίσει η εγκατάσταση χÏήστη GIMP.Πατήστε "Συνέχεια" για να Ï€ÏοχωÏήσει η εγκατάσταση χÏήστη.Κλείσιμο %sΚλείσιμο αυτής της ΚαÏτέλας_ΧÏώματαΧÏώμαΕξισοÏÏόπηση ΧÏώματοςΕπιλογέας ΧÏώματοςΧÏώμα:Στήλες:_Σχόλιο:ΣχόλιοΑντί_θεση:ΡÏθμιση ΠλέγματοςΡΎθμιση ΣυντομεÏσεων ΠληκτÏολογίουΡÏθμιση ΣυντομεÏσεων _ΠληκτÏολογίου...Επιβεβαίωση Μεγέθους ΕικόναςΠεÏιοÏισμοίΣυνέχειαΜετατÏοπήΜετατÏοπή Εικόνας σε ΑποχÏώσεις του ΓκÏιΜετατÏοπή Εικόνας σε Εικόνα με ΔείκτηΜετατÏοπή Εικόνας σε RGBΑντιγÏαφή ΕπώνυμουΑντιγÏαφή αÏχείου '%s' από '%s'...Πνευματικά Δικαιώματα:ΚατεστÏαμμένο τμήμα %d στο αÏχείο κλιμάκωσεων '%s'.Αδυναμία δημιουÏγίας του '%s': %sΑδÏνατη η εÏÏεση του πεÏιηγητή βοήθειας του GIMP.Αδυναμία ανοίγματος του '%s' για ανάγνωση: %sΑδυναμία ανάγνωσης %d bytes από το αÏχείο '%s': %sΑδυναμία ψαξίματος στο αÏχείο XCF: %sΜετÏητής:ΔημιουÏγία Îέου ΠÏότυπουΔημιουÏγία μιας Îέας ΕικόναςΔημιουÏγία κι επεξεÏγασία εικόνων ή φωτογÏαφιώνΔημιουÏγίας κι επεξεÏγασία διαδÏομώνΔημιουÏγία ΠÏοεπισκόπησης ...ΔημιουÏγία καταλόγου '%s'...ΚόψιμοΚόψιμο & ΤÏοποποίηση μεγέθουςΚόψιμο: Απο_κοπήΤÏέχουσα _ΚατάστασηΤÏέχον Ïψος:ΤÏέχουσα κατάστασηΤÏέχον πλάτος:ΔÏομέαςΚαμπÏλεςΠÏοσαÏμοσμένοΠÏοσαÏμοσμένο χÏώμαΑποκοπήΑποκοπή ΕπώνυμουΚυανόΔιακεκομμένηΗμεÏομηνία:ΠÏοεπιλεγμένη Εμφάνιση σε ΛειτουÏγία ΠλήÏης ΟθόνηςΠÏοεπιλεγμένη Εμφάνιση σε Κανονική ΚατάστασηΠÏοεπιλεγμένο ΠλέγμαΠÏοεπιλεγμένο Πλέγμα ΕικόναςΔιαγÏαφή Μάσκας ΣτÏωμάτωνΔιαγÏαφή ΠÏοτÏπουΔιαγÏαφή πινέλουΔιαγÏαφή καναλιοÏΔιαγÏαφή ΠαλέτταςΔιαγÏαφή αποθηκευμένων επιλογών...ΔιαγÏαφή αυτής της εικόναςΑποκοÏεσμόςΠεÏιγÏαφήΚατάσταση ΣυσκευήςΣυσκευέςΔιάλογοιΔιαφοÏάΑπευθείας ΧÏώμαΟθόνηΕμφάνιση _ΦίλτÏων...ΔιάλυσηΑπόσταση:Απόσταση: %0.6fΔιαίÏεσηÎα γίνει _καινοÏÏγια εγκατάσταση χÏήστηΘέλετε Ï€Ïαγματικά να επαναφέÏετε όλες τις επιλογές εÏγαλείων στις -Ï€ÏοκαθοÏισμένες τιμές;Îα μην αποθηκευθεί_ΙστοÏικό ΕγγÏάφουΙστοÏικό ΕγγÏάφουΈγγÏÎ±Ï†Î±ÎœÎµÎ½Î¿Ï Î•Î³Î³ÏάφωνΥπεκφυγήΣÏÏσιμο ΆγκυÏαςΣÏÏσιμο ΑγκυÏώνΣÏÏσιμο ΚαμπÏληςΣÏÏσιμο ΧειÏολαβήςΩχ: αδυναμία ακÏÏωσης Ï€ÏοηγοÏμενης ενέÏγειαςΕπεξεÏγασίαΕπεξεÏγασία ΓνωÏισμάτων ΚαναλιοÏΕπεξεÏγασία ΧÏώματος ΚαναλιοÏΕπεξεÏγασία Ιδιοτήτων ΣτÏώματοςΕπεξεÏγασία ΠÏοτÏπουΕπεξεÏγασία πινέλουΕπεξεÏγασία διαδικασιώνΕλλειψοειδής ΕπιλογήΚενό όνομα μεταβλητής στο αÏχείο πεÏιβάλλοντος %sΕπιλέξτε το για να εμφανίζεται μία χÏήσιμη συμβουλή του GIMP κατά την έναÏξη.ΤεÏάστιοΕισάγετε ένα όνομα για αυτόν τον ενταμιευτήΕισάγετε ένα όνομα για αυτό το Ï€ÏότυποΕισαγωγή τοποθεσίας (URI):ΠεÏιβάλλονΙσοστάθμισηΓόμαΚονσόλα Σφα_λμάτωνΚονσόλα ΣφαλμάτωνΣφάλμα κατά την αποθήκευση αÏχείου XCF: %sΣφάλμα κατά την επεξεÏγασία του ÏŒÏου '%s' στη γÏαμμή %d: %sΣφάλμα κατά την ανάγνωση του '%s': %sΣφάλμα κατά την εγγÏαφή του '%s': %sΣφάλμα κατά την εγγÏαφή στο '%s': %sΣφάλμα κατά την εγγÏαφή στο Ï€ÏοσωÏινό αÏχείο για το '%s': %s -Δεν δημιουÏγήθηκε κανένα αÏχείο.ΣφάλματαΣυμβάνΠολ_Ï ÎœÎµÎ³Î¬Î»Î¿ÎˆÎºÎ¸ÎµÏƒÎ·:Εκτεταμένες Συσκευές ΕισόδουΕπεκτάσειςΠÏοσκήνιο Ï€Ïος ΠαÏασκήνιο (HSV απόχÏωση δεξιόστÏοφα)ΠÏοσκήνιο Ï€Ïος ΠαÏασκήνιο (HSV αÏιστεÏόστÏοφα)FG σε BG (HSV)FG σε BG (RGB)FG σε ΔιαφανέςFG/BGΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Το αÏχείο φαίνεται να τελειώνει Ï€ÏόωÏαΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Το αÏχείο έχει καταστÏαφεί.ΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Αυτό δεν είναι αÏχείο -πινέλων του GIMP.ΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Άγνωστη έκδοση πινέλων GIMP.ΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Άγνωστο βάθος %d.ΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Άγνωστη έκδοση %d.ΜοιÏαίο συντακτικό σφάλμα στο αÏχείο πινέλων '%s': Μη υποστηÏιζόμενο βάθος %d -Τα πινέλα του GIMP Ï€Ïέπει να είναι γκÏι ή RGBAΜοιÏαίο συντακτικό σφάλμα στο αÏχείο κλιμάκωσεων '%s': Το αÏχείο είναι κατεστÏαμμένο.ΜοιÏαίο συντακτικό σφάλμα στο αÏχείο κλιμάκωσεων '%s': Αυτό δεν είναι αÏχείο κλιμακώσεων του GIMP.ΠλοÏμισμα ΚαναλιοÏΕπιλογή ΠλουμίσματοςΕπιλογή πλουμίσματος κατά:ΑÏχείοΛειτουÏγίες ΑÏχείουΤÏπος ΑÏχείουΤο αÏχείο υπάÏχειΓέμισμα ΚαναλιοÏΓέμισμα Αδιαφάνειας:Γέμισμα με ΧÏώμα ΠÏοσκηνίουΓέμισμα με ΔιαφάνειαΓέμισμα με Λευκό_ΦίλτÏαΣταθεÏÏŒ μέγεθοςΑναστÏοφή ΚαναλιοÏΑναστÏοφή ΣτÏώματοςΑναστÏοφή ΔιαδÏομήςΕπιπλέουσα Επιλογή στο ΣτÏώμαΕπιλογές που επιπλέουνΦάκελοςΦάκελοιΦάκελοι ΓÏαμματοσειÏώνΓÏαμματοσειÏέςΠÏοσκήνιοΧÏώμα Ï€ÏοσκηνίουΠÏοσκήνιο: %d, %d, %dΕλεÏθεÏη ΕπιλογήΕλεÏθεÏο ΣχέδιοΑπό το σÏστημα _παÏαθÏÏων (Ï„Ïέχουσα %d x %d dpi)Από αÏιστεÏά στα δεξιάΑπό δεξιά στα αÏιστεÏάΑπό θέμα_ΠλήÏης ΟθόνηΑσαφής ΕπιλογήΤο GIMPΕπέκταση GimpΜήνυμα GIMPΡÏθμιση Επιδόσεων GIMPΕκκίνηση του GIMPΕπεξεÏγαστής Κειμένου GIMPΕγκατάσταση ΧÏήστη GIMPΕικόνα GIMP XCFΠεÏιηγητής Βοήθειας του GIMPΈκδοση GIMPΓενικάΛήψη Ανάλυσης ΟθόνηςΓιγαντιαίοΕπεξεÏγαστής ΔιαβαθμίσεωνΔιαβάθμισης UIΔιαβάθμιση:ΔιαβαθμίσειςΓκÏιΑποχÏώσεις του γκÏιΠÏάσινοΠÏάσινο:ΠλέγμαΑνάπτυξη ΚαναλιοÏΕπέκταση ΕπιλογήςΕπέκταση Επιλογής κατά:ΟδηγόςΔιαδικασίες καθοδήγησηςHSV_Ύψος:Θέση χειÏιστή: %0.6fΣκληÏότητα:ΎψοςΎψος:ΒοήθειαΠÏόγÏαμμα ΒοήθειαςΣÏστημα ΒοήθειαςΔεν ξεκινάει ο πεÏιηγητής βοήθειαςΔε βÏέθηκε ο πεÏιηγητής βοήθειαςΔιαδικασίες ΒοήθειαςΥπεÏτόνιση_ΙστόγÏαμμαΙστόγÏαμμαΙστοÏικόΟÏιζόντιαΟÏιζόντια μετάθεση Ï€Ïώτης γÏαμμής πλέγματος· μποÏεί να είναι και αÏνητικός αÏιθμός.ΟÏιζόντια απόσταση γÏαμμών πλέγματος.ΑπόχÏωσηΑπόχÏωση-ΚοÏεσμόςΠελώÏιοΕικονί_διο & ΚείμενοΕι_κόναΕικονίδιοΕικονίδιο & κείμενοΑν δεν αποθηκεÏσετε την εικόνα, οι αλλαγές που έγιναν τα τελευταία %s θα χαθοÏν.Εαν τεÏματίσετε το GIMP Ï„ÏŽÏα, οι αλλαγές αυτές θα χαθοÏν.Μη έγκυÏο όνομα μεταβλητής στο αÏχείο πεÏιβάλλοντος %s: %sΕικόναΠληÏοφοÏίες ΕικόναςΜέγεθος ΕικόναςΜικÏογÏαφίες ΕικόνωνΕμφάνιση ΠαÏάθυÏου ΕικόναςΠαÏάθυÏα ΕικόνωνΜάσκα εικόναςΜέγεθος εικόναςΤÏπος εικόναςΕικόνεςΕισαγωγή ΔιαδÏομώνΕισαγωγή παλέτταςΕυÏετήÏιο:ΚαταλόγουΧÏώματος ΚαταλόγουΜετατÏοπή ΧÏώματος ΚαταλόγουΜελάνιΕλεγκτές ΕισόδουΣυσκευές ΕισόδουΕισαγωγή ΆγκυÏαςΗ εγκατάσταση απέτυχε. Επικοινωνήστε με το διαχειÏιστή συστήματος.Επιτυχημένη εγκατάσταση. Πατήστε "Συνέχεια" για να Ï€ÏοχωÏήσετε.Άμεση ενημέÏωσηΔιεπαφήΕσωτεÏικές ΔιαδικασίεςΠαÏεμβολή:Τομές (σταυÏοί)Τομές (κουκίδες)Μη έγκυÏο UTF-8Mη έγκυÏα δεδομένα UTF-8 στο αÏχείο '%s'.Μη έγκυÏο αλφαÏιθμητικό UTF-8 σε αÏχείο XCFΜη έγκυÏη συμβολοσειÏά UTF-8 στο αÏχείο πινέλων '%s'.Μη έγκυÏη συμβολοσειÏά UTF-8 στο αÏχείο κλιμάκωσεων '%s'.ΑντιστÏοφήΑντιστÏοφή ΚαναλιοÏΑντιστÏοφή ΕπιλογήςΑπό οτι φαίνεται έχετε χÏησιμοποιείσει στο παÏελθόν το GIMP 2.0 ΣυντομεÏσεις ΠληκτÏολογίουΟÏιζόντιαΜεγάλοΜεγάλο (256x256)Τελευταίο Σφάλμα:ΣτÏώμαΕπιλογή ΣτÏώματοςΤο στÏώμα δεν μποÏεί να βυθισθεί πεÏισσότεÏο.Το στÏώμα δεν μποÏεί ανυψωθεί πεÏισσότεÏο.ΣτÏώματαΜήκος:ΕπίπεδαΓÏαμμή_Στυλ ΓÏαμμής:Ρυθμός γÏαμμής που χÏησιμοποιείται για πλέγμα.ΓÏαμμικόΦόÏτωσηΦόÏτωση ΚαμπÏλωνΦόÏτωση κειμένου από αÏχείοΤοποθεσία:Αναζήτηση αÏχείων δεδομένωνΧαμήλωμα ΚαναλιοÏÎ’Ïθιση ΣτÏώματοςΥποβιβασμός ΣτÏώματος στον ΠάτοΠοÏφυÏόΜεγέθυνσηΜέγιστο Βάθος:Μέγιστο μέγε_θος αÏχείου για μικÏογÏαφίεςΜέσο:Ενδιάμεσος:ΜεσαίοΣυγχώνευση με το επόμενοΣυγχώνευση ΣτÏωμάτωνΣυγχώνευση ΟÏατών ΣτÏωμάτωνΣυγχώνευση ΟÏατών ΔιαδÏομώνΗμίτονοιΜεταφοÏά Ρυθμίσεων ΧÏήστηΔιάφοÏαΦάλτσοΚατάστασηΚατάσταση:ΜονάδεςΔείκτες ΠοντικιοÏΜετακίνησηΜετακίνηση ΚαναλιοÏΜετακίνηση ΟδηγοÏΜετακίνηση ΕπιλογήςΜετακίνηση στην Οθόνη...Μετακίνηση: Πολλαπ/μόςΑÏι_θμός χÏωμάτων:_ΠεÏιήγησηΌνομα:ΠεÏιήγησηÎέο ΚανάλιΧÏώμα Îέου ΚαναλιοÏΕπιλογές Îέου ΚαναλιοÏÎέα ΕικόναÎέο ΣτÏώμαÎέα ΔιαδÏομήÎέο ΠÏότυποÎέο πινέλοÎέο κανάλι...Îέα εισαγωγήÎέα ΠαλέτταΔεν υπάÏχουν διαθέσιμα δείγματα για τη λειτουÏγία αυτή.ΧωÏίς επιλογήΚανέναΚανονικόΚανονικό (128x128)Κανονικό παÏάθυÏοΔεν είναι κανονικό αÏχείοΔεν υπάÏχουν αÏκετά στÏώματα για συγχώνευση. ΧÏιάζονται τουλάχιστον δÏο.Δεν υπάÏχουν αÏκετές οÏατές διαδÏομές για συγχώνευση. ΧÏιάζονται τουλάχιστον δÏο.ΜετατόπισηΜετατόπισηΣτο δίσκοΜόνο στη μνήμηΑδιαφάνεια:Άνοιγμα ΤοποθεσίαςΆνοιγμα ΑÏχείου Κειμένου (UTF-8)Άνοιγμα _Τοποθεσίας...Άνοιγμα _ΠÏόσφατουΕπιλογές: -ΠÏοέλευση Χ:ΑÏχικό Πλάτος:ΕπικάλυψηΒαφήΠινέλοΠα_λέττεςΠαλέτταΠαλέττεςΔιαδικασίες παÏάσιτωνΠαÏάσιταΕπεξεÏγασία του '%s' -ΕπικόλλησηΕπικόλληση _ΣεΕπικόλληση ως _ÎέοΕπικολλημένο ΣτÏώμαΔιαδÏομήΔιαδÏομέςΣχέδιοΦάκελοι ΣχεδίωνΣχέδιαΜολÏβιΠÏοσωπικός Φάκελος GIMPΔιαστάσεις εικονοστοχείου:ΕικονοστοιχείαΕικονοστοιχεία:ΠαÏακαλώ πεÏιμένετε...ΑÏθÏώματαΠεÏιβάλλον ΑÏθÏωμάτωνΆÏθÏωμαΠολυγωνικόΚατακόÏυφαΘέση: %0.6fΠÏοτιμήσειςΠίεση:ΠÏοεπισκόπησηΜέγεθος εκτÏπωσης:Βάση Δεδομένων ΔιαδικασιώνΒάση ΔιαδικασιώνΠÏόοδοςΨευδόχÏωμαΣκοπός:ΠοιότηταΕÏώτησηΤαχυΜάσκαΈξοδος από Το GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)ΧÏώμα RGBRGB-κενόΑκτινωτόΑκτίνα:ΑνÏψωση ΣτÏώματοςΑνÏψωση ΔιαδÏομής στην ΚοÏυφήΡυθμόςΡυθμός:Επα_νάληψη "%s"ΕπαναδημιουÏγία _ΠÏοεπισκόπησηςΕπαναδημιουÏγία Ï€ÏοεπισκόπησηςΟÏθογώνια ΕπιλογήΚόκκινοΚόκκινο:ΕπανεκτέλεσηΜείωση εικόνας σε δÏο χÏώματα με χÏήση κατωφλίουΑνανέωση πινέλωνΚαταχωÏημένοΔιαγÏαφή ΚαναλιοÏΑφαίÏεση ΟδηγοÏΔιαγÏαφή ΣτÏώματοςΑπομάκÏυνση της επιλεγμένης καταχώÏησηςΜετονομασία ΚαναλιοÏΜετονομασία ΣτÏώματοςΜετονομασία αντικειμένουΕπανάληψη ΤελευταίουΕπανάληψη:Κατασκευή πανομοιότυπουΕπαναφοÏά Επιλογών ΕÏγαλείωνΑλλαγή μεγέθουςΑλλαγή μεγέθους ΚαναλιοÏΑλλαγή Μεγέθους ΕικόναςΑλλαγή μεγέθους ΣτÏώματοςΑλλαγή Μεγέθους ΔιαδÏομήςΑλλαγή ανάλυσηςΑνάλυση:Απασχόληση ΠόÏωνΑνάκτηση επιλογών από...ΕπαναφοÏάΠεÏιστÏοφήΠεÏιστÏοφή 90° _ΑÏιστεÏόστÏοφαΠεÏιστÏοφή 90° _ΔεξιόστÏοφαΠεÏιστÏοφή ΚαναλιοÏΠεÏιστÏοφή ΣτÏώματοςΠεÏιστÏοφή _180°ΠεÏιστÏοφή...ΠεÏιστÏοφή ΠληÏοφοÏίαςΣτÏογγυλόΚοÏεσμόςΑποθήκευσηΑποθήκευση ΚαμπÏλωνΑποθήκευση ΕικόναςΑποθήκευση ΣυντομεÏσεων ΠληκτÏολογίου _ΤώÏαΑποθήκευση Θέσεων ΠαÏαθÏÏου _ΤώÏαΑποθήκευση _Όλων των Σφαλμάτων σε ΑÏχείο...Αποθήκευση _Επιλογής σε ΑÏχείο...Αποθήκευση _ως...Αποθήκευση ενός Α_ντίγÏαφου...Αποθήκευση όλων των σφαλμάτωνΑποθήκευση ως _ΠÏότυπο...Αποθήκευση κατάστασης συσκευήςΑποθήκευση επιλογών σε...Αποθήκευση επιλογήςΑποθήκευση των αλλαγών στην εικόνα '%s' Ï€Ïιν το κλείσιμο;Αποθήκευση του '%s' -Η αποθήκευση του '%s' απέτυχε: - -%sΑποθήκευση ΕικόνωνΜεγένθυνση/ΣμίκÏυνσηΜεγένθυνση/ΣμίκÏυνση ΚαναλιοÏΜεγέθυνση/ΣμίκÏυνση ΕικόναςΜεγέθυνση/ΣμίκÏυνση ΣτÏώματοςΜεγένθυνση/ΣμίκÏυνση ΔιαδÏομήςΜεγένθυνση/ΣμίκÏυνση στÏώματος ή επιλογήςΨαλίδιαΟθόνηΕπιλογήΕπιλογή ΌλωνΕπιλογή Φακέλων για ΠινέλαΕπιλογή _ΤÏπου ΑÏχείου (%s)Επιλογή Φακέλων για ΓÏαμματοσειÏέςΕπιλογή Φακέλων για ΣχέδιαΕπιλογή ΠηγήςΕπιλογή Φακέλου SwapΕπιλογή ΠÏοσωÏÎ¹Î½Î¿Ï Î¦Î±ÎºÎ­Î»Î¿Ï…Î•Ï€Î¹Î»Î¿Î³Î® ΘέματοςΕπιλογή όλωνΕπιλογή με ΧÏώμαΕπιλέξτε πόσες φοÏές να αναπαÏαχθεί το επιλεγμένο τμήμα.Επιλέξτε πόσες φοÏές να αναπαÏαχθεί η επιλογή.Επιλέξτε σε πόσα ομοιόμοÏφα τμήματα να διαιÏεθεί το επιλεγμένο τμήμα.Επιλογή πεÏιηγητή ιστοσελίδωνΕπιλογήΜάσκα ΕπιλογήςΕπιλογή: ΕυαισθησίαΚαθοÏισμός ΧÏώματος ΚαναλιοÏΚαθοÏισμός Αδιαφάνειας ΚαναλιοÏΡÏθμιση Μεγέθους ΚαμβάΡÏθμιση Μεγέθους ΟÏίου ΣτÏώματοςΚαθοÏίζει ποιο χÏώμα γεμίσματος καμβά να χÏησιμοποιηθεί, αν η λειτουÏγία γεμίσματος έχει Ïυθμιστεί ως επιλογή χÏήστη.Ρυθμίζει τον Ï„Ïόπο με τον οποίο η διαφάνεια εμφανίζεται στις εικόνες.ΚαθοÏίζει την κατάσταση του δείκτη που θα χÏησιμοποιήσει το GIMP.Ρυθμίζει το μέγεθος της σκακιέÏας που χÏησιμοποιείται για την εμφάνιση της διαφάνειας.ΣκιέςΣχήμαΌξυνσηΌξυνση ΚαναλιοÏΕπιλογή ΣμίκÏυνσηςΕμφάνιση ΓÏαμμής _ΚατάστασηςΕμφάνιση ΓÏαμμών ΚÏ_λισηςΕμφάνιση _ΟδηγώνΕμφάνιση ΓÏαμμής _ΜενοÏΕμφάνιση _ΕπιλογήςΕμφάνιση _οδηγώνΕμφάνιση γÏαμμής _μενοÏΕμφάνιση ενεÏγής ει_κόναςΕμφάνιση πλέγμα_τοςΕμφάνιση μεγέθους εικόναςΕμφάνιση χÏήσης μνήμηςΕμφάνιση στα Î¼ÎµÎ½Î¿Ï Ï„Ï‰Î½ κλειδιών γÏήγοÏης Ï€Ïόσβασης.Εμφάνιση _επιλογήςΕμφάνιση γÏαμμής _κατάστασηςΕμφάνιση γÏαμμών κÏ_λισηςΕμφάνιση _βοηθημάτωνΕμφάνιση ποσοστό μεγέθυνσηςΣυστολή ΚαναλιοÏΣμίκÏυνσης ΕπιλογήςΣμίκÏυνση από το ÏŒÏιο της εικόναςΜέγεθοςΜέγεθος των _μικÏογÏαφιώνΜέγεθος:ΜικÏόΟμαλόΟμαλοποίηση ακμώνΣυμπαγήςΠηγήΔιάκενο:Ειδικό ΑÏχείοΚαθοÏίζει πώς να ζωγÏαφίζεται η πεÏιοχή γÏÏω από την εικόνα.ΤαχÏτητα:ΔιαίÏεσηΟμοιόμοÏφη ΔιαίÏεση ΤμημάτοςΟμοιόμοÏφη ΔιαίÏεση ΤμημάτωνΤετÏάγωνοΚανονικόΚατάσταση:Στατικό ΧÏώμαΣτατικό ΓκÏιΚατάσταση & κείμενοΑφαίÏεσηΦάκελος Swap:ΕÏγα_λεία_ΚείμενοΕÏγαλείο Κει_μένουΠÏοσωÏινός φάκελος:ΠÏότυπαΚείμενοΧÏώμα ΚειμένουΔιαδικασίες ΚειμένουΤο GIMPΗ ενεÏγή εικόνα. -Κάντε κλικ για να ανοίξει ο Διάλογος Εικόνας.ΧÏώμα Ï€Ïοσκηνίου πλέγματοςΗ οÏιζόντια ανάλυση της εικόνας.Η κατακόÏυφη ανάλυση της εικόνας.ΘέμαΦάκελοι ΘεμάτωνΘέματαΥπάÏχουν %d εικόνες με αλλαγές που δεν έχουν αποθηκευθεί:Δεν υπάÏχουν αÏκετά στÏώματα για συγχώνευση με το επόμενο.ΥπάÏχει μια εικόνα με αλλαγές που δεν έχουν αποθηκευθεί:Αυτό το Ï€ÏόγÏαμμα είναι ελεÏθεÏο λογισμικό (free software); μποÏείτε να το αναδιανείμετε ή/και Ï„Ïοποποιήσετε σÏμφωνα με τις συνθήκες της δημόσιας άδειας χÏήσης της GNU (GNU General Public License), όπως εκδόθηκε από το Free Software Foundation (ΊδÏυμα ΕλεÏθεÏου ΛογισμικοÏ), είτε στην έκδοση 2 της άδειας, ή (κατά την Ï€Ïοτίμησή σας) οποιαδήποτε μεταγενέστεÏη έκδοση.ΚατώφλιΤο Κατώφλι δε λειτουÏγεί σε στÏώματα με δείκτες.Κατώφλι:ΜικÏογÏαφία %d από %dΓέÏσιμο:ΜικÏοσκοπικόΤίτλος & ΚατάστασηΠάÏα πολλά μηνÏματα σφαλμάτων!Επιλογές ΕÏγαλείων_Επιλογές ΕÏγαλείωνΕÏγαλειοθήκηΕÏγαλείαΜετασχηματισμόςΜετασχηματισμός ΚαναλιοÏΜετασχηματισμός ΚατεÏθυνσηςΜετασχηματισμός ΣτÏώματοςΜετασχηματισμόςΜετασχηματισμός...ΜεταφÏάστηκε από_ΤÏπος διαφάνειας:Φυσικό ΧÏώμαΤÏποςΤÏπος %sΑδυναμία Ï€Ïοσθήκης μάσκας στÏωμάτων Î±Ï†Î¿Ï Ï„Î¿ στÏώμα έχει ήδη μία.ΑκÏÏωση ενέÏγειαςΜονάδεςΆγνωστοΆγνωστος Ï„Ïπος αÏχείουΕκφόÏτωσηΧωÏίς όνομαΑνώνυμοΧÏήση _πεÏιηγητή ιστοσελίδων στη θέση τουΔιεπαφή ΧÏήστηΒοηθητικό παÏάθυÏοΤιμήΗ έκδοση %s Ï€ÏοέÏχεται από τουςΈκδοση:ΚατακόÏυφοΚατακόÏυφη μετάθεση Ï€Ïώτης γÏαμμής πλέγματος· μποÏεί να είναι και αÏνητικός αÏιθμός.ΚατακόÏυφη απόσταση γÏαμμών πλέγματος.ΠÏοβολήΠÏοβολή ως _ΠλέγμαΠÏοβολή ως _ΛίσταΠÏοβολή ως πλέγμαΠÏοβολή ως λίσταΠÏοειδοποίηση: Αποτυχία αποθήκευσης δεδομένων: - -%sΠεÏιηγητής ΙστοσελίδωνΠεÏιηγητής ιστοσελίδωνΚαλώς ήÏθατε -Εγκατάσταση ΧÏήστη για το GIMP %d.%dΌταν είναι ενεÏγοποιημένο, το GIMP θα εμφανίζει στα Î¼ÎµÎ½Î¿Ï Î¼Î½Î·Î¼Î¿Î½Î¹ÎºÎ¿ÏÏ‚ χαÏακτήÏες.Όταν είναι ενεÏγοποιημένο, τα Î¼ÎµÎ½Î¿Ï Î¼Ï€Î¿ÏοÏν να αποσπαστοÏν.Εάν έχει επιλεγεί, πατώντας το πλήκτÏο F1 ανοίγει το παÏάθυÏο βοηθείας.Όταν είναι ενεÏγοποιημένο, μποÏείτε να αλλάξετε τα πλήκτÏα συντόμευσης για τις επιλογές του Î¼ÎµÎ½Î¿Ï Î¼Îµ την πληκτÏολόγηση ενός ÏƒÏ…Î½Î´Ï…Î±ÏƒÎ¼Î¿Ï Ï€Î»Î®ÎºÏ„Ïων τη στιγμή που το στοιχείο στο Î¼ÎµÎ½Î¿Ï Î­Ï‡ÎµÎ¹ επισημανθεί.ΛευκόΠλάτοςΠλάτος:ΔιαχείÏιση ΠαÏαθÏÏωνΘέσεις ΠαÏαθÏÏωνΧΣφάλμα XCF: βÏέθηκε μη υποστηÏιζόμενη έκδοση αÏχείου XCF %dΨΚίτÏινοΜεγέθυνση 1:1Μεγένθυνση όλωνΜεγέθυνση _Όλων_Μεγέθυνση_ΣμίκÏυνσηΜεγέθυνσηΣμίκÏυνσηΜεγέθυνση:[ βασική Εικόνα ]_ΠεÏί_Λήψη_ΠÏοσθήκη ΚαÏτέλας_Ειδικές Επιλογές_ΑεÏογÏάφος_Όλα_ΑυτόματοΧÏώμα _παÏασκηνίου:_Πινέλο:_Κατά ΧÏώμα_Κανάλια_ΚαθαÏισμός Σφαλμάτων_Κλείσιμο_Κλείσιμο ΚαÏτέλας_ΣÏννεφα_ΧÏώματαΒοήθεια Κατά _ΠεÏιεχόμενο_ΑντιγÏαφή_ΠÏοεπιλεγμένα ΧÏώματα_ΔιαγÏαφή Πινέλου_ΔιαγÏαφή ΚαναλιοÏ_ΔιαγÏαφή ΧÏώματος_ΔιαγÏαφή Εικόνας_ΔιαγÏαφή Παλέττας_ΔιαγÏαφή Τμήματος_Απόσπαση ΚαÏτέλαςΚατάσταση _Συσκευής_Διάλογοι_ΔημιουÏγία αντιγÏάφου_ΕπεξεÏγασία_ΕπεξεÏγασία Πινέλου..._ΕπεξεÏγασία ΧÏώματος...ΤεÏ_άστιο_Ισοστάθμιση_ΑÏχείο_Γέμισμα με:_ΓÏαμματοσειÏά_ΓÏαμματοσειÏέςΧÏώμα Ï€Ïοσ_κηνίου:_Γιγαντιαίο_Βοήθεια_ΟÏιζόντια:_ΠελώÏιο_Εικονίδιο_Εικονίδιο:_Εικόνα_Εικόνες_Εισαγωγή_Εισαγωγή ΠαλέτταςΜε_γάλο_ΓÏαμμικό_ΧειÏωνακτικά_Μέγιστος αÏιθμός χÏωμάτων:Με_σαίο_ΜεταφοÏά των Ïυθμίσεων χÏήστη από το GIMP 2.0_Κατάσταση_Όνομα:_ΦÏση_Îέο Πινέλο_Îέο Κανάλι_Îέο Κανάλι...Îέα Παλέττα_Îέο ΠÏότυπο..._Îέα ΠÏοβολή_Îέο..._ΘόÏυβος_Κανένα_Offset..._Άνοιγμα Εικόνας_Άνοιγμα..._Παλέττα_Επικόλληση_ΠÏοτιμήσεις_ΠÏοεπισκόπησηΜέγεθος _ΠÏοεπισκόπησης_ΙδιότητεςΈ_ξοδος_RGB_Ανανέωση Πινέλων_Αντικατάσταση_Αποθήκευση_Αποθήκευση συντομεÏσεων πληκτÏολογίου στην έξοδο_Αποθήκευση θέσεων παÏαθÏÏου στην έξοδο_Επιλογή_Επιλογή_ΜικÏόΣτυλ _ΚαÏτέλας_ΠÏότυπο:_ΠÏότυπα_Κείμενο_Συμβουλή της ΗμέÏας_ΕÏγαλεία_ΚατακόÏυφα:_ΠÏοβολήΙσοÏοπία _ΛευκοÏ_Πλάτος:_Αναδίπλωση γÏÏω_Χ ανάλυση:_Χ:_Xtns_Ψ ανάλυση:_Ψ:_Μεγέθυνση_Μεγέθυνση (%s)χÏώματααντιγÏαφήdpiενώ αναμενόταν 'yes' ή 'no' για λογική παÏάμετÏο %s, βÏέθηκε '%s'μοιÏαίο συντακτικό σφάλμααπόχÏωση του γκÏιίντσαίντσεςκαταλόγουμη αποδεκτή συμβολοσειÏά UTF-8άκυÏη τιμή '%ld' για την παÏάμετÏο %sάκυÏη τιμή '%s' για την παÏάμετÏο %sχιλιοστόχιλιοστάλεπτόποσοστόεικονοστοιχείοεικονοστοιχείαεικονοστοιχεία/%aεικονοστοιχεία/%sστιγμήστιγμέςδευτεÏόλεπτοη τιμή για την παÏάμετÏο %s δεν είναι έγκυÏη συμβολοσειÏά UTF-8κατά την επεξεÏγασία της παÏαμέτÏου '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/en_CA.gmo gimp-2.2.9/po/en_CA.gmo --- gimp-2.2.8/po/en_CA.gmo 2005-01-22 17:33:14.000000000 +0100 +++ gimp-2.2.9/po/en_CA.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,490 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·@¸A¹&W¹k~¹Gê¹92ºGlºA´ºNöºiE»<¯»kì»@X¼2™¼;̼R½O[½2«½9Þ½-¾9F¾;€¾7¼¾ ô¾þ¾ -¿ ¿ -¿ -%¿ 0¿<¿L¿ -[¿f¿i¿y¿ -‘¿œ¿¤¿¬¿È¿â¿ø¿0ÿ¿0ÀAÀTÀ]ÀeÀ -|À‡ÀŽÀ–ÀžÀ ­À »À ÇÀ -ÕÀ -àÀ ëÀ øÀÁ Á Á,Á 1Á =ÁKJÁ…–Á.Â1KÂ!}Ÿ±¸ÂÇÂÎÂêÂùÂÃÃ'à -9à DÃPà hà -tÃÔà §Ã±ÃÀà -ÉÃÔÃãÃöÃÄ!Ä4ÄCÄ,YÄ6†Ä½ÄÐÄíÄÅÅ+ÅJÅ`ÅuÅŠÅ©Å¿ÅÔÅ#éÅ Æ'Æ -CÆNÆ_ÆgÆyÆ‚Æ¢Æ¶Æ ¾Æ ÈÆ ÕÆßÆïÆ1È36ÈjÈ~È„È—ÈžÈ -,É7ÉQÉgÉÉˆÉ —É -¤É¯ÉÀÉÒÉâÉAóÉJ5Ê€Ê<“Ê ÐÊ ÞÊìÊüÊË-Ë=ËEËJË dËpˆ˙ˢ˹ËËËÜËëËÌ - ÌÌ)ÌCÌZÌ&pÌ$—̼ÌÃÌ ÉÌ ÓÌáÌèÌÍ ÍÍ)Í"1Í TÍ`ÍeÍkÍpÍ -€Í‹ÍšÍ«Í¿Í7ÓÍ Î Î Î,Î5Î<Î DÎ QÎ]Î eÎrÎwÎ |Îm‰Î÷Î üÎ -Ï Ï#Ï,Ï IÏWÏgÏ nÏC{Ï7¿Ï=÷Ï@5Ð7vÐd®ÐÑ1Ñ3GÑ{Ñ<Ñ#ÌÑ!ðÑÒ/Ò IÒUÒ kÒ uÒÒ‡Ò Ò·ÒÐÒèÒúÒ Ó)ÓGÓeÓ,|Ó©ÓÃÓËÓ ÞÓìÓ Ô-Ô!<Ô^ÔyÔÔ¤Ô¹ÔÂÔ ËÔ ÙÔæÔúÔÕÕ ÕÕ/Õ >ÕKÕ.aÕ5Õ5ÆÕ7üÕ84Ö)mÖ,—ÖÄÖàÖøÖ2× H×iׄ×O ×Að×%2Ø&XØ4Ø1´Ø#æØ -ÙÙ 4Ù @ÙJÙbÙsÙyقّ١٠-°Ù»ÙÄÙËÙÚÙ ñÙÿÙÚ,Ú2?Ú rÚ ÚÚ -•Ú  Ú ®Ú¼ÚØÚ öÚ-Û.ÛBÛ VÛ`ÛqÛ€Û ‰Û“Û -›Û ¦Û °Û$ÑÛöÛ ÜÜ-Ü JÜk܅ܣܶÜÆÜ"ÛÜþÜÝ #Ý1ÝAÝ JÝVÝ^ÝàÝéÝúÝ ÞÞ*Þ CÞdÞ yÞ"‡Þ"ªÞÍÞæÞïÞ -ß ßß -9ß)Dßnß,ˆßµß!Ïß#ñß#à!9à%[àà. àÏà Öàâàóàáá-á#Cá-gá•á%«áÑáçáýáâ-âEâ JâXâ -râ -}â -ˆâ“â«â²âÁâ Æâ Ôâáâñâãã#ã2ã 9ãGã -Zãeã-lãšã ¡ã¯ã¿ã×ã Ûãåãêãðãää(ä9äLä\äoä†ä ˜ä¤ä ´ä Àä ÎäÛäâäèä%îä!å 6åCåVå&nå•å ©å·åÆåÙå ëåùåæ æ%æ 4æBæ Ræ_æqæ €æŒæ›æ³æÎæëæýæ ç -%ç -0ç.;ç jçvç }ç‹ç “çç¬ç -´ç ¿çÍçàçóç èè'è;è Nè\èvè è‰è ™è£èªè:Èè?é8Cé |éˆé‘é£é ´é¾é -ÍéØéÞé -ôé ÿé ê ê -&ê 1ê =ê -Gê Rê^ê gêtêˆê —ê>¥ê äêëë'ë:ëJë\ëkë}ëë­ë ½ëÊë Ùëæëëëìì1ìFì\ì lìvìŠìŸìºì Ñì -ßìêì íí 'í5í KíXí mízíŠí¥í ´í Âí -ÎíÙí*êíîî!0îRî.iî˜î´î#½î"áîï!ï&@ïgï }ï‰ïï,¦ï#Óï÷ïþï ðð.ð'Hðpð'ðµðÒðèðñFñTeñºñÁñ ÇñÔñêñ ýñò 5ò?ò -Vòaòpò ò®ò½òÌòÞòðò öòó ó ó!ó7ó(@ó$ióŽó0”ó=Åó6ô1:ô<lô?©ôAéô7+õ9cõcõ0ö92öBlö=¯öfíö>T÷C“÷J×÷g"ø Šø–ø¦ø ¸øÆøÛøàøôø ù ùù ,ù 9ù GùUùjùù–ùªù¿ùÓùæùøùúú4úQúmú‹ú’ú›úºúÕúíúûû )û7û -Jû Uûcû hû -uû €ûŠû šû¨û»û -Ìû×ûóû ûûüü 'ü5üMüiü…ü™ü)²üÜüâüéü ñüþüý ý -ýOýmý -ýšŠý%þ7þQþhþ -~þ ‰þ •þ¡þ ªþ.¶þåþøþ ÿ -ÿ %ÿ 3ÿ ?ÿLÿQÿ `ÿmÿ …ÿ ’ÿŸÿ°ÿÄÿÛÿuêÿ`ÌrÅ?c izvñ÷sÿsŒ£¬¾ÍÖæû' (4 ]Bi ¬ ¶À Ï Ýé îøþ - )8JPhy}—´ÉØá÷  -# ,6=E J Wc~•¥ -ªµÊáHé -2 =GW -_Hj!³BÕ2+^qv {ˆŸ -¯º ¿ Ë`×™8 CÒ 1 -0H -y -  - Œ -™ - -« - -¶ -Á -Ø -è -ù - +  C (Q  -z  -… H  -Ù  ä  -ñ ü      - : P e  t   ”  œ  © µ ½ Û â ê ù   • ¡ ¶ Ð æ   & 4 AMO36Ñ"- PZr† •$ŸÄß ô  #(D+m)™*Ã!î/"RYh*y¤µ'Òú -# -5@Pfvˆ— ¯ÈÛ ò.?HWpƒ š»Ö çñ/!Gi…— ž«ÂÓè -/]fv‰ ¨²¸È Øä3ê/GW o -| ‡ “ ¾Ýý*; P^u |ˆ²Á@É --? R_ d r ~‹© °¼ Á ÍÙñ/C W a my ž¶ ÏÛ -ñü '5 MY -oz˜ ³¸ÀÉÑãû 4K -S$^ƒœ¶ÌÒÚ÷+@H O ] -i t ¤¸Ñê ÿ  )<W"n‘š° ÐÞäéï%,?Sb q} … “Ÿ² · ÄÑ -é ô -    & 5  E  O Y r  ˜ ® Ì è ú ! -! !*!=!W!\! -b! m!y!Œ! !´! È! Ò!Ü!å! ö! " ""6"E"X" k" -x" ƒ"" ¨" µ"Á" Û" ç" ó",ÿ",#!?#a#u#Œ#)©# Ó#à# ø# $$$&$-$ >$ J$X$Bk$A®$ð$%#% 5%?%F%U% e%r%„%™%¡%„©%.&=&O&W&`& -e&p& „&’&©& »&È&!Ü& þ&$'#D'#h'Œ'¤'½' Õ' ß' é'ó'(( (((V0(+‡( ³((½(æ("ì() %) 1)=)W)%o) -•)  )ª)²)Á)Õ) -å)ð) ÿ) * *$* 8* B*P*V*i* ~* Š* –*¤*&¾*,å* ++$+ -4+ -?+J+g+…+¤+¼+Ï+4á+,(, -.,9,A, -Q, \,i,x, ,,—,ž, »,Ç, Ü,!è, -- -'- =-I-Z-v- †--¡- ³-À-Ç-;Ï-? .K.Z.b.v.†.£.¡À.4b/—/ /-¨/ Ö0à0é0 -ù0 1$131-F1 t1€1•1 ª1´1¼1Ó1Ü1 -å1 ð1¥ü1¢2¶2Ê2 Ó2á2ê2ò2ø23 -&3 -13<3R3 -b3 m3 w3…3‰3£3 -´3 ¿3!É3ë3 ï3ý34 4 .4;4W4^4 f4t4‰4 Ÿ4«4 -¾4É4Û4 î4ü4 55 -05;5M5i5†5‹5 ‘5!ž5À5!Þ5#6$6 :6 -G69R6UŒ6=â6< 7=]7›7"¡7?Ä788 '83878<8)A8-k8™8©8»8Ì8 -Ý8è8þ89K'9 s9€99¨9 Â9 Ï9Ü9÷9 : :+:C:]:m:;‡:Ã:Ý: ì: ù:;; 1; =;K; [; i; v;‚;Š; ¨;²;Í;ê;ü;<#<4<G<X<k<†<˜<­<+Ä<ð<=(=/= >= K= X=d= v= ƒ==#¦= Ê=Ö= è=ô= > >68>o>Œ>”>›> °>7½>õ>?)?9?@?W?m? |? ‰?•?§? »?È? æ?ò?@ @ -@ -@*@ 2@@@V@ e@s@ -y@„@‰@ ž@ª@ -Á@Ì@ì@ AA'ABA^A yA…A•A®A¾AÒA4çAB9BLBeB‚B•B¤B.¾BGíB5C FC TCaC yC ‡C•C°C ¶C ÄC ÐC -ÜCçC øC -DDD -D:DWD_DžsDNE -aElEuE|EŽE –E¢E´EÐEæE#F$FBF VFbFtFF¦F#ÀFäFG G#G6GSGjG$…GªGÉG ÞGèGøGH&H!>H`H|HŽH -•H HµH ÆHÔHóHI%I9IQI gIsIŠI¡I¸IØIïI JJ)J …_…f…n…w…•…µ…3Î…#†&†?†R†b†|†’†¡†°†¶† ½†Ɇæ†ï†Fø†?‡ -_‡ -j‡u‡ z‡ ˆ‡ –‡ £‡ °‡ ¾‡!̇!î‡ ˆ ˆ+(ˆMTˆ0¢ˆQÓˆ˜%‰¤¾‰$cŠ5ˆŠP¾ŠG‹-W‹O…ŒjÕŒo@e°jŽ~Žpoqwá<Y?–>Öt‘tŠ‘`ÿ‘‰`’ê’j“1p“¢“¨“¯“Á“Ö“ ç“õ“6÷“p.”Ÿ”¡”¨”4°”%å”È •GÔ•%–XB–U›–Oñ–A—Y—b—k—s— -|— ‡— “—— ¦—°—¹—#Ë—ï— ÷—˜˜˜#˜*˜3˜G˜[˜d˜v˜ ˆ˜’˜ —˜ ¥˜³˜ ʘÔ˜ܘ☠-å˜ð˜™™ >™_™ e™r™y™‚™ ¡™®™ -¶™Á™Ó™ Ö™ â™ ì™ú™šš -š'š /š=š Fšgš pš~š„š“š²š ÁšÍš -Õšàšóš ››!›1›@› T› b›p› €›› ›¶›Æ›Ø› é› õ›œ -œœ,œ Fœ Pœ -]œhœnœ}œ™œ©œ»œÕœæœÿœ" 2 S ]g -oz €Œ¡° ¶ÄÔÛáè ü ž ž ž ž -)ž -4ž?žXžaž ižsž yž†žŒž’ž˜žŸž¦ž®ž¶ž Éž Õžâžüž ŸŸŸŸ'ŸAŸ PŸ -qŸ|ŸŸ ŸŸ «Ÿ·Ÿ¿ŸÇŸÞŸ íŸ úŸ      1 M V ^ q ‡  §  ´  È Ø Þ å  -í  ø ¡ ¡ #¡ -1¡ <¡ J¡ W¡ a¡ n¡{¡ Œ¡–¡ ž¡¨¡¯¡ -µ¡À¡ É¡Õ¡Þ¡ î¡ û¡¢¢ ¢%¢5¢<¢ E¢ R¢ `¢m¢ v¢ „¢’¢ ¡¢­¢À¢Æ¢É¢΢Ö¢ å¢ ò¢ þ¢ £ £ 3£@£F£O£`£s£…£)—£Á£É£Ò£è£¤¤4,¤1a¤/“¤äÙ¤ é¤ -¥ ¥¥%¥:¥#K¥ o¥¥¯¥¶¥Æ¥"Ö¥ù¥ -¦ ¦¦/¦6¦?¦U¦ f¦r¦y¦¦‘¦£¦¸¦ -Ѧ -ܦ -ç¦ò¦ ø¦§ §§"§)§ -I§T§e§k§ -t§§…§Ž§“§¨§¾§ͧ Õ§â§ñ§õ§û§þ§ ¨¨ -¨"¨*¨/¨53¨i¨ {¨…¨•¨š¨¡¨ ©¨·¨!̨ î¨ ©0© -P© [©g©n©r©z©©…©‹© ’© œ©¦©¬©³© º©!È©.ꩪ[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-28 14:29-0400 -Last-Translator: Adam Weinberger -Language-Team: English/Canada -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialogue box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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 Colour to ColourmapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd colour from BGAdd colour from FGAdd layer maskAdd text to the imageAdd the current colour to the colour historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Colour BalanceAdjust Colour CurvesAdjust Colour LevelsAdjust brightness and contrastAdjust colour balanceAdjust colour curvesAdjust colour levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialogue (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG colour fillB_rightness-Contrast...B_uffersBackgroundBackground colourBackground colour set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColoursBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olour PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colours.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Centre X:Centre Y:CentredChange Background ColourChange Colourmap entryChange Foreground ColourChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colourChange grid foreground colourChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colourChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColou_rsColourColour BalanceColour Display FiltersColour PickerColour Picker InformationColour _Balance...Colour _dithering:Colour balance operates only on RGB colour layers.Colour eraseColour index:Colour:Colour_mapColour_space:Colouri_ze...Colouring _Type for SegmentColouring _Type for SelectionColourizeColourize operates only on RGB colour layers.Colourize the ImageColourize the imageColourmapColourmap EditorColourmap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Colour Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColoursConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colourCustom gradientCustom p_adding colour:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colourDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colourDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB colour layers.DescriptionDesignDevice StatusDevicesDialoguesDialogues MenuDiamondDifferenceDirect ColourDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColourEdit Colour Palette EntryEdit Colourmap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColourEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColourEdit TemplateEdit brushEdit channel attributesEdit colourEdit colourmap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sError writing to '%s': %sError writing to temporary file for '%s': %s -No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG colour fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColourFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogueFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar coloursFill transparent areasFill whole selectionFill with BG ColourFill with B_G ColourFill with FG ColourFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColourFill with _background colourFill with a colour gradientFill with a colour or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColoursFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced colour bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colours. The black and white squares reset colours. The arrows swap colours. Double click to open the colour selection dialogue.Foreground colourForeground colour set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colours allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColourGradient Segment's Right Endpoint ColourGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser did not startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB colour layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColourIndexed Colour ConversionIndexed colour layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colourmap; might be useful on 8-bit (256 colours) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Colour...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColourLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colourLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Colour Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _file size for thumbnailing:Maximum _new image size:Maximum colour differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMitreModeMode:Modify Selected ColourModify Selected Range's Colour LevelsModify all coloursModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colours:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColourNew Channel OptionsNew Colour from _BGNew Colour from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New colour from BGNew colour from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogueOpen the brush selection dialogueOpen the font selection dialogueOpen the gradient selection dialogueOpen the palette selection dialogueOpen the pattern selection dialogueOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -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 colours 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 Colours)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 ColourPurpose: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 ColourRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colourR_eset rangeR_ight Endpoint's Colour...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-_centre Midpoints in SelectionRe-_centre 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 coloursReduce image to two colours using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, colour, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColourRight 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 ColoursSa_ve Right Colour 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 dialogues 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 dialogue (currently %s).Scaling the image to the choosen size will shrink away some layers completely.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 ColourSelect ColourSelect Controller Event ActionSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Colour to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Colour...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColourSelect contiguous regionsSelect custom canvas padding colourSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colourSelect 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 ColourSet Channel ColourSet Channel OpacitySet ColourmapSet Custom Canvas Padding ColourSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colourSet foreground colourSet 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 colour used if the padding mode is set to custom colour.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 dialogues.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 dialogue. Note that GIMP cannot 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 dialogue 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 colourShow _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 ColourStatic 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 ColourText 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 Dialogue.The active gradient. -Click to open the Gradient Dialogue.The active image. -Click to open the Image Dialogue.The active pattern. -Click to open the Pattern Dialogue.The background colour of the grid; only used in double dashed line style.The batch interpreter '%s' is not available; batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground colour of the grid.The gimprc is used to store personal preferences that affect GIMP's default behaviour. 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 likely, 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 dialogue windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogues at the saved position.The thumbnail in the Open dialogue 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, millimetres, 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 Licence for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, 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 ColourTypeType %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 colour 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 dialogue automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogues will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB colour layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colourmaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogues here.You should have received a copy of the GNU General Public Licence along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviourZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Colour from BG_Add Colour from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Colour_Background colour:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Colour_By Colour Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Colour Tools_Colours_Configure Colour and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Colour_Default Colours_Delete Brush_Delete Buffer_Delete Channel_Delete Colour_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogues_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Colour..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Colour_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground colour:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbour's Right Endpoint_Levels..._Light Check Colour_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Colour From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colours:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mitre limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Colour_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colours from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbour's Left Endpoint_Rotate_Saturation:_Save_Save Left Colour To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colourscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetremillimetresminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:CAdam Weinberger value for token %s is not a valid UTF-8 stringwhile parsing token '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/en_GB.gmo gimp-2.2.9/po/en_GB.gmo --- gimp-2.2.8/po/en_GB.gmo 2005-02-17 15:52:11.000000000 +0100 +++ gimp-2.2.9/po/en_GB.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,489 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·/¸0¹&F¹km¹GÙ¹9!ºG[ºA£ºNåºi4»<ž»kÛ»@G¼2ˆ¼;»¼R÷¼OJ½2š½9ͽ-¾95¾;o¾7«¾ ã¾í¾ -ô¾ ÿ¾ - ¿ -¿ ¿+¿;¿ -J¿U¿X¿h¿ -€¿‹¿“¿›¿·¿Ñ¿ç¿0î¿À0ÀCÀLÀTÀ -kÀvÀ}À…ÀÀ œÀ ªÀ ¶À -ÄÀ -ÏÀ ÚÀ çÀóÀ Á ÁÁ Á ,ÁK9Á……Á. Â1:Â!lŽ §¶½ÂÙÂèÂÿÂÃà -(à 3Ã?à Wà -cÃnÃà –àïà -¸ÃÃÃÒÃåÃýÃÄ%Ä4Ä,JÄ6wÄ®ÄÁÄÞÄöÄÿÄÅ;ÅQÅfÅ{ŚŰÅÅÅ#ÚÅþÅÆ -4Æ?ÆPÆXÆjÆsÆ“Æ§Æ ¯Æ ¹Æ ÆÆÐÆàÆ1õÇ3'È[ÈoÈuȈÈÈ -É(ÉBÉXÉrÉyÉ ˆÉ -•É É±ÉÃÉÓÉAäÉJ&ÊqÊ<„Ê ÁÊ ÏÊÝÊíÊËË.Ë6Ë;Ë UËaËwˊ˓˪˼ËÍËÜËôË -ýËÌÌ4ÌKÌ&aÌ$ˆÌ­Ì´Ì ºÌ ÄÌÒÌÙÌóÌúÌÍÍ""Í EÍQÍVÍ\ÍaÍ -qÍ|͋͜ͰÍ7ÄÍüÍ Î ÎÎ&Î-Î 5Î BÎNÎ VÎcÎhÎ mÎmzÎèÎ íÎûÎ -ÏÏÏ :ÏHÏXÏ _ÏClÏ7°Ï=èÏ@&Ð6gÐdžÐÑ!Ñ37ÑkÑ<Ñ#¼Ñ!àÑÒÒ 9ÒEÒ [Ò eÒoÒwÒÒ§ÒÀÒØÒêÒüÒÓ7ÓUÓ,lÓ™Ó³Ó»Ó ÎÓÜÓ üÓ Ô!+ÔMÔhÔ~Ô“Ô¨Ô±Ô ºÔ ÈÔÕÔéÔðÔ÷Ô ýÔ ÕÕ -Õ:Õ.PÕ5Õ5µÕ7ëÕ8#Ö)\Ö,†Ö³ÖÏÖçÖ2× 7×X×s×O×Aß×%!Ø&GØ4nØ1£Ø#ÕØ ùØÙ #Ù /Ù9ÙQÙbÙhÙqÙ€ÙÙ -ŸÙªÙ³ÙºÙÉÙ àÙîÙÚÚ2.Ú aÚ nÚ|Ú -„Ú Ú Ú«ÚÇÚ äÚ,îÚÛ/Û CÛMÛ^ÛmÛ vÛ€Û -ˆÛ “Û Û$¾ÛãÛöÛÜÜ 7ÜXÜrÜܣܳÜ"ÈÜëÜÝ ÝÝ.Ý 7ÝCÝKÝÍÝÖÝçÝ ïÝüÝÞ 0ÞQÞ fÞ"tÞ"—ÞºÞÓÞÜÞ -îÞ ùÞß -&ß)1ß[ß,uߢß!¼ß#Þß#à!&à%Hànà.à¼à ÃàÏàààôàáá#0á-Tá‚á%˜á¾áÔáêáââ2â 7âEâ -_â -jâ -uâ€â˜âŸâ®â ³â ÁâÎâÞâîâããã &ã4ã -GãRã-Yã‡ã Žãœã¬ãÄã ÈãÒã×ãÝãîãää&ä9äIä\äsä …ä‘ä ¡ä ­ä »äÈäÏäÕä%Ûä!å #å0åCå&[å‚å –å¤å³åÆå Øåæåõå ææ !æ/æ ?æLæ^æ mæyæˆæ æ»æØæêæùæ -ç -ç.(ç Wçcç jçxç €çŠç™ç -¡ç ¬çºçÍçàçùçèè(è ;èIècè lèvè †èè—è:µè?ðè80é iéué~éé ¡é«é -ºéÅéËé -áé ìé úé ê -ê ê *ê -4ê ?êKê Têaêuê „ê>’ê Ñêòêëë'ë7ëIëXëjëŠëšë ªë·ë ÆëÓëØëðëìì3ìIì YìcìwìŒì§ì ¾ì -Ìì×ì ïìûì í"í 8íEí Zígíwí’í ¡í ¯í -»íÆí*×íî î!î?î.Vî…î¡î#ªî"Îîñîï&-ïTï jïvïŠï,“ï#Àïäïëï úïðð'5ð]ð'zð¢ð¿ðÕðñðF ñTRñ§ñ®ñ ´ñÁñ×ñ êñ ò "ò,ò -CòNò]ò zò›òªò¹òËòÝò ãòðòùò óó$ó(-ó$Vó{ó0ó=²ó6ðó1'ô<Yô?–ôAÖô7õ9PõcŠõ0îõ9öBYö=œöfÚö>A÷C€÷JÄ÷gø wøƒø“ø ¥ø³øÈøÍøáø ñø ûøù ù &ù 4ùBùWùnùƒù—ù¬ùÀùÓùåùüù ú!ú>úZúxúúˆú§úÂúÚúîúû û$û -7û BûPû Uû -bû mûwû ‡û•û¨û -¹ûÄûàû èûôûü ü"ü:üVürü†ü(ŸüÈüÎüÕü Ýüêüòüøü -þüO ýYý -kýšvýþ#þ=þTþ -jþ uþ þþ –þ.¢þÑþäþ÷þ -ÿ ÿ ÿ +ÿ8ÿ=ÿ LÿYÿ qÿ ~ÿ‹ÿœÿ°ÿÇÿuÖÿLÌ^Å+cñ UzbÝãsë_x˜ª¹ÂÒç'ø(  IBU ˜ ¢¬ » ÉÕ Úäêñö $6<Teiƒ²ÁÊà ÷ -  &. 3 @Lg~Ž -“ž³ÊHÒ - &0@ -HHS!œB¾2GZ_ dqxˆ -˜£ ¨ ´`À™! C» 1ÿ 01 -b - h - u -‚ - -” - -Ÿ -ª -Á -Ñ -â -   , (:  -c  -n Hy  -  Í  -Ú å  ì ø    # 9 N  ]  j x }  …  ’ ž ¦ Ä Ë Ó â ü  ~ Š Ÿ ¹ Ï ë  ï ý    *M83†6ºñ" 9C[o ~$ˆ­È Ý ë (-+V)‚*¬!×ù/ ;BQ*bž'»ãó  -)9O_q€‰˜±Ä Ûü(1@Yl ƒ¤¿ ÐÚê!0Rn€ ‡”«¼Ñð -FO_rv ‘›¡± ÁÍ3Ó0@ X -e p |‰§Ææÿ$ 9G^ eq†›ª@²ó-ú( ;H M [ gt’ ™¥ ª ¶ÂÚù, @ J Vb y‡Ÿ ¸Ä -Úåú  6B -Xcx‰œ¡©²ºÌä ú4 -<#Gk„ž´ºÂß+ü(0 7 E -Q \ iwŒ ¹Ò çô $?"Vy‚˜ ¸ÆÌÑ×%î';J Ye m {‡š Ÿ ¬¹ -Ñ Ü -éô     -  7 A Z i € – ´ Ð â é ò  !!%!?!D! -J! U!a!t!ˆ!œ! °! º!Ä!Í! Þ! ë! õ!""-"@" S" -`" k"u" " "©" Ã" Ï" Û",ç"#!'#I#]#t#)‘# »#È# à# î#ú#ÿ#$$ &$ 2$@$BS$A–$Ø$ö$ % %'%.%=% M%Z%l%%‰%„‘%&%&7&?&H& -M&X& l&z&‘& £&°&!Ä& æ&$'#,'#P't'Œ'¥' ½' Ç' Ñ'Û'ë'ú' ((V(+o( ›((¥(Î("Ô(÷( ) )%)?)%W) -}) ˆ)’)š)©)½) -Í)Ø) ç)õ) þ) * * **8*>*Q* f* r* ~*Œ*&¦*,Í* ú*+ + -+ -'+2+O+m+Œ+¤+·+4É+þ+, -,!,), -9, D,Q,`, i,w,,†, £,¯, Ä,!Ð,ò, -- %-1-B-^- n-x-‰- ›-¨-¯-;·-?ó-3.B.J.^.n.‹.¡¨.4J//ˆ/-/ ¾0È0Ñ0 -á0 ì0$ö01-.1 \1h1}1 ’1œ1¤1»1Ä1 -Í1 Ø1¥ä1Š2ž2²2 »2É2Ò2Ú2à2ö2 -3 -3$3:3 -J3 U3 _3m3q3‹3 -œ3 §3!±3Ó3 ×3å3ù3 4 4#4?4F4 N4\4q4 ‡4“4 -¦4±4Ã4 Ö4ä4 ù45 -5#555Q5n5s5 y5!†5¨5!Æ5#è5 6 "6 -/69:6Ut6=Ê6<7=E7ƒ7"‰7?¬7ì7þ7 888$8))8-S88‘8£8´8 -Å8Ð8æ8û8K9 [9h9w99 ª9 ·9Ä9ß9 ù9 ::+:E:U:;o:«:Å: Ô: á:í:; ; %;3; C; Q; ^;j;r; ;š;µ;Ò;ä;ø; <</<@<S<n<€<•<+¬<Ø<ð<== &= 3= @=L= ^= k=w=#Ž= ²=¾= Ð=Ü=ñ=>6 >W>t>|>ƒ> ˜>7¥>Ý>û>?!?(???U? d? q?}?? £?°? Î?Ú?ï?õ? -ü? -@@ @'@=@ L@Z@ -`@k@p@ …@‘@ -¨@³@Ó@ ð@ü@A)AEA `AlA|A•A¥A¹A4ÎAB B3BLBiB|B‹B.¥BGÔBC -C ;CHC `C nC|C—C C «C ·C -ÃCÎC ßC -ëCöCD D!D>DFDžZDNùD -HESE\EcEuE }E‰E›E·EÍE#çE F)F =FIFwFF#§FËFéF ýF -GG:GQG$lG‘G°G ÅGÏGßGùG H!%HGHcHuH -|H‡HœH ­H»HÚHõH I I8I NIZIqIˆIŸI¿IÖI ïIýIJ #J0JEJWJlJ…J˜J¯J -ÁJÌJÝJ#÷JK5K OK[KoKŠK£K¼K=ÌK6 -LSALJ•LàLùL M M)M:MPM_MyMˆM¦M ¸MÄMÓMèMûM NN5NHN \N jN‹N¡N¼NÖNñN O O)O?OUOeOtO†O´™O)NPPxPÉPKÝQ=)RƒgR*ëR¤S¢»S3^TV’T?éT`)U2ŠU‚½U¯@VðW4óX/(YºXY ZZ'Z-Z4ZEZVZiZqZZ“Z™Z¬Z¿ZÜZ ñZ ýZ -[;[O[ _[l[|[ [š[ ¯[½[Í[#á[ \\ '\ 5\&B\i\ -|\‡\š\ª\Ä\"Ö\ù\]!]1]B]a]w]‡]œ]¬]»] Ì]Ù]ò] ^^^'^<^+B^n^t^…^ Œ^™^  ^­^ ½^ -Ë^Ö^Ü^ã^ë^ ô^ _8 _vF_½_Ä_Ü_ô_ ü_ `` `!<`^`v`’`­`Æ`ã`aaaa&a:aTa [a ia ua ƒa‘aša£a ¬a¹aÉa Øaäa õa b b*b!9b[bob(ˆb±b#ºb Þb ìbùbc -c c c(c7cKcfc kc wc -ƒc Žcœc¬cKµc3d95d3od7£dIÛdA%eŠge;òe".fÂQf gæ5g h¬)iÖi*VjBkæÄk«lÊl‚LmÏm Õmãm)êm5n¯Jn1ún0,o0]o1Žo(ÀoCéo€-pS®p,q2/q bqAƒrAÅr*s«2síÞs ÌtÎÙu£¨vªLw§÷w§ŸxGy˜JzGãzè+{ï|2}7}NQ}  }-ª} -Ø}ã}ö}~~~$~3~o<~¬~²~Ä~×~ ð~ý~  -7PY an -t< ¼€Ê€ á€ë€ý€!0E_o~’¡»Ë Úçû ‚‚‚%‚3<‚;p‚;¬‚¡è‚ŠƒF‘„ Ø„â„ ç„ ô„……… "…C…J…R…[…y…™…3²…#æ… -†#†6†F†`†v†…†”†š† ¡†­†ʆÓ†F܆#‡ -C‡ -N‡Y‡ ^‡ l‡ z‡ ‡‡ ”‡ ¢‡!°‡!Ò‡ ô‡ ˆ+ ˆK8ˆ0„ˆQµˆ˜‰¤ ‰$EŠ5jŠP ŠGñŠ-9‹OgŒj·Œo"e’jø~cŽpâŽoSwÃ<;?x>¸t÷tl‘`ᑉB’Ì’L“0R“ƒ“‰““¢“·“ È“Ö“6Ø“p”€”‚”‰”4‘”%Æ”Èì”Gµ•%ý•X#–U|–OÒ–"—9—B—K—S— -\— g— s—}— †——™—#«—Ï— ×—å—î—ô—˜ -˜˜'˜;˜D˜V˜ h˜r˜ w˜ …˜“˜ ª˜´˜¼˜˜ -ŘИä˜ÿ˜ ™?™ E™R™Y™b™ ™Ž™ -–™¡™³™ ¶™ ™ ̙ڙî™õ™ -ü™š šš &šGš Pš^šdšsš’š ¡š­š -µšÀšÓš ãšñš››› 3› A›O› _›l››•›¥›·› È› Ô›à› -ï›ú› œ %œ /œ -<œGœMœ\œxœˆœšœ´œÅœÞœïœ  2 <F -NY _k€ •£³ºÀÇ Ûèë ô þ -ž -žž7ž@ž HžRž Xžežkžqžwž~ž…žž•ž ¨ž ´žÁžÛž ãžðž÷žþžŸ Ÿ/Ÿ -OŸZŸnŸ }Ÿ ‰Ÿ•ŸŸ¥Ÿ¼Ÿ ËŸ ØŸäŸ çŸñŸöŸüŸ + 4 < O e  …  ’   ¦ ¶ ¼ à -Ë  Ö ã  ó  ¡ -¡ ¡ (¡ 5¡ ?¡ L¡Y¡ j¡t¡ |¡†¡¡ -“¡ž¡ §¡³¡¼¡ Ì¡ Ù¡å¡î¡ õ¡¢¢¢ #¢ 0¢ >¢K¢ T¢ b¢p¢ ¢‹¢ž¢¤¢§¢¬¢´¢ â Т Ü¢é¢þ¢ ££$£-£>£Q£c£)u£Ÿ£§£°£Æ£Þ£ð£4 -¤1?¤/q¤¡¤·¤Ǥç¤ ï¤ü¤¥¥#(¥ L¥m¥Œ¥“¥£¥"³¥Ö¥ -Þ¥é¥û¥ ¦¦¦2¦ C¦O¦V¦^¦n¦€¦•¦ -®¦ -¹¦ -ĦϦ Õ¦ã¦é¦ù¦ÿ¦§ -&§1§B§H§ -Q§\§b§k§p§…§›§ª§ ²§¿§ΧÒ§اÛ§ê§î§ -ô§ÿ§¨ ¨5¨F¨ X¨b¨r¨w¨~¨ †¨”¨!©¨ ˨ ì¨ © --© 8©D©K©O©W©\©b©h© o© y©ƒ©‰©©—©'©©.Ñ©ª[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.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 1.1.24 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-15 23:44+0000 -PO-Revision-Date: 2005-02-15 23:45+0100 -Last-Translator: David Lodge -Language-Team: English, British -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialogue box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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 Colour to ColourmapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the Layer_Add Colour from BG_Add Colour from FGAdd layer maskAdd text to the imageAdd the current colour to the colour historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Colour BalanceAdjust Colour CurvesAdjust Colour LevelsAdjust brightness and contrastAdjust colour balanceAdjust colour curvesAdjust colour levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAllow enlarging %sAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialogue (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG colour fillB_rightness-Contrast...B_uffersBackgroundBackground colourBackground colour set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColoursBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olour PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 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:Centre X:Centre Y:CentredChange Background ColourChange Colourmap entryChange Foreground ColourChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colourChange grid foreground colourChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel 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 PathColou_rsColourColour BalanceColour Display FiltersColour PickerColour Picker InformationColour _Balance...Colour _dithering:Colour balance operates only on RGB colour layers.Colour eraseColour index:Colour:Colour_mapColour_space:Colouri_se...Colouring _Type for SegmentColouring Type for SelectionColouriseColourise operates only on RGB color layers.Colourise the ImageColourise the imageColourmapColourmap EditorColourmap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Colour Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GreyscaleConvert Image to IndexedConvert Image to Indexed ColoursConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colourCustom gradientCustom p_adding colour:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colourDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colourDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB colour layers.DescriptionDesignDevice StatusDevicesDialoguesDialogues MenuDiamondDifferenceDirect ColourDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColourEdit Colour Palette EntryEdit Colourmap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColourEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColourEdit TemplateEdit brushEdit channel attributesEdit colourEdit colourmap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualiseEqualise does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sError writing to '%s': %sError writing to temporary file for '%s': %s -No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG colour fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColourFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': 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 GREY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogueFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar coloursFill transparent areasFill whole selectionFill with BG ColourFill with B_G ColourFill with FG ColourFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColourFill with _background colourFill with a colour gradientFill with a colour or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColoursFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colours. The black and white squares reset colours. The arrows swap colours. Double click to open the colour selection dialogue.Foreground colourForeground colour set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialise the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colours allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColourGradient Segment's Right Endpoint ColourGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGreyGreyscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_anti-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB colour layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColourIndexed Colour ConversionIndexed colour layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialise Layer Mask to:Initialising Plug-insInitialising plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colourmap; might be useful on 8-bit (256 colours) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Colour...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColourLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colourLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Colour Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum colour differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMitreModeMode:Modify Selected ColourModify Selected Range's Colour LevelsModify all coloursModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colours:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColourNew Channel OptionsNew Colour from _BGNew Colour from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New colour from BGNew colour from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogueOpen the brush selection dialogueOpen the font selection dialogueOpen the gradient selection dialogueOpen the palette selection dialogueOpen the pattern selection dialogueOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -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 colours 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.6fPositionedPosterisePosterise (Reduce Number of Colours)Posterise _levels:Posterise 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 ColourPurpose: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 ColourRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colourR_eset rangeR_ight Endpoint's Colour...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-_centre Midpoints in SelectionRe-_centre 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 coloursReduce image to two colours using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, colour, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColourRight 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 Colour 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 dialogues 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 dialogue (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 ColourSelect ColourSelect Controller Event ActionSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Colour to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Colour...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColourSelect contiguous regionsSelect custom canvas padding colourSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colourSelect 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 ColourSet Channel ColourSet Channel OpacitySet ColourmapSet Custom Canvas Padding ColourSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colourSet foreground colourSet 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 colour used if the padding mode is set to custom colour.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 dialogues.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 dialogue. Note that GIMP cannot 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 ColourStatic GreyStatus & 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 ColourText 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 Dialogue.The active gradient. -Click to open the Gradient Dialogue.The active image. -Click to open the Image Dialogue.The active pattern. -Click to open the Pattern Dialogue.The background colour of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground colour of the grid.The gimprc is used to store personal preferences that affect GIMP's default behaviour. 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 dialogue windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogues at the saved position.The thumbnail in the Open dialogue 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, millimetres, 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 initialisation.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 ColourTypeType %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 colour 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, dialogues will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB 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 colourmaps correctly. -Substituting greyscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogues here.You should have received a copy of the GNU General Public 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 Colour from BG_Add Colour from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Colour_Background colour:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Colour_By Colour Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Colour Tools_Colours_Configure Colour and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Colour_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Colour_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogues_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Colour..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalise_Eraser_FG Colour_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground colour:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Greyscale_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 Colour_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Colour From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colours:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_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 Colour_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterise..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colours from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Colour To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)Colourscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgreyscalegreyscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetremillimetresminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:en_GBRobert Brady -Piers Cornwell -Gareth Owenvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/es.gmo gimp-2.2.9/po/es.gmo --- gimp-2.2.8/po/es.gmo 2005-03-08 16:48:49.000000000 +0100 +++ gimp-2.2.9/po/es.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,438 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·™¸š¹(µ¹zÞ¹ZYº:´ºXïºOH»U˜»|î»Hk¼y´¼N.½7}½Uµ½\ ¾Wh¾9À¾Cú¾/>¿An¿<°¿Cí¿1À:À -AÀLÀ -UÀ `À lÀxÀÀ -žÀ©À¬À¿À ÕÀ ãÀ ïÀûÀ Á<Á RÁ7\Á”Á¨Á ¿ÁÍÁÖÁ ïÁ üÁ   " -0 ; I S ] -jÂu -‹Â –¢ §ÂµÂdÄ–)ÃFÀÃ;Ä"CÄfÄ|ąėğľÄÎÄçÄïÄÅÅ*Å ;Å\ÅkÅzÅ—Å´ÅÅÅÞÅïÅÆÆ5ÆTÆpÆƦÆ/ÀÆ=ðÆ.ÇEÇdÇ„Ç ‰Ç ªÇËÇéÇÈ "ÈCÈaÈ}È+–È ÂÈ$ãÈÉÉ"É+É ->ÉIÉiÉ|É …ɑɣɶÉdÏÉB4ËHwËÀËÖËÛËíË óË ”̠̾ÌÕÌóÌüÌ Í -Í Í9ÍSÍbÍC{ÍC¿ÍÎOÎ mÎ z·ΚÎ"¹ÎÜÎïÎöÎ)ûÎ %Ï#2ÏVÏqσϞϲÏÅÏàÏ òÏüÏÐÐ/ÐAÐ0VÐ+‡Ð³Ð»ÐÁÐÊÐÙÐ&àÐÑÑ'ÑFÑ,OÑ |Ñ‰ÑŽÑ -”ÑŸÑ ´Ñ¾ÑÏÑãÑúÑ3 Ò?ÒFÒXÒlÒ€Ò‰Ò‘Ò¢Ò´Ò½Ò -ÏÒÚÒßÒ~îÒmÓ rÓ Ó -Ó ˜Ó ¢ÓÃÓÛÓòÓûÓY ÔCgÔN«ÔAúÔ;<ÕzxÕ'óÕ!Ö>=Ö|ÖS—Ö%ëÖ.×#@×#d×ˆ×›× ¸× Â×Ì×Õ×#ï×Ø#.ØRØ#nØ’Ø'°Ø(ØØÙ1Ù2NÙÙ‡Ù›Ù!­Ù(ÏÙøÙÚ'ÚEÚYÚlÚÚ†ÚŽÚŸÚ»ÚÚÚãÚìÚôÚÛ"Û7ÛKÛ:kÛA¦ÛJèÛA3Ü;uÜ5±Ü0çÜ Ý!9Ý[Ý=yÝ#·ÝÛÝ(õÝÞNžÞ%íÞ'ß?;ß:{ß$¶ßÛß'ïßà -à!:à\àwà ~àˆà!¡àÃà Öàãàìàòàá á-áKá`á:uá °á½áÑáØáéá üá# -â%.âTâ1]ââ¢âµâÅâàâ úâ ã -ã ã (ã76ã2nã¡ã¸ã"Îã"ñã*ä!?ä%aä!‡ä©ä¼ä2Üä$å4åJå_å så }å‹å”å Wæaæ pæzæ&æ'´æ'Üæçç!2ç(Tç}ç •ç¢ç»çÏç*ßç - -è7è Mè9nè!¨è;Êè-é/4é-dé+’é1¾éIðé:êBêTêoê‰ê êµê&Ïê6öê-ë%Gëmë‚ë" ëÃëÞëûëì+ìKì^ìoì#‚ì -¦ì -±ì¼ìÄìÚìíìüì í í.í>íEíWí pí~í8…í ¾íÌíàíøíîî0î6î=îNî^îrî„î•î¤î¶îÐîíîýîï%ï9ï Rï^ïeï9mï+§ïÓï êï ðA+ðmð…ð •ð£ð¼ð Ôðâðõð ññ&ñ6ñ IñWñ oñ }ñ‰ñ ›ñ¼ñ Ùñúñ ò#ò Aò Oò9Yò “ò ò¨ò ¿ò ÌòÖòéò -òò ýò ó'ó!Fóhóqó‰óó´óÆóßó -èóóó -ôô)ôNAô_ô8ðô )õ -5õ@õYõ -qõ|õõ ˜õ!¢õÄõÙõèõûõö#ö8öJö[ö mö wö…ö¢ö·öPÌö%÷C÷S÷b÷u÷…÷ •÷£÷#´÷Ø÷ô÷ øø1øBøIøhø)‚ø%¬øÒøëø ùù/ù+Kù'wùŸù °ù¾ùÝù)íùú*úCúTúpú‚ú ú¾ú Óú àú ìúøú5 ûCûVû$rû—ûC°û=ôû -2ü*=ü-hü–ü%´ü3Úüý+ý3ý Gý0Qý+‚ý®ý³ýÇýÚý/÷ý;'þ$cþ9ˆþ(Âþ%ëþ'ÿ+9ÿeeÿyËÿEM T`w*Ž¹ Ñ"Þ  ,),Vƒ˜­ÃÙ ß ë ÷  )-9(g CšZÞS9DcÒ]6c”TøQM”ŸE4WzhÒR;€ŽZ\jiÇ1  Ú í  -! -9 -!A -c -z -Š -Ÿ -¹ -Ë -á -õ - $. S r ’ ² Ë ã þ    3 $T y ™ ¡ %ª Ð ï  -  = R g  x … — ° Á Ñ á ú  &=/O  ‹˜¬ ÀÎç3,Ly~†¨ ½ Ê×_íMc¹j$:Yl ‚ŽŸ ° ¼7Æþ,@I\o‚Šž"±Ôêü"4W‡jò òt†Œš'-Š5À!× -ù .8Mk:‚8½öZ  -h -s~’¤·¼ÍÓÚ&â /FLl…‰#£Çåõþ ,9IPX_gm| ®Ëã èö#2o: ª -¶Á × -á[ì/Hgxàå9ö0EKRai{ Œ˜ ž «~¹Ä8Gý2E :x ³ º Ë Ü ö !*!F!^!2v!©!%Ç!í!*"+"="cP"´" É"×" æ"ð"##,#;#T#m#}#Œ#›# ¢#¬# Â#Î#×#õ#þ#$$4$Ä$$Ü$%%%<%b%h%y%’%ª%½%aÏ%S1&<…&Â&Þ&$ô&' "'C'[' k'$w'œ'´'Ì',Ü'( (62(9i(5£(7Ù(+)!=)8_)˜)¡)³).Ç)ö) -*&(*O*h* **¤*¸*Ñ*é*ý*+ )+5+G+c+y+%•+»+Û+ñ+,,7,Q,(q,#š,¾, Ø,æ,ú,-0-'N-!v-˜- °-¼-Î-ê-.$.@._.gu.Ý/å/ø/0#090B0I0Z0q0€0C…0É0Þ0û0141H1Y1h1|1'›1.Ã1(ò1242C2]2m2„2Š2!™2»2Û2ö2Vý2T39\3–3 ²3À3Ç3Ü3ò3*434:4L4 S4a4p42Œ46¿4ö45 05 <5I5X5s5!‚5¤5 ½5&Ë5 ò566 ;6'I6 q6&~6 ¥6³6Ð6 -Ö6á6ù6ÿ6777!)7*K7v7$7#´7Ø7à7/õ7$%8J8f8†88“8³83Ó8999)9?9T9c9v9’9®9Î9î9 ::-:C:]:x:#’: ¶: Ã:)ä: ;; ;%;+;7K;ƒ;%Ÿ;Å;Ú;í;þ;<<,<H<N<_<n<‹<š< ª<¸< Ô<â<ö< ==1=K=_=t=(‰=)²=Ü=ó= û=> >)>*A>l>s> {> ‡>“>¨>Á>Ý> ú> -? -??4? D? Q?$]?‚?‘?¬?È?Ø? -ë?#ö? @ (@#5@ Y@ g@u@:…@"À@/ã@A!1A$SA1xAªA¼AÚA éAõAýABB/B?BNBWgB\¿BC 6CWC jC tC‚C‘C ¤C²CÏC æC ðC¬üC©DºDÎD ×DáD çDôD EE;EPE`E(E-¨E+ÖE(F)+FUF$sF$˜F -½F ÈF ÒFÜF îFüFGGvG=•G ÓG6ÝGH6H)RH|H ”H ¢HÃH.ãHII"I)I:IUIiIyII¥I­I¾I -ØIãIöIüI J &J 2Jw aw‚w%¢wDÈw9 x`GxZ¨x$y(y@y -Sy^ysy’y,©yÖyíy z z*z>zVzmz ‚z)z¹zÔzòz7 {-E{4s{*¨{)Ó{&ý{!$|F|Z|t|!|±|Ì|ë|è}5ì}u"~˜~_®G€¯V€2´9²îB¡‚†ä‚NkƒºƒF<„µƒ„P9…BŠ‡W͈O%‰Öu‰LŠ[ŠcŠiŠpŠƒŠ›Š°Š¸ŠÉŠàŠéŠ‹'‹G‹ g‹u‹„‹C›‹ß‹þ‹Œ%.ŒTŒhŒ‡Œ¢Œ!¹Œ&ÛŒ5Q/e•¬ÀÚ%÷Ž14Ž/fŽ–Ž­Ž%ÉŽ5ïŽ%A$S#xœ­À#Ôø!)@\>e¤­ÆÌ Þèü‘(‘7‘?‘ F‘ -P‘[‘m‘F~‘”Å‘ -Z’e’~’—’§’Á’Û’-â’/“ @“!a“ƒ“"¡“"Ä“ç“””” %”/”"K”n”v”†”•”«”º” ̔֔唕• !•-•?• Q•$]•‚•*Ÿ•'Ê•,ò•9–Y–b– ‚–– ¨–¶–½–Ó– -å–ð–—"—>—D—T— e—s—„—œ—Q¤—:ö—@1˜9r˜<¬˜[é˜_E™ž¥™LDš!‘šý³š'±› Ù›7æœÇž¢æžx‰Ÿm¡ùp¡%j¢·¢ÃH£ ¤¤#¤*)¤<T¤Ú‘¤;l¥2¨¥4Û¥6¦/G¦Nw¦”Ʀk[§:ǧH¨ŒK¨eØ©d>ªF£ªÄêª ¯«0¼¬ñí­¿ß®ÇŸ¯¾g°Á&±Fè±¹/³Yé³C´ -Jµ>U¶#”¶^¸¶ -·,"·O·W·j·Š·©·±·º· -Ë·Ö· f¸p¸‰¸¢¸À¸ ظù¸¹*¹?¹]¹r¹ ‡¹ ¨¹ µ¹yÖ¹P»_» |»ˆ» »¾»Ò»æ»1¼5¼F¼W¼n¼!~¼ ¼ ±¼ ¿¼ͼå¼õ¼½ -½½E.½Gt½H¼½Ø¾QÞ¾[0À -ŒÀ—À À¶ÀÍÀ ÖÀâÀ)þÀ (Á -2Á -=Á&HÁ(oÁ&˜ÁI¿Á# Â!-ÂOÂd„Â%¤ÂÊÂÞÂôÂúÂÃ$à 6Ã@ÃYIÃ.£Ã -Òà ÝÃêÃðÃÄÄ#Ä 2Ä@Ä-TÄ0‚Ä ³Ä ÁÄ8ÏÄ`ÅIiÅv³ÅÙ*ƱÇ?¶ÇXöÇhOÈo¸Èw(Én Ê‘Ë–¡Ë“8Ì•Ì̧bÍ¡ -Ζ¬ÎºCÏTþÏWSÐW«Ð—Ñ¡›Ñp=Ò’®Ò´AÓöÓ>ýÓ<ÔDÔMÔ#kÔÔªÔ¼ÔK¾Ô‡ -Õ’Õ”Õ Õ7§Õ-ßÕÚ ÖLèÖ&5×|\×kÙ×gEØ2­Ø àØ ìØúØ Ù Ù"Ù 8ÙFÙOÙ XÙfÙ2~ٱٺ٠ÑÙÛÙäÙ -ôÙ ÿÙ Ú'ÚFÚVÚlÚ €ÚŒÚ“Ú £Ú¯Ú ÈÚÕÚÞÚäÚ çÚñÚÛ% Û&FÛmÛ€Û‰Û‘ÛšÛºÛÃÛ -ËÛÖÛñÛôÛÜÜ*ÜHÜPÜXÜgÜnÜ…Ü%ŽÜ ´Ü¾ÜÐÜØÜ'îÜÝ0ÝDÝ -MÝXÝvÝŒÝ›Ý ªÝ ¸ÝÆÝÛÝêÝúÝ ÞÞ)ÞHÞYÞlÞ -ÞŒÞŸÞ -·ÞÂÞ ÕÞ öÞß ßß'ß"9ß\ßm߂ߟ߱ßÑßäßüß6à Ià -Uà`à pàzàƒà’à¯àÂà"Ëà$îà á á *á8áJá\á -_á já -vá áá%ŸáÅáÙáááéá ðáýáâ âââ -#â .â8â LâYârâ Žâ˜â®â¶â¼âÃâ Ûâ)üâ &ã2ãOã _ãmã‚ã Šã”㠲㠿ãËãÚã Ýãêã ðãúãä.ä5ä>äSä3nä¢ä#´äØäÞäòäùä å å å)å9åKå -\ågå vå„å—å¦åµå Éå Öåàåóåúåæ æ æ .æ8æJæbæjæræ yæ‡æœæ£æ ¬æ¹æ Èæ Öæäæçç /ç<çUç\ç_çdç kç yç†ç–ç©ç!Àçâçúç èè"è8èKè+_è ‹è ˜è¤èºè"Òè õè\éBséK¶éêê);êeê lêzêƒêŸê>´ê-óê(!ëJëSëië4zë ¯ë ¼ëÈëÞëúëì#ì#8ì \ì hìrì‡ì%žì'Äìììí í "í.í -5í @íJí \í ií$wí œí ©í Êí Ôí -áíìíñíúíÿíî(î ;îEîZîjînîtîwî‡î ‹î˜îªî²î¹îI½îï ï1ïIïQïZïcïsï-Šï)¸ï,âï(ð -8ð CðOðVð -Zðeðjðpðwð €ð Œð˜ðžð¥ð­ð>¼ð9ûð*5ñ[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: es -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-03-05 23:31+0100 -PO-Revision-Date: 2005-03-05 23:35+0100 -Last-Translator: Francisco Javier F. Serrador -Language-Team: Spanish -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -X-Generator: KBabel 1.9.1 -Plural-Forms: nplurals=2; plural=(n != 1); - -Opción inválida «%s» - -Uso: %s [opción ... ] [archivo ... ] - - --batch-interpreter - El procedimiento con el procesar comandos por lotes (batch). - --debug-handlers Activar los manejadores de señales no fatales de depuración. - --display Usar la pantalla X designada. - --dump-gimprc Saca un archivo gimprc con la configuración predeterminada. - --no-cpu-accel No utilizar las aceleraciones especiales de la CPU. - --no-shm No compartir la memoria entre El Gimp y las complementos. - --pdb-compat-mode - Modo de compatibilidad de base de datos de procedimientos. - --session U so de un archivo de sesión alternativo. - --modo de traza de pila - Modo de depuración para señales fatales. - --system-gimprc Usar un archivo de sistema «gimprc» alternativo. - --verbose Mostrar mensajes de inicio. - -b, --batch Procesa los comandos en modo no interactivo (batch-mode). - -c, --console-messages Mostrar las advertencias en la consola en vez de en una ventana. - -d, --no-data No cargar las brochas, los degradados, paletas ni patrones. - -f, --no-fonts No cargar ninguna tipografía. - -g, --gimprc Usar un archivo «gimprc» alternativo. - -h, --help Mostrar esta ayuda. - -i, --no-interface Ejecutar sin una interfaz de usuario. - -s, --no-splash No mostrar la ventana de inicio. - -v, --version Mostrar información sobre la versión. -%d capas%d ppp%d ppp, %s%d capas%d minutos%d segundos%d x %d ppp%d x %d píxeles, %s%d x %d píxeles%g x %g %s%pCopia del canal %scanal %s a selecciónMensaje de %sCopia de %smáscara %s%s%sPulsar: extender selección%s%sArrastrar: mover y comprimir(%0.3f, %0.3f, %0.3f)(Ninguno)(Esta ventana de consola se cerrará en diez segundos) -(Búfer sin nombre)(Plantilla sin nombre)(Variaciones)(limpio)(cadena UTF-8 inválida)(modificado)(ninguno)1 capa1 capa15 grados %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Transformación 2D...4:1 (400%)8:1 (800%)<%s><>Para obtener un rendimiento óptimo de El Gimp podrían tener que ajustarse algunas opciones.El Gimp - Programa de manipulación de imágenes GNU -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis y el equipo de desarrollo de El Gimp.¡El archivo de consejos de El Gimp no ha podido ser analizado!¡El archivo de consejos de GIMP para estar perdido!Un archivo llamado '%s' ya existe._Añadir a selecciónÃ_nguloAcerca de El GimpAcciónActivar la imagen con el _focoFiltros activosSupermuestreo adaptativoAñadirAñadir canal al_faAñadir un canal alfaAñadir un anclaAñadir un canalAñadir color al mapa de coloresAñadir guía:Añadir guíasAñadir una guía horizontalAñadir má_scara de capa...Añadir una capaAñadir máscara de capaAñadir una rutaAñadir un trazoAñadir una capa de textoAñadir una guía verticalAñadir una máscara a la capaAñade color desde el fondoAñade color desde el frenteAñadir máscara de capaAñadir texto a la imagenAñadir el color actual al historial de coloresAñadir el filtro seleccionado a la lista de filtros activos.Añadir a la paleta %sAñadir a la selección actualAñadiendo el tema «%s» (%s) -SumaControles adicionales de entradaAjustar el brillo y el contrasteAjustar el balance de coloresAjustar las curvas de colorAjustar los niveles de colorAjustar el brillo y el contrasteAjustar el balance de coloresAjustar las curvas de colorAjustar niveles de colorAjustar el tono / luminosidad / saturaciónAjustar el tono y la saturaciónAjustar los niveles automáticamenteAjusteOpciones avanzadasAfectar:Ãrea afectada %sAerógrafoAerógrafo de presión variableAlfa a _selecciónAlineadoAlienaciónTodos los canalesTodos los archivosTodos los archivos (*.*)Todas las imágenes y datos de «deshacer» que no quepan en la «cache de mosaico» serán escritos en un archivo de intercambio. Este archivo debería estar situado en un sistema de archivos local con suficiente espacio libre (varios cientos de Mib). En un sistema UNIX, debería usar el directorio temporal global del sistema («/tmp» ó «/var/tmp»).Permitir a las regiones completamente transparentes ser rellenadasPermitir que las regiones completamente transparentes sean seleccionadasPermitir agrandar %sAlfaAlfa a selecciónAlfa:Una imagen del tamaño elegido usará más memoria que lo que está configurado como «Tamaño de imagen máximo» en el diálogo Preferencias (actualmente %s).An_imaciónAnclar la selección flotanteAncla la capa flotanteAnclar la selección flotanteÃngulo:Anti-borrado %sAlisadoAparienciaAplicar máscara de capaAplicar _máscara de capaAplicar umbralAplicar máscara de capa¿Está seguro de que quiere borrar «%s» de la lista y del disco?¿Está seguro de que quiere borrar «%s» de la lista y del disco?Como en las _preferenciasSolicitar una confirmación antes de cerrar una imagen que no ha sido guardada.Proporción:Proporción:Adjuntar parásitoAdjuntar parásito a la imagenAdjuntar una parásito al elementoAdjuntar parásitoAutor:Auto_Seguir automáticamente la imagen activaAuto encogerEncoger selección automáticamenteAuto-redimensionar ventanaCarga automáticaDetectado automáticamenteFiltros disponiblesTipos disponibles:Relleno con color de fondo_Brillo-ContrasteB_úferesFondoColor de fondoColor de fondo establecido a:Fondo: %d, %d, %dInversa (correctivo)Ãrea base rellenada en todas las capas visiblesSelección base en todas las capas visiblesDetrásBiselBilinealNegro y blancoNegro:Mezclar colores de los pu_ntos finales_Mezcla (Blend)MezclaMezclar opacidad de los puntos f_inalesMezcla: Mezcla: No válido para imágenes indexadas.Mezclando...AzulAzul:DesenfoqueDesenfocar o enfocarBor_de...Bordear el canalSelección de bordeSelección de borde enBrillo-ContrasteBrillo-Contraste no funciona sobre capas indexadas.BrochaEditor de brochasCarpetas de brochasInterfaz de brochasBrochas:BrochasMenú de brochasRelleno de cubetaBúferesMenú de búferesEnnegrecerCaboPor extensiónAl revertir la imagen al estado guardado en el disco, perderá todos sus cambios, incluyendo toda la información de deshacer.CMYKC_alibrar..._Recoge-colorC_olumnas:C_ombinarCalibrar resolución del monitorNo se puede deshacer %sTamaño del _lienzo...CancelarCancelar la guíaNo se puede añadir una máscara de capa de dimensiones distintas a la capa especificada.No se puede añadir una máscara de capa a una capa sin canal alfa.No se puede añadir una máscara a la capa dado que no es parte de una imagen.No se puede fijar esta capa porque no es una selección flotante.No se puede convertir a una paleta con más de 256 colores.No se puede crear una nueva capa a partir de la selección flotante porque ésta pertenece a una máscara de capa o canal.No se puede crear la carpeta «%s»: %sNo se puede crear la vista previaNo se puede recortar porque la selección actual está vacía.No se puede expandir ${%s}No se puede hacer flotar la selección porque la región seleccionada está vacía.No se puede elevar una capa sin alfa.No se puede guardar. No hay nada seleccionado.No se puede trazar un canal vacío.No se puede trazar una ruta vacía.Tamaño del lienzoModo de _relleno del lienzo:Centro X:Centro Y:CentradoCambiar el color de fondoCambiar entrada del mapa de coloresCambiar el color de frenteCambiar la resolución de la imagenCambiar la unidad de medidaCambiar el tamaño de la impresiónCambiar la capa actual o rutaCambiar el color de fondo de la rejillaCambiar el color de frente de la rejillaCambiar la paleta indexadaCambiar la perspectiva de la capa o la selecciónHa fallado el cambio de la combinación de teclas.CanalAtributos del canalNombre del canal:El canal no puede descender más.El canal no puede ser elevado más alto.Color del canalEl canal ya está en el fondo.El canal ya está en la cima.Canal a sele_cciónCanal a selecciónCanal a selecciónCanal:CanalesMenú de canalesTa_maño de la cuadrícula:Seleccionar el estilo de trazoCírculo_LimpiarLimpiarLimpiar el canalVaciar historial de deshacerBorrar todo el textoLimpiar los erroresVaciar historial de deshacer...Presione «Continuar» para aceptar los ajustes de arriba.Pulse en «Continuar» para crear su carpeta personal de El Gimp.Pulse en «Continuar» para iniciar la instalación de usuario de El Gimp.Pulse «Continuar» para proceder con la instalación de usuario.Pulse para conectar esta ancla con el extremo seleccionado.Pulse para crear una ruta nueva. (pruebe con Mayús.)Pulse para crear un componente nuevo de la ruta.Pulse para crear una ruta nueva.Pulsar para crear la vista previaPulse para borrar esta ancla.Pulse para insertar un ancla en la ruta. (pruebe con Mayús.)Pulse para hacer este nodo angular.Pulse para abrir la ruta.Pulse para seleccionar la ruta a editar.Pulse para actualizar la vista previa -Presione %s veces para forzar la actualización aún si la vista previa está actualizadaPulse y arrastre para cambiar la forma de la curva. (Mayús.: simétricamente)Pulse y arrastre para mover el ancla.Pulse y arrastre para mover las anclas.Pulse y arrastre para mover el componente. (pruebe con Mayús.)Pulse y arrastre para mover el ancla. (pruebe con Mayús.)Pulse y arrastre para mover la ruta.Pulsar: seleccionarPulsar: seleccionar Arrastrar: moverResultado del recortePortapapelesRecortada hasta la capa más bajaRecortada según la imagenClonarCerrar %sCerrar todas las solapas¿Desea cerrar todas las solapas?Cerrar esta solapaCo_piar rutaColo_resColorBalance de colorFiltros de pantalla de colorRecoge-colorInformación del recoge-color_Balance de color..._Difuminar el color:Balance de color sólo funciona sobre capas con color RGB.Borrar colorÃndice de colores:Color:_Mapa de coloresE_spacio de color:Colori_zar..._Tipo de coloreado para el segmento_Tipo de coloreado para la selecciónColorearColorear sólo funciona sobre capas de color RGB.Colorear la imagenColorear la imagenMapa de coloresEditor del mapa de coloresMenú del mapa de coloresColumnas:Come_ntario:ComentarioCon_traste:_ConvoluciónConfiguración de los filtros de colores de la pantallaConfigurar los dispositivos de entrada e_xtendidosConfigurar la _rejillaConfigurar la rejillaConfigurar la rejilla de la imagenConfigurar combinaciones de teclasConfigurar las combinaciones de _teclas...Configurar el filtro seleccionadoConfigurar el filtro seleccionado: %sConfirmar el tamaño de la imagenConfirmar escaladoConfirmar la edición del textoConfirmar el cierre de las _imágenes no guardadasCombinaciones de teclas en conflictoCónico (asimétrico)Cónico (simétrico)Conectar los trazosConstanteRestriccionesContextoLos cursores dependientes del contexto son divertidos. Están habilitados de forma predeterminada. Sin embargo requieren procesamiento extra que quizá usted podría necesitar si no los utiliza.ContinuarContribucionesConvertirConvertir el bordeConvertir la imagen a escala de grisesConvertir la imagen a colores indexadosConvertir la imagen a colores indexadosConvertir la imagen a RGBConvertir la imagenConvertir a indexados (paso 2)...Convertir la imagen a indexados (paso 3)Convertir a indexado...ConvoluciónTipo de convolución %sCopiar (con nombre)Copiar _visibleCopiando el archivo «%s» desde «%s»...Copyright:Segmento corrupto %d en el archivo de degradado «%s».No se ha podido crear «%s»: %sNo se ha podido crear el archivo temporal para «%s»: %sNo se ha podido borrar «%s»: %sNo se ha podido encontrar el navegador de ayuda de El Gimp.No se ha podido abrir «%s» para lectura: %sNo se ha podido abrir «%s» para escritura: %sNo se ha podido abrir la miniatura «%s»: %sNo se ha podido leer %d bytes de «%s»: %sNo se ha podido buscar dentro del archivo XCF: %sNo se ha podido iniciar el complemento del navegador de ayuda de El Gimp.Cuenta:_Recortar la capaCrear un _empotrable nuevoCrear una plantilla nuevaCrear una imagen nuevaCrear una capa nuevaCrear una plantilla nuevaCrear una nueva vista para esta imagenCrear una imagen nueva desde la plantilla seleccionadaCrear una plantilla nuevaCree y edite imágenes o fotografíasCrear y editar rutasCrear una ruta desde el textoCrear una selección desde la rutaCreando la vista previa...Creando la carpeta «%s»...RecortarRecortar y cambiar tamañoInformación de recorte y cambio de tamañoRecortar la imagenRecortar la capaRecortar la imagenRecortar o redimensionar una imagenRecortar: Sólo cruzCor_tarCor_tar con nombre...Cúbica (la mejor)E_stado actualAltura actual:Sólo la capa actualEstado actualAnchura actual:CursorM_odo del cursor:Re_nderizado del cursor:Tipo de curvaCurvasLas curvas para capas indexadas no pueden ser ajustadas.PersonalizadaColor personalizadoDegradado personalizadoColor de relleno del lienzo:CortarCortar (con nombre)CíanCían:D_uplicar brochaD_uplicar canalD_uplicar degradadoD_uplicar la capaD_uplicar paletaD_uplicar rutaD_uplicar patrónD_uplicar la plantilla...Color de los cuadros oscurosOscurecer sóloGuión punto punto...Punto y guión...Patrón de guiones:Preparación del guión:Con guionesFecha:DepurarApariencia predeterminada en el modo de pantalla completaApariencia predeterminada en el modo normalRejilla predeterminadaRejilla de imagen predeterminada_Interpolación predeterminada:Tamaño predeterminado de las vistas previas de _capas y canales:Umbral prede_terminado:Borrar el anclaBorrar anclasBorrar másca_ra de capaBorrar máscara de capaBorrar objetoBorrar el segmentoBorrar la plantillaBorrar brochaBorra el canalBorrar el colorBorra el degradadoBorra la capaBorrar máscara de capaBorrar paletaBorrar rutaBorrar patrón...Borrar las opciones guardadas...Borra el búfer seleccionadoBorrar la plantilla seleccionadaBorrar esta imagenBorrar vectoresEl borrado de «%s» ha fallado: %sPuntos densosDesaturarLa desaturación sólo funciona sobre capas de color RGB.DescripciónDiseñoEstado del dispositivoDispositivosDiálogosMenú de diálogosDiamanteDiferenciaColor directoDesactivar máscara de capaDesactivar la máscara rápidaEliminar la información de textoPantallaNavegación de la vistaMostrar _filtros...Mostrar procedimientosTipo de pantalla:Mostrando [%0.6f, %0.6f]DisolverDistancia:Distancia: %0.6fDifuminadoDividirHacer una instalación de usuario _fresca¿Realmente desea reiniciar todos los filtros con sus valores predeterminados?¿Realmente desea reiniciar todas las opciones de herramientas con sus valores predeterminados?¿Quiere reemplazarlo con la imagen que está guardando?_No guardarEmpotrable_Historial del documentoHistorial del documentoDocumentosMenú de documentosQuemadoBlanquearBlanquear o ennegrecer los trazosblanquear/ennegrecerGuiones doblesArrastrar el anclaArrastrar las anclasArrastrar la curvaArrastrar el tiradorArrastrar la rutaArrastrar: moverDibujar con tintaDibujableMod dibujableProcedimientos de dibujablesSoltar la capa nuevaBorrar la ruta nuevaDebido a la falta de tipografías la funcionalidad de texto no está disponible.Volcar eventos desde este controladorDuplicar brochaDuplicar canalDuplicar degradadoDuplica la capaDuplicar paletaDuplicar rutaDuplicar patrónDuplicar las plantilla seleccionada¡AY!: No se puede deshacerE_xportar ruta..._Muy pequeñoComportamiento de los bordesDe_tectar bordesEditarEditar los atributos del canalEditar el color del canalEditar la entrada de la paleta de coloresEditar la entrada del mapa de coloresEditar atributos de capaAñadir máscara de capaModo ediciónEditar el color de la paletaEditar atributos de la rutaEditar los atributos de la máscara rápidaEditar el color de las máscara rápidaEditar plantillaEditar brochaEditar los atributos del canalEditar el colorEditar la entrada #%d del mapa de coloresEdita el degradadoEditar atributos de capaEditar paleta...Editar atributos de la rutaEditar patrón...Procedimientos de ediciónEditar la plantilla seleccionadaSelección elípticaCanal vacíoCapa vacíaRuta vacíaCapa de texto vacíaNombre de variable vacío en el archivo de entorno %sRea_lzar [Enhance]Activar la máscara rápidaActivar difuminado de _transparenciaActivar este controladorActiva la visualización de un útil consejo de El Gimp al iniciar.Activa la visualización de los consejos de las herramientas.MonumentalIngrese un nombre para la paleta combinadaIngrese un nombre para las opciones guardadasPonga un nombre a este búferIngrese el nombre para esta plantillaIngrese un nombre nuevo para las opciones guardadasIntroduzca dirección (URI):EntornoCarpetas de entornoBalancearLa ecualización no funciona en capas indexadas.Borrar el color de fondo o la transparenciaGomaCo_nsola de erroresConsola de erroresMenú de la consola de errorOcurrió un error al guardar el archivo XCF: %sHa ocurrido un error al analizar «%s» en la línea %d: %sOcurrió un error al leer «%s»: %sOcurrió un error al leer el archivo de brocha «%s»: %sOcurrió un error al escribir «%s»: %sOcurrió un error al escribir XCF: %sError al escribir el archivo «%s»: -%sOcurrió un error al escribir en «%s»: %sHa ocurrido un error al escribir el archivo temporal para «%s»: %s -No se ha creado ningún archivo.Ha ocurrido un error mientras se escribía el archivo temporal para «%s»: %s -El archivo original no ha sido modificado.ErroresEvento_Muy grandeExpandida lo necesarioExportar ruta a un SVGExportar todas las rutas desde esta imagenExportar la ruta activaExposición:Dispositivos de entrada extendidosExtensionesRelleno con color de frenteFrente a fondo (HSV tono en sentido horario)Frente a fondo (HSV en sentido anti-horario)Frente a fondo (HSV)Frente a fondo (RGB)Frente a transparenteFrente a transparentePP/SPColor PP/SPFS relajadoFS rigurosoFS a capa_Ajustar lienzo a las capasDesvanecimientoFallo al importar degradados desde «%s»: %sFallo al importar rutas desde «%s»: %sFantasíaError fatal de análisis en el archivo de brocha «%s»: Bytes = 0.Error fatal de análisis en el archivo de brocha «%s»: El archivo parece estar truncado.Error fatal de análisis en el archivo de brocha «%s»: El archivo está corrupto.Error fatal de análisis en el archivo de brocha «%s»: Altura = 0.Error fatal de análisis: en el archivo de brocha «%s»: No es un archivo de brocha de de El Gimp.Error fatal de análisis en el archivo de brocha «%s»: Forma de brocha de GIMP desconocida.Error fatal de análisis en el archivo de brocha «%s»: Versión de brocha de El Gimp desconocida.Error fatal de análisis en el archivo de brocha «%s»: Profundidad desconocida %d.Error fatal de análisis en el archivo de brocha «%s»: Versión desconocida %d.Error fatal de análisis en el archivo de broca «%s»: Profundidad de brocha no soportada %d -Las brochas de El Gimp deben ser GRAY (GRISES) o RGBA.Error fatal de análisis en el archivo de brocha «%s»: Anchura = 0.Error fatal de análisis en el archivo de degradados «%s»: El archivo está corrupto.Error fatal de análisis: en el archivo de degradados «%s»: No es un archivo de degradados de El Gimp.Error fatal de análisis en el archivo de paleta «%s»: Cabecera mágica perdida.Error fatal de análisis en el archivo de paleta «%s»: Cabecera mágica perdida. -¿Es necesario convertir este archivo de DOS?Error fatal de análisis en el archivo de paleta «%s»: Error de lectura en la línea %d.Error de análisis fatal en el archivo de patrón «%s»: No se han podido leer %d bytes: %sError de análisis fatal en el archivo de patrón «%s»: Versión del formato de patrón desconocida %d.Error de análisis fatal en el archivo de patrón «%s»: Profundidad del patrón no soportada %d. -Los patrones de El Gimp deben ser GRAY o RGB.Di_fuminar... [Feather]Difuminar el canalDifuminar selección [Feather]Difuminar los bordesDifuminar selección enArchivo_Diálogo de apertura de archivosOperaciones de archivoTipo de archivoEl archivo ya existeEl archivo está truncadoRellenar el canalOpacidad del relleno:Tipo de relleno %sRellenar colores similaresRellenar áreas transparentesRellenar la selección completamenteRellenar con el color de fondoRellenar con el color de fo_ndoRellenar con el color de frenteRellenar con un _patrónRellenar con un patrónRellenar con transparenciaRellenar con blancoRellenar con el color de _frenteRellenar con el color del _fondoRellenar con un degradado de coloresRellenar con un color o patrónRellenoFilt_rosLa capa final combinada debería ser:Encontrando regiones continuasBuscando colores similaresAjustar a la ventanaAjusta la imagen a la ventanaAjustar a la ventanaAjustar a la ventanaProporción fijaTamaño fijoAplanar la imagenInvertir simétricamenteVoltear el canalVoltear la capaVoltear la rutaVoltear la capa de textoTipo de volteo %sVoltear _horizontalmenteVoltear _verticalmenteVoltear la imagenInvertir la imagen o selección simétricamenteVolteado...Volteando...Selección flotanteSelección flotanteCapa flotanteSelección flotante -(%s)Selección flotante a capaSelección flotante a capaSelecciones flotantesFloyd-Steinberg (normal)Floyd-Steinberg (sangrado de color reducido)FocoCarpetaCarpetasCarpetas de tipografíasTipografía de la IUTipografía:TipografíasMenú de tipografíasPara una instalación correcta de El Gimp es necesario crear una carpeta llamada «%s».Forzar el auto-hinterFrenteColores de frente y fondo. Los cuadrados blancos y negros reinician los colores. Las flechas intercambian los colores. Pulse dos veces para abrir el diálogo de selección de colores.Color de primer planoColor de frente establecido a:Frente: %d, %d, %dDirecta (tradicional)Desde _rutaSelección libreSelección libreMano alzadaDel _temaDesde el sistema de _ventanas (actualmente %d x %d ppp)De izquierda a derechaDe derecha a izquierdaDesde la selecciónDel temaSelección _difusaPantalla compl_etaSelección borrosaEl GimpAñadido de El GimpMensaje de El GimpAjustes del rendimiento de El GimpExtensión de El GimpInicio de El GimpEditor de textos de El GimpConsejo del día de El GimpInstalación de usuario de El GimpImagen XCF de GimpEl Gimp no ha podido inicializar la interfaz gráfica de usuario. -Asegúrese de que exista una instalación apropiada para su pantalla.Visualizador de ayuda de GimpEl Gimp no se encuentra instalado correctamente para el usuario actual. -La instalación del usuario fue saltada debido a que se utilizó el -modificador «-- no interface». -Para realizar la instalación de usuario ejecute El Gimp sin el modificador -«--no-interface».El Gimp usa una cantidad limitada de memoria para almacenar datos sobre las imágenes llamada «Cache de mosaico». Debería ajustar su tamaño para que quepa en memoria. Considere la cantidad de memoria que usan otros procesos en ejecución.El Gimp usa un archivo «gtkrc» adicional de modo que pueda ponerle un aspecto diferente al resto de programas GTK.Versión de El GimpEl Gimp advertirá al usuario si realiza un intento de crear una imagen que podría requerir más memoria que el tamaño especificado aquí.GammaGeneralGeneralmente sólo es importante para pantallas de 8 bits, esto define la cantidad mínima de colores del sistema reservados para El Gimp.Generar paleta óptimaObtener la resolución de monitorGigantescoProcedimientos gimprcEfecto_s de cristalDegradadoEditor de degradadosMenú del editor de degradadoCarpetas de degradadosColor del punto final izquierdo del segmento del degradadoColor del punto final derecho del segmento del degradadoInterfaz de degradadosEl archivo de degradado «%s» está corrompido. Los segmentos no comprenden el rango 0-1.Degradado:DegradadosMenú de degradadosExtraer granuladoCombinar granuladoGrisEscala de grisesVerdeVerde:RejillaEspaciado de las líneas de la rejillaAgrandar el canalAgrandar selecciónAgrandar selección enGuíaAjuste de la rejilla y la guíaProcedimientos de guíasHSVHSV (%0.3f, %0.3f, %0.3f)HSV (tono en _sentido anti-horario)HSV (tono en sentido horario)Notación HTML:_Altura:_Visor de ayuda:Posición del tirador: %0.6fBordes durosClaridad fuerteDurezaDureza:AlturaAltura:AyudaVisor de ayudaSistema de ayudaEl navegador de ayuda no inicia:Visor de ayuda no encontradoProcedimientos de ayudaHex:Puntos de luzHint para e_mpotrables:Hint para la caja de herramien_tas:HintingEl «hinting» altera el contorno de la tipografía para producir un mapa de bits preciso en tamaños pequeños_HistogramaHistogramaEscala del histogramaHistorialHorizontalDeslizamiento horizontal de la primera línea de la rejilla, puede ser un número negativo.Espacio horizontal de la líneas de la rejilla.Cuántos nombres de archivos de imágenes abiertas recientemente se deben mantener en el menú Archivo.TonoTono-SaturaciónTono-saturación sólo funciona sobre capas de color RGB.Tono-_Saturación...Tono:EnormeI_cono y textoI_magenI_mportar ruta...I_nterpolación:I_ntervalo:IconoIcono y descIcono y textoSi está disponible, se utilizan los «hints» de la tipografía, pero podría preferir usar siempre el «hinter» automáticoSi está activado, la herramienta de movimiento cambia la capa activa o ruta cuando una capa o ruta se escoge. Esto se usa para ser el comportamiento predeterminado en las versiones más antiguas.Si no guarda la imagen, los cambios desde los últimos %s se perderán.Si sale de Gimp ahora, estos cambios se perderán.Nombre de variable ilegal en el archivo de ambiente %s: %sImagenImagen + RejillaEditor de imagenInformación de la imagenMenú de imagenTamaño de la imagenFormato de la barra de estado de la imagenPlantillas de imágenesMiniaturas de imágenesFormato del título de imagen y la barra de estadoFormato del título de imagenApariencia de la ventana de la imagenVentanas de imagenLa imagen no contiene ninguna capa visibleArchivo de imagenMáscara de imagenLa resolución de la Imagen se sale de los límites; usando la resolución predefinida en su lugar.Tamaño de la imagenImagen origenTipo de imagenImágenesMenú de imágenesOpciones de importaciónImportar paletaImportar rutasImportar rutas desde SVGImporta una paleta nuevaImportar paletaImportar rutasRuta importada_TintaIn_vertirIn_vertir la máscaraIncrementalSangrar:Sangrado de la primera líneaÃndice:IndexadoColor indexadoConversión de color indexadoLas capas de color indexado se escalan siempre sin interpolación. El tipo de interpolación elegido sólo afectará a las máscaras y canales.Ventana de información_Proporción de ampliación inicial:Iniciar máscara de capa a:Inicializando los complementosInicializando el complemento: «%s» -TintaPixbuf en líneaControladores de entradaDispositivos de entradaNiveles de entradaInsertar un anclaInstala un mapa de color privado; podría ser muy útil en las pantallas de 8 bits (256 colores).La instalación ha fallado. Póngase en contacto con el administrador del sistema.Instalación exitosa. Presione «Continuar» para comenzar.Actualización instantáneaTijeras _inteligentesIntensidad: %0.3f Opacidad: %0.3fInterfazProcedimiento interno de El GimpProcedimientos internosInterpolación:IntersectarIntersectar con la selección actualIntersecciones (cruces)Intersecciones (puntos)UTF-8 inválidoDatos UTF-8 inválidos en el archivo «%s».Cadena UTF-8 inválida en el archivo XCFCadena UTF-8 inválida en el archivo de brocha «%s».Cadena UTF-8 inválida en el archivo de degradado «%s».Cadena UTF-8 inválida en el archivo de paleta «%s»Cadena UTF-8 inválida en el archivo de patrón «%s».Secuencia de caracteres inválida en la URICombinación de teclas inválida.Anchura o altura no válidas. Ambas deben ser positivas.InvertirInvertir el canalInvertir selecciónLa inversión no funciona con capas indexadas.Invertir selección¿Es eso lo que quiere hacer?Parece que ha usado El Gimp 2.0 antes.Propiedades del elementoVisibilidad del elementoJustificar:Mantener transparenciaMantener por encimaMantener proporción %sMantener proporción %sMantener altura %sMantener transparenciaMantener anchura %sTecla bajarTecla bajar (Alt)Tecla bajar (Control + Alt)Tecla bajar (Control)Tecla bajar (Mayús. + Alt)Tecla bajar (Mayús. + Control + Alt)Tecla bajar (Mayús. + Control)Tecla bajar (Mayús.)Tecla izquierdaTecla izquierda (Alt)Tecla izquierda (Control + Alt)Tecla izquierda (Control)Tecla izquierda (Mayús. + Alt)Tecla izquierda (Mayús. +Control + Alt)Tecla izquierda (Mayús. + Control)Tecla izquierda (Mayús.)Tecla derechaTecla derecha (Alt)Tecla derecha (Control + Alt)Tecla derecha (Control)Tecla derecha (Mayús. + Alt)Tecla derecha (Mayús. + Control + Alt)Tecla derecha (Mayús. + Control)Tecla derecha (Mayús.)Tecla subirTecla subir (Alt)Tecla subir (Control + Alt)Tecla subir (Control)Tecla subir (Mayús + Alt)Tecla subir (Mayús + Control + Alt)Tecla subir (Mayús + Control)Tecla subir (Mayús.)Las combinaciones de teclas pueden ser redefinidas de forma dinámica en El GIMP. «menurc» es un volcado de su configuración para que pueda ser recordada en la próxima sesión. Puede editar este archivo si lo desea, pero es mucho más fácil definir las teclas desde El Gimp. Si borra este archivo se restaurarán las combinaciones de teclas predefinidas.TecladoEventos de tecladoCombinaciones de teclasI->DColor del punto final izqui_erdo...ApaisadoGrandeGrande (256x256)Vistas previas enormesÚltimo error:CapaLa capa «%s» no tiene alfa. La capa fue colocada encima de ésta.Atributos de la capaTamaño de b_orde de capa...Tipo de relleno de la capaMáscara de capa a selecciónSelección de capasTamaño de capas_Modo de capas_Nombre de la capa:La capa no puede bajarse más.La capa no puede ser elevada más alto.La capa ya se encuentra en la parte más baja.La capa ya se encuentra en lo más alto.Capa a tamaño de imagenCapa al _fondoCapa a tamaño de _imagenCapa a la _cimaCanal _alfa de la capaCapasMenú de capasOpciones de combinación de capasColor del punto final izquierdoJustificado a la izquierdaLargo:Permitir a El Gimp intentar restaurar la última sesión guardada durante cada inicio.NivelesLos niveles para capas indexadas no pueden ser ajustados.Color de los cuadros clarosClarear sóloLíneaEspaciado -de línea:Anchura de la línea:E_stilo de la línea:Estilo de línea utilizado por la rejilla.LinealElemento enlazadoCargarCargar curvasCargar nivelesCargar color derecho _desdeLeer configuración de las curvas desde un archivoLeer la configuración de los niveles desde un archivoCargar texto desde un archivoCargando la vista previa...Ubicación:LogarítmicoGuiones largosBuscando archivos de datosBajar el canalBajar el canal hasta lo más bajoBajar el canal al _fondoBajar la capaBajar la capa hasta la parte más bajaBajar la rutaBajar la ruta hasta el fondoBajar la ruta hasta el _finalBaja el canalBaja el canal hasta el fondo de la pilaBaja la capaBaja la capa hasta el fondo de la pilaBajar la rutaBajar la ruta hasta el final_LupaP_rincipal_Mover a la pantalla...Ma_paMagentaMagenta:LupaHacer _transparenteAdministra los módulos cargablesVelocid_ad de las «hormigas marchantes»:Opacidad de la máscara:Enmascarar las áreas _seleccionadasEnmascarar áreas _no seleccionadasMatriz:Profundidad máxima:Tamaño _máximo del archivo para miniaturizar:Tamaño máximo de la imagen _nueva:Máxima diferencia de color_Memoria máxima para deshacer:Media:MedirMedida de distancias y ángulosMedida de distancias y ángulosMida las reglas e introduzca sus longitudes debajo:Mediana:MedianoGuiones medianosCombinar hacia aba_joCombinar hacia abajoCombinar capasCombinar la paletaCombinar las capas visiblesCombinar las rutas visiblesCombinar las capas _visibles...Combinar las capas _visibles...Combinar las capas _visiblesCombinar capasCombinar la paletaCombinar los vectoresProcedimientos de mensajeMensaje repetido %d veces.Mensaje repetido una vez.Los mensajes se redirigen a stderr.Tonos mediosMigrar configuración de usuarioCantidad mínima de niveles de _deshacer:MisceláneaMitraModoModo:Modificar el color seleccionadoModificar los niveles de color en el rango seleccionadoModificar todos los coloresModificar el espaciado de las líneasCarpetas de módulosGestor de módulosRuta del móduloMódulosCursores del ratónRueda del ratónEventos de rueda del ratónMoverMover las anclasMover el canalMover la selección flotanteMover la guíaMover la guía:Mover la capaMover la mascara de la capaMover la rutaMover la selecciónMover la capa de textoHerramienta moverMover el elementoMover capas y seleccionesMover la selecciónMover la capa actualMover la ruta actualMover el filtro seleccionado hacia abajoMover el filtro seleccionado hacia arribaMover a la pantalla...Mover: Multiplicar_Número de colores:Na_vegaciónVentana de na_vegaciónTamaño de vistas previas de _navegación:NombreNombre:NavegaciónNuevo canalNuevo canal de colorNuevas opciones de canalColor nuevo desde el f_ondoColor nuevo desde el _frenteNueva imagenCapa nuevaNueva rutaOpciones de ruta nuevaPlantilla nuevaBrocha nuevaNuevo canalCanal nuevo con los últimos valoresCanal nuevo...Color nuevo desde el fondoColor nuevo desde el frenteDegradado nuevoImportación nuevaCapa nuevaCapa nueva con los últimos valoresCapa nueva...Paleta nuevaRuta nueva con los últimos valoresRuta nueva...Patrón nuevoVectores nuevosNo hay brochas disponibles para usar con esta herramienta.No hay ningún filtro seleccionadoNo se encontraron degradados lineales en «%s»Ya no se encuentra disponibleNo se encontraron rutas en «%s»No se encontraron rutas en el búferNo hay patrones disponibles para esta operación.No hay selecciónNo hay selección que trazar.Sin miniaturasNo alienadoNingunoNinguna (la más rápida)NormalNormal (128x128)Puntos normalesVentana normalNo es un archivo regularNo hay suficientes capas visibles para hacer una combinación. Al menos debe haber dos.No hay suficientes capas visibles para hacer una combinación. Deben haber por lo menos dos.Número de _procesadores:Número de líneas de la rejillaCantidad de capas:O_tros...DeslizamientoDeslizar canalDeslizar dibujableDeslizar capaDeslizar la máscara de capaDesplazar por x/_2,y/2Deslizar:En el discoEn las máquinas con múltiples procesadores, si El Gimp ha sido compilado con «--enable-mp» esto define cuántos procesadores debería utilizar El Gimp simultáneamente.Sólo en memoria_Abrir como capa...OpacidadOpacidad:AbrirAbrir imagenAbrir imagen como capaAbrir direcciónAbrir archivo de texto (UTF-8)Abrir _dirección...Abrir _recienteDiálogo de apertura de imagenAbre el diálogo de selección de brochaAbre el diálogo de selección de tipografíaAbre el diálogo de selección de degradadoAbre el diálogo de selección de paletaAbre el diálogo de selección de patrónAbrir la entrada seleccionadaLa apertura de «%s» ha fallado: -%sLa apertura de «%s» ha fallado: %sOpciones: -Origen X:Origen Y:Anchura original:Otro (%s) ...EsquemaNiveles de salidaSolaparError de llamada a PDB para el procedimiento «%s»: -Tipo de argumento desconocido #%d (se esperaba %s, se obtuvo %s)Error de llamada PDB: -No se encuentra el procedimiento «%s»_PatronesFidel exporta gazpacho, -jamón, kiwi, viñas y buques.PintarOpciones de pintado compartidas entre las herramientasProcedimientos de herramientas de pinturaHerramienta de pintura:Modo _pinturaPintar trazos borrosos de brochaPintar píxeles de bordes durosPintar usando patrones o regiones de la imagenPincelPal_etasPaletaEditor de paletaMenú del editor de paletaCarpetas de paletasUI de la paleta_Nombre de la paleta:_Archivo de la paletaPaletasMenú de paletasProcedimientos parásitosParásitosAnalizando «%s» -PegarPegar búfer _enPegar búfer como _nuevoPegar ru_taPegar _enPegar como _nuevoPega el búfer seleccionadoPegar el búfer seleccionado como imagen nuevaPega el búfer seleccionado en la selecciónCapa pegadaRutaAtributos de la rutaNombre de la ruta:_Herramienta de rutaLa ruta no puede descender más.La ruta no puede ser elevada más alto.La ruta ya está en el fondo.La ruta ya está en la cima.Ruta a sele_cciónRuta a selecciónRuta a selección -%s Añadir -%s Extraer -%s IntersectarRuta a selecciónRutasMenú de rutasPatrónCarpetas de patronesInterfaz de patronesRelleno con patrónPatrón origenPatronesMenú de patrones_LápizLápizPorcentaje del ancho de la brochaPercentil:Carpeta personal de El GimpPerspectivaInformación sobre la transformación de perspectivaPerspectiva...Modo de selección %sEscoger una capa o guíaEscoger una rutaSeleccionar un punto negroRecoger colores de la imagenSeleccionar un punto grisSólo seleccionarSeleccionar un punto blancoDimensiones en píxeles:Valores de los píxelespíxelesPíxeles:Asegúrese de que los archivos de menú XML están instalados correctamente.Aguarde mientras se crea su carpeta personal de El Gimp...Por favor, espere...ComplementoEntorno de complementosCarpetas de complementosEl complemento no ha podido abrir la imagenEl complemento no ha podido guardar la imagenEl complemento ha fallado: «%s» -(%s) - -El complemento que ha fallado puede haber estropeado el estado interno de El GIMP. Sería conveniente que guardase todas sus imágenes y reinicie El Gimp, para no arriesgarse.El complemento finalizó correctamente pero no ha devuelto una imagenComplementosExtensiónLos complementos y los añadidos son programas externos ejecutados por El GIMP que proporcionan funcionalidades adicionales. Estos programas se buscan en tiempo de ejecución, y se almacena la información acerca de su función y fechas de modificación en este archivo para conseguir un inicio de El Gimp más rápido. Este archivo sólo debe ser leído por El Gimp, y no debe ser editado.PoligonalVerticalPosición: %0.6fPosicionadoPosterizarPosterizar (reducir la cantidad de colores)Nive_les de posterización:Posterizar no funciona sobre capas indexadas.PreferenciasConservar la _luminosidadSensibilidad de presiónPresión:Vista previaLa vista previa está desactualizadaVista previa:PrevisualizacionesTamaño de la impresiónTamaño de la impresión:Han ocurrido problemas analizando el parásito de texto para la capa %s: -%s - -Algunas propiedades del texto podrían estar incorrectas. Al menos que quiera editar la capa de texto no necesitará preocuparse por esto.Base de datos de procedimientosBase de datos de procedimientosProgresoPseudo colorPropósito:CalidadConsultarVerificando si hay complementos nuevosConsultando el complemento: «%s» -Carga rápidaMáscara rápidaAtributos de la máscara rápidaMenú de la máscara rápidaGuardado rápidoMáscara rápidaSalir de El GimpRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)Color RGBRGB-vacíoRGBA (%0.3f, %0.3f, %0.3f, %0.3f)D->IVolv_er a mostrar «%s»R_einiciar las opciones de las herramientasR_einiciar el canalR_establecer colorR_einiciar el rangoColor del punto f_inal derecho...RadialRadio:Elevar el canalElevar el canal hasta lo altoElevar canal a la _cimaElevar la capaElevar la capa hasta lo más altoElevar la rutaElevar la ruta hasta el principioElevar la ruta hasta el _principioEleva el canalEleva el canal por encima de todosEleva la capaElevar la capa hasta la cimaElevar la rutaElevar la ruta hasta el principioElevar estas vistas de imagenElevar la ventana si ya está abiertaTasaTasa:Volver a mostrar el últimoRe-_centrar puntos medios en la selecciónRe-_centrar punto medio del segmentoRedistribuir los _tiradores en el segmentoRedistribuir los _tiradores en la selecciónRe_nombrar las opciones guardadasRe_petir «%s»Re_vertir...Leyendo el archivo de paleta «%s»: Falta la componente VERDE en la línea %d.Leyendo el archivo de paleta «%s»: Número inválido de columnas en la línea %d. Usando el valor predeterminado.Leyendo el archivo de paleta «%s»: Falta la componente AZUL en la línea %d.Leyendo el archivo de paleta «%s»: Falta la componente ROJO en la línea %d.Leyendo el archivo de paleta «%s»: Valor RGB fuera de rango en la línea %d.Preparado¿Seguro que quiere vaciar el histórico de deshacer de la imagen?Si reasigna la combinación de teclas, hará que se quite de «%s».Regenerar la vista _previaRegenerar la vista previaSelección rectangularRojoRojo:RehacerReduce la imagen a un número fijo de coloresReduce la imagen a dos colores usando un umbralRefrescar brochasRefrescar degradadosRefrescar paletasRefrescar patronesRegistradoRecargar el tema act_ualRecargar _todas las vistas previasRecarga todas las vistas previasRecordar la herramienta, el patrón, el color y las brochas actuales entre distintas sesiones de El Gimp.Imagen remotaQuitar el canalQuitar las entradas _colgantesQuitar la selección flotanteQuitar la guíaQuitar una capaQuitar el parásito de la imagenQuitar el parásito del elementoQuitar la rutaEliminar _entradaQuita las entradas colgantesEliminar la selección flotanteQuitar parásitoQuita la entrada seleccionadaQuitar el filtro seleccionado de la lista de filtros activos.Ha fallado la eliminación de la combinación de teclas.Renombrar el canalRenombrar la capaRenombrar la rutaRenombrar las opciones de herramientas guardadasRenombrar la capa de textoRenombrar elementoRenderizar el trazoReordenar el canalReordenar la capaReordenar la rutaRepetir el últimoRepetir:Reemplazar la selección actualReplicarReplicar segmento del degradadoReplicar selección del degradadoReplicar segmentoReplicar selecciónReposicionar el canalReposicionar la capaReposicionar los vectoresRecargar la lista de tipografíasReiniciar las opciones de herramientasReiniciar _todas las opciones de herramientas...Restablecer todos los filtrosReiniciar todos los filtros...Reinicia todas las opciones de herramientas...Reiniciar el filtro seleccionado con los valores predeterminadosReiniciar con los valores predeterminadosRestablecer el orden y visibilidad de la herramientaCambiar tamañoRedimensionar el canalRedimensionar la imagenRedimensionar la capaRedimensionar la rutaRedimensionar la capa de textoRedimensionar imagenRedimensionar elementoRedimensionar la ventana al a_mpliarRedimen_sionar la ventana al cambiar el tamaño de la imagenRedimensionando...Cambio de resoluciónResolución:Consumo de recursosConfiguración de recursosRecuperar opciones desde...Restaurar las combinaciones de teclas guardadas en cada inicio de El Gimp.Restringir la edición a poligonalesInvertidoRevertir¿Quiere revertir «%s» a «%s»?Revertir imagenFalló al revertir. No hay un nombre de archivo asociado con esta imagen.La reversión de «%s» ha fallado: - -%sColor del punto final derechoJustificado a la derechaRotarRotar 90 grados en sentido _anti-horarioRotar 90 grados en sentido _horarioRotar el canalRotar la capaRotar la rutaRotar la capa de textoRotar _180 gradosRotar imagenRotar la capa o la selecciónRotando...Información de rotaciónCírculo_Inclinar [Shear]M_ostrar la rejilla_Encoger [Shrink]..._Púas [Spikes]In_tercambiar los coloresG_uardar color derecho enMuestra ponderadaMuestra combinadaSat.:SaturaciónGuardarGuardar «%s» como POV-RayGuardar curvasGuardar registro de errores en un archivoGuardar imagenGuardar la configuración del dispositivo de entrada _ahoraGuardar las combinaciones de teclas _ahoraGuardar nivelesGuardar las opciones de herramientaGuardar las posiciones de las ventanas _ahoraGuardar _todos los errores en un archivo...Guardar la _selección en el archivo...Guardar _como...Guardar una cop_ia...Guardar una copia de la imagenGuardar todos los erroresGuardar como _POV-Ray...Guardar como _plantilla...Guardar las combinaciones de teclas modificadas al salir de El Gimp.Guardar la configuración de curvas en un archivoGuardar estado del dispositivoGuardar degradado como POV-RayGuardar la configuración de niveles en un archivoGuardar las opciones en...Guardar selecciónGuarda la selección en el canal¿Desea guardar los cambios a la imagen «%s» antes de cerrar?Guardar las posiciones y tamaños de los diálogos principales al salir de El GIMP.Guardar en c_analOpciones guardadasGuardando «%s» -Ha fallado la grabación de «%s» - -%sGuardando imágenesOnda de diente de sierraImagen escalable SVG (*.svg)RedimensionarEscalar el canalEscalar la imagenEscalar la capaEscalar la rutaEscalar la capa de textoEscalar la imagenEscalar elementoProporción de escala X:Proporción de escala Y:Relación de la escala:Escalar la capa o la selecciónEscaladoInformación de escaladoEscalar la imagen al tamaño elegido hará que use más memoria de la que está configurada actualmente como «Tamaño máximo de imagen» en el diálogo de Preferencias (actualmente %s).Escalar la imagen al tamaño elegido hará encogerse algunas capas hasta desaparecer completamente.Reescalando...TijerasPantallaCarpetas de scripts-fuScriptsDesplazar abajoDesplazar abajo (Alt)Desplazar abajo (Control + Alt)Desplazar abajo (Control)Desplazar abajo (Mayús + Alt)Desplazar abajo (Mayús. + Control + Alt)Desplazar abajo (Mayús. + Control)Desplazar abajo (Mayús.)Desplazar a la izquierdaDesplazar a la izquierda (Alt)Desplazar a la izquierda (Control + Alt)Desplazar a la izquierda (Control)Desplazar a la izquierda (Mayús. + Alt)Desplazar a la izquierda (Mayús. + Control + Alt)Desplazar a la izquierda (Mayús. + Control)Desplazar a la izquierda (Mayús.)Desplazar a la derechaDesplazar a la derecha (Alt)Desplazar a la derecha (Control + Alt)Desplazar a la derecha (Control)Desplazar a la derecha (Mayús + Alt)Desplazar a la derecha (Mayús + Control + Alt)Desplazar a la derecha (Mayús. + Control)Desplazar a la derecha (Mayús)Desplazar arribaDesplazar arriba (Alt)Desplazar arriba (Control + Alt)Desplazar arriba (Control)Desplazar arriba (Mayús. + Alt)Desplazar arriba (Mayús. + Control + Alt)Desplazar arriba (Mayús. + Control)Desplazar arriba (Mayús.)SeleccionarSeleccionar todoSeleccionar la carpeta de brochasSeleccionar por colorSeleccionar el colorSeleccionar un controlador de acción de eventoSeleccionar las carpetas de entornoSeleccione el tipo de archivo (%s)Seleccionar las carpetas de tipografíasSeleccionar las carpetas de degradadosSeleccionar las carpetas de módulosSeleccionar nadaSeleccionar las carpetas de paletasSeleccionar la carpeta de patronesSeleccionar las carpetas de complementosSeleccione el color primario para modificarSeleccione el rango para modificarSeleccionar la carpeta de script-fuSeleccionar origenSeleccionar la carpeta de intercambioSeleccionar las carpetas de temasSeleccionar un temaSeleccionar las carpetas de temasSeleccione la relación de aumentoSeleccionar la capa i_nferiorSeleccionar color _personalizado...Seleccionar la _siguiente capaSeleccionar la _capa anteriorSeleccionar la capa s_uperiorSeleccionar todoSeleccionar por colorSeleccionar regiones continuasSeleccione el color personalizado de relleno del lienzoSeleccionar regiones elípticasSeleccionar regiones dibujadas a manoNo seleccionar nadaSeleccionar archivo de paletasSeleccionar regiones rectangularesSeleccionar regiones por coloresSeleccionar formas de la imagenSeleccionar la carpeta de intercambioSeleccione la cantidad de veces -a replicar el segmento seleccionado.Seleccione la cantidad de veces -a replicar la selección.Seleccione la cantidad de partes uniformes -en que quiere partir los segmentos en la selección.Seleccione la cantidad de partes uniformes -en que quiere partir el segmento seleccionado.Seleccionar las áreas transparentesSeleccione el navegadorSe_lección a rutaSelecciónEditor de selecciónMenú del editor de selecciónMáscara de selecciónProcedimientos de herramientas de selecciónMáscara de selecciónSelección a ruta (_Avanzado)Selección a rutaSelección: Selección: AÑADIRSelección: INTERSECTARSelección: REEMPLAZARSelección: SUSTRAERSensibilidadEstablecer el color de relleno del lienzoDefinir el color del canalDefinir la opacidad del canalEstablecer mapa de coloresEstablecer el color personalizado de relleno del lienzoEstablecer el tamaño del lienzo de la imagenEstablecer la resolución de impresión de la imagenDefine al elemento como exclusivo enlazadoDefine al elemento como exclusivo visibleEstablecer el tamaño de borde de capaDefinir el nombre desde el _textoDefinir la opacidadDefinir el color de fondoDefinir el color de frenteDefinir el elemento como enlazadoDefinir el modo de la capaDefinir la opacidad de la capaDefinir preservar transEstablece el límite superior de la memoria que cada imagen utiliza para guardar las operaciones en la pila de deshacer. Independientemente de esta configuración solo pueden deshacerse tantos niveles deshacer como este configurado.Establece el navegador usado por el sistema de ayuda.Establece el color de desplazamiento del lienzo usado si el modo de desplazamiento está definido como personalizado.Define el navegador externo que se usará. Esto puede ser una ruta absoluta o el nombre de un ejecutable que se encuentre en la ruta del usuario. Si el comando contiene «%s» será reemplazado con la URL, sino la URL será añadida al comando con un espacio separando a ambos.Establece el nivel de interpolación utilizado para el redimensionado y otras transformaciones.Establece la forma en que se muestra la transparencia en las imágenes.Establece la cantidad mínima de operaciones que pueden ser desechas. Más niveles de deshacer se mantienen disponibles hasta que se alcanza el límite de niveles de deshacer.Definir el modo del cursor que utilizará El Gimp.Establece la resolución horizontal del monitor, en puntos por pulgada. Si se establece a 0, se fuerza una consulta al servidor X para obtener la resolución horizontal y vertical.Establece la resolución vertical del monitor, en puntos por pulgada. Si se establece a 0, se fuerza una consulta al servidor X para obtener la resolución horizontal y vertical.Establece el formato de píxel de los cursores que El Gimp usará.Establece el tamaño de la vista previa usado para las vistas preliminares de las capas y los canales en los diálogos nuevos creados.Establece el tamaño del cuadriculado utilizado para mostrar la transparencia.Establece el tamaño de la vista previa de la navegación disponible en la esquina inferior izquierda de la ventana de la imagen.Obtiene el tamaño de las vistas previas en el Histórico de deshacer.Establece el tamaño de las miniaturas que se muestran en el diálogo Abrir. Tenga en cuenta que El Gimp no puede crear miniaturas si las vistas previas de capa están desactivadas.Establece la localización del archivo de intercambio. El Gimp utiliza un esquema de reserva de memoria basado en mosaicos. El archivo de intercambio se utiliza para intercambiar mosaicos rápida y fácilmente hacia y desde el disco. Tenga en cuenta que el archivo de intercambio puede volverse muy grande fácilmente si El Gimp es utilizado con imágenes grandes. También, las cosas puede ponerse horriblemente lentas si el archivo de intercambio es creado en un directorio que está montado sobre NFS. Por estas razones quizá sea conveniente colocar su archivo de intercambio en «/tmp».Establece el directorio de almacenamiento temporal. Los archivos aparecerán aquí durante el curso de ejecución de El Gimp. La mayoría de los archivos desaparecerán cuando se salga de El Gimp, pero algunos archivos podrían quedar, por lo tanto es mejor si este directorio no es uno que se comparte con otros usuarios.Establece el texto que aparecerá en las barras de estado de las ventanas de imágenes.Establece el texto que aparecerá en los títulos de las ventanas de imágenes.Establece si El Gimp debería crear vistas previas de las capas y los canales. Es estupendo disponer de las vistas previas en el diálogo de capas y canales, pero pueden ralentizar el trabajo con imágenes grandes.Tipo de sombraSombrasFormaForma:Contorno (angular)Contorno (con hoyuelos)Contorno (esférica)EnfoqueEnfocar el canalEnfocar la selecciónInclinarMagnitud X de la inclinación:Magnitud Y de la inclinación:Inclinar la imagen o selecciónInformación de la inclinaciónInclinando...Guiones cortosCombinación de teclasLa combinación de teclas «%s» ya la usa «%s» del grupo «%s».Mostrar la máscara de la capaMostrar las _reglasMostrar la barra de es_tadoMostrar las _barras de desplazamientoMostrar las _guíasMostrar el _límite de la capa_Mostrar la barra de menúMostrar la s_elecciónMostrar el contorno de la _brochaMostrar color de _fondo y primer planoMostrar las _guíasMostrar el _límite de la capaMostrar la barra de _menúsMostrar las _reglasMostrar _brochas, patrones y degradados activosMostrar imagen _activaMostrar la _rejillaMostrar _botones de ayudaMostrar el tamaño de imagenMostrar los límites interactivamenteMostrar uso de memoriaMostrar _mnemónicos del menú (teclas de acceso)Mostrar el cursor de la herramienta de _pinturaMostrar la s_elecciónMostrar la barra de es_tadoMostrar las _barras de desplazamientoMostrar un consejo la próxima vez que inicie El GimpMo_strar consejos al inicioMos_trar consejosMostrar el porcentaje de ampliaciónMostrar la relación de ampliaciónAchicar el canalEncoger selección_Ajustar encogiendoEncoger desde el borde de la imagenEncoger selección enAjustar encogiendoTamañoTamaño en la memoria:Tamaño de las _miniaturas:Tamaño:Ignorando «%s»: Versión de protocolo de El Gimp incorrecta.PequeñoVistas previas diminutasSuaveBordes suavizadosBorronearBorronear la imagenAjust_ar a las guíasAjustar a la re_jillaClaridad suaveSólidoOrigenEspaciadoEspaciado:Puntos espaciadosArchivo especialEspecifica como debería ser dibujada el área alrededor de la imagen.Velocidad de las hormigas marchantes en el contorno de la selección. Este valor está en milisegundos (menos tiempo indica una marcha mas rápida).Velocidad:Esférica (_decreciente)Esférica (i_ncremental)Púas [Spikes]:Espiral (sentido horario)Espiral (sentido horario)PartirPartir el segmento de degradado uniformementePartir los segmentos de degradado uniformementePartir el segmento uniformementePartir segmento _uniformemente...Partir segmento por la _mitadPartir los segmentos uniformementePartir segmentos _uniformemente...Partir segmentos por la _mitadCuadradoEst_ado y texto_PilaEstándarInicializando los añadidosInicializando el añadido: «%s» -Estado:Color estáticoGris estáticoEstado y descripciónEstado y textoDesviación est.:PunteadosID de fábrica_Trazar ruta [Stroke path]Tra_zar ruta...Canal de marcadoTrazar rutaTrazar selecciónLínea de trazadoTrazar rutaTrazar ruta con los últimos valoresTrazar ruta... [Stroke path]Trazar selección con los últimos valoresTrazar selección... [Stroke selection]Trazar utilizando una herramienta de pinturaEstilo de marco alrededor del texto de la barra de estadoSustraerExtraer de la selección actualSupermuestreoCarpeta de intercambio:_HerramientasTe_xtoHerramienta de te_xtoCarpeta temporal:PlantillasMenú de plantillasProcedimiento temporalTerminando el complemento: «%s» -TextoColor del textoEditor de textosCapa de textoTexto modificadoProcedimientos de textoEl GimpParece que el complemento del visor de la ayuda de Gimp falta en su instalación.La brocha activa. -Pulse para abrir el diálogo de brochas.El degradado activo. -Pulse para abrir el diálogo de degradados.La imagen activa. -Pulse para abrir el diálogo de imagen.El patrón activo. -Pulse para abrir el diálogo de patrones.El color de fondo de la rejilla, sólo se utiliza en el estilo de línea de guiones dobles.El intérprete del proceso por lotes «%s» no está disponible, el modo batch se desactivará.La codificación configurada para el nombre del fichero no puede ser convertida a UTF-8: %s - -Compruebe el valor de la variable de entorno G_FILENAME_ENCODING.El nombre de archivo «%s» no ha podido convertirse en una URI válida: - -%sEl color de frente de la rejilla.«gimprc» se utiliza para almacenar las preferencias personales que afectan al comportamiento predeterminado de El Gimp. Las rutas de búsqueda para las brochas, paletas, degradados, patrones, complementos y módulos también pueden configurarse aquí.La resolución horizontal de la imagen.La capa que ha seleccionado es una capa de texto pero ha sido modificada utilizando otras herramientas. Al editar la capa con la herramienta de texto se perderán estas modificaciones. - -Puede editar la capa o crear una capa de texto nueva desde sus atributos de texto.El nombre del directorio que contiene la configuración de usuario de Gimp no se puede convertir a UTF-8: %s - -Lo más probable es que su sistema de ficheros almacene los archivos en una codificación diferente a UTF-8 y no ha dicho esto a Glib. Por favor, establezca la variable de entorno G_FILENAME_ENCODING.«sessionrc» se utiliza para almacenar qué ventanas de diálogo estaban abiertas la última vez que salió de El Gimp. Puede configurar El Gimp para reabrir esos diálogos en la posición guardada.La miniatura en el diálogo Abrir será actualizada automáticamente si el archivo que se está previsualizando es más pequeño que el tamaño establecido aquí.El cache de mosaico es utilizado para asegurarse de que El Gimp no desperdicie mosaicos entre la memoria y el disco. Establecer este valor como alto hará que El Gimp utilice menos espacio de intercambio, pero también causa que El Gimp utilice más memoria. Normalmente, un tamaño de caché mas pequeño causa que El Gimp utilice más espacio de intercambio y menos memoria.La unidad utilizada para las coordenadas de visualización cuando no se encuentra en modo de punto por punto.«unitrc» se utiliza para almacenar su base de datos de unidades. Puede definir unidades adicionales y usarlas tal como usa las unidades predefinidas: pulgadas, milímetros, puntos y picas. Este archivo se sobreescribe cada vez que sale de El Gimp.La resolución vertical de la imagen.La opción de tipo de ventana que es utilizada en las ventanas empotrables. Esto podría afectar la forma en que su administrador de ventanas decora y maneja las ventanas empotrables.La opción de tipo de ventana que es utilizada en la caja de herramientas. Esto podría afectar la forma en que su administrador de ventanas decora y maneja la ventana de la caja de herramientas.TemaCarpetas de temasTemasHay %d imágenes con cambios no guardados:No hay suficientes capas visibles para combinar hacia abajo.Siempre hay un balance entre uso de memoria y velocidad. En la mayoría de los casos, El Gimp opta por la velocidad por encima de la memoria. Sin embargo, si la memoria es un gran problema intente activar esta opción.No hay una capa o canal activo desde donde se pueda copiar.No hay una capa o canal activo desde donde cortar.No hay una capa o canal activo donde se pueda trazarNo hay una capa o canal activo adonde se pueda trazar.No hay ninguna imagen con cambios no guardados:Debería haber un archivo llamado «%s». Por favor compruebe su instalación.Ha ocurrido un error analizando su archivo «%s». Se usarán los valores predeterminados. Se ha creado un resguardo de su configuración en «%s».Este archivo guarda una colección de tamaños estándar de medios que sirven como plantillas de imágenes.En esta carpeta se buscan las plantillas de las imágenes.Esta carpeta se utiliza para buscar los temas -instalados por el usuario.Esta carpeta se utiliza para almacenar las tipografías que desea que sean visibles sólo en El Gimp. El Gimp revisa esta carpeta además de la carpeta global del sistema de la instalación de tipografías cuando está buscando tipografías. Sólo utilice esta carpeta si realmente quiere tener tipografías exclusivas para El Gimp, de otro modo póngalas en su directorio de tipografías global.Esta carpeta se utiliza para almacenar los archivos de parámetros para la «Herramienta de Curvas».Esta carpeta es utilizada para almacenar los archivos de parámetros para la herramienta de niveles.Esta carpeta se utiliza para guardar las opciones de las herramientas.Esta carpeta se utiliza para almacenar los guiones creados e instalados por el usuario. El Gimp revisa esta carpeta junto con la carpeta global de guiones de El Gimp cuando está buscando guiones.Esta carpeta se utiliza para almacenar los módulos DLL temporales o no soportados por el sistema creados por el usuario. El Gimp revisa esta carpeta junto con la carpeta global de módulos de El Gimp cuando está buscando los módulos que se cargan durante el inicio.Esta carpeta se utiliza para almacenar las adiciones al entorno de complementos, creadas por el usuario, temporales o no soportadas por el sistema. El Gimp revisa esta carpeta además de la carpeta global de entorno del sistema cuando está buscando archivos de modificación del entorno de complementos.Esta carpeta se utiliza para almacenar los complementos temporales o no soportadas por el sistema, creadas por el usuario. El Gimp revisa esta carpeta junto con la carpeta global de complementos de El Gimp cuando está buscando complementos.Esta carpeta se utiliza para almacenar las brochas definidas por el usuario. El Gimp revisa esta carpeta además de la instalación global de brochas de El GIMP cuando está buscando brochas.Esta carpeta se utiliza para almacenar los degradados definidos por el usuario. El Gimp revisa esta carpeta junto con la instalación global de degradados de El Gimp cuando está buscando degradados.Esta carpeta se utiliza para almacenar las paletas definidas por el usuario. El Gimp revisa esta carpeta junto con la instalación global de paletas de El GIMP cuando está buscando paletas.Esta carpeta se utiliza para almacenar los patrones definidos por el usuario. El Gimp revisa esta carpeta junto con la instalación global de patrones de El Gimp cuando está buscando patrones.Esta carpeta se utiliza para almacenar temporalmente los búferes de deshacer para reducir el uso de memoria. Si El Gimp se cierra de forma anormal los archivos del tipo gimp<#>.<#> pueden quedar guardados en esta carpeta. Estos archivos son inútiles en distintas sesiones de El Gimp y pueden ser destruidos sin problemas.Esta carpeta contendrá una serie de archivos importantes. Pulse sobre uno de los archivos o subdirectorios en el árbol para obtener más información acerca del elemento seleccionado.Esto es la distancia en píxeles desde donde el ajuste a la rejilla y la guía se activa.Este programa se distribuye con la esperanza de que sea útil,pero SIN NINGUNA GARANTÃA, incluso sin la garantía MERCANTIL implícita o sin garantizar la CONVENIENCIA PARA UN PROPÓSITO PARTICULAR. Véase la Licencia Pública General de GNU para más detalles.Este programa es software libre, puede redistribuirlo y/o modificarlo bajo los términos de la Licencia Pública General de GNU tal y como la publica la Free Software Foundation; tanto en la versión 2 de la licencia, o (a su elección) cualquier versión posterior.Este campo de entrada de texto está limitado a %d caracteres.Esta herramienta no tiene opciones.Esta ventana tiene %d solapas abiertas. Cerrar la ventana cerrará también todas sus solapas.Umbral B/NEl umbral no funciona sobre capas indexadas.Umbral:Miniatura %d de %dTamaño del caché de _mosaico:Tamaño del caché de mosaico:Alabeo:DiminutoTítulo y estadoA la _rutaPara editar una tecla de acelerador, pulse en la fila correspondientes y teclee un acelerador nuevo, o pulse la tecla de retroceso para borrar._JuguetesActivar máscara rápidaActivar máscara rápidaDemasiados mensajes de error.Opciones de herramientaMenú de opciones de herramientaActivar herramienta %s_Opciones de herramientaIcono de herramientaIcono de herramienta con cruzCaja de herramientasCaja de herramientasMenú de la caja de herramientasHerramientasMenú de la caja de herramientasHerramientas como «Selección difusa» y «Relleno» buscan regiones basándose en un algoritmo de búsqueda de semilla. El relleno de semilla arranca en el píxel seleccionado inicialmente y avanza en todas direcciones hasta que la diferencia de la intensidad del píxel del original es más grande que el umbral especificado. Este valor representa el umbral predeterminado.Tr_ansparenciaTransferir alfa a la mascaraTransformarTransformar el canalDirección de la transformaciónTransformar la capaTransformar la rutaTransformar la capa de textoProcedimientos de herramientas de transformaciónTransformar capaTransformar rutaTransformar selecciónTransformaciónProcedimientos de transformaciónTransformando...Traducido porTransparenciaTipo de _transparencia:Onda triangularColor verdaderoTipoTipo %sTeclee un acelerador nuevoTeclee un acelerador nuevo, o pulse la tecla de retroceso para borrarNo se puede añadir una máscara de capa dado que la capa ya posee una.No se puede cortar o copiar porque la región seleccionada está vacía.No se ha podido abrir un archivo de intercambio de prueba. Para prevenir la pérdida de datos compruebe la ubicación y los permisos del directorio de intercambio definido en sus preferencias (actualmente es «%s»).Imposible abrir el archivo de intercambio. El Gimp ha agotado toda la memoria y no puede usar el archivo de intercambio. Algunas partes de sus imágenes pueden estar corrompidas. Intente guardar su trabajo usando nombres de archivo diferentes, reinicie El Gimp y compruebe la ubicación del directorio de intercambio en sus Preferencias.No se puede ejecutar la retrollamada %s. El complemento correspondiente debe haber fallado.IndefinidoDeshacerHistorial de deshacer_Historial de deshacerUnidadesDesconocidoTipo de archivo desconocidoTipo de archivo de paleta desconocido: -%sDescargarSin nombreSin nombreUsar «p_unto por punto» por omisiónUsar combinaciones de teclas _dinámicasUtilizar un navegador _web en su lugarUtilizar todas las capas visibles cuando se está achicando la selecciónUsar paleta en blanco/negro (1-bit)Utilizar color desde el degradadoUsar paleta personalUsar la ventana de informaciónUsar paleta optimizada para webInforme de la instalación de usuarioInterfaz de usuarioVentana de utilidadesValorValor:Modif. vectoresVersión %s realizada para usted porVersión:VerticalDeslizamiento vertical de la primera línea de la rejilla, puede ser un número negativo.Espacio vertical de las líneas de la rejilla.Muy grandeMuy pequeñoVistaVer como re_jillaVer como _listaVer como rejillaVer como listaClase visual:Profundidad visual:Advertencia: Ha fallado la carga de datos: -%sAdvertencia: Ha fallado el guardado de datos: -%sNavegador webNavegador webBienvenido a -la instalación de usuario de El Gimp %d.%dCuando está activado el diálogo automáticamente sigue a la imagen en la que está trabajando.Cuando se encuentre activado El Gimp mostrará mnemónicos en los menús.Cuando está habilitado todas la herramientas de pintura mostrarán una vista previa del contorno de la brocha actual.Cuando está habilitado una imagen se volverá la imagen activa cuando su ventana de imagen reciba el foco. Esto es muy útil para los administradores de ventanas que estén utilizando «pulsar para obtener el foco».Cuando está activado, los diálogos mostrarán un botón de ayuda que da acceso a la página de ayuda relacionada. Sin ese botón, la página de ayuda puede verse al pulsar F1.Cuando se encuentre activado, los menús podrán ser separados.Cuando se encuentre activado, al pulsar la tecla F1 se abrirá el navegador de la ayuda.Cuando se encuentre activado El Gimp no guardará la imagen si no fue modificada desde que se la abrió.Cuando se encuentre activado El Gimp utilizará una ventana de información diferente por cada vista de imagen.Cuando se encuentre activado, se consultará al servidor X por la posición actual del ratón con cada evento de movimiento, en vez de confiar en la sugerencia de posición. Esto significa que pintar con brochas grandes debería ser más preciso, pero puede ser más lento. Perversamente en algunos servidores X al activarse esta opción se obtiene un pintado más rápido.Cuando se encuentre activado, el cursor se mostrará sobre la imagen cuando se use una herramienta de pintura.Cuando está activado la rejilla es visible de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar la rejilla».Cuando está activado las reglas están visibles de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar las reglas».Cuando se encuentre activado, la ventana de la imagen se re-dimensionará automáticamente a sí misma cuando se aumenten o achiquen las imágenes.Cuando se encuentre activado, la ventana de la imagen se re-dimensionará automáticamente a sí misma cuando cambie el tamaño físico de la imagen.Cuando está activado el límite de la capa es visible de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar el límite de la capa».Cuando está activado la barra de estado es visible de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar la barra de estado».Cuando está activado las reglas están visibles de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar las reglas».Cuando está activado las barras de desplazamiento están visibles de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar las barras de desplazamiento».Cuando esté activado, la brocha seleccionada se usará para todas las herramientas.Cuando esté activado, el degradado seleccionado se usará para todas las herramientas.Cuando esté activado, el patrón seleccionado será usado para todas las herramientas.Cuando está activado la selección es visible de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar la selección».Cuando está activado la barra de estado es visible de forma predeterminada. Esto también puede ser activado con el comando «Ver->Mostrar la barra de estado».Cuando se encuentre activado esto asegurará que cada píxel de una imagen se asigne a un píxel de la pantalla.Cuando se encuentre activado esto asegurará que la imagen se vea completa después de abrirse, de otro modo será mostrada con una escala de 1:1.Cuando está activado puede cambiar las combinaciones de teclas de los elementos del menú presionando una combinación de teclas mientras el elemento del menú está seleccionado.BlancoEl balance de blanco sólo funciona sobre capas con color RGB.AnchuraAnchura:Administración de la ventanaHints del administrador de ventanasPosiciones de las ventanasGuardando «%s» -XError XCF: Se encontró una versión %d de archivo de tipo XCF no soportadaAviso XCF: La versión 0 del formato de archivo -XCF no guardaba mapas de colores indexados -correctamente. Sustituyendo mapa de grises.YAmarilloAmarillo:Está intentando crear una imagen con un tamaño de %s.Puede soltar los diálogos empotrables aquí.Tendría que haber recibido una copia de la Licencia Pública General GNU junto con este programa. Si no ha sido así escriba a la Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,USA.Necesitará reiniciar El Gimp para que los siguientes cambios tengan efecto:Su instalación de Gimp es incompleta:Su configuración de dispositivos de entrada se restablecerá a los valores de fábrica la siguiente vez que inicie el Gimp.Sus combinaciones de teclas serán restablecidas a los valores de fábrica la próxima vez que inicie Gimp.Su configuración de ventanas se restablecerá al valor de fábrica la próxima vez que inicie el Gimp.Comportamiento de la redimensión y la ampliaciónAumento 1:1Aumentar todoAumentarDisminuirRelación de aumentoRelación de aumento:Ampliar _todo_AmpliarRe_ducirAumentar todoFactor de aumento: %d:1Ampliar imagen cuando cambia el tamaño de ventanaAumentarAumento y disminuciónDisminuirAumento:[ Imagen Base ]A_cerca de_Adquirir_Añadir color desde el fondo_Añadir color desde el frente_Añadir solapa_Añadir a selecciónOpciones _avanzadas_Aerógrafo_Todos_Anclar la capa_Anti-aliasRotación _arbitraria..._Artísticos_Aspecto_Auto_BColor _SPColor del _fondo:N_egro (Transparencia total)/Función de _mezcla para el segmentoFunción de m_ezcla para la selección_Desenfoque [Blur]_Brillo:_Brocha_Brochas_Brochas, patrones y degradados_Relleno_Búfer_Por color_Por selección de colores_CEstilo de _capuchón: [Cap]_CanalesL_impiar errores_Vaciar historial de deshacer_Clonar_Cerrar_Cerrar solapa_NubesHerramientas de _color_Colores_Configurar el color y la opacidad..._ContextoAyuda _contextual_Copiar_Copiar con nombre..._Crear una imagen desde la plantilla..._Recortar y redimensionarRe_cortar la imagen_Curvado_Curvas...Color de los cuadros o_scurosColores pre_definidos_Borrar brocha_Borrar búfer_Borrar canal_Borrar color_Borrar degradado...B_orrar imagen_Borrar la capaB_orrar paletaB_orrar rutaB_orrar patrón..._Borrar las opciones guardadasB_orrar segmentoBo_rrar selecciónB_orrar la plantilla_Desaturar_Desprender solapaEstado del _dispositivo_Diálogos_Descartar cambios_Descartar información de texto_DistorsionesP_unto por punto_Duplicar_Editar_Editar brocha..._Editar los atributos del canal..._Editar color..._Editar degradado..._Editar atributos de capa..._Editar paleta..._Editar atributos de la ruta..._Editar patrón..._Editar la plantilla...Selección _elíptica_Activar las vistas previas de las capas y los canales_Monumental_Ecualizar_Goma de borrarColor _PP_Archivo_Rellenar con:_Ajustar imagen a la ventanaA_planar la imagen_VoltearIn_vertir segmento simétricamente_Invertir selección simétricamente_Flotante_Tipografía_TipografíasColor de _frente:Selección _libre_G_Genérico_Gigantesco_Degradado_DegradadosEscala de _grisesCopia en escala de _grises de la capa_Agrandar... [Grow]_Guías_DurezaA_yuda_Horizontal:_Tono:_Enorme_Icono_Icono:_Imagen_Imágenes_Importar_Importar paleta..._Indexado...Ventana de _información_Intersectar con selección_InvertirE_stilo de la unión:_Grande_Capa_CapasC_apas, canales y rutasColor del punto final _izquierdoPunto final derecho del vecino _izquierdo_Niveles...Color de los cuadros c_larosE_fectos de luz_Luminosidad:E_stilo de la línea_Lineal_Enlazado_Cargar color izquierdo desde_Bajar canal_Bajar capaBajar _la ruta_M_Manualmente_Mapa_Máscara_Máscara a selecciónNúmero _máximo de colores:_Medir_MedianoCo_mbinar paletas..._Combinar rutas importadas_Migrar la configuración de usuario de El Gimp 2.0Material _variadoLímite de la _mitra: [Miter limit]_ModoGestor de _módulos_Mover_Nombre:_Naturaleza_Brocha nueva_Nuevo canalCanal _nuevo..._Entrada nueva...Degradado _nuevoCapa nuevaCapa _nueva...Paleta _nueva_Ruta nueva [path]_Ruta nueva...Patrón _nuevoPlantilla _nueva...Vista _nueva_Nuevo...Consejo s_iguiente_Ruido_Ninguno_Desplazamiento..._Opacidad_Abrir imagen_Abrir...Color de _ajuste:Herramienta de _pintura_Pincel_Paleta_Pegar_Pegar búfer_Pegar con nombre..._Rutas_Patrón_Perspectiva_Posterizar..._PreferenciasVista _previaTamaño de la vista _previaC_onsejo anteriorTamaño de la im_presión..._PropiedadesMáscara _rápida activa_Salir_R_RGB_Radio_Elevar canal_Elevar capaEleva_r la rutaEleva_r las vistas_Elevar o abrir imagen_Reasignar combinación de teclasSelección _rectangular_Rehacer_Rehacer %s_Refrescar brochas_Refrescar degradados_Refrescar paletas_Refrescar patrones_Quitar colores sin usar de la paleta final_Renderizado_Reemplazar_Replicar segmento..._Replicar selección..._Recargar la lista de tipografías_Restablecer visibilidad y orden_Restablecer la configuración guardada del dispositivo de entrada a los valores de fábrica_Restablecer las combinaciones de teclas a los valores de fábricaR_estaurar la posiciones de ventana guardadas a los valores predeterminados_Recuperar opciones desdeColor del punto final _derechoPunto final izquierdo del vecino de_recho_Rotar_Saturación:_GuardarG_uardar color izquierdo enG_uardar opciones enGuardar la configuración del dispositivo de entrada al _salir_Guardar las combinaciones de teclas al salirG_uardar posiciones de ventanas al salirE_scalarE_scalar la imagen...E_scalar capa..._Escalar las rutas importadas para ajustar la imagen_Seleccionar_SelecciónEditor de _selecciónHerramientas de _selección_Forma_Enfocar [Sharpen]_Mostrar la selección de la imagen_Mostrar en la caja de herramientas_Sinusoidal_Pequeño_Emborronar [Smudge]Distancia del a_juste:_Trazar selección [Stroke selection]Trazar selección... [Stroke selection]_Sustraer de selecciónEs_tilo de solapaPlan_tilla:Plan_tillas_Texto_Umbral..._Diminuto_Consejo del día_Herramienta_Herramientas_Transferir el canal alfa de la capa_TransformarHerramientas de _transformaciónDes_hacerDe_shacer %s_Vertical:_Ver_Visible_WebNavegador _web:B_lanco (Opacidad total)_Balance de blanco_Anchura:_Volver al principioResolución _X:_X:E_xts_YResolución _Y:_Y:_AmpliaciónA_mpliación (%s)colorescopiarpppse esperaba «yes» o «no» para la señal booleana %s, se obtuvo «%s»Error fatal de análisisescala de grisesescala de grises-vacíopulgadapulgadasindexadoindexado-vacíocadena UTF-8 inválidavalor inválido «%ld» para el tipo de iconovalor inválido «%ld» para la señal %svalor inválido «%s» para el tipo de iconovalor inválido «%s» para la señal %smilímetromilímetrosminuton/aporcentajepicapicaspíxelpíxelespíxeles/%apíxeles/%spuntopuntossegundotips-locale:esFrancisco Javier F. Serrador -Pablo G. del Campo -Francisco Vilael valor para la señal %s no es una cadena UTF-8 válidamientras se analizaba la señal «%s»: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/eu.gmo gimp-2.2.9/po/eu.gmo --- gimp-2.2.8/po/eu.gmo 2005-01-22 17:33:14.000000000 +0100 +++ gimp-2.2.9/po/eu.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,265 +0,0 @@ -Þ•¹ä%M¬Kàdád&÷dGe9feG eAèeN*fiyf<ãfk g@Œg2Íg;hPo Fo Po]o1rp3¤pØpÞpñpøpq q -&q1qBqARqJ”q<ßqr,rEr]rerjrsr…r -–r¡rºr&Ñr$ørs$s*s1s7s"?s bsnsssys~sŽss®sÂs7Ös t t)t2t9t At NtZt btottt ytƒt  t®tCµt7ùt=1u@oud°uv3v3Iv}v<‘v#Îv!òvw1w Kw Wwawjw‚wšw²w,Äwñwùw xx :x[xpxyx ‚xx –x.¤x5Óx5 y,?yly2ˆy»yÖyOòy BzPzlz„z•z›zªz °z¾z Ôzáz0úz+{2{M{j{+s{Ÿ{²{Å{Î{ -×{â{||&|9| B|N|Ð|Ù| á|î| }"}B}W}`} -r}}} -œ})§}Ñ},ë}~#2~#V~!z~%œ~Â~á~è~ü~"#8-\Š% ÆÜô ù€ -!€ -,€7€O€V€ e€ -r€}€-„€²€¹€ ½€Ç€Ì€Ò€Ù€%߀! '4 GUgv†ž» -Í-Ø ‚ ‚ ‚ (‚ -5‚ @‚M‚f‚n‚‚”‚®‚ ·‚Á‚ Ñ‚Û‚?â‚"ƒ 3ƒ=ƒLƒRƒ -hƒ -sƒ ~ƒ -ˆƒ “ƒŸƒ¨ƒ¼ƒ ˃Ùƒùƒ „„&„9„R„ h„r„…„ š„¨„¸„Ó„ â„ ð„ -ü„…*….C…r…Ž…#—…"»…Þ…û…&† A†M†a†,j†#—†»† †Іã†'ý†%‡B‡_‡u‡‘‡F«‡Tò‡GˆNˆdˆ wˆˆ˜ˆ µˆÖˆåˆôˆ‰ ‰$‰==‰6{‰<²‰Aï‰71Š9iŠc£Š9‹BA‹=„‹f‹>)ŒChŒJ¬Œg÷Œ_o– ¦ ³ ÁÏâõŽŽ.ŽIŽfŽmŽŒŽ§Ž ¾ŽÌŽ ÑŽ -ÞŽ éŽóŽ  -9Iey† Ž›£© -¯Oº - -”ªà Úæ ïü‘ ‘‘ 5‘ B‘O‘`‘t‘u‹‘Ì’ÅÎ’c”“ ø“z”€”†”rŽ”••!•3•C•X•&i•'• ¸• Ä• ΕØ•ç• ì•ö•ü•– ––$–6–<–M–Q–k–‚– ‹–•–œ– ¤– ±–½–Í– -Ò–HÝ– &—0—@— -H—BS—–—š—1©—Û—à—å— -ì—÷—`ü—0]˜Ž˜”˜ -¦˜ -±˜¼˜Ó˜ã˜™™ -™ -;™HF™™ –™¢™±™ À™Í™ã™ ø™ š šš'š.š 6šDš ]šišƒš™šµš ¹š Çš3Ôš6›?› N›X›p›„›$“›¸›Ó› è› ö› œ(8œ+aœ)œ*·œ!âœ/4;J*[†-½ž ОÚžàžðž Ÿ Ÿ3ŸFŸWŸgŸ Ÿ ŒŸ™Ÿ·ŸÖŸöŸ #  * 6 K _ @g ¨ -¯ Ý  â ï ö  û  ¡¡ '¡ 1¡=¡ T¡b¡ z¡†¡ -œ¡§¡¼¡Ä¡Í¡Õ¡ í¡û¡ -¢¢'¢-¢5¢R¢o¢w¢ -~¢ ‰¢ –¢¤¢¹¢Í¢à¢û¢£ £)£/£4£:£$P£u£‡£›£ª£¹£Á£ Æ£ -Ó£ -Þ£é£ ù£¤¤+¤I¤e¤l¤ -u¤ €¤Œ¤ž¤ ²¤ ¼¤ƤϤ à¤,í¤¥.¥E¥)b¥Œ¥¤¥©¥¸¥¿¥Ð¥Bã¥A&¦h¦o¦~¦ Ž¦›¦­¦µ¦„½¦B§Q§Y§ -b§m§„§¤§"ç!槨!¨ 9¨ C¨M¨]¨ l¨z¨V‚¨+Ù¨(©.©4© J©V©p©%ˆ© -®©¹©Á©Щä© -ô©ÿ©ª ª%ª 9ª CªQª Wªdªiªyª–ª´ªƪ -̪תߪ -ïªúª ««« 5«A« V«!b«„« “«¡«¼«ë?Ë« ¬¬"¬6¬F¬c¬¡€¬4"­W­`­-h­ –® ®©® ¹®#î-ç® ¯ !¯+¯3¯J¯S¯g¯{¯ „¯‘¯š¯ ¯¶¯ ίدܯ í¯ ÷¯!° #°1°8° @°N° c°o° -‚°°Ÿ°»°À° Æ°!Ó°õ°!±#5± Y±9f±U ±=ö±<4²=q² ¯²»²¿²IJ(ɲ,ò² -³J*³ u³‚³‘³ «³ ¸³ųà³ ú³;´B´ Q´ ^´j´„´ ”´ ¢´®´¶´ Ô´Þ´ù´µ(µ<µ+Oµ{µ‚µ ‘µ žµ «µ ·µ õϵäµûµ6¶J¶R¶ Y¶7f¶ž¶¼¶Ѷض ç¶ ô¶·· 0·<·Q· -W·b·g· |·ˆ· -Ÿ· ª·¶·È·4á·¸3¸F¸c¸Ev¸ ¼¸ ʸ׸ï¸ õ¸ ¹ ¹ -¹&¹C¹ -K¹V¹_¹f¹x¹ -€¹‹¹ ¹ °¹½¹ع칺 º&º=ºTºkºŠº¡º ºº ȺÕºêºüº »&»@»Z»u»»=¦»6ä»S¼Jo¼ º¼ļÕ¼ä¼ þ¼ -½½.½A½ U½a½z½Œ½ ½¶½нë½¾´¾)̾Nö¾KE¿=‘¿ƒÏ¿*SÀ?~À`¾À2Á¯RÁÃ4Ä/:ĺjÄ%Å-Å3Å:ÅBÅRÅdÅjŇŠœÅ¨Å¸Å ÉÅÖÅ ëÅùÅ Æ*Æ?ÆOÆ^ÆoÆˆÆœÆ¡Æ§Æ­Æ¾Æ ÅÆÒÆ ÙÆæÆìÆóÆûÆ8Çv=Ç´Ç»Ç ÁÇ!âÇÈÈ8ÈSÈlȉȦȭȶÈÊÈäÈ ëÈ øÈÉ É É(É9É#BÉ fÉ tÉ~ÉÉ¡É -¦É -±É¼ÉÌÉ1ÕÉ7Ê5?Ê!uÊÁ—ʨYË*Ìæ-ÍÎ3Î 9ÎGÎ5Nί„Î14Ï0fÏ0—Ï1ÈÏCúÏS>Ð,’Ð2¿Ð òÐAÒAUÒ*—Ò«ÂÒínÓ \ÔÎiÕ£8ÖªÜÖ§‡×§/Ø×ؘÚÙèsÚï\Û2LÜÜ ™Ü-£Ü -ÑÜÜÜïÜõÜúÜ ÝÝ(Ý8Ý >ÝHÝZÝnÝ~ÝݧݶÝÆÝ ÕÝ -âÝíÝòÝ;ûÝ;7Þ sÞ}Þ ‚ÞÞ•ÞÞ¯Þ¶Þ¾Þ3ÇÞûÞß ß&ß-ßJßSß \ßQhß$ºß5ßßPàGfà-®àjÜáoGâe·âjã~ˆãpäoxäwèät`åtÕå`J扫æ5çµç»çÁçÈç Ùç6ççoèŽè•è#èÈÁèGŠéÒéééòéûéê - ê ê#ê5ê =êKêTêZê iêwê}ê€ê Ÿê ÀêÍêÔê×êçê ùêëë ë $ë1ë7ë>ë FëRë Uë_ëfëoëxë{ëëŠë ë ¸ë -ÅëÐëÖë -ßëêëîëñë -õëìì ì5ìFì Xìbìrìwì~ì †ì”ì ©ìÊì -êì õìí íííí !í +í5í;í Bí.Píí“œí0ï0IïTzï;ÏïO ðI[ðT¥ðqúð=lñiªñMò3bò3–ò^ÊòN)ó4xó?­ó3íóR!ô6tôE«ô ñô ûô õ -õõ1õGõ Põ -^õiõ*‰õ´õ Êõ2×õ -öö3ö Kö -Xö -cönösö‚öG–öŒÞö9k÷+¥÷ Ñ÷Ý÷ï÷ ø øø 5øCø Yøføzøø¨ø(¿ø9èø"ù;ùDùaùxùŒù ù½ùÔùèùüùú6ú>ú -Gú!Rú tú €ú Œú@šú.Ûû3 -ü>üCüTüZüwü€üü–ü ®ü=¼üHúü3Cýwý‰ý¤ýÂý ÊýÖýëýþ þ$$þIþ2cþ4–þËþÒþØþ àþ -êþ+õþ !ÿ-ÿ4ÿ<ÿDÿYÿiÿ|ÿÿ=£ÿáÿñÿ#%- 5B GQah -m!xš­F²>ù?8;x^´2/N~A” Ö&÷;Wi -r} ¾Ú-ô"):#Ko¢ª ²¾Æ,Õ:>=*|§9Æ&|CÀ+Ó ÿ :BQYj†"šC½ -* J>V•¨ » Ç Ñ'Þ  6  -M  X zf á ê  ò  -# -#A -e - z -† -š -'« - Ó -.à - >* i '‡ $¯ 6Ô ) (5 ^ f }  ¤ &» +â  '% M f ~ „ 0ž  Ï  Ü !é  ) -9D.KzŠŸ¥ ¬¹)¿ é -4D[m€¼Î?× 19 U ao Ž˜­Â Ý çó G^ u‘˜ ²ÀÐáù - +>Oo‡  ºÛõ:M`’¨ ¿Ë.Þ9 G e"q"”· Ð+ñ ' -99D&~ ¥¯¿%Ø/þ.%Kq$Š%¯RÕ[(„£ ¹Å,ÞB #N#r– ¯»+×NIRNœRëE>M„€ÒLST Hõo>M®OüUL}¢ 2G] r~™¬Ëëü -8T)[… ºÊ Ñ ß íú   < I \ x Œ ’ š £ (¹  â  ï ü K![!Ïj!%:"`"{"‹"”"¬"±" Á"Ï"ï" ÿ" # ##7#„[#ïà#ëÐ$Œ¼% I&„W&Ü&â&ƒë& o' 'š'¬'Ã'ã'>ö'>5('t( œ( ¨(´(Ä( Ê(Ö(Ý(å(ì(û( ) )%)6):)T) r) ~)‹)“)œ)²)Ã) Ú) è)Rõ) -H*S*e* n*Nz* -É*Ô*Iê* 4+@+G+ -O+Z+xa+4Ú+,, ,,8,"J,m,3,µ,Õ, ð, þ,Z -g- o-}-- -±-É-á-ò- -... '.1.B.`.r.‘.¦.Á.Ç.Ù.Mê.48/m/ -„//¦/·/Æ/å/00((0'Q0.y01¨0-Ú0-1$61@[1œ1«1Á1=Ú1 23%2 Y3 g3s3z3‹3¡3°3:·3ò34$4B4S4e4„4Ÿ4»4Ø4ï4 ÷45#5@5GH55)—5Á5Ç5×5ß5ç5ö56 -6 (656 O6]6 z6ˆ6 ¥6²6Î6Ö6ß6ç67 7%7:7X7g7n7Ž7®7·7À7 Ï7 Ü7è78818P8k8z8‚8Š88—8,²8ß8õ8 99/9 89E9Z9l9€9œ9¯9#Æ9#ê9!:0: ?: -I: T:a:y: ’: Ÿ: ­:¹:Ð:9á:;/;M;2m; ; -¿;Ê;á;é;û;E<C]< -¡<¬<¾<Ô<æ<==’=«= ½= É= Ö=ã=,>1/>0a>,’>¿>Ü> ø> ??$?8? I?cS?-·?5å?@#@A@T@o@-Ž@¼@Å@Ì@ß@ú@% -A0ABA JAWA -lAwA‰A‘A¤AªA¾AÜAöAB -BB!B#0BTB \BhBpB BœB ¶B,ÂBïBþBC+C3C4Z5ÊZK[jL[8·[æð[×]Dë^;0_Öl_C`K`Q`X```p` ƒ`‘`°`É`Ø`ï` aa2aGa4ba—a²aÍaÜaîa bb$b-b4bJb Pb\bmbb ‡b‘b˜b< brÝb PcZc.ac/c Àc$ácd! d%Bdhdƒd -Œd—d¬d ÈdÔdåd ôdþd ee-e5e Ne \ehexee—e ©e¶eÇeBÌeIfAYf$›fÒÀfª“gB>hi‰j¨j­j¼j6ÂjÆùj.Àk.ïk.l.MlD|lmÁl0/mA`mA¢mJänJ/o4zoůoup&vqèr½†sÉDt½u½ÌuŠv¨¤wMxàUy36zjzˆz.z¼zÂz ×zázèzýz {!{4{<{E{U{m{}{Œ{ -©{ ´{ -Â{ Í{Ú{ë{ð{?ù{B9| ||Š|’| £| ­|·| -Ð| Û| å|:ï|)*} -T}_}f}n} ˆ} ’}œ}`­}0~E?~P…~_Ö~N6“…€{i•yÿ¤y‚›ƒƒºƒ–>„™Õ„ˆo…Oø…kH†´†6‡<‡ E‡O‡ b‡Gp‡†¸‡?ˆEˆ6LˆŃˆ>I‰'ˆ‰ °‰º‰ʉÛ‰ì‰þ‰Š%Š6ŠPŠaŠhŠ{Š ‹Š˜Š›ŠºŠ ÙŠãŠëŠîŠ‹‹&‹8‹ ;‹ G‹ U‹b‹ -k‹ v‹ƒ‹†‹‹•‹ ‹©‹ ¬‹ ¶‹Ëã‹ Œ -ŒŒ $Œ 0Œ<Œ@ŒCŒ GŒSŒ\ŒdŒGhŒ°Œ ƌҌåŒíŒ õŒÿŒ)&(P y ƒ–› ¦¬µ¾ÄÊ3Ù) Ž«Ûp¯÷¹sUs¾šxѨqš²í´ YÇ~Ö"„¿eôÕe¦‰¤ŸÅdãGÔ¹» ûäI™V]7fü³—¬°µ>Q•W…HÅ)C1â7¬t%¹"L–xÀ!]Óhj f'ICŸÿ6à2Fö? „œ -[ûë§ô4ØD‚:õ59ä†j£%/"p@ÿ* sníLýrz祵ñrñ œ)Ê,è\iS ¸·?|¢~ç@-së"”d[ÔÜ·M¿BÖ{_±8pû^<~V”’c+[‡%4êå_.M½¶Ë&Åœ–ƒ’]õSŠÀe ÷-ò SZ€7q€ôŽ2vj ILè­Oyq+¯5½ÛG8Ud‡3Í’šÙ'@…2bÅ)”—Ï4P©dïdÞ¡Ã.®¡|­›KÈò8”&~œÛðµa©—‹Ð&Ô‹ü_1ÝI}Æk¸žŒJ¶EüfBz -Nß:ñ°YÓ‘4w¤~ËÿKrRt™`Ë;_£Ö(P€¬0ýX¹ðØ? Bßøs“äŠÎJžT>òA{™téTn•.¿&þÕ¼â®5‘)I|á,—HŒOx;@‰õåÓn1øD ›NJÑ+ˆž„vThþƒ¿Ç.ƒÒH: l#Ò±W[õÍS¶ö*¦­WúºŒ:ª‚+ÙØ“ uâ9É-¢ºÕÝx—EO…Xî‘×X²0Ú±Ž9UiOãKyvé¶ö­RÀDE$aÌb0#FÈHN8à×R¢³U=7W(ݺŠó» K,ÝϬz·Év3Ì^\!BUaÒìöë˜<Ë&µ!úŒ/Çi®o‹ÈuåÞµ#­wŽ†³ Z<'vDΘw´ie¨ñ½$¼ˆäk0aц¹9=Þ;¯™¦PçfAZãhÄÃw ¡Ãª á}(œÍ`6ÏtM©h²•{®]o±©ã{¬£‡Ì= íO·#®Ü Ã)˜î3olÂZØî‰n×SŸ°ïùGzŠ ꕯƒJm¡5ÓŽoï¯èå'à{P–Úò‡6’û£«`Ê7<„lE!Äm/‰2j¥–Qu^ºM±BFpy¸g*A>ZGʸ«=£Ç¢“êFƒæÀc°y§€æÁ›Æ Yˆlôkо"(c*´  ÆÜ+ž\áæÍ`Ÿ¥3V¼í‚¾1X[³ èQkc»š/ L=¼óȘtìgü,9(Xub Tú÷½i¸¾E%u¨Á²Ô;ÐRC*ÕþM$Vßç#CAªNŠ•†°oŸÆQùDêÉ6%…Á,Ñ]ð`§ù}“|P§‘Ûeÿ¨@ý‘a˜þmqú}VglïK?-ø}³óf²Ä¨ðˆÐb:Ž$ª¥‚-;gR«.>™óÉ\ÎÒ¤žÄ -‚5 éFW0rÞ>ì!÷A´ÙT†ë·N€‹› kYj…îcár”¡Ü2ˆÏÂ$'mnÚx×|CÎH -Q¦_3Jý»´ÊÚz–8‹Œ¦Ù16\š›¤w/4’^é©G‡øyY§^q¤ùbg¢p¶¥Âmàh“ Ì„Á<ßÖæLì‰?⪠-« -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d layers%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(invalid UTF-8 string)(none)1 Layer1 layer<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!About The GIMPActive FiltersAdd Alpha ChannelAdd ChannelAdd GuidesAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:AirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot 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 MenuClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to create a new component of the path.Click to create a new path.Click to insert an anchor on the path. (try SHIFT)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: 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 SizeConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueConvertConvert 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.DescriptionDevice 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 CurveDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDuplicate 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': -%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. -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 UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHex:HighlightsHinting alters the font outline to produce a crisp bitmap at small sizesHistogramHistogram ScaleHistoryHorizontalHow 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:Index:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput DevicesInput LevelsInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Justify:Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.Keyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer Fill TypeLayer Mask to SelectionLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.LineLine _Style:LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower LayerLower Layer to BottomLower PathLower Path to BottomMagentaMagenta:MagnifyManage Loadable ModulesMask Opacity:Matrix:Max Depth:Maximum color differenceMean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModulesMoveMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNo brushes available for use with this tool.No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOpacityOpacity:Open ImageOpen Text File (UTF-8)Open the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output LevelsOverlayPDB calling error for procedure '%s': -Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundPack my box with -five dozen liquor jugs.PaintPaint Tool proceduresPaint Tool:Paint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:PalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.Path to SelectionPathsPaths MenuPatternPattern FoldersPattern UIPatternsPatterns MenuPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick colors from the imagePixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -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 datePreviewsProcedural 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 thresholdRegisteredRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove the selected filter from the list of active filters.Rename ChannelRename LayerRename PathRename Saved Tool OptionsReorder 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: - -%sRight Endpoint ColorRotateRotate ChannelRotate LayerRotate PathRotate Text LayerRotate the layer or selectionRotating...Rotation InformationSat.: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' -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 -to replicate the selected segment.Select the number of times -to replicate the selection.Select the number of uniform parts -in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.SelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Specifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStd Dev:Stroke ChannelStroke PathStroke SelectionSubtractSubtract from the current selectionSupersamplingTemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The 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.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.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolsTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.UndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse all visible layers when shrinking the selectionUser Installation LogUser InterfaceValueValue:Version %s brought to you byVersion:VerticalWeb BrowserWhen enabled, all paint tools will show a preview of the current brush's outline.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window PositionsWriting '%s' -XCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimeterspercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Cvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: eu -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-04-06 17:02+0200 -Last-Translator: Iñaki Larrañaga Murgoitio -Language-Team: Basque -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.0.2 -Plural-Forms: nplurals=2; plural=(n != 1); - -"%s" aukera baliogabea - -Erabilera: %s [aukera ... ] [fitxategia ... ] - - --debug-handlers Gaitu larriak ez diren arazketako seinale-kudeatzaileak. - --display Erabili zehaztutako X pantaila. - --dump-gimprc Ezarpen lehenetsiekin gimprc fitxategia idazten du. - --no-cpu-accel Ez erabili CPU azeleratzaile berezirik. - --no-shm Ez erabili GIMP eta plugin-en arteko memoria partekatua. - --pdb-compat-mode - Procedural Database-rekin baterakortasun modua. - --session Erabili beste sessionrc fitxategi bat. - --stack-trace-mode - Seinale larrien arazketa-modua. - --system-gimprc Erabili gimprc sistema-fitxategi alternatibo bat. - --verbose Erakutsi abioko mezuak. - -b, --batch Exekutatu batch moduan. - -c, --console-messages Bistaratu abisuak kontsolan elkarrizketa-koadroan bistaratu ordez. - -d, --no-data Ez kargatu brotxak, gradienteak, paletak, ereduak. - -f, --no-fonts Ez kargatu letra-tiporik. - -g, --gimprc Erabili beste gimprc fitxategi bat. - -h, --help Bistaratu laguntza hau. - -i, --no-interface Exekutatu erabiltzailearen interfaze bat erabili gabe. - -s, --no-splash Ez erakutsi abioko leihoa. - -v, --version Bistaratu bertsioari buruzko informazioa. -%d geruza%d geruza%d x %d pixel%g x %g %s%s kanalaren kopia%s kanala hautapenera%s mezua%s(r)en kopia%s maskara%s%sEgin klik: luzatu hautapena%s%sArrastatu: aldatu lekuz eta konprimitu(%0.3f, %0.3f, %0.3f)(bat ere ez)(Kontsola-leiho hau hamar minutu barru itxiko da) -(Buffer izengabea)(Txantiloi izengabea)(UTF-8 kate baliogabea)(bat ere ez)Geruza batGeruza bat<%s><>GIMPen errendimendua hobetzeko, ezarpen batzuk doitu behar dira.The GIMP - GNUren irudiak manipulatzeko programa -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis eta GIMP garatzeko lan-taldea.GIMPen aholkuen fitxategia ezin izan da analizatu!GIMPen aholkuen fitxategia falta da!GIMPi buruzIragazki aktiboakGehitu alfa kanalaGehitu kanalaGehitu gidakGehitu gida horizontalaGehitu geruzaGehitu geruza-maskaraGehitu bideaGehitu testu-geruzaGehitu gida bertikalaGehitu maskara geruzariGehitu testua irudiariGehitu uneko kolorea koloreen historiariGehitu hautatutako iragazkia iragazki aktiboen zerrendan.Gehitu uneko hautapenariBatuketaDoitu distira eta kontrasteaDoitu kolore-balantzeaDoitu kolore-kurbakDoitu kolore-mailakDoitu distira eta kontrasteaDoitu kolore-balantzeaDoitu kolore-kurbakDoitu kolore-mailakDoitu ñabardura eta saturazioaDoitu mailak automatikokiDoitzeaEragina:AerografoaAerografoa presio aldagarriarekinLerrokatutaLerrokatzeaKanal guztiakIrudien cachean sartzen ez diren irudi eta desegiteko datu guztiak swap fitxategi batean idatziko dira. Fitxategi hori fitxategi-sistema lokalean kokatuko da eta behar adina leku libre edukiko du (zazpiehun MB). UNIX sisteman, sistema orokorreko aldi baterako direktorioa erabiltzea komeni zaizu ("/tmp" edo "/var/tmp").Utzi guztiz gardenak diren eskualdeak betetzenBaimendu guztiz gardenak diren eskualdeak hautatzeaAlfaAlfa hautapeneraAlfa:Ainguratu hautapen mugikorraAngelua:Antialiasing-aItxuraAplikatu geruza-maskaraAplikatu mugaZiur zaude "%s" ezabatu nahi duzula zerrendatik eta diskotik?Ziur zaude "%s"txantiloia ezabatu nahi duzula zerrendatik eta diskotik?Eskatu berrespena irudiak gorde gabe itxi aurretik.Erantsi parasitoaErantsi parasitoa irudiariErantsi parasitoa elementuariEgilea:AutomatikoaKargatu automatikokiIragazki erabilgarriakMota erabilgarriak:Atzeko planoaEzarritako atzeko planoaren kolorea:Atzeko planoa: %d, %d, %dOinarri-area betea ikusgai dauden geruza guztietanOinarrizko hautapena ikusgai dauden geruza guztietanAtzeanAlakaBeltza:NahastutaNahastea: Nahastea: ez du balio irudi indexatuentzat.Nahasten...UrdinaUrdina:LausotuLausotu edo enfokatuKanalaren ertzaHautapenaren ertzaErtzaren hautapena:Distira/KontrasteaDistirak/Kontrasteak ez du geruza indexatuetan funtzionatzen.Brotxa-editoreaBrotxa-karpetakBrotxen erabiltzailearen interfazeaBrotxa:BrotxakBrotxa-menuaBeteBufferrakBufferren menuaBelztuCMYK_Zutabeak:Kalibratu monitorearen bereizmenaEzin da %s deseginUtziEzin da aipatutako geruzaren neurriak ez dituen geruza-maskara gehitu.Ezin zaio geruza-maskara gehitu alfa kanalik ez duen geruzari.Ezin da geruza-maskara gehitu irudi baten zati ez den geruzari.Ezin da geruza hau ainguratu, hautapen mugikorra ez delako.Ezin da geruza berria sortu hautapen mugikorretik, hau geruza-maskara edo kanal batena delako.Ezin da '%s' karpeta sortu: %sEzin da aurrebistarik sortuEzin da ebaki uneko hautapena hutsik dagoelako.Ezin da ${%s} zabalduEzin da hautapena mugitu, hautatutako eskualdea hutsik dagoelako.Ezin da geruza alfarik gabe igo.Ezin da gorde. Ez dago ezer hautatuta.Ezin da kanal hutsa trazatu.Ezin da bide hutsa trazatu.Oihalaren tamainaX erdia:ZentratutaAldatu atzeko planoaren koloreaAldatu aurreko planoaren koloreaAldatu irudiaren bereizmenaAldatu irudiaren unitateaAldatu geruzaren edo hautapenaren perspektibaKanalaKanal-atributuakKanalaren izena:Ezin izan da kanala gehiago jaitsi.Kanala ezin izan da gorago igo.Kanala hautapeneraKanala:KanalakKanal-menuaGarbituGarbitu kanalaSakatu "Jarraitu" goiko ezarpenak onartzeko.Sakatu "Jarraitu" GIMPen zure karpeta pertsonala sortzeko.Sakatu "Jarraitu" GIMPen erabiltzailearen instalazioa hasteko.Klik egin bidearen osagai berria sortzeko.Klik egin bide berria sortzekoKlik egin bidean aingura txertatzeko. (Shift-ekin saiatu)Klik egin bidea irekitzeko.Klik egin editatzeko bidea aukeratzekoEgin klik aurrebista eguneratzeko -Egin klik %s aldiz eguneratzea bultzatzeko, baita aurrebista eguneratuta baldin badago ereEgin klik: hautatuEgin klik: hautatu Arrastatu: aldatu lekuz Beheko geruzaren arabera moztutaIrudiaren arabera moztutaKlonatuItxi fitxa hauKoloreaKolore-balantzeaKolore-pantailen iragazkiakKolore-hautatzaileaKolore-hautatzailearen informazioaKolore-balantzeak RGB koloreko geruzetan bakarrik funtzionatzen du.Kolorea:Seg_mentuaren koloreztatze-motaHautapenaren kolore_ztatze-motaKoloreztatuKoloreztatuk RGB koloreko geruzetan bakarrik funtzionatzen du.Koloreztatu irudiaKoloreztatu irudiaKolore-mapaZutabeak:Kon_trastea:Konfiguratu kolore-pantailen iragazkiakKonfiguratu saretaKonfiguratu irudiaren saretaBerretsi irudi-tamainaKonstanteaMurriztapenakTestuinguruaren araberako kurtsoreak atseginak dira. Lehenespenez gaitzen dira. Hala ere, prozesatzea moteldu egiten dute.JarraituBihurtuBihurtu ertzaBihurtu irudia gris-eskalaraBihurtu irudia kolore indexatuetaraBihurtu irudia kolore indexatuetaraBihurtu irudia RGBraKonboluzioa%s konboluzio-mota Kopiatu izenduna'%s' fitxategia kopiatzen '%s'(e)tik...Copyright-a:%d segmentu okerra '%s' gradiente-fitxategian.Ezin izan da %s' sortu: %sEzin izan da '%s'(r)entzat aldi baterako fitxategia sortu: %s Ezin izan da `%s' ezabatu: %sEzin izan da '%s' ireki irakurtzeko: %sEzin izan da '%s' ireki idazteko: %sEzin izan da koadro txikien '%s' fitxategia ireki: %s Ezin dira %d byte irakurri '%s'(e)tik: %sEzin izan da XCF fitxategian bilatu: %sZenbat:Sortu txantiloi berriaSortu irudi berriaSortu geruza berriaSortu txantiloi berriaSortu ikuspegi berria irudi honentzat Sortu irudi berria hautatutako txantiloitikSortu txantiloi berriaSortu eta editatu irudiak edo argazkiakSortu eta editatu bideak'%s' karpeta sortzen...EbakiEbaki eta aldatu tamainazEbakitzearen eta tamaina aldatzearen informazioaEbaki irudiaEbaki geruzaEbaki edo aldatu tamainaz irudia Ebaki: Gurutzagunea bakarrikKubikoa (onena)Kurba-motaKurbakGeruza indexatuentzako kurbak ezin dira doitu.PertsonalizatuaEbakiEbaki izendunaCyanaCyana:MarratxodunaData:Itxura lehenetsia pantaila osoaren moduanItxura lehenetsia modu normaleanSareta lehentesiaIrudi-sareta lehenetsiaEzabatu ainguraEzabatu geruza-maskaraEzabatu segmentuaEzabatu txantiloiaEzabatu gordetako aukerak...Ezabatu hautatutako txantiloiaEzabatu irudi hauDesasetuDesasetuk RGB koloreko marrazgaietan bakarrik funtzionatzen du.AzalpenaGailuaren egoeraGailuakElkarrizketa-koadroen menuaDiferentziaKolore zuzenaBaztertu informazioaren testuaBistaratuBistaratu nabigazioaBistaratu prozedurakBistaratzen [%0.6f, %0.6f]DisolbatuDistantzia:Distantzia: %0.6fBilbatzeaZatituNahi duzu tresna-aukera guztiak lehenespeneko balioekin berrasieratzea?Dokumentuaren historiaDokumentuakDokumentu-menuaZurituZuritu edo belztu trazuakZuritu/BelztuArrastatu kurbaBota bide berriaArrastatu: aldatu lekuzMarraztu tintazMarrazgaiaMarrazgaien prozedurakBota geruza berriaBota bide berriaBikoiztu hautatutako txantiloiaEzin da deseginEditatuEditatu kanal-atributuakEditatu kanalaren koloreaEditatu kolore-paletaren sarreraEditatu geruza-atributuakEditatze-moduaEditatu paletaren koloreaEditatu bidearen atributuakEditatu txantiloiaEditatu prozedurakEditatu hautatutako txantiloiaHautapen eliptikoaHustu kanalaren kopiaHustu testuaren geruzaHustu bideaTestu-geruza hutsaAldagaiaren izen hutsa %s ingurune-fitxategianGaitu GIMP iradokizun erabilgarri bat bistaratzea abioan.Gaitu argibideak bistaratzea.IkaragarriaSartu izena batutako paletarentzatSartu izena gordetako aukerentzakoSartu buffer honen izenaSartu txantiloi honentzako izenaSartu izen berri bat gordetako aukerentzakoInguruneaIngurune-karpetakEkualizatuEkualizatzeak ez du marrazgai indexatuetan funtzionatzen.Ezabatu atzeko planoa edo gardentasunaBorragomaErrore-kontsolaErrore-kontsolaren menuaErrorea XCF fitxategia gordetzean: %sErrorea %2$d lerroan '%1$s' analizatzean : %3$sErrorea '%s' irakurtzean: %sErrorea '%s' fitxategian idaztean: %sErrorea XCF idaztean: %sErrorea '%s' fitxategia idaztean: -%sErrorea '%s' fitxategian idaztean: %sErrorea '%s'(r)en aldi baterako fitxategian idaztean: %s -Ez da fitxategirik sortu.Errorea '%s'(r)en aldi baterako fitxategian idaztean: %s -Jatorrizko fitxategia ez da ukitu.ErroreakBehar adina zabaldutaEsportatu bidea SVGraEsposizioa:Sarrerako gailu hedatuakFG BGra (HSV erlojuaren noranzko ñabardura)Aurreko planoa atzeko planora (HSV erlojuaren kontrako noranzkoan)Aurreko planoa atzeko planora (HSV)Aurreko planoa atzeko planora (RGB)Aurreko planoa gardeneraAurPl/AtzPlAurPl-ren/AtzPl-ren koloreaEzin izan da '%s'(e)tik bidea inportatu: %sAnalisi-errore larria '%s' brotxa-fitxategian: fitxategia trunkatuta ageri da.Analisi-errore larria '%s' brotxa-fitxategian: fitxategia hondatuta dago.Analisi-errore larria '%s' brotxa-fitxategian: ez da GIMPen brotxa-fitxategia.Analisi-errore larria '%s' brotxa-fitxategian: GIMPen brotxa-bertsio ezezaguna da.Analisi-errore larria '%s' brotxa-fitxategian: %d sakonera ezezaguna.Analisi-errore larria: '%s' brotxa-fitxategian:: %d brotxa-bertsio ezezaguna.Analisi-errore larria '%s' brotxa-fitxategian: %d brotxa-sakonera ez da onartzen -GIMPen brotxek grisak edo RGBA izan behar dute.Analisi-errore larria '%s' gradiente-fitxategian: fitxategia hondatuta dago.Analisi-errore larria '%s' gradiente-fitxategian: ez da GIMPen gradiente-fitxategia.Analisi-errore larria '%s' paleta-fitxategian: goiburu magikoa falta da.Analisi-errore larria '%s' paleta-fitxategian: goiburu magikoa falta da -Fitxategi hau DOSetik bihurtu behar da?Analisi-errore larria '%s' paleta-fitxategian: irakurketa-errorea %d lerroan.Analisi-errore larria '%s' eredu-fitxategian: ezin izan da %d byte irakurri: %sAnalisi-errore larria '%s' eredu-fitxategian: eredu formatuaren %d bertsio ezezaguna.Analisi-errore larria '%s' eredu-fitxategian:%d eredu-sakonera ez da onartzen. -GIMPen ereduek GRISAK edo RGB izan behar dute.Difuminatu kanalaDifuminatu hautapenaDifuminatu hautapena:Fitxategi-eragiketakBete kanalaBetegarriaren opakutasuna:Betegarri-mota: %sBete atzeko planoaren koloreazBete aurreko planoaren koloreazBete ereduarekinBete gardentasunezBete zurizBete kolore-gradiente batekinBete kolore edo eredu batezBetetaBatutako azken geruzak hau izan behar du:Ondoko eskualdeak bilatzenAntzeko koloreak bilatzenBerdindu irudiaIrauliIrauli kanalaIrauli geruzaIrauli bideaIrauli testu-geruzaIraultze-mota: %sIrauli geruza edo hautapenaIraultzen...Hautapen mugikorraHautapen mugikorra geruzaraHautapen mugikorrakFokoaKarpetaKarpetakLetra-tipoen karpetakLetra-tipoen erabiltzailearen interfazeaLetra-tipoa:Letra-tipoakLetra-tipoen menuaGIMP behar bezala instalatzeko, '%s' izeneko karpeta sortu behar da.Aurreko planoaAurreko planoko eta atzeko planoko koloreak. Lauki beltz eta zuriek koloreak berrezartzen dituzten. Geziek koloreak trukatzen dituzte. Egin klik bikoitza koloreak hautatzeko elkarrizketa-koadroa irekitzeko.Ezarritako aurreko planoaren kolorea:Aurreko planoa: %d, %d, %dHautapen libreaPultsuanHurbilketazko hautapenaGIMPGIMPen luzapenaGIMPeko mezuaGIMPen errendimentuaren doitzeaGIMPen plugin-aGIMPen abioaGIMP Testu-editoreaGIMPen eguneko aholkuaGIMPen erabiltzailearen instalazioaGIMPek ezin izan du erabiltzailearen interfaze grafikoa abiarazi. -Ziurtatu zure pantaila-ingurunerako konfigurazio egokia badagoela.GIMP ez dago behar bezala instalatuta uneko erabiltzailearentzat. -Erabiltzailearen instalazioa saltatu egin da, '--no-interface' bandera erabili delako. -Erabiltzailearen instalazioa egiteko, exekutatu GIMP '--no-interface' banderarik gabe.GIMPek momoria-kantitate mugatua erabiltzen du irudien datuak gordetzeko, "Irudien cachea" izenekoa. Haren tamaina doitu behar duzu memoriara egokitzeko. Kontuan hartu martxan dauden beste programek erabiltzen duten memoria-kantitatea.GIMPek beste gtkrc fitxategi bat erabiltzen du, aukera izan dezazun gainerako GTK aplikazioek ez bezalako itxura eduki dezan konfiguratzeko.GIMP bertsioaGIMPek erabiltzaileari abisatuko dio hemen zehaztutako tamaina baino memoria gehiago hartuko lukeen irudi bat sortzen saiatzen bada.GammaOrokorraOrokorrean 8 biteko pantailentzat bakarrik da garrantzitsua; GIMPerako esleitutako sistema-koloreen gutxieneko kopurua ezartzen du.Eskuratu monitorearen bereizmenaErraldoiaGimprc prozedurakGradientearen editoreaGradientearen editorearen menuaGradiente-karpetakGradientearen segmentuaren ezkerreko amaiera-puntuaren koloreaGradientearen segmentuaren eskuineko amaiera-puntuaren koloreaGradienteen erabiltzailearen interfazeaGradientea:GradienteakGradiente-menuaGrisaGris-eskalaBerdeaBerdea:SaretaHanditu kanalaHanditu hautapenaHanditu hautapena:GidaGiden prozedurakHSVHSV (%0.3f, %0.3f, %0.3f)Heldulekuaren posizioa: %0.6fGogortasunaGogortasuna:AltueraAltuera:Laguntza-arakatzaileaLaguntza-sistemaLaguntzaren prozedurakHamaseitarra:Argi-ukituakHinting-ek letra-tipoen eskema aldatzen dute tamaina txikiko bit-mapa doia egitekoHistogramaHistograma-eskalaHistoriaHorizontalaIrudi-fitxategi ireki berrien zenbat izen gorde behar diren Fitxategia menuan.ÑabarduraÑabardura/SaturazioaÑabardurak/Saturazioak RGB koloreko geruzetan bakarrik funtzionatzen du.Ñabardura:ItzelaI_rudiaBita_rtea:IkonoaErabilgarri badaude, letra-tipoen "hint"ak erabiltzen dira, baina agian nahiago duzu beti "hint" automatikoak erabiltzeaAldagaiaren izen ilegala %s ingurune-fitxategian: %sIrudiaIrudiaren informazioaIrudi-menuaIrudiaren tamainaIrudiaren egoera-barraren formatuaIrudien txantiloiakIrudiaren izenburuaren eta egoera-barraren formatuaIrudiaren izenburuaren formatuaIrudiaren leihoaren itxuraIrudi-leihoakIrudi-maskaraIrudiaren bereizmena mugetatik kanpo dago, bereizmen lehenetsia erabiliko da horren ordez.IrudiakIrudien menuaInportatu aukerakInportatu paletaInportatu bideakInportatu bideak SVGtikInportatu paleta berriaBidea inportatuaAl_derantzikatu maskaraInkrementalaKoska:Indizea:IndexatuaKolore indexatuaKolore indexatuaren bihurketaInformazio-leihoaAbiarazi geruza-maskara hemen:Plugin-ak abiaraztenPlugin-a abiarazten: "%s" -TintaSarrerako gailuakSarrerako mailakInstalazioak huts egin du. Jarri harremanetan sistema-administratzailearekin.Instalazioa ondo egin da. Sakatu "Jarraitu" hasteko.Berehalako eguneratzeaInterfazeaGIMPen barne-prozeduraBarne-prozedurakInterpolazioa:Gurutzatu uneko hautapenarekinElkarguneak (gurutzaguneak)Elkarguneak (puntuak)UTF-8 baliogabeaUTF-8 datu baliogabeak '%s' fitxategian.UTF-8 kate baliogabea XCF fitxategian.UTF-8 kate baliogabea '%s' brotxa-fitxategian.UTF-8 kate baliogabea '%s' gradiente-fitxategian.UTF-8 kate baliogabea '%s' paleta-fitxategianUTF-8 kate baliogabea '%s' eredu-fitxategian.Karaktere-sekuentzia baliogabea URInZabalera edo altuera baliogabea. Biek positiboa izan behar dute.AlderantzikatuAlderantzikatu kanalaAlderantzikatu hautapenaAlderantzikatzeak ez du marrazgai indexatuetan funtzionatzen.Justifikatu:Laster-teklak dinamikoki berriro definitu daitezke GIMPen. menurc zure konfigurazioaren iraulketa da, hurrengo saioan gogoratua izan dadin. Nahi izanez gero, fitxategi hau edita dezakezu, baina errazagoa da teklak GIMPetik definitzea. Fitxategi hau ezabatuz gero, laster-tekla lehenetsiak leheneratuko dira.Laster-teklakHorizontalaHandiaHandia (256x256)Aurrebista handiagoakAzken errorea:Geruza"%s" geruzak ez du alfarik. Geruza haren gainean jarri da.Geruza-atributuakGeruzaren betegarri-mota/Geruza/Maskara/_Maskara hautapeneraGeruza-hautapenaGeruzaren i_zena:Ezin da geruza gehiago jaitsi.Ezin da geruza gorago igo.Geruza leku baxuenean dago.Geruza leku garaienean dago.Geruza irudi-tamainaraGeruzakGeruza-menuaGeruzak batzeko aukerakEzkerreko amaiera-puntuaren koloreaLuzera:Utzi GIMPi abio bakoitzean gordetako azken saioa leheneratzen saiatzen.MailakGeruza indexatuen mailak ezin dira doitu.MarraLerro-esti_loa:LinealaKargatukargatu kurbakKargatu mailakAurrebista kargatzen...Kokalekua:LogaritmikoaDatu-fitxategiak bilatzenJaitsi kanalaJaitsi kanala leku baxueneraJaitsi geruzaJaitsi geruza leku baxueneraJaitsi bideaJaitsi bidea leku baxueneraMagentaMagenta:HandituKudeatu modulu kargagarriakMaskararen opakutasuna:Matrizea:Gehienezko sakonera:Gehienezko kolore-diferentziaBatezbestekoa:NeurtuNeurtu distantziak eta angeluakNeurtu distantziak eta angeluakMediana:TartekoaBatu beherantzBatu geruzakBatu paletaBatu ikusgai dauden geruzakBatu ikusgai dauden bideakMezuen prozedurak%d aldiz errepikatutako mezua.Mezua behin errepikatu da.Tarteko tonuakHainbatAngeluaModuaModua:Aldatu hautatutako koloreaAldatu hautatutako barrutiaren kolore-mailakAldatu kolore guztiakAldatu lerroen tarteaModulu-karpetakModulu-kudeatzaileaModuluakLekuz aldatuAldatu lekuz kanala Aldatu lekuz gidaAldatu geruza lekuzAldatu geruza-maskara lekuzAldatu lekuz bideaAldatu hautapena lekuzAldatu lekuz geruzak eta hautapenakEraman behera hautatutako iragazkiaEraman gora hautatutako iragazkiaLekuz aldatu: BiderkatuNabigazioaKanal berriaKolorearen kanal berriaKanalaren aukera berriakIrudi berriaGeruza berriaBide berriaBide berriaren aukerakTxantiloi berriaEz dago brotxa erabilgarririk tresna honekin erabiltzeko.Ez dago erabilgarriEz da biderik topatu '%s'(e)nEz da biderik topatu bufferreanEz dago eredu erabilgarririk eragiketa honetarako.Ez dago trazatzeko hautapenik.Bat ere ezBat ere ez (azkarrena)NormalaNormala (128x128)Ez da fitxategi erregularraEz daude batzeko behar adina geruza ikusgai. Gutxienez bi behar dira.Ez daude batzeko behar adina bide ikusgai. Gutxienez bi behar dira.DesplazatuDesplazatu kanalaDesplazatu marrazgaiaDesplazatu geruzaDesplazatu geruza-maskaraDesplazamendua:DiskoanHainbat prozesadoreko makinetan, GIMP --enable-mp erabiliz konpilatu bada, GIMPek aldi berean zenbat prozesadore erabili behar dituen ezartzen du.Memorian bakarrikOpakutasunaOpakutasuna:Ireki irudiaIreki testu-fitxategia (UTF-8)Ireki brotxa hautatzeko elkarrizketa-koadroaIreki letra-tipoa hautatzeko elkarrizketa-koadroaIreki gradientea hautatzeko elkarrizketa-koadroaIreki eredua hautatzeko elkarrizketa-koadroaEzin izan da '%s' ireki: - -%sEzin izan da '%s' ireki: %sAukerak: -X iturburua:Jatorrizko zabalera:Bestelakoa (%s) ...Irteerako mailakGainjarriPDB dei-errorea '%s' prozedurarako: -#%d argumentuaren mota ez dator bat (%s espero zen, %s jaso da)PDB dei-errorea: -'%s' prozedura ez da aurkituGure etxe berrian ez da urik sartzen -ateri dagoenean.MargotuMargotzeko tresnen prozedurakMargotzeko tresna:Margotu brotxakada lausoakMargotu ertz gogorreko pixelakMargotu ereduak edo irudi-eskualdeak erabilizPintzelaPaletaPaletaren editoreaPaletaren editoreren menuaPaleta-karpetakPaletaren erabiltzailearen interfazeaPale_taren izena:PaletakPaleta-menuaProzedura parasitoakParasitoak'%s' analizatzen -ItsatsiItsatsitako geruzaBideaBidearen atributuakEzin da bidea gehiago jaitsi.Bidea ezin da gorago igo.Bidea hautapeneraBideakBide-menuaEreduaEredu-karpetakEreduen erabiltzailearen interfazeaEreduakEredu-menuaArkatzaBrotxaren zabaleraren ehunekoaPertzentila:GIMPen karpeta pertsonalaPerspektibaPerspektiba eraldatzeari buruzko informazioaPerspektiba...Hautatze-modua: %sHautatu koloreak iruditikPixelakPixelak:Itxaron GIMPen karpeta pertsonala sortu bitartean...Itxaron...Plugin-aPlugin-en inguruneaPlugin-en karpetakPlugin-ak ezin izan du irudia irekiPlugin-ak ezin izan du irudia gordePlugin-ak huts egin du: "%s" -(%s) - -Baliteke huts egin duen plugin-ak GIMPen barneko egoera nahaspilatu izana. Irudiak gordetzea eta GIMP berrabiaraztea komeni zaizu, segurutik jokatzeko.Plugin-ak SUCCESS eman du, baina ez du irudirik itzuliPlugin-akPlugin-aPlugin-ak eta luzapenak GIMPek exekutatzen dituen kanpoko programak dira eta funtzio osagarriak ematen dituzte. Programok exekuzio-denboran bilatzen dira eta haien informazioari eta aldaketa-datei buruzko informazioa fitxategi honetan gordetzen da. Fitxategi hauek GIMPek bakarrik irakurriko du eta ez da editatuko.PoligonalaBertikalaKokalekua: %0.6fPosterizatuPosterizatu (murriztu kolore-kopurua)Posterizatzeak ez du geruza indexatuetan funtzionatzen.HobespenakPresioa:AurrebistaAurrebista iraungita dagoAurrebistakProzeduren datu-baseaProzeduren datu-baseaAurrerapenaSasikoloreaXedea:KontsultaPlugin berriak kontsultatzenplugin-a kontsultatzen: "%s" -Maskara bizkorraRGBRGB (%d, %d, %d)RGB koloreaRGB hutsikRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Erakutsi _berriro "%s"ErradialaErradioa:Igo kanalaIgo kanala goieneraIgo geruzaIgo geruza goieneraIgo bideaIgo bidea goieneraIgo irudi honen ikuspegiakTasaAbiadura:Erakutsi berriro azkenaZentratu _berriro erdiko puntuak hautapeneanZentratu berriro segmen_tuaren erdiko puntuaBanatu berriro _heldulekuak segmentuanBanatu berriro _heldulekuak hautapeneanErre_pikatu "%s"'%s' paleta kargatzen: osagai BERDEA falta da %d lerroan.'%s' paleta kargatzen: zutabe-kopuru baliogabea %d lerroan. Balio lehenetsia erabiltzen.'%s' paleta kargatzen: osagai URDINA falta da %d lerroan.'%s' paleta kargatzen: osagai GORRIA falta da %d lerroan.'%s' paleta kargatzen: RGB balioa barrutitik kanpo dago %d lerroan.Hautapen laukizuzenaGorriaGorria:BerreginMurriztu irudia kolore-kopuru finko bateraMurriztu irudia bi koloretara muga erabilizErregistratutaGogoratu uneko tresna, eredua, kolorea eta brotxa hurrengo GIMP saioetan.Urruneko irudiaKendu kanala Kendu hautapen mugikorraKendu gidaKendu geruzaKendu parasitoa iruditikKendu parasitoa elementutikKendu bideaKendu hautatutako iragazkia iragazki aktiboen zerrendatik.Aldatu kanalaren izenaAldatu geruzaren izenaAldatu bidearen izenaAldatu gordetako tresna-aukeren izenaOrdenatu berriz kanalaOrdenatu berriro geruzaErrepikatu azkenaErrepikatu:Ordeztu uneko hautapenaEgin erreplikaEgin gradientearen segmentuaren erreplikaEgin gradientearen hautapenaren erreplikaEgin segmentuaren erreplikaEgin hautapenaren erreplikaBerrasieratu tresna-aukerakBerrezarri hautatutako iragazkia balio lehenetsiekinAldatu tamainaAldatu kanalaren tamainaAldatu irudia tamainazAldatu geruza tamainazAldatu bidearen tamainaTamaina aldatzen...Bereizmena:Baliabideen kontsumoaBaliabideen konfigurazioaLeheneratu aukerak hemendik...Leheneratu gordetako laster-teklak GIMP abiarazten duzun bakoitzean.AlderantzikatuLeheneratuLeheneratu irudiaEzin izan da leheneratu. Ez dago irudi honi lotutako fitxategi-izenik.Ezin izan da '%s'(e)ra leheneratu: - -%sEskuineko amaiera-puntuaren koloreaBiratuBiratu kanalaBiratu geruzaBiratu bideaBiratu testu-geruzaBiratu geruza edo hautapenaBiratzen...Biratze-informazioaSatur.:SaturazioaGordeGorde "%s" POV-Ray gisaGorde kurbakGorde errore-egunkaria fitxategianGorde irudiaGorde mailakGorde tresna-aukerakGorde irudiaren kopia batGorde aldatutako laster-teklak GIMP ixtean.Gorde kurben ezarpenak fitxategianGorde gailuaren egoeraGorde mailen ezarpenak fitxategianGorde aukerak...Gorde elkarrizketa-koadro nagusien kokalekuak eta tamainak GIMP ixtean.Aukerak gordeta'%s' gordetzen -Ezin izan da '%s' gorde: - -%sEskalaEskalatu kanalaEskalatu irudiaEskalatu geruzaEskalatu bideaEskalatu geruza edo hautapenaEskalatzenEskalatzen...GuraizeakPantailaScript-Fu karpetakScript-akHautatu denaHautatu brotxa-karpetakHautatu kolorearen araberaHautatu koloreaHautatu ingurune-karpetakHautatu letra-tipoen karpetakHautatu gradiente-karpetakHautatu modulu-karpetakBat ere ez hautatuHautatu paleta-karpetakHautatu eredu-karpetakHautatu plugin-en karpetakHautatu aldatu beharreko lehen mailako koloreaHautatu aldatu beharreko barrutiaHautatu script-Fu karpetakHautatu iturburuaHautatu gaiaHautatu gaien karpetakHautatu zoomaren erlazioaHautatu kolorearen araberaHautatu alboko eskualdeakHautatu eskualde eliptikoakHautatu eskuz marraztutako eskualdeakHautatu eskualde laukizuzenakHautatu eskualdeak kolorearen araberaHautatu formak iruditikHautatu hautatutako segmentuaren erreplika -zenbat aldiz egin behar den.Hautatu hautapenaren erreplika -zenbat aldiz egin behar den.Hautatu zenbat zati uniformetan zatitu -behar diren segmentuak hautapenean.Hautatu zenbat zati uniformetan zatitu -behar den hautatutako segmentua.HautapenaHautapenaren editoreaHautapen-maskaraHautapen-tresnen prozedurakHautapena: Hautapena: GEHITUHautapena: GURUTZATUHautapena: ORDEZTUHautapena: KENDUSentikortasunaEzarri oihalaren kolore betegarriaEzarri kanal-koloreaEzarri kanal-opakutasunaEzarri irudiaren oihalaren tamainaEzarri elementua esklusiboki ikusgaiEzarri elementua esklusiboki ikusgaiEzarri geruzaren mugaren tamainaEzarri izena _testutikIrudi bakoitzak desegiteko pilan eragiketak gordetzeko erabiltzen duen memoriaren gehienezko muga ezartzen du. Ezarpen honetaz aparte, konfigurazioaren arabera hainbat aldiz desegin daiteke.Laguntza-sistemak erabiltzen duen arakatzailea ezartzen du.Oihalaren kolore betegarria ezartzen du, kolore pertsonalizatua erabiliko bada.Ezarri eskalatzeko eta bestelako eraldatzeetarako erabiliko den interpolazio-maila.Gardentasuna irudietan bistaratzeko modua ezartzen du.Desegin daitezkeen eragiketen gutxieneko kopurua ezartzen du. Desegiteko maila gehiago eskaintzen dira desegiteko mailen mugara heldu arte.GIMPek erabiliko duen kurtsorearen modua ezartzen du.Gardentasuna bistaratzeko erabiltzen den koadrikularen tamaina ezartzen du.Irudi-leihoaren beheko eskuineko izkinan erabilgarri dagoen nabigatzeko aurrebistaren tamaina ezartzen du.'Desegin historia'-ko aurrebistaren tamaina ezartzen du.swap fitxategiaren kokalekua ezartzen du. Gimp-ek fitxetan oinarritutako memoria-esleipeneko eskema erabiltzen du. swap fitxategia fitxategiak diskotik eta diskora azkar eta erraztasunez trukatzeko erabiltzen da. Kontuan izan swap fitxategia azkar handitu daitekeela GIMP irudi handiekin erabiltzen bada. Horrez gain, lana asko moteldu daiteke swap fitxategia NFSren gainean muntatutako direktorioan sortzen bada. Hori dela eta, komeni da zure swap fitxategia "/tmp" karpetan gordetzea.Aldi baterako biltegiko direktorioa ezartzen du. Fitxategiak hor agertuko dira GIMP exekutatzen den bitartean. Fitxategi gehienak desagertu egingo dira GIMP ixtean, baina baliteke fitxategi batzuk geratzea; beraz, hobe da direktorio hau beste erabiltzaileekin ez partekatzea.Irudiaren leihoko egoera-barran agertu beharreko testua ezartzen du.Irudi-leihoaren tituluetan agertuko den testua ezartzen du.GIMPek geruzen eta kanalen aurrebistak sortu behar dituen ala ez ezartzen du. Atsegina da aurrebistak edukitzea geruzen eta kanalen elkarrizketa-koadroan, baina irudi handiekin lan egitean lana moteldu egin dezake.ItzalakFormaForma:GarbituEnfokatu kanalaEnfokatu hautapenaZizailamenduaZizailatu geruza edo hautapenaZizailamendu-informazioaZizailatzen...Erakutsi egoera-_barraErakutsi _korritze-barrakErakutsi _gidakErakutsi _geruzaren mugaErakutsi _menu-barraErakutsi memoria-erabileraErakutsi aholkua GIMP abiarazten den hurrengo aldianErakutsi zoomaren ehunekoaErakutsi zoomaren erlazioaTxikitu kanalaTxikitu hautapenaUzkurtu irudiaren ertzetikUzkurtu hautapena:TamainaTamaina:TxikiaAurrebista txikiagoakLeunaErtz leunakZirriborroa eginZirriborratu irudiaLisoaIturburuaTarteaTartea:Irudiaren inguruko area nola marraztu behar den zehazten du.Inurrien abiadura hautaketa-eskeman. Balioa milisegundotan dago (zenbat eta denbora gutxiago, abiadura handiagoa).Abiadura:ZatituZatitu gradientearen segmentua modu uniformeanZatitu gradientearen segmentuak modu uniformeanZatitu segmentua modu uniformeanZatitu segmentua _modu uniformean...Zatitu segmentua _erditikZatitu segmentuak modu uniformeanZatitu segmentuak _modu uniformean...Zatitu segmentuak e_rditikKarratuaEstandarraLuzapenak abiaraztenLuzapenak abiarazten: "%s" -Herrialdea:Kolore estatikoaGris estatikoaDesb est:Trazatu kanalaTrazatu bideaTrazatu hautapenaKenketaKendu uneko hautapenetikGainlaginketaTxantiloiakTxantiloi-menuaAldi baterako prozeduraTestuaTestuaren koloreaTestu-geruzaTestu-prozedurakGIMPBrotxa aktiboa. -Egin klik brotxen elkarrizketa-koadroa irekitzeko.Gradiente aktiboa. -Egin klik gradienteen elkarrizketa-koadroa irekitzeko.Eredu aktiboa. -Egin klik ereduen elkarrizketa-koadroa irekitzeko.Saretaren aurreko planoaren kolorea.GIMPen portaera lehenetsian eragina duten hobespen pertsonalak gordetzeko erabiltzen da gimprc. Brotxak, paletak, gradienteak, ereduak, plugin-ak eta moduluak bilatzeko bide-izenak ere konfigura daitezke hemen.sessionrc GIMPetik irten zinen azken aldian irekita zeuden leihoak gordetzeko erabiltzen da. GIMP konfigura dezakezu leiho horiek gordetako kokalekuan berriro irekitzeko.Irudien cachea erabiltzen da GIMPek memoria eta diskoaren artean fitxarik xahutzen ez duela ziurtatzeko. Balio handiagoa ezartzen bada, GIMPek swap leku gutxiago erabiliko du, baina GIMPek memoria gehiago erabiliko du. Bestalde, cachearen neurria txikiagoa bada, swap leku gehiago eta memoria gutxiago erabiliko du GIMPek.unitrc zure unitateen datu-basea gordetzeko erabiltzen da. Beste unitate batzuk defini ditzakezu eta unitate lehenetsiak -hazbeteak, milimetroak, puntuak eta pikak- erabiltzen dituzun bezala erabili. Fitxategi hau GIMPetik irteten duzun bakoitzean gainidazten da.Irudiaren bereizmen bertikala.GaiaGaien karpetakGaiakEz daude behar adina geruza ikusgai beherantz batzeko.Beti dago memoriaren erabileraren eta abiaduraren artean erlazioa. Kasu gehienetan GIMPek abiadura aukeratzen du memoriaren aurretik. Bestalde, memoria arazo handia bada, saiatu ezarpen hau gaitzen.Ez dago kopiatzeko geruza edo kanal aktiborik.Ez dago ebakitzeko geruza edo kanal aktiborik.Ez dago trazatzeko geruza edo kanal aktiborik.Ez dago trazatzeko geruza edo kanal aktiborik.'%s' izeneko fitxategi bat egon beharko luke. Egiaztatu instalazioa.Fitxategi honek euskarri-tamaina estandarren bilduma gordetzen du eta horiek irudi-txantiloi gisa balio dute.Karpeta honetan irudi-txantiloiak bilatzen dira.Karpeta honetan erabiltzaileak instalatutako gaiak bilatzen dira.Karpeta hau GIMPen bakarrik ikusi nahi dituzun letra-tipoak gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPeko sistema orokorreko letra-tipoen instalazioaz gain, letra-tipoak bilatzean. Erabili hau letra-tipoak GIMPerako bakarrik nahi dituzunean, bestela jarri gauzak letra-tipoen direktorio orokorrean.Karpeta hau kurben tresnen parametro-fitxategiak gordetzeko erabiltzen da.Karpeta hau mailen tresnen parametro-fitxategiak gordetzeko erabiltzen da.Karpeta hau tresna-aukerak gordetzeko erabiltzen da.Karpeta hau erabiltzaileak sortutako eta instalatutako script-ak gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko script-en karpetaz gain, script-ak bilatzean.Karpeta hau erabiltzaileak sortutako DLL moduluak, aldi baterakoak edo sistemak onartzen ez dituenak, gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko plugin-en karpetaz gain, abiaraztean kargatzeko moduluak bilatzean.Karpeta hau erabiltzaileak sortutako plugin-en ingurunearen osagarriak, aldi baterakoak edo bestela sistemak onartzen ez dituenak, gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko ingurune-karpetaz gain, plugin-en inguruneko aldaketa-fitxategiak bilatzean.Karpeta hau erabiltzaileak sortutako plugin-ak, aldi baterakoak edo sistemak onartzen ez dituenak, gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko plugin-en karpetaz gaina, plugin-ak bilatzean.Karpeta hau erabiltzaileak definitutako brotxak gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko brotxen instalazioaz gain, brotxak bilatzen dituenean.Karpeta hau erabiltzaileak definitutako gradienteak gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko gradienteen instalazioaz gain, gradienteak bilatzen dituenean.Karpeta hau erabiltzaileak definitutako paletak gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko paleten instalazioaz gain, paletak bilatzen dituenean.Karpeta hau erabiltzaileak definitutako ereduak gordetzeko erabiltzen da. GIMPek karpeta hau egiaztatzen du, GIMPen sistema orokorreko ereduen instalazioaz gain, ereduak bilatzen dituenean.Karpeta hau desegiteko bufferrak aldi baterako gordetzeko erabiltzen da, memoria-erabilera murrizteko. GIMP modu ezohikoan itxiz gero, gimp<#>.<#> motako fitxategiak karpeta honetan gera daitezke. Fitxategi horiek ezin dira GIMPen saioetan erabili eta arazorik gabe ezaba daitezke.Karpeta honetan fitxategi garrantzitsuak gordeko dira. Egin klik zuhaitzeko fitxategi edo karpeta batean hautatutako elementuari buruzko informazio gehiago eskuratzeko.Programa hau erabilgarria izango delakoan banatzen da, baina, INOLAKO BERMERIK GABE; era berean, ez da bermatzen beraren EGOKITASUNA MERKATURATZEKO edo HELBURU PARTIKULARRETARAKO ERABILTZEKO. Argibide gehiago nahi izanez gero, ikus GNU Lizentzia Publiko Orokorra.Programa hau software librea da; birbana eta/edo alda dezakezu Software Foundation-ek argitaratutako GNU Lizentzia Publiko Orokorraren 2. bertsioan, edo (nahiago baduzu) beste berriago batean, jasotako baldintzak betez gero.Testua sartzeko eremu honek %d karaktereko muga du.Tresna honek ez du aukerarik.MugaMugak ez du geruza indexatuetan funtzionatzen.Muga:%d/%d koadro txikia Okerdura:TxikiaIzenburua eta egoeraTresna-aukerakTresna-aukeren menuaAktibatu %s tresnaTresnakEraldatuEraldatu kanalaEraldatzearen noranzkoaEraldatu geruzaEraldatu bideaEraldatze-tresnen prozedurakEraldatzeaEraldatzen...EraldatzeaGardentasunaBenetako koloreaMotaMota: %sEzin da geruza-maskara gehitu, geruzak dagoeneko baduelako bat.Ezin da ez ebaki, ez moztu hautatutako eskualdea hutsik dagoelako.Definitu gabeDeseginDesegin historiaUnitateakEzezagunaFitxategi-mota ezezagunaDeskargatuIzengabeaIzengabeaErabili ikusgai dauden geruza guztiak hautapena uzkurtzeanErabiltzailearen instalazioaren egunkariaInterfazeaBalioaBalioa:%s bertsio honen egilea: Bertsioa:BertikalaWeb arakatzaileaGaituta dagoenean, margotzeko tresna guztiek uneko brotxen eskemaren aurrebista erakutsiko dute.Gaituta dagoenean, menuak bereizi egin daitezke.Gaituta dagoenean, laguntza-arakatzailea irekiko da F1 sakatzen bada.Gaituta dagoenean, GIMPek ez du gordeko irudia ireki denetik aldatu gabe badago.Gaituta dagoenean, GIMPek bestelako informazio-leihoa erabiliko du irudi-ikuspegi bakoitzerako.Gaituta dagoenean, X zerbitzariari mugimendu-gertaera bakoitzean saguaren unekokokalekua zein den kontsultatzen zaio, kokalekuaren iradokizunaz fidatu ordez. Horrek esannahi du brotxa handiekin margotzea zehatzagoa izango dela, baina motelagoa izan daiteke.Aitzitik, X zerbitzari batzuetan aukera hori gaitzean azkarrago margotzen da.Gaituta dagoenean, sareta ikusgai egongo da lehenespenez. Hori "Ikuspegia->Erakutsi sareta" komandoaren bidez ere aktibatu eta desaktibatu daiteke.Gaituta dagoenean, gidak ikusgai daude lehenespenez. Hori "Ikuspegia->Erakutsi gidak" komandoaren bidez ere aktiba daiteke.Gaituta dagoenean, irudiaren leihoa automatikoki aldatuko da tamainaz, irudiak handitzean eta txikitzean.Gaituta dagoenean, irudiaren leihoa automatikoki aldatuko da tamainaz, irudiaren tamaina fisikoa aldatzen den bakoitzean.Gaituta dagoenean, geruzaren muga ikusgai egongo da lehenespenez. Hori "Ikuspegia->Erakutsi geruzaren mugaa" komandoaren bidez ere aktibatu eta desaktibatu daiteke.Gaituta dagoenean, menu-barra ikusgai egongo da lehenespenez. Hori "Ikuspegia->Erakutsi menu-barra" komandoaren bidez ere aktibatu eta desaktibatu daiteke.Gaituta dagoenean, erregelak ikusgai daude lehenespenez. Hori "Ikuspegia->Erakutsi erregelak" komandoaren bidez ere aktiba daiteke.Gaituta dagoenean, korritze-barrak ikusgai daude lehenespenez. Hori "Ikuspegia->Erakutsi korritze-barrak bai/ez" komandoaren bidez ere aktiba daiteke.Gaituta dagoenean, hautapena ikusgai egongo da lehenespenez. Hori "Ikuspegia->Erakutsi hautapena" komandoaren bidez ere aktibatu eta desaktibatu daiteke.Gaituta dagoenean, egoera-barra ikusgai dago lehenespenez. Hori "Ikuspegia->Erakutsi egoera-barra" komandoaren bidez ere aktiba daiteke.Gaituta dagoenean, irudiko pixel bakoitza pantailako pixel bati esleituko zaio.Gaituta dagoenean, irudi osoa ikusgai egongo da fitxategia irekitakoan, bestela 1:1 eskalan bistaratuko da.Gaituta dagoenean, menu-elementuen laster-teklak alda ditzakezu menu-elementua nabrmendua dagoenean tekla konbinazio bat sakatuz.ZuriaZabaleraZabalera:Leihoen kokalekuak'%s' idazten -XCF errorea: XCF fitxategi-motaren onartu gabeko %d bertsioa aurkitu daXCF abisua: XCF fitxategi-formatuaren 0 bertsioak -ez ditu kolore-mapa indexatuak behar bezala gorde -Gris-eskalako mapa ordezkatuko da.HoriaHoria:Elkarrizketa-koadro atrakagarriak hemen utz ditzakezu.Programa honekin batera GNU Lizentzia Publiko Orokorraren kopia bat jasoko zenuen; hala ez bada, idatzi hona: Free SoftwareFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.GIMP berrabiarazi beharko duzu aldaketok eragina izan dezaten:Zoomaren eta tamaina-aldaketen portaeraZooma 1:1Handiagotu denaZooma handiagotuZooma txikiagotuZoomaren erlazioaZoomaren erlazioa:Zoom-faktorea: %d:1Zooma handiagotuHandiagotu eta txikiagotuZooma txikiagotuZooma:[ Oinarri-irudia ]_Antialiasing-a_Automatikoa_USegmentuaren nahas_te-funtzioaHautapenaren nahas_te-funtzioa_Distira:_Brotxa_C_Ezabatu segmentuaE_zabatu hautapena_Irauli segmentua_Irauli hautapena_B_Gradientea_Horizontala:_Ñabardura:I_konoa:_Inportatu_Argitasuna:_M_Eskuz_Izena:_Eredua_Aurrebista_G_Berregin_Berregin %sEgin _segmentuaren erreplika..._Egin hautapenaren erreplika..._Saturazioa:_Hautapena_Desegin_Desegin %s_Bertikala:_X:_H_Y:_Zooma (%s)koloreakkopiatudpi'yes' edo 'no' espero zen %s token boolearrarentzat, baina '%s' jaso daanalisi-errore larriagris-eskalagris-eskala hutsikhazbetehazbeteindexatuaindexatua hutsikUTF-8 kate baliogabeaBaliogabeko '%ld' balioa %s tokenarentzatbaliogabeko '%s' balioa %s tokenarentzatmilimetromilimetroehunekoapikapikapixelpixelpixel/%apixel/%spuntupuntutips-locale:eu%s tokenarentzako balioa ez da baliozko UTF-8 katea'%s' tokena analizatzen zen bitartean: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/fi.gmo gimp-2.2.9/po/fi.gmo --- gimp-2.2.8/po/fi.gmo 2005-01-22 17:33:14.000000000 +0100 +++ gimp-2.2.9/po/fi.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,450 +0,0 @@ -Þ•Q ¤Jm ,•àÆáÆ&÷ÆkÇGŠÇ9ÒÇG ÈATÈN–ÈiåÈ<OÉkŒÉ@øÉ29Ê;lÊP¨ÊOùÊ2IË9|Ë-¶Ë9äË;Ì7ZÌ ’ÌœÌ -£Ì ®Ì -¸Ì -ÃÌ ÎÌÚÌêÌ -ùÌÍÍÍ -/Í:ÍBÍJÍf͖̀Í0ÍÎÍßÍòÍûÍÎ -Î%Î,Î4Î<Î KÎ YÎ eÎ -sÎ -~Î ‰Î –΢Π²Î ¾ÎÊÎ ÏÎ ÛÎKèÎ…4Ï.ºÏ1éÏ!Ð=ÐOÐVÐeÐlЈЗЮвÐÅÐ -×Ð âÐîÐ Ñ -ÑÑ0Ñ CÑMÑ\Ñ -eÑpÑђѪѼÑÎÑÝÑ*óÑ6ÒUÒhÒ…ÒÒ¦ÒÃÒâÒ÷Ò ÓÓ>ÓSÓgÓ#{ÓŸÓ¹Ó -ÕÓàÓñÓùÓ ÔÔ4ÔHÔ PÔ ZÔ gÔqÔÔ1–Õ3ÈÕüÕÖÖ)Ö‹0Ö -¼ÖÇÖáÖ÷Ö×× '× -4×?×P×b×r×Aƒ×JÅ×Ø<#Ø `Ø nØ|،إؽØÍØÕØÚØ ôØÙÙ)Ù2ÙIÙ[Ù lÙzÙ’Ù -›Ù¦Ù·ÙÐÙçÙ&ýÙ$$ÚIÚPÚ VÚ `ÚnÚuÚŽÚ•Ú›ÚµÚ"½Ú àÚìÚñÚ÷ÚüÚ - ÛÛ&Û7ÛKÛ7_Û—Û Û ªÛ¸ÛÁÛÈÛ ÐÛ ÝÛéÛ ñÛþÛÜ ÜmÜƒÜ ˆÜ –Ü ¤Ü®Ü·Ü ÔÜâÜòÜ ùÜCÝ7JÝ=‚Ý@ÀÝ6Þd8ÞÞ»Þ3ÑÞß<ß#Vß!zßœß¹ß Óßßß õßÿßà à6àNàfàxàŠà§àÄàáà,øà%á?áGá Záhá ˆá ©á!·áÙáôá -ââ4â=â Fâ Tâaâuâ|âƒâ ‰â—âªâ ¹âÆâ.Üâ5 ã5Aã7wã8¯ã)èã,ä?ä[äsä2ä ÃäääÿäOåAkå%­å&Óå4úå1/æ#aæ …æ“æ ¯æ »æÅæÝæîæôæýæ çç -+ç6ç>ç DçRç hçuçŽç ç0²ç ãç ïçüç è è è'èBè_è+hè”è§èºèÃè Óèáè êèôè -üè éé$1éVéiéxéé ªéËéåéêê&ê";ê^êtê ƒê‘ê¡ê ªê¶ê¾ê@ëIëZë bëoëŠë£ëÃë Øë"æë" ì,ìEìNì -`ì kìyì -˜ì)£ìÍì,çìí!.í#Pí#tí!˜í%ºíàí.ÿí.î 5îAîRîfîyîŒî#¢î-Æîôî% -ï0ïFï\ïwïŒï¤ï ©ï·ï -Ñï -Üï -çïòï -ðð ð %ð 3ð@ðPð`ðsð‚ð‘ð ˜ð¦ð -¹ðÄð-Ëðùð ñ ññ4ñ 8ñBñGñMñ^ñqñ…ñ–ñ©ñ¹ñÌñãñ ôñò ò ò *ò7ò>òDò%Jò!pò ’òŸò²ò&Êòñò óó"ó5ó GóUódó tóó óó ­óºóÌó Ûóçóöóô)ôFôXôgô -€ô -‹ô-–ô ÄôÐô ×ôåôíô õôõ - -õ õ"õ5õHõaõiõ|õõ £õ±õËõ ÔõÞõ îõøõÿõ:ö?Xö8˜ö ÑöÝöæöøö ÷÷ -"÷-÷3÷ -I÷ T÷ b÷ n÷ -{÷ †÷ ’÷ -œ÷ §÷³÷ ¼÷É÷Ý÷ ì÷>ú÷ 9øZøjø|øøŸø±øÀøÒøòøù ùù .ù;ù@ùXùkù„ù˜ù®ù ¾ùÈùÛùðù ú !ú -/ú:ú -Rú]ú uúƒú ™ú¦ú »úÈúØúóú û û -û'û*8ûcûlû!~û û.·ûæûü# ü"/üRüoü&Žüµü Ëü×üëü,ôü#!ýEýLý [ýiý|ý'–ý¾ý'Ûýþ þ6þRþFlþT³þÿÿ ÿ"ÿ8ÿ Kÿlÿ ƒÿÿ -¤ÿ ¯ÿ½ÿ Úÿûÿ -+= C O[q(z$£È=Î6 <C?€AÀ79:ct9ØB=Uf“>úC9J}gÈ 0<L ^l†˜ ¨ ²¾ Ð Ý ëù $9L`s†˜¯¿Óï -'.7Vqˆœ° ÄÒ -å ðþ  - % 5CV -grŽ –¢² ÂÐè  4 (M v | ƒ  ‹ ˜   ¦  -¬ O·  - - -”$ -¹ -Ê -ã -ú - -    ' 3  < .H w Š   -¬  ·  Å  Ñ Þ ã  ò ÿ    $ 1 B V m u| ò Ì ÅÑ c— ûzƒ‰r‘4=O^gwŒ&'Ä ì ø    )5 :DJQV hu„–œ´ÅÉã$-C Z -do x‚‰‘ – £¯Êáñ -ö-H5 -~ ‰“£ -«H¶!ÿB!dh1w©¼Á ÆÓÚê -ú - `"™ƒC1a0“Ä Ê ×ä -ö - #3Dcv Ž(œ -Å -ÐHÛ -$ / -<G NZi x…›° ¿ ÌÚß ç ô&- 5C€\ Ýéþ.JN ` n {K‰3Õ6 @O"e ˆ’ª¾ Í$×ü , : [(|+¥)Ñ*û!&H/ZŠ‘ *±Üí' -2BR[ -mxˆž®ÀÏØç *Kfw€¨» Òó   ) 9 S g ! ¡ ½ Ï  Ö ã ú  ! !?!X!-g!•"ž"®"Á"Å" ß"é"ï"ÿ" ##3!#U#f#~#Ž# ¦# -³# ¾# Ê#×#õ#$4$M$a$r$ ‡$•$¬$ ³$¿$Ô$è$÷$@ÿ$@%-G%u% ‡%”% ™% §% ³%À%Þ% å%ñ% ö% &&%&D&c&w& ‹& •& ¡&­& Ä&Ò&ê& '' -%'0'E' ['i' '' -£'®'Ã'Ì'Ô'ç'ì'ô'ý'((/( E(S(h(( -‡(#’(¶(Ï(è(þ() )))+F)r)z) ) ) -›) ¦) ³)Á)Ö)ê)** 1*>* M*[*n*‰*" *Ã*Ì*â* ++++!+$7+\+n+‚+‘+  +¬+ ´+ Â+Î+á+ æ+ ó+, -, #, -0,;, K,U,d, t, ~,ˆ,¡,°,Ç,Ý,û,-)-0-9- L-X-k-…-Š- -- ›-§-¹-Í-à- ó- ý-.. !. .. 8.D.a.p.‚. ”. -¡. ¬.¶. Ñ. Þ.ê. / / /,(/U/!h/Š/ž/µ/)Ò/ ü/ 0 !0 /0;0@0O0V0 g0 s00B”0A×0171L1 ^1h1o1~1 Ž1›1­1Â1Ê1„Ò1W2f2x2€2‰2 -Ž2™2 ­2»2Ò2 ä2ñ23#3"B3!e3!‡3©3Á3Ú3 ò3 ü3 44 4/4 74E4VM4+¤4 Ð4(Ú45" 5,5 B5 N5Z5t5%Œ5 -²5 ½5Ç5Ï5Þ5ò5 -6 6 6*6 36A6 U6 _6m6s6†6 ›6 §6 ³6Á6&Û6,7 /7<7A7 -Q7 -\7g7„7¢7Á7Ù7ì74þ738E8 -K8V8^8 -n8 y8†8•8 ž8¬8´8»8 Ø8ä8 ù8!9'9 69D9 Z9f9w9’9 ¢9¬9½9 Ï9Ü9ã9;ë9?':g:v:~:’:¢:¿:¡Ü:4~;³;¼;-Ä; ò<ü<= -= =#*=N=-a= =›=°= Å=Ï=×=î=÷= -> >¥>½>Ñ>å> î>û>? ??(? -@? -K?V?l? -|? ‡? ‘?Ÿ?£?½? Î? Ø?!â?@ @@*@ 9@ F@S@n@u@ }@‹@ @ ¶@Â@ -Õ@à@ò@ AA (A4A -GARAdA€AA¢A ¨A!µA×A!õA#B;B QB -^B9iBU£B=ùB<7C=tC²C"¸C?ÛCD-D >DJDNDSD(XD,D®D¾DÐDáD -òDýDE(EJYHYYYoY~Y˜Y§YÅY ×YãYòYZZ .Z:ZSZeZ yZ†Z¦Z¼Z×ZñZ [$[ 8[D[Y[n[~[[´Ÿ[)T\N~\Í\Ká]=-^ƒk^*ï^¤_¢¿_3b`T–`?ë``+a2Œa¿a¯Abñc4ôd/)eºYe f f(f.f5fFfWfjfrf‚f”fšf­fÀfÝf òf þf g;gPg `gmg}g Žg›g °g¾gÎg#âg hh (h 6h&Chjh -}hˆh›h«hÅh"×húhi"i2iCibixiˆii­i¼i ÍiÚiói jjj(j=j+Cjojuj†j jšj ¡j®j ¾j -Ìj×jÝjäjìj õj k8kvGk¾kÅkÝkõk ýk -ll l!=l_lwl“l®lÇlälmmmm'm;mUm \m im um ƒm‘mšm £m°mÀm ÏmÛm ìm ømn!n!0nRnfn(n¨n#±n Õn ãnðn÷n -ýn o oo.oBo]o -bo mo -yo „o’o¢oK«o1÷o7)p1ap5“pHÉpAqŠTq;ßq!rÁ=r ÿræ s t¨u}½u*;vBfwæ©wx¯x‚1y´y ºyÈy)Ïy5ùy¯/z1ßz0{0B{1s{(¥{CÎ{€|S“|,ç|2} G}Ah~Aª~*ì~«íà ±€ξ£‚ª1ƒ§Üƒ§„„,…˜/†GȆè‡ïù‡2鈉N6‰ …‰-‰ -½‰ȉÛ‰í‰þ‰Š ŠŠ!Š'Š9ŠLŠ eŠrŠ„Š ”Š ¢Š¬ŠÅŠΊ ֊㊠-éŠ<ôŠ 1Œ?Œ VŒ`ŒrŒ†Œ–Œ¥ŒºŒÔŒäŒóŒ0@ O\p -€‹™3°;ä; Ž¡\ŽþŽF LV [ hv|„ –·¾ÆÏí ‘3&‘#Z‘~‘–‘©‘¹‘Ó‘é‘ø‘’ ’ ’ ’=’F’FO’–’ -¶’ -Á’Ì’ Ñ’ ß’ í’ ú’ “ “!#“!E“ g“ s“+“K«“0÷“Q(”˜z”¢•$¶•5Û•P–Gb–-ª–OØ—j(˜o“˜e™ji™~Ô™pSšoÄšw4›<¬›?é›>)œthœtÝœ`R‰³=ž½ž0ÞôžúžŸŸ(Ÿ 9ŸGŸ6IŸo€ŸðŸòŸùŸ4 #6 ÈZ G#¡%k¡X‘¡Uê¡O@¢¢§¢°¢¹¢Á¢ -Ê¢ Õ¢ á¢ë¢ ô¢þ¢£#£=£ E£S£\£b£q£x££”£§£°££ Ô£Þ£ 㣠ñ£ÿ£ ¤ ¤(¤.¤ 1¤;¤N¤i¤ ˆ¤©¤ ¯¤¼¤ä̤ ë¤ø¤ ¥ -¥¥ ¥ *¥ 4¥B¥V¥]¥ -d¥o¥ w¥„¥Œ¥¬¥ µ¥Ã¥É¥Ø¥÷¥ ¦¦ -¦%¦7¦ G¦U¦d¦ t¦‚¦ –¦ ¤¦²¦ ¦Ϧâ¦ø¦§§ +§ 7§C§R§[§ u§ § -Œ§—§§¬§ȧק駨¨-¨>¨P¨ `¨ ¨ ‹¨•¨ ¨§¨ ­¨¹¨Ψݨ ã¨ñ¨©©©© (©5©8© A© K© -U© -`©k©„©© •©Ÿ© ¥©²©¸©¾©Ä©Ë©Ò©Ú©â© õ© ªª(ª 0ª=ªDªKªSªmª|ª -œª§ªºª ɪ Õªáªéªñª« « #«/« 2«<«A«G«Z«u«~«†«™«¯« Ï« Ü«ê«ð«¬¬ ¬ -¬ ¬-¬ =¬ K¬ -Y¬ d¬ r¬ ¬ ‰¬ –¬£¬ ´¬¾¬ ƬЬ׬ -ݬè¬ ñ¬ý¬­ ­ "­.­7­ >­L­\­c­ l­ y­ ‡­”­ ­ «­¹­ È­Ô­ç­í­ð­õ­ý­ ® ® %®2®G® Z®g®m®v®‡®š®¬®(¾®ç®ï®ø®¯&¯8¯4R¯1‡¯/¹¯é¯ÿ¯°/° 7°D°J°^°#o° “°´°Ó°Ú°ê°"ú°± -%±0±B±S±Z±c±y± Š±–±±¥±µ±DZܱ -õ± -² - ²² ²*²0²@²F²M² -m²x²‰²² -˜²£²©²²²·²̲â²ñ² ù²³³³³"³1³5³ -;³F³M³R³5V³Œ³ ž³¨³¸³½³ij ̳Ú³!ï³ ´ 2´S´ -s´ ~´Š´‘´•´´¢´¨´®´ µ´ ¿´É´Ï´Ö´ Ý´ë´.þ´-µ%Jµp¶-Š¶j¸¶a#·<…·I·M ¸_Z¸iº¸E$¹vj¹Dá¹7&º7^ºX–º[ïº;K»<‡»9Ä»Fþ»=E¼1ƒ¼µ¼¾¼ -żм Ù¼ æ¼ -ò¼ ý¼ ½ ½&½)½:½ O½ -[½f½o½½¬½ ½8н ¾¾ 5¾A¾P¾ -o¾z¾ ƒ¾ ¾—¾ Ÿ¾ ­¾ ¹¾ -Ǿ -Ò¾ ݾ ê¾ ö¾ ¿ ¿¿!¿ 2¿W@¿˜¿"À3;ÀoÀÀŸÀ¥À·ÀÀÀÙÀðÀÁÁÁ.Á>Á MÁ[ÁmÁÁ–Á ­ÁºÁ ÏÁÝÁìÁÿÁÂ+ÂDÂ]ÂrÂ&ŠÂ±ÂËÂàÂòÂà Ã!#ÃEÃ^ÃuÃ!‹Ã­ÃÆÃÝÃ8óÃ%,ÄRÄrÄ{Ä ‘ěīÄ(²ÄÛÄõÄþÄÅÅ&Å 7Å&XÆ%ƥƸƿÆÕÆQÝÆ /Ç9ÇRÇhÇLjǤdzǻÇÐÇ åÇïÇ+È20ÈcÈ9uÈ -¯ÈºÈÁÈÑÈèÈ÷ÈÉÉ-ÉCÉ![É-}É«ÉÀÉ ÜÉèÉðÉ! Ê+Ê 4Ê @Ê LÊYÊqÊ-‰Ê$·Ê ÜÊæÊ íÊûÊ -Ë!Ë3Ë;Ë!CË eË1oË ¡Ë­ËµË¾ËÒËîË÷ËÌÌ-Ì?LÌŒÌ•Ì¦Ì¶Ì ÐÌ -ÚÌ -åÌðÌùÌÍ ÍÍ"ÍL=ÍŠÍ Í ›Í ©ÍµÍ ¾Í"ßÍÎÎÎ6"Î:YÎ7”Î@ÌÎ2 ÏX@Ï$™Ï¾Ï-ÞÏ Ð5#Ð&YÐ*€Ð%«Ð!ÑÐ óÐÑÑ -Ñ'Ñ<ÑVÑkуљÑ!­ÑÏÑîÑ Ò%(Ò#NÒrÒyÒ ŽÒ œÒ ½Ò ÞÒìÒ Ó)Ó<ÓNÓ`ÓhÓpÓxÓŠÓžÓ ¦Ó °ÓºÓËÓæÓûÓ Ô5+Ô<aÔAžÔAàÔE"Õ0hÕ.™Õ ÈÕéÕ' Ö61Ö%hÖŽÖ'©ÖMÑÖG×*g×,’×;¿×8û×(4Ø]ØoØ ŽØ œØ'©ØÑØìØõØþØÙ1Ù CÙPÙWÙ]ÙvÙ ‡Ù•Ù©ÙÅÙAÔÙ Ú$Ú3Ú :Ú FÚ RÚ^ÚyÚˆÚ'‘Ú ¹ÚÇÚ ÖÚâÚøÚ - ÛÛ (Û -2Û =ÛIÛ%bÛˆÛ›Û«ÛÁÛ!ÙÛûÛÜ-ÜBÜTÜ,nܛܶÜÕÜðÜÝ Ý Ý~ÝžÝ -¤Ý -¯Ý ºÝÇÝ)åÝÞ,Þ HÞ6TÞ6‹Þ,ÂÞ ïÞûÞß ß#1ß -Uß4`ß"•ß*¸ß+ãß!à51à:gà)¢à4Ìà!á,#á Pá -^á iává …á “áá¬áÆáâáñáââ3âGâ^âuâ{â‘â -¯â -ºâ -ÅâÐâîâ -öâã -ãã2ãBãTã gãuã †ãã¢ã¶ãÆã-Ûã ä ää-äAäIäYä`ähäyäŠä ¡ä¯äÀäÏäÞäîäýäåå*å ;å -Gå -Rå ]åiå‚å šå ¤å®å%Èå îåúå ææ+æ<æKæ \æiæ zæ ˆæ•æ ¨æ´æÇæ Öæ ãæñæ ç ç+ç>ç*Nçyç‰çB§çêç ñçýç èèè&è/è6èEè -`èkè€è -“èžè²èÆè×èóè -üèé é&é*é=@é=~é.¼éëé úéêê -*ê5êFê]êoê„ê›ê«ê»êÌê Üê êê øêë -ë'ë:ëJë[ëDmë#²ëÖëçë÷ë ìì-ì<ìKìbì‚ì šì¦ì¾ìÎìÖìôì í$í<íXí líyí‰í¥í¿íÓí!âíî"î2îRîfî‚î“î¯î¿îÑîàî ïî ýî ïï&(ïOïWï+fï’ï ©ïÊïãï òïð3ðEðXðsð ‹ð$—ð¼ð/Îð(þð 'ñ 1ñ >ñKñ%_ñ6…ñ¼ñ%Öñüñ$ò*@ò)kòJ•ò\àò=ó Eó Oó[óuó”ó¥ó·óÀó Þóëó@ô>Eô#„ô#¨ô Ìô íô õõ0õHõ _õ*iõ*”õ¿õ<Îõ2 ö=>ö1|ö2®öEáö9'÷@a÷5¢÷;Ø÷<øWQø,©øOÖø9&ù?`ù  ù®ùÀùÓùåùõùþùú$ú5úNúdúsú„ú•ú²úÐúåúýúû-û>ûOûiû}û•û­ûÅû äûîû÷û/üGüaüsü‹üü¯ü ÂüÐüßü ñü ÿü ýý*ý;ýPý eý$qý–ý¨ýºýÊý Úýçýüý þ$þ#6þ5Zþ þšþ¡þ©þ¹þ Óþ -Ýþ -èþ;óþ/ÿ OÿŠ[ÿ æÿòÿ 7 @ N\o+x¤¸ -Ì×à õÿ (6Ui zˆœ »jÉ4ìHÄ5{ú vw‚ú §Å Ýé ü -?0S.„ ³ Ô â ð þ  ".6 ?I[l~™²ÊÎè" 2#<` -w ‚Œ“›£¬± -ÅÐë   ) %F  -l Bw  º  Æ  Ò Þ ç 4í !" -QD -– -œ -5³ -é - -   ' , E T [ b s {„ ‘ P’ (ã . ; @  R  ^  k  -w ‚  - ¨ » Ó ë  ÿ   + 8JB -˜¨± ·Ã Ù åï -  ' 1 -= HUe v€œ -¥ -°»}Ñ -OZl&€'§ -ÏÚã ôþn-…D³ø -%8Jf|‹”¬ÀÕ<ò-/6]3”4È3ý&1XIp ºÇØ ê #6Zn‡šªÁÙî$9Xq&Ž µÖí$B"a,„&±Øõ"!D a*‚$­Òíý3M'k!“µJÍ'=U*Z …“£·ÈDÍ%4G ^ -l w ƒ¯Îè1G_qw}'šÂÙZá -<3G{‹” -š¥ ´*À ë÷'@\w¨ Á ËØç ü #  -? J  d p Œ  ¨ µ  -Ñ Ü  ö !!'!-! C!M!U!^!g!|!™!´!Ã!Ú! ÷!"0"C"^"%n" -”"Ÿ"¥"Ä",ã" ## # 5# C#Q#`#q#Š#£#¿#Û#ô#$$&$8$V$'h$ $œ$"»$ -Þ$é$ñ$ ö$% %:%S% e%s%‚%•%% ¬%¹%Í%Õ%æ%ö%&& 1&>& R&`&q&…&”&œ&¸&É&ß&!÷&"'<' R'\'b' t' -€'‹'¤'©' -¯' º'Æ'Ù'ñ'( ( !( -+(6( -L( W( e(!q(“(¢(²(È( -Ù( ä(î( ) )() D) -R) ])3j)ž)µ)Õ)ê)** ?*K*i* |* ˆ*”*©*²*Å*×*ç*8+$;+)`+Š+Ÿ+±+ ¸+ Â+Ï+ -â+í+ÿ+ -,,©(,Ò,á,ð,÷,ÿ, -- -#--Q- c- q-${- -#¶-Ú-$ï- .)!.)K. u. ‚. .œ. ². ¼. Æ. -Ð.UÛ.1/N/DU/š/.¡/Ð/ã/ ô/ 0#"0(F0o0x0€0ˆ0ž0²0Á0É0Ò0â0ê0ò01 -1)101A1 P1]1n1}1’1²1 Ñ1ß1å1 ø1 2222R2m22ž25¯2å2ö2ü23 3323D3U3 \3i3o3!u3 -—3¢3 À3 Í3î3þ34 (464I4`4t4„4—4 ª4 ·4 Ã4<Ð46 5D5M5\5w50‹54¼5”ñ5#†6ª6¹6!È6ê7ù7ÿ7 -8 8((8Q8.f8 •8Ÿ8 ³8Á8 -È8Ó8 -í8 ø8 9 9©9É9Þ9ó9: -:#:):0:N: -m:x:~: -˜: £: ±:½:Õ:Ù:ó: ; -;!;?;D;[; y; ‡;•;(«;Ô;ã; ê;÷;< -7<B< `<l<Œ< ¬<¹< -Ù<ä< ==.=L=h= q={=—=¶=Ô=ï=> *> -6>=A>I>=É>>?GF?Ž?)•?4¿?ô?@@/@ 8@ B@L@&k@’@¡@¸@Ê@ Û@é@'A'0ANXA§A °A%¾AäAûA BB.B =BJB%ZB€B—B¦BµBÎB íBûB CC8CSCcCkC~C˜C²CÃCËCßCèCýC -D!D0D @DNDbD~D'œDÄD)ÞD$E$-ERE(iE ’EžE ²E¾EÐEãE ûE F-F*AF lFzF ŒF–F¦F¿F=ÔFG 0G:GBG^G@zG%»G%áGHH#HAH`H rH€HH¥H´HÄHßHïHþH II #I 0I :I HIiI€I “I  I¬IµIÔIðI J%J%CJiJ…J"¤JÇJçJKK0KGKYKvK/‹K»KØK$ñKL0LFLWL0rLL£LðLMM)+MUMfMvM“MœM ¬M ºM ÈMÖM êMøMNN $N0NKNTN^gNEÆN OOO(O ;O IOWOkO‰O¡O%½OãOPP-P#GPkP!‰P+«P%×PýPQ+Q!CQeQQ)¡Q#ËQïQ RR-RLReR&‚R ©RÊRáRéRøRS %S3S+MSySS¯SÎSèSúST-TMTfTT™T¯TÅT ÝTëTUU-UBUXUoUUœU)²U0ÜU V V?VQViV#€V¤V¼V"ÒV*õV% W%FWlWŒWŸW¯W·WÆW ÕWâW öW!X%X 5X?XPXbXrX‚X‹X¡XµXÒXäXúX Y-Y>YPYbYrY…Y —Y£Y¶YÇY½ÚY1˜ZQÊZ|[_™[/ù[ˆ)\.²\ˆá\‰j]9ô];.^>j^B©^)ì^x_«_É;a5b2;bÈnb 7cEcLcRcYcmc‰c cªc¿c ÔcÞcþcd;d Md [d id>sd²dÆdÚdídee*e=eMeieˆe›e¯eÃe4Øe f)f-ivliãiëijj!j‰X‰n‰}‰•‰¥‰µ‰ʼnÖ‰æ‰öŠ‹%‹-‹ -<‹ G‹ S‹`‹r‹ †‹ ’‹Ÿ‹®‹¶‹ É‹׋æ‹õ‹ ŒŒ(Œ /Œ9ŒGPŒ4˜ŒBÍŒ“¤@§ŽèŽüŽ$ --8Ut{„)·Ì9á;Lbv!–¸ÊÙÞäõ -‘‘8‘!Q‘ s‘ ‘‹‘“‘§‘¸‘Ë‘Û‘ ë‘ø‘’ -*’ -5’6@’Nw’<Æ’`“Ÿd“ˆ”&”&´”IÛ”M%•[s•WÏ–5'—t]—eÒ—_8˜ƒ˜˜‚™|Ÿ™9šGVšGžšCæšq*›2œ›YÏ›x)œi¢œ AX_gy–«¾8Àùyž {ž -…ž%ž*¶žîážQП#" ^F Y¥ Sÿ 'S¡ {¡…¡•¡ ž¡ -¨¡ ³¡¿¡Ñ¡ Ú¡ä¡ô¡'¢+¢4¢ E¢ O¢ Y¢g¢p¢¢˜¢±¢Å¢×¢í¢ô¢ü¢ ££ 4£ A£K£Z£ ]£ j£x£—£©£¹£ Í£ ×£ -ã£î£¤¤ ¤+¤A¤ D¤R¤[¤n¤‰¤’¤™¤«¤²¤Á¤!Ȥ ê¤ö¤¥¥-¥B¥ -X¥c¥l¥„¥ “¥ ¥ ±¥¿¥ Î¥Û¥ ñ¥ ý¥ ¦ ¦&¦7¦ U¦b¦ q¦~¦œ¦°¦À¦ɦݦì¦ý¦§$§!4§V§j§§ §´§Ó§æ§ø§¨'¨6¨ H¨ R¨ _¨ i¨s¨ †¨”¨ ¦¨²¨Á¨ ʨ -Ô¨ ߨ í¨û¨þ¨ © © © .©:© U© -a©l©s©y© -‰©”©œ©¤©­©³©¹©½© Í© -Û©æ© ù©ªªª#ª*ªAª%aª ‡ª•ª ¥ª±ª Àª Ϊ Ûªçª « -« «+«.« -=«H«N«_«x«~«„«™«*¯« -Ú«å«õ«û« -¬¬¬!¬ 0¬=¬ M¬[¬ -l¬ w¬ „¬ -’¬ ¬ -«¬ ¶¬ ĬÒ¬Û¬ë¬ ò¬ ÿ¬ ­ -­­(­;­L­U­^­f­v­ˆ­­ —­¤­ µ­ -¿­Ê­Ù­ê­ û­ ®®"®%®*® 0® ->® I®U®d®y®”® §®±®®Ñ®è®û®8 ¯ E¯S¯ Z¯h¯z¯–¯µ¯1Я+°.°A°,_°Œ°“° ©°!³°Õ°,é°/±+F±r±{±Œ±&±ıͱÖ±å±ö± ü± ²²9²H²N²T²i²y²²¢²´²¼²ò ʲ ײä² -ó² -þ² ³#³+³;³ B³L³\³ e³o³t³Ž³®³¾³ dz ճ᳠å³ó³ ö³´´ ´´#´)´8-´f´ u´´”´š´ -¡´¬´¾´!Û´!ý´ µ @µ -aµ lµyµ‚µ „µŽµ“µ™µ ¡µ­µ¼µ˵ ѵÛµäµTóµ5H¶$~¶uÏËôjóû=}s’wq ¸Õ~„dùââ^+  õ¹8Üþ¾Õ«ÙȾ7µfýƒøDÖŽ‚‘ª›UOú”J …®î&ã L°P: ?c"¢®¿¡ô>i¾~[C7±ø¡šXý> · BDPLŸ¯3ò€<„„'`M†Øu,²$nñ½öÒàíå¿i ¾±©@7|ϲ‡f±žÅ³*¼Žžj\Wm–R*ÿx+.¼¸l$žü½!ç‹À! Éh80 ©cêó…ê§Ù·gi}êëeÎÒ¬WTeš®¼rè¢åÖIò ©ù"[²Ù6¡ tÝi!Û©—ðä'Z󘽴êé5E_#ä9Táæ5w¬s$f\9õ.õ#dÁ—BtŒðØ åÐ64x )(90Meå |Ç`gÁWäáÕA$ò~øÆ 00, Ýé)zÈŸ -À/NÅFI¹Œ­zƒBJ®Ù^,àöNj€ejGf F oG wÀÝU—:úv³¬AÃHψåè! HÀ¥¨Ö†2ͪϛ±uü¹ä¼êS‹Ívï7J B<l<s“¹ZáBà†Þû7‘‡ïs1™ M‚ÃPÑ-¯Xæçt‡h£d×5™¦ºñˆóqxÛ£ì ½D Š“ ‹­}pÚ "°Ÿ9 dfŸ§öÔ%ï1®> CBKjÆ"Epw#ÑÌhv Ò÷ú÷éyP¯ N cŒ¶­ý‰{†š ” (e; "W+-' ™–Á˜þ(D5. ëín` ð¸$ÌËQXb¸VÙ `*ÑÀºf ð¯#¥Ð‘V¡àWÕ,¾áÚˆî?“ Ž“ º2á [‡‹ Õboæ¥À1óš ۱ίVÍÖ.Ÿ³IK ÁÖü¬´€<™yjT¿£>ŒÌô2 vÎ1? ‚< Á^iƒ%Ap~Å!žÃUc¡nòœ‚ŠÚ¶}“›Ž è Ð3ZIH:KQ³Ï]4Œþc 'ŠÆ4ä@éÄøFÜß…˜Çø‰_,/ † -´¬ÇÚ¿Qê;õÊ) ¢¨ghïÆô: Ò+[`îm}N ”*( *Šá— ›èŒ¨ö©ŸÉ(¦ :Q=¶›¾Dä­8ýeo'Eñ.(7 |gÑ‘8 ó-6Ü Êç¶pÓmß4@aþCÑW•·’‰T@ Þ ¸±¯×Ž¥nïüzÍåº ªªƒi9 ¨‰ÏÒC9›´9Ê©ÚFOíLä7»@z{2w£ sÄô’Vi²¥Â</RžÎ)Õ×ì×.ÓÎ Y z')œ(é߸öOõdœØ?)²Ú@+‘ -­å„ŠN‘àÄ«”A ‘TØF4µÞ¶ZIä0â»ã‡ØŒs²´íË»•HžBGgë$ ÷t`¤Ú}îc4ð2ïJ$3g›ÁFO ¤C±Ü‚?¡Ißùqu8€š<¹#* ¹3L+ã1ÔG€w–=‰ÈY þ»0lâ"-tÆ‘8ö!Õ}“Rú ëh'…u=/ÃÑý(ÐQÂìÓ+¨U -|ú7…ˆ?Е„œÆJÜÞˆOfÃ?õzÊÝÓEáq“,% -M•sé–2™ŸTÓûÄu=aâ{ê–vjyÄ«©­-òOEÃkT¹ÉÌÜBbµ¤½†`#»fƒkÌ2ø3Î<\zÅ5ºRî@;¼·Ç¹q&_ì/n2Edù¥_¸ã~Jµ}:.,G$šJ—NÔxûÒª®úä̤ò\y6é*éB6ÈZÅb=×Û§»5Ãj—JûŒÈK­r4t‰AS†¡ 8O UDUÃç–c5</XMÞßË;$Rÿ‚øù46H¯m- …#õ:0 n?4 ySô€Ü°bÜ;˸wKmÍ’ú[çšíŠëP¦mnu\"%«]Sk9`#ï|ieÓÉè§G¤`û@h¡ÁxSw çaèNSa’ÿöJP AmâD˜¦Y\œ1æHñ Þ( rìÅ‹¬ + 8G÷& ¿›kH¨”ªŠ´Þy®Vï„ñÿ€KÜ^T‹ÂÉŽ0£¶Çn_蒔̶Π³ÔP ]µ£§™M‡– îÖ-yZñü gCkYÛ_aoëâU3Y7DŠ§>= =ƒ´‰ŽRãÛÉyÔSk ª-:ãFØ6¿”·¥mDa B ÊR(¶av.œÿ;ÏÀ©ç>Kv@kì%Z ,%‚™ª Îd1 ÂE5 q7²‹~CQÒƾ:—˜Y-Ns%M{ƒˆÅì1¢YþŽ;í«Ø﯄# †ÖXM ÚÈË*zxþA “Ä´¼œ2¥$ˆÙIûÍàQù¢š¨Ä3 ¿ü’pILo1!”C…’÷L -¢ÐýêÇâ¢ÝI *%/h²ˆÐ32ýÓôcHo -«Ñ&ƱT•=ÆÝrK]{ðÞ׌쬣8 Ôíÿ>s ÊP)¥Úqæ¦Ù%[{,!ÝS+×X¼•°!xÄKöE °¼ƒ Íà>Ý…ßÁ‡À½ZK°^^ÎhîÅut¦Í¡¨„ßëz÷®×Q•6]ˆç_ÝÊ uæ>ØÑVk« ?Cû“+ãq˜QŽ)xá»Hb¸·µA½Ô/bW˜rÖüýODWjËGoü#œ¬ƒhË ^;{;™r\'!Ô[ÈUWáçÄgA´˜^5úO°ãÅH ŸZµwº«¶ÉÊó î p]&,§Ð­ø -¾l~ªJèñžMæÂϳ²½Âb÷”æÛPt½aG åÇË„µXòÈ÷" U§åžë ¿6 ¹òC Õ¨4À³¢lp Ÿq¢»ñ~°I}±ÀvÍNL³Võþ ó‹b×=†µÔc"Âr&NEö&·]­.‚LÐRò SL žß|³r™oX|f¤<Le‰¤Y‘Q pí)Ö\/ÒÁY«:줕°  Ó¦/\£n·93ñllF…ó{Màú‡]d®øíoG&>ùð^Š{ɺàÌê’̦ý'ðF5ÑÙpgV~9d–Õ  -P - È|[)‰ÿÉ30—º6.; —X¿?a·&›8¤ãk@ÙRÿl¦èy[Þ"˜0üÒ_ðœiþt ¬VÛ¾»ÇEû‡& lâ‚r]v ëØÿùeôæ¼õßô* -é_O1mùÇA§ÏÓ÷x‹'•|F£Ê– º¯šÛ% -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --batch-interpreter - The procedure to process batch commands with. - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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: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 to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.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 EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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 opacitySets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: - -%sWarning: Failed to save data: - -%sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-18 06:20+0200 -Last-Translator: Mikko Paananen -Language-Team: -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: Emacs 21.3/PO - -Epäkelpo valitsin "%s" - -Käyttö: %s [valitsin ...] [tiedosto ...] - - --batch-interpreter - Komentojonokomennot tulkitsevat proseduuri. - --debug-handlers Käytä ei-vakavien signaalien käsittelijöiden virheenjäljitystä. - --display Käytä annettua X näyttöä. - --dump-gimprc Tulosta gimprc-tiedosto jossa on oletusarvot. - --no-cpu-accel Älä käytä suorittimen kiihdytysominaisuuksia. - --no-shm Älä käytä jaettua muistia GIMPin ja sen liitännäisten kesken. - --pdb-compat-mode - Procedural Database yhteensopivuustila. - --session Käytä annettua sessionrc-tiedostoa. - --stack-trace-mode - Virheenjäljitystila vakaville signaaleille. - --system-gimprc Käytä järjestelmän gimprc-tiedostoa. - --verbose Näytä käynnistysviestit. - -b, --batch Suorita komennot eräajona. - -c, --console-messages Näytä varoitukset pääteikkunassa eikä valintaikkunassa. - -d, --no-data Älä lataa siveltimiä, väriliukumia, paletteja tai kuvioita. - -f, --no-fonts Älä lataa mitään kirjasimia. - -g, --gimprc Käytä toista gimprc-tiedostoa. - -h, --help Tulosta tämä avustusteksti. - -i, --no-interface Suorita ohjelma ilman käyttöliittymää. - -s, --no-splash Älä näytä käynnistysikkunaa. - -v, --version Tulosta versiotiedot. -%d tasoa%d dpi%d dpi, %s%d tasoa%d minuuttia%d sekuntia%d×%d dpi%dx%d dpi, %s%d×%d pikseliä%g×%g %s%p%s kanavan kopio%s kanava valinnaksi%s ilmoitus%s:n kopio%s-maski%s%sNapsauta: valinnan kasvatus%s%sVeto: siirto ja skaalaus(%0.3f, %0.3f, %0.3f)(Ei mikään)(Tämä pääteikkuna sulkeutuu kymmenessä sekunnissa) -(Nimeämätön leike)(Nimeämätön malli)(Vaihtelee)(muokkaamaton)(epäkelpo Unicode-merkkijono)(muutettu)(tyhjä)Yksi tasoYksi taso15° %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Muunnetaan...4:1 (400%)8:1 (800%)<%s><>Parhaan mahdollisen suorituskyvyn saavuttamiseksi joitain asetuksia pitää säätää.GIMP — GNU-projektin kuvankäsittelyohjelma -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis ja GIMP-kehitystiimi.Vinkkitiedoston muoto on väärä!Vinkkejä ei näytä olevan tälle kielelle!Tiedosto '%s' on jo olemassa.Lisää valintaanKulmaTietoja GIMPistäToimintoAktivoi kohdistettu kuvaAktiiviset suodattimetYlinäytteistysLisääLisää alfakanavaLisää alfakanavaLisää ankkuriLisää kanavaLisää väriLisää apulinja:Lisää apulinjatLisää vaaka-apulinjaLisää tason maski...Lisää tasoLisää tasoon maskiLisää polkuLisää piirtoLisää tekstitasoLisää pysty-apulinjaLisää tasoon maskiLisää väri _taustastaLisää väri _edustastaTason maskin lisäysLisää kuvaan tekstiäLisää nykyinen väri värihistoriaanLisää valittu suodatin.Lisää palettiin %sLisää valintaanLisätään teema '%s' (%s) -SummaLisäohjaimetKirkkauden ja kontrastin säätöVäritasapainon säätöVärikäyrien säätöVäritasojen säätöKirkkauden ja kontrastin säätöVäritasapainon säätöVärikäyrien säätöVäritasojen säätöSävyn / valoisuuden / värikylläisyyden (HLS) säätöVärisävyn ja kylläisyyden säätöSäädä tasoja automaattisestiSäätöKehittyneet asetuksetVaikutus:Vaikutusalue %sRuiskuRuiskuta väriä vaihtelevalla paineellaLäpinäkyvyys valinnaksiLinjassaLinjausKaikki kanavatKaikki tiedostotKaikki tiedostotKaikki kuva- ja kumoamisdata joka ei mahdu kuvavälimuistiin kirjoitetaan sivutustiedostoon. Tämän tiedoston tulee sijaita paikallisella tiedostojärjestelmällä jossa on tarpeeksi tilaa (useita satoja megatavuja). Unix-järjestelmässä sopivin paikka on /var/tmp tai /tmp -hakemisto.Salli läpinäkyvien alueiden täyttöSalli läpinäkyvien alueiden valintaSalli suurennos %sPeittoAlfakanava valinnaksiPeitto:Valitun koon kuva käyttäisi enemmän muistia kuin asetuksissa on sallittu (%s).AnimaatioAnkkuroi kelluva valintaAnkkuroi kelluva tasoAnkkuroi kelluva valintaKulma:Käänteinen pyyhkiminen %sAntialiasointiUlkoasuSovella tason maskiaSovella tason maskiaRaja-arvosovella tason maskiaHaluat poistaa "%s":n listalta ja levyltä?Haluatko poistaa mallin '%s' listalta ja levyltä?Kuten asetuksissaKysy vahvistusta ennen kuin kuva suljetaan tallettamatta.Sivusuhde:Suhde:Lisää kenttäLisää kuvaan kenttäLiitä kenttäLisää kenttäTekijä:AutoSeuraa automaattisesti käsiteltävää kuvaaAutomaattinen pienennysPienennä valinta automaattisestiMuuta ikkunan kokoa suurennoskertoimen mukaanAutomaattinen latausAutomaattisesti tunnistettuSuodattimetTyypit:Täyttö taustavärilläKirkkaus- ja kontrastisäätö...LeikkeetTaustaväriTaustaväriTaustaväri:Taustaväri: %d, %d, %dKäänteinen (korjaava)Täyttö perustuu kaikkiin näkyviin tasoihinValinta kaikille näkyville tasoilleTason taaViisteBilineaarinenMustavalkoinenMusta:Sekoita päätepisteitten vä_ritSekoitaSekoitaSekoita päätepisteitten _peitotSekoita: Sekoittaminen ei sallittu indeksoiduille kuville.Täytän...SininenSininen:Tee epäteräväksiEpäterävöi tai terävöiReuna...Reunusta kanavaValitse valinnan reunaReunan valintaKirkkaus- ja kontrastisäätöKirkkaus- ja kontrastisäätö ei toimi indeksoiduille kuville.SivellinSivellinmuokkainSivellinkansiotSivellinkäyttöliittymäSivellin:SiveltimetSiveltimetTäyttöLeikkeetLeikkeetVärivarjostusTylppäNimen loppuliitteen mukaanPalauttamalla kuvan levyltä -menetät kaikki muutokset ja toimintohistorian.CMYKKalibroi...VäripoimintaSarakkeita:YhdistäNäytön resoluution kalibrointiToiminnon %s kumoaminen ei onnistuKankaan koko...PeruutaPeruutaMaskin lisäys tasoon joko on eri kokoinen ei onnistu.Maskin lisäys tasoon jolla ei ole alfakanavaa ei onnistu.Maskin lisäys tasoon joka ei ole osa kuvaa ei onnistu.Tason ankkurointi epäonnistui, koska se ei ole kelluva valinta.Ei voi muuntaa paletiksi jossa on yli 256 väriä.Kelluvasta valinnasta ei voi tehdä uutta tasoa, koska se on osa tasomaskia tai kanavaa.Kansion "%s" luonti epäonnistui: %sEsikatselun luonti epäonnistuiEi voida rajata koska valittu alue on tyhjä.Ei voi laajentaa ${%s}Kopiointi epäonnistui, koska valittu alue on tyhjä.Tasoa ilman alfakanavaa ei voi nostaa.Ei voi tallentaa, mitään ei ole valittu.Tyhjälle kanavalla ei voi piirtää.Ei voi piirtää tyhjää polkua.Kankaan kokoKankaan laajennus:Keski-X:KeskitettyVaihda taustaväriäVaihda värikartan kohdatVaihta edustaväriäVaihda kuvan tarkkuuttaVaihda kuvan yksikötVaihda tulostuskokoVaihda nykyistä tasoa tai polkuaVaihda apuviivojen taustaväriVaihda apuviivojen edustaväriMuuta indeksoitua palettiaMuuta tason tai valinnan perspektiiviOikopolun muuttaminen epäonnistui.KanavaKanavan ominaisuudetKanavan nimi:Kanavaa ei voi laskea enempää.Kanavaa ei voi nostaa enempää.Kanavan väriKanava on jo pohjimmaisena.Kanava on jo päällimmäisenä.Kanava _valinnaksiKanava valinnaksiKanava valinnaksiKanava:KanavatKanavatRuudutuksen koko:Valitse piirtotyyliYmpyräTyhjennäTyhjennäTyhjennä kanavaTyhjennä toimintohistoriaPoista kaikki tekstiTyhjennä virheetTyhjennä toimintohistoria...Napsauta "Jatka" jos hyväksyt ylläolevat asetukset.Napsauta "Jatka" luodaksesi henkilökohtaisen GIMP-kansiosi.Napsauta "Jatka" aloittaaksesi henkilökohtaisen GIMP-asennuksen.Napsauta "Jatka" aloittaaksesi henkilökohtaisen GIMP-asennuksen.Napsauta liittääksesi tämän ankkurin valittuun päätepisteeseen.Napsauta lisätäksesi ankkurin (Koita Shiftiä)Napsauta luodaksesi uuden komponentin polkuun.Napsauta luodaksesi uuden polun.Napsauta luodaksesi esikatselunNapsauta poistaaksesi tämän ankkurin.Napsauta lisätäksi ankkurin polkuun (Koita Shiftiä)Napsauta tehdäksesi solmusta kulman.Napsauta avataksesi polun.Napsauta valitaksesi muokattavan polun.Napsauta päivittääksesi esikatselun -%s napsauta pakottaaksesi päivityksenNapsauta ja vedä muuttaaksesi käyrän muotoa (Shift: epäsymmetrinen)Napsauta ja vedä siirtääksesi ankkuria.Napsauta ja vedä siirtääksesi ankkureita.Napsauta ja vedä siirtääksi komponentti (Koita Shiftiä)Napsauta ja vedä siirtääksesi kahvaa (Koita Shiftiä)Napsauta ja vedä siirtääksesi polkua.Napsauta: valintaNapsauta: valinta Veto: siirtoLeikkaa tulosLeikepöytärajataan pohjimmaisen tason koon mukaanrajataan kuvan koon mukaanKloonausSulje %sSulje kaikki välilehdetSulje kaikki välilehdet?Poista välilehtiKopioi polkuVäritVäriVäritasapainon säätöNäyttösuotimetVäripoimintaPoimi väri -tiedotVäritasapainon säätö...Värisekoitus:Väritasapainon säätö käytettävissä vain täysvärikuvilla.Värin poistoVäri-indeksi:Väri:VärikarttaVärimalli:Väritä...Värityksen valinta osalleVäritystyyppiVäritäVäritys toimii vain täysvärikuvilla.Väritä kuvaVäritä kuvaaVärikarttaVärikartan editointiVärikarttavalikkoSaraketta:Kuvan komme_ntti:KommenttiKontrasti:KonvoluutioNäyttösuodinten asetusAseta kehittyneet syöttölaitteet...Aseta apuviivat...Aseta apuviivatAseta kuvan apuviivatNäppäimistöoikopolut_Aseta näppäimistöoikopolut...Aseta valittu suodatinAseta valittu suodatin: %sVahvista koon muutosVahvista skaalausVahvista tekstin muokkausVahvista tallentamattomien kuvien sulkeminenPäällekkäiset oikopolutKartiomainen (epäsymmetrinen)Kartiomainen (symmetrinen)Yhdistä piirrotJatkuvaRajoituksetKontekstiYhteysriippuvat kohdistimet ovat oletusarvoisesti käytössä. Niistä aiheutuu kuitenkin kuormaa jota voit haluta välttää.JatkaAvustaneetMuunnoksetMuunna reunaMuunna kuva harmaasävyiseksiMuunna kuva rajoitettuun värimääräänMuuta indeksoituun palettiinMuunna kuva täysväriseksiMuunna kuvaMuunna kuva rajoitettuun värimäärään (vaihe 2)...Muunna kuva rajoitettuun värimäärään (vaihe 3)...Muunna kuva rajoitettuun värimäärään...KonvoluutioSekoituksen tyyppi %sKopioi nimettyKopioi _näkyväKopioidaan tiedosto "%s" -> "%s"...Copyright:Rikkonainen segmentti %d väriliukutiedostossa '%s'.Tiedostoa "%s" ei voinut luoda: %sTilapäistiedostoa "%s" ei voitu luoda: %sTiedoston '%s' poistaminen epäonnistui: %sGIMP-avustusselainta ei löytynytTiedoston "%s" avaaminen luettavaksi epäonnistui: %sTiedoston "%s" avaaminen kirjoitettavaksi epäonnistui: %sTiedoston '%s' avaaminen epäonnistui: %sEi voinut lukea %d tavua tiedostosta '%s'. Virhe: %sTiedoston '%s' haku epäonnistui.GIMP-avustusselainta ei voitu käynnistää.Lukumäärä:Rajaa tasoUusi telakkaLuo uusi malliLuo uusi kuvaUusi tasoLuo uusi malliLuo kuvalle uusi näkymäLuo kuva valitusta mallistaLuo uusi malliLuo ja muokkaa kuvia.Luo ja muokkaa polkujaLuo polku tekstistäLuo valinta polustaLuodaan esikatselua...Luodaan kansio "%s"...RajaaRajaa & muokkaa kokoaRajaa & muokkaa kokoa -tiedotRajaa kuvaRajaa tasoRajaa kuvaRajaa tai muokkaa kuvan kokoaRajaa: Vain risti_LeikkaaLeikkaa nimetty...Kuutiollinen (paras)Nykyinen asetusNykyinen korkeus:Vain nykyinen tasoNykyinen tilaNykyinen leveys:Kohdistin_Osoittimen tila:Osoittime_n piirto:Käyrän tyyppiVärintoistokäyrätIndeksoitujen kuvien käyriä ei voi muokata.OmaMukautettu väriOma väriliukuOma laajennosväri:LeikkaaLeikkaa nimettySyaaniSyaani:_Kopioi sivellin_Kahdenna kanava_Kahdenna väriliukumaKahdenna tasoKahdenna palettiKahdenna polkuKahdenna kuvioTuplaa malli...Tumma ruudutusTummennaViiva piste piste...Piste viiva...Katkoviivakuvio:Esivalinta:KatkoviivaPäiväys:VirheenhakuUlkoasu kokoruututilassaUlkoasu normaalitilassaApuviivatApuviivat_Interpolaatiomenetelmä:Tasojen ja kanavien esikatselun koko:_Raja-arvo:Poista ankkuriPoista ankkuriPoista tason maskiPoista tasomaskiPoista objektiPoista segmenttiPoista malli_Poista sivellinPoista kanavaPoista väri_Poista väriliukuPoista tasoPoista tason maskiPoista palettiPoista polku_Poista kuvioPoista tallennetut asetukset...Poista leikePoista malliPoista tämä kuvaPoista vektoritTiedoston "%s" tuhoaminen epäonnistui: %sTiheät pisteetPienennä värikylläisyyttäVärikylläisyyden vähentäminen onnistuu vain täyväritasoille.KuvausSuunnitteleLaitteiden tilaLaitteetIkkunatIkkunatTimanttiErotusSuoraväritilaTason maski pois päältäQMask poisHylkää tekstitietoNäytön asetuksetNavigointiNäyttösuotimet...Display-proseduuritNäytön tyyppi:Näytetään [%0.6f, %0.6f]RoiskivaEtäisyys:Etäisyys: %0.6fVärisekoitusJaaTee uusi GIMP-asennusHaluatko nollata kaikki suodatinten asetukset oletusarvoihin?Haluatko nollata kaikki työkalujen asetukset oletusarvoihin?Haluatko korvata sen tallennettavalla kuvalla?Älä tallennaTelakoitavaAsiakirjahistoriaAsiakirjahistoriaAsiakirjatAsiakirjavalikkoVarjostus/lisävalotusVärilisävalotusVarjosta/lisävalotaVarjostus/lisävalotusTuplakatkoviivaSiirrä ankkuriSiirrä ankkuritSiirrä käyräSiirrä kahvaSiirrä polkuVeto: siirtoPiirrä mustekynälläPiirtotasoPiirtotason muutosKuvaproseduuritPudota uusi tasoPudota uusi polkuKirjasinten puutteen vuoksi toiminnallisuus ei ole käytettävissä.Näytä tämän ohjaimen tapahtumat_Kopioi sivellinKahdenna kanava_Kahdenna väriliukumaKahdenna tasoKahdenna palettiKahdenna polkuKahdenna kuvioKahdenna valittu malliToiminnon kumoaminen ei onnistuVie polku tiedostoon...Hyvin pieniReunan käyttäytyminenReunantunnistusMuokkaaMuokkaa kanavan ominaisuuksiaMuokkaa kanavan väriäMuokkaa paletin väriäMuokkaa paletin väriäMuokkaa tason ominaisuuksiaMuokka tason maskiaMuokkaustilaMuokkaa väriäMuokkaa polun ominaisuuksiaMuuta QMask-ominaisuuksiaMuuta QMask-väriäMuokkaa mallia_Muokkaa siveltimen ominaisuuksiaMuokkaa kanavan ominaisuuksiaMuokkaa väriäMuokkaa paletin väriä nro. %dMuokkaa väriliukuaMuokkaa tason ominaisuuksiaMuokkaa palettiaMuokkaa polun ominaisuuksiaMuokkaa kuviotaMuokkaustoiminnotMuokkaa malliaEllipsivalintaTyhjä kanavaTyhjä tasoTyhjä polkuTyhjä tekstitasoTyhjä muuttujalista tiedostossa '%s'.ParannaQMask päälleKäytä sekoitusta myös läpinäkyvyydelleTämä ohjain päälleNäytä vihjeet käynnistyessä.Näytä työkaluvihjeet.JättikokoinenAnna nimi yhdistetylle paletilleAnna tallennetuille asetuksilleAnna kuvalle nimiAnna mallille nimiAnna uusi nimi asetuksilleSyötä sijainti (URI):YmpäristöKansiot tallennetulle ympäristölleTasoita sävyalueEkvalistointi ei toimi indeksoiduilla tasoilla.Pyyhi taustaväriin tai läpinäkyväksiPyyhekumiVirhekonsoliVirhekonsoliVirhekonsolivalikkoVirhe tallennettaessa tiedostoa '%s'.Virhe jäsennettäessä tiedostoa '%s' rivillä %d: %sVirhe luettaessa "%s": %sVirhe luettaessa sivellintä "%s": %sVirhe kirjoitettaessa "%s": %sVirhe kirjoitettaessa tiedostoa "%s"Virhe tiedostoon "%s" kirjoituksessa: -"%s"Virhe kirjoitettaessa tiedostoon "%s": %sVirhe kirjoitettaessa tilapäistiedostoon "%s": %s -Tiedostoa ei ole luotu.Virhe kirjoitettaessa tilapäistiedostoon "%s": %s -Alkuperäistä tiedostoa ei ole muutettu.VirheetTapahtumaHyvin suurilaajennetaan tarvittaessaTallenna polku SVG -tiedostoonVie kaikki polutVie valittu polkuValotus:Kehittyneet syöttölaitteet:LaajennuksetTäyttö edustavärilläEdustaväristä taustaväriin (HSV-värisävy myötäpäivään)Edustaväristä taustaväriin (HSV-värisävy vastapäivään)Edustaväristä taustaväriin (HSV)Edustaväristä taustaväriin (RGB)Edustaväristä läpinäkyväänEdustaväristä läpinäkyväänEdusta/TaustaEdusta/Tausta-väriKelluva valinta tasoksiSovita kangas tasoihinHäivytäPolun luku tiedostosta %s epäonnistui: %sPolun luku tiedostosta %s epäonnistui: %sKoristeellinenJäsennysvirhe: Sivellintiedosto '%s' näyttää katkenneen.Virhe sivellintiedostossa '%s': Tiedosto on rikki.Virhe sivellintiedostossa '%s': Ei ole GIMP sivellintiedosto.Virhe sivellintiedostossa '%s': Tuntematon muoto.Virhe sivellintiedostossa '%s': Tuntematon versio.Virhe: Sivellintiedosto '%s' on viallinen. Tuntematon värisyvyys %d.Sivellintiedosto '%s' on viallinen. Tuntematon versio %d.Virhe sivellintiedostossa '%s': Tuntematon siveltimen syvyys %d.Jäsennysvirhe: Väriliukutiedosto '%s' on viallinen.Jäsennysvirhe: Väriliukutiedosto '%s' ei ole GIMP muotoa.Jäsennysvirhe: Palettitiedosto '%s': Puuttuva otsikkotieto.Ladataan palettia '%s': Otsikkotieto puuttuu. -Tiedosto pitää muunnettaa DOS muodosta?Ladataan palettia %s: Lukuvirhe rivillä %d.Jäsennysvirhe: Kuviotiedosto '%s' katkesi kesken: Ei voinut lukea %d tavua: %sJäsennysvirhe: Kuviotiedosto '%s': tuntematon versio %d.Jäsennysvirhe: Kuviotiedosto '%s': Tuntematon värisyvyys: %d.Pyöristä...Pyöristä kanavaPyöristä valintaPyöristä reunatPyöristyssädeTiedostoT_iedoston avaus...TiedostotoiminnotTiedoston tyyppiTiedosto on jo olemassa!Tiedosto on katkennutTäytä kanavaTäytön peitto:Täyttötyppi %sTäytä samanväriset alueetTäytä läpinäkyvät alueetTäytä koko valintaTäytä taustavärilläTäytä taustavärilläTäytä edustavärilläTäytä kuviollaTäytä kuviollaTäytä läpinäkyvälläTäytä valkoisellaTäytä edustavärilläTäytä taustavärilläTäytä väriliukumallaTäytä värillä tai kuviollaTäytettySuotimetLopullista, yhdistettyä tasoa:Väriltään yhtenäisten alueiden löytäminenEtsi samanväriset alueetLaajenna ikkunaanSuhteuta ikkunan kokoonLaajenna ikkunaanLaajenna ikkunaanKiinteä kuvasuhdeKiinteä kokoYhdistä tasotPeilikuvatyökaluPeilaa kanavaPeilaa tasoPeilaa polkuPeilaa tekstitasoPeilaustyyppi %sPeilaa vaakasuuntaanPeilaa pystysuuntaanPeilaa kuvaTee tasosta tai valinnasta peilikuvaKäännetään...Käännetään...Kelluva valintaKelluva valintaKelluva tasoKelluva valinta -(%s)Kelluva valintaKelluva valinta tasoksiKelluvat valinnatTavallinen Floyd-Steinberg sekoitusFloyd-Steinberg sekoitus vähennetyllä värivuodollaKohdistusKansioKansiotKirjasinkansiotKirjasinkäyttöliittymäKirjasin:KirjasimetKirjasimetGIMP-asennusta varten on luotava kansio nimeltä %s.Pakota automaattinen vihjeistysEdustaväriEdusta- ja taustavärit. Musta ja valkoinen neliö palauttavat värit. Nuolet vaihtavat värit keskenään. Napsauta vaihtaaksesi väriä.EdustaväriEdustaväri asetettu:Edustaväri: %d, %d, %dNormaali (perinteinen)P_olustaVapaa valintaVapaa valintaVapaalla kädelläTeemastaIkkunointijärjestelmän tieto (%d×%d dpi)Vasemmalta oikealleOikealta vasemmalleValinnastaTeemastaEpäterävä valintaKokoruutuEpäterävä valintaGIMPGIMP-laajennosGIMP-ilmoitusGIMPin suorituskyvyn virittelyGIMP-liitännäinenGIMP käynnistyyTekstieditoriPäivän GIMP-vihjeHenkilökohtainen GIMP-asennusGIMP XCF kuvaGIMP ei voinut käynnistää graafista käyttöliittymää. -Varmista että ympäristö on asetettu oikein.Selain avustuksilleGIMP asennusta ei ole tehty kunnolla tälle käyttäjälle. -Käyttäjäkohtainen asennus ohitettiin "--no-interface" -valitsimen takia. -Käyttäjäkohtainen asennus tehdään kun GIMP käynnistetään ilman "--no-interface" -valitsinta.GIMP käyttää osaa keskusmuistista kuvatiedolle kuvavälimuistina. Voit säätää sen kokoa niin että se mahtuu keskusmuistiin. Ota huomioon muiden ajossa olevien ohjelmien vaatima muistitila.GIMP käyttää lisäksi gtkrc-nimistä tiedostoa jotta voit säätää sen ulkonäköä erikseen muista GTK-sovelluksista.GIMP versioGIMP varoittaa käyttäjää mikäli yritetään luoda kuva joka veisi enemmän muistia kuin tässä määritelty koko.GammaYleistäMäärittää GIMP:n käyttöön varattujen järjestelmän värien vähimmäismäärän. Tämä on yleensä merkityksellinen vain 8-bittisillä näytöillä.Muodosta optimaalinen palettiHae näytön resoluutioGiganttinenGimprc-proseduuritLasiefektitVäriliukumaVäriliukumien muokkainVäriliukuvalikkoVäriliukumakansiotVäriliun vasemmanpuoleisen päätypisteen väriVäriliun oikeanpuoleisen päätypisteen väriVäriliukumien käyttöliittymäVäriliukuma:VäriliukumatVäriliukumatVärin poistoVärin lisäysHarmaaHarmaasävyVihreäVihreä:ApuviivatApuviivojen väliSuurenna kanavaaLaajenna valintaaLaajenna valintaaApulinjaApuviivoihin tarttuminenApulinjojen proseduuritHSVHSV (%0.3f, %0.3f, %0.3f)HSV (sävy vastapäivään)HSV (sävy myötäpäivään)HTML-merkintä:_Korkeus:Käytettävä _selain avustuksille:Kahvan sijainti: %.06fKova reunaKova valoKovuusKovuus:KorkeusKorkeus:OhjeSelain avustuksilleAvustuksetApuselain ei käynnistynytApu-selainta ei löytynytApuproseduuritHex:Kirkkaat kohdatIkkunan reunustus Telakalle:Ikkunan reunustus Työkalulaatikolle:VihjeistysVihjeistys parantaa kirjasimen luettavuutta pienellä tarkkuudellaHistogrammiHistogrammiHistogrammiHistoriaVaakaEnsimmäisen rivin siirtymä; voi olla negatiivinen.Apuviivojen vaakasuora välistys.Kuinka monta hiljattain avatun kuvan tiedostonimeä pidetään tiedostovalikossa.SävySävy-värikylläisyysSävy-värikylläisyys toimii vain täysvärikuvilla.Sävy-värikylläisyys...Sävy (H):ValtavaKuvake ja tekstiKuvaTuo polku tiedostosta...Interpolaatio:Väli:KuvakeKuvake ja kuvausKuvake ja tekstiJos kirjasimeen on tallennettu vihjeet niitä käytetään, mutta voit haluta käyttää ohjelmistopohjaista vihjeistystä.Jos päällä, siirtotyökalu muuttaa aktiivista tasoa tai polkua, kun taso tai polku valitaan. Tämä on vanhempien versioiden käyttäytyminen.Jos et tallenna kuvaa, viimeisimmät muutokset menetetään (tallentamatta: %s).Tallentamattomat muutokset menetetään.Virheellinen muuttujanimi tiedostossa '%s': %sKuvaKuva ja apuviivatKuvaeditoriKuvan tiedotKuvavalikkoKuvan kokoKuvan tilapalkin formaattiKuvamallitKuvien esikatselutKuvan otsikon formaattiKuvan otsikon formaattiKuvaikkunan ulkoasuKuvaikkunatKuvassa ei ole näkyviä tasojaKuvatiedostoKuvamaskiKuvan tarkkuus on rajojen ulkopuolella, käytetään normaalia tarkkuutta.Kuvan kokoKuva lähteenäKuvalajiKuvatKuvavalikkoTyökalujen asetuksetTuo palettiTuo polkuTuo polut SVG -tiedostostaTuo uusi palettiTuo palettiTuo polkuTuotu polkuMustekynäKäänteinenKäännä maskiInkrementaalinenSisennys:Ensimmäisen rivin sisennysIndeksi:IndeksoituIndeksoituMuunnos indeksoiduksiKuvat indeksoidulla paletilla skaalataan aina ilman interpolaatiota. Asetus vaikuttaa vain skaalaaviin kanaviin ja maskeihin.InfoikkunaSuurennos alussa:Alusta tason maski:Käynnistetään liitännäis-ohjelmatKäynnistetään liitännäistä: "%s" -MustekynäOhjaimetSyöttölaitteetOttotasotLisää ankkuri väliinAsenna yksityinen värikartta; saattaa olla hyödyllinen pseudovärejä (256) käyttävissä näyttötiloissa.Asennus epäonnistui. Ota yhteys ylläpitoon.Käyttäjäkohtainen asennus onnistui. Napsauta "Jatka" jatkaaksesi.Päivitä hetiÄlysaksetIntensiteetti: %0.3f Peitto: %0.3fKäyttöliittymäGIMPin sisäinen proseduuriSisäiset proseduuritInterpolaatio:LeikkausLeikkaa valinnan kanssaRisteykset (ristit)Risteykset (pisteet)Epäkelpo Unicode-merkkijonoTiedostossa '%s' on virheellisiä unicode (UTF-8) merkkejä.Epäkelpo unicode merkkijono XCF tiedostossa.Epäkelpo unicode merkkijono sivellintiedostossa '%s'.Epäkelpo unicode-merkkijono kuviotiedostossa '%s'.Epäkelpo unicode-merkkijono palettitiedostossa '%s'Epäkelpo unicode-merkkijono kuviotiedostossa '%s'.Osoitteessa on virheellinen merkkijonoVirheellinen oikopolku.Epäkelpo leveys tai korkeus. Molempien täytyy olla suurempi kuin nolla.KäänteinenKäännä kanavaKäännä valintaEi toimi indeksoiduilla kuvilla.Käännä valintaHaluatko tehdä tämän?Olet käyttänyt GIMP 2.0:aa ennen.Kohdan ominaisuudetKohdan näkyvyysTasaus:Pidä läpinäkyysPidä päälläSäilytä kuvasuhde %sSäilytä kuvasude %sSäilytä korkeys %sPidä läpinäkyysSäilytä leveys %sNäppäin alasNäppäin alas (Alt)Näppäin alas (Control + Alt)Näppäin alas (Control)Näppäin alas (Shift + Alt)Näppäin alas (Shift + Control + Alt)Näppäin alas (Shift + Control)Näppäin alas (Shift)Näppäin vasemmalleNäppäin vasemmalle (Alt)Näppäin vasemmalle (Control + Alt)Näppäin vasemmalle (Control)Näppäin vasemmalle (Shift + Alt)Näppäin vasemmalle (Shift + Control + Alt)Näppäin vasemmalle (Shift + Control)Näppäin vasemmalle (Shift)Näppäin oikealleNäppäin oikealle (Alt)Näppäin oikealle (Control + Alt)Näppäin oikealle (Control)Näppäin oikealle (Shift + Alt)Näppäin oikealle (Shift + Control + Alt)Näppäin oikealle (Shift + Control)Näppäin oikealle (Shift)Näppäin ylösNäppäin ylös (Alt)Näppäin ylös (Control + Alt)Näppäin ylös (Control)Näppäin ylös (Shift + Alt)Näppäin ylös (Shift + Control + Alt)Näppäin ylös (Shift + Control)Näppäin ylös (Shift)Voit muuttaa näppäinkomentoja dynaamisesti; menurc-tiedostossa luetellaan näppäinkomennot jotta ne voidaan ottaa käyttöön seuraavallakin kerralla. Voit muokata tätä tiedostoa jos haluat, mutta on paljon helpompaa sitoa näppäinkomennot uudestaan GIMPissä. Poistamalla tämän tiedoston palautat oletusnäppäinkomennot.NäppäimistöNäppäinpainalluksetNäppäimistöoikopolutV->O_Vasemmanpuoleisen päätypisteen väri...VaakatasoIsoSuuri (256x256)Suurempi esikatseluViimeisin virhe:TasoTasolla "%s" ei ole alfakanavaa. Taso sijoitettiin sen yläpuolelle.Tason ominaisuudetTason rajat...Tason täyttötapaTason Maski valinnaksiTason valintaTason kokoTason _tilaTason _nimi:Tasoa ei voi laskea enempää.Tasoa ei voi nostaa enempää.Taso on jo pohjimmaisena.Taso on jo päällimmäisenä.Taso kuvan kokoiseksiTaso pohjimmaiseksiTaso kuvan kokoiseksiTaso päällimmäiseksiTason _alfakanavaTasotTasotTasojen yhdistelyn asetukset_Vasemmanpuoleisen päätypisteen väriVasemman reunan tasausPituus:GIMP yrittää palauttaa viimeisimmän talletetun istunnon jokaisella käynnistyskerralla.VäritasotIndeksoitujen kuvien väritasoja ei voi säätää.Vaalea ruudutusVaalennaViivaRiviväli:Viivan leveys:Viivatyyli:Viivatyyli jota käytetään apuviivoissa.Lineaarinenlinkitetty kohtaLataaLataa väritasoasetuksetLataa väritasoasetuksetLataa oikeanpuoleinen väriLataa käyrät tiedostostaLataa tasot tiedostostaLataa teksti tiedostostaLadataan esikatselua ...Sijainti:LogaritminenPitkät viivatEtsin datatiedostojaLaske kanavaLaske taso pohjimmaiseksiLaske kanava pohjimmaiseksiLaske tasoLaske taso pohjimmaiseksiLaske polkuLaske polku pohjimmaiseksi.Laske polku pohjimmaiseksi.Laske kanavaLaske kanava pohjimmaiseksiLaske tasoLaske taso pohjimmaiseksiLaske polkuLaske polku pohjimmaiseksi.SuurennaPääSiirrä näytölle...KuvauksetMagentaMagenta:SuurennaTee läpinäkyväksiHallitse ladattavia modulejaValinta-animaation nopeus:Maskin peitto:Maskaa _valitut alueetMaskaa v_alitsettomat alueetMatriisi:Enimmäissyvyys:Suurin tiedostokoko, josta tehdään esikatselu.Uuden kuvan enimmäiskoko:Suurin värieroMuistin käyttö kumoamistoiminnolle:Keskiarvo:MittaMittaa etäisyyksiä ja kulmiaMittaa etäisyyksiä ja kulmiaMittaa viivaimet ja syötä niiden pituudet:Mediaani:KeskiKeskipituiset viivatYhdistä alasYhdistä alasYhdistä tasotYhdistä palettiYhdistä näkyvät tasotYhdistä näkyvät polutYhdistä näkyvät tasot...Yhdistä näkyvät tasot...Yhdistä näkyvät polutYhdistä tasotYhdistä paletitYhdistä vektoritViestiproseduuritIlmoitus toistunut %d kertaa.Ilmoitus toistui.Ilmoitukset ohjataan virhesyötteeseen.KeskisävytSiirrä käyttäjän asetuksetKumoamistoiminnolle varatut tasot:SekalaistaSärmäTilaToiminta:Muokkaa valittua väriäMuuta valitun välin väritasojaMuokkaa kaikkia värejäMuuta riviväliäModulikansiotModulihallintaModulien hakupolkuModulitHiiren osoitinHiiren rullaHiiren rullan liikeSiirräSiirrä ankkuritSiirrä kanavaaSiirrä kelluva valintaSiirrä apulinjaSiirrä apulinja:Siirrä tasoSiirrä tason maskiSiirrä polkuSiirrä valintaaSiirrä tekstitasoaSiirtotyökaluSiirräSiirrä tasoja ja valintojaSiirrä valintaaSiirrä nykyinen tasoSiirrä valittua polkuaLaske valittua suodatinta alemmasNosta valittua suodatinta ylemmäsSiirrä näytölle...Siirrä: KerroVärien määrä:Na_vigointiNavigointiNavigointi-ikkunan koko:NimiNimi:NavigointiUusi kanavaUusi kanavan väriUuden kanavan asetuksetVäri taustastaVäri edustaväristäUusi kuvaUusi tasoUusi polkuUuden polun asetuksetUusi malliUusi sivellinUusi kanavaUusi kanava edellisillä arvoillaUusi kanava...Väri taustastaVäri edustaväristä_Uusi väriliukuLataa uusiUusi tasoUusi taso edellisillä arvoillaUusi taso...Uusi palettiUusi polku samoin asetuksinUusi polku...Uusi kuvioUusi vektoriEi siveltimiä käytettävissä tälle työkalulle.Ei valittua suodatintaEi sisällä väliliukuja: '%s'Ei enää saatavilla'%s' ei sisällä polkuja.Puskurissa ei ole polkujaEi kuvioita tälle toiminnolle.Ei valintaaEi valintaa piirrettäväksi.Ei esikatselukuviaEi linjassaEi mikäänEi mitään (Nopein)NormaaliNormaali (128x128)Normaalit pisteetNormaali-ikkunaEi ole tavallinen tiedostoYhdistämiseen tarvitaan ainakin kaksi näkyvää tasoa.Ei tarpeeksi polkuja yhdistämiseen.Käytettävien suorittimien lukumäärä:Apuviivojen määräTasojen määrä:Muu...SiirtymäTekstikanavaPiirtotason siirtoTekstitasoTekstitason maskiSiirrä (x/_2),(y/2)Siirtymä:LevylläJos GIMP on käännetty valitsimella --enable-mp tämä asetus määrittää kuinka montaa prosessoria GIMP:n pitäisi käyttää samanaikaisesti moniprosessorikoneissa.Vain muistissaAvaa tasona...PeittoPeitto:AvaaAvaa kuvaAvaa kuva tasonaAvaa sijaintiAvaa tekstitiedosto (Unicode/UTF-8)Avaa _sijainti..._PikavalinnatAvaa kuvaNapsauta avataksesi kuviovalitsijan.Avaa kirjasinvalitsinNapsauta avataksesi kuviovalitsijanAvaa paletin valintaNapsauta avataksesi kuviovalitsijan.Avaa valittuTiedoston "%s" avaaminen epäonnistui: -%sTiedoston "%s" avaaminen epäonnistui: %sValitsimet: -Alkukohta X:Alkukohta Y:Alkuperäinen leveys:Muu %s...UlkoreunaAntotasotSulauttavaPDB-kutsuvirhe proseduurille "%s" -Parametri #%d tyyppivirhe: odotettu %s, annettu %s.PDB-kutsuvirhe: %s ei löydyKuviotIske siat lekalla keltaiseksi! -ABCabc XYZxyz åäöÅÄÖàášü€piirtoAsetukset jaetaan maalaustyökalujen välilläMaalausproseduuritMaalaustyökalu:_MaalaustilaPiirrä pehmeitä sivellinvetojaPiirrä kovareunaisella työkalullaMaalaa käyttäen kuviota tai kuvan osiaSivellinPaletitPalettiVäripaletin muokkainVäripalettivalikkoPalettikansiotPalettiPaletti:PalettitiedostoPaletitPaletitLoisproseduuritKentätJäsennetään tiedostoa '%s' -LiitäLiitä _johonkinLiitä _uutenaLiitä polkuLiitä _johonkinLiitä _uutenaLiitä valittu leikeUusi kuva valitusta leikkeestäLiitä valittu leike valintaanLiitetty tasoPolutPolun ominaisuudetPolun nimi:PolkutyökaluPolkua ei voi laskea enempää.Polkua ei voi nostaa enempää.Polku on jo pohjimmaisena.Polku on jo päällimmäisenä.Polku valinnaksiPolku valinnaksiPolku valinnaksi -%s Lisää -%s Vähennä -%s LeikkausPolku valinnaksiPolutPolutKuviotKuviokansiotKuvioiden käyttöliittymäTäyttö kuviollaKuvio lähteenäKuviotKuviovalikkoKynäKynäProsenttia siveltimen leveydestäProsentti:Henkilökohtainen GIMP-kansioPerspektiiviTietoja perspektiivimuunnoksestaPerspektiivi...Valitse tila %sValitse taso tai apulinjaValitse polkuValitse mustapistePoimi värejä kuvastaValitse harmaapistePelkkä valintaValitse valkopisteKoko pikseleissä:PikseliarvotpikseleitäPikseleitä:Varmista että valikoiden XML-tiedostot on asennettu oikein.Odota kun henkilökohtaista GIMP hakemistoa luodaan...Odota...LiitännäisetLiitännäisen ympäristöLiitännäiskansiotLiitännäinen: tiedoston avaaminen epäonnistuiLiitännäinen: tiedoston tallentaminen epäonnistuiLiitännäinen kaatui: "%s" -(%s) -Kaatunut liitännäinen on voinut sekoittaa GIMP:in sisäistä -tilaa. Tallenna kuvat ja käynnistä GIMP uudelleen.Liitännäinen ei palauttanut kuvaaLiitännäisetLiitännäinenLiitännäiset ja laajennokset ovat GIMPin suorittamia erillisiä ohjelmia jotka laajentavat sen toiminnallisuutta. Näitä ohjelmia etsitään ajonaikaisesti ja tietoa niiden toiminnoista sekä niiden aikaleimat säilötään tässä tiedostossa. Tätä tiedostoa ei pidä muokata käsin.Lisää kulmiaPystySijainti: %.06fSijoitettuPosterisaatioPosterize (Vähennä värien määrää)Posterisaatiotasoja:Posterisaatio ei toimi indeksoiduilla kuvilla.AsetuksetSäilytä valoisuusPaineherkkyysPaine:EsikatseluEsikatselu on vanhentunutEsikatseluEsikatselutTulostuskokoTulostuskoko:Tekstin ominaisuuksien jäsentäminen tasolle: '%s' epäonnistui: -%s - -Tekstin muoto voi olla väärä. Jos et muokkaa tekstitasoa, ilmoituksesta ei tarvitse välittää.ProseduuritietokantaProseduuritietokantaToiminnon eteneminenPseudoväritilaTarkoitus:LaatuKyselyHaetaan uusia liitännäisiäHaetaan liitännäistä: "%s" -PikalatausQMaskMuuta QMask-ominaisuuksiaQMask menuPikatallennusNopea maskiPoistutaanko GIMPistä?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)TäysvärinenRGB-tyhjäRGBA (%0.3f, %0.3f, %0.3f, %0.3f)O->VNäytä uudelleen "%s"N_ollaa työkalujen asetuksetNollaa kanavaPalauta väriPalauta alkuperäinen_Oikeanpuoleisen päätypisteen väri...SäteittäinenSäde:Nosta kanavaNosta kanava päällimmäiseksiNosta kanava päällimmäiseksiNosta tasoNosta taso päällimmäiseksiNosta polkuNosta polku päällimmäiseksi.Nosta polku päällimmäiseksi.Nosta kanavaNosta kanava päällimmäiseksiNosta tasoNosta taso päällimmäiseksiNosta polkuNosta polku päällimmäiseksi.Nosta tämän kuvan näkymätNosta ikkuna, jos jo avattuVirtaamaVirtaama:Näytä uudelleen edellinenKeskitä keskikohta valinnassaKeskitä osan keskipisteeseenUudelleenjaa kahvat osassaJaa kahvat uudelleen valinnassa_Uudelleennimeä asetuksetToista "%s"Palauta...Ladataan palettia %s (rivi %d): Puuttuva VIHREÄ komponentti.Ladataan palettia %s: Lukuvirhe rivillä %d. Käytetään oletuspalettia.Ladataan palettia %s (rivi %d): Puuttuva SININEN komponentti.Ladataan palettia %s (rivi %d): Puuttuva PUNAINEN komponentti.Ladataan palettia %s (rivi %d): RGB arvot sallitun alueen ulkopuolella.ValmisTyhjennetäänkö kuvan toimintohistoria?Oikotien uudelleenasettaminen poistaa sen "%s":stä.Luo _esikatselukuvaLuo _esikatselukuvaSuorakulmiovalintaPunainenPunainen:UudelleenVähennä värien lukumääräVähennä värien lukumäärä kahteenLue siveltimetP_äivitä väriliu'utVirkistä paletitVirkistä kuviotRekisteröityLataa uudelleen nykyinen teemaLataa k_aikki esikatselukuvat uudelleenLataa k_aikki esikatselukuvat uudelleenMuista käytetty työkalu, kuvio, väri ja sivellin GIMP-istuntojen välillä.EtäkuvaPoista kanavaPoista _hävinneet tiedostot listaltaPoista kelluva valintaPoista apulinjaPoista tasoPoista kuvasta kenttäPoista kenttäPoista polku_Poista valittuPoista _hävinneet tiedostot listaltaPoista kelluva valintaPoista kenttäPoista valittuPoista valittu suodatin.Oikopolun poisto epäonnistui.Nimeä kanavaUudelleennimeä tasoNimeä polkuNimeä asetukset uudelleenUudelleennimeä tekstitasoUudelleennimeäPiirräJärjestä kanavatUudelleenjärjestä tasotUudelleenjärjestä polkuToista edellinenToista:Korvaa valittu alueKahdennaKorvaa väliliun osaKopioi väriliun valintaKopioi osaKopioi valintaSiirrä kanavaaSiirrä tasoaJärjestä vektoritLue kirjasinlista uudelleenPalauta työkalujen asetuksetNollaa k_aikki työkalujen asetukset...Nollaa kaikki suodattimetNollaa k_aikkien suodatinten asetukset...Nollaa k_aikki työkalujen asetuksetNollaa valittujen suodattimien arvotPalauta oletusarvoihinNollaa työkalun järjestys ja näkyvyysMuuta kokoaMuuta kanavan kokoaMuuta kokoaMuuta tason kokoaMuunna polun kokoaMuuta tekstitason kokoaMuuta kokoaMuuta kokoaMuuta ikkunan kokoa suurennoskertoimen mukaanMuuta ikkunan kokoa kun kuvan koko muuttuuMuunnetaan...tarkkuuden vaihtoTarkkuus:ResurssikulutusResurssien konfigurointiPalauta asetukset...Lataa tallennetut näppäinoikotie kun GIMP käynnistetään.Rajoita muokkaus polygoneihinKäännäPalautaPalautetaanko "%s" -> "%s"?Palauta alkuperäinen kuva?En voi palauttaa kuvaa ennalleen. Kuvalle ei ole tiedostonimeä."%s":n palauttaminen epäonnistui: -%s_Oikeanpuoleisen päätypisteen väriOikean reunan tasausKiertoKierrä 90° _vastapäiväänKierrä 90° myötäpäiväänPyöritä kanavaaKierrä tasoaKierrä polkuaPyöritä tekstitasoaKierrä _180°Käännä kuvaaKierrä tasoa tai valintaaKierretään...Kierron tiedotPyöreäVääntöNäytä apuviivatPienennä...PiikkejäVaihda väritTallenna vasemmanpuoleinen väriNäytteistä keskiarvoYhdistetty valintaKylläisyys:KylläisyysTallennaTallenna "%s" POV-Ray-muodossaTallenna väritasoasetuksetTallenna virhelista tiedostoonTallenna kuvaTallenna syöttölaitteiden tila _nytTallenna näppäimistöoikopolut _nytTallenna väritasoasetuksetTallenna työkalujen asetuksetTallenna ikkunoiden sijainnit _nytT_allenna virheet tiedostoon...Tallenna _valinta tiedostoon...Tallenna _nimellä...Tallenna k_opio...Tallenna kuvasta kopioTyhjennä virheetTallenna POV-Ray-muodossa...Tallenna malliksi...Tallenna näppäinoikotiet kun GIMP lopetetaan.Tallenna käyrät tiedostoonTallenna laitteiden tilaTallenna väriliuku POV-Ray-muodossaTallenna tasot poistuessaTallenna asetukset...Tallenna valintaTallenna valinta kanavalleTallenna muutokset kuvaan '%s' ennen sulkemista?Tallenna tärkeimpien valintaikkunoiden sijainnit ja koot kun GIMP lopettaa.Tallenna kanavalleTallennetut asetuksetTalletetaan "%s" -Tiedoston "%s" tallennus epäonnistui: -%sKuvien tallennusSahalaita-aaltoSkaalattava SVG-kuva (*.svg)SkaalausSkaalaa kanavaaSkaalaa kuvaaSkaalaa tasoaSkaalaa polkuSkaalaa tekstitasoaSkaalaa kuvaaSkaalaaSkaalaus X-suhde:Skaalaus Y-suhde:Mittasuhde:Skaalaa tasoa tai valintaaSkaalausSkaalauksen tiedotKuva skaalaus valittuun kokoon käyttäisi enemmän muistia kuin asetuksissa on sallittu (%s).Valittu kuvakoko tulee poistamaan jotkin tasot kokonaan. Jatketaanko?Skaalaan...SaksetNäyttöScript-Fu -kansiotKomentosarjatVieritys alasVieritys alas (Alt)Vieritys alas (Control + Alt)Vieritys alas (Control)Vieritys alas (Shift + Alt)Vieritys alas (Shift + Control + Alt)Vieritys alas (Shift + Control)Vieritys alas (Shift)Vieritys vasemmalleVieritys vasemmalle (Alt)Vieritys vasemmalle (Control + Alt)Vieritys vasemmalle (Control)Vieritys vasemmalle (Shift + Alt)Vieritys vasemmalle (Shift + Control + Alt)Vieritys vasemmalle (Shift + Control)Vieritys vasemmalle (Shift)Vieritys oikealleVieritys oikealle (Alt)Vieritys oikealle (Control + Alt)Vieritys oikealle (Control)Vieritys oikealle (Shift + Alt)Vieritys oikealle (Shift + Control + Alt)Vieritys oikealle (Shift + Control)Vieritys oikealle (Shift)Vieritys ylösVieritys ylös (Alt)Vieritys ylös (Control + Alt)Vieritys ylös (Control)Vieritys ylös (Shift + Alt)Vieritys ylös (Shift + Control + Alt)Vieritys ylös (Shift + Control)Vieritys ylös (Shift)ValitseValitse kaikkiValitse sivellinkansioValitse värin mukaanValitse väriValitse ohjaimen toimintoValitse kansio tallennetulle ympäristölleTiedoston _tyyppi (%s)Valitse kansio väriliukumilleValitse kansio väriliukumilleValitse kansio moduleilleTyhjennä valintaValitse kansio paleteilleValitse kansio kuvioilleValitse kansio liitännäisilleValitse muokattava väriValitse muutettava väliValitse Script-Fu -kansio/Valitse/TerävöitäValitse sivutuskansioValitse tilapäiskansioValitse teemaValitse teemakansiotValitse mittasuhdeValitse pohjimmainen tasoValitse oma väri...Valitse seuraava tasoValitse edellinen tasoValitse päällimmäinen tasoValitse kaikkiValitse värin mukaanValitse väriltään yhtenäisiä alueitaValitse väri joka lisätään kankaan reunoihinValitse ellipsejäValitse vapaamuotoisia alueitaTyhjennä valintaValitse palettitiedostoValitse suorakulmioitaValitse osia kuvasta värien mukaanValitse muotoja kuvastaValitse sivutuskansioMontako kertaa valinta toistetaan.Valitse montako kertaa valinta toistetaan.Moneenko osaan valinnan osat jaetaan.Moneenko osaan valinnan osat jaetaan.Läpinäkyvien alueiden valintaValitse Web-selainValinta poluksiValintaValintaeditoriValintaeditoriValintamaskiTyökaluproseduuritValintamaskiValinta poluksi (_Lisäasetukset)Valinta poluksiValinta: Valinta: LISÄÄValinta: LEIKKAUSValinta: KORVAAValinta: POISTAHerkkyysKankaan täyttöväriAseta kanavan väriAseta kanavan läpinäkyvyysAseta värikarttaKankaan täyttöväriAseta kankaan kokoVaihda kuvan tulostustarkkuuttaAseta linkatuksiAseta näkyväksiAseta tason rajatNimi tekstistäAseta tason peittoAseta taustaväriEdustaväriAseta linkitetyksiAseta tason tilaAseta tason peittoSuurin muistin määrä joka käytetään kuvaa kohti pitämään toimintoja kumoamispinossa. Tästä asetuksesta riippumatta vähintää minimimäärä kumoamisia on mahdollista suorittaa.Asettaa ohjejärjestelmän käyttämän selaimen.Asettaa piirtoalueen täyttövärin jos täyttötavan asetus on mukautettu väri.Määritä käytettävä ulkoinen Web-selain. '%s' komennossa korvataan URL:illa, muutoin URL lisätään komennon perään.Asettaa mittakaavan muutoksissa ja muissa muunnoksissa käytettävän interpolaation määrän.Aseta tapa jolla läpinäkyvyys näkyy kuvissa.Pienin määrä operaatioita jotka voidaan kumota. Enemmän kumottavia toimintoja pidetään muistissa, kunnes kumoamisraja saavutetaan.Asettaa GIMP:n käyttämän kohdistimen tilan.Asettaa näytön vaakatarkkuuden, pistettä tuumalla. Jos asetus on nolla, kysytään arvoa X:ltä sekä vaaka- että pystytarkkuudelle.Asettaa näytön pystytarkkuuden, pistettä tuumalla. Jos asetus on nolla, kysytään arvoa X:ltä sekä vaaka- että pystytarkkuudelle.<Asettaa GIMP:n käyttämän kohdistimen pikseliformaatin.Asettaa tasojen ja kanavien esikatselunäkymän oletuskoon.Aseta läpinäkyvyyteen käytettävän Å¡akkilautakuvion koon.Asettaa esikatselunäkymän koon kuvaikkunan oikeassa alakulmassa.Aseta kumoamishistorian esikatselun koko.Asettaa tallennettavan esikatselukuvan koon. GIMP ei voi tallentaa esikatselukuvia jos tasoesikatselu on pois päältä.Sivutustiedoston sijainti. GIMP käyttää muistia lohkoissa ja sivuttaa käyttämättömät lohkot tiedostoon ladakseen ne taas käyttöön. Sivutustiedosto voi kasvaa isoksi jos GIMP:llä muokataan suuria kuvia. Nopeuden optimoimiseksi sivutustiedostoa ei saa sijoittaa verkkolevylle tai muistipohjaiseen tiedostojärjestelmään. Yleensä on paras sijoittaa sivutustiedosto työaseman levylle /var/tmp tai /tmp -hakemistoon.Väliaikaistiedostojen luotipaikka. Suurin osa tiedostoista poistetaan kun GIMP lopetetaan, mutta osa voi jäädä. Ei ole suositeltavaa käyttää hakemistoa joka on jaettu muiden käyttäjien kanssa.Asettaa tekstin joka näkyy kuvaikkunan tilapalkissa.Asettaa tekstin joka näkyy kuvaikkunan otsikossa.Kun käytössä, GIMP luo tasojen ja kanavien esikatselunäkymät. Esikatselunäkymät tasojen ja kanavien valintaikkunassa ovat hyödyllisiä mutta ne saattavat hidastaa käsiteltäessä isoja kuvia.Varjon tyyppiVarjotMuotoMuoto:Muotopurske (kulma)Muotopurske (näppyläinen)Muotopurske (pallo)TerävöitäTerävöitä kanavaaTerävöitä valintaVääntöVäännön suuruus X-suunnassa:Väännön suuruus Y-suunnassa:Tason tai valinnan vääntöVäännön tiedotVäännän...Lyhyet viivatOikopolkuOikotie "%s" on käytössä toiminnolle: "%s" ryhmässä: "%s"Näytä tason maskiNäytä viivottimetNäytä tilapalkkiNäytä vierityspalkitNäytä apulinjatNäytä tason rajatNäytä menupalkkiNäytä valintaNäytä siveltimen ulkorajaNäytä edusta- ja taustaväriNäytä apu_linjatNäytä tason rajatNäytä _menupalkkiNäytä _viivottimetNäytä aktiiviset siveltimet, kuviot ja väriliu'utNäytä käsiteltävä kuvaNäytä apuviiva_tNäytä Apu-painikkeetNäytä kuvan kokoNäytä aktiivinen reunaNäytä muistinkäyttöNäytä valikoiden pikanäppäimetNäytä maalaustyökalun osoitinNäytä v_alintaNäytä _tilapalkkiNäytä v_ierityspalkitNäytä vihjeet seuraavalla kerrallaNäytä vihjeet alussaNäytä työkaluvihjeetNäytä suurennosprosenttiNäytä suurennossuhdePienennä kanavaaPienennä valintaaPienennä ikkunaPienennä kuvan rajoistaPienennä valintaaPienennä ikkunaKokoKoko muistissa:Esikatselukuvan koko:Koko:Ohitetaan "%s": väärä GIMP-protokollan versio.PieniPienempi esikatseluPehmeäPehmennä reunojaSormiTuhriTartu apulinjoihinNaksahda apuviivoihinPehmeä valoJatkuvaLähdeVälistysVälistys:Harvat pisteetErikoistiedostoMäärittää miten kuvan ympärillä oleva alue piirretään.Valinnan ääriviivassa marssivien muurahaisten nopeus. Arvo on millisekunneissa (pienempi aika tarkoittaa nopeampaa).Nopeus:Pallomainen (_laskeva)Pallomainen (_kasvava)Piikit:Spiraali (vastapäivään)Spiraali (myötäpäivään)JakoJaa väriliu'un osa tasaisestiJaa väriliu'un osat tasaisestiJaa tasaisestiJaa osa tasaisesti...Jaa osa keskeltäJaa osat tasaisestiJaa osat tasaisesti...Jaa osat keskeltäNeliömäinenTila ja tekstiPinoVakioKäynnistetään laajennokset: Käynnistetään laajennus %s. -Tila:VakioväritilaVakioharmaasävytilaTila ja kuvausTila ja tekstiStandardipoikkeama:PisteitysPiirrä polkuPiirrä polkua pitkin...Piirrä kanavaPiirrä polkuPiirrä valintaPiirtoasetuksetPiirrä polkuPiirrä käyttäen edellisiä asetuksiaPiirrä polkua pitkin...Piirrä valinta viimeillä arvoilla_Piirrä valinta...Piirrä käyttäen maalaustyökaluaTilapalkin reunustusVähennysVähennä valinnastaYlinäytteistysSivutuskansio:TyökalulaatikkoTekstiTekstityökaluTilapäistiedostot:MallitTeemavalikkoTilapäinen proseduuriSuljetaan liitännäinen "%s" -TekstiTekstin väriTekstieditoriTekstitasoTekstiä muutettuTekstiproseduuritGIMPGIMP-avustusselaimen liitännäinen näyttää puuttuvat asennuksestasi.Käytössä oleva sivellin. -Napsauta avataksesi sivellinvalikon.Käytössä oleva väriliukuma. -Napsauta avataksesi väriliukumavalikon.Käytössä oleva kuvio. -Napsauta avataksesi kuviovalikon.Käytössä oleva kuvio. -Napsauta avataksesi kuviovalikon.Apuviivojen taustaväri, käytetään vain tuplakatkoviiva tyylissä.Komentojonotulkkia "%s" ei löydy, komentojono tila ei käytettävissäMääriteltyä tiedostonimen koodausta ei voi muuntaa Unicodeen: %s - -Tarkista ympäristömuuttujan G_FILENAME_ENCODING arvo.Tiedostonimeä "%s" ei voitu muuntaa URI:ksi: - -%sApuviivojen edustaväri.gimprc-tiedostoa käytetään henkilökohtaisten asetusten tallentamiseksi. Lisäksi siinä voi myös asettaa hakupolut siveltimiä, paletteja, väriliukumia, kuvioita, liitännäisiä ja moduleja varten.Kuvan vaakatarkkuus.Valittu taso on tekstitaso, mutta sitä on muutettu muilla työkaluilla. Muokkaaminen tekstityökalulla hylkää nämä muutokset. -Voit muokata tasoa tai luoda uuden tekstitason sen tekstiasetuksilla.Gimpin käyttäjän asetukset sisältävän tiedoston nimeä ei voi muuttaa Unicode-merkistöön: %s - -Luultavimmin tiedostonimet eivät ole Unicode-yhteensopivia, ja et ole määritellyt tätä. Aseta ympäristömuuttujen G_FILENAME_ENCODING arvo.sessionrc-tiedostoon tallennetaan ikkunoiden sijainnit GIMPista poistuttaessa. Voit määrätä GIMPin avaamaan ikkunat uudelleen samaan paikkaan missä ne olivat viimeksi.Avausikkunan esikatselu päivitetään automaattisesti, jos tiedosto on pienempi kuin asetettu koko.Kuvavälimuisti varmistaa että GIMP ei jatkuvasti lataa ja tallenna kuvalohkoja levylle. Asettamalla tämän arvon suureksi GIMP käyttää vähemmän sivutustilaa, mutta enemmän muistia. Vastaavasti pieni arvo aiheuttaa että GIMP käyttää enemmän sivutustilaa ja vähemmän muistia.Mittayksikkö jota käytetään, kun ei olla piste-pisteeltä -tilassa.unitrc-tiedostoon tallentuvat käyttämäsi lisämittayksiköt. Voit ottaa käyttöön GIMPissä lisää mittayksiköitä ja käyttää ne samaan tapaan kuin sisäänrakennettuja yksiköitä (tuuma, millimetri, typografiset piste ja pica). Tämä tiedosto kirjoitetaan uusiksi joka kerta kun lopetat GIMPin.Kuvan pystytarkkuus.Ikkunan reunustus telakoiduille ikkunoille. Tämä vaikuttaa ikkunointiohjelman tapaa reunustaa ja käsitellä telakoituja ikkunoita.Ikkunan reunustus työkalulaatikolle. Tämä vaikuttaa siihen miten ikkunointiohjelma reunustaa ja käsittelee työkalulaatikko -ikkunoita.TeemaTeemakansiotTeemat%d kuvaa joissa on tallentamattomia muutoksia:Ei tarpeeksi näkyviä tasoja yhdistämiseen.Yleensä GIMP optio nopeutta muistinkäytön kustannuksella. Jos muistinkäyttö on ongelma, aktivoi säästääksesi muistia.Ei tasoa tai kanavaa josta voisi kopioida.Ei tasoa tai kanavaa josta voisi leikata.Ei aktiivista tasoa tai kanavaa jolle piirtääEi taso tai kanavaa jolle piirtää.Kuvalla on tallentamattomia muutoksia:Tiedosto "%s" puuttuu! Tarkista asennuksen oikeellisuus.Tapahtui virhe jäsennettäessä tiedostoa "%s". Käytetään oletusarvoja. Varmuuskopio asetuksista on luotu tiedostoon "%s".Tässä tiedostossa on kokoelma eri kokoisia malleja.Tästä kansiosta GIMP hakee käyttäjäkohtaiset mallikuvat.Tähän kansioon tulevat käyttäjän asentamat teemat.Tähän kansioon voit tallentaa kirjasimia joiden haluat näkyvän vain GIMP:issä. GIMP lukee tämän kansion sisällön järjestelmän kirjasinten lisäksi. Jos halut kirjasinten näkyvän muissakin ohjelmissa, tallenna ne järjestelmän- tai käyttäjäkohtaiseen kirjasinkansioon.Tämä on kansio jonne GIMP tallentaa väritoistokäyrätyökalun parametritiedostoja.Tämä on kansio jonne GIMP tallentaa väritasotyökalun parametritiedostoja.Tähän kansioon tallennetaan työkalujen asetukset.Tämä on kansio jonne voit tallentaa Script-Fu skriptejä. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään skriptejä tästä kansiosta järjestelmälaajuisen skriptikansion lisäksi.Tämä on kansio jonne voit tallentaa GIMPin lisämoduleja. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään moduleja tästä kansiosta järjestelmälaajuisen modulikansion lisäksi.Tämä on kansio jonne voit tallentaa liitännäisohjelmia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta järjestelmälaajuisen liitännäiskansion lisäksi.Tämä on kansio jonne voit tallentaa liitännäisohjelmia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään liitännäisiä tästä kansiosta järjestelmälaajuisen liitännäiskansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi siveltimiä. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään siveltimiä tästä kansiosta järjestelmälaajuisen sivellinkansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi väriliukumia. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään väriliukumia tästä kansiosta järjestelmälaajuisen väriliukumakansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi paletteja. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta järjestelmälaajuisen kuviokansion lisäksi.Tämä on kansio jonne voit tallentaa luomiasi kuvioita. Oletusarvoisesti gimprc-tiedosto ohjaa GIMPiä etsimään paletteja tästä kansiosta järjestelmälaajuisen kuviokansion lisäksi.Tämä on kansio jonne GIMP tallentaa tilapäisiä puskureita muistikäytön säästämiseksi. Jos GIMPin suoritus pysähtyy virheeseen tähän kansioon voi jäädä tiedostoja joiden nimet ovat muotoa: gimp#.#. Näitä tiedostoja ei tarvitse säilyttää käyttökertojen välillä, ja ne voi poistaa ilman haittaa.Tähän kansioon tulee joukko tärkeitä tiedostoja ja alikansioita. Napsauta yhtä tiedostoa tai kansiota vasemmalla niin saat lisätietoja siitä.Matka jonka päästä apulinjat ja apuviivat tarttuvat.Tämä ohjelma levitetään siinä toivossa, että siitä on hyötyä, mutta ILMAN MITÄÄN TAKUUTA; jopa ilman konkludenttista takuuta MYYNTIKELPOISUUDESTA TAI SOVELTUMISESTA TIETTYYN ERITYISEEN TARKOITUKSEEN. Yksityiskohtien osalta katso GNU yleistä julkista lisenssiä.Tämä on vapaa ohjelma; voit levittää ja muuttaa sitä GNU yleisen julkisen lisenssin sopimusehtojen mukaisesti sellaisina kun Free Software Foundation on ne julkaissut. Voit soveltaa lisenssin versiota 2 tai myöhempää.Tekstikenttä on rajattu %d merkkiin.Tällä työkalulla ei ole asetuksia.Ikkunassa on %d aukinaista välilehteä. Ikkunan sulkeminen sulkee myös ne.Raja-arvoRaja-muunnosta ei voi käyttää indeksoiduilla kuvilla.Raja:Esikatselu %d / %dKuvavälimuistin koko:Kuvavälimuistin koko:Kallistus:MinimaalinenOtsikot ja tilapalkkiPoluksiLelutAseta QmaskiAseta _QMaskToistuva virheilmoitus!Työkalujen asetuksetTyökalujen asetuksetTyökalu päälle/pois %sTyökalujen asetuksetTyökalukuvakeTyökalu ikoni ristinäTyökaluvalikkoTyökaluvalikkoTyökaluvalikkoTyökalulaatikkoTyökaluvalikkoSumean valinnan ja täytön kaltaiset työkalut löytävät alueita algoritmilla nimeltä siementäyttö. Siementäyttö alkaa valitusta kuvapisteestä ja etenee kaikkiin suuntiin kunnes kuvapisteen väri eroaa siitä kynnysarvoa enemmän. Tämä on kynnyksen oletusarvo.LäpinäkyvyysSiirrä läpinäkyvyys maskiksiMuunnosMuunna kanavaaMuunnoksetMuunna tasoMuunna polkuMuunna tekstitasoTyökaluproseduuritMuunna tasoMuunna polkuMuunna valintaMuunnosMuunnosproseduuritMuunnetaan...Käännökset:LäpinäkyvyysLäpinäkyyden _tyyppi:KolmioaaltoTäysväritilaTyyppiTyyppi %sSyötä uusi oikopolkuSyötä uusi oikopolku, tai paina Peruuta-näppäintä tyhjentääksesiMaskin lisäys ei onnistu koska tasolla on jo maski.Leikkaus tai kopiointi epäonnistui, koska valittu alue on tyhjä.Ei voinut avata sivutustiedostoa. Välttääksesi datan häviämisen, tarkista asetuksista sivutustiedoston paikka ja sen oikeudet. (asetus: '%s').Ei voinut avata sivutustiedostoa. Gimpin käytettävissä oleva muisti on loppunut ja sivutusta ei voi käyttää. Osa kuvastasi voi korruptoitua. Tallenna työsi uudella nimellä, käynnistä Gimp uudelleen ja tarkista sivutustiedoston sijainti asetuksista.Ei voinut suorittaa kutsua: %s. Liitännäinen on voinut kaatua.MäärittelemätönKumoaToimintohistoriaToimintohistoriaYksikötTuntematonTuntematon tiedoston tyyppi.Tuntematon palettitiedosto: -%sPoistaNimetönNimetönKäytä "Piste pisteeltä" alkuasetuksinaDynaamiset oikopolutKäytä web-selaintaKäytä kaikkia näkyviä tasoja valinnan pienentämiseenKäytä mustavalkoista palettiaVäri liukumastaKäytä omaa palettiaKäytä infoikkunaaKäytä WWW-optimoitua palettiaHenkilökohtaisen asennuksen lokiKäyttöliittymäDialogi-ikkunaArvoArvo:Muuta vektoreitaVersion %s tekijät:Versio:PystyEnsimmäisen sarakkeen siirtymä, voi olla negatiivinen.Apuviivojen pystysuora välistys.Hyvin suuriHyvin pieniNäytäNäytä _taulukkonaNäytä _listanaNäytä ruudukkonaNäytä listanaNäyttöluokka:Värisyvyys:Lataus ei onnistunut: - -%sEi voitu tallentaa: - -%sWeb-selainWeb-selainTervetuloa! -Gimp %d.%d. Henkilökohtainen GIMP-asennusKun asetus on aktivoitu, ikkuna seuraa automaattisesti käsiteltävää kuvaa.Kun käytössä, Gimp näyttää pikanäppäimet valikoissa.Kun käytössä, kaikki maalaustyökalut näyttävät esikatselussa nykysiveltimen ääriviivat.Kun käytössä, kuvasta tulee aktiivinen kohdistettaessa sen kuvaikkunaan. Tämä on hyödyllinen ikkunointiohjelman käyttäessä "click to focus"-toimintoa.Jos päällä, kyselyikkunoissa näkyy apu-painike, joka avaa avustustoiminnon. Ilman tätä avustuksen saa näkyviin F1-näppäimellä.Jos päällä, valikot saa irrotettua.Jos päällä, F1 avaa avusteselaimen.Jos asetettu, GIMP ei tallenna jos kuva on muuttamaton avauksen jälkeen.Kun käytössä, GIMP käyttää eri tietoikkunaa jokaiselle kuvanäkymälle.Kun käytössä, X-palvelimelta kysytään hiiren sijaintia jokaisen liiketapahtuman kohdalla, muuten luotetaan sijaintivihjeeseen. Tämä tarkoittaa, että isoilla siveltimillä maalaamisen pitäisi olla tarkempaa, mutta se voi olla hitaampaa. Omituista kyllä, joillakin X-palvelimilla tämän valitsimen käyttö johtaa nopeampaan maalaamiseen.Kun käytössä, osoitin näytetään kuvan päällä käytettäessä maalaustyökalua.Jos päällä, apuviivat ovat näkyvissä oletuksena.Jos päällä, apulinjat ovat oletusarvoisesti näkyvillä. Asetusta voi myös muuttaa valikosta Näytä->Apulinjat.Kun käytössä, kuvaikkuna muuttaa itsestään kokoaan aina kun zoomataan sisään tai ulos kuvasta.Kun käytössä, kuvaikkuna muuttaa itsestään kokoaan aina kun kuvan todellinen koko muuttuu.Jos päällä, tasojen rajat ovat oletusarvoisesti näkyvissä. Asetusta voi myös muuttaa valikosta Näytä -> Näytä tason raja.Kun käytössä, valikkopalkki on oletusarvona näkyvissä. Tilan voi vaihtaa myös "Näkymä->Näytä valikkopalkki"-toiminnolla.Kun käytössä, viivaimet ovat oletusarvona näkyvissä. Tilan voi vaihtaa myös "Näkymä->Näytä viivaimet"-toiminnolla.Jos päällä, vierityspalkit näkyvät oletusarvoisesti.Kun päällä, valittua sivellintä käytetään kaikille työkaluille.Kun päällä, valittua väliliukua käytetään kaikille työkaluille.Kun päällä, valittua kuviota käytetään kaikille työkaluille.Jos päällä, valitut alueet ovat näkyvissä. Asetusta voi myös muuttaa valikosta: Näytä -> Näytä valinta.Jos päällä, tilapalkki näkyy oletusarvoisesti.Kun käytössä, varmistutaan että jokainen kuvan kuvapiste vastaa ruudun kuvapistettä.Kun käytössä, varmistetaan koko kuvan olevan näkyvissä kun tiedosto on avattu, muuten käytetään mittakaavaa 1:1.Jos päällä, näppäimistöoikopolut voidaan asettaa painamalla näppäinyhdistelmä valikon päällä.ValkoinenVäritasapainon säätö käytettävissä vain täysvärikuvilla.LeveysLeveys:Istunnon hallintaIkkunointiohjelman asetuksetIkkunoiden sijainnitKirjoitetaan '%s' -XXCF virhe: havaittua XCF tiedoston versiota %d ei tueta.XCF varoitus: XCF-tiedostomuoto versio 0 -ei tallettanut indeksoituja väripaletteja oikein. -Korvataan harmaasävy väripaletti.YKeltainenKeltainen:Yrität luoda kuvaa jonka koko on %s.Voi pudottaa telakoitavat ikkunat tähän.Sinun olisi pitänyt saada kopio GNU:n yleisestä julkisesta lisenssistä tämän ohjelman mukana; jos et sitä saanut, niin lähetä kirje osoitteella -Free Software Foundation, Inc. -59 Temple Place - Suite 330 -Boston, MA 02111-1307, USA.GIMP täytyy käynnistää uudestaan jotta seuraavat muutokset tulisivat voimaan:GIMP-asennuksesi on keskeneräinen:Syöttölaitteiden asetukset palautuvat perusasetuksiin seuraavan kerran kun Gimp käynnistyy.Näppäimistöoikopolut nollataan oletusasetuksiin seuraavan kerran kun Gimp käynnistyy.Ikkunoiden paikat palautuvat perusasetuksiin seuraavan kerran kun Gimp käynnistyy.Suurennus- ja pienennyskäyttäytyminenSuhde 1:1Suurenna kaikkiSuurennaPienennäMittasuhdeMittasuhde:Suurenna (täysi)SuurennaPienennäSuurenna täysiSuurennos %d:1Suurenna kuvaa kun ikkunan koko muuttuuSuurennaSuurennoskerroinPienennäSuurenna:[ peruskuva ]_TietojaKuvan syöttöLisää väri _taustastaLisää väri _edustasta_Lisää välilehtiLisää valintaanKehittyneet asetuksetRuiskuK_aikki_Ankkuroi taso_AntialiasointiMielivaltainen kierto...TaiteellisetSivusuhde_Automaattinen_B_Taustaväri_Taustaväri:_Musta (täysin läpinäkyvä)Osan sekoitustapaSekoitusfunktioTee epäteräväksiKirkkaus:_SiveltimetSiveltimetSiveltimet, kuviot ja väriliutTäyttöLeikeVärin mukaanValinta värin mukaan_C_Lopun tyyli:_KanavatT_yhjennä virheetTyhjennä toimintohistoriaKloonaus_Sulje_Sulje välilehtiPilvetVärityökalutVärit_Aseta väri ja läpinäkyvyys...TilavalikkoYhteydestä riippuva avustus_KopioiKopioi nimetty...Luo kuva mallista...Rajaa & muokkaa kokoaRajaa kuva_KäyräVärintoistokäyrät...Tumma ruudutusOletusvärit_Poista sivellin_Poista leike_Poista kanavaPoista väri_Poista väriliuku...Poista kuvaPoista taso_Poista palettiPoista polku_Poista kuvio...Poi_sta tallennetut asetuksetPoista väliPoista valintaPoista malliPienennä värikylläisyyttä_Irroita välilehtiLaitteiden tila_IkkunatHylkää tekstidataVääristyksetPiste pisteeltäKahdenna_Muokkaa_Muokkaa siveltimen ominaisuuksia..._Muokkaa kanavan ominaisuuksia..._Muokkaa väriä...Muokkaa väriliukua...Muokkaa tason ominaisuuksia...Muokkaa palettia...Muokkaa polun ominaisuuksia...Muokkaa kuviota...Muokkaa mallia...EllipsivalintaTasojen ja kanavien esikatselutJättikokoinenTasoita sävyaluePyyhekumi_Edustaväri_TiedostoTäyttö:_Laajenna ikkunaanYhdistä kuvaPeilikuvatyökalu_Peilaa osaPeilaa valinta_Kelluva_KirjasinKirjasimet_Edustaväri:Vapaa valinta_G_YleisetGiganttinenVäriliukumaVäriliukumatHarmaasävy_Harmaasävy kopio tasostaLaajenna..._ApulinjatKovuus_Ohje_Vaakasuuntaan:Sävy (H):Valtava_Kuvake_Kuvake:_KuvaKuvatTuo_Tuo paletti...Indeksoitu...InfoikkunaLeikkaa valinnastaK_äänteinenL_iitoksen tyyli:IsoT_aso_TasotTasot, kanavat & polut_Vasemmanpuoleinen päätypiste_Vasemman naapurin oikea päätypisteVäritasot...Vaalea ruudutusValoefektitValoisuus (L):_Viivan tyyli_Lineaarinen_Yhdistetty_Lataa vasemmanpuoleinen väri_Laske kanavaLaske tasoLaske polku_MManuaalisesti:_KuvauksetMaskiMaski valinnaksiVärien maksimimäärä:MittaKeski_Yhdistä paletit...Yhdistä tuodut polut_Siirrä käyttäjän GIMP 2.0 -asetukset.Sekalaiset_Särmän raja:_TilaModulihallintaSiirrä_Nimi:_Luonto_Uusi sivellin_Uusi kanava_Uusi kanava...Uusi kohta..._Uusi väriliuku_Uusi tasoUusi taso..._Uusi palettiUusi polkuUusi polku...Uusi kuvioUusi malli...Uusi näkymä_Uusi..._Seuraava vihjeKohina_Ei mikäänSiirtymä...Peitt_o_Avaa kuva_Avaa...Oma laajennosväriMaalaustyökalu:Sivellin_PalettiL_iitä_Liitä nimettyLiitä nimetty..._Polut_KuviotPerspektiiviPosterisaatio...AsetuksetEsikatseluEsikatselukoko_Edellinen vihje_Tulostuskoko..._Ominaisuudet_QMask päällä_Poistu_R_RGBSäde_Nosta kanavaNosta tasoNosta polkuNosta näkymä_Nosta tai avaa kuva_Määrää uusi oikopolkuSuorakulmiovalintaUudelleenTee uudelleen %sLue siveltimetP_äivitä väriliu'ut_Virkistä paletitVirkistä kuviotPoista käyttämättömät värit lopullisesta paletistaMuodosta kuvaKorvaaKopioi osa...Kopioi valinta...Lue kirjasinlista uudelleenNollaa järjestys ja näkyvyys_Nollaa syöttölaitteiden_Palauta näppäimistöoikotiet käynnistyksessä_Palauta ikkunoiden sijainnit poistuttaessa_Palauta asetukset_Oikeanpuoleinen päätypiste_Oikeanpuoleisen naapurin vasen päätypisteKiertoVärikylläisyys (S):_Tallenna_Tallenna vasemmanpuoleinen väri_Tallenna asetukset_Tallenna syöttölaitteiden tila poistuessa_Tallenna näppäimistöoikopolut poistuttaessaTallenna ikkunoiden sijainnit poistuttaessaSkaalausSkaalaa kuvaa...Skaalaa tasoa..._Skaalaa tuodut polkut sopimaan kuvaan_Valitse_ValintaValintaeditoriValintatyökalutMuotoTerävöitäNäytä kuvan valintaNäytä työkaluvalikossa_SinimuotoinenPieniSormi_Tarttumisetäisyys:Piirrä valinta_Piirrä valinta...Vähennä valinnastaVälilehden tyyliMallit:MallitTekstiRaja-arvo...MinimaalinenPäivän vihje_TyökalutT_yökalut_Siirrä tason alfakanavaMuunnosMuuntotyökalutK_umoaK_umoa %s_Pystysuuntaan:_Näytä_Näkyvä_WebKäytettävä Web-selain:_Valkoinen (täysin peittävä)_Valkotasapaino_Leveys:Kiedo ympäriX-tarkkuus:_X:_Laajennokset_YY-tarkkuus:_Y:SuurennaSuurenna %sväriäkopiodpisallitut arvot: "yes" tai "no" asetukselle %s, tuli '%s'jäsennysvirheharmaasävyharmaasävy-tyhjätuumatuumaaindeksoituindeksoitu-tyhjäEpäkelpo unicode-merkkijonoväärä arvo "%ld" ikonityypillekelvoton arvo "%ld" symbolille %sväärä arvo "%s" ikonityypilleväärä arvo "%s" symbolille %smillimetrimillimetriäminuutin-prosenttipicapicaapikselipikseleitäpikseleitä/%apikseleitä/%spistepistettäsekunnintips-locale:fiVille Hautamäki -Tor Lillqvist -Sami Gerdt -Jarkko Ranta -Tapio Lehtonen -Mikko Paananensymbolin %s arvo ei ole kelvollinen UTF-8 -merkkijonojäsennettäesssä symbolia "%s": %s \ No newline at end of file diff -uraN gimp-2.2.8/po/fr.gmo gimp-2.2.9/po/fr.gmo --- gimp-2.2.8/po/fr.gmo 2005-02-21 14:18:37.000000000 +0100 +++ gimp-2.2.9/po/fr.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,441 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·!¸"¹)A¹ok¹jÛ¹=FºT„ºLÙº[&»j‚»?í»t-¼E¢¼?è¼B(½lk½Tؽ4-¾<b¾/Ÿ¾=ϾA ¿/O¿ -¿Š¿ -‘¿ -œ¿ -§¿ ²¿ ¾¿Ê¿Ú¿ -é¿ô¿÷¿ À -"À -À 9À"CÀ%fÀŒÀ¢À9ªÀäÀöÀ Á Á)Á -FÁQÁYÁbÁ kÁ yÁ -†Á ‘Á žÁ ¨Á ²Á -¾ÁÉÁ -ÞÁ -éÁôÁùÁÂ\”tÂF Ã0PÃ*ìÃÆÃÍÃßÃæÃÄÄ/Ä7ÄOÄfÄxÄ,‰Ä¶ÄÉÄÜÄøÄÅ*ÅFÅXÅińŞźÅÙÅùÅÆ61Æ?hƨÆ!ÁÆ ãÆÇ# Ç%1ÇWÇvÇ”Ç%²ÇØÇ÷ÇÈ,3È!`È#‚È -¦È±È -ÃÈÎÈ ãÈ ïÈÉ'É -/É:ÉJÉ\ÉztÉ@ïÊH0ËyË˕˫˪´Ë -_Ìj̨̉ÌÇÌÐÌãÌ ëÌõÌÍ2ÍGÍKeÍV±ÍÎb&ΉΛέÎÂÎ#âÎÏ Ï%Ï&*ÏQÏ'hÏÏ°Ï¿ÏÙÏíÏ Ð#Ð=Ð FÐTÐ&lГЯÐFÅÐ/ Ñ <Ñ FÑ PÑ \ÑiÑ(qÑ šÑ ¤Ñ)®Ñ ØÑ=åÑ#Ò8Ò=ÒEÒ$JÒ oÒ{ҌҡҹÒLÏÒÓ#Ó7ÓLÓ kÓuÓ }Ó ŠÓ–Ó žÓ «ÓµÓ¼Ó‡ÎÓVÔ [ÔhÔ }Ô ŠÔ#”Ô¸ÔÐÔæÔîÔNÿÔ?NÕOŽÕHÞÕD'Ö†lÖ0óÖ$×<D××U×0ó×3$Ø#XØ$|Ø¡Ø"³Ø ÖØ âØîØ"öØ+Ù"EÙ"hً٨٠ÇÙ/èÙ/ÚHÚ3dÚ*˜ÚÃÚÉÚÜÚ$ìÚ%Û7Û!HÛjÛˆÛŸÛµÛËÛÔÛ ÛÛçÛüÛÜ!Ü*Ü2ÜCÜcÜyÜ"ÜF°ÜG÷ÜF?ÝK†Ý6ÒÝ3 Þ3=Þ&qÞ˜Þ ¶Þ;×Þ'ß;ß2ZßlßRúß(Mà/và:¦à9áà)áEá+Xá„á˜á)§áÑáðá ÷áââ3âEâ Wâaâiâ~âšâ%®âÔâíâAãIã\ã -mãxãã ¨ã"µã%Øãþã/ä7äGäWäkä‹ä §ä³ä Ãä Ïä Ýä*ëä2åIåbåwå!—å%¹å"ßå(æ+æ!Jælæ4Šæ ¿æàæ÷æ ç #ç -ç9çÄBç èè "è,è$>è'cè'‹è³èÌè#Þè#é*&é Qé^éyé‰é0™é Êé<×é%ê@:ê({ê3¤ê/Øê1ë0:ë4kë/ ë@Ðë ìì*:ìeìì™ì²ì(Ìì<õì2í1Lí~í í&¾íåí"ÿí"î6î+Qî}îî­î#¿îãîòîïïï 3ïAïUï nï{ïï—ï«ïÀïÏïI×ï !ð/ðFð)^ðˆððŸð¤ð¬ðÁðÕðíðññ-ñAñZñsñ…ñšñ©ñ¼ñÐñÖñ Þñ*èñ$ò8òKòfò5„òºòÐòâòõòó.ó@óSóhó|óó¤ó¾óÒóîóôô&-ô!Tô"vô™ô¯ô-Äô òô -õ= õ IõUõ\õtõ „õŽõõ ¥õ±õÁõáõþõ ö(ö?öWöoöƒö œö ¦ö²öÄöÌö0ÔöT÷aZ÷<¼÷ù÷ - øø2ø KøUødø -zø0…ø¶ø ËøØøèøùø -ùù-ù@ùSùbù|ù”ù¯ùXÊù/#úSúgúzú‘ú¥úºúÎú"áúû"û 9ûFû]ûqûzûšû+·û+ãûü/üKü$[ü €ü&¡ü#Èüìüÿüý1ý/DýtýŒý¬ý Âýãý÷ý þ/þ -Eþ Pþ \þhþ7}þµþÄþ%ÝþÿYÿ1tÿ¦ÿ(®ÿ.×ÿ &7G ž¬ ÅEÏ2HNas-ŠB¸,û>(-g•6².éf„  %D*`‹ ¤"² -Õ!à" CTey “'¡"É ì  -<9<v ³R½c`tTÕl*i—g `i \Ê ™' -XÁ -k n† \õ ‰R eÜ `B j£ œ «·ÈÞð !3K[m…–±È"è 'Db€—­ÄÚ(ù$"$G lv* ª Ëì ,Kb v‚ ’œ¯Ã×ô  1#C gt¢·Ç á #:0S„Š’›!° ÒÜ ä^ñP pø}v&ŽµÐéû /;TM¢¶Êßð ).=!M o|Ž¥ ºÛ–ê˜;™ŽÕd†tû   ¬"Ë îú  (>Z7r7ª!â] b -ozŠž®³ÃÈÐ"×ú ) C &I p ‹   © Ê æ  ÷ !!%! A! M![! -c!n! -v!!†!˜!$¨!*Í!ø! " "("!F"h"h}" æ" ó"ÿ" -# -$#\/#-Œ#Hº#$ -$7$T$ g$q$y$Š$‘$¨$º$É$Ð$ß$£ï$Ä“%]X&T¶&A 'M'S'b's' -Œ'—'%¦'Ì'Ý'1ï'!(!<(^(+q((­(f¼(#) 2) ?)L) S)_)u)Š)Ÿ)»)Ù)í)* * *)* =*J*!Y*{*„*—*ª*©Ê*t+Œ+%«+Ñ+(í+ , ",0,G,a,s,f†,Cí,E1-w-‘-&§- Î-Ø-ò-. .(+.T.j..C’.;Ö.L/P_/M°/4þ/.30b0@€0Á0Ê0Ü0Dó081O15h1ž1º1Õ1æ1ý12$2;2S2j2 -‚22ž2¶2È2ß2ý23 &343H3c3x3 ’3³3Ï3 ã3ñ34 454 O4p4Œ4  4¬4¾4×4ê45!5:5ˆL5Õ6Ý6ò67# -7.767=7M7b7v7P}7Î7â78 8@8U8f8v8.ˆ8-·8!å89 $9E9!Y9{99§9 ¯9¼9Ú9ú9 :X:s:I{:Å:Þ:ó:ù: ;$;'8; `;j;y;;•;&©;2Ð;2<"6<Y<t< ƒ< ‘<"ž<Á<"Ô<"÷<=.=L=#`=„=£=¶=Ó=ç=>>9>@>I>_>f> -n>y>>“>*²>Ý>%ó>)? -C?N?1`?(’?»?'Û? -@@"@"8@,[@ ˆ@”@ š@¨@¿@Õ@ë@AA">A"aA„A¤AºAÑAèAÿAB(6B _B(lB*•BÀB ÇBÑBÖB"ÞB=C?C \C}C’CªC½CÅCØC'îC D D5D!HDjD}D’D¦DÄDØDðD EE"4EWEoE‰E-£E.ÑEFF -&F1F HFTF%lF’F–F -F ¨F¶FÏFèFG%G4GCGRGlG|G ŒG)šGÄGÕGòGH"H7H*FHqHƒH*”H¿H ÑHßH=ñH/I1JI|I$ŒI#±I-ÕIJJ2J BJNJTJiJpJJJ*¡JQÌJQK%pK–K±K -ÆK ÑKÛKîKLL4L KL XLžfLMM6M ?MKMRM cM„M¡M ÁMâMöMN3N!SN+uN¡N ¿N+àN* O 7O CO PO]OrOO‰O -›Oh¦O2PBP.JPyP/P ±PÒPçP+ùP%Q-?QmQ uQQ‡Q›QµQ#ËQïQRR #R1R ORYRpRwR%ŽR´R ÆRÓRïR7S1FS xS†SS¡S ²S%ÀS&æS! T"/TRTjTBTÄTÛT ãTðTöT -U)U CUPU WUcUkU rU“U¢U ¹U)ÅUïUþU V3VKV$aV†VœV®VÅVÝVðV ÷VWWAYW›W±W¹WÒW$èW) X½7XQõXGYPY¦XY ÿZ [[ $[ 0[,<[i[?‡[ Ç[Õ[ð[ \\ \ <\F\O\f\à€\a]] -]¨]·]¾]Ç]#Ð]'ô]^ .^&<^c^y^ ^^­^±^Ë^ Ü^è^!ñ^__&0_W_p_‹_#¨_Ì_Ó_Ü_%î_`4`G`f`$w`œ`¼`Î`ì`ÿ`a.a3Ma+a­a²aºa1Ña&b+*b.Vb#…b©b ¿bQËbxcQ–cQècU:dd:–dDÑde-eCe\ebeke.se5¢eØeðe f$f ;fGfcf€fbœfÿfg#!g!Egggzg)Žg"¸gÛgïg"h!'hIh ]h?~h.¾híhii-&iTipi…iŒi¡i·iÍiâiòi j!j$>jcjxjj§j¿jÚj%ùj0kPk"pk,“k8Àk ùk3lNl]lulŒl¥l!¾làl÷l*mB=m€mžm¸mÇmämnE!n$gnŒn•n$nÂnCØn+oHoho|o&…o!¬oÎoàoóop!p7p!Kpmp‚p›p £p±p ÅpÒpÛp"ópq$+qPq -Xq cq(oq˜q(°qÙq3íq&!rHr"`r1ƒr2µr-èrs+s Esfs…s sE¾s't%,t*Rt4}t²tÒt'ìtCuWXu°uËuáu0ÿu0v GvUvsv‰v¥vÃvàv%w&wDw\wtwŒw!¢wÄw*×w°xS³xyy2y9yPyXyhy~y›y²y"Îyñyz$z7zPzpzŠz%©zÏzïz{{2{Q{j{$ˆ{­{Ì{ä{õ{ |*|B|#_|ƒ|¡| -¸|Ã|#Ö|ú|}3+}(_}&ˆ}&¯}&Ö}#ý}!~$7~"\~$~-¤~ Ò~%ó~*1#\€#˜ ¼Ý,ý *€$K€ p€‘€¤€$»€@à€4!(V$•(º%ã$ ‚..‚N]‚C¬‚\ð‚UMƒ'£ƒ˃ëƒ -„„ %„F„"[„~„"“„¶„Í„Ü„ò„ …$… =….J…!y…!›…½…-Ý… †/(†'X†(€†©† ņæ† ù† ‡;‡S‡n‡,Œ‡⹇6œˆGÓˆ‰h:ŠO£ŠÅóŠ)¹‹¹ã‹·Œ8UoŽJþrIŽ>¼Ž¼ûŽD¸=ý‘L;“Mˆ“ÑÖ“ ¨”µ”¼””É” 攕%•;•&Z• •Ž•«•#È•ì• – –'–N9–ˆ–¥–»–#Ö–ú–—-—H—!`—2‚—µ—Ê—è—˜2˜L˜e˜y˜–˜´˜Ó˜Có˜+7™c™{™#–™%º™#à™š š@š_šsšŠš$ªšÏš+éš››2› K›7U››“›¨›°› Ä›Лä›ü›œ"œ*œ -1œ <œJœ]œ3nœ¡¢œ -DOj -‚©À,É.ö%ž#Ež'iž!‘ž%³ž#ÙžýžŸŸŸ"Ÿ(<ŸeŸnŸ Ÿ Ÿ šŸ -¨Ÿ ³Ÿ¿ŸÈŸÚŸïŸÿŸ % 5 ,F s 0‡ ¸ (Р3ù  -¡$:¡_¡s¡¡˜¡ Ÿ¡¬¡Æ¡ Ï¡Ý¡&ó¡¢ ¢1¢C¢S¢b¢t¢My¢HÇ¢M£E^£E¤£lê£SW¤¡«¤LM¥(š¥ðÃ¥%´¦Ú¦Y÷§ÚQ©,ªFʪS¬e¬#y­«­¬I®ö®ý®¯;¯CV¯÷š¯>’°>Ñ°:±:K±;†±N±³²^ŲF$³Yk³>ų^µ^cµDµÍ¶úÕ¶(зáù¸É۹ѥºËw»ÅC¼y ½Áƒ¾SE¿÷™¿‘À6§ÁÞÁfúÁaÂJg²»ÂÎÂêÂà Ãà -Ã:ÃØÃàÃÿÃÄ;ÄNÄfÄzÄŽÄ  ÄÁÄÓÄäÄúÄÅhÅ †Æ#”Æ ¸ÆÄÆÜÆøÆÇ!'Ç&IÇpdžǜǶÇÅÇãÇ õÇ ÈÈ'È9ÈNÈSÈ[ÈAzÈ?¼ÈFüÈàCÉh$ÊTË âËïË÷ËÌ(Ì0Ì8Ì&PÌ -wÌ‚Ì -‹Ì.–Ì+ÅÌ'ñÌ>Í(XÍÍ# Í#ÄÍ+èÍ(Î=ÎSÎgÎ nÎxΊΠ-¥Î°ÎY¹Î+Ï ?Ï KÏ WÏaÏxώϦϽÏÑÏ=éÏ@'ÐhÐwÐ7†Ðd¾ÐY#Ñq}ÑÁïÑϱÒ=ÓT¿ÓmÔl‚ÔƒïÔssÖ çÖ¥ˆ×‚.Ø{±Øµ-Ù¯ãÙµ“ÚÃIÛZ Ü[hÜWÄܨݮÅÝ\tÞ‹ÑÞÆ]ß$àA*àlà -tàà$•àºàÕàîàAðà¶2áéáëáñá6úá31âÜeâABã(„ãy­ãr'äwšä,å?åHå -då oå}å“å©å ÆåÒåáåýå/æ -HæSæ iæwææ -‘æ œæ©æ Éæêæýæç *ç7ç=çOç`ç xç„çŒç’ç •ç£çµç!Ñç$óçèè.è6è?è ]èjè rèè—èšè®è¶è Ëèìèôèüè éé )é'3é -[éféyéé+’é¾éÚé íé ÷éêê3êHê]êoêƒêžê±êÆêÜêïê$ë+ë?ëSë iëuë‰ë -¢ë­ë!Ëë íëúë - ì ì!ì"7ìZìqì#Šì®ì#Åìéìþìí',íTí -]íhíoí~í‡í!—í¹í -ÊíÕíëí -îîî î1îLî Oî \î -iî tî€î#‘î µîÂîÊîÓîÙî -éîôîýî -ïïï ï)ïAïUï nï ï™ï°ï¸ïÀïÉïäï$øï ð)ðCðWðgð -xðƒð&‹ð²ðÆðÛððð óðñññ(ñGñOñVñqñ.‘ñÀñÈñßñåñ -þñ òòò*ò9òKòaòtò„ò—ò©ò¹òÌòÛò ïò ýò óó!ó )ó 7óAó -Só^óvó‰ó’ó›ó£óµóËóÔó Ûóèóøóôô%ô:ô Uôcôxôô„ô‰ôô£ô·ôËôÞô$üô!õ;õ DõPõiõ…õŸõ9·õñõ -øõöö2ö)RöJ|öFÇö>÷M÷k÷'÷ §÷±÷ À÷"Í÷ð÷4ø0Cø3tø¨ø!¼ø ÞøDÿø Dù Pù\ùtùŠù‘ù!ªù"Ìù ïùüù úú+úAúZúwú ‡ú “úú ¤ú -®ú¹úÊúÑú#Ùú ýú -û$û -û 9û -GûRû[û`ûû›û ¯û»ûÍûßûåûëûîûüü - üü ü'üU+üü¡ü±üÅüËüÒü Ûü(èü3ý2Eý2xý1«ý Ýý éýöýýýþ -þþþþ "þ ,þ6þ<þCþKþfZþMÁþ.ÿ[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.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: fr -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-25 19:55+0100 -PO-Revision-Date: 2005-02-19 02:49+0100 -Last-Translator: -Language-Team: -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3.1 - -Option « %s » non valide - -Usage : %s [option ...] [fichier ...] - - --batch-interpreter - La procédure utilisée pour les commandes batch. - --debug-handlers Active le déboguage des gestionnaires de signaux pour les signaux non fatals. - --display Utilise l'affichage X spécifié. - --dump-gimprc Créé un fichier gimprc avec les réglages par défaut. - --no-cpu-accel N'utilise pas les accélérations propre au CPU. - --no-shm N'utilise pas la mémoire partagée entre GIMP et ses greffons. - --pdb-compat-mode - Mode compatibilité Procedural Database. - --session Utilise un autre fichier sessionrc. - --stack-trace-mode - Mode de débogage pour les signaux fatals. - --system-gimprc Utilise un autre fichier système gimprc. - --verbose Affiche les messages de démarrage. - -b, --batch Lancement des commandes en mode batch. - -c, --console-messages Affiche les avertissements dans la console à la place d'une boîte de dialogue. - -d, --no-data Ne charge pas les brosses, dégradés, palettes, motifs. - -f, --no-fonts Ne charge aucune police. - -g, --gimprc Utilise un autre fichier gimprc. - -h, --help Affiche cette aide. - -i, --no-interface Lance sans interface utilisateur. - -s, --no-splash N'affiche pas l'écran de démarrage. - -v, --version Affiche la version. -%d Calques%d ppp%d ppp, %s%d calques%d minutes%d secondes%d x %d ppp%d x %d ppp, %s%d x %d pixels%g x %g %s%pCopie du canal %s%s Canal vers SélectionMessage %sCopie de %smasque %s%s%sClic : étendre la sélection%s%sGlisser : déplacer & compresser(%0.3f, %0.3f, %0.3f)(Aucun)(Cette fenêtre de console se fermera dans dix secondes) -(Tampon sans nom)(Modèle sans nom)(divers)(correct)(chaîne de caractères UTF-8 non valide)(modifié)(Aucun)1 Calque1 calque15 degrés %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Transformation 2D...4:1 (400%)8:1 (800%)<%s><>Pour des performances optimales de GIMP, certains paramètres devront -être ajustés.GIMP - Le programme de manipulation d'images GNU -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis et l'équipe de développement de GIMP.Le fichier des astuces de GIMP ne peut être lu correctement !Votre fichier d'astuces semble manquer !Un fichier appelé « %s » existe déjà.A_jouter à la sélection_AngleÀ propos de GIMPActionActiver le _focus sur imageFiltres actifsSuréchantillonnage adaptatifAjouterAjouter un canal alp_haAjouter un canal alphaAjouter une ancreAjouter un canalAjouter la couleur à la palette de couleursAjouter un guide :Ajouter des guidesAjouter un guide horizontalAjouter un masque de cal_que...Ajouter un calqueAjouter un masque de calqueAjouter un cheminAjouter un traitAjouter un calque de texteAjouter un guide verticalAjouter un masque au calqueAjouter la couleur depuis l'APAjouter la couleur depuis le PPAjouter un masque de calqueAjouter du texte à l'imageAjouter la couleur actuelle à l'historique de couleurAjouter le filtre sélectionné à la liste des filtres actifs.Ajouter à la palette %sAjouter à la sélection couranteAjout du thème « %s » (%s) -AdditionContrôleurs d'entrée additionnelsAjuste la luminosité et le contrasteAjuste la balance des couleursAjuste les courbes de couleurAjuste les niveaux de couleurAjuste la luminosité et le contrasteAjuste la balance des couleursAjuste les courbes de couleurAjuste les niveaux de couleurAjuster la teinte / luminosité / saturationAjuste la teinte et la saturationAjuster les niveaux automatiquementAjustementOptions avancéesAffecte :Région affectée %sAérographeAérographe à pression variableAl_pha vers sélectionAlignéAlignementTous les canauxTous les fichiersTous les fichiers (*.*)Toutes les images et données d'annulation qui ne rentrent pas dans le cache d'images seront écrites dans un fichier d'échange. Ce fichier doit être situé sur un système de fichiers local avec suffisamment d'espace libre (quelques centaines de Mo). Sur un système UNIX, vous pourrez par exemple utiliser le répertoire temporaire commun (« /tmp » ou « /var/tmp »).Permet aux régions complètement transparentes d'être rempliesPermet aux régions complètement transparentes d'être sélectionnablesPermet d'élargir %sAlphaAlpha vers SélectionAlpha :Une image à la taille demandée conduira à utiliser plus de mémoire que la « taille maximum de nouvelle image » dans le dialogue des préférences (actuellement %s).An_imationAncrer la sélection flottanteAncrer la sélection flottanteAncrer la sélection flottanteAngle :Anti-effacement %sLissageApparenceAppliquer le masque de calqueAppliquer le _masque de calqueAppliquer les seuilsAppliquer le masque de calqueÊtes-vous sûr de vouloir supprimer « %s » de la liste et du disque ?Êtes-vous sûr de vouloir supprimer le modèle « %s » de la liste et du disque ?Comme dans les pré_férencesDemander confirmation avant de fermer une image non sauvegardée depuis sa dernière modification.Ratio d'aspect :Ratio d'aspect :Attacher un parasiteAttacher un parasite à l'imageAttacher un parasite à l'élémentAttacher un parasiteAuteur :AutoSuivre automatiquement l'_image activeRéduction automatiqueRéduction automatique de la sélectionAuto-redimensionner la fenêtreAutochargementDétecté automatiquementFiltres disponiblesTypes disponibles :Remplissage avec la couleur d'AP_Luminosité-Contraste..._TamponsArrière-planCouleur d'arrière-planCouleur de premier plan réglée à :Arrière-plan : %d, %d, %dInversée (correctif)Remplit une région à partir d'une base sur tous les calques visiblesSélection basée sur tous les calques visiblesDerrièreEn biseauBilinéaireNoir & blancNoir :Méla_nger les couleurs des extrémités_MélangeDégradéMélanger les _opacités des extrémitésMélange : Mélange : Non valide pour les images en couleurs indexées.Mélange en cours...BleuBleu :FlouRendre flou ou augmenter la nettetéBo_rdure...Bordure du canalBorder la sélectionBorder la sélection deLuminosité-ContrasteLuminosité-Contraste ne peut opérer sur des calques en couleurs indexées.BrosseÉditeur de brossesDossiers des brossesBrosse (interface utilisateur)Brosse :BrossesMenu BrossesRemplissageTamponsMenu TamponsAssombrirCourbeSelon l'extensionEn faisant revenir à l'état enregistré sur le disque, vous perdrez toutes vos modifications ainsi que les informations d'annulation.CMJNC_alibrer..._Pipette à couleursC_olonnes :C_ombinerCalibrer la résolution du moniteurImpossible d'annuler %sTaille du cane_vas...AnnulerAnnuler un guideImpossible d'ajouter un masque de -dimensions différentes de celles du calque.Impossible d'ajouter un masque -dans un calque sans canal alpha.Impossible d'ajouter un masque à un -calque qui ne fait pas partie d'une image.Impossible d'ancrer ce calque car ce n'est pas une sélection flottante.Impossible de convertir vers une palette ayant plus de 256 couleurs.Impossible de créer un nouveau calque à partir de la sélection flottante car elle appartient à un canal ou à un masque de calque.Impossible de créer le dossier « %s » : %sImpossible de créer l'aperçu.Impossible de découper car la sélection courante est vide.Impossible d'étendre ${%s}Impossible de créer une sélection flottante car la région sélectionnée est vide.Impossible de monter un calque sans canal alpha.Impossible d'enregistrer. Rien n'est sélectionné.Impossible de tracer un canal vide.Impossible de tracer un chemin vide.Taille du canevasMode de _remplissage du canevas :Centre X :Centre Y :CentréChanger la couleur d'arrière-planChanger l'entrée de la palette de couleursChanger la couleur de premier planModifier la résolution de l'imageModifier l'unité de l'imageChanger la taille d'impressionChange le calque ou chemin actifChanger la couleur d'arrière-plan de la grilleChanger la couleur du premier plan de la grilleChanger la palette indexéeChange la perspective du calque ou de la sélectionÉchec du changement de raccourci clavier.CanalAttributs du canalNom du canal :Le canal ne peut pas être plus bas.Le canal ne peut pas être plus haut.Couleur du canalLe calque est déjà tout en bas.Le calque est déjà en haut.Canal vers _SélectionCanal vers SélectionCanal vers sélectionCanal :CanauxMenu Canaux_Taille du damier :Choisissez un style de tracéCercle_EffacerEffacerEffacer le canalVider l'historique d'annulationEffacer tout le texteEffacer les erreursVider l'historique d'annulation...Cliquez sur « Continuer » pour accepter les -paramètres ci-dessus.Cliquez sur « Continuer » pour créer votre dossier -GIMP personnel.Cliquez sur « Continuer » pour entrer dans l'installation de GIMP.Cliquez sur « Continuer » pour procéder à l'installation utilisateur.Cliquez pour connecter ce noeud au point final choisi.Cliquez pour créer un nouveau noeud. (essayez MAJ)Cliquez pour créer un nouveau composant au chemin.Cliquez pour créer un nouveau chemin.Cliquez pour créer l'aperçuCliquez pour supprimer ce noeud.Cliquez pour insérer un noeud sur le chemin. (essayez MAJ)Cliquez pour rendre ce noeud angulaire.Cliquez pour ouvrir le chemin.Cliquez pour sélectionner des chemins à éditer.Cliquer pour mettre à jour l'aperçu -%s Cliquer pour forcer la mise à jour même si l'aperçu est à jourCliquez-glissez pour changer la forme de la courbe. (MAJ : de façon symétrique)Cliquez-glisser pour déplacer le noeud.Cliquez-glissez pour déplacer tous les noeuds.Cliquez-glisser pour déplacer le composant. (essayez MAJ)Cliquez-glisser pour déplacer la poignée. (essayez MAJ)Cliquez-glisser pour déplacer le chemin.Clic : sélectionClic : sélectionner Tirer : déplacerRogner le résultatPresse-papiersRogné à la taille du calque le plus basRogné à la taille de l'imageClonerFermer %sFermer tous les ongletsFermer tous les onglets ?Fermer cet onglet_Copier le cheminCouleu_rsCouleurBalance des couleursFiltres d'affichage couleurPipette à couleursInformation de la Pipette à couleurs_Balance des couleurs...Aucun _tramage de couleurLa balance des couleurs fonctionne seulement sur des calques RVB.Effacer la couleurIndex couleur :Couleur :_Palette de couleursEspace _colorimétrique :_Colorier..._Type de coloriage pour le segment_Type de coloriage pour la sélectionColorierColorier ne fonctionne que sur des calques RVB.Colorie l'imageColorie l'imagePalette de couleursÉditeur de palette de couleursMenu de palette de couleursColonnes :_Commentaire :CommentaireCon_traste :_Goutte d'eauConfigurer les filtres d'affichage couleurConfigurer les périphériques d'entrée _étendusConfigurer la g_rille...Configurer la grilleConfigurer l'image de la grilleConfigurer les raccourcis clavierConfigurer les _raccourcis clavier...Configurer le filtre sélectionnéConfigurer le filtre sélectionné : %sConfirmer la taille de l'imageConfirmer le changement de tailleConfirmer l'édition du texte_Confirmer la fermeture des images non enregistréesConflit entre raccourcis clavierConique (asymétrique)Conique (symétrique)Connecter les tracésConstanteContraintesContexteLes curseurs dont l'apparence dépend du contexte sont sympatiques et sont activés par défaut. Néanmoins, ils demandent des ressources supplémentaires que vous aimeriez peut-être économiser.ContinuerContributions deConvertirConvertir un bordConvertir l'image en niveaux de grisConvertir l'image en couleurs indexéesConvertir l'image en couleurs indexéesConvertir l'image en RVBConvertir l'imageConvertir en indexé (étape 2)...Convertir en indexé (étape 3)...Convertir l'image en couleurs indexées...Goutte d'eauType de circonvolution %sCopier (nommé)Copier _visibleCopie du fichier « %s » depuis « %s »...Copyright :Segment corrompu %d dans le fichier de dégradé « %s ».Impossible de créer « %s » : %sImpossible de créer un fichier temporaire pour « %s » : %sImpossible de supprimer « %s » : %sImpossible de trouver le navigateur d'aide de GIMP.Impossible d'ouvrir « %s » en lecture : %sImpossible d'ouvrir « %s » en écriture : %sImpossible d'ouvrir la vignette « %s » : %sImpossible de lire %d octets depuis « %s » : %sImpossible de pointer dans le fichier XCF : %sImpossible de démarrrer le greffon du navigateur d'aide de GIMPCompte :_Découper les bords du calqueCréer une nouvelle _fenêtre avec ongletsCréer un nouveau modèleCréer une nouvelle imageCréer un nouveau calqueCréer un nouveau modèleCréer une nouvelle vue pour cette imageCréer une nouvelle image à partir du modèle sélectionnéCréer un nouveau modèleCrée et modifier des images ou des photographiesCréer et modifier des cheminsCréer un chemin depuis le texteCréer une sélection depuis un cheminCréation de l'aperçu...Création du dossier « %s »...Découper les bordsDécouper & RedimensionnerInformations sur Découper & RedimensionnerDécouper l'imageDécouper les bords du calqueDécouper l'imageDécoupe ou redimensionne une imageDécoupage : Seulement une croixCou_perCou_per (nommé)Cubique (Meilleure)_État actuelLargeur actuelle :Calque courant seulementÉtat actuelLargeur actuelle :CurseurM_ode de curseur :_Rendu de curseur :Type de courbeCourbesLes courbes des calques en couleurs indexées ne peuvent être ajustées.PersonnaliséCouleur personnaliséeDégradé personnaliséCouleur de remplissage _personnalisée :CouperCouper (nommé)CyanCyan :D_upliquer la brosseD_upliquer le canalD_upliquer le dégradéD_upliquer le calqueD_upliquer la paletteD_upliquer le chemin_Dupliquer le motifD_upliquer le modèle...Couleur sombre du damierNoircir seulementTiret point point...Tiret point...Motif du tiret :Tiret préréglé :TiretDate :DébogageApparence par défaut en mode Plein écranApparence par défaut en mode NormalGrille par défautGrille d'image par défaut_Interpolation par défaut :Taille par défaut de l'aperçu de _calque & canal :_Seuil par défaut :Effacer une ancreEffacer les ancresEffacer le masq_ue de calqueEffacer le masque de calqueSupprimer l'objetEffacer un segmentSupprimer le modèleSupprimer la brosseSupprimer le canalSupprimer la couleurSupprimer le dégradé...Supprimer le calqueEffacer le masque de calqueSupprimer la paletteSupprimer le cheminSupprimer le motif...Supprimer les options enregistrées...Supprimer le tampon sélectionnéSupprimer le modèle sélectionnéSupprimer cette imageEffacer les vecteursLa suppression de « %s » a échoué : %sPoints densesDésaturerLa désaturation n'opère que sur des calques de couleur RVB.DescriptionTracerÉtat du périphériquePériphériquesDialoguesMenu DialoguesLosangeDifférenceCouleur DirecteDésactiver le masque de calqueDésactiver le masque rapideÉcarter le texte d'InformationAffichageAfficher la navigation_Filtres d'affichage...Procédures d'affichageType d'affichage :Affichage [%0.6f, %0.6f]DissoudreDistance :Distance : %0.6fTramageDiviserEffectuer une _nouvelle installation personnelleVoulez-vous vraiment réinitialiser tous les filtres à leurs valeurs par défaut ?Voulez-vous vraiment réinitialiser toutes les options des outils à leurs valeurs par défaut ?Voulez vous le remplacer avec l'image que vous enregistrez ?_Ne pas enregistrerAttachableHistori_que des documentsHistorique des documentsDocumentsMenu DocumentsÉ_claircir/AssombrirÉclaircirTracer des éclaircissements ou assombrissementsÉclaircir/AssombrirDouble tiretTirer une ancreTirer des ancresTirer la courbeTirer une poignéeTirer le cheminTirer : déplacerDessine à l'encreZone de dessinMode du support de tracéProcédures des tracésDéposer un nouveau calqueDéposer un nouveau cheminÀ cause de l'absence de polices de caractères, la fonction texte n'est pas disponible.Capturer les événements depuis ce contrôleurDupliquer la brosseDupliquer le canalDupliquer le dégradéDupliquer le calqueDupliquer la paletteDupliquer le cheminDupliquer le motifDupliquer le modèle sélectionnéArrgh : Impossible d'annulerE_xporter le chemin..._Très petitComportement des bordsDé_tection de bordÉditionÉdition des attributs du canalÉdition du canal de couleurÉditer l'entrée de la palette de couleursÉditer l'entrée de la palette de couleursÉditer les attributs du calqueÉditer le masque de calqueMode d'éditionÉdition de la couleur de la paletteÉdition des attributs du cheminÉditer les attributs du masque rapideÉditer la couleur du masque rapideÉditer le modèleÉditer la brosseÉdition des attributs du canalÉditer la couleurÉditer l'entrée de la palette de couleurs #%dÉditer le dégradé...Éditer les attributs du calqueÉditer la palette...Édition des attributs du cheminÉditer le motif...Procédures d'éditionÉditer le modèle sélectionnéSélection elliptiqueCanal videCalque videChemin videCalque de texte videNom de variable vide dans le fichier d'environnement %sA_méliorationActiver le masque rapideActive le tramage de la _transparenceActiver ce contrôleurActivez cette option pour qu'une astuce utile vous soit présentée au lancement de Gimp.Activez cette option pour voir les bulles d'aide.ÉnormeEntrez un nom pour la palette fusionnéeSaisissez un nom pour les options enregistrésSaisissez un nom pour ce tamponSaisissez un nom pour ce modèleSaisissez un nouveau nom pour les options enregistréesIndiquer l'emplacement (URI) :EnvironnementDossiers d'environnementÉgaliserL'égalisation ne peut opérer sur des calques en couleurs indexées.Gomme (met la couleur de fond ou rend transparent)GommeConsole d'_erreursConsole d'erreursMenu Console d'erreursErreur d'enregistrement du fichier XCF : %sErreur durant l'interprétation de « %s » à la ligne %d : %sErreur durant la lecture de « %s » : %sErreur durant la lecture du fichier de brosse « %s » : %sErreur durant l'écriture de « %s » : %sErreur d'écriture XCF : %sErreur lors de l'écriture du fichier « %s » : -%sErreur lors de l'écriture de « %s » : %sErreur lors de l'écriture du fichier temporaire pour « %s » : %s -Aucun fichier n'a été créé.Une erreur s'est produite durant l'écriture du fichier temporaire pour « %s » : %s -Le fichier original n'a pas été modifié.ErreursÉvénementT_rès grandÉtendu autant que nécessaireExporter des Chemins en SVGExporter tous les chemins pour cette imageExporter le chemin actifExposition :Périphériques d'entrée étendusExtensionsRemplissage avec la couleur de PPPP vers AP (TSV sens horaire)PP vers AP (TSV sens anti-horaire)PP vers AP (TSV)PP vers AP (RVB)PP vers TransparentPP vers transparentPP/APCouleur PP/APRelâchement de la sélection flottanteRigueur de la sélection flottanteSélection flottante vers calqueA_juster le canevas aux calquesEstompementL'importation des chemins depuis « %s » a échoué : %sL'importation des chemins depuis « %s » a échoué : %sFantaisieErreur fatale d'interprétation dans le fichier de brosse « %s » : Octets = 0Erreur fatale d'interprétation dans le fichier de brosse « %s » : le fichier semble tronqué.Erreur fatale d'interprétation dans le fichier de brosse « %s » : le fichier est corrompu.Erreur fatale d'interprétation dans le fichier de brosse « %s » : Hauteur = 0.Erreur fatale d'interprétation dans le fichier de brosse « %s » : n'est pas un fichier de brosse GIMP.Erreur fatale d'interprétation dans le fichier de brosse « %s » : forme de brosse inconnue de Gimp.Erreur fatale d'interprétation dans le fichier de brosse « %s » : version de brosse GIMP inconnueErreur fatale d'interprétation dans le fichier de brosse « %s » : profondeur inconnue %d.Erreur fatale d'interprétation dans le fichier de brosse « %s » : version inconnue %d.Erreur fatale d'interprétation dans le fichier de brosse « %s » : profondeur non supportée %d -Les brosses GIMP doivent être TONS DE GRIS ou RVBA.Erreur fatale d'interprétation dans le fichier de brosse « %s » : profondeur = 0.Erreur fatale d'interprétation du fichier de dégradé « %s » : le fichier de dégradé est corrompu.Erreur fatale d'interprétation du fichier de dégradé « %s » : n'est pas un fichier de dégradé GIMP.Erreur fatale d'Interprétation du fichier de palette « %s » : en-tête magique absent.Erreur fatale d'Interprétation du fichier de palette « %s » en-tête magique absent. -Ce fichier doit il être converti depuis DOS ?Erreur fatale d'Interprétation du fichier de palette « %s » : erreur de lecture à la ligne %d.Erreur fatale d'interprétation du fichier de motif « %s » : ne peut lire %d octets : %s.Erreur fatale d'interprétation du fichier de motif « %s » : version de format de motif inconnue %d.Erreur fatale d'interprétation du fichier de motif « %s » : profondeur de motif non supportée %d. - Les motifs GIMP doivent être TONS DE GRIS ou RVB._Adoucir...Adoucir le canalAdoucir la sélectionAdoucir les bordsAdoucir la sélection deFichier_Dialogue d'ouverture de fichiersOpérations de fichiersType de fichierLe fichier existeLe fichier est tronquéRemplir le canalOpacité du remplissage :Type de remplissage %sRemplir des couleurs similairesRemplir les régions transparentesRemplir toute la sélectionRemplir avec la couleur d'APRemplir avec la couleur d'_APRemplir avec la couleur de PPRemplir avec un _motifRemplir avec un motifRemplir en transparentRemplir avec du blancRemplir avec la couleur de _PPRemplir avec la couleur d'_arrière-planRemplit avec un dégradé de couleurRemplit avec une couleur ou un motifJustifiéFilt_resLe calque final, fusionné, devra être :Recherche de régions contiguësRecherche de couleurs similairesAjuster l'image à la fenêtreAjuster l'image dans la fenêtreAjuster l'image à la fenêtreAjuster à la fenêtreRatio d'aspect fixeTaille fixeAplatir l'imageRetournerRetourner le canalRetourner le calqueRetourner le cheminRetourner le calque de texteType de retournement %sMiroir _horizontalMiroir _verticalRetourner l'imageRetourne le calque ou la sélectionRetourner...Retournement en cours...Sélection flottanteSélection flottanteCalque flottantSélection flottante -(%s)Sélection flottante vers calqueSélection flottante vers calqueSélections flottantesFloyd-Steinberg (normal)Floyd-Steinberg (couleurs qui déteignent moins)FocusDossierDossiersDossiers des policesInterface de sélection de policePolice :PolicesMenu PolicesPour une installation correcte de GIMP, un dossier nommé « %s » doit être créé.Forcer l'ajustement automatiquePremier planCouleurs de premier et d'arrière-plan (souvent notées PP et AR). Les carrés noirs et blancs réinitialisent les couleurs, les flèches les intervertissent. Double-cliquez pour sélectionner une couleur dans un dialogue de sélection de couleurs.Couleur de premier planCouleur d'arrière-plan réglée à :Premier plan : %d, %d, %dNormale (traditionnelle)_Depuis le cheminSélection à main levéeSélection à main levéeMain levéeDepuis le _thèmeObtenir la résolution auprès du _système de fenêtrage (actuellement %d x %d ppp)De gauche à droiteDe droite à gaucheDepuis la sélectionDepuis le thèmeSélection _contiguëPlein é_cranSélection contiguëGIMPExtension GIMPMessage de GIMPAffinage des performances de GIMPGreffon GIMPLancement de GIMPÉditeur de texte GIMPConseil du jour GIMPInstallation personnelle de GIMPImage Gimp XCFGIMP ne peut pas initialiser l'interface graphique utilisateur. -Assurez-vous que des réglages corrects pour votre environnement d'affichage existent.Navigateur d'aide GimpGimp n'est pas correctement installé pour l'utilisateur courant. -L'installation utilisateur a été sautée car l'option « --no-interface » a été utilisée. -Pour réaliser l'installation utilisateur, lancez GIMP sans l'option « --no-interface ».GIMP utilise une quantité de mémoire limitée pour stocker les données d'une image ; cette zone est nommée « Cache d'images ». Vous devriez ajuster cette taille pour correspondre avec votre quantité de mémoire libre. Prenez en compte la quantité de mémoire utilisée par les autres processus en cours.GIMP utilise un fichier supplémentaire gtkrc de manière à ce que vous puissiez modifier son apparence vis à vis d'autres applications GTK.Version de GIMPGimp préviendra l'utilisateur si ce dernier tente de créer une image dont la taille mémoire dépasserait la taille spécifiée ici.GammaGénéralCette option permet de spécifier le nombre minimum de couleurs allouées à Gimp par le système ; ce n'est en général utile que pour les affichages 8 bits.Générer une palette optimaleObtenir la résolution du moniteurGigantesqueProcédures GimprcEffets de _verreDégradéÉditeur de dégradéMenu Éditeur de dégradésDossiers des dégradésCouleur de l'extrémité gauche du segment de dégradéCouleur de l'extrémité droite du segment de dégradéDégradé (interface utilisateur)Le fichier de dégragé « %s » est corrompu : les segments ne suivent pas l'intervalle 0-1.Dégradé :DégradésMenu DégradésExtraction de grainFusion de grainGrisNiveaux de grisVertVert :GrilleEspacement des lignes de la grilleAgrandissement du canalAgrandir la sélectionAgrandir la sélection deGuideAlignement sur les guides et la grilleProcédures sur les guidesTSVTSV (%0.3f, %0.3f, %0.3f)TSV (teintes sens _anti-horaire)TSV (teintes sens _horaire)Notation HTML :_Hauteur :_Navigateur d'aide à utiliser :Position du taquet : %0.6fContour durLumière dureDuretéDureté :HauteurHauteur :AideNavigateur d'aideSystème d'aideLe navigateur d'aide ne démarre pasLe navigateur d'aide n'a pas été trouvéProcédures d'aideHexa :Tons vifsEnvoi pour les fenêtres _attachables :Envoi pour la _boîte d'outils :Indices d'ajustementLes indices d'ajustement altèrent les polices pour produire des lettres nettes dans les petites taillesHisto_grammeHistogrammeÉchelle de l'histogrammeHistoriqueHorizontalDécalage horizontal de la première ligne de la grille ; ça peut être un nombre négatif.Espacement horizontal des lignes de la grilleNombre de fichiers récemment ouverts à conserver dans le menu Fichier.TeinteTeinte-SaturationTeinte-Saturation opère seulement sur des calques RVB._Teinte-SaturationTeinte :Immense_Icône et texteI_mageI_mporter un chemin..._Interpolation :I_ntervalle :IcôneIcône et descIcône et texteSi ils sont disponibles, les indices d'ajustement contenus dans une police seront utilisés. Mais vous pouvez choisir de toujours utiliser l'ajustement automatiqueSi cette option est activée, l'outil Déplacer changera le calque actif ou le chemin quand un calque ou un chemin est cliqué. C'était le comportement par défaut dans les versions ultérieures.Si vous n'enregistrez pas l'image, les modifications depuis les dernières %s seront perdues.Si vous quittez Gimp maintenant, les modifications non enregistrées seront perdues.Nom de variable illégal dans le fichier d'environnement %s : %sImageImage + grilleÉditeur d'imageInformations sur l'imageMenu ImageTaille d'imageFormat de la barre d'état de l'imageModèles d'imageVignettes d'imageFormat du titre et de la barre d'état de l'imageFormat du titre de l'imageApparence de la fenêtre d'imagesFenêtres d'imagesL'image ne contient pas de calques visiblesFichier d'imageMasque d'imageLe résolution de l'image est hors des limites, utilisation de la résolution par défaut à la place.Taille d'imageImage sourceType d'imageImagesMenu ImagesOptions d'importationImporter une paletteImporter des cheminsImporter des Chemins en SVGImporter une nouvelle paletteImporter la paletteImporter des cheminsChemin importé_Stylo-plumeIn_verserIn_verser le masqueIncrémentalIndentation :Indentation de la première ligneIndex :Couleurs indexéesCouleurs indexéesConvertir en couleurs indexéesLes calques en couleurs indexées sont toujours mis à l'échelle sans interpolation. Le type d'interpolation choisi n'affectera seulement que les canaux et les masques.Fenêtre d'informations_Facteur d'échelle initial :Initialiser le masque de calque à :Initialisation des greffonsInitialisation du greffon : « %s » -Stylo-plumeInline pixbufContrôleurs d'entréePériphériques d'entréeNiveaux d'entréeInsérer une ancreInstaller une palette de couleurs privée ; utile pour les modes d'affichage en 8 bits (256 couleurs).L'installation a échoué. Contactez votre administrateur système.Installation réussie. Cliquez sur « Continuer » pour poursuivre.Mise à jour instantanéeCiseaux _intelligentsIntensité : %0.3f Opacité : %0.3fInterfaceProcédures GIMP internesProcédures InternesType d'interpolation :IntersecterIntersection avec la sélection couranteIntersections (croix)Intersections (points)UTF-8 non valideChaîne de caractères UTF-8 non valide dans le fichier « %s ».Chaîne de caractères UTF-8 non valide dans le fichier XCFChaîne de caractères UTF-8 non valide dans le fichier de brosse « %s »Chaîne de caractères UTF-8 non valide dans le fichier de dégradé « %s ».Chaîne de caractères UTF-8 non valide dans le fichier de palette « %s »Erreur dans le fichier de motifs de GIMP « %s ».Séquence de caractères non valide dans l'URIRaccourci clavier non valide.Hauteur ou largeur non valide. Les deux doivent être positives.InverserInverser le canalInverser la sélectionL'inversion ne fonctionne pas sur des calques en couleurs indexées.Inverser la sélectionEst-ce que vous voulez ?Il semble que vous ayez utilisé Gimp 2.0 auparavant.Propriétés de l'élémentVisibilité de l'élémentJustification :Garder la transparenceGarder au-dessusConserver l'aspect %sRatio d'aspect fixe %sConserver la hauteur %sGarder la transparenceConserver la largeur %sTouche basTouche bas (Alt)Touche bas (Ctrl + Alt)Touche bas (Ctrl)Touche bas (Maj + Alt)Touche bas (Maj + Ctrl + Alt)Touche bas (Maj + Ctrl)Touche bas (Maj)Touche gaucheTouche gauche (Alt)Touche gauche (Ctrl + Alt)Touche gauche (Ctrl)Touche gauche (Maj + Alt)Touche gauche (Maj + Ctrl + Alt)Touche gauche (Maj + Ctrl )Touche gauche (Maj)Touche droiteTouche droite (Alt)Touche droite (Ctrl + Alt)Touche droite (Ctrl)Touche droite (Maj + Alt)Touche droite (Maj + Ctrl + Alt)Touche droite (Maj + Ctrl )Touche droite (Maj)Touche hautTouche haut (Alt)Touche haut (Ctrl + Alt)Touche haut (Ctrl)Touche haut (Maj + Alt)Touche haut (Maj + Ctrl + Alt)Touche haut (Maj + Ctrl)Touche haut (Maj)Les raccourcis clavier peuvent être redéfinis dynamiquement dans GIMP. Le fichier menurc est un enregistrement de votre configuration, afin que celle-ci puisse être reprise de session en session. Vous pouvez éditer ce fichier à la main si vous le désirez, mais il est bien plus facile de définir les touches depuis GIMP. Effacer ce fichier restaure les raccourcis clavier par défaut.ClavierEvénements claviersRaccourcis clavierGàDCouleur de l'_extrémité Gauche...PaysageGrandeGrand (256x256)Aperçus plus grandsDernière erreur :CalqueLe calque « %s » n'a pas de canal alpha. Le calque a été placé au-dessus.Attributs du calqueTaille des b_ords du calque...Type de remplissage de calqueMasque de calque vers SélectionSélection de calqueTaille de calque_Mode de calque_Nom du calque :Le calque ne peut pas être descendu plus bas.Le calque ne peut pas être monté plus haut.Le calque est déjà tout en bas.Le calque est déjà en hautMettre aux dimensions de l'imageCalque tout en _basCalque aux dimensions de l'_imageCalque tout en hau_tCanal _alpha du calqueCalquesMenu CalquesOptions de fusion des calquesCouleur de l'extrémité gaucheJustifié à gaucheLongueur :Laisser Gimp tenter de restaurer, à chaque démarrage, votre dernière session sauvée.NiveauxLes niveaux ne sont pas ajustables sur des calques en couleurs indexées.Couleur claire du damierÉclaircir seulementLigneLigne -espacement :Épaisseur de ligne :_Style de ligne :Style de ligne utilisé pour la grille.LinéaireÉlément liéChargerCharger des courbesCharger les niveauxDétermine la couleur _droite d'aprèsCharger les réglages de courbes depuis le fichierCharger les réglages de niveaux depuis le fichierCharger le texte depuis le fichierChargement de l'aperçu...Emplacement :LogarithmiqueTirets longsRecherche des fichiers de donnéesDescendre le canalEnvoyer le canal au bas de la pileDescendre le canal au tout en _basDescendre le calqueEnvoyer le Calque tout en basDescendre le cheminEnvoyer le chemin en bas de la pileEnvoyer le chemin tout en _basDescendre le canalEnvoyer le canal tout en basDescendre le calqueDescendre le calque tout en basDescendre le cheminEnvoyer le chemin tout en bas_Loupe_Maître_Aller à l'écran..._CarteMagentaMagenta :LoupeRendre _transparentGérer les modules chargeablesVitesse de défilement des _pointillés :Opacité du masque :Masquer les régions _sélectionnéesMasquer les régions _non sélectionnéesMatrice :Profondeur max :Taille _maximale pour les fichiers de vignettes :Taille _maximale de la nouvelle image :Différence maximale de couleur_Mémoire maximale pour l'annulation :Moyenne :MesureMesure les distances et les anglesMesure les distances et les anglesMesurez la règle et saisissez sa longueur :Médiane :MoyenTirets moyens_Fusionner vers le basFusionner vers le basFusionner les calquesFusionner la paletteFusionner les calques visiblesFusionner les chemins visiblesFusionner les calques _visibles...Fusionner les calques _visibles...Fusionner les chemins _visiblesFusionner les calquesFusionner les palettesFusionner des vecteursProcédures de messageMessage répété %d fois.Message répété une fois.Les message sont redirigés vers stderr.Demi-teintesMigration des réglages de l'utilisateurNombre minimal de niveaux d'_annulation :DiversEn ongletModeMode :Modifier la couleur sélectionnéeModifier les niveaux de couleur de l'intervalle sélectionnéModifier toutes les couleursModifier l'espacement des lignesDossiers des modulesGestionnaire de modulesChemin des modulesModulesCurseurs de sourisRoulette de la sourisEvénements de la roulette de la sourisDéplacerDéplacer des ancresDéplacer le canalDéplacer la sélection flottanteDéplacer le guideDéplacer un guide :Déplacer le calqueDéplacer le masque de calqueDéplacer le cheminDéplacer la sélectionDéplacer le calque de texteOutil DéplacerDéplacer l'élémentDéplace les calques & sélectionsDéplacer la sélectionDéplacer le calque actifDéplacer le chemin actifDéplacer vers le bas le filtre sélectionnéDéplacer vers le haut le filtre sélectionnéAller à l'écran...Déplacement : Multiplier_Nombre de couleurs :Na_vigationFenêtre de na_vigationTaille de l'aperçu de _navigation :NomNom :NavigationNouveau canalNouveau canal de couleurOptions de nouveau canalNouvelle couleur depuis l'_APNouvelle couleur depuis le _PPNouvelle imageNouveau calqueNouveau cheminOptions du nouveau cheminNouveau modèleNouvelle brosseNouveau canalNouveau canal avec les dernières valeursNouveau canal...Nouvelle couleur depuis l'APNouvelle couleur depuis le PPNouveau dégradéNouvelle importationNouveau calqueNouveau calque avec les dernières valeursNouveau calque...Nouvelle paletteNouveau chemin avec les dernières valeursNouveau chemin...Nouveau motifNouveaux vecteursAucune brosse disponible pour être utilisée avec cet outil.Aucun filtre sélectionnéAucun dégradé linéaire trouvé dans « %s »Plus disponibleAucun chemin trouvé dans « %s »Aucun chemin trouvé dans le tamponAucun motif disponible pour cette opération.Aucune sélectionAucune sélection à tracer.Aucune vignetteNon alignéAucunAucune (plus rapide)NormalNormal (128x128)Points normauxFenêtre normaleLe fichier n'est pas un fichier ordinaire.Il n'y a pas assez de calques visibles pour une fusion. Il en faut au moins deux.Il n'y a pas assez de chemins visibles pour une fusion. Il en faut au moins deux.Nombre de _processeurs à utiliser :Nombre de lignes de grilleNombre de calques :_Autres...DécalageDécalage du canalDécalage du tracéDécalage du calqueDécalage du masque de calqueDécalage de x/_2, y/2Décalage :Sur le disqueSur les machines multiprocesseurs si Gimp a été compilé avec --enable-map, ce paramètre détermine combien de processeurs seront utilisés simultanément.Seulement en mémoire_Ouvrir comme un calque...OpacitéOpacité :OuvrirOuvrir une imageOuvrir une image comme un calqueOuvrir suivant l'emplacementOuvrir un fichier texte (UTF-8)Ouvrir suivant l'_emplacement :_Récemment ouvertsOuvrir le dialogue des imagesOuvrir le sélecteur de brosseOuvrir le sélecteur de policesOuvrir le sélecteur de dégradéOuvrir le dialogue du sélecteur de paletteOuvrir le sélecteur de motifEnlever l'entrée sélectionnéeL'ouverture de « %s » a échoué : - -%sL'ouverture de « %s » a échoué : %sOptions : -Origine X :Origine Y :Largeur d'origine :Autre (%s) ...ContourNiveaux de sortieSuperposerErreur d'appel PDN pour la procédure '%s' : -Erreur de type pour l'argument #%d (attendu %s, obtenu %s)Erreur d'appel PDB : -procédure '%s' non trouvée_MotifsPortez ce vieux whisky -au juge blond qui fume.PeindreOptions de peinture partagées entre les outilsProcédures d'outils de peintureOutil de peinture :Mode de _peinturePeint au pinceau, d'une façon un peu flouePeint avec des bords dursPeint avec des motifs ou des portions d'imagePinceauPal_ettesPaletteÉditeur de paletteMenu Éditeur de palettesDossiers des palettesInterface utilisateur de la Palette_Nom de la palette :_Fichier de palettesPalettesMenu PalettesProcédures sur les parasitesParasitesLecture de « %s » -CollerColler le tampon _dansColler le tampon en tant que _nouveauC_oller le cheminColler _dansColler en tant que _nouveauCopier le tampon sélectionnéColler le tampon sélectionné comme une nouvelle imageColler le tampon sélectionné dans la sélectionCalque CopiéCheminAttributs du cheminNom du chemin :Outil Che_minLe chemin ne peut pas être plus bas.Le chemin ne peut pas être plus haut.Le calque est déjà tout en bas.Le chemin est déjà tout en haut.Chemin vers séle_ctionChemin vers sélectionChemin vers sélection -%s Ajouter -%s Soustraire -%s IntersectionChemin vers sélectionCheminsMenu CheminsMotifDossiers des motifsMotifs (interface utilisateur)Remplissage avec le motifMotif sourceMotifsMenu Motifs_CrayonCrayonPourcentage de largeur de brossePourcentage :Dossier GIMP personnelPerspectiveInformation de Transformation PerspectivePerspective...Mode de piochage %sSélectionner un calque ou guideSélectionner un cheminPointez le point noirRécupère des couleurs dans l'imagePointez le point grisPointer seulementPointez le point blancDimensions en pixels :Valeurs des pixelsPixelsPixels :S'il vous plaît, soyez sûr que les fichiers de menu XML sont correctement installés.Veuillez attendre que votre dossier GIMP personnel soit créé...Veuillez patienter...GreffonEnvironnement du greffonDossiers des greffonsLe greffon n'a pas pu ouvrir l'imageLe greffon n'a pas pu enregistrer l'imageLe greffon a planté : « %s » -(%s) - -Le greffon a peut être corrompu l'état interne de GIMP. Vous devriez enregistrer vos images et redémarrer GIMP pour être sûr de sa stabilité.Le greffon a rapporté avoir terminé avec succès mais n'a pas renvoyé d'image.GreffonsGreffonLes greffons et extensions sont des programmes externes, lancés par GIMP, qui fournissent des fonctionnalitées additionnelles. Ces programmes sont interrogés lors du lancement de GIMP et des informations sur leurs fonctionnalités et dates de modifications sont stockées dans ce fichier pour des lancements ultérieurs plus rapides. Ce fichier est prévu pour n'être lu que par GIMP et ne devrait pas être édité.PolygonalPortraitPosition : %0.6fPositionnéPostériserPostériser (Réduire le nombre de couleurs)Niveaux de _postérisation :Postériser n'opère pas sur les calques en couleurs indexées.PréférencesPréserver la _luminositéSensibilité à la pressionPression :AperçuPrévisualisation périméeAperçu :AperçusTaille de l'impressionTaille de l'impression :Des problèmes sont apparus en interprétant le texte parasite du calque %s : -%s - -Quelques propriétes du texte sont peut être erronées. Tant que vous ne souhaitez pas éditer le texte, vous n'avez pas à vous en soucier.Base de données procéduraleBase de données procéduraleAvancementPseudo couleurBut :QualitéRequêteInterrogation des nouveaux greffonsInterrogation du greffon : « %s » -Chargement rapideMasque rapideÉditer les attributs du masque rapideMenu du masque rapideEnregistrement rapideMasque rapideQuitter GIMP ?RVBRVB (%0.3f, %0.3f, %0.3f)RVB (%d, %d, %d)Couleur RVBRVB-videRVBA (%0.3f, %0.3f, %0.3f, %0.3f)DàG_Réafficher « %s »Ré_initialiser les options des outilsRé_initialiser le canalRé_initialiser la couleurRé_initialiser l'intervalleCouleur de l'extrémité dro_ite...RadialRayon :Remonter le canalEnvoyer le canal au sommet de la pileRemonter le canal tout en _hautRemonter le calqueEnvoyer le calque tout en hautMonter le cheminEnvoyer le chemin en haut de la pileEnvoyer le chemin tout en _hautRemonter le canalEnvoyer le canal tout en hautRemonter le calqueMonter le calque tout en hautMonter le cheminEnvoyer le chemin tout en hautMettre les fenêtres de cette image au premier planRemonter l'image si elle est déjà ouverteTauxTaux :Réafficher le dernierRe_centrer les points médians dans la sélectionRe_centrer le point médian du segmentRedistribuer les _poignées dans le segmentRedistribuer les _poignées dans la sélectionRe_nommer les options enregistréesRé_péter « %s »_Revenir...Chargement de la palette « %s » : composante VERTE manquante à la ligne %d.Chargement de la palette « %s » : nombre de colonnes invalide à la ligne %d. Utilisation de la valeur par défaut.Chargement de la palette « %s » : composante BLEUE manquante à la ligne %d.Chargement de la palette « %s » : composante ROUGE manquante à la ligne %d.Lors du chargement de la palette « %s » : valeur RVB hors limite à la ligne %d.PrêtVraiment effacer les images de l'historique d'annulation ?Réaffecter le raccourci clavier causera sa suppression de « %s ».Regénérer l'a_perçuRegénérer l'aperçuSélection rectangulaireRougeRouge :RefaireRéduit l'image à un nombre fixé de couleursRéduit l'image à 2 couleurs en utilisant des seuilsRafraîchir les brossesRafraîchir les dégradésRafraîchir les palettesRafraîchir les motifsEnregistréRecharger le _thème actuelRecharger tous les _aperçusRecharger tous les aperçusSe souvenir d'une session à l'autre de l'outil, de la couleur, de la brosse et du motif courants.Image distanteSupprimer le canalSupprimer les e_ntrées incorrectesSupprimer la sélection flottanteSupprimer le guideSupprimer le calqueEnlever l'information parasite de l'imageEnlever un parasite de l'élémentSupprimer le cheminSupprimer l'_entréeSupprimer les entrées incorrectesSupprimer la sélection flottanteEnlever un parasiteEnlever l'entrée sélectionnéeEnlever le filtre sélectionné de la liste des filtres actifs.Échec de la suppression du raccourci clavier.Renommage du canalRenommer le calqueRenommer le cheminRenommer les options des outils enregistréesRenommer le calque de texteRenommer l'élémentTracerRéordonner le canalRéordonner le calqueRéordonner le cheminRépéter le dernierRépétition :Remplace la sélection couranteDupliquerDupliquer le segment de dégradéDupliquer la sélection du dégradéDupliquer le segmentDupliquer la sélectionRepositionner le canalRepositionner le calqueRepositionner les vecteursRecharger la liste des policesRéinitialiser les options des outilsRéinitialiser _toutes les options des outils...Réinitialiser tous les filtresRéinitialiser tous les filtres...Réinitialiser toutes les options des outilsRemettre le filtre sélectionné aux valeurs par défautRemettre aux valeurs par défautRéinitialiser l'ordre et la visibilité des outilsRedimensionnerRedimensionner le canalRedimensionner l'imageRedimensionner le calqueRedimensionner le cheminRedimensionner le calque de texteRedimensionner l'imageRedimensionner l'élémentRedimensionner la fenêtre après un _zoomRedimensionner la fenêtre après un changement de _taille d'imageRedimensionnement en cours...Changement de résolutionRésolution :Configuration des ressourcesConfiguration des ressourcesRestaurer les options depuis...Rétablir, à chaque démarrage, les raccourcis clavier enregistrés.Restreindre l'édition aux polygonesInverserRevenirFaire revenir « %s » à « %s » ?Revenir à l'image ?Le retour a échoué. Aucun nom de fichier associé à cette image.Le retour vers « %s » a échoué : - -%sCouleur de l'extrémité droiteJustifié à droiteRotationRotation 90 degrés sens _anti-horaireRotation 90 degrés sens _horaireRotation du canalRotation du calquePivoter le cheminRotation du calque de texteRotation _180 degrésRotation de l'imagePivote le calque ou la sélectionRotation en cours...Informations de RotationArrondi_CisaillementAfficher la g_rille_Réduire..._PointesÉchan_ger les couleursEnre_gistre la couleur droite versMoyenne du voisinageÉchantillonner sur tous les calquesSat. :SaturationEnregistrerEnregistrer « %s » au format POV-RayEnregistrer les courbesEnregistrer l'historique dans un fichierEnregistrer l'imageEnregistrer l'état des périphériques _maintenantEnregistrer _maintenant les raccourcisEnregistrer les niveauxEnregistrer les options des outilsEnregistrer _maintenant la position des fenêtresEnregistrer toutes les erreurs d_ans un fichier...Enregistrer la _sélection dans un fichier...Enregistrer _sous...Enregistrer une _copie...Enregistrer une copie de l'imageEnregistrer toutes les erreursEnregistrer en _POV-Ray...Enregistrer comme _modèle...Enregistrer à la fin de la session les raccourcis clavier modifiés.Enregistrer les courbes dans le fichierEnregistrer l'état du périphériqueEnregistrer le dégradé au format POV-RayEnregistrer les réglages de niveaux dans le fichierEnregistrer les options vers...Enregistrer la sélectionEnregistrer la sélection dans un canalEnregistrer mes modifications de l'image « %s » avant fermeture ?Enregistrer à la fin de la session les positions et tailles des fenêtres principales.Enregistrer dans un _canalOptions enregistréesEnregistrement de « %s » -L'enregistrement de « %s » a échoué : - -%sEnregistrer les imagesDents de scieImage vectorielle SVG (*.svg)Étirer ou rétrécirÉchelle et taille du canalÉchelle et taille de l'imageÉchelle et taille du calqueÉtirer ou rétrécir le cheminÉchelle et taille du calque de texteÉchelle et taille de l'imageÉchelle de l'élémentFacteur d'échelle X :Facteur d'échelle Y :Facteur d'échelle :Étire le calque ou la sélectionMise à l'échelleInformations d'étirement/rétrécissementChanger l'image à la taille demandée conduira à utiliser plus de mémoire que la « taille maximum de nouvelle image » dans le dialogue des préférences (actuellement %s).Changer l'image à la taille demandée va éliminer complètement certains calques.Mise à l'échelle...Ciseaux intelligentsÉcranDossiers des Script-FuScriptsDéfilement basDéfilement bas (Alt)Défilement bas (Ctrl + Alt)Défilement bas (Ctrl)Défilement bas (Maj + Alt)Défilement bas (Maj + Ctrl + Alt)Défilement bas (Maj + Ctrl)Défilement bas (Maj)Défilement gaucheDéfilement gauche (Alt)Défilement gauche (Ctrl + Alt)Défilement gauche (Ctrl)Défilement gauche (Maj + Alt)Défilement gauche (Maj + Ctrl + Alt)Défilement gauche (Maj + Ctrl)Défilement gauche (Maj)Défilement droitDéfilement droit (Alt)Défilement droit (Ctrl + Alt)Défilement droit (Ctrl)Défilement droit (Maj + Alt)Défilement droit (Maj + Ctrl + Alt)Défilement droit (Maj + Ctrl)Défilement droit (Maj)Défilement hautDéfilement haut (Alt)Défilement haut (Ctrl + Alt)Défilement haut (Ctrl)Défilement haut (Maj + Alt)Défilement haut (Maj + Ctrl + Alt)Défilement haut (Maj + Ctrl)Défilement haut (Maj)SélectionTout sélectionnerSélectionnez un dossier de brossesSélection par couleurSélectionnez une couleurSélectionner l'action du contrôleur d'événementSélectionnez un dossier d'environnementSélectionner le _type de fichier (%s)Sélectionner les dossiers des policesSélectionnez un dossier de dégradésSélectionnez un dossier de modulesNe rien sélectionnerSélectionnez un dossier de palettesSélectionnez un dossier de motifsSélectionnez un dossier de greffonsSélectionner la couleur primaire à modifierChoisir l'intervalle à modifierSélectionnez un dossier de Script-FuSélectionner la sourceSélectionnez un dossier d'échange (swap)Sélectionnez un dossier de thèmesSélectionner un thèmeSélectionnez un dossier de thèmesChoisir un facteur d'échelle :Sélectionner le calque du _basSélectionner une couleur _personnalisée...Sélectionner le calque _suivantSélectionner le calque _précédentSélectionner le calque du _hautTout sélectionnerSélection par couleurSélectionne des régions contiguësSélectionnez une couleur personnalisée pour remplir le canevasSélectionne des régions elliptiques ou circulairesSélectionne des régions à main levéeNe rien sélectionnerSélectionnez un fichier de palettesSélectionne des régions rectangulairesSélectionne des régions par couleurSélectionne des formes dans l'imageSélectionnez un répertoire d'échange (swap)Sélectionnez le nombre de fois -qu'il faut dupliquer le segment sélectionné.Sélectionnez le nombre de fois -qu'il faut dupliquer la sélection.Sélectionnez le nombre de parties uniformes -en quoi couper les segments dans la sélection.Sélectionnez le nombre de parties uniformes -en quoi couper le segment sélectionné.Sélectionne des régions transparentesSélectionner le navigateur webSélecti_on vers cheminSélectionÉditeur de sélectionMenu de l'éditeur de sélectionMasque de sélectionProcédures d'outils de sélectionMasque de sélectionSélection vers chemin (_avancée)Sélection vers cheminSélection : Sélection : AJOUTERSélection : INTERSECTERSélection : REMPLACERSélection : SOUSTRAIRESensibilitéChanger les couleurs de remplissage du canevasChangement de la couleur du canalChangement de l'opacité du canalDéfinir la palette de couleursChanger les couleurs de remplisage du canevasChanger la taille du canevasDéfinir la résolution d'impression de l'imageRendre l'élément exclusivement reliéRendre l'élément exclusivement visibleChanger la taille du calqueDéfinir le nom depuis le _texteRégler l'opacitéFixer la couleur d'arrière-planFixer la couleur de premier planRendre l'élément liéDéfinir le mode de calqueDéfinir l'opacité du calqueDéfinir la préservation de la transparenceFixe une limite supérieure à la mémoire utilisée par limage pour conserver les opérations de la pile d'annulations. En regard de ce réglage au moins autant de niveaux d'annulations que configurés pourront être annulésDéfini le navigateur utilisé par le système d'aide.Défini la couleur de remplissage utilisée pour le mode personnalisé.Fixe le navigateur web externe à utiliser. Ce peut être un chemin absolu, ou le nom d'un exécutable à rechercher dans le PATH de l'utilisateur. Si la commande comporte « '%s », il sera remplacé par l'URL, sinon l'URL sera attachée à la commande avec un espace entre les deux.Détermine le niveau d'interpolation utilisé pour les changements d'échelle et autres transformations.Détermine comment les zones transparentes sont représentées dans les images.Détermine le nombre minimal d'opérations qui pourront être annulées. Tant que la taille limite de la mémoire d'annulation n'est pas atteinte, les opérations supplémentaires sont conservées.Contrôle le type de curseur à utiliser.Détermine la résolution horizontale du moniteur en points par pouce. Si la valeur est 0, le serveur X est alors forcé d'interroger à la fois la résolution verticale et horizontale.Détermine la résolution verticale du moniteur en points par pouce. Si la valeur est 0, le serveur X est alors forcé d'interroger à la fois la résolution verticale et horizontale.Régler le format de pixel du curseur utilisé par Gimp.Détermine la taille par défaut des aperçus des calques et des canaux dans les dialogues récemments créés.Détermine la taille du damier utilisé pour représenter la transparence.Détermine la taille de la vignette de navigation accessible dans le coin inférieur droit de la fenêtre d'image.Défini la taille des aperçus dans l'historique d'annulation.Détermine la taille des vignettes affichées dans le dialogue d'ouverture des fichiers. Notez que Gimp ne peut pas enregistrer ces vignettes si les aperçus de calques sont désactivés.Détermine l'emplacement du fichier d'échange. Gimp utilise une méthode d'allocation mémoire par bloc. Le fichier d'échange est utilisé pour échanger rapidement ces blocs entre le disque et la mémoire. Vous devez être conscients que ce fichier peut devenir très gros si vous travaillez sur des images de grande taille. De plus, Gimp peut devenir horriblement lent si le fichier d'échange est créé dans un répertoire situé sur le réseau (NFS, Samba, etc.). Pour ces raisons il est parfois conseillé de mettre votre fichier d'échange dans « /tmp », par exemple.Indique l'emplacement du répertoire de stockage temporaire. Des fichiers y apparaîtront lors du fonctionnement de Gimp ; la plupart disparaîtront quand vous quitterez Gimp, mais il est probable que certains fichiers subsistent. Ainsi il est mieux que ce répertoire ne soit pas partagé avec d'autres utilisateurs.Contrôle le texte apparaissant dans la barre d'état des fenêtres d'image.Contrôle le texte apparaissant dans la barre de titre des fenêtres d'image.Indique si Gimp doit créer des vignettes pour les calques et les canaux. Ces dernières sont pratiques mais elle peuvent ralentir l'utilisation de Gimp lorsque vous travaillez sur des images de grande taille.Type d'ombreOmbresFormeForme:Suivant la forme (angulaire)Suivant la forme (excroissances)Suivant la forme (sphérique)Augmenter la nettetéAugmenter la netteté du canalAugmenter la netteté de la sélectionCisaillementAmpleur de cisaillement X :Ampleur de cisaillement Y :Cisaille le calque ou la sélectionInformations de cisaillementCisaillement...Tirets courtsRaccourci clavierLe raccourci clavier « %s » est déjà pris par « %s » du groupe « %s ».Afficher le masque de calqueAfficher les _règlesAfficher la barre d'é_tatAfficher les barres de _défilementAfficher les g_uidesAfficher les _bords du calqueAfficher la barre de _menuAfficher la _sélectionAfficher le contour de la _brosseAfficher la couleur de _premier et d'arrière-planAfficher les g_uidesAfficher les _bords du calqueAfficher la barre de _menuAfficher les _règlesAfficher les _brosses, motifs et dégradés actifsAfficher l'_image activeAfficher la g_rilleAfficher les boutons d'_aideAfficher la taille de l'imageAfficher les bords interactifsAfficher l'usage de la mémoireAfficher les a_ccélérateurs claviers (touches d'accès aux menus)Afficher le curseur de l'outil de _peintureAfficher la _sélectionAfficher la barre d'é_tatAfficher les barres de _défilementAfficher un conseil la prochaine foisAfficher les astuces au _démarrageAfficher les _bulles d'aideAfficher le pourcentage de zoomAfficher le facteur d'échelleRéduction du canalRéduire la sélectionAj_uster la fenêtre à l'imageRétrécir depuis le bord de l'imageRéduire la sélection deAjuster la fenêtre à la taille de l'imageTailleTaille en mémoire :_Taille des vignettes :Taille :Ignore « %s » : version de protocole GIMP erronéePetitAperçus plus petitsLisséeLisser les contoursBarbouillerBarbouiller l'imageAligner sur les _guidesAligner sur la gri_lleLumière douceContinuSourceEspacementEspacement :Points clairsemésFichier spécialContrôle l'apparence de la zone autour de l'image.Vitesse de défilement des pointillés qui délimitent la sélection ; valeur en millisecondes (une durée plus courte correspond à un défilement plus rapide).Vitesse :Sphérique (_décroissant)Sphérique (croissa_nt)Pointes :Spirale (sens anti-horaire)Spirale (sens hotaire)ÉclaterCouper le segment de dégradé uniformémentCouper les segments de dégradé uniformémentCouper le segment uniformémentCouper le segment _uniformément...Couper le segment en son point _médianCouper les segments uniformémentCouper les segments _uniformément...Couper les segments en leur _milieuCarré_État & TextePil_eStandardDémarrage des extensionsDémarrage de l'extension : « %s » -État :Couleur statiqueGris statiqueÉtat & descÉtat & texteDev Std :PointillésStock ID_Tracer le cheminTra_cer le chemin...Tracer le canalTracer le cheminTracer la sélectionLigne de tracéTracer le cheminTracer le chemin avec les dernières valeursTracer le chemin...Tracer la sélection avec les dernières valeursTracer la sélection...Tracer en utilisant un outil de peintureStyle de biseau autour du texte de la barre d'étatSoustractionSoustraire de la sélection couranteSuréchantillonnageDossier d'échange (swap) :_Outils_TexteOutil Te_xteRépertoire temporaire :ModèlesMenu ModèlesProcédure temporaireInterruption du greffon : « %s » -TexteCouleur du texteÉditeur de texteCalque de texteTexte modifiéProcédures TexteGIMPLe greffon du navigateur d'aide de Gimp semble manquer à votre installation.La brosse active. -Cliquez pour ouvrir la boîte de dialogue des brosses.Le dégradé actif. -Cliquez pour ouvrir la boîte de dialogue des dégradés.L'image active. -Cliquez pour ouvrir la boîte de dialogue des images.Le motif actif. -Cliquez pour ouvrir la boîte de dialogue des motifs.La couleur de l'arrière-plan de la grille ; utilisée seulement pour le style de lignes en doubles tirets.L'interpréteur batch « %s » n'est pas disponible, le mode batch est désactivé.L'encodage du fichier configuré ne peut être converti en UTF-8 : %s - -Vérifiez, s'il vous plaît, la valeur de la variable d'environnement G_FILENAME_ENCODING.Le nom de fichier « %s » ne peut pas être converti en URI valide : - -%sLa couleur du premier plan de la grille.Le fichier gimprc est utilisé pour stocker les préférences personnelles telles que les comportements par défaut. Les chemins pour rechercher les brosses, palettes, dégradés, motifs, greffons et modules sont également configurés ici.La résolution horizontale de l'imageLe calque que vous avez sélectionné est un calque de texte mais il a été modifié en utilisant d'autres outils. L'édition du calque avec l'outil texte supprimera ces modifications. - -Vous pouvez éditer le calque ou créer un nouveau calque de texte depuis ses attributs de texte.Le nom du répertoire contenant la configuration utilisateur de GIMP ne peut être converti en UTF-8 : %s - -Très probablement votre système de fichiers stocke les fichiers avec un encodage différent d'UTF-8 et vous ne l'avez pas déclaré auprès de GLib. S'il vous plaît, réglez la valeur de la variable d'environnement G_FILENAME_ENCODING.Le fichier sessionrc est utilisé pour stocker la position des fenêtres de dialogue au moment de quitter GIMP. Vous pouvez configurer GIMP pour qu'il relance au démarrage ces dialogues à leur position enregistrée.La vignette dans le dialogue d'ouverture des fichiers sera automatiquement mise à jour si le fichier en question est plus petit que la taille indiquée ici.Le tampon d'image est utilisé afin que GIMP ne perde aucune partie entre la mémoire et le disque dur. Augmenter cette valeur demandera à  GIMP d'utiliser moins d'espace tampon, et d'utiliser plus de mémoire. Inversement, une petite taille de cache demandera à  GIMP d'utiliser plus d'espace tampon et moins de mémoire.L'unité utilisée pour l'affichage des coordonnées sauf en mode point pour point.Le fichier unitrc est utilisé pour stocker les unités de mesure personnelles. Vous pouvez définir des unités supplémentaires et les utiliser comme les unités intégrées (pouces, millimètres, points, picas). Ce fichier est réécrit chaque fois que vous quittez GIMP.La résolution verticale de l'imageLa recommandation envoyée pour les fenêtres attachables. Cela peut affecter la façon dont votre gestionnaire de fenêtres décore et manipule les fenêtres attachables.La recommandation envoyée pour la boîte d'outils. Ceci peut affecter la façon dont votre gestionnaire de fenêtres décore et manipule la fenêtre de la boîte d'outils.ThèmeDossiers des thèmesThèmesIl y a %d images avec des modifications non enregistrées :Il n'y a pas assez de calques visibles pour une fusion vers le bas.Un compromis entre la quantité de mémoire utilisée et la vitesse est toujours nécessaire. Dans la plupart des cas Gimp choisit la vitesse au détriment de la mémoire. Si la mémoire devient un réel problème, essayez d'activer cette option.Il n'y a pas de calque ou de canal actif depuis lequel copier.Il n'y a pas de calque ou de canal actif depuis lequel couper.Il n'y a pas de calque ou de canal actif sur lequel tracerIl n'y a pas de calque ou de canal actif sur lequel tracerIl y a une image avec des modifications non enregistrées :Il devrait y avoir un fichier nommé « %s ». Vérifiez votre installation.Il y a eu une erreur d'interprétation de votre fichier « %s ». Les valeurs par défaut seront utilisées. Une sauvegarde de votre configuration a été créée à « %s ».Ce fichier contient un ensemble de taille de média standards qui servent de modèles d'image.Il s'agit d'un dossier utilisé pour rechercher des -modèles d'images.Il s'agit d'un dossier utilisé pour rechercher des -thèmes installés par l'utilisateur.Il s'agit d'un dossier utilisé pour stocker vos polices personnelles. GIMP regarde dans ce dossier en plus du dossier global de polices commun à tous les utilisateurs lorsqu'il recherche des polices. Utilisez ceci si vous voulez avoir des polices uniquement pour Gimp, autrement mettez-les dans votre dossier global.Il s'agit d'un dossier utilisé pour stocker des fichiers de paramètres pour l'outil Courbes.Il s'agit d'un dossier utilisé pour stocker des fichiers de paramètres pour l'outil Niveaux.Il s'agit d'un dossier utilisé pour stocker les -options des outils.Il s'agit d'un dossier utilisé pour stocker vos scripts-fu personnels. GIMP regarde dans ce dossier en plus du dossier global de scripts commun à tous les utilisateurs lorsqu'il recherche des scripts-fu.Il s'agit d'un dossier utilisé pour stocker vos modules DLL temporaires ou non supportés par le système. GIMP regarde dans ce dossier en plus du dossierglobal commun à tous les utilisateurs lorsqu'il recherche des modules durant l'initialisation.Il s'agit d'un dossier utilisé pour stocker vos additions temporaires ou non supportés par le système à l'environnement des greffons. GIMP regarde dans ce dossier en plus du dossier global commun à tous les utilisateurs lorsqu'il recherche des modifications à l'environnement des greffons.Il s'agit d'un dossier utilisé pour stocker vos greffons temporaires ou non supportés par le système. GIMP regarde dans ce dossier en plus du dossier global commun à tous les utilisateurs lorsqu'il recherche des greffons.Il s'agit d'un dossier utilisé pour stocker vos brosses personnelles. GIMP regarde dans ce dossier en plus du dossier global de brosses commun à tous les utilisateurs lorsqu'il recherche des brosses.Il s'agit d'un dossier utilisé pour stocker vos dégradés personnels. GIMP regarde dans ce dossier en plus du dossier global de dégradés commun à tous les utilisateurs lorsqu'il recherche des dégradés.Il s'agit d'un dossier utilisé pour stocker vos palettes personnelles. GIMP regarde dans ce dossier en plus du dossier global de palettes commun à tousles utilisateurs lorsqu'il recherche des palettes.Il s'agit d'un dossier utilisé pour stocker vos motifs personnels. GIMP regarde dans ce dossier en plus du dossier global de motifs commun à tous les utilisateurs lorsqu'il recherche des motifs.Il s'agit d'un dossier utilisé pour stocker temporairement des informations d'annulation, afin de réduire la place mémoire utilisée. Si GIMP est tué brutalement des fichiers de la forme : gimp<#>.<#> peuvent rester dans ce dossier. Ces fichiers sont inutiles lors des utilisations ultérieures de GIMP et peuvent être détruits sans préjudice entre deux utilisations.Ce sous-dossier contiendra un certain nombre de fichiers importants. Cliquez sur un des fichiers ou sous-dossier de l'arborescence pour obtenir plus d'information sur l'élément sélectionné.C'est la distance d'activation en pixels de l'alignement sur un guide ou la grille.Ce programme est diffusé dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE ; sans même une garantie implicite de COMMERCIALISATION ou d'ADÉQUATION À UN USAGE PARTICULIER. Voyez la Licence Publique Générale GNU pour plus de détails.Ce logiciel est un logiciel libre ; vous pouvez le diffuser et/ou le modifier suivant les termes de la Licence Publique Générale GNU telle que publiée par la Free Software Foundation ; soit la version 2 de cette licence, soit (à votre convenance) une version ultérieure.Cette entrée de texte est limitée à %d caractères.Cet outil n'a pas d'option.Cette fenêtre a %d onglets d'ouverts. Fermer cette fenêtre causera la fermeture de tous les onglets.SeuilLes seuils ne sont pas appliquables sur les calques en couleurs indexées.Seuil :Vignette %d sur %dTaille du _cache d'image :Taille du cache d'image :Inclinaison :MinusculeTitre et État_Vers cheminPour éditer un nouvel accélérateur, cliquez sur la rangée correspondante et tapez un nouvel accélérateur ou appuyez sur la barre espace pour l'effacer._Jouets(Dés)activer le masque rapide(Dés)_activer le masque rapideTrop de messages d'erreur !Options des outilsMenu Options des outilsModuler l'outil %sOptions des ou_tilsIcône de l'outilIcône de l'outil avec une croix_Boîte à outilsBoîte à outilsMenu Boîte à outilsOutilsMenu de la boîte à outilsDes outils comme la sélection floue et le remplissage utilisent un algorithme de recherche dit « à germe ». Le remplissage se fait à partir du pixel initial et progresse dans toutes les directions jusqu'à ce que la différence de couleur avec le pixel initial dépasse un seuil déterminé. Cette option représente la valeur par défaut de ce seuil._TransparenceTransfert de l'alpha vers le masqueTransformerTransformation du canalDirection de transformationTransformation du calqueTransformer le cheminTransformation du calque de texteProcédures d'outils de transformationTransformer le calqueTransformer le cheminTransformer la sélectionTransformationProcédures de transformationTransformation...Traduit parTransparenceT_ype de transparence :Onde triangulaire« Vrai couleur »TypeType %sTapez un nouvel accélérateurTapez un nouvel accélérateur ou appuyer sur Retour pour effacerImpossible d'ajouter un masque au -calque car il en a déjà un.Impossible de copier ou coller car la région sélectionnée est vide.Impossible d'ouvrir un fichier d'échanges de test. Pour éviter de perdre des données, veillez vérifier l'emplacement et les permissions du répertoire d'échanges défini dans vos préférences (actuellement « %s »).Impossible d'ouvrir le fichier de swap. Gimp n'a plus de mémoire disponible et ne peut utiliser le fichier de swap. Certaines parties de votre image peuvent être corrompues. Essayez d'enregistrer votre travail en utilsant plusieurs noms de fichiers différents, redémarrez Gimp et vérifiez l'emplacement de votre répertoire de swap dans les Préférences.Impossible de faire le rappel de %s. Le greffon correspondant a peut-être échoué.Non définieAnnulerHistorique d'annulation_Historique d'annulationUnitésInconnuType de fichier inconnuType de fichier de palette inconnu: -%sDéchargerSans nomSans titreUtiliser « _Point pour point » par défautUtiliser les raccourcis clavier _dynamiquesUtiliser un navigateur _web à la placeUtiliser tous les calques visibles pour réduire la sélectionUtiliser la palette noir & blanc (1-bit)Couleur à partir du dégradéUtiliser une palette personnaliséeUtiliser la fenêtre d'informationsUtiliser une palette optimisée pour le webHistorique de l'installation personnelleInterface utilisateurFenêtre utilitaireValeurValeur :Mode de vecteurs Version %s présentée parVersion :VerticalDécalage vertical de la première ligne de la grille ; ça peut être un nombre négatifEspacement vertical des lignes de la grilleTrès grandTrès petitAffichageVoir comme une _grilleVoir comme une _listeVoir en tant que grilleVoir en tant que listeClasse du visuel :Profondeur du visuel :Avertissement : le chargement des données a échoué : - -%sAvertissement : l'enregistrement des données a échoué : - -%sNavigateur webNavigateur webBienvenue dans -l'installation personnelle de GIMP %d.%dSi cette option est activée, le dialogue suit automatiquement l'image sur laquelle vous travaillez.Si cette option est activée, Gimp utilisera les accélérateurs claviers dans les menus.Si cette option est activée, tous les outils de dessin montreront un aperçu des contours de la brosse courante.Si cette option est activée, une image deviendra l'image active quand sa fenêtre recevra le focus. C'est pratique pour les gestionnaires de fenêtre utilisant une « sélection par clic ».Si cette option est activée, les dialogues afficheront un bouton d'aide qui vous permettra d'accéder à la page d'aide idoine. Sans ce bouton, la page d'aide peut toujours être accédée par la touche F1.Si cette option est activée, les menus peuvent se détacher.Si cette option est activée, l'appui sur la touche F1 ouvrira le navigateur d'aide.Si cette option est activée, Gimp n'enregistrera l'image que si elle a été modifiée depuis son ouverture.Si cette option est activée, Gimp utilisera une fenêtre d'information différente pour chaque vue d'image.Si cette option est activée, Gimp interrogera le serveur X sur la position de la souris à chaque évènement de déplacement, plutôt que se fier à l'indice approximatif de position. Dessiner avec une grande brosse devrait alors être plus précis, mais potentiellement plus lent. Paradoxalement, sur certains serveurs X, activer cette option a comme résultat un dessin plus rapide.Si cette option est activée, le curseur sera affiché par dessus l'image quand vous utilisez un outil de peinture.Si cette option est activée, la grille sera visible par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher la grille ».Si cette option est activée, les guides seront visibles par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher les guides ».Si cette option est activée, la fenêtre d'image se redimensionnera automatiquement lorsque vous ferez un zoom avant ou arrière.Si cette option est activée, la fenêtre d'image se redimensionnera automatiquement lorsque la taille de l'image changera.Si cette option est activée, le contour du calque sera visible par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher les bords du calque ».Si cette option est activé, la barre de menus sera visible par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher la barre de menus ».Si cette option est activée, par défaut, les règles seront visibles. L'affichage de ces dernières peut aussi être contrôlé via le menu « Affichage/Afficher les règles ».Si cette option est activée, les barres de défilement seront visibles par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher les barres de défilement ».Si cette option est activée, la brosse sélectionnée sera utilisée pour tous les outilsSi cette option est activée, le dégradé sélectionné sera utilisé pour tous les outilsSi cette option est activée, le motif sélectionné sera utilisé pour tous les outilsSi cette option est activée, la sélection sera visible par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher la sélection ».Si cette option est activée, la barre d'état sera visible par défaut. Cela peut aussi être activé ou désactivé via le menu « Affichage/Afficher la barre d'état ».Si cette option est activée, chaque pixel d'une image correspondra à un pixel de l'écran.Si cette option est activée, les images seront intégralement visibles à leur ouverture, sinon elles seront affichées à l'échelle 1:1.Si cette option est activée, vous pouvez changer à la volée les raccourcis clavier des éléments des menu en appuyant sur une combinaison de touches tandis que l'élément de menu est surligné.BlancLa balance des couleurs fonctionne seulement sur des calques RVB.LargeurLargeur :Gestion des fenêtresEnvois au gestionnaire des fenêtresEmplacements des fenêtresÉcriture de « %s » -XErreur XCF : Version %d non supportée du format XCF rencontréeAvertissement XCF : la version 0 du format de -fichier XCF n'enregistrait pas correctement -les palettes de couleurs. Une palette en niveaux -de gris a été utilisée en remplacement.YJauneJaune :Vous essayez de créer une image avec une taille de %sVous pouvez déposer ici des dialogues attachables.Vous devriez avoir reçu une copie de la Licence Publique Générale GNU avec ce programme ; sinon, veuillez écrire à la Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, États-Unis.Vous devez relancer GIMP pour que ces changements prennent effet.Votre installation GIMP est incomplète.Vos périphériques d'entrée seront réinitialisés aux valeurs par défaut la prochaine fois que vous démarrerez Gimp.Vos raccourcis clavier seront réinitialisés aux valeurs par défaut la prochaine fois que vous démarrerez Gimp.Vos réglages des fenêtres seront réinitialisés aux valeurs par défaut la prochaine fois que vous démarrerez Gimp.Comportement du Zoom et du RedimensionnementZoom 1:1Zoom ajusté à la fenêtreZoom avantZoom arrièreFacteur d'échelle :Facteur d'échelle :Zoom _ajusté à la fenêtreZoom a_vantZoom a_rrièreZoom ajusté à la fenêtreFacteur d'échelle : %d:1Zoom l'image quand la fenêtre change de tailleZoom avantZoom avant & arrièreZoom arrièreZoom :[ image de base ]À _propos_AcquisitionA_jouter la couleur depuis l'APA_jouter la couleur depuis le PPA_jouter un ongletA_jouter à la sélectionOptions _avancées_Aérographe_Tout_Ancrer le calque_Anti-crénelageRotation ar_bitraire..._Artistique_Aspect_Auto_BCouleur d'_AP_Arrière-plan :_Noir (transparence totale)Type de _mélange pour le segmentType de _mélange pour la sélection_Flou_Luminosité :_Brosse_Brosses_Brosses, motifs & dégradés_Remplissage_TamponPar _couleurSélection par _couleur_CStyle de _coiffe :Ca_nauxEffa_cer les erreurs_Vider l'historique d'annulation_Cloner_Fermer_Fermer l'ongletN_uagesOutils de _couleursCoule_urs_Configurer la couleur et l'opacité... _ContexteAide _contextuelle_Copier_Copier (nommé)_Créer une image à partir d'un modèle..._Découper & Redimensionner_Découper l'image_Incurvé_Courbes...Couleur _sombre du damierCouleurs par _défaut_Supprimer la brosse_Supprimer le tampon_Effacer le canal_Effacer la couleurSupprimer le _dégradé..._Supprimer l'image_Supprimer le calque_Supprimer la palette_Effacer le chemin_Supprimer le motif..._Supprimer les options enregistrées_Effacer le segment_Effacer sélection_Supprimer le modèle_Désaturer_Détacher l'ongletÉtat du _périphérique_Dialogues_Abandonner les modifications_Éliminer le texte d'Information_Distorsions_Point pour point_Dupliquer_ÉditionÉdi_ter la brosse..._Éditer les attributs du canal...Édit_er la couleur...Édit_er le dégradé...Édit_er les attributs du calque...Édit_er la palette...Édit_er les attributs du chemin..._Éditer le motif...Édit_er le modèle...Sélection _elliptique_Activer les aperçus de calque & canal_Énorme_Égaliser_GommeCouleur de _PP_Fichier_Remplir avec :A_juster l'image dans la fenêtreA_platir l'image_Retourner_Retourner le segment_Retourner la sélection_Flottante_Police_Polices_Premier plan :Sélection à _main levée_V_Générique_Gigantesque_Dégradé_DégradésNiveaux de _grisCopie du calque en niveaux de _grisA_grandir..._Guides_Dureté_Aide_Horizontale :_Teinte :_Immense_Icône_Icône :_Image_Images_Importer_Importer la palette...Couleurs _indexéesFenêtre d'_informations_Intersection avec la sélection_InverserStyle de _jointure :_Grande_Calque_Calques_Calques, canaux & cheminsExtrémité _gaucheExtrémité droite du voisin _gauche_Niveaux...Couleur _claire du damierEffets de _lumière_Luminosité :_Style de ligne_Linéaire_ReliéDétermine la cou_leur gauche d'après_Descendre le canal_Descendre le calque_Descendre le chemin_M_Manuellement_Carte_MasqueMasque vers Séle_ctionNombre _maximal de couleurs :_Mesure_Moyen_Fusionner les palettes..._Fusionne les chemins importés_Migration des réglages utilisateurs Gimp 2.0_Divers_Ratio pointe/ligne :_ModeGestionnaire de _modules_Déplacer_Nom :_Nature_Nouvelle brosse_Nouveau canal_Nouveau canal.../_Nouvelle entrée..._Nouveau dégradé_Nouveau calque_Nouveau calque..._Nouvelle palette_Nouveau chemin_Nouveau chemin..._Nouveau motif_Nouveau modèle..._Nouvelle vue_Nouveau...Conseil _suivant_Bruit_Aucune_Décalage..._Opacité_Ouvrir une image_Ouvrir...Couleur de _remplissageOutil de _peinture_Pinceau_PaletteCo_llerC_oller le tamponC_oller en nommant...C_hemins_Motif_Perspective_Postériser..._PréférencesA_perçuTaille de l'aperç_uConseil _précédentTaille de l'im_pression..._PropriétésMas_que rapide actif_Quitter_R_RVB_Rayon_Remonter le canal_Remonter le calque_Remonter le chemin_Remonter les vues_Remonter ou ouvrir une image_Réaffectation du raccourci clavierSélection _rectangulaire_Refaire_Refaire %s_Rafraîchir les brosses_Rafraîchir les dégradés_Rafraîchir les palettes_Rafraîchir les motifs_Enlever les couleurs non utilisées de la palette finale_Rendu_Remplacer_Dupliquer le segment_Dupliquer la sélection_Recharger la liste des polices_Réinitialiser l'ordre et la visibilité_Restaurer l'état enregistré des périphériques aux valeurs par défaut_Restaurer les raccourcis clavier enregistrés aux valeurs par défaut_Restaurer les positions enregistrées aux valeurs par défaut_Restaurer les options depuisExtrémité _droiteExtrémité gauche du voisin de _droite_Rotation_Saturation :_EnregistrerEnregi_stre la couleur gauche vers_Enregistrer les options vers_Enregistrer l'état des périphériques en quittant_Enregistrer à la sortie les raccourcis clavier_Enregistrer à la sortie la position des fenêtres_Étirer/rétrécir_Échelle et taille de l'image..._Échelle et taille du calque..._Changer la taille des chemins importés pour les ajuster à l'image_Sélection_SélectionÉditeur de _sélectionOutils de _sélection_FormeEnlever l'a_doucissementAfficher l'image _sélectionnée_Afficher dans la boîte à outils_Sinusoïdal_Petit_BarbouillerDistance d'_alignement :_Tracer la sélection_Tracer la sélection...S_oustraire de la sélection_Style d'onglet_Modèles :_Modèles_Texte_Seuil..._Minuscule_Conseil du jour_Outil_Outils_Transfert du canal alpha du calque_TransformerOutils de _transformationA_nnulerA_nnuler %s_Verticale :_Affichage_Visible_Web_Navigateur web à utiliser :_Blanc (opacité complète)Balance des _blancs_Largeur :_Recouvrir autourRésolution _X :_X :E_xts_JRésolution _Y :_Y :_Zoom_Zoom (%s)couleurscopierppp« oui » ou « non » attendus pour l'expression booléenne %s, « %s » reçuerreur fatale d'interprétationniveaux de grisniveau-de-gris-videpoucepoucesindexéeindexé-videChaîne de caractères UTF-8 non valide.Valeur « %ld » non valide pour le type d'icôneValeur « %ld » non valide pour l'expression %sValeur « %s » non valide pour le type d'icôneValeur « %s » non valide pour l'expression %smillimètremillimètresminuten/dpourcentpicapicaspixelpixelspixels/%apixels/%spointpointssecondetips-locale:frChristophe Merlet (RedFox) -Raymond Ostertag -Vincent Renardias -David Monniaux -Daniel Egger -Thomas MorinLa valeur de l'expression %s n'est pas une chaîne de caractère UTF-8 valideen interprétant l'expression « %s » : %s \ No newline at end of file diff -uraN gimp-2.2.8/po/ga.gmo gimp-2.2.9/po/ga.gmo --- gimp-2.2.8/po/ga.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/ga.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,62 +0,0 @@ -Þ•Ûô%Ì `a&w -ž -©´¼ÃÊ ÏÛ ê ö  -%<CINTY^cjr{„ Š˜ §´» -ÄÏÓÙ ë ÷  (7= B P\el‰¦ÂÜãò #( /< -BMd iv ‡”š¢ «µºÀÇËåì -ôÿ -# -) -4? F R ^lsy‰– §­´¹¿ Ä ÑÛ â î ø 0 ISbhw}„“œ ¬ ¸ÂËÏ à!ê  )6ELQ -fqƒ –£ -» ÆÓ çóû $+29 ->I N [hn}Œ‘šŸ§¹ÁÊÐ×àéïõ ü -"*3;DJPSZ] ` jw~ˆ‘”š£© -²½ÁÄ -ÈÓÚß ã í\ûX(p -™ ¤® ·ÁÈÍ ßìü $+>DKP Vbinw ˆ”®ÄÓ Ù ãðöý - 6B Xfy‚ˆ — ¥ ±»Ó$í ,:P fs …“ š¤¾ÍÓå êø   % / > G M R X \ v | ƒ  “   © ± ¸ ¿ Ì Ù ã ó ý !!!!0! 7! C!O!U!\!b!h!n! r!~!‡! ! -™! -¤!¯!¸!½!Ï!ã! -ý! """ 1" ;"I" ^" h" t"€"†"Œ"’"£"!¬"Î"Ô"Û"â"ò"# -# #)#D##U#y#•#¥#Á# Ô#%â#$ -$ -"$-$K$R$W$]$d$j$s$ z$†$$ ¨$ ¶$À$É$Ú$ á$ë$ -ò$ý$% %+%1%8% @%J%O% X%b%u%z%€%‘%¢%±%Ç% Û%å%ë%î%ö%ù%ü% &&&&%&9& <&I&Y& -a& l&x&|&&ƒ&’&›&¡& ¥&¯&ÓXÚ-”%g‘?dœÐaÕ«¡oe²0h.³UÎQxŒ“\ÖHG ×SÏ8¥9c­jÃ=‰®Ÿ¾n•u€DI§Ò’1š–Ç*>&JŠ¬›Ì(K$CRË+†—{r/…ÊÆY¨;qÍ ÂW:º¼l¿]<ÉN!Ô5˜T°ÄZ2k "f‡Bv´F¢^ˆ L~MtÁsb·m¸iÑ6ƒ‚@)„AÅ7¤½',EªŽOÙ±µp4# -©Vž£À3™Øw ¯}È_Pyz ¦`|[¹Û¶»‹ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - -%g x %g %s%s Message%s copy(None)(none)<%s><>About The GIMPAdd ChannelAdd LayerAlphaAlpha:Author:AutoBackgroundBackground: %d, %d, %dBlack:BlendBlueBlue:BlurBurnCMYKCancelChannelChannel:ChannelsClearClear ChannelClose this TabColor PickerColor:ConstantCopyright:CutDate:Delete this imageDescriptionDevice StatusDevicesDocument HistoryDocumentsDocuments MenuDodgeEditEmpty ChannelEmpty LayerEnormousEraserError while reading '%s': %sError while writing '%s': %sError writing file '%s': -%sError writing to '%s': %sErrorsFG to BG (HSV)FG to BG (RGB)FG/BGFG/BG ColorFill with WhiteFlipFolderFont FoldersFontsForegroundForeground: %d, %d, %dGIMPGIMP StartupGIMP Text EditorGIMP versionGammaGeneralGiganticGradient:GrayGreenGreen:HSVHSV (%0.3f, %0.3f, %0.3f)HeightHeight:HighlightsHistoryHorizontalHugeI_mageIconImageImage MenuImage SizeImagesImages MenuIncrementalInvalid UTF-8InvertLargeLarge (256x256)LayerLayersLevelsLocation:Mean:MediumModeMode:MoveMove ChannelMove PathMove: New ChannelNew ImageNew LayerNew PathNoneNone (Fastest)Normal (128x128)Opening '%s' failed: - -%sOptions: -Other (%s) ...PaintPalette EditorPastePencilPlease wait...PortraitPosition: %0.6fPreferencesPressure:ProgressRGBRGB (%d, %d, %d)RGB ColorRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RedRed:RedoRemove ChannelRemove LayerRename ChannelRotateSaveSave '%s' as POV-RaySave ImageSave Tool OptionsSave options to...Saving '%s' -Saving '%s' failed: - -%sSelect AllSelect ColorSelect Font FoldersSelect NoneShadowsSharpenShow _MenubarSize:SmallSmudgeSourceSpeed:SquareTextText ColorTinyTool OptionsToolbox MenuToolsTransformationTranslation byTypeType %sUndoUnknownUnknown file typeUnnamedUntitledValueValue:Version:VerticalWhiteWidthWidth:Writing '%s' -YellowYellow:Zoom 1:1Zoom InZoom OutZoom inZoom outZoom:_Auto_B_Brush_C_G_Gradient_Horizontal:_Icon:_M_Name:_Preview_R_Redo_Redo %s_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpipixels/%stips-locale:CProject-Id-Version: gimp HEAD -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-03-21 18:59+0100 -Last-Translator: Alastair McKinstry -Language-Team: Irish -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Rogha neabhailí "%s" - -Úsáid: %s [rogha ...] [comhad ... ] - -%g x %g %sScéal %s%s cóip(Ar bith)(tada)<%s><>Faoi an GIMPSUimigh BealachSuimigh SraithAlphaAlpha:Údar:UathCúlraCúlra: %d, %d, %dDubh:CumascGormGorm:DoiléirighDóighCMYKCealaighBealachBealach:BealachannaBánaighBánaigh BealachDún an Cluaisín seoRoghnóir DathDath:SeasmhachCóipcheart:GearrDáta:Dealaigh an íomha seoTuarascailStádas na GaireasannaGaireasannaStair na CapéiseannaCaipéiseannaClár CapéiseannaSeachainEagarBealach FolamhSraith FolamhábhalmhórScriosánTeip ar leámh '%s': %sTeip ar scríobh '%s': %sEarraidh ag scríobh comhad '%s': -%sTeip ar scríobh '%s': %sEarraidheannaDulra do Cúlra (HSV)Dulra do Cúlra (RGB)Dulra/CúlraDath Dulra/CúlraLíon le BánSmeachFillteánFillteáin ClófhoireannaClófhoireannaDulraDulra: %d, %d, %dGIMPSocraigh GIMPEagarthóir theacs do GIMPLeagan GIMPGammaGineréalan ábhalmhórGradán:LiathGlasGlas:HSVHSV (%0.3f, %0.3f, %0.3f)AirdeAirde:AibhsitheStairCothromanachOllmhór_ÃomhaDealbhÃomhaClár íomhaMéid ÃomhaÃomhannaClár ÃomhannaIncrimintUTF-8 neabhbhailíAisiompaighMórMór (256x256)SraithSraitheannaLeibhéalíÃit:Meán:MeánMódhModh:BogBog BealachBog SlíBog: Bealach NuaÃomha NuaSraith NuaSlí NuaTadaTada (go tapaigh)Normálta (128x128)Teip ag Oscailt '%s': - -%sRoghanna: -Eile (%s) ...PéintEagarthóir PaléidGreamaighPeann LuaidheFán, le do thoil...PortráidÃit: %0.6fRoghnachaisBrú:ForasDGlGoRGB (%d, %d, %d)Dath RGBRGBA (%0.3f, %0.3f, %0.3f, %0.3f)DeargDearg:LeasúScríos BealachScríos SraithAthainmigh BealachCuir ThartSábháilSábháil '%s' mar POV-RaySábháil ÃomhaSábháil Roghnachais na hÚrlísíSábháil roghnachais do...Sábháil '%s' -Teip ag Sábháil '%s': - -%sRoghnaigh gach rudRognaigh DathRoghnaigh Fillteain na ClófhoireannaRoghnaigh TadaScáthannaFaobhraighTaispeán _Barra na ClárannaMéid:BeagSmearFoinseLuas:CearnógTéascDath TheacsBídeachRoghnachais na hUirlisíClár UirlísUirlísíAthchumaAistriúchán leSaghasSaghas %sLeasúGan AithneSaghas comhad gan aithneGan AinmGan TeidealLuachLuach:Leagan:IngearachBánLeitheidLeitheid: Ag scríobh '%s' -BuíBuí:Formhéadach 1:1Súmáil IsteachSúmáil AmacgFormhéadaigh IsteachFormhéadaigh AmachSúmáil:_Uath_B/_Scuab_C_G_Gradán_Cothromach:_Dealbh:_M_Ainm:_Reámhtaispeántas_R_Athdheanamh_Athdheanamh %s_Leasú_Leasú %s_Ingearach:_X:_Y_Y:_Súmáil (%s)dathannacóipdpipicsil/%stips-locale:ga \ No newline at end of file diff -uraN gimp-2.2.8/po/gl.gmo gimp-2.2.9/po/gl.gmo --- gimp-2.2.8/po/gl.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/gl.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,106 +0,0 @@ -Þ•œ !&‘!G¸!9"N:"@‰"2Ê"Pý"ON#9ž#-Ø#9$;@$7|$´$Ã$Ë$0Ó$% % %&%5%9%O%X%w%Œ% %´% -Î%Ù%â%& -&&&!& (& -5&@&H&M& -_&j&q&w&"& ¢&®&³&¹&¾&Ï& ã&ð&ù& ' '' /'=' D'N'V'_'.e'5”'Ê'â'ó'ù' ÿ' ( #(0(C(L(T( -]( -h(s(z( ((§(®(½(Ä( Ë(Õ(Ú(à( ð( -þ( ))) ')1)A) G)S)g)l)„)š)¯)¿)Î) ë)#÷)*"* 8* -B*M*\*k*}** Ÿ*­*È*å*++$+@+ -T+ _+ k+x+ ‡+”+ ¬+ ¹+Æ+Ú+ ñ+þ+, ,#,5, E, Q, [,e, j,t,z,,,¡,¸, Á,Ë,Ò, Ú, ç,ó, -- - --#-'-6-;- A- -O-Z- i-u-|- „-’-«-Å-É- Ø-â-ú-...!. 1.>.E.L.S. X. d. p.z. ‘.Ÿ.§. ¯.½. -Å.Ð.Ö.Þ.æ. í.û. ////%/ */4/M/T/ Y/e/ y/ ƒ// –/,£/)Ð/ú/ÿ/0 000&0 +0 50?0O0W0 -q0|0„00 ¡0«0 ±0¾0Ã0Õ0 -Û0æ0ï0 ö0!1$131N1U1]1l1u1 }1 ‡1 “11¥1¹1Í1 Ö1ã1ì1 ð1 ú1!2&2-252:2 @2L2P2U2,Z2 -‡2’2 š2¤2 «2·2Ì2ã2ê2 ñ2ý2 -33 "3 -.3 93E3 K3 W3c3 -k3v3}3—3±3Ë3æ3þ3 4!4 04<4K4`4s4 ‡4“4«4³4¹4Á4 Ç4Ó4ò455(5A5F5L5R5Y5`5g5p5w5}5„55 ”5 ¡5­5 ¶5Â5Ë5ß5ä5ô55ý536 M6 -W6b6h6 m6 z6 „6 -‘6œ6 ¡6«6°6¶6½6Å6Î6ä6ê67777%7,76=7ot7ä7ë7 ó78 -888 8$84898@8 H8 -V8 a8m8u8z8€8†8 8—88V¤8'û9R#:7v:P®:Jÿ:8J;[ƒ;Oß;A/<,q<<ž<?Û<:=V= e= -o=8z=³= ¼=É=Ü=ì=ô= >>/>F>\>r>Ž> -•>  >Á> Ê>Ö>Û>á> é> õ>ÿ>? ? ?&?-? -4?*?? j?x?}? ƒ??Ÿ?°? Â?Ð?Ø?ë?!û?@3@ <@F@L@S@=Z@D˜@Ý@ö@AAA!AW¦> M T=[ÿ`VûyFÐËdÅWCv;L5ÔÒÄ -__þÊ Á÷C1¨~ý×ÝðS#žtø‰ I`JxÕ}™tÍá4OÌjå·Ž"B5çìü,«0(†:\és'N'¶¿uLw°B¤€‡€Ù(9ŠqG+^g?­ 3YfQ~š,m-/®m*Gkd¸$ë‚ ^Ÿ!IuT¬X¡oQAZ³s -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --no-shm Do not use shared memory between GIMP and plugins. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d x %d pixels%s copy%s mask(This console window will close in ten seconds) -(Varies)<>Active FiltersAddAdd text to the imageAdditionAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjustmentAirbrushAirbrush with variable pressureAlignedAlignmentAlphaAlpha:Angle:AntialiasingAppearanceAuthor:AutoAvailable FiltersBackgroundBehindBlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBorder SelectionBrightness-ContrastBrush EditorBrush UIBrushesBucket FillBurnCalibrate Monitor ResolutionCan't undo %sCancelCenter X:ChannelChannelsClearClick "Continue" to accept the settings above.Click "Continue" to enter the GIMP user installation.Clipped to bottom layerClipped to imageCloneColorColor BalanceColor Display FiltersColor PickerConfirm Image SizeContinueConvertConvolveCopy NamedCopyright:Count:CropCrop & ResizeCrop & Resize InformationCrop: Crosshair onlyCurvesCustomCut NamedCyanDate:Delete gradientDevice StatusDifferenceDirect ColorDisplayDissolveDistance:Distance: %0.6fDodgeDraw in inkDrawable proceduresEditEdit Channel AttributesEdit Layer AttributesEdit Path AttributesEdit proceduresEllipse SelectEnter a name for this bufferEnvironmentErase to background or transparencyEraserExpanded as necessaryExposure:ExtensionsFG to BG (HSV)FG to BG (RGB)FG to TransparentFeather SelectionFile OperationsFill Opacity:Fill with a color gradientFill with a color or patternFinal, Merged Layer should be:Finding Contiguous RegionsFlipFlip the layer or selectionFloating selectionsForegroundFree SelectFuzzy SelectGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Tip of the DayGIMP User InstallationGIMP versionGammaGeneralGet Monitor ResolutionGimprc proceduresGradient EditorGradient UIGradient:GradientsGrayGrayscaleGreenGreen:Grow SelectionGuide proceduresHandle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHighlightsHistogramHorizontalHueHue-SaturationHugeImageImage WindowsImage maskImport PaletteIncrementalIndex:IndexedIndexed ColorIndexed Color ConversionInitialize Layer Mask to:InkInstant updateInterfaceInternal GIMP procedureInternal ProceduresInvertLargeLayerLayer Fill TypeLayer SelectLayersLevelsLinearLoadLoad CurvesLoad LevelsLocation:Looking for data filesLower ChannelMagentaMagnifyMask Opacity:Matrix:Max Depth:Mean:MeasureMedian:MediumMerge PaletteMidtonesMiscellaneousModeMode:ModulesMoveMove ToolMove layers & selectionsMove: NameNew ChannelNew Channel OptionsNew ImageNew LayerNew PathNew gradientNo brushes available for use with this tool.No patterns available for this operation.NoneNormalOffsetOffset:OpacityOpacity:OpenOptions: -Origin X:Original Width:OverlayPaint fuzzy brush strokesPaintbrushPalettePalettesParasite proceduresParasitesPastePasted LayerPathPath to SelectionPathsPattern UIPatternsPencilPercentile:Perspective Transform InformationPerspective...Pick colors from the imagePixelsPixels:Please wait...Plug-InsPlug-inPosterizePreferencesPressure:PreviewProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:RGBRGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RadialRadius:RateRate:Rect SelectRedRed:RedoReduce image to two colors using a thresholdRegisteredRepeat:ReplicateResizeResolution:Resource ConsumptionResource configurationRevertRotateRotating...Rotation InformationSaturationSaveSave CurvesSave ImageSave LevelsScaleScale ImageScale LayerScalingScaling...ScreenSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelectionSelection MaskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Layer Boundary SizeShadowsShapeSharpenShearShearing...Show tip next time GIMP startsShow zoom percentageShow zoom ratioShrink SelectionShrink from image borderSizeSize:SmallSmoothSmudgeSourceSpacing:Speed:SplitSquareStandardState:Static ColorStatic GrayStd Dev:Stroke PathSubtractTemporary ProcedureTextText proceduresThe GIMPThere are not enough visible layers for a merge down.This tool has no options.ThresholdThreshold:Tilt:TinyTool OptionsTransformTransparencyTrue ColorTypeUndefinedUndoUnitsUnloadUnnamedUntitledUser Installation LogValueVersion %s brought to you byVersion:VerticalWhiteWidthWidth:Window PositionsXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YellowZoom inZoom in & outZoom outcolorscopydpigrayscalegrayscale-emptyinchinchesindexedindexed-emptymillimetermillimeterspercentpicapicaspixelpixelspixels/%apointpointsProject-Id-Version: Gimp CVS -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2000-10-15 19:35+0200 -Last-Translator: Francisco Xosé Vázquez Grandal -Language-Team: Galician -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Uso: %s [opción ...] [ficheiro ...] - - --debug-handlers Abilita manexadores de señais de depurado non-fatais. - --display Usa a pantalla X designada. - --no-shm Non usar memoria compartida entre GIMP e conectores. - --system-gimprc Usa un ficheiro gimprc de sistema alternativo. - --verbose Amosar mensaxes de arranque. - -c, --console-messages Amosa advertencias en consola en vez de nunha caixa de dialogo. - -d --no-data Non cargar pinceis, degradados, paletas, patróns. - -g, --gimprc Usar un ficheiro gimprc alternativo. - -h, --help Sae esta axuda. - -i --no-interface Executar sen entorno de usuario. - -s, --no-splash Non amosar a fiestra de arranque. - -v, --version Sae información da versión. -%d x %d pixelscopiar %smascara %s(Esta fiestra de consola será pechada en dez segundos) -(Varios)<>Filtros activosEngadirEngadir texto á imaxeAdiciónAxustar brillo e contrasteAxustar balance de corAxustar curvas de corAxustar niveis de corAxustar matiz e saturaciónAxusteAerógrafoAerógrafo con presión variableAliñadoAliñamentoAlfaAlfa:Angulo:AntidentadoAparenciaAutor:AutoFiltros dispoñiblesFondoDetrasFundirMisturar: Misturar: Inválido para imaxes indexadas.Misturando...AzulAzul:DifuminarSeleccionar beiraBrillo-ContrasteEditor de pinceisUI de pinceisPinceisCaldeiro de recheoSobrexposiciónCalibra-la resolución do monitorImposible desfacer %sCancelarCentro X:CanleCanlesLimparPique "Continuar" para aceptar as configuracións anteriores.Pique "Continuar" para entrar na configuración para o usuario GIMP.Suxeita á capa de fondoSuxeita á imaxeClonarCorBalance da corFiltros de pantalla en corSelector de corConfirmar Tamaño da ImaxeContinuarConvertirConvolucionarCopiar nomeadoCopyright:Contar:RecortarRecortar e redimensionarInformación de recorte e redimensionadoRecortar: Só retículaCurvasPersoalizadoCortar nomeadoCianData:Borrar degradadoEstado do dispositivoDiferenciaCor directaPantallaDisolverDistancia:Distancia: %0.6fSubexposiciónDebuxar a tintaProcedementos de debuxoEditarEdita-los atributos da canleEdita-los atributos da capaEditar atributos da curvaProcedementos de ediciónSelección elípticaIntroduza un nome para este bufferEntornoBorrar a fondo ou transparenciaGomaExpandida se é precisoExposición:ExtensiónsPrimeiro plano a fondo (HSV)Primeiro plano a fondo (RGB)Primeiro plano a TransparenteSelección suaveOperacións de ficheirosOpacidade do recheo:Encher cun degradado a corEncher cunha cor ou patrónA capa final, fusionada debe ser:Atopando rexións contiguasReflexarReflexa-la capa ou selecciónSeleccions flotantesPrimeiro planoSelección libreSelección borrosaExtensión do GIMPMensaxe GIMPPosta a punto do GIMPConector do GIMPIniciando o GIMPConsello GIMP do díaInstalación do GIMP para o usuarioVersión do GIMPGammaXeralObter resolución do monitorProcedementos de gimprcEditor de degradadosUI de degradadosDegradado:DegradadosGrisEscala de grisesVerdeVerde:Agrandar selecciónProcedementos de guíaManipular posición: %0.6fDurezaDureza:AltoAlto:Visor de axudaSistema de axudaProcedementos de axudaBrillosHistogramaHorizontalMatizMatiz-SaturaciónEnormeImaxeFiestra de imaxeMáscara de ImaxeImportar PaletaIncrementalÃndice:IndexadoCor indexadaConversión a cor indexadoIniciar capa de máscara a:TintaActualización instantaneaEntornoProcedemento interno do GIMPProcedementos internosInvertirGrandeCapaTipo de recheo da capaSelección de CapaCapasNiveisLinealCargarCargar CurvasCargar niveisLocalización:Buscando ficheiros de datosBaixar canleMagentaAumentarOpacidade da Máscara:Matriz:Prof. max.:Principal:MedirMediana:MedianoFusionar PaletaMediatintaMiscelaneoModoModo:MódulosMoverFerramenta MoverMover capas e selecciónsMover: NomeNovo canalNovas opcións de canleNova ImaxeNova CapaNova curvaNovo degradadoNon hai pinceis dispoñibles para usar con esta ferramenta.Non hai patróns dispoñibles para esta operación.NingúnNormalCompensaciónCompensación:OpacidadeOpacidade:AbrirOpcións: -Orixe X:Ancho orixinal:Capa que recubrePintar trazos borrosos de pincelPincelPaletaPaletasProcedementos de parásitosParásitosPegarCapa pegadaCamiñoCurva a selecciónCurvasUI de patrónsPatrónsLapisPercentil:Información de transformación de perspectivaPerspectiva...Coller cores da imaxePixelsPixelsPor favor, agarde...ConectoresConectorPosterizarPreferenciasPresión:PrevisualizaciónBase de datos de procedementosBase de datos de procedementosProgresoPseudo corPropósito:RGBCor RGBRGB-valeiroRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RadialRadio:FrecuenciaFrecuencia:Selección rectangularVermelloVermello:RefacerReduci-la imaxe a duas cores usando un umbralRexistradoRepetir:ReplicarRedimensionarResolución:Consumo de recursosConfiguración de recursosRevertirRotarRotando...Información de RotaciónSaturaciónGardarGardar CurvasGardar ImaxeGardar niveisEscalarEscalar imaxeEscalar CapaEscaladoEscalando...PantallaSeleccionar rexións contiguasSelecciona rexións elípticasSelecciona rexións a man alzadaSelecciona rexións rectangularesSeleccionar rexións por corSeleccionar pezas dende a imaxeSelecciónMáscara de selecciónSelección: Selección: ENGADIRSelección: INTERSECARSelección: SUBSTITUIRSelección: SUBSTRAERSensibilidadeDispor tamaño límite de capaSombrasPezaAfiarTumbarTumbando...Amosar consello a proxima vez que arranque o GIMPAmosar porcentaxe de zoomAmosar relación de zoomEncoller a selecciónEncoller dende a beira da imaxeTamañoTamaño:PequenoSuaveTisnarFonteSeparación:Velocidade:PartirCadradoEstándarEstado:Cor estáticaGris estáticoDesv. estnd.Trazar curvaSustraerProcedementeo TemporalTextoProcedementos de textoO GIMPNon hai capas visibles abondo para unha fusión.Esta ferramenta non ten opciónsUmbralLímite:Inclinación:MinúsculoOpcións de ferramentasTransformarTransparenciaCor verdadeiraTipoIndefinidoDesfacerUnidadesDescargarSen nomeSen tituloCaderno de instalación de usuarioValorVersión %s distribuida porVersión:VerticalBrancoAnchoAncho:Posicións das fiestrasErro de XCF: atopouse un ficheiro XCF versión %d non soportadoAdvertencia XCF: a versión 0 do formato de ficheiros XCF -non garda mapas de cores indexadas correctamente. -Substituindo mapa en escala de grises.AmareloZoom dentroZoom dentro e foraZoom foraCorescopiarpppescala de grisesescala de grises-valeirapolgadapolgadasindexadoindexado-valeiromilímetromilímetrosporcentaxepicapicaspixelpixelspixels/%apuntopuntos \ No newline at end of file diff -uraN gimp-2.2.8/po/he.gmo gimp-2.2.9/po/he.gmo --- gimp-2.2.8/po/he.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/he.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,129 +0,0 @@ -Þ•šì‹¼)è7é7 ÿ7 8 -8$8,8480;8l8ƒ8Š8 ’8ž8­8¼8 Î8 -Ú8 å8ï8ø89*9H9e9n99¢9¶9Ê9é9þ9:&:@: -\:g:o:x:˜:  :ª:°:·: ¾: -Ë:Ö:ç:÷:;;';,;5;G; -X;c;|;ƒ;‰; ‘;;¢;¨;­;½;Ì;Ý; ñ; þ; << <'</< 4< ><L<S<3i< < ©<³<¼<Ô<ì<=,=C=K= ^=l= Œ=­=Â=Ë= Ñ=ß=å= ë=ù= >>#>,>?>R>[>d>s>ˆ>›> ¤>°>¹>Á>Ü> -ñ>ü>??)?%??e? j?x? -’? -?¨?À? Ç? -Ô?ß?æ?í?ñ?ö?ý?@@0@ B@P@ -X@ c@p@x@‹@ ”@ ž@¨@ ¯@¹@¿@ -Õ@ à@ì@A AA-A2AJA]AsA ˆA–A¦AµA.ÆAõA þA -BB#'BKB RB`B gBqB€BB¡B §B³BÃBÕB åB òBCC&C=CMChC…CŒC §CµC ºC -ÇC ÒCÜC øCDD(D0D6D -EHENEUE ZEgEvE|E …EE–E žE «E -·E ÂEÌE -ÔEBßE"F&F+F -2F=FBFHF -ZFeF xF†FFœF«F ÀFÌFÔFÛF ãF ñFýF G GG +G5GIGPG_GpG yGƒG‰G™G ©GµG»GÌG ÜG éGöGH3HSHZHbH iHvH}H ‚H ŽHšH ®H ¸HÄH ÛHéH I I -#I.I6I>I -FIQIWI_IgI -nI yI †I”I©I²I·I½IÓIåIôIJ J J -J -(J 3J=JLJeJƒJŸJ¦J -¯J ºJÆJØJ ìJ öJK K K'K);KeK}K‚K‘K˜K©K¼KÃK ÒKßKñKùKLLL -!L,L"CL fL pL zLˆLL–L°L%ÈL -îLùLMM'M0M DM NM\M bMoMtM„M¡M¿MÅMÕMÞM åMñM NN!NQLQTQ rQ|Q—Q©Q+½QéQðQ ÿQ R R %R 1R=RRRZR aRnRuR „R ‘RR »RÇR -ÜRçR ìR -øR SS,S ?SLS RS `S lS -xSƒS - S«S´S -»SÆSÛS ëSøST+T ATMTdT{T’T ©T·TÌTÞTîTU"UÕ`)a ->a$Ia%na”a³a$Òa)÷a!b@b _b$€b -¥b°b¿b&Ïb -öb c c c c,cBcKc fctcˆc §c±cÀcÜcöcdd -3d ->d Id Udad jd -tddšd°dÏdçdûd e !e.e BeOe Xe*ee -e.›eFÊef *f 6fCf\f wf"˜f=»fùfgg9)g9cgg ºg -ÇgÒg -ægñgøgh)h9h AhOhjh…h —h¥h·hÔhóhüh ii)iGibi }i‰i¨iÅi;äi - j +j+LjxjŽj.¢j ÑjÞjùj kk -.k9k Bk Ok[k$qk–k±k ÃkÐkÙk -ékôkl ll -1l {P{/k{ ›{ ¼{ Ý{ -ç{ -ò{ý{ |&&|M|a|s|%ƒ|©|½|<Ô|4}F}O}j}s}‡}ž}§}»}Ð} ï} -ù}~ ~ %~3~-I~@w~¸~ Ë~×~ -ç~ -ò~2ý~609g -¡¬Çæÿ€ +€8€ -I€T€j€s€9‹€:Å€  ) 8 EOl)•¿ÎÞóü‚7.‚7f‚Ež‚ ä‚ñ‚ -ú‚ ƒƒƒ ,ƒMƒiƒxƒ Šƒ ”ƒ ¡ƒƒÚƒ -Þƒ -éƒ ôƒ„„3„G„d„ -x„ ƒ„„¢„¶„ ¿„É„?ß„Z…z…ƒ…›…­…Á…Ó…ò…†#†<†U†n†‹†¨†'½† -å†.ð†‡3‡?P‡‡¤‡Á‡à‡ý‡ˆ /ˆ;ˆ -Sˆ -^ˆiˆ -ˆŠˆžˆ²ˆ*ƈ ñˆ ÿˆ - ‰ -+‰6‰N‰d‰/x‰¨‰ʼnÖ‰#æ‰% -Š#0Š#TŠ:xŠ³ŠÑŠàŠçŠ$ùŠ‹7‹"I‹-l‹$š‹¿‹+Ü‹&Œ$/Œ TŒuŒ"‰Œ¬ŒÉŒ$âŒ(%0V%u'›Ã× òŽ&ŽDŽbŽ€Ž žŽ«Ž ÆŽ;çŽf#RŠKÝ -)4 = -GRf -ƒ*Ž¹ Í Ù1ú,‘G‘[‘"x‘›‘ ¤‘®‘$µ‘ -Ú‘å‘ -û‘’’ %’ -/’ :’ F’ -T’)_’+‰’ -µ’À’É’á’é’ù’" “-.“ -\“)g“ ‘“ž“¶“¿“Ï“á“ó“û“ -”&”E”J” P”\”e”}”†””¡”¶”Ȕڔ ã” ï”ü”••%•,;• h• u•ƒ•¡• ª• ¶•4•÷• þ•–h–€z–û–— ——-— 6—C—W—f—u—‡—š—"®—Ñ—å—õ—ø—û—þ— -˜ ˜*˜9˜<˜U˜X˜o˜ ‰˜–˜©˜À˜Ú˜ݘ -ᘠ-ì˜÷˜)™8™L™ g™ q™ ™Œ™+ ™Ì™Û™ î™û™ -š -šš -)š 4šœn™ܺqÍÿ ñ·ÜÚúO_±pDŠ—Ð`²A˜ë ¥áJDŸ¾[†}š¸jšGÊFO±2 ïiÔOfúu®?‘Ã9U[Å#Ïè %÷‡[‚ìF4wÈÖ½} QLÃÉãWb˜%nÏ=¡“;…E‘Ù@¨ÀâE4µ¾}ëA =ÕÎ.ªGK9"C…+sXüi<W­€kŠŒ&J)z07b8e‡;BßZ\P`¿lýªwÕ{ÚS^•Ÿö'á3憔8:$¼T ¸>ß‚Tm¿‰y¹Ð–šh„àþÛd+FA©-å–kêçV'ý Ȧ„jÖ¤‹:yóWó.Zæ¢ÊÞØÑÌ#:z`0íRNž›HSühðU<mm)Ç«wÄ=G7½DŒlHû1ƒ3Msc’p¦Crø¶? ¼.,UeÍk@x^o÷(TÉ\Ø5ÑÌM†‚ˆZ·r6¬_Âz§'1~eœµ”B]ÁŶ!…ã—ˆ]+8ƒþ{aMqÇ(V°´{¹L‹éNöd6ï ù¯CÆN€P‹•^(, – -™g;Œ³Ë1>c]ä¯tIYËÝ|)/ôséÛ -—-”ÁYˆûfä‰bÓÆn ´?a_ÂfÙ>9îB­£ÄåŽ#@g%ô•¢E×uvƒ7K5$ŽLÒ‰¨xuo<解~V’©òd ya2/Šl¡jÒp2|Þ™0 -|¤ñcâI²’"®õ6RŽXK€í4\ÿ³ìt! J‡rùõø«x5Y!*-Xoqçg»ÝR"ðQê×òh„vÎ*IžÓ*‘tîQÔ~À$° S&›à“PºH»v“3/¬, ¥i˜& -Invalid option "%s" -%d Layers%s Channel Copy%s Message%s copy%s mask(None)(This console window will close in ten seconds) -(invalid UTF-8 string)(none)1 Layer<>About The GIMPActive FiltersAdd Alpha ChannelAdd ChannelAdd GuidesAdd LayerAdd PathAdd Text LayerAdd text to the imageAdd the current color to the color historyAdd to the current selectionAdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:AirbrushAirbrush with variable pressureAlignedAlignmentAlphaAlpha:Angle:AntialiasingAppearanceApply Layer MaskApply ThresholdAttach ParasiteAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:BehindBlendBlend: Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBrightness-ContrastBrush EditorBrush FoldersBrush:BrushesBucket FillBuffersBurnC_olumns:Can't undo %sCancelCannot create previewCannot crop because the current selection is empty.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 SelectionChannelsClearClear ChannelCloneColorColor BalanceColor Display FiltersColor PickerColor:ColorizeColorize the ImageColorize the imageColormapColumns:Configure GridConfigure Image GridConfirm Image SizeConstantConstraintsContinueConvertConvert Image to GrayscaleConvert Image to RGBCopyright:Count:Create a New ImageCreate a New LayerCreate a New TemplateCreate and edit images or photographsCropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Cubic (Best)Curve TypeCurvesCustomCutCyanDashedDate:Delete TemplateDelete the selected templateDelete this imageDevice StatusDevicesDifferenceDirect ColorDisplayDisplay proceduresDissolveDistance:DitheringDivideDocumentsDodgeDodge or Burn strokesDodge/BurnDraw in inkDrawable proceduresDrop New LayerDrop New PathEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Layer AttributesEdit Path AttributesEdit TemplateEdit proceduresEllipse SelectEmpty Text LayerEnable to display a handy GIMP tip on startup.EnormousEnvironmentEnvironment FoldersEqualizeErase to background or transparencyEraserError ConsoleErrorsExposure:FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFeather ChannelFeather SelectionFile OperationsFill ChannelFill Opacity:Fill with BG ColorFill with FG ColorFill with TransparencyFill with WhiteFill with a color gradientFill with a color or patternFilledFinding Contiguous RegionsFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip the layer or selectionFlipping...Float SelectionFloating selectionsFoldersFont:FontsForegroundForeground color set to:Foreground: %d, %d, %dFreehandGIMPGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP versionGammaGeneralGiganticGimprc proceduresGradient EditorGradient FoldersGradient:GradientsGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGuideHardnessHardness:HeightHeight:Help BrowserHelp SystemHighlightsHistogramHistoryHorizontalHow many recently opened image filenames to keep on the File menu.HueHugeI_mageI_nterval:IconImageImage InformationImage SizeImage Title FormatImage WindowsImagesImport OptionsImport PaletteImport a New PaletteIncrementalIndent:Index:IndexedIndexed ColorInfo WindowInkInput DevicesInput LevelsInstant updateInterfaceInternal ProceduresInvertInvert ChannelInvert SelectionJustify:LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer AttributesLayer Fill TypeLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.LayersLength:LevelsLine _Style:LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:LogarithmicLooking for data filesLower ChannelLower Channel to BottomLower LayerLower Layer to BottomLower PathMagentaMagnifyMatrix:Max Depth:Mean:MeasureMedian:MediumMerge DownMerge LayersMerge PaletteMerge Visible LayersMidtonesModeMode:Modify Selected ColorModify all colorsModule FoldersModule ManagerModulesMoveMove ChannelMove GuideMove LayerMove PathMove SelectionMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNo longer availableNo patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileOffsetOffset ChannelOffset LayerOffset Layer MaskOffset:On diskOnly in memoryOpacityOpacity:Open ImageOpen Text File (UTF-8)Open the gradient selection dialogOptions: -Origin X:Output LevelsOverlayPaintPaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPalette EditorPalette FoldersPalette _Name:PalettesParasite proceduresParasitesParsing '%s' -PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.PathsPattern FoldersPatternsPencilPercentile:Personal GIMP FolderPerspectivePerspective...Pick colors from the imagePixelsPixels:Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPortraitPreferencesPressure:PreviewPreview is out of datePreviewsProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuickMaskRGBRGB ColorRadialRadius:Raise ChannelRaise Channel to TopRaise LayerRaise Layer to TopRaise PathRateRate:Re_peat "%s"Rect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRegisteredRemote imageRemove ChannelRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRename ChannelRename LayerRename PathReorder ChannelReorder LayerRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate SegmentReplicate SelectionReset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResizing...Resolution:Resource ConsumptionReverseRevertRevert ImageRotateRotate ChannelRotate LayerRotate PathRotate the layer or selectionRotating...Rotation InformationSaturationSaveSave CurvesSave ImageSave LevelsSave curves settings to fileSave device statusSaving '%s' -ScaleScale ChannelScale ImageScale LayerScale PathScale the layer or selectionScaling...ScissorsScreenSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Range to ModifySelect SourceSelect Theme FoldersSelect Zoom RatioSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelectionSelection EditorSelection MaskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Channel ColorSet Channel OpacitySets the browser used by the help system.Sets the level of interpolation used for scaling and other transformations.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show memory usageShow tip next time GIMP startsShow zoom ratioShrink ChannelShrink SelectionShrink from image borderSizeSize:SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Speed:SplitSplit Segment UniformlySplit Segments UniformlySquareStandardStarting ExtensionsState:Static ColorStatic GrayStroke PathStroke SelectionSubtractSubtract from the current selectionTemplatesTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPTheme FoldersThemesThis tool has no options.ThresholdThreshold:Tilt:TinyTool OptionsToolsTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransformationTransforming...TransparencyTrue ColorTypeUndefinedUndoUndo HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUser Installation LogValueVersion:VerticalWhen enabled, the GIMP will use a different info window per image view.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.WhiteWidthWidth:Window PositionsYellowZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom inZoom in & outZoom out_Auto_B_C_G_Gradient_Hue:_Import_Lightness:_M_Preview_R_Redo_Redo %s_Saturation:_Selection_Undo_Undo %s_Y_Y:colorscopydpifatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringmillimetermillimeterspercentpicapicaspixelpixelspointpointsProject-Id-Version: gimp.HEAD -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2003-09-24 13:40+0200 -Last-Translator: Gil 'Dolfin' Osher -Language-Team: Hebrew -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.0.1 - -×ופציה ×œ× ×ª×§×™× ×” "%s" -%d שכבותהעתקת ערוץ %sהודעה %s העתקה %s%s מסכה(כלו×)(חלון מסוף ×–×” ייסגר תוך עשר שניות) -(מחרוזת יוניקוד ל×-תקינה)(כלו×)שכבה ×חת<<שגוי>>×ודות GIMP×ž×¡× × ×™× ×¤×¢×™×œ×™×הוספת ערוץ ×לפ×הוספת ערוץהוספת מדריכי×הוספת שכבההוספת נתיבהוספת שכבת טקסטהוספת טקסט לתמונההוספת צבע נוכחי להיסטוריית הצבעי×הוספה ל×זור נבחר נוכחיהוספההת×מת בהירות וניגודהת×מת שיווי משקל צבעהת×מת עקומות צבעהת×מת רמות צבעי×הת×מת בהירות וניגודהת×מת שיווי משקל צבעי×הת×מת עקומות צבעהת×מת רמות צבעי×הת×מת גוון ורוויההת×מת רמות ×וטומטיתהת×מההשפע על:מרסס צבעמרסס צבע ×¢× ×œ×—×¥ משתנהמסודריישור:×לפ××לפ×:זווית:החלקת קצוותמר×ההחל מסיכת שכבההחלת סףהוספת טפילחיבור טפיל לפריטמחבר:×וטומטיטעינה ××•×˜×•×ž×˜×™×ª×ž×¡× × ×™× ×–×ž×™× ×™××¡×•×’×™× ×–×ž×™× ×™×:רקעצבע הרקע נקבע ל:מ×חורמיזוגמיזוג:ממזג...כחולכחול:טשטושטשטוש ×ו חידודמיסגור ערוץמיסגור ×זור נבחרבהירות-ניגודעורך מברשתתיקיות מברשותמברשת:מברשותמילוי מ×גרחוצצי×בערה_טורי×:×ין ×פשרות לבטל פעולה %sביטול×ין ×פשרות ליצר גרסת עיון×ין ×פשרות לגזוז מ×חר וה×זור הנבחר ריקגודל לוח ציורמרכז X:ממורכזשינוי צבע רקעשינוי צבע קדמהשינוי הפרדת תמונהשינוי יחידת התמונהשינוי פרספקטיבת שכבה ×ו ×זור נבחרערוץמ×פייני ×¢×¨×•×¥×©× ×¢×¨×•×¥:×ין ×פשרות להנמיך ×ת הערוץ יותר×ין ×פשרות להגביה ×ת הערוץ יותרערוץ ל×זור נבחרערוצי×ניקויניקוי ערוץשיבוטצבע×יזון צבעי×מסנני הצגת צבעלקטן צבעצבע:מתן צבעמתן צבע לתמונהמתן צבע לתמונהמפת צבעי×עמודות:הגדרת רשתהגדרת רשת תמונה×ישור גודל תמונהקבוע×ילוצי×המשךהסבההסבת תמונה לגווני ×פורהסבת תמונה ל RGBזכויות יוצרי×:ספירה:יצירת תמונה חדשהיצירת שכבה חדשהיצירת תבנית חדשהיצירה ×ו עריכת תמונות ×ו צילומי××’×–×™×–×”×’×–×™×–×” ושינוי גודלגזיזת ושינוי גודל תמונהגזיזת תמונהגזיזת שכבהגזיזת ×ו שינוי גודל תמונהגזיזה: מעוקב (×”×›×™ טוב)סוג עקומהעקומותמות×× ×ישיתגזירהתכלתמקווקות×ריך:מחיקת תבניתמחיקת התבנית הנבחרתמחיקת תמונה זומצב ההתקןהתקני×הבדלצבע ישירתצוגהנוהלי הצגההמסהמרחק:ערבוב צבעי×חלוקהמסמכי×הבהרהמשיכות (קולמוס) הבהרה ×ו חריכההבהרה/חריכהצביעה ×¢× ×“×™×•× ×•×”×œ×™ ציורביטול שכבה חדשהביטול נתיב חדש×ופס: ×ין ×פשרות לבטל פעולהעריכהעריכת מ×פייני ערוץעריכת צבע ערוץעריכת מ×פייני שכבהעריכת מ×פייני נתיבעריכת תבניתנוהלי עריכהבחירת ×ליפסהריקון שכבת טקסט×יפשור הצגת עצת GIMP שימושית בהפעלת התוכנה.כבירסביבהתיקיות סביבההשוו×המחיקה ×¢× ×¦×‘×¢ רקע ×ו רקע שקוףמחקמסוף שגי×ותשגי×ותחשיפה:צבע קדמה לרקע (HSV)צבע קדמה לרקע (RGB)הפיכת צבע רקע לשקוףרקע/חזיתצבע רקע/חזיתריפוד ערוץהחלקת ×זור נבחרפעולות קבצי×מילוי ערוץ×טימות מילוי:מילוי ×¢× ×¦×‘×¢ קדמהמילוי ×¢× ×¦×‘×¢ רקעמילוי ×¢× ×©×§×™×¤×•×ª×ž×™×œ×•×™ ×¢× ×œ×‘×Ÿ×ž×™×œ×•×™ ×¢× ×ž×“×¨×’ צבעי×מילוי ×¢× ×¦×‘×¢ ×ו דוגמהממול×מצי×ת ××–×•×¨×™× ×¨×¦×™×¤×™×שיטוח תמונההיפוךהיפוך ערוץהיפוך שכבההיפוך נתיבהיפוך שכבה ×ו ×זור נבחרהיפוך...×זור נבחר צףבחירות צפותתיקיותגופן:גופני×קדמהצבע הקדמה נקבע ל:קדמה: %d, %d, %dביד חופשיתGIMP×תחול GIMPעורך הטקסט של GIMPעצת ×”×™×•× ×©×œ GIMPהתקנת משתמש של GIMPגרסת GIMP×’×מהכלליעצו×סףעורך מדרגתיקיות מדרגי צבעי×שיעור מדרג הצבעי×:מדרגי צבעי××פורגווני ×פורירוקירוק:רשתהגדלת ערוץהגדלת ×זור נבחרמדריךקושיקושי:גובהגובה:דפדפן עזרהמערכת עזרההדגשותהיסטוגרמההיסטוריה×ופקיהגדרת מספר שמות ×”×§×‘×¦×™× ×©× ×¤×ª×—×• ל×חרונה ו×שר יהיו ×–×ž×™× ×™× ×‘×ª×¤×¨×™×˜ הקובץ.גווןענקי_תמונהמ_רווח:סמלתמונהמידע ×ודות התמונהגודל תמונהמבנה כותרת התמונהחלונות תמונהתמונות×פשרויות יבו××™×™×‘×•× ×œ×•×— צבעי××™×™×‘×•× ×œ×•×— ×¦×‘×¢×™× ×—×“×©×œ×•×— צבעי×שוליי×:מפתח:ממופתחצבע ממופתחחלון מידעדיוהתקני קלטרמות קלטעדכון ×ž×™×™×“×™×ž×ž×©×§× ×”×œ×™× ×¤× ×™×ž×™×™×היפוך צבעי×היפוך ערוץהיפוך ×זור נבחריישור:הדפסה לרוחבגדולגדול (256x256)גרס×ות עיון מוגדלותשגי××” ×חרונה:שכבהמ×פייני שכבהסוג מילוי שכבהבחירת שכבה_×©× ×©×›×‘×”:×ין ×פשרות להנמיך ×ת השכבה יותר×ין ×פשרות להגביה ×ת השכבה יותרהשכבה כבר בתחתיתשכבות×ורך:רמות_סגנון קוקוויטעינהטעינת עקומותטעינת רמותטוען גרסת עיון...מיקו×:לוגריטמי:מחפש קבצי מידעהנמכת ערוץהנמכת הערוץ לתחתיתהנמכת שכבההנמכת שכבה לתחתיתנתיב תחתון×רגמןהגדלהטבלה:עומק מרבי:ממוצע:מדידהחציון:בינונימיזוג כלפי מטהמיזוג שכבות×יחוד לוח צבעי×מיזוג שכבות נר×ותגווני ביניי×מצבמצב:שינוי הצבע הנבחרשינוי כל הצבעי×תיקיות רכיבי×מנהל מודולי×רכיבי×הזזההזזת ערוץהזזת מדריךהזזת שכבההזזת נתיבהזזת ×זור נבחרהזזת שכבות ו××–×•×¨×™× × ×‘×—×¨×™×הנמכת המסנן הנבחרהעל×ת המסנן הנבחרהזזה:הכפלהניווטערוץ חדשצבע חדש לערוץ×פשרויות חדשות לערוץתמונה חדשהשכבה חדשהנתיב חדש×פשרויות נתיב חדשות:תבנית ×—×“×©×”×œ× ×–×ž×™×Ÿ יותר×ין דוגמ×ות זמינות עבור פעולה זו.×ין ×זור נבחר למשיכת (קולמוס)כלו××›×œ×•× (×”×›×™ מהיר)רגילרגיל (128x128) ×œ× ×§×•×‘×¥ רגילהסטהקיזוז ערוץ/קיזוז שכבהקיזוז מסיכת שכבההסטה:בדיסקרק בזיכרון×טימות×טימות:פתיחת תמונהפתיחת קובץ טקסט (יוניקוד)פתיחת תיבת דו-שיח לבחירת מדרג צבעי××פשרויות: -מקור X:רמות פלטציפויצביעהציור ×¢× ×ž×©×™×›×ª מברשת פלומתיתציור ×¤×™×§×¡×œ×™× ×¢× ×§×¦×•×•×ª משונני×צביעה ×¢× ×“×•×’×ž×ות ×ו ×זורי תמונהמברשתעורך לוח צבעי×תיקיות לוח-צבעי××©× _לוח צבעי×:לוחות צבעי×נהלי טפילי×טפילי×ניתוח '%s' -העתקהשכבה מודבקתנתיבמ×פייני נתיב×ין ×פשרות להנמיך ×ת הנתיב יותר×ין ×פשרות להגביה ×ת הנתיב יותר.נתיבי×תיקיות דוגמ×ותדוגמ×ותעיפרוןמ×ון:ספריית GIMP ×ישיתפרספקטיבהפרספקטיבה...בחירת ×¦×‘×¢×™× ×ž×ª×•×š תמונהפיקסלי×פיקסלי×:× × ×œ×”×ž×ª×™×Ÿ...תוסףסביבת תוספי×תיקיות תוספי×התוסף ×œ× ×”×¦×œ×™×— לפתוח ×ת התמונההתוסף ×œ× ×”×¦×œ×™×— לשמור ×ת התמונההתוסף הודיע על הצלחה ×ך ×œ× ×”×—×–×™×¨ תמונהתוספי×תוסףדיוקןהעדפותלחץ:גרסת עיוןגרסת העיון מיושנתתצוגות מוקדמותהתקדמותצבע מדומהמטרה:ש×ילתהמחפש ×ª×•×¡×¤×™× ×—×“×©×™×הסוו××” מהירהRGBצבע RGBמוקדירדיוס:הגבהת ערוץהגבהת הערוץ לשי×העל×ת שכבההגבהת שכבה לשי×הגבהת נתיבשיעורשיעור:חזרה על "%s"בחירת מלבן×דו××דו×:שחזור פעולההקטנת מספר ×”×¦×‘×¢×™× ×‘×ª×ž×•× ×” לערך קבועהקטנת מספר ×”×¦×‘×¢×™× ×‘×ª×ž×•× ×” ×œ×©× ×™×™× ×ª×•×š שימוש בערך סףרשו×תמונה מרוחקתהסרת ערוץהסרת מדריךהסרת שכבההסרת טפיל מתמונההסרת טפיל מהפריטהסרת נתיבשינוי ×©× ×¢×¨×•×¥×©×™× ×•×™ ×©× ×©×›×‘×”×©×™× ×•×™ ×©× × ×ª×™×‘×¡×™×“×•×¨ ערוץ מחדשסידור שכבה מחדשביצוע חוזר:החלפת ×זור נבחר נוכחישכפולשכפול מקטע של מדרג הצבעי×שכפול מקטעשכפול ×זור נבחר×יפוס המסנן הנבחר לערכי ברירת מחדלשינוי גודלשינוי גודל ערוץשינוי גודל תמונהשינוי גודל שכבהשינוי גודל נתיבמשנה גודל...הפרדה:צריכת מש×בי×היפוךהיפוךהיפוך תמונהסיבובסיבוב ערוץסיבוב שכבהסיבוב נתיבסיבוב שכבה ×ו ×זור נבחרמסובב...מידע ×ודות הסיבוברוויהשמירהשמירת עקומותשמירת תמונהשמירת רמותשמירת הגדרות עקומות לקובץשמירת מצב ההתקןשמירת '%s' -קנה מידהשינוי קנה-מידת ערוץשינוי קנה-מידת תמונהשינוי קנה-מידת שכבהשינוי קנה-מידת נתיבשינוי קנה מידת שכבה ×ו ×זור נבחרהת×מת קנה מידה...מספריי×מסךבחירת הכלבחירת תיקיות מברשותבחירה לפי צבעבחירת צבעבחירת תיקיות סביבהבחירת תיקיות מדרגי צבעי×בחירת תיקיות רכיבי×ביטול ×זור נבחרבחירות תיקיות לוח-צבעי×בחירת תיקיות דוגמ×ותבחירת תיקיות תוספי×בחירת טווח לשינויבחירת מקורבחירת תיקיות ערכותבחירת יחס מיקודבחירה לפי צבעבחירת ××–×•×¨×™× ×¨×¦×™×¤×™×בחירת ××–×•×¨×™× ×ליפטיי×בחירת ×זור מצויר בידבחירת ×זור מלבניבחירת ××–×•×¨×™× ×œ×¤×™ צבעבחירת צורה מתוך תמונהבחירת ×זורעורך ×זור נבחרמסיכת ×זור לבחירה×זור נבחר:×זור נבחר: הוספה×זור נבחר: הצלבה×זור נבחר: החלפה×זור נבחר: הורדהרגישותקביעת צבע ערוץקביעת ×טימות ערוץהגדרת הדפדפן בשימוש מערכת העזרה.קביעת רמת ערכי ×”×‘×™× ×™×™× ×”×ž×©×ž×©×™× ×œ×©×™× ×•×™ גודל והמרות ×חרותהגדרת הטקסט שיופיע בשורת המצב של חלון התמונה.הגדרת הטקסט שיופיע בכותרת של חלון התמונה.צללי×צורהצורה:חידודחידוד ערוץחידוד ×זור נבחרגזירהחיתוך שכבה ×ו ×זור × ×‘×—×¨×’×™×–×•× ×ž×™×“×¢×’×•×–×...הצגת ניצול זיכרוןהצגת ×˜×™×¤×™× ×‘×תחול ×”×‘× ×©×œ GIMPהצגת יחס מיקודהקטנת ערוץהקטנת ×זור נבחרכיווץ מגבול התמונהגודלגודל:קטןגרס×ות עיון מוקטנותהחלקההחלקת קצוותערפולערפול תמונהמוצקמקור:ריווחריווח:מהירות:פיצולפיצול המקטע ב×ופן ×חידפיצול ×ž×§×˜×¢×™× ×‘×ופן ×חידריבוערגילמ×תחל הרחבותמצב:צבע × ×™×™×—×פור נייחנתיב משיכת (קולמוס)×זור נבחר למשיכת (קולמוס)החסרההחסרה מ×זור נבחר × ×•×›×—×™×ª×‘× ×™×•×ª× ×”×œ×™× ×–×ž× ×™×™×טקסטצבע טקסטשכבת טקסטנהלי טקסטה GIMPתיקיות ערכותערכותלכלי ×–×” ×ין ×פשרויות.סףסף:שיפוע:זעיר×פשרויות כליכלי×הסבההסבת ערוץכיוון הסבה:הסבת שכבההמרת נתיבהסבהממיר...שקיפותצבע ×מיתיסוגל×-מוגדרביטול פעולההיסטוריית פעולות לביטוליחידותל×-ידועסוג קובץ ל×-ידועהסרהחסר ש×חסר-ש××¨×™×©×•× ×¤×¢×•×œ×•×ª התקנה של המשתמשערךגרסה:×נכיבמצב מ×ופשר, GIMP ישתמש בחלון מידע שונה עבור כל תצוגת תמונה.במצב מ×ופשר, כל תמונה שתיטען תיר××” במלו××”, ×חרת ×”×™× ×ª×•×¦×’ בקנה מידה של 1:1לבןרוחברוחב:×ž×™×§×•× ×—×œ×•× ×•×ª×¦×”×•×‘×¦×¤×™×” 1:1מיקוד בהכלהתמקדותהתרחקותיחס מיקודיחס מיקוד:מיקוד צפיהמיקוד פנימה והחוצהריחוק צפיה_×וטומטי_B_C_Gמדר_×’ צבעי×_גוון:_ייבו×_בהירות:_Mת_צוגה מוקדמת_R_שחזור פעולה_שחזור פעולה %s_רוויה:×זור _נבחר_ביטול פעולה_ביטול פעולה %s_Y_Y:צבעי×העתקהנקודת ל××™× ×¥'שגי×ת ניתוח קלט סופניתגווני ×פורגווני ×פור-ריק××™× ×¥'×ינצ'×™×ממופתחממופתח-ריקמחרוזת יוניקוד ×œ× ×ª×§×™× ×”×ž×™×œ×™×ž×˜×¨×ž×™×œ×™×ž×˜×¨×™××חוזי×פיק×פיקותפיקסלפיקסלי×נקודהנקודות \ No newline at end of file diff -uraN gimp-2.2.8/po/hr.gmo gimp-2.2.9/po/hr.gmo --- gimp-2.2.8/po/hr.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/hr.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,296 +0,0 @@ -Þ•ô¼'\OÐiÑi&çiGj9VjGjAØjNkiik<Ókkl@|l2½l;ðlP,mO}m2Ím9n-:n9hn;¢n7Þn o o*o -9oDoTo -lowoo‡o£o½oÓo0Úo pp/pFpMpUp]p bp npK{p…Çp.Mq1|q®q½qÌq -Þq éq -õqr rr.r -7rBrQrdr|r*’r6½rôrs)s2sQsfszsŽs­sÂsÖsêst - t+t3tEtNtnt vt €tt1¢u3Ôuvv!v(vBv Iv -VvavrvA‚vJÄv<wLw\wuww•wšw£wµw -ÆwÑwêw&x$(xMxTxZxaxgx"ox ’xžx£x©x®x¾xÍxÞxòx7y >y KyYybyiy qy ~yŠy ’yŸy¤y©y ®y¸y ÕyãyCêy7.z=fz@¤z6åzd{{Ÿ{3µ{é{<ý{#:|!^|€|| ·| Ã|Í|Ö|î|}},0}]}e} x}†} ¦}Ç}Ü}å} î}ü}~ ~.$~5S~5‰~8¿~)ø~,"Ok2ˆ »Ü÷O€Ac€%¥€&Ë€4ò€1'#Y }‹§¿ÐÖå ëù ‚‚05‚f‚m‚ˆ‚¥‚+®‚ڂ킃 ƒ -ƒƒ=ƒLƒaƒtƒ‰ƒ™ƒ ¢ƒ®ƒ0„9„J„ R„_„z„“„³„È„Ñ„ -ã„î„ - …)…B…,\…‰…#£…#Ç…!ë…% †3†R†Y†m†€†“†#©†-͆û†%‡7‡M‡e‡ j‡x‡ -’‡ -‡¨‡À‡LJ Ö‡ -ã‡î‡-õ‡#ˆ*ˆ .ˆ8ˆ=ˆCˆJˆ%Pˆ!vˆ ˜ˆ¥ˆ ¸ˆƈ؈çˆ÷ˆ‰,‰ ->‰-I‰ w‰ƒ‰ Š‰˜‰  ‰ -­‰ ¸‰ʼnÞ‰æ‰ù‰ Š&Š /Š9Š IŠSŠ?ZŠšŠ «ŠµŠÄŠÊŠ -àŠ ëŠ ÷Š -‹ ‹ ‹ -%‹ 0‹<‹E‹Y‹ h‹>v‹µ‹Õ‹å‹ê‹ŒŒ.Œ DŒNŒaŒ vŒ„Œ”Œ¯Œ ¾Œ ÌŒ -ØŒãŒ*ôŒ.Nj#s"—º×&ö Ž)Ž=Ž,FŽ#sŽ—Ž žŽ¬Ž¿Ž'ÙŽ;QmF‡TÎ#*@ S]t ‘²ÁÐâ è$ô=‘6W‘<Ž‘AË‘7 ’9E’c’9ã’B“=`“fž“>”CD”Jˆ”gÓ”;•K•]•r• ‚• • •«•¾•Ñ•ã•ú• -–%–B–I–h–ƒ– š–¨– ­– -º– Å–Ï– ß–í– ——%—A—U—[—b— j—w—— -…—O— -à—”ë—€˜™˜ °˜¼˜ ŘÒ˜ט æ˜ó˜ ™ ™%™6™J™ua™ÌיŤšcj› ΛzÛ›Vœ\œrdœלîœ÷œ .&?'f Ž š ¤®½ ÂÌÒÙ Þëú žž*ž;ž?žYžpž yžƒžŠž ’ž Ÿž«ž»ž -ÀžHËž ŸŸ.Ÿ -6ŸHAŸ!ŠŸB¬ŸïŸóŸ1 4 9 >  -E P `U 0¶ ç í  -ÿ  - -¡¡,¡<¡[¡n¡ †¡ -”¡HŸ¡è¡ ï¡û¡ -¢ ¢&¢<¢ Q¢ _¢ l¢x¢€¢ž¢¥¢ ­¢»¢ Ô¢à¢ú¢£,£ 0£ >£ K£3Y£6£Ä£ ӣݣõ£ ¤$¤=¤X¤ m¤ {¤ œ¤(½¤+æ¤)¥*<¥!g¥/‰¥¹¥À¥Ï¥*ॠ¦-¦B§ U§_§e§u§ …§‘§3—§˧ܧì§ ¨ ¨¨<¨[¨{¨”¨¨¨ ¯¨»¨Шä¨@ì¨-©-4©b© g©t©’©™© ž© ª©¶© Ê© Ô©à© ÷©ª ª)ª -?ªJª_ªgªpªxª ªžª -¦ª±ªʪЪتõª«« -!« ,« 9«G«\«p«ƒ«ž«µ« ¾«Ì«Ò«׫Ý«$ó«¬*¬>¬M¬\¬d¬ i¬ v¬ -ƒ¬ -Ž¬™¬ ©¬³¬¬Û¬ù¬­­ -%­ 0­<­N­ b­ l­v­­ ­,­Ê­Þ­õ­)®<®T®Y®h®o®€®B“®AÖ®¯¯.¯ >¯K¯]¯e¯„m¯ò¯° ° -°°4°T°"s°!–°¸°Ñ° é° ó°ý° ± ±*±V2±+‰±(µ±Þ±"ä±² ²)²C²%[² -²Œ²”²£²·² -DzҲᲠê²ø² ³ ³$³ *³7³<³L³i³‡³™³ -Ÿ³ª³²³ -³ͳ Ö³ä³ë³ ´´ )´!5´W´ f´t´´–´?ž´Þ´í´õ´ µµ6µ¡Sµ4õµ*¶3¶-;¶ i·s·|· Œ·#–·-º· è· ô·þ·¸¸¥&¸̸à¸ô¸ ý¸ -¹¹¹/¹ G¹Q¹U¹ f¹ p¹!z¹ œ¹ª¹±¹ ¹¹ǹ ܹè¹ -û¹ºº4º9º ?º!Lºnº!Œº#®º Òº9ߺU»=o»<­»=ê» (¼4¼8¼=¼(B¼,k¼ -˜¼£¼J¹¼ ½½ ½ -½:½U½ o½;{½·½ ƽ ӽ߽ ù½¾ ¾ %¾1¾9¾ W¾a¾|¾™¾«¾¿¾+Ò¾þ¾¿ ¿ !¿ .¿ :¿ F¿R¿g¿~¿6–¿Í¿Õ¿ Ü¿7é¿!À?ÀTÀ[À jÀ wÀƒÀ•À ³À¿ÀÔÀÚÀ -àÀëÀðÀ ÁÁ -(Á 3Á?ÁQÁ4jÁŸÁ¼ÁÏÁìÁEÿÁ E SÂ`Âx ~ ŒÂ ˜Â -¤Â¯ÂÌ -ÔÂßÂèÂïÂà - ÃÃ)à 9ÃFÃaÃuÃà £Ã¯ÃÆÃÝÃôÃÄ*Ä CÄ QÄ^ÄsąĕįÄÉÄãÄþÄÅ=/Å6mÅS¤ÅJøÅ CÆMÆ^ÆmÆ ‡Æ“ƢƷÆÊÆ ÞÆêÆÇÇ)Ç?ÇYÇtnjǴ Ç)UÈNÈÎÈKâÉ=.ʃlÊ*ðÊ?Ë`[Ë2¼Ë¯ïËŸÍ4¢Î/×κÏÂÏÊÏÐÏ×ÏßÏïÏÐÐ$Ð 9ÐEÐUÐ fÐsÐ ˆÐ–ШÐÇÐÜÐìÐûÐ Ñ%Ñ9Ñ>Ñ+DÑpÑvÑ‡Ñ ŽÑ›Ñ ¢Ñ¯ÑµÑ¼ÑÄÑ ÍÑ8ÚÑvÒŠÒ‘Ò —Ò!¸ÒÚÒòÒÓ)ÓBÓ_Ó|ÓƒÓŒÓ ÓºÓ ÁÓ ÎÓÚÓãÓ ìÓøÓ Ô#Ô 6Ô DÔNÔ]ÔqÔ -vÔ -ԌԜÔ1¥Ô7×Ô5ÕHEÕ;ŽÕ!ÊÕÁìÕæ®Ö¨•×*>ØBiÙæ¬Ù“Ú²Ú‚4Û·Û ½ÛËÛ5ÒÛ¯Ü1¸Ü0êÜ0Ý1LÝC~Ý€ÂÝSCÞ,—Þ2ÄÞ ÷ÞAàAZà*œà«Çàísá aâÎnã£=äªá䧌å§4æÜæ˜ßçGxèèÀèï©é2™êÌê æê-ðê -ë)ë<ëBëGë Vëcëuë …ë’ë˜ë ¯ë¹ëËëßëïëþëì'ì7ì Fì -Sì^ìcì;lì;¨ì¡äì †íí •í¢í¨í°íÂíÉíÑí3Úíî$î3î9î@î]îfîFoî¶î ÖîKâîQ.ï$ð5>ðPtðGÅð- ñj;òo¦òeój|ó~çópfôo×ôwGõ<¿õ?üõ><öt{ötðö`e÷‰Æ÷PøÐøÖøÜøãøõø ù6ùoKù»ùÂù#ÊùÈîùG·úÿúûû(û0û -9û DûPûbû jûxûû‡û –û¤ûªû­û Ìû íûúûüüü &ü4üDü Gü Qü^üdükü süü ‚üŒü“üœü¥ü¨ü®ü·üÍü åü -òüýüý - ýýýý -"ý-ý4ý9ý5=ýsý …ýýŸý¤ý«ý ³ýÁý Öý÷ý -þ "þ.þ2þ:þ?þEþKþ Rþ \þfþlþ sþþ.”þÃþ@àþ!.:Si5½Kó9?ZyoÔCDmˆ>ö558kL¤Bñ/48d-:Ë76> -u -€‹ -›¦· Ê -Ôßè!$ :0Du‘ª ÄÎÕÜ á ëLù{F@Â9=FU fr „’¬Â × ãï  - #A 0e – ² Ë Ó í  - -( -B -U -j -} -™ - ² -¿ -È - ß -!ì -   - # $* /O + « ° ¿ Å Ø  Ý ê ñ   ? JT 6Ÿ Ö å ü  -%<N_h‡3œ&Ð÷û - '! IU[ bo Ž œª¼2Í '/@P_w†‹!”¶ÉGÒ26M9„3¾`òSr2„·EÑ&6]} µ -¿ Ê Øåÿ%=C Y#g#‹¯¾ÅÌÜö þ+ ?78w8°3é3$Qv5)Æð R,h*è)9=9w*±Ü?í-FW`u z†¦.½ìò)-/ ] i u ‡‘°ÀÙñ   %2´ ¼Ê Óà!þ! B U_q!ƒ¥0µæ01%L$r,—)Ä#î2FY r)“½&Öý2:%Y  !š -¼ ÇÓäó9ü 6 C K ] c j r 6y #° Ô é !!+!=O= k=w=Ž=¥=Ã=É=Ú= é=3õ=4)>^>q>z>‘>¥>"º>Ý>õ> -?(?+D?p?3‹?-¿?í?@:%@ -`@k@|@*Œ@ -·@ÿÂ@ÂA ×AáAèAûA BB4 BUBjB}B ”B ¡B®B ÍBîBCC/C 7CCC[CvCECÅC5ÌCDD#D3DHIHZH -sH ~H -ˆH“H¥H#µHÙHìH& -I1IPIoIwIŠI’I¦I=¿I=ýI;J AJ NJ \JhJzJJ‹ŠJK &K 3K AK"NKqK‘K"¯KÒKñKL 0L>LGL[LjL yLb…L1èL2MMM+UMMœM¬MÆM,àM NN#N7N KNWN -^NiNpN€N“NœN­N´NÅNÍNâN O"O1O9OHO OO \OfOmO~O…O œO¦O ½OÉOèO÷OP P(PC1PuP ŠP–P­P#¿P#ãPŸQ.§Q ÖQ âQíîQ ÜRèRðRS S/0S -`SkSqSySS¯–SFTUTqT zT†TT’T¬T -¿TÊTÎTßT -èT!óTU +U 5U ?ULU`UsU ‡U•U©UÁUÇUÎU'æU&V)5V'_V ‡V@”VfÕV?]V]$f] ‹] ˜]¦]º]9Î]#^,^!C^e^?x^¸^ Î^Ü^ü^ __!_0_?_ -X_ c_o_v_}_Œ_ ”_ _¸_ Ç_Ô_è_ý_` *`6`L`b`!}`Ÿ`¹` Ï` Ý`é`ý`a0aNa$kaa°a!Êa<ìa<)bNfbMµbc -c c*cAc IcWciczc ‰c$–c»cÏcéc$d$&dKdgdØ~d4WepŒeýeLg;ig¬¥g2Rh@…hVÆh?i -]ihkIƒlAÍl¦m¶m¼mÂmÉmÒmám -ómþmn ,n:nQnkn|n“n!¬nÎnîn -o #o0oBo[o no -xo6ƒoºo Ào Îo Øoæoïoþop ppp:,pwgpßpçpðp q'qBq]qzq!–q)¸qâq -êqõq r&r8rGrVr_r hrur„r‹r§r -ÁrÌrárör ür ss+s30s=ds7¢sNÚs?)tit§}tî%užvg³vNxÅjx0yšLy–çy~z ƒzz.’zÁÁz,ƒ{+°{)Ü{,|M3|•|]},u}>¢}á}8~6¸~'ï~‹¡£ŸE€™å€g†çzn‚|邲fƒ„O©„ßù„Ù…4Ú†‡%‡$*‡O‡U‡p‡ v‡€‡‡¢‡%»‡á‡õ‡û‡ˆ%ˆ9ˆNˆaˆ!wˆ ™ˆ§ˆ¸ˆ -Lj Òˆàˆäˆ-íˆ>‰±Z‰ ŠŠŠ5Š >ŠHŠ`Š iŠ uŠ9Š»ŠÓŠ -èŠ óŠÿŠ ‹&‹@.‹o‹‹8œ‹bÕ‹”8Œ.ÍŒCüŒ`@R¡[ôtPvÅ{<Œ¸ƒE‘£É‘vm’€ä’?e“@¥“Aæ“s(”‰œ”b&•‚‰•‚ ––––ž–§–½–Ï–2ß–m—€—†—*—¾¸—Pw˜*Ș ó˜ ™ ™™™.™@™X™`™p™w™€™ ’™  ™¬™¯™Í™ ê™ô™ü™ÿ™š%š4šCš Eš Oš ]šgšoš uš‚š…šš“š›š£š¦š -®š¹šК æšôšüš › ››› ›$›5›:›A›FE›Œ› -¨›³›Å›Ë› Ò›Þ›ñ›)œ(0œ Yœ -cœ -nœyœœ„œŠœ‘œ -™œ -¤œ¯œ¶œ¾œÍœ2ãœ.ž,`xJ®VgÝ –µ=ýe±áúna\ÅU(‡læ†<òÐéüêãŠ7eUURç®&t„yœm¦>dÍÐÇx—=9“À$Þ1ö÷&çoþó–å¸Õ¡øíM¯Ù^Ìsuq°|Þû‹ôÏœMŒª¹“GÜÉž¤Å -ð)ÎÖf†I¼­¤ùME:FÅ Ïk3vÁP誵lP-Y8HIehÀ:=X ºõÍÄ~¦ï•ß²h`¾I*ƒázê…siÅ»‰½‡1­Ë(CSQ7&L<«8cl¡ß0ŒÁØA"ÌpÜî{@šñ÷àdìäP3}šB.eˆD] ÂÛ*n‹ñ;²hN2ž¨jKµ žîÓ¯/,Ÿã7ðÊr 'œ±<hÍZ°Ó‰óëmwûë%Æ; -¢>” -‹—OÚâ)+$È$tEì;áAà™_aŠS¤ÄòÌÏÛVâ9d–A&òÚîœÇ%Qêô^,ÿñ íWõ†ãW•›“éícY®I—„+ù Gotè#¾ÕÇiÔxš} -ÉNŒí ¾È°L}¯63¢ÀÜ€ÑòìÙ¡ T0%fé5ï¿ç@’Nu¤«Îê[ÁY\£Dø æ è¶:’‘Nƒc[ˆÔsœÈùX­ki¿F¨´, úîî1 …tQ|”4juäÅ´‘—[kD™ëÕ¼þµV"0Bûª$Þ~ÔCDÃY”¶½ÍrÚ¸_R´qÐø³~Û.Ä‘‰ -̧ /Ø~ ô'ZUr ÂÓJAS´  è§’›b™ßH€˜×wÿ“¢HàÝûÖ§ ,|.z@ÕÙ1!Ù0¸˜Ÿ+ ö㮻嫘v¨®ÓÀw^ ?ˆ½gV54Á7¶i"›ŽN‹ÜrM!ÿ]E  REÖT‚ËàÉ8YBºµ‚@6J²ý-m¸ÊЯy›\qâï¿Ò³ƒ4}‘¥£åL׫j?þÎ9ñá°Žú>°ÒvUˆ{åýó ·–Ää±$ OOZ-p5{B!Vàn5üaŒ•óe¹ÇÕö¹»">·i4ôLP((Bz÷…¯h—¥˜XÒ»Þ©[#G[„Û?jc¿_3­ …»/…JáüÚõ-ËÂJË{SæÚŽÆ×ߪ{ʥƼƟþ]uå¬ð:QÑCgëLìCÊÂÛ¦;×ì¹ÝŠpÍÒ9Wqd6¦£Ïg"„âÖF‚ÿøFÀp”Ω.þ³­t'Èj¬ç Õ+Ý”½ƒ©o7žca2ªOT´Øo³Km¤Ø4x|~P£™'¾öú¡©?y2dv!Ýfâ=ô·Xgü`D¼º&kr}§#·Æ¹¢Î**‡“!;²Ø`бz™uy8¥|¥Rn%lb<ÏÄÇéb2FkŸælÈH6nx˜óqQÃÒ†)¬fÜ÷)Ã%wwÑŒ¸HšÊÓ^ð‹ŽèT¨š+]'•X «p2é_Eù¼ÞŠ@‚Ay(çí^‡·©KK§‚IˆC„ã¿ñ/Ñb\¢]õäsïÖZŸ1†‡ ðmë#½ºK¶’×aÙæòßf‰93‰Oº¡É±S>6³Ô-#Ë/¬¨WM€›GÌvZ²=T¬Š:zb€ÑR*`äêŽ<É–s8?)5€‘W¶’¦oÁ0_Ôý\G -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d layers%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(invalid UTF-8 string)(none)1 Layer1 layer<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!About The GIMPActive FiltersAdd Alpha ChannelAdd AnchorAdd ChannelAdd GuidesAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to SelectionChannel:ChannelsChannels MenuChoose Stroke StyleClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColumns:Con_trast:Configure Color Display FiltersConfigure GridConfigure Image GridConfirm Image SizeConfirm Text EditingConnect StrokesConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCubic (Best)Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:DashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete AnchorDelete Layer MaskDelete SegmentDelete TemplateDelete saved options...Delete the selected templateDelete this imageDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo you really want to reset all tool options to default values?Document HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFile OperationsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with FG ColorFill with PatternFill with TransparencyFill with WhiteFill with a color gradientFill with a color or patternFilledFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip the layer or selectionFlipping...Float SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide 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: - -%sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output 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" -(%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': -%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: - -%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' -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 -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. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform 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 -did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-03-20 23:13+CET -Last-Translator: auto -Language-Team: Croatian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: TransDict server - -Neispravna opcija "%s" - -KoriÅ¡tenje: %s [opcija ...] [datoteka ...] - - --debug-handlers Omogući debuggiranje ne-fatalnih manipulatora signala. - --display Koristi navedeni X zaslon. - --dump-gimprc Daje gimprc datoteku s uobiÄajenim postavkama. - --no-cpu-accel Ne koristi CPU accelerations. - --no-shm Ne koristi djeljenu memoriju izmeÄ‘u GIMPa i njegovih prikljuÄaka. - --pdb-compat-mode - Postupovni mod kompatibilnosti baze podataka. - --session Kristi neku drugu sessioncr datoteku. - --stack-trace-mode - Traženje pogreÅ¡aka za kobne signale. - --system-gimprc Koristi neku drugu gimprc datoteku. - --verbose Prikaži poruke pri startu. - -b, --batch Izvodi naredbe u batch modu. - -c, --console-messages Prikaži upozorenja u konzoli umjesto u dijalogu - -d, --no-data Ne uÄitavaj kistove,gradijente,palete - -f, --no-fonts Ne uÄitavaj pisma. - -g --gimprc KOristi neku drugu gimprc dat. - -h, --help Prikaži pomoć . - -i, --no-interface Radi bez korisniÄkog suÄelja. - -s, --no-splash Ne pokazuj startni prozor . - -v, --version Prikaži verziju programa. -%d slojeva%d slojeva%d x %d piksela%g x %g %s%s kopija kanala%s kanala u odabir%s poruka%s kopiraj%s maska%s%sKlik: proÅ¡iri odabir%s%sPovlaÄenje: pomakni i sažmi(%0.3f, %0.3f, %0.3f)(Nijedno)(Ova konzola će se zatvoriti za deset sekundi) -(Neimenovani meÄ‘uspremnik)(Neimenovani Predložak)(neispravan UTF-8 string)(nijedan)1 Sloj1 sloj<%s><>Za optimalne performance GIMP-a,neke će te postavke morati podesiti.GIMP - GNU program za obradu slike -Autorska prava (C) 1995-2000 -Spencer Kimball, Peter Mattis i GIMP razvojna ekipa. Gimp datoteka sa savjetima nije mogla biti procesuirana!ÄŒini se da VaÅ¡a datoteka sa savjetima nedostaje!O GIMP-uAktivni FiltriDodaj Alfa KanalDodaj sidro/Dodaj Alfa KanalDodaj vodiÄeDodaj Horizontalni vodiÄ/Dodaj Masku Sloja...Dodaj Masku Sloja...Dodaj StazuDodaj potezDodaj Sloj TekstaDodaj Vertikalni vodiÄDodaj tekst u slikuDodaj tekst u slikuDodaj trenutnu boju u povijest bojaDodaj odabrani filter na listu aktivnih filtera./Dodaj u trenutaÄni odabirDodajem temu '%s' (%s) -DodatakPodesi svjetlo i kontrastPodesi balans bojaPodesi krivulje bojePodesi razine bojePodesi svjetlo i kontrastPodesi balans bojaPodesi krivulje bojePodesi razine bojePodesi nijansu i zasićenjePodesi razine automatskiPodeÅ¡avanjeUtjeÄe:Dotaknuto podruÄje %sZraÄni kistZraÄni kist promjenjljivog tlakaPoravnanoPoravnanjeKanaliSvi podaci koji ne stanu u Spremnik (Tile Cache) će se zapisati uzamjensku datoteku na disk.Ova datoteka bi trebala biti smjeÅ¡tenana lokalnom disku s dovoljno slobodnog mjesta (par sto MB).Na UNIXsustavu za zapis ove datoteke možete koristiti privremene direktorije ("/tmp" or "/var/tmp").Dopusti potpuno prozirne regije za ispunjavanjeDopusti odabiranje potpuno prozirnih regijaAlfa/Alfa u OdabirAlfa:Odabir PlutajućegKut:AntialiasingIzgledPrihvati Masku SlojaPrimjeni PragJeste li sigurni da želite ukloniti "%s" iz popisa i s diska ?Jeste li sigurni da želite ukloniti predložak "%s" iz popisa i s diska ?Pitaj za potvrdu prije zatvaranja slike bez spremanja.Umetno paraiteUmetno paraite u slikuUmetno paraite u zapisAutor:AutomatskiAutomatsko uÄitavanjePostojeći FiltriDostupni Tipovi:PozadinaPozadinsnka boja podeÅ¡ena na:Pozadina: %d, %d, %dOsnovno popunjeno podruÄje na sve vidljive slojeveOsnovni odabir na sve vidljive slojeveIzaKosinaCrna:MijeÅ¡anjeMijeÅ¡alica: Blenda: Neispravna za indeksirane slikeMijeÅ¡am...PlavaPlava:ZamućivanjeZamućivanje ili izoÅ¡travanjeKanal graniceOdabir RubovaOdabir Rubova od:Svjetlo-kontrastSvjetlo-Kontrast ne rade sa indeksiranim crtežimaUrednik KistaKistoviKist UIKistovi:KistoviIzbornik kistovaKanta za IspunuMeÄ‘uspremniciIzbornik meÄ‘uspremnikaZažariOÅ¡troCMYK_Stupci:Kalibracija RazluÄivosti ZaslonaNe mogu unatrag %sOdustaniNemogu dodati masku sloja razliÄite veliÄine od specificiranog sloja.Ne mogu dodati masku sloja u sloj bez alfa kanala.Ne mogu dodati masku sloja u sloj koji nije dio slike.Ne mogu usidriti ovaj sloj jer to nije plutajući odabir.Nisam moga pretvoriti u paletu s viÅ¡e od 256 boja.Ne mogu kreirati novu masku sloja iz plutajućeg odabira jer isti pripada maski sloja ilikanalu.Ne mogu stvoriti mapu '%s': %sGeneriraj pregledNe mogu izrezati jer je odabrano podruÄje prazno.Ne mogu proÅ¡iriti ${%s} Ne mogu napraviti plutajući odabir jer je odabrano podruÄje prazno.Nemogu povisiti sloj bez alfe.Ne mogu spremiti,niÅ¡ta nije oznaÄenoNe mogu potegnuti prazan kanal.Ne mogu proteguti praznu stazu.Odredi VeliÄinu PlatnaCentar X:CentriranoBoja pozadinePrednji planPromjeni rezoluciju slikePromjeni jedinicu slikePromjeni perspektivu sloja ili izboraKanalUredi postavke kanalaNaziv kanala:Kanal se ne može viÅ¡e snižavati.Kanal se ne može viÅ¡e povisivati.Kanal u OdabirKanaliKanaliIzbornik KanalaOdaberi NaÄin protezanjaObriÅ¡iSpusti KanalKlikni "Nastavak" za prihvat ovih postavki.Klikni "Nastavak" za kreiranje vaÅ¡eg osobnog GIMP direktorija.Klikni "Nastavak" za poÄetak osobne instalacije GIMP-a.Kilkni da spojis ovo sidro sa odabranom krajnjom tockom.Pritisnite za stvaranje novog sidra. (probaj SHIFT)Pritisnite za stvaranje nove komponente za putanju.Pritisnite za stvaranje nove putanjeKlikni za brisanje kotve.Klikni za ubacivanje kotve na putanju. (probaj SHIFT)Kliknite za pretvaranje ovaj Ävor u kut.Klikni za otvaranje putanje.Pritisni za editiranje putanjeKlikni za ažuriranje pogleda -%s Klikni za ažuriranje iako pogled nije ažuriranKlikni-Povuci za promjenu oblika krivulje. SHIFT simetriÄno pomiÄe suprotne držaÄe krajnjih toÄaka.Klikoni-Povuci za pomicanje kotve naokolo.Klikni-Povuci za pomicanje kotvi naokolo.Klikoni-Povuci za pomicanje kotve naokolo. (probaj SHIFT)Klikoni-Povuci za pomicanje kotve naokolo. (probaj SHIFT)Klikoni-Povuci za pomicanje kotve naokolo.Pritisni: odabirKlik: odabir Shift+klik: proÅ¡ireni odabir Povuci: pomakniUmetnuto u najdonji slojUmetnuto u slikuKlonirajZatvaranje ovog tabaBojaBalans BojeFilteri Zaslona u BojiKapaljkaInfo o skupljaÄu bojaBalans boje radi samo sa crtežima u RGB boji.Boja:Vrsta obojanosti za segmentVrsta obojanosti za odabirObojiBalans boje radi samo sa crtežima u RGB bojiOboji slikuOboji slikuMapa bojaStupci:Kontrast:Postavi filtere zaslona u bojiNamjesti mrežuNamjesti VeliÄinu SlikePotvrdi VeliÄinu SlikePotvrdi ureÄ‘ivanje tekstaPoveži potezeKonstantaOgraniÄenjaPokazivaÄi u ovisnosti od konteksta su zgodna mogućnost. ObiÄno su ukljuÄeni, ali troÅ¡e resurse koji će vam možda trebati.NastaviDoprinjeli suPretvoriSpremi SlikuPromjeni sliku u crno bijelu Promjeni sliku u indeksirane bojePromjeni sliku u indeksirane bojeSpremi Sliku u RGBSavijanjeSavijanje tipa %sKopiraj ImenovanoKopiram datoteku '%s' iz '%s'...Autorska prava:Neispravni segment %d u datoteci gradijenta '%s'Ne mogu stvoriti '%s': %sNe mogu stvoriti privremenu datoteku za '%s': %sNe mogu izbrisati '%s': %sNe mogu otvoriti '%s' za Äitanje: %sNe mogu otvoriti '%s' za pisanje: %sNe mogu otvoriti umanjenu sliÄicu '%s': %sNe mogu proÄitati %d bajtova iz '%s': %sNe mogu tražiti u XCF datoteci: %sBrojaÄ:Stvori novi predložakStvorite Novu SlikuStvorite Novi SlojStvorite novi predložakKreiraj novi prikaz za ovu slikuKreiraj novu sliku iz odabraog predloÅ¡kaStvorite novi predložakKreiraj i obradi slike ili fotografijeStvorite i promjenite putanjeStvaranje mape '%s'...IzrežiOdsjeÄak & Promjena veliÄineInfo o OdsjeÄku & Promjeni veliÄineUÄitaj SlikuUÄitaj slojOdsjeÄak ili promjena vel. slikeOdsjeÄak:Samo niÅ¡anKubiÄno (Sporo)Vrsta KrivuljeKrivuljeKrivulje u indeksiranim crtežima ne mogu biti podeÅ¡ene.PrilagoÄ‘enoIzrežiOdreži ImenovanoCijanCijan:CrtkanoDatum:UobiÄajeni izgled u modu prikaza preko cijelog ekranaUobiÄajeni izgled u normalnom moduPredefinirana MrežaPredefinirana Mreža SlikeIzbriÅ¡i odabranoIzbriÅ¡i Masku SlojaIzbriÅ¡i segmentIzbriÅ¡i predložakIzbriÅ¡i izabrane opcije...Ukloni odabrani dio iz predloÅ¡kaIzbriÅ¡i KanalOdzasićenoSmanjenje zasićenja radi samo na RGB crtežima.OpisDizajnStatus UreÄ‘ajaUreÄ‘aji/Dijalozi/Uzorci...RazlikaDirektna BojaOdbaci tekstualne InformacijePrikazNavigacija PrikazaZaslon procedurePrikaz [%0.6f, %0.6f]OtapanjeUdaljenost:Udaljenost: %0.6fZamućivanjeDijeliDa li zaista žeilite poniÅ¡titi sve opcije alata na uobiÄajene vrijednosti?Povijest Dokumenta.DokumentiIzbornik dokumentaSmicanjeSmicanje ili ŽarenjeSmicanje ili ŽarenjePovuci sidroPovic sidroPovuci KrivuljePovuci držaÄPutanja povlaÄenjaPovuci: pomakniCrtaj tintomMože se nacrtatiProcedure crtanjaIzbaci Novi SlojIzbaci Novu putanjuZbog nedostatka nekih pisama, funkcionalnost teksta nije dostupna.želite replicirati oznaÄenoEEK: Ne mogu unatragUreÄ‘ivanjeUredi Postavke KanalaPromjeni boju klanalaPromjeni boju zapisa paleteUredi Osobitosti SlojaNaÄin ureÄ‘ivanjaPromjeni paletu bojeUredi Osobitosti StazePromjena predložkaUreÄ‘ivaÄ proceduraPromjeni izabrani predložakEliptiÄni OdabirIsprazni kanalIsprazni slojIsprazni stazuIsprazni sloj za tekstaPrazno ime varijable u datoteci okruženja %sOmogući prikaz GIMP savjeta prilikom pokretanja.Omogući prikaz natuknicaOgromanUpiÅ¡i naziv stopljene paleteUpiÅ¡i naziv novog gradijentaUnesi ime za ovaj spremnikUnesi ime za ovaj predložakUnesi novi naziv za snimljene opcijeOkolinaMape OkolineIzjednaÄiUjednaÄavanje ne radi s indeksiranim slikamaBriÅ¡i u boju pozadine ili prozirnostBrisaloGreÅ¡ka u GIMP KonzoliGreÅ¡ka u GIMP KonzoliGreÅ¡ka pri spremanju XCF datoteke: %sGreÅ¡ka prilikom parsiranja '%s' u liniji %d: %sGreÅ¡ka prilikom Äitanja '%s': %sGreÅ¡ka prilikom pisanja '%s': %sGreÅ¡ka u pisanju XCF datoteke: %sGreÅ¡ka prilikom pisanja u datoteku '%s': -%sGreÅ¡ka prilikom pisanja u '%s': %sGreÅ¡ka prilikom pisanja u privremenu datoteku za '%s': %s -Datoteka nije stvorena.GreÅ¡ka u pisanju u privremenu datoteku '%s': %s -Orginalna datoteka nije mijenjana.GreÅ¡kePotrebno proÅ¡irenjeIzvezi Stazu..Vidljivost:ProÅ¡irene ulazne napraveFG u BG (HSV)FG u BG (HSV brojaÄ-smjer kazaljke)FG u BG (HSV)FG u BG (RGB)FG u ProzirnoFG/BGFG/GB BojaGreÅ¡ka kod uvoza putanja iz "%s": %sKobna greÅ¡ka u obradi datoteke kista '%s'. ÄŒini se da je datoteka prerano odsjeÄena.Kobna greÅ¡ka u obradi datoteke kista '%s'. Datoteka je neispravna.Kobna greÅ¡ka u obradi datoteke kista '%s'. Nije GIMP datoteka kista.Kobna greÅ¡ka u obradi datoteke kista '%s'. Nepoznata inaÄica GIMP kista.Kobna greÅ¡ka u obradi datoteke kista '%s'. Nepoznata dubina %d.Kobna greÅ¡ka u obradi datoteke kista '%s'. Nepoznata inaÄica %d.Kobna greÅ¡ka u obradi datoteke kista '%s'. Nepodržana dubina kista %d -GIMP kistovi mogu biti sivi ili RGBA.Kobna greÅ¡ka u obradi datoteke gradijenta '%s'. Datoteka je neispravna.Kobna greÅ¡ka u obradi datoteke gradijenta '%s'. Nije datoteka GIMP gradijenta.Kobna greÅ¡ka u obradi datoteke palete '%s'. Nedostaje zaglavlje.Kobna greÅ¡ka u obradi datoteke palete '%s'. Nedostaje zaglavlje. -Treba li ovu datoteku konvertirati iz DOS datoteke?Kobna greÅ¡ka u obradi datoteke palete '%s'. GreÅ¡ka u Äitanju na liniji %d.Kobna greÅ¡ka u obradi datoteke uzorka '%s'. Ne mogu proÄitati %d bajtova: %sKobna greÅ¡ka u obradi datoteke uzorka '%s'. Nepoznata inaÄica formata uzorka %d.Kobna greÅ¡ka u obradi datoteke uzorka '%s'. Nepodržana dubina uzorka %d. -GIMP uzorci moraju biti SIVI ili RGB.IzbriÅ¡i KanalIstovrsni OdabirIstovrsni Odabir na:Rad s DatotekamaPopuni KanaliNeprozirnost ispune:Vrsta ispune %sIspuni Bojom Pozadine/Uredi/Ispuni bojom Prednjeg Plana/Uredi/Ispuni bojom Prednjeg PlanaFG u ProzirnoIspuni sa BijelimIspuni gradijentom bojeKanta za ispunu bojom ili uzorkomPopunjenoNaposljetku, Stopljeni Sloj će biti:Traži Istovrsna PodruÄjaTraženje Istovjetnih BojaIzravnaj slikuZrcaliOkrenuti kanaliOkreni SlojOkreni StazeOkreni Sloj za tekstVrsta okretanja %sZrcali sloj ili odabirOkrećem...Odabir PlutajućegOdabir Plutajućeg za slojOdabiri plutajućegFokusMapaMapeDirektorij za pismaPisama UIPismaIzbornik za PismaZa pravilnu instalaciju Gimpa moram stvoriti -poddirektorij imana '%s' .Prednji planBoje Prednjeg plana & Pozadine.Crno bijeli kvadrati resetiraju boje. Strelice mijenjaju boju.Dvokliknite za odabir boje iz tražilice boja.Prednja boja je postavljena na:Prednji plan: %d, %d, %dSlobodni OdabirProstoruÄnoOdabir Äarobnim Å¡tapićemGIMPGIMP EkstenzijaGIMP PorukaGIMP-PodeÅ¡avanje PerformanciGIMP PrikljuÄakStartam GIMPGIMP ureÄ‘ivaÄ tekstaGIMP-ov danaÅ¡nji Korisni SavjetOsobna Instalacija GIMP-aGIMP nije mogao pokrenuti graficko sucelje. -Provjerite da li postavke za vase graficko sucelje postoje.GIMP nije pravilno instaliran za trenutnog korisnika. -Instalacija za korisnika je preskocena zbog '--no interface' oznaka je upotrijebljena. -Da bi obavili instalaciju za korisnika, pokrenite GIMP bez '--no interface' oznake.GIMP koristi ograniÄenu koliÄinu memorije za pohranu slikovnog podatkazvanog "Tile Cache".Namjestite vrijednost kako bi stao u memoriju. Uzmiteu obzir koliÄinu memorije koju koriste drugi procesi.GIMP koristi dodatnu gtkrc datoteku pa možetesami urediti izgled programa.GIMP verzijaGIMP ce upozoriti korisnika ako pokusa kreirati sliku koja zauzima vise memorije od ovdje specificirane.GamaOpćenitoOpcenito samo upit za 8-bitni display, postavlja minimalni broj sistemskih boja alociranih od strane GIMP-a.Daj RazluÄivost ZaslonaOgromanGimprc procedureUrednik GradijenataUrednik GradijenataGradijentiLijeva krajnja toÄka bojeBoja desne krajnje toÄkePreljev UIGradijent:GradijentiIzbornik GradijentaSivaSivi tonoviZelenaZelena:MrežaSpusti KanalOdabir uvećavanjaOdabir Uvećanja na:vodiÄSljubljivanje vodića i mrežeProcedure vodiljaHSVHSV (%0.3f, %0.3f, %0.3f)Pozicija rukovatelja: %0.6fTvrdoća:Tvrdoća:VisinaVisina:Preglednik pomoćiSistem PomoćiTekstualne procedureHex:Visoki tonoviHintanje mijenja prikaz fonta i prikazuje 'crisp' bitmapu u manjim dimenzijamaHistogramOmjer histogramaPovijestVodoravnoHorizontalno otstupanje prve linije reÅ¡etke; ovo može biti negativni broj.Horizontalni raspon linija u reÅ¡etki. Koliko nedavno otvorenih slika ce biti sacuvani u meniju DatotekaNijanseNijansa-ZasićenjeNijansa-zasićenje radi samo na slikama u RGB bojiNijansa:Vrlo veliko_SlikaInterval:SliÄicaUkoliko dostupno, koriÅ¡teni su naputci iz fonta ali možete preferirati uvijek koriÅ¡tenje automatskog savjetnika.Nedopusteno ime varijable u datoteci okruzenja %s: %sSlikaInformacije...Izbornik slikaVeliÄina SlikeFormat Naziva Slike:PredloÅ¡ci za slikeFormat Naziva Slike:Format Naziva Slike:Izgled prozora za slikeProzori SlikaMaska slikeRezolucija slike je van granica, koristim uobiÄajenu rezoluciju.SlikeIzbornik slikeMogućnosti uvoÄ‘enjaUvezi PaletuUvezi Stazu..Uvezi putanje iz SVGUvezi novu PaletuUvezi Stazu..Inverzna maskaPorastUvlaka:UvlaÄenje prvog redaIndeks:IndeksiranoIndeksirana BojaKonverzija Indeksirane BojeInfo prozorPokreni Masku Sloja u:Pokretanje prikljuÄkaInicijalizacija umetka: "%s" -TintaUlazni ureÄ‘aji:Ulazne Razine:Unesi sidroGreÅ¡ka u instalaciji. Kontaktirajte Aministratora.Instalacija uspjeÅ¡na. Klikni "Nastavi" za nastavak.Brzo OsvježavanjeSuÄeljeInterna GIMP proceduraUnutarnje ProcedureVrsta Interpolacije:Presijeci sa trenutaÄnim odabiromPresjecanje (križići)Presjecanje (toÄke)Neispravan UTF-8Neispravni UTF-8 podaci u datoteci '%s'.Neispravan UTF-8 niz znakova u XCF datoteciGreÅ¡ka u GIMP uzorku "%s"Neispravni UTF-8 podaci u datoteci gradijenta '%s'.Nevazeci UTF-8 string u paleti datoteka '%s'GreÅ¡ka u GIMP uzorku "%s"Nedopusten niz znakova u URINepravilna Å¡irina ili visina. Obje moraju biti pozitivne.InvertirajInvertiraj KanalInverzni odabirInverzija ne radi s indeksiranim crtežimaCentriraj:Kratice za tipkovnicu se mogu dinamiÄki mijenjati u GIMP-u. menurc datoteka sadrži te postavke te pamti postavke za sljedeću sesiju.Možete je ureÄ‘ivatiali najbolje je odrediti kratice iz GIMP-a. Brisanjem ove datoteke GIMP vraća standardne postavke.Kratice s tipkovnicePoloženoVelikoVelicina (256X256)Uvećani pregledZadnja Greska:SlojSloj '%s' nema alfu. Sloj je postavljen iznad njega.Uredi svojstva SlojaVrsta Ispune SlojaMaska slojeva u odabirOdabir SlojaNaziv Sloja:Sloj se viÅ¡e ne može snizitiSloj se viÅ¡e ne može povećatiSloj je već na dnuSloj je već na vrhu Sloj u VeliÄinu SlikeSlojevipomak slojaOpcije Stapanja SlojevaLijeva krajnja toÄka bojeDuljina:Pusti GIMP da obnovi vasu zadnju sacuvanu sesiju na svakom startup-u.RazineRazine za indeksirane slike ne mogu biti podeÅ¡avane.CrtaStanje:Stil linije upotrebljen za reÅ¡etkuLinearniUÄitajUÄitaj KrivuljeUÄitaj RazineUÄitavanje uvida... Lokacija:LogaritamskiTražim datotekeSpusti KanalSpusti Kanal/Hrpa/Spusti SlojSpusti sloj na dnoSpusti StazuSnizi sloj na dnoMagentaMagenta:PovećaloUpravljanje modulima koji se mogu uÄitati Neprozirnost Maske:Matrix:Maks.Dubina:Maksimalna razlika boja Izmjereno:MjeriMjere udaljenosti i kutevaIzmjeri udaljenosti i kutoveSrediÅ¡nji:SrednjeStopi Prema DoljeStopi SlojeviStopi PaletuStopi Vidljive SlojeveStopi Vidljive StazeTekstualne procedurePoruka ponovljena %d putaPoruka opet ponovljenaSrednji tonoviRaznoGlavniNaÄinNaÄin:Promjna odabira bojaIzmijeni nivoe odabranog raspona boja Izmijeni sve boje Izmijeni razmak izmeÄ‘u redovaPogreÅ¡ka u moduluPogreÅ¡ka u moduluModuliPomakniMakni sidroPodigni KanalUkloni vodiÄPomakni SlojPomakni masku slojaMakni StazuPremjesti oznaÄenoPomakni slojeve & odabirePomakni izabrane filtere prema dolje.Pomakni izabrane filtere prema gore.Pomakni:PomnožiNavigacijaNovi KanalNova boja kanalaMogućnosti Novog KanalaNova slikaNovi SlojNova StazaOpcije nove stazeNovi predložakNemam kistova za rad s ovim alatom.Nije vise dostupnoStaza nije pronaÄ‘ena u '%s' Staza nije pronaÄ‘ena u meÄ‘uspremnikuNemam uzorak za ovu operaciju.Nema odabira za izglaÄ‘ivanje.NijedanNiÅ¡ta (Najbrže) ObiÄnoNormallan (128x128)Nije regularna datoteka.Nema dovoljno slojeva za stapanje. Mora ih biti najmanje dva.Nema dovoljno slojeva za stapanje. Mora ih biti najmanje dva.PomakPomak kanalaCrtaÄi pomakPomak slojaPomak sloja maskePomak:na diskuNa multiprocesorskom raÄunalu, ako GIMP nije preveden sa --enable-mp ovo odreÄ‘uje koliko bi procesora GIMP trebao koristiti istovremeno.samo u memorijiNeprozirnostNeprozirnost:Otvori slikuOtvori tekstualnu datoteku (UTF-8)Otvori dijalog za izbor Äetke.Otvori dijalog izbora pisama.Otvori dijalog za izbor gradijentaOtvori dijalog za izbor modelaGreÅ¡ka kod otvaranja '%s'. - -%sGreÅ¡ka kod otvaranja '%s': %sMogućnosti: -Izvor X:Originalna Å irina:Drugi (%s) ...Izlazne razinePrekrivanjePDB greÅ¡ka kod poziva za postupak '%s': -Argument #%d tip neslaganja (oÄekivano %s, dobiveno %s)PDB greÅ¡ka u pozivu: -procedura '%s' nije naÄ‘enaNapuni moju kutiju sa -pet tuceta vrÄeva za piće.CrtanjeMogućnosti crtanja se dijele izmeÄ‘u alataProcedure alata za bojanjeAlat za bojanjeSlikanje Äarobnim kistomoboji oÅ¡tro kutne pixeleSlikaj koristeći uzorke ili podruÄja slikeSlikarski KistPaletaUrednik palete bojaUrednik palete bojaPalete mapePaletaIme paletePaleteIzbornik paleteProcedure parazitaParazitiObraÄ‘ujem "%s" -UmetniUlijepljeni SlojPutanjaUredi svojstva stazeSloj se viÅ¡e ne može snizitiSloj se viÅ¡e ne može povećatiStaza u OdabirPutanjeIzbornik stazeUzorakMape uzorakaUzorci UIUzorciIzbornik uzorakaOlovkaPostotak Å¡irine kistaPostotak:Osobni GIMP DirektorijPerspektivaInfo Tranformacije PerspektivePerspektiva...Odaberi mod %sKapaljka - skupljaÄ bojePikseliPikseli:PriÄekajte malo upravo kreiram VaÅ¡ GIMP korisniÄki direktorij...Molim priÄekajte...PrikljuÄciOkolina za prikljuÄkeMape prikljuÄakaPrikljuÄak ne može otvoriti slikuPrikljuÄak ne može spremiti slikuUmetak se sruÅ¡io: "%s" -(%s) - -Umetak je možda pobrkao unutraÅ¡nje stanje Gimpa. -Najbolje bi bilo da spremite slike ponovo pokrenete Gimp -kako bi bili sigurni.Dodatak je vratio SUCESS ali nije vratio slikuPrikljuÄciPrikljuÄakPrikljuÄci su vanjski programi koje GIMP koristi tijekom rada i isti mu uvećavajumogućnosti. Informacije i pozicija tih programa su takoÄ‘er u ovoj datoteci.Ova datoteka je samo za Äitanje i ne bi je smjeli ureÄ‘ivati niti mijenjati.PoligonalnoPortretPozicija: %0.6fPosteriziranjePosterizacija (smanji broj boja)Posterizacija ne radi na indeksiranim crtežimaPodeÅ¡enjaTlak:PregledPregled je zastarioPreglediProblemi prilikom prevoÄ‘enja tekst parazita za sloj %s: -%s - -Neka svojstva teksta mogu biti pogreÅ¡na. Osim ako ne želite urediti tekst sloj, ne trebate se brinuti oko ovoga.Baza ProceduraBaza podataka o proceduramaNapredakPseudo BojaSvrha:UpitProvjeri nove prikljuÄkeUpit umetku: "%s" -brza maskaRBGRGB (%d, %d, %d)RGB BojaRGB-praznoRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Ponovo p_rikaži "%s"RadijalnoPolumjer:Povisi KanalPovisi Kanal na vrh/Hrpa/Podigni SlojPodigni sloj na vrhPodigni stazuPodigni sloj na vrhIzaÄ‘i iz prikaza slikeStopaMjera:Ponovno prikaži zadnjiPonovo centriraj srediÅ¡njicu u odabiruPonovo centriraj srediÅ¡njicu segmentaPonovno raspodjeli rukovatelje u segmentuPonovo raspodjeli rukovatelje u odabiruPonovi "%s"UÄitavam paletu '%s'. Nedostaje ZELENA komponenta na liniji %d.UÄitavam datoteku palete '%s'. Neispravan broj stupaca na liniji %d. Koristim uobiÄajenu vrijednost.UÄitavam paletu '%s'. Nedostaje PLAVA komponenta na liniji %d.UÄitavam paletu '%s'. Nedostaje CRVENA komponenta na liniji %d.UÄitavam paletu '%s'. RGB paleta je izvan raspona na liniji %d.ÄŒetverokutni OdabirCrvenaCrvena:PonoviReduciraj sliku na fiksni broj bojaReduciraj sliku na 2 boje koristeći pragRegistriranoUÄitaj ponovno Tren_utnu TemuZapamti trenuti alat, uzorak, boju, i kist preko GIMP sesija.Udaljena slikaPodigni KanalUkloni vodiÄpreimenuj slojUkloni parazita iz slikeUkloni parazita iz jedinkeObriÅ¡i putanjuMakni odabrani filter iz liste aktivnih lista filtera.Podigni KanalPreimenuj slojPreimenuj stazuPreimenuj opcije za snimljene alateRenderiraj UdarPonovno poredaj kanalePonovno poredaj slojPonovi zadnjiPonovi:Repliciraj odabirReplikacijaRepliciraj segment gradijentaRepliciraj odabir gradijentaRepliciraj segment Repliciraj odabirResetiraj mogućnosti alataResetiraj izabrani filter Promjena veliÄinePodigni kanalPromijeni veliÄinu slikePromjeni veliÄinu slojaPromjeni veliÄinu stazePromjena veliÄine...RazluÄivost:PotroÅ¡nja ResursaPodeÅ¡avanje resursaPotroÅ¡nja resursavrati spremljene kratice tipkovnica na svako pokretanje GIMP/a.Obrnuti redoslijedPovratPovrati slikuNe mogu vratiti.Nijedna datoteka nije povezana s ovom slikom.Vraćanje na '%s' nije uspjelo> - -%sBoja desne krajnje toÄkeRotirajPovisi kanalRotiraj slojRotiraj stazuRotiraj sloj za tekstRotiraj sloj ili odabirRotiranje...Info o RotiranjuOkrugloZasić.:ZasićenjeSpremiSpremi '%s' kao POV-RaySpremi KrivuljeSpremi poruke o greÅ¡kama u datotekuSpremi slikuSpremi RazineSpremi opcije alataSpremi kopiju slikeSpremi promjenjene tipkovniÄke kratice kada GIMP izaÄ‘e.Spremi postavke krivulja u datotekuSpremi status ureÄ‘ajaSpremi razine postavke u datotekuSpremi opcije u...Spremi pozicije i veliÄine glavnih dijaloga kada GIMPO izaÄ‘e.Mogućnosti spremanjaSpremam '%s' -GreÅ¡ka kod spremanja '%s': - -%sRazmjerSkliraj kanalSrazmjer SlikeSrazmjer SlojaSkaliraj stazuSkaliraj sloj ili odabirSkaliranjeSkaliram...Å kareZaslonScript-Fu mapeSkripteOdaberi sveOdredi mape. za kistoveOdabir po bojiOdaberi BojuOdredi mape okolineOdredi mape za pismaOdredi mapu gradijentaOdredi mapa za moduleBez odabiraOdredi Dir. za PaleteOdredi mape za uzorkeOdredi mape za prikljuÄkeOdaberi primarnu boju za promjenuOdaberi raspon za izmjenuOdredi mape Script-FuOdaberi izvorOdredi temeOdredi mape za temeOmjer zoom skaleOdabir po bojiOdaberi istovrsna podruÄja Äarobnim Å¡tapićemOdabir eliptiÄnih podruÄjaLaso - ruÄni odabir podruÄja slikeOdabir Äetverokutnih podruÄjaOdaberi podruÄja po bojiOdaberi i izreži oblike iz slikeIzaberite koliko puta želite -replicirati oznaÄeni segmentIzaberite koliko puta želite -replicirati oznaÄeni segmentIzaberite koliko puta želite -u koji želite razdvojiti segmente iz odabranogzaberite koliko puta želite -u koji želite razdvojiti segmente iz odabranogOdabirOdabir izdavaÄa :Odabir MaskeOdabir procedure alataOdabir:Odabir: DODAJOdabir: PRESIJECIOdabir: IZMJESTIOdabir: ODUZMISenzitivitetOdredi boju za nadopunjavanje platnaPostavi boje kanalaPostavi prozirnost kanalaOdredi veliÄinu PlatnaNamjesti stavku iskljuÄivo povezanuNamjesti Stavku IskljuÄivo VidljivoOdredi VeliÄinu Ruba SlojaPostavi ime iz _tekstaPodeÅ¡ava gornju granicu koliÄine memorije koja može biti koriÅ¡tena za Äuvanje operacija za poniÅ¡tavanje po slici. Neovisno od ovog podeÅ¡avanja, može se opozvati najviÅ¡e onoliko operacija koliko je podeÅ¡eno.Stavi preglednik koriÅ¡ten od strane sitema pomoći.Postavlja boju popunjavanja platna ako je omogućen naÄin popunjavanja postavljen na korisniÄki odabranu boju.Postavlja vanjski preglednik za koriÅ¡tenje. Ovo može biti apsolutna putanjaili naziv izvrÅ¡ne datoteke koja će se tražiti u korisnikovoj putanji (varijabla PATH).Ako komanda sadrži '%s', on će biti zamjenjen sa URL-om, u suprotnom URL će bitidodan iza komande i odvojen razmakom.Postavlja nivo interpolacije potrebne za skaliranje i ostale transformacije.Postavlja na koji naÄin je prozirnost prikazana u slikama.Postavlja minimalan broj operacija koje mogu biti nedovrÅ¡ene. ViÅ¡e nivoa povratnih koraka (undo level)ostaje dostupno dok broj povratnih koraka ne dosegne zadanu granicu.Postavlja mod pokazivaÄa koji će GIMP koristiti.PodeÅ¡ava veliÄinu "Å¡ahovske table" koja prikazuje prozirnost.Postavlja veliÄinu navigacijskog prikaza dostupnog u donjem desnom kutuprozora slike.Postavlja veliÄinu pregleda u povijesti poniÅ¡tavanja naredbi.NamjeÅ¡ta lokaciju swap datoteke. Gimp koristi "memoriju baziranu na ploÄastoj alokacijskoj shemi" (tile based memory allocation scheme). Swap datoteka se koristi za brzo i lako pisanje na disk i Äitanje sa njega. Treba biti oprezan sa swap datotekom koja lako može postati vrlo velika ukoliko je GIMP koriÅ¡ten sa vrlo velikim slikama. TakoÄ‘er, stvari mogu postati užasno spore ako je swap datoteka stvorena u direktoriju koji je montiran preko NFS-a. Radi ovih razloga, poželjno je staviti swap datoteku u "/tmp".Definira direktorij za pohranu privremenih podataka. Datoteke će se pojavljivati ovdje za vrijeme rada sa GIMPom. Većina tih datoteka će nestati kada se GIMP ugasi, ali neke datoteke će vjerojatno ostati, dakle najbolje je da taj direktorij nije dijeljen s ostalim korisnicima. OdreÄ‘uje tekst koji će se pojaviti u statusnoj traci prozora sa slikom.OdreÄ‘uje tekst koji će se pojaviti u naslovu prozora sa slikom.Definira da li će GIMP kreirati uvide u sve slojeve i kanale. Zgodno je imati uvide u slojeve i kanale ali oni mogu usporiti stvari kada se radi sa velikim slikama. SjeneOblikOblik:IzoÅ¡triIzoÅ¡tri kanalIzoÅ¡tri odabranoStriženjeOdreži sloj ili odabirInformacije o rezanjuStriženje...Pokaži statusnu traku_/Prikaz/Prikaži Ravnala_Pokaži vodiÄePokaži _granice slojaPokaži traku _izbornikaPrikaži iskoriÅ¡tenost memorije Prikaži Savjet i sljedeći putPrikaži Postotak UvećanjaPrikaži omjer povećalaSpusti kanalOdabir SkupljanjaSkupljanje od ruba slikeOdabir skupljanja VeliÄinaVeliÄina:PreskaÄem "%s": neispravna inaÄica protokola GIMP-a.MalenManji pregledUglaÄ‘enoUgladi ruboveMrljanjeRazmaži slikePunoIzvorProredRazmak:Specijalna datotekaPrecizira kao bi podruÄje oko slike trebalo biti crtano. Brzina pomiÄućih crtica u odabiru selekcije. Ova vrijednost je u milisekundama(manje vrijeme ukazuje na vecu brzinu).Brzina:PodijeliSpoji segment jednoobraznoSpoji segmente jednoobraznoSpoji segment jednoobraznoSpoji segment jednoobraznoSpoji segment u srediÅ¡njiciSpoji segmente jednoobraznoPodijeli segmente _ravnomjerno...Podijeli segmente na srediÅ¡njim toÄkamaKvadratStandardnoPokretanje proÅ¡irenjaPokretanje nastavka '%s' -Regija/Županija:StatiÄna BojaStatiÄna SivaStd Dev:StipplesStaza OkviraIscrtaj odabirOduzmiIzbaci iz trenutnog odabiraPodesivo uzimanje uzorakaPredloÅ¡ciIzbornik predložakaPrivremena ProceduraTekstBoja TekstaSloj za tekstTekstualne procedureGIMPAktivni kist. -Kliknite za otvaranje dijaloga kista.Aktivni gradijent. -Kliknite za otvaranje dijaloga gradijenta.Aktivni uzorak. -Kliknite za otvaranje dijaloga uzoraka.Boja pozadine mreže; koristi se jedino za stil linija s dvostrukim povlakama.Ime datoteke "%s" se ne može pretvoriti u ispravnu adresu: - -%sBoja linija mreže.gimprc datoteka se koristi za spremanje postavki GIMP-a. Staze do kistova, paleta, gradijenata, uzoraka, prikljuÄaka i modula su takoÄ‘er pohranjene u ovoj datoteci.Sloj koji ste oznaÄili je sloj teksta, ali je bio promijenjen primjenom drugih alata. UreÄ‘ivanje sloja s alatom za tekst će odbaciti ove promjene. - -Možete ureÄ‘ivati sloj ili stvoriti novi sloj teksta iz njegovih tekstualnih svojstva.U sessionrc datoteci su pohranjeni podaci o tome koji su dijalozi bili otvoreni prilikom posljednje sesije. Možete podesiti GIMP za otvaranje istih dijaloga.PriruÄna memorija za ploÄice se koristi kako bi bili sigurni da GIMP neće uniÅ¡titi ploÄice izmeÄ‘umemorije i diska. PodeÅ¡avanjem ove vrijednosti na viÅ¡e GIMP će koristiti manje prostora za razmjenu,ali će koristiti i viÅ¡e memorije. A obrnuto priruÄna memorija manjeg opsega uzrokovat će da GIMP koristi viÅ¡e prostora za razmjenu a manje memorije.Jedinica koordinatnog sustava kada se ne koristi toÄka-za-toÄku naÄin rada.U unitrc datoteci je spremljena baza podataka vaÅ¡ih mjernih jedinica. Možete dodati neke vaÅ¡e mjerne jedinice npr. palci, milimetri, toÄke itd. Datoteka se prebrisuje svakim zatvaranjem GIMP-a.Okomita razluÄivost slike.Oznaka vrste prozora koja se postavlja za usidrene prozore. Ovo može utjecati na to kako vaÅ¡ upravitelj prozorima iscrtava i postavlja usidrene prozore.Oznaka vrste prozora koja se postavlja za alatne trake. Ovo može utjecati na to kako vaÅ¡ upravitelj prozorima iscrtava i postavlja prozor s alatima.TemaMapa TemaTemeNema dovoljno slojeva za stapanje prema dolje.Uvijek postoji kompromis izmeÄ‘u koriÅ¡tenja memorije i brzine. U većini sluÄajeva,GIMP izabire brzinu umjesto zauzeća memorije. No, ako je memorija bitna, pokuÅ¡ajteomogućiti ovu postavku.Nema aktivnog sloja ili kanala za kopiranje.Nema aktivnog sloja ili kanala za brisanje.Nema aktivnog sloja ili kanala za crtanjeNema aktivnog sloja ili kanala za crtavanje.Trebala bi postojati datoteka imena '%s'. Molim provjerite vaÅ¡u instalaciju.DoÅ¡lo je do greÅ¡ke pri obradi vaÅ¡e datoteke '%s'. Koristiti će se uobiÄajene vrijednosti. Sigurnosna kopija vaÅ¡ih postavke je stvorena na '%s'.Ova datoteka sadrži zbirku medija standardnih veliÄina koji služe kao predloÅ¡ci za slike.Ova mapa se pretražuje za predloÅ¡ke slika.Ova mapa je pregledana prilikom potrage za korisnikovim temamaU ovu mapu se mogu spremiti vaÅ¡i osobni uzorci. Datoteka gimprc provjerava ovu mapu prilikom traženja uzoraka i nudi korisniku njegove uzorke uz sistemske.Ova mapa služi za spremanje postavki alata za Krivulje.Ova mapa služi za spremanje postavki alata za Razine.U ovu mapu se spremaju odrednice alata.U ovu mapu se spremaju skripte koje je korisnik napravio ili instalirao. GIMP provjerava ovu mapu uz sustavske mape pri traženju skripata.U ovu mapu se spremaju korisnikovi, privremeni, i drugi nesustavski ili DLL moduli. GIMP provjerava ovu mapu uz sustavske kada traži module koje treba uÄitati.U ovu mapu se spremaju korisnikovi, privremeni, i drugi nesustavski umetci. GIMP provjerava ovu mapu uz sustavske pri traženju datoteka za promjenu umetaka.U ovu mapu se spremaju korisnikovi, privremeni, i drugi nesustavski umetci. GIMP provjerava ovu mapu uz sustavske kada traži module koje treba uÄitati.U ovu mapu se spremaju korisnikovi kistovi. GIMP provjerava ovu mapu uz sustavske kada traži kistove.Ova mapa se koristi za spremanje korisniÄkih gradijenata Ovu mapu GIMP provjerava uz sustavsku gradijent mapu kada traži gradijente.Ova mapa se koristi za spremanje korisniÄkih paleta Ovu mapu GIMP provjerava uz sustavsku mapu paleta kada traži palete.Ova mapa se koristi za spremanje korisniÄkih uzoraka Ovu mapu GIMP provjerava uz sustavsku mapu uzoraka kada traži uzorke.Ova mapa se koristi za privremeno spremanje spremnika za opoziv akcija. Ako se GIMP ubije u ovoj mapi bi moglati ostati datoteke imana: gimp<#>.<#>. Takve datoteke su beskorisne.Ovaj mapa će sadržavati odreÄ‘eni broj važnih -datoteka.Kliknite na neku datoteku ili mapa u -stablu kako bi dobili viÅ¡e informacija o istim.Ovo je udaljenost u toÄkama gdje se ukljuÄuje sljubljivanje vodiÄa i mreže.Ovaj program je distribuiran u nadi da će biti koristan, ali BEZ IKAKVIH GARANCIJA; Äak i bez pretpostavljene trgovaÄke garancije ili prilagodbe za odreÄ‘enu svrhu. Za viÅ¡e detalja pogledajte GNU General Public Licencu.Ovaj program je slobodni softver; možete ga redistribuirati i/ili mijenjati ga pod uvjetima GNU opće javne licence koju objavljuje Zaklada -za slobodni softver (Free Software Foundation); inaÄica 2 ove licence ili, prema izboru -bilo koja kasnija inaÄicaOvo polje unosa teksta je ograniÄeno na %d znakova.Ovaj alat nema opcijaPragPrag ne radi za indeksirane slojeve.Prag:Umanjena sliÄica %d of %dTilt:SićuÅ¡noNaslov i statusMogućnosti AlataIzbornik za opcije alataUkljuÄivanje/iskljuÄivanje alata %sIzbornik sa alatimaAlatiPrenesi prozirnost u maskuTransformacijaTransformiraj kanalTransformiraj pravacTransformiraj slojTransformiraj putanjuProcedure alata za transformacijuTransformirajTransformiram...PrevoÄ‘enje odProzirnostIstinska BojaTipVrsta %sNe mogu dodati masku jer sloj već ima jednu.Ne mogu isjeći ili kopirati jer su odabrana podruÄja prazna.Ne mogu otvoriti swap datoteku za ispitivanje. Kako bi izbjegli gubljenje podataka, molim provjerite mjesto i prava na swap mapi dodijeljene u vaÅ¡im Postavkama (trenutno "%s").NeodreÄ‘enoVratiPovijest poniÅ¡tavanjaJediniceNepoznatoNepoznati tip datoteke IsprazniNeimenovanoBez naslovaKoristi sve vidljive slojeve prilikom smanjivanja izbora ZabiljeÅ¡ka InstalacijeKorisniÄko suÄeljeVrijednostVrijednost:InaÄicu %s za Vas napraviliInaÄica:OkomitoOkomiti pomak prve linije mreže; ovo može biti negativni broj.Okomiti razmak linija mreže.Web preglednikKada je ukljuÄeno, dijalog prati sliku na kojoj radite.Ako je ukljuÄeno, svi alati za crtanje će prikazati uvid u rubne crte trenutno odabranog kista. Kada je ukljuÄeno, slika će postati aktivna kada njen prozor bude fokusiran. Ovo je korisno za upravitelje prozorima koji koriste "klik za fokus".Ako je ukljuÄeno, meniji mogu biti odvojeni. Ako je ukljuÄeno, pritisak na F1 će otvoriti preglednik pomoći. Ako je ukljuÄeno, GIMP neće spremiti sliku ako nije promjenjena od trenutka kada je otvorena. Kada je ukljuÄeno, GIMP će koristiti razliÄiti info prozor po pogledu na sliku.Kada je ukljuÄeno, X poslužitelj je propitivan za trenutni položaj miÅ¡a prilikom svakog pokreta miÅ¡a, raÄ‘e nego da se oslanja na nagovjeÅ¡tavanje položaja. To znaÄi da crtanje s velikim kistovima bi trebalo biti preciznije, ali može biti sporije. Na nekim X poslužiteljima ukljuÄivanje ove opcije može rezultirati bržim iscrtavanjem. Kada je ukljuÄeno, mreža je uobiÄajeno vidljiva. Ovo se može mijenjati putem naredbe 'Pregled->Prikaži mrežu'.Kada je ukljuÄeno, vodiÄi su uobiÄajeno vidljivi. Ovo se može mijenjati putem naredbe 'Pregled->Prikaži vodiÄe'.Kada je ukljuÄeno, veliÄina prozora sa slikom će automatski promijeniti svoju veliÄinu, kada s zumira u ili van slike. Kada je ukljuÄeno, veliÄina prozora sa slikom će automatski promijeniti svoju veliÄinu, kada god se promijeni fiziÄka veliÄina slike. Kada je ukljuÄeno, granice sloja se uobiÄajeno prikazuju. Ovo se može mijenjati putem naredbe 'Pregled->Prikaži granice sloja'.Kada je ukljuÄeno, uobiÄajno je da je traka s izbornicima vidljiva. Ovo stanje se takoÄ‘er može promijeniti sa naredbom "Prikaz->Prikaži traku s izbornicima". Kada je ukljuÄeno, ravnala su uobiÄajeno vidljiva. Ovo se može mijenjati putem 'Pregled->Prikaži ravnala' naredbe.Kada je ukljuÄeno, klizaÄi su uobiÄajeno vidljivi. Ovo se takoÄ‘e može mijenjati putem naredbe 'Pregled->Prikaži klizaÄe'.Kad je ukljuÄeno, odabrani kist će se koristiti za sve alate.Kada je ukljuÄen, odabrani nagib će se koristiti ze sve alate.Kada je ukljuÄen, odabrani uzorak će se koristiti za sve alate.Kada je ukljuÄeno, odabir je uobiÄajeno vidljiv. Ovo se može mijenjati putem naredbe 'Pregled->Prikaži odabir'.Kada je ukljuÄeno, statusna traka je uobiÄajeno vidljiva. Ovo se takoÄ‘er može mijenjati naredbom 'Pregled->Prikaži statusnu liniju'.Kada je ukljuÄeno, ovo će osigurati da svaka toÄka na slici bude mapirana na toÄku na zaslonu.Kada je ukljuÄeno, ovo će osigurati da je cijela slika vidljiva nakon Å¡to je otvorena, inaÄe će biti prikazana u omjeru 1:1. Kada je ukljuÄeno, možete u letu mijenjati kratice tipkovnice pritiskom na kombinaciju tipaka kada je odabrana stavka izbornika.BijelaÅ irinaÅ irina:Upravljanje prozorimaPoložaji ProzoraZapisujem '%s' -XCF greÅ¡ka: NaÅ¡ao sam nepodržanu XCF verzija %dXCF upozorenje: verzija 0 XCF datoteke -nije spremila indeksirane mape boja dobro. -Zamjenjujem mapu skale sivežutaŽuta:Usidrive dijaloge možete ispustiti ovdje.Trebali ste dobiti kopiju GNU opće javne licence - zajedno s ovim programom; ako niste, piÅ¡ite na Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA. Morati ćete ponovo pokrenuti GIMP da bi sljedeće promjene doÅ¡le do izražaja:PonaÅ¡anje zumiranja i promjene veliÄine Uvećanje 1:1Uvećaj svePovećajUmanjiFaktor uvećanjaFaktor uvećanja:Faktor zumiranja: %d:1 UvećajPovećalo + & -UmanjiZumiraj:[ Osnovna Slika ]_Antialiasing_Automatsko_B_Funkcija stapanja za segment_Funkcije stapanja za odabir_Svjetlo:_Kistov_C_IzbriÅ¡i segment_IzbriÅ¡i oznaÄenoOkreni segment_Okreni odabirGGradijentHorizontalno:_Nijansa:_Ikona:_UvozOsvjetljenje_M_RuÄno_Ime:_UzorakPregled_R_Ponovi_Ponovi %s_Repliciraj segment..._Repliciraj odabir..._Zasićenost:_Odabir_Vrati_Vrati %sVertikalno:_X:_Y_Y:_Povećanje (%s)bojekopijadpioÄekivan je 'da' ili 'ne' za logiÄku (boolean) oznaku %s, dobio '%s'kobna greÅ¡aka pri analizi skala siveskala sive praznapalacpalacaindeksiranoindeksirano-praznoneispravni UTF-8 nizneispravna vrijednost '%ld' za oznaku %s neispravna vrijednost '%s' za oznaku %s milimetarmilimetaranedostupnopostopicapicaspikselpikselipikseli/%apikseli/%stoÄkatoÄakatips-locale:hrlokalizacija@linux.hrvrijednost za oznaku %s nije valjani UTF-8 string prilikom obrade dijela '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/hu.gmo gimp-2.2.9/po/hu.gmo --- gimp-2.2.8/po/hu.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/hu.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,443 +0,0 @@ -Þ•\ üJƒ Ü•èÇéÇ&ÿÇk&ÈG’È9ÚÈGÉA\ÉNžÉiíÉ<WÊk”Ê@Ë2AË;tËP°ËOÌ2QÌ9„Ì-¾Ì9ìÌ;&Í7bÍ šÍ¤Í -«Í ¶Í -ÀÍ -ËÍ ÖÍâÍòÍ -Î ÎÎÎ -7ÎBÎJÎRÎnΈΞÎ0¥ÎÖÎçÎúÎÏ Ï -"Ï-Ï4Ï<ÏDÏ SÏ aÏ mÏ -{Ï -†Ï ‘Ï žÏªÏ ºÏ ÆÏÒÏ ×Ï ãÏKðÏ…<Ð.ÂÐ1ñÐ!#ÑEÑWÑ^ÑmÑtÑџѶѺÑÍÑ -ßÑ êÑöÑ Ò -Ò#Ò8Ò KÒUÒdÒ -mÒxÒ‡ÒšÒ²ÒÄÒÖÒåÒ*ûÒ6&Ó]ÓpÓÓ¥Ó®ÓËÓêÓÿÓÔ'ÔFÔ[ÔoÔ#ƒÔ§ÔÁÔ -ÝÔèÔùÔÕÕÕ<ÕPÕ XÕ bÕ oÕyÕ‰Õ1žÖ3ÐÖ×××1׋8× -Ä×Ï×é×ÿ×Ø Ø /Ø -<ØGØXØjØzØA‹ØJÍØÙ<+Ù hÙ vÙ„Ù”Ù­ÙÅÙÕÙÝÙâÙ üÙÚÚ1Ú:ÚQÚcÚ tÚ‚ÚšÚ -£Ú®Ú¿ÚØÚïÚ&Û$,ÛQÛXÛ ^Û hÛvÛ}Û–ÛÛ£Û½Û"ÅÛ èÛôÛùÛÿÛÜ -ÜÜ.Ü?ÜSÜ7gÜŸÜ ¥Ü ²ÜÀÜÉÜÐÜ ØÜ åÜñÜ ùÜÝ Ý ÝmÝ‹Ý Ý žÝ ¬Ý¶Ý¿Ý ÜÝêÝúÝ ÞCÞ7RÞ=ŠÞ@ÈÞ6 ßd@ߥßÃß3Ùß à<!à#^à!‚à¤àÁà Ûàçà ýà ááá2áHá`áxáŠáœá¹áÖáóá, -â7âQâYâ lâzâ šâ »â!Éâëâãã1ãFãOã Xã fãsã‡ãŽã•ã ›ã©ã¼ã ËãØã.îã5ä5Sä7‰ä8Áä)úä,$åQåmå…å2¢å ÕåöåæO-æA}æ%¿æ&åæ4 ç1Aç#sç —ç¥ç Áç Íç×çïçèèèè.è -=èHèPè Vèdè zè‡è è²è0Äè õè éé é é ,é9éTéqé+zé¦é¹éÌéÕé åéóé üéê -ê ê#ê$Cêhê{êŠêŸê ¼êÝê÷êë(ë8ë"Mëpë†ë •ë£ë³ë ¼ëÈëÐëRì[ìlì tììœìµìÕì êì"øì"í>íWí`í -rí }í‹í -ªí)µíßí,ùí&î!@î#bî#†î!ªî%Ìîòî.ï@ï GïSïdïxï‹ïžï#´ï-Øïð%ðBðXðnð‰ðžð¶ð »ðÉð -ãð -îð -ùðññ#ñ2ñ 7ñ EñRñbñrñ…ñ”ñ£ñ ªñ¸ñ -ËñÖñ-Ýñ ò òò/òFò JòTòYò_òpòƒò—ò¨ò»òËòÞòõò óó "ó .ó <óIóPóVó%\ó!‚ó ¤ó±óÄó&Üóô ô%ô4ôGô Yôgôvô †ô“ô ¢ô¯ô ¿ôÌôÞô íôùôõ õ;õXõjõyõ -’õ -õ-¨õ Öõâõ éõ÷õÿõ öö -ö 'ö4öGöZösö{öŽö¢ö µöÃöÝö æöðö ÷ -÷÷:/÷?j÷8ª÷ ã÷ï÷ø÷ -ø ø%ø -4ø?øEø -[ø fø tø €ø -ø ˜ø ¤ø -®ø ¹øÅø ÎøÛøïø þø> ù Kùlù|ùŽù¡ù±ùÃùÒùäùúú $ú1ú @úMúRújú}ú–úªúÀú ÐúÚúíúûû 3û -AûLû -dûoû ‡û•û «û¸û ÍûÚûêûü ü "ü -.ü9ü*Jüuü~ü!ü²ü.Éüøüý#ý"Aýdýý& ýÇý Ýýéýýý,þ#3þWþ^þ mþ{þŽþ'¨þÐþ'íþÿ2ÿHÿdÿF~ÿTÅÿ! '4J ]~ •Ÿ -¶ ÁÏ ì +=O Uaj s•(ž$Çì0ò=#6a1˜<Ê?AG7‰9Ácû0_9BÊ= fK>²CñJ5g€ èô $9>P ` jv ˆ • £±ÅÜñ+>Pgw‹§Âßæï ) @ T h  | Š  -  ¨ ¶  »  -È  Ó Ý  í û  - - -* -F - N -Z -j - z -ˆ -  -¼ -Ø -ì -( . 4 ;  C P X ^  -d Oo ¿  -Ñ ”Ü q ‚ › ²  -È  Ó  ß ë  ô . / B U  -d  o  }  ‰ – ›  ª ·  Ï  Ü é ú %u4ª̼ʼncO ³zÀ;ArI¼Õìõ/D&U'| ¤ ° ºÄ Ó áí òü  -<NTl}›¸ÍÜåû  -' 0:AI N [g‚™© -®¹ÎåHí -6 AK[ -cHn!·BÙ 1/aty ~‹’¢ -²½  Î`Ú™;CÕ10K| ‚ œ -® -¹ÄÛëü. F(T -} -ˆH“ -Ü ç -ôÿ ! 0=Sh w „’— Ÿ ¬¸ÀÞå íû€ •¡¶Ðæ  & 4 AKO3›6Ï"+ NXp„ “$ÂÝ ò  !(B+k)—*Á!ì/ PWf*w¢³'Ðø  !  -3 > N d t † • ž ­ Æ Ù  ð !,!=!F!U!n!! ˜!¹!Ô! å!ï!ÿ!"-"!E"g"ƒ"•" œ"©"À"Ñ"æ"##--#[$d$t$‡$‹$ ¥$¯$µ$Å$ Õ$á$3ç$%,%D%T% l% -y% „% %%»%Ú%ú%&'&8& M&[&r& y&…&š&®&½&@Å&'- ';' M'Z' _' m' y'†'¤' «'·' ¼' È'Ô'ë' -()(=( Q( [( g(s( Š(˜(°( É(Õ( -ë(ö( ) !)/) G)S) -i)t)‰)’)š)­)²)º)Ã)Ë)Ý)õ) **.*E* -M*#X*|*•*®*Ä*Ê*Ò*ï*+ +8+@+ G+ U+ -a+ l+ y+‡+œ+°+É+â+ ÷+, ,!,4,O,"f,‰,’,¨, È,Ö,Ü,á,ç,$ý,"-4-H-W- f-r- z- ˆ-”-§- ¬- ¹-Æ- -Þ- é- -ö-. ..*. :. D.N.g.v..£.Á.Ý.ï.ö.ÿ. //1/K/P/ -V/ a/m//“/¦/ ¹/ Ã/Í/Ö/ ç/ ô/ þ/ -0'060H0 Z0 -g0 r0|0 —0 ¤0°0 Ê0 Ö0 â0,î01!.1P1d1{1)˜1 Â1Ï1 ç1 õ12222 -2 92G2BZ2A2ß2ý23 $3.353D3 T3a3s3ˆ33„˜34,4>4F4O4 -T4_4 s44˜4 ª4·4É4é4"5!+5!M5o5‡5 5 ¸5 Â5 Ì5Ö5æ5õ5 ý5 6V6+j6 –6( 6É6"Ï6ò6 7 7 7:7%R7 -x7 ƒ77•7¤7¸7 -È7Ó7 â7ð7 ù78 8 %83898L8 a8 m8 y8‡8&¡8,È8 õ899 -9 -"9-9J9h9‡9Ÿ9²94Ä9ù9 : -::$: -4: ?:L:[: d:r:z:: ž:ª: ¿:!Ë:í: ü: -; ;,;=;X; h;r;ƒ; •;¢;©;;±;?í;-<<<D<X<h<…<¡¢<4D=y=‚=-Š= ¸>Â>Ë> -Û> æ>#ð>?-'? U?a?v? ‹?•??´?½? -Æ? Ñ?¥Ý?ƒ@—@«@ ´@Á@Ê@Ò@Ø@î@ -A -AA2A -BA MA WAeAiAƒA ”A žA!¨AÊA ÎAÜAðA ÿA BB4B;B CBQBfB |BˆB -›B¦B¸B ËBÙB îBúB - CC*CFCcChC nC!{CC!»C#ÝCD D -$D9/DUiD=¿D<ýD=:ExE"~E?¡EáEóE FFFF(F,GFtF„F–F§F -¸FÃFÙFîFJG MGZGiG‚G œG ©G¶GÑG ëG ÷GHH7HGH;aHH·H ÆH ÓHßHùH I I%I 5I CI PI\IdI ‚IŒI§IÄIÖIêIýIJ!J2JEJ`JrJ‡J+žJÊJâJK K K %K 2K>K PK ]KiK#€K ¤K°K ÂKÎKãKúK6LILfLnLuL ŠL7—LÏLíLMMM0MFM UM bMnM€M ”M¡M ¿MËMàMæM -íM -øMN NN-N {žtºžt/Ÿ`¤Ÿ‰  ¡0¡F¡L¡S¡e¡z¡ ‹¡™¡6›¡oÒ¡B¢D¢K¢4S¢#ˆ¢Ȭ¢Gu£%½£Xã£U<¤O’¤â¤ù¤¥ ¥¥ -¥ '¥ 3¥=¥ F¥P¥Y¥#k¥¥ —¥¥¥®¥´¥Ã¥Ê¥Ó¥æ¥ù¥¦¦ &¦0¦ 5¦ C¦Q¦ h¦r¦z¦€¦ ƒ¦¦ ¦»¦ Ú¦û¦ §§§§ =§J§ R§\§m§ p§ |§ †§”§¨§¯§ -¶§Á§ ɧÖ§Þ§þ§ ¨¨¨*¨I¨ X¨d¨ -l¨w¨‰¨ ™¨§¨¶¨ ƨÔ¨ è¨ ö¨© ©!©4©J©Z©l© }© ‰©•©¤©­©¾© Ø© â© -ï©ú©ªª+ª:ªLªfªwªª¡ª³ª ê äª îªøª « -« ««1«@« F«T«d«k«q«x« ‹«˜«›« ¤« ®« -¸« -ëΫç«ð« ø«¬ ¬¬¬!¬'¬.¬5¬=¬E¬ X¬ d¬q¬‹¬ “¬ ¬§¬®¬¶¬Ь߬ -ÿ¬ -­­ ,­ 8­D­L­T­j­ y­ †­’­ •­Ÿ­¤­ª­½­Ø­á­é­ü­® 2® ?®M®S®c®i®p® -x® ƒ®®  ® ®® -¼® Ç® Õ® â® ì® ù®¯ ¯!¯ )¯3¯:¯ -@¯K¯ T¯`¯i¯ x¯ …¯‘¯š¯ ¡¯¯¯¿¯Ư ϯ ܯ ê¯÷¯ ° °° +°7°J°P°S°X°`° o° |° ˆ°•°ª° ½°Ê°аÙ°ê°ý°±(!±J±R±[±q±‰±›±4µ±1ê±/²L²b²r²’² š²§²­²Á²#Ò² ö²³6³=³M³"]³€³ -ˆ³“³¥³¶³½³Ƴܳ í³ù³´´´*´?´ -X´ -c´ -n´y´ ´´“´£´©´°´ -дÛ´ì´ò´ -û´µ µµµ/µEµTµ \µiµxµ|µ‚µ…µ”µ˜µ -žµ©µ°µµµ5¹µïµ ¶ ¶¶ ¶'¶ /¶=¶!R¶ t¶ •¶¶¶ -Ö¶ á¶í¶ô¶ø¶·· ·· · "·,·2·9· @·N·.a··8­·æ¸0¹}6¹W´¹@ ºfMºH´ºSýºwQ»>É»v¼J¼@ʼC ½]O½k­½>¾:X¾=“¾HѾH¿5c¿ ™¿£¿ -ª¿ µ¿¿¿ Ç¿ Õ¿á¿ñ¿ -À ÀÀ&&À -MÀ XÀeÀ*nÀ+™ÀÅÀÛÀ2ãÀÁ+Á >ÁJÁ#SÁ wÁ…ÁÁ–Á -ŸÁ ªÁ ¸Á ÄÁ -ÒÁ -ÝÁ èÁ õÁ ! -Â9Â>ÂPÂgdÂÌÂ/NÃ6~õÃÕà óÃÄÄ+ÄGÄWÄ uÄÄĸÄÒÄ"èÄ Å$Å$?ÅdÅÅ•Å®ÅÄÅØÅ%óÅÆ8Æ XÆyÆ’Æ3«ÆAßÆ!Ç<ÇYÇ wǃÇ% ÇÆÇäÇÈ!È=È[ÈwÈ3’È)ÆÈ!ðÈ -ÉÉ -6ÉAÉXÉ+gÉ)“É -½É -ÈÉÓÉãÉôÉX ÊAdËB¦ËéËÌ( Ì6̸<Ì õÌ Í"Í >Í _ÍmÍ ~Í ‹Í—Í°ÍÊÍåÍEþÍIDÎŽÎS¨Î üÎ -ÏÏ#2Ï$VÏ{Ï•Ï žÏªÏÅÏ$ÞÏ%Ð)Ð@Ð\ÐpЅСР-¹ÐÄÐ ÍÐÛÐêÐÿÐ=Ñ>QÑÑ ™Ñ £Ñ ¯Ñ½Ñ$ÅÑêÑ ùÑ1Ò9Ò1IÒ{ÒŒÒ‘Ò—Ò Ò ºÒÄÒÙÒ(ñÒÓE.ÓtÓzÓ‹Ó ›Ó¼ÓÃÓ ËÓ -ÙÓ äÓîÓ þÓ Ô"Ô”8ÔÍÔÒÔ ãÔ -ñÔ üÔ% Õ/ÕEÕ]Õ*eÕOÕTàÕQ5ÖC‡ÖDËÖp×&×(¨×4Ñ×ØKØ4iØ*žØ.ÉØ&øØÙ 3ÙTÙcÙrÙ‡Ù&§ÙÎÙ"îÙ'Ú 9Ú,ZÚ(‡Ú(°ÚÙÚ=øÚ.6ÛeÛnÛ†Û'•Û!½Û ßÛíÛ -Ü$)Ü#NÜ#rÜ –Ü - Ü«Ü¼Ü'ÑÜùÜ þÜÝÝ$%ÝJÝdÝ'uÝIÝKçÝH3ÞN|ÞEËÞJß5\ß/’ß1Âß)ôß\à/{à*«àAÖàláA…á,Çá/ôáF$âKkâ1·âéâ0ã2ã HãRãpãƒã Œãšã±ãÌãÛãðãùãÿãä -ä:äTähä8xä ±ä ¿äËäÒä áäîäýäå -9å3Dåxå‹å žå¬åÆå Úå äå òå þå - -æ+æ3Aæuææ¡æ¹æ"Øæûæ#ç?çYç#xç0œçÍçèçÿçè ,è6è -EèxPè -ÉèÔè åèóè- -é#8é&\éƒé¢é,¶é,ãé ê 1ê;êQêhê$~ê -£ê7®ê%æê> ë#Kë)oë)™ë'Ãë/ëë6ì+Rì0~ì¯ì¶ìÉìáìúìí*í(Cí2líŸí2¸í*ëíî ,î!Mîoî ‹î •î/¶îæîöîï2ï KïWï -hïsïŽï ï´ïÉïãïöï ð ð!ð 7ðDð>MðŒð ”ð¢ð¸ð ÔðÞð õð -ÿð -ñ ñ9ñWñnñ†ñŸñµñÏñæñùñò ò*ò -GòRò Zò7hò, òÍòäò!ÿò:!ó \ó}ó“ó«óÂóØóëóýóôô1ôAôYôjô€ô’ô¥ô#µôÙô"øôõ*õ=õ[õlõR‚õÕõ Þõèõ -øõöö /ö 9ö FöSömö†ö¤ö³öÏöæö÷%÷<÷ E÷Q÷ c÷q÷y÷Y™÷eó÷:Yø”ø §ø³øÍø æøóøù $ù'.ùVùsù„ù™ù°ùÀù×ùéùÿù úú.úGú\úMsú(Áúêúÿúû4ûJûaûyû!Žû°ûËû æûôû ü ü(%ü!Nü%pü&–ü&½üäüþüý(,ý'Uý}ýœý±ý(Åýîý*þ-þ&Iþpþ(†þ¯þÃþ Ýþþþÿ #ÿ0ÿ?ÿ2Sÿ -†ÿ‘ÿ3ªÿÞÿJýÿ6H )Œ/¶æ&3(\ -u€“8¢/Û   -)&:9a*›/Æ(ö#?(cXŒ\åBI R_{*™"Ä ç!ó%EAB‡Êè!<K _k t%‚¨<¸7õ-@5_vGÖDJcQ®S PT N¥ ‹ô F€ -cÇ -h+ Q” |æ Wc Y» \ Šr ý ! $/ T'bŠ"³ ÃÏåø -D"c†¥Ãâ",Od„£"¿ -â í!÷!;Vt­Á×ç ÿ !5Kf~—±$Ãè÷.=Vu”ª.Äóû !8GWXm)ÆðÍù ÇÕäù": R ^5j ¯¾ -ÎÙô!& 9*Fqƒ•­À à…ît‹¥yº4¤Cè îú"ˆ«¿ÈÛ íû5/M0}&®Õäô -8@SY`f“ ª Ë&×þ54.j™ ©!µ× è ö   -    -# . 5 G V !t – ¨ ® '¾  æ '!œ/! Ì! -Ø!ã! ô! "C "%Q"@w" ¸"Â"AÚ"# -8#C#L#^#d## #ž#£#µ#ÄÆ#Ò‹$[^%Bº%>ý%<& A&N&^& -o& -z& …& ¦& ³&#Á&å&%ÿ&%''>' f' p'vz' -ñ' ü' -(( ('(D(Z(!s(•(¯(Å(Þ(ò( ÷() ) -()3)H)O)X) g)±ˆ):*N*k*‡*$§*Ì* Ð*Þ*ò*++h/+@˜+FÙ+ ,5,/H,x,,¦,¹,É,"Ñ,ô,-'-,;-1h-:š-CÕ-;.<U.(’.».PÚ. +/8/P/9k/¥/À/*Õ/00 (040P0_0|0™0³0Ï0ë0 ó011+1A1a1{1‹1 ‘11³1Ã1×1õ1 22 "2/2F2W2l2‹2¤2³2¼2Ë2ä2÷2 3/3J3i[3 Å4Ó4ë4ü4 5#5*5/5>5 S5a5Kh5´5Ê5é5&ü5#676 F6 R6+`6&Œ6³6Î6#ë67$,7Q7p7‰7’7-¡7Ï7ã7ô7Tû7P88X8‘8©8½8Ã8Ì8Þ8"í8 9 9 -(939F9%Z9*€9)«9Õ9ó9: :&:8:N:V:t:“:­:É:#å:$ ;.;H;f;€;œ;#¸; Ü;è;í; < <&< -5<@<W<v<–<#±<'Õ<ý<=3=J=h=#…=©= ±=¿=Û=2÷=*>3><>O>i>‚>>$·>&Ü>(?(,?'U?}?˜?´?Ï?%â?"@0+@\@1k@"@À@È@Ï@Ô@Ú@5ø@.AMAcA sA€AA ˜A ¦A³A ËAØAôA! B-BGBcBxB’B©BÃBßBõB(C1C KC"lC&C&¶CÝCúC DD #D0D!ADcDhD nD zD‡D™DµDÏDêD -óD þD E -'E 2E IIIRIeI|II£I ºIÄI™ÌIfJzJ•J¨J -¼JÇJØJõJ#K*K?K WK,xK7¥K4ÝK.L,ALnL ‰LªL ÊL -×L -âLíLM MM -Mj:M1¥M×M?àM N;(NdN~NNžN!»N&ÝNO - -OOO0OIO[OkO zO ˆO’O¢O »OÉO ÝOêO -P+PCPYP"pP0“P2ÄP÷P QQ,Q;Q.LQ){Q¥QÃQ$ãQ#RB,R#oR -“RžR¯RµR ÅRæR ûRS SS&S"-S PS\S rS*SªSºS$ÊSïSTT=TWThTT”T¦T ¯TF¹TNUOU `UmU…U+œU)ÈUºòUB­VðV ÿVQ W^XoXvX ‡X”X*œXÇX,ÚXYY/YEY -NYYY rY ~Y‹YžYó²Y¦Z»ZÐZ ßZëZ ñZ ûZ [!)[K[ -[[f[€[ ‘[ -ž[©[¿[Ã[Ý[ î[ ø[!\$\3\(N\w\“\¬\Ê\ã\ë\ó\] (]I]c]]] ½]Þ]ó]^-^K^g^&‡^4®^ã^ ì^%ø^0_,O_&|_*£_$Î_ó_`L`€g`Kè`N4akƒaïa@õa]6b”b­bÅbÛbãbìb6òbE)coc„c¡c¸c ÍcÚc"øc!dZ=d ˜d¥d%¾d#äde$e';e(ceŒe¥e$»e#àef$!fEFf0Œf½fÓfçf*ýf(gCgUgmg„g™g°g Ðg Üg ýg h$(hMh`hwh“h­hÉh'éh1i!Ci$ei-ŠiE¸i0þiA/jqj"†j©j Âj"ãj'k.kGk:fk2¡kÔkìk ll(l#ClNgl1¶l -èlól%m*mBAm*„m¯mÄm Ömàmûmn+n=nQnjn€n"n ³nÀn Ún ènòn o o#o ;o \o joxo ‡o•o!o¿oÏo ío4ûo0pPpap#€p!¤p Æpçpýp!q5qNqnqL†q%Óqùq*r$=rbr}r ’rD³rfør_sts‹sšs¸sÈsØs ÷stt1tHtatt”t©tÃtÝt'õtu,uÆIuv’v¤v ªv¶vÈv×vêv"w&w Cw*dw$w´wÏwàw ÷wx3x(Rx"{xžx·xÉx!áxyy)?y#iyy§y»y#Õyùy!z+9z%ez‹z §z³z!Äzæz{9{$O{ t{)•{)¿{!é{ |#'|!K|(m|'–|(¾|#ç| }("}$K}p}!…}%§}Í} ë} ~-~J~i~z~$”~4¹~î~06Rn%…«(ÊAó;5€eq€R×€#*N$l ‘µÓæ‚1‚#I‚ m‚{‚”‚©‚¼‚Ò‚0ႃ).ƒXƒ8tƒ%­ƒ.Óƒ-„.0„,_„!Œ„ ®„Ï„ë„… …,9…-f…É”…<^†•›†c1‡_•ˆKõˆ¥A‰.ç‰ïŠð‹>÷‹6ŒP¶ŒZLb¿¯«oŽFLb‘H¯‘åø‘Þ’ -í’ø’þ’““3“ L“X“n“‡““¯“!Γð“ ””$”N4”ƒ”Ÿ”º”!×”ù”#•<•V•%s•,™•Æ•#å• –#–6>–u–’–©–Ç–'â–" -—8-—*f—‘—®—!Ë—*í—$˜=˜5]˜&“˜º˜И+é˜$™":™*]™ˆ™™¦™¾™1Æ™ø™þ™šš ,š8š"Jšmš ˆš -•š š -¨š ³š¿šÑš9âš—› -´›¿›Ù› ò›0ü›&-œ -Tœ1_œ3‘œ#Åœ'éœ(%:)`,Š·ÀÖ Ýç!ž #ž-ž=žOžež zž„ž“žªžÅžãžýžŸ4ŸCŸ3]Ÿ‘Ÿ6®ŸåŸ  2& Y b } ’  © µ ¾ Πå î ý ¡1¡ 9¡F¡ Y¡g¡{¡Ž¡C•¡GÙ¡U!¢Cw¢E»¢G£UI£’Ÿ£?2¤r¤튤x¥–¥¨¦¾Æ§·…¨=©eOª<µªò«²¬£Ä¬h­n­~­:†­8Á­Êú­<Å®:¯;=¯Iy¯7ïIû¯ E°_æ°8F±T±•Ô±Fj³E±³<÷³Ð4´ûµ¶ÿ·®¸ÅÀ¸³†¹­:ºe身N¼jú¼e½Íy¾;G¿:ƒ¿i¾¿(À71ÀiÀxÀ˜À°ÀÇÀÐÀÖÀèÀÁ -žÁ©ÁºÁÌÁâÁøÁÂ(Â?ÂN l yÂ…Â -—¢Â³ÂvÄ‡Ä  Ä®ÄÆÄßÄõÄ Å*ÅJÅ`ÅxÅ “šżŠÍÅÚÅêÅÆÆ'Æ -.Æ"9ÆJ\ÆB§ÆBêÆß-ÇS ÈeaÉÇÉ ÚÉçÉÊÊ -0Ê;Ê$RÊwÊ †Ê ÊCšÊ'ÞÊ"ËG)Ë+qË$ËÂËÞË'þË#&ÌJÌbÌvÌ~Ì‡Ì›Ì®Ì ·ÌDÄÌ& Í 0Í <ÍIÍ PÍ ]Í jÍ vÍ‚Í•Í3¥Í0ÙÍ -ÎÎ2(ÎX[ÎO´ÎtÏÒyÏÕLÐ6"ÑVYÑ°Ñf0Ò¨—Òg@Ô„¨Ô•-Õ{ÃÕy?Öž¹ÖŠX×ã×›qØQ ÙY_ÙQ¹Ù Ú‘œÚY.Û‹ˆÛ»ÜÐÜ9×Ü Ý Ý *Ý8ÝTÝ eÝsÝ2uÝ–¨Ý?ÞAÞHÞ(PÞ,yÞǦÞYnßÈßèßmhàqÖà/Háxá ‡á -•á  á®áÁáÕá äáðá ÿá â@â -_âj⠇⠕â¡â ¶âÀâ Ñâ!òâã&ãDã^ãnã€ã •ã£ã -¾ã Éã ×ãäãçãöãä%ä"Dä gä qä}ä„ä%ä ³ä ¿äÉäØäôä ÷ä åå%!å Gå -Qå\ålåuå†å.å ¾å Êå -Øåãå!þå! æBæSæ Zægææ™æªæ¾æÒæãæÿæç!ç4çHç!\ç~ç‘ç¨çºçÑçåçöç -è%è DèPèaè pè~è,–èÃèÛè*ûè&é,@émé…éžé4µé êéøéêêê&ê9êVê oê|ê’ê¬êµêÄêÕêåêþê ë ëë'ë8ë&Lë sëë -ë›ë £ë ±ë ½ëÇëÍëÔëÚë âëðë -ì ì#ì =ìKìSìYì aì$kì ìžì ½ìÉìâì ñì ýì - í í$ íEí`í{í˜í›í ¤í±í!¸íÚíöí îî(/î7Xîî˜î°î ¶î ÄîÒî Ùî -åî ðîþîï"ï 5ïAï Pï ]ïkï -|ï‡ï –ï¢ïªï¼ïÁï ÑïÞïòïðð&ð8ð?ð HðVðnð Œð˜ð Ÿð ­ð¹ð ÉðÓð íðûðñ"ñ -5ñ@ñCñHñPñfññžñ,¼ñ3éñò4ò ;òGò]ò{ò“ò=©òçò ÷òóó 7ó,XóS…ó@ÙóDô(_ôˆô—ô -¶ôÁôÑôÚôúô<õ'Uõ+}õ©õ¹õÒõ8íõ &ö 3ö@öYöoö vö ƒö!¤ö -ÆöÑö Øöåöþö ÷=÷ Y÷e÷ n÷x÷÷“÷š÷©÷ ²÷&¾÷å÷ô÷ øø.ø=ø -EøPøUø!tø–ø ¨ø¶øÇøÖøÚøãøæøõø ùøùù ù(ùU,ù‚ùŸù²ùËùÔùÝùæù!õù.ú.Fú-uú-£ú Ñú Ýúéúîú -òúýúûûû û %û1û6û -;ûFûXUû7®û%æû[­¬™{qøÈ©0ç7;ù€œ-…}S²¸>6 V6WÊñV¶nÙ“Œé†Â.Ÿ‰eÛr:Û2úâ˜MË®š„¦èÛŠ® Rÿß*#åb6øt­ù¦U”qòí¡l@üfZ/'ËG§=b»k‹¹.½v9Õ¤4 ö\S[Õª}Ã!ìûB,ÂKÜĈRs‰ÞîM0 Î=~¯ÎLú‰ÙäGÓu :—í¥1$'üžËºÅÜ—v$ X^vè!Qdüõ^Fxæ)±» A…Yƒ² ¢V½*[¾ Ƶ£+(ºher©aw1 ‚ÄéÁâ0žiˆò! Ðô¥mœéLóž™RÑÔJ¨Xf^ØM947 ^ÔØÝ¥´ôN Œœzî|"ƒ+°Ùß* ”çê÷n&þ´Þ´0¥-ÿCô-µ—ðš…«¢Uƒæø™E9×ò¶úEM;MÂvù†ó1^åš>öŸÃ=®þnÛÔ­ç]*Ë[ A ‹ë5^~Fzœ {88Þ Ѭá×tS»™àûºWÔáœáÚ”&¥L ÉãS. Lý°WÒ¼C 8 ¼1Ñq’—ËHƒ³¨Áa‚苺ï3oÆUgü¬|?AŸ? %2³~ ³<LÙeÝË#®/èàº5ž—46xå±–æ¯{Ï -€\ÈN”ø·]D 1ð -•!vZ§h‚'È÷¬dãí$€ïÆš("âqä=‰U8Ú…±l< s^,ÚpEä¾O¶u¸§ˆ % ѲàÇø {’½æ£Ð*NÌì23¯á B›m„E›Ž1" h«›¶e÷êKÒéc<søIÐB…·'\ú§"Ù|@  û¿]ïW ëø ]çu7O-Ý–fÉ “gª¨”U¨Ê†@í wJàƒNwAi`plÐXú C«Ù™Ÿi+¹{Y„Ίnl *"¨(·S/ ãWƶÈ?ӈͯym*ŒVoCKTÔšÿpE §Iž9 =<{QíÿšÊ´ï -ßþ Ì•eI×Y@/©¢aö•ÔX# <ñtPGm.HÄiùD/X%uÑÚVØ#äôk‰~Yg3ÆTrF?è|€)0ýC匎L¡íÛPiG°¡‘ñmŸ«!r£ükì¡D©ÕÞ’…]Rk¶ÃŽ A\«L X½G½>2YÌÖ% }I1e,$m+vjɸòÎib4énH—’Š¨›ƒ±ñ–¦9Ç.•AäÕ Ý—§4?FtV ŒÃqþÓR@  ï=I”ýÀí´·û ‘d†G¿`:Þt°c¼žÏE±¡¤ŠJ×dèÝYBQ®®Æ -zdýLð¤[ÍYé(åñN†ÐðA¼Ê÷ö øà\—þŽ,ìju”0ã8vIÀb?àr)3 X¹r«B“H6uÇÖ´TEa­v&])úd& ÷Ä•‹FÐ(ÔM×ð厑 J‚O ¨#Qo@Ìh™;8O Ë ÖÕ„Âü&(mAê°óÛöæ -4‡¡uÎëÓ,ôœj.ž‡‘Zr¬o´kÃÍûèa#Pý `æ±xF¢g›ç0|ˆï7QqÒÝ wñ% §E¡'|Nôà? ª›³JœÈä_¤2Ò£ÅxHuÉÄÏ<£êFP~ùΡÏn¢!3nš4 îob'¸I’Qè%;ª·ëÙ"ýÒ%O/Í twÌ: J Ì~Çs£êÍájB³óÚ#@À j¥Ái+˜ - *÷/¤k¶J? f,; !þ$ ’Ï)s„âÖb*ðR ¾U·¥;?ÏòÆ&sjìÏ߬:›üÎæHªð> ‡óÓïBEN¯Ø©$ÀƒÑC„`ñT $ëÜ‘×êMÏóVH ~¯_eˆ–;ö ~Z 6K Ó= x@݉­Dã Ã/ÈÅp<òY Z¬×ÚSîçƒg+ £:>ë[i lc c¹ÿ[ ˆHT8(ñŽ¦pð2Þ_T†˜‹®Û}O‘kt é T ¾A=2 ]ÈDãPZ–ªBaq†»wò©w…| m„ÜC5-ËZó5 k¢ÿ+Ž1ÒmÚ‚²9í}ûB>Ûb¾ 02Ûî‚ñ³ž˜Á«Ü/·ÁÖ%„Õv:ÃÉ :“"Vy')ÜØÁØ!哸MÙÊVTÄ’Êÿx…ã‚, ²%°Üôl›ÐcðÞ³zÔæcÁÅ‚äHy™°€» œf`hzé M 5 °>šgŸÏæj -<3 AŠª@Ý9€ÇU™WE²=õ9j—±÷LÐ {õp¼”Jöü`I  ÀêÅõ9ßfµ ²îÐ~rCQ ÑF¾çlª!Gsh"‡1'ý<èKÜTýs)P7ì=kq¢ÓÞ"5D¾8íW߇[ú$y “xZÇGùcÖ¯‘dÁ hûCúK·{¥…sôÍ+>¼|Œc1wh7ÑŒ•õIË7ò,‚¹y#óDÚOS@7©%Š/ìÌ–©´ Ÿ(À-’y½Pº`eÙ¸À7'¬aþ;oP4Á½Q²‰é[㿣Ę!Ý:«K J”âNë,ÉÌõ»¦¡ŠD§Õ ±$Î÷#߸ǽ}( š-_z&-h -¿5Í–$õ³7{‹ âáÄ‹¦"' €ý_Ò°) xʈ޵ãÇõ\´ûo^g¾øU)÷N®áyâ) ^²KXµÇGö -n¦àR ?> ÊY ÆK†\ gQžÕ¼»HbûV ëŠÄ5+¼DÖ˜P ][<ºzRCaŽ­\3Âj¹Ó‰Z&• yp¿Uï3¸wO¬¥ŸT–¿4-ØW×Xþáªá_G 3Oùƒ±e «ìäù¢›ØŽÔùߨܕ£ß4Úo¹6Qþ|q© ïÉ}Ñ à&¤¦3rÿ™¤ê¹X ¯œZî®S Œ˜ëÅî;,€Wê}Ö‹¤•;L*ìÎlÕºK‡p.ÂF c¿§º „ד–d¯zÉ MU ¹ö‡o+äˆ:‰8òi\z_‡Òçõ¢¼Y.`¿_ÿb¿0Ê -· _5R0¾ fŠ ç5µâ“]‘SÅ’y¤½OD»fB ˜2‹Iaô\Ÿ`†¸9tÖF>óµ(îÓ8Í&P­¦RJ¨õØx6- µÍ¶­»ÌâÀgÅÅ “ ÇnÀl#dÂt¶p6 Nf}Œ6å­.‘Ò Æ³u€˜2.úÈåSüÉWÈ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2005-01-13 14:02+0100 -Last-Translator: Laszlo Dvornik -Language-Team: Hungarian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Érvénytelen "%s" kapcsoló - -Használat: %s [kapcsolók ...] [fájlok ...] - - --batch-interpreter - A kötegelt parancsok feldolgozására használandó eljárás. - --debug-handlers A nem végzetes hibák szignálkezelÅ‘inek engedélyezése. - --display A megadott X-képernyÅ‘t használja. - --dump-gimprc A kimenetre küld egy gimprc fájlt az alapértelmezett beállításokkal. - --no-cpu-accel Nem használ speciális CPU-gyorsításokat. - --no-shm Nem osztja meg a GIMP a bÅ‘vítményekkel a memóriát. - --pdb-compat-mode - Eljárási adatbázissal való kompatibilitási mód. - --session Más sessionrc fájl használata. - --stack-trace-mode - HibakövetÅ‘ mód a végzetes szignálokhoz. - --system-gimprc Más rendszerszintű gimprc fájl használata. - --verbose A kezdeti üzenetek megjelenítése. - -b, --batch Parancsok futtatása kötegelt módban. - -c, --console-messages A figyelmeztetéseket konzolra írja, és nem párbeszédablakba. - -d, --no-data Nem tölti be az ecseteket, a színátmeneteket, a palettákat és a mintákat. - -f, --no-fonts Nem tölti be a betűkészleteket. - -g, --gimprc Más gimprc fájl használata. - -h, --help Ez a rövid használati leírás. - -i, --no-interface Felhasználói felület nélküli futtatás. - -s, --no-splash Nem jeleníti meg az üdvözlÅ‘ képernyÅ‘t. - -v, --version A verziószám kiírása. -%d réteg%d dpi%d dpi, %s%d réteg%d perc%d másodperc%d x %d dpi%d x %d dpi, %s%d x %d képpont%g x %g %s%p%s csatorna másolata%s csatorna kijelöléssé alakítása%s-üzenet%s másolata%s maszk%s%sKattintás: kijelölés kiterjesztése%s%sHúzás: áthelyezés és összenyomás(%0.3f, %0.3f, %0.3f)(Nincs)(A konzolablak 10 másodperc múlva bezáródik.) -(Névtelen tároló)(Névtelen sablon)(Változó)(tiszta)(érvénytelen UTF-8 karakterlánc)(módosítva)(nincs)1 réteg1 réteg15 fok %s16:1 (1600%)1:1 (100%)1:16 (6,25%)1:2 (50%)1:4 (25%)1:8 (12,5%)2:1 (200%)Kétdimenziós átalakítás...4:1 (400%)8:1 (800%)<%s><<érvénytelen>>Ha szeretné a legjobb teljesítményt kihozni a GIMP-bÅ‘l, néhány dolgot be kell állítania.A GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis és a GIMP fejlesztÅ‘csapat.Nem lehet feldolgozni a GIMP tippfájlt!Úgy tűnik, hogy hiányzik a GIMP tippfájlja!Már létezik "%s" nevű fájl.Hozzá_adás a kijelöléshez_DÅ‘lésszögA GIMP névjegyeMűveletA _fókusszal rendelkezÅ‘ kép aktiválásaAktív szűrÅ‘kAdaptív túlmintavételezésHozzáadásAlfa-csatorna _hozzáadásaAlfa-csatorna hozzáadásaRögzítés létrehozásaCsatorna hozzáadásaSzín felvétele a színtérképbeSegédvonal felvétele: Segédvonalak hozzáadásaVízszintes segédvonal hozzáadásaRétegmaszk hozzáa_dása...Réteg hozzáadásaRétegmaszk hozzáadásaÚtvonal hozzáadásaVonal létrehozásaSzövegréteg hozzáadásaFüggÅ‘leges segédvonal hozzáadásaMaszk hozzáadása a réteghezSzín felvétele a háttérbÅ‘lSzín felvétele az elÅ‘térbÅ‘lRétegmaszk hozzáadásaSzöveg írása a képreJelenlegi szín hozzáadása a színelÅ‘zményekhezA kijelölt szűrÅ‘ hozzáadása az aktív szűrÅ‘k listájához.Felvétel a palettára %sHozzáadás a kijelöléshez"%s" téma hozzáadása (%s) -ÖsszegzésTovábbi bemeneti vezérlÅ‘kFényerÅ‘ és kontraszt beállításaSzínegyensúly beállításaSzíngörbék beállításaSzínszintek beállításaFényerÅ‘-kontraszt beállításaSzínegyensúly beállításaSzíngörbék beállításaSzínszintek beállításaÃrnyalat / fényerÅ‘ / telítettség beállításaÃrnyalat és telítettség beállításaSzintek automatikus beállításaIgazításSpeciális lehetÅ‘ségekHatókör:Érintett terület %sFestékszóróFestékszóró változtatható erÅ‘sséggelAl_fa-csatorna kijelöléssé alakításaIgazítottIgazításMinden csatornaAz összes fájlAz összes fájl (*.*)A program minden olyan, a képpel és a visszavonással kapcsolatos adatot, amely nem fér bele a képgyorstárba, kiír egy cserefájlba. Ennek a cserefájlnak helyet kell biztosítania (több száz megabájtot) egy helyi fájlrendszeren. Unix rendszereken ez lehet a rendszer átmeneti fájlokat tároló könyvtára ("/tmp" vagy "/var/tmp").A teljesen átlátszó területek kitöltésének engedélyezéseA teljesen átlátszó területek kijelölésének engedélyezéseNagyítás engedélyezése %sAlfaAlfa-csatorna kijelöléssé alakításaAlfa:A kiválasztott méretű kép több memóriát igényel, mint amekkora érték meg van adva az "Új kép maximális mérete" adatnál a beállítási párbeszédablakban (jelenleg %s).Animá_cióLebegÅ‘ kijelölés rögzítéseLebegÅ‘ réteg rögzítéseLebegÅ‘ kijelölés rögzítéseDÅ‘lésszög:Ellen-radír %sÉlsimításMegjelenésRétegmaszk alkalmazásaRétegmaszk alkalma_zásaKüszöbszint alkalmazásaRétegmaszk alkalmazásaBiztos, hogy törölni kívánja "%s"-t a listáról és a lemezrÅ‘l?Biztosan törölni akarja a(z) "%s" sablont a listáról és a lemezrÅ‘l?Mint a _beállításokbanMegerÅ‘sítés kérése a mentetlen módosítást tartalmazó képek bezárásakor.Méretarány:Méretarány:ÉlÅ‘sködÅ‘ hozzáadásaÉlÅ‘sködÅ‘ hozzáadása a képhezÉlÅ‘sködÅ‘ hozzáadása az elemhezÉlÅ‘sködÅ‘ hozzáadásaSzerzÅ‘:AutomatikusAz aktív kép _követéseAutomatikus zsugorításKijelölés automatikus szűkítéseAblakméret automatikus módosításaAutomatikus betöltésAutomatikusan meghatározvaElérhetÅ‘ szűrÅ‘kElérhetÅ‘ típusok:Kitöltés háttérszínnel_FényerÅ‘-kontraszt..._TárolókHáttérHáttérszínHáttérszín:Háttér: %d, %d, %dVissza (korrektív)A kitöltés az összes látható réteg alapján történjenA kijelölés az összes látható réteg alapján történjenMögöttLevágottBilineárisFekete-fehérFekete:Színátmenet vé_gpontjainak színe_SzínátmenetSzínátmenetSzínátmenet végpontjainak át_látszatlanságaSzínátmenet: Színátmenet: indexelt képeknél érvénytelen.Színátmenet...KékKék:ElmosásElmosás vagy élesítés_Keret...Csatorna keretezéseKijelölés keretezéseA kijelölés keretezésének mértéke:FényerÅ‘-kontrasztA FényerÅ‘-kontraszt beállítás nem működik indexelt rétegeken.EcsetEcsetszerkesztÅ‘Ecsetek mappáiEcsetek felhasználói felületeEcset:EcsetekEcsetek menüKitöltésTárolókTárolók menüSötétítésSzögletes, levágottKiterjesztés szerintA képnek a lemezen tárolt állapotra való visszaállítása esetén minden változtatás elvész - beleértve a visszavonási információkat is.CMYKK_alibrálás...Szín_pipetta_Oszlopok:Eg_yesítésMonitor felbontásának kalibrálása%s nem visszavonható_Rajzvászon mérete...MégsemSegédvonal elhelyezésének visszavonásaNem lehet a megadott rétegtÅ‘l eltérÅ‘ dimenziójú rétegmaszkot hozzáadni.Nem lehet rétegmaszkot hozzáadni olyan réteghez, amelynek nincs alfa-csatornája.Nem lehet rétegmaszkot hozzáadni olyan réteghez, amely nem része egy képnek.Nem lehet rögzíteni ezt a réteget, mert nem lebegÅ‘ kijelölés.Nem lehet 256-nál több színt tartalmazó palettára konvertálni.Nem lehet új réteget létrehozni a lebegÅ‘ kijelölésbÅ‘l, mert az rétegmaszkhoz vagy csatornához tartozik.Nem lehet létrehozni "%s" mappát: %sNem lehet létrehozni elÅ‘nézeti képetNem lehet kivágni, mert a kijelölt terület üres.${%s} nem bÅ‘víthetÅ‘Nem lehet lebegÅ‘ kijelölést alkalmazni, mert a kijelölt terület üres.Nem lehet nem átlátszó réteget feljebb helyezni.Nem lehet menteni. Semmi sincs kijelölve.Ãœres csatorna körvonala nem rajzolható meg.Ãœres útvonal nem rajzolható körbe.Rajzvászon méreteRa_jzvászon kitöltési módja:Középpont X:Középpont Y:Középre igazítottHáttérszín megváltoztatásaSzíntérkép-bejegyzés módosításaElÅ‘térszín megváltoztatásaKép felbontásának módosításaKép mértékegységének módosításaNyomtatási méret módosításaAktuális réteg vagy útvonal módosításaA rács háttérszínének módosításaA rács elÅ‘térszínének módosításaIndexelt paletta módosításaRéteg vagy kijelölés perspektívájának megváltoztatásaA gyorsbillentyű módosítása nem sikerült.CsatornaCsatorna tulajdonságaiCsatorna neve:A csatorna tovább nem süllyeszthetÅ‘.A csatorna tovább nem emelhetÅ‘.CsatornaszínA csatorna már legalul van.A csatorna már legfelül van.Csatorna ki_jelöléssé alakításaCsatorna kijelöléssé alakításaCsatorna kijelöléssé alakításaCsatorna:CsatornákCsatornák menü_Négyzetek mérete:Körberajzolási stílus kiválasztásaKör_TörlésTörlésCsatorna ürítéseVisszavonási elÅ‘zmények törléseÖsszes szöveg törléseHibák törléseVisszavonási elÅ‘zmények törlése...Kattintson a "Folytatás" gombra, ha egyetért a fenti beállításokkal.A személyes GIMP mappa létrehozásához kattintson a "Folytatás" gombra.A GIMP felhasználói telepítéséhez kattintson a "Folytatás" gombra.A felhasználói telepítés folytatásához kattintson a "Folytatás" gombra.A rögzítés kattintással köthetÅ‘ össze a kijelölt végponttal.Új rögzítés kattintással hozható létre. (A Shift is használható.)Új útvonal-komponens kattintással hozható létre.Új útvonalat kattintással lehet létrehozni.ElÅ‘nézeti kép létrehozásához kattintson ideA rögzítés kattintással törölhetÅ‘.Újabb rögzítést kattintással lehet beszúrni az útvonalba. (A Shift is használható.)A csomópont kattintással tehetÅ‘ csúcsossá.Az útvonal kattintással nyitható szét.A szerkesztendÅ‘ útvonal kijelölése kattintással végezhetÅ‘.Kattintás: az elÅ‘nézet frissítése -%s A frissítés kikényszerítése akkor is, ha az elÅ‘nézet frissA görbe alakja húzással módosítható. (Shift: szimmetrikus.)A rögzítést húzással lehet áthelyezni.A rögzítéseket húzással lehet áthelyezni.A komponenst húzással lehet áthelyezni. (A Shift is használható.)A vezérlÅ‘pontot húzással lehet áthelyezni. (A Shift is használható.)Az útvonal áthelyezése húzással végezhetÅ‘.Kattintás: kijelölésKattintás: kijelölés Húzás: áthelyezésAz eredmény vágásaVágólapA legalsó rétegre illesztveA képre illesztveMásoló%s bezárásaÖsszes lap bezárásaBezárja az összes lapot?Lap bezárásaÚt_vonal másolása_SzínekSzínSzínegyensúlySzínmegjelenítési szűrÅ‘kSzínpipettaSzínpipetta-információSzín_egyensúly...S_zínszórás:A színegyensúly csak RGB színű rétegeken működik.SzíntörlésSzínindex:Szín:Szí_ntérképSzí_nséma:S_zínezés...Szakasz szí_nezési módjaKijelölés szí_nezési módjaSzínezésA színezés csak RGB színű rétegeken működik.A kép színezéseA kép színezéseSzíntérképSzíntérkép-szerkesztÅ‘Színtérkép-menüOszlopok:Meg_jegyzés:MegjegyzésKon_traszt:Má_zolásSzínmegjelenítési szűrÅ‘k beállításaKiterjesztett bemeneti eszközök _beállítása...Rá_cs beállítása...Rács beállításaKéprács beállításaGyorsbillentyűk beállításaGyors_billentyűk beállítása...Kijelölt szűrÅ‘ beállításaKijelölt szűrÅ‘ beállítása: %sKépméret jóváhagyásaÃtméretezés megerÅ‘sítéseSzövegszerkesztés megerÅ‘sítéseMegerÅ‘sítés nem mentett képek _bezárásakorÃœtközÅ‘ gyorsbillentyűkKúpos (aszimmetrikus)Kúpos (szimmetrikus)Vonalak összekötéseÃllandóKorlátozásokKörnyezetA helyzetérzékeny kurzor egy hasznos szolgáltatás. Alapértelmezésben be van kapcsolva, viszont lassulást okozhat.FolytatásHozzájárultak:ÃtalakításSzélek átalakításaKép konvertálása szürkeárnyalatos módbaKép konvertálása indexelt módbaKép átalakítása indexelt színekreKép konvertálása RGB módbaKép konvertálásaKonvertálás indexelt módba (2. fázis)...Konvertálás indexelt módba (3. fázis)...Konvertálás indexelt módba...MázolásMázolás típusa %sMásolás név szerint_Látható másolása"%s" fájl másolása innen: "%s"...Copyright:Sérült szakasz (%d) a(z) "%s" színátmenet-fájlban.Nem lehet létrehozni a(z) "%s"-t: %sNem lehet átmeneti fájlt létrehozni a(z) "%s" számára: %sNem lehet törölni a(z) "%s"-t: %sA GIMP SúgóböngészÅ‘ nem található.Nem lehet olvasásra megnyitni "%s"-t: %sNem lehet írásra megnyitni "%s"-t: %sNem lehet megnyitni a(z) "%s" bélyegképet: %sNem lehet %d bájtot beolvasni a(z) "%s" fájlból: %sNem lehet pozicionálni az XCF-fájlban: %sNem lehet elindítani a GIMP SúgóböngészÅ‘t.Szám:Réteg kivá_gásaÚj _dokk létrehozásaÚj sablon létrehozásaÚj kép létrehozásaÚj réteg létrehozásaÚj sablon létrehozásaÚj nézet létrehozása ehhez a képhezÚj kép létrehozása a kijelölt sablon alapjánÚj sablon létrehozásaKépek vagy fotók létrehozása és szerkesztéseÚtvonalak létrehozása és szerkesztéseSzöveget útvonalláKijelölés az útvonal alapjánElÅ‘nézeti kép létrehozása..."%s" mappa létrehozása...KivágásKivágás és méretmódosításKivágási és méretmódosítási információKép kivágásaRéteg kivágásaKép kivágásaKép kivágása vagy a méretének a módosításaKivágás: Csak célkereszt_Kivágás_Kivágás név szerint...Köbös (legjobb)_Jelenlegi állapotJelenlegi magasság:Csak a jelenlegi rétegetJelenlegi állapotJelenlegi szélesség:KurzorKur_zormód:Kurzor meg_jelenése:GörbetípusGörbékIndexelt rétegek esetében nem lehet beállítani görbéket.EgyéniEgyéni színEgyéni színátmenetEgyén_i kitöltési szín:KivágásKivágás név szerintCiánkékCiánkék:Ecset _kétszerezéseCsatorna kétszere_zéseSzínátmenet _kétszerezéseRéteg _kétszerezésePaletta _kétszerezéseÚtvonal kétszere_zéseMinta _kétszerezéseSablon _kétszerezése...Sötét négyzethálóCsak sötétítésSzakasz-pont-pont...Szakasz-pont...Vonalminta:ElÅ‘redefiniált vonalminta:SzaggatottDátum:NyomkövetésAlapértelmezett megjelenés teljes képernyÅ‘s módbanAlapértelmezett megjelenés normál módbanAlapértelmezett rácsAlapértelmezett képrácsAlapértelmezett inter_poláció:Réte_g- és csatorna-elÅ‘nézet alapértelmezett mérete:Alapértelmezett _küszöbszint:Rögzítés törléseRögzítések törléseRétegmaszk tör_léseRétegmaszk törléseObjektum törléseSzakasz törléseSablon törléseEcset törléseCsatorna törléseSzín törléseSzínátmenet törléseRéteg törléseRétegmaszk törlésePaletta törléseÚtvonal törléseMinta törléseMentett beállítások törlése...A kijelölt tároló törléseA kijelölt sablon eltávolításaKép törléseVektorok törlése"%s" törlése sikertelen: %sSűrű pontozásTelítetlenné tevésA telítetlenné tevés csak RGB színmodellt használó rétegekre alkalmazható.LeírásTervezésEszközállapotEszközökPárbeszédablakokPárbeszédablakok menüGyémántKülönbségDirekt színRétegmaszk kikapcsolásaGyorsmaszk kikapcsolásaSzöveginformáció eldobásaMegjelenítésNavigáció megjelenítéseKépe_rnyÅ‘szűrÅ‘k...Megjelenítési eljárásokKépernyÅ‘ típusa:Ãbrázolt tartomány: [%0.6f, %0.6f]EloszlóTávolság:Távolság: %0.6fSzínszórásOsztásÚ_j felhasználói telepítésValóban vissza kívánja állítani az összes szűrÅ‘t az alapértelmezett értékekre?Valóban vissza kívánja állítani az összes eszközbeállítást az alapértelmezett értékekre?Szeretné felülírni azt a most menteni kívánt képpel?_Ne legyen mentésDokkolhatóDok_umentumok elÅ‘zményeDokumentumok elÅ‘zményeDokumentumokDokumentumok menüF_akítás vagy sötétítésFakításVonások fakítása vagy sötétítéseFakítás vagy sötétítésDupla szaggatottRögzítés húzásaRögzítések húzásaGörbe húzásaVezérlÅ‘pont húzásaÚtvonal húzásaHúzás: áthelyezésTusrajzRajzfelületRajzfelület-módosításRajzfelület-eljárásokÚj réteg eldobásaÚj útvonal eldobásaMivel betűkészlet nem található, ezért a szövegfunkció nem elérhetÅ‘.Ezen vezérlÅ‘ eseményeinek listázásaEcset kétszerezéseCsatorna kétszerezéseSzínátmenet kétszerezéseRéteg kétszerezésePaletta kétszerezéseÚtvonal kétszerezéseMinta kétszerezéseA kijelölt sablon kétszerezéseEEK: nem lehet visszavonniÚtvonal e_xportálása...Nagyon k_icsiA szélek viselkedéseÉ_lkeresésSzerkesztésCsatorna tulajdonságainak szerkesztéseCsatorna színének szerkesztéseSzínpaletta-bejegyzés szerkesztéseSzíntérkép-bejegyzés szerkesztéseRéteg tulajdonságainak szerkesztéseRétegmaszk szerkesztéseSzerkesztési módPalettaszín szerkesztéseÚtvonal tulajdonságainak szerkesztéseGyorsmaszk-tulajdonságok szerkesztéseGyorsmaszk-szín szerkesztéseSablon szerkesztéseEcset szerkesztéseCsatorna tulajdonságainak szerkesztéseSzín szerkesztése%d. színtérkép-bejegyzés szerkesztéseSzínátmenet szerkesztéseRéteg tulajdonságainak szerkesztésePaletta szerkesztéseÚtvonal tulajdonságainak szerkesztéseMinta szerkesztéseEljárások szerkesztéseA kijelölt sablon szerkesztéseEllipszis-kijelölésÃœres csatornaÃœres rétegÃœres útvonalÃœres szövegrétegÃœres változónév a(z) "%s" környezeti fájlbanK_iemelésGyorsmaszk bekapcsolásaÃt_látszóság színszórásának engedélyezéseEzen vezérlÅ‘ engedélyezéseHa bekapcsolja, akkor a GIMP minden indításakor egy tipp fog megjelenni.A buboréksúgók megjelenítésének engedélyezése.Roppant nagyÃrja be az összefésült paletta nevétÃrjon be egy nevet a mentett beállításoknakAdja meg a tároló nevétAdjon meg egy nevet ehhez a sablonhoz.Ãrjon be egy új nevet a mentett beállításoknakAdja meg a helyet (URI):KörnyezetKörnyezet mappáiKiegyenlítésKiegyenlítés nem hajtható végre indexelt rétegeken.Törlés háttérszínig vagy átlátszóságigRadírHib_akonzolHibakonzolHibakonzol menüHiba az XCF-fájl mentése közben: %sHiba a(z) "%s" fájl feldolgozásakor a(z) %d. sorban: %sHiba a(z) "%s" fájl olvasása közben: %sHiba a(z) "%s" ecsetfájl olvasása közben: %sHiba a(z) "%s" fájl írása közben: %sHiba az XCF írása közben: %sHiba a(z) "%s" fájl írásakor: -%sHiba a(z) "%s" fájl írása közben: %sHiba történt "%s" átmeneti fájljába való íráskor: %s -Nem lett létrehozva fájl.Hiba történt "%s" átmeneti fájljába való íráskor: %s -Az eredeti fájl nem módosult.HibákEseményNag_yon nagySzükség szerint bÅ‘vítveÚtvonal exportálása SVG-beA kép összes útvonalának exportálásaA jelenlegi útvonal exportálásaKitettség:Kiterjesztett bemeneti eszközökKiterjesztésekKitöltés elÅ‘térszínnelElÅ‘térbÅ‘l háttérbe (HSV óramutató járása szerinti színezet)ElÅ‘térbÅ‘l háttérbe (HSV óramutató járásával ellentétes)ElÅ‘térbÅ‘l háttérbe (HSV)ElÅ‘térbÅ‘l háttérbe (RGB)ElÅ‘térbÅ‘l átlátszóbaElÅ‘térbÅ‘l átlátszóbaElÅ‘-/háttérElÅ‘-/háttérszínRugalmas LKMerev LKLK-t rétegreRajzvászon illesztése a réte_gekreElhalványulásNem sikerült színátmeneteket importálni ebbÅ‘l: "%s": %sNem sikerült útvonalakat importálni ebbÅ‘l: "%s": %sDíszesVégzetes feldolgozási hiba a(z) "%s" ecsetfájlban: bájt = 0.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: úgy tűnik, a fájl félbe van szakadva.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: a fájl sérült.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: magasság = 0.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: nem GIMP-ecsetfájl.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: ismeretlen GIMP ecsetforma.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: ismeretlen GIMP ecsetverzió.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: ismeretlen "%d" mélység.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: ismeretlen "%d" verzió.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: nem támogatott ecsetmélység (%d). -A GIMP ecsetei GRAY vagy RGBA módúak lehetnek.Végzetes feldolgozási hiba a(z) "%s" ecsetfájlban: szélesség = 0.Végzetes feldolgozási hiba a(z) "%s" színátmenet-fájlban: a fájl valószínűleg megsérült.Végzetes feldolgozási hiba a(z) "%s" színátmenet-fájlban: nem GIMP-formátumú színátmenet-fájl.Végzetes feldolgozási hiba a(z) "%s" palettafájlban: hiányzó varázsfejléc.Végzetes feldolgozási hiba a(z) "%s" palettafájlban: hiányzó -varázsfejléc. Lehetséges, hogy a fájl DOS-formátumú.Végzetes feldolgozási hiba a(z) "%s" palettafájlban: olvasási hiba a(z) %d. sorban.Végzetes feldolgozási hiba a(z) "%s" mintafájlban: %d bájt beolvasása sikertelen: %sVégzetes feldolgozási hiba a(z) "%s" mintafájlban: ismeretlen mintaformátum-verzió: %d.Végzetes feldolgozási hiba a(z) "%s" mintafájlban: nem támogatott -mintamélység (%d). A GIMP mintái GRAY vagy RGB módúak lehetnek._Lágy szél...Csatorna lágy szélűvé tételeKijelölés lágy szélűvé tételeLágy szélekA kijelölés lágy szélének mérete:FájlFájlmegnyitási _párbeszédablakFájlműveletekFájltípusA fájl már létezikA fájl nem teljesCsatorna kitöltéseKitöltés átlátszatlansága:Kitöltés típusa %sHasonló színűek kitöltéseÃtlátszó területek kitöltéseTeljes kijelölés kitöltéseKitöltés a háttérszínnelKitölté_s a háttérszínnelKitöltés az elÅ‘térszínnelKitöltés m_intávalKitöltés mintávalKitöltés átlátszó felülettelKitöltés fehérrelKitöltés az _elÅ‘térszínnelKitöltés a _háttérszínnelKitöltés színátmenettelKitöltés színnel vagy mintávalSorkizártSzű_rÅ‘kA végsÅ‘, összefésült réteg:EgybefüggÅ‘ területek kereséseHasonló színek kereséseKép illesztése az ablak_hozKép illesztése az ablakbaKép illesztése az ablakhozAz ablak méretéreMegadott méretarányMegadott méretEgy réteggé lapításTükrözésCsatorna tükrözéseRéteg tükrözéseÚtvonal tükrözéseSzövegréteg tükrözéseTükrözés típusa %s_Vízszintes tükrözés_FüggÅ‘leges tükrözésKép tükrözéseRéteg vagy kijelölés tükrözéseTükrözés...Tükrözés...LebegÅ‘ kijelölésLebegÅ‘ kijelölésLebegÅ‘ rétegLebegÅ‘ kijelölés -(%s)LebegÅ‘ kijelölést réteggéLebegÅ‘ kijelölést réteggéLebegÅ‘ kijelölésekFloyd-Steinberg (normál)Floyd-Steinberg (csökkentett színátmenetek)FókuszMappaMappákBetűkészletek mappáiBetűkészlet-felületBetűkészlet:BetűkészletekBetűkészletek menüA GIMP megfelelÅ‘ működéséhez szükséges egy "%s" nevű mappa létrehozása.Automatikus megjelenítési információkElÅ‘térElÅ‘tér- és háttérszínek. A fekete és fehér kis négyzetek visszaállítják a színeket. A nyilak felcserélik a színeket. Kattintson duplán a Színkiválasztás párbeszédablak megnyitásához.ElÅ‘térszínElÅ‘térszín:ElÅ‘tér: %d, %d, %dElÅ‘re (hagyományos)Út_vonal alapjánSzabadkézi kijelölésSzabadkézi kijelölésSzabadkézi_TémábólA _grafikus rendszerbÅ‘l (pillanatnyilag %d x %d dpi)Balról jobbraJobbról balraKijelölésbÅ‘lTémából_Varázspálca-kijelölés_Teljes képernyÅ‘Varázspálca-kijelölésGIMPGIMP-kiegészítÅ‘GIMP-üzenetA GIMP teljesítményének finomhangolásaGIMP-bÅ‘vítményA GIMP indításaGIMP szövegszerkesztÅ‘GIMP: A nap tippjeGIMP felhasználói telepítésGIMP XCF-képA program nem tudta inicializálni a grafikus felületet. -EllenÅ‘rizze, hogy helyesen van-e beállítva a megjelenítési környezet.GIMP SúgóböngészÅ‘A GIMP nincs megfelelÅ‘en telepítve a jelenlegi felhasználó számára. -A felhasználói telepítés ki lett hagyva, mivel a "--no-interface" kapcsoló -meg volt adva. Ha szeretne felhasználói telepítést végezni, indítsa el a -programot a "--no-interface" kapcsoló nélkül.A GIMP egy bizonyos mennyiségű memóriát lefoglal a kép adatainak tárolására, ez az úgynevezett "Képgyorstár". Úgy kell beállítania ennek a méretét, hogy beleférjen fizikai memóriába. Gondoljon arra, hogy más folyamatoknak is szükségük lehet memóriára.A GIMP egy másik gtkrc fájlt használ, tehát beállíthatja, hogy másképp nézzen ki, mint a többi GTK alkalmazás.GIMP-verzió: A program figyelmeztetni fogja a felhasználót, ha olyan képet kísérel meg létrehozni, amely több memóriát igényel, mint amekkora érték itt meg van adva.GammaÃltalánosA GIMP számára kiosztott rendszerszínek minimális számát adja meg. Ãltalában csak 8 bites megjelenítÅ‘k esetében van rá szükség.Optimális paletta előállításaMonitor felbontásaGigásziGimprc eljárásokÃœve_g-effektusokSzínátmenetSzínátmenet-szerkesztÅ‘Színátmenet-szerkesztÅ‘ menüSzínátmenetek mappáiSzínátmenet-szakasz bal végpontjának színeSzínátmenet-szakasz jobb végpontjának színeSzínátmenet felhasználói felületeSzínátmenet:SzínátmenetekSzínátmenetek menüSzemcsés kivonásSzemcsés összefésülésSzürkeSzürkeárnyalatosZöldZöld:RácsRácsvonalak távolságaCsatorna növeléseKijelölés növeléseKijelölés növelése ennyivel:SegédvonalSegédvonalhoz és rácshoz illesztésSegédvonal eljárásokHSVHSV (%0.3f, %0.3f, %0.3f)HSV (óramutató járásával _ellentétes színezet)HSV (óramutató járása _szerinti színezet)HTML-jelölés:Ma_gasság:Használandó súgóböngés_zÅ‘:Pozíció: %0.6fÉles szélűErÅ‘s fényKeménységÉlesség:MagasságMagasság:SúgóSúgóböngészÅ‘SúgórendszerA SúgóböngészÅ‘ nem indulSúgóböngészÅ‘ nem találhatóSúgóeljárásokHexa:Fényes színekInformáció a _dokkolható ablakokhoz:Információ az _eszköztárhoz:Megjelenítési információk (hinting)Kis betűméretek esetében a megjelenítési információk (hinting) alapján módosulnak a betűk körvonalai az olvashatóság javításának érdekében_HisztogramHisztogramHisztogramskálaElÅ‘zményekVízszintesAz elsÅ‘ rácsvonal vízszintes eltolása; lehet negatív szám is.Rácsvonalak vízszintes távolsága.A Fájl menüben megjelenÅ‘ legutóbb megnyitott fájlok száma.ÃrnyalatÃrnyalat-telítettségAz árnyalat-telítettség csak RGB színű rétegeken működik.Ãrny_alat-telítettség...Ãrnyalat:ÓriásiIk_on és szöveg_KépÚtvonal im_portálása..._Interpoláció:In_tervallum:IkonIkon és leírásIkon és szövegFelhasználhatók a betűkészletben levÅ‘ megjelenítési információk is (ha vannak olyanok), ha viszont úgy kívánja, beállíthatja, hogy mindig az automatikus értékek legyenek használvaHa be van kapcsolva, akkor az áthelyezési eszköz módosítja az aktív réteget illetve útvonalat egy réteg illetve útvonal kijelölésekor. A korábbi verziókban ez volt az alapértelmezett viselkedés.Ha nem menti a képet, akkor a legutóbbi %s során bekövetkezett módosulások elvesznek.Ha kilép a GIMP-bÅ‘l, akkor ezek a változások el fognak veszni.Érvénytelen változónév a(z) "%s" környezeti fájlban: %sKépKép + rácsKépszerkesztÅ‘KépinformációKép menüKépméretKép állapotsorának formátumaKépsablonokBélyegképekKépcím és állapotsor formátumaKép címének formátumaKépet tartalmazó ablak megjelenéseKépet tartalmazó ablakA kép nem tartalmaz látható rétegetKépfájlKépmaszkA kép felbontása az engedélyezett tartományon kívül esik, ezért az alapértelmezett felbontás lesz használva.KépméretKépforrásKéptípusKépekKépek menüImportálási beállításokPaletta importálásaÚtvonalak importálásaÚtvonalak importálása SVG-bÅ‘lÚj paletta importálásaPaletta importálásaÚtvonalak importálásaImportált útvonal_Tus_InvertálásMaszk in_vertálásaÖsszeadódóBehúzás:ElsÅ‘ sor behúzásaIndex:IndexeltIndexelt színÃtalakítás indexelt színekreAz indexelt színű rétegek mindig interpoláció nélkül kerülnek átméretezésre. A kiválasztott interpoláció-típus csak a csatornákra és a maszkokra fog vonatkozni.Információs ablakKez_deti nagyítási arány:Rétegmaszk-beállítások:BÅ‘vítmények inicializálásaBÅ‘vítmény inicializálása: "%s" -TusInline pixbufBemeneti vezérlÅ‘kBemeneti eszközökBemeneti szintekRögzítés beszúrásaSaját színtérkép telepítése. A 8 bites (256 színű) megjelenítÅ‘k esetében lehet rá szükség.Sikertelen telepítés. Lépjen kapcsolatba a rendszergazdával.Sikeres telepítés. A folytatáshoz kattintson a "Folytatás" gombra.Azonnali frissítés_Intelligens ollóIntenzitás: %0.3f Ãtlátszatlanság: %0.3fFelhasználói felületBelsÅ‘ GIMP-eljárásBelsÅ‘ eljárásokInterpoláció:MetszetMetszet a jelenlegi kijelölésselMetszéspontok (keresztek)Metszéspontok (pontok)Érvénytelen UTF-8Érvénytelen UTF-8 adat a(z) "%s" fájlban.Érvénytelen UTF-8 karakterlánc az XCF-fájlbanÉrvénytelen UTF-8 karakterlánc a(z) "%s" ecsetfájlban.Érvénytelen UTF-8 karakterlánc a(z) "%s" színátmenet-fájlban.Érvénytelen UTF-8 karakterlánc a(z) "%s" palettafájlbanÉrvénytelen UTF-8 karakterlánc a(z) "%s" palettafájlban.Érvénytelen karaktersorozat az URI-benÉrvénytelen gyorsbillentyű.Érvénytelen szélesség vagy magasság. MindkettÅ‘nek pozitívnak kell lennie.InvertálásCsatorna megfordításaKijelölés megfordításaAz invertálás nem hajtható végre indexelt rétegeken.Kijelölés megfordításaEzt szeretné tenni?Úgy tűnik, már használta a GIMP 2.0-t.Elem tulajdonságaiElem láthatóságaIgazítás:Ãtlátszóság megÅ‘rzéseFelül tartásMéretarány megtartása %sMéretarány megtartása %sMagasság megtartása %sÃtlátszóság megÅ‘rzéseSzélesség megtartása %sLefeléLefelé (Alt)Lefelé (Control + Alt)Lefelé (Control)Lefelé (Shift + Alt)Lefelé (Shift + Control + Alt)Lefelé (Shift + Control)Lefelé (Shift)BalraBalra (Alt)Balra (Control + Alt)Balra (Control)Balra (Shift + Alt)Balra (Shift + Control + Alt)Balra (Shift + Control)Balra (Shift)JobbraJobbra (Alt)Jobbra (Control + Alt)Jobbra (Control)Jobbra (Shift + Alt)Jobbra (Shift + Control + Alt)Jobbra (Shift + Control)Jobbra (Shift)FelfeléFelfelé (Alt)Felfelé (Control + Alt)Felfelé (Control)Felfelé (Shift + Alt)Felfelé (Shift + Control + Alt)Felfelé (Shift + Control)Felfelé (Shift)A GIMP gyorsbillentyűi dinamikusan módosíthatók. A program ezeket a beállításokat eltárolja a menurc fájlban, így a következÅ‘ futtatáskor is érvényben maradnak. A fájlt át lehet szerkeszteni, de egyszerűbb a GIMP felületérÅ‘l átállítani a billentyűket. Az említett fájl törlése esetén az eredeti gyorsbillentyűk lépnek érvénybe.BillentyűzetBillentyűzeteseményekGyorsbillentyűkBalról jobbra_Bal végpont színe...FekvÅ‘NagyNagy (256x256)Nagyobb elÅ‘nézetekUtolsó hiba:RétegA(z) "%s" rétegnek nincs alfa-csatornája. A réteg feljebb lett helyezve.Réteg tulajdonságaiRéteg-határv_onal mérete...Kitöltés típusaRétegmaszk kijelöléssé alakításaRéteg kijelöléseRéteg méreteRétegmó_dRéteg _neve:A réteget nem lehet még lejjebb helyezni.A réteget nem lehet feljebb helyezni.A réteg már legalul van.A réteg már legfelül van.Réteg kép-méretűvé alakításaRéteg legal_ulra helyezéseRéteg ké_p-méretűvé alakításaRéteg legfelülre hel_yezéseRéteg _alfa-csatornájaRétegekRétegek menüRétegek összefésülésének beállításaiBal végpont színeBalra igazítottHossz:A legutóbbi mentett munkafolyamat visszaállítása a program minden indításakor.SzintekAz indexelt rétegeknél nem lehet szinteket állítani.Világos négyzethálóCsak világosításVonalSorköz:Vonalszélesség:Vonals_tílus:A rácshoz használt vonalstílus.LineárisLáncolt elemBetöltésGörbe betöltéseSzintek betöltéseJobb oldali szín betöltése _innen:Görbebeállítások beolvasása fájlbólSzintbeállítások beolvasása fájlbólSzöveg betöltése fájlbólElÅ‘nézeti kép betöltése...Hely:LogaritmikusHosszú szakaszokAdatfájlok kereséseLejjebbCsatorna legalulra helyezéseCsatorna leg_alulra helyezéseRéteg lejjebb helyezéseRéteg legalulra helyezéseÚtvonal lejjebb helyezéseÚtvonal lesüllyesztése legalulraÚtvonal lesüll_yesztése legalulraCsatorna lesüllyesztéseCsatorna legalulra helyezéseRéteg lejjebb helyezéseRéteg legalulra helyezéseÚtvonal lejjebb helyezéseÚtvonal lesüllyesztése legalulra_Nagyítás_FÅ‘Ãt_helyezés képernyÅ‘re...L_eképezésBíborvörösBíborvörös:NagyításÃ_tlátszóvá tételBetölthetÅ‘ modulok kezeléseMenetelÅ‘ _hangyák sebessége:Maszk átlátszatlansága:A ki_jelölt területek maszkolásaA kijelöle_tlen területek maszkolásaMátrix:Max. mélység:Maximális _fájlméret bélyegkép-készítéshez:Ú_j kép maximális mérete:Maximális színkülönbségMa_ximális visszavonási memória:Ãtlag:MérÅ‘eszközTávolság- és szögmérÅ‘Távolság- és szögmérÅ‘Mérje meg a vonalzókat és írja be a hosszukat:Medián:KözepesKözepes szakaszokÖssze_fésülés lefeléÖsszefésülés lefeléRétegek összefésülésePaletta összefésüléseLátható rétegek összefésüléseLátható útvonalak összefésülése_Látható rétegek összefésülése..._Látható rétegek összefésülése...Látható útvonalak összefé_süléseRétegek összefésülésePaletták összefésüléseVektorok összefésüléseÃœzeneteljárásokAz üzenet %d esetben ismétlÅ‘dött.Az üzenet egyszer ismétlÅ‘dött.Az üzenetek a hibakimenetre (stderr) kerülnek.KözépszínekMeglevÅ‘ felhasználói beállítások átvétele_Visszavonások minimális száma:EgyebekHegyesMódMód:Kijelölt szín módosításaA kijelölt tartomány színszintjeinek módosításaAz összes szín módosításaSorköz módosításaModulok mappáiModulkezelÅ‘Modul útvonalaModulokEgérkurzorokEgérgörgÅ‘EgérgörgÅ‘-eseményekÃthelyezésRögzítések áthelyezéseCsatorna áthelyezéseLebegÅ‘ kijelölés áthelyezéseSegédvonal áthelyezéseSegédvonal áthelyezése: Réteg áthelyezéseRétegmaszk áthelyezéseÚtvonal áthelyezéseKijelölés áthelyezéseSzövegréteg áthelyezéseÃthelyezési eszközElem áthelyezéseKijelölések és rétegek áthelyezéseKijelölés áthelyezéseA jelenlegi réteg áthelyezéseA jelenlegi útvonal áthelyezéseA kijelölt szűrÅ‘ lejjebb helyezéseA kijelölt szűrÅ‘ feljebb helyezéseÃthelyezés képernyÅ‘re...Ãthelyezés: SzorzásSzínek s_záma:Navi_gációN_avigátorablak_Navigációs elÅ‘nézet mérete:NévNév:NavigációÚj csatornaÚj csatornaszínÚj csatorna beállításaiÚj szín a _háttérbÅ‘lÚj szín az _elÅ‘térbÅ‘lÚj képÚj rétegÚj útvonalÚj útvonal beállításaiÚj sablonÚj ecsetÚj csatornaÚj csatorna a legutóbbi értékekkelÚj csatorna...Új szín a háttérbÅ‘lÚj szín az elÅ‘térbÅ‘lÚj színátmenetÚj importálásÚj rétegÚj réteg a legutóbbi értékekkelÚj réteg...Új palettaÚj útvonal a legutóbbi értékekkelÚj útvonal...Új mintaÚj vektorokNincs felhasználható ecset a művelethez.Nincs kijelölve szűrÅ‘Nem található lineáris színátmenet ebben: "%s"Többé nem elérhetÅ‘Nem található útvonal ebben: "%s"A tárolóban nincsenek útvonalakNincs felhasználható minta a művelethez.Nincs kijelölésNincs körberajzolható kijelölés.Nincsenek bélyegképekNem igazítottNincsNincs (leggyorsabb)NormálNormál (128x128)Normál pontozásNormál ablakNem szabályos fájlNincs elég látható réteg az összefésüléshez. Legalább két rétegre van szükség.Nincs elég látható útvonal az összefésüléshez. Legalább két útvonalra van szükség.Használandó pro_cesszorok száma:Rácsvonalak számaRétegek száma:_Egyéb...EltolásCsatorna eltolásaRajzfelület eltolásaRéteg eltolásaRétegmaszk eltolásaEltolás x/_2, y/2-velEltolás:LemezenTöbbprocesszoros rendszer esetén - ha a GIMP --enable-mp módon lett lefordítva - beállítja, hogy hány processzort használjon egyidejűleg a GIMP.Csak a memóriábanMegnyitás _rétegként...ÃtlátszatlanságÃtlátszatlanság:MegnyitásKép megnyitásaKép megnyitása rétegkéntHely megnyitásaSzöveges fájl megnyitása (UTF-8)_Hely megnyitása...Leg_utóbbi megnyitásaKépmegnyitási párbeszédablakEcsetválasztó párbeszédablak megnyitásaBetűkészlet-választási párbeszédablak megnyitásaSzínátmenetválasztó párbeszédablak megnyitásaPalettaválasztó párbeszédablak megnyitásaMintaválasztó párbeszédablak megnyitásaKijelölt elem megnyitása"%s" megnyitása sikertelen: - -%s"%s" megnyitása sikertelen: %sKapcsolók: -Kezdet, X:Kezdet, Y:Eredeti szélesség:Egyéb (%s) ...KörvonalKimeneti szintekRávetítésPDB hívási hiba; eljárás: "%s". -Típuseltérés a(z) %d. argumentumnál (előírt: %s, tényleges: %s)PDB-hívási hiba: -"%s" eljárás nem találhatóM_intákabcdefghijklmnopqrstuvwxyz -áÃéÉíÃóÓöÖőÅúÚüÜűŰFestésAz eszközök által közösen használt rajzbeállításokFestÅ‘eszköz-eljárásokFestÅ‘eszköz:Rajzolási mó_dFinom ecsetvonások festéseÉles szélű képpontok festéseFestés mintával vagy képrészlettelEcset_PalettákPalettaPalettaszerkesztÅ‘PalettaszerkesztÅ‘ menüPaletták mappáiPalettafelületPaletta ne_ve:Paletta_fájlPalettákPaletták menüÉlÅ‘sködÅ‘-eljárásokÉlÅ‘sködÅ‘k"%s" feldolgozása -BeillesztésTároló be_illesztése helybenTároló beillesztése ú_jkéntÚtvonal _beillesztése_Helyben beillesztésBeillesztés ú_jkéntA kijelölt tároló beillesztéseA kijelölt tároló beillesztése új képkéntA kijelölt tároló beillesztése a kijelölésbeBeillesztett rétegÚtvonalÚtvonal tulajdonságaiÚtvonal neve:Útvonal_eszközAz útvonalat nem lehet még lejjebb helyezni.Az útvonalat nem lehet feljebb helyezni.Az útvonal már legalul van.Az útvonal már legfelül van.Útvonal ki_jelöléssé alakításaÚtvonal kijelöléssé alakításaÚtvonalat kijelöléssé -%s Összeadás -%s Kivonás -%s MetszetÚtvonal kijelöléssé alakításaÚtvonalakÚtvonalak menüMintaMinták mappáiMinták felhasználói felületeKitöltés mintávalMintaforrásMintákMinták menü_CeruzaCeruzaEcset szélességének százalékaSzázalék:Személyes GIMP mappaPerspektívaPerspektivikus átalakítási információPerspektíva...Pipettamód %sRéteg vagy segédvonal kijelöléseÚtvonal kijelöléseFekete pont kijelöléseSzín beállítása a képrÅ‘lSzürke pont kijelöléseCsak kijelölésFehér pont kijelöléseKéppontos méret:KéppontértékekképpontKéppont:EllenÅ‘rizze, hogy a menük XML-fájljai helyesen vannak-e telepítve.Kérem várjon, amíg a személyes GIMP-mappáját létrehozza a telepítÅ‘...Kis türelmet...BÅ‘vítményBÅ‘vítmény-környezetBÅ‘vítmények mappáiA bÅ‘vítmény nem tudta megnyitni a képetA bÅ‘vítmény nem tudta menteni a képetA bÅ‘vítmény összeomlott: "%s" -(%s) - -A bÅ‘vítmény halálakor összekuszálhatta a GIMP belsÅ‘ állapotát. A biztonság kedvéért mentse el a képeit, és indítsa újra a GIMP-et.A bÅ‘vítmény nem jelzett hibát, viszont nem adott vissza képetBÅ‘vítményekBÅ‘vítményA bÅ‘vítmények és a kiegészítÅ‘k a GIMP által futtatott külsÅ‘ programok, amelyek a tudását gazdagítják. Ezek a programok futási idÅ‘ben töltÅ‘dnek be, és a funkcionalitásukról és módosítási idejükrÅ‘l szóló információk ebben a fájlban tárolódnak. Ezt a fájlt csak a GIMP olvashatja, nem szabad szerkeszteni.Sokszög-alakzatÃllóPozíció: %0.6fPozicionáltPoszterPoszter (színek számának csökkentése)Poszter sz_intjei:A Poszter nem működik indexelt rétegeken.BeállításokFényesség megÅ‘r_zéseNyomásérzékenységNyomás:ElÅ‘nézetElavult elÅ‘nézeti képElÅ‘nézet:ElÅ‘nézetekNyomtatási méretNyomtatási méret:Probléma lépett fel a(z) "%s" réteg szöveg-élÅ‘sködÅ‘jének elemzésekor: -%s - -Lehetséges, hogy bizonyos szövegtulajdonságok helytelenek. Ha nem kívánja szerkeszteni a szövegréteget, akkor a problémát figyelmen kívül hagyhatja.Eljárás-adatbázisEljárás-adatbázisFolyamatjelzÅ‘Hamis színCél:MinÅ‘ségLekérdezésÚj bÅ‘vítmények lekérdezéseBÅ‘vítmény lekérdezése: "%s" -GyorsbetöltésGyorsmaszkGyorsmaszk-tulajdonságokGyorsmaszk menüGyorsmentésGyorsmaszkKilépés a GIMP-bÅ‘lRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB színRGB-üresRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Jobbról balra"%s" újrameg_jelenítéseEszközbeállítások _visszaállításaCsatorna v_isszaállításaSzín v_isszaállításaTartomány v_isszaállítása_Jobb végpont színe...SugarasSugár:Csatorna felemeléseCsatorna legfelülre helyezéseCsatorna leg_felülre helyezéseRéteg feljebb helyezéseRéteg legfelülre helyezéseÚtvonal feljebb helyezéseÚtvonal legfelülre helyezéseÚtvonal le_gfelülre helyezéseCsatorna felemeléseCsatorna legfelülre helyezéseRéteg feljebb helyezéseRéteg legfelülre helyezéseÚtvonal feljebb helyezéseÚtvonal legfelülre helyezéseA kép nézeteinek felülre helyezéseAz ablak felülre helyezése, ha már meg van nyitvaMértékSűrűség:Utolsó művelet újramegjelenítéseKijelölés _középpontjainak visszaállításaSzakasz _középpontjának visszaállításaSzakaszon belüli _pontok elrendezéseKijelölésen belüli _pontok elrendezéseMentett beállítások át_nevezése"%s" is_métlése_Visszaállítás...Hiba a(z) "%s" palettafájlban: hiányzó zöld összetevÅ‘ a(z) %d. sorban.Hiba a(z) "%s" palettafájlban: érvénytelen oszlopszám a(z) %d. sorban. Az alapértelmezés szerinti érték lesz használva.Hiba a(z) "%s" palettafájlban: hiányzó kék összetevÅ‘ a(z) %d. sorban.Hiba a(z) "%s" palettafájlban: hiányzó vörös összetevÅ‘ a(z) %d. sorban.Hiba a(z) "%s" palettafájlban: az RGB-érték kívül esik az engedélyezett tartományon a(z) %d. sorban.KészValóban szeretné törölni a kép visszavonási elÅ‘zményeit?A gyorsbillentyű hozzárendelésének módosítása esetén el lesz távolítva innen: "%s".ElÅ‘nézet _frissítéseElÅ‘nézet frissítéseTéglalap-kijelölésVörösVörös:ÚjraA kép színeinek lecsökkentése egy megadott számraA kép színeinek kettÅ‘re csökkentése egy küszöb használatávalEcsetek frissítéseSzínátmenetek frissítésePaletták frissítéseMinták frissítéseRegisztrált_Jelenlegi téma frissítéseÖss_zes elÅ‘nézet újratöltéseÖsszes elÅ‘nézet újratöltéseAz aktuális eszköz, minta, szín és ecset megÅ‘rzése a programból való kilépéskor.Távoli képCsatorna eltávolításaElavult bejegyzések el_távolításaLebegÅ‘ kijelölés eltávolításaSegédvonal eltávolításaRéteg eltávolításaÉlÅ‘sködÅ‘ eltávolítása a képbÅ‘lÉlÅ‘sködÅ‘ eltávolítása az elembÅ‘lÚtvonal eltávolításaB_ejegyzés törléseElavult bejegyzések eltávolításaLebegÅ‘ kijelölés eltávolításaÉlÅ‘sködÅ‘ eltávolításaKijelölt bejegyzés eltávolításaA kijelölt szűrÅ‘ eltávolítása az aktív szűrÅ‘k listájából.Nem sikerült eltávolítani a gyorsbillentyűt.Csatorna átnevezéseRéteg átnevezéseÚtvonal átnevezéseMentett eszközbeállítások átnevezéseSzövegréteg átnevezéseElem átnevezéseKörvonal megrajzolásaCsatorna átrendezéseRéteg átrendezéseÚtvonal átrendezéseUtolsó művelet megismétléseIsmétlés:A jelenlegi kijelölés cseréjeMásolásSzínátmenet-szakasz másolásaSzínátmenet-kijelölés másolásaSzakasz másolásaKijelölés másolásaCsatorna átpozicionálásaRéteg átpozicionálásaVektorok átpozicionálásaBetűkészletlista frissítéseEszközbeállítások visszaállításaÖsszes eszközbeállítás viss_zaállítása...Összes szűrÅ‘ visszaállításaÖsszes szűrÅ‘ visszaállítása...Összes eszközbeállítás visszaállításaA kijelölt szűrÅ‘ visszaállítása az alapértelmezett értékekreVisszaállítás az alapértelmezett értékekreEszközök sorrendjének és láthatóságának visszaállításaMéret módosításaCsatorna méretének módosításaKépméret módosításaRéteg méretének módosításaÚtvonal méretének módosításaSzövegréteg méretének módosításaKépméret módosításaElem méretének módosításaAblak átméretezése _nagyításkor vagy kicsinyítéskorAblak átméretezése a _képméret változásakorMéret módosítása...Felbontás módosításaFelbontás:ErÅ‘forrásfogyasztásErÅ‘forrás-beállításokBeállítások visszaállítása...Lementett gyorsbillentyűk visszaállítása a GIMP minden egyes indulásakor.A szerkesztés korlátozása sokszög-alakzatokraFordítottVisszaállításVisszaállítja ezt: "%s" erre: "%s"?Kép visszaállításaVisszaállítás sikertelen. Nem kapcsolható fájlnév a képhez.Nem sikerült visszatérni erre: "%s": - -%sJobb végpont színeJobbra igazítottForgatásForgatás 90 fokkal _balraForgatás 90 fokkal _jobbraCsatorna forgatásaRéteg forgatásaÚtvonal forgatásaSzövegréteg forgatásaForgatás _180 fokkalKép forgatásaRéteg vagy kijelölés forgatásaForgatás...Elforgatási információLekerekített_NyírásRá_cs megjelenítéseS_zűkítés..._CsúcsokSzínek fel_cseréléseJobb oldali szín m_entése ide:Minta átlagaMintakeverésTelítettség:TelítettségMentés"%s" mentése POV-Ray formátumbaGörbe mentéseA hibanapló fájlba mentéseKép mentéseBemeneti eszközök beállításainak me_ntése mostGyorsbillentyűk m_entése mostSzintek mentéseEszközbeállítások mentéseAblakok helyzetének me_ntése mostÖsszes _hiba mentése fájlba..._Kijelölés mentése fájlba...Men_tés másként...Más_olat mentése...A kép egy másolatának mentéseAz összes hiba mentéseMentés _POV-Ray formátumba...Mentés _sablonként...Megváltozott gyorsbillentyűk mentése a GIMP-bÅ‘l történÅ‘ kilépéskor.Görbebeállítások mentése fájlbaEszközállapot mentéseSzínátmenet mentése POV-Ray formátumbaSzintbeállítások mentése fájlbaBeállítások mentése...Kijelölés mentéseKijelölés mentése csatornábaSzeretné elmenteni a(z) "%s" kép változásait a bezárás elÅ‘tt?A fÅ‘ párbeszédablakok pozíciójának és méretének mentése a GIMP-bÅ‘l történÅ‘ kilépéskor.Mentés csat_ornábaMentett beállítások"%s" mentése -"%s" mentése sikertelen: - -%sKépek mentéseFűrészhullámMéretezhetÅ‘ SVG-kép (*.svg)MéretezésCsatorna átméretezéseKép átméretezéseRéteg átméretezéseÚtvonal átméretezéseSzövegréteg átméretezéseKép átméretezéseElem átméretezéseX-átméretezés aránya:Y-átméretezés aránya:Ãtméretezés aránya:Réteg vagy kijelölés átméretezéseÃtméretezésÃtméretezési információA képnek a kiválasztott méretre való átméretezése több memóriát igényelne, mint amekkora érték meg van adva maximális képméretként a beállítási párbeszédablakban (jelenleg %s).A képnek a kiválasztott méretre való átméretezése néhány réteget annyira összezsugorít, hogy azok teljesen eltűnnek.Ãtméretezés...OllóKivetítésScript-Fu mappáiParancsfájlokGörgetés lefeléGörgetés lefelé (Alt)Görgetés lefelé (Control + Alt)Görgetés lefelé (Control)Görgetés lefelé (Shift + Alt)Görgetés lefelé (Shift + Control + Alt)Görgetés lefelé (Shift + Control)Görgetés lefelé (Shift)Görgetés balraGörgetés balra (Alt)Görgetés balra (Control + Alt)Görgetés balra (Control)Görgetés balra (Shift + Alt)Görgetés balra (Shift + Control + Alt)Görgetés balra (Shift + Control)Görgetés balra (Shift)Görgetés jobbraGörgetés jobbra (Alt)Görgetés jobbra (Control + Alt)Görgetés jobbra (Control)Görgetés jobbra (Shift + Alt)Görgetés jobbra (Shift + Control + Alt)Görgetés jobbra (Shift + Control)Görgetés jobbra (Shift)Görgetés felfeléGörgetés felfelé (Alt)Görgetés felfelé (Control + Alt)Görgetés felfelé (Control)Görgetés felfelé (Shift + Alt)Görgetés felfelé (Shift + Control + Alt)Görgetés felfelé (Shift + Control)Görgetés felfelé (Shift)KijelölésMindent kijelölEcsetek mappáinak kiválasztásaKijelölés szín szerintSzín kiválasztásaJelölje ki a vezérlÅ‘ eseményéhez tartozó műveletetKörnyezet mappáinak kiválasztásaFájltípus ki_választása (%s)Betűkészletek mappáinak kiválasztásaSzínátmenetek mappáinak kiválasztásaModulok mappáinak kiválasztásaKijelölés megszüntetésePaletták mappáinak kiválasztásaMinták mappáinak kiválasztásaBÅ‘vítmények mappáinak kiválasztásaJelölje ki a módosítandó alapszíntA módosítandó tartomány kijelöléseScript-Fu mappáinak kiválasztásaForrás kiválasztásaCseretár könyvtárának kiválasztásaIdeiglenes könyvtár kiválasztásaTéma kiválasztásaTémák mappáinak kiválasztásaNagyítás arányának kiválasztásaLeg_alsó réteg kijelöléseE_gyéni szín kiválasztása..._KövetkezÅ‘ réteg kijelölése_ElÅ‘zÅ‘ réteg kijelöléseLeg_felsÅ‘ réteg kijelöléseMindent kijelölKijelölés szín szerintEgybefüggÅ‘ területek kijelöléseEgyéni rajzvászon-kitöltési szín kiválasztásaEllipszis kijelöléseKézzel körülhatárolt területek kijelöléseKijelölés megszüntetésePalettafájl kiválasztásaTéglalap kijelöléseTerületek kijelölése szín szerintAlakok kijelölése a képrÅ‘lCseretár könyvtárának kiválasztásaAdja meg, hogy hány példányt -szeretne a kijelölt szakaszból.Adja meg, hogy hány példányt -szeretne a kijelölésbÅ‘l.Adja meg, hogy hány azonos méretű részre legyenek -felosztva a kijelölésben szereplÅ‘ szakaszok.Adja meg, hogy hány azonos méretű részre -legyen felosztva a kijelölt szakasz.Ãtlátszó területek kijelöléseWebböngészÅ‘ kiválasztásaKijelölés útv_onallá alakításaKijelölésKijelölés-szerkesztÅ‘Kijelölés-szerkesztÅ‘ menüKijelölési maszkKijelölÅ‘eszköz-eljárásokKijelölési maszkKijelölés útvonallá alakítása (Spe_ciális)Kijelölés útvonallá alakításaKijelölés: Kijelölés: összeadásKijelölés: metszetKijelölés: csereKijelölés: kivonásÉrzékenységRajzvászon kitöltési színének beállításaCsatornaszín beállításaCsatorna átlátszatlanság beállításaSzíntérkép beállításaRajzvászon egyéni kitöltési színének beállításaRajzvászon méretének beállításaKép nyomtatási felbontásának módosításaElem láncolttá tétele kizárólagos módonElem láthatóvá tétele kizárólagos módonRéteg-határvonal méretének beállításaNév beállítása a _szövegbÅ‘lÃtlátszatlanság beállításaHáttérszín beállításaElÅ‘térszín beállításaElem láncolttá tételeRétegmód beállításaRéteg átlátszatlanságának beállításaÃtlátszóság megtartásának beállításaFelsÅ‘ korlátot szab a képenkénti visszavonási memória méretének. Ezen beállítástól függetlenül mindig visszavonható minimum annyi művelet, amennyi a megfelelÅ‘ beállításban szerepel.A súgórendszer által használt böngészÅ‘ beállítása.A rajzvászon kitöltési színének beállítása. Ez a szín akkor kerül felhasználásra, ha a kitöltési mód "egyéni szín"-re van állítva.A felhasználandó külsÅ‘ webböngészÅ‘t adja meg. Megadható abszolút útvonallal vagy egy olyan program nevével, amely szerepel a felhasználó keresési útvonalában. Ha a parancs tartalmazza a "%s" szöveget, akkor az helyettesítve lesz az URL-lel, ellenkezÅ‘ esetben pedig hozzá lesz fűzve az URL a parancshoz (a kettÅ‘ között szóközzel).Az átméretezéshez és egyéb átalakításokhoz használt interpoláció szintjét adja meg.Megadja, milyen módon legyen megjelenítve az átlátszóság a képekben.Beállítja, hogy minimálisan mennyi művelet legyen visszavonható. Annyi visszavonható művelet tárolódik el, amennyi belefér a visszavonási méretkorlátba.A GIMP által használt kurzormódot adja meg.Beállítja a monitor vízszintes felbontását hüvelykenkénti képpontok számában mérve. Ha az érték 0-ra van állítva, akkor az X grafikus környezettÅ‘l lesz lekérdezve a vízszintes és a függÅ‘leges felbontási információ.Beállítja a monitor függÅ‘leges felbontását hüvelykenkénti képpontok számában mérve. Ha az érték 0-ra van állítva, akkor az X grafikus környezettÅ‘l lesz lekérdezve a vízszintes és a függÅ‘leges felbontási információ.A GIMP-kurzorok által használt képpontformátumot adja meg.A rétegeknek és a csatornáknak az újonnan létrehozott párbeszédablakokban megjelenÅ‘ elÅ‘nézeteinek méretét adja meg.Megadja az átlátszóságot ábrázoló négyzetháló négyzeteinek méretét.A képek ablakainak jobb alsó sarkában levÅ‘ navigációs elÅ‘nézet méretét adja meg.A visszavonási elÅ‘zményeknél megjelenÅ‘ elÅ‘nézetek méretét adja meg.A megnyitási párbeszédablakban megjelenített bélyegkép méretének beállítása. Megjegyzés: a GIMP nem képes létrehozni bélyegképet, ha a réteg-elÅ‘nézetek ki vannak kapcsolva.Megadja a cserefájl helyét. A program egy képrészletekre épülÅ‘ memóriafoglalási módszert használ, a képrészleteket szükség esetén kiírja a cserefájlba illetve visszaolvassa onnan. Nagy képek feldolgozása esetén a cserefájl mérete erÅ‘sen megnÅ‘het. Ha a cserefájl elérése NFS-en keresztül történik, akkor lassúvá válhat a program működése. Érdemes tehát a cserefájlt a "/tmp" helyre tenni.Megadja az átmeneti adatok könyvtárát. A GIMP működése közben fájlok fognak megjelenni ezen a helyen. A legtöbb fájl törlésre kerül a programból való kilépéskor, de valószínű, hogy bizonyos fájlok megmaradnak. Nem érdemes tehát olyan könyvtárt választani, amelyet több felhasználó is használhat.Beállítja a képek ablakának állapotsorában megjelenítendÅ‘ szöveget.Beállítja a képek ablakának címsorában megjelenítendÅ‘ szöveget.Megadja, hogy létrehozzon-e elÅ‘nézeteket a GIMP a rétegekrÅ‘l és a csatornákról. A rétegek és a csatornák párbeszédablakában megjelenÅ‘ elÅ‘nézetek hasznosak, de nagy képek esetében lelassíthatják a működést.ÃrnyéktípusÃrnyékokFormaForma:Formázott (szögletes)Formázott (gödrös)Formázott (gömbölyű)ÉlesítésCsatorna élesítéseKijelölés élesítéseNyírásX irányú nyírás mértéke:Y irányú nyírás mértéke:Réteg vagy kijelölés nyírásaNyírási információNyírás...Rövid szakaszokGyorsbillentyűA(z) "%s" gyorsbillentyű már hozzá van rendelve ehhez: "%s" ("%s" csoport).Rétegmaszk megjelenítése_Vonalzók megjelenítéseÃ_llapotsor megjelenítése_GördítÅ‘sávok megjelenítése_Segédvonalak megjelenítéseRéteg-_határvonal megjelenítéseMenüs_or megjelenítése_Kijelölés megjelenítése_Ecset körvonalának megjelenítése_ElÅ‘tér- és háttérszín megjelenítéseSegé_dvonalak megjelenítéseRéteg-_határvonal megjelenítéseMe_nüsor megjelenítése_Vonalzók megjelenítéseAktí_v ecset, minta és színátmenet megjelenítéseAktív ké_p megjelenítése_Rács megjelenítéseSú_gógombok megjelenítéseKépméret megjelenítéseInteraktív határvonal megjelenítéseMemóriahasználat megjelenítéseA menübejegyzések gyorsb_illentyűinek megjelenítése_FestÅ‘eszköz kurzorának megjelenítése_Kijelölés megjelenítéseÃ_llapotsor megjelenítése_GördítÅ‘sávok megjelenítéseA GIMP minden indításakor mondjon tippet_Tippek megjelenítése indításkor_Buboréksúgó megjelenítéseNagyítás százalékos mértékének megjelenítéseNagyítás arányának megjelenítéseCsatorna szűkítéseKijelölés szűkítéseAz a_blak méretének illesztése a képhezKijelölés szűkítése a keretbÅ‘lKijelölés szűkítése ennyivel:Az ablak méretének illesztése a képhezMéretMéret a memóriában:Bé_lyegképek mérete:Méret:"%s" kihagyása: helytelen GIMP protokollverzió.KicsiKisebb elÅ‘nézetekSimaA szélek simításaMaszatolásKép maszatolásaS_egédvonalakhoz való igazításRácshoz való _illesztésGyenge fényEgyenletesForrásTávolságTávolság:Ritkás pontozásSpeciális fájlMegadja, hogyan nézzen ki a kép körül levÅ‘ terület.A "menetelÅ‘ hangyák" sebessége a kijelölés körvonalában. Az érték ezredmásodpercben van megadva; a rövidebb idÅ‘ nagyobb sebességet jelöl.Sebesség:Gömbszerű (csö_kkenÅ‘)Gömbszerű (_növekvÅ‘)Csúcsok:Spirál (óramutató járásával ellentétesen)Spirál (óramutató járása szerint)FelosztásSzínátmenet-szakasz egyenlÅ‘ részekre osztásaSzínátmenet-szakaszok egyenlÅ‘ részekre osztásaSzakasz egyenlÅ‘ részekre osztásaSzakasz egyenlÅ‘ részekre _osztása...Szakasz ketté_vágása a középpontbanSzakaszok egyenlÅ‘ részekre osztásaSzakaszok egyenlÅ‘ részekre _osztása...Szakaszok ketté_vágása a középpontokbanNégyzetÃlla_pot és szöveg_VeremSzokásosKiegészítÅ‘k indításaKiegészítÅ‘ elindítása: "%s" -Ãllapot:Ãllandó színÃllandó szürkeÃllapot és leírásÃllapot és szövegSzórás:Keskeny pontokAzonosító (Stock ID)Útvonal kör_berajzolásaÚtvo_nal körberajzolása...Csatorna körberajzolásaÚtvonal körberajzolásaKijelölés körberajzolásaVonalrajzolásÚtvonal körberajzolásaÚtvonal körberajzolása a legutóbbi értékekkelÚtvonal körberajzolása...Kijelölés körberajzolása a legutóbbi értékekkelKijelölés körberajzolása...Körberajzolás festÅ‘eszközzelAz állapotsor szövege körüli effektus stílusaKivonásKivonás a kijelölésbÅ‘lTúlmintavételezésCseretár könyvtára:Eszk_özökSzöve_gSzö_vegeszközIdeiglenes könyvtár:SablonokSablonok menüIdeiglenes eljárásBÅ‘vítmény lezárása: "%s" -SzövegSzövegszínSzövegszerkesztÅ‘SzövegrétegSzöveg módosítvaSzövegeljárásokA GIMPÚgy tűnik, a GIMP SúgóböngészÅ‘ nincs benne a telepítésben.Az aktív ecset. -Kattintson az Ecset párbeszédablak megnyitásához.Az aktív színátmenet. -Kattintson a Színátmenet párbeszédablak megnyitásához.Az aktív kép. -Kattintson a Kép párbeszédablak megnyitásához.Az aktív minta. -Kattintson a Minta párbeszédablak megnyitásához.A rács háttérszíne; csak dupla szaggatott vonal esetén érvényes.A(z) "%s" kötegelt módú fordító nem elérhetÅ‘; a kötegelt mód le lett tiltva.A beállított fájlnév-kódolás nem konvertálható UTF-8 formátumra: %s - -EllenÅ‘rizze a G_FILENAME_ENCODING környezeti változó értékét.A(z) "%s" fájlnév nem alakítható át érvényes URI-re: - -%sA rács elÅ‘térszíne.A gimprc fájlban tárolódnak a személyes beállítások, amelyek a GIMP alapértelmezett viselkedését megváltoztatják. Az ecsetek, paletták, színátmenetek, minták, bÅ‘vítmények és modulok útvonalai is beállíthatóak itt.A vízszintes képfelbontás.A kijelölt réteg egy szövegréteg, amely módosítva lett más eszközökkel. A rétegnek a szövegeszközzel való szerkesztése esetén ezek a módosítások elvesznek. - -Szerkesztheti a réteget vagy létrehozhat egy új szövegréteget annak szövegtulajdonságaival.A GIMP felhasználói beállításait tartalmazó könyvtár neve nem konvertálható UTF-8 formátumra: %s - -Valószínűleg a fájlrendszer nem UTF-8 formátumban tárolja a fájlneveket, és ez nem lett közölve a GLib-bel. Ãllítsa be a G_FILENAME_ENCODING környezeti változót.A program a sessionrc fájlban tárolja el, hogy kilépéskor mely ablakok voltak nyitva. Beállítható, hogy a program minden indításkor állítsa vissza a legutóbb elmenett állapotot.A megnyitási párbeszédablakban megjelenített bélyegkép automatikusan frissítésre kerül, ha az elÅ‘nézet alapjául szolgáló fájl mérete kisebb az itt megadott méretnél.A képgyorstár a lemezműveletek számának csökkentésére szolgál. Az értéket nagyobbra állítva a program kevesebb lemezhelyet fog használni, de több memóriát. Kisebb képgyorstár esetén a felhasznált lemezhely lesz nagyobb, és a memóriahasználat kisebb.A nem "pontról pontra" üzemmódokban a koordináták megjelenítéséhez használt mértékegység.A program a unitrc fájlban tárolja a felhasználó által definiált mértékegységeket. A felhasználó létrehozhat saját mértékegységeket, amelyeket a beépítettekkel (milliméter, hüvelyk, pont, pica) megegyezÅ‘ módon lehet használni. Ez a fájl a programból való minden kilépéskor felülíródik.A függÅ‘leges képfelbontás.A dokkolható ablakokhoz használandó ablaktípus-információ. Ez a beállítás befolyásolhatja, hogy az ablakkezelÅ‘ hogyan jeleníti meg és kezeli a dokkolható ablakokat.Az eszköztárhoz használandó ablaktípus-információ. Ez a beállítás befolyásolhatja, hogy az ablakkezelÅ‘ hogyan jeleníti meg és kezeli az eszköztárt.TémaTémák mappáiTémákA következÅ‘ %d kép nem mentett módosítást tartalmaz:Nincs elég látható réteg a lefelé összefűzéshez.A nagyobb sebesség általában nagyobb memóriahasználatot jelent. A legtöbb esetben a GIMP a nagyobb sebességű módszereket használja. A memóriahasználat csökkenthetÅ‘ ezzel a beállítással.Nincs aktív réteg vagy csatorna, ahonnan másolni lehetne.Nincs aktív réteg vagy csatorna, ahonnan vágni lehetne.Nincs aktív réteg vagy csatorna, amely rajzolható lenne.Nincs aktív réteg vagy csatorna, ahol a körvonal megrajzolható lenne.A következÅ‘ kép nem mentett módosítást tartalmaz:Léteznie kellene egy "%s" nevű fájlnak. EllenÅ‘rizze a telepítését.Hiba történt a(z) "%s" fájl elemzése közben. Az alapértelmezés szerinti értékek lépnek életbe. A beállításokról készült egy másolat ide: "%s".Ez a fájl a szabványos dokumentumméreteket tárolja, amelyek képsablonként funkcionálnak.Ebben a könyvtárban keresi a program a képsablonokat.Ebben a könyvtárban keresi a program a felhasználó által telepített témákat.Ebbe a könyvtárba a csak a GIMP számára elérhetÅ‘vé tenni kívánt betűkészleteket lehet tenni. A betűkészletek keresésekor a program a rendszerszintű GIMP-betűkészleteken kívül ellenÅ‘rzi ezt a könyvtárt is. Csak akkor használja ezt a lehetÅ‘séget, ha valóban szeretne csak GIMP által elérhetÅ‘ betűkészleteket; egyéb esetben a globális betűkészlet-könyvtárba tegye azokat.Ebben a könyvtárban a görbeeszköz paraméterfájljai tárolódnak.Ebben a könyvtárban a szinteszköz paraméterfájljai tárolódnak.Ebben a könyvtárban az eszközbeállítások tárolódnak.Ebben a könyvtárban tárolhatók a felhasználó által létrehozott és telepített szkriptek. A szkriptek keresésekor a program a rendszerszintű GIMP-szkripteken kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó által létrehozott, az átmeneti és az egyéb nem rendszerszintű DLL-modulok tárolódnak. A betöltendÅ‘ modulok keresésekor a program a rendszerszintű GIMP-modulokon kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó által létrehozott, az átmeneti és az egyéb nem rendszerszintű bÅ‘vítmény-komponensek tárolódnak. A bÅ‘vítmény-komponensek keresésekor a program a rendszerszintű GIMP-környezeten kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó által létrehozott, az átmeneti és az egyéb nem rendszerszintű bÅ‘vítmények tárolódnak. A bÅ‘vítmények keresésekor a program a rendszerszintű GIMP-bÅ‘vítményeken kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó saját ecsetei tárolódnak. Az ecsetek keresésekor a program a rendszerszintű GIMP-ecseteken kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó saját színátmenetei tárolódnak. A színátmenetek keresésekor a program a rendszerszintű GIMP-színátmeneteken kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó saját palettái tárolódnak. A paletták keresésekor a program a rendszerszintű GIMP-palettákon kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a felhasználó saját mintái tárolódnak. A minták keresésekor a program a rendszerszintű GIMP-mintákon kívül ellenÅ‘rzi ezt a könyvtárt is.Ebben a könyvtárban a program a visszavonáshoz szükséges adatokat tárolja (a memóriaigény csökkentése érdekében). Ha a GIMP működése nem szabályos módon fejezÅ‘dik be, akkor gimp<#>.<#> nevű fájlok maradhatnak ebben a könyvtárban. Ezeket a fájlokat a GIMP leállása után már nem lehet felhasználni, tehát nyugodtan törölhetÅ‘ek.Ez a mappa számos fontos fájlt tartalmaz. Kattintson rá egy fájlra vagy mappára a fastruktúrában, ha részletes információkat szeretne kapni a kijelölt elemrÅ‘l.Az a távolság képpontokban, amelynél a segédvonalakhoz és a rácshoz való illesztés aktiválódik.A programot abban a reményben adjuk közre, hogy hasznos lesz, de nem vállalunk SEMMIFÉLE GARANCIÃT, még olyan értelemben sem, hogy a program alkalmas-e a KÖZREADÃSRA vagy EGY BIZONYOS FELADAT ELVÉGZÉSÉRE. További részletekért tanulmányozza a GNU GPL licencet.Ez a program szabad szoftver: terjesztheti és/vagy módosíthatja a Free Software Foundation által kiadott GNU General Public License második (vagy bármely késÅ‘bbi) változatában foglaltak alapján.Ez a szövegbeviteli mezÅ‘ maximum %d karakterbÅ‘l állhat.Ennek az eszköznek nincsenek beállítási lehetÅ‘ségei.Ez az ablak %d megnyitott lappal rendelkezik. Az ablak bezárásával az összes lap is be fog záródni.KüszöbA küszöb nem használható indexelt rétegek esetén.Küszöbszint:%d. bélyegkép (összesen: %d)Kép_gyorstár mérete:Képgyorstár mérete:Rázás:ApróCím és állapotÚtvonallá _alakításGyorsbillentyű szerkesztéséhez kattintson a megfelelÅ‘ sorra és nyomja le az új gyorsbillentyűt, vagy nyomja meg a Backspace billentyűt a törléshez.Játé_kokGyorsmaszk be-kiG_yorsmaszk be-kiTúl sok hibaüzenet.EszközbeállításokEszközbeállítások menüEszközváltás %sEszközbeá_llításokEszköz ikonjaEszköz ikonja célkereszttel_EszköztárEszköztárEszköztár menüEszközökEszközök menüA varázspálca-kijelölés, a kitöltés és a hasonló eszközök egy kezdőértéken alapuló algoritmust használnak a megfelelÅ‘ terület meghatározásához. A terület meghatározásakor a program a kijelölt képponttól indulva addig halad minden irányban, amíg az eredeti képponthoz viszonyított intenzitásbeli különbség nagyobb nem lesz egy megadott küszöbértéknél. Az itt megadott érték az alapértelmezett küszöbérték.Ãtláts_zóságAlfa átvitele a maszkraÃtalakításCsatorna átalakításaAz átalakítás irányaRéteg átalakításaÚtvonal átalakításaSzövegréteg átalakításaÃtalakítóeszköz-eljárásokRéteg átalakításaÚtvonal átalakításaKijelölés átalakításaÃtalakításÃtalakítási eljárásokÃtalakítás...Fordította:ÃtlátszóságÃtlátszóság _típusa:HáromszöghullámValódi színekTípusTípus %sAdjon meg egy új gyorsbillentyűtAdjon meg egy új gyorsbillentyűt, vagy nyomjon Backspace-t a törléshezNem lehet rétegmaszkot hozzáadni, mert már van egy rétegmaszk.Nem lehet kivágni vagy másolni, mert a kijelölt terület üres.Nem sikerült megnyitni a tesztelési célú cserefájlt. Az adatvesztés elkerülése érdekében ellenÅ‘rizze a cserekönyvtár helyét és engedélyeit (a cserekönyvtár a beállításoknál adható meg; jelenleg "%s").Nem sikerült megnyitni a cserefájlt. A program által használható memória elfogyott, a cserefájl pedig nem használható. A képek egyes részei megsérülhettek. Próbálja meg elmenteni a módosított képeket más fájlnevekkel, majd indítsa újra a programot és ellenÅ‘rizze a cserekönyvtár helyét a beállítások között.A(z) "%s" eljárás nem indítható. Lehetséges, hogy a megfelelÅ‘ bÅ‘vítmény hibába ütközött.Nem meghatározottVisszavonásVisszavonási elÅ‘zményekVisszavonási elÅ‘zmén_yekMértékegységekIsmeretlenIsmeretlen fájltípusIsmeretlen típusú palettafájl: -%sEltávolításNévtelenNévtelenA "_pontról pontra" beállítás használata alapértelmezettkéntDinami_kus gyorsbillentyűk használataHelyettesítés _webböngészÅ‘velKijelölés szűkítésekor az összes látható réteg felhasználásaFekete-fehér (1 bites) paletta használataSzínátmenet színének használataEgyéni paletta használataInformációs ablak használataWebre optimalizált paletta használataFelhasználói telepítés naplójaFelhasználói felületSegédeszköz ablakÉrtékÉrték:Vektor-módosítás%s verzió, írta:Verzió:FüggÅ‘legesAz elsÅ‘ rácsvonal függÅ‘leges eltolása; lehet negatív szám is.Rácsvonalak függÅ‘leges távolsága.Nagyon nagyNagyon kicsiNézet_RácsnézetL_istanézetRácsnézetListanézetSzínek osztálya:Színmélység:Figyelem: nem sikerült betölteni az adatokat: - -%sFigyelem: nem sikerült menteni az adatokat: - -%sWebböngészÅ‘WebböngészÅ‘Ãœdvözli a -GIMP %d.%d felhasználói telepítÅ‘jeHa be van kapcsolva, akkor a párbeszédablak automatikusan követi az aktuális képet.Ha be van kapcsolva, akkor a GIMP megjeleníti a gyorskaraktereket a menükben.Ha be van kapcsolva, akkor az összes festÅ‘eszköz megjelenít egy elÅ‘nézetet az aktuális ecset körvonaláról.Ha be van kapcsolva, akkor egy kép minden alkalommal aktívvá válik amikor az ablaka megkapja a fókuszt. Olyan ablakkezelÅ‘k esetében lehet hasznos, amelyek a "fókusz kattintásra" módszert használják.Ha be van kapcsolva, akkor a párbeszédablakokban megjelenik egy súgógomb, amellyel elérhetÅ‘ a kapcsolódó dokumentációs oldal. Ezen gomb nélkül is elérhetÅ‘ a dokumentációs oldal az F1 billentyűvel.Ha be van kapcsolva, akkor a menük leválaszthatóak.Ha be van kapcsolva, akkor az F1 billentyű lenyomására elindul a súgóböngészÅ‘.Ezzel a beállítással megadható, hogy történjen-e mentés a módosítást nem tartalmazó képek mentésének kérésekor.Ha be van kapcsolva, akkor a GIMP különálló információs ablakot nyit minden egyes képnézethez.Ha be van kapcsolva, akkor minden elmozdulás alkalmával le lesz kérdezve az X grafikus környezettÅ‘l az aktuális egérpozíció; ellenkezÅ‘ esetben egy kevésbé pontos módszerrel lesz meghatározva a pozíció. Bekapcsolt állapot esetén a nagy ecsetekkel való rajzolás általában pontosabb, viszont sok esetben lassabb. Bizonyos X grafikus környezetek esetében gyorsabb működést eredményez a bekapcsolása.Ha be van kapcsolva, akkor egy festÅ‘eszköz használatakor meg lesz jelenítve a kurzor a kép felett.Ha be van kapcsolva, akkor alapértelmezésben megjelenik a rács. Ãtállítható a "Nézet->Rács megjelenítése" funkcióval is.Ha be van kapcsolva, akkor alapértelmezésben megjelennek a segédvonalak. Ãtállítható a "Nézet->Segédvonalak megjelenítése" funkcióval is.Ha be van kapcsolva, akkor a kép minden nagyításakor és kicsinyítésekor követni fogja azt a kép ablakának mérete.Ha be van kapcsolva, akkor a kép fizikai méretének minden változásakor követni fogja azt a kép ablakának mérete.Ha be van kapcsolva, akkor alapértelmezésben megjelenik a réteg-határvonal. Ãtállítható a "Nézet->Réteg-határvonal megjelenítése" funkcióval is.Ha be van kapcsolva, akkor alapértelmezésben megjelenik a menüsor. Ãtállítható a "Nézet->Menüsor megjelenítése" funkcióval is.Ha be van kapcsolva, akkor alapértelmezésben megjelennek a vonalzók. Ãtállítható a "Nézet->Vonalzók megjelenítése" funkcióval is.Ha be van kapcsolva, akkor alapértelmezésben megjelennek a gördítÅ‘sávok. Ãtállítható a "Nézet->GördítÅ‘sávok megjelenítése" funkcióval is.Ha be van kapcsolva, akkor a kiválasztott ecset az összes eszközre vonatkozik.Ha be van kapcsolva, akkor a kiválasztott színátmenet az összes eszközre vonatkozik.Ha be van kapcsolva, akkor a kiválasztott minta az összes eszközre vonatkozik.Ha be van kapcsolva, akkor alapértelmezésben megjelenik a kijelölés. Ãtállítható a "Nézet->Kijelölés megjelenítése" funkcióval is.Ha be van kapcsolva, akkor alapértelmezésben megjelenik az állapotsor. Ãtállítható a "Nézet->Ãllapotsor megjelenítése" funkcióval is.Ha be van kapcsolva, akkor a kép minden pontja a képernyÅ‘ egy pontjához van rendelve.Megadja, hogy egy fájl megnyitását követÅ‘en a teljes kép legyen látható vagy mindig 1:1 arányú nagyítással jelenjen meg a kép.Ha be van kapcsolva, akkor lehetÅ‘ség van a menüelemek gyorsbillentyűinek módosítására (módszer: a menüelem kijelölése után le kell nyomni a kívánt billentyűkombinációt).FehérA fehéregyensúly csak RGB színű rétegeken működik.SzélességSzélesség:AblakkezelésAblakkezelési információAblakok helyzete"%s" írása -XXCF hiba: nem támogatott, %d verziójú XCF-fájlXCF figyelmeztetés: az XCF fájlformátum 0-s verziója -nem mentette helyesen az indexelt színtérképeket. -Szürkeárnyalatos térképre cserélve.YSárgaSárga:%s méretű képet próbál létrehozni.Dokkolható párbeszédablakokat ejthet ide.A programhoz a GNU General Public License egy példánya is jár, ha nem kapta meg, írjon a Free Software Foundation Inc.-nek. Levélcímük: 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.A következÅ‘ változtatások érvénybe léptetéséhez újra kell indítania a GIMP-et:A GIMP telepítése nem teljes:A beviteli eszközök beállításai vissza lesznek állítva az alapértelmezett értékekre a GIMP következÅ‘ indításakor.A gyorsbillentyűk vissza lesznek állítva az alapértelmezett értékekre a GIMP következÅ‘ indításakor.Az ablakbeállítások vissza lesznek állítva az alapértelmezett értékekre a GIMP következÅ‘ indításakor.Nagyítási és méretmódosítási viselkedésNagyítás 1:1Teljes méretNagyításKicsinyítésNagyítás arányaNagyítás aránya:Tel_jes méret_Nagyítás_KicsinyítésTeljes méretNagyítás: %d:1Kép nagyításának módosítása az ablakméret változásakorNagyításNagyítás és kicsinyítésKicsinyítésNagyítás:[ Kiindulási kép ]_Névjegy_KülsÅ‘ forrásSzín felvétele a _háttérbÅ‘lSzín felvétele az _elÅ‘térbÅ‘lLap hozzá_adásaHozzá_adás a kijelöléshezS_peciális lehetÅ‘ségek_Festékszóró_Mindent kijelöl_Réteg rögzítéseÉ_lsimítás_TetszÅ‘leges forgatás...Mű_vésziMé_retarányA_utomatikus_K_Háttérszín_Háttérszín:_Fekete (teljesen átlátszó)Szakasz színátmenet-típ_usaKijelölés színátmenet-típ_usa_Elmosás_FényerÅ‘:_Ecset_Ecsetek_Ecsetek, minták és színátmenetek_KitöltésTár_oló_Szín szerintSzí_n szerinti kijelölés_CV_onalvég:_CsatornákHibák _törléseVisszavonási elÅ‘zmények tör_lése_Másoló_BezárásLap _bezárása_FelhÅ‘k_Színeszközök_SzínekSzín és átlátszatlanság _beállítása..._Környezet_Helyi súgó_Másolás_Másolás név szerint...Kép _létrehozása sablonból..._Kivágás és méretmódosításKép k_ivágásaÃ_ves_Görbék..._Sötét négyzetháló_Alapértelmezett színekEcset _törléseTároló _törléseCsatorna _törléseSzín _törléseSzínátmenet _törlése...Kép _törléseRéteg _törlésePaletta _törléseÚtvonal _törléseMinta _törlése...Mentett beállítások _törléseSzakasz _törléseKijelölés _törléseSablon _törlése_Telítetlenné tevés_Lap leválasztásaEszkö_zállapot_Párbeszédablakok_Változtatások eldobásaSzöveginformá_ció eldobásaT_orzítás_Pontról pontra_KétszerezésS_zerkesztésEcset s_zerkesztése...Csatorna tulajdonsá_gainak szerkesztése...Szín s_zerkesztése...Színátmenet s_zerkesztése...Réteg tulajdonságai_nak szerkesztése...Paletta s_zerkesztése...Útvonal tulajdonsá_gainak szerkesztése...Minta s_zerkesztése...Sablon s_zerkesztése..._Ellipszis-kijelölés_Réteg és csatorna elÅ‘nézeteinek engedélyezéseR_oppant nagy_Kiegyenlítés_Radír_ElÅ‘térszín_FájlKitöltés _ezzel:Kép illesztése az _ablakba_Egy réteggé lapítás_TükrözésSzakasz tük_rözéseKijelölés tük_rözéseLe_begÅ‘_Betűkészlet_Betűkészletek_ElÅ‘térszín:_Szabadkézi kijelölés_ZÃlt_alános_GigásziSzí_nátmenetSzínát_menetek_SzürkeárnyalatosA réteg s_zürkeárnyalatos másolata_Növelés..._SegédvonalakÉ_lesség_Súgó_Vízszintes:Ã_rnyalat:Ó_riási_Ikon_Ikon:_Kép_Képek_ImportálásPaletta _importálása..._Indexelt...In_fóablak_Metszet a kijelöléssel_InvertálásS_arok:_NagyRé_teg_Rétegek_Rétegek, csatornák és útvonalak_Bal végpont_Bal szomszéd jobb végpontja_Szintek...Vi_lágos négyzetháló_FényhatásokFé_nyerÅ‘:Vonalstíl_us_LineárisLá_ncoltBal ol_dali szín betöltése innen:Csatorna _lesüllyesztéseRéteg lejje_bb helyezéseÚtvonal _lejjebb helyezése_B_KézzelLeké_pezés_MaszkMaszk k_ijelöléssé alakításaSzínek ma_ximális száma:_MérÅ‘eszközKö_zepesPaletták összefésü_lése...Importált útvonalak össze_fésüléseA GIMP 2.0 felhasználói beállításainak át_vétele_Vegyes_Túlnyúlási korlát:_Mód_ModulkezelÅ‘Ãt_helyezés_Név:T_ermészetÚ_j ecsetÚ_j csatornaÚj _csatorna...Ú_j bejegyzés...Ú_j színátmenetÚj réte_gÚ_j réteg...Ú_j palettaÚ_j útvonalÚj útvo_nal...Ú_j mintaÚ_j sablon...Ú_j nézetÚ_j..._KövetkezÅ‘ tipp_ZajMe_gszüntetés_Eltolás...Ãt_látszatlanságKép _megnyitása_Megnyitás...Kitöltési s_zín_FestÅ‘eszközök_Ecset_Paletta_BeillesztésTároló _beillesztése_Beillesztés név szerint...Út_vonalakMin_ta_Perspektíva_Poszter..._BeállításokElÅ‘ké_pElÅ‘_nézeti kép mérete_ElÅ‘zÅ‘ tipp_Nyomtatási méret...Tul_ajdonságokG_yorsmaszk aktívKi_lépés_V_RGB_SugárCsatorna _felemeléseRéteg fel_jebb helyezéseÚtvonal _feljebb helyezéseNézetek _felülre helyezéseA kép fe_lülre helyezése vagy megnyitásaGyorsbillentyű hozzárendelésének mó_dosítása_Téglalap-kijelölésÚj_ra"%s" új_raEcsetek _frissítéseSzínátmenetek _frissítésePaletták _frissítéseMinták _frissítése_Használatlan színek eltávolítása a végsÅ‘ palettárólMegjele_nítés_FelülírásSzakasz _másolása...Kijelölés _másolása..._Betűkészletlista frissítése_Sorrend és láthatóság visszaállításaBemeneti eszközök mentett beállításainak visszaállítása az _alapértékekreElmentett gyorsbillentyűk _visszaállítása az alapértékekreAblakok elmentett helyzetének visszaállítása az _alapértékekreBeállítások v_isszaállítása innen:_Jobb végpont_Jobb szomszéd bal végpontja_Forgatás_Telítettség:M_entésBal old_ali szín mentése ide:Beállítások m_entése ide:Bemeneti eszközök beállításainak m_entése kilépéskorGyorsbillentyűk mentése ki_lépéskorAblakok helyzetének mentése ki_lépéskorÃt_méretezésKép á_tméretezése...Réteg átmér_etezése...Importált útvonalak á_tméretezése a kép méretéreKi_jelölés_KijelölésKi_jelölés-szerkesztÅ‘_KijelölÅ‘eszközök_FormaÉl_esítésKépki_jelölés megjelenítéseMegjelenítés az _eszköztárban_Szinuszos_KicsiMaszat_olás_Igazítási távolság:Kijelölés kör_berajzolásaKijelölés körberaj_zolása..._Kivonás a kijelölésbÅ‘lLap_stílusSa_blon:Sabl_onok_SzövegKüszö_bszint..._Apró_A nap ötlete_Eszköz_EszközökRéteg a_lfa-csatornájának átviteleÃt_alakításÃta_lakítóeszközök_Visszavonás"%s" _visszavonása_FüggÅ‘leges:_Nézet_Látható_WebHasználandó _webböngészÅ‘:Fe_hér (teljesen átlátszatlan)_FehéregyensúlySzé_lesség:_Körbefordulás_X-felbontás:_X:_Kiterj._S_Y-felbontás:_Y:_Nagyítás_Nagyítás (%s)színekmásolásdpicsak "yes" vagy "no" érték szerepelhetne %s logikai kifejezésben, de "%s" szerepelvégzetes feldolgozási hibaszürkeárnyalatosszürkeárnyalatos-üreshüvelykhüvelykindexeltindexelt-üresÉrvénytelen UTF-8 karakterláncérvénytelen érték ("%ld") az ikontípusbanérvénytelen érték ("%ld") %s kifejezésbenérvénytelen érték ("%s") az ikontípusbanérvénytelen érték ("%s") %s kifejezésbenmillimétermilliméterpercn/aszázalékpicapicaképpontképpontképpont/%aképpont/%spontpontmásodperctips-locale:huBíró Ãrpád -Dvornik László -Kovács Emese -Nagy Balázs -Süveg Gábor -Tímár András%s kifejezés értéke nem egy érvényes UTF-8 szöveg"%s" kifejezés elemzése közben: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/id.gmo gimp-2.2.9/po/id.gmo --- gimp-2.2.8/po/id.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/id.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,37 +0,0 @@ -Þ•”¼Å\ p -q | ˜ ² È 0Ï    2 ; A F _ f k r Š 5¢ Ø æ   '#F-j˜%® Ôáñ - +EN^ e -ozšŸ¸Ëæ 2<”B×ðù þ  3 @JPj ‹• ¬Í Öàæö þ  6=X oy‚‡–¥¼Ü"û!@HMVf!w™®ÀÜá åñ    - +0 -GR -YdlrƒŠ’ ›§° -µ1À7ò5*2`“­ÁÐ àê6ð#'KT\ew†5”ÊÜáOç7@ [| ’0žÏäé   -;FKQl>„ Ã!Ïñø ÿ +#?&cŠ¼Ðß÷ - 6 CMUfƒˆŸ°!Æè  -) 4—AÙ ÷ - % -9DMSm„‘ -˜£!³ÕÛäê  -# .OVmƒ ’ œ¦¿ÆÏæþ8PX] es!„¦ÅÚò÷ý # 5 -E P Y ` - Š œ ¥ « à É Ï Ö â ê ï @û /Po`&ˆA5”ŠW:J(%cR%s Message%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(invalid UTF-8 string)<%s>Add text to the imageAdditionAlphaAutoBackground color set to:BehindBlueBrush:Change Background ColorChange Foreground ColorClick "Continue" to enter the GIMP user installation.Click: selectClick: select Drag: moveColor:Columns:ConstraintsContinueCould not seek in XCF file: %sCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCubic (Best)Delete TemplateDelete the selected templateDelete this imageDifferenceDisplaying [%0.6f, %0.6f]DissolveDistance: %0.6fDivideDocumentsDrag: moveDuplicate the selected templateEditEdit Color Palette EntryEdit Palette ColorEdit the selected templateError saving XCF file: %sError writing XCF: %sError writing file '%s': -%sFlip PathFont:Foreground & 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:FreehandGIMPGIMP MessageGIMP Text EditorGIMP User InstallationGIMP versionGradient:GreenHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardness:HueImageIndent:Instant updateInvalid UTF-8 data in file '%s'.Justify:LandscapeLargeLarger PreviewsLength:Line _Style:LinearLogarithmicLower Channel to BottomMediumMessage repeated %d times.Message repeated once.Move PathMultiplyNoneNone (Fastest)NormalOpacityOpen Text File (UTF-8)Open the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOverlayPathPortraitPosition: %0.6fRGB (%d, %d, %d)RGBA (%0.3f, %0.3f, %0.3f, %0.3f)Raise Channel to TopRaise Path to TopRaise this image's displaysRateRedRename PathReorder ChannelResize PathRevertRotate PathSaturationSaveSave Error Log to FileScale PathScreenSelect AllShadowsSmallSmaller PreviewsSmoothSpacingSpacing:Stroke PathSubtractTextText ColorThe 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.This text input field is limited to %d characters.This tool has no options.Transform DirectionTransform PathTransforming...UndefinedValueXCF error: unsupported XCF file version %d encounteredYou can drop dockable dialogs here.Zoom AllZoom InZoom OutZoom factor: %d:1[ Base Image ]_Icon:_Name:expected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorinchpointProject-Id-Version: gimp HEAD -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2003-06-24 22:15+0700 -Last-Translator: Mohammad DAMT -Language-Team: Indonesian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -%s Pesan%s%sKlik: perbesar pilihan%s%sSeret: pindahkan dan kompres(%0.3f, %0.3f, %0.3f)(Tidak ada)(Window konsol ini akan ditutup dalam 10 detik) -(string UTF-8 salah)<%s>Tulis teks ke dalam gambarTambahAlphaOtomatisWarna latar belakang diganti ke:DibelakangBiruKuas:Ganti warna latar belakangGanti warna latar depanKlik "Lanjutkan" untuk mulai menginstall GIMP pada level user.Klik: pilihKlik: pilih Seret: pindahkanWarna:Kolom:KonstrainLanjutkanTidak dapat lakukan seek dalam file XCF: %sBuat tampilan baru untuk gambar iniBuat gambar baru dari template pilihanBuat template baruBuat dan edit gambar atau fotoKubik (Paling baik)Hapus templateHapus template terpilihHapus gambar iniPerbedaanMenampilkan [%0.6f, %0.6f]DissolveJarak: %0.6fPembagianDokumenSeret: pindahkanDuplikatkan template pilihanEditEdit Isian Palet WarnaEdit Warna PaletEdit template pilihanError saat menyimpan file XCF: %sError saat menulis file XCF: %sError saat menulis file '%s': -%sBalik PathJenis Huruf:Warna latar dapan dan belakang. Kotak-kotak hitam dan putih akan mereset warna. Panah akan menukar warna. Klik ganda untuk membuka kotak pemilih warna.Warna latar depan diganti ke:Gambar BebasGIMPPesan GIMPEditor Teks GIMPInstalasi User GIMPVersi GIMPGradien:HijauHSV (%0.3f, %0.3f, %0.3f)Posisi pegangan: %0.6fTekanan:HueGambarIndentasi:Update langsungData UTF-8 salah dalam file '%s'.Rata:MendatarBesarHasil jadi yang lebih besarPanjang:Gaya Gari_s:LinierLogaritmisTurunkan Channel ke paling bawahSedangPesan diulang %d kali.Pesan diulang sekali.Pindahkan PathPerkalianTidak adaTidak ada (Paling cepat)NormalOpasitasBuka file teks (UTF-8)Buka kotak pemilih kuasBuka kotak pemilih jenis hurufBuka kotak pemilih gradienBuka kotak pemilih polaOverlayPathBerdiriPosisi: %0.6fRGB (%d, %d, %d)RGBA (%0.3f, %0.3f, %0.3f, %0.3f)Naikkan channel ke paling atasNaikkan path ke atasNaikkan tampilan gambarLajuMerahGanti Nama PathUrutkan ulang ChannelRubah ukuran PathKembali ke asalPutar PathSaturasiSimpanSimpan log error ke dalam fileSkala PathLayarPilih semuaBayanganKecilHasil jadi ukuran kecilHalusJarakJarak:Path strokeKurangiTeksWarna Teks:Kuas yang sedang dipakai. -Klik untuk membuka kotak pemilih kuas.Gradien aktif. -Klik untuk membuka kotak GradienPola yang aktif. -Klik untuk membuka Kotak Pola.Kotak input teks ini dibatasi hingga %d karakter saja.Alat ini tidak memiliki pilihan.Arah transformasiPath TransformasiSedang lakukan transformasi...Belum terdefinisiNilaiError XCF: Versi file %d tidak dapat dibukaAnda dapat meletakkan kotak dialog yang dapat didock di siniZoom semuaZoom Ke DalamZoom Ke LuarFaktor zoom: %d:1[ Gambar Dasar ]_Ikon:_Nama:diminta 'ya' atau 'tidak' untuk token boolean %s, tapi didapat '%s'error parse fatalincipoin \ No newline at end of file diff -uraN gimp-2.2.8/po/it.gmo gimp-2.2.9/po/it.gmo --- gimp-2.2.8/po/it.gmo 2005-01-22 17:33:15.000000000 +0100 +++ gimp-2.2.9/po/it.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,446 +0,0 @@ -Þ•Z ìJƒ ¼•ÈÇÉÇ&ßÇkÈGrÈ9ºÈGôÈA<ÉN~ÉiÍÉ<7ÊktÊ@àÊ2!Ë;TËPËOáË21Ì9dÌ-žÌ9ÌÌ;Í7BÍ zÍ„Í -‹Í –Í - Í -«Í ¶ÍÂÍÒÍ -áÍìÍïÍÿÍ -Î"Î*Î2ÎNÎhÎ~Î0…ζÎÇÎÚÎãÎëÎ -Ï ÏÏÏ$Ï 3Ï AÏ MÏ -[Ï -fÏ qÏ ~ÏŠÏ šÏ ¦Ï²Ï ·Ï ÃÏKÐÏ…Ð.¢Ð1ÑÐ!Ñ%Ñ7Ñ>ÑMÑTÑpÑÑ–ÑšÑ­Ñ -¿Ñ ÊÑÖÑ ìÑ -øÑÒÒ +Ò5ÒDÒ -MÒXÒgÒzÒ’Ò¤Ò¶ÒÅÒ*ÛÒ6Ó=ÓPÓmÓ…ÓŽÓ«ÓÊÓßÓóÓÔ&Ô;ÔOÔ#cÔ‡Ô¡Ô -½ÔÈÔÙÔáÔóÔüÔÕ0Õ 8Õ BÕ OÕYÕiÕ1~Ö3°ÖäÖøÖþÖ׋× -¤×¯×É×ß×ù×Ø Ø -Ø'Ø8ØJØZØAkØJ­ØøØ< Ù HÙ VÙdÙtÙ٥ٵٽÙÂÙ ÜÙèÙþÙÚÚ1ÚCÚ TÚbÚzÚ -ƒÚŽÚŸÚ¸ÚÏÚ&åÚ$ Û1Û8Û >Û HÛVÛ]ÛvÛ}ÛƒÛÛ"¥Û ÈÛÔÛÙÛßÛäÛ -ôÛÿÛÜÜ3Ü7GÜÜ …Ü ’Ü Ü©Ü°Ü ¸Ü ÅÜÑÜ ÙÜæÜëÜ ðÜmýÜkÝ pÝ ~Ý ŒÝ–ÝŸÝ ¼ÝÊÝÚÝ áÝCîÝ72Þ=jÞ@¨Þ6éÞd ߅ߣß3¹ßíß<à#>à!bà„à¡à »àÇà Ýà çàñàúàá(á@áXájá|á™á¶áÓá,êáâ1â9â LâZâ zâ ›â!©âËâæâüâã&ã/ã 8ã FãSãgãnãuã {ã‰ãœã «ã¸ã.Îã5ýã53ä7iä8¡ä)Úä,å1åMåeå2‚å µåÖåñåO æA]æ%Ÿæ&Åæ4ìæ1!ç#Sç wç…ç ¡ç ­ç·çÏçàçæçïçþçè -è(è0è 6èDè Zègè€è’è0¤è Õè áèîè õè ÿè éé4éQé+Zé†é™é¬éµé ÅéÓé Üéæé -îé ùéê$#êHê[êjêê œê½ê×êõêëë"-ëPëfë uëƒë“ë œë¨ë°ë2ì;ìLì Tìaì|ì•ìµì Êì"Øì"ûìí7í@í -Rí ]íkí -Ší)•í¿í,Ùíî! î#Bî#fî!Šî%¬îÒî.ñî ï 'ï3ïDïXïkï~ï#”ï-¸ïæï%üï"ð8ðNðið~ð–ð ›ð©ð -Ãð -Îð -Ùðäðüðññ ñ %ñ2ñBñRñeñtñƒñ Šñ˜ñ -«ñ¶ñ-½ñëñ òñÿñò&ò *ò4ò9ò?òPòcòwòˆò›ò«ò¾òÕò æòòò ó ó ó)ó0ó6ó%<ó!bó „ó‘ó¤ó&¼óãó ÷óôô'ô 9ôGôVô fôsô ‚ôô Ÿô¬ô¾ô ÍôÙôèôõõ8õJõYõ -rõ -}õ-ˆõ ¶õÂõ Éõ×õßõ çõôõ -üõ öö'ö:öSö[önö‚ö •ö£ö½ö ÆöÐö àöêöñö:÷?J÷8Š÷ Ã÷Ï÷Ø÷ê÷ û÷ø -øø%ø -;ø Fø Tø `ø -mø xø „ø -Žø ™ø¥ø ®ø»øÏø Þø>ìø +ùLù\ùnùù‘ù£ù²ùÄùäùôù úú ú-ú2úJú]úvúŠú ú °úºúÍúâúýú û -!û,û -DûOû gûuû ‹û˜û ­ûºûÊûåû ôû ü -üü**üUü^ü!pü’ü.©üØüôü#ýü"!ýDýaý&€ý§ý ½ýÉýÝý,æý#þ7þ>þ Mþ[þnþ'ˆþ°þ'Íþõþÿ(ÿDÿF^ÿT¥ÿúÿ * =^ u -– ¡¯ Ìíü / 5AJ S_u(~$§Ì=Ò6<G?„AÄ79>cx9ÜB=Yf—>þC=JgÌ 4@P bp…Šœ ¬ ¶Â Ô á ïý(=PdwŠœ³Ã×ó+2;ZuŒ ´ ÈÖ -é ô    -   )  9 G Z  -k v ’  š ¦ ¶  Æ Ô ì  -$ -8 -(Q -z -€ -‡ - -œ -¤ -ª - -° -O» -  - ”( ½ Î ç þ  -    + 7  @ .L { Ž ¡  -°  »  É  Õ â ç  ö     ( 5 F Z q u€ ö ÌÅÕc› ÿz ‡r•!8ASbk{&¡'È ðBü ? IS b p| ‹‘˜ ¯¼ËÝãû *G\ktŠ ¡ -«¶ ¿ÉÐØ Ý êö(8 -=H]tH| -Å ÐÚê -òHý!FBh«¯1¾ð !1 -AL Q ]`i™ÊCd1¨0Ú   + -= -HSjz‹ª½ Õ(ã -  -H" -k v -ƒŽ •¡° ¿Ìâ÷  !& . ;GOmt |Š€£ $0E_u‘ •£ µ à ÐKÞ3*6^•¤"º Ýçÿ "$,Ql   °(Ñ+ú)&*P!{/¯ßæõ*1B'_‡—§° -ÂÍÝó  $ - < U h     » Ì Õ ä ý ! '!H!c! t!~!Ž!¨!¼!!Ô!ö!"$" +"8"O"`"u"”"­"-¼"ê#ó#$$$ 4$>$D$T$ d$p$3v$ª$»$Ó$ã$ û$ -% % %,%J%i%‰%¢%¶%Ç% Ü%ê%& &&)&=&L&@T&•&-œ&Ê& Ü&é& î& ü& ''3' :'F' K' W'c'z'™'¸'Ì' à' ê' ö'( ('(?( X(d( -z(…(š( °(¾( Ö(â( -ø())!)))<)A)I)R)Z)l)„) š)¨)½)Ô) -Ü)#ç) *$*=*S*Y*a*~*+›*Ç*Ï* Ö* ä* -ð* û* ++++?+X+q+ †+“+ ¢+°+Ã+Þ+"õ+,!,7, W,e,k,p,v,$Œ,±,Ã,×,æ, õ,- - -#-6- ;- H-U- -m- x- -…--  -ª-¹- É- Ó-Ý-ö-..2.P.l.~.….Ž. ¡.­.À.Ú.ß. -å. ð.ü./"/5/ H/ R/\/e/ v/ ƒ/ /™/¶/Å/×/ é/ -ö/ 0 0 &0 30?0 Y0 e0 q0,}0ª0!½0ß0ó0 -1)'1 Q1^1 v1 „11•1¤1«1 ¼1 È1Ö1Bé1A,2n2Œ2¡2 ³2½2Ä2Ó2 ã2ð2333„'3¬3»3Í3Õ3Þ3 -ã3î3 44'4 94F4X4x4"—4!º4!Ü4þ45/5 G5 Q5 [5e5u5„5 Œ5š5V¢5+ù5 %6(/6X6"^66 —6 £6¯6É6%á6 -7 77$737G7 -W7b7 q77 ˆ7–7 ª7 ´7Â7È7Û7 ð7 ü7 88&08,W8 „8‘8–8 -¦8 -±8¼8Ù8÷89.9A94S9ˆ9š9 - 9«9³9 -Ã9 Î9Û9ê9 ó9: :: -:9: N:!Z:|: ‹:™: ¯:»:Ì:ç: ÷:;; $;1;8;;@;?|;¼;Ë;Ó;ç;÷;<¡1<4Ó<==-= G>Q>Z> -j> u>#>£>-¶> ä>ð>? ?$?,?C?L? -U? `?¥l?@&@:@ C@P@Y@a@g@}@ -•@ - @«@Á@ -Ñ@ Ü@ æ@ô@ø@A #A -A!7AYA ]AkAA ŽA ›A¨AÃAÊA ÒAàAõA BB -*B5BGB ZBhB }B‰B -œB§B¹BÕBòB÷B ýB! -C,C!JC#lCC ¦C -³C9¾CUøC=ND<ŒD=ÉDE" E?0EpE‚E “EŸE£E¨E(­E,ÖEFF%F6F -GFRFhF}FJ‘F ÜFéFøFG +G 8GEG`G zG †G”G¬GÆGÖG;ðG,HFH UH bHnHˆH šH ¦H´H ÄH ÒH ßHëHóH II6ISIeIyIŒII°IÁIÔIïIJJ+-JYJqJ‘J˜J §J ´J ÁJÍJ ßJ ìJøJ#K 3K?K QK]KrK‰K6¡KØKõKýKL L7&L^L|L‘L¡L¨L¿LÕL äL ñLýLM #M0M NMZMoMuM -|M -‡M’M šM§M¼M ËMÙM -ßMêMïM NN -'N2NRN oN{NN¨NÄN ßNëNûNO$O8O4MO‚OŸO²OËOèOûO -P.$PESP™P ªP ¸PÅP ÝP ëPùPQ Q (Q 4Q -@QKQ \Q -hQsQ‚Q ‘QžQ»QÃQœ×QNtR -ÃRÎR×RÞRðR øRSS2SHS#bS†S¤S ¸SÄSÖSòST#"TFTdT xT…T˜TµTÌT$çT U+U @UJUZUtUˆU! UÂUÞUðU -÷UVV 'V4VSVnV…V™V±V ÇVÓVêVWW7WNW gWuWˆW ›W¨W½WÏWäWüWX&X -8XCXSX"mXXªX ÄXÐXäXÿXY0Y=@Y6~YSµYJ ZTZmZ€Z “ZZ®ZÄZÓZíZüZ[ ,[8[G[\[o[ ƒ[[¨[º[ Î[Û[û[\,\F\a\y\ \™\®\Ã\Ó\â\ô\´])¼]Næ]5^KI_=•_ƒÓ_*W`¤‚`¢'a3ÊaTþa?Sb`“b2ôb'c¯©cYe4\f/‘fºÁf |gˆgg–gg®g¿gÒgÚgêgüghh(hEh Zh fhsh;|h¸h ÈhÕhåh öhi i&i6i#Ji ni{i i ži&«iÒi -åiðijj-j"?jbjzjŠjšj«jÊjàjðjkk$k 5kBk[k ok{k€kk¥k+«k×kÝkîk õkl ll &l -4l?lElLlTl ]l il8vlv¯l&m-mEm]m em rm~m „m!¥mÇmßmûmn/nLninpnn†nn£n½n Än Ñn Ýn ënùno o o!o1o @oLo ]o iouo’o!¡oÃo×o(ðop#"p Fp Tpaphp -np yp †ppŸp³pÎp -Óp Þp -êp õpqqKq1hq7šq1Òq5rH:rAƒrŠÅr;Ps!ŒsÁ®s ptæ‘t xu¨…v}.w*¬wB×xæyz z‚¢z%{ +{9{)@{5j{¯ {1P|0‚|0³|1ä|(}C?}€ƒ}S~,X~2…~ ¸~AÙA€*]€«ˆ€í4 "‚Î/ƒ£þƒª¢„§M…§õ…†˜ ‡G9ˆèˆïj‰2ZŠŠN§Š öŠ-‹ -.‹9‹L‹^‹o‹u‹z‹‰‹o’‹ŒŒŒ-Œ FŒSŒeŒ uŒ ƒŒŒ¦Œ¯Œ ·ŒÄŒ -ÊŒ<ÕŒ Ž Ž 7ŽAŽSŽgŽwŽ†Ž›ŽµŽÅŽÔŽèŽ÷Ž! 0=Q -alqz3‘;Å;¡=ßFæ‘ -’7’ <’ I’W’]’e’ w’˜’Ÿ’§’°’Î’î’3“#;“_“w“Š“š“´“Ê“Ù“è“î“ õ“””'”F0”w” -—” -¢”­” ²” À” Δ Û” è” ö”!•!&• H• T•+`•KŒ•0Ø•Q –˜[–¢ô–$——5¼—Pò—GC˜-‹˜O¹™j šotšeäšjJ›~µ›p4œo¥œw<?Ê> -žtIžt¾ž`3Ÿ‰”Ÿ ž 0¤ Õ Û â ô  ¡ ¡(¡6*¡oa¡Ñ¡Ó¡Ú¡4â¡#¢È;¢G£%L£Xr£UË£O!¤q¤ˆ¤‘¤š¤¢¤ -«¤ ¶¤ ¤̤ Õ¤ߤè¤#ú¤¥ &¥4¥=¥C¥R¥Y¥b¥u¥ˆ¥‘¥£¥ µ¥¿¥ Ä¥ ҥॠ÷¥¦ ¦¦ ¦¦/¦J¦ i¦Š¦ ¦¦¤¦­¦ ̦Ù¦ á¦ë¦ü¦ ÿ¦ § §#§7§>§ -E§P§ X§e§m§§ –§¤§ª§¹§ا ç§ó§ -û§¨¨ (¨6¨E¨ U¨c¨ w¨ …¨“¨ £¨°¨èÙ¨é¨û¨ © ©$©3©<©M© g© q© -~©‰©©ž©º©É©Û©õ©ªª0ªBª Rª sª }ª‡ª ª™ª Ÿª«ªÀªϪ Õªãªóªúª«« «'«*« 3« =« -G« -R«]«v«« ‡«‘« —«¤«ª«°«¶«½«Ä«Ì«Ô« ç« ó«¬¬ "¬/¬6¬=¬E¬_¬n¬ -Ž¬™¬¬¬ »¬ ǬÓ¬Û¬ã¬ù¬ ­ ­!­ $­.­3­9­L­g­p­x­‹­¡­ Á­ έÜ­â­ò­ø­ÿ­ -® ®® /® =® -K® V® d® q® {® ˆ®•® ¦®°® ¸®®É® -Ϯڮ ã®ï®ø® ¯ ¯ ¯)¯ 0¯>¯N¯U¯ ^¯ k¯ y¯†¯ ¯ ¯«¯ º¯ƯÙ¯߯â¯ç¯ï¯ þ¯ ° °$°9° L°Y°_°h°y°Œ°ž°(°°Ù°á°ê°±±*±4D±1y±/«±Û±ñ±²!² )²6²<²P²#a² …²¦²Ų̲ܲ"ì²³ -³"³4³E³L³U³k³ |³ˆ³³—³§³¹³γ -ç³ -ò³ -ý³´ ´´"´2´8´?´ -_´j´{´´ -Š´•´›´¤´©´¾´Ô´ã´ ë´ø´µ µµµ#µ'µ --µ8µ?µDµ5Hµ~µ µšµªµ¯µ¶µ ¾µ̵!áµ ¶ $¶E¶ -e¶ p¶|¶ƒ¶‡¶¶”¶š¶ ¶ §¶ ±¶»¶Á¶ȶ ϶ݶ.ð¶·4<·q¸(‹¸n´¸E#¹>i¹I¨¹Iò¹\<ºl™º>»tE»@º»5û»>1¼jp¼PÛ¼:,½=g½<¥½<â½>¾=^¾ -œ¾§¾ -®¾ -¹¾ ľ -ξ Ù¾å¾ õ¾ -¿¿¿!¿ 7¿D¿ M¿Y¿x¿˜¿ ®¿8¸¿ñ¿ÀÀ"À+À FÀ SÀ ]À gÀ qÀ ~À ŒÀ ˜À -¦À -±À ¼À ÉÀÕÀ êÀ öÀÁ ÁÁU$Á…zÁ>Â.?Â!n©±ÂÆÂÍ éÂ÷ÂÃÃ1ÃFÃWÃ!gÉÙëà ÆÃçÃøÃÄ(Ä8ÄOÄ hĉĢĹÄÖÄ2òÄ<%ÅbÅ}Å•Å®Å!·ÅÙÅ"øÅÆ5ÆMÆlÆ‹Æ¥Æ,½ÆêÆ Ç (Ç4Ç -EÇPÇ cÇ!mÇÇ ¡Ç «Ç¸Ç ÇÇÔÇ[çÇBCÉ7†É¾ÉØÉÝÉîɱôÉ ¦Ê²ÊÏÊíÊ -ËË !Ë.Ë6ËRËoË~Ë>šËIÙË#Ì=7Ì û̧̗ÌÄÌáÌñÌùÌþÌÍ*ÍIÍiÍy͒ͥͷÍ×ÍñÍùÍÎÎ/ÎBÎ.XÎ-‡ÎµÎ¼Î -ÄÎ ÏÎÝÎãÎ -ýÎ ÏÏ -.Ï/9ÏiÏσψÏÏ ¢Ï ¬Ï¹ÏÉÏÜÏ;òÏ.Ð7ÐGÐ YÐ eÐoÐ xІЙР Ð¬Ð -³Ð¾Ð€ÍÐNÑSÑcÑ tÑ~чѣѼÑÖÑ ßÑWíÑLEÒ]’ÒJðÒ?;Ów{Ó'óÓÔD:ÔÔP›Ô)ìÔ4Õ&KÕ,rÕŸÕ"µÕ ØÕ âÕìÕõÕÖ)ÖFÖbÖyÖ#•Ö(¹Ö-âÖ×3-×)a×‹×’× ¦×2³×/æ× Ø$Ø@Ø[ØrØ…Ø˜Ø Ø §Ø³ØÊØâØ êØôØýØ Ù.ÙFÙ&ZÙ6ÙE¸Ù;þÙA:ÚG|Ú<ÄÚ7Û(9Û bÛ'ƒÛA«Û*íÛ!Ü(:ÜqcÜSÕÜ.)Ý/XÝ=ˆÝ=ÆÝ1Þ6Þ"FÞiÞ|Þ„Þ Þ´Þ ¼ÞÈÞßÞùÞßß'ß.ßCß\ß lßߦßB¼ßÿßà'à /à=à Mà$Wà%|à¢à+©àÕàçà ùàá á2á -;áFá Oá[á$já1áÁá×áéáâ"âBâ#bâ†â£â¶â.Òâãã/ãCãRã[ãbãkãùãä ä"ä3äNäfä†ä–ä&¨ä&Ïäöä å"å;åJå]å -|å+‡å³å2Ïåæ9"æ&\æ-ƒæ)±æ'Ûæ)çB-ç -pç{çç¢ç¸çÐçæç+üç/(èXè%nè”è®èÇèäèüè -é -"é+-éYéké|é#Žé²éºéÉéÑéåé÷éêê/ê>êRêZênê ‚êêC–êÚêéêÿê&ë?ëFëVë\ëcëuëˆë›ë¬ë¿ëÒëâë öëìì)ì8ìLì -hìsìyì5ì0µìæìúìí:7írí‡í—í§íÄíàíðíîî#î2îBîTîeîî“î¦îµîÓîñîï'ï'7ï _ï kï.yï ¨ï´ï½ï Óïßï èïöï -ÿï -ðð8ð Sðtð„ð—ð©ðºðÓð òð þðñ ñ "ñ),ñAVñM˜ñ8æñ ò ,ò9òOò dònò}òŒò”ò¬ò»òÍòÞòïòþòó#ó4ó FóRóbó wó…ó\•ó0òó#ô4ôFôXôhôzôŒô›ôºôÑôçôöôõ õ)õFõ!dõ†õ¡õ¼õÙõìõö"#öFöföwö‰ö¦ö¶öÕöèö÷÷6÷I÷_÷÷ “÷ ¡÷¯÷À÷,Ô÷ ø ø$%øJøHdø,­øÚø'áø( ù#2ù$Vù){ù¥ùÀùÉùÞù,íù)úDúJú]úoú.†ú7µú%íú4û'Hû,pû-û'Ëû_óûfSüºüÁü ÈüÖüìü,ý1ý OýYý -xý!ƒý7¥ý1Ýýþ*þEþ_þyþ þ Œþ ™þ ¥þ!²þÔþ+èþ+ÿ@ÿIIÿC“ÿQ×ÿO)QyLËI…bDèS-NxÐTINžOí= ¿ ËØêú, @M\ p~”°Çß÷ 0Qg|–!«"Í!ð.7(?hƒ —"¸ Ûü1@ Uaq‚•¬Èâú" / > M b w Š ¤ Ä ä ø - -@ -F -O -X - o - -| - ‡ -‘ -h  -   ž) È "Þ   2 A R  c  q 2{ ® à Ø è ñ   # ( 9  H  i  v „ œ ¼ Ö }è !füˆÈ…tNÃrÔGM`V·Ñåíþ ,F.],Œ ¹KÆ - '6 GU\kqx€™¬¾ÓÙô$" Gh x)‚¬ Ä -ÒÝåîöÿ#%%Io -„ (°Ùká M -Yd -u €WŒ1äI `j7€¸Ï Õá ðú !. 4 AO·ÏD‡9Ì3:CVf |Š*žÉÚ2í <R/d ”¢Q´,= FTl~©Å×éý  ,5S [gz“”(>%Z€™¹¿Îåý]#?AÁ  $2  W c }   Ÿ © Ä Û ð #!%%!0K!0|!0­!6Þ!$":"@R" “""¬"*¾"é"&û"4"#W#p# …#‘#©#¸# Ï#ð#$$ -9$D$U$m$$ -™$¤$¿$Ó$â$÷$%)%$G%l%‹% £%°%Ã%Ý%ñ%" &0&M&c&l&{&‘&¡&¹&Ø&ñ&L'P(Y(i({((˜(±(¸(È(Þ(í(Hõ(>)"S)v)’)¯)Á)Ô)ç)3ö)0**[*x*"”*!·*Ù*ø*+/+ 7+D+_+u+ -+N˜+ç+Cï+3,B,S,Y,k, |,#Š,®,¶,É, -Ð, Û,è,"-&$-K-a- {- ‰-•-¥-¶-È- è- . .=.R.#r.–.¨.È. Û.ü./1/ 8/D/]/d/l/u/{/Ž/ ©/Ê/Ý/ø/0 0*50#`0„0¡0À0Ç0Ð0é00141<1 B1P1`1o111¦1¿1Ú1õ122 /2=2P2m2$‹2 °2$¼2á233 3 -3#3'?3g33œ3°3Ã3Ó3Ú3ì344!4 04>4 Z4 g4u4„4Ÿ4°4À4Ø4é4ù45(5@5%Z5$€5¥5½5Æ5Ï5 â5ï5"6+606 66 B6O6g66–6«6 º6È6Ø6 ð6þ6 7"7=7M7c7w7‡7 š7#¨7Ì7Ý7%í78 &8 38:A8|85–8Ì8 á8#90&9W9i9ˆ9 ˜9¦9®9Ä9Ì9 Þ9ì9ý9U:Uk:Á:á:ÿ: ; ;(;9;R;d;‚; –; ¢;†¬;3<C<Y< b<l< q<<š<©<Ä< Ø<æ<&ý<*$='O='w=%Ÿ=Å=Þ=!ü= > -(> -3>>>S>b>j> |>iˆ>2ò>%?%-?S?,[?ˆ?§?½?Ð?ë?% -@0@ -9@ D@N@_@u@ Ž@›@¬@ Â@Ì@Û@ ñ@û@ AA+AFAYAiA}A1›A-ÍAûA BB+B;B5PB2†B¹BØBöB C<#C`C vC€CC–C ¦C°CÅCÕC ÜCèCðC%÷C D)D DD'PDxD‡D¡D¿DÓD èD E E,E@E VEcEiECpE?´E ôEF FF%/F&UF²|F@/GpGxG'€G -¨H³HÊH ÛH -çH,òHI5=P@|P@½PþP&QB,QoQƒQ–Q­Q³QºQ.ÀQ3ïQ#R5RHR[R -kRvR‘R®RGÊRS"S1SIS fStS„S£SÂS ÔSâSùST'T:CT&~T¥TµTÆTÙTõTU!U 6UDUUU fUtU{U”UœU!ºUÜUðUVV5VNVgV(†V¯VÈV$äV6 W@W3`W ”W¡WµWËWàW÷WX+X#AX1eX—X¬X ¿XÌXÝXôX=Y!LY nYxYY™YA«YíY ZZ 4Z&>Z"eZ ˆZ •Z£Z³ZÇZÛZ'êZ [[<[B[K[ ^[l[t[„[Ÿ[¶[Ç[ Í[Ù[ß[ ø[#\(\/7\g\ †\”\&¯\%Ö\!ü\]1]E]c]z]‘]6¨]&ß]^!^>^Y^p^ƒ^<¡^XÞ^7_I_Y_ n__¤_¹_Ø_ Þ_ë_ ú_``/`>`M`a`u`#ˆ`¬`²`³É`V}a Ôaáaéaða b bb.bGbZb!ub—b³bÈbÚbòbc *c'Kc!sc•c°cÀcÖcóc -d%)dOdod ˆd’d¢d¹dÊdãdee 0e:eJejee$eµeÔe ñe f3fQf"af„f¢f'Áféf"g(g;gYgwg†g!¢gÄg#ãgh#hAh_hoh„h.ŸhÎhâhñhi i?i\iyi9—i.ÑiHjIIj“j®jÊj âjìjkk&1kXk!nkk §k³kÇkÜkók l3lGldl|l1‘l(Ãl&ìl m4mTmsmŽmŸm¼mÜmümn/nîGn:6onqo,àoN qK\q®¨q1WrÀ‰r¾Js9 tZCtHžtwçtD_u¥¤u÷JvúBxH=y>†y»Åy zz•zœz£z¸zÏzãz ìzúz{{.{!A{c{‚{’{¡{F³{ú{|&|=|Z|k|‹|¢|%´|(Ú|}}4}K}-\}Š}¢}µ}Ì}ç}~)~,H~u~‡~ž~%»~á~ÿ~2 IWhz”¨ -¹ÄÛ ø/€4€<€S€\€l€t€ƒ€•€ ¨€´€»€ -Ä€ Ï€ Û€ è€Cö€ˆ: -ÃÎæþ‚!‚ 8‚-B‚,p‚ ‚$¾‚ã‚ü‚#ƒ@ƒ[ƒdƒsƒyƒ‚ƒ“ƒ«ƒ²ƒÁƒ Ѓ ݃ëƒ ÿƒ „„)„?„N„`„ r„€„#’„¶„'Ë„ó„…="…`…h…€…“… -¨…³…º…Ê…ä… ì…ù…†*†0†A† Q†_†p†ƒ†JŒ†4׆6 ‡6C‡0z‡P«‡Iü‡–FˆF݈$$‰ÿI‰)IŠsŠz‹Õ•Œ“k`ÿU`â¶#™²½’p‘’’’0’3P’µ„’5:“7p“3¨“8Ü“-”DC”—ˆ”e •@†•AÇ•„ –[Ž—[ê—AF˜ºˆ˜ëC™ñ/š­!›¬Ï›³|œ´0¨åŽž­Ÿb> ï¡ ç‘¡=y¢ ·¢kØ¢D£,K£x£€£“£¯£ Ê£ أ⣠ñ£¥ÿ£ ¥¤±¤ɤâ¤ý¤¥&¥;¥N¥^¥ -|¥ ‡¥‘¥  ¥ª¥P¹¥ -§§ 6§@§Q§e§w§‹§(¦§ϧá§õ§ ¨¨7¨ I¨ U¨a¨w¨ -ˆ¨“¨˜¨¡¨N¿¨R©Na©´°©@eª[¦« ¬¬¬/¬H¬ O¬[¬#t¬˜¬ - ¬«¬/´¬ä¬%­:*­!e­‡­ ­½­$Ü­®®-®?®F® N®Z® t® ~®Uˆ®/Þ® ¯ ¯ -)¯4¯I¯]¯q¯„¯Ÿ¯1³¯6寰+°-:°Sh°4¼°iñ°‹[±Ãç±-«²BÙ²U³Wr³=ʳaµ‡jµ…òµcx¶sܶ˜P·„é·ˆn¸÷¸K•¹Lá¹L.ºˆ{º’»^—»Šö»–¼½B½ b½ -l½w½!‰½«½¾½ѽ;Ó½•¾¥¾§¾®¾=¶¾8ô¾Ð-¿Nþ¿0MÀr~ÀZñÀeLÁ0²ÁãÁ ìÁ øÁ ÂÂ' - :ÂG VÂbÂ;x ´ÂÀ ÅÂÓÂÙ ë ùÂÃ!Ã9ÃJÃcà -uÀÇà ˜Ã¦Ã -¿ÃÊÃÓÃÙÃÜÃëÃþÃ"Ä<ÄWÄ `Ä nÄ xÄ‚Ä Ä´Ä ¼ÄÈÄÞÄáÄñÄùÄ$ Å1Å8Å@ÅPÅXÅmÅuÅ •ÅŸÅ²Å¹ÅÌÅêÅÆÆ Æ'Æ?ÆSÆfÆvƆƗƭƿÆÐÆãÆ÷Æ -Ç'Ç9ÇOÇ `ÇjÇyÇ ÇšÇ!±Ç ÓÇàÇñÇ úÇÈÈ8ÈLÈ!cÈ…È œÈ½ÈÑÈæÈ+ûÈ'É -/É:ÉAÉUÉ [É!hÉŠÉ ŸÉ¬É¿É ÖÉ -âÉ -íÉøÉÊ"Ê %Ê/Ê -8Ê -CÊNÊ$^Ê ƒÊÊ–ÊŸÊ ¦Ê ´Ê ÀÊÍÊÔÊ ÜÊ æÊðÊùÊËË6Ë -RË]ËlËtË}ˆˣË#µË ÙËåË þË Ì Ì'Ì -0Ì;ÌYÌlÌ€Ì–Ì ™Ì¦Ì ­Ì·ÌÍÌ èÌòÌùÌ Í.*ÍYÍ`Í -rÍ}Í‘Í™Í Í¨Í ¸ÍÆÍ×ÍæÍ÷ÍÎÎ)Î:Î NÎ\Î nÎ {Î …ΑΙΡΠ±Î»ÎÊÎÓÎêÎ Ï - -ÏÏÏ.Ï -CÏNÏ VÏcÏ rÏ -~Ï‰Ï ŸÏ«Ï ÄÏÐÏèÏîÏñÏöÏþÏÐÐ2ÐAÐWÐnІР-ŽÐ™Ð¬ÐÀÐÔÐ7åÐÑ -%Ñ0ÑEÑ[ÑuÑM•Ñ=ãÑD!ÒfÒ ~Ò#‹Ò -¯Ò ºÒÈÒÏÒìÒ6Ó%8Ó-^ӌӓӦÓ*¸Ó -ãÓ -îÓùÓ Ô#Ô *Ô4ÔOÔ gÔtÔ}ԆԜԯÔÂÔ ÛÔ éÔóÔüÔ -Õ -ÕÕ -2Õ -=Õ&HÕ -oÕzÕ—Õ  Õ ¬Õ ¸Õ ÄÕÎÕÓÕòÕ Ö &Ö2ÖBÖRÖVÖ\Ö_ÖoÖsÖ -yÖ„Ö‹Ö‘ÖF•ÖÜÖõÖ××#× +×7×K×)d×'Ž×(¶×&ß× -Ø -ØØ#Ø'Ø0Ø5Ø:Ø@ØFØOØXØ^ØdØlØV{Ø9ÒØ Ù[«ª—ÿyoøƧ.ç79ù€š-ƒ{Q°¶>4 T4WÈïV´nב}ç†À,‡e›Ùr8Ù0øà–KÉ®—‚¤æÙˆ¬ Pýß(#â`4öt«ö¤S’oïëŸl>údX-'ÉG¥=b¹i‰·,»t7ŽÓ¢2 ô\QYÓ›¨{ÀéùB*ÂIÚˆPs‰ÜìM. Ì=|­ÌJú‰×âEÑs 8”ê£/"%úœÉ ·ÂÙ—t$ }V\væ!Obúó\Dxä'®¹ ?ƒW° ¢T»([¼Ƴ¡+&¸hep§_w/ ‚Âç¿à0›i†ò ÎôkšçLðž—PÏÔH¦Xd}\ÖK725 ^ÒÖÛ¥´òL Œšzìz"+®×Ü( ’åêõn$ü² Þ².£+ýCò+µ•ð˜ƒ© Sƒäö—C9×ð´øEK9KÀv÷…ñ1\ãš>öÃ;¬þlÙÒ«å[(ËY ? ‹è3\|Dxš{86Ü ѪÞÕrS¹—àùºUÒßœßØ‘$¥J ÉáQ, Jû®UкA 6 ¼/Ïo•ÉHƒ³¦¾a€æ‹ºí1oÄSeüª|??= #0°~ ±Ž:L×cÛË!®-åÞ¸5‹œ•44v㯖ä­yÏ -€ZÈL’öµ]B /í -•tX§f€'Æõ©bãë"~íŽÄ˜("àqä;‡U6Ø…±j: q\,ŽØnCä¼M³sµ¥† # Ï°ÞÅö -y»ä  Ð(NÊê01­ß @ ™k‚E›˜Œ/ f«™´cõèIÐæc:qöIÍBƒ·'Zø¥"×z@ û½‹]ïU éõ ]ås7M-Ý”dÇ ‘}e¨ ¦’U¦È„>ëuJÞLuAg^pjÐVø A©Ö—gþ)·{W‚ˈll * ¨(µS- áWÄ´Æ=ӆ˯wk*ŠVoŠAIRјýnC ¥Gœ7 ;:yQíý˜È±íÝþ Ì“cGÕY@-§ _ô“ ÔX! :ïrNEm,FÂg÷B-V#sÏØTÖ!âÿôi‡|Ye1ÄT pD=èz~'.ûC劌JžëÙNgE®ŸŽñmœ«!r£ükêŸB§ÕÜ ƒ[Pi´ÁŽ AZ©J V»Eº<0WÊÖ# {G1e,"k)thɶðÌg`2çlF•Šÿ¥›ƒ¯ï”£7Ä,’?âÓÛ—¤2?DrT ŒÁqüÑP>  ì;I”ýÀë² ·ù ‘d†E½^8Ûr­aºœÍC¯Ÿ¤ˆþH×bèÛWBO¬¬Æ -zbûJî¢YËWé&ãïN›„Îî?þºÈõö øàZ•üŒ*‹êhu’.ã6vG¾`=Þp'1 X·p©@‘H6sÅÖ²TC_­t$ÿ['øb$ ÷Á“‰DÎ&ÒKÕî㌑ J€O ¨#Qm>Ìf™;6M É ÔÒ‚Àù&(m?è®ñÛôä2‡ŸuÎëÑ*òšj.œ…Xp¬m²kšÁÍùæ_!Núž`æ¯vF g™å0|< í5OqÐÛ wî#§CŸ%zLòÞ= ¨™±JœÈâ]¢2Ï¡ÃxFsÆÄÏ<¡çFP|÷Ì¡ÍlŸ1l˜2ÿìm`%¶GOæ#;¨´ë× ûÐ#O/Ë tuÉ8 ‹H ÊŽ|Åq£èËßh@±ñØ!>¾ j£¿i+– (ô-¤i¶H= f*9 ü" Í)s‚àÔ`(îP ¼Sµ£9=ÌðÃ&sjêÍݪ8›úÌæH¨îˆ ‡óÑí@EL­Ø§ÿ$ÀÎC„^ñR"éÚÔêMÍóVF |­]c†”9ô ~X 6K Ð; v>Û‡«DáÁ/ÆÅn:ðW Z¬Õ×Qìåe) ¡8<éYi -lc a·üY †FR6&pð0Ü]R„˜þ‰¬Ø}Mkr éþR ¼‹A;0 [ÆBáPZ”ª@ao„»wð©uƒz k„ÜA3+ÈXñ3 i ý)Œ1ÒkÚ‚°7ë{ø@<Ûb¼ -.2Ùﳞ–¿©Ú/µÁÔÿ%‚Ót:ÃÇ 8‘ Ty%'ÜÖ¿Ø㓶MÙÇTRÂÈýv…á€* ¯%°Úòj™ÎaîܱxÒãaÁÀâFy–®€¹žšd`hxç K 3 - ®<˜g Íäh:1 ?ˆª@Ý9~ÅS—UC}°=Á³7h•±õJÎ{õpº’Hôú^G ž½èÃó7Ý f³ °ëÎ~pAO ÏD¾þäj¨!Gqf} …/%û<æKÚTýq'P5ì;io¢ÓÜ 5B¾6íU߆[ú$wžvXÇG÷aÔ¯b¿ fùA÷Iµy££qñÍ)>ºzŠc/uf5ÏŠ•óIÉ7ò*‚·w#ñ›BÚMS>5©%ˆ-êÊ”¦´Ÿ&¾+’w½N¸^cÙ¸¾5%ª_û;oN4¿»Q²‡çYἡ˜Ú:¨I H”âLé,ÇÊõ¸¤þ¡ˆD¥Õ ¯"Ì÷!ݸŻ}& š+_x$-h½3Ë”"ó±5y‰žàáĉ¤ % ~û_Ò°) xȆ޵àÁ…óZ²ûm^e»öU)õL¬ßwß' ^²IV³ÅEón¤ÝR ?< -ÊY ÄI„Z eOœÓ¹»FbùT éÂ3)¼BÔ–N [Y<¸xPAaŽ«\1Àh¶Ñ‡X$“ yn½Sí3¶uMª¢R“¿2+ÖWÕVüߧá]E 3M÷¯c -©êâù ™ÖŒÒ÷ݦړ¡Ý4Øm·4Oü|o§ -ïÇ{ÑÞ&¢¤3rÿ™¡è¹V ¬™Zì«Q Š•éÃî9*Ž~Uè{Ó‰ý¢‹“9L*ìÎjÓ¸K…n.ÀD a½¥¸  „Õ‘–d­xÇ KS ¹ô…m‹)áˆ:‡8ðg\z]…Ðåó ºW,^¿_ÿ`½0ʵ ]5R.¼ždŠ ç3³à‘[QÃ’w¢½OD¹d@ –2‰G_òZŸ`„¶9rÔF<ñ³&ìÑ8Ê$N«¦RHÀ¦òÕv4+ ²Ë¶ª¹Êâ¾gÅà “ Çl¾j!d¿t´n6 Nf}Š4å­.Рıu~–0,øÅãQúÇUÆ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-20 08:24+0100 -Last-Translator: Marco Ciampa -Language-Team: gimp@erlug.linux.it -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Opzione non valida "%s" - -Utilizzo: %s [opzione ...] [file ...] - - --batch-interpreter - La procedura da eseguire con l'interprete batch. - --debug-handlers Abilita debugging dei segnali non fatali. - --display Utilizza lo schermo X specificato. - --dump-gimprc Genera un file gimprc con valori predefiniti. - --no-cpu-accel Non utilizzare le speciali accelerazioni CPU. - --no-shm Non utilizzare la memoria condivisa tra GIMP e i propri plugin. - --pdb-compat-mode - Modalità compatibile database procedurale. - --session Usa un file sessionrc alternativo. - --stack-trace-mode - Modalità di debugging per segnali fatali. - --system-gimprc Utilizza un file gimprc alternativo. - --verbose Mostra messaggi iniziali. - -b, --batch Esegue comandi in modalità batch. - -c, --console-messages Mostra messaggi di avviso sulla console invece che in una finestra di dialogo. - -d, --no-data Non caricare pennelli, gradienti, tavolozze, motivi. - -f, --no-fonts Non caricare nessun carattere. - -g, --gimprc Utilizza alternativi file gimprc. - -h, --help Mostra questo messaggio d'aiuto. - -i, --no-interface Esegui senza interfaccia utente. - -s, --no-splash Non mostrare la finestra iniziale. - -v, --version Mostra la versione del programma. -%d livelli%d dpi%d dpi, %s%d livelli%d minuti%d secondi%d x %d dpi%d x %d dpi, %s%d x %d pixel%g x %g %s%p%s copia canale%s canale a selezioneMessaggio %s%s copia%s maschera%s%sClic: estende la selezione%s%sTrascina: sposta e comprime(%0.3f, %0.3f, %0.3f)(Nessuno)(Questa finestra di console si chiuderà in 10 secondi) -(buffer senza nome)(modello senza nome)(Varie)(pulito)(stringa UTF-8 non valida)(modificato)(nessuno)Livello 11 livello15 gradi %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Trasformazione 2D...4:1 (400%)8:1 (800%)<%s><>Per una prestazione ottimale di GIMP, è necessario regolare alcuni parametri.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis e il team di sviluppo di GIMP.

Impossibile elaborare il file dei suggerimenti di GIMP!

Manca il file dei suggerimenti di GIMP!

Un file di nome '%s' esiste già.A_ggiungi alla selezioneA_ngoloInformazioni su GIMPAzioneAttiva l'immagine in _focusFiltri attiviAdattivo con supersamplingAggiungiAggiungi _canale alfaAggiunta canale alfaAggiungi àncoraAggiungi canaleAggiungi colore alla mappa coloreAggiungi guida:Aggiungi righelliAggiungi guida orizzontaleAggi_ungi maschera di livello...Aggiungi livelloAggiungi maschera di livelloAggiungi tracciatiAggiungi trattoAggiungi livello testoAggiungi guida verticaleAggiungi una maschera al livelloAggiungi colore dallo SFAggiungi colore dal PPAggiungi maschera di livelloAggiungi testo all'immagineAggiungi il colore corrente allo cronologia coloriAggiungi il filtro selezionato all'elenco dei filtri attivi.Aggiungi alla tavolozza %sAggiungi alla selezioneAggiunta tema '%s' (%s) -AggiuntaController di ingresso aggiuntiviRegola luminosità e contrastoRegola il bilanciamento del coloreRegola le curve di coloreRegola i livelli coloreRegola luminosità e contrastoRegola il bilanciamento coloreRegola le curve di coloreRegola i livelli coloreRegola tonalità / luminosità / saturazioneRegola tonalità e saturazioneRegola livelli automaticamenteRegolazioneOpzioni avanzateInfluenza:Area coinvolta %sAerografoAerografo con pressione variabileAl_fa a selezioneAllineatoAllineamentoTutti i canaliTutti i fileTutti i file (*.*)Tutte le immagini e le informazioni di annullamento che non rientrano nella Cache Immagine verranno scritte in un file temporaneo. Questo file dovrebbe essere disposto in un filesystem con abbastanza spazio libero (diverse centinaia di Mbyte). Su un sistema UNIX, potete utilizzare la cartella dei file temporanei di sistema ("/tmp" o "/var/tmp").Permetti che le regioni completamente trasparenti vengano riempitePermetti la selezione di aree completamente trasparentiPermetti ingrandimento %sAlfaAlfa a selezioneAlfa:Un'immagine dell'ampiezza scelta utilizzerà più memoria di quella che è stata configurata come "Dimensione massima immagine" nella finestra delle preferenze (attualmente %s).An_imazioneÀncora selezione fluttuanteÀncora il livello fluttuanteÀncora selezione fluttuanteAngolo:Anti gomma %sAntialiasingAspettoApplica maschera di livelloApplica _maschera di livelloApplica sogliaApplica maschera di livelloSiete sicuri di volere eliminare '%s' dall'elenco e dal disco?Siete sicuri di volere eliminare il modello '%s' dall'elenco e dal disco?Come in _preferenzeChiedi conferma prima di chiudere un'immagine senza salvarla.Proporzioni:Rapporto di aspetto:Allega parasiteAllega parasite all'immagineAllega parasite all'elementoAllega parasiteAutore:Auto_Segui immagine attivaRiduzione automaticaAuto riduzione della selezioneAuto-ridimensionamento finestraAutocaricamentoRilevato automaticamenteFiltri disponibiliTipi disponibili:Riempimento colore dello sfondoLuminosità-Cont_rasto..._BufferSfondoColore di sfondoColore di sfondo impostato a:Sfondo: %d, %d, %dIndietro (correttivo)Area base riempita su tutti i livelli visibiliSelezione di base su tutti i livelli visibiliDietroSpigoloBi-lineareBianco e neroNero:Sfumatura _colori estremiS_fumaturaSfumaturaSfumatura _opacità estremiSfumatura:Sfumatura: non valida per immagini indicizzate.Sfumatura in corso...BluBlu:SfumataSfoca o contrasta_Bordo...Bordo canaleSelezione bordoSelezione bordo diLiminosità-ContrastoLuminosità e contrasto non operano su livelli indicizzati.PennelloEditor pennelliCartelle pennelliPennello UIPennello:PennelliMenu pennelliRiempimento coloreBufferMenu bufferBruciaEstremitàPer estensioneRicaricando l'immagine allo stato salvato su disco, perderai tutti i cambiamenti, incluse tutte le informazioni di annullamento.CMYKC_alibratura...Prelievo c_oloreC_olonne:C_ombinaCalibra risoluzione monitorImpossibile annullare %sDimensione s_uperficie...CancellaElimina guidaImpossibile aggiungere maschera livello con dimensioni diverse dal livello specificato.Impossibile aggiungere una maschera livello ad un livello senza canale alfa.Impossibile aggiungere una maschera di livello ad un livello che non è parte di un'immagine.Non posso ancorare questo livello perchè non è una selezione fluttuante.Impossibile convertire in una tavolozza con più di 256 colori.Impossibile creare un nuovo livello da una selezione fluttuante perché appartiene ad una maschera di livello o canale.Impossibile creare la cartella '%s': %sImpossibile creare l'anteprimaNon è possibile ritagliare perché la regione selezionata è vuota.Impossibile espandere $(%s)Non è possibile la selezione fluttuante perché la regione selezionata è vuotaImpossibile alzare un livello senza alfa.Impossibile salvare, non è stato selezionato nulla.Impossibile delineare un canale vuoto.Impossibile tratteggiare un tracciato vuoto.Dimensione superficieModalità riempimento su_perficie:Centro X:Centro Y:CentratoCambia colore dello sfondoCambia voce mappa coloreCambia colore di primo pianoCambia risoluzione immagineCambia unità immagineCambia dimensione di stampaCambia livello corrente o tracciatoCambia il colore di sfondo della grigliaCambia il colore di primo piano della grigliaCambia tavolozza indicizzataCambia la prospettiva del livello o della selezioneFallito il cambiamento della scorciatoia.CanaleAttributi di canaleNome canale:Il canale non può essere abbassato ulteriormente.Il canale non può essere alzato ulteriormente.Colore canaleIl canale è già in fondo.Il canale è già in cima._Canale alla selezioneCanale a selezioneCanale a selezioneCanale:CanaliMenu canaliControllo _dimensione:Scegli stile di disegnoCerchioCanc_ellaCancellaCancella canaleCancella cronologia annullamentiCancella tutto il testoCancella gli erroriCancella la cronologia annullamenti...Fare clic su "Continua" per accettare le impostazioni.Fare clic su "Continua" per creare la tua cartella personale di GIMP.Fare clic su "Continua" per avviare l'installazione utente.Fare clic su "Continua" per procedere con l'installazione utente.Fare clic per connettere quest'àncora con il punto finale selezionato.Fare clic per creare una nuova àncora. (provare con MAIUSC)Fare clic per creare un nuovo componente del tracciato.Fare clic per creare un nuovo tracciato.Fare clic per creare l'anteprimaFare clic per cancellare quest'àncora.Fare clic per inserire un'àncora nel tracciato. (provare MAIUSC)Fare clic per render angolare questo nodo.Fare clic per aprire il percorso.Fare clic sul tracciato per modificarlo.Fare clic per aggiornare l'anteprima -%s fare clic per forzare l'aggiornamento anche se l'anteprima è aggiornataFare clic e trascinare per cambiare la forma della curva. (MAIUSC: simmetricamente)Fare clic e trascinare per spostare l'àncora.Fare clic e trascinare per spostare le àncore.Fare clic e trascinare per spostare l'àncora. (prova MAIUSC)Fare clic e trascinare per spostare l'àncora. (prova MAIUSC)Fare clic e trascinare per spostare il tracciato.Clic: selezioneClic: selezione Trascina: spostaAggancia risultatoAppuntiLegato al livello inferioreLegato all'immagineDuplicaChiudere %sChiudi tutte le schedeChiudere tutte le schede?Chiudi questa schedaCo_pia tracciatoColo_riColoreBilanciamento coloreFiltri di colore a videoPrelievo coloreInformazioni sul prelievo colore_Bilanciamento colore..._Dithering di colore:Il bilanciamento del colore agisce solo su livelli con colore RGB.Cancellazione coloreIndice dei colori:Colore:_Mappa colore_Spazio colore:_Colora.._Tipo di colorazione per il segmento_Tipo di colorazione per la selezioneColoraColora agisce solo su livelli a colori RGB.Colora l'immagineColora l'immagineMappa coloreEditor della mappa coloreMenu mappa coloreColonne:Comme_nto:CommentoCon_trasto:_ArrotolamentoConfigura i filtri di colore a videoConfigurazione dispositivi di ingresso _estesi...Configura g_riglia...Configura grigliaConfigura griglia immagineConfigura i tasti scorciatoiaConfigura _tasti scorciatoia...Configura il filtro selezionatoConfigura il filtro selezionato: %sConferma dimensione immagineConferma scalaturaConferma modifica del testoConferma chiusura per le immagini non sal_vateScorciatoie in conflittoConico (asimmetrico)Conico (simmetrico)Collega trattiCostanteLimitiContestoI cursori dipendenti dal contesto sono simpatici e normalmente sono abilitati. Essi sono però un carico in più che potresti non desiderare.ContinuaCon i contributi diConversioneConverti margineConverti in scala di grigiConverti in indicizzataConverti immagine a indicizzataConverti in RGBConverti immagineConversione in indicizzata (fase 2)...Conversione in indicizzata (fase 3)...Conversione in indicizzata...ArrotolamentoTipo di arrotolamento %sCopia con nomeCopia il _VisibileCopia del file '%s' da '%s'...Copyright:Segmento errato %d nel file gradiente '%s'.Impossibile creare '%s': %sImpossibile creare il file temporaneo per '%s': %sImpossibile cancellare '%s': %sImpossibile trovare il visualizzatore dell'aiuto di GIMP.Impossibile aprire '%s' in lettura: %sNon è possibile aprire '%s' in scrittura: %sImpossibile aprire la miniatura '%s': %s.Impossibile leggere %d byte da '%s': %sImpossibile posizionarsi sul file XCF: %sImpossibile eseguire il plug-in visualizzatore dell'aiuto di GIMP.Conteggio:_Ritaglia livelloCrea n_uovo pannelloCrea un nuovo modelloCrea una nuova immagineCrea un nuovo livelloCrea un nuovo modelloCrea una nuova finestra per questa immagineCrea una nuova immagine dal modello selezionatoCrea un nuovo modelloCrea e modifica immagini o fotografieCrea e modifica tracciatiCrea tracciato dal testoCrea selezione dal tracciatoCreazione anteprima ...Creazione cartella '%s'...TaglierinaTaglierinaInformazioni taglierino e ridimensionamentoRitaglia immagineRitaglia livelloRitaglia immagineRitaglia o ridimensiona un'immagineTaglio:Solo crosshair_Taglia_Taglia con nome...Cubica (migliore)_Stato correnteAltezza corrente:Solo livello correnteStato correnteLarghezza corrente:Cursore_Modalità cursore:Re_ndering cursore:Tipo di curvaCurveLe curve per il livelli a colori indicizzati non sono modificabili.PersonalizzataColore personalizzatoGradiente personalizzatoColore person_alizzato di riempimento:TagliaTaglia con nomeCianoCiano:D_uplica pennello_Duplica il canaleD_uplica gradienteD_uplica livelloD_uplica tavolozza_Duplica tracciatoD_uplica motivoD_uplica modello...Scacchi scuriSolo toni scuriLinea punto punto...Linea punto...Modello tratteggio:Preimpostazione tratteggio:TratteggioData:DebugVisualizzazione predefinita in modalità pienoschermoVisualizzazione predefinita in modalità normaleGriglia predefinitaImmagine di griglia predefinita_Interpolazione predefinita:Dimensione predefinita anteprime di _livello e del canale:Soglia predefini_ta:Elimina àncoraElimina àncoraElimina masc_hera di livelloElimina maschera di livelloElimina oggettoElimina segmentoElimina modelloCancella pennelloElimina canaleCancella coloreElimina gradienteCancella livelloElimina maschera di livelloElimina tavolozzaCancella tracciatoElimina motivoElimina le opzioni salvate...Elimina il buffer selezionatoRimuovi il modello selezionatoElimina quest'immagineElimina vettoriLa cancellazione di "%s" è fallita: %sPunti fittiDesaturazioneDesatura agisce solo su livelli di colore RGB.DescrizioneProgettaStato dei dispositiviDispositiviFinestreMenu finestreDiamanteDifferenzaColore direttoDisabilita maschera di livelloDisabilita maschera veloceAbbandona informazioni sul testoVisualizzazioneMostra navigazioneMostra _filtri...Mostra procedureTipo di visualizzazione:Visualizzazione [%0.6f, %0.6f]DissolvenzaDistanza:Distanza: %0.6fDitheringDivisioneCrea una _nuova installazione utente GIMPSicuri di voler reimpostare tutti i filtri ai valori predefiniti?Sicuri di voler reimpostare tutte le opzioni strumenti ai valori predefiniti?Volete rimpiazzarlo con l'immagine che stavate salvando?_Non salvareAgganciabileCronologia _documentiCronologia documentiDocumentiMenu documentiSc_hermaBruciaSchermaScherma o Brucia trattiScherma/BruciaDoppio tratteggioTrascina àncoraTrascina àncoreTrascina curveTrascina manigliaTrascina tracciatoTrascina: spostaDisegna con stiloDisegnabileMod disegnabileProcedure di disegnoNuovo livelloNuovo tracciatoA causa della mancanza di qualsiasi carattere, la funzionalità di testo non è disponibile.Esegui un dump degli eventi da questo controllerDuplica pennelloDuplica il canaleDuplica gradienteDuplica livelloDuplica tavolozzaDuplica tracciatoDuplica motivoDuplica il modello selezionatoImpossibile annullare!_Esporta tracciato...E_xtra piccoloComportamento dei marginiRileva mar_giniModificaModifica attributi di canaleModifica il colore del canaleModifica voce di colore tavolozzaModifica voce mappa coloreModifica attributi livelloModifica maschera di livelloModifica modalitàModifica colore tavolozzaModifica attributi tracciatoModifica attributi maschera veloceModifica colore maschera veloceModifica modelloModifica pennelloModifica attributi di canaleModifica coloreModifica voce mappa colore #%dModifica gradienteModifica attributi di livelloModifica tavolozzaModifica attributi tracciatoModifica motivo...Procedure di modificaModifica il modello selezionatoSelezione ellitticaSvuota canaleLivello vuotoSvuota tracciatoLivello testo vuotoNome variabile vuoto nel file di ambiente %s_IncrementoAbilita maschera veloceAbilita dithering della _trasparenzaAbilita questo controllerAbilita la visualizzazione di un suggerimento pratico su GIMP all'avvio.Abilita la visualizzazione dei suggerimenti.EnormeInserisci un nome per la tavolozza fusaInserisci un nome per le opzioni salvateInserisci un nome per questo bufferInserisci un nome per questo modelloCrea un nuovo nome per le opzioni salvateInserisci indirizzo (URI):AmbienteCartelle di ambienteEqualizzazioneEqualizza non agisce su livelli indicizzati.Cancella sullo sfondo o sulla trasparenzaGommaCo_nsole di erroreConsole di erroreMenu console di erroreErrore durante il salvataggio del file XCF: %sErrore durante l'elaborazione di '%s' alla riga %d: %sErrore durante la lettura di '%s': %sErrore durante la lettura del file pennello '%s': %sErrore durante la scrittura di '%s': %sErrore durante la scrittura del file XCF: %sErrore durante la scrittura del file '%s': -%sErrore durante la scrittura su '%s': %sErrore durante la scrittura di un file temporaneo per '%s': %s -Non è stato creato nessun file.Errore durante la scrittura di un file temporaneo per '%s': %s -Il file originale non è stato toccato.ErroriEventoEx_tra grandeEspandi se necessarioEsporta tracciato a SVGEsporta tutti i tracciati da questa immagineEsporta il tracciato correnteSorgente:Dispositivi di ingresso estesiEstensioniRiempimento colore in primo pianoDa primo piano a sfondo (tonalità HSV in senso orario)Da primo piano a sfondo (HSV in senso antiorario)Primo Piano a Sfondo (HSV)Primo Piano a Sfondo (RGB)Primo Piano a TrasparentePrimo piano a trasparentePP/SFColore PP/SFFS rilassatoFS rigorosoFS a livelloAgg_iusta le superfici ai livelliSfumatura in uscitaImpossibile importare gradienti da '%s': %sImpossibile importare tracciati da '%s': %sFantasiaErrore di analisi fatale nel file pennello '%s': il file sembra troncato.Errore fatale di analisi nel file pennello '%s': il file è errato.Errore fatale di analisi nel file pennello '%s': non è un file pennello di GIMP.Errore fatale di analisi nel file pennello '%s': forma di pennello sconosciuta.Errore fatale di analisi nel file pennello '%s': versione di pennello sconosciutaErrore fatale di analisi nel file pennello '%s': profondità sconosciuta %d.Errore fatale di analisi nel file pennello '%s': versione sconosciuta %d.Errore fatale di analisi nel file pennello '%s': profondita pennello non supportata %d -I pennelli di GIMP devono essere grigi o RGBA.Errore di analisi fatale nel file gradiente '%s': il file è errato.Errore di analisi fatale nel file gradiente: '%s' non è un file di gradiente Gimp.Errore fatale di analisi nel file tavolozza '%s': manca l'intestazione magica.Errore fatale di analisi nel file tavolozza '%s': manca l'intestazione magica -Forse è necessaria la conversione da DOS?Errore fatale di analisi caricamento tavolozza '%s': errore di lettura alla riga %d.Errore di analisi fatale nel file motivo '%s': impossibile leggere %d byte: %sErrore di analisi fatale nel file '%s': versione formato motivo %d sconosciuta.Errore fatale nel file motivo '%s': profondità motivo %d non supportata. -I motivi di GIMP devono essere in toni di grigio o RGB.Sfuma_ta...Sfuma canaleSelezione sfumataMargini sfumatiSelezione sfumata diFileFinestra a_pertura fileOperazioni dei fileTipo di fileFile esistenteIl file è troncatoRiempi canaliOpacità riempimento:Modalità di riempimento %sRiempi i colori similiRiempi aree trasparentiRiempi intera selezioneRiempi con colore di sfondoRiempi con colore di _sfondoRiempi con colore di primo pianoRiempi con il _motivoRiempi con il motivoRiempi con la trasparenzaRiempi con il biancoRiempi con colore di _primo pianoRiempi con il colore dello _sfondoRiempi con un gradiente di coloreRiempi con colore o patternRiempitoFilt_riInfine, il livello fuso dovrebbe essere:Seleziona regioni contigueTrova colori similiAggiusta immagine nella finestraAggiusta l'immagine nella finestraAggiusta immagine nella finestraAggiusta sulla finestraRapporto di dimensioni fisseAmpiezza fissaAppiattisci immagineRiflessioneRifletti canaleRifletti livelloRifletti tracciatoRifletti livello testoModalità di riflessione %sRifletti _orizzontalmenteRifletti _verticalmenteRifletti immagineRifletti il livello o la selezioneRiflessione...Riflessione...Selezione fluttuanteSelezione fluttuanteLivello fluttuanteSelezione fluttuante -(%s)Selezione fluttuante al livelloSelezione fluttuante al livelloSelezione fluttanteFloyd-Steinberg (normale)Floyd-Steinberg (sfumature di colore ridotte)FocusCartellaCartelleCartelle dei caratteriCarattere UICaratteri:CaratteriMenu caratteriPer una corretta installazione di GIMP, è necessaria la creazione di una cartella con nome '%s'.Forza l'auto-hinterPrimo pianoColori di primo piano e sfondo. I quadrati neri e bianchi reimpostano i colori. Le frecce scambiano i colori. Doppio clic per la finestra di selezione colore.Colore di primo pianoColore di primo piano impostato a:Primo piano: %d, %d, %dIn avanti (tradizionale)Dal tracciat_oSelezione liberaSelezione liberaA mano liberaDal _temaDal sistema di _finestre (attualmente %d x %d dpi)Da sinistra a destraDa destra a sinistraDalla selezioneDal temaSelezione fu_zzyA tutto sch_ermoSelezione FuzzyGIMPVersione di GIMPMessaggio GIMPImpostazione prestazioni di GIMPGIMP plug-inAvvio di GIMPEditor di testi di GIMPSuggerimenti del giorno di GIMPGIMP Installazione UtenteImmagine GIMP XCFGIMP non può inizializzare l'interfaccia grafica. -Controllare la corretta esistenza dell'impostazione dell'ambiente grafico.Visualizzatore dell'aiuto di GIMPGIMP non è installato correttamente per l'utente corrente. -L'installazione utente non è stata effettuata dato che è stata utilizzata -l'opzione '--no-interface'. Per effettuare l'installazione utente, eseguire -GIMP senza l'opzione '--no-interface'.GIMP utilizza un ammontare di memoria limitata per gestire le immagini, chiamata "cache immagine". Dovreste modificarne la dimensione considerando l'ammontare di memoria per gli altri processi attivi.GIMP utilizza un file gtkrc aggiuntivo. Perciò è possibile dargli un aspetto diverso dalle altre applicazioni GTK.Versione di GIMPGimp avvertirà l'utente se si è tentato di creare un immagine che occupa più memoria di quella specificata qui.GammaGeneraleRiguarda solitamente solo schermi a 8 bit; imposta il numero minimo di colori allocati per GIMP.Genera tavolozza ottimaleRisoluzione monitorGiganteProcedure gimprcEffetti _vetroGradienteEditor dei gradientiMenu editor dei gradientiCartelle dei gradientiColore capo sinistro del segmento di gradienteColore capo destro del segmento di gradienteGradiente UIIl file gradiente '%s' è danneggiato: i segmenti non coprono il campo 0-1.Gradiente:GradientiMenu gradientiEstrazione graniFusione graniGrigioScala di grigiVerdeVerde:GrigliaSpaziatura della grigliaIngrandisci canaleEspandi selezioneEspandi selezione diGuidaMagnetismo guide e grigliaProcedure GuidaHSVHSV (%0.3f, %0.3f, %0.3f)HSV (tonalità in senso _antiorario)HSV (tonalità in senso _orario)Notazione HTML:Alt_ezza:Visualizzatore dell'aiuto da utilizzar_e:Posizione attiva: %0.6fMargine nettoLuce forteDurezzaDurezza:AltezzaAltezza:AiutoVisualizzatore dell'aiutoAiutoVisualizzatore dell'aiuto non parteVisualizzatore dell'aiuto non trovatoProcedure testoEsa:IlluminataSuggerimento finestra _pannelli:Suggerimento per la finestra s_trumenti:HintingIl suggerimento altera la rappresentazione del carattere per produrre un bitmap chiaro a piccole dimensioniIstogram_maIstogrammaScala istogrammaCronologiaOrizzontaleSpostamento orizzontale della prima linea della griglia; dev'essere un numero negativo.Spaziatura orizzontale delle linee della griglia.Quanti nomi di file immagine aperti recentemente mantenere nel menu file.TonalitàTonalità-saturazioneTonalità-saturazione operano solamente su livelli RGB.Tonalità-_saturazioneTon.:GrandissimoI_cone e testoI_mmagineI_mporta tracciato...I_nterpolazione:I_ntervallo:IconaIcone e descIcone e testoSe disponibili vengono usati i suggerimenti per i caratteri ma si potrebbe preferire l'uso esclusivo del suggeritore automaticoSe abilitata lo strumento di spostamento cambia il livello attivo o il tracciato quando un livello o un tracciato viene preso. Era il comportamento predefinito nelle vecchie versioni.Se non si salva l'immagine, gli ultimi %s cambiamenti saranno persi.Se si esce da GIMP ora, questi cambiamenti saranno persi.Nome variabile illegale nel file di ambiente %s: %sImmagineImmagine + grigliaEditor immagineInformazioni immagineMenu immagineDimensione immagineFormato della barra di stato dell'immagineModelli immagineMiniature immaginiFormato del titolo immagine e della barra di statoFormato del titolo immagineImpostazioni finestreFinestre immagineL'immagine non contiene nessun livello visibileFile immagineMaschera immagineLa risoluzione immagine è fuori margini, utilizzo della risoluzione predefinita.Dimensione immagineSorgente immagineTipo di immagineImmaginiMenu immaginiOpzioni di importazioneImporta tavolozzaImporta tracciatiImporta tracciato da SVGImporta una nuova tavolozzaImporta tavolozzaImporta tracciatiTracciato importato_StiloIn_vertiIn_verti mascheraIncrementaleIndenta:Indentazione della prima rigaIndice:IndicizzataColore indicizzatoConversione a indicizzatoI livelli di colore indicizzati sono sempre scalati senza interpolazione. Il tipo di interpolazione scelto riguarderà solamente canali e maschere.Finestra informazioni_Rapporto di zoom iniziale:Inizializza la maschera di livello a:Inizializzazione plug-inInizializzazione plug-in: '%s' -StiloPixbuf inlineaController di ingressoDispositivi di ingressoLivelli di ingressoInserisci àncoraInstalla una mappa colori privata; è utile per visualizzare su schermi a 8 bit (256 colori).Installazione fallita. Contattare l'amministratore di sistema.Installazione completata. Fare clic su "Continua" per procedere.Aggiornamento istantaneoForbici _intelligentiIntensità: %0.3f Opacità: %0.3fInterfacciaProcedure Interne di GIMPProcedure interneInterpolazione:IntersecaInterseca con la selezioneIntersezioni (crocino)Intersezioni (punti)UTF-8 non validoDato UTF-8 non valido nel file '%s'Stringa UTF-8 non valida nel file XCFStringa UTF-8 non valida nel file pennello '%s'.Stringa UTF-8 non valida in file gradiente '%s'.Stringa UTF-8 non valida nel file tavolozza '%s'Stringa UTF-8 non valida nel file motivo di GIMP '%s'.Carattere non valido in sequenza URIScorciatoia non valida.Larghezza o altezza non valide. Devono essere entrambe positive.InvertitaInverti canaleInverti selezioneInverti non agisce su livelli indicizzati.Inverti selezioneSei sicuro di quello che sta per fare?Sembra che sia stato utilizzato GIMP 2.0 in passato.Proprietà dell'elementoVisibilità elementoGiustifica:Mantieni la trasparenzaMantieni sopraRapporto l'aspetto %sRapporto di dimensioni fisso %sMantieni l'altezza %sMantieni la trasparenzaMantieni la larghezza %sTasto giùTasto giù (Alt)Tasto giù (Ctrl + Alt)Tasto giù (Ctrl)Tasto giù (Maiusc + Alt)Tasto giùTasto giù (Maiusc + Ctrl)Tasto giù (Maiusc)Tasto sinistraTasto sinistra (Alt)Tasto sinistra (Ctrl + Alt)Tasto sinistra (Ctrl)Tasto sinistra (Maiusc + Alt)Tasto sinistra (Maiusc + Ctrl + Alt)Tasto sinistra (Maiusc + Ctrl)Tasto sinistra (Maiusc)Tasto destraTasto destra (Alt)Tasto destra (Ctrl + Alt)Tasto destra (Ctrl)Tasto destra (Maiusc + Alt)Tasto destra (Maiusc + Ctrl + Alt)Tasto destra (Maiusc + Ctrl)Tasto destra (Maiusc)Tasto suTasto su (Alt)Tasto su (Ctrl + Alt)Tasto su (Ctrl)Tasto su (Maiusc + Alt)Tasto su (Maiusc + Ctrl + Alt)Tasto su (Maiusc + Ctrl)Tasto su (Maiusc)In Gimp i tasti scorciatoia possono essere ridefiniti dinamicamente. Il file menurc è una copia delle vostre configurazioni perciò può essere utilizzato la volta successiva. Potete modificare questo file con un editor ma è molto più semplice usare GIMP. Cancellando questo file verranno ripristinate le scorciatoie predefinite.TastieraEventi tastieraTasti scorciatoiaDSDColor_e capo sinistro...Orientamento orizzontaleGrandeLarga (256x256)Anteprima più grandeUltimo errore:LivelloIl livello '%s' non ha alfa. Il livello è stato disposto sopra di esso.Attributi di livelloDimensione margine del livell_o...Tipo di riempimento livelloMaschera livello a selezioneSelezione livelloDimensione livello_Modalità livelli_Nome livello:Il livello non può essere abbassato ulteriormente.Il livello non può essere alzato ulteriormente.Il livello è già in fondo.Il livello è già in cima.Livello a dimensione dell'immagineAbbassa il livello fino in _fondoLivello a dimensione _immagineAlza il livello fino in _cimaCanale _alfa del livelloLivelliMenu livelliOpzioni di fusione livelliColor_e capo sinistroAllineamento a sinistraLunghezza:Lascia che GIMP tenti di ripristinare l'ultima sessione salvata ad ogni avvio.LivelliPer i livelli a colori indicizzati i livelli non sono modificabili.Scacchi chiariSolo toni chiariLineaSpaziatura -righe:Larghezza linea:_Stile linea:Stile di linea usata per la grigliaLineareElemento collegatoCaricaApri curveApri livelliCarica colore destr_o daLettura impostazioni curve da fileCarica le impostazione livelli da fileCarica testo dal fileCaricamento anteprima ...Disposizione:LogaritmicoTrattini lunghiInizializzazioneAbbassa il canaleAbbassa il canale fino in fondoAbbassa il canale fino in _fondoAbbassa il livelloAbbassa il livello fino in fondoAbbassa il tracciatoAbbassa tracciato fino in fondoAbbassa il tracciato fino in _fondoAbbassa il canaleAbbassa il canale fino in fondoAbbassa il livelloAbbassa il livello fino in fondoAbbassa il tracciatoAbbassa tracciato fino in fondo_LentePrincip_aleSposta sullo scherm_o...Ma_ppaMagentaMagenta:LenteRendi _trasparenteGestione moduli caricabiliVelocità _animazione selezione:Opacità maschera:Maschera aree _selezionateMaschera aree _non selezionateMatrice:Massima definizione:Massima dimensione _file per le miniature:Dimensione massima _nuova immagine:Massima differenza di colore_Memoria massima annullamenti:Media:MisurinoMisura distanze e angoliMisura distanze ed angoliMisura i righelli e inserisci la loro lunghezza:MedianaMediaTrattini medi_Fondi in bassoFondi in bassoFondi i livelliFondi tavolozzaFondi livelli visibiliFondi tracciati visibiliFondi _livelli visibili...Fondi livelli _visibili...Fondi tracciati _visibiliFondi i livelliFondi tavolozzeFondi vettoriMessaggi procedureMessaggio ripetuto %d volte.Messaggio ripetuto una volta.I messaggi sono rediretti su stderr.Mezze TinteMigrazione delle impostazioni utenteNumero minimo di ann_ullamenti:VarieAngoloModalitàModalità:Modifica colore selezionatoModifica il campo di colori selezionatoModifica tutti i coloriModifica la spaziatura righeCartelle dei moduliManager dei moduliPercorso moduliModuliCursori del mouseRotellina del mouseEventi rotellina del mouseMuoviSposta àncoreSposta canaleSposta selezione fluttuanteSposta guidaSposta guida:Sposta livelloSposta maschera di livelloSposta tracciatoMuovi selezioneSposta livello di testoStrumento spostaSposta elementoSposta livelli e selezioniSposta la selezioneSposta livello correnteSposta tracciato correnteSposta il filtro selezionato in bassoSposta il filtro selezionato in altoSposta sullo schermo...Sposta: MultiplaN_umero di colori:Na_vigazioneFinestra di na_vigazioneDimensione anteprima na_vigazione:NomeNome:NavigazioneNuovo canaleNuovo colore del canaleNuove opzioni di canaleNuovo colore dallo _SFNuovo colore dal _PPNuova immagineNuovo livelloNuovo tracciatoNuove opzioni tracciatoNuovo modelloNuovo pennelloNuovo canaleNuovo canale con gli ultimi valoriNuovo canale...Nuovo colore dallo SFNuovo colore dal PPNuovo gradienteNuova importazioneNuovo livelloNuova livello con gli ultimi valoriNuovo livello...Nuova tavolozzaNuova tracciato con gli ultimi valoriNuovo tracciato...Nuovo motivoNuovi vettoriNessun pennello disponibile da usare con questo strumento.Nessun filtro selezionatoNon è stato trovato nessun gradiente lineare in '%s'Non più disponibileNessun tracciato trovato in '%s'Nessun tracciato trovato nel bufferNessun motivo disponibile per questa operazione.Nessuna selezioneNessuna selezione da disegnareSenza miniatureNon allineatoNessunoNessuno (più veloce)NormaleNormale (128x128)Punti normaliFinestra normaleNon è un file regolareNon ci sono sufficienti livelli visibili da fondere. Ce ne devono essere almeno due.Non ci sono abbastanza tracciati visibili da fondere. Ce ne devono essere almeno due.Numero di _processori da usare:Numero di righe della grigliaNumero di livelli:Al_tro...SpostamentoPosizione canaleImpostazione disegnabilePosizione livelloPosizione maschera di livelloSposta di x/_2,y/2Compensato:Sul discoSe GIMP è stato compilato con --enable-mp, su macchine multiprocessore, imposta quanti processori GIMP può usare contemporaneamente.Solo in memoriaApri com_e livello...OpacitàOpacità:ApriApri immagineApri immagine come livelloApri indirizzoApri file di testo (UTF-8)Apri _posizione... Apri _recentiApri finestra immagineApri la finestra di selezione pennelloApri la finestra della selezione caratteriApri la finestra di selezione gradienteApri la finestra di selezione tavolozzaApri la finestra di selezione patternApri la voce selezionataApertura di '%s' fallita: - -%sL'apertura di '%s' è fallita: %sOpzioni: -Origine X:Origine Y:Larghezza originale:Altro (%s) ...ProfiloLivelli di uscitaSovrappostaErrore di chiamata PDB per la procedura '%s': -Argomento #%d di tipo sbagliato (aspettato %s, ottenuto %s)errore di chiamata PDB: -procedura '%s' non trovata_MotiviMai posto quiz vaghi -o indecifrabili.DisegnaOpzioni di disegno condivise dagli strumentiProcedure strumenti di disegnoStrumento di disegno:_Modalità disegnoDipingi con pennello fuzzyDisegna punti con spigoli viviDisegna utilizzando motivi o immaginiPennello_TavolozzeTavolozzaEditor tavolozzaMenu editor tavolozzaCartelle delle tavolozzeTavolozza UI_Nome tavolozza:_File della tavolozzaTavolozzeMenu tavolozzeProcedure di ParasiteParasitesAnalisi di '%s' -IncollaIncolla buffer _dentroIncolla buffer come _nuovoIncol_la tracciatoIncolla _dentroIncolla come _nuovoIncolla il buffer selezionatoIncolla il buffer selezionato come nuova immagineIncolla il buffer selezionato nella selezioneLivello incollatoTracciatoAttributi tracciatoNome tracciato:Strumento _tracciatoIl tracciato non può essere abbassato ulteriormente.Il tracciato non può essere alzato ulteriormente.Il tracciato è già in fondo.Il tracciato è già in cima.Tracciato a sele_zioneTracciato a selezioneTracciato a selezione -%s Aggiungi -%s Sottrai -%s IntersecaTracciato a selezioneTracciatiMenu tracciatiMotivoCartelle motiviMotivi UIRiempimento a motivoSorgente motivoMotiviMenu motivi_MatitaMatitaPercentuale di larghezza del pennelloPercentile:Cartella personale di GIMPProspettivaInformazioni trasformazione prospettivaProspettiva...Modalità di prelievo %sPrendi un livello o una guidaPrendi un tracciatoPrendi il punto neroPrelievo di colore dall'immaginePrendi il punto grigioPrendi soloPrendi punto biancoDimensioni dei punti:Valori pixelPixelPixel:Controllare che i file XML dei menu siano installati correttamente.Creazione della Vostra cartella personale di GIMP. Attendere...Attendere...Plug-inAmbiente plug-inCartelle dei plug-inIl plug-in non può aprire l'immagineIl plug-in non può salvare l'immaginePlug-In bloccato: "%s" -(%s) - -La morte del plugin potrebbe aver condizionato lo stato interno -di GIMP. Dovreste salvare le immagini e riavviare il programma per -maggior sicurezza.Il plug-in ha risposto successo ma non ha restituito un'immaginePlug-inPlug-inI plugin e le estensioni sono programmi esterni che aggiungono funzionalità a Gimp. Questi programmi vengono cercati all'avvio del programma e le relative informazioni sulle funzionalità sono memorizzate in questo file. Perciò esso è destinato alla sola lettura e non deve essere modificato.PoligonaleOrientamento verticalePosizione: %0.6fPosizionatoPosterizzaPosterizzazione (riduzione numero di colori)_Livelli di posterizzazione:Posterizzazione non possibile su livelli indicizzati.PreferenzePreserva _luminositàSensibilità pressionePressione:AnteprimaL'anteprima non è aggiornataAnteprima:AnteprimeDimensione di stampaDimensione di stampa:Problemi nell'elaborare il testo parassita per il livello '%s': -%s - -Alcune proprietà del testo possono essere errate. A meno -che non si voglia modificare il livello del testo, non -preoccupatevi di questo.Database proceduraleBanca dati proceduraleOperazione in corsoPseudo ColoreScopo:QualitàInterrogazioneInterrogazione nuovi plug-inInterrogazione plug-in: '%s' -Caricamento veloceMaschera veloceAttributi maschera veloceMenu maschera veloceSalvataggio veloceMaschera veloceUscita da GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)Colore RGBRGB-vuotoRGBA (%0.3f, %0.3f, %0.3f, %0.3f)DDS/Ri-mostra "%s"R_eimposta le opzioni strumentiR_eimposta canaleR_eimposta coloreR_eimposta campoColore capo destro...RadialeRaggio:Alza il canaleAlza il canale fino in cimaAlza il canale fino in _cimaAlza il livelloAlza il livello fino in cimaAlza il tracciatoAlza il tracciato fino in cimaAlza il tracciato fino in _cimaAlza il canaleAlza il canale fino in cimaAlza il livelloAlza il livello fino in cimaAlza il tracciatoAlza il tracciato fino in cimaIn primo piano questa finestra immagineAlza la finestra se già apertaAmmontareAmmontare:Ri-mostra ultimoRi-_centra le metà nella selezioneRi-_centra la metà del segmentoRi-distribuzione _punti nel segmentoRi-distribuizione dei _punti nella selezioneRi_nomina le opzioni salvateRipeti "%s"In_verti...Caricamento tavolozza '%s': manca componente VERDE alla riga %d.Caricamento file tavolozza '%s': numero di colonne non valido alla riga %d. Uso il valore predefinito.Caricamento tavolozza '%s': manca componente BLU alla riga %d.Caricamento tavolozza '%s': manca componente ROSSA alla riga %d.Caricamento tavolozza '%s': valori RGB fuori range alla riga %d.ProntoCancellare la cronologia annullamenti?La riassegnazione della scorciatoia causerà la rimozione da "%s".Rigenera _anteprimaRigenera anteprimaSelezione rettangolareRossoRosso:RifaiRiduci immagine ad un numero fissato di coloriRiduci immagine a due colori utilizzando una sogliaAggiorna pennelliAggiorna gradientiAggiorna tavolozzeAggiorna motiviRegistratoRicarica il tema c_orrenteRicarica _tutte le anteprimeRicarica tutte le anteprimeRicorda strumento, motivo, colore e pennello nelle sessioni successive.Immagine remotaRimuovi canaleRimuovi voci sco_nnesseRimuovi selezione fluttuanteRimuovi guidaRimuovi livelloRimuovi parasite dall'immagineRimuovi parasite dall'elementoRimuovi tracciatiRimuovi _voceRimuovi voci sconnesseRimuovi selezione fluttuanteRimuovi parasiteRimuovi la voce selezionataTogli il filtro selezionato dall'elenco dei filtri attivi.Fallita la rimozione della scorciatoiaRinomina canaleRinomina livelloRinomina tracciatoRinomina le opzioni salvateRinomina livello di testoRinomina elementoDisegna il delineatoOrdina canaleRiordina livelloOrdina tracciatoRipeti ultimoRipetiSostituisci la selezioneDuplicaDuplica il segmento gradienteDuplica gradiente della selezioneDuplica il segmentoDuplica la selezioneRiposiziona canaleRiposizionamento dei livelliRiposizionamento vettoriRileggi elenco caratteriReimposta le opzioni strumentiReimpost_a tutte le opzioni strumenti...Reimposta tutti i filtriReimposta tutti i filtri...Reimposta tutte le opzioni strumentiReimposta il filtro selezionato sui valori predefinitiReimposta ai valori predefinitiReimposta l'ordine e la visibilità degli strumentiRidimensionaRidimensiona canaleRidimensiona immagineRidimensiona LivelloRidimensiona tracciatoRidimensiona livello di testoRidimensiona immagineRidimensiona elementoRidimensiona finestra ad ogni _zoomRidimensiona finestra ad ogni cambio di _ampiezzaRidimensionamento...Cambia risoluzioneRisoluzione:Gestione risorseConfigurazione risorseRecupera le opzioni da...Ripristina i tasti scorciatoia salvati ad ogni avvio di GIMP.Restringi la modifica ai poligoniInvertireRicaricaRicaricare '%s' a '%s'?Ricarica immagineFallita la ricarica. Nessun nome file associato a quest'immagine.Ricarica di '%s' fallita: - -%sColore capo destroAllineamento a destraRotazioneRuota di 90 gradi in senso _antiorarioRuota di 90 gradi in senso _orarioRuota canaleRuota livelloRuota tracciatoRuota livello testoRuota di _180 gradiRuota immagineRotazione del livello o della selezioneRotazione...Informazioni sulla rotazioneTondo_InclinaMostra la grig_lia_Restringi..._Picchi_Scambia coloriSal_va il colore destro suMedia di campionamentoCampiona a videoSat.:SaturazioneSalvaSalva '%s' come _POV-RaySalva curveSalvare il log degli errori su fileSalva immagineSalva _ora lo stato dei dispositivi di ingressoSalva _ora i tasti scorciatoiaSalva livelliSalva le opzioni strumentiSalva _ora la posizione delle finestreSalva _tutti gli errori in un file...Salva la _selezione in un file...Salva _con nome...Salva _una copia...Salva una copia dell'immagineSalva tutti gli erroriSalva come _POV-Ray...Salva come _modello...Salva i tasti scorciatoia cambiati all'uscita da GIMP.Salvataggio impostazioni curve su fileSalva lo stato dispositivoSalva gradiente come POV-RaySalva i livelli all'uscitaSalva le opzioni in...Salva la selezioneSalva la selezione nel canalePrima di chiudere, salvare i cambiamenti sull'immagine '%s'?Salva la posizione e l'ampiezza delle finestre di dialogo principali all'uscita di GIMP.Salva nel _canaleOpzioni salvateSalvataggio di '%s' -Salvataggio di '%s' fallito: - -%sSalvataggio immaginiOnda a dente di segaImmagine scalabile SVG (*.svg)ScalaScala canaleScala immagineScala livelloScala tracciatoScala livello di testoScala immagineScala elementoFattore di scala X:Fattore di scala Y:Rapporto di scala:Scala del livello o della selezioneScalaInformazioni scalaturaScalando l'immagine alle dimensioni scelte si userà più memoria di quanto è stato configurato in "Dimensione massima immagine" nella finestra delle preferenze (attualmente %s).Scalando l'immagine alle dimensioni scelte si stringerà completamente alcuni livelli.Scalatura...ForbiciScreenCartelle degli Script-FuScriptScorri giùScorri giù (Alt)Scorri giù (Ctrl + Alt)Scorri giù (Ctrl)Scorri giù (Maiusc + Alt)Scorri giù (Maiusc + Ctrl + Alt)Scorri giù (Maiusc + Ctrl)Scorri giù (Maiusc)Scorri a sinistraScorri a sinistra (Alt)Scorri a sinistra (Ctrl + Alt)Scorri a sinistra (Ctrl)Scorri a sinistra (Maiusc + Alt)Scorri a sinistra (Maiusc + Ctrl + Alt)Scorri a sinistra (Maiusc + Ctrl)Scorri a sinistra (Maiusc)Scorri a destraScorri a destra (Alt)Scorri a destra (Ctrl + Alt)Scorri a destra (Ctrl)Scorri a destra (Maiusc + Alt)Scorri a destra (Maiusc + Ctrl + Alt)Scorri a destra (Maiusc + Ctrl)Scorri a destra (Maiusc)Scorri suScorri su (Alt)Scorri su (Ctrl + Alt)Scorri su (Ctrl)Scorri su (Maiusc + Alt)Scorri su (Maiusc + Ctrl + Alt)Scorri su (Maiusc + Ctrl)Scorri su (Maiusc)SelezionaSeleziona tuttoSeleziona cartelle dei pennelliSelezione per coloreSelezione coloreSeleziona l'azione evento controllerSeleziona cartelle di ambienteSeleziona _tipo di file (%s)Seleziona cartelle dei caratteriSeleziona cartelle dei gradientiSeleziona cartelle dei moduliSeleziona nullaSeleziona cartelle delle tavolozzeSeleziona cartelle dei motiviSeleziona cartelle dei plug-inSeleziona colore primario da modificareSeleziona campo di modificaSeleziona cartelle degli Script-FuSeleziona sorgenteSeleziona cartella di scambioSeleziona cartella temporaneaSeleziona temaSeleziona cartelle dei temiSeleziona il coefficiente di zoomSeleziona il livello in _fondoSeleziona _colore personalizzato...Selezio_na prossimo livelloSeleziona livello _precedenteSeleziona il livello in _cimaSeleziona tuttoselezione per coloreSeleziona regioni contigueSeleziona colore personalizzato di riempimentoSelezione ellitticaSelezione LazoSelezione nullaSeleziona file della tavolozzaSeleziona regioni rettangolariSelezione regioni per coloreSeleziona aree dall'immagineSeleziona cartella di scambioSeleziona quante volta -duplicare il segmento selezionato.Seleziona quante volte -duplicare la selezione.Seleziona in quante parti uniformi -vuoi dividere i segmenti selezionati.Seleziona in quante parti uniformi -vuoi dividere il segmento selezionato.Seleziona aree trasparentiSeleziona il navigatore webSelezi_one a tracciato SelezioneEditor della selezioneMenu modifica selezioneMaschera di selezioneProcedure degli strumenti di selezioneMaschera di selezioneSelezione a tracciato (_avanzata)Selezione a tracciato Selezione: Selezione: AGGIUNGISelezione: INTERSECASelezione: SOSTITUISCISelezione: SOTTRAISensibilitàSeleziona colore personalizzato di riempimento telaImposta il colore del canaleImposta opacità canaleImposta mappa coloreImposta colore personalizzato di riempimento telaConfigura la dimensione della superficieImposta risoluzione di stampa immagineImposta voce esclusiva collegataImposta voce esclusiva visibileConfigura contorno del livelloImposta il nome dal _testoImposta opacitàModifica colore dello sfondoModifica colore del primo pianoImposta elemento come collegatoImposta modalità livelloImposta opacità livelloConserva le trasparenzeImposta un limite massimo di memoria usata per l'annullamento delle operazioni per ogni immagine. Indipendentemente da questa impostazione, potranno essere effettuati al massimo tanti livelli di annullamento quanti sono stati configurati.Imposta il visualizzatore predefinito dell'aiuto in linea.Imposta il colore di riempimento della tela se la modalità riempimento è impostata su colore personalizzato.Imposta il software di navigazione web esterno da utilizzare. Può essere un percorso assoluto o il nome dell'eseguibile da cercare nel percorso dell'utente. Se il comando contiene un '%s', esso verrà rimpiazzato dall'URL, altrimenti l'URL verrà posto alla fine del comando, separato da uno spazio.Imposta il livello di interpolazione usato per scalare e altre trasformazioni.Imposta la maniera in cui viene visualizzata la trasparenza nelle immagini.Imposta il numero minimo di operazioni che possono essere annullate. Se non viene raggiunta la dimensione massima, vengono mantenuti disponibili più livelli di annullamento.Imposta la modalità del cursore che GIMP userà.Imposta la risoluzione orizzontale del monitor in punti per pollice. Se impostato a 0, forza il server X ad essere interrogato sia per le informazioni di risoluzione orizzontale che verticale.Imposta la risoluzione verticale del monitor in punti per pollice. Se impostato a 0, forza il server X ad essere interrogato sia per le informazioni di risoluzione orizzontale che verticale.Imposta il formato dei punti del cursore che GIMP userà.Imposta la dimensione dell'anteprima per livelli e canali nelle nuove finestre di dialogo.Imposta la grandezza della scacchiera usata per mostrare la trasparenza.Imposta la dimensione dell'anteprima di navigazione, accessibile nella parte in basso a destra della finestra immagine.Imposta la dimensione delle anteprime nella cronologia annullamenti.Imposta la dimensione delle miniature mostrate nella finestra di apertura file. Notare che GIMP non salva le miniature se le anteprime dei livelli sono disabilitate.Imposta la posizione del file di scambio. Gimp usa uno schema di allocazione "tile based". Il file di scambio viene usato per spostare facilmente e velocemente le 'tile' da e verso il disco. Attenzione al fatto che il file di scambio di GIMP può allargarsi molto se si elaborano immagini molto grandi. Inoltre le elaborazioni possono diventare terribilmente lente se il file di scambio viene creato in una cartella montata su NFS. Per queste ragioni è preferibile mettere il file di scambio in "/tmp".Imposta la cartella per la memorizzazione temporanea. Durante una sessione di GIMP, appariranno qui dei file. Alcuni scompariranno alla chiusura di GIMP ma altri resteranno, perciò è meglio che questa cartella non venga condivisa con altri utenti. Imposta il testo che appare nella barra di stato della finestra immagineImposta il testo che appare nei titoli della finestra immagineImposta se GIMP debba creare delle anteprime di livelli e canali. Le anteprime nelle finestre dei livelli e canali sono utili ma possono rallentare se si lavora con immagini molto grandi.Tipo di ombraOmbreTaglioForma:Modellato (angolare)Modellato (increspato)Modellato (sferico)DefinitaAffila canaleAssottiglia la selezioneInclinaInclinazione in X:Inclinazione in Y:Inclina il livello o la selezioneInformazioni sull'inclinazioneInclinazione...Trattini cortiTasti scorciatoiaLa scorciatoia "%s" è già stata assegnata a "%s" per il gruppo "%s".Mostra maschera di livelloMostra _righelliMostra barra di s_tatoMostra _barre di scorrimentoMostra le _guideMostra il contorno del _livelloMostra barra dei _menuMostra s_elezioneMostra il _bordo esterno del pennelloMostra i colori di primo piano e s_fondoMostra le _guideMostra il contorno del _livelloMostra barra dei _menuMostra _righelliMostra i _pennelli, motivi e gradienti attiviMostra _immagine attivaMostra la grig_liaMostra _tasti di aiutoMostra dimensione immagineMostra contorno interattivoMostra l'uso della memoriaMostra menu _mnemonici (tasti di accesso)Mostra cursore con gli s_trumenti di disegnoMostra s_elezioneMostra barra di s_tatoMostra _barre di scorrimentoMostra suggerimenti al prossimo avvioMostra suggerimenti all'avvioMostra suggerimen_tiMostra percentuale dello zoomMostra dimensione zoomRiduci canaleRiduci selezioneAggi_usta corniceRiduci dal bordo immagineRiduci selezione diAggiusta corniceDimensioneDimensione in memoria:Dimen_sione delle miniature:Dimensione:Salto di '%s': versione protocollo GIMP errata.PiccolaAnteprima più piccolaDefiniteMargini morbidiSfuminoSfuma immagineGuide mag_neticheGriglia ma_gneticaLuce deboleSolidoSorgenteSpaziaturaSpaziatura:Punti sparsiFile specialeSpecifica come dovrebbe essere disegnata l'area attorno l'immagine.Velocità dell'animazione del tratteggio di selezione. Il valore è in millisecondi (un tempo inferiore indica una velocità superiore).Velocità:Sferica (_decrementale)Sferica (i_ncrementale)Picchi:Spirale (senso antiorario)Spirale (senso orario)DivisioneDividi il segmento di gradiente uniformementeDividi i segmenti di gradiente uniformementeDividi il segmento uniformementeDividi il segmento _uniformemente...Dividi segmento a _metàDividi i segmenti uniformementeDividi i segmenti _uniformemente...Dividi i seg_menti a metàQuadratoSt_ato e testo_PilaStandardAvvio estensioniAvvio estensioni: '%s' -Stato:Colore staticoGrigio staticoStato e descStato e testoDeviazione standardPunteggiaturaID stockDe_linea tracciatoDe_linea tracciato...Delinea canaleDisegna tracciatoDisegna selezioneDisegno lineaDelinea tracciatoDelinea tracciato con uno strumentoDelinea tracciato...Delinea selezione con gli ultimi valoriDelinea selezione...Disegno con uno strumentoStile dello smussamento intorno al testo della barra di statoSottraiSottrai dalla selezioneSupercampionamentoCartella di scambio:Str_umenti_TestoSr_umento testoCartella file temporanei:ModelliMenu modelliProcedure temporaneeTerminazione plug-in: '%s' -TestoColore del testoEditor di testiLivello testoTesto modificatoProcedure di testoThe GIMPManca dall'installazione il plug-in di visualizzazione dell'aiuto di GIMP.Pennello attivo. -Fare clic per la finestra pennello.Gradiente attivo. -Fare clic per la finestra gradiente.L'immagine attiva. -Fare clic per la finestra immagine.Motivo attivo. -Fare clic per la finestra motivo.Colore di sfondo della griglia; usato solo con lo stile linea a doppio trattino.L'interprete batch '%s' non è disponibile, modalità batch disabilitata.La codifica del nome del file configurata non può essere convertita in UTF-8: %s - -Controllare il valore della variabile ambiente G_FILENAME_ENCODING.Il nome del file '%s' non può essere convertito in un URI valido: - -%sColore di primo piano della griglia.Il file gimprc è utile per memorizzare le preferenze personali come le caratteristiche di GIMP e le scorciatoie da tastiera dei plug-in. Qui possono essere configurati anche i percorsi per cercare pennelli, tavolozze, gradienti, motivi, plug-in e moduli.La risoluzione orizzontale dell'immagine.Il livello selezionato è un livello di testo ma è stato modificato usando altri strumenti. Modificando il livello con lo strumento di testo verranno perse queste modifiche. - -Puoi modificare il livello oppure creare un nuovo livello di testo dai suoi attributi.Il nome della directory contenente la configurazione utente di GIMP non può essere convertita in UTF-8: %s - -Molto probabilmente il filesistem in uso non memorizza i file in UTF-8 e non riesce a comunicare questo fatto alle GLib. Impostare la variabile ambiente G_FILENAME_ENCODING.Il file sessionrc viene utilizzato per memorizzare quali finestre di dialogo erano aperte l'ultima volta appena prima di uscire da GIMP. Potete configurare GIMP per riaprire queste finestre nella stessa posizione.La miniatura nella finestra di dialogo di apertura file sarà aggiornata automaticamente se il file è più piccolo della dimensione qui impostata.La cache delle tile fa in modo che GIMP non perda troppo tempo scambiando tile tra la memoria e il disco. Impostando un valore alto si farà in modo che GIMP usi meno il file di scambio e ciò a scapito della memoria. Viceversa, una cache piccola provocherà un uso più frequente del file di scambio e una minore quantità di memoria da parte di GIMP.L'unità usata per mostrare le coordinate quando non è in modalità punto-per-punto.Il file unitrc serve a memorizzare il database delle unità di misura dell'utente. È possibile definire ulteriori unità da utilizzare come le unità predefinite. Questo file viene sovrascritto ogni volta che si esce da GIMP.Risoluzione verticale dell'immagineIl suggerimento per il tipo di finestra impostato sulle finestre in pannello. Può modificare il modo con cui il gestore delle finestre decora e gestisce le finestre in pannello.Il suggerimento tipo finestra impostato sugli strumenti. Può condizionare come il gestore delle finestre decora e gestisce la finestra strumenti.TemaCartelle dei temiTemiCi sono %d immagini con cambiamenti non salvati:Non ci sono abbastanza livelli visibili da fondere.C'è sempre un compromesso tra uso della memoria e velocità. Normalmente GIMP opta per la velocità ma se il risparmio di memoria è necessario, provate ad abilitare quest'opzione.Non c'è un livello o un canale attivo da cui copiareNon c'è un livello o un canale attivo da cui tagliare.Non c'è un livello o un canale attivo da disegnareNon c'è un livello o un canale attivo su cui delineare.C'è un'immagine con cambiamenti non salvati:Dovrebbe esserci un file chiamato '%s'. Controllare l'installazione.C'è stato un'errore elaborando il file '%s'. Saranno usati i valori predefiniti. È stata fatta una copia di salvataggio della configurazione su '%s'.Questo file contiene un gruppo di media di grandezza standard da utilizzare come modelli di immagine.Questa cartella viene letta alla ricerca di -modelli di immagini.In questa cartella vengono cercati i temi -installati dall'utente.Questa cartella serve per immagazzinare i caratteri che si vuole siano resi visibili solamente a GIMP. GIMP controlla questa cartella, oltre a quella di sistema dei caratteri di GIMP, quando è alla ricerca di caratteri. Usare questa cartella solamente se si è assolutamente certi di voler avere dei caratteri solo per GIMP, altrimenti posizionateli nella cartella dei caratteri globale.Questa cartella serve per memorizzare i file con i parametri relativi allo strumento curve.Questa cartella serve a memorizzare i file con i parametri relativi allo strumento livelli.Questa cartella serve per memorizzare le opzioni degli strumenti.Questa cartella serve a contenere gli script creati ed installati dall'utente. GIMP controlla questa cartella, oltre a quella di sistema per gli script, quando è alla ricerca di script.Questa cartella serve per contenere moduli DLL dell'utente o comunque non di sistema. GIMP controlla questa cartella, oltre a quella di sistema delle DLL di GIMP, quando è alla ricerca di moduli da caricare durante l'inizializzazione.Questa cartella serve a contenere aggiunte utente o comunque non di sistema, all'ambiente dei plug-in. GIMP controlla questa cartella, oltre a quella di sistema di ambiente dei plug-in, quando è alla ricerca di file di ambiente dei plug-in.Questa cartella serve a contenere i plug-in definiti dall'utente. GIMP controlla questa cartella, oltre a quella di sistema per i plug-in, quando è alla ricerca di plug-in.Questa cartella serve per contenere i pennelli definiti dall'utente. Gimp legge questa cartella, oltre a quella di sistema dei pennelli, quando è alla ricerca di pennelli.Questa cartella serve per contenere i gradienti definiti dall'utente. GIMP controlla questa cartella, oltre a quella di sistema dei gradienti, quando è alla ricerca di gradienti.Questa cartella serve a contenere le tavolozze definite dall'utente. GIMP controlla questa cartella, oltre a quella di sistema delle tavolozze, quando è alla ricerca di tavolozze.Questa cartella serve a contenere i motivi definiti dall'utente. GIMP controlla questa cartella, oltre a quella di sistema dei motivi, quando è alla ricerca di motivi.Questa cartella viene usata da GIMP per contenere temporaneamente le modifiche effettuate e ridurre il consumo di memoria. Se GIMP viene terminato improvvisamente, potrebbero rimanere dei file nella forma: gimp<#>.<#>. Questi file sono inutili e possono essere eliminati senza problemi.Questa cartella conterrà alcuni file importanti. Per ottenere ulteriori informazioni sul file o cartelle selezionati fare clic su di uno essi.Questa è la distanza in punti entro la quale si attiva il magnetismo delle guide e della griglia.Questo programma è distribuito con la speranza che possa essere utile, ma SENZA NESSUNA GARANZIA; senza le garanzie implicate nella DISTRIBUZIONE o SCOPI PARTICOLARI. Fate riferimento alla GNU General Public License per maggiori dettagli.Questo programma è free software; potete ridistribuirlo e/o modificarlo sotto le condizioni della GNU General Public License pubblicata dalla Free Software Foundation; sia la versione 2 della Licenza, o ogni successiva versione.Questo campo di testo in ingresso è limitato a %d caratteri.Questo strumento non ha opzioni.Questa finestra ha %d schede aperte. La chiusura della finestra provocherà la chiusura di tutte le schede.SogliaLa soglia non agisce su livelli indicizzati.Soglia:Miniatura %d di %dDimen_sione cache immagine:Dimensione cache immagine:Inclinazione:MinuscoloTitolo e statoSu _tracciatoPer modificare un tasto scorciatoia fare click sulla riga corrispondente e premere il nuovo tasto acceleratore oppure premere il tasto di cancellazione per azzerare._GiocattoliCommuta maschera veloceCommuta maschera _veloceTroppi messaggi di errore!Opzioni strumentiMenu opzioni strumentiCommuta strumento %s_Opzioni strumentiIcona strumentiIcona strumenti con crosshair_StrumentiStrumentiMenu strumentiStrumentiMenu strumentiStrumenti come la selezione fuzzy ed il riempimento colore trovano le zone in base ad un algoritmo seed-fill. Il seed-fill comincia dal punto selezionato e prosegue in tutte le direzioni fino a che la differenza di intensità del punto dall'origine è maggiore di una soglia specificata. Questo valore rappresenta la soglia predefinita.T_rasparenzaTrasferimento alfa su mascheraTrasformaTrasforma canaleTrasforma direzioneTrasforma livelloTrasforma tracciatoTrasforma livello di testoProcedure di strumenti di trasformazioneTrasforma livelloTrasforma tracciatoTrasforma la selezioneTrasformazioneProcedure di trasformazioneTrasformazione...Tradotto daTrasparenza_Tipo di trasparenza:Onda triangolareTrue colorTipoTipo %sPremere un nuovo acceleratorePremere un nuovo acceleratore o premere il tasto di cancellazione per azzerareImpossibile aggiungere una maschera di livello dato che il livello ne ha già una.Non è possibile a tagliare o copiare perché la regione selezionata è vuota.Impossibile aprire un file di scambio di prova. Per evitare di perdere dati controllare la posizione ed i permessi della cartella di scambio nelle preferenze (attualmente è "%s").Impossibile aprire il file di scambio. Gimp ha terminato la memoria disponibile e non può usare il file di scambio. Alcune parti dell'immagine potrebbero essere rovinate. Provate a salvare il vostro lavoro usando un nome differente, quindi riavviate Gimp e controllate la posizione del file di scambio nelle preferenze.Impossibile eseguire la callback %s. Può essere andato in crash il plug-in corrispondente.Non definitoAnnullaCronologia annullamentiCronologia ann_ullamentiUnitàSconosciutoTipo di file sconosciutoTipo file tavolozza sconosciuto: -%sScaricaSenza nomeImmagineUtilizzo "punto per punto" come preimpostazioneUsa tasti scorciatoia _dinamiciUsa in alternativa il navigatore _webUsa tutti i livelli visibili quando restringi la selezioneUsa tavolozza bianco/nero (1-bit)Usa colore del gradienteUsa tavolozza personalizzataUtilizza finestra informazioniUsa tavolozza ottimizzata per il WebLog installazione utenteInterfaccia utenteFinestra utilitàValoreValore:Mod vettoriVersione %s realizzata daVersione:VerticaleSpostamento verticale della prima linea della griglia; dev'essere un numero negativo.Spaziatura verticale delle linee della griglia.Molto grandeMolto piccoloVisualizzaMostra come _grigliaMostra come e_lencoMostra come grigliaMostra come elencoClasse di visualizzazione:Definizione visiva:Attenzione: non è possibile caricare i dati: - -%sAttenzione: non è stato possibile salvare i dati: - -%sNavigatore webNavigatore webBenvenuto in -GIMP %d.%d: installazione utenteSe abilitata, la finestra segue automaticamente l'immagine su cui si sta lavorando.Se abilitata, GIMP mostrerà gli mnemonici nei menu.Se abilitata, tutti gli strumenti di disegno mostreranno un'anteprima del contorno del pennello corrente.Se abilitata, un'immagine diventa attiva se la sua finestra riceve il focus. Utile per i gestori di finestre che usano il "focus con clic".Se abilitata, le finestre mostreranno un pulsante di aiuto che darà accesso alla pagina di aiuto relativa. Senza questo tasto, la pagina di aiuto sarà ancora disponibile ma tramite il tasto F1.Se abilitata, i menu possono essere staccati.Se abilitata, premendo F1 si aprirà il visualizzatore dell'aiuto.Se abilitata, GIMP non salva l'immagine se questa non è cambiata dalla sua apertura.Se abilitata, GIMP userà una finestra informazioni diversa per ogni finestra immagine.Se abilitata, il server X verrà interrogato per la posizione corrente del mouse ad ogni evento di moto invece che affidarsi ai suggerimenti di posizione. Ciò significa che il disegno con pennelli grandi sarà più accurato ma più lento. Per assurdo, su alcuni server X è possibile che il disegno venga accelerato.Se abilitata, il cursore verrà mostrato sopra l'immagine mentre si usa uno strumento di disegno.Se abilitata, la griglia è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra la griglia".Se abilitata, le guide sono visibili. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra le guide".Se abilitata, la finestra immagine verrà automaticamente ridimensionata se si zuma su un'immagine.Se abilitata, la finestra immagine verrà automaticamente ridimensionata se l'ampiezza fisica dell'immagine cambia.Se abilitata, il contorno del livello è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra barra dei menu".Se abilitata, la barra dei menu è visibile. Questo può essere modificato anche con il comando "Visualizza->Mostra barra dei menu".Se abilitata, i righelli sono visibili. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra i righelli"Se abilitata, le barre di scorrimento sono visibili. Questo comportamento può essere modificato con il comando "Visualizza->Mostra le barre di scorrimento".Se abilitata, il pennello selezionato verrà usato per tutti gli strumenti.Se abilitata, il gradiente selezionato verrà usato per tutti gli strumenti.Se abilitata, il gradiente selezionato verrà usato per tutti gli strumenti.Se abilitata, la selezione è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra selezione".Se abilitata, la barra di stato è visibile. Questo comportamento può essere modificato anche con il comando "Visualizza->Mostra barra di stato".Se abilitata, assicura che ogni punto di un'immagine sia mappato su di un punto sullo schermo.Se abilitata, garantirà che l'intera immagine sia visibile dopo che il file è stato aperto, altrimenti sarà visualizzato con scala 1:1.Se abilitata, è possibile cambiare i tasti scorciatoia per le voci di menu premendo una combinazione di tasti mentre la voce del menu è selezionata.BiancoIl bilanciamento del colore agisce solo su livelli con colore RGB.LarghezzaLarghezza:Gestione finestreSuggerimenti del gestore finestrePosizione finestraScrittura di '%s' -XErrore XCF: riscontrata versione file XCF %d non supportataAvviso XCF: la versione 0 del formato file XCF non salva -correttamente le mappe colore di immagini indicizzate. -Sostituzione mappa in scala di grigi.YGialloGiallo:Stai cercando di creare un'immagine con una dimensione di %s.Puoi rilasciare qui le finestre di dialogo agganciabili.Dovreste aver ricevuto una copia della GNU General Public License con questo programma; in caso contrario scrivere alla Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.È necessario riavviare GIMP affinché i seguenti cambiamenti abbiano effetto:L'installazione di GIMP non è stata completata:Le impostazioni dei dispositivi di ingresso saranno reimpostate ai valori predefiniti al prossimo riavvio di GIMP.I tasti scorciatoia saranno reimpostati ai valori predefiniti al prossimo riavvio di GIMP.Le impostazioni della finestra saranno reimpostate ai valori predefiniti al prossimo riavvio di GIMP.Comportamento dello zoom e del ridimensionamentoZoom 1:1Zoom totaleZoom avantiZoom indietroCoefficiente di zoomZoom:Zoom _totaleZoom _avantiZoom _indietroZoom totaleFattore di zoom: %d:1Zooma l'immagine quando cambia la dimensione della finestraZoom avantiZoomZoom indietroZoom:[ immagine base ]_InformazioniAc_quisizione_Aggiungi colore dallo SF_Aggiungi colore dal PP_Aggiungi scheda_Aggiungi alla selezioneOpzioni _avanzate_Aerografo_TuttoÀncor_a livello_AntialiasingRotazione _arbitraria..._Artistici_Aspetto_Auto_BColore _sfondoColore di _sfondo:_Nero (Trasparenza Totale)Tipo di _sfumatura per il segmento_Sfumatura della selezioneSf_umata_Luminosità:_Pennello_Pennelli_Pennelli, motivi e gradienti_Riempimento colore_Bufferper _coloreSelezione per _colore_CStile _pennino:_Canali_Azzera gli errori_Cancella la cronologia annullamenti_Clona_Chiudi_Rimuovi schedaN_uvoleStrumenti di _colore_Colori_Configura colore e opacità..._ContestoAiuto _contestuale_Copia_Copia con nome..._Crea immagine dal modello..._Taglio e ridimensione_Ritaglia immagine_Curvato_Curve...Colore a scacchi _scuroColori pre_definiti_Cancella pennello_Elimina buffer_Elimina canale_Cancella colore_Elimina gradiente..._Elimina immagine_Elimina livello_Elimina tavolozza_Cancella tracciato_Elimina motivo..._Cancella le opzioni salvate_Elimina segmento_Elimina la selezione_Elimina modello_Desatura_Stacca schedaStato dei _dispositivi_FinestreAnn_ulla i cambiamenti_Abbandona informazioni sul testo_Distorsioni_Punto per punto_Duplica_ModificaModifica p_ennello..._Modifica attributi canale..._Modifica colore..._Modifica gradiente..._Modifica attributi di livello..._Modifica tavolozza..._Modifica attributi tracciato..._Modifica motivo..._Modifica modello...Selezione _ellittica_Abilita anteprime del livello e del canale_Enorme_Equalizza_GommaColore _primo piano_File_Riempi con:Aggiusta immagine nella _finestraImmagine a_ppiattitaRi_flessioneRi_fletti segmentoRi_flessione selezione_Fluttuante_Caratteri_CaratteriColore di _primo piano:Selezione _libera_G_Generico_Gigante_Gradiente_GradientiScala di _grigiCopia in scala di _grigi del livelloAllar_ga..._Guide_Durezza_Aiuto_Orizzontale:_Tonalità:Grandis_simo_Icona_Icona:_Immagine_Immagini_Importa_Importa tavolozza..._Indicizzata...Finestra _informazioni_Interseca con la selezione_InvertitaStile _unione:_Grande_Livello_Livelli_Livelli, canali e tracciatiCapo _sinistro...Capo destro più vicino a _sinistra_Livelli...Colore a scacchi c_hiaroEffetti _luce_Luminosità:Stile _linea_LineareCo_llegatoCarica il co_lore sinistro daA_bbassa il canaleAbbassa il _livelloAb_bassa il tracciato_M_Manualmente_Mappa_Maschera_Maschera a selezioneNumero _massimo di colori:_Misurino_Medio_Fondi tavolozze...Fondi i tracciati i_mportati_Migrazione delle impostazioni utente GIMP 2.0_VarieRapporto u_nione:_Modalità_Manager dei moduli_Sposta_Nome:_Natura_Nuovo pennello_Nuovo canale_Nuovo canale..._Nuova voce..._Nuovo gradiente_Nuovo livello_Nuovo livello..._Nuova tavolozza_Nuovo tracciato_Nuovo tracciato..._Nuovo motivo_Nuovo modello..._Nuova vista_Nuovo..._Successivo_Rumore_NienteSp_ostamento..._Opacità_Apri immagine_Apri...Colore di riem_pimentoStrumento di _disegno_Pennello_Tavolozza_Incolla_Incolla buffer_Incolla con nome..._Tracciati_Motivo_Prospettiva_Posterizza..._PreferenzeAnte_primaDimen_sione anteprima_PrecedenteDimensione di stam_pa..._ProprietàMaschera _veloce attiva_Esci_R_RGB_RaggioAl_za il canale_Alza il livello_Alza il tracciato_Alza le visteAl_za o apri immagine_Riassegna scorciatoieSelezione _rettangolare_Ripeti_Ripeti %sAggio_rna pennelliAggio_rna gradientiAggio_rna tavolozzeAggio_rna motivi_Rimuovere i colori inutilizzati dalla tavolozza finale_Render_RimpiazzaD_uplica segmento...D_uplica selezione..._Rileggi elenco caratteri_Reimposta ordine e visibilità_Reimposta lo stato dei dispositivi di ingresso salvato ai valori predefiniti_Ripristina i tasti scorciatoia salvati ai valori predefiniti_Reimposta la posizione delle finestre salvata ai valori predefiniti_Recupera le opzioni daCapo _destroCapo sinistro più vicino a _destra_Rotazione_Saturazione:_Salva_Salva il colore sinistro su_Salva le opzioni suAll'uscita _salva lo stato dei dispositivi di ingresso_Salva i tasti scorciatoia all'uscita_Salva le posizioni delle finestre all'uscita_Scala_Scala immagine..._Scala livello..._Scala i tracciati importati sull'immagine_Seleziona_SelezioneEditor _selezioneStrumenti di _selezione_Forma_DefinitaMostra _selezione immagineMostra negli _strumenti_Sinusoidale_Piccolo_SfuminoDistanza magneti_smo:Delinea _selezione_Delinea selezione_Sottrai dalla selezioneS_tile scheda_Modelli:Model_li_Testo_Soglia...Min_uscoloSuggerimenti del _giornoS_trumentoS_trumenti_Trasferimento canale alfa del livello_TrasformaStrumenti di _trasformazioneAnn_ullaAnn_ulla %s_Verticale:_Visualizza_Visibile_WebNavigatore _web da utilizzare:_Bianco (totale opacità)_Bilanciamento del bianco_Larghezza:_Bordi connessiRisoluzione _X:_X:_Xtns_YRisoluzione _Y:_Y:_Zoom_Zoom (%s)coloricopiadpiper un token booleano %s era previsto 'sì' o 'no' ma è arrivato '%s'errore di analisi fatalescala di grigiscala di grigi - vuotopollicepolliciindicizzatoindicizzato - vuotostringa UTF-8 non validavalore non valido '%ld' per il tipo iconavalore non valido '%ld' per il token %svalore non valido '%s' per il tipo iconavalore '%s' non valido per il token %smillimetromillimetriminuton/apercentopicapicapixelpixelpixel/%apunti/%spuntopuntisecondotips-locale:itMarco Ciampa -Daniele Medri -Marco Marega -Mike Vargas -Gruppo Traduttori Italiani di Gimpil valore per il token %s non è una stringa UTF-8 validaanalizzando il token '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/ja.gmo gimp-2.2.9/po/ja.gmo --- gimp-2.2.8/po/ja.gmo 2005-02-21 14:18:37.000000000 +0100 +++ gimp-2.2.9/po/ja.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,373 +0,0 @@ -Þ•üü?© -Ü€ªª&—ªG¾ª9«G@«Aˆ«NÊ«i¬<ƒ¬kÀ¬@,­2m­; ­PÜ­O-®2}®9°®-ê®9¯;R¯7Ž¯ ƯЯ -ׯ ⯠-ì¯ -÷¯ °°° --°8°;°K° -c°n°v°~°š°´°Ê°0Ñ°±±&±=±D±L± T± b± n± -|± ‡±“± £± ¯±»± À± ̱KÙ±…%².«²1Ú²! ³.³@³G³V³]³y³ˆ³Œ³Ÿ³ -±³ ¼³ȳ Þ³ -ê³õ³ -´ ´'´6´ -?´J´Y´l´„´–´¨´·´*Í´6ø´/µLµdµmµŠµ©µ¾µÒµæµ¶¶.¶B¶\¶ -x¶ƒ¶‹¶¶¦¶ƶÚ¶ ⶠì¶ù¶ ·1¸3P¸„¸Š¸¸ -¤¸¯¸ɸ߸ æ¸ -ó¸þ¸¹!¹1¹AB¹J„¹Ϲ<â¹ º-º=ºVºnºvº{º•ºžº°º ÁºϺ -غãºôº »&$»$K»p»w» }»‹»’»«»±»Ë»"Ó» ö»¼¼ ¼¼ -"¼-¼<¼M¼a¼7u¼­¼ ³¼ À¼μ×¼Þ¼ æ¼ ó¼ÿ¼ ½½½½ #½ 1½;½D½ a½o½½ †½C“½7×½=¾@M¾6Ž¾dž*¿H¿3^¿’¿<¦¿#ã¿!À)ÀFÀ `ÀlÀ ‚ÀŒÀ•À­ÀÃÀÛÀóÀÁÁ4ÁQÁnÁ,…Á²ÁÌÁÔÁ çÁõÁ  6Â!DÂf—¬ÂÁÂÊ Ó áÂîÂà à ÃÃ0à ?ÃLÃ.bÃ5‘Ã5ÇÃ7ýÃ85Ä)nÄ,˜ÄÅÄáÄ2þÄ 1ÅRÅmÅO‰ÅAÙÅ%Æ&AÆ4hÆ1Æ#ÏÆ óÆÇ Ç)ÇAÇRÇXÇaÇqÇ -€Ç‹Ç“Ç ™Ç§Ç ½ÇÊÇãÇ0õÇ &È 2È?È FÈ PÈ]ÈxÈ•È+žÈÊÈÝÈðÈùÈ ÉÉ É*É -2É=É$]É‚É•É¤É¹É ÖÉ÷É -ÊÊ"/ÊRÊhÊxÊ ÊÊËË)Ë 1Ë>ËYËrË’Ë §Ë"µË"ØËûËÌ -Ì!Ì -@Ì)KÌuÌ,̼Ì!ÖÌ#øÌ#Í!@Í%b͈Í.§ÍÖÍÝÍîÍÎÎ(Î#>Î-bÎÎ%¦ÎÌÎâÎ÷ÎÏ Ï"Ï -<Ï -GÏ -RÏ]ÏuÏ|Ï‹Ï Ï žÏ«Ï»ÏËÏÚÏéÏ ðÏ -þÏ Ð-Ð>Ð EÐRÐbÐyÐ }ЇЌВУжÐÊÐÛÐîÐþÐÑ"Ñ 2Ñ >Ñ LÑYÑ`ÑfÑ%lÑ!’Ñ ´ÑÁÑÔÑ&ìÑÒ 'Ò5ÒDÒWÒ iÒwÒ†Ò –Ò£Ò ²Ò¿Ò ÏÒÜÒîÒ ýÒ ÓÓ0ÓKÓhÓzÓ‰Ó -¢Ó -­Ó-¸Ó æÓòÓ ùÓÔÔ Ô -$Ô /Ô<ÔOÔhÔpÔƒÔ –Ô¤Ô¾Ô ÇÔÑÔ áÔëÔòÔ?Õ PÕ\ÕnÕ Õ‰Õ˜ÕžÕ -´Õ ¿Õ ËÕ -ØÕ ãÕ ïÕ -ùÕ ÖÖÖ-Ö <Ö>JÖ ‰ÖªÖºÖÌÖßÖïÖ××"×B×R× b×o× ~׋×ר׻×Ô×è×þ× ØØ+Ø@Ø[Ø qØ -ØŠØ -¢Ø­Ø ÅØÓØ éØöØ ÙÙ(ÙCÙ RÙ `Ù -lÙwÙ*ˆÙ³Ù¼Ù.ÓÙÚÚ#'Ú"KÚnÚ‹Ú&ªÚÑÚ çÚóÚÛ,Û#=ÛaÛhÛ wÛ…Û˜Û'²ÛÚÛ÷ÛÜ*ÜFÜF`ÜT§ÜüÜÝ ÝÝ,Ý ?ÝIÝ -`Ý kÝyÝ –Ý·ÝÆÝÕÝçÝùÝ ÿÝ ÞÞ-Þ$6Þ=[Þ6™Þ<ÐÞA ß7Oß9‡ßcÁß9%àB_à=¢àfàà>GáC†áJÊágâ}ââŸâ´â¹âËâ Ûâ åâ ñâ þâ ãã-ãAãTãgãyãã ã´ãÏãìãóãüãä6ä Mä [äiä nä -{ä †ää  ä®äÁä -ÒäÝäùä å åå9åMåSåZå båoåwå}å -ƒåOŽå -Þå”éå~ææ¨æ ¿æËæ.Ôæçç -)ç 4ç @çMçRç açnç †ç “ç ç±çÅçuÜçRèÌdèÅ1éc÷é [êzhêãêéêrñêdë{ë„ë–ë¥ë®ë¾ëÓë&äë' ì 3ì ?ì IìSìbì gìqìwì~ì ƒììŸì±ì·ìÏìàìäìþìíí 4í ->íIí Rí\ícíkí pí }í‰í¤í»íËí -ÐíÛíðíHî -Pî [îeîuî -}îHˆî!ÑîBóî6ï:ï1Iï{ï€ï …ï’ï™ï -©ï´ï ¹ï Åï`Ñï02ðcð iðvð -ˆð -“ðžðµðÅðÖðõðñ ñ -.ñ -9ñHDñ -ñ ˜ñ -¥ñ°ñ ·ñÃñÒñ áñîñòò (ò 5òCò Kò XòdòlòŠò‘ò ™ò§ò ÀòÌòáòûòó-ó 1ó?ó Qó _ó ló3zó6®óåó ôóþóô*ô$9ô^ôyô Žô œô ½ô(Þô+õ)3õ*]õ!ˆõªõ/¼õìõóõö*ö>ö'Oöwö‡ö—ö ö²ö-Äöò÷û÷ øø"ø <øFøLø\ø løxø3~ø²øÃøÛøëø ù -ù ù 'ù4ùRùqù‘ùªù¾ùÏù äùòù ú úú1úEúTú@\úú-¤úÒúäú éú ÷ú ûû.û 5ûAû Fû Rû^ûuû ‰û “û Ÿû«û ÂûÐûèû ü ü -#ü.ü CüQü iüuü‹üžü£ü«ü´ü¼üÎü æüôü ý ý -(ý#3ýWýpý‰ýŸý¥ý­ýÊýçýïý öý þ -þ þ (þ6þKþ_þxþ ‘þžþ ­þ»þÎþéþÿ ÿÿ ?ÿMÿSÿXÿ^ÿ$tÿ™ÿ«ÿ¿ÿÎÿ Ýÿéÿ ñÿ ÿÿ  # 0 -= H -U` pz‰ ™£¼Ëâ.5> Q]w| -‚ ™«¿Ò å ïù   *6Sbt † -“ ž ¨ µ Á Í Ù,å&=)Z „‘ © ·ÃÈ×Þ ï û BA_¡¿Ôæíü +3„;ÀÏáéò -÷ $; MZlŒ"«!Îð! 9 CM] lzV‚+Ù (8">a w ƒ©%Á -ç òü  '  -7 B  Q _  h v  Š  ” ¢ ¨ »  Ð  Ü ê & - + -8 -= - -M - -X -c -€ -ž -½ -Õ -è -ú -  -  %  -5  @ M \  e s { ‚  Ÿ «  À !Ì î  ý  & - ?5 u „ Œ   ° Í ¡ê 4Œ Á Ê -Ò   - ##--Q ‹  ª²ÉÒ -Û æ¥ò˜¬À ÉÖßçí - -&1G -W b lz~  ™!£Å É × äñ  )> T` -s~ ž ³¿Òî  !#E!c#…© ¿ -Ì9×U=g<¥=â "&I[ lx|(†,¯Üìþ - +AVJj µÂÑê  9 S _m…;ŸÛõ  7 I Uc s  Žš¢ ÀÊå(;L_pƒ•ª+Áí   ( 5A S `l#ƒ §³ ÅÑæý6LT[ p7}µÓèøÿ, ; HTf z‡ ¥±Æ ÌÙî -ôÿ % -<Gg „¢½Ù ô)9M4b—´Çàý.9Eh® ¿ ÍÚ ò     "  .  -: E  V  -b m |  ‹ ˜ µ ½  -Ñ Ü å ì þ  !!$!@!V!#p!”!²! Æ!Ò!ä!""#0"T"r" †"“"¦"Ã"Ú"$õ"#9# N#X#h#‚#–#!®#Ð#ì#þ# -$$%$ 5$B$a$|$“$§$¿$ Õ$á$ø$%&%E%\% u%ƒ%–% ©%¶%Ë%Ý%ò% -&&4& -F&Q&a&"{&ž&¸& Ò&Þ&ò& '%'>'=N'6Œ'SÃ'J(b( u(((¦(µ(Ï( Þ(ê(ù()!) 5)A)Z)l) €))­)Ã)Þ)ø)*+* ?*K*[*j*´|*)1+N[+ª+K¾,= --ƒH-*Ì-?÷-`7.2˜.¯Ë.{04~1/³1ºã1 ž2ª2²2¸2¿2Ç2×2é2ï2 3 !3 -3:3C3 S3`3p3 3Ž3 £3±3#Å3 é3ö3 4 4&4 -94D4W4g4y4‰4™4ª4É4ß4ï455#545M5a5f5v5‹5+‘5½5Ã5Ô5 Û5è5 ï5 -ü56 666 %6 168>6vw6î6õ6 û6!7>7V7r77¦7Ã7à7ç7ö7ý78848 ;8 H8 T8 b8p8y8‚8 ‹8 ˜8¤8µ8Ä8#Í8 ñ8 ÿ8 99 -9 $9 19;9J9^9 -c9 n9 -z9…9•91ž97Ð95:H>:;‡:!Ã:Áå:æ§;¨Ž<*7=Bb>æ¥>Œ?«?‚-@°@ ¶@Ä@)Ë@5õ@¯+A1ÛA0 B0>B1oBC¡B€åBSfC,ºC2çC DA;EA}E*¿E«êEí–F „GΑH£`IªJ§¯J§WKÿK˜MG›MèãMïÌN2¼OïO P-P -APLP_PqP‚PˆPPœP®P ÁPÎPàP ðP þPQQ Q&Q -,Q 7QEQ \QfQxQŒQœQ«QÀQÚQéQRR "R/RCR -SR^RcR;lR;¨R¡äR †SS •S ¢S°S¶S¾SÐS×SßSèST3!TUTmT}T“T¢T±T·T ¾TÊTçTðTFùT@U -`U -kUvU {U ‰U —U ¤U ±U ¿U ÍU ÙU+åUKVQ]V˜¯V$HW5mWP£WGôW-k]tª]t^`”^‰õ^_ÿ_0`6`<`C`U`j` {`‰`6‹`oÂ`2a4a;a#CaÈgaG0b%xbžbµb¾bÇbÏb -Øb ãb ïbùb c cc'c /c=cFcLc[cbckc~c‘cšc¬c¾c Ãc Ñc ßcécñc÷c úcdd2d Qdrd xd…dŒd•dd  d ªd¸dÌd -ÓdÞd ædódûde $e2e8e GeSe[eme }e‹eše ªe¸e Ìe Úeèe øeff.f>f Pf \fhfwf€f‘f «f -µfÀfÆfÕfñfgg,g=gVg gg ˆg ’g œg¦g ¬g ¸gÆgÖgÜgãgög ùg h - h -h#hoDoToZo -aolo}oƒo -Œo—oœo±oÇoÖoÞoíoño÷oúo p - ppp$p5(p^p ppzpŠpp–p žp¬p Ápâp -q qq q$q,q1q7q=q Dq NqXq^qeq lqzq.q¼qWÙq1s9Qsƒ‹sMtX]tC¶t^útyYuOÓu“#vL·vGwBLw\wnìw>[xLšx;çxV#y;zyA¶yøyz -z z6z=z DzPz`z -uz€zƒz$¢zÇz àz íz'úz!"{D{Z{Ac{¥{#Ã{ç{|| $| 1| ?| K| -Y| d|p| Œ| ˜|¤| -©|´|vÍ|}D}4Â}4÷}-,~Z~ -w~‚~”~7›~Ó~ò~(ù~$"G]%vœ±Ä%Ý€€5€E€^€z€!“€µ€Ñ€í€ '%OM¶Õ$Ü'‚)‚H‚^‚'t‚œ‚»‚т炃ƒ ƒ(ƒ9ƒ$Iƒ.nƒ ƒ §ƒ´ƒǃ–ãƒ9z…*´… ß…-ì… †(†*B†*m†˜† † ¿†̆"놇$‡EC‡X‰‡â‡:ó‡.ˆBˆ!Xˆ$zˆŸˆ§ˆ7®ˆæˆöˆ‰)‰9‰J‰ Q‰[‰x‰HŽ‰'׉ÿ‰ Š ŠŠŠ <Š%IŠoŠE~ŠÄŠãŠçŠ ìŠöŠ‹'‹ C‹!M‹o‹bŒ‹ ï‹ù‹Œ +Œ -8Œ CŒ MŒWŒ gŒ tŒ ŒŽŒ’Œ —Œ ¥Œ -±Œ¼Œ!ÕŒ÷Œp+sœdŽXuŽFÎŽ—=­'ë7K=gO¥:õ70‘.h‘—‘&°‘ב ç‘ô‘'’/’B’[’q’Š’!©’!Ë’$í’9“3L“€““©“9½“9÷“1”-J”-x”%¦”!Ì”!!•1•M•$k• -•›•¢•¾•Ú•ó•–D%–\j–[Ç–[#—L—@Ì—L ˜1Z˜7Œ˜NĘ4™(H™+q™h™QšAXšAššLÜšR)›;|›¸›,Í›ú›-œ>œ ]œjœ"zœœ³œÊœÒœÖœ'ìœ !4HQšªÁÅ Ü+ê(ž?ž6Fž}žž£ž¶žÕžôžùž ŸŸ00Ÿ+aŸŸ§Ÿ½Ÿ*ÜŸ- 5 Q d 1w !© Ë ä ë »ò ®¡ µ¡¿¡ Æ¡'Ó¡$û¡$ ¢E¢[¢3k¢3Ÿ¢ Ӣݢô¢6£G£?X£*˜£Bã*¤21¤7d¤7œ¤7Ô¤@ ¥.M¥J|¥ Ç¥Õ¥$復*¦*F¦<q¦9®¦!è¦* -§!5§W§'v§ ž§«§$ʧ裡!¨97¨q¨ €¨¨"ž¨Á¨ݨ ñ¨ÿ¨ © ©*©E© X©Ob© ²©¿©!Õ©,÷© $ª1ª Pª -Zªeª|ª"™ª¼ªÖªðª««7«G«W«k«|«ƒ« ‹«6•«-Ì«ú« ¬#&¬>J¬#‰¬­¬ì"Ù¬ü¬$­=­V­r­…­ ž­«­Ê­à­ü­®"®'8®'`®'ˆ®°®Æ®Ù®õ®ü®6¯:¯ A¯N¯ d¯q¯¯¯¤¯!½¯߯û¯°!°<°M°c°j° r°€°“°-š°XÈ°!±5±R±k±r± …±’±®±µ±ѱí±²"²8²M² `²m²!Œ²®²Hʲ<³P³c³|³›³±³dz׳'í³ ´"6´Y´p´€´‘´!˜´!º´-Ü´- -µ8µWµvµ†µ¥µ$¾µ$㵶$¶!7¶ Y¶2f¶™¶¸¶׶í¶··'8· `·m·€· “· ·1¹· -ë·$ö·)¸%E¸k¸*r¸-¸<˸B¹'K¹s¹Š¹‘¹ ª¹L´¹*º ,º9ºWºpº)‰º;³º$ïº$»#9»1]»'»k·»k#¼ ¼ ™¼¦¼º¼)Ó¼ý¼½ ½"½%2½(X½½š½³½ɽ ß½í½$¾1&¾X¾*n¾f™¾Q¿_R¿l²¿KÀTkÀªÀÀ]kÁvÉÁT@•ÂT3Ã`ˆÃ`éàJÄëÄÅ Å 3Å+@ÅlÅÅ•Å!´ÅÖÅêÅÆ Æ@Æ"\ÆƞƺÆÓÆ0óÆ$$Ç IÇVÇ+gÇ“Ç®ÇÇÇæÇ öÇÈÈ2ÈBÈ^ÈrȃȔÈ-¤È ÒÈÜÈ!õÈ3ÉKÉgÉ wÉ „É‘É°É ÀÉ ÎÉ ÛÉuèÉ^ʵeÊ Ë%ËBË XË eË6r˩˹ËÉËÙËíËÌÌÌ,,ÌYÌnÌ}Ì•Ì §Ì°ÈÌyÍZ”ÍþïέîϜЃ±Ð 5Ñ?Ñ€FÑÇÑ ÝÑçÑÒÒ!+ÒMÒ'iÒ6‘Ò6ÈÒÿÒÓ/ÓEÓ[ÓqÓ‡Ó‹Ó ÓÓ³ÓÉÓ âÓ'ìÓÔ0Ô4Ô NÔ&ZÔÔ˜Ô «ÔµÔ¼ÔÄÔËÔ ÓÔÝÔóÔ0 Õ-:ÕhÕ „ÕŽÕžÕ&¹ÕfàÕGÖ^Ö!qÖ“ÖšÖ<¡ÖÞÖUþÖT× [×@iתײ×Å× -ß×ê× -Ø Ø#Ø9ØOØ8ßØÙÙ 2Ù?ÙRÙ"eو١Ù0·ÙèÙ$Ú'Ú=ÚPÚc`ÚÄÚ×ÚçÚ÷ÚþÚÛ$ÛCÛ"\Û$Û¤ÛÃÛÜÛ -ûÛÜ Ü -'Ü2ÜNÜbÜuÜ!‘ܳÜÉÜ(ãÜ Ý"(Ý KÝUÝlÝ ˆÝ•Ý¥ÝX»ÝUÞ jÞwÞÞ¯ÞÈÞÙÞ!õÞß-ßAJßAŒßMÎßMà4jàUŸàõà$áW9á‘á˜á±áIÍáâ:'âbââ—⠟⠬ⷹâqää$äÂäÆä Úä ää îäüäå )å“6åÊå%àå!æ'(æPæcæyæ“æ?¨æ?èæ-(ç-Vç-„ç²ç1Òçè.$è Sè`è!yè ›è ¨è²èZºè éBébé~é …é‘é ™é%¥éËéÒé ñéþéê"$ê$Gêlêtê {ê!…ê§ê'½ê+åêë*ëFëVëlë'…ë­ëÆëâë ì ì ì +ì8ì'Iìqìˆì¥ìÅì Íì2Ûì#í2í)Eíoíwí~í—í -¶íÁí ÈíÒíòíî$î7îSî"iî"Œî¯îÅîØî!ëî6 ï0Dï uïï,˜ï Åï Ïï Ùï -ãïîï6ð>ðTð!dð†ð¢ð»ðËðáð$÷ðñ#ñ9ñRñeñzññ¯ñ¿ñÕñññ$ò,òBò'aò'‰ò±òÍòÖò Ýòéò5ó9ó@óHó^ótó$“ó¸óØó øóô ô%ôAôZôjô!€ô¢ô»ô×ôóôõ%õ8õNõaõqõ„õ%”õ'ºõ)âõ0 ö(=ö fö@sö´ö Êö×öÞöîöõö÷ -÷*#÷`N÷Z¯÷& -ø1øGøXøhø‡ø£ø$¿øäøõøœù¢ù¸ù Õù âùðù÷ùú&ú*6úaú"xú›ú'ºú*âú3 û*Aû!lû"Žû!±ûÓûåû -öûüü$ü7üBÇü -ý(ýDý'Ký!sý•ý¦ý¶ý!Ìý6îý%þ,þ =þJþ]þpþþŸþ´þ Ñþ Þþ!ëþ ÿÿ 0ÿ"=ÿ(`ÿ‰ÿ£ÿ0½ÿ3îÿ!"DK -[f:z:µ'ð'@]v– ©$¶Ûëþ  ! -.9'@hy ˜¢ ¸ÅÞ ý -Zs‰™!²9Ô0 -?NJ™©—¹ Q [ es0XÀ  &3;!Km~Žžѯ$ $¦ Ë  Ò ß ç  î 'ø ( -I -b -$x -! -¿ -Ò -è -ÿ -    " !0 R V l ƒ   ± » à 'Ù + - F b r ˆ '¡ É â -þ 3, ` g  o .y 1¨ .Ú ( "2U -kTvkËT7TŒIá +:8s“ ¯¼À ÅÏ.î*<"g!Š¬(Â+ë'S?“¦"¿*â  $6'[ƒ“­!ÌRî3Au‘§3·ë 6Uq ‡‘™¯-¶*ä(>Zs$‰!®Ðì1 6=!t–!¦Èá$>W7p7¨$à - 93L`€áèïW,o œ ©³!ºÜû*:Vv*†± Ê×"Þ&-4T'dŒ7œ@Ô!%0G1x+ªÖí*#N(mW–-î;-S*¬'Â:êQ% w ” ª ½ Ú  ê ô !!&!9!X!!q!“!¦! ¹! Æ! -Ó!6Þ! """5" T"^"n"‹"›"±"%Í"ó"##-7#'e##«#Á#%Ý#$##$-G$'u$$»$Ñ$&î$ %$6%-[%(‰%²%Ñ%ç%%&)&'I&-q&'Ÿ&Ç&å&ì&'ü&$' 7'<D'0''²'*Ú'3(*9( d(*q(0œ(-Í(û()(6)_)*r)')Å)'Ø)*%*%9*_**%Ÿ*Å*Õ*è*6+:+V+ o+$|+¡+½+Ö+*ò+J,;h,X¤,Oý,M-l-s-‡-¦-!¶-Ø-è-ñ-..$.6.'=.!e.$‡.¬.9È.!/$/'C/$k/$/%µ/Û/!î/0/0ìN0<;1dx1 Ý1Nþ2CM3ž‘3604Ug4s½4C15ru5Qè7[:9R–9 é9 ö:;;; ;! ;B; X;0e; –;£; Â;Ì;â;<(!<(J<s<%<%¶<%Ü<"=%=%B=%h=Ž=%®=Ô=ô=>->I>(i>(’>'»>%ã>+ ?$5?Z?m?†?œ?µ? Î?Ø? ò? -@J@ i@s@ Œ@–@ ²@¼@ Ì@Ö@ Ý@ç@ï@ ÷@A.AŒCA ÐAÞA6åA9B!VB(xB(¡B$ÊB+ïB+C GCQC eCsCzCC­CµCÑCíCýC DD"D"2DUDtD!“DµD¼DÕD"ôD E -%E0E"DEgEzEE¦E ­E·EÐEãEüEoF‡uFuýFNsGLÂGH/H\2IúJsŠKRþL5QM‡NÂNÉ`O *P4P PP(ZPOƒP'ÓPIûQLERc’ROöR‹FS¶ÒSm‰T[÷TaSU³µUjiWjÔWU?X•XL±YGþZIF\¿]P^êV_êA`U,a΂bgQc¹czÒdJMf7˜f ÐfLÝf *g8g&Pg"wgšg¢g$©g$Îg$ógh$1hVhphh £h ­h·h Íh×hêh0ûh,i3i LiYili|i!•i·i¾i×i ði úij %j/jEj -LjpWjFÈjñk l ll.lElLlSlrl ‚ll@Ÿl(àl? m$Imnm#m!±m$Ómømÿmnn7nHn<OnŒn¬n¼nÏnÖnênþno'oAoXono6„o]»o{pë•p3qJµq_rM`r®r0tÀt‡Pu~Øu›Wvžóv•’w¡(xfÊxc1yZ•yðy¡€zl"{¥{Â5|ø|Kü|H}L}Q}!g}‰}Ÿ}¸}Jº}½~Ã~Å~É~LÎ~ R'€-z€'¨€Ѐ Ô€Þ€å€ ì€ -ö€  - - % /<$Ch -o zˆž¯Ïï‚ ‚ -=‚H‚"b‚…‚ ™‚ -§‚²‚ µ‚ÂÒ‚+é‚(ƒ >ƒLƒ [ƒ iƒwƒˆƒ‹ƒŸƒ¶ƒ Öƒäƒûƒ„„"„?„Y„ s„„¡„ »„É„æ„……1…N…%_………™…³…Í…á…þ…†;† -U†`†z†”†¨†¼† -Ö† -ᆠ-ì†÷†(‡:‡%N‡%t‡š‡·‡ׇ4ô‡ -)ˆ 4ˆ BˆPˆaˆ"xˆ›ˆµˆƈ׈æˆ éˆ÷ˆ‰+‰4E‰z‰ —‰ -¥‰ °‰ ¾‰ ʉÖ‰í‰þ‰ -Š -Š&Š%:Š`Š -zŠ…Š Š«Š¼ŠÍŠÞŠþŠ ‹ ‹ -*‹"5‹X‹v‹“‹–‹ °‹¾‹Ï‹ì‹ -þ‹ Œ(&Œ%OŒuŒ ŠŒ˜Œ -²Œ ½ŒÉŒÞŒòŒ )Ccz”«¼Ðç û Ž Ž -%Ž0ŽGŽXŽ lŽzŽ -ŽŽ™ŽªŽ(»Ž%äŽ - - &4Tey –¤»%Ï -õ - 3Pj(Š³ ÄÒ"ã.‘%5‘%[‘ -‘Œ‘¬‘(É‘4ò‘C'’Fk’²’Ì’ -Ý’ è’ -ô’ÿ’“:6“Cq“7µ“í“þ“ -” -#”.”E” -Y”d”„” ›”©”Á”Þ”õ” • - •+• -?•J• -[• -f• -q•|••¡• µ• Á•&Ï•ö•–-–6–K– -O–Z–]–r–v–‰– –—–K›–ç–—— 9— C—M—`—}—2š—1Í—ÿ—˜%˜)˜-˜ =˜ G˜ Q˜ ^˜k˜{˜ ‹˜ ˜˜¥˜©˜"¸˜EÛ˜"!™‚QR9«FßýLñÒ”¹"òµ¾X„„cK|…ôj%Z W›õ4¶&úÁ>#Y¿? a¥,•aCåó~Û}m=ïI½ÙÂ\Ȥy×ë<¦…Ó–Ÿ1ÌUH…òÁœÇZ/ñêÞúe!Æ õøüÙ#*æV3$HË6ó?bã~—‚8G>ƒÕ'Õ!ËIçnC½Zt ÔãÁËÅž ߯Hwíô¯¦Àç+–¶1¾b^jnðpö·f[Æ¥»,`d -N)¢‡²7–«ÑØéYÌuõ‡0A2>.â`†Bû!óuå9(4ñ¶pÄz–;’·ègÊ"v㹆~›þ¤‡Äé GÂö·JKo†7 µ8]ا9:B,[ÁÝ͈ó8éö1å CîÔܸÈ &ºX}Ÿ?hÙÆóÄ£N‡Àȧà{´…vÄ`£ÝÂ_¾ü©x‹ÔÉöá‹E¦ˆ@Å$Fäתz‘BlÒµÀeµÓèoý@áîßùÀsˆC9ýŽ„4Ù¥<Ï¿OÃ>³ñ_Õ€Ã"Çb!ð«l‰}G3z6ª@ÖG©*»Â|MòTÇgR¬PFAÿÜ.Ž+x¢: ÈëvAçdP$ëÊÉ‚ü;à–Õ²ÓZ7P¼“ÖÏF‰º£Îå5Ë´ðÝÙ0|¢Ä+ ‚³ÂUcaX÷Š/1þ!ߨJž20yžU•˜{ÁµªÍ 2Fð{Û ×Vb@Ƽ¥qŽ|p/Å -øÞ,è£f,vß翳O‚ Œšô¡½á)‰BðP1Î]»EÀB/ê\íáÖJ¦Ûâ -{Ž?i=#¤ˆkŒ•²Sœ=ÚþÊöÃïZ¤‰° íòZó˜;šNÀ±þøZZnO 6ñ>Çdi«ŠÜú~½ÄƒÝ°SÊÓu_ÿc3E)’wì|ƒ\ëàƒ”¯l^:ºLW'¡ÍjèÓ¦ˆ•/Ÿh¦–)•î×*4¸ñçòKíûÜ ŸímÒ€´kæx­£Ð”šîs'¼’œ­êõpµÇyˆK{àä÷ph‹uèìÉÑÌP‡‹N®£²ÿÝQÛ?x‚ ¸¹æ­ÔÜŽJWRE…25Œèi‰É­®÷:—êâ2üÿ(’¾YEE¡)â1ƒ°T T8©± ë˜L¹|tT‘2^1Obo:,-N¡ŒD·Ÿ«qÑâKl Úä:‹È¸A9sšqW}_J×[øfÍsdì×ÈÎùJÛP8F\Û¶ w˜´@nÑår(ÇgÃ^m«q7)¨}æ`J×U.6‘/žØG¢Ú›á·#jSwSu“#-”ÚïíšjŠ!7®ÊÏGøbéU%‘>”ÊDçwØ ãc(Y°“pØOûX™—o]*C,m¶ÊäáR$–2)V-Ð -šßm3/I‹…ö‚D f®®’ÞŽùí¹NQ%c ã¿÷†ì " ä¯~»ex5¬þ5$x—»¾}ˆã¥Æ̪]d'"57R›ý&ö_QshSиCw˜]€'£•ÏNº+§0tûM} "~ÈÞ.ýe½˜ÎeÜü§·ÐO7o=²OÅØùñd?ÕÙRÝ Ä—ŠhÕ/%\æa®ϳ2๭zLMlè™ _¼ðžoD[ý+ðH{¬‡öø mX3ÿÆ¡ïg‘ kÂ9ÓªÑüÕsr ’n&^ž:Ì‹JÀîWû“Q¢žt?0A>t†^þqñ•Ö-Òqÿ$z3ËɃ¨Î¢3ƒ›³SÔ΋^„6D;ºþ¨„¸8¨'…|Št>f5hÃc<ÃÞô_ ºÜvrf€½b»p4š6ر»ÍÍ`0àW€¯VÖÞcDî*,#M¦ …BßdjW¿ -Òãr$ÖÙ™0ÜQï¨êé"‰·Ÿy*ꜗ¿GIeœwM^Öíß%%Éa±—É‚b´¬#m£8ls@I˜\HÅ°]’ø‰¥nùô¨¤©èÚg­;5Æî ‡TÌyL.òp¶°éÅÅA»ÆœKÎ6XŒÚ™ØÁœuÁ*[ŽR Vf]Kºóé¼±´ÌB„E=Ç?DÁùG'ô;“ÛÙ‡ã鑾fûŒ+˜úd5ÃMûz¸;“ÔÑË"IP43;ò¼Ç¦ -›ii6ÈoÑuˬõú±ò )t §[ Ð]ŒÕ¡ô™ì÷Q.@=ëŸ -+Ð-y\æ=¼Kï¤Ý¥¬¢iâ´´vý[WŽÿ“†*åT¡ ! ž{Û¥k&‘¬(¡úªk¼OÒ€iMmÓhú÷Y4srÅüüa.9áÔì7geÒ«Âjkà4g+ìNQ[²îŸU›œç½¾=ÑXh#Ý—ÀY<-@V<±§æ ”:«-†¢°õÒ~¸™Ï›.õrU³Ó„x%H¤F<% ¿Ìtôɽ¯ÞS}{·k\”à~¶êÏzº ©Vvµ©Iùù‰`Xê§åγ­Ôë&©(¯ë׳”1<ïL€n¶(aÖA$™TðocÍa¬ÍyäTU±çìeqåSM©Rš9­ról&A÷luHxDLª¾(z²y<C `ûÚjφP¿gBvF0 âµÚŠ÷V_§õ‘€®ÄªwЖ•“&áŠËrq !8°„iHŒää|¨ùLn²`™ø®kI'¤ÞEÐY’æ-âʃYC¯ -úˆ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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)(invalid UTF-8 string)(none)1 Layer1 layer16:1 (1600%)1:1 (100%)1:16 (6.25%)1:4 (25%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:An_imationAnchor Floating SelectionAnchor floating layerAngle:AntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAuto _Follow Active ImageAutoloadAvailable FiltersAvailable Types:BG color fillB_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack & whiteBlack:Ble_nd Endpoints' ColorsBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtCMYKC_alibrate...C_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCanvas _padding mode:Center X:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipped to bottom layerClipped to imageCloneClose %sClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Configure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Confirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConnect 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 RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...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:Create New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current statusCurrent width:CursorCursor _mode:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternDark check colorDash 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 MenuDifferenceDirect ColorDisable Layer MaskDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all tool options to default values?Do_n't saveDocument Histor_yDocument 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.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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 SVGExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS to layerF_it Canvas to LayersFade outFailed to import 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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Feather ChannelFeather SelectionFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit to windowFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dFree SelectFreehandFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom themeFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)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:Hinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_con & TextI_mageI_mport Path...I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIllegal variable name in environment file %s: %sImageImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage 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_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIt seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep transparencyKey shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard 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 colorLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower channelLower channel to bottomLower layerLower layer to bottomM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMask 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 anglesMedian:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove itemMove layers & selectionsMove selectionMove the current layerMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_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...New paletteNew path...New patternNew vectorsNo 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 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: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 memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output 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 as _NewPaste the selected bufferPaste the selected buffer as new imagePasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick colors from the imagePixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -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 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 (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_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 channelRaise channel to topRaise layerRaise layer to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove 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 FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_wap ColorsSa_ve Right Color ToSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%sSaving ImagesSawtooth waveScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling...ScissorsScreenScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect 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 web browserSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Custom Canvas Padding ColorSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet item linkedSet layer modeSet layer opacitySets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Short dashesShortcutShow Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _imageShow gri_dShow help _buttonsShow image sizeShow memory usageShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed: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 PathStroke PathStroke SelectionStroke path...SubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTextText ColorText EditorText LayerText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There 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 & StatusToggle Quick MaskToggle _Quick MaskTool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse color from gradientUse info windowUser 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:Web BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_All_Anchor Layer_Antialiasing_Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Buffer_C_Channels_Clear Errors_Clear Undo History_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Crop Image_Curved_Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Enable layer & channel previews_Enormous_Equalize_FG Color_File_Fill with:_Flip Segment_Flip Selection_Font_Fonts_Foreground color:_G_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Invert_Join style:_Large_Layer_Layers_Left Endpoint_Light Check Color_Light Effects_Lightness:_Line Style_Linear_Load Left Color From_Lower Channel_Lower Layer_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_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 View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right 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..._Select_Selection_Selection Editor_Selection Tools_Shape_Show Image Selection_Show in Toolbox_Small_Snap distance:_Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transform_Transform Tools_Undo_Undo %s_Vertical:_Web_Web browser to use:_White (full opacity)_White Balance_Width:_X resolution:_X:_Xtns_Y_Y resolution:_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 %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-02-19 11:56+0900 -PO-Revision-Date: 2005-02-17 12:27+0900 -Last-Translator: Tadashi Jokagi -Language-Team: Japanese -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -ä¸æ­£ãªã‚ªãƒ—ション "%s" - -使用法: %s [オプション ...] [ファイル ...] - - --debug-handlers 致命的ã§ã¯ãªã„シグナルã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ç”¨ã‚·ã‚°ãƒŠãƒ«ãƒãƒ³ãƒ‰ãƒ©ã‚’有効ã«ã™ã‚‹. - --display 指定ã—㟠X ディスプレイを使用ã™ã‚‹. - --dump-gimprc デフォルト設定㮠gimprc ファイルを出力ã™ã‚‹. - --no-cpu-accel 特別㪠CPU 命令を使用ã—ãªã„. - --no-shm GIMP ã¨ãƒ—ラグインã®é–“ã§å…±æœ‰ãƒ¡ãƒ¢ãƒªã‚’使用ã—ãªã„. - --pdb-compat-mode - プロシージャデータベース互æ›æ€§ãƒ¢ãƒ¼ãƒ‰. - --session 指定ã—㟠sessionrc ファイルを使用ã™ã‚‹. - --stack-trace-mode - 致命的ãªã‚·ã‚°ãƒŠãƒ«ã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ãƒ¢ãƒ¼ãƒ‰ã‚’指定ã™ã‚‹. - --system-gimprc 指定ã™ã‚‹ã‚·ã‚¹ãƒ†ãƒ  gimprc を使用ã™ã‚‹. - --verbose 詳細起動メッセージを表示ã™ã‚‹. - -b, --batch <コマンド> ãƒãƒƒãƒãƒ¢ãƒ¼ãƒ‰ã§èµ·å‹•ã™ã‚‹. - -c, --console-messages 警告をダイアログã§ãªãコンソールã«å‡ºåŠ›ã™ã‚‹. - -d, --no-data パターン, グラデーション, パレット, ブラシを読ã¿è¾¼ã¾ãªã„. - -f, --no-fonts フォントを読ã¿è¾¼ã¾ãªã„. - -g, --gimprc 指定ã—㟠gimprc ファイルを使用ã™ã‚‹. - -h, --help ã“ã®ãƒ˜ãƒ«ãƒ—を表示ã™ã‚‹. - -i, --no-interface ユーザーインターフェースãªã—ã§èµ·å‹•ã™ã‚‹. - -s, --no-splash èµ·å‹•ç”»é¢ã‚’表示ã—ãªã„. - -v, --version ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示ã™ã‚‹. -%d æžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼%d dpi%d dpi, %s%d æžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼%d 分%d 秒%d x %d dpi%d x %d dip, %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 æžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ¬ã‚¤ãƒ¤ãƒ¼16:1 (1600%)1:1 (100%)1:16 (6.25%)1:4 (25%)2:1 (200%)2D 変æ›ã—ã¦ã„ã¾ã™...4:1 (400%)8:1 (800%)<%s><<ä¸æ­£>><モジュール ç„¡ã—>最良㮠GIMP パフォーマンスを得るãŸã‚ã«, å¹¾ã¤ã‹ã®è¨­å®šã‚’調整ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™.The GIMP - GNU Image Manipulation Program -Copyright (c) 1995-2004 -Spencer Kimball, Peter Mattis, GIMP 開発ãƒãƒ¼ãƒ .GIMP 技ファイルãŒè§£æžã§ãã¾ã›ã‚“!GIMP 技ファイルãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“!ファイルå '%s' ã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™é¸æŠžé ˜åŸŸã«åŠ ãˆã‚‹(_A)角度(_N)GIMP ã«ã¤ã„ã¦æ“作フィーカスã•ã‚ŒãŸç”»åƒã‚’アクティブã«(_F)アクティブãªãƒ•ã‚£ãƒ«ã‚¿è¿½åŠ ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加(_H)アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加アンカーã®è¿½åŠ ãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加色をカラーマップã«è¿½åŠ (_A)ガイドを追加: ガイドを追加水平ガイドを追加レイヤーマスクã®è¿½åŠ (_Y)...レイヤーを追加レイヤーマスク追加パスを追加ストロークã®è¿½åŠ æ–‡å­—レイヤーを追加垂直ガイドを追加レイヤーã«ãƒžã‚¹ã‚¯ã‚’追加背景色ã‹ã‚‰è‰²ã‚’追加æ画色ã‹ã‚‰è‰²ã‚’追加レイヤーマスクã®è¿½åŠ ç”»åƒã«æ–‡å­—を追加ç¾åœ¨ã®è‰²ã‚’色履歴ã«è¿½åŠ ã™ã‚‹é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿ã®ä¸€è¦§ã«è¿½åŠ ã™ã‚‹.é¸æŠžé ˜åŸŸã«åŠ ãˆã‚‹ãƒ†ãƒ¼ãƒž '%s' (%s) を追加 -加算入力コントローラーã®è¿½åŠ æ˜Žã‚‹ã•ã¨ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã®èª¿æ•´ã‚«ãƒ©ãƒ¼ãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´è‰²ã‚«ãƒ¼ãƒ–ã®èª¿æ•´è‰²ãƒ¬ãƒ™ãƒ«ã®èª¿æ•´æ˜Žã‚‹ã•ã¨ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã®èª¿æ•´ã‚«ãƒ©ãƒ¼ãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´è‰²ã‚«ãƒ¼ãƒ–ã®èª¿æ•´è‰²ãƒ¬ãƒ™ãƒ«ã®èª¿æ•´è‰²ç›¸ã¨å½©åº¦ã®èª¿æ•´ãƒ¬ãƒ™ãƒ«ã®è‡ªå‹•èª¿æ•´è£œæ­£å¯¾è±¡:影響領域 %sエアブラシ圧力調整å¯èƒ½ãªã‚¨ã‚¢ãƒ–ラシé¸æŠžé ˜åŸŸã‚’アルファãƒãƒ£ãƒ³ãƒãƒ«(_P)æƒãˆã‚‹ä½ç½®æƒãˆå…¨ãƒãƒ£ãƒ³ãƒãƒ«åˆ©ç”¨å¯èƒ½ãªãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ«ã‚­ãƒ£ãƒƒã‚·ãƒ¥ä¸­ã«åŽã¾ã‚‰ãªã„ç”»åƒãƒ‡ãƒ¼ã‚¿ã¨ã‚¢ãƒ³ãƒ‰ã‚¥ãƒ‡ãƒ¼ã‚¿ã¯ã‚¹ãƒ¯ãƒƒãƒ—ファイルã«æ›¸ã出ã•ã‚Œã¾ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ•°ç™¾ MB ã®ç©ºã容é‡ã‚’ã‚‚ã£ãŸãƒ­ãƒ¼ã‚«ãƒ«ãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹ãƒ†ãƒ ä¸Šã«ç½®ãよã†ã«ã—ã¾ã™. UNIX システムã§ã¯, /tmp ã‚„ /var/tmp ã¨ã„ã£ãŸã‚·ã‚¹ãƒ†ãƒ ã®ãƒ†ãƒ³ãƒãƒ©ãƒªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ã—ã¦ã‚‚よã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“.完全ã«é€æ˜Žãªé ˜åŸŸã®å¡—ã‚Šã¤ã¶ã—も許å¯ã™ã‚‹å®Œå…¨ã«é€æ˜Žãªé ˜åŸŸã®é¸æŠžã‚‚許å¯ã‚¢ãƒ«ãƒ•ã‚¡ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’é¸æŠžé ˜åŸŸã«ã‚¢ãƒ«ãƒ•ã‚¡:アニメーション(_I)フローティングé¸æŠžé ˜åŸŸã‚’固定フローティングレイヤーを固定角度:アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°è¡¨ç¤ºå½¢å¼ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®é©ç”¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®é©ç”¨(_M)ã—ãã„値をé©ç”¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®é©ç”¨'%s' を一覧ã¨ãƒ‡ã‚£ã‚¹ã‚¯ã‹ã‚‰å‰Šé™¤ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹?テンプレート '%s' を一覧ã¨ãƒ‡ã‚£ã‚¹ã‚¯ã‹ã‚‰å‰Šé™¤ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹?設定通り(_P)未ä¿å­˜ã®ç”»åƒã‚’é–‰ã˜ã‚‹å‰ã«ç¢ºèªã‚’è¡Œã„ã¾ã™.アスペクト比:パラサイト付加画åƒã«ãƒ‘ラサイトを付加アイテムã«ãƒ‘ラサイト付加作者:自動アクティブãªç”»åƒã‚’自動的ã«è¿½è·¡ã™ã‚‹(_I)自動ロード利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿åˆ©ç”¨å¯èƒ½ãªç¨®é¡ž:背景色塗りãƒãƒƒãƒ•ã‚¡(_U)背景背景色背景色を以下ã«è¨­å®š:背景色: %d, %d, %då…¨ã¦ã®å¯è¦–レイヤーã«ã‚ˆã£ã¦å¡—ã‚Šã¤ã¶ã™é ˜åŸŸã‚’決ã‚ã‚‹å…¨å¯è¦–レイヤーã«åŸºã„ã¦é¸æŠžå¾Œã‚ベベル黒ã¨ç™½é»’:終端ã®è‰²ã‚’æ··ãœã‚‹(_I)ブレンド終端ã®ä¸é€æ˜Žåº¦ã‚’æ··ãœã‚‹(_Y)ブレンド: ブレンド: インデックス画åƒã«ãŸã„ã—ã¦ã¯ç„¡åŠ¹ã§ã™.ブレンドã—ã¦ã„ã¾ã™...é’é’:ã¼ã‹ã™ã¼ã‹ã™/シャープã«ã™ã‚‹ç¸å–ã‚Š(_R)...ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æ·µå–ã‚Šç¸é¸æŠžé¸æŠžé ˜åŸŸã«å¯¾ã™ã‚‹ç¸ã®å¹…明るã•-コントラストインデックスレイヤーã«å¯¾ã—ã¦ã¯æ˜Žã‚‹ã•-コントラストをæ“作ã§ãã¾ã›ã‚“.ブラシブラシエディタブラシディレクトリブラシ UIブラシ:ブラシブラシ塗りã¤ã¶ã—ãƒãƒƒãƒ•ã‚¡ãƒãƒƒãƒ•ã‚¡ç„¼ãè¾¼ã¿é“CMYK測定(_A)...列数(_O):åˆæˆ(_O)モニタ解åƒåº¦æ¸¬å®š%s ã¯ã‚¢ãƒ³ãƒ‰ã‚¥ã§ãã¾ã›ã‚“キャンãƒã‚¹ã‚µã‚¤ã‚º(_V)å–消ガイドå–消指定ã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ç•°ã‚‹å¤§ãã•ã‚’æŒã¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“.アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒãŸãªã„レイヤーã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“.ç”»åƒã®ä¸€éƒ¨åˆ†ã§ãªã„レイヤーã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“.ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯ãƒ•ãƒ­ãƒ¼ãƒ†ã‚£ãƒ³ã‚°é¸æŠžã§ã¯ãªã„ã®ã§å›ºå®šã§ãã¾ã›ã‚“.256色より多ã„パレットを変æ›ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“.レイヤーマスクやãƒãƒ£ãƒ³ãƒãƒ«ã«å±žã—ã¦ã„ã‚‹ã®ã§ï¼Œãƒ•ãƒ­ãƒ¼ãƒ†ã‚£ãƒ³ã‚°é¸æŠžé ˜åŸŸã‹ã‚‰æ–°ã—ã„レイヤーã¯ä½œæˆã§ãã¾ã›ã‚“.ディレクトリ '%s' を作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ; %sプレビューを作æˆã§ãã¾ã›ã‚“何もé¸æŠžã•ã‚Œã¦ãªã„ã®ã§åˆ‡ã‚ŠæŠœã‘ã¾ã›ã‚“.展開ã§ãã¾ã›ã‚“ ${%s}é¸æŠžé ˜åŸŸãŒç©ºãªã®ã§ãƒ•ãƒ­ãƒ¼ãƒˆåŒ–ã¯ã§ãã¾ã›ã‚“.アルファãƒãƒ£ãƒ³ãƒãƒ«ã®ç„¡ã„レイヤーをå‰é¢ã«ã¯å‡ºã›ã¾ã›ã‚“.何もé¸æŠžã•ã‚Œã¦ã„ãªã„ã®ã§ä¿å­˜ã§ãã¾ã›ã‚“!空ã®ãƒãƒ£ãƒ³ãƒãƒ«ã¯ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã§ãã¾ã›ã‚“.空ã®ãƒ‘スã¯ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã§ãã¾ã›ã‚“.キャンãƒã‚¹ã‚µã‚¤ã‚ºã‚­ãƒ£ãƒ³ãƒã‚¹å‘¨è¾ºã®ãƒ¢ãƒ¼ãƒ‰(_P):中心座標 X:中央æƒãˆèƒŒæ™¯è‰²ã‚’変更カラーマップエントリã®å¤‰æ›´æ画色を変更画åƒè§£åƒåº¦ã®å¤‰æ›´ç”»åƒå˜ä½ã®å¤‰æ›´å°åˆ·ã‚µã‚¤ã‚ºã®å¤‰æ›´ç¾åœ¨ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‹ãƒ‘スグリッドã®èƒŒæ™¯è‰²ã‚’変更グリッドã®æ画色を変更インデックスパレット変更レイヤーやé¸æŠžé ˜åŸŸã®é è¿‘観を変更ã—ã¾ã™ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸãƒãƒ£ãƒ³ãƒãƒ«ãƒãƒ£ãƒ³ãƒãƒ«ã®å±žæ€§ãƒãƒ£ãƒ³ãƒãƒ«å:ã“れ以上ãƒãƒ£ãƒ³ãƒãƒ«ã‚’下é™ã•ã›ã‚‰ã‚Œã¾ã›ã‚“ã“れ以上ãƒãƒ£ãƒ³ãƒãƒ«ã‚’上昇ã•ã›ã‚‰ã‚Œã¾ã›ã‚“ãƒãƒ£ãƒ³ãƒãƒ«ã‚«ãƒ©ãƒ¼ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯æ—¢ã«æœ€èƒŒé¢ã«ã‚ã‚Šã¾ã™ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯æ—¢ã«æœ€å‰é¢ã«ã‚ã‚Šã¾ã™ãƒãƒ£ãƒ³ãƒãƒ«ã‚’é¸æŠžé ˜åŸŸã¸(_C)ãƒãƒ£ãƒ³ãƒãƒ«ã‚’é¸æŠžé ˜åŸŸã¸ãƒãƒ£ãƒ³ãƒãƒ«ã‚’é¸æŠžé ˜åŸŸã¸ãƒãƒ£ãƒ³ãƒãƒ«:ãƒãƒ£ãƒ³ãƒãƒ«ãƒãƒ£ãƒ³ãƒãƒ«ãƒ¡ãƒ‹ãƒ¥ãƒ¼å¸‚æ¾æ¨¡æ§˜ã®å¤§ãã•(_S):ストローク形å¼ã‚’é¸æŠžã™ã‚‹æ¶ˆåŽ»(_E)消去ãƒãƒ£ãƒ³ãƒãƒ«ã®ã‚¯ãƒªã‚¢ã‚¢ãƒ³ãƒ‰ã‚¥å±¥æ­´ã‚’消去全テキストを消去エラーを消去アンドゥ履歴を消去...上ã®è¨­å®šã§ã‚ˆã‘れ㰠"次ã¸" をクリックã—ã¦ä¸‹ã•ã„.個人 GIMP ディレクトリを作æˆã™ã‚‹ã«ã¯ "次ã¸" をクリックã—ã¦ä¸‹ã•ã„.GIMP ユーザインストールを始ã‚ã‚‹ã«ã¯ "次ã¸" をクリックã—ã¦ä¸‹ã•ã„.GIMP ユーザインストールを始ã‚ã‚‹ã«ã¯ "次ã¸" をクリックã—ã¦ä¸‹ã•ã„.クリックã—ã¦ã“ã®ã‚¢ãƒ³ã‚«ãƒ¼ã¨é¸æŠžã—ãŸç«¯ç‚¹ã‚’接続ã—ã¾ã™.クリックã—ã¦æ–°è¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’作æˆ. (SHIFT を試ã™)クリックã—ã¦ãƒ‘スã®æ–°ã—ã„コンãƒãƒ¼ãƒãƒ³ãƒˆã‚’作æˆã—ã¾ã™.クリックã—ã¦æ–°è¦ãƒ‘スを作æˆã—ã¾ã™.クリックã—ã¦ã“ã®ã‚¢ãƒ³ã‚«ãƒ¼ã‚’削除ã—ã¾ã™.クリックã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’パス上ã«æŒ¿å…¥ã—ã¾ã™. (SHIFTも試ã™)クリックã—ã¦ã“ã®ãƒŽãƒ¼ãƒ‰ã‚’角ã«ã—ã¾ã™.クリックã—ã¦ãƒ‘スを開ãã¾ã™.クリックã—ã¦ãƒ‘スを編集ã—ã¾ã™.クリックã—ã¦ãƒ—レビューを更新 -%s クリックã—ã¦æœ€æ–°ã®ãƒ—レビューを強制更新クリック-ドラッグã—ã¦ã‚«ãƒ¼ãƒ–ã®å½¢çŠ¶ã‚’変ãˆã¾ã™. (SHIFT: 対称)クリック-ドラッグã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’移動ã•ã›ã¾ã™.クリック-ドラッグã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’移動ã•ã›ã¾ã™.クリック-ドラッグã—ã¦å¯¾ç§°ã‚’移動ã•ã›ã¾ã™. (SHIFTも試ã™)クリック-ドラッグã—ã¦ãƒãƒ³ãƒ‰ãƒ«ã‚’移動ã•ã›ã¾ã™. (SHIFTも試ã™)クリック-ドラッグã—ã¦ãƒ‘スを移動ã•ã›ã¾ã™.クリック: é¸æŠžã‚¯ãƒªãƒƒã‚¯: é¸æŠž ドラッグ: 移動çµæžœã‚’クリップ最背é¢ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚µã‚¤ã‚ºã«åˆ‡ã‚Šå–ã‚Šç”»åƒã‚µã‚¤ã‚ºã«åˆ‡ã‚Šå–りスタンプ%s ã‚’é–‰ã˜ã‚‹å…¨ã¦ã®ã‚¿ãƒ–ã‚’é–‰ã˜ã¾ã™ã‹?ã“ã®ã‚¿ãƒ–を削除パスをコピー(_P)色(_r)色カラーãƒãƒ©ãƒ³ã‚¹ã‚«ãƒ©ãƒ¼ãƒ‡ã‚£ã‚¹ãƒ—レイフィルタスãƒã‚¤ãƒˆã‚¹ãƒã‚¤ãƒˆæƒ…報カラーãƒãƒ©ãƒ³ã‚¹(_B)...カラーãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´ã¯ RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™.色消ã—ゴム色インデックス:色カラーマップ(_M)色空間(_S)セグメントã«å¯¾ã™ã‚‹è‰²ãƒ¢ãƒ‡ãƒ«(_T)é¸æŠžé ˜åŸŸã«å¯¾ã™ã‚‹è‰²ãƒ¢ãƒ‡ãƒ«(_T)ç€è‰²ç€è‰²æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™.ç”»åƒã®ç€è‰²ç”»åƒã‚’ç€è‰²ã™ã‚‹ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—カラーマップエディタカラーマップメニュー列:コメント(_N):コメントコントラスト(_T):カラーディスプレイフィルタã®è¨­å®šè¿½åŠ ã•ã‚ŒãŸå…¥åŠ›æ©Ÿå™¨ã®è¨­å®š(_X)...グリッドã®è¨­å®š(_R)グリッドã®èª¿æ•´ç”»åƒã®ã‚°ãƒªãƒƒãƒ‰ã‚’調整キーボードショートカット設定キーボードショートカット設定...ç”»åƒã®ã‚µã‚¤ã‚ºã‚’確èªæ‹¡å¤§ç¸®å°ç¢ºèªæ–‡å­—編集確èªæœªä¿å­˜ã®ç”»åƒã‚’é–‰ã˜ã‚‹ã¨ãã®ç¢ºèª(_V)ショートカットãŒè¡çªä¸­ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æŽ¥ç¶šä¸€å®šåˆ¶ç´„コンテキストã«ã‚ˆã£ãŸã‚«ãƒ¼ã‚½ãƒ«ã¯ã‚¯ãƒ¼ãƒ«ã§ã™. 標準ã§æœ‰åŠ¹ã«ãªã£ã¦ã„ã¾ã™ãŒ, 多少ã®ã‚ªãƒ¼ãƒãƒ¼ãƒ˜ãƒƒãƒ‰ãŒã‚ã‚‹ãŸã‚, 無効ã«ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™.次ã¸è²¢çŒ®ã¯å¤‰æ›è¾ºã®å¤‰æ›ç”»åƒã‚’グレースケールã«å¤‰æ›ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚«ãƒ©ãƒ¼ã«å¤‰æ›ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚«ãƒ©ãƒ¼ã«å¤‰æ›ç”»åƒã‚’RGBã«å¤‰æ›ç”»åƒã®å¤‰æ›ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚«ãƒ©ãƒ¼ã«å¤‰æ›(ステージ2)インデックスカラーã«å¤‰æ›(ステージ3)色混ãœè‰²æ··ãœã®ç¨®é¡ž %såå‰ã‚’付ã‘ã¦ã‚³ãƒ”ー'%2$s' ã‹ã‚‰ '%1$s' ã¸ãƒ•ã‚¡ã‚¤ãƒ«ã‚’コピー中...著作権表示:グラデーション '%2$s' ã®ç«¯ç‚¹ %1$d ãŒå£Šã‚Œã¦ã¾ã™.'%s' を作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s'%s' 用ã®ä¸€æ™‚ファイルを作æˆã§ãã¾ã›ã‚“ã§ã—ãŸ: %s'%s' を削除ã§ãã¾ã›ã‚“ã§ã—ãŸ: %sGIMP ヘルプブラウザãŒè¦‹ä»˜ã‹ã‚Šã¾ã›ã‚“読ã¿è¾¼ã¿ç”¨ã« '%s' ã‚’é–‹ã‘ã¾ã›ã‚“ã§ã—ãŸ: %s書ãè¾¼ã¿ç”¨ã« '%s' ã‚’é–‹ã‘ã¾ã›ã‚“ã§ã—ãŸ: %sサムãƒã‚¤ãƒ«ãƒ•ã‚¡ã‚¤ãƒ« '%s' ãŒé–‹ã‘ã¾ã›ã‚“: %s'%2$s' ã‹ã‚‰ %1$d ãƒã‚¤ãƒˆèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ: %3$sXCFファイルをシークã§ãã¾ã›ã‚“: %sGIMP ヘルプブラウザプラグインãŒèµ·å‹•ã§ãã¾ã›ã‚“ã§ã—ãŸã‚«ã‚¦ãƒ³ãƒˆ:æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ(_K)æ–°ã—ã„テンプレートを作æˆæ–°è¦ç”»åƒã‚’作æˆæ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’作æˆæ–°ã—ã„テンプレートを作æˆã™ã‚‹ã“ã®ç”»åƒã«å¯¾ã™ã‚‹æ–°ã—ã„ディスプレイを作æˆé¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートã‹ã‚‰æ–°è¦ç”»åƒã‚’作æˆæ–°è¦ãƒ†ãƒ³ãƒ—レートを作æˆç”»åƒã‚„写真ã®ä½œæˆã‚„編集を行ã†ãƒ‘スã®ä½œæˆã‚„編集を行ã†ãƒ—レビューを作æˆä¸­...ディレクトリ '%s' を作æˆä¸­...切り抜ã切り抜ã & サイズ変更切り抜ã & サイズ変更情報画åƒã®åˆ‡ã‚ŠæŠœãレイヤーã®åˆ‡ã‚ŠæŠœãç”»åƒã®åˆ‡ã‚ŠæŠœãç”»åƒã‚’切り抜ã„ãŸã‚Šå¤§ãã•ã‚’変ãˆãŸã‚Šã™ã‚‹åˆ‡ã‚ŠæŠœã: åå­—ã®ã¿åˆ‡ã‚Šå–ã‚Š(_T)åå‰ã‚’付ã‘ã¦åˆ‡ã‚Šå–ã‚Š(_U)キュービック (最良)ç¾åœ¨ã®çŠ¶æ…‹(_S)ç¾åœ¨ã®å¹…:ç¾åœ¨ã®çŠ¶æ…‹ç¾åœ¨ã®å¹…:カーソルカーソルモード(_M):カーブã®ç¨®é¡žã‚«ãƒ¼ãƒ–インデックスæ画対象ã«å¯¾ã™ã‚‹è‰²ã‚«ãƒ¼ãƒ–ã¯èª¿æ•´ã§ãã¾ã›ã‚“.カスタムカスタムカラーカスタムグラデーションカスタムキャンãƒã‚¹å‘¨è¾ºã®è‰²(_A):切りå–ã‚Šåå‰ã‚’付ã‘ã¦åˆ‡ã‚Šå–りシアンシアン:ブラシã®è¤‡è£½(_U)ãƒãƒ£ãƒ³ãƒãƒ«ã®è¤‡è£½(_U)グラデーションã®è¤‡è£½(_U)レイヤーを複製(_U)パレットã®è¤‡è£½(_U)パスを複製(_U)パターンã®è¤‡è£½(_U)æš—ã„市æ¾æ¨¡æ§˜ã®è‰²äºŒç‚¹éŽ–ç·š...一点鎖線...破線パターン:既定ã®ç ´ç·š:破線日付:デãƒã‚°ãƒ•ãƒ«ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ãƒ¢ãƒ¼ãƒ‰ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè¡¨ç¤ºãƒŽãƒ¼ãƒžãƒ«ãƒ¢ãƒ¼ãƒ‰ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆè¡¨ç¤ºåˆæœŸã‚°ãƒªãƒƒãƒ‰åˆæœŸç”»åƒã‚°ãƒªãƒƒãƒ‰ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®è£œé–“方法(_I):レイヤー & ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚µã‚¤ã‚º(_L):デフォルトã®ã—ãã„値(_T):アンカーã®å‰Šé™¤ã‚¢ãƒ³ã‚«ãƒ¼ã®å‰Šé™¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’削除(_K)レイヤーマスク削除データオブジェクトã®å‰Šé™¤ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã®å‰Šé™¤ãƒ†ãƒ³ãƒ—レートを削除ブラシã®å‰Šé™¤ãƒãƒ£ãƒ³ãƒãƒ«ã®å‰Šé™¤è‰²ã®å‰Šé™¤ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã®å‰Šé™¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’削除レイヤーマスク削除パレットã®å‰Šé™¤ãƒ‘スを削除パターンã®å‰Šé™¤ä¿å­˜ã—ãŸã‚ªãƒ—ションã®å‰Šé™¤...é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートを削除é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートを削除ã“ã®ç”»åƒã‚’削除ベクタã®å‰Šé™¤'%s' ã®å‰Šé™¤ã«å¤±æ•—: %s密点脱色脱色æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™.詳細デザインデãƒã‚¤ã‚¹ã®çŠ¶æ…‹ãƒ‡ãƒã‚¤ã‚¹ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãƒ¡ãƒ‹ãƒ¥ãƒ¼å·®åˆ†ãƒ€ã‚¤ãƒ¬ã‚¯ãƒˆã‚«ãƒ©ãƒ¼ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®ç„¡åŠ¹åŒ–文字情報を破棄ã™ã‚‹è¡¨ç¤ºãƒŠãƒ“ゲーションを表示Display プロシージャ表示タイプ:表示 [%0.6f, %0.6f]消散è·é›¢:è·é›¢: %0.6fディザリング除算GIMP ユーザインストールã®çµ‚了(_F)本当ã«å…¨ã¦ã®ãƒ„ールオプションをåˆæœŸå€¤ã«æˆ»ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹?ä¿å­˜ã—ãªã„(_N)文書履歴(一覧)(_Y)文書履歴(一覧)文書文書メニュー覆ã„焼ã暗室ストロークæ画暗室アンカーã®ãƒ‰ãƒ©ãƒƒã‚°ã‚¢ãƒ³ã‚«ãƒ¼ã®ãƒ‰ãƒ©ãƒƒã‚°ã‚«ãƒ¼ãƒ–ã®ãƒ‰ãƒ©ãƒƒã‚°ãƒãƒ³ãƒ‰ãƒ«ã®ãƒ‰ãƒ©ãƒƒã‚°ãƒ‘スã®ãƒ‰ãƒ©ãƒƒã‚°ãƒ‰ãƒ©ãƒƒã‚°: 移動インクã§æãæ画対象æ画対象プロシージャ新è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ドロップ新è¦ãƒ‘スをドロップフォントãŒè¶³ã‚Šãªã„ãŸã‚, 文字機能ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“.ã“ã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ãƒ¼ã‹ã‚‰ã®ã‚¤ãƒ™ãƒ³ãƒˆã‚’ダンプブラシã®è¤‡è£½ãƒãƒ£ãƒ³ãƒãƒ«ã®è¤‡è£½ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã®è¤‡è£½ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’複製パレットã®è¤‡è£½ãƒ‘スを複製パターンã®è¤‡è£½é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートを複製EEK: アンドゥã§ãã¾ã›ã‚“パスをエクスãƒãƒ¼ãƒˆ(_X)...ã¨ã¦ã‚‚å°ã•ã„(_X)振舞ã„編集輪郭抽出(_T)編集ãƒãƒ£ãƒ³ãƒãƒ«ã®å±žæ€§ã‚’変更ãƒãƒ£ãƒ³ãƒãƒ«ã‚«ãƒ©ãƒ¼ã®ç·¨é›†ã‚«ãƒ©ãƒ¼ãƒ‘レットã®ã‚¨ãƒ³ãƒˆãƒªã®ç·¨é›†ã‚«ãƒ©ãƒ¼ãƒ‘レットã®ã‚¨ãƒ³ãƒˆãƒªã®ç·¨é›†ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®å±žæ€§ã‚’編集レイヤーマスクã®ç·¨é›†ç·¨é›†ãƒ¢ãƒ¼ãƒ‰ãƒ‘レットカラーã®ç·¨é›†ãƒ‘スã®å±žæ€§ã‚’変更クイックマスク属性を編集クイックマスクã®è‰²ã‚’編集テンプレートã®ç·¨é›†ãƒ–ラシã®ç·¨é›†ãƒãƒ£ãƒ³ãƒãƒ«ã®å±žæ€§ã‚’変更色ã®ç·¨é›†ã‚«ãƒ©ãƒ¼ãƒ‘レットã®ã‚¨ãƒ³ãƒˆãƒª #%d ã®ç·¨é›†ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã®ç·¨é›†ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®å±žæ€§ã‚’編集パレットã®ç·¨é›†ãƒ‘スã®å±žæ€§ã‚’変更パターンã®ç·¨é›†ãƒ—ロシージャを編集é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートを編集楕円é¸æŠžç©ºãƒãƒ£ãƒ³ãƒãƒ«ç©ºã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ç©ºã®ãƒ‘ス空ã®æ–‡å­—レイヤー環境設定ファイル %s 内ã«ç©ºã®å¤‰æ•°å強調(_H)ã“ã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ãƒ¼ã¯æœ‰åŠ¹èµ·å‹•æ™‚ã«GIMPã®æŠ€ã‚’表示ã—ã¾ã™.ツールãƒãƒƒãƒ—を表示ã—ã¾ã™.巨大çµåˆå¾Œã®ãƒ‘レットã®åå‰ã‚’入力ä¿å­˜ã™ã‚‹ã‚ªãƒ—ションã®åå‰ã‚’入力ã“ã®ãƒãƒƒãƒ•ã‚¡ã«å¯¾ã™ã‚‹åå‰ã‚’入力ã—ã¦ä¸‹ã•ã„ã“ã®ãƒ†ãƒ³ãƒ—レートã«å¯¾ã™ã‚‹åå‰ã‚’入力ã—ã¦ä¸‹ã•ã„ä¿å­˜ã‚ªãƒ—ションã®åå‰ã‚’入力場所ã®å…¥åŠ› (URI):環境環境ディレクトリ平滑化インデックスレイヤーã«å¯¾ã—ã¦ã¯å¹³å‡åŒ–処ç†ã‚’ã—ã¾ã›ã‚“.消ã—ゴムã§èƒŒæ™¯è‰²ã‚„é€æ˜Žã«æˆ»ã™æ¶ˆã—ゴムエラーコンソール<(_N)エラーコンソールエラーコンソールXCF ファイルä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼: %sファイル '%s' ã® %d 行目を解æžä¸­ã«ã‚¨ãƒ©ãƒ¼: %s'%s' 読ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s'%s' 書ãè¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %sXCF 書ãè¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %sファイル '%s' ã¸ã®æ›¸ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼: -%s'%s' ã«æ›¸ãè¾¼ã¿æ™‚ã«ã‚¨ãƒ©ãƒ¼: %s'%s' ã®ä¸€æ™‚ファイルã®æ›¸ãè¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s -ファイルãŒä½•ã‚‚作æˆã•ã‚Œã¦ã¾ã›ã‚“.'%s' ã®ä¸€æ™‚ファイルã®æ›¸ãè¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s -å…ƒã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒä½œæˆã•ã‚Œã¦ã¾ã›ã‚“.エラーイベントやや大ãã„(_T)å¿…è¦ã«å¿œã˜ã¦æ‹¡å¤§ãƒ‘スを SVG å½¢å¼ã§ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆéœ²å‡º:追加入力機器拡張å­æ画色塗りå‰æ™¯ã‹ã‚‰èƒŒæ™¯ (HSV 時計回り)å‰æ™¯ã‹ã‚‰èƒŒæ™¯ (HSV å時計回り)å‰æ™¯ã‹ã‚‰èƒŒæ™¯ (HSV)å‰æ™¯ã‹ã‚‰èƒŒæ™¯ (RGB)å‰æ™¯ã‹ã‚‰é€æ˜Žã«å‰æ™¯ã‹ã‚‰é€æ˜Žã«æç”»/背景æ画色/背景色フロートé¸æŠžã‚’レイヤーã¸ã‚­ãƒ£ãƒ³ãƒã‚¹ã‚’レイヤーã«åˆã‚ã›ã‚‹(_I)フェードアウト'%s' ã‹ã‚‰ã®ãƒ‘ス読ã¿è¾¼ã¿å¤±æ•—: %sブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルã¯åˆ‡ã‚Šåˆ†ã‘られã¦ã„るよã†ã§ã™.ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルãŒå£Šã‚Œã¦ã„ã¾ã™.ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: GIMP ブラシファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“.ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ä¸æ˜Žãª GIMP ブラシファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™.ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d ã¯ä¸æ˜Žãªæ·±åº¦ã§ã™.ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d ã¯ä¸æ˜Žãªãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™.ブラシファイル '%s' 中ã®è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: éžã‚µãƒãƒ¼ãƒˆã®ãƒ–ラシ深度 %d ã§ã™. -GIMP ブラシ㯠GRAY ã‹ RGBA ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“.グラデーション '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルãŒå£Šã‚Œã¦ã„ã¾ã™.グラデーション '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: GIMP グラデーションファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“. -ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ DOS å½¢å¼ã‹ã‚‰å¤‰æ›ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚?パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d 行目ã§èª­ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼.パターン '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d ãƒã‚¤ãƒˆèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ: %sパターン '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ä¸æ˜Žãªãƒ‘ターン形å¼ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %d.パターン '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: éžã‚µãƒãƒ¼ãƒˆã®æ·±åº¦ %d ã§ã™. -GIMP パターン㯠GRAY ã‚‚ã—ã㯠RGB ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“.ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ã¼ã‹ã™é¸æŠžé ˜åŸŸã‚’ã¼ã‹ã™ç¸ã‚’ã¼ã‹ã™é‡ãƒ•ã‚¡ã‚¤ãƒ«ãƒ•ã‚¡ã‚¤ãƒ«ã‚ªãƒ¼ãƒ—ンダイアログ(_D)ファイルæ“作ファイルタイプファイルã¯å­˜åœ¨ã—ã¾ã™ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å¡—ã‚Šã¤ã¶ã™å¡—ã‚Šä¸é€æ˜Žåº¦:å¡—ã‚Šã¤ã¶ã—方法 %s背景色ã§å¡—ã‚Šã¤ã¶ã™èƒŒæ™¯è‰²ã§å¡—ã‚Šã¤ã¶ã™(_G)æ画色ã§å¡—ã‚Šã¤ã¶ã™ãƒ‘ターンã§å¡—ã‚Šã¤ã¶ã™(_A)パターンã§å¡—ã‚Šã¤ã¶ã™é€æ˜Žè‰²ã§å¡—ã‚Šã¤ã¶ã™ç™½è‰²ã§å¡—ã‚Šã¤ã¶ã™æ画色ã§å¡—ã‚Šã¤ã¶ã™(_F)グラデーションを用ã„ã¦å¡—ã‚Šã¤ã¶ã™è‰²ã‚„パターンã§å¡—ã‚Šã¤ã¶ã™ä¸¡ç«¯æƒãˆãƒ•ã‚£ãƒ«ã‚¿(_R)最終的ã«çµåˆã•ã‚ŒãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯:隣接(色)領域ã®æ¤œç´¢é¡žä¼¼è‰²ã‚’見ã¤ã‘るウインドウã«ã‚ã‚ã›ã‚‹ç”»åƒã®çµ±åˆé¡åƒå転ãƒãƒ£ãƒ³ãƒãƒ«ã®å転レイヤーをå転パスã®å転文字レイヤーをå転å転ã®å‘ã %sæ°´å¹³å転(_H)åž‚ç›´å転(_V)ç”»åƒã®å転レイヤーやé¸æŠžé ˜åŸŸã‚’å転ã•ã›ã‚‹å転...å転ã—ã¦ã„ã¾ã™...フローティングé¸æŠžé ˜åŸŸãƒ•ãƒ­ãƒ¼ãƒ†ã‚£ãƒ³ã‚°é¸æŠžé ˜åŸŸã‚’レイヤーã«ãƒ•ãƒ­ãƒ¼ãƒ†ã‚£ãƒ³ã‚°é¸æŠžãƒ•ã‚©ãƒ¼ã‚«ã‚¹ãƒ•ã‚©ãƒ«ãƒ€ãƒ•ã‚©ãƒ«ãƒ€ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ•ã‚©ãƒ³ãƒˆ UIフォント:フォントフォント正常㫠GIMP ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚‹ã¨, '%s' ã¨ã„ã†ã‚µãƒ–ディレクトリãŒä½œæˆã•ã‚Œã¾ã™.å‰æ™¯å‰æ™¯è‰²ã¨èƒŒæ™¯è‰²ã§ã™. é»’ã¨ç™½ã®å››è§’ã§è‰²ã‚’åˆæœŸåŒ–ã§ãã¾ã™. 矢å°ã¯å‰æ™¯è‰²æ画色を交æ›ã—ã¾ã™. ダブルクリックã™ã‚‹ã¨è‰²ã‚’é¸æŠžã§ãã¾ã™.æ画色å‰æ™¯è‰²ã‚’以下ã«è¨­å®š:æ画色: %d, %d, %d自由é¸æŠžè‡ªç”±æ›²ç·šã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã‚·ã‚¹ãƒ†ãƒ ã‹ã‚‰ (ç¾åœ¨ %d x %d dpi)å·¦ã‹ã‚‰å³ã¸å³ã‹ã‚‰å·¦ã¸ãƒ†ãƒ¼ãƒžã‹ã‚‰å…¨ç”»é¢è¡¨ç¤º(_E)ã‚ã„ã¾ã„é¸æŠžGIMPGIMP 拡張機能GIMP メッセージGIMP パフォーマンスãƒãƒ¥ãƒ¼ãƒ‹ãƒ³ã‚°GIMP プラグインGIMP 起動中GIMP 文字エディタGIMP 今日ã®æŠ€GIMP ユーザインストールGIMP ã¯ãƒ¦ãƒ¼ã‚¶ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ã‚¤ã‚¹ã‚’åˆæœŸåŒ–ã§ãã¾ã›ã‚“ã§ã—ãŸ. -ディスプレイ環境ã«å¯¾ã—ã¦é©åˆ‡ãªè¨­å®šãŒã•ã‚Œã¦ã„ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„.GIMP ヘルプブラウザç¾åœ¨ã®ãƒ¦ãƒ¼ã‚¶ã«å¯¾ã—㦠GIMP ãŒæ­£ã—ãインストールã•ã‚Œã¦ã„ã¾ã›ã‚“. -'--no-interface' オプション付ãã§èµ·å‹•ã•ã‚ŒãŸãŸã‚, ユーザ用インストール -ãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã—ãŸ. ユーザインストールを行ã†ãŸã‚ã«ã¯ -'--no-interface' オプションを付ã‘ãšã« GIMP ã‚’èµ·å‹•ã—ã¦ãã ã•ã„.GIMP 㯠"タイルキャッシュ" ã¨ã„ã†ä¸€å®šé‡ã®ãƒ¡ãƒ¢ãƒªã‚’使用ã—ã¦ç”»åƒã‚’å–り扱ã„ã¾ã™. ä»–ã®å®Ÿè¡Œä¸­ã®ãƒ—ロセス等ã®ã“ã¨ã‚‚考ãˆã¤ã¤, 実メモリé‡ã«åŸºã¥ã„ã¦é©åˆ‡ãªã‚µã‚¤ã‚ºã«è¨­å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™.GIMP ã«å¯¾ã™ã‚‹å°‚用㮠gtkrc ファイルも使用ã§ã, ã“れを用ã„ã¦ä»–ã® GTK アプリケーションã¨é•ã£ãŸè¦‹ãŸç›®ã«è¨­å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™.GIMP ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã“ã“ã§æŒ‡å®šã—ãŸä»¥ä¸Šã®ãƒ¡ãƒ¢ãƒªé ˜åŸŸã‚’å¿…è¦ã¨ã™ã‚‹ç”»åƒã‚’作æˆã—よã†ã¨ã™ã‚‹ã¨, GIMP ãŒè­¦å‘Šã‚’è¡Œã„ã¾ã™.ガンマ一般8-bit ディスプレイã«ã®ã¿é–¢ä¿‚ã—ã¾ã™ãŒ, GIMP ã§åˆ©ç”¨ã§ãる最å°ã®ã‚·ã‚¹ãƒ†ãƒ ã‚«ãƒ©ãƒ¼æ•°ã‚’指定ã—ã¾ã™.モニタ解åƒåº¦ã‚’超巨大Gimprc プロシージャガラス効果(_S)グラデーショングラデーションエディタグラデーション編集グラデーションディレクトリグラデーションセグメントã®å·¦çµ‚端ã®è‰²ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã®å³çµ‚端ã®è‰²ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ UIグラデーション:グラデーショングラデーショングレースケールグレースケール緑緑:グリッドãƒãƒ£ãƒ³ãƒãƒ«æ‹¡å¤§é¸æŠžé ˜åŸŸã®æ‹¡å¤§é¸æŠžé ˜åŸŸã®æ‹¡å¤§é‡ã‚¬ã‚¤ãƒ‰ã‚¬ã‚¤ãƒ‰ã¨ã‚°ãƒªãƒƒãƒ‰ã«ã‚¹ãƒŠãƒƒãƒ—ガイドプロシージャHSVHSV (%0.3f, %0.3f, %0.3f)高ã•(_E):使用ã™ã‚‹ãƒ˜ãƒ«ãƒ—ブラウザ(_E):制御点ä½ç½®: %0.6fãƒãƒ¼ãƒ‰ã‚¨ãƒƒã‚¸å¼·ã„光強度強度:高ã•é«˜ã•:ヘルプヘルプブラウザヘルプシステムヘルプブラウザãŒã‚¹ã‚¿ãƒ¼ãƒˆã—ã¾ã›ã‚“ヘルプブラウザãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ヘルププロシージャ16進数:ãƒã‚¤ãƒ©ã‚¤ãƒˆãƒ‰ãƒƒã‚¯ã®ãƒ’ント(_D):ツールボックスã®ãƒ’ント(_T):å°ã•ã„文字サイズã®å ´åˆã«æ˜Žçž­ãªãƒ“ットマップを生æˆã™ã‚‹ãŸã‚ã®ãƒ’ント情報ヒストグラム(_M)ヒストグラムヒストグラムã®æ‹¡å¤§ç¸®å°å±¥æ­´æ°´å¹³æœ€åˆã®ã‚°ãƒªãƒƒãƒ‰ç·šã®æ°´å¹³ã‚ªãƒ•ã‚»ãƒƒãƒˆ; è² ã®å€¤.グリッド線ã®æ°´å¹³é–“éš”.ファイルメニュー上ã§è¦šãˆã¦ãŠã最近開ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®æ•°ã§ã™.色相色相-彩度色相-彩度ã®æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™.色相:ã¨ã¦ã‚‚大ãã„アイコンã¨æ–‡å­—(_C)ç”»åƒ(_M)パスをインãƒãƒ¼ãƒˆ(_M)...é–“éš”(_N):アイコンアイコンã¨è©³ç´°ã‚¢ã‚¤ã‚³ãƒ³ã¨æ–‡å­—利用å¯èƒ½ãªã‚‰ã°, フォントã‹ã‚‰ãƒ’ントを利用ã—ã¾ã™ãŒ, 常時自動ヒントを利用ã™ã‚‹æ–¹ãŒã‚ˆã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“.環境設定ファイル %s 内ã«ç„¡åŠ¹ãªå¤‰æ•°å: %sç”»åƒç”»åƒã‚¨ãƒ‡ã‚£ã‚¿ç”»åƒæƒ…報画åƒãƒ¡ãƒ‹ãƒ¥ãƒ¼ç”»åƒã®ã‚µã‚¤ã‚ºç”»åƒã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼å½¢å¼:ç”»åƒãƒ†ãƒ³ãƒ—レート画åƒã‚µãƒ ãƒã‚¤ãƒ«ç”»åƒã‚¿ã‚¤ãƒˆãƒ«ã¨ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆã®å½¢å¼ç”»åƒã‚¿ã‚¤ãƒˆãƒ«å½¢å¼:ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®è¡¨ç¤ºå½¢å¼ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ç”»åƒãƒ•ã‚¡ã‚¤ãƒ«ç”»åƒãƒžã‚¹ã‚¯ç”»åƒã®è§£åƒåº¦ãŒåˆ¶é™ã‚’越ãˆã¦ã„ã‚‹ãŸã‚, 標準解åƒåº¦ã‚’代ã‚ã‚Šã«ä½¿ç”¨ã—ã¾ã™.ç”»åƒã®ã‚µã‚¤ã‚ºç”»åƒã‚½ãƒ¼ã‚¹ç”»åƒã®ç¨®é¡žç”»åƒç”»åƒã‚¤ãƒ³ãƒãƒ¼ãƒˆã‚ªãƒ—ションパレットã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆãƒ‘スã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆSVG ã‹ã‚‰ãƒ‘スをインãƒãƒ¼ãƒˆæ–°è¦ãƒ‘レットã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆãƒ‘レットã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆãƒ‘スã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆã‚¤ãƒ³ãƒãƒ¼ãƒˆã•ã‚ŒãŸãƒ‘スå転(_V)マスクå転(_V)é‡ã­å¡—り字下ã’:一行目ã§å­—下ã’ã™ã‚‹ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹:インデックスインデックスカラーインデックスカラー変æ›æƒ…報ウインドウ最åˆã«ä½¿ã†æ‹¡å¤§çŽ‡:レイヤーマスクã®åˆæœŸåŒ–方法:プラグインåˆæœŸåŒ–中プラグインåˆæœŸåŒ–中: '%s' -インクインライン pixbuf入力コントローラー入力機器入力レベルアンカーã®æŒ¿å…¥ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã«å¤±æ•—ã—ã¾ã—ãŸ. システム管ç†è€…ã«ã”相談ãã ã•ã„.インストールã¯æˆåŠŸã—ã¾ã—ãŸ. "次ã¸" をクリックã—ã¦é€²ã¿ã¾ã™.å³æ™‚更新インターフェイス内部 GIMP プロシージャ内部プロシージャ補間ã®ç¨®é¡ž:é¸æŠžé ˜åŸŸã¨ã®äº¤ã‚り共通部分(クロスヘア)共通部分(点)ä¸é©åˆ‡ãª UTF-8 文字列ファイル '%s' 中ã«ç„¡åŠ¹ãª UTF-8 データãŒã‚ã‚Šã¾ã™.XCF ファイル内ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ãƒ–ラシファイル '%s' 中ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™.グラデーション '%s' 内ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™.パレット '%s' 中ã«ä¸é©åˆ‡ãª UTF-8 文字列GIMP パターンファイル '%s' 中ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™.URI中ã«ä¸é©åˆ‡ãªæ–‡å­—列ä¸æ­£ãªã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã§ã™å¹…ã¾ãŸã¯é«˜ã•ãŒä¸æ­£ã§ã™. 両方ã¨ã‚‚æ­£ã®å€¤ã§ãªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“.å転ãƒãƒ£ãƒ³ãƒãƒ«ã®å転é¸æŠžé ˜åŸŸã¨ã®äº¤ã‚りインデックスレイヤーã«å¯¾ã—ã¦ã¯å転æ“作をã—ã¾ã›ã‚“.é¸æŠžã®åè»¢ä»¥å‰ GIMP 2.0 を使用ã—ã¦ã„ãŸã‚ˆã†ã«è¦‹ãˆã¾ã™ã‚¢ã‚¤ãƒ†ãƒ ã®ãƒ—ロパティアイテムã®è¡¨ç¤ºèª¿æ•´:é€æ˜Žä¿è­·é€æ˜Žä¿è­·ã‚­ãƒ¼ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã¯ GIMP 内ã§ã®å‹•çš„ã«å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™. menurc ã¯ã‚ãªãŸã®è¨­å®šã‚’書ã出ã—ãŸã‚‚ã®ã§, 次ã«èµ·å‹•ã—ãŸéš›ã«å†ã³åŒã˜ã‚‚ã®ãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™. 手ã§ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’書ã変ãˆã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ãŒ, GIMP を使ã£ã¦å¤‰æ›´ã™ã‚‹æ–¹ãŒæ¥½ã§ã—ょã†. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’削除ã™ã‚‹ã“ã¨ã§, ショートカットをåˆæœŸåŒ–ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™.キーボードキーボードイベントキーボードショートカットLTR左終端色(_E)...横å‘ã大ãã„大 (256x256)大ããªãƒ—レビュー最後ã®ã‚¨ãƒ©ãƒ¼:レイヤーレイヤー '%s' ã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“. レイヤーã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã®å‰é¢ã«ç½®ã‹ã‚Œã¦ã„ã¾ã™.レイヤーã®å±žæ€§ãƒ¬ã‚¤ãƒ¤ãƒ¼å¢ƒç•Œã®å¤§ãã•(_O)...レイヤー塗りã¤ã¶ã—方法レイヤーマスクをé¸æŠžé ˜åŸŸã«ãƒ¬ã‚¤ãƒ¤ãƒ¼é¸æŠžãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚µã‚¤ã‚ºãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ¢ãƒ¼ãƒ‰(_M)レイヤーå(_N):ã“れ以上レイヤーを背é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“ã“れ以上レイヤーをå‰é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“レイヤーã¯æ—¢ã«æœ€èƒŒé¢ã«ã‚ã‚Šã¾ã™ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯æ—¢ã«æœ€å‰é¢ã«ã‚ã‚Šã¾ã™ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ç”»åƒã‚µã‚¤ã‚ºã«åˆã‚ã›ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’最背é¢ã¸(_B)レイヤーを画åƒã‚µã‚¤ã‚ºã«åˆã‚ã›ã‚‹(_I)レイヤーを最å‰é¢ã¸(_T)レイヤーã®ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«(_A)レイヤーレイヤーメニューレイヤーçµåˆã‚ªãƒ—ション左終端色左æƒãˆé•·ã•:GIMP ãŒèµ·å‹•æ™‚ã«æœ€å¾Œã«ç·¨é›†ã—ãŸéš›ã®çŠ¶æ…‹ã‚’復旧ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™.レベルインデックスレイヤーã®ãƒ¬ãƒ™ãƒ«ã¯èª¿æ•´ã§ãã¾ã›ã‚“明るã„市æ¾æ¨¡æ§˜ã®è‰²ç›´ç·šè¡Œ -é–“éš”:ç·šå¹…:線種(_S):グリッドã«ç”¨ã„る線種ã§ã™.線形リンクã•ã‚ŒãŸã‚¢ã‚¤ãƒ†ãƒ èª­ã¿è¾¼ã¿ã‚«ãƒ¼ãƒ–読込読ã¿è¾¼ã¿ãƒ¬ãƒ™ãƒ«å³å´ã®è‰²ã®èª­ã¿è¾¼ã¿å…ƒ(_O)プレビューを読ã¿è¾¼ã¿ä¸­...場所:対数長破線データファイルを検索中ãƒãƒ£ãƒ³ãƒãƒ«ä¸‹é™ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番下ã¾ã§ä¸‹é™ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番下ã¾ã§ä¸‹é™(_B)レイヤーを背é¢ã¸ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’最背é¢ã¸ãƒ‘スを下é™ãƒ‘スを最背é¢ã¸ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸‹é™ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番下ã¾ã§ä¸‹é™ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’背é¢ã¸ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’最背é¢ã¸ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã«ç§»å‹•...(_O)マップ(_P)マゼンダマゼンダ:虫ã‚ãŒã­é€æ˜Žä½œæˆ(_T)ロードå¯èƒ½ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã®ç®¡ç†ãƒžã‚¹ã‚¯ä¸é€æ˜Žåº¦:é¸æŠžé ˜åŸŸã‚’マスク(_S)éžé¸æŠžé ˜åŸŸã‚’マスク(_U)行列:最大深度:サムãƒã‚¤ãƒ«ã®æœ€å¤§ãƒ•ã‚¡ã‚¤ãƒ«ã‚µã‚¤ã‚º(_F):æ–°è¦ç”»åƒã®æœ€å¤§ã‚µã‚¤ã‚º(_N):最大ã®è‰²ã®å·®ã‚¢ãƒ³ãƒ‰ã‚¥ã«ä½¿ã†æœ€å¤§ãƒ¡ãƒ¢ãƒª(_M):å¹³å‡:定è¦è·é›¢ã¨è§’度を測るè·é›¢ã¨è§’度を測りã¾ã™ä¸­å¿ƒå€¤:中間中破線下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨çµåˆ(_W)下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨çµ±åˆãƒ¬ã‚¤ãƒ¤ãƒ¼ã®çµ±åˆãƒ‘レットçµåˆå¯è¦–レイヤーã®çµ±åˆå¯è¦–パスã®çµ±åˆå¯è¦–レイヤーã®çµ±åˆ(_L)...å¯è¦–レイヤーã®çµ±åˆ(_V)...レイヤーã®çµ±åˆãƒ‘レットçµåˆãƒ™ã‚¯ã‚¿ã®çµ±åˆãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãƒ—ロシージャ%d 回åŒã˜ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒç¹°ã‚Šè¿”ã•ã‚Œã¾ã—ãŸåŒã˜ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒç¹°ã‚Šè¿”ã•ã‚Œã¾ã—ãŸä¸­é–“色ユーザ設定ã®çµ±åˆè¦šãˆã¦ãŠã最å°ã‚¢ãƒ³ãƒ‰ã‚¥å›žæ•°(_U):ãã®ä»–é¢ã¨ã‚Šãƒ¢ãƒ¼ãƒ‰ãƒ¢ãƒ¼ãƒ‰:é¸æŠžã—ãŸè‰²ã‚’調整é¸æŠžã—ãŸç¯„囲ã®ã‚«ãƒ©ãƒ¼ãƒ¬ãƒ™ãƒ«ã‚’調整ã™ã‚‹å…¨ã¦ã®è‰²ã‚’調整行間ã®èª¿æ•´ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒ–ラウザモジュールã®ãƒ‘スモジュールマウスカーソルマウスホイールマウスホイールã®ã‚¤ãƒ™ãƒ³ãƒˆç§»å‹•ã‚¢ãƒ³ã‚«ãƒ¼ã®ç§»å‹•ãƒãƒ£ãƒ³ãƒãƒ«ã‚’移動ガイドを移動ガイドを移動: レイヤーを移動レイヤーマスクã®ç§»å‹•ãƒ‘スã®ç§»å‹•é¸æŠžé ˜åŸŸã‚’移動文字レイヤーを回転アイテムã®ç§»å‹•ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚„é¸æŠžé ˜åŸŸã®ç§»å‹•é¸æŠžé ˜åŸŸã‚’移動ç¾åœ¨ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’移動é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’下ã«ç§»å‹•é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’上ã«ç§»å‹•ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã«ç§»å‹•...移動: 乗算色数(_U):ナビゲーション(_V)ナビゲーションã®ãƒ—レビューサイズ(_V):åå‰åå‰:ナビゲーション新è¦ãƒãƒ£ãƒ³ãƒãƒ«æ–°è¦ãƒãƒ£ãƒ³ãƒãƒ«ã‚«ãƒ©ãƒ¼æ–°è¦ãƒãƒ£ãƒ³ãƒãƒ«ã‚ªãƒ—ション背景色ã‹ã‚‰æ–°ã—ã„色(_B)æ画色ã‹ã‚‰æ–°ã—ã„色(_F)æ–°è¦ç”»åƒæ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼æ–°è¦ãƒ‘ス新è¦ãƒ‘スオプション新è¦ãƒ†ãƒ³ãƒ—レート新è¦ãƒ–ラシ新è¦ãƒãƒ£ãƒ³ãƒãƒ«æœ€çµ‚値ã§æ–°è¦ãƒãƒ£ãƒ³ãƒãƒ«æ–°è¦ãƒãƒ£ãƒ³ãƒãƒ«...背景色ã‹ã‚‰æ–°ã—ã„色æ画色ã‹ã‚‰æ–°ã—ã„色新è¦ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³æ–°è¦ã‚¤ãƒ³ãƒãƒ¼ãƒˆæ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼...æ–°è¦ãƒ‘レット新è¦ãƒ‘ス...æ–°è¦ãƒ‘ターン新è¦ãƒ™ã‚¯ã‚¿æœ‰åŠ¹ãªãƒ–ラシãŒã‚ã‚Šã¾ã›ã‚“.利用å¯èƒ½ãªã‚‚ã®ãŒã‚ã‚Šã¾ã›ã‚“'%s' ã«ã¯ãƒ‘スãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ãƒãƒƒãƒ•ã‚¡ã«ã¯ãƒ‘スãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“有効ãªãƒ‘ターンãŒã‚ã‚Šã¾ã›ã‚“.é¸æŠžãªã—ストロークæç”»ã™ã‚‹é ˜åŸŸãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“.サムãƒã‚¤ãƒ«ç„¡ã—æƒãˆãªã„ãªã—ãªã— (高速)標準標準 (128x128)点通常ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦é€šå¸¸ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã¯ã‚ã‚Šã¾ã›ã‚“çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–レイヤーãŒè¶³ã‚Šã¾ã›ã‚“. å°‘ãªãã¨ã‚‚二ã¤ã¯å¿…è¦ã§ã™.çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–パスãŒè¶³ã‚Šã¾ã›ã‚“. å°‘ãªãã¨ã‚‚二ã¤ã¯å¿…è¦ã§ã™.使用ã™ã‚‹ãƒ—ロセッサã®æ•°(_P):グリッドã®ç·šæ•°ãƒ¬ã‚¤ãƒ¤ãƒ¼æ•°:オフセットオフセットãƒãƒ£ãƒ³ãƒãƒ«æ画対象オフセットオフセットレイヤーオフセットレイヤーマスクオフセット:ディスク上--enable-mp を指定ã—ã¦ã‚³ãƒ³ãƒ‘イルã•ã‚ŒãŸ GIMP ãŒ, マルãƒãƒ—ロセッサ機上ã§åŒæ™‚ã«åˆ©ç”¨ã™ã‚‹ãƒ—ロセッサã®æ•°ã‚’指定ã—ã¾ã™.メモリー中ã®ã¿ãƒ¬ã‚¤ãƒ¤ãƒ¼ã§é–‹ã(_E)...ä¸é€æ˜Žåº¦ä¸é€æ˜Žåº¦:é–‹ãç”»åƒã‚’é–‹ãレイヤーã§ç”»åƒã‚’é–‹ã場所を開ãテキストファイル (UTF-8) ã‚’é–‹ã場所を開ã(_L)...最近開ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«(_R)...ç”»åƒã‚’é–‹ãダイアログブラシé¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãフォントé¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãグラデーションé¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãパターンé¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãé¸æŠžã—ãŸã‚¨ãƒ³ãƒˆãƒªã‚’é–‹ã'%s' ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—: - -%s'%s' ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—: %sオプション: -開始点 ã® X:å…ƒã®å¹…:ãã®ä»– (%s) ...出力レベルオーãƒãƒ¼ãƒ¬ã‚¤ãƒ—ロシージャ '%s' ã«å¯¾ã™ã‚‹ PBD 呼ã³å‡ºã—エラー: -%d 番目ã®å¼•æ•°ã®ç¨®é¡žãŒç•°ã£ã¦ã„ã¾ã™ (%s ã®ã¯ãšãŒ %s ã§ã—ãŸ)PDB 呼ã³å‡ºã—エラー: -手続ã '%s' ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“パターン(_A)Pack my box with -five dozen liquor jugs.æ画ツール共有ã®æ画オプションæ画ツールプロシージャæ画ツール:æ画モード絵筆ã§ç·šã‚’引ã硬ã„ã¨ãŒã£ãŸé‰›ç­†ã§æãパターンã‚ã‚‹ã„ã¯ç”»åƒã®ä¸€éƒ¨ã§æç”»ã™ã‚‹çµµç­†ãƒ‘レット(_E)パレットパレット編集パレット編集パレットディレクトリパレット UIパレットå(_N):パレットファイル(_F)パレットパレットパラサイトプロシージャパラサイト'%s' を解æžä¸­ -貼り付ã‘ãƒãƒƒãƒ•ã‚¡å†…ã«è²¼ã‚Šä»˜ã‘(_I)æ–°è¦ã«ãƒãƒƒãƒ•ã‚¡ã«è²¼ã‚Šä»˜ã‘(_N)パスを貼り付ã‘(_H)æ–°è¦ã«è²¼ã‚Šä»˜ã‘(_N)é¸æŠžã—ãŸãƒãƒƒãƒ•ã‚¡ã®å†…容を貼り付ã‘é¸æŠžãƒ•ã‚£ãƒ«ã‚¿ã‚’æ–°ã—ã„ç”»åƒã«è²¼ã‚Šä»˜ã‘貼り付ã‘られãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ‘スパスã®å±žæ€§ãƒ‘スå:パスツール(_T)パスをã“れ以上背é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“.パスをã“れ以上å‰é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“.パスã¯æ—¢ã«æœ€èƒŒé¢ã«ã‚ã‚Šã¾ã™ãƒ‘スã¯æ—¢ã«æœ€å‰é¢ã«ã‚ã‚Šã¾ã™ãƒ‘スをé¸æŠžé ˜åŸŸã¸(_C)パスをé¸æŠžé ˜åŸŸã¸ãƒ‘スをé¸æŠžé ˜åŸŸã¸ãƒ‘スパスメニューパターンパターン塗りディレクトリパターン UIパターン塗りパターンソースパターンパターン鉛筆(_N)鉛筆ブラシã®å¹…ã®ãƒ‘ーセンテージパーセント:個人 GIMP ディレクトリé è¿‘法é è¿‘法変æ›æƒ…å ±é è¿‘法...スãƒã‚¤ãƒˆãƒ¢ãƒ¼ãƒ‰ %sç”»åƒã‹ã‚‰è‰²ã‚’é¸ã³å‡ºã™ãƒ”クセルピクセル:ユーザ毎㮠GIMP ディレクトリを作æˆã—ã¦ã„ã¾ã™ã®ã§ãŠå¾…ã¡ä¸‹ã•ã„...ãŠå¾…ã¡ä¸‹ã•ã„...プラグインプラグインã®ç’°å¢ƒãƒ—ラグインディレクトリプラグインã‹ã‚‰ç”»åƒã‚’オープンã§ãã¾ã›ã‚“プラグインã¯ç”»åƒã‚’ä¿å­˜ã§ãã¾ã›ã‚“プラグインãŒã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã—ã¾ã—ãŸ: "%s" -(%s) - -実行ã«å¤±æ•—ã—ãŸãƒ—ラグイン㌠GIMP ã®å†…部状態をä¸å®‰å®šã«ã™ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“.念ã®ãŸã‚, 作業中ã®ç”»åƒã‚’一旦ä¿å­˜ã—㦠GIMP ã‚’å†èµ·å‹•ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™.プラグイン㯠SUCCESS ã‚’è¿”ã—ã¾ã—ãŸãŒç”»åƒãŒè¿”ã£ã¦ãã¾ã›ã‚“プラグインプラグインプラグインや機能拡張ã¯, 機能を追加ã™ã‚‹ãŸã‚ã« GIMP ã«ã‚ˆã£ã¦å®Ÿè¡Œã•ã‚Œã‚‹å¤–部プログラムã§ã™. ã“れらã®ãƒ—ログラムã¯å®Ÿè¡Œæ™‚ã«æ¤œç´¢ã•ã‚Œ, 機能や導入ã•ã‚ŒãŸæ—¥æ™‚ç­‰ã®æƒ…å ±ãŒã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚­ãƒ£ãƒƒã‚·ãƒ¥ã•ã‚Œã¾ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP ã«ã‚ˆã£ã¦ã®ã¿å¤‰æ›´ã•ã‚Œã‚‹ã‚‚ã®ã§, ユーザãŒå¤‰æ›´ã‚’加ãˆã‚‹ã¹ãã§ã¯ã‚ã‚Šã¾ã›ã‚“.多角形縦å‘ãä½ç½®: %0.6fãƒã‚¹ã‚¿ãƒªã‚¼ãƒ¼ã‚·ãƒ§ãƒ³ãƒã‚¹ã‚¿ãƒªã‚¼ãƒ¼ã‚·ãƒ§ãƒ³ (色数を減らã™)インデックスレイヤーã«å¯¾ã—ã¦ã¯ãƒã‚¹ã‚¿ãƒ¼åŒ–ã®æ“作ã¯ã§ãã¾ã›ã‚“.環境設定圧力感度圧力:プレビュープレビューãŒå¤ã™ãŽã¾ã™ãƒ—レビュー:プレビューå°åˆ·ã‚µã‚¤ã‚ºå°åˆ·ã‚µã‚¤ã‚º:レイヤー '%s' ã®ãƒ†ã‚­ã‚¹ãƒˆãƒ‘ラサイトを解æžä¸­ã®å•é¡Œ: -%s - -å¹¾ã¤ã‹ã®ãƒ†ã‚­ã‚¹ãƒˆãƒ‘ラサイトãŒä¸æ­£ã§ã™. テキストレイヤーを編集ã™ã‚‹å ´åˆä»¥å¤–ã¯, å•é¡Œã‚ã‚Šã¾ã›ã‚“.プロシージャデータベースプロシージャデータベース進度擬カラー目的:å“質クエリ新è¦ãƒ—ラグインå•ã„åˆã‚ã›ä¸­ãƒ—ラグインå•ã„åˆã‚ã›ä¸­: '%s' -クイック読ã¿è¾¼ã¿ã‚¯ã‚¤ãƒƒã‚¯ãƒžã‚¹ã‚¯ã‚¯ã‚¤ãƒƒã‚¯ãƒžã‚¹ã‚¯å±žæ€§ã‚’編集クイックマスクメニュークイックä¿å­˜ã‚¯ã‚¤ãƒƒã‚¯ãƒžã‚¹ã‚¯GIMPを終了ã—ã¾ã™RGBRGB (%d, %d, %d)RGB カラーRGB-未æç”»RGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTL"%s" ã®å†è¡¨ç¤º(_E)色ã®ãƒªã‚»ãƒƒãƒˆ(_E)範囲ã®ãƒªã‚»ãƒƒãƒˆ(_E)å³çµ‚端色(_I)...放射状åŠå¾„:ãƒãƒ£ãƒ³ãƒãƒ«ä¸Šæ˜‡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番上ã¾ã§ä¸Šæ˜‡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番上ã¾ã§ä¸Šæ˜‡(_T)レイヤーをå‰é¢ã¸ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’最å‰é¢ã¸ãƒ‘スを上昇パスを最å‰é¢ã¸ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸Šæ˜‡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番上ã¾ã§ä¸Šæ˜‡ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’å‰é¢ã¸ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’最å‰é¢ã¸ã“ã®ç”»åƒã®ãƒ‡ã‚£ã‚¹ãƒ—レイをå‰é¢ã«ã‚‚ã—é–‹ã„ã¦ã„ãŸã‚‰ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å…¨é¢ã«å‰²åˆå‰²åˆ:å†è¡¨ç¤ºé¸æŠžé ˜åŸŸã®ä¸­é–“点を中央ã«ç§»å‹•(_C)セグメントã®ä¸­é–“点を中央ã«ç§»å‹•(_C)セグメント中ã®åˆ¶å¾¡ç‚¹ã‚’å†åˆ†é…(_H)é¸æŠžé ˜åŸŸã®åˆ¶å¾¡ç‚¹ã‚’å†åˆ†é…(_H)ä¿å­˜ã‚ªãƒ—ションå変更(_N)"%s" ã®å†é©ç”¨(_P)復帰(_V)パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: ç·‘ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: 無効ãªåˆ—æ•°ã§ã™. デフォルト値を使用ã—ã¾ã™.パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: é’ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: 赤ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: RGB 値ãŒç¯„囲外ã§ã™.準備済ã¿æœ¬å½“ã«ç”»åƒã®ã‚¢ãƒ³ãƒ‰ã‚¥å±¥æ­´ã‚’消去ã—ã¾ã™ã‹?プレビューã®å†ç”Ÿæˆ(_P)プレビューã®å†ç”ŸæˆçŸ©å½¢é¸æŠžèµ¤èµ¤:リドゥ指定ã—ãŸè‰²æ•°ã¸ã®æ¸›è‰²ã—ãã„値を用ã„ãŸ2色画åƒã¸ã®æ¸›è‰²ãƒ–ラシã®ãƒªãƒ•ãƒ¬ãƒƒã‚·ãƒ¥ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã®ãƒªãƒ•ãƒ¬ãƒƒã‚·ãƒ¥/パレットã®ãƒªãƒ•ãƒ¬ãƒƒã‚·ãƒ¥ãƒ‘ターンã®ãƒªãƒ•ãƒ¬ãƒƒã‚·ãƒ¥ç™»éŒ²ã•ã‚ŒãŸã‚‚ã®ç¾åœ¨ã®ãƒ†ãƒ¼ãƒžã‚’å†èª­ã¿è¾¼ã¿(_U)å…¨ã¦ã®ãƒ—レビューをå†èª­è¾¼ã¿(_A)å…¨ã¦ã®ãƒ—レビューをå†èª­è¾¼ã¿ç¾åœ¨ã®ãƒ„ール, パターン, 色やブラシを次ã®èµ·å‹•æ™‚ã«æ€ã„出ã™.リモート画åƒãƒãƒ£ãƒ³ãƒãƒ«ã‚’削除ä¸è¦ãªã‚¨ãƒ³ãƒˆãƒªã®å‰Šé™¤(_N)フローティングé¸æŠžé ˜åŸŸã®å‰Šé™¤ã‚¬ã‚¤ãƒ‰ã‚’削除レイヤーを削除画åƒã‹ã‚‰ãƒ‘ラサイトを削除アイテムã‹ã‚‰ãƒ‘ラサイト削除パスを削除エントリã®å‰Šé™¤(_E)ä¸è¦ãªã‚¨ãƒ³ãƒˆãƒªã®å‰Šé™¤é¸æŠžã—ãŸã‚¨ãƒ³ãƒˆãƒªã‚’削除洗濯ã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿ã®ä¸€è¦§ã‹ã‚‰å‰Šé™¤ã™ã‚‹.ショートカットã®å‰Šé™¤ã«å¤±æ•—ã—ã¾ã—ãŸãƒãƒ£ãƒ³ãƒãƒ«åã®å¤‰æ›´ãƒ¬ã‚¤ãƒ¤ãƒ¼å変更パスå変更ä¿å­˜æ¸ˆãƒ„ールオプションã®åå‰ã‚’変更文字レイヤーå変更アイテムåã®å¤‰æ›´ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯æç”»ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸¦ã³æ›¿ãˆãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ä¸¦ã³æ›¿ãˆãƒ‘スã®ä¸¦ã³æ›¿ãˆå†é©ç”¨å復:é¸æŠžé ˜åŸŸã‚’ç½®æ›è¤‡è£½ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚’複製グラデーションé¸æŠžé ˜åŸŸã‚’複製セグメントã®è¤‡è£½é¸æŠžé ˜åŸŸã®è¤‡è£½ãƒãƒ£ãƒ³ãƒãƒ«ã®å†é…置レイヤーã®å†é…置ベクタã®å†é…置フォント一覧ã®å†ã‚¹ã‚­ãƒ£ãƒ³ãƒ„ールオプションåˆæœŸåŒ–全フィルタリセット全フィルタリセット...全ツールオプションをリセット(_A)...é¸æŠžãƒ•ã‚£ãƒ«ã‚¿ã‚’デフォルトã®å€¤ã«åˆæœŸåŒ–デフォルトã®å€¤ã«åˆæœŸåŒ–サイズ変更ãƒãƒ£ãƒ³ãƒãƒ«ã®ã‚µã‚¤ã‚ºå¤‰æ›´ç”»åƒã®ã‚µã‚¤ã‚ºå¤‰æ›´ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚µã‚¤ã‚ºã®å¤‰æ›´ãƒ‘スã®ã‚µã‚¤ã‚ºå¤‰æ›´æ–‡å­—レイヤーサイズã®å¤‰æ›´ç”»åƒã®ã‚µã‚¤ã‚ºå¤‰æ›´ç”»åƒã®ã‚µã‚¤ã‚ºå¤‰æ›´ã‚ºãƒ¼ãƒ æ™‚ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’リサイズã™ã‚‹(_Z)ズーム時ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’リサイズã™ã‚‹(_S)サイズを変形ã—ã¦ã„ã¾ã™...解åƒåº¦å¤‰æ›´è§£åƒåº¦:リソースã®ä½¿ã„方リソース設定オプションをファイルã‹ã‚‰èª­ã¿è¾¼ã‚€...GIMP 起動時ã«ä¿å­˜ã•ã‚Œã¦ã„るキーボードショートカットを読ã¿è¾¼ã¿ã¾ã™.å転復帰'%s'ã‹ã‚‰'%s'ã«å¾©å…ƒç”»åƒã®å¾©å¸°å¾©å¸°ã«å¤±æ•—ã—ã¾ã—ãŸ. ã“ã®ç”»åƒã«å¯¾ã™ã‚‹ãƒ•ã‚¡ã‚¤ãƒ«åãŒã‚ã‚Šã¾ã›ã‚“.'%s' ã¸ã®å¾©å¸°ã«å¤±æ•—ã—ã¾ã—ãŸ:. - -%så³çµ‚端色å³æƒãˆå›žè»¢å時計回りã«90度回転(_W)時計回りã«90度回転(_C)ãƒãƒ£ãƒ³ãƒãƒ«ã®å›žè»¢ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’回転パスã®å›žè»¢æ–‡å­—レイヤーを回転時計回りã«180度回転(_1)ç”»åƒã®å›žè»¢ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚„é¸æŠžé ˜åŸŸã‚’回転ã™ã‚‹å›žè»¢ã—ã¦ã„ã¾ã™...回転情報丸ã‚æ画色ã¨èƒŒæ™¯è‰²ã®äº¤æ›(_W)å³å´ã®è‰²ã®ä¿å­˜å…ˆ(_V)状態:彩度ä¿å­˜'%s' ã‚’POV-Ray å½¢å¼ã§ä¿å­˜ã‚«ãƒ¼ãƒ–ä¿å­˜ã‚¨ãƒ©ãƒ¼è¨˜éŒ²ã‚’ファイルã«ä¿å­˜ç”»åƒã®ä¿å­˜ä»Šã™ã入力デãƒã‚¤ã‚¹ã®è¨­å®šã‚’ä¿å­˜ã™ã‚‹(_N)今ã™ãキーボードショートカットをä¿å­˜ã™ã‚‹(_N)ä¿å­˜ãƒ¬ãƒ™ãƒ«ãƒ„ールオプションã®ä¿å­˜ç›´ã¡ã«ç¾åœ¨ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ä½ç½®ã‚’ä¿å­˜å…¨ã¦ã®ã‚¨ãƒ©ãƒ¼ã‚’ファイルã«ä¿å­˜(_A)...é¸æŠžé ˜åŸŸã‚’ファイルã«ä¿å­˜(_S)...別åã§ä¿å­˜(_A)...コピーをä¿å­˜(_Y)...ç”»åƒã®ã‚³ãƒ”ーをä¿å­˜å…¨ã¦ã®ã‚¨ãƒ©ãƒ¼ã‚’ファイルã«ä¿å­˜POV-Ray å½¢å¼ã§ä¿å­˜(_P)...テンプレートã¨ã—ã¦ä¿å­˜(_T)...GIMP 終了時ã«å¤‰æ›´ã•ã‚ŒãŸã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’ä¿å­˜ã—ã¾ã™.カーブ設定をファイルã«ä¿å­˜ã™ã‚‹ãƒ‡ãƒã‚¤ã‚¹ã®çŠ¶æ…‹ã‚’ä¿å­˜POV-Ray å½¢å¼ã§ä¿å­˜ãƒ•ã‚¡ã‚¤ãƒ«ã«ãƒ¬ãƒ™ãƒ«è¨­å®šã‚’ä¿å­˜ã™ã‚‹ã‚ªãƒ—ションをファイルã«ä¿å­˜...é¸æŠžé ˜åŸŸã‚’ä¿å­˜é¸æŠžé ˜åŸŸã‚’ãƒãƒ£ãƒ³ãƒãƒ«ã«ä¿å­˜ç”»åƒ '%s' ã‚’é–‰ã˜ã‚‹å‰ã«å¤‰æ›´ã‚’ä¿å­˜ã—ã¾ã™ã‹?GIMP 終了時ã«ãƒ¡ã‚¤ãƒ³ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã®ä½ç½®ã¨å¤§ãã•ã‚’ä¿å­˜ã—ã¾ã™.ãƒãƒ£ãƒ³ãƒãƒ«ã«ä¿å­˜(_C)ä¿å­˜ã‚ªãƒ—ション'%s' ã‚’ä¿å­˜ä¸­ -'%s' ã®ä¿å­˜ã«å¤±æ•—: - -%sç”»åƒã®ä¿å­˜é‹¸æ­¯æ³¢æ‹¡å¤§ãƒ»ç¸®å°ãƒãƒ£ãƒ³ãƒãƒ«ã®æ‹¡å¤§ãƒ»ç¸®å°ç”»åƒæ‹¡å¤§ç¸®å°ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®æ‹¡å¤§ãƒ»ç¸®å°ãƒ‘スã®æ‹¡å¤§ãƒ»ç¸®å°æ–‡å­—レイヤーã®æ‹¡å¤§ç¸®å°ç”»åƒæ‹¡å¤§ç¸®å°ç”»åƒæ‹¡å¤§ç¸®å°æ‹¡å¤§çŽ‡ X:拡大率 X:拡大率:レイヤーやé¸æŠžé ˜åŸŸã‚’拡大・縮å°ã•ã›ã‚‹æ‹¡å¤§ç¸®å°æ‹¡å¤§ç¸®å°æƒ…報拡大縮å°ã—ã¦ã„ã¾ã™...ã¯ã•ã¿ã‚¹ã‚¯ãƒªãƒ¼ãƒ³Script-Fu ディレクトリスクリプト下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ä¸‹ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Alt)下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control + Alt)下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control)下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Alt)下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control + Alt)下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)下ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Alt)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control + Alt)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Alt)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control + Alt)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)å·¦ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift)å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Alt)<å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control + Alt)<å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control)<å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Alt)<å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control + Alt)å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)<å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift)<上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ä¸Šã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Alt)上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control + Alt)上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control)上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control + Alt)上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift)é¸æŠžå…¨ã¦ã‚’é¸æŠžãƒ–ラシ用ディレクトリをé¸æŠžè‰²ã«ã‚ˆã‚‹é¸æŠžè‰²ã®é¸æŠžã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ãƒ¼ã®ã‚¢ã‚¯ã‚·ãƒ§ãƒ³ã‚¤ãƒ™ãƒ³ãƒˆã‚’é¸æŠžç’°å¢ƒã‚’ä¿å­˜ã™ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—ã®é¸æŠž(%s) (_T)フォント用ディレクトリをé¸æŠžã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ç”¨ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžé¸æŠžãªã—パレット用ディレクトリをé¸æŠžãƒ‘ターン塗り用ディレクトリをé¸æŠžãƒ—ラグイン用ディレクトリをé¸æŠžèª¿æ•´ã™ã‚‹åŸºæº–色をé¸æŠžèª¿æ•´ã™ã‚‹ç¯„囲ã®é¸æŠžScript-Fu 用ディレクトリをé¸æŠžã‚½ãƒ¼ã‚¹ã®é¸æŠžã‚¹ãƒ¯ãƒƒãƒ—用ディレクトリをé¸æŠžãƒ†ãƒ¼ãƒžç”¨ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžãƒ†ãƒ¼ãƒžã®é¸æŠžãƒ†ãƒ¼ãƒžç”¨ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸æŠžæ‹¡å¤§çŽ‡ã‚’é¸æŠžæœ€èƒŒé¢ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’é¸æŠž(_B)カスタムカラーをé¸æŠž(_C)...次ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’é¸æŠž(_N)å‰ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’é¸æŠž(_P)最å‰é¢ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’é¸æŠž(_T)å…¨ã¦ã‚’é¸æŠžè‰²ã«ã‚ˆã‚‹é¸æŠžéš£æŽ¥(色)領域ã®é¸æŠžã‚­ãƒ£ãƒ³ãƒã‚¹å‘¨è¾ºã«ç”¨ã„る色をé¸æŠžã—ã¾ã™å††å½¢é ˜åŸŸã‚’é¸æŠžã™ã‚‹æ‰‹æ›¸ãã§é ˜åŸŸé¸æŠžé¸æŠžãªã—パレット用ファイルã®é¸æŠžçŸ©å½¢é ˜åŸŸã‚’é¸æŠžã™ã‚‹è‰²ã«ã‚ˆã‚‹é ˜åŸŸé¸æŠžç”»åƒã‹ã‚‰ã®å½¢çŠ¶é¸æŠžã‚¹ãƒ¯ãƒƒãƒ—用ディレクトリをé¸æŠžé¸æŠžã—ãŸã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚’ -何回複製ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„.é¸æŠžé ˜åŸŸã‚’ -何回複製ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„.é¸æŠžã—ãŸã‚»ã‚°ãƒ¡ãƒ³ãƒˆç¾¤ã‚’ã„ãã¤ãšã¤ã« -分割ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„é¸æŠžã—ãŸã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚’ã„ãã¤ã« -分割ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„ウェブブラウザã®é¸æŠžé¸æŠžé¸æŠžã‚¨ãƒ‡ã‚£ã‚¿ é¸æŠžã‚¨ãƒ‡ã‚£ã‚¿ãƒ¡ãƒ‹ãƒ¥ãƒ¼é¸æŠžãƒžã‚¹ã‚¯é¸æŠžãƒ„ールプロシージャé¸æŠžãƒžã‚¹ã‚¯é¸æŠž: é¸æŠž: 追加é¸æŠž: 共通部分é¸æŠž: ç½®æ›é¸æŠž: 引ã算感度キャンãƒã‚¹ã¾ã‚ã‚Šã®è‰²ã®è¨­å®šãƒãƒ£ãƒ³ãƒãƒ«ã‚«ãƒ©ãƒ¼ã®è¨­å®šãƒãƒ£ãƒ³ãƒãƒ«ã®é€æ˜Žåº¦ã‚’設定カラーマップã®è¨­å®šã‚­ãƒ£ãƒ³ãƒã‚¹ã¾ã‚ã‚Šã®ã‚«ã‚¹ã‚¿ãƒ ã‚«ãƒ©ãƒ¼ã®è¨­å®šã‚­ãƒ£ãƒ³ãƒã‚¹ã‚µã‚¤ã‚ºã®è¨­å®šç”»åƒå°åˆ·è§£åƒåº¦ã®è¨­å®šã‚¢ã‚¤ãƒ†ãƒ ã‚’排他リンクã«ã™ã‚‹ã‚¢ã‚¤ãƒ†ãƒ ã‚’排他表示ã«ã™ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼å¢ƒç•Œã®å¤§ãã•è¨­å®šãƒ†ã‚­ã‚¹ãƒˆã‹ã‚‰åå‰ã‚’設定(_T)é€æ˜Žåº¦ã®è¨­å®šã‚¢ã‚¤ãƒ†ãƒ ã‚’リンクã•ã›ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ¢ãƒ¼ãƒ‰ã®è¨­å®šãƒ¬ã‚¤ãƒ¤ãƒ¼é€æ˜Žåº¦ã®è¨­å®šã‚¢ãƒ³ãƒ‰ã‚¥ã‚¹ã‚¿ãƒƒã‚¯ã«é…ç½®ã•ã‚Œã‚‹æ“作ã®ä¸€ç”»åƒã‚ãŸã‚Šã®ãƒ¡ãƒ¢ãƒªä½¿ç”¨é‡ã®ä¸Šé™å€¤ã‚’設定ã—ã¾ã™. ã“ã®è¨­å®šã«ã‚ˆã‚‰ãš, å°‘ãã¨ã‚‚アンドゥレベルã§è¨­å®šã•ã‚ŒãŸå›žæ•°åˆ†ã¯ã‚¢ãƒ³ãƒ‰ã‚¥å¯èƒ½ã§ã™.ヘルプシステムã§ä½¿ã†ãƒ–ラウザを設定ã—ã¾ã™ã‚­ãƒ£ãƒ³ãƒã‚¹ã¾ã‚ã‚Šã®è‰²ãŒã‚«ã‚¹ã‚¿ãƒ ã‚«ãƒ©ãƒ¼ã«è¨­å®šã•ã‚ŒãŸéš›ã®è‰²ã‚’設定ã—ã¾ã™.利用ã™ã‚‹å¤–部ブラウザを指定ã—ã¾ã™. 絶対パスã‹åˆ©ç”¨è€…ã® PATH 中ã«ã‚る実行ファイルåã§ã™. コマンド㌠'%s' ã‚’å«ã‚€å ´åˆã«ã¯, URL ã§ç½®æ›ã•ã‚Œ, å«ã¾ãªã„å ´åˆã«ã¯ã‚³ãƒžãƒ³ãƒ‰ã®å¾Œã«ã‚¹ãƒšãƒ¼ã‚¹ã§åŒºåˆ‡ã£ã¦ URL ãŒæŒ‡å®šã•ã‚Œã¾ã™.拡大縮å°ã‚„ä»–ã®å¤‰æ›ã«ãŠã‘ã‚‹, 補間ã®ãƒ¬ãƒ™ãƒ«ã‚’設定ã—ã¾ã™.ç”»åƒå†…ã®é€æ˜Žéƒ¨åˆ†ã®è¡¨ç¤ºæ–¹æ³•ã«ã¤ã„ã¦è¨­å®šã—ã¾ã™.アンドゥå¯èƒ½ãªæ“作ã®æœ€å°å›žæ•°ã‚’指定ã—ã¾ã™. アンドゥサイズã®é™ç•Œã«é”ã™ã‚‹ã¾ã§, アンドゥを増やã™ã“ã¨ãŒã§ãã¾ã™.GIMP ãŒä½¿ã†ã‚«ãƒ¼ã‚½ãƒ«ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã—ã¾ã™.é€æ˜Žéƒ¨åˆ†ã®è¡¨ç¤ºã«ä½¿ã†ãƒã‚§ãƒƒã‚«ãƒ¼ãƒœãƒ¼ãƒ‰ã®å¤§ãã•ã‚’設定ã—ã¾ã™.ç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã®å³ä¸‹ã«è¡¨ç¤ºã•ã‚Œã‚‹ãƒŠãƒ“ゲーションプレビューã®å¤§ãã•ã‚’設定ã—ã¾ã™.アンドゥ履歴ã®ãƒ—レビューã®å¤§ãã•ã‚’設定ã—ã¾ã™.スワップファイルã®å ´æ‰€ã‚’設定ã—ã¾ã™. GIMP ã¯ã‚¿ã‚¤ãƒ«ãƒ™ãƒ¼ã‚¹ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿æ–¹å¼ã‚’利用ã—ã¾ã™. スワップファイルã¯ã‚¹ãƒ¯ãƒƒãƒ—タイルをディスクã«æ›¸ã出ã—ãŸã‚Šæˆ»ã—ãŸã‚Šã™ã‚‹éš›ã«åˆ©ç”¨ã•ã‚Œã¾ã™. GIMP ã§å¤§ããªç”»åƒã‚’å–り扱ã†å ´åˆã«ã¯, スワップファイルã¯å®¹æ˜“ã«å·¨å¤§ã«ãªã£ã¦ã—ã¾ã„ã¾ã™. NFS 経由ã§ãƒžã‚¦ãƒ³ãƒˆã•ã‚ŒãŸãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªä¸Šã«ã‚¹ãƒ¯ãƒƒãƒ—ファイルを作æˆã™ã‚‹ã¨, ã¨ã¦ã¤ã‚‚ãªã動作ãŒé…ããªã£ã¦ã—ã¾ã„ã¾ã™. ãã®ãŸã‚, "/tmp" ã«ã‚¹ãƒ¯ãƒƒãƒ—ファイルを作æˆã™ã‚‹ã“ã¨ãŒæœ›ã¾ã—ã„ã§ã™.一時ä¿å­˜ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’指定ã—ã¾ã™. GIMP 実行中ã«ãƒ•ã‚¡ã‚¤ãƒ«ãŒä½œæˆã•ã‚Œã¾ã™. ã»ã¨ã‚“ã©ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP 終了時ã«å‰Šé™¤ã•ã‚Œã¾ã™, ã—ã‹ã—ãªãŒã‚‰, ã„ãã¤ã‹ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ®‹ã‚Šã¾ã™ã®ã§, ä»–ã®ãƒ¦ãƒ¼ã‚¶ã¨å…±æœ‰ã•ã‚Œãªã„ディレクトリを指定ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™.ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼ã«è¡¨ç¤ºã™ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã‚’設定ã—ã¾ã™.ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚¿ã‚¤ãƒˆãƒ«ã«è¡¨ç¤ºã™ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã‚’設定ã—ã¾ã™.GIMP ãŒãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ—レビューを作æˆã™ã‚‹ã‹ã©ã†ã‹ã‚’指定ã—ã¾ã™. レイヤーã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã«ãŠã‘るプレビューã¯ä¾¿åˆ©ã§ã™ãŒ, 大ããªç”»åƒã‚’å–り扱ã†å ´åˆã«ã¯å‹•ä½œãŒé‡ããªã‚Šã¾ã™.å½±ã®ç¨®é¡žå½±å½¢çŠ¶å½¢çŠ¶:明確化ãƒãƒ£ãƒ³ãƒãƒ«ã‚’シャープã«é¸æŠžé ˜åŸŸã®ç¸®å°å‰ªæ–­å¤‰å½¢ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚„é¸æŠžé ˜åŸŸã‚’剪断変形ã™ã‚‹å¤‰å½¢æƒ…報剪断変形ã—ã¦ã„ã¾ã™...å˜ç ´ç·šã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®è¡¨ç¤ºã‚‚ã®ã•ã—を表示ã™ã‚‹(_U)ステータスãƒãƒ¼ã‚’表示ã™ã‚‹(_T)スクロールãƒãƒ¼ã‚’表示ã™ã‚‹(_B)ガイドを表示ã™ã‚‹(_G)レイヤー境界を表示ã™ã‚‹(_L)メニューãƒãƒ¼ã‚’表示ã™ã‚‹(_M)ブラシã®è¼ªéƒ­ã‚’表示ã™ã‚‹(_B)背景色ã¨èƒŒæ™¯è‰²ã‚’表示(_F)ガイドを表示ã™ã‚‹(_G)レイヤー境界を表示ã™ã‚‹(_L)メニューãƒãƒ¼ã‚’表示ã™ã‚‹(_M)ã‚‚ã®ã•ã—を表示ã™ã‚‹(_R)アクティブãªç”»åƒã‚’表示(_I)グリッドを表示ã™ã‚‹(_D)ヘルプボタンを表示(_B)ç”»åƒã‚µã‚¤ã‚ºã‚’表示メモリ利用é‡ã‚’表示é¸æŠžé ˜åŸŸã‚’表示ã™ã‚‹(_E)ステータスãƒãƒ¼ã‚’表示ã™ã‚‹(_T)スクロールãƒãƒ¼ã‚’表示ã™ã‚‹(_B)次回 GIMP 起動時も技を見ã›ã‚‹èµ·å‹•æ™‚ã«ä»Šæ—¥ã®æŠ€ã‚’表示(_S)é“å…·ã®ç°¡æ˜“ãªèª¬æ˜Žã‚’表示ã™ã‚‹(_T)拡大パーセンテージを表示拡大率を表示ãƒãƒ£ãƒ³ãƒãƒ«ã®ç¸®å°é¸æŠžé ˜åŸŸã®ç¸®å°ç”»åƒã®ç¸ã‹ã‚‰ç¸®å°é¸æŠžé ˜åŸŸã®ç¸®å°é‡å¤§ãã•ãƒ¡ãƒ¢ãƒªä¸­ã®ã‚µã‚¤ã‚º:サムãƒã‚¤ãƒ«ã®ã‚µã‚¤ã‚º(_T):大ãã•:'%s' をスキップ: ä¸æ­£ãª GIMP プロトコルãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™.å°ã•ã„å°ã•ãªãƒ—レビュー滑らã‹å¢ƒç•Œã®ã‚¹ãƒ ãƒ¼ã‚¸ãƒ³ã‚°ã«ã˜ã¿ç”»åƒã«ã˜ã¿å¼±ã„光実線画åƒæºé–“éš”:é–“éš”:広間点特殊ファイル図形ã®è§’ã®æ画方法を指定ã—ã¾ã™.é¸æŠžé ˜åŸŸå‘¨å›²ã®èŸ»ã®è¡Œé€²é€Ÿåº¦ã§ã™. ã“ã®å€¤ã¯ãƒŸãƒªç§’å˜ä½ã§, 値をå°ãã™ã‚‹ã¨é€Ÿã行進ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™.スピード:分割グラデーションセグメントをå‡ç­‰ã«åˆ†å‰²ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚»ã‚°ãƒ¡ãƒ³ãƒˆç¾¤ã‚’å‡ç­‰ã«åˆ†å‰²ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚’å‡ç­‰ã«åˆ†å‰²ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚’å‡ç­‰ã«åˆ†å‰²(_U)...セグメントを中間点ã§åˆ†å‰²(_M)セグメント群をå‡ç­‰ã«åˆ†å‰²ã‚»ã‚°ãƒ¡ãƒ³ãƒˆç¾¤ã‚’å‡ç­‰ã«åˆ†å‰²(_U)...セグメント群を中間点ã§åˆ†å‰²(_M)四角形状態ã¨æ–‡å­—(_A)é‡ãªã‚Š(_K)標準拡張機能起動中拡張機能起動中: '%s' -状態:スタティックカラースタティックグレー状態ã¨è©³ç´°çŠ¶æ…‹ã¨æ–‡å­—標準åå·®:点æストック IDパスをストロークæç”»(_K)パスをストロークæç”»é¸æŠžé ˜åŸŸã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ãƒ‘スをストロークæç”»...減算é¸æŠžé ˜åŸŸã‹ã‚‰å¼•ãスーパーサンプリングスワップ用ディレクトリ:ツール(_O)文字(_X)文字ツール(_X)テンãƒãƒ©ãƒªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª:テンプレートテンプレート一時プロシージャ文字文字色テキストエディタ文字レイヤー文字プロシージャThe GIMPアクティブã«ãªã£ã¦ã„るブラシã§ã™. -クリックã™ã‚‹ã¨ãƒ–ラシダイアログを開ãã¾ã™.アクティブã«ãªã£ã¦ã„るグラデーションã§ã™. -クリックã™ã‚‹ã¨ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãã¾ã™.アクティブã«ãªã£ã¦ã„るパターンã§ã™. -クリックã™ã‚‹ã¨ãƒ‘ターンダイアログを開ãã¾ã™.グリッドã®èƒŒæ™¯è‰²; 二é‡ç ´ç·šã‚¹ã‚¿ã‚¤ãƒ«ã§ã®ã¿ç”¨ã„られã¾ã™.ファイルå '%s' ã¯æœ‰åŠ¹ãª URI ã«å¤‰æ›ã§ãã¾ã›ã‚“ã§ã—ãŸ: - -%sグリッドã®æ画色ã§ã™.gimprc 㯠GIMP ã®åŸºæœ¬å‹•ä½œã«é–¢ã™ã‚‹å€‹äººè¨­å®šã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã—ã¾ã™. ブラシ, パレット, グラデーション, パターン, プラグインやモジュール等を検索ã™ã‚‹ãƒ‘スã¯ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«è¨­å®šã•ã‚Œã¾ã™.é¸æŠžã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯æ–‡å­—レイヤーã§ã™ãŒ, ä»–ã®ãƒ„ールã«ã‚ˆã£ã¦å¤‰æ›´ã•ã‚Œã¾ã—ãŸ. ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’文字ツールã§ç·¨é›†ã™ã‚‹ã¨, ãれらã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™. - -ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’編集ã™ã‚‹ã“ã¨ã‚‚, 文字アトリビュートを用ã„ã¦æ–°ã—ã„文字レイヤーを生æˆã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™.sessionrc 㯠GIMP 終了時ã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒã©ã“ã«ã‚ã£ãŸã‹ã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å­˜ã•ã‚ŒãŸä½ç½®ã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãよã†ã« GIMP を設定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™.タイルキャッシュ㯠GIMP ãŒã‚¿ã‚¤ãƒ«ã‚’メモリã¨ãƒ‡ã‚£ã‚¹ã‚¯ã®é–“ã§ã‚¹ãƒ©ãƒƒã‚·ãƒ³ã‚°ã•ã›ãªã„よã†ã«ã™ã‚‹ãŸã‚ã«ç”¨ã„られã¾ã™. ã“ã®å€¤ã‚’大ããã™ã‚‹ã¨ GIMP ã®ã‚¹ãƒ¯ãƒƒãƒ—利用é‡ã¯æ¸›å°‘ã—ã¾ã™ãŒ, メモリ利用é‡ã¯å¢—加ã—ã¾ã™. 逆ã«å°ãã™ã‚‹ã¨, スワップ利用é‡ã¯å¢—加ã—, メモリ利用é‡ã¯æ¸›å°‘ã—ã¾ã™.点を点ã«å¯¾å¿œã•ã›ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«ãŠã„ã¦è¡¨ç¤ºã«åˆ©ç”¨ã™ã‚‹å˜ä½ã§ã™.unitrc ã¯ãƒ¦ãƒ¼ã‚¶å˜ä½ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚‚ã®ã§ã™. æ–°ãŸã«å˜ä½ã‚’追加ã—ã¦, ã‚ãŸã‹ã‚‚インãƒ, ãƒã‚¤ãƒ³ãƒˆ, ミリメートルやパイカã¨ã„ã£ãŸå†…蔵å˜ä½ã¨åŒç­‰ã«ç”¨ã„ã‚‹ã“ã¨ãŒã§ãã¾ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP 終了時ã«ä¸Šæ›¸ãã•ã‚Œã¾ã™.åž‚ç›´ç”»åƒè§£åƒåº¦ãƒ‰ãƒƒã‚¯ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã«æŒ‡å®šã•ã‚Œã‚‹ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã‚¿ã‚¤ãƒ—ヒントã§ã™. ウインドウマãƒãƒ¼ã‚¸ãƒ£ã«ã‚ˆã‚‹, ドックウインドウã®è£…飾ã¨å–扱ã„ã«å½±éŸ¿ã‚’与ãˆã¾ã™.ツールボックスã«è¨­å®šã•ã‚Œã‚‹ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚¿ã‚¤ãƒ—ヒントã§ã™. ウィンドウマãƒãƒ¼ã‚¸ãƒ£ã«ã‚ˆã‚‹ãƒ„ールボックスウィンドウã®è£…飾ã¨å–扱ã„ã«å½±éŸ¿ã‚’与ãˆã¾ã™.テーマテーマディレクトリテーマ%d 個ã®ç”»åƒãŒå¤‰æ›´ã—ã¦æœªä¿å­˜:下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–レイヤーãŒè¶³ã‚Šã¾ã›ã‚“.メモリ使用é‡ã¨é€Ÿåº¦ã«ã¯å¸¸æ™‚トレードオフãŒæˆç«‹ã—ã¾ã™. 大抵ã®å ´åˆ, GIMP ã¯ãƒ¡ãƒ¢ãƒªã‚ˆã‚Šã‚‚スピードを優先ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ã¾ã™. ã—ã‹ã—ãªãŒã‚‰, メモリ使用é‡ã®æ–¹ãŒé‡è¦ã§ã‚ã‚‹å ´åˆã«ã¯, ã“れを有効ã«ã—ã¦ã¿ã¦ãã ã•ã„.コピー元ã¨ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“.切りå–ã‚Šå…ƒã¨ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“.ストロークã™ã‚‹ãŸã‚ã®ã‚¢ã‚¯ãƒ†ã‚£ãƒ–レイヤーやアクティブパスãŒã‚ã‚Šã¾ã›ã‚“ストロークæç”»ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“.'%s' ã¨ã„ã†ãƒ•ã‚¡ã‚¤ãƒ«ãŒå­˜åœ¨ã—ã¦ã„ã‚‹ã¹ãã§ã™. GIMP ãŒæ­£ã—ãインストールã•ã‚Œã¦ã„ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„.ファイル '%s' ã®è§£æžä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ. デフォルトã®å€¤ãŒä½¿ç”¨ã•ã‚Œã¾ã™. ã‚ãªãŸã®è¨­å®šã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—㌠'%s' ã«ä½œæˆã•ã‚Œã¾ã—ãŸ.ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ç”»åƒãƒ†ãƒ³ãƒ—レートã«ç”¨ã„られる標準メディアサイズをä¿æŒã—ã¾ã™.ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ç”»åƒã®ãƒ†ãƒ³ãƒ—レート(雛形)ãŒæ¤œç´¢ã•ã‚Œã¾ã™.ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ãƒ¦ãƒ¼ã‚¶ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸãƒ†ãƒ¼ãƒžãŒæ¤œç´¢ã•ã‚Œã¾ã™.GIMP 内ã®ã¿ã§ä½¿ã„ãŸã„フォントをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. フォントを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™. GIMP ã ã‘ã§ä½¿ã„ãŸã„時ã ã‘ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’使ã„, ãれ以外ã¯ã‚·ã‚¹ãƒ†ãƒ å…±é€šã®ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ãƒ•ã‚©ãƒ³ãƒˆã‚’インストールã—ã¦ãã ã•ã„.カーブツールã®ãƒ‘ラメタファイルをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™.レベルツールã®ãƒ‘ラメタファイルをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™.ツールオプションをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™.ユーザãŒä½œæˆã—ãŸã‚Šã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã‚¹ã‚¯ãƒªãƒ—トをä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. スクリプトを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ã‚¹ã‚¯ãƒªãƒ—トディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãª, ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„ DLL モジュールをä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. モジュールを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã® GIMP モジュールディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãª, ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„プラグインをä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. GIMP ã¯ãƒ—ラグインを検索ã™ã‚‹å ´åˆ, システム全体㮠GIMP プラグインディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãª, ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„プラグインをä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. プラグインを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã® GIMP プラグインディレクトリã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザ定義ã®ãƒ–ラシをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ–ラシディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザ定義ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’ä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. グラデーションを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザ定義ã®ãƒ‘レットをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. パレットを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ‘レットディレクトリã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.ユーザ定義ã®ãƒ‘ターンをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. パターンを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ‘ターンディレクトリã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™.メモリ使用é‡ã‚’減らã™ãŸã‚, GIMP ãŒã‚¢ãƒ³ãƒ‰ã‚¥ãƒãƒƒãƒ•ã‚¡ã‚’一時的ã«ç½®ã„ã¦ãŠããŸã‚ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã§ã™. GIMP を強制的ã«çµ‚了ã•ã›ãŸå ´åˆã«ã¯, gimp<番å·>.<番å·> ã¨ã„ã†åå‰ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒæ®‹ã£ã¦ã—ã¾ã†ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“. ã“れらã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯å‰Šé™¤ã—ã¦ã‚‚ã‹ã¾ã„ã¾ã›ã‚“.ã“ã®ã‚µãƒ–ディレクトリã«ã¯é‡è¦ãªãƒ•ã‚¡ã‚¤ãƒ«ãŒå¤šãç½®ã‹ã‚Œã¾ã™. ツリー中ã®ã‚µãƒ–ディレクトリやファイルをクリックã™ã‚‹ã¨, 個々ã®è©³ã—ã„説明を表示ã—ã¾ã™.ガイドやグリッドã¸ã®ã‚¹ãƒŠãƒƒãƒ—ãŒæœ‰åŠ¹ã«ãªã‚‹è·é›¢ã‚’ピクセル数ã§è¨­å®šã—ã¾ã™.本プログラムã¯æœ‰ç”¨ã¨ã¯æ€ã„ã¾ã™ãŒ, 頒布ã«ã‚ãŸã£ã¦ã¯, 市場性ãŠã‚ˆã³ç‰¹å®šç›®çš„é©åˆæ€§ã«ã¤ã„ã¦ã®æš—é»™ã®ä¿è¨¼ã‚’å«ã‚ã¦, ã„ã‹ãªã‚‹ä¿è¨¼ã‚‚è¡Œãªã„ã¾ã›ã‚“. 詳細ã«ã¤ã„ã¦ã¯ GNU 一般公有使用許諾書をãŠèª­ã¿ãã ã•ã„.本プログラムã¯ãƒ•ãƒªãƒ¼ãƒ»ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã§ã™. ã‚ãªãŸã¯ã€Free Software Foundation ãŒå…¬è¡¨ã—ãŸGNU一般公有使用許諾ã®ã€Œãƒãƒ¼ã‚¸ãƒ§ãƒ³ï¼’ã€ã‚ã‚‹ã„ã¯ã¯ãれ以é™ã®å„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ä¸­ã‹ã‚‰ã„ãšã‚Œã‹ã‚’é¸æŠžã—, ãã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå®šã‚ã‚‹æ¡é …ã«å¾“ã£ã¦æœ¬ãƒ—ログラムをå†é ’布ã¾ãŸã¯å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™.ã“ã®æ–‡å­—入力フィールド㯠%d 文字ã«åˆ¶é™ã•ã‚Œã¦ã„ã¾ã™.ã“ã®ãƒ„ールã«ã¯ã‚ªãƒ—ションã¯ã‚ã‚Šã¾ã›ã‚“.ã—ãã„値インデックス・レイヤーã«ã¯ã—ãã„値æ“作ã¯ã§ãã¾ã›ã‚“.ã—ãã„値:サムãƒã‚¤ãƒ« %d / %dタイルキャッシュサイズ(_S):タイルキャッシュサイズ:傾斜:å¾®å°ã‚¿ã‚¤ãƒˆãƒ« & ステータスãƒãƒ¼ã‚¯ã‚¤ãƒƒã‚¯ãƒžã‚¹ã‚¯ã®åˆ‡ã‚Šæ›¿ãˆã‚¯ã‚¤ãƒƒã‚¯ãƒžã‚¹ã‚¯ã®åˆ‡ã‚Šæ›¿ãˆãƒ„ールオプションツールオプションメニュー機能ã®åˆ‡ã‚Šæ›¿ãˆ %sツールオプション(_O)ツールアイコンé“å…·ç®±é“å…·ç®±é“具箱メニューツールé“具メニューé€æ˜Žéƒ¨åˆ†(_A)アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’マスクã«å¤‰æ›å¤‰æ›ãƒãƒ£ãƒ³ãƒãƒ«ã®å¤‰æ›å¤‰æ›æ–¹å‘変æ›ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ‘スã®å¤‰æ›æ–‡å­—レイヤー変æ›å¤‰æ›ãƒ„ールプロシージャ変æ›å¤‰æ›ãƒ—ロシージャ変æ›ã—ã¦ã„ã¾ã™...翻訳ã¯é€æ˜Žéƒ¨åˆ†é€æ˜Žéƒ¨åˆ†è¡¨ç¤ºå½¢å¼(_T):三角波トゥルーカラー種類種類 %sæ—¢ã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ãŒã‚ã‚‹ã®ã§ã“れ以上レイヤーマスクを付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“.é¸æŠžé ˜åŸŸãŒç©ºãªã®ã§åˆ‡ã‚ŠæŠœãやコピーã¯ã§ãã¾ã›ã‚“.スワップファイルを開ã‘ã¾ã›ã‚“. データã®æ¶ˆå¤±ã‚’防ã為ã«ã¯, ç¾åœ¨ç’°å¢ƒè¨­å®šã«ãŠã„㦠"%s" ã«è¨­å®šã•ã‚Œã¦ã„ã‚‹, スワップディレクトリã®å ´æ‰€ã¨ãƒ‘ーミッションをãƒã‚§ãƒƒã‚¯ã—ã¦ãã ã•ã„.åå‰ç„¡ã—アンドゥアンドゥ履歴アンドゥ履歴(_h)å˜ä½ä¸æ˜Žä¸æ˜Žãªãƒ•ã‚¡ã‚¤ãƒ«ã‚¿ã‚¤ãƒ—アンロードåå‰ãªã—å称未設定動的ãªã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’使用ã™ã‚‹(_D)ウェブブラウザã§ä»£ç”¨ã™ã‚‹(_W)é¸æŠžé ˜åŸŸã‚’縮å°ã™ã‚‹éš›ã«å…¨å¯è¦–レイヤーを利用グラデーションã®è‰²ã‚’使ã†æƒ…報ウインドウを使用ユーザ インストール ログユーザインターフェイスユーティリティウィンドウ明度明度:ベクタæ“作ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %s ã®æä¾›ã¯ãƒãƒ¼ã‚¸ãƒ§ãƒ³:垂直最åˆã®ã‚°ãƒªãƒƒãƒ‰ç·šã®é‰›ç›´ã‚ªãƒ•ã‚»ãƒƒãƒˆ; è² ã®å€¤.グリッド線ã®é‰›ç›´é–“éš”.やや大ãã„ã¨ã¦ã‚‚å°ã•ã„表示並ã¹ã¦è¡¨ç¤º(_G)一覧ã§è¡¨ç¤º(_L)グリッドã§è¡¨ç¤ºãƒªã‚¹ãƒˆã§è¡¨ç¤ºãƒ“ジュアルクラス:ビジュアル深度:ウェブブラウザウェブブラウザGIMP %d.%d ユーザインストール -ã¸ã‚ˆã†ã“ã有効ã«ã™ã‚‹ã¨, ç¾åœ¨ä½œæ¥­ä¸­ã®ç”»åƒã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè‡ªå‹•çš„ã«è¿½å¾“ã—ã¾ã™.有効ã«ã™ã‚‹ã¨, å…¨ã¦ãƒ„ールã«ãŠã„ã¦ç¾åœ¨ã®ãƒ–ラシã®ã‚¢ã‚¦ãƒˆãƒ©ã‚¤ãƒ³ãƒ—レビューãŒè¡¨ç¤ºã•ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, ç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã«ãƒ•ã‚©ãƒ¼ã‚«ã‚¹ã‚’当ã¦ãŸéš›ã«ç”»åƒãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ç”»åƒã«ãªã‚Šã¾ã™.「クリックã—ã¦ãƒ•ã‚©ãƒ¼ã‚«ã‚¹ã‚’移動ã€ã•ã›ã‚‹ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ãƒžãƒãƒ¼ã‚¸ãƒ£ã«å¯¾ã—ã¦æœ‰åŠ¹ã§ã™.オンã®å ´åˆ, メニューãŒåˆ‡ã‚Šé›¢ã›ã¾ã™.オンã®å ´åˆ, F1キーを押ã™ã¨ãƒ˜ãƒ«ãƒ—ブラウザãŒé–‹ãã¾ã™.オンã®å ´åˆ, GIMP ã¯ç”»åƒãŒå¤‰æ›´ã•ã‚Œãªã„é™ã‚Šä¿å­˜ã—ãªã„よã†ã«ãªã‚Šã¾ã™.オンã®å ´åˆ, GIMP ã¯ç”»åƒæ¯Žã«æƒ…報ウィンドウを用æ„ã—ã¾ã™.有効ã«ã™ã‚‹ã¨, ä½ç½®ã®ãƒ’ントã«åŸºãã®ã§ã¯ãªã, 個々ã®ãƒ¢ãƒ¼ã‚·ãƒ§ãƒ³ã‚¤ãƒ™ãƒ³ãƒˆã«å¯¾ã—ã¦ãƒžã‚¦ã‚¹ã®ç¾åœ¨ä½ç½®ã‚’ X サーãƒã«å•åˆã›ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™. 大ããªãƒ–ラシを用ã„ã¦æç”»ã™ã‚‹éš›ã«æ­£ç¢ºã«ãªã‚Šã¾ã™ãŒ, 多少é…ããªã‚Šã¾ã™. ã„ãã¤ã‹ã®å¤©é‚ªé¬¼ãª X サーãƒã«å¯¾ã—ã¦ã¯, 逆ã«é€Ÿããªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™.オンã®å ´åˆ, デフォルトã§ã‚°ãƒªãƒƒãƒ‰ã‚’表示ã—ã¾ã™. ã“れ㯠"表示->グリッド" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.オンã®å ´åˆ, デフォルトã§ã‚‚ã®ã•ã—を表示ã—ã¾ã™. ã“れ㯠"表示->ã‚‚ã®ã•ã—" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, ç”»åƒã®ã‚ºãƒ¼ãƒ ã‚¤ãƒ³ã‚„アウトを行ã£ãŸéš›ã«è‡ªå‹•çš„ã«ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒãƒªã‚µã‚¤ã‚ºã•ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, 実際ã®ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰ã‚ã£ãŸæ™‚ã«è‡ªå‹•çš„ã«ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒãƒªã‚µã‚¤ã‚ºã•ã‚Œã¾ã™.オンã®å ´åˆ, デフォルトã§ãƒ¬ã‚¤ãƒ¤ãƒ¼å¢ƒç•Œã‚’表示ã—ã¾ã™. ã“れ㯠"表示->レイヤー境界" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, デフォルトã§ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒãƒ¼ã‚’表示ã—ã¾ã™. ã“れ㯠"表示->メニューãƒãƒ¼" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, デフォルトã§ã‚‚ã®ã•ã—ãŒè¡¨ç¤ºã•ã‚Œã¾ã™. ã“れ㯠"表示->ã‚‚ã®ã•ã—" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.オンã®å ´åˆ, デフォルトã§ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã‚’表示ã—ã¾ã™. ã“れ㯠"表示->スクロールãƒãƒ¼" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, é¸æŠžã—ãŸãƒ–ラシãŒå…¨ã¦ã®ãƒ„ールã§ä½¿ç”¨ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™.有効ã«ã™ã‚‹ã¨, é¸æŠžã—ãŸã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãŒå…¨ã¦ã®ãƒ„ールã§æœ‰åŠ¹ã«ãªã‚Šã¾ã™.有効ã«ã™ã‚‹ã¨, é¸æŠžã—ãŸãƒ‘ターンãŒå…¨ã¦ã®ãƒ„ールã§æœ‰åŠ¹ã«ãªã‚Šã¾ã™.オンã®å ´åˆ, デフォルトã§é¸æŠžé ˜åŸŸã‚’表示ã—ã¾ã™. ã“れ㯠"表示->é¸æŠžé ˜åŸŸ" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.オンã®å ´åˆ, デフォルトã§ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼ã‚’表示ã—ã¾ã™. ã“れ㯠"表示->ステータスãƒãƒ¼" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™.有効ã«ã™ã‚‹ã¨, ç”»åƒä¸Šã®å€‹ã€…ã®ãƒ”クセルãŒç”»é¢ä¸Šã®å€‹ã€…ã®ãƒ”クセルã«å¯¾å¿œã—ã¾ã™.有効ã«ã™ã‚‹ã¨, é–‹ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®ç”»åƒå…¨ä½“ãŒè¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™. 無効ãªå ´åˆã«ã¯, ç”»åƒã¯æ‹¡å¤§çŽ‡ 1:1 ã§è¡¨ç¤ºã•ã‚Œã¾ã™.オンã®å ´åˆ, メニューアイテムãŒé¸æŠžã•ã‚Œã¦ã„る時ã«ã‚­ãƒ¼ã®çµ„ã¿åˆã‚ã›ã‚’入力ã™ã‚‹ã“ã¨ã§, キーボードショートカットを変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™.白ホワイトãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´ã¯ RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™.å¹…å¹…:ウィンドウ管ç†ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ç®¡ç†ã®ãƒ’ントウィンドウä½ç½®'%s' を書ãè¾¼ã¿ä¸­ -XXCF エラー: XCF ãƒãƒ¼ã‚¸ãƒ§ãƒ³ %d ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ã¾ã›ã‚“XCF 警告: ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 0 ã® XCF ファイル形å¼ã§ã¯ -インデックスカラーマップãŒæ­£å¸¸ã«ä¿å­˜ã•ã‚Œã¦ã„ã¾ã›ã‚“. -グレースケールマップを仮定ã—ã¾ã™.Y黄黄:ã“ã“ã«ãƒ‰ãƒƒã‚­ãƒ³ã‚°å¯èƒ½ãªãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’ドロップã§ãã¾ã™.ã‚ãªãŸã¯, 本プログラムã¨ä¸€ç·’ã«GNU 一般公有使用許諾ã®å†™ã—ã‚’å—ã‘å–ã£ã¦ã„ã‚‹ã¯ãšã§ã™. ãã†ã§ãªã„å ´åˆã¯, Free Software Foundation,Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ã¸æ‰‹ç´™ã‚’書ã„ã¦ãã ã•ã„.変更内容を有効ã«ã™ã‚‹ã«ã¯ GIMP ã‚’å†èµ·å‹•ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™:GIMP ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã¯ä¸å®Œå…¨ã§ã™:ズームã¨ãƒªã‚µã‚¤ã‚ºã®æŒ¯ã‚‹èˆžã„1:1全表示拡大縮å°æ‹¡å¤§çŽ‡æ‹¡å¤§çŽ‡:全表示(_A)拡大(_I)縮å°(_O)全表示å€çŽ‡: %d:1拡大ズームイン & ズームアウト縮å°ã‚ºãƒ¼ãƒ :[ å…ƒç”»åƒ ]GIMP ã«ã¤ã„ã¦(_A)å–ã‚Šè¾¼ã¿(_A)背景色ã‹ã‚‰è‰²ã‚’追加(_A)æ画色ã‹ã‚‰è‰²ã‚’追加(_A)タブã«è¿½åŠ (_A)é¸æŠžé ˜åŸŸã«åŠ ãˆã‚‹(_A)高度ãªã‚ªãƒ—ション(_A)å…¨ã¦(_A)レイヤーを固定(_A)アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°(_A)芸術的効果(_A)é è¿‘法(_A)自動(_A)_B背景色(_G)背景色(_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)æš—ã„市æ¾æ¨¡æ§˜ã®è‰²(_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)æ画色(_F)ファイル(_F)å¡—ã‚Šã¤ã¶ã™è‰²(_F)セグメントã®å·¦å³å転(_F)é¸æŠžé ˜åŸŸã‚’å転(_F)フォント(_F)フォント(_F)æ画色(_F):_G超巨大(_G)グラデーション(_G)グラデーション(_G)グレースケール(_G)レイヤーã®ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã®ã‚³ãƒ”ー(_G)é¸æŠžé ˜åŸŸã®æ‹¡å¤§(_G)...ガイド(_G)強度(_H)ヘルプ(_H)æ°´å¹³(_H):色相(_H):ã¨ã¦ã‚‚大ãã„(_H)アイコン(_I)アイコン(_I):ç”»åƒ(_I)ç”»åƒ(_I)インãƒãƒ¼ãƒˆ(_I)パレットã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆ(_I)...インデックス(_I)...å転(_I)çµåˆã‚¹ã‚¿ã‚¤ãƒ«(_J):大ãã„(_L)レイヤー(_L)レイヤー(_L)左終端色(_L)明るã„市æ¾æ¨¡æ§˜ã®è‰²(_L)ライト効果(_L)明度(_L):線種(_L):ç·šå½¢(_L)å·¦å´ã®è‰²ã®èª­ã¿è¾¼ã¿å…ƒ(_L)/ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸‹é™(_L)レイヤーを背é¢ã¸(_L)_M自分ã§è¨­å®šã™ã‚‹(_M)マップ(_M)マスター(_M)é¸æŠžé ˜åŸŸã‚’マスク(_M)最大色数(_M):中間(_M)パレットã®çµ±åˆ(_M)...インãƒãƒ¼ãƒˆã—ãŸãƒ‘スを統åˆ(_M)GIMP 2.0 ユーザ設定ã®çµ±åˆ(_M)é¢ã¨ã‚Šé™ç•Œ(_M):モード(_M)モジュール管ç†(_M)移動(_M)åå‰(_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)クイックマスクを有効ã«(_Q)終了(_Q)_RRGB(_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)彩度(_S):ä¿å­˜(_S)å³å´ã®è‰²ã®ä¿å­˜å…ˆ(_S)オプションä¿å­˜(_S)入力デãƒã‚¤ã‚¹ã®è¨­å®šã‚’終了時ã«ä¿å­˜ã™ã‚‹(_S)終了時ã«ã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’ä¿å­˜ã™ã‚‹(_S)終了時ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ä½ç½®ã‚’ä¿å­˜ã™ã‚‹(_S)拡大縮å°(_S)ç”»åƒæ‹¡å¤§ç¸®å°(_S)...é¸æŠž(_S)é¸æŠž(_S)é¸æŠžã‚¨ãƒ‡ã‚£ã‚¿(_S)é¸æŠžãƒ„ール(_S)形状(_S)é¸æŠžç”»åƒã‚’表示ã™ã‚‹(_E)é“å…·ç®±ã«è¡¨ç¤º(_S)å°ã•ã„(_S)スナップè·é›¢(_S):é¸æŠžé ˜åŸŸã‹ã‚‰å¼•ã(_S)タブã®è¦‹å‡ºã—(_T)テンプレート:テンプレート(_T)文字(_T)ã—ãã„値(_T)...å¾®å°(_T)今日ã®æŠ€(_T)é“å…·(_T)é“å…·(_T)変æ›(_T)変æ›ãƒ„ール(_T)アンドゥ(_U)アンドゥ %s(_U)åž‚ç›´(_V):ウェブ(_W)使用ã™ã‚‹ã‚¦ã‚§ãƒ–ブラウザ(_W):白 (完全ä¸é€æ˜Ž)(_W)ホワイトãƒãƒ©ãƒ³ã‚¹(_W)å¹…(_W):水平解åƒåº¦(_X):_X:æ‹¡å¼µ(_X)_Y垂直解åƒåº¦(_Y):_Y:ズーム(_Z) (%s)色コピーdpi真å½å€¤ãƒˆãƒ¼ã‚¯ãƒ³ %s ã« 'yes' ã‹ 'no' ã§ãªã, '%s' ãŒã‚ã‚Šã¾ã™è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«-未æ画インãƒã‚¤ãƒ³ãƒã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹-未æç”»ä¸é©åˆ‡ãª UTF-8 文字列トークン %2$s ã«ãŠã„ã¦ç„¡åŠ¹ãªå€¤ '%1$ld'トークン %2$s ã«ãŠã„ã¦ç„¡åŠ¹ãªå€¤ '%1$s'ミリメートルミリメートル分n/aパーセントパイカパイカピクセルピクセルピクセル/%aピクセル/%sãƒã‚¤ãƒ³ãƒˆãƒã‚¤ãƒ³ãƒˆç§’tips-locale:jaSHIRASAKI Yasuhiro -Ryoichi INAGAKIトークン %s ã®å€¤ã¯é©åˆ‡ãªUTF-8文字列ã§ã¯ã‚ã‚Šã¾ã›ã‚“トークン '%s' ã®è§£æžæ™‚: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/ja.po gimp-2.2.9/po/ja.po --- gimp-2.2.8/po/ja.po 2005-02-21 14:15:08.000000000 +0100 +++ gimp-2.2.9/po/ja.po 2005-09-20 18:24:05.000000000 +0200 @@ -8,9 +8,9 @@ msgstr "" "Project-Id-Version: gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-02-19 11:56+0900\n" -"PO-Revision-Date: 2005-02-17 12:27+0900\n" -"Last-Translator: Tadashi Jokagi \n" +"POT-Creation-Date: 2005-09-17 20:01+0900\n" +"PO-Revision-Date: 2005-09-10 19:00+0900\n" +"Last-Translator: \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,29 +20,29 @@ msgid "(This console window will close in ten seconds)\n" msgstr "(ã“ã®ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã¯10秒後ã«é–‰ã˜ã¾ã™)\n" -#: ../app/app_procs.c:238 +#: ../app/app_procs.c:239 msgid "" "GIMP is not properly installed for the current user.\n" "User installation was skipped because the '--no-interface' flag was used.\n" "To perform user installation, run the GIMP without the '--no-interface' flag." msgstr "" -"ç¾åœ¨ã®ãƒ¦ãƒ¼ã‚¶ã«å¯¾ã—㦠GIMP ãŒæ­£ã—ãインストールã•ã‚Œã¦ã„ã¾ã›ã‚“.\n" -"'--no-interface' オプション付ãã§èµ·å‹•ã•ã‚ŒãŸãŸã‚, ユーザ用インストール\n" -"ãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã—ãŸ. ユーザインストールを行ã†ãŸã‚ã«ã¯\n" -"'--no-interface' オプションを付ã‘ãšã« GIMP ã‚’èµ·å‹•ã—ã¦ãã ã•ã„." +"ç¾åœ¨ã®ãƒ¦ãƒ¼ã‚¶ã«å¯¾ã—㦠GIMP ãŒæ­£ã—ãインストールã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" +"'--no-interface' オプション付ãã§èµ·å‹•ã•ã‚ŒãŸãŸã‚ã€ãƒ¦ãƒ¼ã‚¶ç”¨ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«\n" +"ãŒã‚¹ã‚­ãƒƒãƒ—ã•ã‚Œã¾ã—ãŸã€‚ユーザインストールを行ã†ãŸã‚ã«ã¯\n" +"'--no-interface' オプションを付ã‘ãšã« GIMP ã‚’èµ·å‹•ã—ã¦ãã ã•ã„。" -#: ../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 " "location and permissions of the swap directory defined in your Preferences " "(currently \"%s\")." msgstr "" -"スワップファイルを開ã‘ã¾ã›ã‚“. データã®æ¶ˆå¤±ã‚’防ã為ã«ã¯, ç¾åœ¨ç’°å¢ƒè¨­å®šã«ãŠã„㦠" -"\"%s\" ã«è¨­å®šã•ã‚Œã¦ã„ã‚‹, スワップディレクトリã®å ´æ‰€ã¨ãƒ‘ーミッションをãƒã‚§ãƒƒã‚¯" -"ã—ã¦ãã ã•ã„." +"スワップファイルを開ã‘ã¾ã›ã‚“。データã®æ¶ˆå¤±ã‚’防ã為ã«ã¯ã€ç¾åœ¨ç’°å¢ƒè¨­å®šã«ãŠã„㦠" +"\"%s\" ã«è¨­å®šã•ã‚Œã¦ã„ã‚‹ã€ã‚¹ãƒ¯ãƒƒãƒ—ディレクトリã®å ´æ‰€ã¨ãƒ‘ーミッションをãƒã‚§ãƒƒã‚¯" +"ã—ã¦ãã ã•ã„。" -#: ../app/app_procs.c:348 ../app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:349 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "'%s' ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—: %s" @@ -50,15 +50,15 @@ #: ../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 msgid "" "GIMP could not initialize the graphical user interface.\n" "Make sure a proper setup for your display environment exists." msgstr "" -"GIMP ã¯ãƒ¦ãƒ¼ã‚¶ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ã‚¤ã‚¹ã‚’åˆæœŸåŒ–ã§ãã¾ã›ã‚“ã§ã—ãŸ.\n" -"ディスプレイ環境ã«å¯¾ã—ã¦é©åˆ‡ãªè¨­å®šãŒã•ã‚Œã¦ã„ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„." +"GIMP ã¯ãƒ¦ãƒ¼ã‚¶ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ã‚¤ã‚¹ã‚’åˆæœŸåŒ–ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚\n" +"ディスプレイ環境ã«å¯¾ã—ã¦é©åˆ‡ãªè¨­å®šãŒã•ã‚Œã¦ã„ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„。" #: ../app/main.c:222 ../app/widgets/gimptoolbox.c:559 #: ../data/misc/gimp.desktop.in.in.h:3 @@ -98,82 +98,82 @@ #: ../app/main.c:512 msgid " -h, --help Output this help.\n" -msgstr " -h, --help ã“ã®ãƒ˜ãƒ«ãƒ—を表示ã™ã‚‹.\n" +msgstr " -h, --help ã“ã®ãƒ˜ãƒ«ãƒ—を表示ã™ã‚‹ã€‚\n" #: ../app/main.c:513 msgid " -v, --version Output version information.\n" -msgstr " -v, --version ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示ã™ã‚‹.\n" +msgstr " -v, --version ãƒãƒ¼ã‚¸ãƒ§ãƒ³æƒ…報を表示ã™ã‚‹ã€‚\n" #: ../app/main.c:514 msgid " --verbose Show startup messages.\n" -msgstr " --verbose 詳細起動メッセージを表示ã™ã‚‹.\n" +msgstr " --verbose 詳細起動メッセージを表示ã™ã‚‹ã€‚\n" #: ../app/main.c:515 msgid "" " --no-shm Do not use shared memory between GIMP and " "plugins.\n" msgstr "" -" --no-shm GIMP ã¨ãƒ—ラグインã®é–“ã§å…±æœ‰ãƒ¡ãƒ¢ãƒªã‚’使用ã—ãªã„.\n" +" --no-shm GIMP ã¨ãƒ—ラグインã®é–“ã§å…±æœ‰ãƒ¡ãƒ¢ãƒªã‚’使用ã—ãªã„。\n" #: ../app/main.c:516 msgid " --no-cpu-accel Do not use special CPU accelerations.\n" -msgstr " --no-cpu-accel 特別㪠CPU 命令を使用ã—ãªã„.\n" +msgstr " --no-cpu-accel 特別㪠CPU 命令を使用ã—ãªã„。\n" #: ../app/main.c:517 msgid "" " -d, --no-data Do not load brushes, gradients, palettes, " "patterns.\n" msgstr "" -" -d, --no-data パターン, グラデーション, パレット, ブラシを読ã¿è¾¼" -"ã¾ãªã„.\n" +" -d, --no-data ブラシã€ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã€ãƒ‘レットã€ãƒ‘ターンを読ã¿è¾¼" +"ã¾ãªã„。\n" #: ../app/main.c:518 msgid " -f, --no-fonts Do not load any fonts.\n" -msgstr " -f, --no-fonts フォントを読ã¿è¾¼ã¾ãªã„.\n" +msgstr " -f, --no-fonts フォントを読ã¿è¾¼ã¾ãªã„。\n" #: ../app/main.c:519 msgid " -i, --no-interface Run without a user interface.\n" -msgstr " -i, --no-interface ユーザーインターフェースãªã—ã§èµ·å‹•ã™ã‚‹.\n" +msgstr " -i, --no-interface ユーザーインターフェースãªã—ã§èµ·å‹•ã™ã‚‹ã€‚\n" #: ../app/main.c:520 msgid " --display Use the designated X display.\n" -msgstr " --display 指定ã—㟠X ディスプレイを使用ã™ã‚‹.\n" +msgstr " --display 指定ã—㟠X ディスプレイを使用ã™ã‚‹ã€‚\n" #: ../app/main.c:521 msgid " -s, --no-splash Do not show the startup window.\n" -msgstr " -s, --no-splash èµ·å‹•ç”»é¢ã‚’表示ã—ãªã„.\n" +msgstr " -s, --no-splash スタートアップウィンドウを表示ã—ãªã„。\n" #: ../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" -msgstr " -g, --gimprc 指定ã—㟠gimprc ファイルを使用ã™ã‚‹.\n" +msgstr " -g, --gimprc 代替㮠gimprc ファイルを使用ã™ã‚‹ã€‚\n" #: ../app/main.c:524 msgid " --system-gimprc Use an alternate system gimprc file.\n" -msgstr " --system-gimprc 指定ã™ã‚‹ã‚·ã‚¹ãƒ†ãƒ  gimprc を使用ã™ã‚‹.\n" +msgstr " --system-gimprc 代替ã®ã‚·ã‚¹ãƒ†ãƒ  gimprc を使用ã™ã‚‹ã€‚\n" #: ../app/main.c:525 msgid "" " --dump-gimprc Output a gimprc file with default settings.\n" msgstr "" -" --dump-gimprc デフォルト設定㮠gimprc ファイルを出力ã™ã‚‹.\n" +" --dump-gimprc デフォルト設定㮠gimprc ファイルを出力ã™ã‚‹ã€‚\n" #: ../app/main.c:526 msgid "" " -c, --console-messages Display warnings to console instead of a dialog " "box.\n" msgstr "" -" -c, --console-messages 警告をダイアログã§ãªãコンソールã«å‡ºåŠ›ã™ã‚‹.\n" +" -c, --console-messages 警告をダイアログã§ãªãコンソールã«å‡ºåŠ›ã™ã‚‹ã€‚\n" #: ../app/main.c:527 msgid "" " --debug-handlers Enable non-fatal debugging signal handlers.\n" msgstr "" " --debug-handlers 致命的ã§ã¯ãªã„シグナルã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ç”¨ã‚·ã‚°ãƒŠãƒ«ãƒ" -"ンドラを有効ã«ã™ã‚‹.\n" +"ンドラを有効ã«ã™ã‚‹ã€‚\n" #: ../app/main.c:528 msgid "" @@ -182,7 +182,7 @@ msgstr "" " --stack-trace-mode \n" " 致命的ãªã‚·ã‚°ãƒŠãƒ«ã«å¯¾ã™ã‚‹ãƒ‡ãƒãƒƒã‚°ãƒ¢ãƒ¼ãƒ‰ã‚’指定ã™" -"ã‚‹.\n" +"る。\n" #: ../app/main.c:530 msgid "" @@ -190,17 +190,19 @@ " Procedural Database compatibility mode.\n" msgstr "" " --pdb-compat-mode \n" -" プロシージャデータベース互æ›æ€§ãƒ¢ãƒ¼ãƒ‰.\n" +" プロシージャデータベース互æ›æ€§ãƒ¢ãƒ¼ãƒ‰ã€‚\n" #: ../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 msgid " -b, --batch Process commands in batch mode.\n" -msgstr " -b, --batch <コマンド> ãƒãƒƒãƒãƒ¢ãƒ¼ãƒ‰ã§èµ·å‹•ã™ã‚‹.\n" +msgstr " -b, --batch <コマンド> ãƒãƒƒãƒãƒ¢ãƒ¼ãƒ‰ã§èµ·å‹•ã™ã‚‹ã€‚\n" #: ../app/sanity.c:194 #, c-format @@ -209,6 +211,9 @@ "\n" "Please check the value of the environment variable G_FILENAME_ENCODING." msgstr "" +"設定ã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ«åã®ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‡ã‚£ãƒ³ã‚°ã¯ UTF-8 ã«å¤‰æ›ã§ãã¾ã›ã‚“: %s\n" +"\n" +"環境変数 G_FILENAME_ENCODING ã®å€¤ã‚’確èªã—ã¦ãã ã•ã„。" #: ../app/sanity.c:213 #, c-format @@ -220,157 +225,160 @@ "8 and you didn't tell GLib about this. Please set the environment variable " "G_FILENAME_ENCODING." msgstr "" +"GIMP ユーザー設定ã®æ ¼ç´ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªå㌠UTF-8 ã«å¤‰æ›ã§ãã¾ã›ã‚“: %s\n" +"\n" +"ãŠãらãã€ãƒ•ã‚¡ã‚¤ãƒ«ã‚’æ ¼ç´ã—ã¦ã„るファイルシステム㌠UTF-8 以外ã®ã‚¨ãƒ³ã‚³ãƒ¼ãƒ‡ã‚£ãƒ³" +"グを使ã£ã¦ãŠã‚Šã€ãã®ã“ã¨ãŒ GLib ã«ä¼ã‚ã£ã¦ã„ãªã„ã®ã§ã—ょã†ã€‚環境変数 " +"G_FILENAME_ENCODING を設定ã—ã¦ãã ã•ã„。" #. initialize the list of gimp brushes -#: ../app/actions/actions.c:93 ../app/core/gimp.c:856 +#: ../app/actions/actions.c:94 ../app/core/gimp.c:856 #: ../app/dialogs/dialogs.c:138 ../app/dialogs/preferences-dialog.c:2297 #: ../app/pdb/internal_procs.c:92 msgid "Brushes" msgstr "ブラシ" -#: ../app/actions/actions.c:96 ../app/dialogs/dialogs.c:150 +#: ../app/actions/actions.c:97 ../app/dialogs/dialogs.c:150 msgid "Buffers" msgstr "ãƒãƒƒãƒ•ã‚¡" -#: ../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 -#, fuzzy +#: ../app/actions/actions.c:106 ../app/pdb/internal_procs.c:101 msgid "Context" -msgstr "/ヘルプ/状æ³é©å¿œãƒ˜ãƒ«ãƒ—(_C)" +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 -#, fuzzy +#: ../app/actions/actions.c:115 msgid "Dockable" -msgstr "æ画対象" +msgstr "ドックå¯èƒ½" -#: ../app/actions/actions.c:117 ../app/dialogs/dialogs.c:152 +#: ../app/actions/actions.c:118 ../app/dialogs/dialogs.c:152 msgid "Document History" -msgstr "文書履歴(一覧)" +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 "æ画対象" -#: ../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/actions/actions.c:133 ../app/core/gimp.c:872 #: ../app/dialogs/dialogs.c:146 ../app/dialogs/preferences-dialog.c:2313 #: ../app/pdb/internal_procs.c:128 msgid "Fonts" msgstr "フォント" -#: ../app/actions/actions.c:135 ../app/dialogs/dialogs.c:205 +#: ../app/actions/actions.c:136 ../app/dialogs/dialogs.c:205 msgid "Gradient Editor" msgstr "グラデーションエディタ" #. initialize the list of gimp gradients -#: ../app/actions/actions.c:138 ../app/core/gimp.c:868 +#: ../app/actions/actions.c:139 ../app/core/gimp.c:868 #: ../app/dialogs/dialogs.c:142 ../app/dialogs/preferences-dialog.c:2309 #: ../app/pdb/internal_procs.c:140 msgid "Gradients" msgstr "グラデーション" -#: ../app/actions/actions.c:141 +#: ../app/actions/actions.c:142 msgid "Help" msgstr "ヘルプ" -#: ../app/actions/actions.c:144 ../app/pdb/internal_procs.c:149 +#: ../app/actions/actions.c:145 ../app/pdb/internal_procs.c:149 #: ../app/tools/tools-enums.c:176 msgid "Image" msgstr "ç”»åƒ" #. list & grid views -#: ../app/actions/actions.c:147 ../app/dialogs/dialogs.c:136 +#: ../app/actions/actions.c:148 ../app/dialogs/dialogs.c:136 msgid "Images" msgstr "ç”»åƒ" -#: ../app/actions/actions.c:150 ../app/dialogs/dialogs.c:159 +#: ../app/actions/actions.c:151 ../app/dialogs/dialogs.c:159 msgid "Layers" msgstr "レイヤー" -#: ../app/actions/actions.c:153 ../app/dialogs/dialogs.c:209 +#: ../app/actions/actions.c:154 ../app/dialogs/dialogs.c:209 msgid "Palette Editor" msgstr "パレット編集" #. initialize the list of gimp palettes -#: ../app/actions/actions.c:156 ../app/core/gimp.c:864 +#: ../app/actions/actions.c:157 ../app/core/gimp.c:864 #: ../app/dialogs/dialogs.c:144 ../app/dialogs/preferences-dialog.c:2305 #: ../app/pdb/internal_procs.c:170 msgid "Palettes" msgstr "パレット" #. initialize the list of gimp patterns -#: ../app/actions/actions.c:159 ../app/core/gimp.c:860 +#: ../app/actions/actions.c:160 ../app/core/gimp.c:860 #: ../app/dialogs/dialogs.c:140 ../app/dialogs/preferences-dialog.c:2301 #: ../app/pdb/internal_procs.c:185 msgid "Patterns" msgstr "パターン" -#: ../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/actions/actions.c:172 ../app/core/gimp.c:880 #: ../app/dialogs/dialogs.c:154 msgid "Templates" msgstr "テンプレート" -#: ../app/actions/actions.c:174 +#: ../app/actions/actions.c:175 msgid "Text Editor" msgstr "テキストエディタ" -#: ../app/actions/actions.c:177 ../app/dialogs/dialogs.c:123 +#: ../app/actions/actions.c:178 ../app/dialogs/dialogs.c:123 #: ../app/dialogs/preferences-dialog.c:1585 #: ../app/dialogs/preferences-dialog.c:1588 ../app/gui/gui.c:410 msgid "Tool Options" msgstr "ツールオプション" -#: ../app/actions/actions.c:180 ../app/dialogs/dialogs.c:148 +#: ../app/actions/actions.c:181 ../app/dialogs/dialogs.c:148 msgid "Tools" msgstr "ツール" -#: ../app/actions/actions.c:183 ../app/dialogs/dialogs.c:167 +#: ../app/actions/actions.c:184 ../app/dialogs/dialogs.c:167 #: ../app/pdb/internal_procs.c:176 ../app/tools/gimpvectortool.c:160 msgid "Paths" msgstr "パス" -#: ../app/actions/actions.c:186 +#: ../app/actions/actions.c:187 msgid "View" msgstr "表示" @@ -435,9 +443,8 @@ msgstr "ãƒãƒƒãƒ•ã‚¡å†…ã«è²¼ã‚Šä»˜ã‘(_I)" #: ../app/actions/buffers-actions.c:53 -#, fuzzy msgid "Paste the selected buffer into the selection" -msgstr "レイヤーやé¸æŠžé ˜åŸŸã‚’回転ã™ã‚‹" +msgstr "é¸æŠžã—ãŸãƒãƒƒãƒ•ã‚¡ã®å†…容をé¸æŠžé ˜åŸŸå†…ã«è²¼ã‚Šä»˜ã‘" #: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" @@ -495,41 +502,41 @@ msgid "_Delete Channel" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®å‰Šé™¤(_D)" -#: ../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 "ãƒãƒ£ãƒ³ãƒãƒ«ã®å‰Šé™¤" #: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸Šæ˜‡(_R)" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å‰é¢ã¸(_R)" #: ../app/actions/channels-actions.c:79 msgid "Raise channel" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸Šæ˜‡" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å‰é¢ã¸" #: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番上ã¾ã§ä¸Šæ˜‡(_T)" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’最å‰é¢ã¸(_T)" #: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番上ã¾ã§ä¸Šæ˜‡" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’最å‰é¢ã¸" #: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" -msgstr "/ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸‹é™(_L)" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’背é¢ã¸(_L)" #: ../app/actions/channels-actions.c:91 msgid "Lower channel" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®ä¸‹é™" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’背é¢ã¸" #: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番下ã¾ã§ä¸‹é™(_B)" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’最背é¢ã¸(_B)" #: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番下ã¾ã§ä¸‹é™" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’最背é¢ã¸" #: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" @@ -561,14 +568,12 @@ #: ../app/actions/channels-actions.c:123 ../app/actions/layers-actions.c:236 #: ../app/actions/layers-actions.c:259 ../app/actions/vectors-actions.c:185 -#, fuzzy msgid "_Intersect with Selection" -msgstr "/é¸æŠžé ˜åŸŸã¨ã®äº¤ã‚ã‚Š(_I)" +msgstr "é¸æŠžé ˜åŸŸã¨ã®äº¤ã‚ã‚Š(_I)" #: ../app/actions/channels-actions.c:124 ../app/actions/vectors-actions.c:186 -#, fuzzy msgid "Intersect" -msgstr "インターフェイス" +msgstr "交差" #: ../app/actions/channels-commands.c:86 #: ../app/actions/channels-commands.c:383 @@ -668,7 +673,7 @@ #: ../app/actions/context-actions.c:49 msgid "Paint _Mode" -msgstr "æ画モード" +msgstr "æ画モード(_M)" #: ../app/actions/context-actions.c:50 msgid "_Tool" @@ -707,9 +712,8 @@ msgstr "åŠå¾„(_R)" #: ../app/actions/context-actions.c:59 -#, fuzzy msgid "S_pikes" -msgstr "ピクセル" +msgstr "スパイク(_P)" #: ../app/actions/context-actions.c:60 msgid "_Hardness" @@ -731,10 +735,10 @@ msgid "S_wap Colors" msgstr "æ画色ã¨èƒŒæ™¯è‰²ã®äº¤æ›(_W)" -#: ../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 "å称未設定" @@ -756,22 +760,20 @@ msgstr "æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ(_K)" #: ../app/actions/dialogs-actions.c:42 -#, fuzzy msgid "_Layers, Channels & Paths" -msgstr "/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/レイヤー, ãƒãƒ£ãƒ³ãƒãƒ« & パス(_L)" +msgstr "レイヤー・ãƒãƒ£ãƒ³ãƒãƒ«ã¨ãƒ‘ス(_L)" #: ../app/actions/dialogs-actions.c:47 -#, fuzzy msgid "_Brushes, Patterns & Gradients" -msgstr "/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/ブラシ, パターン & グラデーション(_B)" +msgstr "ブラシ・パターンã¨ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³(_B)" #: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" -msgstr "" +msgstr "ãã®ä»–ã„ã‚ã„ã‚(_M)" #: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" -msgstr "é“å…·ç®±" +msgstr "é“å…·ç®±(_B)" #: ../app/actions/dialogs-actions.c:65 msgid "Tool _Options" @@ -811,7 +813,7 @@ #: ../app/actions/dialogs-actions.c:110 msgid "Undo _History" -msgstr "アンドゥ履歴(_h)" +msgstr "å–り消ã—履歴(_h)" #: ../app/actions/dialogs-actions.c:115 msgid "Colo_rs" @@ -847,7 +849,7 @@ #: ../app/actions/dialogs-actions.c:155 msgid "Document Histor_y" -msgstr "文書履歴(一覧)(_Y)" +msgstr "文書履歴 (一覧)(_Y)" #: ../app/actions/dialogs-actions.c:160 msgid "_Templates" @@ -903,15 +905,15 @@ #: ../app/actions/dockable-actions.c:68 msgid "M_ove to Screen..." -msgstr "スクリーンã«ç§»å‹•...(_O)" +msgstr "スクリーンã«ç§»å‹•(_O)..." #: ../app/actions/dockable-actions.c:76 msgid "_Show Image Selection" -msgstr "é¸æŠžç”»åƒã‚’表示ã™ã‚‹(_E)" +msgstr "é¸æŠžç”»åƒã‚’表示ã™ã‚‹(_S)" #: ../app/actions/dockable-actions.c:82 msgid "Auto _Follow Active Image" -msgstr "アクティブãªç”»åƒã‚’自動的ã«è¿½è·¡ã™ã‚‹(_I)" +msgstr "アクティブãªç”»åƒã‚’自動的ã«è¿½è·¡ã™ã‚‹(_F)" #: ../app/actions/dockable-actions.c:101 msgid "_Tiny" @@ -995,7 +997,7 @@ #: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" -msgstr "ã‚‚ã—é–‹ã„ã¦ã„ãŸã‚‰ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å…¨é¢ã«" +msgstr "ã‚‚ã—é–‹ã„ã¦ã„ãŸã‚‰ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å‰é¢ã«" #: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" @@ -1073,14 +1075,12 @@ msgstr "オフセット(_O)..." #: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 -#, fuzzy msgid "_Linked" -msgstr "ç›´ç·š" +msgstr "連çµ(_L)" #: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 -#, fuzzy msgid "_Visible" -msgstr "/ファイル(_F)" +msgstr "å¯è¦–(_V)" #: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" @@ -1105,19 +1105,19 @@ #: ../app/actions/drawable-commands.c:58 msgid "Desaturate operates only on RGB color layers." -msgstr "脱色æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™." +msgstr "脱色æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™ã€‚" #: ../app/actions/drawable-commands.c:76 msgid "Equalize does not operate on indexed layers." -msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯å¹³å‡åŒ–処ç†ã‚’ã—ã¾ã›ã‚“." +msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯å¹³å‡åŒ–処ç†ã‚’ã—ã¾ã›ã‚“。" #: ../app/actions/drawable-commands.c:94 msgid "Invert does not operate on indexed layers." -msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯å転æ“作をã—ã¾ã›ã‚“." +msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯å転æ“作をã—ã¾ã›ã‚“。" #: ../app/actions/drawable-commands.c:114 msgid "White Balance operates only on RGB color layers." -msgstr "ホワイトãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´ã¯ RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™." +msgstr "ホワイトãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´ã¯ RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™ã€‚" #: ../app/actions/edit-actions.c:61 msgid "_Edit" @@ -1129,28 +1129,28 @@ #: ../app/actions/edit-actions.c:65 ../app/actions/edit-actions.c:230 msgid "_Undo" -msgstr "アンドゥ(_U)" +msgstr "å–り消ã—(_U)" #: ../app/actions/edit-actions.c:66 ../app/dialogs/dialogs.c:183 #: ../app/pdb/internal_procs.c:209 msgid "Undo" -msgstr "アンドゥ" +msgstr "å–り消ã—" #: ../app/actions/edit-actions.c:71 ../app/actions/edit-actions.c:231 msgid "_Redo" -msgstr "リドゥ(_R)" +msgstr "ã‚„ã‚Šç›´ã—(_R)" #: ../app/actions/edit-actions.c:72 msgid "Redo" -msgstr "リドゥ" +msgstr "ã‚„ã‚Šç›´ã—" #: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" -msgstr "アンドゥ履歴を消去(_C)" +msgstr "å–り消ã—履歴を消去(_C)" #: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." -msgstr "アンドゥ履歴を消去..." +msgstr "å–り消ã—履歴を消去..." #: ../app/actions/edit-actions.c:83 msgid "Cu_t" @@ -1162,18 +1162,16 @@ #. GIMP_STOCK_COPY_VISIBLE, #: ../app/actions/edit-actions.c:93 -#, fuzzy msgid "Copy _Visible" -msgstr "/ファイル(_F)" +msgstr "å¯è¦–部分をコピー(_V)" #: ../app/actions/edit-actions.c:98 msgid "_Paste" msgstr "貼り付ã‘(_P)" #: ../app/actions/edit-actions.c:103 -#, fuzzy msgid "Paste _Into" -msgstr "é¸æŠžé ˜åŸŸå†…ã«ãƒšãƒ¼ã‚¹ãƒˆ" +msgstr "é¸æŠžé ˜åŸŸå†…ã«è²¼ã‚Šä»˜ã‘(_I)" #: ../app/actions/edit-actions.c:108 msgid "Paste as _New" @@ -1181,11 +1179,11 @@ #: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." -msgstr "åå‰ã‚’付ã‘ã¦åˆ‡ã‚Šå–ã‚Š(_U)" +msgstr "åå‰ã‚’付ã‘ã¦åˆ‡ã‚Šå–ã‚Š(_T)..." #: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." -msgstr "åå‰ã‚’付ã‘ã¦ã‚³ãƒ”ー(_C)" +msgstr "åå‰ã‚’付ã‘ã¦ã‚³ãƒ”ー(_C)..." #: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." @@ -1210,20 +1208,20 @@ #: ../app/actions/edit-actions.c:214 #, c-format msgid "_Undo %s" -msgstr "アンドゥ %s(_U)" +msgstr "%s ã®å–り消ã—(_U)" #: ../app/actions/edit-actions.c:219 #, c-format msgid "_Redo %s" -msgstr "リドゥ %s(_R)" +msgstr "%s ã®ã‚„ã‚Šç›´ã—(_R)" #: ../app/actions/edit-commands.c:104 msgid "Clear Undo History" -msgstr "アンドゥ履歴を消去" +msgstr "å–り消ã—履歴を消去" #: ../app/actions/edit-commands.c:122 msgid "Really clear image's undo history?" -msgstr "本当ã«ç”»åƒã®ã‚¢ãƒ³ãƒ‰ã‚¥å±¥æ­´ã‚’消去ã—ã¾ã™ã‹?" +msgstr "本当ã«ç”»åƒã®å–り消ã—履歴を消去ã—ã¾ã™ã‹?" #: ../app/actions/edit-commands.c:210 msgid "Cut Named" @@ -1239,7 +1237,7 @@ #: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." -msgstr "切りå–ã‚Šå…ƒã¨ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“." +msgstr "切りå–ã‚Šå…ƒã¨ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" #: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" @@ -1247,7 +1245,7 @@ #: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." -msgstr "コピー元ã¨ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“." +msgstr "コピー元ã¨ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" #: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" @@ -1300,7 +1298,7 @@ #: ../app/actions/file-actions.c:62 msgid "Open _Recent" -msgstr "最近開ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«(_R)..." +msgstr "最近開ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«(_R)" #: ../app/actions/file-actions.c:63 msgid "_Acquire" @@ -1336,7 +1334,7 @@ #: ../app/actions/file-actions.c:106 msgid "Re_vert..." -msgstr "復帰(_V)" +msgstr "復帰(_V)..." #: ../app/actions/file-actions.c:111 msgid "_Quit" @@ -1371,7 +1369,7 @@ #: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." -msgstr "復帰ã«å¤±æ•—ã—ã¾ã—ãŸ. ã“ã®ç”»åƒã«å¯¾ã™ã‚‹ãƒ•ã‚¡ã‚¤ãƒ«åãŒã‚ã‚Šã¾ã›ã‚“." +msgstr "復帰ã«å¤±æ•—ã—ã¾ã—ãŸã€‚ã“ã®ç”»åƒã«å¯¾ã™ã‚‹ãƒ•ã‚¡ã‚¤ãƒ«åãŒã‚ã‚Šã¾ã›ã‚“。" #: ../app/actions/file-commands.c:303 msgid "Revert Image" @@ -1383,15 +1381,12 @@ msgstr "'%s'ã‹ã‚‰'%s'ã«å¾©å…ƒ" #: ../app/actions/file-commands.c:330 -#, fuzzy msgid "" "By reverting the image to the state saved on disk, you will lose all " "changes, including all undo information." msgstr "" -"'%s' ã‚’\n" -"'%s' ã«å¾©å¸°ã—ã¾ã™.\n" -"\n" -"(アンドゥ情報もå«ã‚ãŸå…¨ã¦ã®å¤‰æ›´ãŒå¤±ã‚ã‚Œã¾ã™)" +"ç”»åƒã‚’ディスクã«ä¿å­˜ã•ã‚Œã¦ã„る状態ã«å¾©å…ƒã™ã‚‹ã¨ã€å–り消ã—情報もå«ã‚ãŸå…¨ã¦ã®å¤‰" +"æ›´ãŒå¤±ã‚ã‚Œã¾ã™ã€‚" #: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" @@ -1458,16 +1453,15 @@ #: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" -msgstr "終端ã®è‰²ã‚’æ··ãœã‚‹(_I)" +msgstr "終端ã®è‰²ã‚’æ··ãœã‚‹(_N)" #: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" msgstr "終端ã®ä¸é€æ˜Žåº¦ã‚’æ··ãœã‚‹(_Y)" #: ../app/actions/gradient-editor-actions.c:143 -#, fuzzy msgid "_Left Neighbor's Right Endpoint" -msgstr "/å·¦å´ã®è‰²ã®èª­ã¿è¾¼ã¿å…ƒ/左隣セグメントã®å³çµ‚端(_L)" +msgstr "左隣セグメントã®å³çµ‚端(_L)" #: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" @@ -1481,12 +1475,11 @@ #: ../app/actions/gradient-editor-actions.c:158 #: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" -msgstr "背景色(_G)" +msgstr "背景色(_B)" #: ../app/actions/gradient-editor-actions.c:191 -#, fuzzy msgid "_Right Neighbor's Left Endpoint" -msgstr "/å³å´ã®è‰²ã®èª­ã¿è¾¼ã¿å…ƒ/å³éš£ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã®å·¦çµ‚端(_R)" +msgstr "å³éš£ã‚»ã‚°ãƒ¡ãƒ³ãƒˆã®å·¦çµ‚端(_R)" #: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" @@ -1502,22 +1495,20 @@ #: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" -msgstr "" +msgstr "サインカーブ(_S)" #: ../app/actions/gradient-editor-actions.c:260 -#, fuzzy msgid "Spherical (i_ncreasing)" -msgstr "/混色関数/çƒé¢ (増加)(_N)" +msgstr "çƒé¢ (増加)(_N)" #: ../app/actions/gradient-editor-actions.c:265 -#, fuzzy msgid "Spherical (_decreasing)" -msgstr "/混色関数/çƒé¢ (減少)(_D)" +msgstr "çƒé¢ (減少)(_D)" #: ../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 @@ -1525,14 +1516,12 @@ msgstr "RGB(_R)" #: ../app/actions/gradient-editor-actions.c:283 -#, fuzzy msgid "HSV (_counter-clockwise hue)" -msgstr "/色タイプ/HSV (色相å時計回り)(_C)" +msgstr "HSV (色相å時計回り)(_C)" #: ../app/actions/gradient-editor-actions.c:288 -#, fuzzy msgid "HSV (clockwise _hue)" -msgstr "å‰æ™¯ã‹ã‚‰èƒŒæ™¯ (HSV 時計回り)" +msgstr "HSV (色相時計回り)(_H)" #: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" @@ -1677,7 +1666,7 @@ "to replicate the selected segment." msgstr "" "é¸æŠžã—ãŸã‚»ã‚°ãƒ¡ãƒ³ãƒˆã‚’\n" -"何回複製ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„." +"何回複製ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„。" #: ../app/actions/gradient-editor-commands.c:394 msgid "" @@ -1685,7 +1674,7 @@ "to replicate the selection." msgstr "" "é¸æŠžé ˜åŸŸã‚’\n" -"何回複製ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„." +"何回複製ã™ã‚‹ã‹é¸æŠžã—ã¦ä¸‹ã•ã„。" #: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" @@ -1822,7 +1811,7 @@ #: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." -msgstr "キャンãƒã‚¹ã‚µã‚¤ã‚º(_V)" +msgstr "キャンãƒã‚¹ã‚µã‚¤ã‚º(_V)..." #: ../app/actions/image-actions.c:80 msgid "F_it Canvas to Layers" @@ -1849,13 +1838,12 @@ msgstr "å¯è¦–レイヤーã®çµ±åˆ(_L)..." #: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 -#, fuzzy msgid "_Flatten Image" -msgstr "/ç”»åƒã®çµ±åˆ(_F)" +msgstr "ç”»åƒã®çµ±åˆ(_F)" #: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." -msgstr "グリッドã®è¨­å®š(_R)" +msgstr "グリッドã®è¨­å®š(_R)..." #: ../app/actions/image-actions.c:128 msgid "_Grayscale" @@ -1890,7 +1878,7 @@ #: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." -msgstr "何もé¸æŠžã•ã‚Œã¦ãªã„ã®ã§åˆ‡ã‚ŠæŠœã‘ã¾ã›ã‚“." +msgstr "何もé¸æŠžã•ã‚Œã¦ãªã„ã®ã§åˆ‡ã‚ŠæŠœã‘ã¾ã›ã‚“。" #: ../app/actions/image-commands.c:484 msgid "Change Print Size" @@ -1954,7 +1942,7 @@ #: ../app/actions/layers-actions.c:55 msgid "_Mask" -msgstr "マスター(_M)" +msgstr "マスク(_M)" #: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" @@ -1994,7 +1982,7 @@ #: ../app/actions/layers-actions.c:81 msgid "New layer with last values" -msgstr "" +msgstr "最後ã®å€¤ã§æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼" #: ../app/actions/layers-actions.c:86 msgid "D_uplicate Layer" @@ -2008,7 +1996,7 @@ msgid "_Delete Layer" msgstr "レイヤーを削除(_D)" -#: ../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 "レイヤーを削除" @@ -2073,14 +2061,12 @@ msgstr "レイヤーを画åƒã‚µã‚¤ã‚ºã«åˆã‚ã›ã‚‹(_I)" #: ../app/actions/layers-actions.c:158 -#, fuzzy msgid "_Scale Layer..." -msgstr "/レイヤーã®æ‹¡å¤§ãƒ»ç¸®å°(_S)..." +msgstr "レイヤーã®æ‹¡å¤§ãƒ»ç¸®å°(_S)..." #: ../app/actions/layers-actions.c:163 -#, fuzzy msgid "Cr_op Layer" -msgstr "レイヤーã®åˆ‡ã‚ŠæŠœã" +msgstr "レイヤーã®åˆ‡ã‚ŠæŠœã(_O)" #: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." @@ -2124,7 +2110,7 @@ #: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" -msgstr "é¸æŠžé ˜åŸŸã«åŠ ãˆã‚‹(_A)" +msgstr "é¸æŠžé ˜åŸŸã«åŠ ãˆã‚‹(_D)" #: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" @@ -2188,7 +2174,7 @@ #: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." -msgstr "å¹…ã¾ãŸã¯é«˜ã•ãŒä¸æ­£ã§ã™. 両方ã¨ã‚‚æ­£ã®å€¤ã§ãªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“." +msgstr "å¹…ã¾ãŸã¯é«˜ã•ãŒä¸æ­£ã§ã™ã€‚両方ã¨ã‚‚æ­£ã®å€¤ã§ãªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“。" #: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" @@ -2377,9 +2363,8 @@ msgstr "強調(_H)" #: ../app/actions/plug-in-actions.c:69 -#, fuzzy msgid "_Generic" -msgstr "中心(_E)" +msgstr "汎用(_G)" #: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" @@ -2402,9 +2387,8 @@ msgstr "マップ(_M)" #: ../app/actions/plug-in-actions.c:75 -#, fuzzy msgid "_Render" -msgstr "中心(_E)" +msgstr "下塗り(_R)" #: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" @@ -2427,9 +2411,8 @@ msgstr "åˆæˆ(_O)" #: ../app/actions/plug-in-actions.c:82 -#, fuzzy msgid "To_ys" -msgstr "ツール" +msgstr "ãŠã‚‚ã¡ã‚ƒ(_Y)" #: ../app/actions/plug-in-actions.c:85 msgid "Reset all Filters..." @@ -2437,16 +2420,16 @@ #: ../app/actions/plug-in-actions.c:93 ../app/actions/plug-in-actions.c:363 msgid "Repeat Last" -msgstr "å†é©ç”¨" +msgstr "最後を繰り返ã™" #: ../app/actions/plug-in-actions.c:98 ../app/actions/plug-in-actions.c:365 msgid "Re-Show Last" -msgstr "å†è¡¨ç¤º" +msgstr "最後ã®å†è¡¨ç¤º" #: ../app/actions/plug-in-actions.c:349 #, c-format msgid "Re_peat \"%s\"" -msgstr "\"%s\" ã®å†é©ç”¨(_P)" +msgstr "\"%s\" ã‚’ç¹°ã‚Šè¿”ã™(_P)" #: ../app/actions/plug-in-actions.c:350 #, c-format @@ -2458,9 +2441,8 @@ msgstr "全フィルタリセット" #: ../app/actions/plug-in-commands.c:207 -#, fuzzy msgid "Do you really want to reset all filters to default values?" -msgstr "本当ã«å…¨ã¦ã®ãƒ„ールオプションをåˆæœŸå€¤ã«æˆ»ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹?" +msgstr "本当ã«å…¨ã¦ã®ãƒ•ã‚£ãƒ«ã‚¿ãƒ¼ã‚’åˆæœŸå€¤ã«æˆ»ã—ã¦ã‚ˆã‚ã—ã„ã§ã™ã‹?" #: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" @@ -2476,7 +2458,7 @@ #: ../app/actions/qmask-actions.c:60 msgid "Toggle _Quick Mask" -msgstr "クイックマスクã®åˆ‡ã‚Šæ›¿ãˆ" +msgstr "クイックマスクã®åˆ‡ã‚Šæ›¿ãˆ(_Q)" #: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" @@ -2535,24 +2517,20 @@ msgstr "é¸æŠžã®å転" #: ../app/actions/select-actions.c:68 -#, fuzzy msgid "_Float" -msgstr "フォント(_F):" +msgstr "フロート化(_F)" #: ../app/actions/select-actions.c:73 -#, fuzzy msgid "Fea_ther..." -msgstr "/é¸æŠž/境界をã¼ã‹ã™(_T)..." +msgstr "境界をã¼ã‹ã™(_T)..." #: ../app/actions/select-actions.c:78 -#, fuzzy msgid "_Sharpen" -msgstr "明確化" +msgstr "境界を明確化(_S)" #: ../app/actions/select-actions.c:83 -#, fuzzy msgid "S_hrink..." -msgstr "剪断変形ã—ã¦ã„ã¾ã™..." +msgstr "é¸æŠžé ˜åŸŸã®ç¸®å°(_H)..." #: ../app/actions/select-actions.c:88 msgid "_Grow..." @@ -2571,24 +2549,20 @@ msgstr "é¸æŠžé ˜åŸŸã‚’ãƒãƒ£ãƒ³ãƒãƒ«ã«ä¿å­˜" #: ../app/actions/select-actions.c:104 -#, fuzzy msgid "_Stroke Selection..." -msgstr "é¸æŠžé ˜åŸŸã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯" +msgstr "é¸æŠžé ˜åŸŸã‚’ストロークæç”»(_S)..." #: ../app/actions/select-actions.c:105 -#, fuzzy msgid "Stroke selection..." -msgstr "é¸æŠžé ˜åŸŸã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯" +msgstr "é¸æŠžé ˜åŸŸã‚’ストロークæç”»..." #: ../app/actions/select-actions.c:110 -#, fuzzy msgid "_Stroke Selection" -msgstr "é¸æŠžé ˜åŸŸã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯" +msgstr "é¸æŠžé ˜åŸŸã‚’ストロークæç”»(_S)" #: ../app/actions/select-actions.c:111 -#, fuzzy msgid "Stroke selection with last values" -msgstr "é¸æŠžé ˜åŸŸã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯" +msgstr "é¸æŠžé ˜åŸŸã‚’最後ã®å€¤ã§ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯æç”»" #: ../app/actions/select-commands.c:136 ../app/core/gimpselection.c:201 msgid "Feather Selection" @@ -2630,7 +2604,7 @@ #: ../app/actions/vectors-commands.c:365 ../app/actions/vectors-commands.c:392 #: ../app/dialogs/stroke-dialog.c:275 msgid "There is no active layer or channel to stroke to." -msgstr "ストロークæç”»ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“." +msgstr "ストロークæç”»ã™ã¹ãアクティブãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" #: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" @@ -2641,45 +2615,40 @@ msgstr "テンプレート" #: ../app/actions/templates-actions.c:46 -#, fuzzy msgid "_Create Image from Template..." -msgstr "/テンプレートã‹ã‚‰ç”»åƒã‚’作æˆ(_C)..." +msgstr "テンプレートã‹ã‚‰ç”»åƒã‚’作æˆ(_C)..." #: ../app/actions/templates-actions.c:47 msgid "Create a new image from the selected template" msgstr "é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートã‹ã‚‰æ–°è¦ç”»åƒã‚’作æˆ" #: ../app/actions/templates-actions.c:52 -#, fuzzy msgid "_New Template..." -msgstr "/æ–°è¦ãƒ†ãƒ³ãƒ—レート(_N)..." +msgstr "æ–°è¦ãƒ†ãƒ³ãƒ—レート(_N)..." #: ../app/actions/templates-actions.c:53 msgid "Create a new template" msgstr "æ–°è¦ãƒ†ãƒ³ãƒ—レートを作æˆ" #: ../app/actions/templates-actions.c:58 -#, fuzzy msgid "D_uplicate Template..." -msgstr "/テンプレートを複製(_U)..." +msgstr "テンプレートを複製(_U)..." #: ../app/actions/templates-actions.c:59 msgid "Duplicate the selected template" msgstr "é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートを複製" #: ../app/actions/templates-actions.c:64 -#, fuzzy msgid "_Edit Template..." -msgstr "/テンプレートを編集(_E)..." +msgstr "テンプレートを編集(_E)..." #: ../app/actions/templates-actions.c:65 msgid "Edit the selected template" msgstr "é¸æŠžã—ãŸãƒ†ãƒ³ãƒ—レートを編集" #: ../app/actions/templates-actions.c:70 -#, fuzzy msgid "_Delete Template" -msgstr "/テンプレートを削除(_D)" +msgstr "テンプレートを削除(_D)" #: ../app/actions/templates-actions.c:71 msgid "Delete the selected template" @@ -2713,7 +2682,6 @@ msgstr "é–‹ã" #: ../app/actions/text-editor-actions.c:45 -#, fuzzy msgid "Load text from file" msgstr "ファイルã‹ã‚‰ãƒ†ã‚­ã‚¹ãƒˆèª­ã¿è¾¼ã¿" @@ -2780,7 +2748,6 @@ msgstr "æ–°è¦ã‚¨ãƒ³ãƒˆãƒª(_N)..." #: ../app/actions/tool-options-actions.c:81 -#, fuzzy msgid "R_eset Tool Options" msgstr "ツールオプションリセット(_E)" @@ -2789,13 +2756,12 @@ msgstr "デフォルトã®å€¤ã«åˆæœŸåŒ–" #: ../app/actions/tool-options-actions.c:87 -#, fuzzy msgid "Reset _all Tool Options..." msgstr "全ツールオプションをリセット(_A)..." #: ../app/actions/tool-options-actions.c:88 msgid "Reset all tool options" -msgstr "全ツールオプションをリセット(_A)..." +msgstr "全ツールオプションをリセット" #: ../app/actions/tool-options-commands.c:73 msgid "Save Tool Options" @@ -2852,27 +2818,24 @@ msgstr "色ツール(_C)" #: ../app/actions/tools-actions.c:57 -#, fuzzy msgid "_Reset Order & Visibility" -msgstr "アイテムã®è¡¨ç¤º" +msgstr "é †åºã¨é“å…·ç®±ã®è¡¨ç¤ºã‚’リセット(_R)" #: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" -msgstr "" +msgstr "ツールã®é †åºã¨é“å…·ç®±ã®è¡¨ç¤ºã‚’リセット" #: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" msgstr "é“å…·ç®±ã«è¡¨ç¤º(_S)" #: ../app/actions/tools-actions.c:75 -#, fuzzy msgid "_By Color" -msgstr "RGB カラー" +msgstr "色ã§(_B)" #: ../app/actions/tools-actions.c:80 -#, fuzzy msgid "_Arbitrary Rotation..." -msgstr "/レイヤー/変æ›/ä»»æ„ã®å›žè»¢(_A)..." +msgstr "ä»»æ„ã®å›žè»¢(_A)..." #: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" @@ -2903,11 +2866,8 @@ msgstr "æ–°è¦ãƒ‘ス(_N)" #: ../app/actions/vectors-actions.c:66 -#, fuzzy msgid "New path with last values" -msgstr "" -"æ–°è¦ãƒ‘ス\n" -"%s æ–°è¦ãƒ‘スダイアログ" +msgstr "最後ã®å€¤ã§æ–°è¦ãƒ‘ス" #: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" @@ -2926,54 +2886,44 @@ msgstr "パスを削除" #: ../app/actions/vectors-actions.c:83 -#, fuzzy msgid "Merge _Visible Paths" -msgstr "/å¯è¦–パスã®çµ±åˆ(_V)" +msgstr "å¯è¦–パスã®çµ±åˆ(_V)" #: ../app/actions/vectors-actions.c:88 -#, fuzzy msgid "_Raise Path" -msgstr "/パスをå‰é¢ã¸(_R)" +msgstr "パスをå‰é¢ã¸(_R)" #: ../app/actions/vectors-actions.c:89 -#, fuzzy msgid "Raise path" -msgstr "パスを上昇" +msgstr "パスをå‰é¢ã¸" #: ../app/actions/vectors-actions.c:94 -#, fuzzy msgid "Raise Path to _Top" -msgstr "パスを最å‰é¢ã¸" +msgstr "パスを最å‰é¢ã¸(_T)" #: ../app/actions/vectors-actions.c:95 -#, fuzzy msgid "Raise path to top" msgstr "パスを最å‰é¢ã¸" #: ../app/actions/vectors-actions.c:100 -#, fuzzy msgid "_Lower Path" -msgstr "/パスを背é¢ã¸(_L)" +msgstr "パスを背é¢ã¸(_L)" #: ../app/actions/vectors-actions.c:101 -#, fuzzy msgid "Lower path" -msgstr "パスを下é™" +msgstr "パスを背é¢ã¸" #: ../app/actions/vectors-actions.c:106 -#, fuzzy msgid "Lower Path to _Bottom" -msgstr "パスを最背é¢ã¸" +msgstr "パスを最背é¢ã¸(_B)" #: ../app/actions/vectors-actions.c:107 -#, fuzzy msgid "Lower path to bottom" msgstr "パスを最背é¢ã¸" #: ../app/actions/vectors-actions.c:112 -#, fuzzy msgid "Stro_ke Path..." -msgstr "/パスをストロークæç”»(_K)..." +msgstr "パスをストロークæç”»(_K)..." #: ../app/actions/vectors-actions.c:113 msgid "Stroke path..." @@ -2984,9 +2934,8 @@ msgstr "パスをストロークæç”»(_K)" #: ../app/actions/vectors-actions.c:119 -#, fuzzy msgid "Stroke path with last values" -msgstr "æ画ツールを用ã„ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯" +msgstr "最後ã®å€¤ã§ãƒ‘スをストロークæç”»" #: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" @@ -3008,41 +2957,33 @@ msgid "Path to Sele_ction" msgstr "パスをé¸æŠžé ˜åŸŸã¸(_C)" -#: ../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 "パスをé¸æŠžé ˜åŸŸã¸" #: ../app/actions/vectors-actions.c:168 -#, fuzzy msgid "Fr_om Path" -msgstr "/é¸æŠž/パスをé¸æŠžé ˜åŸŸã¸(_o)" +msgstr "パスã‹ã‚‰(_O)" #: ../app/actions/vectors-actions.c:194 -#, fuzzy msgid "Selecti_on to Path" -msgstr "/é¸æŠžé ˜åŸŸã‚’パスã¸(_O)" +msgstr "é¸æŠžé ˜åŸŸã‚’パスã¸(_O)" #: ../app/actions/vectors-actions.c:195 -#, fuzzy msgid "Selection to path" -msgstr "/é¸æŠžé ˜åŸŸã‚’パスã¸(_O)" +msgstr "é¸æŠžé ˜åŸŸã‚’パスã¸" #: ../app/actions/vectors-actions.c:200 -#, fuzzy msgid "To _Path" -msgstr "パスã®ç§»å‹•" +msgstr "パスã¸(_P)" #: ../app/actions/vectors-actions.c:205 -#, fuzzy msgid "Selection to Path (_Advanced)" -msgstr "" -"é¸æŠžé ˜åŸŸã‚’パスã¸\n" -"%s 高度ãªã‚ªãƒ—ション" +msgstr "é¸æŠžé ˜åŸŸã‚’パスã¸(高度ãªã‚ªãƒ—ション)(_A)" #: ../app/actions/vectors-actions.c:206 -#, fuzzy msgid "Advanced options" -msgstr "ä¿å­˜ã‚ªãƒ—ション" +msgstr "高度ãªã‚ªãƒ—ション" #: ../app/actions/vectors-commands.c:140 msgid "Path Attributes" @@ -3065,72 +3006,60 @@ 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 "パスをストロークæç”»" #: ../app/actions/view-actions.c:63 -#, fuzzy msgid "_View" -msgstr "/表示(_V)" +msgstr "表示(_V)" #: ../app/actions/view-actions.c:64 -#, fuzzy msgid "_Zoom" -msgstr "ズーム:" +msgstr "ズーム(_Z)" #: ../app/actions/view-actions.c:65 -#, fuzzy msgid "_Padding Color" -msgstr "キャンãƒã‚¹å‘¨è¾ºã®è‰²:" +msgstr "キャンãƒã‚¹å‘¨è¾ºã®è‰²(_P)" #: ../app/actions/view-actions.c:73 msgid "_Close" msgstr "é–‰ã˜ã‚‹(_C)" #: ../app/actions/view-actions.c:78 -#, fuzzy msgid "_Fit Image in Window" -msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦" +msgstr "ウィンドウã®ç”»åƒã«åˆã‚ã›ã‚‹(_F)" #: ../app/actions/view-actions.c:79 -#, fuzzy msgid "Fit image in window" -msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦" +msgstr "ウィンドウã®ç”»åƒã«ã‚ã‚ã›ã‚‹" #: ../app/actions/view-actions.c:84 -#, fuzzy msgid "Fit Image to Window" msgstr "ウインドウã®å¤§ãã•ã«ã‚ã‚ã›ã‚‹" #: ../app/actions/view-actions.c:85 -#, fuzzy msgid "Fit image to window" msgstr "ウインドウã®å¤§ãã•ã«ã‚ã‚ã›ã‚‹" #: ../app/actions/view-actions.c:90 -#, fuzzy msgid "_Info Window" -msgstr "情報ウインドウ" +msgstr "情報ウインドウ(_I)" #: ../app/actions/view-actions.c:95 -#, fuzzy msgid "Na_vigation Window" -msgstr "/表示/ナビゲーションウィンドウ(_V)" +msgstr "ナビゲーションウィンドウ(_V)" #: ../app/actions/view-actions.c:100 -#, fuzzy msgid "Display _Filters..." -msgstr "/表示/ディスプレイフィルタ(_F)..." +msgstr "ディスプレイフィルタ(_F)..." #: ../app/actions/view-actions.c:105 -#, fuzzy msgid "Shrink _Wrap" -msgstr "ウィンドウサイズ調整" +msgstr "ウィンドウサイズ調整(_W)" #: ../app/actions/view-actions.c:106 -#, fuzzy msgid "Shrink wrap" msgstr "ウィンドウサイズ調整" @@ -3139,14 +3068,12 @@ msgstr "スクリーンã«ç§»å‹•..." #: ../app/actions/view-actions.c:119 -#, fuzzy msgid "_Dot for Dot" -msgstr "/表示/点ã«ç‚¹ã‚’対応ã•ã›ã‚‹(_D)" +msgstr "点ã«ç‚¹ã‚’対応ã•ã›ã‚‹(_D)" #: ../app/actions/view-actions.c:125 -#, fuzzy msgid "Show _Selection" -msgstr "é¸æŠžé ˜åŸŸã‚’表示ã™ã‚‹(_E)" +msgstr "é¸æŠžé ˜åŸŸã‚’表示ã™ã‚‹(_S)" #: ../app/actions/view-actions.c:131 msgid "Show _Layer Boundary" @@ -3157,19 +3084,16 @@ msgstr "ガイドを表示ã™ã‚‹(_G)" #: ../app/actions/view-actions.c:143 -#, fuzzy msgid "Sn_ap to Guides" -msgstr "/表示/ガイドã«ã‚¹ãƒŠãƒƒãƒ—(_A)" +msgstr "ガイドã«ã‚¹ãƒŠãƒƒãƒ—(_A)" #: ../app/actions/view-actions.c:149 -#, fuzzy msgid "S_how Grid" -msgstr "グリッドを表示ã™ã‚‹(_D)" +msgstr "グリッドを表示(_H)" #: ../app/actions/view-actions.c:155 -#, fuzzy msgid "Sna_p to Grid" -msgstr "/表示/グリッドã«ã‚¹ãƒŠãƒƒãƒ—(_P)" +msgstr "グリッドã«ã‚¹ãƒŠãƒƒãƒ—(_P)" #: ../app/actions/view-actions.c:161 msgid "Show _Menubar" @@ -3216,7 +3140,6 @@ msgstr "1:1" #: ../app/actions/view-actions.c:260 -#, fuzzy msgid "1:2 (50%)" msgstr "1:2 (50%)" @@ -3225,7 +3148,6 @@ msgstr "1:4 (25%)" #: ../app/actions/view-actions.c:270 -#, fuzzy msgid "1:8 (12.5%)" msgstr "1:8 (12.5%)" @@ -3234,14 +3156,12 @@ msgstr "1:16 (6.25%)" #: ../app/actions/view-actions.c:280 -#, fuzzy msgid "O_ther..." -msgstr "/é¸æŠž/境界をã¼ã‹ã™(_T)..." +msgstr "ãã®ä»–(_T)..." #: ../app/actions/view-actions.c:288 -#, fuzzy msgid "From _Theme" -msgstr "/テーマã‹ã‚‰(_T)" +msgstr "テーマã‹ã‚‰(_T)" #: ../app/actions/view-actions.c:293 msgid "_Light Check Color" @@ -3346,6 +3266,10 @@ "using different filenames, restart the Gimp and check the location of the " "swap directory in your Preferences." msgstr "" +"スワップファイルを開ã‘ã¾ã›ã‚“。メモリãŒä¸è¶³ã—ã¦ã‚‚スワップファイルãŒä½¿ãˆãªããª" +"ã‚Šã¾ã™ã€‚ç”»åƒã®æ§‹æˆè¦ç´ ãŒæ¬ ã‘ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚作業中ã®ã‚‚ã®ã‚’別ã®ãƒ•ã‚¡ã‚¤ãƒ«å" +"ã§ä¿å­˜ã—ã¦ã‹ã‚‰ã€ GIMP ã‚’å†èµ·å‹•ã—ã¦åˆæœŸè¨­å®šã®ã‚¹ãƒ¯ãƒƒãƒ—ディレトリã®å ´æ‰€ã‚’確èªã—" +"ã¦ãã ã•ã„。" #: ../app/config/gimpconfig-deserialize.c:100 #, c-format @@ -3364,7 +3288,7 @@ #: ../app/config/gimpconfig-deserialize.c:467 #, c-format msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" -msgstr "真å½å€¤ãƒˆãƒ¼ã‚¯ãƒ³ %s ã« 'yes' ã‹ 'no' ã§ãªã, '%s' ãŒã‚ã‚Šã¾ã™" +msgstr "真å½å€¤ãƒˆãƒ¼ã‚¯ãƒ³ %s ã« 'yes' ã‹ 'no' ã§ãªãã€'%s' ãŒã‚ã‚Šã¾ã™" #: ../app/config/gimpconfig-deserialize.c:541 #, c-format @@ -3412,8 +3336,8 @@ "There was an error parsing your '%s' file. Default values will be used. A " "backup of your configuration has been created at '%s'." msgstr "" -"ファイル '%s' ã®è§£æžä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ. デフォルトã®å€¤ãŒä½¿ç”¨ã•ã‚Œã¾ã™. " -"ã‚ãªãŸã®è¨­å®šã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—㌠'%s' ã«ä½œæˆã•ã‚Œã¾ã—ãŸ." +"ファイル '%s' ã®è§£æžä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚デフォルトã®å€¤ãŒä½¿ç”¨ã•ã‚Œã¾ã™ã€‚" +"ã‚ãªãŸã®è¨­å®šã®ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—㌠'%s' ã«ä½œæˆã•ã‚Œã¾ã—ãŸã€‚" #: ../app/config/gimpconfigwriter.c:130 #, c-format @@ -3427,7 +3351,7 @@ "The original file has not been touched." msgstr "" "'%s' ã®ä¸€æ™‚ファイルã®æ›¸ãè¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s\n" -"å…ƒã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒä½œæˆã•ã‚Œã¦ã¾ã›ã‚“." +"å…ƒã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒä½œæˆã•ã‚Œã¦ã¾ã›ã‚“。" #: ../app/config/gimpconfigwriter.c:625 #, c-format @@ -3436,7 +3360,7 @@ "No file has been created." msgstr "" "'%s' ã®ä¸€æ™‚ファイルã®æ›¸ãè¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s\n" -"ファイルãŒä½•ã‚‚作æˆã•ã‚Œã¦ã¾ã›ã‚“." +"ファイルãŒä½•ã‚‚作æˆã•ã‚Œã¦ã¾ã›ã‚“。" #: ../app/config/gimpconfigwriter.c:636 #, c-format @@ -3468,54 +3392,52 @@ "receives the focus. This is useful for window managers using \"click to focus" "\"." msgstr "" -"有効ã«ã™ã‚‹ã¨, ç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã«ãƒ•ã‚©ãƒ¼ã‚«ã‚¹ã‚’当ã¦ãŸéš›ã«ç”»åƒãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ç”»åƒã«ãª" -"ã‚Šã¾ã™.「クリックã—ã¦ãƒ•ã‚©ãƒ¼ã‚«ã‚¹ã‚’移動ã€ã•ã›ã‚‹ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ãƒžãƒãƒ¼ã‚¸ãƒ£ã«å¯¾ã—ã¦æœ‰åŠ¹" -"ã§ã™." +"有効ã«ã™ã‚‹ã¨ã€ç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã«ãƒ•ã‚©ãƒ¼ã‚«ã‚¹ã‚’当ã¦ãŸéš›ã«ç”»åƒãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ç”»åƒã«ãª" +"ã‚Šã¾ã™ã€‚「クリックã—ã¦ãƒ•ã‚©ãƒ¼ã‚«ã‚¹ã‚’移動ã€ã•ã›ã‚‹ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ãƒžãƒãƒ¼ã‚¸ãƒ£ã«å¯¾ã—ã¦æœ‰" +"効ã§ã™ã€‚" #: ../app/config/gimprc-blurbs.h:23 msgid "Specifies how the area around the image should be drawn." -msgstr "図形ã®è§’ã®æ画方法を指定ã—ã¾ã™." +msgstr "図形ã®è§’ã®æ画方法を指定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:26 msgid "" "Sets the canvas padding color used if the padding mode is set to custom " "color." -msgstr "キャンãƒã‚¹ã¾ã‚ã‚Šã®è‰²ãŒã‚«ã‚¹ã‚¿ãƒ ã‚«ãƒ©ãƒ¼ã«è¨­å®šã•ã‚ŒãŸéš›ã®è‰²ã‚’設定ã—ã¾ã™." +msgstr "キャンãƒã‚¹ã¾ã‚ã‚Šã®è‰²ãŒã‚«ã‚¹ã‚¿ãƒ ã‚«ãƒ©ãƒ¼ã«è¨­å®šã•ã‚ŒãŸéš›ã®è‰²ã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." -msgstr "未ä¿å­˜ã®ç”»åƒã‚’é–‰ã˜ã‚‹å‰ã«ç¢ºèªã‚’è¡Œã„ã¾ã™." +msgstr "未ä¿å­˜ã®ç”»åƒã‚’é–‰ã˜ã‚‹å‰ã«ç¢ºèªã‚’è¡Œã„ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:33 -#, fuzzy msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "GIMP ãŒä½¿ã†ã‚«ãƒ¼ã‚½ãƒ«ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã—ã¾ã™." +msgstr "GIMP ãŒä½¿ã†ã‚«ãƒ¼ã‚½ãƒ«ã®ãƒ”クセル形å¼ã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." -msgstr "GIMP ãŒä½¿ã†ã‚«ãƒ¼ã‚½ãƒ«ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã—ã¾ã™." +msgstr "GIMP ãŒä½¿ã†ã‚«ãƒ¼ã‚½ãƒ«ãƒ¢ãƒ¼ãƒ‰ã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:39 msgid "" "Context-dependent cursors are cool. They are enabled by default. However, " "they require overhead that you may want to do without." msgstr "" -"コンテキストã«ã‚ˆã£ãŸã‚«ãƒ¼ã‚½ãƒ«ã¯ã‚¯ãƒ¼ãƒ«ã§ã™. 標準ã§æœ‰åŠ¹ã«ãªã£ã¦ã„ã¾ã™ãŒ, 多少ã®" -"オーãƒãƒ¼ãƒ˜ãƒƒãƒ‰ãŒã‚ã‚‹ãŸã‚, 無効ã«ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™." +"コンテキストã«ã‚ˆã£ãŸã‚«ãƒ¼ã‚½ãƒ«ã¯ã‚¯ãƒ¼ãƒ«ã§ã™ã€‚標準ã§æœ‰åŠ¹ã«ãªã£ã¦ã„ã¾ã™ãŒã€å¤šå°‘ã®" +"オーãƒãƒ¼ãƒ˜ãƒƒãƒ‰ãŒã‚ã‚‹ãŸã‚ã€ç„¡åŠ¹ã«ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:47 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 msgid "This is the distance in pixels where Guide and Grid snapping activates." -msgstr "ガイドやグリッドã¸ã®ã‚¹ãƒŠãƒƒãƒ—ãŒæœ‰åŠ¹ã«ãªã‚‹è·é›¢ã‚’ピクセル数ã§è¨­å®šã—ã¾ã™." +msgstr "ガイドやグリッドã¸ã®ã‚¹ãƒŠãƒƒãƒ—ãŒæœ‰åŠ¹ã«ãªã‚‹è·é›¢ã‚’ピクセル数ã§è¨­å®šã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:77 -#, fuzzy msgid "" "Tools such as fuzzy-select and bucket fill find regions based on a seed-fill " "algorithm. The seed fill starts at the initially selected pixel and " @@ -3524,28 +3446,28 @@ "the default threshold." msgstr "" "ã‚ã„ã¾ã„é¸æŠžã‚„å¡—ã‚Šã¤ã¶ã—ツールã¯ç›®çš„ã®é ˜åŸŸã‚’種-充填アルゴリズムを用ã„ã¦æ±ºå®šã—" -"ã¾ã™. 種-å……å¡«ã¯èµ·ç‚¹ã¨ãªã‚‹ãƒ”クセルã‹ã‚‰, 全方å‘ã«ãƒ”クセルã®å½©åº¦ã®å¤‰åŒ–ãŒæŒ‡å®šã—ãŸ" -"ã—ãã„値ã«ãªã‚‹ã¾ã§å±•é–‹ã—ã¦ã„ãã¾ã™. ã“ã“ã§æŒ‡å®šã™ã‚‹å€¤ã¯ãã®åˆæœŸå€¤ã§ã™." +"ã¾ã™ã€‚種-å……å¡«ã¯èµ·ç‚¹ã¨ãªã‚‹ãƒ”クセルã‹ã‚‰ã€å…¨æ–¹å‘ã«ãƒ”クセルã®å½©åº¦ã®å¤‰åŒ–ãŒæŒ‡å®šã—ãŸ" +"ã—ãã„値ã«ãªã‚‹ã¾ã§å±•é–‹ã—ã¦ã„ãã¾ã™ã€‚ã“ã“ã§æŒ‡å®šã™ã‚‹å€¤ã¯ãã®åˆæœŸå€¤ã§ã™ã€‚" #: ../app/config/gimprc-blurbs.h:90 msgid "" "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." msgstr "" -"ドックウインドウã«æŒ‡å®šã•ã‚Œã‚‹ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã‚¿ã‚¤ãƒ—ヒントã§ã™. ウインドウマãƒãƒ¼ã‚¸ãƒ£" -"ã«ã‚ˆã‚‹, ドックウインドウã®è£…飾ã¨å–扱ã„ã«å½±éŸ¿ã‚’与ãˆã¾ã™." +"ドックウインドウã«æŒ‡å®šã•ã‚Œã‚‹ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã‚¿ã‚¤ãƒ—ヒントã§ã™ã€‚ウインドウマãƒãƒ¼ã‚¸ãƒ£" +"ã«ã‚ˆã‚‹ã€ãƒ‰ãƒƒã‚¯ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã®è£…飾ã¨å–扱ã„ã«å½±éŸ¿ã‚’与ãˆã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." -msgstr "有効ã«ã™ã‚‹ã¨, é¸æŠžã—ãŸãƒ–ラシãŒå…¨ã¦ã®ãƒ„ールã§ä½¿ç”¨ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™." +msgstr "有効ã«ã™ã‚‹ã¨ã€é¸æŠžã—ãŸãƒ–ラシãŒå…¨ã¦ã®ãƒ„ールã§ä½¿ç”¨ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:127 msgid "When enabled, the selected gradient will be used for all tools." -msgstr "有効ã«ã™ã‚‹ã¨, é¸æŠžã—ãŸã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãŒå…¨ã¦ã®ãƒ„ールã§æœ‰åŠ¹ã«ãªã‚Šã¾ã™." +msgstr "有効ã«ã™ã‚‹ã¨ã€é¸æŠžã—ãŸã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãŒå…¨ã¦ã®ãƒ„ールã§æœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:130 msgid "When enabled, the selected pattern will be used for all tools." -msgstr "有効ã«ã™ã‚‹ã¨, é¸æŠžã—ãŸãƒ‘ターンãŒå…¨ã¦ã®ãƒ„ールã§æœ‰åŠ¹ã«ãªã‚Šã¾ã™." +msgstr "有効ã«ã™ã‚‹ã¨ã€é¸æŠžã—ãŸãƒ‘ターンãŒå…¨ã¦ã®ãƒ„ールã§æœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." @@ -3553,69 +3475,67 @@ #: ../app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." -msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼ã«è¡¨ç¤ºã™ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã‚’設定ã—ã¾ã™." +msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼ã«è¡¨ç¤ºã™ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." -msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚¿ã‚¤ãƒˆãƒ«ã«è¡¨ç¤ºã™ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã‚’設定ã—ã¾ã™." +msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ã‚¿ã‚¤ãƒˆãƒ«ã«è¡¨ç¤ºã™ã‚‹ãƒ†ã‚­ã‚¹ãƒˆã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." -msgstr "オンã®å ´åˆ, GIMP ã¯ç”»åƒæ¯Žã«æƒ…報ウィンドウを用æ„ã—ã¾ã™." +msgstr "オンã®å ´åˆã€GIMP ã¯ç”»åƒæ¯Žã«æƒ…報ウィンドウを用æ„ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:163 msgid "" "When enabled, this will ensure that the full image is visible after a file " "is opened, otherwise it will be displayed with a scale of 1:1." msgstr "" -"有効ã«ã™ã‚‹ã¨, é–‹ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®ç”»åƒå…¨ä½“ãŒè¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™. 無効ãªå ´åˆ" -"ã«ã¯, ç”»åƒã¯æ‹¡å¤§çŽ‡ 1:1 ã§è¡¨ç¤ºã•ã‚Œã¾ã™." +"有効ã«ã™ã‚‹ã¨ã€é–‹ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®ç”»åƒå…¨ä½“ãŒè¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚無効ãªå ´åˆ" +"ã«ã¯ã€ç”»åƒã¯æ‹¡å¤§çŽ‡ 1:1 ã§è¡¨ç¤ºã•ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:167 -#, fuzzy msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." msgstr "" -"プライベートカラーマップを設定ã—ã¾ã™; 擬似カラービジュアルã«å¯¾ã—ã¦æœ‰åŠ¹ã§ã—ょ" -"ã†." +"プライベートカラーマップを設定ã—ã¾ã™; 8-ビット (256 色) ディスプレイã§ã¯æœ‰ç”¨" +"ã§ã—ょã†ã€‚" #: ../app/config/gimprc-blurbs.h:170 msgid "" "Sets the level of interpolation used for scaling and other transformations." -msgstr "拡大縮å°ã‚„ä»–ã®å¤‰æ›ã«ãŠã‘ã‚‹, 補間ã®ãƒ¬ãƒ™ãƒ«ã‚’設定ã—ã¾ã™." +msgstr "拡大縮å°ã‚„ä»–ã®å¤‰æ›ã«ãŠã‘ã‚‹ã€è£œé–“ã®ãƒ¬ãƒ™ãƒ«ã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:174 msgid "How many recently opened image filenames to keep on the File menu." -msgstr "ファイルメニュー上ã§è¦šãˆã¦ãŠã最近開ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®æ•°ã§ã™." +msgstr "ファイルメニュー上ã§è¦šãˆã¦ãŠã最近開ã„ãŸãƒ•ã‚¡ã‚¤ãƒ«ã®æ•°ã§ã™ã€‚" #: ../app/config/gimprc-blurbs.h:177 msgid "" "Speed of marching ants in the selection outline. This value is in " "milliseconds (less time indicates faster marching)." msgstr "" -"é¸æŠžé ˜åŸŸå‘¨å›²ã®èŸ»ã®è¡Œé€²é€Ÿåº¦ã§ã™. ã“ã®å€¤ã¯ãƒŸãƒªç§’å˜ä½ã§, 値をå°ãã™ã‚‹ã¨é€Ÿã行進" -"ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™." +"é¸æŠžé ˜åŸŸå‘¨å›²ã®èŸ»ã®è¡Œé€²é€Ÿåº¦ã§ã™ã€‚ã“ã®å€¤ã¯ãƒŸãƒªç§’å˜ä½ã§ã€å€¤ã‚’å°ãã™ã‚‹ã¨é€Ÿã行進" +"ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:181 msgid "" "GIMP will warn the user if an attempt is made to create an image that would " "take more memory than the size specified here." msgstr "" -"ã“ã“ã§æŒ‡å®šã—ãŸä»¥ä¸Šã®ãƒ¡ãƒ¢ãƒªé ˜åŸŸã‚’å¿…è¦ã¨ã™ã‚‹ç”»åƒã‚’作æˆã—よã†ã¨ã™ã‚‹ã¨, GIMP ãŒè­¦" -"å‘Šã‚’è¡Œã„ã¾ã™." +"ã“ã“ã§æŒ‡å®šã—ãŸä»¥ä¸Šã®ãƒ¡ãƒ¢ãƒªé ˜åŸŸã‚’å¿…è¦ã¨ã™ã‚‹ç”»åƒã‚’作æˆã—よã†ã¨ã™ã‚‹ã¨ã€GIMP ãŒè­¦" +"å‘Šã‚’è¡Œã„ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:185 -#, fuzzy msgid "When enabled, GIMP will show mnemonics in menus." -msgstr "オンã®å ´åˆ, GIMP ã¯ç”»åƒæ¯Žã«æƒ…報ウィンドウを用æ„ã—ã¾ã™." +msgstr "オンã®å ´åˆã€GIMP ã¯ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã«ãƒ‹ãƒ¼ãƒ¢ãƒ‹ãƒƒã‚¯ã‚’表示ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:188 msgid "" "Generally only a concern for 8-bit displays, this sets the minimum number of " "system colors allocated for the GIMP." msgstr "" -"8-bit ディスプレイã«ã®ã¿é–¢ä¿‚ã—ã¾ã™ãŒ, GIMP ã§åˆ©ç”¨ã§ãる最å°ã®ã‚·ã‚¹ãƒ†ãƒ ã‚«ãƒ©ãƒ¼æ•°" -"を指定ã—ã¾ã™." +"8-bit ディスプレイã«ã®ã¿é–¢ä¿‚ã—ã¾ã™ãŒã€GIMP ã§åˆ©ç”¨ã§ãる最å°ã®ã‚·ã‚¹ãƒ†ãƒ ã‚«ãƒ©ãƒ¼æ•°" +"を指定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:199 msgid "" @@ -3623,6 +3543,8 @@ "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"モニタã®æ°´å¹³è§£åƒåº¦ã‚’ dpi å˜ä½ã§è¨­å®šã—ã¾ã™ã€‚ 0 ã«è¨­å®šã™ã‚‹ã¨ã€æ°´å¹³ãŠã‚ˆã³åž‚直解" +"åƒåº¦ã®æƒ…報を X サーãƒã«å•ã„åˆã‚ã›ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:204 msgid "" @@ -3630,6 +3552,8 @@ "forces the X server to be queried for both horizontal and vertical " "resolution information." msgstr "" +"モニタã®åž‚直解åƒåº¦ã‚’ dpi å˜ä½ã§è¨­å®šã—ã¾ã™ã€‚ 0 ã«è¨­å®šã™ã‚‹ã¨ã€æ°´å¹³ãŠã‚ˆã³åž‚直解" +"åƒåº¦ã®æƒ…報を X サーãƒã«å•ã„åˆã‚ã›ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:209 msgid "" @@ -3637,21 +3561,24 @@ "path is being picked. This used to be the default behaviour in older " "versions." msgstr "" +"有効ã«ã™ã‚‹ã¨ã€ç§»å‹•ãƒ„ールã¯ã€ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚„パスをã¤ã‹ã‚“ã æ™‚ã«ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªãƒ¬ã‚¤ãƒ¤ãƒ¼" +"やパスを変更ã—ã¾ã™ã€‚ã“ã‚Œã¯ã€ä»¥å‰ã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®æŒ™å‹•ã§ã™ã€‚" #: ../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 msgid "" "On multiprocessor machines, if GIMP has been compiled with --enable-mp this " "sets how many processors GIMP should use simultaneously." msgstr "" -"--enable-mp を指定ã—ã¦ã‚³ãƒ³ãƒ‘イルã•ã‚ŒãŸ GIMP ãŒ, マルãƒãƒ—ロセッサ機上ã§åŒæ™‚ã«" -"利用ã™ã‚‹ãƒ—ロセッサã®æ•°ã‚’指定ã—ã¾ã™." +"--enable-mp を指定ã—ã¦ã‚³ãƒ³ãƒ‘イルã•ã‚ŒãŸ GIMP ãŒã€ãƒžãƒ«ãƒãƒ—ロセッサ機上ã§åŒæ™‚ã«" +"利用ã™ã‚‹ãƒ—ロセッサã®æ•°ã‚’指定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:232 msgid "" @@ -3661,10 +3588,10 @@ "Perversely, on some X servers enabling this option results in faster " "painting." msgstr "" -"有効ã«ã™ã‚‹ã¨, ä½ç½®ã®ãƒ’ントã«åŸºãã®ã§ã¯ãªã, 個々ã®ãƒ¢ãƒ¼ã‚·ãƒ§ãƒ³ã‚¤ãƒ™ãƒ³ãƒˆã«å¯¾ã—ã¦" -"マウスã®ç¾åœ¨ä½ç½®ã‚’ X サーãƒã«å•åˆã›ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™. 大ããªãƒ–ラシを用ã„ã¦æç”»" -"ã™ã‚‹éš›ã«æ­£ç¢ºã«ãªã‚Šã¾ã™ãŒ, 多少é…ããªã‚Šã¾ã™. ã„ãã¤ã‹ã®å¤©é‚ªé¬¼ãª X サーãƒã«å¯¾ã—" -"ã¦ã¯, 逆ã«é€Ÿããªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™." +"有効ã«ã™ã‚‹ã¨ã€ä½ç½®ã®ãƒ’ントã«åŸºãã®ã§ã¯ãªãã€å€‹ã€…ã®ãƒ¢ãƒ¼ã‚·ãƒ§ãƒ³ã‚¤ãƒ™ãƒ³ãƒˆã«å¯¾ã—ã¦" +"マウスã®ç¾åœ¨ä½ç½®ã‚’ X サーãƒã«å•åˆã›ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚大ããªãƒ–ラシを用ã„ã¦æç”»" +"ã™ã‚‹éš›ã«æ­£ç¢ºã«ãªã‚Šã¾ã™ãŒã€å¤šå°‘é…ããªã‚Šã¾ã™ã€‚ã„ãã¤ã‹ã®å¤©é‚ªé¬¼ãª X サーãƒã«å¯¾ã—" +"ã¦ã¯ã€é€†ã«é€Ÿããªã‚‹å ´åˆã‚‚ã‚ã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:245 msgid "" @@ -3672,53 +3599,53 @@ "the layers and channels dialog are nice to have but they can slow things " "down when working with large images." msgstr "" -"GIMP ãŒãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ—レビューを作æˆã™ã‚‹ã‹ã©ã†ã‹ã‚’指定ã—ã¾ã™. レイ" -"ヤーã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã«ãŠã‘るプレビューã¯ä¾¿åˆ©ã§ã™ãŒ, 大ããªç”»åƒã‚’å–ã‚Š" -"扱ã†å ´åˆã«ã¯å‹•ä½œãŒé‡ããªã‚Šã¾ã™." +"GIMP ãŒãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ—レビューを作æˆã™ã‚‹ã‹ã©ã†ã‹ã‚’指定ã—ã¾ã™ã€‚レイ" +"ヤーã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã«ãŠã‘るプレビューã¯ä¾¿åˆ©ã§ã™ãŒã€å¤§ããªç”»åƒã‚’å–ã‚Š" +"扱ã†å ´åˆã«ã¯å‹•ä½œãŒé‡ããªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:250 -#, fuzzy msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." -msgstr "レイヤーã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã®ãƒ—レビューサイズを設定ã—ã¾ã™." +msgstr "" +"æ–°è¦ä½œæˆãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã§ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒ—レビューサイズを設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:254 msgid "" "When enabled, the image window will automatically resize itself, whenever " "the physical image size changes." msgstr "" -"有効ã«ã™ã‚‹ã¨, 実際ã®ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰ã‚ã£ãŸæ™‚ã«è‡ªå‹•çš„ã«ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒãƒªã‚µã‚¤ã‚º" -"ã•ã‚Œã¾ã™." +"有効ã«ã™ã‚‹ã¨ã€å®Ÿéš›ã®ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰ã‚ã£ãŸæ™‚ã«è‡ªå‹•çš„ã«ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒãƒªã‚µã‚¤ã‚º" +"ã•ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:258 msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." msgstr "" -"有効ã«ã™ã‚‹ã¨, ç”»åƒã®ã‚ºãƒ¼ãƒ ã‚¤ãƒ³ã‚„アウトを行ã£ãŸéš›ã«è‡ªå‹•çš„ã«ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒãƒª" -"サイズã•ã‚Œã¾ã™." +"有効ã«ã™ã‚‹ã¨ã€ç”»åƒã®ã‚ºãƒ¼ãƒ ã‚¤ãƒ³ã‚„アウトを行ã£ãŸéš›ã«è‡ªå‹•çš„ã«ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒãƒª" +"サイズã•ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." -msgstr "GIMP ãŒèµ·å‹•æ™‚ã«æœ€å¾Œã«ç·¨é›†ã—ãŸéš›ã®çŠ¶æ…‹ã‚’復旧ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™." +msgstr "GIMP ãŒèµ·å‹•æ™‚ã«æœ€å¾Œã«ç·¨é›†ã—ãŸéš›ã®çŠ¶æ…‹ã‚’復旧ã™ã‚‹ã‚ˆã†ã«ãªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:265 msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." -msgstr "ç¾åœ¨ã®ãƒ„ール, パターン, 色やブラシを次ã®èµ·å‹•æ™‚ã«æ€ã„出ã™." +msgstr "ç¾åœ¨ã®ãƒ„ールã€ãƒ‘ターンã€è‰²ã‚„ブラシを次ã®èµ·å‹•æ™‚ã«æ€ã„出ã™ã€‚" #: ../app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." -msgstr "GIMP 終了時ã«ãƒ¡ã‚¤ãƒ³ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã®ä½ç½®ã¨å¤§ãã•ã‚’ä¿å­˜ã—ã¾ã™." +msgstr "GIMP 終了時ã«ãƒ¡ã‚¤ãƒ³ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã®ä½ç½®ã¨å¤§ãã•ã‚’ä¿å­˜ã—ã¾ã™ã€‚" #: ../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 msgid "" @@ -3726,85 +3653,87 @@ "related help page. Without this button, the help page can still be reached " "by pressing F1." msgstr "" +"有効ã«ã™ã‚‹ã¨ã€ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã«é–¢é€£ã™ã‚‹ãƒ˜ãƒ«ãƒ—ページをå‚ç…§ã™ã‚‹ãŸã‚ã®ãƒ˜ãƒ«ãƒ—ボタンãŒ" +"表示ã•ã‚Œã¾ã™ã€‚ã“ã®ãƒœã‚¿ãƒ³ãŒãªãã¦ã‚‚〠F1 キーを押ã›ã°ãƒ˜ãƒ«ãƒ—ページをå‚ç…§ã§ãã¾" +"ã™ã€‚" #: ../app/config/gimprc-blurbs.h:284 -#, fuzzy msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." -msgstr "オンã®å ´åˆ, GIMP ã¯ç”»åƒãŒå¤‰æ›´ã•ã‚Œãªã„é™ã‚Šä¿å­˜ã—ãªã„よã†ã«ãªã‚Šã¾ã™." +msgstr "有効ã«ã™ã‚‹ã¨ã€æ画ツール使用中ã¯ã€ç”»åƒä¸Šã«ã‚«ãƒ¼ã‚½ãƒ«ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:288 msgid "" "When enabled, the menubar is visible by default. This can also be toggled " "with the \"View->Show Menubar\" command." msgstr "" -"有効ã«ã™ã‚‹ã¨, デフォルトã§ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒãƒ¼ã‚’表示ã—ã¾ã™. ã“れ㯠\"表示->メニュー" -"ãƒãƒ¼\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"有効ã«ã™ã‚‹ã¨ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãƒãƒ¼ã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->メニュー" +"ãƒãƒ¼\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:292 msgid "" "When enabled, the rulers are visible by default. This can also be toggled " "with the \"View->Show Rulers\" command." msgstr "" -"有効ã«ã™ã‚‹ã¨, デフォルトã§ã‚‚ã®ã•ã—ãŒè¡¨ç¤ºã•ã‚Œã¾ã™. ã“れ㯠\"表示->ã‚‚ã®ã•ã—\" " -"コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"有効ã«ã™ã‚‹ã¨ã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ã‚‚ã®ã•ã—ãŒè¡¨ç¤ºã•ã‚Œã¾ã™ã€‚ã“れ㯠\"表示->ã‚‚ã®ã•ã—\" " +"コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:296 msgid "" "When enabled, the scrollbars are visible by default. This can also be " "toggled with the \"View->Show Scrollbars\" command." msgstr "" -"オンã®å ´åˆ, デフォルトã§ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã‚’表示ã—ã¾ã™. ã“れ㯠\"表示->スクロール" -"ãƒãƒ¼\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"オンã®å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ«ãƒãƒ¼ã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->スクロール" +"ãƒãƒ¼\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:300 msgid "" "When enabled, the statusbar is visible by default. This can also be toggled " "with the \"View->Show Statusbar\" command." msgstr "" -"オンã®å ´åˆ, デフォルトã§ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼ã‚’表示ã—ã¾ã™. ã“れ㯠\"表示->ステータス" -"ãƒãƒ¼\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"オンã®å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ã‚¹ãƒ†ãƒ¼ã‚¿ã‚¹ãƒãƒ¼ã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->ステータス" +"ãƒãƒ¼\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:304 msgid "" "When enabled, the selection is visible by default. This can also be toggled " "with the \"View->Show Selection\" command." msgstr "" -"オンã®å ´åˆ, デフォルトã§é¸æŠžé ˜åŸŸã‚’表示ã—ã¾ã™. ã“れ㯠\"表示->é¸æŠžé ˜åŸŸ\" コマ" -"ンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"オンã®å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§é¸æŠžé ˜åŸŸã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->é¸æŠžé ˜åŸŸ\" コマ" +"ンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:308 msgid "" "When enabled, the layer boundary is visible by default. This can also be " "toggled with the \"View->Show Layer Boundary\" command." msgstr "" -"オンã®å ´åˆ, デフォルトã§ãƒ¬ã‚¤ãƒ¤ãƒ¼å¢ƒç•Œã‚’表示ã—ã¾ã™. ã“れ㯠\"表示->レイヤー境界" -"\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"オンã®å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ãƒ¬ã‚¤ãƒ¤ãƒ¼å¢ƒç•Œã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->レイヤー境界" +"\" コマンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:312 msgid "" "When enabled, the guides are visible by default. This can also be toggled " "with the \"View->Show Guides\" command." msgstr "" -"オンã®å ´åˆ, デフォルトã§ã‚‚ã®ã•ã—を表示ã—ã¾ã™. ã“れ㯠\"表示->ã‚‚ã®ã•ã—\" コマ" -"ンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"オンã®å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ã‚¬ã‚¤ãƒ‰ã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->ガイド\" コマンド" +"ã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:316 msgid "" "When enabled, the grid is visible by default. This can also be toggled with " "the \"View->Show Grid\" command." msgstr "" -"オンã®å ´åˆ, デフォルトã§ã‚°ãƒªãƒƒãƒ‰ã‚’表示ã—ã¾ã™. ã“れ㯠\"表示->グリッド\" コマ" -"ンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™." +"オンã®å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§ã‚°ãƒªãƒƒãƒ‰ã‚’表示ã—ã¾ã™ã€‚ã“れ㯠\"表示->グリッド\" コマ" +"ンドã§ã‚‚切り替ãˆã‚‰ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." -msgstr "起動時ã«GIMPã®æŠ€ã‚’表示ã—ã¾ã™." +msgstr "起動時ã«GIMPã®æŠ€ã‚’表示ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." -msgstr "ツールãƒãƒƒãƒ—を表示ã—ã¾ã™." +msgstr "ツールãƒãƒƒãƒ—を表示ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:326 msgid "" @@ -3812,9 +3741,9 @@ "the GIMP opts for speed over memory. However, if memory is a big issue, try " "to enable this setting." msgstr "" -"メモリ使用é‡ã¨é€Ÿåº¦ã«ã¯å¸¸æ™‚トレードオフãŒæˆç«‹ã—ã¾ã™. 大抵ã®å ´åˆ, GIMP ã¯ãƒ¡ãƒ¢ãƒª" -"よりもスピードを優先ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ã¾ã™. ã—ã‹ã—ãªãŒã‚‰, メモリ使用é‡ã®æ–¹ãŒ" -"é‡è¦ã§ã‚ã‚‹å ´åˆã«ã¯, ã“れを有効ã«ã—ã¦ã¿ã¦ãã ã•ã„." +"メモリ使用é‡ã¨é€Ÿåº¦ã«ã¯å¸¸æ™‚トレードオフãŒæˆç«‹ã—ã¾ã™ã€‚大抵ã®å ´åˆã€GIMP ã¯ãƒ¡ãƒ¢ãƒª" +"よりもスピードを優先ã™ã‚‹ã‚ˆã†ã«ãªã£ã¦ã„ã¾ã™ã€‚ã—ã‹ã—ãªãŒã‚‰ã€ãƒ¡ãƒ¢ãƒªä½¿ç”¨é‡ã®æ–¹ãŒ" +"é‡è¦ã§ã‚ã‚‹å ´åˆã«ã¯ã€ã“れを有効ã«ã—ã¦ã¿ã¦ãã ã•ã„。" #: ../app/config/gimprc-blurbs.h:331 msgid "" @@ -3825,32 +3754,32 @@ "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\"." msgstr "" -"スワップファイルã®å ´æ‰€ã‚’設定ã—ã¾ã™. GIMP ã¯ã‚¿ã‚¤ãƒ«ãƒ™ãƒ¼ã‚¹ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿æ–¹å¼ã‚’利用" -"ã—ã¾ã™. スワップファイルã¯ã‚¹ãƒ¯ãƒƒãƒ—タイルをディスクã«æ›¸ã出ã—ãŸã‚Šæˆ»ã—ãŸã‚Šã™ã‚‹" -"éš›ã«åˆ©ç”¨ã•ã‚Œã¾ã™. GIMP ã§å¤§ããªç”»åƒã‚’å–り扱ã†å ´åˆã«ã¯, スワップファイルã¯å®¹æ˜“" -"ã«å·¨å¤§ã«ãªã£ã¦ã—ã¾ã„ã¾ã™. NFS 経由ã§ãƒžã‚¦ãƒ³ãƒˆã•ã‚ŒãŸãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªä¸Šã«ã‚¹ãƒ¯ãƒƒãƒ—" -"ファイルを作æˆã™ã‚‹ã¨, ã¨ã¦ã¤ã‚‚ãªã動作ãŒé…ããªã£ã¦ã—ã¾ã„ã¾ã™. ãã®ãŸã‚, \"/" -"tmp\" ã«ã‚¹ãƒ¯ãƒƒãƒ—ファイルを作æˆã™ã‚‹ã“ã¨ãŒæœ›ã¾ã—ã„ã§ã™." +"スワップファイルã®å ´æ‰€ã‚’設定ã—ã¾ã™ã€‚GIMP ã¯ã‚¿ã‚¤ãƒ«ãƒ™ãƒ¼ã‚¹ã®ãƒ¡ãƒ¢ãƒªç¢ºä¿æ–¹å¼ã‚’利用" +"ã—ã¾ã™ã€‚スワップファイルã¯ã‚¹ãƒ¯ãƒƒãƒ—タイルをディスクã«æ›¸ã出ã—ãŸã‚Šæˆ»ã—ãŸã‚Šã™ã‚‹" +"éš›ã«åˆ©ç”¨ã•ã‚Œã¾ã™ã€‚GIMP ã§å¤§ããªç”»åƒã‚’å–り扱ã†å ´åˆã«ã¯ã€ã‚¹ãƒ¯ãƒƒãƒ—ファイルã¯å®¹æ˜“" +"ã«å·¨å¤§ã«ãªã£ã¦ã—ã¾ã„ã¾ã™ã€‚NFS 経由ã§ãƒžã‚¦ãƒ³ãƒˆã•ã‚ŒãŸãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªä¸Šã«ã‚¹ãƒ¯ãƒƒãƒ—" +"ファイルを作æˆã™ã‚‹ã¨ã€ã¨ã¦ã¤ã‚‚ãªã動作ãŒé…ããªã£ã¦ã—ã¾ã„ã¾ã™ã€‚ãã®ãŸã‚ã€\"/" +"tmp\" ã«ã‚¹ãƒ¯ãƒƒãƒ—ファイルを作æˆã™ã‚‹ã“ã¨ãŒæœ›ã¾ã—ã„ã§ã™ã€‚" #: ../app/config/gimprc-blurbs.h:340 msgid "When enabled, menus can be torn off." -msgstr "オンã®å ´åˆ, メニューãŒåˆ‡ã‚Šé›¢ã›ã¾ã™." +msgstr "オンã®å ´åˆã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒåˆ‡ã‚Šé›¢ã›ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:343 msgid "" "When enabled, you can change keyboard shortcuts for menu items by hitting a " "key combination while the menu item is highlighted." msgstr "" -"オンã®å ´åˆ, メニューアイテムãŒé¸æŠžã•ã‚Œã¦ã„る時ã«ã‚­ãƒ¼ã®çµ„ã¿åˆã‚ã›ã‚’入力ã™ã‚‹ã“" -"ã¨ã§, キーボードショートカットを変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™." +"オンã®å ´åˆã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚¢ã‚¤ãƒ†ãƒ ãŒé¸æŠžã•ã‚Œã¦ã„る時ã«ã‚­ãƒ¼ã®çµ„ã¿åˆã‚ã›ã‚’入力ã™ã‚‹ã“" +"ã¨ã§ã€ã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’変更ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." -msgstr "GIMP 終了時ã«å¤‰æ›´ã•ã‚ŒãŸã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’ä¿å­˜ã—ã¾ã™." +msgstr "GIMP 終了時ã«å¤‰æ›´ã•ã‚ŒãŸã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’ä¿å­˜ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." -msgstr "GIMP 起動時ã«ä¿å­˜ã•ã‚Œã¦ã„るキーボードショートカットを読ã¿è¾¼ã¿ã¾ã™." +msgstr "GIMP 起動時ã«ä¿å­˜ã•ã‚Œã¦ã„るキーボードショートカットを読ã¿è¾¼ã¿ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:353 msgid "" @@ -3859,25 +3788,26 @@ "but some files are likely to remain, so it is best if this directory not be " "one that is shared by other users." msgstr "" -"一時ä¿å­˜ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’指定ã—ã¾ã™. GIMP 実行中ã«ãƒ•ã‚¡ã‚¤ãƒ«ãŒä½œæˆã•ã‚Œã¾ã™. ã»ã¨ã‚“" -"ã©ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP 終了時ã«å‰Šé™¤ã•ã‚Œã¾ã™, ã—ã‹ã—ãªãŒã‚‰, ã„ãã¤ã‹ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯" -"残りã¾ã™ã®ã§, ä»–ã®ãƒ¦ãƒ¼ã‚¶ã¨å…±æœ‰ã•ã‚Œãªã„ディレクトリを指定ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾" -"ã™." +"一時ä¿å­˜ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’指定ã—ã¾ã™ã€‚GIMP 実行中ã«ãƒ•ã‚¡ã‚¤ãƒ«ãŒä½œæˆã•ã‚Œã¾ã™ã€‚ã»ã¨ã‚“" +"ã©ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP 終了時ã«å‰Šé™¤ã•ã‚Œã¾ã™ã€ã—ã‹ã—ãªãŒã‚‰ã€ã„ãã¤ã‹ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯" +"残りã¾ã™ã®ã§ã€ä»–ã®ãƒ¦ãƒ¼ã‚¶ã¨å…±æœ‰ã•ã‚Œãªã„ディレクトリを指定ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾" +"ã™ã€‚" #: ../app/config/gimprc-blurbs.h:365 -#, fuzzy msgid "" "Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can " "not create thumbnails if layer previews are disabled." msgstr "" -"個々ã®ç”»åƒã«ã¤ã„ã¦ä¿å­˜ã•ã‚Œã‚‹ã‚µãƒ ãƒã‚¤ãƒ«ã®å¤§ãã•ã‚’指定ã—ã¾ã™. GIMP ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ—" -"レビューãŒç„¡åŠ¹ã«ãªã£ã¦ã„ã‚‹å ´åˆã«ã¯ã‚µãƒ ãƒã‚¤ãƒ«ã‚’ä¿å­˜ã—ã¾ã›ã‚“." +"ç”»åƒã‚’é–‹ãダイアログã§è¡¨ç¤ºã•ã‚Œã‚‹ã‚µãƒ ãƒã‚¤ãƒ«ã®å¤§ãã•ã‚’指定ã—ã¾ã™ã€‚GIMP ã¯ãƒ¬ã‚¤" +"ヤープレビューãŒç„¡åŠ¹ã«ãªã£ã¦ã„ã‚‹å ´åˆã«ã¯ã‚µãƒ ãƒã‚¤ãƒ«ã‚’ä¿å­˜ã—ã¾ã›ã‚“。" #: ../app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" +"プレビューã—ã¦ã„るファイルãŒã“ã“ã§è¨­å®šã—ãŸã‚µã‚¤ã‚ºã‚ˆã‚Šå°ã•ã‹ã£ãŸå ´åˆã€ãƒ•ã‚¡ã‚¤ãƒ«" +"ã‚’é–‹ãダイアログã®ã‚µãƒ ãƒã‚¤ãƒ«ã¯è‡ªå‹•çš„ã«æ›´æ–°ã•ã‚Œã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:373 msgid "" @@ -3887,39 +3817,39 @@ "smaller cache size causes the GIMP to use more swap space and less memory." msgstr "" "タイルキャッシュ㯠GIMP ãŒã‚¿ã‚¤ãƒ«ã‚’メモリã¨ãƒ‡ã‚£ã‚¹ã‚¯ã®é–“ã§ã‚¹ãƒ©ãƒƒã‚·ãƒ³ã‚°ã•ã›ãªã„" -"よã†ã«ã™ã‚‹ãŸã‚ã«ç”¨ã„られã¾ã™. ã“ã®å€¤ã‚’大ããã™ã‚‹ã¨ GIMP ã®ã‚¹ãƒ¯ãƒƒãƒ—利用é‡ã¯æ¸›" -"å°‘ã—ã¾ã™ãŒ, メモリ利用é‡ã¯å¢—加ã—ã¾ã™. 逆ã«å°ãã™ã‚‹ã¨, スワップ利用é‡ã¯å¢—加" -"ã—, メモリ利用é‡ã¯æ¸›å°‘ã—ã¾ã™." +"よã†ã«ã™ã‚‹ãŸã‚ã«ç”¨ã„られã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã¨ GIMP ã®ã‚¹ãƒ¯ãƒƒãƒ—利用é‡ã¯æ¸›" +"å°‘ã—ã¾ã™ãŒã€ãƒ¡ãƒ¢ãƒªåˆ©ç”¨é‡ã¯å¢—加ã—ã¾ã™ã€‚逆ã«å°ã•ãã™ã‚‹ã¨ã€ã‚¹ãƒ¯ãƒƒãƒ—利用é‡ã¯å¢—加" +"ã—ã€ãƒ¡ãƒ¢ãƒªåˆ©ç”¨é‡ã¯æ¸›å°‘ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:384 msgid "" "The window type hint that is set on the toolbox. This may affect how your " "window manager decorates and handles the toolbox window." msgstr "" -"ツールボックスã«è¨­å®šã•ã‚Œã‚‹ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚¿ã‚¤ãƒ—ヒントã§ã™. ウィンドウマãƒãƒ¼ã‚¸ãƒ£ã«" -"よるツールボックスウィンドウã®è£…飾ã¨å–扱ã„ã«å½±éŸ¿ã‚’与ãˆã¾ã™." +"ツールボックスã«è¨­å®šã•ã‚Œã‚‹ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚¿ã‚¤ãƒ—ヒントã§ã™ã€‚ウィンドウマãƒãƒ¼ã‚¸ãƒ£ã«" +"よるツールボックスウィンドウã®è£…飾ã¨å–扱ã„ã«å½±éŸ¿ã‚’与ãˆã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." -msgstr "ç”»åƒå†…ã®é€æ˜Žéƒ¨åˆ†ã®è¡¨ç¤ºæ–¹æ³•ã«ã¤ã„ã¦è¨­å®šã—ã¾ã™." +msgstr "ç”»åƒå†…ã®é€æ˜Žéƒ¨åˆ†ã®è¡¨ç¤ºæ–¹æ³•ã«ã¤ã„ã¦è¨­å®šã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." -msgstr "é€æ˜Žéƒ¨åˆ†ã®è¡¨ç¤ºã«ä½¿ã†ãƒã‚§ãƒƒã‚«ãƒ¼ãƒœãƒ¼ãƒ‰ã®å¤§ãã•ã‚’設定ã—ã¾ã™." +msgstr "é€æ˜Žéƒ¨åˆ†ã®è¡¨ç¤ºã«ä½¿ã†ãƒã‚§ãƒƒã‚«ãƒ¼ãƒœãƒ¼ãƒ‰ã®å¤§ãã•ã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:394 msgid "" "When enabled, the GIMP will not save if the image is unchanged since opening " "it." -msgstr "オンã®å ´åˆ, GIMP ã¯ç”»åƒãŒå¤‰æ›´ã•ã‚Œãªã„é™ã‚Šä¿å­˜ã—ãªã„よã†ã«ãªã‚Šã¾ã™." +msgstr "オンã®å ´åˆã€GIMP ã¯ç”»åƒãŒå¤‰æ›´ã•ã‚Œãªã„é™ã‚Šä¿å­˜ã—ãªã„よã†ã«ãªã‚Šã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:398 msgid "" "Sets the minimal number of operations that can be undone. More undo levels " "are kept available until the undo-size limit is reached." msgstr "" -"アンドゥå¯èƒ½ãªæ“作ã®æœ€å°å›žæ•°ã‚’指定ã—ã¾ã™. アンドゥサイズã®é™ç•Œã«é”ã™ã‚‹ã¾ã§, " -"アンドゥを増やã™ã“ã¨ãŒã§ãã¾ã™." +"å–り消ã—å¯èƒ½ãªæ“作ã®æœ€å°å›žæ•°ã‚’指定ã—ã¾ã™ã€‚å–り消ã—サイズã®é™ç•Œã«é”ã™ã‚‹ã¾ã§ã€" +"å–り消ã—を増やã™ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:402 msgid "" @@ -3927,17 +3857,17 @@ "on the undo stack. Regardless of this setting, at least as many undo-levels " "as configured can be undone." msgstr "" -"アンドゥスタックã«é…ç½®ã•ã‚Œã‚‹æ“作ã®ä¸€ç”»åƒã‚ãŸã‚Šã®ãƒ¡ãƒ¢ãƒªä½¿ç”¨é‡ã®ä¸Šé™å€¤ã‚’設定ã—" -"ã¾ã™. ã“ã®è¨­å®šã«ã‚ˆã‚‰ãš, å°‘ãã¨ã‚‚アンドゥレベルã§è¨­å®šã•ã‚ŒãŸå›žæ•°åˆ†ã¯ã‚¢ãƒ³ãƒ‰ã‚¥å¯" -"能ã§ã™." +"å–り消ã—スタックã«é…ç½®ã•ã‚Œã‚‹æ“作ã®ä¸€ç”»åƒã‚ãŸã‚Šã®ãƒ¡ãƒ¢ãƒªä½¿ç”¨é‡ã®ä¸Šé™å€¤ã‚’設定ã—" +"ã¾ã™ã€‚ã“ã®è¨­å®šã«ã‚ˆã‚‰ãšã€å°‘ãã¨ã‚‚å–り消ã—レベルã§è¨­å®šã•ã‚ŒãŸå›žæ•°åˆ†ã¯å–り消ã—å¯" +"能ã§ã™ã€‚" #: ../app/config/gimprc-blurbs.h:407 msgid "Sets the size of the previews in the Undo History." -msgstr "アンドゥ履歴ã®ãƒ—レビューã®å¤§ãã•ã‚’設定ã—ã¾ã™." +msgstr "å–り消ã—履歴ã®ãƒ—レビューã®å¤§ãã•ã‚’設定ã—ã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:410 msgid "When enabled, pressing F1 will open the help browser." -msgstr "オンã®å ´åˆ, F1キーを押ã™ã¨ãƒ˜ãƒ«ãƒ—ブラウザãŒé–‹ãã¾ã™." +msgstr "オンã®å ´åˆã€F1キーを押ã™ã¨ãƒ˜ãƒ«ãƒ—ブラウザãŒé–‹ãã¾ã™ã€‚" #: ../app/config/gimprc-blurbs.h:413 #, c-format @@ -3947,9 +3877,9 @@ "contains '%s' it will be replaced with the URL, else the URL will be " "appended to the command with a space separating the two." msgstr "" -"利用ã™ã‚‹å¤–部ブラウザを指定ã—ã¾ã™. 絶対パスã‹åˆ©ç”¨è€…ã® PATH 中ã«ã‚る実行ファイ" -"ルåã§ã™. コマンド㌠'%s' ã‚’å«ã‚€å ´åˆã«ã¯, URL ã§ç½®æ›ã•ã‚Œ, å«ã¾ãªã„å ´åˆã«ã¯ã‚³" -"マンドã®å¾Œã«ã‚¹ãƒšãƒ¼ã‚¹ã§åŒºåˆ‡ã£ã¦ URL ãŒæŒ‡å®šã•ã‚Œã¾ã™." +"利用ã™ã‚‹å¤–部ブラウザを指定ã—ã¾ã™ã€‚絶対パスã‹åˆ©ç”¨è€…ã® PATH 中ã«ã‚る実行ファイ" +"ルåã§ã™ã€‚コマンド㌠'%s' ã‚’å«ã‚€å ´åˆã«ã¯ã€URL ã§ç½®æ›ã•ã‚Œã€å«ã¾ãªã„å ´åˆã«ã¯ã‚³" +"マンドã®å¾Œã«ã‚¹ãƒšãƒ¼ã‚¹ã§åŒºåˆ‡ã£ã¦ URL ãŒæŒ‡å®šã•ã‚Œã¾ã™ã€‚" #: ../app/config/gimpscanner.c:220 msgid "invalid UTF-8 string" @@ -3973,13 +3903,12 @@ msgstr "レイヤーã®ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«(_A)" #: ../app/core/core-enums.c:30 -#, fuzzy msgid "_Transfer layer's alpha channel" -msgstr "レイヤーã®ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«(_T)" +msgstr "レイヤーã®ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’移転(_T)" #: ../app/core/core-enums.c:31 msgid "_Selection" -msgstr "é¸æŠž(_S)" +msgstr "é¸æŠžé ˜åŸŸ(_S)" #: ../app/core/core-enums.c:32 msgid "_Grayscale copy of layer" @@ -4043,39 +3972,32 @@ msgstr "ãªã—" #: ../app/core/core-enums.c:220 -#, fuzzy msgid "Floyd-Steinberg (normal)" -msgstr "Floyd-Steinberg 色ディザリング (通常)" +msgstr "Floyd-Steinberg ディザリング (通常)" #: ../app/core/core-enums.c:221 -#, fuzzy msgid "Floyd-Steinberg (reduced color bleeding)" -msgstr "Floyd-Steinberg 色ディザリング (使用ã•ã‚Œã‚‹è‰²æ•°ã‚’減らã™)" +msgstr "Floyd-Steinberg ディザリング (使用ã•ã‚Œã‚‹è‰²æ•°ã‚’減らã™)" #: ../app/core/core-enums.c:222 -#, fuzzy msgid "Positioned" -msgstr "ä½ç½®: %0.6f" +msgstr "ãƒã‚¸ã‚·ãƒ§ãƒ³" #: ../app/core/core-enums.c:251 -#, fuzzy msgid "Generate optimum palette" -msgstr "最é©ãƒ‘レットを生æˆ:" +msgstr "最é©ãƒ‘レットを生æˆ" #: ../app/core/core-enums.c:252 -#, fuzzy msgid "Use web-optimized palette" -msgstr "WWW 用パレットを使用" +msgstr "ウェブ最é©åŒ–パレットを使用" #: ../app/core/core-enums.c:253 -#, fuzzy msgid "Use black and white (1-bit) palette" msgstr "白黒(1-bit)パレットを使用" #: ../app/core/core-enums.c:254 -#, fuzzy msgid "Use custom palette" -msgstr "カスタムパレットを使用:" +msgstr "カスタムパレットを使用" #: ../app/core/core-enums.c:329 msgid "Foreground color" @@ -4100,9 +4022,8 @@ msgstr "パターン" #: ../app/core/core-enums.c:371 -#, fuzzy msgid "Bi-linear" -msgstr "åŒä¸€æ¬¡" +msgstr "åŒç·šå½¢" #: ../app/core/core-enums.c:372 msgid "Radial" @@ -4114,54 +4035,46 @@ msgstr "四角形" #: ../app/core/core-enums.c:374 -#, fuzzy msgid "Conical (sym)" msgstr "円éŒå½¢ (対称)" #: ../app/core/core-enums.c:375 -#, fuzzy msgid "Conical (asym)" msgstr "円éŒå½¢ (éžå¯¾ç§°)" #: ../app/core/core-enums.c:376 -#, fuzzy msgid "Shaped (angular)" msgstr "形状広ãŒã‚Š (角張ã£ãŸ)" #: ../app/core/core-enums.c:377 -#, fuzzy msgid "Shaped (spherical)" msgstr "形状広ãŒã‚Š (çƒé¢)" #: ../app/core/core-enums.c:378 -#, fuzzy msgid "Shaped (dimpled)" msgstr "形状広ãŒã‚Š (ãã¼ã¿)" #: ../app/core/core-enums.c:379 -#, fuzzy msgid "Spiral (cw)" msgstr "螺旋 (時計回り)" #: ../app/core/core-enums.c:380 -#, fuzzy msgid "Spiral (ccw)" -msgstr "螺旋 (時計回り)" +msgstr "螺旋 (å時計回り)" #: ../app/core/core-enums.c:410 msgid "Intersections (dots)" -msgstr "共通部分(点)" +msgstr "共通部分 (点)" #: ../app/core/core-enums.c:411 msgid "Intersections (crosshairs)" -msgstr "共通部分(クロスヘア)" +msgstr "共通部分 (クロスヘア)" #: ../app/core/core-enums.c:412 msgid "Dashed" msgstr "ç ´ç·š" #: ../app/core/core-enums.c:413 -#, fuzzy msgid "Double dashed" msgstr "二点破線" @@ -4170,12 +4083,10 @@ msgstr "実線" #: ../app/core/core-enums.c:441 -#, fuzzy msgid "Stroke line" -msgstr "ストロークオプション" +msgstr "ストローク線" #: ../app/core/core-enums.c:442 -#, fuzzy msgid "Stroke with a paint tool" msgstr "æ画ツールを用ã„ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯" @@ -4253,11 +4164,11 @@ #: ../app/core/core-enums.c:634 msgid "Circle" -msgstr "" +msgstr "丸" #: ../app/core/core-enums.c:636 msgid "Diamond" -msgstr "" +msgstr "ã²ã—å½¢" #: ../app/core/core-enums.c:664 ../app/dialogs/preferences-dialog.c:1950 msgid "Horizontal" @@ -4328,275 +4239,266 @@ msgstr "大 (256x256)" #: ../app/core/core-enums.c:859 -#, fuzzy msgid "Forward (traditional)" msgstr "æ­£å¤‰æ› (忠実)" #: ../app/core/core-enums.c:860 -#, fuzzy 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 -#, fuzzy +#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1074 msgid "Drawable mod" msgstr "æ画対象æ“作" -#: ../app/core/core-enums.c:1043 ../app/core/core-enums.c:1073 +#: ../app/core/core-enums.c:1045 ../app/core/core-enums.c:1075 msgid "Selection mask" msgstr "é¸æŠžãƒžã‚¹ã‚¯" -#: ../app/core/core-enums.c:1044 ../app/core/core-enums.c:1076 +#: ../app/core/core-enums.c:1046 ../app/core/core-enums.c:1078 msgid "Item visibility" msgstr "アイテムã®è¡¨ç¤º" -#: ../app/core/core-enums.c:1045 +#: ../app/core/core-enums.c:1047 msgid "Linked item" msgstr "リンクã•ã‚ŒãŸã‚¢ã‚¤ãƒ†ãƒ " -#: ../app/core/core-enums.c:1046 +#: ../app/core/core-enums.c:1048 msgid "Item properties" msgstr "アイテムã®ãƒ—ロパティ" -#: ../app/core/core-enums.c:1047 ../app/core/core-enums.c:1075 +#: ../app/core/core-enums.c:1049 ../app/core/core-enums.c:1077 msgid "Move item" msgstr "アイテムã®ç§»å‹•" -#: ../app/core/core-enums.c:1048 +#: ../app/core/core-enums.c:1050 msgid "Scale item" msgstr "ç”»åƒæ‹¡å¤§ç¸®å°" -#: ../app/core/core-enums.c:1049 +#: ../app/core/core-enums.c:1051 msgid "Resize item" msgstr "ç”»åƒã®ã‚µã‚¤ã‚ºå¤‰æ›´" -#: ../app/core/core-enums.c:1050 ../app/core/core-enums.c:1080 +#: ../app/core/core-enums.c:1052 ../app/core/core-enums.c:1082 msgid "Add layer mask" msgstr "レイヤーマスクã®è¿½åŠ " -#: ../app/core/core-enums.c:1051 +#: ../app/core/core-enums.c:1053 msgid "Apply layer mask" msgstr "レイヤーマスクã®é©ç”¨" -#: ../app/core/core-enums.c:1052 -#, 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/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 -#, fuzzy +#: ../app/core/core-enums.c:1063 ../app/core/core-enums.c:1104 msgid "Attach parasite" -msgstr "パラサイト付加" +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 "パラサイト削除" +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 -#, 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 +#: ../app/core/core-enums.c:1090 msgid "New channel" msgstr "æ–°è¦ãƒãƒ£ãƒ³ãƒãƒ«" -#: ../app/core/core-enums.c:1090 +#: ../app/core/core-enums.c:1092 msgid "Reposition channel" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®å†é…ç½®" -#: ../app/core/core-enums.c:1091 +#: ../app/core/core-enums.c:1093 msgid "Channel color" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚«ãƒ©ãƒ¼" -#: ../app/core/core-enums.c:1092 +#: ../app/core/core-enums.c:1094 msgid "New vectors" msgstr "æ–°è¦ãƒ™ã‚¯ã‚¿" -#: ../app/core/core-enums.c:1093 +#: ../app/core/core-enums.c:1095 msgid "Delete vectors" msgstr "ベクタã®å‰Šé™¤" -#: ../app/core/core-enums.c:1094 +#: ../app/core/core-enums.c:1096 msgid "Vectors mod" msgstr "ベクタæ“作" -#: ../app/core/core-enums.c:1095 +#: ../app/core/core-enums.c:1097 msgid "Reposition vectors" msgstr "ベクタã®å†é…ç½®" -#: ../app/core/core-enums.c:1096 +#: ../app/core/core-enums.c:1098 msgid "FS to layer" msgstr "フロートé¸æŠžã‚’レイヤーã¸" -#: ../app/core/core-enums.c:1097 -#, fuzzy +#: ../app/core/core-enums.c:1099 msgid "FS rigor" -msgstr "フロートé¸æŠžããã‚Šã¤ã‘" +msgstr "フロートé¸æŠžä½ç½®åˆã‚ã›" -#: ../app/core/core-enums.c:1098 -#, fuzzy +#: ../app/core/core-enums.c:1100 msgid "FS relax" msgstr "フロートé¸æŠžè§£æ”¾" -#: ../app/core/core-enums.c:1101 ../app/paint/gimpink.c:102 +#: ../app/core/core-enums.c:1103 ../app/paint/gimpink.c:103 #: ../app/tools/gimpinktool.c:62 msgid "Ink" msgstr "インク" -#: ../app/core/core-enums.c:1104 +#: ../app/core/core-enums.c:1106 msgid "EEK: can't undo" -msgstr "EEK: アンドゥã§ãã¾ã›ã‚“" +msgstr "EEK: å–り消ã—ã§ãã¾ã›ã‚“" #: ../app/core/gimp-edit.c:109 ../app/core/gimpselection.c:668 msgid "Unable to cut or copy because the selected region is empty." -msgstr "é¸æŠžé ˜åŸŸãŒç©ºãªã®ã§åˆ‡ã‚ŠæŠœãやコピーã¯ã§ãã¾ã›ã‚“." +msgstr "é¸æŠžé ˜åŸŸãŒç©ºãªã®ã§åˆ‡ã‚ŠæŠœãやコピーã¯ã§ãã¾ã›ã‚“。" #: ../app/core/gimp-edit.c:195 ../app/core/gimp-edit.c:319 msgid "Pasted Layer" @@ -4672,41 +4574,41 @@ msgstr "'%2$s' ã‹ã‚‰ %1$d ãƒã‚¤ãƒˆèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ: %3$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 msgid "Fatal parse error in brush file '%s': Unknown depth %d." -msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d ã¯ä¸æ˜Žãªæ·±åº¦ã§ã™." +msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d ã¯ä¸æ˜Žãªæ·±åº¦ã§ã™ã€‚" #: ../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 #, c-format msgid "Fatal parse error in brush file '%s': File appears truncated." msgstr "" -"ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルã¯åˆ‡ã‚Šåˆ†ã‘られã¦ã„るよã†ã§ã™." +"ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルã¯åˆ‡ã‚Šåˆ†ã‘られã¦ã„るよã†ã§ã™ã€‚" #: ../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 文字列ãŒã‚ã‚Šã¾ã™." +msgstr "ブラシファイル '%s' 中ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ã€‚" #: ../app/core/gimpbrush.c:640 ../app/core/gimpcontext.c:1299 #: ../app/core/gimpitem.c:475 ../app/core/gimppattern.c:400 @@ -4721,40 +4623,41 @@ "Fatal parse error in brush file '%s': Unsupported brush depth %d\n" "GIMP brushes must be GRAY or RGBA." msgstr "" -"ブラシファイル '%s' 中ã®è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: éžã‚µãƒãƒ¼ãƒˆã®ãƒ–ラシ深度 %d ã§ã™.\n" -"GIMP ブラシ㯠GRAY ã‹ RGBA ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“." +"ブラシファイル '%s' 中ã®è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: éžã‚µãƒãƒ¼ãƒˆã®ãƒ–ラシ深度 %d ã§" +"ã™ã€‚\n" +"GIMP ブラシ㯠GRAY ã‹ RGBA ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" #: ../app/core/gimpbrushgenerated.c:614 #, c-format msgid "Fatal parse error in brush file '%s': Not a GIMP brush file." -msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: GIMP ブラシファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“." +msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: GIMP ブラシファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #: ../app/core/gimpbrushgenerated.c:630 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." msgstr "" -"ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ä¸æ˜Žãª GIMP ブラシファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™." +"ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ä¸æ˜Žãª GIMP ブラシファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§" +"ã™ã€‚" #: ../app/core/gimpbrushgenerated.c:669 -#, fuzzy, c-format +#, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "" -"ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ä¸æ˜Žãª GIMP ブラシファイルã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™." +msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ä¸æ˜Žãª GIMP ブラシã®å½¢çŠ¶ã§ã™ã€‚" #: ../app/core/gimpbrushgenerated.c:750 -#, fuzzy, c-format +#, c-format msgid "Error while reading brush file '%s': %s" -msgstr "'%s' 読ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s" +msgstr "ブラシファイル '%s' 読ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼: %s" #: ../app/core/gimpbrushgenerated.c:752 msgid "File is truncated" -msgstr "" +msgstr "ファイルã¯åˆ‡ã‚Šè©°ã‚ã¾ã—ãŸ" #: ../app/core/gimpbrushpipe.c:369 ../app/core/gimpbrushpipe.c:389 #: ../app/core/gimpbrushpipe.c:479 #, c-format msgid "Fatal parse error in brush file '%s': File is corrupt." -msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルãŒå£Šã‚Œã¦ã„ã¾ã™." +msgstr "ブラシ '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚" #: ../app/core/gimpchannel.c:280 ../app/pdb/internal_procs.c:95 msgid "Channel" @@ -4789,9 +4692,8 @@ msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®å¤‰æ›" #: ../app/core/gimpchannel.c:288 -#, fuzzy msgid "Stroke Channel" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®ç¸®å°" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ストローク" #: ../app/core/gimpchannel.c:310 msgid "Feather Channel" @@ -4827,7 +4729,7 @@ #: ../app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." -msgstr "空ã®ãƒãƒ£ãƒ³ãƒãƒ«ã¯ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã§ãã¾ã›ã‚“." +msgstr "空ã®ãƒãƒ£ãƒ³ãƒãƒ«ã¯ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã§ãã¾ã›ã‚“。" #: ../app/core/gimpchannel.c:1527 msgid "Set Channel Color" @@ -4867,19 +4769,20 @@ msgid "Select by Color" msgstr "色ã«ã‚ˆã‚‹é¸æŠž" -#: ../app/core/gimpdata.c:314 +#: ../app/core/gimpdata.c:320 #, c-format msgid "Could not delete '%s': %s" msgstr "'%s' を削除ã§ãã¾ã›ã‚“ã§ã—ãŸ: %s" #: ../app/core/gimpdatafactory.c:291 ../app/core/gimpdatafactory.c:511 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to save data:\n" "\n" "%s" msgstr "" "警告: データã®ä¿å­˜ã«å¤±æ•—:\n" +"\n" "%s" #: ../app/core/gimpdatafactory.c:411 ../app/core/gimpdatafactory.c:414 @@ -4893,13 +4796,14 @@ msgstr "%s コピー" #: ../app/core/gimpdatafactory.c:614 -#, fuzzy, c-format +#, c-format msgid "" "Warning: Failed to load data:\n" "\n" "%s" msgstr "" "警告: データã®èª­ã¿è¾¼ã¿ã«å¤±æ•—:\n" +"\n" "%s" #: ../app/core/gimpdrawable-blend.c:238 ../app/tools/gimpblendtool.c:101 @@ -4908,7 +4812,7 @@ #: ../app/core/gimpdrawable-bucket-fill.c:85 ../app/paint/gimpclone.c:183 msgid "No patterns available for this operation." -msgstr "有効ãªãƒ‘ターンãŒã‚ã‚Šã¾ã›ã‚“." +msgstr "有効ãªãƒ‘ターンãŒã‚ã‚Šã¾ã›ã‚“。" #: ../app/core/gimpdrawable-bucket-fill.c:272 #: ../app/tools/gimpbucketfilltool.c:91 @@ -4978,62 +4882,62 @@ #: ../app/core/gimpgradient-load.c:87 #, c-format msgid "Invalid UTF-8 string in gradient file '%s'." -msgstr "グラデーション '%s' 内ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™." +msgstr "グラデーション '%s' 内ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ã€‚" #: ../app/core/gimpgradient-load.c:115 #, c-format msgid "Fatal parse error in gradient file '%s': File is corrupt." -msgstr "グラデーション '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルãŒå£Šã‚Œã¦ã„ã¾ã™." +msgstr "グラデーション '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ファイルãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚" #: ../app/core/gimpgradient-load.c:172 #, c-format msgid "Corrupt segment %d in gradient file '%s'." -msgstr "グラデーション '%2$s' ã®ç«¯ç‚¹ %1$d ãŒå£Šã‚Œã¦ã¾ã™." +msgstr "グラデーション '%2$s' ã®ç«¯ç‚¹ %1$d ãŒå£Šã‚Œã¦ã¾ã™ã€‚" #: ../app/core/gimpgradient-load.c:183 ../app/core/gimpgradient-load.c:197 #, c-format msgid "Gradient file '%s' is corrupt: Segments do not span the range 0-1." -msgstr "" +msgstr "グラデーション '%s' ã¯å£Šã‚Œã¦ã„ã¾ã™: 0-1 ã®ç¯„囲ã«ã‚ãŸã£ã¦ã„ã¾ã›ã‚“。" #: ../app/core/gimpgradient-load.c:281 -#, fuzzy, c-format +#, c-format msgid "No linear gradients found in '%s'" -msgstr "'%s' ã«ã¯ãƒ‘スãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" +msgstr "'%s' ã«ã¯ç·šå½¢ãªã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" #: ../app/core/gimpgradient-load.c:291 -#, fuzzy, c-format +#, c-format msgid "Failed to import gradients from '%s': %s" -msgstr "'%s' ã‹ã‚‰ã®ãƒ‘ス読ã¿è¾¼ã¿å¤±æ•—: %s" +msgstr "'%s' ã‹ã‚‰ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³èª­ã¿è¾¼ã¿å¤±æ•—: %s" #: ../app/core/gimpgrid.c:128 msgid "Line style used for the grid." -msgstr "グリッドã«ç”¨ã„る線種ã§ã™." +msgstr "グリッドã«ç”¨ã„る線種ã§ã™ã€‚" #: ../app/core/gimpgrid.c:134 msgid "The foreground color of the grid." -msgstr "グリッドã®æ画色ã§ã™." +msgstr "グリッドã®æ画色ã§ã™ã€‚" #: ../app/core/gimpgrid.c:139 msgid "" "The background color of the grid; only used in double dashed line style." -msgstr "グリッドã®èƒŒæ™¯è‰²; 二é‡ç ´ç·šã‚¹ã‚¿ã‚¤ãƒ«ã§ã®ã¿ç”¨ã„られã¾ã™." +msgstr "グリッドã®èƒŒæ™¯è‰²; 二é‡ç ´ç·šã‚¹ã‚¿ã‚¤ãƒ«ã§ã®ã¿ç”¨ã„られã¾ã™ã€‚" #: ../app/core/gimpgrid.c:145 msgid "Horizontal spacing of grid lines." -msgstr "グリッド線ã®æ°´å¹³é–“éš”." +msgstr "グリッド線ã®æ°´å¹³é–“隔。" #: ../app/core/gimpgrid.c:150 msgid "Vertical spacing of grid lines." -msgstr "グリッド線ã®é‰›ç›´é–“éš”." +msgstr "グリッド線ã®é‰›ç›´é–“隔。" #: ../app/core/gimpgrid.c:159 msgid "" "Horizontal offset of the first grid line; this may be a negative number." -msgstr "最åˆã®ã‚°ãƒªãƒƒãƒ‰ç·šã®æ°´å¹³ã‚ªãƒ•ã‚»ãƒƒãƒˆ; è² ã®å€¤." +msgstr "最åˆã®ã‚°ãƒªãƒƒãƒ‰ç·šã®æ°´å¹³ã‚ªãƒ•ã‚»ãƒƒãƒˆ; è² ã®å€¤ã€‚" #: ../app/core/gimpgrid.c:166 msgid "Vertical offset of the first grid line; this may be a negative number." -msgstr "最åˆã®ã‚°ãƒªãƒƒãƒ‰ç·šã®é‰›ç›´ã‚ªãƒ•ã‚»ãƒƒãƒˆ; è² ã®å€¤." +msgstr "最åˆã®ã‚°ãƒªãƒƒãƒ‰ç·šã®é‰›ç›´ã‚ªãƒ•ã‚»ãƒƒãƒˆ; è² ã®å€¤ã€‚" #: ../app/core/gimpimage-colormap.c:63 msgid "Set Colormap" @@ -5045,7 +4949,7 @@ #: ../app/core/gimpimage-colormap.c:135 msgid "Add Color to Colormap" -msgstr "色をカラーマップã«è¿½åŠ (_A)" +msgstr "色をカラーマップã«è¿½åŠ " #: ../app/core/gimpimage-convert.c:789 msgid "Convert Image to RGB" @@ -5061,11 +4965,11 @@ #: ../app/core/gimpimage-convert.c:879 msgid "Converting to indexed (stage 2)..." -msgstr "インデックスカラーã«å¤‰æ›(ステージ2)" +msgstr "インデックスカラーã«å¤‰æ›(ステージ2)..." #: ../app/core/gimpimage-convert.c:923 msgid "Converting to indexed (stage 3)..." -msgstr "インデックスカラーã«å¤‰æ›(ステージ3)" +msgstr "インデックスカラーã«å¤‰æ›(ステージ3)..." #: ../app/core/gimpimage-crop.c:123 msgid "Crop Image" @@ -5097,7 +5001,7 @@ #: ../app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." -msgstr "çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–レイヤーãŒè¶³ã‚Šã¾ã›ã‚“. å°‘ãªãã¨ã‚‚二ã¤ã¯å¿…è¦ã§ã™." +msgstr "çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–レイヤーãŒè¶³ã‚Šã¾ã›ã‚“。少ãªãã¨ã‚‚二ã¤ã¯å¿…è¦ã§ã™ã€‚" #: ../app/core/gimpimage-merge.c:142 msgid "Flatten Image" @@ -5109,7 +5013,7 @@ #: ../app/core/gimpimage-merge.c:202 msgid "There are not enough visible layers for a merge down." -msgstr "下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–レイヤーãŒè¶³ã‚Šã¾ã›ã‚“." +msgstr "下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨çµ±åˆã™ã‚‹ãŸã‚ã®å¯è¦–レイヤーãŒè¶³ã‚Šã¾ã›ã‚“。" #: ../app/core/gimpimage-merge.c:543 msgid "Merge Visible Paths" @@ -5117,167 +5021,165 @@ #: ../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 -#, fuzzy msgid "Enable Quick Mask" msgstr "クイックマスク有効" #: ../app/core/gimpimage-qmask.c:117 -#, fuzzy msgid "Disable Quick Mask" msgstr "クイックマスク無効" #: ../app/core/gimpimage-undo-push.c:3055 #, c-format msgid "Can't undo %s" -msgstr "%s ã¯ã‚¢ãƒ³ãƒ‰ã‚¥ã§ãã¾ã›ã‚“" +msgstr "%s ã¯å–り消ã—ã§ãã¾ã›ã‚“" -#: ../app/core/gimpimage.c:1357 +#: ../app/core/gimpimage.c:1359 msgid "Change Image Resolution" msgstr "ç”»åƒè§£åƒåº¦ã®å¤‰æ›´" -#: ../app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1399 msgid "Change Image Unit" msgstr "ç”»åƒå˜ä½ã®å¤‰æ›´" -#: ../app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2179 msgid "Attach Parasite to Image" msgstr "ç”»åƒã«ãƒ‘ラサイトを付加" -#: ../app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2212 msgid "Remove Parasite from Image" msgstr "ç”»åƒã‹ã‚‰ãƒ‘ラサイトを削除" -#: ../app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2680 msgid "Add Layer" msgstr "レイヤーを追加" -#: ../app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2744 ../app/core/gimpimage.c:2757 msgid "Remove Layer" msgstr "レイヤーを削除" -#: ../app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2831 msgid "Layer cannot be raised higher." msgstr "ã“れ以上レイヤーをå‰é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“" -#: ../app/core/gimpimage.c:2822 ../app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2837 ../app/core/gimpimage.c:2887 msgid "Cannot raise a layer without alpha." -msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã®ç„¡ã„レイヤーをå‰é¢ã«ã¯å‡ºã›ã¾ã›ã‚“." +msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã®ç„¡ã„レイヤーをå‰é¢ã«ã¯å‡ºã›ã¾ã›ã‚“。" -#: ../app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2842 msgid "Raise Layer" msgstr "レイヤーをå‰é¢ã¸" -#: ../app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2859 msgid "Layer cannot be lowered more." msgstr "ã“れ以上レイヤーを背é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“" -#: ../app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2864 msgid "Lower Layer" msgstr "レイヤーを背é¢ã¸" -#: ../app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2881 msgid "Layer is already on top." msgstr "レイヤーã¯æ—¢ã«æœ€å‰é¢ã«ã‚ã‚Šã¾ã™" -#: ../app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2892 msgid "Raise Layer to Top" msgstr "レイヤーを最å‰é¢ã¸" -#: ../app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2912 msgid "Layer is already on the bottom." msgstr "レイヤーã¯æ—¢ã«æœ€èƒŒé¢ã«ã‚ã‚Šã¾ã™" -#: ../app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2917 msgid "Lower Layer to Bottom" msgstr "レイヤーを最背é¢ã¸" -#: ../app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2956 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." msgstr "" -"レイヤー '%s' ã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“. レイヤーã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒ" -"ルã®å‰é¢ã«ç½®ã‹ã‚Œã¦ã„ã¾ã™." +"レイヤー '%s' ã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“。レイヤーã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒ" +"ルã®å‰é¢ã«ç½®ã‹ã‚Œã¦ã„ã¾ã™ã€‚" -#: ../app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:3008 msgid "Add Channel" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加" -#: ../app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3052 ../app/core/gimpimage.c:3063 msgid "Remove Channel" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’削除" -#: ../app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3110 msgid "Channel cannot be raised higher." -msgstr "ã“れ以上ãƒãƒ£ãƒ³ãƒãƒ«ã‚’上昇ã•ã›ã‚‰ã‚Œã¾ã›ã‚“" +msgstr "ã“れ以上ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å‰é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“" -#: ../app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3115 msgid "Raise Channel" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ä¸Šæ˜‡" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å‰é¢ã¸" -#: ../app/core/gimpimage.c:3104 +#: ../app/core/gimpimage.c:3132 msgid "Channel is already on top." msgstr "レイヤーã¯æ—¢ã«æœ€å‰é¢ã«ã‚ã‚Šã¾ã™" -#: ../app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3137 msgid "Raise Channel to Top" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番上ã¾ã§ä¸Šæ˜‡" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’最å‰é¢ã¸" -#: ../app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3154 msgid "Channel cannot be lowered more." -msgstr "ã“れ以上ãƒãƒ£ãƒ³ãƒãƒ«ã‚’下é™ã•ã›ã‚‰ã‚Œã¾ã›ã‚“" +msgstr "ã“れ以上ãƒãƒ£ãƒ³ãƒãƒ«ã‚’背é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“" -#: ../app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3159 msgid "Lower Channel" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ä¸‹é™" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’背é¢ã¸" -#: ../app/core/gimpimage.c:3151 +#: ../app/core/gimpimage.c:3179 msgid "Channel is already on the bottom." msgstr "レイヤーã¯æ—¢ã«æœ€èƒŒé¢ã«ã‚ã‚Šã¾ã™" -#: ../app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3184 msgid "Lower Channel to Bottom" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’一番下ã¾ã§ä¸‹é™" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã‚’最背é¢ã¸" -#: ../app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3259 msgid "Add Path" msgstr "パスを追加" -#: ../app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3304 msgid "Remove Path" msgstr "パスを削除" -#: ../app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3348 msgid "Path cannot be raised higher." -msgstr "パスをã“れ以上å‰é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“." +msgstr "パスをã“れ以上å‰é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“。" -#: ../app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3353 msgid "Raise Path" -msgstr "パスを上昇" +msgstr "パスをå‰é¢ã¸" -#: ../app/core/gimpimage.c:3342 +#: ../app/core/gimpimage.c:3370 msgid "Path is already on top." msgstr "パスã¯æ—¢ã«æœ€å‰é¢ã«ã‚ã‚Šã¾ã™" -#: ../app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3375 msgid "Raise Path to Top" msgstr "パスを最å‰é¢ã¸" -#: ../app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3392 msgid "Path cannot be lowered more." -msgstr "パスをã“れ以上背é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“." +msgstr "パスをã“れ以上背é¢ã«ç§»å‹•ã•ã›ã‚‰ã‚Œã¾ã›ã‚“。" -#: ../app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3397 msgid "Lower Path" -msgstr "パスを下é™" +msgstr "パスを背é¢ã¸" -#: ../app/core/gimpimage.c:3389 +#: ../app/core/gimpimage.c:3417 msgid "Path is already on the bottom." msgstr "パスã¯æ—¢ã«æœ€èƒŒé¢ã«ã‚ã‚Šã¾ã™" -#: ../app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3422 msgid "Lower Path to Bottom" msgstr "パスを最背é¢ã¸" @@ -5294,9 +5196,8 @@ msgstr "特殊ファイル" #: ../app/core/gimpimagefile.c:605 -#, fuzzy msgid "Click to create preview" -msgstr "プレビューを作æˆã§ãã¾ã›ã‚“" +msgstr "クリックã§ãƒ—レビューを作æˆ" #: ../app/core/gimpimagefile.c:609 msgid "Loading preview ..." @@ -5327,7 +5228,7 @@ msgid "%d Layers" msgstr "%d æžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼" -#: ../app/core/gimpimagefile.c:682 +#: ../app/core/gimpimagefile.c:685 #, c-format msgid "Could not open thumbnail '%s': %s" msgstr "サムãƒã‚¤ãƒ«ãƒ•ã‚¡ã‚¤ãƒ« '%s' ãŒé–‹ã‘ã¾ã›ã‚“: %s" @@ -5350,7 +5251,7 @@ #: ../app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." -msgstr "ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯ãƒ•ãƒ­ãƒ¼ãƒ†ã‚£ãƒ³ã‚°é¸æŠžã§ã¯ãªã„ã®ã§å›ºå®šã§ãã¾ã›ã‚“." +msgstr "ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯ãƒ•ãƒ­ãƒ¼ãƒ†ã‚£ãƒ³ã‚°é¸æŠžã§ã¯ãªã„ã®ã§å›ºå®šã§ãã¾ã›ã‚“。" #: ../app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" @@ -5361,8 +5262,8 @@ "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 msgid "Floating Selection to Layer" @@ -5400,30 +5301,33 @@ msgstr "%s マスク" #: ../app/core/gimplayer.c:385 -#, fuzzy, c-format +#, c-format msgid "" "Floating Selection\n" "(%s)" -msgstr "フローティングé¸æŠžé ˜åŸŸ" +msgstr "" +"フローティングé¸æŠžé ˜åŸŸ\n" +"(%s)" #: ../app/core/gimplayer.c:1035 msgid "Cannot add layer mask to layer which is not part of an image." -msgstr "ç”»åƒã®ä¸€éƒ¨åˆ†ã§ãªã„レイヤーã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“." +msgstr "ç”»åƒã®ä¸€éƒ¨åˆ†ã§ãªã„レイヤーã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“。" #: ../app/core/gimplayer.c:1042 msgid "Unable to add a layer mask since the layer already has one." msgstr "" -"æ—¢ã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ãŒã‚ã‚‹ã®ã§ã“れ以上レイヤーマスクを付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“." +"æ—¢ã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ãŒã‚ã‚‹ã®ã§ã“れ以上レイヤーマスクを付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“。" #: ../app/core/gimplayer.c:1049 msgid "Cannot add layer mask to a layer with no alpha channel." msgstr "" -"アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒãŸãªã„レイヤーã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›ã‚“." +"アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒãŸãªã„レイヤーã«ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹äº‹ã¯ã§ãã¾ã›" +"ん。" #: ../app/core/gimplayer.c:1059 msgid "Cannot add layer mask of different dimensions than specified layer." msgstr "" -"指定ã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ç•°ã‚‹å¤§ãã•ã‚’æŒã¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“." +"指定ã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨ç•°ã‚‹å¤§ãã•ã‚’æŒã¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付加ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。" #: ../app/core/gimplayer.c:1163 msgid "Transfer Alpha to Mask" @@ -5455,6 +5359,8 @@ "Unknown type of palette file:\n" "%s" msgstr "" +"未知ã®ãƒ‘レットファイルã®ç¨®é¡ž:\n" +"%s" #: ../app/core/gimppalette.c:375 #, c-format @@ -5462,19 +5368,19 @@ "Fatal parse error in palette file '%s': Missing magic header.\n" "Does this file need converting from DOS?" msgstr "" -"パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.\n" +"パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。\n" "ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ DOS å½¢å¼ã‹ã‚‰å¤‰æ›ã™ã‚‹å¿…è¦ãŒã‚ã‚‹ã‹ã‚‚?" #: ../app/core/gimppalette.c:381 #, c-format msgid "Fatal parse error in palette file '%s': Missing magic header." -msgstr "パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“." +msgstr "パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: ヘッダãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: ../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 行目ã§èª­ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼." +msgstr "パレット '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: %d 行目ã§èª­ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼ã€‚" #: ../app/core/gimppalette.c:410 #, c-format @@ -5487,28 +5393,29 @@ "Reading palette file '%s': Invalid number of columns in line %d. Using " "default value." msgstr "" -"パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: 無効ãªåˆ—æ•°ã§ã™. デフォルト値を使用ã—ã¾ã™." +"パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: 無効ãªåˆ—æ•°ã§ã™ã€‚デフォルト値を使用ã—ã¾" +"ã™ã€‚" #. maybe we should just abort? #: ../app/core/gimppalette.c:484 #, c-format msgid "Reading palette file '%s': Missing RED component in line %d." -msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: 赤ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“." +msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: 赤ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: ../app/core/gimppalette.c:492 #, c-format msgid "Reading palette '%s': Missing GREEN component in line %d." -msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: ç·‘ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“." +msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: ç·‘ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: ../app/core/gimppalette.c:500 #, c-format msgid "Reading palette file '%s': Missing BLUE component in line %d." -msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: é’ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“." +msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: é’ã®è¦ç´ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: ../app/core/gimppalette.c:510 #, c-format msgid "Reading palette file '%s': RGB value out of range in line %d." -msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: RGB 値ãŒç¯„囲外ã§ã™." +msgstr "パレット '%s' (%d 行目) 読ã¿è¾¼ã¿ä¸­: RGB 値ãŒç¯„囲外ã§ã™ã€‚" #: ../app/core/gimppattern.c:337 ../app/core/gimppattern.c:384 #: ../app/core/gimppattern.c:415 @@ -5528,20 +5435,20 @@ "Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" "GIMP Patterns must be GRAY or RGB." msgstr "" -"パターン '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: éžã‚µãƒãƒ¼ãƒˆã®æ·±åº¦ %d ã§ã™.\n" -"GIMP パターン㯠GRAY ã‚‚ã—ã㯠RGB ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“." +"パターン '%s' ã§è‡´å‘½çš„ãªè§£æžã‚¨ãƒ©ãƒ¼: éžã‚µãƒãƒ¼ãƒˆã®æ·±åº¦ %d ã§ã™ã€‚\n" +"GIMP パターン㯠GRAY ã‚‚ã—ã㯠RGB ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" #: ../app/core/gimppattern.c:393 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." -msgstr "GIMP パターンファイル '%s' 中ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™." +msgstr "GIMP パターンファイル '%s' 中ã«ä¸é©åˆ‡ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ã€‚" #: ../app/core/gimppdbprogress.c:260 ../app/widgets/gimppdbdialog.c:320 -#, fuzzy, c-format +#, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." msgstr "" -"ブラシコールãƒãƒƒã‚¯ã‚’実行ã§ãã¾ã›ã‚“. 対応ã™ã‚‹ãƒ—ラグインãŒã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã—ãŸã‹ã‚‚ã—" -"ã‚Œã¾ã›ã‚“." +"%sコールãƒãƒƒã‚¯ã‚’実行ã§ãã¾ã›ã‚“。対応ã™ã‚‹ãƒ—ラグインãŒã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã—ãŸã‹ã‚‚ã—ã‚Œã¾" +"ã›ã‚“。" #: ../app/core/gimpprogress.c:107 ../app/core/gimpprogress.c:154 msgid "Please wait..." @@ -5569,27 +5476,25 @@ #: ../app/core/gimpselection.c:307 msgid "No selection to stroke." -msgstr "ストロークæç”»ã™ã‚‹é ˜åŸŸãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“." +msgstr "ストロークæç”»ã™ã‚‹é ˜åŸŸãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。" #: ../app/core/gimpselection.c:815 msgid "Cannot float selection because the selected region is empty." -msgstr "é¸æŠžé ˜åŸŸãŒç©ºãªã®ã§ãƒ•ãƒ­ãƒ¼ãƒˆåŒ–ã¯ã§ãã¾ã›ã‚“." +msgstr "é¸æŠžé ˜åŸŸãŒç©ºãªã®ã§ãƒ•ãƒ­ãƒ¼ãƒˆåŒ–ã¯ã§ãã¾ã›ã‚“。" #: ../app/core/gimpselection.c:822 msgid "Float Selection" msgstr "フローティングé¸æŠžé ˜åŸŸ" #: ../app/core/gimpselection.c:839 -#, fuzzy msgid "Floated Layer" -msgstr "レイヤーを回転" +msgstr "フロート化レイヤー" #: ../app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." -msgstr "点を点ã«å¯¾å¿œã•ã›ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«ãŠã„ã¦è¡¨ç¤ºã«åˆ©ç”¨ã™ã‚‹å˜ä½ã§ã™." +msgstr "点を点ã«å¯¾å¿œã•ã›ã‚‹ãƒ¢ãƒ¼ãƒ‰ã«ãŠã„ã¦è¡¨ç¤ºã«åˆ©ç”¨ã™ã‚‹å˜ä½ã§ã™ã€‚" #: ../app/core/gimptemplate.c:165 -#, fuzzy msgid "The horizontal image resolution." msgstr "水平画åƒè§£åƒåº¦" @@ -5695,9 +5600,8 @@ msgstr "最大色数(_M):" #: ../app/dialogs/convert-dialog.c:206 -#, fuzzy msgid "_Remove unused colors from final palette" -msgstr "未使用ã®è‰²ã‚’最終出力パレットã‹ã‚‰é™¤ã" +msgstr "未使用ã®è‰²ã‚’最終出力パレットã‹ã‚‰é™¤ã(_R)" #. dithering #: ../app/dialogs/convert-dialog.c:221 ../app/tools/gimpblendoptions.c:269 @@ -5705,23 +5609,20 @@ msgstr "ディザリング" #: ../app/dialogs/convert-dialog.c:233 -#, fuzzy msgid "Color _dithering:" -msgstr "色ディザリングを行ã‚ãªã„" +msgstr "色ディザリング(_D):" #: ../app/dialogs/convert-dialog.c:248 -#, fuzzy msgid "Enable dithering of _transparency" -msgstr "é€æ˜Žéƒ¨åˆ†ã®ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚’è¡Œã†" +msgstr "é€æ˜Žéƒ¨åˆ†ã®ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚’è¡Œã†(_T)" #: ../app/dialogs/convert-dialog.c:274 -#, fuzzy msgid "Converting to indexed..." -msgstr "インデックスカラーã«å¤‰æ›" +msgstr "インデックスカラーã«å¤‰æ›..." -#: ../app/dialogs/convert-dialog.c:382 +#: ../app/dialogs/convert-dialog.c:384 msgid "Cannot convert to a palette with more than 256 colors." -msgstr "256色より多ã„パレットを変æ›ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“." +msgstr "256色より多ã„パレットを変æ›ã™ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。" #: ../app/dialogs/dialogs-constructors.c:164 ../app/gui/gui.c:161 msgid "GIMP Message" @@ -5761,7 +5662,7 @@ #: ../app/dialogs/dialogs.c:183 msgid "Undo History" -msgstr "アンドゥ履歴" +msgstr "å–り消ã—履歴" #: ../app/dialogs/dialogs.c:189 msgid "Navigation" @@ -5806,7 +5707,7 @@ #: ../app/dialogs/file-save-dialog.c:205 msgid "Do you want to replace it with the image you are saving?" -msgstr "" +msgstr "ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒã§ç½®ãæ›ãˆã¾ã™ã‹?" #: ../app/dialogs/grid-dialog.c:81 msgid "Configure Grid" @@ -5847,7 +5748,7 @@ #: ../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 msgid "Confirm Image Size" @@ -5857,7 +5758,7 @@ #: ../app/dialogs/image-scale-dialog.c:193 #, c-format msgid "You are trying to create an image with a size of %s." -msgstr "" +msgstr "大ãã•ãŒ %s ã®ç”»åƒã‚’作æˆã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚" #: ../app/dialogs/image-new-dialog.c:289 #, c-format @@ -5865,6 +5766,8 @@ "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 msgid "Confirm Scaling" @@ -5877,19 +5780,20 @@ "is configured as \"Maximum Image Size\" in the Preferences dialog (currently " "%s)." msgstr "" +"ç”»åƒã‚’指定ã•ã‚ŒãŸã‚µã‚¤ã‚ºã«ã™ã‚‹ã¨ã€ç’°å¢ƒè¨­å®šãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã®\"æ–°è¦ç”»åƒã®æœ€å¤§ã‚µã‚¤ã‚º" +"\"ã®è¨­å®š (ç¾åœ¨ %s) より多ãã®ãƒ¡ãƒ¢ãƒªã‚’使ã„ã¾ã™ã€‚" #: ../app/dialogs/image-scale-dialog.c:214 -#, fuzzy msgid "" "Scaling the image to the choosen size will shrink some layers completely " "away." msgstr "" -"指定ã•ã‚ŒãŸç”»åƒã‚µã‚¤ã‚ºã§ã¯, å¹¾ã¤ã‹ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå°ã•ã™ãŽã¦è¦‹ãˆãªããªã‚‹å¯èƒ½æ€§ãŒã‚" -"ã‚Šã¾ã™. よã‚ã—ã„ã§ã™ã‹?" +"指定ã•ã‚ŒãŸç”»åƒã‚µã‚¤ã‚ºã§ã¯ã€å°ã•ã™ãŽã¦å¹¾ã¤ã‹ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå®Œå…¨ã«æ¶ˆãˆã¦ãªããªã£ã¦" +"ã—ã¾ã„ã¾ã™ã€‚" #: ../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 @@ -5972,9 +5876,8 @@ #. add the information fields #: ../app/dialogs/info-window.c:294 -#, fuzzy msgid "Pixel dimensions:" -msgstr "ピクセル寸法" +msgstr "ピクセル寸法:" #: ../app/dialogs/info-window.c:296 msgid "Print size:" @@ -6177,28 +6080,25 @@ msgstr "_Y:" #: ../app/dialogs/offset-dialog.c:197 -#, fuzzy msgid "Offset by x/_2, y/2" -msgstr "オフセットを (X/_2) 㨠(Y/2) ã«" +msgstr "オフセットを (x/_2) 㨠(y/2) ã«" #. The edge behaviour frame #: ../app/dialogs/offset-dialog.c:206 msgid "Edge Behaviour" -msgstr "振舞ã„編集" +msgstr "ç¸ã®æ‰±ã„" #: ../app/dialogs/offset-dialog.c:210 -#, fuzzy msgid "_Wrap around" -msgstr "背景(_B)" +msgstr "ç¹°ã‚Šè¿”ã™(_W)" #: ../app/dialogs/offset-dialog.c:213 -#, fuzzy msgid "Fill with _background color" -msgstr "背景色を編集" +msgstr "背景色ã§å¡—ã‚Šã¤ã¶ã™(_B)" #: ../app/dialogs/offset-dialog.c:216 msgid "Make _transparent" -msgstr "é€æ˜Žä½œæˆ(_T)" +msgstr "é€æ˜Žã«ã™ã‚‹(_T)" #: ../app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" @@ -6272,24 +6172,29 @@ "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." msgstr "" +"ショートカットキーã®ç·¨é›†ã«ã¯ã€è©²å½“ã™ã‚‹è¡Œã‚’クリックã—ã¦ã‹ã‚‰å‰²ã‚Šå½“ã¦ã‚‹ã‚­ãƒ¼ã‚’押" +"ã—ã¦ãã ã•ã„。割り当ã¦ã®è§£é™¤ã¯ãƒãƒƒã‚¯ã‚¹ãƒšãƒ¼ã‚¹ã‚­ãƒ¼ã‚’押ã—ã¦ãã ã•ã„。" #: ../app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." msgstr "" +"割り当ã¦ã‚‰ã‚Œã¦ã„ãŸã‚­ãƒ¼ãƒœãƒ¼ãƒ‰ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã¯ã€æ¬¡å›ž GIMP 起動時ã«ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå€¤" +"ã«ãƒªã‚»ãƒƒãƒˆã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." -msgstr "" +msgstr "ウィンドウã®è¨­å®šã¯ã€æ¬¡å›ž GIMP 起動時ã«ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå€¤ã«ãƒªã‚»ãƒƒãƒˆã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." msgstr "" +"入力デãƒã‚¤ã‚¹ã®è¨­å®šã¯ã€æ¬¡å›ž GIMP 起動時ã«ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå€¤ã«ãƒªã‚»ãƒƒãƒˆã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/preferences-dialog.c:1082 msgid "Show _menubar" @@ -6384,7 +6289,7 @@ #: ../app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" -msgstr "" +msgstr "メニューã«ãƒ‹ãƒ¼ãƒ¢ãƒ‹ãƒƒã‚¯ (アクセスキー) を表示ã™ã‚‹(_M)" #: ../app/dialogs/preferences-dialog.c:1391 msgid "Use _dynamic keyboard shortcuts" @@ -6392,7 +6297,7 @@ #: ../app/dialogs/preferences-dialog.c:1395 msgid "Configure _Keyboard Shortcuts..." -msgstr "キーボードショートカット設定..." +msgstr "キーボードショートカット設定(_K)..." #: ../app/dialogs/preferences-dialog.c:1402 msgid "_Save keyboard shortcuts on exit" @@ -6491,9 +6396,8 @@ msgstr "ツール共有ã®æ画オプション" #: ../app/dialogs/preferences-dialog.c:1636 -#, fuzzy msgid "Move Tool" -msgstr "移動: " +msgstr "移動ツール" #: ../app/dialogs/preferences-dialog.c:1640 msgid "Change current layer or path" @@ -6516,9 +6420,8 @@ msgstr "背景色ã¨èƒŒæ™¯è‰²ã‚’表示(_F)" #: ../app/dialogs/preferences-dialog.c:1671 -#, fuzzy msgid "Show active _brush, pattern & gradient" -msgstr "/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/ブラシ, パターン & グラデーション(_B)" +msgstr "アクティブãªãƒ–ラシ・パターンã¨ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’表示(_B)" #: ../app/dialogs/preferences-dialog.c:1675 msgid "Show active _image" @@ -6530,12 +6433,10 @@ msgstr "ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦" #: ../app/dialogs/preferences-dialog.c:1700 -#, fuzzy msgid "Use \"_Dot for dot\" by default" msgstr "デフォルトã§ã€Œç‚¹ã«ç‚¹ã€ã‚’対応ã•ã›ã‚‹(_D)" #: ../app/dialogs/preferences-dialog.c:1706 -#, fuzzy msgid "Marching _ants speed:" msgstr "蟻ã®è¡Œé€²é€Ÿåº¦(_A):" @@ -6550,7 +6451,7 @@ #: ../app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" -msgstr "ズーム時ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’リサイズã™ã‚‹(_S)" +msgstr "ç”»åƒã‚µã‚¤ã‚ºå¤‰æ›´æ™‚ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’リサイズã™ã‚‹(_S)" #: ../app/dialogs/preferences-dialog.c:1723 msgid "Fit to window" @@ -6558,7 +6459,7 @@ #: ../app/dialogs/preferences-dialog.c:1725 msgid "Initial zoom _ratio:" -msgstr "最åˆã«ä½¿ã†æ‹¡å¤§çŽ‡:" +msgstr "最åˆã«ä½¿ã†æ‹¡å¤§çŽ‡(_R):" #. Mouse Cursors #: ../app/dialogs/preferences-dialog.c:1729 @@ -6570,18 +6471,16 @@ msgstr "ブラシã®è¼ªéƒ­ã‚’表示ã™ã‚‹(_B)" #: ../app/dialogs/preferences-dialog.c:1736 -#, fuzzy msgid "Show paint _tool cursor" -msgstr "é“å…·ã®ç°¡æ˜“ãªèª¬æ˜Žã‚’表示ã™ã‚‹(_T)" +msgstr "æ画ツールã®ã‚«ãƒ¼ã‚½ãƒ«ã‚’表示ã™ã‚‹(_T)" #: ../app/dialogs/preferences-dialog.c:1742 msgid "Cursor _mode:" msgstr "カーソルモード(_M):" #: ../app/dialogs/preferences-dialog.c:1745 -#, fuzzy msgid "Cursor re_ndering:" -msgstr "カーソルモード(_O):" +msgstr "カーソルã®è¡¨ç¾(_N):" #: ../app/dialogs/preferences-dialog.c:1757 msgid "Image Window Appearance" @@ -6651,7 +6550,7 @@ #: ../app/dialogs/preferences-dialog.c:1970 #, c-format msgid "From _windowing system (currently %d x %d dpi)" -msgstr "ウインドウシステムã‹ã‚‰ (ç¾åœ¨ %d x %d dpi)" +msgstr "ウインドウシステムã‹ã‚‰ (ç¾åœ¨ %d x %d dpi)(_W)" #: ../app/dialogs/preferences-dialog.c:1993 msgid "_Manually" @@ -6718,7 +6617,7 @@ #: ../app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" -msgstr "フィーカスã•ã‚ŒãŸç”»åƒã‚’アクティブã«(_F)" +msgstr "フォーカスã•ã‚ŒãŸç”»åƒã‚’アクティブã«(_F)" #. Window Positions #: ../app/dialogs/preferences-dialog.c:2149 @@ -6731,7 +6630,7 @@ #: ../app/dialogs/preferences-dialog.c:2156 msgid "Save Window Positions _Now" -msgstr "ç›´ã¡ã«ç¾åœ¨ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ä½ç½®ã‚’ä¿å­˜" +msgstr "ç›´ã¡ã«ç¾åœ¨ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ä½ç½®ã‚’ä¿å­˜(_N)" #: ../app/dialogs/preferences-dialog.c:2163 msgid "_Reset Saved Window Positions to Default Values" @@ -6749,11 +6648,11 @@ #: ../app/dialogs/preferences-dialog.c:2199 msgid "Minimal number of _undo levels:" -msgstr "覚ãˆã¦ãŠã最å°ã‚¢ãƒ³ãƒ‰ã‚¥å›žæ•°(_U):" +msgstr "覚ãˆã¦ãŠã最å°å–り消ã—回数(_U):" #: ../app/dialogs/preferences-dialog.c:2202 msgid "Maximum undo _memory:" -msgstr "アンドゥã«ä½¿ã†æœ€å¤§ãƒ¡ãƒ¢ãƒª(_M):" +msgstr "å–り消ã—ã«ä½¿ã†æœ€å¤§ãƒ¡ãƒ¢ãƒª(_M):" #: ../app/dialogs/preferences-dialog.c:2205 msgid "Tile cache _size:" @@ -6936,14 +6835,12 @@ msgstr "GIMPを終了ã—ã¾ã™" #: ../app/dialogs/quit-dialog.c:126 -#, fuzzy msgid "If you quit GIMP now, these changes will be lost." -msgstr "未ä¿å­˜ã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™." +msgstr "ã“ã®ã¾ã¾ GIMP を終了ã™ã‚‹ã¨ã€æœªä¿å­˜ã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™ã€‚" #: ../app/dialogs/quit-dialog.c:164 -#, fuzzy msgid "There is one image with unsaved changes:" -msgstr "ズーム時ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’リサイズã™ã‚‹(_S)" +msgstr "1 個ã®ç”»åƒãŒå¤‰æ›´ã—ã¦æœªä¿å­˜:" #: ../app/dialogs/quit-dialog.c:167 #, c-format @@ -6967,11 +6864,10 @@ msgstr "モニタ解åƒåº¦æ¸¬å®š" #: ../app/dialogs/resolution-calibrate-dialog.c:120 -#, fuzzy msgid "Measure the rulers and enter their lengths:" msgstr "" -"ç”»é¢ã«ç‰©å·®ã—ã‚’ã‚ã¦ã¦ã‚¹ã‚±ãƒ¼ãƒ«ã®é•·ã•ã‚’実際ã«æ¸¬ã‚Š, ãã®çµæžœã‚’下ã®æž ã«å…¥åŠ›ã—ã¦ã" -"ã ã•ã„." +"ç”»é¢ã«ç‰©å·®ã—ã‚’ã‚ã¦ã¦ã‚¹ã‚±ãƒ¼ãƒ«ã®é•·ã•ã‚’実際ã«æ¸¬ã‚Šã€ãã®çµæžœã‚’下ã®æž ã«å…¥åŠ›ã—ã¦ã" +"ã ã•ã„:" #: ../app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" @@ -6991,18 +6887,16 @@ msgstr "å“質" #: ../app/dialogs/scale-dialog.c:178 -#, fuzzy msgid "I_nterpolation:" -msgstr "補間ã®ç¨®é¡ž:" +msgstr "補間ã®ç¨®é¡ž(_N):" #: ../app/dialogs/scale-dialog.c:192 -#, fuzzy msgid "" "Indexed color layers are always scaled without interpolation. The chosen " "interpolation type will affect channels and masks only." msgstr "" -"インデックスカラーã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯å¸¸æ™‚補間ãªã—ã§æ‹¡å¤§ç¸®å°ã•ã‚Œã¾ã™. ãã®å ´åˆ, 補間" -"ã®ç¨®é¡žã¯ãƒãƒ£ãƒ³ãƒ³ãƒãƒ«ã¨ãƒžã‚¹ã‚¯ã«ã®ã¿å½±éŸ¿ã—ã¾ã™." +"インデックスカラーã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯å¸¸æ™‚補間ãªã—ã§æ‹¡å¤§ç¸®å°ã•ã‚Œã¾ã™ã€‚ãã®å ´åˆã€è£œé–“" +"ã®ç¨®é¡žã¯ãƒãƒ£ãƒ³ãƒãƒ«ã¨ãƒžã‚¹ã‚¯ã«ã®ã¿å½±éŸ¿ã—ã¾ã™ã€‚" #: ../app/dialogs/stroke-dialog.c:104 msgid "Choose Stroke Style" @@ -7020,8 +6914,8 @@ #, c-format msgid "There should be a file called '%s'. Please check your installation." msgstr "" -"'%s' ã¨ã„ã†ãƒ•ã‚¡ã‚¤ãƒ«ãŒå­˜åœ¨ã—ã¦ã„ã‚‹ã¹ãã§ã™. GIMP ãŒæ­£ã—ãインストールã•ã‚Œã¦ã„" -"ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„." +"'%s' ã¨ã„ã†ãƒ•ã‚¡ã‚¤ãƒ«ãŒå­˜åœ¨ã—ã¦ã„ã‚‹ã¹ãã§ã™ã€‚GIMP ãŒæ­£ã—ãインストールã•ã‚Œã¦ã„" +"ã‚‹ã‹ç¢ºèªã—ã¦ãã ã•ã„。" #: ../app/dialogs/tips-dialog.c:98 msgid "The GIMP tips file could not be parsed!" @@ -7058,17 +6952,17 @@ "behavior. Paths to search for brushes, palettes, gradients, patterns, plug-" "ins and modules can also configured here." msgstr "" -"gimprc 㯠GIMP ã®åŸºæœ¬å‹•ä½œã«é–¢ã™ã‚‹å€‹äººè¨­å®šã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã—ã¾ã™. ブラシ, " -"パレット, グラデーション, パターン, プラグインやモジュール等を検索ã™ã‚‹ãƒ‘スã¯" -"ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«è¨­å®šã•ã‚Œã¾ã™." +"gimprc 㯠GIMP ã®åŸºæœ¬å‹•ä½œã«é–¢ã™ã‚‹å€‹äººè¨­å®šã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã—ã¾ã™ã€‚ブラシã€" +"パレットã€ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã€ãƒ‘ターンã€ãƒ—ラグインやモジュール等を検索ã™ã‚‹ãƒ‘スã¯" +"ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«è¨­å®šã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:143 msgid "" "GIMP uses an additional gtkrc file so you can configure it to look " "differently than other GTK apps." msgstr "" -"GIMP ã«å¯¾ã™ã‚‹å°‚用㮠gtkrc ファイルも使用ã§ã, ã“れを用ã„ã¦ä»–ã® GTK アプリケー" -"ションã¨é•ã£ãŸè¦‹ãŸç›®ã«è¨­å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™." +"GIMP ã«å¯¾ã™ã‚‹å°‚用㮠gtkrc ファイルも使用ã§ãã€ã“れを用ã„ã¦ä»–ã® GTK アプリケー" +"ションã¨é•ã£ãŸè¦‹ãŸç›®ã«è¨­å®šã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:149 msgid "" @@ -7077,10 +6971,10 @@ "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." msgstr "" -"プラグインや機能拡張ã¯, 機能を追加ã™ã‚‹ãŸã‚ã« GIMP ã«ã‚ˆã£ã¦å®Ÿè¡Œã•ã‚Œã‚‹å¤–部プロ" -"グラムã§ã™. ã“れらã®ãƒ—ログラムã¯å®Ÿè¡Œæ™‚ã«æ¤œç´¢ã•ã‚Œ, 機能や導入ã•ã‚ŒãŸæ—¥æ™‚ç­‰ã®æƒ…" -"å ±ãŒã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚­ãƒ£ãƒƒã‚·ãƒ¥ã•ã‚Œã¾ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP ã«ã‚ˆã£ã¦ã®ã¿å¤‰æ›´ã•" -"れるもã®ã§, ユーザãŒå¤‰æ›´ã‚’加ãˆã‚‹ã¹ãã§ã¯ã‚ã‚Šã¾ã›ã‚“." +"プラグインや機能拡張ã¯ã€æ©Ÿèƒ½ã‚’追加ã™ã‚‹ãŸã‚ã« GIMP ã«ã‚ˆã£ã¦å®Ÿè¡Œã•ã‚Œã‚‹å¤–部プロ" +"グラムã§ã™ã€‚ã“れらã®ãƒ—ログラムã¯å®Ÿè¡Œæ™‚ã«æ¤œç´¢ã•ã‚Œã€æ©Ÿèƒ½ã‚„å°Žå…¥ã•ã‚ŒãŸæ—¥æ™‚ç­‰ã®æƒ…" +"å ±ãŒã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ã‚­ãƒ£ãƒƒã‚·ãƒ¥ã•ã‚Œã¾ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP ã«ã‚ˆã£ã¦ã®ã¿å¤‰æ›´ã•" +"れるもã®ã§ã€ãƒ¦ãƒ¼ã‚¶ãŒå¤‰æ›´ã‚’加ãˆã‚‹ã¹ãã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #: ../app/dialogs/user-install-dialog.c:159 msgid "" @@ -7089,10 +6983,10 @@ "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." msgstr "" -"キーショートカット㯠GIMP 内ã§ã®å‹•çš„ã«å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™. menurc ã¯ã‚ãªãŸ" -"ã®è¨­å®šã‚’書ã出ã—ãŸã‚‚ã®ã§, 次ã«èµ·å‹•ã—ãŸéš›ã«å†ã³åŒã˜ã‚‚ã®ãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™. 手ã§" -"ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’書ã変ãˆã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ãŒ, GIMP を使ã£ã¦å¤‰æ›´ã™ã‚‹æ–¹ãŒæ¥½ã§ã—ょ" -"ã†. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’削除ã™ã‚‹ã“ã¨ã§, ショートカットをåˆæœŸåŒ–ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™." +"キーショートカット㯠GIMP 内ã§ã®å‹•çš„ã«å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚menurc ã¯ã‚ãªãŸ" +"ã®è¨­å®šã‚’書ã出ã—ãŸã‚‚ã®ã§ã€æ¬¡ã«èµ·å‹•ã—ãŸéš›ã«å†ã³åŒã˜ã‚‚ã®ãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚手ã§" +"ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’書ã変ãˆã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ãŒã€GIMP を使ã£ã¦å¤‰æ›´ã™ã‚‹æ–¹ãŒæ¥½ã§ã—ょ" +"ã†ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’削除ã™ã‚‹ã“ã¨ã§ã€ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’åˆæœŸåŒ–ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:169 msgid "" @@ -7101,15 +6995,15 @@ "the saved position." msgstr "" "sessionrc 㯠GIMP 終了時ã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒã©ã“ã«ã‚ã£ãŸã‹ã‚’ä¿å­˜ã™ã‚‹ãŸã‚" -"ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å­˜ã•ã‚ŒãŸä½ç½®ã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãよã†ã« GIMP ã‚’" -"設定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™." +"ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å­˜ã•ã‚ŒãŸä½ç½®ã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãよã†ã« GIMP ã‚’" +"設定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../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 msgid "" @@ -7118,9 +7012,9 @@ "millimeters, points and picas. This file is overwritten each time you quit " "the GIMP." msgstr "" -"unitrc ã¯ãƒ¦ãƒ¼ã‚¶å˜ä½ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚‚ã®ã§ã™. æ–°ãŸã«å˜ä½ã‚’追加ã—" -"ã¦, ã‚ãŸã‹ã‚‚インãƒ, ãƒã‚¤ãƒ³ãƒˆ, ミリメートルやパイカã¨ã„ã£ãŸå†…蔵å˜ä½ã¨åŒç­‰ã«ç”¨" -"ã„ã‚‹ã“ã¨ãŒã§ãã¾ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP 終了時ã«ä¸Šæ›¸ãã•ã‚Œã¾ã™." +"unitrc ã¯ãƒ¦ãƒ¼ã‚¶å˜ä½ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã‚’ä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚‚ã®ã§ã™ã€‚æ–°ãŸã«å˜ä½ã‚’追加ã—" +"ã¦ã€ã‚ãŸã‹ã‚‚インãƒã€ãƒã‚¤ãƒ³ãƒˆã€ãƒŸãƒªãƒ¡ãƒ¼ãƒˆãƒ«ã‚„パイカã¨ã„ã£ãŸå†…蔵å˜ä½ã¨åŒç­‰ã«ç”¨" +"ã„ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯ GIMP 終了時ã«ä¸Šæ›¸ãã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:191 msgid "" @@ -7128,8 +7022,8 @@ "folder in addition to the system-wide GIMP brushes installation when " "searching for brushes." msgstr "" -"ユーザ定義ã®ãƒ–ラシをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ–ラシ" -"ディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™." +"ユーザ定義ã®ãƒ–ラシをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™ã€‚GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ–ラシ" +"ディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:199 msgid "" @@ -7138,10 +7032,10 @@ "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." msgstr "" -"GIMP 内ã®ã¿ã§ä½¿ã„ãŸã„フォントをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. フォントを検索ã™" -"ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリ" -"を検索ã—ã¾ã™. GIMP ã ã‘ã§ä½¿ã„ãŸã„時ã ã‘ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’使ã„, ãれ以外ã¯ã‚·ã‚¹" -"テム共通ã®ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ãƒ•ã‚©ãƒ³ãƒˆã‚’インストールã—ã¦ãã ã•ã„." +"GIMP 内ã®ã¿ã§ä½¿ã„ãŸã„フォントをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™ã€‚フォントを検索ã™" +"ã‚‹å ´åˆã€GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリ" +"を検索ã—ã¾ã™ã€‚GIMP ã ã‘ã§ä½¿ã„ãŸã„時ã ã‘ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’使ã„ã€ãれ以外ã¯ã‚·ã‚¹" +"テム共通ã®ãƒ•ã‚©ãƒ³ãƒˆãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ãƒ•ã‚©ãƒ³ãƒˆã‚’インストールã—ã¦ãã ã•ã„。" #: ../app/dialogs/user-install-dialog.c:209 msgid "" @@ -7149,9 +7043,9 @@ "folder in addition to the system-wide GIMP gradients installation when " "searching for gradients." msgstr "" -"ユーザ定義ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’ä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. グラデーションを検" -"ç´¢ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–" -"ディレクトリを検索ã—ã¾ã™." +"ユーザ定義ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’ä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™ã€‚グラデーションを検" +"ç´¢ã™ã‚‹å ´åˆã€GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ç¶šã‘ã¦ã€ã“ã®ã‚µãƒ–" +"ディレクトリを検索ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:216 msgid "" @@ -7159,9 +7053,9 @@ "folder in addition to the system-wide GIMP palettes installation when " "searching for palettes." msgstr "" -"ユーザ定義ã®ãƒ‘レットをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. パレットを検索ã™ã‚‹å ´åˆ, " -"GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ‘レットディレクトリã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索" -"ã—ã¾ã™." +"ユーザ定義ã®ãƒ‘レットをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™ã€‚パレットを検索ã™ã‚‹å ´åˆã€" +"GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ‘レットディレクトリã«ç¶šã‘ã¦ã€ã“ã®ã‚µãƒ–ディレクトリを検索" +"ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:223 msgid "" @@ -7169,9 +7063,9 @@ "folder in addition to the system-wide GIMP patterns installation when " "searching for patterns." msgstr "" -"ユーザ定義ã®ãƒ‘ターンをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™. パターンを検索ã™ã‚‹å ´åˆ, " -"GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ‘ターンディレクトリã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索" -"ã—ã¾ã™." +"ユーザ定義ã®ãƒ‘ターンをä¿å­˜ã™ã‚‹ã‚µãƒ–ディレクトリã§ã™ã€‚パターンを検索ã™ã‚‹å ´åˆã€" +"GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ãƒ‘ターンディレクトリã«ç¶šã‘ã¦ã€ã“ã®ã‚µãƒ–ディレクトリを検索" +"ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:230 msgid "" @@ -7179,9 +7073,9 @@ "system-supported plug-ins. The GIMP checks this folder in addition to the " "system-wide GIMP plug-in folder when searching for plug-ins." msgstr "" -"ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãª, ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„プラグインをä¿å­˜" -"ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. プラグインを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“" -"ã® GIMP プラグインディレクトリã«ç¶šã‘ã¦, ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™." +"ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãªã€ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„プラグインをä¿å­˜" +"ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™ã€‚プラグインを検索ã™ã‚‹å ´åˆã€GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“" +"ã® GIMP プラグインディレクトリã«ç¶šã‘ã¦ã€ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:238 msgid "" @@ -7190,9 +7084,9 @@ "the system-wide GIMP module folder when searching for modules to load during " "initialization." msgstr "" -"ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãª, ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„ DLL モジュールを" -"ä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. モジュールを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ " -"全体㮠GIMP モジュールディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™." +"ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãªã€ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„ DLL モジュールを" +"ä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™ã€‚モジュールを検索ã™ã‚‹å ´åˆã€GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ " +"全体㮠GIMP モジュールディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:247 msgid "" @@ -7201,9 +7095,9 @@ "folder in addition to the system-wide GIMP environment folder when searching " "for plug-in environment modification files." msgstr "" -"ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãª, ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„プラグインをä¿å­˜" -"ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™. GIMP ã¯ãƒ—ラグインを検索ã™ã‚‹å ´åˆ, システム全体" -"ã® GIMP プラグインディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™." +"ユーザãŒä½œæˆã—ãŸä¸€æ™‚çš„ãªã€ã‚‚ã—ãã¯ã‚·ã‚¹ãƒ†ãƒ ã§ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„プラグインをä¿å­˜" +"ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリã§ã™ã€‚GIMP ã¯ãƒ—ラグインを検索ã™ã‚‹å ´åˆã€ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“" +"ã® GIMP プラグインディレクトリã«ç¶šã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:257 msgid "" @@ -7212,16 +7106,16 @@ "searching for scripts." msgstr "" "ユーザãŒä½œæˆã—ãŸã‚Šã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸã‚¹ã‚¯ãƒªãƒ—トをä¿å­˜ã™ã‚‹ãŸã‚ã®ã‚µãƒ–ディレクトリ" -"ã§ã™. スクリプトを検索ã™ã‚‹å ´åˆ, GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ã‚¹ã‚¯ãƒªãƒ—トディレクトリã«" -"続ã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™." +"ã§ã™ã€‚スクリプトを検索ã™ã‚‹å ´åˆã€GIMP ã¯ã‚·ã‚¹ãƒ†ãƒ å…¨ä½“ã®ã‚¹ã‚¯ãƒªãƒ—トディレクトリã«" +"続ã‘ã¦ã“ã®ã‚µãƒ–ディレクトリを検索ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:265 msgid "This folder is searched for image templates." -msgstr "ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ç”»åƒã®ãƒ†ãƒ³ãƒ—レート(雛形)ãŒæ¤œç´¢ã•ã‚Œã¾ã™." +msgstr "ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ç”»åƒã®ãƒ†ãƒ³ãƒ—レート (雛形) ãŒæ¤œç´¢ã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:270 msgid "This folder is searched for user-installed themes." -msgstr "ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ãƒ¦ãƒ¼ã‚¶ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸãƒ†ãƒ¼ãƒžãŒæ¤œç´¢ã•ã‚Œã¾ã™." +msgstr "ã“ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‹ã‚‰ãƒ¦ãƒ¼ã‚¶ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—ãŸãƒ†ãƒ¼ãƒžãŒæ¤œç´¢ã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:275 msgid "" @@ -7230,32 +7124,32 @@ "<#> may persist in this folder. These files are useless across GIMP " "sessions and can be destroyed with impunity." msgstr "" -"メモリ使用é‡ã‚’減らã™ãŸã‚, GIMP ãŒã‚¢ãƒ³ãƒ‰ã‚¥ãƒãƒƒãƒ•ã‚¡ã‚’一時的ã«ç½®ã„ã¦ãŠããŸã‚ã®" -"ディレクトリã§ã™. GIMP を強制的ã«çµ‚了ã•ã›ãŸå ´åˆã«ã¯, gimp<番å·>.<番å·> ã¨ã„ã†" -"åå‰ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒæ®‹ã£ã¦ã—ã¾ã†ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“. ã“れらã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯å‰Šé™¤ã—ã¦ã‚‚ã‹ã¾" -"ã„ã¾ã›ã‚“." +"メモリ使用é‡ã‚’減らã™ãŸã‚ã€GIMP ãŒå–り消ã—ãƒãƒƒãƒ•ã‚¡ã‚’一時的ã«ç½®ã„ã¦ãŠããŸã‚ã®" +"ディレクトリã§ã™ã€‚GIMP を強制的ã«çµ‚了ã•ã›ãŸå ´åˆã«ã¯ã€gimp<番å·>.<番å·> ã¨ã„ã†" +"åå‰ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒæ®‹ã£ã¦ã—ã¾ã†ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。ã“れらã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯å‰Šé™¤ã—ã¦ã‚‚ã‹ã¾" +"ã„ã¾ã›ã‚“。" #: ../app/dialogs/user-install-dialog.c:284 msgid "This folder is used to store tool options." -msgstr "ツールオプションをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™." +msgstr "ツールオプションをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™ã€‚" #: ../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 msgid "This folder is used to store parameter files for the Levels tool." msgstr "" -"レベルツールã®ãƒ‘ラメタファイルをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™." +"レベルツールã®ãƒ‘ラメタファイルをä¿å­˜ã—ã¦ãŠããŸã‚ã®ã‚µãƒ–ディレクトリã§ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:390 msgid "Installation successful. Click \"Continue\" to proceed." -msgstr "インストールã¯æˆåŠŸã—ã¾ã—ãŸ. \"次ã¸\" をクリックã—ã¦é€²ã¿ã¾ã™." +msgstr "インストールã¯æˆåŠŸã—ã¾ã—ãŸã€‚\"次ã¸\" をクリックã—ã¦é€²ã¿ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:396 msgid "Installation failed. Contact system administrator." -msgstr "インストールã«å¤±æ•—ã—ã¾ã—ãŸ. システム管ç†è€…ã«ã”相談ãã ã•ã„." +msgstr "インストールã«å¤±æ•—ã—ã¾ã—ãŸã€‚システム管ç†è€…ã«ã”相談ãã ã•ã„。" #: ../app/dialogs/user-install-dialog.c:609 msgid "GIMP User Installation" @@ -7278,7 +7172,7 @@ #: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." -msgstr "GIMP ユーザインストールを始ã‚ã‚‹ã«ã¯ \"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„." +msgstr "GIMP ユーザインストールを始ã‚ã‚‹ã«ã¯ \"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„。" #: ../app/dialogs/user-install-dialog.c:778 msgid "" @@ -7288,7 +7182,7 @@ msgstr "" "The GIMP - GNU Image Manipulation Program\n" "Copyright (c) 1995-2004\n" -"Spencer Kimball, Peter Mattis, GIMP 開発ãƒãƒ¼ãƒ ." +"Spencer Kimball, Peter Mattis, GIMP 開発ãƒãƒ¼ãƒ ã€‚" #: ../app/dialogs/user-install-dialog.c:788 msgid "" @@ -7297,10 +7191,10 @@ "Software Foundation; either version 2 of the License, or (at your option) " "any later version." msgstr "" -"本プログラムã¯ãƒ•ãƒªãƒ¼ãƒ»ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã§ã™. ã‚ãªãŸã¯ã€Free Software Foundation ãŒ" -"公表ã—ãŸGNU一般公有使用許諾ã®ã€Œãƒãƒ¼ã‚¸ãƒ§ãƒ³ï¼’ã€ã‚ã‚‹ã„ã¯ã¯ãれ以é™ã®å„ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -"ã®ä¸­ã‹ã‚‰ã„ãšã‚Œã‹ã‚’é¸æŠžã—, ãã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå®šã‚ã‚‹æ¡é …ã«å¾“ã£ã¦æœ¬ãƒ—ログラムをå†" -"頒布ã¾ãŸã¯å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™." +"本プログラムã¯ãƒ•ãƒªãƒ¼ãƒ»ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã§ã™ã€‚ã‚ãªãŸã¯ã€Free Software Foundation ãŒ" +"公表ã—ãŸGNU一般公有使用許諾ã®ã€Œãƒãƒ¼ã‚¸ãƒ§ãƒ³2ã€ã‚ã‚‹ã„ã¯ãれ以é™ã®å„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®" +"中ã‹ã‚‰ã„ãšã‚Œã‹ã‚’é¸æŠžã—ã€ãã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå®šã‚ã‚‹æ¡é …ã«å¾“ã£ã¦æœ¬ãƒ—ログラムをå†é ’" +"布ã¾ãŸã¯å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:794 msgid "" @@ -7309,9 +7203,9 @@ "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for " "more details." msgstr "" -"本プログラムã¯æœ‰ç”¨ã¨ã¯æ€ã„ã¾ã™ãŒ, 頒布ã«ã‚ãŸã£ã¦ã¯, 市場性ãŠã‚ˆã³ç‰¹å®šç›®çš„é©" -"åˆæ€§ã«ã¤ã„ã¦ã®æš—é»™ã®ä¿è¨¼ã‚’å«ã‚ã¦, ã„ã‹ãªã‚‹ä¿è¨¼ã‚‚è¡Œãªã„ã¾ã›ã‚“. 詳細ã«ã¤ã„ã¦ã¯ " -"GNU 一般公有使用許諾書をãŠèª­ã¿ãã ã•ã„." +"本プログラムã¯æœ‰ç”¨ã¨ã¯æ€ã„ã¾ã™ãŒã€é ’布ã«ã‚ãŸã£ã¦ã¯ã€å¸‚場性ãŠã‚ˆã³ç‰¹å®šç›®çš„é©åˆ" +"性ã«ã¤ã„ã¦ã®æš—é»™ã®ä¿è¨¼ã‚’å«ã‚ã¦ã€ã„ã‹ãªã‚‹ä¿è¨¼ã‚‚è¡Œãªã„ã¾ã›ã‚“。詳細ã«ã¤ã„ã¦ã¯ " +"GNU 一般公有使用許諾書をãŠèª­ã¿ãã ã•ã„。" #: ../app/dialogs/user-install-dialog.c:800 msgid "" @@ -7319,9 +7213,9 @@ "this program; if not, write to the Free Software Foundation, Inc., 59 Temple " "Place - Suite 330, Boston, MA 02111-1307, USA." msgstr "" -"ã‚ãªãŸã¯, 本プログラムã¨ä¸€ç·’ã«GNU 一般公有使用許諾ã®å†™ã—ã‚’å—ã‘å–ã£ã¦ã„ã‚‹ã¯ãš" -"ã§ã™. ãã†ã§ãªã„å ´åˆã¯, Free Software Foundation,Inc., 59 Temple Place - " -"Suite 330, Boston, MA 02111-1307, USA. ã¸æ‰‹ç´™ã‚’書ã„ã¦ãã ã•ã„." +"ã‚ãªãŸã¯ã€æœ¬ãƒ—ログラムã¨ä¸€ç·’ã«GNU 一般公有使用許諾ã®å†™ã—ã‚’å—ã‘å–ã£ã¦ã„ã‚‹ã¯ãš" +"ã§ã™ã€‚ãã†ã§ãªã„å ´åˆã¯ã€Free Software Foundation,Inc., 59 Temple Place - " +"Suite 330, Boston, MA 02111-1307, USA. ã¸æ‰‹ç´™ã‚’書ã„ã¦ãã ã•ã„。" #: ../app/dialogs/user-install-dialog.c:810 msgid "Migrate User Settings" @@ -7329,7 +7223,7 @@ #: ../app/dialogs/user-install-dialog.c:811 msgid "Click \"Continue\" to proceed with the user installation." -msgstr "GIMP ユーザインストールを始ã‚ã‚‹ã«ã¯ \"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„." +msgstr "GIMP ユーザインストールを始ã‚ã‚‹ã«ã¯ \"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„。" #: ../app/dialogs/user-install-dialog.c:816 msgid "It seems you have used GIMP 2.0 before." @@ -7349,7 +7243,7 @@ #: ../app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." -msgstr "個人 GIMP ディレクトリを作æˆã™ã‚‹ã«ã¯ \"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„." +msgstr "個人 GIMP ディレクトリを作æˆã™ã‚‹ã«ã¯ \"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„。" #: ../app/dialogs/user-install-dialog.c:896 #, c-format @@ -7357,16 +7251,16 @@ "For a proper GIMP installation, a folder named '%s' needs to be " "created." msgstr "" -"正常㫠GIMP ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚‹ã¨, '%s' ã¨ã„ã†ã‚µãƒ–ディレクトリãŒä½œæˆ" -"ã•ã‚Œã¾ã™." +"正常㫠GIMP ãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã‚‹ã¨ã€'%s' ã¨ã„ã†ã‚µãƒ–ディレクトリãŒä½œæˆ" +"ã•ã‚Œã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:903 msgid "" "This folder will contain a number of important files. Click on one of the " "files or folders in the tree to get more information about the selected item." msgstr "" -"ã“ã®ã‚µãƒ–ディレクトリã«ã¯é‡è¦ãªãƒ•ã‚¡ã‚¤ãƒ«ãŒå¤šãç½®ã‹ã‚Œã¾ã™. ツリー中ã®ã‚µãƒ–ディレ" -"クトリやファイルをクリックã™ã‚‹ã¨, 個々ã®è©³ã—ã„説明を表示ã—ã¾ã™." +"ã“ã®ã‚µãƒ–ディレクトリã«ã¯é‡è¦ãªãƒ•ã‚¡ã‚¤ãƒ«ãŒå¤šãç½®ã‹ã‚Œã¾ã™ã€‚ツリー中ã®ã‚µãƒ–ディレ" +"クトリやファイルをクリックã™ã‚‹ã¨ã€å€‹ã€…ã®è©³ã—ã„説明を表示ã—ã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:991 msgid "User Installation Log" @@ -7382,13 +7276,13 @@ #: ../app/dialogs/user-install-dialog.c:1000 msgid "Click \"Continue\" to accept the settings above." -msgstr "上ã®è¨­å®šã§ã‚ˆã‘れ㰠\"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„." +msgstr "上ã®è¨­å®šã§ã‚ˆã‘れ㰠\"次ã¸\" をクリックã—ã¦ä¸‹ã•ã„。" #: ../app/dialogs/user-install-dialog.c:1005 msgid "" "For optimal GIMP performance, some settings may have to be adjusted." msgstr "" -"最良㮠GIMP パフォーマンスを得るãŸã‚ã«, å¹¾ã¤ã‹ã®è¨­å®šã‚’調整ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾" +"最良㮠GIMP パフォーマンスを得るãŸã‚ã«ã€å¹¾ã¤ã‹ã®è¨­å®šã‚’調整ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾" "ã™." #: ../app/dialogs/user-install-dialog.c:1065 @@ -7413,8 +7307,8 @@ "the amount of memory used by other running processes." msgstr "" "GIMP 㯠\"タイルキャッシュ\" ã¨ã„ã†ä¸€å®šé‡ã®ãƒ¡ãƒ¢ãƒªã‚’使用ã—ã¦ç”»åƒã‚’å–り扱ã„ã¾" -"ã™. ä»–ã®å®Ÿè¡Œä¸­ã®ãƒ—ロセス等ã®ã“ã¨ã‚‚考ãˆã¤ã¤, 実メモリé‡ã«åŸºã¥ã„ã¦é©åˆ‡ãªã‚µã‚¤ã‚º" -"ã«è¨­å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™." +"ã™ã€‚ä»–ã®å®Ÿè¡Œä¸­ã®ãƒ—ロセス等ã®ã“ã¨ã‚‚考ãˆã¤ã¤ã€å®Ÿãƒ¡ãƒ¢ãƒªé‡ã«åŸºã¥ã„ã¦é©åˆ‡ãªã‚µã‚¤ã‚º" +"ã«è¨­å®šã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" #: ../app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" @@ -7427,10 +7321,10 @@ "with enough free space (several hundred MB). On a UNIX system, you may want " "to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." msgstr "" -"タイルキャッシュ中ã«åŽã¾ã‚‰ãªã„ç”»åƒãƒ‡ãƒ¼ã‚¿ã¨ã‚¢ãƒ³ãƒ‰ã‚¥ãƒ‡ãƒ¼ã‚¿ã¯ã‚¹ãƒ¯ãƒƒãƒ—ファイルã«" -"書ã出ã•ã‚Œã¾ã™. ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ•°ç™¾ MB ã®ç©ºã容é‡ã‚’ã‚‚ã£ãŸãƒ­ãƒ¼ã‚«ãƒ«ãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹" -"テム上ã«ç½®ãよã†ã«ã—ã¾ã™. UNIX システムã§ã¯, /tmp ã‚„ /var/tmp ã¨ã„ã£ãŸã‚·ã‚¹ãƒ†" -"ムã®ãƒ†ãƒ³ãƒãƒ©ãƒªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ã—ã¦ã‚‚よã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“." +"タイルキャッシュ中ã«åŽã¾ã‚‰ãªã„ç”»åƒãƒ‡ãƒ¼ã‚¿ã¨å–り消ã—データã¯ã‚¹ãƒ¯ãƒƒãƒ—ファイルã«" +"書ã出ã•ã‚Œã¾ã™ã€‚ã“ã®ãƒ•ã‚¡ã‚¤ãƒ«ã¯æ•°ç™¾ MB ã®ç©ºã容é‡ã‚’ã‚‚ã£ãŸãƒ­ãƒ¼ã‚«ãƒ«ãƒ•ã‚¡ã‚¤ãƒ«ã‚·ã‚¹" +"テム上ã«ç½®ãよã†ã«ã—ã¾ã™ã€‚UNIX システムã§ã¯ã€/tmp ã‚„ /var/tmp ã¨ã„ã£ãŸã‚·ã‚¹ãƒ†" +"ムã®ãƒ†ãƒ³ãƒãƒ©ãƒªãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã«ã—ã¦ã‚‚よã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。" #: ../app/dialogs/user-install-dialog.c:1398 msgid "Select swap dir" @@ -7441,14 +7335,12 @@ msgstr "パスを SVG å½¢å¼ã§ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ" #: ../app/dialogs/vectors-export-dialog.c:78 -#, fuzzy msgid "Export the active path" -msgstr "ç¾åœ¨ã®ãƒ‘スを移動" +msgstr "ç¾åœ¨ã®ãƒ‘スをエクスãƒãƒ¼ãƒˆ" #: ../app/dialogs/vectors-export-dialog.c:79 -#, fuzzy msgid "Export all paths from this image" -msgstr "ã“ã®ç”»åƒã«å¯¾ã™ã‚‹æ–°ã—ã„ディスプレイを作æˆ" +msgstr "ã“ã®ç”»åƒã‹ã‚‰ã™ã¹ã¦ã®ãƒ‘スをエクスãƒãƒ¼ãƒˆ" #: ../app/dialogs/vectors-import-dialog.c:57 msgid "Import Paths from SVG" @@ -7456,11 +7348,11 @@ #: ../app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" -msgstr "利用å¯èƒ½ãªãƒ•ã‚¡ã‚¤ãƒ«" +msgstr "ã™ã¹ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ« (*.*)" #: ../app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" -msgstr "" +msgstr "拡大縮å°å¯èƒ½ãª SVG ç”»åƒ (*.svg)" #: ../app/dialogs/vectors-import-dialog.c:99 msgid "_Merge imported paths" @@ -7468,7 +7360,7 @@ #: ../app/dialogs/vectors-import-dialog.c:109 msgid "_Scale imported paths to fit image" -msgstr "" +msgstr "インãƒãƒ¼ãƒˆã—ãŸãƒ‘スを画åƒã«åˆã‚ã›ã¦æ‹¡å¤§ç¸®å°(_S)" #: ../app/dialogs/vectors-options-dialog.c:113 msgid "Path Name:" @@ -7479,7 +7371,6 @@ msgstr "ツールアイコン" #: ../app/display/display-enums.c:25 -#, fuzzy msgid "Tool icon with crosshair" msgstr "å字付ãツールアイコン" @@ -7505,7 +7396,7 @@ #: ../app/display/gimpdisplayshell.c:943 msgid "Zoom image when window size changes" -msgstr "" +msgstr "ウィンドウサイズ変更時ã«ç”»åƒã‚’ズーム" #: ../app/display/gimpdisplayshell.c:963 msgid "Toggle Quick Mask" @@ -7527,9 +7418,9 @@ msgstr "ç”»åƒ '%s' ã‚’é–‰ã˜ã‚‹å‰ã«å¤‰æ›´ã‚’ä¿å­˜ã—ã¾ã™ã‹?" #: ../app/display/gimpdisplayshell-close.c:209 -#, fuzzy, c-format +#, c-format msgid "If you don't save the image, changes from the last %s will be lost." -msgstr "未ä¿å­˜ã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™." +msgstr "ç”»åƒã‚’ä¿å­˜ã—ãªã‹ã£ãŸå ´åˆã€æœ€å¾Œã® %sé–“ã«ãŠã“ãªã‚ã‚ŒãŸå¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™ã€‚" #. one second, the time period #: ../app/display/gimpdisplayshell-close.c:266 @@ -7570,19 +7461,19 @@ msgid "Layer Select" msgstr "レイヤーé¸æŠž" -#: ../app/display/gimpdisplayshell-scale.c:537 +#: ../app/display/gimpdisplayshell-scale.c:541 msgid "Zoom Ratio" msgstr "拡大率" -#: ../app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:543 msgid "Select Zoom Ratio" msgstr "拡大率をé¸æŠž" -#: ../app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:578 msgid "Zoom Ratio:" msgstr "拡大率:" -#: ../app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:605 msgid "Zoom:" msgstr "ズーム:" @@ -7607,17 +7498,16 @@ msgstr "インデックス" #: ../app/display/gimpdisplayshell-title.c:292 -#, fuzzy msgid "(modified)" -msgstr "変更ãŒã‚ã£ãŸæ™‚ã ã‘" +msgstr "(修正済)" #: ../app/display/gimpdisplayshell-title.c:298 msgid "(clean)" -msgstr "" +msgstr "(消去)" #: ../app/display/gimpdisplayshell-title.c:325 msgid "1 layer" -msgstr "レイヤー" +msgstr "1 æžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼" #: ../app/display/gimpdisplayshell-title.c:325 #, c-format @@ -7630,9 +7520,9 @@ #: ../app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" -msgstr "" +msgstr "ステータスãƒãƒ¼æ–‡å­—周辺ã®é¢å–り形状" -#: ../app/display/gimpstatusbar.c:222 +#: ../app/display/gimpstatusbar.c:229 msgid "Cancel" msgstr "å–消" @@ -7653,9 +7543,8 @@ msgstr "プラグインã‹ã‚‰ç”»åƒã‚’オープンã§ãã¾ã›ã‚“" #: ../app/file/file-open.c:417 -#, fuzzy msgid "Image doesn't contain any visible layers" -msgstr "å…¨å¯è¦–レイヤーã«åŸºã„ã¦é¸æŠž" +msgstr "ç”»åƒã«å¯è¦–レイヤー㌠1 æžšã‚‚ã‚ã‚Šã¾ã›ã‚“" #: ../app/file/file-save.c:220 msgid "Plug-In could not save image" @@ -7691,7 +7580,7 @@ #: ../app/paint/gimpbrushcore.c:369 msgid "No brushes available for use with this tool." -msgstr "有効ãªãƒ–ラシãŒã‚ã‚Šã¾ã›ã‚“." +msgstr "有効ãªãƒ–ラシãŒã‚ã‚Šã¾ã›ã‚“。" #: ../app/paint/gimpclone.c:89 ../app/tools/gimpclonetool.c:89 msgid "Clone" @@ -7826,14 +7715,14 @@ msgid "Blending..." msgstr "ブレンドã—ã¦ã„ã¾ã™..." -#: ../app/pdb/image_cmds.c:3756 ../app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3758 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" msgstr "(ä¸é©åˆ‡ãª 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 "ç”»åƒã®è§£åƒåº¦ãŒåˆ¶é™ã‚’越ãˆã¦ã„ã‚‹ãŸã‚, 標準解åƒåº¦ã‚’代ã‚ã‚Šã«ä½¿ç”¨ã—ã¾ã™." +msgstr "ç”»åƒã®è§£åƒåº¦ãŒåˆ¶é™ã‚’越ãˆã¦ã„ã‚‹ãŸã‚ã€æ¨™æº–解åƒåº¦ã‚’代ã‚ã‚Šã«ä½¿ç”¨ã—ã¾ã™ã€‚" #: ../app/pdb/internal_procs.c:86 msgid "Internal Procedures" @@ -7970,13 +7859,13 @@ "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:392 #, c-format msgid "" "PDB calling error for procedure '%s':\n" "Argument #%d type mismatch (expected %s, got %s)" msgstr "" -"プロシージャ '%s' ã«å¯¾ã™ã‚‹ PBD 呼ã³å‡ºã—エラー:\n" +"プロシージャ '%s' ã«å¯¾ã™ã‚‹ PDB 呼ã³å‡ºã—エラー:\n" "%d 番目ã®å¼•æ•°ã®ç¨®é¡žãŒç•°ã£ã¦ã„ã¾ã™ (%s ã®ã¯ãšãŒ %s ã§ã—ãŸ)" #: ../app/pdb/procedural_db_cmds.c:80 @@ -7999,12 +7888,12 @@ 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:551 ../app/plug-in/plug-in.c:581 +#, 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:737 #, c-format msgid "" "Plug-In crashed: \"%s\"\n" @@ -8016,23 +7905,23 @@ "プラグインãŒã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã—ã¾ã—ãŸ: \"%s\"\n" "(%s)\n" "\n" -"実行ã«å¤±æ•—ã—ãŸãƒ—ラグイン㌠GIMP ã®å†…部状態をä¸å®‰å®šã«ã™ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“.念ã®ãŸ" -"ã‚, 作業中ã®ç”»åƒã‚’一旦ä¿å­˜ã—㦠GIMP ã‚’å†èµ·å‹•ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™." +"実行ã«å¤±æ•—ã—ãŸãƒ—ラグイン㌠GIMP ã®å†…部状態をä¸å®‰å®šã«ã™ã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。念ã®" +"ãŸã‚ã€ä½œæ¥­ä¸­ã®ç”»åƒã‚’一旦ä¿å­˜ã—㦠GIMP ã‚’å†èµ·å‹•ã™ã‚‹ã“ã¨ã‚’ãŠå‹§ã‚ã—ã¾ã™ã€‚" #: ../app/plug-in/plug-in-rc.c:176 #, c-format msgid "Skipping '%s': wrong GIMP protocol version." -msgstr "'%s' をスキップ: ä¸æ­£ãª GIMP プロトコルãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™." +msgstr "'%s' をスキップ: ä¸æ­£ãª GIMP プロトコルãƒãƒ¼ã‚¸ãƒ§ãƒ³ã§ã™ã€‚" #: ../app/plug-in/plug-in-rc.c:432 -#, fuzzy, c-format +#, c-format msgid "invalid value '%s' for icon type" -msgstr "トークン %2$s ã«ãŠã„ã¦ç„¡åŠ¹ãªå€¤ '%1$s'" +msgstr "アイコン型ã¨ã—ã¦ä¸é©åˆ‡ãªå€¤ '%s'" #: ../app/plug-in/plug-in-rc.c:447 -#, fuzzy, c-format +#, c-format msgid "invalid value '%ld' for icon type" -msgstr "トークン %2$s ã«ãŠã„ã¦ç„¡åŠ¹ãªå€¤ '%1$ld'" +msgstr "アイコン型ã¨ã—ã¦ä¸é©åˆ‡ãªå€¤ '%ld'" #: ../app/plug-in/plug-ins.c:139 msgid "Resource configuration" @@ -8095,7 +7984,7 @@ "Pack my box with\n" "five dozen liquor jugs." -#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:697 +#: ../app/text/gimptext-compat.c:108 ../app/tools/gimptexttool.c:699 msgid "Add Text Layer" msgstr "文字レイヤーを追加" @@ -8137,7 +8026,7 @@ #: ../app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." -msgstr "フォントãŒè¶³ã‚Šãªã„ãŸã‚, 文字機能ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“." +msgstr "フォントãŒè¶³ã‚Šãªã„ãŸã‚ã€æ–‡å­—機能ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“。" #: ../app/text/gimptextlayer.c:616 msgid "Empty Text Layer" @@ -8155,21 +8044,18 @@ "レイヤー '%s' ã®ãƒ†ã‚­ã‚¹ãƒˆãƒ‘ラサイトを解æžä¸­ã®å•é¡Œ:\n" "%s\n" "\n" -"å¹¾ã¤ã‹ã®ãƒ†ã‚­ã‚¹ãƒˆãƒ‘ラサイトãŒä¸æ­£ã§ã™. テキストレイヤーを編集ã™ã‚‹å ´åˆä»¥å¤–ã¯, " -"å•é¡Œã‚ã‚Šã¾ã›ã‚“." +"å¹¾ã¤ã‹ã®ãƒ†ã‚­ã‚¹ãƒˆãƒ‘ラサイトãŒä¸æ­£ã§ã™ã€‚テキストレイヤーを編集ã™ã‚‹å ´åˆä»¥å¤–ã¯ã€" +"å•é¡Œã‚ã‚Šã¾ã›ã‚“。" #: ../app/tools/tools-enums.c:25 -#, fuzzy msgid "Pick only" msgstr "スãƒã‚¤ãƒˆã®ã¿" #: ../app/tools/tools-enums.c:26 -#, fuzzy msgid "Set foreground color" msgstr "æ画色を設定" #: ../app/tools/tools-enums.c:27 -#, fuzzy msgid "Set background color" msgstr "背景色を設定" @@ -8182,34 +8068,28 @@ msgstr "サイズ変更" #: ../app/tools/tools-enums.c:83 -#, fuzzy msgid "Free select" msgstr "自由é¸æŠž" #: ../app/tools/tools-enums.c:84 -#, fuzzy msgid "Fixed size" msgstr "固定サイズ" #: ../app/tools/tools-enums.c:85 -#, fuzzy msgid "Fixed aspect ratio" msgstr "固定サイズ / 縦横比" #: ../app/tools/tools-enums.c:113 -#, fuzzy msgid "Transform layer" -msgstr "変æ›ãƒ¬ã‚¤ãƒ¤ãƒ¼" +msgstr "レイヤーを変æ›" #: ../app/tools/tools-enums.c:114 -#, fuzzy msgid "Transform selection" msgstr "é¸æŠžé ˜åŸŸã‚’変æ›" #: ../app/tools/tools-enums.c:115 -#, fuzzy msgid "Transform path" -msgstr "パスã®å¤‰æ›" +msgstr "パスを変æ›" #: ../app/tools/tools-enums.c:143 msgid "Design" @@ -8221,34 +8101,31 @@ #: ../app/tools/tools-enums.c:174 msgid "Outline" -msgstr "" +msgstr "アウトライン" #: ../app/tools/tools-enums.c:177 -#, fuzzy msgid "Image + Grid" -msgstr "åˆæœŸç”»åƒã‚°ãƒªãƒƒãƒ‰" +msgstr "ç”»åƒã¨ã‚°ãƒªãƒƒãƒ‰" #: ../app/tools/tools-enums.c:204 msgid "Number of grid lines" msgstr "グリッドã®ç·šæ•°" #: ../app/tools/tools-enums.c:205 -#, fuzzy msgid "Grid line spacing" -msgstr "グリッドã®é–“éš”" +msgstr "グリッド線ã®é–“éš”" -#: ../app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c:284 msgid "This tool has no options." -msgstr "ã“ã®ãƒ„ールã«ã¯ã‚ªãƒ—ションã¯ã‚ã‚Šã¾ã›ã‚“." +msgstr "ã“ã®ãƒ„ールã«ã¯ã‚ªãƒ—ションã¯ã‚ã‚Šã¾ã›ã‚“。" #: ../app/tools/gimpairbrushtool.c:56 msgid "Airbrush with variable pressure" msgstr "圧力調整å¯èƒ½ãªã‚¨ã‚¢ãƒ–ラシ" #: ../app/tools/gimpairbrushtool.c:57 -#, fuzzy msgid "_Airbrush" -msgstr "エアブラシ" +msgstr "エアブラシ(_A)" #: ../app/tools/gimpairbrushtool.c:123 ../app/tools/gimpconvolvetool.c:211 #: ../app/tools/gimpsmudgetool.c:123 @@ -8267,12 +8144,11 @@ 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 msgid "Adaptive supersampling" msgstr "é©å¿œåž‹ã‚¹ãƒ¼ãƒ‘ーサンプリング" @@ -8292,13 +8168,12 @@ msgstr "グラデーションを用ã„ã¦å¡—ã‚Šã¤ã¶ã™" #: ../app/tools/gimpblendtool.c:103 -#, fuzzy msgid "Blen_d" -msgstr "ブレンド" +msgstr "ブレンド(_D)" #: ../app/tools/gimpblendtool.c:191 msgid "Blend: Invalid for indexed images." -msgstr "ブレンド: インデックス画åƒã«ãŸã„ã—ã¦ã¯ç„¡åŠ¹ã§ã™." +msgstr "ブレンド: インデックス画åƒã«ãŸã„ã—ã¦ã¯ç„¡åŠ¹ã§ã™ã€‚" #. initialize the statusbar display #: ../app/tools/gimpblendtool.c:209 ../app/tools/gimpblendtool.c:308 @@ -8310,9 +8185,8 @@ msgstr "明るã•ã¨ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã®èª¿æ•´" #: ../app/tools/gimpbrightnesscontrasttool.c:87 -#, fuzzy msgid "B_rightness-Contrast..." -msgstr "明るã•-コントラスト" +msgstr "明るã•-コントラスト(_R)..." #: ../app/tools/gimpbrightnesscontrasttool.c:138 msgid "Adjust Brightness and Contrast" @@ -8320,7 +8194,7 @@ #: ../app/tools/gimpbrightnesscontrasttool.c:181 msgid "Brightness-Contrast does not operate on indexed layers." -msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯æ˜Žã‚‹ã•-コントラストをæ“作ã§ãã¾ã›ã‚“." +msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯æ˜Žã‚‹ã•-コントラストをæ“作ã§ãã¾ã›ã‚“。" #: ../app/tools/gimpbrightnesscontrasttool.c:236 msgid "_Brightness:" @@ -8356,12 +8230,10 @@ msgstr "影響領域 %s" #: ../app/tools/gimpbucketfilloptions.c:254 -#, fuzzy msgid "Fill whole selection" msgstr "é¸æŠžé ˜åŸŸã™ã¹ã¦ã‚’å¡—ã‚Šã¤ã¶ã™" #: ../app/tools/gimpbucketfilloptions.c:255 -#, fuzzy msgid "Fill similar colors" msgstr "類似色ã§å¡—ã‚Šã¤ã¶ã™" @@ -8371,7 +8243,6 @@ msgstr "類似色を見ã¤ã‘ã‚‹" #: ../app/tools/gimpbucketfilloptions.c:277 -#, fuzzy msgid "Fill transparent areas" msgstr "é€æ˜Žé ˜åŸŸã‚’å¡—ã‚Šã¤ã¶ã™" @@ -8379,7 +8250,6 @@ #: ../app/tools/gimpcolorpickeroptions.c:179 #: ../app/tools/gimpselectionoptions.c:454 #: ../app/tools/gimpselectionoptions.c:502 -#, fuzzy msgid "Sample merged" msgstr "レイヤーçµåˆè‰²" @@ -8388,9 +8258,8 @@ msgstr "色やパターンã§å¡—ã‚Šã¤ã¶ã™" #: ../app/tools/gimpbucketfilltool.c:93 -#, fuzzy msgid "_Bucket Fill" -msgstr "å¡—ã‚Šã¤ã¶ã—" +msgstr "å¡—ã‚Šã¤ã¶ã—(_B)" #: ../app/tools/gimpbycolorselecttool.c:82 msgid "Select By Color" @@ -8401,18 +8270,16 @@ msgstr "色ã«ã‚ˆã‚‹é ˜åŸŸé¸æŠž" #: ../app/tools/gimpbycolorselecttool.c:84 -#, fuzzy msgid "_By Color Select" -msgstr "レイヤーé¸æŠž" +msgstr "色ã«ã‚ˆã‚‹é¸æŠž(_B)" #: ../app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "パターンã‚ã‚‹ã„ã¯ç”»åƒã®ä¸€éƒ¨ã§æç”»ã™ã‚‹" #: ../app/tools/gimpclonetool.c:91 -#, fuzzy msgid "_Clone" -msgstr "スタンプ" +msgstr "スタンプ(_C)" #: ../app/tools/gimpclonetool.c:288 msgid "Source" @@ -8436,7 +8303,7 @@ #: ../app/tools/gimpcolorbalancetool.c:193 msgid "Color balance operates only on RGB color layers." -msgstr "カラーãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´ã¯ RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™." +msgstr "カラーãƒãƒ©ãƒ³ã‚¹ã®èª¿æ•´ã¯ RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™ã€‚" #: ../app/tools/gimpcolorbalancetool.c:276 msgid "Select Range to Modify" @@ -8463,7 +8330,6 @@ msgstr "範囲ã®ãƒªã‚»ãƒƒãƒˆ(_E)" #: ../app/tools/gimpcolorbalancetool.c:334 -#, fuzzy msgid "Preserve _luminosity" msgstr "è¼åº¦ä¿å­˜(_L)" @@ -8472,9 +8338,8 @@ msgstr "ç”»åƒã‚’ç€è‰²ã™ã‚‹" #: ../app/tools/gimpcolorizetool.c:98 -#, fuzzy msgid "Colori_ze..." -msgstr "ç€è‰²" +msgstr "ç€è‰²(_Z)..." #: ../app/tools/gimpcolorizetool.c:152 msgid "Colorize the Image" @@ -8482,7 +8347,7 @@ #: ../app/tools/gimpcolorizetool.c:195 msgid "Colorize operates only on RGB color layers." -msgstr "ç€è‰²æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™." +msgstr "ç€è‰²æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™ã€‚" #: ../app/tools/gimpcolorizetool.c:235 msgid "Select Color" @@ -8504,7 +8369,6 @@ msgstr "明度(_L):" #: ../app/tools/gimpcoloroptions.c:184 -#, fuzzy msgid "Sample average" msgstr "色ã®å¹³å‡ã‚’å–ã‚‹" @@ -8521,9 +8385,9 @@ #. the add to palette toggle #: ../app/tools/gimpcolorpickeroptions.c:193 -#, fuzzy, c-format +#, c-format msgid "Add to palette %s" -msgstr "/パレットã®ç·¨é›†(_E)..." +msgstr "パレットã«è¿½åŠ  %s" #: ../app/tools/gimpcolorpickertool.c:99 msgid "Color Picker" @@ -8534,9 +8398,8 @@ msgstr "ç”»åƒã‹ã‚‰è‰²ã‚’é¸ã³å‡ºã™" #: ../app/tools/gimpcolorpickertool.c:101 -#, fuzzy msgid "C_olor Picker" -msgstr "スãƒã‚¤ãƒˆ" +msgstr "スãƒã‚¤ãƒˆ(_O)" #. tool->gdisp->shell #: ../app/tools/gimpcolorpickertool.c:343 @@ -8548,9 +8411,8 @@ msgstr "ã¼ã‹ã™/シャープã«ã™ã‚‹" #: ../app/tools/gimpconvolvetool.c:72 -#, fuzzy msgid "Con_volve" -msgstr "色混ãœ" +msgstr "色混ãœ(_V)" #. the type radio box #: ../app/tools/gimpconvolvetool.c:193 @@ -8566,21 +8428,20 @@ msgstr "機能ã®åˆ‡ã‚Šæ›¿ãˆ %s" #: ../app/tools/gimpcropoptions.c:200 -#, fuzzy msgid "Current layer only" msgstr "ç¾åœ¨ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ã¿" #. enlarge toggle #: ../app/tools/gimpcropoptions.c:205 -#, fuzzy, c-format +#, c-format msgid "Allow enlarging %s" msgstr "拡大を許å¯ã™ã‚‹ %s" #. layer toggle #: ../app/tools/gimpcropoptions.c:215 -#, fuzzy, c-format +#, c-format msgid "Keep aspect ratio %s" -msgstr "固定サイズ / 縦横比" +msgstr "ç¸¦æ¨ªæ¯”ã‚’ç¶­æŒ %s" #: ../app/tools/gimpcroptool.c:164 msgid "Crop & Resize" @@ -8591,9 +8452,8 @@ msgstr "ç”»åƒã‚’切り抜ã„ãŸã‚Šå¤§ãã•ã‚’変ãˆãŸã‚Šã™ã‚‹" #: ../app/tools/gimpcroptool.c:166 -#, fuzzy msgid "_Crop & Resize" -msgstr "切り抜ã & サイズ変更" +msgstr "切り抜ã & サイズ変更(_C)" #. initialize the statusbar display #: ../app/tools/gimpcroptool.c:499 ../app/tools/gimpcroptool.c:983 @@ -8609,22 +8469,18 @@ msgstr "開始点 ã® X:" #: ../app/tools/gimpcroptool.c:1033 -#, fuzzy msgid "Origin Y:" -msgstr "開始点 ã® X:" +msgstr "開始点 ã® Y:" #: ../app/tools/gimpcroptool.c:1071 ../app/widgets/gimpbrusheditor.c:194 -#, fuzzy msgid "Aspect ratio:" -msgstr "アスペクト比:" +msgstr "縦横比:" #: ../app/tools/gimpcroptool.c:1082 -#, fuzzy msgid "From selection" msgstr "é¸æŠžé ˜åŸŸã‹ã‚‰" #: ../app/tools/gimpcroptool.c:1090 -#, fuzzy msgid "Auto shrink" msgstr "自動縮å°" @@ -8633,9 +8489,8 @@ msgstr "色カーブã®èª¿æ•´" #: ../app/tools/gimpcurvestool.c:143 -#, fuzzy msgid "_Curves..." -msgstr "カーブ" +msgstr "カーブ(_C)..." #: ../app/tools/gimpcurvestool.c:202 msgid "Adjust Color Curves" @@ -8646,7 +8501,6 @@ msgstr "カーブ読込" #: ../app/tools/gimpcurvestool.c:205 -#, fuzzy msgid "Load curves settings from file" msgstr "カーブ設定をファイルã‹ã‚‰èª­ã¿è¾¼ã‚€" @@ -8660,7 +8514,7 @@ #: ../app/tools/gimpcurvestool.c:283 msgid "Curves for indexed layers cannot be adjusted." -msgstr "インデックスæ画対象ã«å¯¾ã™ã‚‹è‰²ã‚«ãƒ¼ãƒ–ã¯èª¿æ•´ã§ãã¾ã›ã‚“." +msgstr "インデックスæ画対象ã«å¯¾ã™ã‚‹è‰²ã‚«ãƒ¼ãƒ–ã¯èª¿æ•´ã§ãã¾ã›ã‚“。" #: ../app/tools/gimpcurvestool.c:479 ../app/tools/gimplevelstool.c:415 #: ../app/widgets/gimphistogrameditor.c:161 @@ -8668,7 +8522,6 @@ msgstr "ãƒãƒ£ãƒ³ãƒãƒ«:" #: ../app/tools/gimpcurvestool.c:494 ../app/tools/gimplevelstool.c:430 -#, fuzzy msgid "R_eset channel" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®ãƒªã‚»ãƒƒãƒˆ(_E)" @@ -8687,9 +8540,8 @@ msgstr "暗室ストロークæç”»" #: ../app/tools/gimpdodgeburntool.c:72 -#, fuzzy msgid "Dod_geBurn" -msgstr "暗室" +msgstr "暗室(_G)" #. the type (dodge or burn) #: ../app/tools/gimpdodgeburntool.c:192 @@ -8707,9 +8559,8 @@ #: ../app/tools/gimpeditselectiontool.c:262 #: ../app/tools/gimpeditselectiontool.c:1203 -#, fuzzy msgid "Move Floating Selection" -msgstr "フローティングé¸æŠžé ˜åŸŸ" +msgstr "フローティングé¸æŠžé ˜åŸŸã®ç§»å‹•" #: ../app/tools/gimpeditselectiontool.c:464 #: ../app/tools/gimpeditselectiontool.c:732 @@ -8721,22 +8572,20 @@ msgstr "円形領域をé¸æŠžã™ã‚‹" #: ../app/tools/gimpellipseselecttool.c:73 -#, fuzzy msgid "_Ellipse Select" -msgstr "楕円é¸æŠž" +msgstr "楕円é¸æŠž(_E)" #: ../app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "消ã—ゴムã§èƒŒæ™¯è‰²ã‚„é€æ˜Žã«æˆ»ã™" #: ../app/tools/gimperasertool.c:72 -#, fuzzy msgid "_Eraser" -msgstr "消ã—ゴム" +msgstr "消ã—ゴム(_E)" #. the anti_erase toggle #: ../app/tools/gimperasertool.c:185 -#, fuzzy, c-format +#, c-format msgid "Anti erase %s" msgstr "逆消ゴム %s" @@ -8756,27 +8605,24 @@ msgstr "レイヤーやé¸æŠžé ˜åŸŸã‚’å転ã•ã›ã‚‹" #: ../app/tools/gimpfliptool.c:84 -#, fuzzy msgid "_Flip" -msgstr "é¡åƒå転" +msgstr "é¡åƒå転(_F)" #: ../app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "手書ãã§é ˜åŸŸé¸æŠž" #: ../app/tools/gimpfreeselecttool.c:98 -#, fuzzy msgid "_Free Select" -msgstr "自由é¸æŠž" +msgstr "自由é¸æŠž(_F)" #: ../app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "隣接(色)領域ã®é¸æŠž" #: ../app/tools/gimpfuzzyselecttool.c:99 -#, fuzzy msgid "Fu_zzy Select" -msgstr "ã‚ã„ã¾ã„é¸æŠž" +msgstr "ã‚ã„ã¾ã„é¸æŠž(_Z)" #: ../app/tools/gimphistogramoptions.c:151 msgid "Histogram Scale" @@ -8787,23 +8633,20 @@ msgstr "色相ã¨å½©åº¦ã®èª¿æ•´" #: ../app/tools/gimphuesaturationtool.c:112 -#, fuzzy msgid "Hue-_Saturation..." -msgstr "色相-彩度" +msgstr "色相-彩度(_S)..." #: ../app/tools/gimphuesaturationtool.c:166 -#, fuzzy msgid "Adjust hue / lightness / saturation" msgstr "色相 / 明度 / 彩度 ã®èª¿æ•´" #: ../app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." -msgstr "色相-彩度ã®æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™." +msgstr "色相-彩度ã®æ“作㯠RGB レイヤーã«ã®ã¿æœ‰åŠ¹ã§ã™ã€‚" #: ../app/tools/gimphuesaturationtool.c:263 -#, fuzzy msgid "M_aster" -msgstr "マスター(_M)" +msgstr "マスター(_A)" #: ../app/tools/gimphuesaturationtool.c:264 msgid "_R" @@ -8899,9 +8742,8 @@ msgstr "インクã§æã" #: ../app/tools/gimpinktool.c:64 -#, fuzzy msgid "In_k" -msgstr "インク" +msgstr "インク(_K)" #: ../app/tools/gimpiscissorstool.c:277 msgid "Scissors" @@ -8912,18 +8754,16 @@ msgstr "ç”»åƒã‹ã‚‰ã®å½¢çŠ¶é¸æŠž" #: ../app/tools/gimpiscissorstool.c:279 -#, fuzzy msgid "Intelligent _Scissors" -msgstr "/é“å…·/é¸æŠžãƒ„ール/電脳ã°ã•ã¿(_I)" +msgstr "電脳ã°ã•ã¿(_S)" #: ../app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "色レベルã®èª¿æ•´" #: ../app/tools/gimplevelstool.c:162 -#, fuzzy msgid "_Levels..." -msgstr "レベル" +msgstr "レベル(_L)..." #: ../app/tools/gimplevelstool.c:220 msgid "Adjust Color Levels" @@ -8931,16 +8771,15 @@ #: ../app/tools/gimplevelstool.c:222 msgid "Load Levels" -msgstr "読ã¿è¾¼ã¿ãƒ¬ãƒ™ãƒ«" +msgstr "レベル読ã¿è¾¼ã¿" #: ../app/tools/gimplevelstool.c:223 -#, fuzzy msgid "Load levels settings from file" msgstr "ファイルã‹ã‚‰ãƒ¬ãƒ™ãƒ«è¨­å®šã‚’読ã¿è¾¼ã‚€" #: ../app/tools/gimplevelstool.c:224 msgid "Save Levels" -msgstr "ä¿å­˜ãƒ¬ãƒ™ãƒ«" +msgstr "レベルä¿å­˜" #: ../app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" @@ -8951,17 +8790,14 @@ msgstr "インデックスレイヤーã®ãƒ¬ãƒ™ãƒ«ã¯èª¿æ•´ã§ãã¾ã›ã‚“" #: ../app/tools/gimplevelstool.c:355 -#, fuzzy msgid "Pick black point" msgstr "黒色ã®ç‚¹ã‚’移動" #: ../app/tools/gimplevelstool.c:359 -#, fuzzy msgid "Pick gray point" msgstr "ç°è‰²ã®ç‚¹ã‚’移動" #: ../app/tools/gimplevelstool.c:363 -#, fuzzy msgid "Pick white point" msgstr "白色ã®ç‚¹ã‚’移動" @@ -8984,9 +8820,8 @@ msgstr "レベルã®è‡ªå‹•èª¿æ•´" #: ../app/tools/gimpmagnifyoptions.c:203 -#, fuzzy msgid "Auto-resize window" -msgstr "ズーム時ã«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’リサイズã™ã‚‹(_Z)" +msgstr "ウィンドウã®è‡ªå‹•ãƒªã‚µã‚¤ã‚º" #: ../app/tools/gimpmagnifytool.c:95 msgid "Magnify" @@ -8997,9 +8832,8 @@ msgstr "ズームイン & ズームアウト" #: ../app/tools/gimpmagnifytool.c:97 -#, fuzzy msgid "M_agnify" -msgstr "虫ã‚ãŒã­" +msgstr "虫ã‚ãŒã­(_A)" #: ../app/tools/gimpmeasureoptions.c:157 msgid "Use info window" @@ -9014,9 +8848,8 @@ msgstr "è·é›¢ã¨è§’度を測りã¾ã™" #: ../app/tools/gimpmeasuretool.c:120 -#, fuzzy msgid "_Measure" -msgstr "定è¦" +msgstr "定è¦(_M)" #: ../app/tools/gimpmeasuretool.c:264 msgid "Add Guides" @@ -9032,7 +8865,6 @@ msgstr "è·é›¢:" #: ../app/tools/gimpmoveoptions.c:171 -#, fuzzy msgid "Pick a layer or guide" msgstr "ã¤ã‹ã‚“ã ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‹ã‚¬ã‚¤ãƒ‰ã‚’移動" @@ -9045,12 +8877,10 @@ msgstr "é¸æŠžé ˜åŸŸã‚’移動" #: ../app/tools/gimpmoveoptions.c:180 -#, fuzzy msgid "Pick a path" msgstr "ã¤ã‹ã‚“ã ãƒ‘スを移動" #: ../app/tools/gimpmoveoptions.c:181 -#, fuzzy msgid "Move the current path" msgstr "ç¾åœ¨ã®ãƒ‘スを移動" @@ -9098,7 +8928,7 @@ msgstr "ブラシ:" #: ../app/tools/gimppaintoptions-gui.c:135 -#: ../app/tools/gimppaintoptions-gui.c:394 +#: ../app/tools/gimppaintoptions-gui.c:395 msgid "Gradient:" msgstr "グラデーション:" @@ -9131,11 +8961,11 @@ msgstr "フェードアウト" #: ../app/tools/gimppaintoptions-gui.c:333 -#: ../app/tools/gimppaintoptions-gui.c:403 +#: ../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 "グラデーションã®è‰²ã‚’使ã†" @@ -9173,7 +9003,7 @@ #: ../app/tools/gimpposterizetool.c:80 msgid "_Posterize..." -msgstr "ãƒã‚¹ã‚¿ãƒªã‚¼ãƒ¼ã‚·ãƒ§ãƒ³(_P)" +msgstr "ãƒã‚¹ã‚¿ãƒªã‚¼ãƒ¼ã‚·ãƒ§ãƒ³(_P)..." #: ../app/tools/gimpposterizetool.c:131 msgid "Posterize (Reduce Number of Colors)" @@ -9181,10 +9011,9 @@ #: ../app/tools/gimpposterizetool.c:173 msgid "Posterize does not operate on indexed layers." -msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯ãƒã‚¹ã‚¿ãƒ¼åŒ–ã®æ“作ã¯ã§ãã¾ã›ã‚“." +msgstr "インデックスレイヤーã«å¯¾ã—ã¦ã¯ãƒã‚¹ã‚¿ãƒ¼åŒ–ã®æ“作ã¯ã§ãã¾ã›ã‚“。" #: ../app/tools/gimpposterizetool.c:223 -#, fuzzy msgid "Posterize _levels:" msgstr "ãƒã‚¹ã‚¿ãƒªã‚¼ãƒ¼ã‚·ãƒ§ãƒ³ãƒ»ãƒ¬ãƒ™ãƒ«(_L):" @@ -9196,23 +9025,23 @@ msgid "_Rect Select" 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 "é¸æŠž: " @@ -9233,9 +9062,8 @@ msgstr "中心座標 X:" #: ../app/tools/gimprotatetool.c:190 -#, fuzzy msgid "Center Y:" -msgstr "中心座標 X:" +msgstr "中心座標 Y:" #: ../app/tools/gimpscaletool.c:91 msgid "Scale" @@ -9263,7 +9091,7 @@ #: ../app/tools/gimpscaletool.c:174 msgid "Current height:" -msgstr "ç¾åœ¨ã®å¹…:" +msgstr "ç¾åœ¨ã®é«˜ã•:" #: ../app/tools/gimpscaletool.c:189 msgid "Scale ratio X:" @@ -9271,11 +9099,11 @@ #: ../app/tools/gimpscaletool.c:192 msgid "Scale ratio Y:" -msgstr "拡大率 X:" +msgstr "拡大率 Y:" #: ../app/tools/gimpscaletool.c:196 msgid "Aspect Ratio:" -msgstr "アスペクト比:" +msgstr "縦横比:" #: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" @@ -9298,22 +9126,18 @@ msgstr "アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°" #: ../app/tools/gimpselectionoptions.c:399 -#, fuzzy msgid "Feather edges" msgstr "境界をã¼ã‹ã™" #: ../app/tools/gimpselectionoptions.c:425 -#, fuzzy msgid "Show interactive boundary" msgstr "インタラクティブã«å¢ƒç•Œã‚’表示" #: ../app/tools/gimpselectionoptions.c:448 -#, fuzzy msgid "Select transparent areas" msgstr "é€æ˜Žé ˜åŸŸã®é¸æŠž" #: ../app/tools/gimpselectionoptions.c:488 -#, fuzzy msgid "Auto shrink selection" msgstr "é¸æŠžé ˜åŸŸã®è‡ªå‹•ç¸®å°" @@ -9326,32 +9150,28 @@ msgstr "レイヤーやé¸æŠžé ˜åŸŸã‚’剪断変形ã™ã‚‹" #: ../app/tools/gimpsheartool.c:100 -#, fuzzy msgid "S_hear" -msgstr "剪断変形" +msgstr "剪断変形(_H)" #: ../app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "変形情報" #: ../app/tools/gimpsheartool.c:167 -#, fuzzy msgid "Shear magnitude X:" msgstr "変形率 X:" #: ../app/tools/gimpsheartool.c:174 -#, fuzzy msgid "Shear magnitude Y:" -msgstr "変形率 X:" +msgstr "変形率 Y:" #: ../app/tools/gimpsmudgetool.c:55 msgid "Smudge image" msgstr "ç”»åƒã«ã˜ã¿" #: ../app/tools/gimpsmudgetool.c:56 -#, fuzzy msgid "_Smudge" -msgstr "ã«ã˜ã¿" +msgstr "ã«ã˜ã¿(_S)" #: ../app/tools/gimptextoptions.c:146 msgid "" @@ -9363,8 +9183,8 @@ "If available, hints from the font are used but you may prefer to always use " "the automatic hinter" msgstr "" -"利用å¯èƒ½ãªã‚‰ã°, フォントã‹ã‚‰ãƒ’ントを利用ã—ã¾ã™ãŒ, 常時自動ヒントを利用ã™ã‚‹æ–¹" -"ãŒã‚ˆã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“." +"利用å¯èƒ½ãªã‚‰ã°ã€ãƒ•ã‚©ãƒ³ãƒˆã‹ã‚‰ãƒ’ントを利用ã—ã¾ã™ãŒã€å¸¸æ™‚自動ヒントを利用ã™ã‚‹æ–¹" +"ãŒã‚ˆã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。" #: ../app/tools/gimptextoptions.c:178 msgid "Indentation of the first line" @@ -9379,12 +9199,10 @@ msgstr "フォント:" #: ../app/tools/gimptextoptions.c:431 -#, fuzzy msgid "Hinting" -msgstr "ヒント情報(_H)" +msgstr "ヒント情報" #: ../app/tools/gimptextoptions.c:438 -#, fuzzy msgid "Force auto-hinter" msgstr "自動ヒント強制" @@ -9413,27 +9231,26 @@ "é–“éš”:" #: ../app/tools/gimptextoptions.c:478 -#, fuzzy msgid "Create path from text" msgstr "テキストã‹ã‚‰ãƒ‘スを作æˆ" -#: ../app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "ç”»åƒã«æ–‡å­—を追加" -#: ../app/tools/gimptexttool.c:144 +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "文字(_X)" -#: ../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 " @@ -9441,11 +9258,11 @@ "\n" "You can edit the layer or create a new text layer from its text attributes." msgstr "" -"é¸æŠžã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯æ–‡å­—レイヤーã§ã™ãŒ, ä»–ã®ãƒ„ールã«ã‚ˆã£ã¦å¤‰æ›´ã•ã‚Œã¾ã—ãŸ. ã“ã®" -"レイヤーを文字ツールã§ç·¨é›†ã™ã‚‹ã¨, ãれらã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™.\n" +"é¸æŠžã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯æ–‡å­—レイヤーã§ã™ãŒã€ä»–ã®ãƒ„ールã«ã‚ˆã£ã¦å¤‰æ›´ã•ã‚Œã¾ã—ãŸã€‚ã“ã®" +"レイヤーを文字ツールã§ç·¨é›†ã™ã‚‹ã¨ã€ãれらã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™ã€‚\n" "\n" -"ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’編集ã™ã‚‹ã“ã¨ã‚‚, 文字アトリビュートを用ã„ã¦æ–°ã—ã„文字レイヤーを" -"生æˆã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™." +"ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’編集ã™ã‚‹ã“ã¨ã‚‚ã€æ–‡å­—アトリビュートを用ã„ã¦æ–°ã—ã„文字レイヤーを" +"生æˆã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚" #: ../app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" @@ -9461,7 +9278,7 @@ #: ../app/tools/gimpthresholdtool.c:199 msgid "Threshold does not operate on indexed layers." -msgstr "インデックス・レイヤーã«ã¯ã—ãã„値æ“作ã¯ã§ãã¾ã›ã‚“." +msgstr "インデックス・レイヤーã«ã¯ã—ãã„値æ“作ã¯ã§ãã¾ã›ã‚“。" #: ../app/tools/gimptransformoptions.c:329 msgid "Transform Direction" @@ -9490,31 +9307,30 @@ msgstr "制約" #: ../app/tools/gimptransformoptions.c:425 -#, fuzzy, c-format +#, c-format msgid "15 degrees %s" msgstr "15度 %s" #: ../app/tools/gimptransformoptions.c:445 -#, fuzzy, c-format +#, c-format msgid "Keep height %s" -msgstr "縦幅を固定 %s" +msgstr "高ã•ã‚’ç¶­æŒ %s" #: ../app/tools/gimptransformoptions.c:447 -#, fuzzy, c-format +#, c-format msgid "Keep width %s" -msgstr "横幅を固定 %s" +msgstr "å¹…ã‚’ç¶­æŒ %s" #: ../app/tools/gimptransformoptions.c:449 -#, fuzzy, c-format +#, c-format msgid "Keep aspect %s" -msgstr "固定サイズ / 縦横比" +msgstr "ç¸¦æ¨ªæ¯”ã‚’ç¶­æŒ %s" #: ../app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "変æ›ã—ã¦ã„ã¾ã™..." #: ../app/tools/gimpvectoroptions.c:113 -#, fuzzy msgid "Restrict editing to polygons" msgstr "多角形ã®ç·¨é›†ã‚’制é™" @@ -9527,7 +9343,7 @@ msgstr "多角形" #: ../app/tools/gimpvectoroptions.c:186 -#, fuzzy, c-format +#, c-format msgid "" "Path to Selection\n" "%s Add\n" @@ -9537,15 +9353,13 @@ "パスをé¸æŠžé ˜åŸŸ\n" "%s ã«åŠ ãˆã‚‹\n" "%s ã‹ã‚‰å¼•ã\n" -"%s%s%s ã¨ã®äº¤ã‚ã‚Šã‚’ã¨ã‚‹" +"%s ã¨ã®äº¤ã‚ã‚Šã‚’ã¨ã‚‹" #: ../app/tools/gimpvectoroptions.c:196 -#, fuzzy msgid "Create selection from path" msgstr "パスã‹ã‚‰é¸æŠžé ˜åŸŸã‚’作æˆã™ã‚‹" #: ../app/tools/gimpvectoroptions.c:207 -#, fuzzy msgid "Stroke path" msgstr "パスをストロークæç”»" @@ -9607,69 +9421,69 @@ #: ../app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." -msgstr "クリックã—ã¦ãƒ‘スを編集ã—ã¾ã™." +msgstr "クリックã—ã¦ãƒ‘スを編集ã—ã¾ã™ã€‚" #: ../app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." -msgstr "クリックã—ã¦æ–°è¦ãƒ‘スを作æˆã—ã¾ã™." +msgstr "クリックã—ã¦æ–°è¦ãƒ‘スを作æˆã—ã¾ã™ã€‚" #: ../app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." -msgstr "クリックã—ã¦ãƒ‘スã®æ–°ã—ã„コンãƒãƒ¼ãƒãƒ³ãƒˆã‚’作æˆã—ã¾ã™." +msgstr "クリックã—ã¦ãƒ‘スã®æ–°ã—ã„コンãƒãƒ¼ãƒãƒ³ãƒˆã‚’作æˆã—ã¾ã™ã€‚" #: ../app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" -msgstr "クリックã—ã¦æ–°è¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’作æˆ. (SHIFT を試ã™)" +msgstr "クリックã—ã¦æ–°è¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’作æˆã€‚(SHIFT も試ã—ã¦ãã ã•ã„)" #: ../app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." -msgstr "クリック-ドラッグã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’移動ã•ã›ã¾ã™." +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 "クリック-ドラッグã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’移動ã•ã›ã¾ã™." +msgstr "クリック-ドラッグã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’移動ã•ã›ã¾ã™ã€‚" #: ../app/tools/gimpvectortool.c:1214 msgid "Click-Drag to move the handle around. (try SHIFT)" -msgstr "クリック-ドラッグã—ã¦ãƒãƒ³ãƒ‰ãƒ«ã‚’移動ã•ã›ã¾ã™. (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: 対称)" +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 "クリック-ドラッグã—ã¦ãƒ‘スを移動ã•ã›ã¾ã™." +msgstr "クリック-ドラッグã—ã¦ãƒ‘スを移動ã•ã›ã¾ã™ã€‚" -#: ../app/tools/gimpvectortool.c:1228 +#: ../app/tools/gimpvectortool.c:1231 msgid "Click to insert an anchor on the path. (try SHIFT)" -msgstr "クリックã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’パス上ã«æŒ¿å…¥ã—ã¾ã™. (SHIFTも試ã™)" +msgstr "クリックã—ã¦ã‚¢ãƒ³ã‚«ãƒ¼ã‚’パス上ã«æŒ¿å…¥ã—ã¾ã™ã€‚(SHIFT も試ã—ã¦ãã ã•ã„)" -#: ../app/tools/gimpvectortool.c:1231 +#: ../app/tools/gimpvectortool.c:1234 msgid "Click to delete this anchor." -msgstr "クリックã—ã¦ã“ã®ã‚¢ãƒ³ã‚«ãƒ¼ã‚’削除ã—ã¾ã™." +msgstr "クリックã—ã¦ã“ã®ã‚¢ãƒ³ã‚«ãƒ¼ã‚’削除ã—ã¾ã™ã€‚" -#: ../app/tools/gimpvectortool.c:1234 +#: ../app/tools/gimpvectortool.c:1237 msgid "Click to connect this anchor with the selected endpoint." -msgstr "クリックã—ã¦ã“ã®ã‚¢ãƒ³ã‚«ãƒ¼ã¨é¸æŠžã—ãŸç«¯ç‚¹ã‚’接続ã—ã¾ã™." +msgstr "クリックã—ã¦ã“ã®ã‚¢ãƒ³ã‚«ãƒ¼ã¨é¸æŠžã—ãŸç«¯ç‚¹ã‚’接続ã—ã¾ã™ã€‚" -#: ../app/tools/gimpvectortool.c:1238 +#: ../app/tools/gimpvectortool.c:1241 msgid "Click to open up the path." -msgstr "クリックã—ã¦ãƒ‘スを開ãã¾ã™." +msgstr "クリックã—ã¦ãƒ‘スを開ãã¾ã™ã€‚" -#: ../app/tools/gimpvectortool.c:1241 +#: ../app/tools/gimpvectortool.c:1244 msgid "Click to make this node angular." -msgstr "クリックã—ã¦ã“ã®ãƒŽãƒ¼ãƒ‰ã‚’角ã«ã—ã¾ã™." +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 "ストロークã™ã‚‹ãŸã‚ã®ã‚¢ã‚¯ãƒ†ã‚£ãƒ–レイヤーやアクティブパスãŒã‚ã‚Šã¾ã›ã‚“" @@ -9707,7 +9521,7 @@ #: ../app/vectors/gimpvectors.c:551 msgid "Cannot stroke empty path." -msgstr "空ã®ãƒ‘スã¯ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã§ãã¾ã›ã‚“." +msgstr "空ã®ãƒ‘スã¯ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã§ãã¾ã›ã‚“。" #: ../app/vectors/gimpvectors-import.c:287 msgid "Import Paths" @@ -9765,11 +9579,15 @@ #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." msgstr "" +"ショートカット \"%1$s\" ã¯ã€ \"%3$s\" グループ㮠\"%2$s\" ã«ã™ã§ã«å‰²ã‚Šå½“ã¦æ¸ˆ" +"ã¿ã§ã™ã€‚" #: ../app/widgets/gimpactionview.c:606 #, c-format msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." msgstr "" +"ã“ã®ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚’å†å‰²ã‚Šå½“ã¦ã™ã‚‹ã¨ã€ \"%s\" ã«å¯¾ã™ã‚‹å‰²ã‚Šå½“ã¦ã¯å‰Šé™¤ã•ã‚Œã¾" +"ã™ã€‚" #: ../app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." @@ -9780,9 +9598,8 @@ msgstr "ä¸æ­£ãªã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã§ã™" #: ../app/widgets/gimpbrusheditor.c:168 -#, fuzzy msgid "Spikes:" -msgstr "大ãã•:" +msgstr "å°–ã‚Š:" #: ../app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" @@ -9810,10 +9627,12 @@ #: ../app/widgets/gimpcellrendereraccel.c:459 msgid "Type a new accelerator, or press Backspace to clear" msgstr "" +"æ–°ãŸã«å‰²ã‚Šå½“ã¦ã‚‹ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚­ãƒ¼ã‚’打ã£ã¦ãã ã•ã„。消去ã™ã‚‹ã«ã¯ãƒãƒƒã‚¯ã‚¹ãƒšãƒ¼" +"スキーを押ã—ã¦ãã ã•ã„" #: ../app/widgets/gimpcellrendereraccel.c:462 msgid "Type a new accelerator" -msgstr "" +msgstr "æ–°ãŸã«å‰²ã‚Šå½“ã¦ã‚‹ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚­ãƒ¼ã‚’打ã£ã¦ãã ã•ã„" #: ../app/widgets/gimpchanneltreeview.c:151 msgid "Reorder Channel" @@ -9825,7 +9644,7 @@ #: ../app/widgets/gimpclipboard.c:283 msgid "Clipboard" -msgstr "" +msgstr "クリップボード" #: ../app/widgets/gimpcolordialog.c:169 msgid "Add the current color to the color history" @@ -9837,11 +9656,11 @@ #: ../app/widgets/gimpcolordisplayeditor.c:204 msgid "Add the selected filter to the list of active filters." -msgstr "é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿ã®ä¸€è¦§ã«è¿½åŠ ã™ã‚‹." +msgstr "é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿ã®ä¸€è¦§ã«è¿½åŠ ã™ã‚‹ã€‚" #: ../app/widgets/gimpcolordisplayeditor.c:221 msgid "Remove the selected filter from the list of active filters." -msgstr "洗濯ã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿ã®ä¸€è¦§ã‹ã‚‰å‰Šé™¤ã™ã‚‹." +msgstr "é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã‚’利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿ã®ä¸€è¦§ã‹ã‚‰å‰Šé™¤ã™ã‚‹ã€‚" #: ../app/widgets/gimpcolordisplayeditor.c:235 msgid "Move the selected filter up" @@ -9860,17 +9679,15 @@ msgstr "é¸æŠžãƒ•ã‚£ãƒ«ã‚¿ã‚’デフォルトã®å€¤ã«åˆæœŸåŒ–" #: ../app/widgets/gimpcolordisplayeditor.c:543 -#, fuzzy, c-format +#, c-format msgid "Configure selected filter: %s" msgstr "é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã®è¨­å®š: %s" #: ../app/widgets/gimpcolordisplayeditor.c:550 -#, fuzzy msgid "No filter selected" msgstr "フィルタãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“" #: ../app/widgets/gimpcolordisplayeditor.c:554 -#, fuzzy msgid "Configure selected filter" msgstr "é¸æŠžã—ãŸãƒ•ã‚£ãƒ«ã‚¿ã®è¨­å®š" @@ -9931,9 +9748,8 @@ msgstr "色インデックス:" #: ../app/widgets/gimpcolormapeditor.c:258 -#, fuzzy msgid "HTML notation:" -msgstr "場所:" +msgstr "HTML 表記:" #: ../app/widgets/gimpcontainerpopup.c:502 msgid "Smaller Previews" @@ -9965,134 +9781,131 @@ #: ../app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" -msgstr "" +msgstr "↑キー (Shift + Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" -msgstr "" +msgstr "↑キー (Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" -msgstr "" +msgstr "↑キー (Shift + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" -msgstr "" +msgstr "↑キー (Shift + Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" -msgstr "" +msgstr "↑キー (Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" -msgstr "" +msgstr "↑キー (Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" -msgstr "" +msgstr "↑キー (Shift)" #: ../app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" -msgstr "" +msgstr "↑キー" #: ../app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" -msgstr "" +msgstr "↓キー (Shift + Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" -msgstr "" +msgstr "↓キー (Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" -msgstr "" +msgstr "↓キー (Shift + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" -msgstr "" +msgstr "↓キー (Shift + Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" -msgstr "" +msgstr "↓キー (Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" -msgstr "" +msgstr "↓キー (Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" -msgstr "" +msgstr "↓キー (Shift)" #: ../app/widgets/gimpcontrollerkeyboard.c:115 -#, fuzzy msgid "Key Down" -msgstr "下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨çµ±åˆ" +msgstr "↓キー" #: ../app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Shift + Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Shift + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Shift + Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" -msgstr "" +msgstr "â†ã‚­ãƒ¼ (Shift)" #: ../app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" -msgstr "" +msgstr "â†ã‚­ãƒ¼" #: ../app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" -msgstr "" +msgstr "→キー (Shift + Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" -msgstr "" +msgstr "→キー (Control + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" -msgstr "" +msgstr "→キー (Shift + Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" -msgstr "" +msgstr "→キー (Shift + Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" -msgstr "" +msgstr "→キー (Alt)" #: ../app/widgets/gimpcontrollerkeyboard.c:159 -#, fuzzy msgid "Key Right (Control)" -msgstr "/å³å´ã®è‰²ã®ä¿å­˜å…ˆ(_v)" +msgstr "→キー (Control)" #: ../app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" -msgstr "" +msgstr "→キー (Shift)" #: ../app/widgets/gimpcontrollerkeyboard.c:165 -#, fuzzy msgid "Key Right" -msgstr "高ã•" +msgstr "→キー" #: ../app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" @@ -10117,7 +9930,7 @@ #: ../app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" -msgstr "上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)" +msgstr "上ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Alt)" #: ../app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" @@ -10209,27 +10022,27 @@ #: ../app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" -msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control + Alt)<" +msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control + Alt)" #: ../app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" -msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Alt)<" +msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Alt)" #: ../app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" -msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)<" +msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift + Control)" #: ../app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" -msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Alt)<" +msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Alt)" #: ../app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" -msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control)<" +msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Control)" #: ../app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" -msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift)<" +msgstr "å³ã«ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« (Shift)" #: ../app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" @@ -10270,9 +10083,8 @@ msgstr "å…¨ã¦ã®ã‚¿ãƒ–ã‚’é–‰ã˜ã¾ã™ã‹?" #: ../app/widgets/gimpdock.c:354 -#, fuzzy msgid "Close all Tabs" -msgstr "/タブを閉ã˜ã‚‹(_C)" +msgstr "å…¨ã¦ã®ã‚¿ãƒ–ã‚’é–‰ã˜ã‚‹" #: ../app/widgets/gimpdock.c:361 #, c-format @@ -10280,10 +10092,12 @@ "This window has %d tabs open. Closing the window will also close all its " "tabs." msgstr "" +"ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã«ã¯ %d 個ã®ã‚¿ãƒ–ãŒé–‹ã‹ã‚Œã¦ã„ã¾ã™ã€‚ウィンドウを閉ã˜ã‚‹ã¨ã“れらã™" +"ã¹ã¦ã®ã‚¿ãƒ–も一緒ã«é–‰ã˜ã‚‰ã‚Œã¾ã™ã€‚" #: ../app/widgets/gimpdock.c:474 msgid "You can drop dockable dialogs here." -msgstr "ã“ã“ã«ãƒ‰ãƒƒã‚­ãƒ³ã‚°å¯èƒ½ãªãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’ドロップã§ãã¾ã™." +msgstr "ã“ã“ã«ãƒ‰ãƒƒã‚­ãƒ³ã‚°å¯èƒ½ãªãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’ドロップã§ãã¾ã™ã€‚" #: ../app/widgets/gimpdockable.c:210 msgid "Close this Tab" @@ -10292,30 +10106,27 @@ #: ../app/widgets/gimperrorconsole.c:235 ../app/widgets/gimperrordialog.c:252 #, c-format msgid "%s Message" -msgstr "%s 件ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸" +msgstr "%s メッセージ" #: ../app/widgets/gimperrordialog.c:229 msgid "Too many error messages!" -msgstr "" +msgstr "エラーメッセージãŒå¤šã™ãŽã¾ã™!" #: ../app/widgets/gimperrordialog.c:230 -#, fuzzy msgid "Messages are redirected to stderr." -msgstr "åŒã˜ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒç¹°ã‚Šè¿”ã•ã‚Œã¾ã—ãŸ" +msgstr "メッセージã¯æ¨™æº–エラー出力ã«å‡ºåŠ›ã•ã‚Œã¾ã™ã€‚" #: ../app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" -msgstr "" +msgstr "自動判別" #: ../app/widgets/gimpfiledialog.c:310 -#, fuzzy msgid "By Extension" msgstr "æ‹¡å¼µå­ã§åˆ¤åˆ¥" #: ../app/widgets/gimpfiledialog.c:469 -#, fuzzy msgid "All Files" -msgstr "利用å¯èƒ½ãªãƒ•ã‚£ãƒ«ã‚¿" +msgstr "ã™ã¹ã¦ã®ãƒ•ã‚¡ã‚¤ãƒ«" #: ../app/widgets/gimpfiledialog.c:608 #, c-format @@ -10350,9 +10161,9 @@ msgstr "ä½ç½®: %0.6f" #: ../app/widgets/gimpgradienteditor.c:816 -#, fuzzy, c-format +#, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" -msgstr "(%0.3f, %0.3f, %0.3f)" +msgstr "RGB (%0.3f, %0.3f, %0.3f)" #: ../app/widgets/gimpgradienteditor.c:819 #, c-format @@ -10360,9 +10171,9 @@ msgstr "HSV (%0.3f, %0.3f, %0.3f)" #: ../app/widgets/gimpgradienteditor.c:821 -#, fuzzy, c-format +#, c-format msgid "Intensity: %0.3f Opacity: %0.3f" -msgstr "RGB (%0.3f, %0.3f, %0.3f) ä¸é€æ˜Žåº¦: %0.3f" +msgstr "彩度: %0.3f ä¸é€æ˜Žåº¦: %0.3f" #: ../app/widgets/gimpgradienteditor.c:854 #: ../app/widgets/gimpgradienteditor.c:889 @@ -10465,7 +10276,7 @@ #: ../app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "ã“ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã«ã¯ GIMP ヘルプブラウザプラグインãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。" #: ../app/widgets/gimphelp.c:213 msgid "Help browser doesn't start" @@ -10510,7 +10321,7 @@ #: ../app/widgets/gimpimagedock.c:214 msgid "" "When enabled the dialog automatically follows the image you are working on." -msgstr "有効ã«ã™ã‚‹ã¨, ç¾åœ¨ä½œæ¥­ä¸­ã®ç”»åƒã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè‡ªå‹•çš„ã«è¿½å¾“ã—ã¾ã™." +msgstr "有効ã«ã™ã‚‹ã¨ã€ç¾åœ¨ä½œæ¥­ä¸­ã®ç”»åƒã«ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè‡ªå‹•çš„ã«è¿½å¾“ã—ã¾ã™ã€‚" #: ../app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" @@ -10532,12 +10343,12 @@ msgid "Empty Layer" msgstr "空ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼" -#: ../app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:462 #, c-format msgid "Message repeated %d times." msgstr "%d 回åŒã˜ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒç¹°ã‚Šè¿”ã•ã‚Œã¾ã—ãŸ" -#: ../app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:464 msgid "Message repeated once." msgstr "åŒã˜ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ãŒç¹°ã‚Šè¿”ã•ã‚Œã¾ã—ãŸ" @@ -10553,7 +10364,7 @@ #: ../app/widgets/gimppropwidgets.c:1537 #, c-format msgid "This text input field is limited to %d characters." -msgstr "ã“ã®æ–‡å­—入力フィールド㯠%d 文字ã«åˆ¶é™ã•ã‚Œã¦ã„ã¾ã™." +msgstr "ã“ã®æ–‡å­—入力フィールド㯠%d 文字ã«åˆ¶é™ã•ã‚Œã¦ã„ã¾ã™ã€‚" #: ../app/widgets/gimpselectiondata.c:319 #, c-format @@ -10589,9 +10400,8 @@ msgstr "線種(_L):" #: ../app/widgets/gimpstrokeeditor.c:228 -#, fuzzy msgid "_Cap style:" -msgstr "角ã®ã‚¹ã‚¿ã‚¤ãƒ«(_C):" +msgstr "端ã®ã‚¹ã‚¿ã‚¤ãƒ«(_C):" #: ../app/widgets/gimpstrokeeditor.c:234 msgid "_Join style:" @@ -10645,7 +10455,7 @@ #: ../app/widgets/gimptemplateeditor.c:699 #, c-format msgid "%d x %d dpi, %s" -msgstr "%d x %d dip, %s" +msgstr "%d x %d dpi, %s" #: ../app/widgets/gimptemplateeditor.c:701 #, c-format @@ -10670,7 +10480,7 @@ msgid "Thumbnail %d of %d" msgstr "サムãƒã‚¤ãƒ« %d / %d" -#: ../app/widgets/gimpthumbbox.c:730 ../app/widgets/gimpthumbbox.c:740 +#: ../app/widgets/gimpthumbbox.c:733 ../app/widgets/gimpthumbbox.c:743 msgid "Creating Preview ..." msgstr "プレビューを作æˆä¸­..." @@ -10683,45 +10493,44 @@ msgstr "背景色を変更" #: ../app/widgets/gimptoolbox-image-area.c:90 -#, fuzzy msgid "" "The active image.\n" "Click to open the Image Dialog." msgstr "" -"アクティブã«ãªã£ã¦ã„るパターンã§ã™.\n" -"クリックã™ã‚‹ã¨ãƒ‘ターンダイアログを開ãã¾ã™." +"アクティブã«ãªã£ã¦ã„ã‚‹ç”»åƒã§ã™ã€‚\n" +"クリックã™ã‚‹ã¨ç”»åƒãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãã¾ã™ã€‚" #: ../app/widgets/gimptoolbox-indicator-area.c:143 msgid "" "The active brush.\n" "Click to open the Brush Dialog." msgstr "" -"アクティブã«ãªã£ã¦ã„るブラシã§ã™.\n" -"クリックã™ã‚‹ã¨ãƒ–ラシダイアログを開ãã¾ã™." +"アクティブã«ãªã£ã¦ã„るブラシã§ã™ã€‚\n" +"クリックã™ã‚‹ã¨ãƒ–ラシダイアログを開ãã¾ã™ã€‚" #: ../app/widgets/gimptoolbox-indicator-area.c:174 msgid "" "The active pattern.\n" "Click to open the Pattern Dialog." msgstr "" -"アクティブã«ãªã£ã¦ã„るパターンã§ã™.\n" -"クリックã™ã‚‹ã¨ãƒ‘ターンダイアログを開ãã¾ã™." +"アクティブã«ãªã£ã¦ã„るパターンã§ã™ã€‚\n" +"クリックã™ã‚‹ã¨ãƒ‘ターンダイアログを開ãã¾ã™ã€‚" #: ../app/widgets/gimptoolbox-indicator-area.c:205 msgid "" "The active gradient.\n" "Click to open the Gradient Dialog." msgstr "" -"アクティブã«ãªã£ã¦ã„るグラデーションã§ã™.\n" -"クリックã™ã‚‹ã¨ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãã¾ã™." +"アクティブã«ãªã£ã¦ã„るグラデーションã§ã™ã€‚\n" +"クリックã™ã‚‹ã¨ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãã¾ã™ã€‚" #: ../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." msgstr "" -"å‰æ™¯è‰²ã¨èƒŒæ™¯è‰²ã§ã™. é»’ã¨ç™½ã®å››è§’ã§è‰²ã‚’åˆæœŸåŒ–ã§ãã¾ã™. 矢å°ã¯å‰æ™¯è‰²æ画色を交" -"æ›ã—ã¾ã™. ダブルクリックã™ã‚‹ã¨è‰²ã‚’é¸æŠžã§ãã¾ã™." +"å‰æ™¯è‰²ã¨èƒŒæ™¯è‰²ã§ã™ã€‚é»’ã¨ç™½ã®å››è§’ã§è‰²ã‚’åˆæœŸåŒ–ã§ãã¾ã™ã€‚矢å°ã¯å‰æ™¯è‰²æ画色を交" +"æ›ã—ã¾ã™ã€‚ダブルクリックã™ã‚‹ã¨è‰²ã‚’é¸æŠžã§ãã¾ã™ã€‚" #: ../app/widgets/gimptooloptionseditor.c:185 msgid "Save options to..." @@ -10742,6 +10551,7 @@ #: ../app/widgets/gimpuimanager.c:497 msgid "Plase make sure the menu XML files are correctly installed." msgstr "" +"メニュー XML ファイルãŒé©åˆ‡ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。" #: ../app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" @@ -10772,9 +10582,8 @@ msgstr "å転" #: ../app/widgets/gimpviewablebox.c:210 -#, fuzzy msgid "Open the palette selection dialog" -msgstr "パターンé¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ã" +msgstr "パレットé¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ã" #: ../app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" @@ -10830,13 +10639,11 @@ #: ../app/widgets/gimpwidgets-constructors.c:64 #: ../app/widgets/gimpwidgets-constructors.c:97 -#, fuzzy msgid "Grain extract" msgstr "微粒å–り出ã—" #: ../app/widgets/gimpwidgets-constructors.c:65 #: ../app/widgets/gimpwidgets-constructors.c:98 -#, fuzzy msgid "Grain merge" msgstr "微粒çµåˆ" @@ -10852,15 +10659,13 @@ #: ../app/widgets/gimpwidgets-constructors.c:70 #: ../app/widgets/gimpwidgets-constructors.c:103 -#, fuzzy msgid "Darken only" -msgstr "比較(æš—)" +msgstr "æš—ã•ã®ã¿" #: ../app/widgets/gimpwidgets-constructors.c:71 #: ../app/widgets/gimpwidgets-constructors.c:104 -#, fuzzy msgid "Lighten only" -msgstr "比較(明)" +msgstr "明るã•ã®ã¿" #: ../app/widgets/gimpwidgets-constructors.c:73 #: ../app/widgets/gimpwidgets-constructors.c:106 @@ -10880,10 +10685,10 @@ msgid "<%s>" msgstr "<%s>" -#: ../app/widgets/gimpwidgets-utils.c:795 +#: ../app/widgets/gimpwidgets-utils.c:796 #, c-format msgid "Invalid UTF-8 data in file '%s'." -msgstr "ファイル '%s' 中ã«ç„¡åŠ¹ãª UTF-8 データãŒã‚ã‚Šã¾ã™." +msgstr "ファイル '%s' 中ã«ç„¡åŠ¹ãª UTF-8 データãŒã‚ã‚Šã¾ã™ã€‚" #: ../app/widgets/widgets-enums.c:23 msgid "Foreground" @@ -10898,7 +10703,6 @@ msgstr "横å‘ã" #: ../app/widgets/widgets-enums.c:113 -#, fuzzy msgid "Pixel values" msgstr "ピクセル値" @@ -10916,7 +10720,7 @@ #: ../app/widgets/widgets-enums.c:172 msgid "Fancy" -msgstr "" +msgstr "装飾的" #: ../app/widgets/widgets-enums.c:199 msgid "GIMP help browser" @@ -10976,7 +10780,7 @@ #: ../app/widgets/widgets-enums.c:326 msgid "Keep above" -msgstr "" +msgstr "上ã«ä¿ã¤" #: ../app/xcf/xcf-load.c:297 msgid "" @@ -10985,8 +10789,8 @@ "Substituting grayscale map." msgstr "" "XCF 警告: ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 0 ã® XCF ファイル形å¼ã§ã¯\n" -"インデックスカラーマップãŒæ­£å¸¸ã«ä¿å­˜ã•ã‚Œã¦ã„ã¾ã›ã‚“.\n" -"グレースケールマップを仮定ã—ã¾ã™." +"インデックスカラーマップãŒæ­£å¸¸ã«ä¿å­˜ã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" +"グレースケールマップを仮定ã—ã¾ã™ã€‚" #: ../app/xcf/xcf-read.c:107 msgid "Invalid UTF-8 string in XCF file" @@ -11010,9 +10814,8 @@ msgstr "XCFファイルをシークã§ãã¾ã›ã‚“: %s" #: ../app/xcf/xcf.c:86 ../app/xcf/xcf.c:143 -#, fuzzy msgid "GIMP XCF image" -msgstr "GIMP メッセージ" +msgstr "GIMP XCF ç”»åƒ" #: ../app/xcf/xcf.c:282 #, c-format @@ -11027,21 +10830,20 @@ msgid "Image Editor" msgstr "ç”»åƒã‚¨ãƒ‡ã‚£ã‚¿" -#, fuzzy #~ msgid "Keep aspect ratio" -#~ msgstr "固定サイズ / 縦横比" +#~ msgstr "縦横比を維æŒ" #~ msgid "Y:" #~ msgstr "Y:" #~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "レイヤーマスクをæŒã¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¯å¤‰å½¢æ“作ãŒã§ãã¾ã›ã‚“." +#~ msgstr "レイヤーマスクをæŒã¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¯å¤‰å½¢æ“作ãŒã§ãã¾ã›ã‚“。" #~ msgid "Resize Error: Both width and height must be greater than zero." -#~ msgstr "サイズ変更エラー: å¹…ã¨é«˜ã•ã¯ã©ã¡ã‚‰ã‚‚0より大ãããªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“." +#~ msgstr "サイズ変更エラー: å¹…ã¨é«˜ã•ã¯ã©ã¡ã‚‰ã‚‚0より大ãããªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" #~ msgid "Scale Error: Both width and height must be greater than zero." -#~ msgstr "拡大縮å°ã‚¨ãƒ©ãƒ¼: å¹…ã¨é«˜ã•ã¯ã©ã¡ã‚‰ã‚‚0より大ãããªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“." +#~ msgstr "拡大縮å°ã‚¨ãƒ©ãƒ¼: å¹…ã¨é«˜ã•ã¯ã©ã¡ã‚‰ã‚‚0より大ãããªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" #~ msgid "C_enter" #~ msgstr "中心(_E)" @@ -11055,7 +10857,7 @@ #, fuzzy #~ msgid "_Undo History" -#~ msgstr "アンドゥ履歴" +#~ msgstr "å–り消ã—履歴" #, fuzzy #~ msgid "Brus_hes" @@ -11113,7 +10915,7 @@ #, fuzzy #~ msgid "Y ratio:" -#~ msgstr "比率 X:" +#~ msgstr "比率 Y:" #~ msgid "Constrain aspect ratio" #~ msgstr "縦横比をä¿æŒ" @@ -11123,11 +10925,11 @@ #, fuzzy #~ msgid "X resolution:" -#~ msgstr "解åƒåº¦:" +#~ msgstr "解åƒåº¦ X:" #, fuzzy #~ msgid "Y resolution:" -#~ msgstr "解åƒåº¦:" +#~ msgstr "解åƒåº¦ Y:" #~ msgid "Stroke Options" #~ msgstr "ストロークオプション" @@ -11264,13 +11066,13 @@ #~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" #~ "\" setting (currently %s) in the Preferences dialog." #~ msgstr "" -#~ "åˆæœŸã‚µã‚¤ã‚º %s ã§ç”»åƒã‚’作æˆã—よã†ã¨ã—ã¦ã„ã¾ã™.\n" +#~ "åˆæœŸã‚µã‚¤ã‚º %s ã§ç”»åƒã‚’作æˆã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚\n" #~ "\n" -#~ "ã“ã‚Œã§ã‚ˆã‘ã‚Œã°ã€Œäº†è§£ã€ã‚’é¸æŠžã—ã¦ãã ã•ã„.\n" -#~ "本æ¥æ„図ã—ãŸå¤§ãã•ã§ãªã„ã®ãªã‚‰ã°ã€Œå–消ã€ã‚’é¸æŠžã—ã¦ãã ã•ã„.\n" +#~ "ã“ã‚Œã§ã‚ˆã‘ã‚Œã°ã€Œäº†è§£ã€ã‚’é¸æŠžã—ã¦ãã ã•ã„。\n" +#~ "本æ¥æ„図ã—ãŸå¤§ãã•ã§ãªã„ã®ãªã‚‰ã°ã€Œå–消ã€ã‚’é¸æŠžã—ã¦ãã ã•ã„。\n" #~ "\n" -#~ "ã“ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè¡¨ç¤ºã•ã‚Œãªã„よã†ã«ã™ã‚‹ã«ã¯, 環境設定ダイアログ内ã®\"最大画" -#~ "åƒã‚µã‚¤ã‚º\" (ç¾åœ¨ %s) ã®è¨­å®šã‚’大ããã—ã¦ãã ã•ã„." +#~ "ã“ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè¡¨ç¤ºã•ã‚Œãªã„よã†ã«ã™ã‚‹ã«ã¯ã€ç’°å¢ƒè¨­å®šãƒ€ã‚¤ã‚¢ãƒ­ã‚°å†…ã®\"最大画" +#~ "åƒã‚µã‚¤ã‚º\" (ç¾åœ¨ %s) ã®è¨­å®šã‚’大ããã—ã¦ãã ã•ã„。" #~ msgid "Image exceeds maximum image size" #~ msgstr "ç”»åƒãŒæœ€å¤§ç”»åƒã‚µã‚¤ã‚ºã‚’越ãˆã¾ã™" @@ -11298,9 +11100,9 @@ #~ "a transparent or animated GIF file." #~ msgstr "" #~ "アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’インデックス付ãã®ç”»åƒã¸å¤‰æ›ã—よã†ã¨ã—ã¦ã„" -#~ "ã¾ã™.\n" -#~ "ã“ã®ç”»åƒã‹ã‚‰é€æ˜Ž GIF やアニメ GIF å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’作æˆã™ã‚‹å ´åˆã«ã¯, 256 色" -#~ "以上ã®ãƒ‘レットを生æˆã—ã¦ã¯ã„ã‘ã¾ã›ã‚“." +#~ "ã¾ã™ã€‚\n" +#~ "ã“ã®ç”»åƒã‹ã‚‰é€æ˜Ž GIF やアニメ GIF å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’作æˆã™ã‚‹å ´åˆã«ã¯ã€256 色" +#~ "以上ã®ãƒ‘レットを生æˆã—ã¦ã¯ã„ã‘ã¾ã›ã‚“。" #~ msgid "" #~ "You are trying to create an image with an initial size of %s.\n" @@ -11311,14 +11113,14 @@ #~ "To prevent this dialog from appearing, increase the \"Maximum Image Size" #~ "\" setting (currently %s) in the Preferences dialog." #~ msgstr "" -#~ "åˆæœŸã‚µã‚¤ã‚º %s ã§ç”»åƒã‚’作æˆã—よã†ã¨ã—ã¦ã„ã¾ã™.\n" +#~ "åˆæœŸã‚µã‚¤ã‚º %s ã§ç”»åƒã‚’作æˆã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚\n" #~ "\n" -#~ "ã¨ã«ã‹ã,ã“ã®ç”»åƒã‚’作æˆã™ã‚‹ã®ã§ã‚ã‚Œã°ã€Œäº†è§£ã€ã‚’é¸æŠžã—ã¦ãã ã•ã„.\n" +#~ "ã¨ã«ã‹ãã€ã“ã®ç”»åƒã‚’作æˆã™ã‚‹ã®ã§ã‚ã‚Œã°ã€Œäº†è§£ã€ã‚’é¸æŠžã—ã¦ãã ã•ã„。\n" #~ "ã“ã®ã‚ˆã†ãªå¤§ããªç”»åƒã‚’作æˆã—ãŸããªã„ã®ã§ã‚ã‚Œã°ã€Œå–消ã€ã‚’é¸æŠžã—ã¦ãã ã•" -#~ "ã„.\n" +#~ "ã„。\n" #~ "\n" -#~ "ã“ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè¡¨ç¤ºã•ã‚Œãªã„よã†ã«ã™ã‚‹ã«ã¯, 環境設定ダイアログ中㮠\"最大" -#~ "ç”»åƒã‚µã‚¤ã‚º\" ã®è¨­å®šå€¤ (ç¾åœ¨ %s) を大ããã—ã¦ãã ã•ã„." +#~ "ã“ã®ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ãŒè¡¨ç¤ºã•ã‚Œãªã„よã†ã«ã™ã‚‹ã«ã¯ã€ç’°å¢ƒè¨­å®šãƒ€ã‚¤ã‚¢ãƒ­ã‚°ä¸­ã® \"最大" +#~ "ç”»åƒã‚µã‚¤ã‚º\" ã®è¨­å®šå€¤ (ç¾åœ¨ %s) を大ããã—ã¦ãã ã•ã„。" #~ msgid "Extended" #~ msgstr "æ‹¡å¼µ" @@ -11336,8 +11138,8 @@ #~ "Could not find the GIMP Help Browser procedure. It probably was not " #~ "compiled because you don't have GtkHtml2 installed." #~ msgstr "" -#~ "GIMP ヘブルプラウザプロシージャãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“. GtkHtml2 ãŒãªã, コンパイ" -#~ "ルã•ã‚Œãªã‹ã£ãŸã®ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“." +#~ "GIMP ヘルプブラウザプロシージャãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。GtkHtml2 ãŒãªãã€ã‚³ãƒ³ãƒ‘イ" +#~ "ルã•ã‚Œãªã‹ã£ãŸã®ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。" #~ msgid "Could not start GIMP Help Browser" #~ msgstr "GIMP ヘルプブラウザãŒèµ·å‹•ã§ãã¾ã›ã‚“ã§ã—ãŸ" @@ -11352,10 +11154,10 @@ #~ msgstr "フローティングレイヤーã®ç§»å‹•" #~ msgid "Changes were made to '%s'." -#~ msgstr "'%s' ã¯å¤‰æ›´ã•ã‚Œã¦ã„ã¾ã™." +#~ msgstr "'%s' ã¯å¤‰æ›´ã•ã‚Œã¦ã„ã¾ã™ã€‚" #~ msgid "Unsaved changes will be lost." -#~ msgstr "未ä¿å­˜ã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™." +#~ msgstr "未ä¿å­˜ã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾ã™ã€‚" #~ msgid "Select Custom Palette" #~ msgstr "カスタムパレットをé¸æŠž" @@ -11387,8 +11189,8 @@ #~ "Messages are redirected to stderr." #~ msgstr "" #~ "警告:\n" -#~ "メッセージダイアログãŒå¤§é‡ã«é–‹ã‹ã‚Œã¾ã—ãŸ.\n" -#~ "ã“れ以é™ã¯ stderr ã«å‡ºåŠ›ã•ã‚Œã¾ã™." +#~ "メッセージダイアログãŒå¤§é‡ã«é–‹ã‹ã‚Œã¾ã—ãŸã€‚\n" +#~ "ã“れ以é™ã¯ stderr ã«å‡ºåŠ›ã•ã‚Œã¾ã™ã€‚" #, fuzzy #~ msgid "RGB color" @@ -11437,21 +11239,21 @@ #~ "File '%s' exists.\n" #~ "Overwrite it?" #~ msgstr "" -#~ "ファイル '%s' ã¯å­˜åœ¨ã—ã¾ã™.\n" +#~ "ファイル '%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 "" @@ -11459,7 +11261,7 @@ #~ "\n" #~ "Really quit The GIMP?" #~ msgstr "" -#~ "未ä¿å­˜ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒã‚ã‚Šã¾ã™.\n" +#~ "未ä¿å­˜ã®ãƒ•ã‚¡ã‚¤ãƒ«ãŒã‚ã‚Šã¾ã™ã€‚\n" #~ "\n" #~ "GIMPを終了ã—ã¾ã™ã‹?" @@ -11467,15 +11269,15 @@ #~ "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 "ãƒã‚¤ãƒ³ã‚¿ç§»å‹•ãƒ•ã‚£ãƒ¼ãƒ‰ãƒãƒƒã‚¯" @@ -11502,7 +11304,7 @@ #~ msgstr "ウィンドウã«åˆã‚ã›ã‚‹" #~ msgid "Trying legacy loader on file '%s' with unknown extension." -#~ msgstr "ä¸æ˜Žãªæ‹¡å¼µå­ã®ãƒ•ã‚¡ã‚¤ãƒ« '%s' ã«å¯¾ã—ã¦ãƒ¬ã‚¬ã‚·ãƒ¼ãƒ­ãƒ¼ãƒ€ã‚’é©ç”¨ã—ã¾ã™." +#~ msgstr "ä¸æ˜Žãªæ‹¡å¼µå­ã®ãƒ•ã‚¡ã‚¤ãƒ« '%s' ã«å¯¾ã—ã¦ãƒ¬ã‚¬ã‚·ãƒ¼ãƒ­ãƒ¼ãƒ€ã‚’é©ç”¨ã—ã¾ã™ã€‚" #~ msgid "Set canvas padding color" #~ msgstr "キャンãƒã‚¹ã¾ã‚ã‚Šã®è‰²ã‚’設定ã—ã¾ã™" @@ -11514,7 +11316,7 @@ #~ msgstr "é¸æŠžé ˜åŸŸã‚’表示ã™ã‚‹(_E)" #~ msgid "_Undo History Preview Size:" -#~ msgstr "アンドゥ履歴ã®ãƒ—レビューサイズ(_U):" +#~ msgstr "å–り消ã—履歴ã®ãƒ—レビューサイズ(_U):" #~ msgid "Dialog Behavior" #~ msgstr "ダイアログã®æŒ¯èˆžã„" @@ -11580,30 +11382,30 @@ #~ msgstr "セッション" #~ msgid "Click \"Continue\" to start The GIMP." -#~ msgstr "GIMP ã‚’èµ·å‹•ã™ã‚‹ãŸã‚ã«ã¯ \"次ã¸\" をクリックã—ã¦ãã ã•ã„." +#~ msgstr "GIMP ã‚’èµ·å‹•ã™ã‚‹ãŸã‚ã«ã¯ \"次ã¸\" をクリックã—ã¦ãã ã•ã„。" #~ 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 "" -#~ "GIMP ãŒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã‚·ã‚¹ãƒ†ãƒ ã‹ã‚‰ã“ã®æƒ…報を得るよã†ã«ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™.ã—ã‹" -#~ "ã—, 多ãã®å ´åˆã«ã¯ç„¡æ„味ãªå€¤ã‚’è¿”ã™ã‚ˆã†ã§ã™." +#~ "GIMP ãŒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã‚·ã‚¹ãƒ†ãƒ ã‹ã‚‰ã“ã®æƒ…報を得るよã†ã«ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ã—ã‹" +#~ "ã—ã€å¤šãã®å ´åˆã«ã¯ç„¡æ„味ãªå€¤ã‚’è¿”ã™ã‚ˆã†ã§ã™ã€‚" #~ msgid "Alternatively, you can set the monitor resolution manually." -#~ msgstr "ãã®ä»£ã‚ã‚Šã«, 直接モニタ解åƒåº¦ã‚’設定ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™." +#~ 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 "測定" @@ -11619,8 +11421,8 @@ #~ "\"Keep Width\" toggles to constrain\n" #~ "the aspect ratio" #~ msgstr "" -#~ "「縦幅を固定ã€ã¨ã€Œæ¨ªå¹…を固定ã€ã‚’\n" -#~ "åŒæ™‚ã«æœ‰åŠ¹ã«ã™ã‚‹ã¨ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ã‚’\n" +#~ "「高ã•ã‚’維æŒã€ã¨ã€Œå¹…を維æŒã€ã‚’\n" +#~ "åŒæ™‚ã«æœ‰åŠ¹ã«ã™ã‚‹ã¨ç¸¦æ¨ªæ¯”ã‚’\n" #~ "ä¿å­˜ã—ã¾ã™" #~ msgid "Intensity Range:" @@ -11660,7 +11462,7 @@ #~ msgstr "/タブã«è¿½åŠ /ナビゲーション(_V)" #~ msgid "/Add Tab/_Undo History" -#~ msgstr "/タブã«è¿½åŠ /アンドゥ履歴(_U)" +#~ msgstr "/タブã«è¿½åŠ /å–り消ã—履歴(_U)" #~ msgid "/Add Tab/Colo_rs" #~ msgstr "/タブã«è¿½åŠ /色(_R)" @@ -11804,13 +11606,13 @@ #~ msgstr "/ファイル/é–‰ã˜ã‚‹(_C)" #~ msgid "/Edit/_Undo" -#~ msgstr "/編集/アンドゥ(_U)" +#~ msgstr "/編集/å–り消ã—(_U)" #~ msgid "/Edit/_Redo" -#~ msgstr "/編集/リドゥ(_R)" +#~ msgstr "/編集/ã‚„ã‚Šç›´ã—(_R)" #~ msgid "/Edit/Undo _History" -#~ msgstr "/タブã«è¿½åŠ /アンドゥ履歴(_H)" +#~ msgstr "/タブã«è¿½åŠ /å–り消ã—履歴(_H)" #~ msgid "/Edit/Cu_t" #~ msgstr "/編集/切りå–ã‚Š(_T)" @@ -12155,7 +11957,7 @@ #~ msgstr "/ダイアログ/ナビゲーション(_V)" #~ msgid "/Dialogs/_Undo History" -#~ msgstr "/ダイアログ/アンドゥ履歴(_U)" +#~ msgstr "/ダイアログ/å–り消ã—履歴(_U)" #~ msgid "/Dialogs/Colo_rs" #~ msgstr "/ダイアログ/色(_R)" @@ -12194,10 +11996,10 @@ #~ msgstr "/ダイアログ/エラーコンソール(_N)..." #~ msgid "/Filters/Repeat Last" -#~ msgstr "/フィルタ/å†é©ç”¨" +#~ msgstr "/フィルタ/最後を繰り返ã™" #~ msgid "/Filters/Re-Show Last" -#~ msgstr "/フィルタ/å†å®Ÿè¡Œ" +#~ msgstr "/フィルタ/最後ã®å†è¡¨ç¤º" #~ msgid "/Filters/_Blur" #~ msgstr "/フィルタ/ã¼ã‹ã—(_B)" @@ -12278,11 +12080,11 @@ #~ msgstr "/ファイル/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ(_K)" #~ msgid "/File/Dialogs/Create New Dock/_Layers, Channels & Paths" -#~ msgstr "/ファイル/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/レイヤー, ãƒãƒ£ãƒ³ãƒãƒ« & パス(_L)" +#~ msgstr "/ファイル/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/レイヤーã€ãƒãƒ£ãƒ³ãƒãƒ« & パス(_L)" #~ msgid "/File/Dialogs/Create New Dock/_Brushes, Patterns & Gradients" #~ msgstr "" -#~ "/ファイル/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/ブラシ, パターン & グラデーション(_B)" +#~ "/ファイル/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/ブラシã€ãƒ‘ターン & グラデーション(_B)" #~ msgid "/File/Dialogs/Create New Dock/_Misc. Stuff" #~ msgstr "/ファイル/ダイアログ/æ–°è¦ãƒ‰ãƒƒã‚¯ä½œæˆ/ãã®ä»–(_M)" @@ -12315,7 +12117,7 @@ #~ msgstr "/ファイル/ダイアログ/ナビゲーション(_V)" #~ msgid "/File/Dialogs/_Undo History" -#~ msgstr "/ファイル/ダイアログ/アンドゥ履歴(_U)" +#~ msgstr "/ファイル/ダイアログ/å–り消ã—履歴(_U)" #~ msgid "/File/Dialogs/Colo_rs" #~ msgstr "/ファイル/ダイアログ/色(_R)" diff -uraN gimp-2.2.8/po/ko.gmo gimp-2.2.9/po/ko.gmo --- gimp-2.2.8/po/ko.gmo 2005-04-29 13:45:47.000000000 +0200 +++ gimp-2.2.9/po/ko.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,476 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpH ŠH–H¦H;ÀHüHI %I 2I>IXI jI vI„I ”I ¢I ¯I»IÃI áIëIJ#J5JIJ\JmJ€J‘J¤J¿JÑJæJ+ýJ)KAKaKhK wK „K ‘KK ¯K ¼KÈK#ßK LL !L-LBLYL6qL¨LÅLÍLÔL éL7öL.MLMaMqMxMM¥M ´M ÁMÍMßM óMN N*N?NEN -LN -WNbN jNwNŒN ›N©N -¯NºN¿N ÔNàN -÷NO"O ?OKO]OxO”O ¯O»OËOäOôOP4PRPoP‚P›P¸PËPÚP.ôPE#QiQ zQ ˆQ•Q ­Q »QÉQäQ êQ øQ R -RR ,R -8RCRRR aRnR‹R“Rœ§RNDS -“SžS§S®SÀS ÈSÔSæSTT#2TVTtT ˆT”T¦TÂTØT#òTU4U HUUUhU…UœU$·UÜUûU VV*VDVXV!pV’V®VÀV -ÇVÒVçV ÷VW#W>WUWiWW —W£WºWÑWèWXX 7XEXXX kXxXXŸX´XÌXßXöX -YY#Y"=Y`YzY ”Y Y´YÏYçYZ=Z6NZS…ZJÙZ$[=[P[ c[m[~[”[£[½[Ì[ê[ ü[\\,\?\ S\_\x\Š\ ž\«\Ë\á\ü\]1]I] ]]i]~]“]£]²]Ä]´×])Œ^N¶^_K`=e`ƒ£`*'a¤Ra¢÷a3šbTÎb?#c`cc2Äc÷c¯yd)f4,g/agº‘g LhXh`hfhmh~hh¢hªhºhÌhÒhåhøhi *i 6iCiLi \iiiyi Ši—i ¬iºiÊi#Þi jj $j 2j&?jfj -yj„j—j§jÁj"Ójöjkk.k?k^ktk„k™k©k¸k ÉkÖkïk lll$l9l+?lklql‚l ‰l–l lªl ºl -ÈlÓlÙlàlèl ñl ýl8 -mvCmºmÁmÙmñm ùm nn n!9n[nsnnªnÃnànýnooo#o7oQo Xo eo qo oo–oŸo ¨oµoÅo Ôoào ño ýo p&p!5pWpkp(„p­p#¶p Úp èpõpüp -q q q$q3qGqbq -gq rq -~q ‰q—q§qK°q1üq7.r1fr5˜rHÎrAsŠYs;äs! tÁBt uæ%u  v¨w}Âw*@xBkyæ®y•z´z‚6{¹{ ¿{Í{)Ô{5þ{¯4|1ä|0}0G}1x}(ª}CÓ}€~S˜~,ì~2 LAm€A¯€*ñ€«íÈ ¶‚Îã’„ª6…§á…§‰†1‡˜4ˆG͈è‰ïþ‰2îŠ!‹N;‹ Š‹-”‹ -‹Í‹à‹ò‹Œ ŒŒŒo&Œ–ŒœŒ®ŒÁŒ ÚŒçŒùŒ  !:C KX -^<i ¦Ž´Ž ËŽÕŽçŽûŽ /IYh|‹¥µ ÄÑå -õ3%;Y;•¡Ñs‘Fz’ Á’Ë’ Ð’ Ý’ë’ñ’ù’ “,“3“;“D“b“‚“3›“#Ï“ó“ ””.”H”^”m”|”‚” ‰”•”²”»”FÄ” • -+• -6•A• F• T• b• o• |• Š•!˜•!º• Ü• è•+ô•K –0l–Q–˜ï–¢ˆ—$+˜5P˜P†˜Gט-™OMšjšo›ex›jÞ›~IœpÈœo9w©<!ž?^ž>žžtÝžtRŸ`ÇŸ‰( ² 2¡08¡i¡o¡v¡ˆ¡¡ ®¡¼¡6¾¡oõ¡e¢g¢n¢4v¢#«¢ÈÏ¢G˜£%à£X¤U_¤Oµ¤¥¥%¥.¥6¥ -?¥ J¥ V¥`¥ i¥s¥|¥#Ž¥²¥ º¥È¥Ñ¥×¥æ¥í¥ö¥ ¦¦%¦7¦ I¦S¦ X¦ f¦t¦ ‹¦•¦¦£¦ ¦¦°¦æÞ¦ ý¦§ $§1§8§A§ `§m§ u§§§ “§ Ÿ§ ©§·§˧Ò§ -Ù§ä§ ì§ù§¨!¨ *¨8¨>¨M¨l¨ {¨‡¨ -¨š¨¬¨ ¼¨ʨÙ¨ é¨÷¨ © ©'© 7©D©W©m©}©©  © ¬©¸©Ç©Щá© û© ª -ªª#ª2ªNª]ªoª‰ªšª³ªĪÖª æª « «« #«-« 3«?«T«c« i«w«‡«Ž«”«›« ®«»«¾« Ç« Ñ« -Û« -æ«ñ« -¬¬ ¬%¬ +¬8¬>¬D¬J¬Q¬X¬`¬h¬ {¬ ‡¬”¬®¬ ¶¬ìʬѬÙ¬ó¬­ -"­-­@­ O­ [­g­o­w­­ œ­ ©­µ­ ¸­­Ç­Í­à­û­® ®®5® U® b®p®v®†®Œ®“® -›® ¦®³® î Ñ® -ß® ê® ø® ¯ ¯ ¯)¯ :¯D¯ L¯V¯]¯ -c¯n¯ w¯ƒ¯Œ¯ ›¯ ¨¯´¯½¯ įÒ¯â¯é¯ ò¯ ÿ¯ °° #° 1°?° N°Z°m°s°v°{°ƒ° ’° Ÿ° «°¸°Í° à°í°ó°ü° ± ±2±(D±m±u±~±”±¬±¾±4ر1 ²/?²o²…²•²µ² ½²ʲвä²#õ² ³:³Y³`³p³"€³£³ -«³¶³ȳÙ³à³é³ÿ³ ´´#´+´;´M´b´ -{´ -†´ -‘´œ´ ¢´°´¶´Æ´Ì´Ó´ -ó´þ´µµ -µ)µ/µ8µ=µRµhµwµ µŒµ›µŸµ¥µ¨µ·µ»µ -Áµ̵Óµص5ܵ¶ $¶.¶>¶C¶J¶ R¶`¶!u¶ —¶ ¸¶Ù¶ -ù¶ ····#·(·.·4· ;· E·O·U·\· c·q·.„·³·/з¹2¹oQ¹KÁ¹7 ºEEº?‹ºf˺j2»>»yÜ»BV¼4™¼AμU½df½=˽; ¾1E¾Cw¾8»¾2ô¾ '¿4¿ -;¿ F¿S¿Z¿ a¿m¿}¿ -Œ¿—¿š¿«¿ Ê¿ ׿ á¿î¿À$À:À.CÀrÀˆÀ¡ÀªÀ³À ÏÀÛÀ äÀ ðÀ üÀ Á Á Á -.Á -9Á DÁ QÁ ]Á jÁ vÁ‚Á ‡Á•Áa¥Á…Â7Â)ÅÂ3ïÂ#à -;à FÃTÃ$[à €ÃŽÃ ¨Ã²ÃÎÃæÃúÃ$ Ä0ÄDÄXÄ$sĘĬÄÊÄ ÛÄéÄÅ "ÅCÅaÅÅ Å+¾Å6êÅ!Æ<ÆWÆ sÆ}ƛưÆÅÆÚÆ#ïÆÇ(Ç=ÇRÇ(rǛǰǷÇËÇÓÇïÇÿÇÈ 8ÈBÈ IÈ WÈeÈ/yÈ%©É2ÏÉÊÊÊ2Êœ:Ê×ÊëÊËË6Ë>ËRËfËmˈ˧˸Ë;ÓËEÌUÌCqÌ -µÌ -ÀÌËÌ ßÌÍÍ2Í:Í.AÍpÍÍ–Í²Í ÆÍÔÍåÍ÷ÍÎ -&Î1Î 8ÎBÎTÎjÎ5zÎ.°ÎßÎæÎ ýÎ Ï -ÏÏ -9ÏDÏ!KÏmÏ@vÏ ·ÏÅÏÌÏ ÔÏ áÏÐÐ$Ð5Ð JÐEXÐ žÐ¨Ð¼Ð ÍÐ -ÚÐ åÐïÐÑÑ Ñ &Ñ0Ñ CшPÑÙÑ ÞÑìÑþÑ -ÒÒ%-ÒSÒkÒrÒWƒÒWÛÒ]3ÓJ‘Ó@ÜÓlÔ/ŠÔ'ºÔ9âÔ)Õ@FÕ6‡Õ:¾Õ:ùÕ-4ÖbÖsÖ “Ö Ö §ÖµÖÉÖäÖøÖ×1×$I×n×Œ× ª×*Ë×ö×Ø Ø$Ø03Ø-dØ ’Ø, Ø)ÍØ÷ØÙ)Ù@ÙHÙ OÙ]ÙpÙˆÙ ŒÙ šÙ ¤Ù²ÙÇÙâÙóÙ= ÚDIÚGŽÚGÖÚFÛIeÛ<¯Û+ìÛ'Ü.@ÜVoÜ8ÆÜ*ÿÜ4*Ýz_ÝEÚÝ; ÞB\ÞZŸÞVúÞ8QßŠß ™ß ºß Èß%Õßûßàà6àHàdàsà -…àà —à¥à ÁàÏàäàùà<áLá]álá tá‚á”á¥áÁáÝá;ñá-âAâ _âiâ}âŽâ “âŸâ ¦â ²â"Àâ"ãâã ã)ãAã!\ã~ã–ã²ãÊãßã/÷ã'ä8äNä -aälä säävˆäÿäåå!å)2å-\å-Šå¸åÓå9äå9æ0Xæ‰æ æ´æÈæCãæ -'çL2ç(ç'¨ç(Ðç9ùç63è/jè šè5»èñèIéXé`éxéŽé¦é¾éÖé+îé1êLê0dê#•ê ¹êÚêøê-ë EëOë#lëë¤ë¸ë0Ìë ýë ìì $ìEì_ìqì€ì ”ì¢ì±ì¸ìËì áìïìOöì FíPíaí{í ›í¨í Âí -Ìí×íìíþíî.îCîUîgîî šî§î¸îÉîØîçîîî öî%ï&ï EïSïlï3‚ï¶ïÔïèï!üïð<ðMð^ðrð†ð—ð¨ðÂðÖðôðññ#*ñNñlñŠñ¢ñ³ñÊñ Ûñ;åñ!ò (ò 2ò@ò HòUò iò sò }ò ‹ò¬òÇòâòéòó#ó8óNóhóoó wó …ó ó™óC¸óPüó>MôŒôžô§ô ¹ôÇô ÎôÜô ôô+þô*õ >õKõ\õ tõ‚õ “õ¡õ°õÄõÍõÝõóõöD.ö!sö•ö ¦ö´öËöÜö íö ûö ÷&$÷K÷f÷u÷†÷›÷¢÷·÷Ì÷ä÷ü÷ø 2ø@øXømøˆø£ø´øÅø Úø"èø ù"ù:ùKù `ùnù‚ù ù -«ù ¶ù -ÄùÏù6çù -ú)ú'=úeú6}ú#´úØú1éú6û&Rû)yû:£ûÞûòû ùû üDü*Vü ü‹ü ü«üÀüÝüýü'ý<ýSýiý‡ýZžýPùýJþ Qþ[þjþ‚þ. þÏþêþòþ ÿÿ6+ÿ5bÿ˜ÿµÿÒÿìÿ  " /<'Rz<‹3È üA WKX£Aü]>\œ\ùNVN¥†ô@{[¼iP‚‘ÓSe]¹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ˆ¤ ¸Æáö˜#¼ðÚË‹Ô `…nôûmpˆ£·ËÝí (.?1n m³!2BYm~…˜Ÿ§®ÀÑâ ô*þ)@D#^‚   ­%¹ß÷ &.5 =G^4r1§Ù ðú#&%L`S´ÈØïöCýAg^Æ Í?Û0 8E ]k † ’ ž¨»hΤ7]Ü>: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 <0J0CR0–0H0æ0 þ01 1 1'171W1^1o1 v1 „1!’1$´1$Ù1þ1282@2 -G2R2q2!‚2%¤2Ê2$Þ23!3%63\3!m33$£3È3!Ù3 -û3 44 -/4 :4 -D4O4V44n4£4½4Õ4!ô455--5 [5|5#‘5µ5½5Ä5ß5>ú596A6 H6V6n6‚6–6ª6È6$ã6$7-7L7`7t7…7#œ7%À7$æ7 88 38T8[8o8v8~85–8Ì8á8 ö89 9#9*9 ;9G9Z9a9 y9‡9Ÿ9°9Á9Ò9 í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@!@±@Ï@×@¡ç@‰A™A ´A -¾AÉAÐA áA BB0BEB^B$|B!¡B#ÃB$çB C'C?CWCnC }C ‡C‘C C °C ½C ËCwÕCEMD -“DtžD E%ECEaEsE!ˆE-ªE4ØE F F .F8FLFgF xF…F›F °FºFËFéFðF G"G,2G_GxG”G!­G2ÏG.H1HIH PH^HmH0H-°H,ÞH) I5IPI@gI¨I¿I ÆIÔI ÛI éIóI JJ J -*J5JAgM€gÎgãgúg h#h 4h,Ah nh|h‘h©hÄh$Ùhþhi+iv|hµ|B}¤a}8~?€N[BªáíÏ‚ à‚ê‚ñ‚ù‚ƒ"ƒ 5ƒBƒVƒ jƒwƒŽƒ$¥ƒʃÞƒ òƒ „ -„%„:„U„q„†„¢„½„Ï„!ë„ …"…>…Y…4n…£…¿…Ñ…í…††*5†"`†ƒ†•†°†/̆ü† ‡:‡R‡g‡x‡‰‡¨‡ƇÛ‡ú‡ˆˆ7ˆ5?ˆuˆ|ˆ ”ˆ¡ˆ »ˆȈ߈úˆ‰&‰-‰4‰;‰ C‰ Q‰;_‰†›‰"Š*Š>ŠRŠZŠsŠŒŠ'“Š'»ŠãŠûŠ‹9‹!Q‹s‹ ’‹œ‹ -±‹¼‹ËÕ‹î‹ ö‹ ŒŒ"Œ2Œ AŒ OŒYŒuŒ”Œ¬ŒÄŒÜŒ÷Œ(8(S|$—2¼ïöŽ!Ž -0Ž ;ŽIŽ[Ž jŽtŽ…Ž™Ž ¸Ž ÂŽÐŽäŽøŽ&S-IUËI!CkB¯VòŒI‘KÖ‘"’ñ7’)“¬E“7ò“º*•‹å•Vq–BÈ— ˜™ˆ-™Š¶™Aš HšVš=]š+›šÏÇš9—›5Ñ›8œ9@œ?zœHºœˆmŒ5ú90ž0jžF›ŸFâŸ5) ÿ_ î_¡#N¢ÿr£½r¤Ï0¥½¦´¾¦0s§¾¤¨Sc©è·©ï ªB«+Ó«hÿ« h¬Dr¬ -·¬¬Ô¬î¬ -­ ­­ .­|<­ ¹­Ç­Û­(ó­®0®K®]®u®†®¤® µ®®Ö® Ý®jë® -V°a°° †° ”°¢° ³°Á°Ü°÷° ± ±$±+± ?±M±a±h± ‚± ±± -¤±!¯±FѱN²Wg²¿²]‚³]à´ >µ KµYµnµ‡µŽµ•µ*µµ àµ îµ ûµ%¶!.¶%P¶9v¶!°¶ Ò¶ó¶·$ ·E·]·w·ˆ·Œ· ‘·Ÿ·³·»·C·¸ -#¸ -.¸9¸@¸U¸m¸¸•¸ª¸$¼¸&ḹ¹.*¹]Y¹?·¹^÷¹ÂVºº»3Ô»@¼^I¼T¨¼6ý¼`4¾o•¾u¿q{¿lí¿ƒZÀÞÀu`ÁÖÁIXÂO¢ÂFòÂo9éÃQ+Äq}Ä™ïĉÅBÅÓÅÚÅ -âÅíÅ -Æ ÆÆC Æ›dÆÇ Ç - Ç4ÇDLÇß‘ÇJqÈ$¼È_áÈZAÉSœÉðÉ -Ê Ê(Ê/Ê 6ÊDÊSÊ -fÊ -qÊ |ÊŠÊ/žÊÎÊÕÊåÊìÊôÊ - Ë -Ë!Ë!AËcËuËË¥Ë -¹ËÄËÙËñË -Ì -Ì -&Ì1Ì 4ÌBÌQÌoÌ‹Ì§Ì ¸Ì ÄÌ ÒÌ)àÌ -Í -Í*Í;ÍSÍVÍ -jÍuÍŠÍ -£Í -®Í¹Í -ÈÍÓÍ -åÍ$ðÍ -Î Î -5Î@Î*[Î †Î§Î -¿Î ÊÎØÎ÷Î Ï!Ï6ÏKÏ `ÏϙϱÏÉÏÞÏöÏÐ&Ð;Ð SÐaÐvЈЙеР-ÑÐÜÐ -ìÐ -÷ÐÑÑ6ÑKÑiшѠѼÑÑÑéÑ+ûÑ'Ò <Ò JÒ XÒ -fÒqÒ"€Ò£Ò ¾ÒÌÒáÒ öÒ -Ó -ÓÓ)Ó;Ó ->ÓIÓaÓuÓ‰Ó* ÓËÓ ÜÓ -êÓ õÓ Ô ÔÔ ,Ô:Ô IÔ WÔeÔvÔ”Ô¨Ô·Ô -ÏÔÚÔ -ñÔ üÔ -Õ Õ9Õ,KÕ xÕ†Õ¢Õ ´ÕÀÕ -ÐÕ -ÛÕæÕÖÖ2ÖGÖ -JÖ -UÖ `ÖnÖŒÖ -£Ö -®Ö¹ÖÔÖ2óÖ&× 8× -Y×d× -y× „× -×›×­×¼×Î×à×ø× -ØØ1Ø@ØRØaØvØ ‹Ø™Ø -¨Ø -³Ø ¾Ø ÌØÚØ ïØýØÙ$Ù ;ÙIÙ[Ù!tÙ -–Ù -¡Ù ¬ÙºÙÎÙàÙñÙ ÚÚ-Ú?Ú -WÚbÚeÚ -mÚxÚÚ¥ÚºÚ!ÏÚñÚ Û Û)Û:Û$YÛ~ÛšÛ9¶Û -ðÛ ûÛ ÜÜ"3Ü%VÜ@|Ü9½Ü6÷Ü.ÝFÝ,[Ý -ˆÝ “Ý -ŸÝªÝÃÝ*ÛÝ)Þ 0ÞQÞcÞ‚Þ9¡Þ -ÛÞ -æÞñÞß -ß#ß4ßFßaß -rß}ߎߨßÄßãßûß -à à 'à5àFàXà -jà -uà%€à -¦à±àÃàÕà êà -öà á áá5áSá káwá Œášá -žá©á ¬áºá -¾áÉáÙáàáçáJëá6âQâdââˆâ âœâ³â(Íâöâ#ã :ã [ã hãuãyã }㠇㠑ã›ã¢ã ©ã ³ã ½ã ÇãÑãÕãQäã%6ä\ä[®­š|røɪ1ç7=ù€-†~U³¹>7 W8WÌòV¸nÚ•€ê†Ã/¡ŠežÜr;Ü4ûã™NÌ®š…§éÜ‹° S ß+#åc7ùt®ù§V–ròî¢lAýg[0'ÌG©=b½mŒº/X w:‘Ö¦5 ÷\T\ÖŸ«~Ã"ìüB-ÂLÝƈSs‰ßïM1 Ï=°ÏMú‰ÚåHÕv;—í§3%(þ ÌºÅÜ—w$ Y_v é!Reýö_Gxç+±¼ B†Z„³ ¢X‚ ¾+[¿!Æ·¤+)»hesªcw2 ‚ÅëÂã0ži‰ò" Ñô§nêLóž›SÓÔK©Xg€_ ÙN;58 ^ÕÚÞ¥´õO Œzï}"„+²Úß+ •èêùn'ÿµÞµ1¦.Cõ.µ™ð›†­£VƒèùšF9×ó·ûEO<NÃv ú†õ1_æš>ö¡Ã>¯þpÝÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ®áØuS½šàüºXÖâœâÛ”(¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr”˜ÌHƒ³ªÁa„ꋺð5oÇVhü­|?B @ &3³~ ´’=LÛfÞË$®0èá»5Ÿ˜47zæ²–ç±|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ñ‘Ç›("äqä>ŠU9Û…±m= t`,‘ÛqFäÀP¶v¸¨‰ ' Ò³âÈù |’¾ç£Ð,NÍí34±â Cn†Ež›2# i«¸føìLÔéc>tùIÐB†·'^ü©"Ú~@! ûÀŽ]ïìø ]èw7Q-Ý—hÊ ”€i«©•UªËˆAî -yJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¹S0 äWÇ·É@Ӊίzo*ŒVoŽDLUÔ›qF ¨JŸ: ?=|Qí›Ë´ð àþ Ì–fJØY@0ª£bø—ÔX$ =òuRHm/IÅjúE0Y&vÒÜWÙ$æôlŠYh4È TsG@è}*2þCåŽN¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚E«Õß“‡^Tl·ÄŽ A]­M Y¾I½?3[ÍÖ& K1e,%n-wkɹóÏkc6êoI˜“Š¨›ƒ³ò—¦:Ç/•CåÖ Þ—§5?HuW ŒÄqÿÔSA  ï>I”ýÀïµ·ü ‘d†HÂÀa;Þu°d½ ÐF²£¤‹K×eèÞZBR¯°Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-íku•1ã:vJÁdAás*4 X»s¬C”H6vÈÖ¶TFb­x'^*ûe' ÷Ä–ŒGÑ*ÕNÙòæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Äü&(mBë²ôÛ÷ç -5‡£uÎëÔ.õžj.Ÿˆ’\s¬p¶kÄÍüéb$Qý¡`泂yF£gœé0|ˆð8SqÓÞ wñ&"§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxJvÉÄÏ<¥êFPúСÐo¢"4o›5 ðqc(¹J“Ré&;«·ëÚ#ÿÓ&O/Î txƒÌ; ŽK ΑÈt£ëÎâkCµœôÛ$AÁ j¦Âi+š +÷0¤l¶K@ f-< "% “Ð)s…ãØc+ñS !¿V¹¦<@ÏôÆ&sjíÐà­<›ýÏæH ¬ñ?‡óÔðDEO°Øª$À…ÑC„bñU -%ìÞ“×êMÑóVI €°`g‰—<÷~[ 6K - Ó> yBߊ¯Dä!Å/ÊÅr =óZ Z¬ØÚTïè„h, ¤;@ì\i lc d»ÿ] ‰IU9)ó¦pð3ß`U‡˜Œ¯Û}‘P’ku é U ¿ŽA>3 ^ÉFäPZ—ªCas‡»wó©x†}n„ÜD7.Ë[ô6 l¤,1ÒnÚ‚´:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…åƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¢žg`h{ê N 6 ±?œg Ðçk =4 B‹ª@Ý9ÈVšXG€´=Ķ:l˜±øMÑ -{õp½•K÷ýaJ ¢ÀëÆö:àf¶ ³îÒ~tDR ÒG¾çm¬!Gti€$ˆ2)þ<éKÝTýt*P8ì>lr¢Óà#5E¾9íY߇[ú$z¡“y[ÇGúdׯ’fà jüDúM¸}¦…uôÍ,>¾}c2xi8Ò•öIÍ7ò-‚ºz#ôžEÚPSA8©%Œ1î͘©´ -Ÿ)Á/’z½Q¼afÙ¸Á9(®bþ;oQ4¾Q²‹ê\ä ¿¤Å˜#Ý:«L L”âPí,ÊÍõ»¨¡ŠD¨Õ ²%Ï÷$à¸É¿}) š._|'-h Á6Ï—&ö´8|‹¡ãáÄŒ§#( þ_Ò°) xËŠÞµãĉö]µûp^h¾úU)øO¯!ãzâ* ^²LY·ÈHö n¨àR ?? ÊY ÇL‡] hRŸÖ¼»IbýW ì‹Å6,¼E×™Q ^\<¼{SEaŽ®\4Ãk¹ÔŠ['– yqÀWð3ºxP­¥ V–¿5. ÙWØZÿâªá`H 3P‚ú„²f ¬íåù¤œÙÕûá©Ý–¥à4Ûpº7Rÿ|r«ïÊ~Ñ!á& ¦§3rÿ™¤ë¹Y ¯œZï®T ˜ìÇî<-‘‚Xë~Ö¥Ž–<L*ìÎn×»Kˆq.à -G eÀ¨» ! „Ø”–d°{Ë NV ¹÷ˆpŽ,äˆ:‰8ój\zaˆÓè÷£¾Z0a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”_’TÆ’{¥½OD¼gC ™2ŒJbö]Ÿ`‡º9v×F?ô¶)ïÔ8Í'Q¯¦RKéõØy7. µÎ¶­¼ÍâÂgÅÆ “ ÇoÁm%dÂt·q6 Nf}7å­.’Ó Çµu‚™3/ûÈçTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.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: - -%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 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 image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.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-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 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -ìž˜ëª»ëœ ì„ íƒì‚¬í•­ "%s" - -사용법: %s [ì„ íƒì‚¬í•­ ... ] [íŒŒì¼ ... ] - - --batch-interpreter <프로시져> - ì¼ê´„처리 ëª…ë ¹ì„ ì²˜ë¦¬í•  프로시져. - --debug-handlers ë””ë²„ê¹…ì„ ìœ„í•œ ì‹œê·¸ë„ ì²˜ë¦¬ê¸° 사용. - --display ì§€ì •ëœ X display 사용. - --dump-gimprc 기본 설정으로 gimprc íŒŒì¼ ì¶œë ¥. - --no-cpu-accel CPU ê°€ì† ê¸°ëŠ¥ì„ ì‚¬ìš© 안함. - --no-shm 김프와 플러그ì¸ë“¤ 사ì´ì—ì„œ 공유 메모리를 사용 안함. - --pdb-compat-mode - 절차 ë°ì´í„°ë² ì´ìŠ¤ 호환 모드. - --session 다른 sessionrc 파ì¼ì„ 사용. - --stack-trace-mode - 치명ì ì¸ 신호를 위한 디버깅 모드. - --system-gimprc 다른 시스템 gimprc íŒŒì¼ ì‚¬ìš©. - --verbose 시작 메시지 ë³´ìž„. - -b, --batch ì¼ê´„처리 모드로 명령 처리. - -c, --console-messages 대화ìƒìž ëŒ€ì‹ ì— ì½˜ì†”ë¡œ 경고 메시지 출력. - -d, --no-data 브러시, ê·¸ë¼ë””언트, 색ìƒí‘œ, 무늬를 ì½ì–´ë“¤ì´ì§€ ì•ŠìŒ. - -f, --no-fonts ê¸€ê¼´ì„ ì½ì–´ë“¤ì´ì§€ ì•ŠìŒ. - -g, --gimprc 다른 gimprc 파ì¼ì„ 사용. - -h, --help ì´ ë„ì›€ë§ ì¶œë ¥. - -i, --no-interface ì‚¬ìš©ìž ì¸í„°íŽ˜ì´ìŠ¤ì—†ì´ 실행. - -s, --no-splash 시작 ì°½ì„ í‘œì‹œ 안함. - -v, --version 버전 ì •ë³´ 출력. -%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 -ì›ëž˜ 파ì¼ì€ 바뀌지 않았습니다.오류ì´ë²¤íŠ¸ë” í¬ê²Œ(_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여야 합니다.페ë”(_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 프로시져유리 효과(_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:시작 Y:ì›ëž˜ 너비:기타 (%s) ...아웃ë¼ì¸ì¶œë ¥ 레벨씌우기프로시져 '%s'ì˜ PDB 호출 오류: -ì¸ìž #%d í˜•ì´ ì¼ì¹˜í•˜ì§€ 않습니다 (%sì´(ê°€) 맞지만, %s입니다)PDB 호출 오류: -프로시져 '%s'ì„(를) ì°¾ì„ ìˆ˜ 없습니다.무늬(_A)Pack my box with -five dozen liquor jugs -무ê¶í™” ê½ƒì´ í”¼ì—ˆìŠµë‹ˆë‹¤. -아름답고 ê³ ìš´ 우리 ë§ ìš°ë¦¬ 글!페ì¸íŠ¸ê·¸ë¦¬ê¸° ë„구 공통 ì„ íƒì‚¬í•­ 그리기 ë„구 프로시져그리기 ë„구:칠하기 모드(_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위치함í¬ìŠ¤í„°í™”í¬ìŠ¤í„°í™”(ìƒ‰ìƒ ìˆ˜ 줄ì´ê¸°)í¬ìŠ¤í„°í™” 단계(_L):í¬ìŠ¤í„°í™”는 ì¸ë±ìŠ¤ëœ ë ˆì´ì–´ì—ì„œ ë™ìž‘하지 않습니다.기본 ì„¤ì •ëª…ë„ ìœ ì§€(_L)ì••ë ¥ ê°ë„ì••ë ¥:ë¯¸ë¦¬ë³´ê¸°ì˜¤ëž˜ëœ ë¯¸ë¦¬ë³´ê¸° 입니다.미리보기:미리보기ì¸ì‡„ í¬ê¸°ì¸ì‡„ í¬ê¸°:ë ˆì´ì–´ '%s'ì˜ í…스트 기ìƒ(parasite) í•´ì„ ì˜¤ë¥˜: -%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오른쪽 ëì  ìƒ‰ìƒì˜¤ë¥¸ìª½ 정렬회전시계반대방향으로 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ì´ë¯¸ì§€ 저장톱니파형í¬ê¸°ê°€ ìžìœ ë¡œìš´ 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)ì „ì²´ ì„ íƒìƒ‰ìƒìœ¼ë¡œ ì„ íƒì—°ì†ì ì¸ ì˜ì—­ ì„ íƒì‚¬ìš©ìž 캔버스 메우기 ìƒ‰ìƒ ì„ íƒíƒ€ì›í˜•ìœ¼ë¡œ ì˜ì—­ ì„ íƒì†ìœ¼ë¡œ 그려서 ì˜ì—­ ì„ íƒì„ íƒ ì—†ìŒìƒ‰ìƒí‘œ íŒŒì¼ ì„ íƒì‚¬ê° ì˜ì—­ ì„ íƒìƒ‰ìƒìœ¼ë¡œ ì˜ì—­ ì„ íƒì´ë¯¸ì§€ì—ì„œ 모양 ì„ íƒìŠ¤ì™‘ 디렉토리 ì„ íƒì„ íƒí•œ 구íšì„ 복제하려면 -복제할 횟수를 ì„ íƒí•˜ì‹­ì‹œì˜¤.ì„ íƒì„ 복제하려면 -복제할 횟수를 ì„ íƒí•˜ì‹­ì‹œì˜¤.ì„ íƒí•œ 구íšì„ 분할해서 만들 -균등한 ë¶€ë¶„ì˜ ìˆ˜ë¥¼ ì„ íƒí•˜ì‹­ì‹œì˜¤.ì„ íƒí•œ 구íšì„ 분할해서 만들 -균등한 ë¶€ë¶„ì˜ ìˆ˜ë¥¼ ì„ íƒí•˜ì‹­ì‹œì˜¤.투명한 ì˜ì—­ ì„ íƒì›¹ 브ë¼ìš°ì € ì„ íƒì„ íƒì„ 경로로(_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'ì´(ê°€) 없어서, ì¼ê´„처리 모드를 중지합니다.설정한 파ì¼ì´ë¦„ ì¸ì½”ë”©ì„ 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웹 브ë¼ìš°ì €ì›¹ 브ë¼ìš°ì €í™˜ì˜í•©ë‹ˆë‹¤! -김프 %d.%d ì‚¬ìš©ìž ì„¤ì¹˜ì„ íƒí•˜ë©´, 대화ìƒìžê°€ ìžë™ìœ¼ë¡œ 현재 ìž‘ì—… ì¤‘ì¸ ì´ë¯¸ì§€ë¥¼ ë°˜ì˜í•©ë‹ˆë‹¤.ì„ íƒí•˜ë©´, 김프는 ë©”ë‰´ì— ë‹¨ì¶•í‚¤ë¥¼ 표시합니다.ì„ íƒí•˜ë©´, 모든 그리기 ë„êµ¬ì˜ í˜„ìž¬ ë¸ŒëŸ¬ì‹œì˜ ëª¨ì–‘ì„ ë¯¸ë¦¬ ë³´ì—¬ì¤ë‹ˆë‹¤.ì„ íƒí•˜ë©´, ì´ë¯¸ì§€ ì°½ì´ í¬ì»¤ìŠ¤ë¥¼ 받으면 ì´ë¯¸ì§€ë„ 활성 ì´ë¯¸ì§€ê°€ ë©ë‹ˆë‹¤. ì´ ê¸°ëŠ¥ì€ ì°½ 관리ìžê°€ "í´ë¦­ìœ¼ë¡œ í¬ì»¤ìŠ¤ 주기"를 사용할 ë•Œ 유용합니다.ì„ íƒí•˜ë©´, 대화ìƒìžëŠ” ê´€ë ¨ëœ ë„움ë§ì„ ë³¼ 수 있ë„ë¡ ë„ì›€ë§ ë‹¨ì¶”ë¥¼ 표시합니다. ì´ ë‹¨ì¶”ê°€ ì—†ì–´ë„ F1키를 눌러서 ë„움ë§ì„ ë³¼ 수 있습니다.ì„ íƒí•˜ë©´, 메뉴를 떼어낼 수 있습니다.ì„ íƒí•˜ë©´, F1ì„ ëˆŒëŸ¬ì„œ ë„움ë§ì„ ë³¼ 수 있습니다.ì„ íƒí•˜ë©´, 김프는 ì´ë¯¸ì§€ë¥¼ ì—° ë’¤ 바뀌지 않았다면 저장하지 않습니다.ì„ íƒí•˜ë©´, 김프는 ì´ë¯¸ì§€ 보기마다 다른 ì •ë³´ ì°½ì„ ì‚¬ìš©í•©ë‹ˆë‹¤.ì„ íƒí•˜ë©´, 움ì§ìž„ ì´ë²¤íŠ¸ê°€ ë°œìƒí•  ë•Œ 마다 위치 ížŒíŠ¸ì— ì˜ì¡´í•˜ëŠ” 대신 X ì„œë²„ì— ë§ˆìš°ìŠ¤ì˜ í˜„ìž¬ 위치를 물어봅니다. 즉, í° ë¸ŒëŸ¬ì‹œë¡œ ìž‘ì—…í•  ë•Œ ë” ì •í™•í•˜ì§€ë§Œ, ë” ëŠë ¤ì§‘니다. 특ì´í•œ X 서버는 ì´ ì„ íƒì‚¬í•­ì„ 사용하면 ë” ë¹¨ë¼ì§‘니다.ì„ íƒí•˜ë©´, 그리기 ë„구를 사용하는 ë™ì•ˆ ì´ë¯¸ì§€ìœ„ì— ì»¤ì„œë¥¼ 표시합니다.ì„ íƒí•˜ë©´, 기본으로 ëª¨ëˆˆì„ í‘œì‹œí•©ë‹ˆë‹¤. "보기->모눈" 명령으로 전환할 수 있습니다.ì„ íƒí•˜ë©´, 기본으로 ì•ˆë‚´ì„ ì„ í‘œì‹œí•©ë‹ˆë‹¤. "보기->안내선" 명령으로 전환할 수 있습니다.ì„ íƒí•˜ë©´, ì´ë¯¸ì§€ë¥¼ 확대하거나 축소할 ë•Œ ì´ë¯¸ì§€ ì°½ì˜ í¬ê¸°ê°€ ìžë™ìœ¼ë¡œ ì¡°ì •ë©ë‹ˆë‹¤.ì„ íƒí•˜ë©´, 실제 ì´ë¯¸ì§€ í¬ê¸°ê°€ 바뀔 ë•Œ ì´ë¯¸ì§€ ì°½ì˜ í¬ê¸°ë¥¼ ìžë™ìœ¼ë¡œ 조정합니다.ì„ íƒí•˜ë©´, 기본으로 ë ˆì´ì–´ 경계를 표시합니다. "보기->ë ˆì´ì–´ 경계" 명령으로 전환할 수 있습니다.ì„ íƒí•˜ë©´, 기본으로 메뉴표시줄를 표시합니다. "보기->메뉴표시줄" 명령으로 전환할 수 있습니다.ì„ íƒí•˜ë©´, 기본ì ìœ¼ë¡œ 눈금ìžë¥¼ 표시합니다. "보기->눈금ìž" 명령으로 바꿀 수 있습니다.ì„ íƒí•˜ë©´, 기본으로 스í¬ë¡¤ë§‰ëŒ€ë¥¼ 표시합니다. "보기->스í¬ë¡¤ë§‰ëŒ€" 명령으로 전환할 수 있습니다.ì„ íƒí•˜ë©´, 모든 ë„구ì—ì„œ ì„ íƒí•œ 브러시를 사용합니다.ì„ íƒí•˜ë©´, 모든 ë„구ì—ì„œ ì„ íƒí•œ ê·¸ë¼ë””언트를 사용합니다.ì„ íƒí•˜ë©´, 모든 ë„구ì—ì„œ ì„ íƒí•œ 무늬를 사용합니다.ì„ íƒí•˜ë©´, 기본으로 ì„ íƒì„ 표시합니다. "보기->ì„ íƒ" 명령으로 전환할 수 있습니다.ì„ íƒí•˜ë©´, 기본ì ìœ¼ë¡œ ìƒíƒœí‘œì‹œì¤„ì„ í‘œì‹œí•©ë‹ˆë‹¤. "보기->ìƒíƒœí‘œì‹œì¤„" 명령으로 바꿀 수 있습니다.ì„ íƒí•˜ë©´, ì´ë¯¸ì§€ì˜ í•œ í”½ì…€ì´ í™”ë©´ì˜ í•œ í”½ì…€ì— ëŒ€ì‘ë©ë‹ˆë‹¤.ì„ íƒí•˜ë©´, 파ì¼ì„ ì—´ ë•Œ ì „ì²´ ì´ë¯¸ì§€ê°€ ë³´ì´ê³ , ì„ íƒí•˜ì§€ 않으면 1:1 배율로 보입니다.ì„ íƒí•˜ë©´, 메뉴가 ê°•ì¡°ë˜ì–´ ìžˆì„ ë™ì•ˆ 키 ì¡°í•©ì„ ëˆŒëŸ¬ì„œ 메뉴 í•­ëª©ì— ëŒ€í•œ 키보드 단축키를 즉시 바꿀 수 있습니다.í°ìƒ‰í™”ì´íŠ¸ 밸런스는 RGB ìƒ‰ìƒ ë ˆì´ì–´ì—만 ë™ìž‘합니다.너비너비:ì°½ 관리창 ê´€ë¦¬ìž ížŒíŠ¸ì°½ 위치'%s' ê¸°ë¡ ì¤‘ -XXCF 오류: XCF íŒŒì¼ ë²„ì ¼ %dì€(는) 지ì›ë˜ì§€ 않습니다.XCF 경고: XCFíŒŒì¼ í˜•ì‹ì¤‘ 버젼 0ì€ -정확하게 ì¸ë±ìŠ¤ëœ 색ìƒí‘œë¥¼ 저장하지 못합니다. -그레ì´ìŠ¤ì¼€ì¼ 맵으로 대체합니다.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.8/po/lt.gmo gimp-2.2.9/po/lt.gmo --- gimp-2.2.8/po/lt.gmo 2005-02-12 14:38:00.000000000 +0100 +++ gimp-2.2.9/po/lt.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,376 +0,0 @@ -Þ•“´< -LyÈ¡É¡&ß¡G¢9N¢Gˆ¢AТN£ia£<Ë£k¤@t¤2µ¤;è¤P$¥Ou¥2Å¥9ø¥-2¦9`¦;š¦7Ö¦ § §"§ -1§<§L§ -d§o§w§§›§µ§˧0Ò§¨¨'¨0¨G¨N¨V¨ ^¨ l¨ x¨ -†¨ -‘¨ œ¨ ©¨µ¨ Ũ Ѩݨ ⨠î¨Kû¨…G©.Í©1ü©!.ªPªbªiªxª‡ª‹ªžª -°ª »ªǪ ݪ -éªôª « «&«5« ->«I«X«k«ƒ«•«§«¶«6Ì«¬ ¬8¬A¬`¬u¬‰¬¬¼¬Ѭå¬#ù¬­7­ -S­^­o­w­‰­’­²­Æ­ έ Ø­ å­ï­1ÿ­31®e®k®~® -…®®ª®À®Ú®á® ð® -ý®¯¯+¯;¯AL¯JŽ¯Ù¯<ì¯)°9°R°j°z°‚°‡° ¡°­°ðÖ°ß°ñ° ±±(± -1±<±M±f±}±“±š±  ± ª±¸±¿±رß±å±ÿ±"² *²6²;²A²F² -V²a²p²²•²7©²á² ç² ô²³ ³³ ³ '³3³ ;³H³mM³»³ À³ γ ܳæ³ï³ ´´*´ 1´C>´7‚´=º´6ø´/µMµ3cµ—µ<«µ#èµ! ¶ .¶ :¶ D¶N¶W¶o¶‡¶Ÿ¶±¶öà¶,÷¶$·,· ?·M· m· Ž·!œ·¾·Ù·ï·¸¸"¸ +¸9¸@¸G¸ M¸[¸n¸ }¸Š¸. ¸5ϸ5¹;¹ S¹a¹ }¹‡¹Ÿ¹°¹¶¹¿¹ιÞ¹ -í¹ø¹º º º!º:º0Lº }º ‰º–º º §º´ºϺìº+õº!»4»G»P» `»n»w» -» Š»”»§»¶» Ë»ì»ÿ» ¼¼,¼ 5¼A¼I¼˼Ô¼å¼ í¼ú¼½.½N½ c½"q½"”½·½н -Ù½ ä½ò½ -¾)¾F¾,`¾¾#§¾#˾!ï¾%¿7¿V¿ ]¿i¿z¿Ž¿¡¿´¿#Ê¿-î¿À%2ÀXÀnÀ„ÀŸÀ´ÀÌÀ ÑÀßÀ -ùÀ -Á -ÁÁ2Á9ÁHÁ MÁ [ÁhÁxÁ‡Á -ŽÁ™Á Á §Á´ÁÄÁ ÈÁÒÁ×ÁÝÁîÁÂÂ&Â9ÂIÂ\Âs „  Â¬Â³Â¹Â%¿Â!å ÃÃ'Ã?ÃSÃfà xÆÕà ¥Ã²Ã ÁÃÎà ÞÃëÃýà ÄÄ'Ä?ÄZÄwÄ‰Ä -˜Ä -£Ä-®Ä ÜÄèÄ ïÄýÄÅ ÅÅ -"Å -Å:ÅMÅ`ÅyÅŔŨŠ»ÅÉÅãÅ ìÅöÅÆ: Æ?HÆ8ˆÆ ÁÆÍÆßÆ ðÆúÆ - ÇÇ -Ç %Ç 3Ç -?Ç JÇ -TÇ _ÇkÇÇ ŽÇ>œÇÛÇëÇýÇÈ È2ÈAÈSÈsÈƒÈ “È  È­È²ÈÊÈÝÈöÈ -É É 0É:ÉMÉbÉ}É “É -¡É¬É -ÄÉÏÉ çÉõÉ ÊÊ -Ê:ÊJÊeÊ tÊ ‚ʎʟʨÊ.ºÊéÊË#Ë"2ËUËrË&‘Ë¸Ë ÎËÚËîË,÷Ë#$ÌHÌOÌ ^ÌlÌÌ™Ì'¶ÌÞÌûÌÍ-ÍFGÍŽÍ •Í¢Í¸Í ËÍÕÍ ìÍúÍ Î8ÎGÎVÎhÎzÎ €Î ŒÎ˜Î=®Î6ìÎ<#Ï?`ÏA Ï7âÏ9ÐcTÐ9¸ÐBòÐ=5ÑfsÑ>ÚÑJÒgdÒ ÌÒØÒêÒïÒÓ Ó Ó'Ó 9Ó FÓ TÓbÓvÓÓ Ó´ÓÇÓÚÓìÓÔÔ'ÔBÔ_ÔfÔoÔŽÔ¥Ô¹ÔÍÔ áÔ -ïÔ úÔÕ Õ -Õ %Õ/Õ ?ÕMÕ`ÕqÕÕ •Õ¡Õ±ÕÁÕÙÕõÕÖ%Ö(>ÖgÖmÖtÖ |Ö‰Ö‘Ö—Ö -ÖO¨Ö -ø֔טש×Â×Ù× -ï× ú× ØØ Ø'Ø:ØMØ -\Ø gØ uØ ØŽØ“Ø ¢Ø¯Ø ÇØ ÔØáØòØÙÙ,ÙÌ>Ùc Ú oÚz|Ú÷ÚýÚÛÛ5Û>ÛPÛ_ÛhÛxÛÛ&žÛ'ÅÛ íÛ ùÛ Ü Ü Ü *Ü6Ü ;ÜEÜKÜRÜWÜ iÜvÜ…Ü—ÜܮܲÜÌÜéÜþÜÝÝ -4Ý?Ý HÝRÝYÝaÝ fÝ sÝÝÝ -”ÝŸÝ -§Ý ²Ý¼ÝÌÝ -ÔÝHßÝ!(ÞJÞNÞ1]ÞÞ¢Þ§Þ ¬Þ¹ÞÀÞÐÞ -àÞëÞ ðÞ üÞßß - ß -+ß6ßMß]ß|ßß §ß -µß -ÀßHËß -à -à*à 1à=àLà [àhà~à“à ¢à ¯à½àÂà Êà ×àãàëà áá á&á ?áKá`ázáá ”á ¢á3¯á6ãáâ)â ?âIâaâuâ „â$Žâ³âÎâ ãâ ñâ ã(3ã+\ã)ˆã*²ã/Ýã ää#ä*4ä_äpä€ää™ä -«ä¶äÈäÛäßä ùäå åå )å5å3;åoå€å˜å¨å Àå -Íå Øå äåñåæ.æNægæ{æŒæ ¡æ¯æÆæ ÍæÙæîæç -çç #ç0ç 5çBç`ç gçsç xç „çç§çÆçÚç îç øç èè 'è5èMè fèrè -ˆè“è¨è ¾èÌè äèðè -éé&é/é7éJéOéWé`éhé €éŽé£éºé -ÂéÍéæéÿéêê#ê@ê]êeê lê zê -†ê ‘ê žê¬êÁêÕêîêë ë)ë 8ëFëYëtë‹ë”ë ´ëÂëÇëÍë$ãëìì.ì=ì LìXì `ìnì sì -€ì ‹ì -˜ì£ì ³ì½ìÌì Üì æìðì í'íCíUí\íeí xí„í—íœí -¢í ­í¹íËíßíòí î îî"î 3î @î JîVîsî‚î”î ¦î -³î ¾îÈî ãî ðîüî ï "ï .ï,:ïgï{ï’ï)¯ïÙï ñïÿïððð +ð 7ðEðBXðA›ðÝð ïðùðñ ññ.ñ6ñ„>ñÃñÒñäñìñõñ -úñò ò'ò>ò Pò]òoòò"®ò!Ñòóò ó$ó <ó FóPó`ó oó}ó+…ó ±ó(»óäóêó ô ôô2ô%Jô -pô {ô…ôôœô°ô -ÀôËôÚô ãôñô õ õõ#õ6õ Kõ Wõ cõqõ&‹õ,²õ ßõìõñõ -ö - öö4öRöqö‰öœö®öÀö -ÆöÑöÙö -éö ôö÷ -÷÷ ÷'÷ D÷P÷ e÷!q÷“÷¢÷½÷ Ï÷Ü÷ã÷?ë÷+ø:øBøVøføƒø ø©ø ±ø»øÄø Ôø#Þøù-ù Cù OùYùaùxùù -Šù •ù¡ùµùÉù Òùßùèùðùöù ú -$ú/úEú Uú _úmúqú ‚ú Œú!–ú¸ú ¼úÊúÞú íúúúûû $û2ûGû ]ûiû -|û‡û™û ¬ûºû ÏûÛû -îûùû ü(ü-ü 3ü!@übü€ü –ü -£ü9®ü=èü<&ý=cý¡ý"§ýÊýÜý íýùýýýþ,þ4þDþVþgþ -xþƒþ™þ®þJÂþ ÿÿ)ÿBÿ \ÿ iÿvÿ‘ÿ «ÿ ·ÿÅÿÝÿ÷ÿ;!] l y…Ÿ ±½ Í Ûçï 2Oauˆ™¬½Ðëý+)Um” £ ° ½É Û èô#  /; MYn…6ÔÜã ø7=[pwŽ¤ ³ ÀÌÞ òÿ )>D -K -V anƒ -‰”™ ®º -ÑÜü %7Rn ‰•¥¾Îâ4÷,I\u’¥´Î ß íú  . 4 B N -Ze v -‚ª -²½ÆÍßç -îù   + F Z r  ˆ ” «  Ù  ò  -  - -5 -G -\ -t -‡ -ž - -° -» -Ë -"å - "  < H c { =” 6Ò S J] ¨ Á Ô  ç ñ   ' A P n  € Œ › ° à  × ã ü  "/Oe€˜ ¬¸Íâñ)K@*Œ3·`ë LX`fm~¢ª°Í â îû !1 BO dr‚ –£ ¸ ÆÓ -æñ.@P`q¦¶ËÛê û! 5AFV+\ˆŽŸ ¦³ ºÇ × -åðöý  8'`g — ¤° ¶!×ù-Ha~›¢±¸ÁÕï ö    +8 HT eq€”#ÁÈ -Î Ù æðÿ - # -/:JHSŠœ;'!cÁ… G hæu\{ 5–1Ì0þ,/2\*˜º2S†  -ª -Øãöü1 DQc s ‹¤­ µÂ -È Óá ø(8G\v†•©¸Òâ ñþ  -" - 2 ;; ;w  ³ ½    Ï Ý ã ë  ý !%!-!6!V!#o!“!¦!À!Ö!å!ë!ò!""F!"h" -ˆ" -“"ž" £" ±" ¿" Ì" Ù" ç"!õ"!# 9# E#$Q#5v#P¬#Gý#jE$o°$~ %pŸ%o&w€&tø&tm'â'b(0h(™(Ÿ(¦(¸(Í( Þ(ì(6î(o%)•)—)ž)G¦)î)**** -(* 3* ?*I* R*\*e*w* **–*œ*«*²*»*Î*á*ê* ü*+ + + '+1+7+ :+D+W+r+ ‘+²+ ¸+Å+Ì+Õ+ ô+, ,,$, ', 1,?,S,Z, -a,l, t,,‰,©, ²,À,Æ,Õ,ô, -- --"-4- D-R-a- q-- “- ¡-¯- ¿-Ì-ß-õ-.. (. 4.@.O.X.i. ƒ. . -š.¥.«.º.Ö.å.÷./"/;/L/^/ n/ / ™/£/ «/µ/ »/Ç/Ü/ë/ ñ/ÿ/000#0 60C0F0 O0 Y0 -c0 -n0y0’0›0 £0­0 ³0À0Æ0Ì0Ò0Ù0à0è0ð0 1 1161>1E1L1T1n1}1 -1¨1»1 Ê1 Ö1â1ê1ò12 2 $202 32=2B2H2[2v22‡2 š2§2­2½2Ã2Ê2 -Ò2 Ý2ê2 ú2 3 -3 !3 /3 <3 F3 S3`3 q3{3 ƒ33”3 -š3¥3 ®3º3Ã3 Ò3 ß3ë3ô3 û3 44 4 )4 64 D4Q4 Z4 h4v4 …4‘4¤4ª4­4²4º4 É4 Ö4 â4ï4 555 515D5V5(h5‘5™5¢5¸5Ð5â51ü5.6D6T6t6 |6‰66£6#´6 Ø6ù677/7?7 -G7R7d7u7|7…7›7 ¬7¸7¿7Ç7Ù7î7 -8 -8 -8(8 .8<8B8R8X8_8 -8Š8›8¡8 -ª8µ8»8Ä8É8Þ8ô89 99999 -"9-949995=9s9 …99Ÿ9¤9«9 ³9Á9 Ö9÷9 -: ":.:5:9:A:G: N: X:b:h: o:}:.:¿:PÜ:-<.K<]z<;Ø<N=Kc=K¯=tû=Ip>rº>J-?6x?E¯?Võ?OL@8œ@?Õ@4A;JA?†A@ÆAB B)B -9BDB UBvB …B B-™B$ÇBìBC= -CHC_CyCCŸC §C ³C ¿C ÌC ØC -æC -ñC üC DD *D 6DBDGDWDJhDŸ³D4SE"ˆE(«EÔEðE øEFFF3FIFZF'kF“F±F)ÎFøFG)GCGVGlG'†G®GÉG$äG H#H:BH#}H¡H »H"ÇHêHII"8I[IvII,©IÖIöI JJ8J@JTJgJ„J -›J -¦J ±J ¾JÊJ/ÜJ/ KNeN|N „N’N­N ÆNÐN ÖNâNüNO!O %O2OFOUO!]O -O -ŠO(•O ¾O4ÊO ÿO PPP&P ?PLP_PxP‘P:§PâPëPQ -Q &Q0Q9Q HQTQ]Q lQxQúQÿQR R *R)6R`RuR R—R]µRLST`SAµS!÷ST>6TuTJT)ÚT)U.U BU LU VU`UtU“U±UÏUèUV/%VUV]VmV V"¢V ÅVÓVïVW&WDWbWkW sW W -W ˜W¢W´WÔWìWþW=XA\XAžX+àX Y1(Y ZY!fYˆY -¥Y °Y½YÖYðY ZZ$Z+ZaTamaŠa£a#¼a4àab/.b^bzb"—bºbÑb êbôb/cCcZcnc6…c ¼c Èc -Öcácøc d!d 4d>dMd -Vdadsd ‰d“d±d¹dÂdÛdôde,eGe_exe–e±e#Àeäe þefff(5f^f!rf"”f·fÌfçfgg)g=gQgcgugŠgžg¹gËgÜg#îgh/hNhkhh ’h,žh -ËhÖhÞh ñhýhi i i)iÐuJvDZv8Ÿv8Øvkw4}w<²wIïwo9xN©xIøxdBy§yºyÖyÛyõy zz &z3zFz]zrzz«zÂz!Úzüz{!{8{"I{l{Š{ -¨{³{.¼{ë{#|#*|#N|#r|–|!¦|È|Ü|ì|þ|}*}=}U}#k} } œ}©}Å} á}'~*~F~b~0~°~¸~ Á~Ë~ -Þ~ é~ó~ü~B NË_+€!B€d€€ -”€Ÿ€µ€Ë€ -Ҁ݀õ€  (FYqvˆ™ ° ½Ëãù‚*‚ÆC‚m -ƒ xƒp…ƒöƒûƒ„$"„ G„U„h„ -x„ƒ„¢„À„1Õ„3… ;… H… -T…_…p…ˆ…Ÿ…¥…¸…¿… Ç…Ñ…ñ…††3†E†e†i†)ƒ†0­† ކ膇 ‡5‡ >‡H‡ Q‡[‡c‡w‡ˆ‡‡¯‡Á‡ ȇ -Ô‡߇ô‡ ý‡M ˆ.Yˆ ˆˆ’ˆ6¥ˆ܈ -ïˆ -úˆ‰‰&‰<‰ S‰`‰f‰z‰ ‹‰™‰³‰lj(Û‰Š5Š"RŠuŠ“Š©Š¼ŠNÑŠ ‹4‹H‹W‹l‹ƒ‹–‹«‹È‹â‹õ‹ŒŒ &Œ2Œ DŒ -PŒ[Œ wŒ -ŒŒŒžŒ½ŒÑŒëŒ&<@MEŽÔèýŽŽ2Ž IŽ SŽtŽŽŽ¥Ž'ºŽ&âŽ/ 195k.¡DÐ 26K‚›­ ÀÌäø‘'‘"-‘P‘_‘g‘y‘‘  ‘Eª‘ð‘’’9’V’k’{’’$¦’&Ë’ò’“1&“ X“1y“ «“Ì“ -ä“ï“””<”C”J”g”x”””©”²”Ŕ͔ݔí”$ •0•K•c• j•w•Š•£•´•Ñ•ï•–"–5–U–s–„–¡–´–Ô–ä–— —#— ;—H— Q—[—q—Ž—¦—×â—ë—%ÿ—%˜B˜ b˜l˜t˜˜ª˜ ¼˜ƘÞ˜ø˜™"™3™O™g™‡™§™Ù×™è™û™!š 4š Uš"_š ‚šŒš •šŸš*½šèšýš›-›A›P›Y›j›s›„› ›½›Лê›ý›œ.œBœ!Kœ#mœ%‘œ·œ Îœ -؜㜠÷œ  " -/:I]s!Š¬Á Òàõžž,%žRždž!{žž¯žÞ.ÔžŸ Ÿ.%ŸTŸeŸtŸ*„Ÿ¯ŸßߟøŸ" 7 I O d l  ” ¥ 5¾ 9ô .¡D¡ M¡W¡i¡}¡ -˜¡£¡”©¡ >¢L¢i¢x¢ ˆ¢•¢&­¢Ô¢å¢££ 2£'S£'{£)££&Í£ô£ ¤4¤ T¤ a¤m¤€¤¤¡¤.ª¤Ù¤Lâ¤/¥7¥U¥h¥{¥š¥3º¥î¥ ÷¥¦ ¦&¦C¦ W¦c¦z¦ƒ¦)“¦½¦Û¦ó¦û¦§,§<§N§c§5§,µ§â§ õ§ÿ§¨'¨#;¨%_¨…¨¢¨º¨بó¨ © ©©'© 9©C©V© ^© -l© -w©‚© œ©©© ©(Ï©ø©*ª2ªFª -Yªdª=mª «ª¸ªÀªÓª+èª,« -A«L« T« `« j«w«Œ«¡«<½« -ú«¬ -¬¬ 1¬ -=¬H¬Z¬m¬Š¬¥¬®¬½¬Ƭ -άÙ¬"÷¬ ­!(­J­ `­n­„­ˆ­ -™­ ¤­!±­Ó­Ù­ö­®%®$8® -]® h®r®‚®®¹®Ë®ê®ü®¯;¯K¯f¯x¯—¯©¯*ȯó¯ ü¯ -°*#°&N°"u°˜°ª°B»°Bþ°IA±B‹± α4Û±²'²=²W²_² h²Hr²»²ϲå²ø² ³³2³O³Kl³¸³ϳâ³&ÿ³&´D´"Y´|´š´¯´Å´&â´ µ µ5?µuµˆµµ+²µÞµýµ¶ #¶D¶Y¶b¶ -¶Œ¶!«¶Ͷâ¶û¶·&·<·[·'z·¢·º·&Õ·;ü·(8¸(a¸Š¸™¸­¸ȸ߸ õ¸¹ 1¹&>¹1e¹—¹«¹ǹйä¹ý¹Iº cº qº{º›ºD³º$øº » >»3H»2|»¯»¿»Ñ»ã»ü»¼$+¼ P¼Z¼m¼u¼}¼¼ž¼°¼ мÚ¼ -ã¼ î¼½&"½I½/b½'’½º½̽è½$¾$+¾P¾c¾ ¾ ¾¹¾Õ¾?ó¾'3¿[¿"{¿&ž¿Å¿á¿#ú¿À5ÀKÀ!dÀ†À À±ÀºÀÎÀéÀÁ Á6ÁQÁ$gÁ ŒÁ–Á §Á±Á¹ÁÏÁ -ØÁãÁõÁÂ,Â?Â]Â}»ÂÎÂí Ã!+ÃMÃbÃÃ’Ã ®ÃÏÃîÃ! Ä#-Ä!QÄsÄ…Ä;žÄ2ÚÄ Å*ÅIÅ \Å}Å$Å@ÂÅ8ÆC<ÆK€ÆÌÆ éÆ -Ç 'Ç 5Ç VÇwÇ ‹Ç¬Ç'ÀÇèÇÈÈ+ÈCÈ[È qÈ&{ȢȻÈÛÈ$ùÈÉ)<ÉfɆÉ"¡ÉÄÉ!ÛÉýÉ"Ê >Ê8_ÊJ˜Ê(ãÊ( ËX5ËŽË ŸË«Ë±Ë¸ËÇË ØË æËòË0ùË*Ì?ÌRÌgÌȯ̙̲ÌÌÌçÌÍÍ,ÍEÍ`ÍyÍÍ) ÍÊÍÜÍõÍÎ+ÎJÎ`ÎyÎ$“Î ¸ÎÙÎ#ëÎÏ/ÏBÏ#[Ï%Ï¥Ï#¾ÏâÏèÏüÏ5Ð9Ð@Ð UÐ_Ð -oÐzБбÐÇÐ ÜÐ æÐ -ðÐ ûÐÑ ÑA%ÑgÑpщÑ'¡Ñ'ÉÑñÑ(úÑ(#ÒLÒkÒ"‹Ò®Ò ÍÒ%îÒ ÓÓ2Ó ;ÓHÓbÓÓŠÓšÓ©Ó¾ÓÑÓàÓóÓÔÔ,Ô?Ô[Ô bÔ -ƒÔŽÔ–Ô¨Ô ¼ÔÆÔÖÔéÔ ñÔÿÔÕ(Õ;ÕO@Õ˜Õ+)Ö!UÖÒwÖ!J×&lדأÙÃÙÈÙØÙHÞÙG'ÚGoÚ#·Ú6ÛÚ-Û›@ÛHÜÛ %Ü FÜ1PÜ -‚ÜÜ £Ü¯Ü¸Ü -ÏÜ ÚÜäÜýÜÝ*ÝEÝ^ÝrÝ"ˆÝ«ÝÄÝÝÝ -öÝÞ Þ(Þ EÞSÞiÞ€Þ˜Þ!°Þ$ÒÞ÷Þß'ßCßSßnßßˆß‘ß£ß ³ßÀßÆßGÏßGà_à nàxàà£à -µàÀà#×àûàá á)á @á)aá‹á'¦áÎáíá ÿá - ââ/â 8âKDâ,â ½â ËâØâàâöâ ã"ã8ãIã+Zã.†ãµãÊã&ßã;ä[BäVžä…õä˜{å“拨æ†4ç”»çŒPè‘Ýè‚oéòé4ùé.ê5ê=êMê ]êiê~ê6€ê…·ê=ë?ë HëIRë#œë ÀëÎë Þë -èëóë ì ì -1ì <ìHìXì uìì -žì -©ì´ìÒìØìáì%üì"í5íQíeímí …í ’í œí©í ¬í ¹íÇíçí!î'î 0î =î Gî Qî rîîˆî—î²îµî¾î Ñî òî -þî ïï&ï9ï+Bïnï„ï -šï¥ï&¼ïãïð ð %ð/ðKðaðvð‰ðœð¯ðÅðÞðóðññ$.ñSñhññ –ñ¢ñ¶ñ ÊñÔñ#ëñ òò1òCòKòfò€ò“òªòÇòÚòöò óó+7ócó ró -~ó‰ó¡ó§ó$¶ó#Ûóÿóô!1ôSô bô lôvôô¦ô©ô ±ô ¿ô Ëô×ôëô õõ +õ5õ>õ Mõ Yõeõlõtõƒõ “õŸõ¶õÆõÛõ õõö -ö ö!"öDö,^ö -‹ö–ö´ö ÆöÓö -äöïöøö÷&÷:÷K÷N÷ ^÷k÷ s÷”÷³÷ -¼÷Ç÷Ú÷ ï÷ù÷ ø ø%ø,ø=øMø`øtø‡ø™ø®ø½øÌøÞøîøù ùù -ù9ù -@ùKù[ù tù‚ùŸù ³ù½ùÆùÏùàù -þù ú úú 8ú DúPúcúxú Žú˜ú®ú½úÀú ÅúÏúàúóúû#û;û Vûbûqû†ûû±û8Åû þû üü.üKükü4‹üÀüÝü,ùü -&ý -1ý <ýHýfý3ý-³ý&áý þþ.þ IþUþ!dþ†þœþ £þ°þÇþ ãþñþ ùþÿÿ>ÿWÿ -jÿ -uÿ€ÿ ‰ÿ —ÿ¡ÿ ³ÿ -½ÿ!Èÿêÿùÿ -  ,9BK T!u—¨±´¼¿ÃÔäìóHKgz’˜ Ÿ«Á+Ý*  -4 -?JR X b -l w -…˜ ç¯(—ÀFmžr[Mµ=ÌKi¯v±ÚÌYƒøi‰ÑÅɳTE%(·HyĦDL¿pæ}FRýkSá!pÁæšF¿îâ… sÓôWK’jLšÐº¸A΢BL[½øïPà"Û´ší—dé‹lœpMºÿ†=Ã^º dÊÀ°²¼»4 &\î"pÇÚå'h9%Š6OÂç—XÀäò?Œ:L•‰| ìBZc¦Î>û_`æ`yò{®¿nÜ„@• )V þ[¡:äþ¸[b™2†¾ñÿ þ&g³\ M.Æ&SL’½µüÊÁõ»(ŸC"Oi!‘~f“–XÐÃóóG¢4õbšÂ1ƒv Ýd5¼‚s锤?+Ëùñ‡Ùu^³ß“ΰBù,–|üU5™ظ1~’ð#˜-_åºu‹Î%mÿ^MpËì×NØ©Š¢='¹¨mItÌ,žnO:)ª,¤¹0¶gç“2·¥àfÙVŒ÷›]šêìJ ŠÇ@.ûh ó6¾La´‘Èá@é8/&4dúVo̘F©†Øæ$!Cwêf¤P´×< Öè`È]Ÿ8ŸNÈ”{^aÌ DãOZŠ…ÒE(5o$-‹ç6BS]fG¼jlãIXZ8€²DØð¦ -÷É\ûL(—cCKZò)jO¶-«T¡6Ò€ô«+ S ë1žWÈÙ65–w"’¿ô€¢$3…=Dtº0üaŒ´ÉTcVúgnq— -@ |1Põ.›í+·vâÙÂá7²öN•ˆš†nCØ‚þDÐR4œû©ë$$ŽA!>ããuÏv_š;ìfÓÖ8ŠO‰'¨àÖYF‘0Y©·±AÔ”ø|å|­”¯;4‹Ðbþöo•.*×#\«h¢ý€j×½;väÏ'"ÇgÙ1…BΞ´r7'R¼W‡úoúütz>îŽV>ÿ„è+{ƒÆögßÝ<’§HG`ÁBijõ=Ù®ŒÍ†o| -íˆÂ24ðe¯àNJ–ìÊŠî_¬ÛͼŀUÅ?ØŠ$ÔÇkÖtS›:x‹^ŽUòÙå¤<’}»óØO}+(u~8[ËÉ ýaŸäžRj=µÌyñW#Þ¾y 7Aàéö™ñÄÍÔ7–W‡»ÑÛÇÁÝ)ßoY™D!›&#ÕÄÈŽŒzö¨…Ï9?FZ: /øˆßS«žèýh.NKòP™­ÊnkÖ¹ïd6¹à©B¸aÛê¥ø‚e;‘KÃis" „G®˜ˆŒ¶³lõ ïÇ’oû­QðŸÐ RQ搜ôçë#™+“4ªY¦‹˜Pï‰ÓóÚËÍ;¸ -eWëlƒnËË¡:1Qe›ç,b±Þ‰A -wmõÜ J€ Ö$¬¾ÕÕ‚¬e¿Ú5ÿ5Ž*™¬êG±„yQ³í®c¶/tÓHbquê'6hÒdeÌ WÒIjxI_áYU‚F‡°dчÃN£C§ÚJË.kóÝÁèú,‘=úZ”[/Þ7Q¸µzXnA(r:LÓÞ{>õ¥„`(ñ¡ƒcˆ˜öÕÓ Ÿmù[‹'%Gr¬¨qž2‚ïò-lŸ±Ñé÷×e0¨&ayZP¹äþü%jÞÜEÜ^J¼hÝÔR_/ŒSi5÷4-©µ`œæôÕ0z!qsÖ ¥Më¡Ä›zeÚÄ_I‘‘„ºÎC5 -wåzæåãTÔ9û^ÑvƒUí~£÷”Å?>“ë ñÑÆû&Oí¹TÓY¥—I “7kÔâ}CîùçKŽM.Ôɪ§i\.0á¯QP…¯|b^ø 9§˜p­œ/%÷‘Nu–•„Wñu *sfEaögâHJ´ªÄ?9‡¾„×h‹;'¬ˆÜÈÐ¥`¾]k)±x§â:~ÆÍ€¤q]“Ý)ŒDRV9‚2 [/~cÀX¦¼üf0}+6a°×°íÀªÊæýÁ‰¾XH*wz ßmü çÀîÃùÍϽãN ÂÇtb`œIð—+ªú,Eˆr¶Ò>8HêÜg{Ür ÞR£]¯£u­%xlÎãÃtwTjÑþq÷8Jƒ3w»îÉqÛ3¤²Bä ßZ²Úä¢K*7…­<½c\Šß†YA¤Æ¸»¹?  Ål§«y½X¦Û$›ë1*p<2*3) -Á±#£9Ð%3l<Ds†r Ò*»#Ò9ÖPqá¿á2}Å •sCFc~ ]"x,{è;/Gk¥sϵU‚â¶_\# -;øfåboÏâ€Q~«ºS{rÿƲ@¨‰zE}‡°ý<3Uvv© 3@¿ìEÀH´‡|xpG3ìT·é²ð@É­Þè]\è•“ÂVK° -m”®À§¬ðê?ÿg{ -ó}¯—"È!Ýù¢†=ô&JÕ½t¡ÅÊ!V®ônÏÆ x8«³0Mmh)¦x·£1µ>…¶-¨2ÊAÛE<TýÕùIki(Í7œàéHdiXŽ˜@£MQœw’U·‰ ¡,òyƒ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -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)(Varies)(invalid UTF-8 string)(none)1 Layer1 layer16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActive FiltersAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the 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 / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)BehindBevelBi-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 MenuBurnBy 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 convert to a palette with more than 256 colors.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Canvas SizeCenter X:Center Y:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange grid background colorChange indexed paletteChange perspective of the layer or selectionChannelChannel 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 MenuCircleCl_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 to create previewClick: selectClick: select Drag: moveClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor PickerColor Picker InformationColor _Balance...Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:CommentCon_trast:Con_volveConfigure G_rid...Configure GridConfigure Image GridConfigure _Keyboard Shortcuts...Confirm Image SizeConical (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...ConvolveCopy 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 open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent statusCursorCurve TypeCurvesCustomCustom colorCustom gradientCutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _threshold:Delete 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 vectorsDense 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.6fDivideDo 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 saveDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge/BurnDouble dashedDrag AnchorDrag CurveDrag PathDrag: moveDraw in inkDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge-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 Text LayerEn_hanceEnable Quick MaskEnable 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 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.ErrorsEx_tra LargeExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS to layerF_it Canvas to LayersFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': 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 SelectionFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom 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 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 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.GammaGeneralGenerate 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 proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)H_eight:H_elp browser to use:Handle position: %0.6fHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp proceduresHex:HighlightsHintingHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textImageImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInkInput DevicesInput LevelsInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsInterfaceInternal 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 width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionItem propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep transparencyKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLength:LevelsLight check colorLighten onlyLineLine _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves 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:MagnifyManage Loadable ModulesMask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMinimal number of _undo levels:MiscellaneousModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMoveMove ChannelMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo 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.No thumbnailsNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of layers:O_ther...OffsetOffset ChannelOffset 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 memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output LevelsOverlayPDB calling error: -procedure '%s' not foundP_atternsPack my box with -five dozen liquor jugs.PaintPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:PalettesPalettes 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 selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick colors from the imagePixel dimensions:Pixel valuesPixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-InsPlug-inPolygonalPortraitPosition: %0.6fPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick MaskQuick Mask AttributesQuick Mask MenuQuickMaskQuit The GIMPRGBRGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to 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.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemReorder ChannelReorder LayerRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_wap ColorsSa_ve Right Color ToSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%sSaving ImagesSawtooth waveScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale the layer or selectionScalingScaling...ScissorsScreenScript-Fu FoldersScriptsSelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Script-Fu FoldersSelect SourceSelect 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 rectangular regionsSelect regions by colorSelect shapes from imageSelect 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 Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet layer modeSet layer opacitySet preserve transSets the browser used by the help system.Sets the level of interpolation used for scaling and other transformations.Sets the mode of cursor the GIMP will use.Sets the pixel format of cursors the GIMP will use.Sets the size of the navigation preview available in the lower right corner of the image window.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenShearShear the layer or selectionShearing InformationShearing...Short dashesShortcutShow Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow 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: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:Spherical (_decreasing)Spherical (i_ncreasing)Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStro_ke PathStro_ke Path...Stroke PathStroke SelectionStroke pathStroke path...Stroke selection...SubtractSubtract from the current selectionT_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTextText ColorText EditorText LayerText proceduresThe GIMPThe background color of the grid; only used in double dashed line style.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The 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 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.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is no active layer or channel to copy from.There is no active layer or channel to cut from.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store tool options.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 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 & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskTool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%sUnloadUnnamedUntitledUse _dynamic keyboard shortcutsUse _web browser insteadUse black and white (1-bit) paletteUse custom paletteUse web-optimized paletteUser 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.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 browserWhen 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 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 layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, 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 will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Airbrush_All_Anchor Layer_Antialiasing_Artistic_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_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_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..._Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._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_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Keyboard Shortcuts to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_X:_Xtns_Y_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersminuten/apercentpixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2.3 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-10 23:48+0200 -PO-Revision-Date: 2005-02-05 23:53+0200 -Last-Translator: Giedrius NaudžiÅ«nas -Language-Team: Lithuanian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Blogas parametras „%s“. - -Naudojimas: %s [parametras... ] [byla ... ] - - --debug-handlers Ä®jungti nereikÅ¡mingų koregavimo signalų apdorojimo programas. - --display Rodyti nustatytÄ… X displÄ—jų. - --dump-gimprc Standartiniai nustatymai iÅ¡saugomi gimprc byloje. - --no-cpu-accel Nenaudoti specialaus procesoriaus pagreitinimo. - --no-shm Nenaudoti GIMP ir priedų bendrosios atminties. - --pdb-compat-mode - ProcedurinÄ—s duomenų bazÄ—s suderinamo veiksena. - --session Naudoti alternatyviÄ… sessionrc bylÄ…. - --stack-trace-mode - Derinimo veiksena lemtingiems signalams. - --system-gimprc Naudoti alternatyviÄ… sisteminÄ™ gimprc bylÄ…. - --verbose Rodyti paleidimo žinutes. - -b, --batch Apdoroja komandas komandinÄ—je terpÄ—je. - -c, --console-messages Rodyti praneÅ¡imus panelÄ—je vietoje praneÅ¡imų dialogų. - -d, --no-data Neįkelti teptukų, perÄ—jimų, paleÄių, raÅ¡tų. - -f, --no-fonts Neužkrauti jokių Å¡riftų. - -g, --gimprc Naudoti alternatyviÄ… gimprc bylÄ…. - -h, --help IÅ¡vesti Å¡iÄ… pagalbÄ…. - -i, --no-interface Paleisti be vartotojo sÄ…sajos. - -s, --no-splash Nerodyti paleidimo (startup) lango. - -v, --version IÅ¡vedamosios versijos informacija . -%d sluoksnių(-iai)%d sluoksnių%d x %d taÅ¡kų%g x %g %s%s Kanalo kopijaPakeisti %s kanalÄ… pažymÄ—jimu%s praneÅ¡imas%s kopija%s kaukÄ—%s%sSpragtelÄ—jimas: iÅ¡plÄ—sti pažymÄ—jimÄ…%s%sTempimas: paslinkti ir suspausti(%0.3f, %0.3f, %0.3f)(Nieko)(Å is terminalo langas užsidarys po deÅ¡imties sekundžių) -(Nepavadintas buferis)(Å ablonas be pavadinimo)(kinta)(nekorektiÅ¡ka UTF-8 eilutÄ—)(nieko)1 sluoksnis1 sluoksnis16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2DTransformuojama...4:1 (400%)8:1 (800%)<%s><>Optimaliam GIMP naÅ¡umui gali reikÄ—ti pakeisti keletÄ… nustatymų.GIMP - GNU paveikslÄ—lių apdorojimo programa (Image Manipulation Program) -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.GIMP patarimų byla negalÄ—jo bÅ«ti apdorota!NÄ—ra GIMP patarimų bylos!Byla pavadinimu „%s“ jau egzistuoja.Pri_dÄ—ti prie pažymÄ—jimoKa_mpasApie GIMPAktyvÅ«s filtraiPridÄ—tiPridÄ—ti alfa _kanalÄ…PridÄ—ti alfa kanalÄ…PridÄ—ti inkarÄ…PridÄ—ti kanalÄ…PridÄ—ti spalvÄ… į indeksuotÄ… paletÄ™PridÄ—ti pagalbinių linijų:PridÄ—ti pagalbinių linijųPridÄ—ti horizontaliÄ… pagalbinÄ™ linijÄ…PridÄ—ti slu_oksnio kaukÄ™...PridÄ—ti sluoksnįPridÄ—ti sluoksnio kaukÄ™PridÄ—ti kontÅ«rÄ…PridÄ—ti apibraukimÄ…PridÄ—ti teksto sluoksnįPridÄ—ti vertikaliÄ… pagalbinÄ™ linijÄ…UždÄ—ti kaukÄ™ sluoksniui_PridÄ—ti spalvÄ… iÅ¡ fonoPridÄ—ti spalvÄ… iÅ¡ priekinio planoPridÄ—ti sluoksnio kaukÄ™RaÅ¡yti tekstÄ… paveikslÄ—lyjePridÄ—ti pažymÄ—tÄ… filtrÄ… į aktyvių filtrų sÄ…raÅ¡Ä…PridÄ—ti prie aktyvaus pažymÄ—jimoPridedama tema '%s' (%s) -PridÄ—jimasNustatyti Å¡viesumÄ… ir kontrastÄ…Nustatyti spalvų balansÄ…Nustatyti spalvų kreivesNustatyti spalvų lygiusNustatyti Å¡viesumÄ… ir kontrastÄ…Nustatyti spalvų balansÄ…Nustatyti spalvų kreivesNustatyti spalvų lygiusReguliuoti atspalvį / Å¡viesumÄ… / sodrumÄ…Nustatyti atspalvį ir sodrumÄ…AutomatiÅ¡kai nustatyti lygiusDerinimasSudÄ—tingesni nustatymaiVeikia:Veikiama sritis %sDažų purkÅ¡tuvasKintamo spaudimo purkÅ¡tuvasAlfa į _pažymÄ—jimÄ…SulygiuotaLygiavimasVisi kanalaiVisos BylosVisos Bylos (*.*)Leisti užpildyti visiÅ¡kai permatomus regionusLeisti pasirinkti visiÅ¡kai permatomus regionusAlfaPakeisti alfa kanalÄ… pažymÄ—jimuAlfa:An_imacijaPrikabinti plaukiojantį pažymÄ—jimÄ…Pritvirtinti plaukiojantį sluoksnįPrikabinti plaukiojantį pažymÄ—jimÄ…Kampas:Atgalinis trintukas %sIÅ¡lyginimasIÅ¡vaizdaPritaikyti sluoksnio kaukÄ™Pritaikyti slu_oksnio kaukÄ™Pritaikyti slenkstįPritaikyti sluoksnio kaukÄ™Ar tikrai norite iÅ¡trinti %s iÅ¡ sÄ…raÅ¡o ir disko?Tikrai norite iÅ¡rinti Å¡ablonÄ… „%s“ iÅ¡ sÄ…raÅ¡o ir iÅ¡ disko?Kaip _nustatymuosePraÅ¡omas patvirtinimas prieÅ¡ uždarant neiÅ¡saugotÄ… paveikslÄ—lį.Prisegti parazitÄ…Prie paveikslÄ—lio prisegti parazitÄ…Prisegti elementui parazitÄ…Prisegti parazitÄ…Autorius:AutoAutomatiÅ¡kai _sekti aktyvų paveikslÄ—lįAutomatinis sumažinimasAutomatiÅ¡kai sumažinti pažymÄ—jimÄ…Pakeisti lango dydį pakeitus mastelįAutomatinis įkÄ—limasFiltraiGalimi tipai:Fono spalvotas užpildymasÅ viesumas-Kontrastas...B_uferiaiFonasFono spalvaFono spalva nustatyta į:Fonas: %d, %d, %dAtgal (Taisomasis)UžNuožulnumasTiesinis dvikryptisJuoda ir baltaJuodas:Sulieti _galinių taÅ¡kų spalvasPerÄ—jimasPerÄ—jimasSulieti galinių taÅ¡kų _nepermatomumÄ…PerÄ—jimas:PerÄ—jimas: Negalimas indeksuotiems paveikslÄ—liams.PerÄ—jimas...MÄ—lynaMÄ—lyna:SulietiSulieti arba paaÅ¡trinti_RÄ—melis...Ä®rÄ—minti kanalÄ…Ä®rÄ—minti pažymÄ—jimÄ…Ä®rÄ—minti pažymÄ—jimÄ…Å viesumas-KontrastasÅ viesumas-RyÅ¡kumas negalimas indeksuotuose sluoksniuose.TeptukasTeptukų savybių nustatymasTeptukų katalogaiTeptuko UITeptukas:TeptukaiTeptukų meniuUžpildymasBuferiaiBuferių meniuRyÅ¡kinimasAtstatydami paveikslÄ—lį iki bÅ«senos iÅ¡saugotos diske, JÅ«s prarasite visus pakeitimus, tame tarpe ir atÅ¡aukimo informacijÄ….CMYKK_alibruoti...Spalvų pipetÄ—_StulpeliaiSu_jungimasKalibruoti monitoriaus skiriamÄ…jÄ… gebÄ…Negaliu atÅ¡aukti %sPa_veikslÄ—lio dydis...AtÅ¡auktiPanaikinti pagalbinÄ™ linijÄ…Negalima pridÄ—ti sluoksnio kaukÄ—s, turinÄios kitokius, nei pasirinkto sluoksnio, matmenis.Negalima pridÄ—ti sluoksnio kaukÄ—s prie sluoksnio, neturinÄio alfa kanalo.Nepavyko pridÄ—ti sluoksnio kaukÄ—s prie sluoksnio, kuris nÄ—ra paveikslÄ—lio dalis.Negalima konvertuoti paletÄ—s turinÄios daugiau nei 256 spalvas.Nepavyksta sukurti dialogo %s: %sNepavyko sukurti peržiÅ«rosNegalima apkirpti, kadangi pasirinktas regionas yra tuÅ¡Äias Negalima iÅ¡plÄ—sti ${%s}Neįmanomas laisvas pažymÄ—jimas, nes pasirinktas regionas yra tuÅ¡Äias.Negalima pakelti sluoksnio be alfa kanaloNegalima iÅ¡saugoti. Niekas nepažymÄ—ta.PaveikslÄ—lio dydisCentro X:Centro X:CentruotaKeisti fono spalvÄ…Keisti priekinio plano spalvÄ…Keisti paveikslÄ—lio raiÅ¡kÄ…Keisti paveikslÄ—lio vienetusKeisti spausdinimo dydįPakeisti grotelių fono spalvÄ…Pakeisti indeksuotÄ… paletÄ™Keisti sluoksnio arba pažymÄ—jimo perspektyvÄ…KanalasKanalo savybÄ—sKanalo pavadinimas:Kanalo žemiau nuleisti negalimaKanalo aukÅ¡Äiau pakelti negalimaKanalo spalvaSluoksnis jau yra apaÄiojeSluoksnis jau virÅ¡uje.Pakeisti kana_lÄ… pažymÄ—jimuPakeisti kanalÄ… pažymÄ—jimuPakeisti kanalÄ… pažymÄ—jimuKanalas:KanalaiKanalų meniuApskritimasIÅ¡_valytiIÅ¡valytiIÅ¡valyti kanalÄ…IÅ¡valyti atÅ¡aukimų istorijÄ…IÅ¡valyti visÄ… tekstÄ…IÅ¡valyti klaidasIÅ¡valyti atÅ¡aukimų istorijÄ…Spausk "TÄ™sti", kad priimti aukÅ¡Äiau esanÄius nustatymus.Spausk "TÄ™sti", norÄ—damas sukurti savo asmeninį GIMP katalogÄ…Spauskite "TÄ™sti" kad pradÄ—tumÄ—te GIMP·vartotojo·įdiegimÄ….NorÄ—dami sukurti peržiÅ«rÄ…, spragtelkiteSpragtelÄ—jimas: pažymÄ—tiSpragtelÄ—jimas: pažymÄ—ti Tempimas: paslinktiIÅ¡karpinÄ—Prisegtas prie apatinio sluoksnioPrisegtas prie paveikslÄ—lioKlonavimasUždaryti %sUždaryti visas kortelesUždaryti visas korteles?Uždaryti Å¡iÄ… kortelÄ™Ko_pijuoti keliÄ…Spalv_osSpalvaSpalvų balansasSpalvų pipetÄ—Spalvų pipetÄ—s informacijaSpalvos balansas...Spalvų balansas veikia tik RGB spalvų sluoksniuose.IÅ¡trinti spalvÄ…Spalvos indeksas:Spalva:Indeksuota paletÄ—SpalvintiSpalvinimo _tipas segmentuiSpalvinimo _tipas pažymÄ—jimuiSpalvintiSpalvinimas veikia tik RGB spalvų sluoksniuose.Spalvinti paveikslÄ—lįSpalvinti paveikslÄ—lįįIndeksuota paletÄ—Indeksuotos paletÄ—s redaktoriusIndeksuotos paletÄ—s meniuStulpeliai:KomentarasKon_trastas:Suliejimas ir paaÅ¡trinimasTinklelio konfigÅ«_ravimas...Tinklelio konfigÅ«ravimasKonfigÅ«ruoti paveikslÄ—lio tinklelįKeisti klavišų kombinacijas...Patvirtinti paveikslÄ—lio dydįKÅ«ginis (nesimetriÅ¡kas)KÅ«ginis (simetriÅ¡kas)Sujungti apibraukimusKonstantaApribojimaiKontekstasNuo konteksto priklausantys kursoriai yra jÄ—ga. Jie yra įjungti pagal nutylÄ—jimÄ…. TaÄiau jiems reikia papildomų resursų.TÄ™stiPrisidÄ—joVerstiKonvertuoti kraÅ¡tÄ…Konvertuoti paveikslÄ—lį į pilkų atspalviųKonvertuoti paveiklÄ—lį į indeksuotÄ…Konvertuoti paveikslÄ—lį į indeksuotas spalvasKonvertuoti paveikslÄ—lį į RGBKonvertuoti paveikslÄ—lįKonvertuojama į indeksuotÄ… (2-as žingsnis)...Konvertuojama į indeksuotÄ… (3-ias žingsnis)...Konvertuojama į indeksuotÄ…...Suliejimas ir paaÅ¡trinimasKopijuoti į vardinį buferįKopijuoti _matomÄ…Kopijuojama bylÄ… %s iÅ¡ %s...AutorinÄ—s teisÄ—s:Sugadintas %d segmentas perÄ—jimų byloje %s.Nepavyko sukurti „%s“: %sNepavyko sukurti laikinosios bylos „%s“: %sNepavyko iÅ¡trinti „%s“: %sNepavyko atidaryti „%s“ skaitymui: %sNegalima atidaryti „%s“ įraÅ¡ymui: %sNepavyko atidaryti mini vaizdo „%s“: %sNepavyko perskaityti %d baitų iÅ¡ „%s“: %sNepavyko surasti XCF byloje: %sSkaiÄius:Apka_rpyti sluoksnįSukurti naujÄ… langÄ…Sukurti naujÄ… Å¡ablonÄ…Sukurti naujÄ… paveikslÄ—lįSukurti naujÄ… sluoksnįSukurti naujÄ… Å¡ablonÄ…Sukurti naujÄ… paveikslÄ—lio langÄ…Sukurti naujÄ… paveikslÄ—lį iÅ¡ pažymÄ—to Å¡ablonoSukurti naujÄ… Å¡ablonÄ…Kurkit ir keiskit paveiklÄ—lius ir fotografijasSukurti ir keisti kontÅ«rusIÅ¡ teksto sukurti kontÅ«rÄ…Sukurti pažymÄ—jimÄ… iÅ¡ kontÅ«roKraunama peržiÅ«ra...Kuriamas katalogas %s...ApkarpytiApkarpymas ir dydžio keitimasInformacija apie apkarpymÄ… ir dydžio keitimÄ…Apkirpti paveikslÄ—lįApkarpyti sluoksnįApkirpti paveikslÄ—lįIÅ¡kirpti paveikslÄ—lio fragmentÄ… arba pakeisti dydįApkarpyti: Tik kryželis_IÅ¡kirpti_IÅ¡kirpti vardinį...Kubinis (Geriausias)DabartinÄ— bÅ«_senaDabartinÄ— bÅ«senaKursoriusKreivÄ—s tipasKreivÄ—sPasirinktaPasirinkta spalvaPapildomas perÄ—jimasIÅ¡kirptiIÅ¡kirpti į vardinį buferįŽydrasŽydras:Padaryti teptuko kopijÄ…Padar_yti kanalo kopijÄ…P_adaryti perÄ—jimo kopijÄ…Padar_yti sluoksnio kopijÄ…Padar_yti paletÄ—s kopijÄ…Pa_daryti kelio kopijÄ…Padar_yti raÅ¡to kopijÄ…Padar_yti Å¡ablono kopijÄ…...Tamsių tonų patikrinimasTik patamsintiBrÅ«kÅ¡nelis taÅ¡kelis taÅ¡kelis...BrÅ«kÅ¡nelis taÅ¡kelis...PunktyrasData:DerintiÄ®prastinÄ— iÅ¡vaizda režimeÄ®prastinÄ— iÅ¡vaizda normaliame režimeÄ®prastas tinklelisÄ®prastas paveikslÄ—lio tinklelisIprastasis _interpoliacijos tipas:Ä®prastas slenkstis:IÅ¡trinti sluoksnio kaukÄ™IÅ¡trinti sluoksnio kaukÄ™IÅ¡trinti objektÄ…IÅ¡trinti segmentÄ…IÅ¡trinti Å¡ablonÄ…PaÅ¡alinti teptukÄ…IÅ¡trinti kanalÄ…IÅ¡trinti spalvÄ…Trinti perÄ—jimÄ…...IÅ¡trinti sluoksnįIÅ¡trinti sluoksnio kaukÄ™IÅ¡trinti paletÄ™IÅ¡trinti keliÄ…IÅ¡trinti raÅ¡tÄ…IÅ¡trinti iÅ¡saugotus nustatymus...IÅ¡rinti pasirinktÄ… buferįIÅ¡rinti pasitinktÄ… Å¡ablonÄ…IÅ¡trinti šį paveikslÄ—lįIÅ¡trinti vektoriusTankÅ«s taÅ¡keliaiNusordrintiNusodrinti galima tik RGB formato sluoknius.ApraÅ¡ymasSukurtiÄ®renginio bÅ«senaÄ®renginiaiDialogaiDialogų meniuDeimantasSkirtumasTiesioginÄ— spalvaIÅ¡trinti sluoksnio kaukÄ™Atjungti greitÄ… kaukÄ™Panaikinti teksto informacijÄ…VaizdavimasRodyti navigatoriųRodyti filtrus...Ekrano procedÅ«rosDisplÄ—jaus tipas:Rodoma [%0.6f, %0.6f]IÅ¡tirpimasAtstumas:Atstumas: %0.6fPadalintiAr tikrai norite atstatyti visus filtrus į įprastas reikÅ¡mes?Ar tikrai norite atstatyti visus įrankių nustatymus į pradines reikÅ¡mes?Ar norite jÄ… pakeisti byla, kuriÄ… dabar saugote?NeiÅ¡saugotaDokumentų istori_jaDokumentų istorijaDokumentaiDokumentų meniuBlukinimas ir ryÅ¡kinimasBlukinimasBlukinimas ir ryÅ¡kinimasDvigubas punktyrasTempti inkarÄ…Tempti kreivÄ™Tempti kontÅ«rÄ…Tempimas: paslinktiPieÅ¡ti plunksnaPieÅ¡inio procedÅ«rosPamesti naujÄ… sluoksnįPamesti naujÄ… kontÅ«rÄ…DÄ—l Å¡riftų nebuvimo, teksto funkcionalumas neprieinamas.Padaryti teptuko kopijÄ…Padaryti kanalo kopijÄ…Padaryti perÄ—jimo kopijÄ…Padaryti sluoksnio kopijÄ…Padaryti paletÄ—s kopijÄ…Padaryti kelio kopijÄ…Padar_yti raÅ¡to kopijÄ…Dublikuoti pasirinkÄ… Å¡ablonÄ…EEK: atÅ¡aukimas negalimasE_ksportuoti keliÄ…..._Labai mažasKampų ap_tikimasKeistiKeisti kanalo savybesKeisti kanalo spalvÄ…Keisti spalvų paletÄ™ elementasKeisti spalvų paletÄ—s įraÅ¡Ä…Keisti sluoksnio parametrusPridÄ—ti sluoksnio kaukÄ™Keitimo veiksenaKesiti spalvų paletÄ™Keisti kelio savybesKeisti greitos kaukÄ—s parametrusKeisti greitos kaukÄ—s spalvÄ…Keisti Å¡ablonÄ…Keisti teptuko savybes...Keisti kanalo savybesKeisti spalvÄ…Keisti spalvų paletÄ—s įraÅ¡Ä… #%dKeistii perÄ—jimÄ…...Keisti sluoksnio parametrusKeisti paletÄ™Keisti kelio savybesKeisti raÅ¡tusKeitimo procedÅ«rosKeisti pažymÄ—tÄ… Å¡ablonÄ…Elipsinis pažymÄ—jimasTuÅ¡Äias kanalasTuÅ¡Äias sluoksnisTuÅ¡Äias teksto sluoksnis_PagerinimasPritaikyti greitÄ… kaukÄ™Rodyti naudingus patarimus GIMP paleidimo metu.Rodyti patarimusMilžiniÅ¡kasÄ®veskite vardÄ… sujungtai·paleteiÄ®veskite vardÄ… iÅ¡saugotiems nustatymamsÄ®veskite vardÄ… Å¡iam buferiuiÄ®veskite pavadinimÄ… Å¡iam Å¡ablonuiÄ®veskite naujÄ… vardÄ… iÅ¡saugotiems nustatymamsÄ®veskite vietÄ… (URI):AplinkaAplinkos katalogaiIÅ¡lygintiSuvienodinti indeksuotų sluoksnių negalima.IÅ¡trinti arba padaryti permatomesnįTrintukasKlaidų ko_nsolÄ—GIMP klaidų terminalasKlaidų konsolÄ—s meniuKlaida iÅ¡saugant XCF bylÄ…: %sKlaida skaitant %s : %sSkaitant teptukų bylÄ… „%s“ įvyko klaida: %sKlaida įraÅ¡ant %s : %sKlaida įraÅ¡ant XCF: %sKlaida įraÅ¡ant bylÄ… „%s“: -%sKlaida įraÅ¡ant %s : %sKlaida raÅ¡ant į laikinÄ… bylÄ… %s: %s -Byla nebuvo sukurta.KaidosLa_bai didelisIÅ¡plÄ—stas, kai reikiaEksportuoti·kontÅ«rÄ… į SVGDemonstravimas:Papildomi įvesties įrenginiaiPirmo plano spalvotas užpildymasFG į BG (HSV spalva pagal laikrodžio rodyklÄ™)FG į BG (HSV prieÅ¡ laikrodžio rodyklÄ™)IÅ¡ priekinio plano spalvos į fono spalvÄ… (HSV)IÅ  priekinio plano spalvos į fono spalvÄ… (RGB)IÅ¡ priekinio plano spalvos į skaidriÄ…IÅ¡ priekinio plano spalvos į skaidriÄ…Priekinis planas/FonasPriekinio plano/Fono spalvaFS sluoksniuiPr_iderinti vaizdÄ… prie sluoksnioKritinÄ— klaida teptuko byloje %s: panaÅ¡u, kad byla nepilna.KritinÄ— klaida teptuko byloje %s: byla sugadinta.KritinÄ— klaida teptukų byloje %s: tai ne GIMP teprukų byla.KritinÄ— klaida teptukų byloje „%s“: nežinoma GIMP teptukų versija.KritinÄ— klaida teptukų byloje %s: nežinoma GIMP teprukų versija.KritinÄ— klaida teptukų byloje %s: nežinomas gylis %d.KritinÄ— klaida teptuko byloje %s: nežinoma versija %d.KritinÄ— klaida teptukų byloje %s: nepalaikomas teptuko gylis %d -GIMP teptukai turi bÅ«ti pilki arba RGBA.KritinÄ— klaida perÄ—jimo byloje %s: byla sugadinta.KritinÄ— klaida perÄ—jimo byloje %s: ne GIMP perÄ—jimo byla.KritinÄ— klaida paletÄ—s byloje „%s“: trÅ«ksta magiÅ¡kos antraÅ¡tÄ—s.KritinÄ— klaida paletÄ—s byloje %s: trÅ«ksta magiÅ¡kos antraÅ¡tÄ—s. -Ar Å¡i byla turi bÅ«ti konvertuota iÅ¡ DOS?PaletÄ—s byloje „%s“ aptikta kritinÄ— klaida: skaitymo klaida eilutÄ—je %dKritinÄ— klaida raÅ¡tų byloje %s: nežinoma paletÄ—s formato versija %d.KritinÄ— klaida raÅ¡tų byloje %s: nepalaikomas raÅ¡to gylis %d. -GIMP raÅ¡tai bÅ«ti pilki arba RGBA.IÅ¡l_ieti ribas...IÅ¡lieti pažymÄ—jimo ribasBylaBylos atidarymo _dialogasBylų operacijosBylos tipasByla jau egzistuojaNepilna bylaUžpildyti kanalÄ…Užpildymo skaidrumas:Užpildymo tipas %sUžpildyti panaÅ¡ias spalvasUžpildyti skaidrias sritisUžpildyti fono spalvaUžpildyti _fono spalvaUžpildyti priekinio plano spalvaUžpildyti _raÅ¡tuUžpildyti raÅ¡tuUžpildyti permatomumuUžpildyti baltaUžpildyti _priekinio plano spalvaUžpildyti spalvotu perÄ—jimuUžpildyti spalva arba raÅ¡tuUžpildytaFilt_raiGalutinis, sujungtas sluoksnis turÄ—tų bÅ«ti:IeÅ¡koma panaÅ¡ių spalvųPriderinti paveikslÄ—lį prie langoPriderinti paveikslÄ—lį prie langoPriderinti paveikslÄ—lį prie langoPriderinti paveikslÄ—lį prie langoFiksuotas dydisSujungti paveikslÄ—lio sluoksniusVeidrodinis vaizdasApsukti kanalÄ…Apsukti sluoksnįApsukti kontÅ«rÄ…Apversti teksto sluoksnįApsukimo tipas %sApversti _horizontaliaiApversti _vertikaliaiSluoksnio ar pažymÄ—jimo atspindysApsukamas...Apsukamas...Plaukiojantis pažymÄ—jimasPlaukiojantis pažymÄ—jimasPlaukiojantis pažymÄ—jimas -(%s)Plaukiojantis pažymÄ—jimas į sluosnįPlaukiojantis pažymÄ—jimasPlaukiojantys pažymÄ—jimaiFloyd-Steinberg (normalusis)Floyd-Steinberg (sumažintas spalvų nublukimas)FokusasAplankasKatalogaiÅ riftų katalogaiÅ rifto UIÅ riftas:Å riftaiÅ riftų meniuPilnam GIMP įdiegimui, turi bÅ«ti sukurtas katalogas '%s'.Priekinis planasPriekinio plano ir fono spalvos. Maži kvadratÄ—liai (juodas ir baltas) atstato spalvas. RodyklÄ—s sukeiÄia spalvas. SpragtelÄ—kite 2 kartus, kad pasirinktumÄ—te spalvÄ… iÅ¡ spalvų pasirinkimo dialogo.Priekinio plano spalvaPriekinio plano spalva nustatyta:Priekinis planas: %d, %d, %dPimyn (Tradicinis)IÅ¡ _kelioLaisvas pažymÄ—jimasLaisvas pažymÄ—jimasLaisvaIÅ¡ _temosIÅ¡ kairÄ—s į deÅ¡inÄ™IÅ¡ deÅ¡inÄ—s į kairÄ™IÅ¡ pažymÄ—jimoIÅ¡ temosArtimos spalvos pažymÄ—jimasPer visÄ… _ekranÄ…NeaiÅ¡kus pažymÄ—jimasGIMPGIMP praplÄ—timasGIMP praneÅ¡imasGIMP naÅ¡umo derinimasGIMP priedasGIMP pradžiaGIMP teksto redaktoriusGIMP dienos patarimasGIMP vartotojo įdiegimasGIMP XCF paveikslÄ—lisGIMP pagalbos narÅ¡yklÄ—GIMP Å¡iam vartotojui blogai įdiegtas. -Vartotojo įdiegimas buvo praleistas, nes panaudotas '--no-interface' parametras. -NorÄ—dami atlikti įdiegimÄ…, paleiskite GIMP be '--no-interface' parametro.GIMP naudoja papildoma gtkrc bylÄ… todÄ—l JÅ«s galite padaryti jo iÅ¡vaizdÄ… kitokia nei kitų GTK programų.GIMP versijaGIMP įspÄ—s vartotojÄ…, jei jis bandys sukurti paveikslÄ—lį, kuris užims daugiau atminties nei Äia nurodyta.GamaBendrasSugeneruoti optimaliÄ… paletÄ™Gauti monitoriaus skiriamÄ…jÄ… gebÄ…MilžiniÅ¡kasGimprc procedÅ«ros_Stiklo efektaiPerÄ—jimasPerÄ—jimų savybių nustatymasPerÄ—jimų redaktoriaus meniuPerÄ—jimų katalogaiPerÄ—jimo segmento kairiojo galinio taÅ¡ko spalvaPerÄ—jimo segmento deÅ¡iniojo galinio taÅ¡ko spalvaPerÄ—jimo UIPerÄ—jimas:PerÄ—jimaiPerÄ—jimų meniuGrÅ«dÄ—tumo iÅ¡laikymasGrÅ«dÄ—tumo suliejimasPilkaPilkumo atspalviaiŽaliaŽalia:TinklelisTarpai tarp pagalbinių linijųPadidinti kanalÄ…Padidinti pažymÄ—jimÄ…Padidinti pažymÄ—jimÄ…PagalbinÄ— linijaPagalbinių linijų procedÅ«rosHSVHSV (%0.3f, %0.3f, %0.3f)HSV (spalva _prieÅ¡ laikrodžio rodyklÄ™)FG į BG (HSV spalva pagal laikrodžio rodyklÄ™)AukÅ¡tis:Naudojama pagal_bos narÅ¡yklÄ—:Nustatyti vietÄ…: %0.6fStiprus apÅ¡vietimasKietumasKietumas:AukÅ¡tisAukÅ¡tis:PagalbaPagalbos narÅ¡yklÄ—Pagalbos sistemaPagalbos procedÅ«rosÅ eÅ¡ioliktainis:Å viesios spalvosDalinuHistogra_maHistogramaHistogramos mastelisIstorijaHorizontaliaiHorizontalus pirmos tinklelio linijos poslinkis. Jis gali bÅ«ti ir neigiamas.Atstumas tarp horizontalių grotelių linijų.AtspalvisAtspalvis-SodrumasSpalva-Sodrumas veikia tik su RGB spalvų sluoksniais.Atspalvis-SodrumasAtspalvis:DidžiulisI_kona ir tekstasPaveiks_lÄ—lisI_mportuoti keliÄ…...Interpoliacijos tipas:I_ntervalas:IkonaIkona ir apraÅ¡ymasIkona ir tekstasPaveikslÄ—lisPaveikslÄ—lio informacijaPaveikslÄ—lio meniuPaveikslÄ—lio dydisPaveikslÄ—lio bÅ«senos juostos formatas:PaveikslÄ—lio Å¡ablonaiPaveikslÄ—lio pavadinimo ir bÅ«senos juostos formatasPaveikslÄ—lio pavadinimo formatas:PaveikslÄ—lio lango iÅ¡vaizdaPaveikslÄ—lių langaiPaveikslÄ—lio bylaPaveikslÄ—lio kaukÄ—PaveikslÄ—lio raiÅ¡ka yra per didelÄ—, vietoje jos naudojama įprasta raiÅ¡ka.PaveikslÄ—lio dydisPaveikslÄ—lio tipasPaveikslÄ—liaiPaveikslÄ—lių meniuImportavimo nustatymaiImportuoti paletÄ™Importuoti kontÅ«rÄ…Importuoti kontÅ«rÄ… iÅ¡ SVGImportuoti naujÄ… paletÄ™Importuoti paletÄ™Importuoti keliÄ…Importuotas kontÅ«rasPlunksnaIn_vertuotiKaukÄ—s inversijaDidÄ—jantisÄ®traukti:Pirmos eilutÄ—s įtraukimasRodyklÄ—:IndeksuotaIndeksuota spalvaSpalvas paversti indeksuotomisInformacijos langasDydžio keitimo santykis:Pritaikyti sluoksnio kaukÄ™:Inicijuojami priedaiPlunksnaÄ®vesties įrenginiaiĮėjimo lygiai:Ä®diegimas nepavyko. Susisiekite su sistemos administratoriumi.Instaliacija sÄ—kmingai baigta. NorÄ—dami tÄ™sti, spauskite "TÄ™sti".Skubus atnaujinimasProt_ingos žirklÄ—sSÄ…sajaVidinÄ— GIMP procedÅ«raVidinÄ—s procedÅ«rosInterpoliacijos tipas:SÄ…nkirtaSankirta su aktyviu pažymÄ—jimuSusikirtimai (kryželiai)Susikirtimai (taÅ¡kai)NekorektiÅ¡kas UTF-8NekorektiÅ¡ki UTF-8 duomenys byloje %s.NekorektiÅ¡ka UTF-8 eilutÄ— XCF bylojeNekorektiÅ¡ka UTF-8 eilutÄ— teptukų byloje %s.NekorektiÅ¡ka UTF-8 eilutÄ— perÄ—jimų byloje %s.PaletÄ—s byloje „%s“ yra nekorektiÅ¡ka UTF-8 sekaNekorektiÅ¡ka UTF-8 eilutÄ— raÅ¡tų byloje %s.Neteisingas plotis arba aukÅ¡tis. Abu turi bÅ«ti teigiami skaiÄiai.InversijaInvertuoti kanalÄ…Invertuoti pažymÄ—jimÄ…Inversijos negalima taikyti indeksuotiems sluoksniams.Invertuoti pažymÄ—jimÄ…Elemento savybÄ—sElemento matomumasLygiavimas:IÅ¡laikyti permatomumÄ…IÅ¡laikyti virÅ¡ujeIÅ¡laikyti permatomumÄ…Klavišų kombinacijosIKÄ®D_Kairiojo galinio taÅ¡ko spalva...KraÅ¡tovaizdisDidelisDidelis (256x256)DidesnÄ— peržiÅ«raPaskutinÄ— klaida:SluoksnisSluoksnis %s neturi alfa kanalo. Sluoksnis bus patalpintas aukÅ¡ÄiauSluoksnio parametraiSluoksnio ribų dydis...Sluoksnio užpildymo tipasKaukÄ™ paversti pažymÄ—jimuPažymÄ—ti sluoksnįSluoksnio dydisSluoksnio _veiksenaSluoksnio pavadinimas:Sluoksnio žemiau nuleisti negalima.Sluoksnio aukÅ¡Äiau pakelti negalima.Sluoksnis jau yra apaÄiojeSluoksnis jau virÅ¡uje.Sluoksnio dydį prilyginti paveikslÄ—lio dydžiuiNuleisti sluoksnį iki _apaÄiosPrilyginti sluoksnio dydį paveikslÄ—lio dydžiuiPerkelti sluoksnį iki _virÅ¡ausSluoksnio _alfa kanalasSluoksniaiSluoksnių meniuSluoksnių sujungimo savybÄ—sKariojo galinio taÅ¡ko spalvaIlgis:LygiaiÅ viesių tonų patikrinimasTik paÅ¡viesintiLinijaLinijos stilius:Tinklelio linijų tipas.TiesinisSusietas elementasÄ®keltiÄ®kelti kreivesÄ®krauti lygiusÄ–kelti deÅ¡inÄ™ _spalvÄ… iÅ¡Skaityti lygių nustatymus iÅ¡ bylosÄ®krauti tekstÄ… iÅ¡ bylosÄ®keliama peržiÅ«ra...Vieta:LogaritminisIlgi brÅ«kÅ¡neliaiIeÅ¡komos duomenų bylosNuleisti kanalÄ…Nuleisti kanalÄ… į apaÄiÄ…Nuleisti kanalÄ… į _apaÄiÄ…Nuleisti sluoksnįNuleisti sluoksnį iki apaÄiosNuleisti kontÅ«rÄ…Nuleisti sluoksnį iki apaÄiosNuleisti keliÄ… iki _apaÄiosNuleisti kanalÄ…Nuleisti kanalÄ… į apaÄiÄ…Nuleisti sluoksnįNuleisti sluoksnį iki apaÄiosNuleisti keliÄ…Nuleisti keliÄ… į apaÄiÄ…D_idinti arba mažintiPagrindinis_Perkelti į ekranÄ…...ŽemÄ—la_pisRožinisRožinis:Didinti arba mažintiTvarkyti įkeliamus moduliusKaukÄ—s nepermatomumas:Ma_skuoti pažymÄ—tas sritisMask_uoti nepažymÄ—tas sritisMatrica:Didžiausias gylis:Maksimalus naujo paveikslÄ—lio dydis:Maksimalus spalvų skirtumasMaksimali atÅ¡aukimų atmintis:Vidurkis:MatuotiMatuoti atstumus ir kampusMatuoti atstumus ir kampusPusiaukraÅ¡tinÄ—:VidutinisViduiniai brÅ«kÅ¡neliaiSujungti su ž_emesniuojuSujungti su žemesniuSujungti sluoksniusSujungti paletesSujungti matomus sluoksniusSujungti matomus keliusSujungti _matomus sluoksnius...Sujungti _matomus sluoksnius...Sujungti mat_omus kontÅ«rusSujungti sluoksniusSujungti paletesSujungti vektoriusŽinuÄių procedÅ«rosPraneÅ¡imas pakartotas %d kartų.PraneÅ¡imas pakartotas 1 kartÄ….PustoniaiMažiausias atÅ¡aukimų skaiÄius:Ä®vairÅ«sVeiksenaVeiksena:Redaguoti pasirinktÄ… spalvÄ…Keisti pažymÄ—to diapazono spalvų lygiusKeisti visas spalvasKeisti tarpÄ… tarp eiluÄiųModulių katalogaiModulių tvarkyklÄ—Modulio keliasModuliaiPelÄ—s žymeklisPerkeltiPerkelti kanalÄ…Perkelti pagalbinÄ™ linijÄ…Perkelti pagalbinÄ™ linijÄ…:Perkelti sluoksnįPerkelti sluoksnio kaukÄ™Perkelti kontÅ«rÄ…Perkelti pažymÄ—jimÄ…Perkelti teksto sluoksnįPerkÄ—limo įrankisPerkeltiPaslinkti sluoksnį/pažymÄ—jimÄ…Perkelti pažymÄ—tÄ… filtrÄ… žemynPerkelti pažymÄ—tÄ… filtrÄ… aukÅ¡tynPerkelti į ekranÄ…...Perkelti:SudaugintiSpal_vų skaiÄius:Na_vigacijaNavigacijos langasPavadinimasPavadinimas:NavigacijaNaujas kanalasNauja kanalo spalvaNaujo kanalo savybÄ—sNauja spalva iÅ¡ _fonoNauja spalva iÅ¡ _priekinio planoNaujas paveikslÄ—lisNaujas sluoksnisNaujas keliasNaujo kelio savybÄ—sNaujas Å¡ablonasNaujas teptukasNaujas kanalasNaujas kanalas su paskutinÄ—mis reikÅ¡mÄ—misNaujas kanalas...Nauja spalva iÅ¡ _fonoNauja spalva iÅ¡ _priekinio planoNaujas perÄ—jimasNaujas importavimasNaujas sluoksnisNaujas sluoksnis su paskutinÄ—mis reikÅ¡mÄ—misNaujas sluoksnis...Nauja paletÄ—Naujas kelias su paskutiniosiomis reikÅ¡mÄ—misNaujas kelias...Naujas raÅ¡tasNauji vektoriaiNÄ—ra naudotinų teptukų Å¡iam įrankiui.Daugiau neprieinamaKontÅ«rų nerasta byloje %sNÄ—ra kontÅ«rų buferyjeUžpildyti raÅ¡tu negalima.NepažymÄ—jote, kÄ… reikia apvestiNÄ—ra peržiÅ«rosNiekoJoks (GreiÄiausias)NormaliNormalus (128x128)NormalÅ«s taÅ¡keliaiÄ®prastas langasTai nÄ—ra paprasta byla.Norint atlikti sujungimÄ… bÅ«tini bent du sluoksniai.Neužtenka matomų kelių sujungimui. Turi bÅ«ti bent du.Sluoksnių skaiÄius:Kitas...PoslinkisPaslinkti kanalÄ…Paslinkti sluoksnįPaslinkti sluoksnio kaukÄ™Poslinkis:diskeMultiprocesorinÄ—se maÅ¡inose, jei GIMP buvo sukompiliuotas su --enable-mp nustatymu, kuris nustato kiek procesorių lygiagreÄiai GIMP gali naudotitik atmintyjeAti_daryti kaip sluoksnį...NepermatomumasNepermatomumas:Atidaryti...Atidaryti paveikslÄ—lįAtidaryti paveikslÄ—lį kaip sluoksnįAtidaryti vietÄ…Atidaryti UTF-8 teksto bylÄ…Atidaryti _vietÄ…...Atidaryti _paskutiniuosiusAtidaryti paveikslÄ—lio dialogÄ…Atidaryti teptukų pasirinkimo dialogÄ…Atidaryti Å¡riftų pasirinkimo dialogÄ…Atidaryti perÄ—jimų pasirinkimo dialogÄ…Atidaryti raÅ¡tų pasirinkimo dialogÄ…Atidaryti pažymÄ—tÄ… įraÅ¡Ä…Atidaryti „%s“ nepavyko. - -%sNepavyko atidaryti „%s“: %sParametrai: -Pradžia X:Originalus plotis:Kitas (%s) ...IÅ¡Ä—jimo lygiai:PadengtiPDB užklausos klaida: -procedÅ«ra '%s' nerastaR_aÅ¡taiÄ„Ä…BbCcÄŒÄDdEeĘęĖėFfGgHhIiYyJjKkLlMmNnOoPpRrSsÅ Å¡TtUuŲųŪūVvZzŽžPieÅ¡tiDažymo įrankių procedÅ«rosPieÅ¡imo įrankis:PieÅ¡imo _veiksenaLinijos neryÅ¡kiais kontÅ«raisPieÅ¡ti aÅ¡trių kampų taÅ¡kusPieÅ¡ti naudojant raÅ¡tus arba paveikslÄ—lio sritisTeptukasPal_etÄ—sPaletÄ—PaletÄ—s savybių nustatymasPaleÄių redaktoriaus meniuPaleÄių katalogaiPaletÄ—s UIPaletÄ—s pavadi_nimas:PaletÄ—sPaleÄių meniuPapildomos informacijos bylų procedÅ«rosPapildomos informacijos bylosNagrinÄ—jamas „%s“ -Ä®dÄ—tiÄ®dÄ—t_i buferį įĮdÄ—ti buferį kaip _naujÄ…Ä®dÄ—ti ke_liÄ…Ä®dÄ—t_i į vidųĮdÄ—ti kaip _naujÄ…Ä®dÄ—ti pažymÄ—tÄ… buferįĮdÄ—ti pasirinktÄ… buferį kaip naujÄ… paveikslÄ—lįĮdÄ—ti pasirinktÄ… buferį į pažymÄ—jimÄ…Ä®dÄ—tas sluoksnisKontÅ«rasKontÅ«ro savybÄ—sKontÅ«ro pavadinimas:Kon_tÅ«rų įrankisKontÅ«ro žemiau nuleisti negalima.KontÅ«ro aukÅ¡Äiau pakelti negalima.Sluoksnis jau yra apaÄioje.Sluoksnis jau virÅ¡uje.Kelias į _pažymÄ—tÄ… sritįKontÅ«ras į PažymÄ—jimÄ…KeliÄ… į pažymÄ—jimÄ…KeliaiKelių meniuRaÅ¡taiRaÅ¡tų katalogaiRaÅ¡to UIUžpildymas raÅ¡tuRaÅ¡taiRaÅ¡tų meniuPieÅ¡tukasPieÅ¡tukasTeptuko storis procentaisProcentilis:Asmeninis GIMP katalogasPerspektyvosPerspektyvos transformacijos informacijaPerspektyva...IÅ¡rinkti dažų spalvÄ… iÅ¡ paveikslÄ—lioTaÅ¡kelio matmenys:TaÅ¡kelių vertÄ—sTaÅ¡keliųTaÅ¡kai:Palaukite kol bus sukurtas JÅ«sų asmeninis GIMP katalogas...Palaukite...PriedaiÄ®skiepių aplinkaÄ®skiepių katalogaiGIMP priedas negali atidaryti paveikslÄ—lioGIMP priedas negali iÅ¡saugoti paveikslÄ—lioÄ®skiepiaiPriedasPoligoninisPortretasVieta: %0.6fSpalvų sumažinimasSpalvų sumažinimasSpalvų sumažinimo lygiai:Spalvų sumažinimas neveikia indeksuotiems paveikslÄ—liams.NustatymaiSlÄ—gis:PeržiÅ«raPeržiÅ«ra yra pasenusiPeržiÅ«ra:PeržiÅ«raSpausdinimo dydisSpausdinimo dydis:ProcedÅ«rinÄ— duomenų bazÄ—ProcedÅ«rų duomenų bazÄ—PažangaNetikra spalvaTikslas:KokybÄ—UžklaustiUžklausiami nauji įskiepiaiUžklausiamas įskiepis: „%s“ -Greita kaukÄ—Keisti greitos kaukÄ—s parametrusGreitos kaukÄ—s meniuGreita kaukÄ—Baigti darbÄ… su GIMPRGBRGB (%d, %d, %d)RGB spalvaRGB-tuÅ¡ÄiaRGBA (%0.3f, %0.3f, %0.3f, %0.3f)IDÄ®KPar_odyti „%s“ iÅ¡ naujo_Atstatyti įrankio savybÄ—sAtstatyti kanalÄ…_Atstatyti spalvÄ…_DeÅ¡iniojo galinio taÅ¡ko spalva...RadialinisSkersmuo:Pakelti kanalÄ…Pakelti kanalÄ… į viršųPakelti kanalÄ… į _viršųPakelti sluoksnįPakelti sluoksnį iki virÅ¡ausPakelti kontÅ«rÄ…Pakelti kontÅ«rÄ… iki virÅ¡ausPakelti kontÅ«rÄ… iki _virÅ¡ausPakelti kanalÄ…Pakelti kanalÄ… į viršųPakelti sluoksnįPakelti sluoksnį iki virÅ¡ausPakelti kontÅ«rÄ…Pakelti kontÅ«rÄ… iki virÅ¡ausJeigu langas atidarytas, tai iÅ¡keltį jįSantykisKoeficientas:VÄ—l parodyti paskutinįPer_centruoti vidurio taÅ¡kus pažymÄ—jimePer_centruoti segmento vidurio taÅ¡kÄ…Per_vadinti iÅ¡saugotus nustatymusKart_oti „%s“Sug_rąžinti...Ä®keliama paletÄ— %s (eilutÄ— %d): -NÄ—ra ŽALIO (GREEN) komponentoÄ®keliama paletÄ— %s (eilutÄ— %d): -NÄ—ra MÄ–LYNO (BLUE) komponentoSkaitoma paletÄ—s byla '%s': EilutÄ—je %d nÄ—ra RAUDONO (RED) komponento.Ä®keliama paletÄ— %s (eilutÄ— %d): -RGB reikÅ¡mÄ— iÅ¡eina už ribųPasiruoÅ¡Ä™sTikrai iÅ¡valyti paveikslÄ—lio atÅ¡aukimų istorijÄ…Perkrauti _peržiÅ«rÄ…Perkurti _peržiÅ«rÄ…Keturkampis pažymÄ—jimasRaudonaRaudona:GražintiSumažinti spalvų kiekį paveikslÄ—lyje iki dviejų naudojant slenkstįAtnaujinti teptukusAtnaujinti perÄ—jimusAtnaujinti paletesAtnaujinti raÅ¡tusUžregistruotaPerkra_uti esamÄ… temÄ…Perkrauti _visas peržiÅ«rasPerkrauti _visas peržiÅ«rasTarp GIMP sesijų iÅ¡saugoti esamÄ… įrankį, raÅ¡tÄ…, spalvÄ… ir teptukÄ….NutolÄ™s paveikslÄ—lisPaÅ¡alinti kanalÄ…Naikinti pasenusius įraÅ¡usPaÅ¡alinti plaukiojantį pažymÄ—jimÄ…PaÅ¡alinti pagalbines linijasPaÅ¡alinti sluoksnįPaÅ¡alinti paveikslÄ—lio parazitÄ…PaÅ¡alinti elemento parazitÄ…PaÅ¡alinti kontÅ«rÄ…PaÅ¡alinti _elementÄ…Naikinti pasenusius įraÅ¡usPaÅ¡alinti plaukiojantį pažymÄ—jimÄ…PaÅ¡alinti parazitÄ…PaÅ¡alinti pažymÄ—tÄ… elementÄ…PaÅ¡alinti pažymÄ—tÄ… filtrÄ… iÅ¡ sÄ…raÅ¡o (indekso)Pervadinti kanalÄ…Pervadinti sluoksnįPervadinti kontÅ«rÄ…Pervadinti iÅ¡saugotus įrankių nustatymusPervadinti tekstinį sluoksnįPervadinti elementÄ…Perkelti kanalÄ…Keisti sluoksnių eilÄ—s tvarkÄ…Pakartoti paskutinįKartoti:Pakeisti aktyvų pažymÄ—jimÄ…PadaugintiPadauginti perÄ—jimo segmentÄ…PerÄ—jimo perÄ—jimo pažymÄ—jimÄ…Padauginti segmentÄ…Padauginti pažymÄ—jimÄ…PerdÄ—styti kanalÄ…PerdÄ—styti sluoksniusPerdÄ—styti vektoriusPerskanuoti Å¡riftų sÄ…raÅ¡Ä…Atstatyti įrankių nustatymusAtstatyti _visus įrankio nustatymus...Atstatyti visus filtrusAtstatyti visus filtrus...Atstatyti visus įrankio nustatymus...Atstatyti pasirinktÄ… filtro nustatymus į įprastas vertesAtstatyti nustatymus į įprastas vertesAtstatyti įrankių tvarkÄ… ir matomumÄ…Pakeisti dydįKeisti kanalo dydįKeisti paveikslÄ—lio dydįKeisti sluoksnio dydįKeisti kontÅ«ro dydįKeisti tekstinio sluoksnio dydįKeisti paveikslÄ—lio dydįKeisti dydįPakeisti lango dydį pakeitus mastelįPakeisti lango dydį pakeitus paveikslÄ—lio dydįKeiÄiamas dydis...Skiriamosios gebos keitimasRaiÅ¡ka:Resursų naudojimasResursų konfigÅ«ravimasUžkrauti nustatymus iÅ¡...Atstatyti iÅ¡saugotus klavišų susiejimus kiekvieno GIMP paleidimo metu.AtvirkÅ¡ÄiaiAtstatytiAtstatyti „%s“ į „%s“?Atstatyti paveikslÄ—lįAtstatyti nepavyko. Jokia byla nÄ—ra susieta su Å¡iuo paveikslÄ—liu.Atstatyti iki „%s“ nepavyko: - -%sDeÅ¡iniojo galinio taÅ¡ko spalvaPasukimasPasukimas 90 laipsnių p_rieÅ¡ laikrodžio rodyklÄ™Pasukimas 90 laipsnių _pagal laikrodžio rodyklÄ™Pasukti kanalÄ…Pasukti sluoksnįPasukti kontÅ«rÄ…Pasukti teksto sluoksnįPasukimas _180 laipsniųPasukti paveikslÄ—lįPasukti sluoksnį arba pažymÄ—jimÄ…Sukama...Sukimo informacijaApvalusÅ lytisRodyti _tinklelįSumaži_nti...S_ukeisti spalvasIÅ¡_saugoti deÅ¡inÄ™ spalvÄ… įSodrumas:SodrumasIÅ¡saugotiIÅ¡saugoti „%s“ kaip POV-RayIÅ¡saugoti kreivesIÅ¡saugoti klaidų protokolÄ… į bylÄ…IÅ¡saugoti paveikslÄ—lįIÅ¡saugoti įvesties įrenginių bÅ«senÄ… dabarIÅ¡saugoti klavišų kombinacijas dabarIÅ¡saugoti lygiusIÅ¡saugoti įrankio savybesIÅ¡saugoti lango vietÄ… dabarÄ®raÅ¡yti _visas klaidas į bylÄ…...Ä®raÅ¡yti _pažymÄ—jimÄ… į bylÄ…...IÅ¡saugoti kaip...IÅ¡saugoti kaip k_opijÄ…...IÅ¡saugoti paveikslÄ—lio kopijÄ…IÅ¡saugoti visas klaidasIÅ¡saugoti kaip _POV-Ray...IÅ¡saugoti kaip Å¡a_blonÄ…...IÅ¡saugo pakeistas klavišų kombinacijas GIMP baigiant darbÄ….IÅ¡saugoti kreivių nustatymus į bylÄ…IÅ¡saugoti įrenginių bÅ«senÄ…IÅ¡saugoti perÄ—jimÄ… kaip POV-RayIÅ¡saugoti lygių nustatymųs į bylÄ…IÅ¡saugoti nustatymus į...IÅ¡saugoti pažymÄ—jimÄ…IÅ¡saugoti pažymÄ—jimÄ… į kanalÄ…IÅ¡saugoti į _kanalÄ…IÅ¡saugoti nustatymaiÄ®raÅ¡inÄ—jama „%s“ -IÅ¡saugoti „%s“ nepavyko. - -%sIÅ¡saugomi paveikslÄ—liaiPjÅ«klinÄ— bangaMastelisKeisti kanalo dydįKeisti paveikslÄ—lio dydįKeisti sluoksnio dydįApibraukti kontÅ«rÄ…Keisti tekstinio sluoksnio dydįKeisti paveikslÄ—lio dydįKeisti elemento dydįSluoksnio arba pažymÄ—jimo mastelisDidinimasKeiÄia dydį...ŽirklÄ—sEkranas"Script-Fu" katalogaiSkriptaiPažymÄ—tiPažymÄ—ti viskÄ…Nurodykite teptukų katalogÄ…PažymÄ—ti pagal spalvÄ…Pasirinkti spalvÄ…Nurodykite aplinkos katalogusNurodykite perÄ—jimų katalogÄ…Nurodykite perÄ—jimų katalogusNurodykite modulių katalogusNepažymÄ—ti niekoNurodykite paleÄių katalogusNurodykite·raÅ¡tų katalogÄ…Nurodykite įskiepių katalogusPasirinkite "Script-Fu" katalogusPasirinkit Å¡altinįPasirinkite laikinÄ… katalogÄ…Pasirinkit temÄ…Pasirinkite temų katalogÄ…Pasirinkti didinimo koeficientÄ…PažymÄ—ti _apatinį sluoksnįPasirinkti _kitÄ… spalvÄ…...PažymÄ—ti _sekantįjį sluoksnįPažymÄ—ti _ankstesnįjį sluoksnįPažymÄ—ti _virÅ¡utinį sluoksnįPažymÄ—ti viskÄ…PažymÄ—ti pagal spalvÄ…Artimos spalvos pažymÄ—jimas (pagal pasirinktÄ… slenkstį)IÅ¡sirinkti įprastas spalvas aplink paveikslÄ—lįPažymÄ—ti elipsinius plotusLaisvas sriÄių pažymÄ—jimasNepažymÄ—ti niekoPažymÄ—ti staÄiakampius plotusPažymÄ—ti sritis pagal spalvÄ…Pasirinkti linijas iÅ¡ paveikslÄ—lioPasirinkite kiek kartų norite -padauginti pasirinktÄ… segmentÄ….Pasirinkite kiek kartų norite -padauginti pažymÄ—jimÄ….Pasirinkite į kiek vienodų dalių norite -padalinti pažymÄ—jimÄ….Pasirinkite į kiek vienodų dalių norite -padalinti pasirinktÄ… segmentÄ….PažymÄ—ti permatomas sritisPasirinkite interneto narÅ¡yklÄ™Paž_ymÄ—ta sritis į keliÄ…PažymÄ—jimasPažymÄ—jimo savybių nustatymasPažymÄ—jimų redaktoriaus meniuPažymÄ—jimo kaukėŽymÄ—jimo įrankių procedÅ«rosPažymÄ—jimo kaukÄ—PažymÄ—jimas į keliÄ… (_sudÄ—tingiau)PažymÄ—ta sritis į keliÄ…PažymÄ—jimas:PažymÄ—jimas: PRIDÄ–TIPažymÄ—jimas: SANKIRTAPažymÄ—jimas: PAKEISTIPažymÄ—jimas: ATIMTIJautrumasNustatyti spalvÄ… aplink paveikslÄ—lįNustatyti kanalo spalvÄ…Nustatyti kanalo nepermatomumÄ…Nustatyti indeksuotÄ… paletęĮprasta spalva aplink paveikslÄ—lįNustatyti paveikslÄ—lio dydįKeisti paveikslÄ—lio spausdinimo raiÅ¡kÄ…Nustatyti sluoksnio ribų dydįSukurti vardÄ… iÅ¡ _tekstoNustatyti sluoksnio nepermatomumÄ…Nustatyti fono splavÄ…Nustatyti priekinio plano spalvÄ…Nustatyti sluoksnio veiksenÄ…Nustatyti sluoksnio nepermatomumÄ…Ä®jungti permatomumo iÅ¡laikymÄ…Nustato narÅ¡yklÄ™, kuri bus naudojama pagalbos sistemosNustato interpoliacijos lygį dydžio keitimui ir kitoms transformacijoms.Nustato GIMP naudojamÄ… žymeklio tipÄ….Nustato GIMP naudojamÄ… žymeklio tipÄ….Nustato navigatoriaus peržiÅ«ros dydį apatiniame deÅ¡iniame paveikslÄ—lio lango kampe.Å eÅ¡Ä—lio tipasÅ eÅ¡Ä—liaiFormaForma:Forma (kampas)Forma (įdubÄ™s)Forma (sfera)PaaÅ¡trintiKirptiSluoksnio arba pažymÄ—jimo Å¡lyties deformacijaÅ lyties informacijaTransformuojama...Trumpi brÅ«kÅ¡neliaiNuorodaRodyti sluoksnio kaukÄ™Rodyti _liniuotesRodyti bÅ«_senos juostÄ…Rodyti slin_kties juostasRodyti pa_galbines linijasRodyti s_luoksnių ribasRodyti _meniu juostÄ…Rodyti _pažymÄ—jimÄ…Rodyti teptuko kontÅ«rusRodyti pa_galbines linijasRodyti s_luoksnių ribasRodyti _meniu juostÄ…Rodyti liniuotesAutomatiÅ¡kai sekti aktyvų paveikslÄ—lįRodyti _tinklelįRodyti pagalbos mygtukusRodyti paveikslÄ—lio dydįRodyti interaktyvias ribasRodyti atminties iÅ¡naudojimÄ…Rodyti p_ažymÄ—jimÄ…Rodyti bÅ«_senos juostÄ…Rodyti slin_kties juostasRodyti patarimÄ… startuojant GIMP'uiRodyti patarimu_s paleidimo metuRodyti pa_tarimusRodyti dydžio keitimo procentuotÄ™Rodyti dydžio keitimo santykįSumažinti kanalÄ…Sumažinti pažymÄ—jimÄ…Priderinti paveikslÄ—lį prie langoSumažinti nuo paveikslÄ—lio rÄ—melioSumažinti pažymÄ—jimÄ…Priderinti paveikslÄ—lį prie langoDydisDysis atmintinÄ—je:Dydis:Praleidžiama „%s“: bloga GIMP protokolo versija.MažasMažesnÄ— peržiÅ«raGlotnumasLygÅ«s kraÅ¡taiIÅ¡tepimasIÅ¡tepti paveikslÄ—lįKibti prie p_agalbinių linijųKibti prie _tinklelioLengvas apÅ¡vietimasVientisasÅ altinisIntervalasIntervalas:Reti taÅ¡keliaiSpeciali bylaNurodo kaip turÄ—tų bÅ«ti pieÅ¡iama erdvÄ— aplink paveikslÄ—lį.Greitis:Sferinis (_mažėjantis)Sferinis (_didÄ—jantis)Spiralinis (pagal laikrodžio rodyklÄ™)Spiralinis (pagal laikrodžio rodyklÄ™)AtskirtiPadalinti perÄ—jimo segmentÄ… netolygiaiPadalinti perÄ—jimo segmentus netolygiaiPadalinti segmentÄ… netolygiaiPadalinti segmentÄ… tolygiai...Padalinti segmentÄ… vidurio taÅ¡kePadalinti segmentus netolygiaiPadalinti segmentus _tolygiai...Padalinti segmentus vidurio taÅ¡kuoseKvadratasBÅ«sen_a ir tekstasDÄ—_klasStandartinisPaleidžiami praplÄ—timaiPaleidžiami praplÄ—timai: %s -BÅ«sena:StatinÄ— spalvaStatinÄ— pilkaBuklÄ— ir apraÅ¡ymasBÅ«sena ir tekstasApvesti keliÄ…Apvesti _keliÄ…...Apvesti keliÄ…Apvesti pažymÄ—tas vietasApvesti keliÄ…Apvesti _keliÄ…...Sumažinti pažymÄ—jimÄ…...AtimtiAtimti iÅ¡ aktyvaus pažymÄ—jimoÄ®r_ankiaiTekstasTe_ksto įrankiaiLaikinas katalogas:Å ablonaiÅ ablonų meniuLaikina procedÅ«raTekstasTeksto spalvaGIMP teksto redaktoriusTeksto sluoksnisTeksto procedÅ«rosGIMPGrotelių fono spalva; naudojama tik su dvigubų brukÅ¡nių stiliaus linijomis.SukonfigÅ«ruota bylos pavadinimo koduotÄ— negali bÅ«ti konvertuota į UTF-8: %s - -PraÅ¡au, patikrinkite aplinkos kintamojo G_FILENAME_ENCODING reikÅ¡mÄ™.Bylos %s nepavyksta konvertuoti į URI: - -%sGrotelių priekinio plano spalva.gimprc naudojamas asmeninių nustatymų, kurie įtakoja -įpastÄ…jÄ… GIMP elgsenÄ…, saugojimui. -ÄŒia taip pat nustamomi įvairių modulių, priedų, raÅ¡tų, -perÄ—jimų, paleÄių ar pieÅ¡tukų paeiÅ¡kos keliai.Horizontali paveikslÄ—lio raiÅ¡kaKonvertuoti aplanko, talpinanÄio GIMP naudotojo konfigÅ«racijÄ…, pavadinimo konvertuoti į UTF-8 nepavyko: %s - -GreiÄiausiai JÅ«sų bylų sistemoje bylos yra saugomos kita koduote nei UTF-8 ir JÅ«s to Glib bibliotekai nenurodÄ—te. PraÅ¡au, nustatykite aplinkos kintamÄ…jį G_FILENAME_ENCODING.unitrc yra naudojama vartotojo naudojamų papildomų vienetų duomenų bazei saugoti. -JÅ«s galite apibrėžti papildomus vienetus ir vartoti juos lygiai taip pat, -kaip naudojate colius, milimetrus, taÅ¡kus ir kt. -Å i byla perraÅ¡oma kiekvienÄ… kartÄ…, kai uždarote GIMP.Vertikali paveikslÄ—lio raiÅ¡kaTemaTemų katalogaiTemosNeužtenka matomų sluoksnių sujungimo su žemesniu sluoksniu veiksmui.NÄ—ra aktyvaus sluoksnio ar kanalo, iÅ¡ kurių bÅ«tų galima kopijuoti.NÄ—ra aktyvaus sluoksnio ar kanalo, iÅ¡ kurių bÅ«tų galima iÅ¡kirpti.Å iame kataloge ieÅ¡koma Å¡ablonų.Å iame kataloge ieÅ¡koma vartotojo instaliuotų temų.Å iame kataloge saujogamos įrankių savybÄ—sÅ is katalogas turÄ—s keletÄ… svarbių bylų. Paspauskite ant kurios nors bylos ar katalogo medyje, kad gautumÄ—te daugiau informacijos apie tÄ… elementÄ….Å is teksto įvesties laukelis turi bÅ«ti ne ilgesnis kaip %d simbolių.Å is įrankis neturi nustatymų.SlenkstisSlenkstis neveikia indeksuotiems paveikslÄ—liams.Slenkstis:PeržiÅ«ra %d iÅ¡ %dPakrypimas:MažytisPavadinimas ir bÅ«senaÄ® _keliÄ…Pramo_gosPerjungti greitÄ… kaukÄ™Perjungti _greitÄ… kaukęĮrankių savybÄ—sÄ®rankių nustatymų meniuÄ®rankio perjungimas %sÄ®rankių _savybÄ—sÄ®rankių ženkliukaiÄ®rankių ženkliukai su kryželiuÄ®rankių dėžės meniuÄ®rankių dėžės meniuÄ®rankių dėžės meniuÄ®rankinÄ—Ä®rankių dėžės meniuPerm_atomumasTransformuoti alfa į kaukÄ™TransformuotiTransformuoti kanalÄ…Transformavimo kryptisTransformuoti sluoksnįTransformuoti kontÅ«rÄ…Transformuoti tekstinį sluoksnįTransformavimo Ä®rankių procedÅ«rosTransformuoti sluoksnįTransformuoti kontÅ«rÄ…Transformuoti pažymÄ—jimÄ…TransformavimasTransformavimo procedÅ«rosTransformuojama...VertÄ—SkaidrusSkaidrumo _tipas:TrikampÄ— bangaTikra spalvaTipasTipas %sNegalima pridÄ—ti sluoksnio kaukÄ—s, kadangi sluoksnis jau turi vienÄ….Neįmanoma iÅ¡kirpti/kopijuoti, nes pasirinktas regionas yra tuÅ¡Äias.NeapibrėžtasAtÅ¡auktiAtÅ¡aukimų istorijaAtÅ¡aukimų _istorijaMatavimo vienetaiNežinomasNežinomas bylos tipasNežinomas paletÄ—s bylos tipas: -%sIÅ¡keltiBevardisBevardisNaudoti dinamines _klavišų kombinacijasVietoj to naudoti web narÅ¡yklÄ™Naudoti juodÄ… ir baltÄ… (1 bito) paletÄ™Naudoti papildomÄ… paletÄ™Naudoti optimizuotÄ… internetui paletÄ™Vartotojo įdiegimo protokolasVartotojo sÄ…sajaReikÅ¡mÄ—ReikÅ¡mÄ—:VersijÄ… %s jums sukÅ«rÄ—:Versija:VertikaliaiVertikalus pirmos tinklelio linijos poslinkis. Jis gali bÅ«ti ir neigiamas.Atstumas tarp vertikalių grotelių linijų.Labai didelisLabai mažasVaizdasMatyti kaip _grotelesMatyti kaip _sÄ…raÅ¡Ä…Matyti kaip grotelesRodyti kaip sÄ…raÅ¡Ä…Regimoji klasÄ—:Regimasis gylis:Ä®spÄ—jimas: Nepavyko įkelti duomenų: - -%sÄ®spÄ—jimas: Nepavyko iÅ¡saugoti duomenų: - -%sInterneto narÅ¡yklÄ—Interneto narÅ¡yklÄ—Kai įjungta, meniu galima atplÄ—Å¡ti.Kai įjunga, klaviÅ¡u F1 iÅ¡kvieÄiama pagalbos narÅ¡yklÄ—.Kai įjungta, GIMP neiÅ¡saugos paveikslÄ—lio jei paveikslÄ—lis buvo pakeistas po atidarymo.Kai įjungta, GIMP naudoja skirtingus informacijos langus skirtingiems paveikslÄ—liamsKai įjungta, tinklelis yra matomas pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti tinklelį" komandÄ….Kai įjungta, pagalbinÄ—s linijos yra matomos pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti pagalbines linijas" komandÄ….Kai įjungta, sluoksnių ribos yra matomos pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti sluoksnių ribas" komandÄ….Kai įjungta, meniu juosta yra matoma pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti meniu juostÄ…" komandÄ….Kai įjungta, liniuotÄ—s yra matomos pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti liniuotes" komandÄ….Kai įjungta, slinkties juostos yra matoma pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti slinkties juostas" komandÄ….Kai įjungta, pažymÄ—jimai yra matomi pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti pažymÄ—jimÄ…" komandÄ….Kai įjungta, bÅ«senos juosta yra matoma pagal nutylÄ—jimÄ…. Tai galima taip pat perjungti naudojant "Vaizdas->Rodyti bÅ«senos juostÄ…" komandÄ….Kai įjungta, galite keisti klavišų kombinacijas meniu punktams spausdami pasirinktÄ… kombinacijÄ… kol pažymÄ—tas meniu punktasBaltasBaltas balansas veikia tik RGB spalvų sluoksniuose.PlotisPlotis:Langų valdymasLangų valdymasLango vietaÄ®raÅ¡inÄ—jama "%s" -XXCF klaida: nustatyta nepalaikoma XCF bylos versija %dXCF perspÄ—jimas: nulinÄ— XCF bylos formato -versija indeksuotų spalvynų teisingai neiÅ¡saugo. -KeÄiami pilkumo atspalvių spalvynu.YGeltonasGeltonas:Kad įsigaliotų sekantys pakeitimai, turÄ—site GIMP užkrauti iÅ¡ naujo:Didinimo ir dydžio keitimo elgsenaDidinimas 1:1Parodyti viskÄ…PadidintiSumažintiDidinimo koeficientasDidinimo koeficientas:Parodyti _viskÄ…Pa_didintiSu_mažintiParodyti viskÄ…Didinimo koeficientasr: %d:1PadidintiVaizdo didinimas ir mažinimasSumažintiDidinimas:[ Pagrindinis paveikslÄ—lis ]_ApieÄ®_kelti_PridÄ—ti spalvÄ… iÅ¡ fono_PridÄ—ti spalvÄ… iÅ¡ priekinio plano_PridÄ—ti kortelÄ™_PridÄ—ti prie pažymÄ—jimo_Dažų purkÅ¡tuvas_ViskÄ…_Pritvirtinti sluoksnįIÅ¡lyginimas_MeniÅ¡ki_Automatinis_B_Fono spalva_Fono spalva:_Juoda (visiÅ¡kas permatomumas)_PerÄ—jimo funkcija segmentui_PerÄ—jimo funkcija pažymÄ—jimui_SulietiÅ _viesumas:_Teptukas_Teptukai_Teptukai, raÅ¡tai ir perÄ—jimai_Užpildymas_Buferis_Pagal spalvÄ…_ŽymÄ—jimas pagal spalvÄ…_C_Kanalai_IÅ¡valyti klaidas_IÅ¡valyti atÅ¡aukimų istorijÄ…_Klonavimas_Uždaryti_Uždaryti kortelÄ™_Debesys_Spalvų įrankiai_Spalvos_KonfigÅ«ruoti spalvas ir nepermatomumÄ…..._KontekstinÄ— pagalba_KontekstinÄ— pagalba_Kopijuoti_Kopijuoti vardinį..._Sukurti paveikslÄ—lį iÅ¡ Å¡ablono..._Apkarpymas ir dydžio keitimas_Apkirpti paveikslÄ—lį_KreivÄ—s_KreivÄ—s_Tamsių tonų patikrinimasÄ®prast_osios spalvos_PaÅ¡alinti teptukÄ…_IÅ¡trinti buferį_IÅ¡trinti kanalÄ…_IÅ¡trinti spalvÄ…_Trinti perÄ—jimÄ…..._IÅ¡trinti paveikslÄ—lį_IÅ¡trinti sluoksnį_IÅ¡trinti paletÄ™_IÅ¡trinti keliÄ…_IÅ¡trinti raÅ¡tÄ…..._IÅ¡trinti iÅ¡saugotus nustatymus...IÅ¡_trinti segmentÄ…_IÅ¡trinti pažymÄ—jimÄ…_IÅ¡trinti Å¡ablonÄ…_Nusodrinti_Atkabinti kortelęĮren_ginio bÅ«sena_Dialogai_Panaikinti pakeitimus_Atsisakyti tekstinÄ—s informacijos_IÅ¡kraipymai_TaÅ¡kas į taÅ¡kÄ…_Padaryti kopijÄ…_Keisti_Keisti teptuko savybes..._Keisti kanalo savybes..._Keisti spalvÄ…..._Keistii perÄ—jimÄ…..._Keisti sluoksnio savybes..._Keisti paletÄ™...K_eisti kontÅ«ro savybes..._Keisti raÅ¡tus..._Keisti Å¡ablonÄ…..._Elipsinis pažymÄ—jimas_Ä®jungti sluoksnių ir kanalų peržiÅ«ras_MilžiniÅ¡kas_IÅ¡lyginti_Trintukas_Priekinio plano spalva_BylaUžpildyti su:_Priderinti paveikslÄ—lį prie lango_Su_jungti paveikslÄ—lio sluoksniusVeidrodinis vaizdasVeidrodinis segmento _vaizdas_Veidrodinis pažymÄ—jimo vaizdas_PlaukiojantisÅ ri_ftasÅ ri_ftai_Priekinio plano spalva:_Laisvas pažymÄ—jimas_G_Bendra_GigantiÅ¡kas_PerÄ—jimas_PerÄ—jimai_Pilkumo atspalviai_Nespalvota sluoksnio kopija_Padidinti..._PagalbinÄ—s linijos_Kietumas_PagalbaHorizontaliai:_Atspalvis:_Didžiulis_Ikona_Ikona:_PaveikslÄ—lis_PaveikslÄ—liai_Importuoti_Importuoti paletÄ™..._Indeksuotas..._Informacijos langas_Sankirta su pažymÄ—jimu_Invertuoti_Didelis_Sluoksniai_Sluoksniai_Sluoksniai, kanalai ir kontÅ«rai_Kairysis galinio taÅ¡kas_Kairiojo kaimyno deÅ¡inysis galinis taÅ¡kas_Lygiai..._Å viesių tonų patikrinimasÅ _viesos efektaiÅ _viesumas:_Linijos stilius_Linijinis_SusietaÄ®k_elti kairÄ™ spalvÄ… iÅ¡_Nuleisti kanalÄ…_Nuleisti sluoksnį_Nuleisti keliÄ…_MRa_nkiniu bÅ«duŽe_mÄ—lapis_KaukÄ—_Pritaikyti kaukÄ™ pažymÄ—jimui_Maksimalus spalvų skaiÄius:_Matuoti_Vidutinis_Su_jungti paletesÄ®va_irÅ«s įrankiai_Veiksena_Modulių tvarkyklÄ—_PerkeltiPavadinimas:_Gamta_Naujas teptukas_Naujas kanalas_Naujas kanalas..._Naujas įraÅ¡as..._Naujas perÄ—jimas_Naujas sluoksnis_Naujas sluoksnis..._Nauja paletÄ—_Naujas kelias_Naujas kelias..._Naujas raÅ¡tas_Naujas Å¡ablonas..._Naujas vaizdas_Nauja...Kitas patarimas_TriukÅ¡mas_Nieko_Poslinkis_Nepermatomumas_Atidaryti paveikslÄ—lį_Atidaryti..._Spalva aplink paveikslÄ—lį_PieÅ¡imo įrankiai_Teptukas_PaletÄ—Ä®_dÄ—tiÄ®_dÄ—ti buferįĮ_dÄ—ti iÅ¡ buferio vardu..._KontÅ«rai_RaÅ¡tas_Perspektyva_Spalvų sumažinimas..._Nustatymai_PeržiÅ«ra_PeržiÅ«ros dydisAnkstesnis patarimas_Spausdinimo dydis..._SavybÄ—s_greita kaukÄ— aktyvi_Baigti darbÄ…_R_RGB_Skersmuo_Pakelti kanalÄ…_Pakelti sluoksnį_Pakelti kontÅ«rÄ…_Pakelti vaizdus_Pakelti ar atidaryti paveikslÄ—lį_Keturkampis pažymÄ—jimas_Grąžinti_Grąžinti %s_Atnaujinti teptukus_Atnaujinti perÄ—jimus_Atnaujinti paletes_Atnaujinti raÅ¡tus_PaÅ¡alinti nenaudojamas spalvas iÅ¡ galutinÄ—s paletÄ—s_Perteikimas_Pakeisti_Padauginti segmentÄ…..._Padauginti pažymÄ—jimÄ…..._Perskanuoti Å¡riftų sÄ…raÅ¡Ä…_Atstatyti tvarkÄ… ir matomumÄ…_IÅ¡trinti iÅ¡saugotus sparÄiuosius klaviÅ¡us dabar_Užkrauti nustatymus iÅ¡..._DeÅ¡inysis galinis taÅ¡kas_DeÅ¡iniojo kaimyno kairysis galinis taÅ¡kas_Pasukimas_Sodrumas:IÅ¡_saugotiIÅ¡_saugoti kairÄ™ spalvÄ… į_IÅ¡saugotos savybÄ—s įIÅ¡saugoti įvesties įrenginių bÅ«senÄ… iÅ¡einant_IÅ¡saugoti sparÄiuosius klaviÅ¡us iÅ¡einant_IÅ¡saugoti langų pozicijas iÅ¡einant_Mastelis_Keisti paveikslÄ—lio dydį_Keisti sluoksnio dydį..._PažymÄ—ti_PažymÄ—jimas_PažymÄ—jimo savybių nustatymas_ŽymÄ—jimo įrankiai_Forma_PaaÅ¡trinti_Rodyti p_ažymÄ—jimÄ…_Rodyti įrankių dėžėje_Sinusoidinis_Mažas_IÅ¡tepimas_Sumažinti pažymÄ—jimÄ…_Apvesti pažymÄ—tas vietas..._Atimti iÅ¡ pažymÄ—jimo_KortelÄ—s stilius_Å ablonaiÅ a_blonai_Tekstas_Slenkstis..._Mažytis_Dienos patarimasÄ®_rankis_Ä®rankiai_Perkelti sluoksnio alfÄ… kanalÄ…_Transformuoti_Transformavimo įrankiai_AtÅ¡aukti_AtÅ¡aukti %sVertikaliai:_Vaizdas_Matomas_Tinklas_Naudojama interneto narÅ¡yklÄ—:_Balta (visiÅ¡kas nepermatomumas)_Baltas balansas_Plotis:X:_IÅ¡pl._Y_Y:_Vaizdo mastelis_Didinimas (%s)spalvoskopijataÅ¡kų colyjeloginiam požymiui %s laukta „yes“ arba „no“, bet gauta „%s“kritinÄ— analizavimo klaidapilkumo atspalviaipilkumo skalÄ—-tuÅ¡Äiacoliscoliaiindeksuotasindeksuotas-tuÅ¡ÄiasnekorektiÅ¡ka UTF-8 eilutÄ—nekorektiÅ¡ka „%ld“ reikÅ¡mÄ— žymei %snekorektiÅ¡ka „%s“ reikÅ¡mÄ— žymei %smilimetrasmilimetraiminutÄ—nÄ—raprocentastaÅ¡kelistaÅ¡keliaiTaÅ¡keliai/%ataÅ¡kai/%staÅ¡kastaÅ¡kaitips-locale:ltGiedrius NaudžiÅ«nas , -Žygimantas BeruÄka , -Linas Vasiliauskas , -Mantas KriauÄiÅ«nas , -EglÄ— KriauÄiÅ«nienÄ— , -Karina Gribanova žymÄ—s %s reikÅ¡mÄ— nÄ—ra UTF-8 eilutÄ—apdorojant žymÄ™ „%s“: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/Makefile.in.in gimp-2.2.9/po/Makefile.in.in --- gimp-2.2.8/po/Makefile.in.in 2005-01-25 23:56:20.000000000 +0100 +++ gimp-2.2.9/po/Makefile.in.in 2005-08-02 18:40:07.000000000 +0200 @@ -11,6 +11,11 @@ # # - Modified by jacob berkman to install # Makefile.in.in and po2tbl.sed.in for use with glib-gettextize +# +# - Modified by Rodney Dawes for use with intltool +# +# We have the following line for use by intltoolize: +# INTLTOOL_MAKEFILE GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ PACKAGE = @PACKAGE@ @@ -27,13 +32,13 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ +datarootdir = @datarootdir@ libdir = @libdir@ localedir = $(libdir)/locale gnulocaledir = $(datadir)/locale gettextsrcdir = $(datadir)/glib-2.0/gettext/po subdir = po install_sh = @install_sh@ -mkdir_p = @mkdir_p@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs INSTALL = @INSTALL@ @@ -61,7 +66,8 @@ POFILES = @POFILES@ GMOFILES = @GMOFILES@ DISTFILES = ChangeLog Makefile.in.in POTFILES.in \ -$(POFILES) $(GMOFILES) $(SOURCES) +$(POFILES) $(SOURCES) +EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS POTFILES = \ @@ -77,7 +83,7 @@ .po.pox: $(MAKE) $(GETTEXT_PACKAGE).pot - $(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox + $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox .po.mo: $(MSGFMT) -o $@ $< @@ -174,7 +180,7 @@ rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ fi -check: all +check: all $(GETTEXT_PACKAGE).pot dvi info tags TAGS ID: @@ -186,16 +192,21 @@ clean: mostlyclean distclean: clean - rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m + rm -f Makefile Makefile.in POTFILES + rm -f *.mo *.msg *.cat *.cat.m $(GMOFILES) maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." - rm -f $(GMOFILES) + rm -f Makefile.in.in distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) -dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot +dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ + extra_dists="$(EXTRA_DISTFILES)"; \ + for file in $$extra_dists; do \ + test -f $$file && dists="$$dists $$file"; \ + done; \ for file in $$dists; do \ ln $(srcdir)/$$file $(distdir) 2> /dev/null \ || cp -p $(srcdir)/$$file $(distdir); \ @@ -232,17 +243,13 @@ # and Intltool tags (enclosed in square brackets), and appending a full # relative path to them POTFILES: POTFILES.in - ( if test 'x$(srcdir)' != 'x.'; then \ - posrcprefix='$(top_srcdir)/'; \ - else \ - posrcprefix="../"; \ - fi; \ + ( posrcprefix='$(top_srcdir)/'; \ rm -f $@-t $@ \ - && (sed -e '/^#/d' \ - -e "s/^\[.*\] +//" \ - -e '/^[ ]*$$/d' \ - -e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \ - | sed -e '$$s/\\$$//') > $@-t \ + && (sed -e '/^#/d' \ + -e 's/^[[].*] *//' \ + -e '/^[ ]*$$/d' \ + -e "s@^@ $$posrcprefix@" $(srcdir)/$@.in \ + | sed -e '$$!s/$$/ \\/') > $@-t \ && chmod a-w $@-t \ && mv $@-t $@ ) diff -uraN gimp-2.2.8/po/mk.po gimp-2.2.9/po/mk.po --- gimp-2.2.8/po/mk.po 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po/mk.po 2005-01-08 02:31:50.000000000 +0100 @@ -0,0 +1,12257 @@ +# translation of gimp.new.mk.po to +# translation of gimp.new.mk.po to +# translation of gimp.new.mk.po to +# translation of gimp.new.mk.po to +# translation of mk.po to macedonian +# Macedonian translation of gimp +# Courtesy of mkde team (http://mkde.sourceforge.net/) -- 2004. +# +# This file is distributed under the same license as the gimp package. +# +# Maintainer: Владимир Стефанов +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# , 2004. +# +# +msgid "" +msgstr "" +"Project-Id-Version: gimp.new.mk\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-12-08 11:02+0100\n" +"PO-Revision-Date: 2004-12-12 21:21+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: KBabel 1.9\n" + +#: app/app_procs.c:144 +msgid "(This console window will close in ten seconds)\n" +msgstr "(Овој конзолен прозорец ќе биде затворен за деÑет Ñекунди)\n" + +#: app/app_procs.c:238 +msgid "" +"GIMP is not properly installed for the current user.\n" +"User installation was skipped because the '--no-interface' flag was used.\n" +"To perform user installation, run the GIMP without the '--no-interface' flag." +msgstr "" +"ГИМП не е иÑправно инÑталиран за тековниот кориÑник.\n" +"ИнÑталацијата за кориÑникот е преÑкочена бидејќе е кориÑтена '--no-" +"interface' заÑтавата.\n" +"За да Ñе изведе кориÑничка инÑталација, подигнете го GIMP без '--no-" +"interface' заÑтавата." + +#: app/app_procs.c:289 +#, c-format +msgid "" +"Unable to open a test swap file. To avoid data loss please check the " +"location and permissions of the swap directory defined in your Preferences " +"(currently \"%s\")." +msgstr "" +"Ðе можам да ја отворам пробната Ñвап датотека. За да избегнете губење на податоци, ве молиме " +"проверете ја локацијата и дозволите на Ñвап директориумот, кој е дефиниран во вашите Параметри. " +"(во моментов \"%s\")." + +#: app/app_procs.c:348 app/core/gimppalette-import.c:441 +#, c-format +msgid "Opening '%s' failed: %s" +msgstr "Отварањето на „%s“ не уÑпеа: %s" + +#: app/batch.c:85 +#, c-format +msgid "The batch interpreter '%s' is not available, batch mode disabled." +msgstr "Бач преведувачот '%s' не е доÑтапен, бач режимот е оневозможен." + +#: app/main.c:211 +msgid "" +"GIMP could not initialize the graphical user interface.\n" +"Make sure a proper setup for your display environment exists." +msgstr "" +"ГИМП не можеше да го иницијализира графичкиот Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð·Ð° кориÑникот.\n" +"Проверете дали поÑтојат правилни подеÑувања за вашиот екранÑки приказ." + +#: 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 +#, c-format +msgid "" +"\n" +"Invalid option \"%s\"\n" +msgstr "" +"\n" +"ÐеиÑправна опција \"%s\"\n" + +#: app/main.c:501 +msgid "GIMP version" +msgstr "ГИМП верзија" + +#: app/main.c:509 +#, c-format +msgid "" +"\n" +"Usage: %s [option ... ] [file ... ]\n" +"\n" +msgstr "" +"\n" +"Употреба: %s [опција ... ] [датотека ... ]\n" +"\n" + +#: app/main.c:511 +msgid "Options:\n" +msgstr "Опции:\n" + +#: app/main.c:512 +msgid " -h, --help Output this help.\n" +msgstr " -h, --help Прикажи го овој помошен текÑÑ‚.\n" + +#: app/main.c:513 +msgid " -v, --version Output version information.\n" +msgstr " -v, --version Прикажи информации за верзијата.\n" + +#: app/main.c:514 +msgid " --verbose Show startup messages.\n" +msgstr " --verbose Прикажи почетна порака.\n" + +#: app/main.c:515 +msgid "" +" --no-shm Do not use shared memory between GIMP and " +"plugins.\n" +msgstr "" +" --no-shm Ðе кориÑти делена меморија помеѓу ГИМП и " +"додатоците.\n" + +#: app/main.c:516 +msgid " --no-cpu-accel Do not use special CPU accelerations.\n" +msgstr " --no-cpu-accel Ðе кориÑти Ñпецијални убрзувања на процеÑорот.\n" + +#: app/main.c:517 +msgid "" +" -d, --no-data Do not load brushes, gradients, palettes, " +"patterns.\n" +msgstr " -d, --no-data Ðе вчитувај четки, премини, палети, моÑтри.\n" + +#: app/main.c:518 +msgid " -f, --no-fonts Do not load any fonts.\n" +msgstr " -f, --no-fonts Ðе вчитувај фонтови.\n" + +#: app/main.c:519 +msgid " -i, --no-interface Run without a user interface.\n" +msgstr " -i, --no-interface Подигни без кориÑничке интерфејÑ.\n" + +#: app/main.c:520 +msgid " --display Use the designated X display.\n" +msgstr " --display <екран> КориÑти го наведениот X екран.\n" + +#: app/main.c:521 +msgid " -s, --no-splash Do not show the startup window.\n" +msgstr " -s, --no-splash Ðе прикажувај почетен прозорец.\n" + +#: app/main.c:522 +msgid " --session Use an alternate sessionrc file.\n" +msgstr " --sesion <име> КориÑти друга датотека за ÑеÑијата.\n" + +#: app/main.c:523 +msgid " -g, --gimprc Use an alternate gimprc file.\n" +msgstr " -g, --gimprc КориÑти друга gimprc датотека.\n" + +#: app/main.c:524 +msgid " --system-gimprc Use an alternate system gimprc file.\n" +msgstr " --system-gimprc КориÑти друга ÑиÑтемÑка gimprc датотека.\n" + +#: app/main.c:525 +msgid " --dump-gimprc Output a gimprc file with default settings.\n" +msgstr "" +" --dump-gimprc ИÑпиши gimprc датотека Ñо Ñтандардните " +"подеÑувања.\n" + +#: 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 +msgid " --debug-handlers Enable non-fatal debugging signal handlers.\n" +msgstr "" +" --debug-handlers Вклучи ги не-фаталните ракувачи Ñо Ñигнали за " +"откривање на грешки.\n" + +#: app/main.c:528 +msgid "" +" --stack-trace-mode \n" +" Debugging mode for fatal signals.\n" +msgstr "" +" --stack-trace-mode \n" +" Режим на откривање на грешки за фатални Ñигнали.\n" + +#: app/main.c:530 +msgid "" +" --pdb-compat-mode \n" +" Procedural Database compatibility mode.\n" +msgstr "" +" --pdb-compat-mode \n" +" СоглаÑен режим за процедуралната база.\n" + +#: 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 +msgid " -b, --batch Process commands in batch mode.\n" +msgstr " -b, --batch <наредбе> Обработи ги наредбите во пакетен режим.\n" + +#: 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 +#, c-format +msgid "" +"The name of the directory holding the GIMP user configuration cannot be " +"converted to UTF-8: %s\n" +"\n" +"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." +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:2268 app/pdb/internal_procs.c:92 +msgid "Brushes" +msgstr "Четки" + +#: app/actions/actions.c:96 app/dialogs/dialogs.c:150 +msgid "Buffers" +msgstr "Бафери" + +#: app/actions/actions.c:99 app/dialogs/dialogs.c:163 +msgid "Channels" +msgstr "Канали" + +#: app/actions/actions.c:102 +msgid "Colormap Editor" +msgstr "Уредувач на мапа на боја" + +#: app/actions/actions.c:105 app/pdb/internal_procs.c:101 +msgid "Context" +msgstr "КонтекÑÑ‚" + +#: app/actions/actions.c:108 +msgid "Debug" +msgstr "Дебагирање" + +#: app/actions/actions.c:111 +msgid "Dialogs" +msgstr "Дијалози" + +#: app/actions/actions.c:114 +msgid "Dockable" +msgstr "Укотливо" + +#: app/actions/actions.c:117 app/dialogs/dialogs.c:152 +msgid "Document History" +msgstr "ИÑторијат на документот" + +#: app/actions/actions.c:120 app/core/core-enums.c:1040 +#: app/core/core-enums.c:1070 +msgid "Drawable" +msgstr "Цртливо" + +#: app/actions/actions.c:123 app/tools/tools-enums.c:144 +msgid "Edit" +msgstr "Уреди" + +#: app/actions/actions.c:126 app/dialogs/dialogs.c:131 +msgid "Error Console" +msgstr "Конзола за грешки" + +#: app/actions/actions.c:129 +msgid "File" +msgstr "Датотека" + +#. initialize the list of gimp fonts +#: app/actions/actions.c:132 app/core/gimp.c:872 app/dialogs/dialogs.c:146 +#: app/dialogs/preferences-dialog.c:2284 app/pdb/internal_procs.c:128 +msgid "Fonts" +msgstr "Фонтови" + +#: app/actions/actions.c:135 app/dialogs/dialogs.c:205 +msgid "Gradient Editor" +msgstr "Уредник за преливи" + +#. initialize the list of gimp gradients +#: app/actions/actions.c:138 app/core/gimp.c:868 app/dialogs/dialogs.c:142 +#: app/dialogs/preferences-dialog.c:2280 app/pdb/internal_procs.c:140 +msgid "Gradients" +msgstr "Преливи" + +#: app/actions/actions.c:141 +msgid "Help" +msgstr "Помош" + +#: app/actions/actions.c:144 app/pdb/internal_procs.c:149 +#: app/tools/tools-enums.c:176 +msgid "Image" +msgstr "Слика" + +#. list & grid views +#: app/actions/actions.c:147 app/dialogs/dialogs.c:136 +msgid "Images" +msgstr "Слики" + +#: app/actions/actions.c:150 app/dialogs/dialogs.c:159 +msgid "Layers" +msgstr "Слоеви" + +#: app/actions/actions.c:153 app/dialogs/dialogs.c:209 +msgid "Palette Editor" +msgstr "Уредник за палети" + +#. initialize the list of gimp palettes +#: app/actions/actions.c:156 app/core/gimp.c:864 app/dialogs/dialogs.c:144 +#: app/dialogs/preferences-dialog.c:2276 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:2272 app/pdb/internal_procs.c:185 +msgid "Patterns" +msgstr "ИÑечоци" + +#: app/actions/actions.c:162 app/dialogs/preferences-dialog.c:2288 +msgid "Plug-Ins" +msgstr "Додатоци" + +#: app/actions/actions.c:165 +msgid "QuickMask" +msgstr "БрзаМаÑка" + +#: app/actions/actions.c:168 +msgid "Select" +msgstr "Избери" + +#. initialize the template list +#: app/actions/actions.c:171 app/core/gimp.c:880 app/dialogs/dialogs.c:154 +msgid "Templates" +msgstr "моÑтри" + +#: app/actions/actions.c:174 +msgid "Text Editor" +msgstr "Уредувач на текÑÑ‚" + +#: app/actions/actions.c:177 app/dialogs/dialogs.c:123 +#: app/dialogs/preferences-dialog.c:1556 app/dialogs/preferences-dialog.c:1559 +#: app/gui/gui.c:410 +msgid "Tool Options" +msgstr "Опции на алатот" + +#: app/actions/actions.c:180 app/dialogs/dialogs.c:148 +msgid "Tools" +msgstr "Ðлати" + +#: app/actions/actions.c:183 app/dialogs/dialogs.c:167 +#: app/pdb/internal_procs.c:176 app/tools/gimpvectortool.c:160 +msgid "Paths" +msgstr "Патеки" + +#: app/actions/actions.c:186 +msgid "View" +msgstr "Преглед" + +#: app/actions/brushes-actions.c:43 +msgid "Brushes Menu" +msgstr "Мени за четки" + +#: app/actions/brushes-actions.c:47 +msgid "_New Brush" +msgstr "_Ðова четка" + +#: app/actions/brushes-actions.c:48 +msgid "New brush" +msgstr "Ðова четка" + +#: app/actions/brushes-actions.c:53 +msgid "D_uplicate Brush" +msgstr "Д_уплирај четка" + +#: app/actions/brushes-actions.c:54 +msgid "Duplicate brush" +msgstr "Д_уплирај четка" + +#: app/actions/brushes-actions.c:59 +msgid "_Delete Brush" +msgstr "_Избриши четка" + +#: app/actions/brushes-actions.c:60 +msgid "Delete brush" +msgstr "Избриши четка" + +#: app/actions/brushes-actions.c:65 +msgid "_Refresh Brushes" +msgstr "О_Ñвежи четки" + +#: app/actions/brushes-actions.c:66 +msgid "Refresh brushes" +msgstr "ОÑвежи четки" + +#: app/actions/brushes-actions.c:74 +msgid "_Edit Brush..." +msgstr "Из_мени четка..." + +#: app/actions/brushes-actions.c:75 +msgid "Edit brush" +msgstr "Измени четка..." + +#: app/actions/buffers-actions.c:42 +msgid "Buffers Menu" +msgstr "Мени за бафери" + +#: app/actions/buffers-actions.c:46 +msgid "_Paste Buffer" +msgstr "Ð’_метни бафер" + +#: app/actions/buffers-actions.c:47 +msgid "Paste the selected buffer" +msgstr "Вметни го избраниот филтер" + +#: app/actions/buffers-actions.c:52 +msgid "Paste Buffer _Into" +msgstr "Вме_тни бафер во" + +#: app/actions/buffers-actions.c:53 +msgid "Paste the selected buffer into the selection" +msgstr "Вметни го избраниот бафер во Ñелекцијата" + +#: app/actions/buffers-actions.c:58 +msgid "Paste Buffer as _New" +msgstr "Вметни го баферот како _Ðов" + +#: app/actions/buffers-actions.c:59 +msgid "Paste the selected buffer as new image" +msgstr "Вметни го избраниот бафер како нова Ñлика" + +#: app/actions/buffers-actions.c:64 +msgid "_Delete Buffer" +msgstr "Изб_риши бафер" + +#: app/actions/buffers-actions.c:65 +msgid "Delete the selected buffer" +msgstr "Избриши го избраниот бафер" + +#: app/actions/channels-actions.c:44 +msgid "Channels Menu" +msgstr "Мени за канали" + +#: app/actions/channels-actions.c:48 +msgid "_Edit Channel Attributes..." +msgstr "_Измени ÑвојÑтва на каналот..." + +#: app/actions/channels-actions.c:49 +msgid "Edit channel attributes" +msgstr "Измени ÑвојÑтва на каналот" + +#: app/actions/channels-actions.c:54 +msgid "_New Channel..." +msgstr "_Ðов канал..." + +#: app/actions/channels-actions.c:55 +msgid "New channel..." +msgstr "Ðов канал..." + +#: app/actions/channels-actions.c:60 +msgid "_New Channel" +msgstr "_Ðов канал" + +#: app/actions/channels-actions.c:61 +msgid "New channel with last values" +msgstr "Ðов канал Ñо поÑледните вредноÑти" + +#: app/actions/channels-actions.c:66 +msgid "D_uplicate Channel" +msgstr "_Дуплирај канал" + +#: app/actions/channels-actions.c:67 +msgid "Duplicate channel" +msgstr "Дуплирај канал" + +#: app/actions/channels-actions.c:72 +msgid "_Delete Channel" +msgstr "_Избриши канал" + +#: app/actions/channels-actions.c:73 app/core/core-enums.c:1088 +msgid "Delete channel" +msgstr "Избриши канал" + +#: app/actions/channels-actions.c:78 +msgid "_Raise Channel" +msgstr "_Подигни канал" + +#: app/actions/channels-actions.c:79 +msgid "Raise channel" +msgstr "Подигни канал" + +#: app/actions/channels-actions.c:84 +msgid "Raise Channel to _Top" +msgstr "Подигни го каналот на _врвот" + +#: app/actions/channels-actions.c:85 +msgid "Raise channel to top" +msgstr "Подигни го каналот на врвот" + +#: app/actions/channels-actions.c:90 +msgid "_Lower Channel" +msgstr "_Спушти канал" + +#: app/actions/channels-actions.c:91 +msgid "Lower channel" +msgstr "Спушти канал" + +#: app/actions/channels-actions.c:96 +msgid "Lower Channel to _Bottom" +msgstr "Спушти канал на _дно" + +#: app/actions/channels-actions.c:97 +msgid "Lower channel to bottom" +msgstr "Спушти канал на дно" + +#: app/actions/channels-actions.c:105 +msgid "Channel to Sele_ction" +msgstr "Ðаправи Ñелекција од каналот" + +#: 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 +msgid "_Add to Selection" +msgstr "_Додади во Ñелекција" + +#: app/actions/channels-actions.c:112 app/actions/vectors-actions.c:174 +msgid "Add" +msgstr "Додади" + +#: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 +#: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 +msgid "_Subtract from Selection" +msgstr "_Одземи од Ñелекција" + +#: app/actions/channels-actions.c:118 app/actions/vectors-actions.c:180 +#: app/widgets/gimpwidgets-constructors.c:69 +#: app/widgets/gimpwidgets-constructors.c:102 +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 +msgid "_Intersect with Selection" +msgstr "_ПреÑек Ñо Ñелекцијата" + +#: app/actions/channels-actions.c:124 app/actions/vectors-actions.c:186 +msgid "Intersect" +msgstr "ПреÑек" + +#: app/actions/channels-commands.c:86 app/actions/channels-commands.c:383 +msgid "Channel Attributes" +msgstr "СвојÑтва на каналот" + +#: app/actions/channels-commands.c:89 +msgid "Edit Channel Attributes" +msgstr "Измени ÑвојÑтва на каналот" + +#: app/actions/channels-commands.c:91 +msgid "Edit Channel Color" +msgstr "Измени боја на каналот" + +#: app/actions/channels-commands.c:92 app/actions/channels-commands.c:124 +msgid "Fill Opacity:" +msgstr "ÐепровидноÑÑ‚: " + +#: app/actions/channels-commands.c:117 app/actions/channels-commands.c:118 +#: app/actions/channels-commands.c:159 app/actions/channels-commands.c:163 +#: app/widgets/gimpchanneltreeview.c:256 +msgid "New Channel" +msgstr "Ðов канал" + +#: app/actions/channels-commands.c:121 +msgid "New Channel Options" +msgstr "Опции на новиот канал" + +#: app/actions/channels-commands.c:123 +msgid "New Channel Color" +msgstr "Боја на новиот канал" + +#: 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 +msgid "Channel to Selection" +msgstr "Ðаправи Ñелекција врз оÑнова на каналот" + +#: app/actions/colormap-editor-actions.c:43 +msgid "Colormap Menu" +msgstr "Мени на мапа на боја" + +#: app/actions/colormap-editor-actions.c:47 +#: app/actions/palette-editor-actions.c:47 +msgid "_Edit Color..." +msgstr "_Уреди боја..." + +#: 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 +msgid "_Add Color from FG" +msgstr "_Додади боја од иÑцртувањето" + +#: app/actions/colormap-editor-actions.c:57 +msgid "Add color from FG" +msgstr "Додади боја од иÑцртувањето" + +#: app/actions/colormap-editor-actions.c:62 +msgid "_Add Color from BG" +msgstr "_Додади боја од позадината" + +#: app/actions/colormap-editor-actions.c:63 +msgid "Add color from BG" +msgstr "Додади боја од позадината" + +#: app/actions/colormap-editor-commands.c:70 +#, c-format +msgid "Edit colormap entry #%d" +msgstr "Измени го внеÑот на мапата на бои #%d" + +#: app/actions/colormap-editor-commands.c:76 +msgid "Edit Colormap Entry" +msgstr "Измени Ð²Ð½ÐµÑ Ð½Ð° бојата на палетата" + +#: app/actions/context-actions.c:46 +msgid "_Context" +msgstr "_КонтекÑÑ‚" + +#: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 +#: app/actions/plug-in-actions.c:64 +msgid "_Colors" +msgstr "_Бои" + +#: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 +msgid "_Opacity" +msgstr "Ðепро_видноÑÑ‚" + +#: app/actions/context-actions.c:49 +msgid "Paint _Mode" +msgstr "_Режим на цртање" + +#: app/actions/context-actions.c:50 +msgid "_Tool" +msgstr "_Ðлат" + +#: app/actions/context-actions.c:51 app/dialogs/preferences-dialog.c:1598 +msgid "_Brush" +msgstr "_Четка:" + +#: app/actions/context-actions.c:52 app/actions/plug-in-actions.c:78 +#: app/dialogs/preferences-dialog.c:1601 +msgid "_Pattern" +msgstr "_МоÑтра" + +#: app/actions/context-actions.c:53 +msgid "_Palette" +msgstr "_Палета" + +#: app/actions/context-actions.c:54 app/dialogs/palette-import-dialog.c:219 +#: app/dialogs/preferences-dialog.c:1604 +msgid "_Gradient" +msgstr "_Прелив" + +#: app/actions/context-actions.c:55 +msgid "_Font" +msgstr "_Фонт" + +#: app/actions/context-actions.c:57 +msgid "_Shape" +msgstr "_Облик" + +#: app/actions/context-actions.c:58 +msgid "_Radius" +msgstr "_РадиуÑ" + +#: app/actions/context-actions.c:59 +msgid "S_pikes" +msgstr "_Шилци" + +#: app/actions/context-actions.c:60 +msgid "_Hardness" +msgstr "_ТврдоÑÑ‚" + +#: app/actions/context-actions.c:61 +msgid "_Aspect" +msgstr "_ОдноÑ" + +#: app/actions/context-actions.c:62 +msgid "A_ngle" +msgstr "Ð_гол" + +#: app/actions/context-actions.c:65 +msgid "_Default Colors" +msgstr "Предде_финирани бои" + +#: app/actions/context-actions.c:70 +msgid "S_wap Colors" +msgstr "_Замени бои" + +#: app/actions/data-commands.c:79 app/core/gimpimage.c:1283 +#: app/core/gimppalette-import.c:219 app/core/gimppalette.c:523 +#: app/core/gimppalette.c:634 app/dialogs/palette-import-dialog.c:684 +#: app/pdb/image_cmds.c:3760 +msgid "Untitled" +msgstr "Без наÑлов" + +#: app/actions/data-commands.c:149 +msgid "Delete Object" +msgstr "Избриши објект" + +#: 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 +msgid "_Dialogs" +msgstr "_Дијалози" + +#: app/actions/dialogs-actions.c:39 +msgid "Create New Doc_k" +msgstr "Ðаправи ново _Ñидро" + +#: app/actions/dialogs-actions.c:42 +msgid "_Layers, Channels & Paths" +msgstr "_Слоеви, канали и патеки" + +#: app/actions/dialogs-actions.c:47 +msgid "_Brushes, Patterns & Gradients" +msgstr "_Четки, моÑтри и преливи" + +#: app/actions/dialogs-actions.c:52 +msgid "_Misc. Stuff" +msgstr "_Разни работи" + +#: app/actions/dialogs-actions.c:57 +msgid "Tool_box" +msgstr "Кутија Ñо _збир од алатки" + +#: app/actions/dialogs-actions.c:65 +msgid "Tool _Options" +msgstr "_Опции на алатот" + +#: app/actions/dialogs-actions.c:70 +msgid "_Device Status" +msgstr "СоÑтојба на _уредите" + +#: app/actions/dialogs-actions.c:75 +msgid "_Layers" +msgstr "_Слоеви" + +#: app/actions/dialogs-actions.c:80 +msgid "_Channels" +msgstr "_Канали" + +#: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 +msgid "_Paths" +msgstr "_Патеки" + +#: app/actions/dialogs-actions.c:90 +msgid "Color_map" +msgstr "_Мапа на боја" + +#: app/actions/dialogs-actions.c:95 +msgid "Histogra_m" +msgstr "_ХиÑтограм" + +#: app/actions/dialogs-actions.c:100 +msgid "_Selection Editor" +msgstr "Уредник на Ñе_лекција" + +#: app/actions/dialogs-actions.c:105 +msgid "Na_vigation" +msgstr "_Ðавигација" + +#: app/actions/dialogs-actions.c:110 +msgid "Undo _History" +msgstr "_ИÑторијат на поништувањето" + +#: app/actions/dialogs-actions.c:115 +msgid "Colo_rs" +msgstr "Бо_и" + +#: app/actions/dialogs-actions.c:120 +msgid "_Brushes" +msgstr "_Четки" + +#: app/actions/dialogs-actions.c:125 +msgid "P_atterns" +msgstr "_моÑтри" + +#: app/actions/dialogs-actions.c:130 +msgid "_Gradients" +msgstr "_Преливи" + +#: app/actions/dialogs-actions.c:135 +msgid "Pal_ettes" +msgstr "Па_лети" + +#: app/actions/dialogs-actions.c:140 +msgid "_Fonts" +msgstr "_Фонтови" + +#: app/actions/dialogs-actions.c:145 +msgid "B_uffers" +msgstr "_Бафери" + +#: app/actions/dialogs-actions.c:150 +msgid "_Images" +msgstr "_Слики" + +#: app/actions/dialogs-actions.c:155 +msgid "Document Histor_y" +msgstr "_ИÑторијат на документот" + +#: app/actions/dialogs-actions.c:160 +msgid "_Templates" +msgstr "_Шаблони" + +#: app/actions/dialogs-actions.c:165 +msgid "T_ools" +msgstr "Ð_лати" + +#: app/actions/dialogs-actions.c:170 +msgid "Error Co_nsole" +msgstr "Конзола за _грешки" + +#: app/actions/dialogs-actions.c:180 +msgid "_Preferences" +msgstr "_ПоÑтавки" + +#: app/actions/dialogs-actions.c:185 +msgid "_Module Manager" +msgstr "Управувач Ñо _модули" + +#: app/actions/dialogs-actions.c:190 +msgid "_Tip of the Day" +msgstr "Совет на _денот" + +#: app/actions/dialogs-actions.c:195 +msgid "_About" +msgstr "_За" + +#: app/actions/dockable-actions.c:49 +msgid "Dialogs Menu" +msgstr "Мени за дијалози" + +#: app/actions/dockable-actions.c:53 +msgid "_Add Tab" +msgstr "Додади _картица" + +#: app/actions/dockable-actions.c:54 +msgid "_Preview Size" +msgstr "Го_лемина на прегледот" + +#: app/actions/dockable-actions.c:55 +msgid "_Tab Style" +msgstr "Стил на кар_тицата" + +#: app/actions/dockable-actions.c:58 +msgid "_Close Tab" +msgstr "_Затвори картица" + +#: app/actions/dockable-actions.c:63 +msgid "_Detach Tab" +msgstr "Од_вои картица" + +#: app/actions/dockable-actions.c:68 +msgid "M_ove to Screen..." +msgstr "Пре_фрли на екран..." + +#: app/actions/dockable-actions.c:76 +msgid "_Show Image Selection" +msgstr "Прика_жи ја Ñелекцијата на Ñликата" + +#: app/actions/dockable-actions.c:82 +msgid "Auto _Follow Active Image" +msgstr "ÐвтоматÑки Ñ_леди ја активната Ñлика" + +#: app/actions/dockable-actions.c:101 +msgid "_Tiny" +msgstr "_Малечки" + +#: app/actions/dockable-actions.c:102 +msgid "E_xtra Small" +msgstr "Ðœ_ногу малечки" + +#: app/actions/dockable-actions.c:103 +msgid "_Small" +msgstr "_Мали" + +#: app/actions/dockable-actions.c:104 +msgid "_Medium" +msgstr "_Средни" + +#: app/actions/dockable-actions.c:105 +msgid "_Large" +msgstr "_Големи" + +#: app/actions/dockable-actions.c:106 +msgid "Ex_tra Large" +msgstr "Многу големи" + +#: app/actions/dockable-actions.c:107 +msgid "_Huge" +msgstr "_Огромни" + +#: app/actions/dockable-actions.c:108 +msgid "_Enormous" +msgstr "_Ðенормално големи" + +#: app/actions/dockable-actions.c:109 +msgid "_Gigantic" +msgstr "_ГигантÑки" + +#: app/actions/dockable-actions.c:114 +msgid "_Icon" +msgstr "И_кона" + +#: app/actions/dockable-actions.c:115 +msgid "Current _Status" +msgstr "Тековна _ÑоÑтојба" + +#: app/actions/dockable-actions.c:116 +msgid "_Text" +msgstr "_ТекÑÑ‚" + +#: app/actions/dockable-actions.c:117 +msgid "I_con & Text" +msgstr "_Икона и текÑÑ‚" + +#: app/actions/dockable-actions.c:118 +msgid "St_atus & Text" +msgstr "С_оÑтојба и текÑÑ‚" + +#: app/actions/dockable-actions.c:127 +msgid "View as _List" +msgstr "Преглед во вид на _лиÑта" + +#: app/actions/dockable-actions.c:132 +msgid "View as _Grid" +msgstr "Преглед во вид на _мрежа" + +#: app/actions/documents-actions.c:42 +msgid "Documents Menu" +msgstr "Мени за документи" + +#: app/actions/documents-actions.c:46 +msgid "_Open Image" +msgstr "_Отвори Ñлика" + +#: app/actions/documents-actions.c:47 +msgid "Open the selected entry" +msgstr "Отвори го избраниот внеÑ" + +#: app/actions/documents-actions.c:52 +msgid "_Raise or Open Image" +msgstr "Поди_гни или отвори Ñлика" + +#: app/actions/documents-actions.c:53 +msgid "Raise window if already open" +msgstr "Подигни прозорец ако е веќе отворен" + +#: app/actions/documents-actions.c:58 +msgid "File Open _Dialog" +msgstr "Прозорче за отварање на _датотека" + +#: app/actions/documents-actions.c:59 +msgid "Open image dialog" +msgstr "Дијалог за отворање Ñлика" + +#: app/actions/documents-actions.c:64 +msgid "Remove _Entry" +msgstr "ОтÑтрани _внеÑ" + +#: app/actions/documents-actions.c:65 +msgid "Remove the selected entry" +msgstr "ОтÑтрани го избраниот внеÑ" + +#: app/actions/documents-actions.c:70 +msgid "Recreate _Preview" +msgstr "Повторно направи пре_глед" + +#: app/actions/documents-actions.c:71 +msgid "Recreate preview" +msgstr "Повторно направи преглед" + +#: app/actions/documents-actions.c:76 +msgid "Reload _all Previews" +msgstr "Повторно вчитај ги _Ñите прегледи" + +#: app/actions/documents-actions.c:77 +msgid "Reload all previews" +msgstr "Повторно вчитај ги Ñите прегледи" + +#: app/actions/documents-actions.c:82 +msgid "Remove Dangling E_ntries" +msgstr "ОтÑтрани непотребни в_неÑови" + +#: app/actions/documents-actions.c:83 +msgid "Remove dangling entries" +msgstr "ОтÑтрани непотребни внеÑови" + +#: app/actions/documents-commands.c:252 app/actions/file-commands.c:163 +#: app/dialogs/file-open-dialog.c:198 app/dialogs/file-open-dialog.c:249 +#: app/dialogs/file-open-location-dialog.c:193 +#: app/display/gimpdisplayshell-dnd.c:332 app/widgets/gimplayertreeview.c:802 +#: app/widgets/gimptoolbox-dnd.c:123 +#, c-format +msgid "" +"Opening '%s' failed:\n" +"\n" +"%s" +msgstr "" +"Отварањето на „%s“ не уÑпеа:\n" +"\n" +"%s" + +#: app/actions/drawable-actions.c:45 +msgid "_Desaturate" +msgstr "ОÑирома_ши" + +#: app/actions/drawable-actions.c:50 +msgid "_Equalize" +msgstr "_Изедначи" + +#: app/actions/drawable-actions.c:55 +msgid "In_vert" +msgstr "И_нвертирај" + +#: app/actions/drawable-actions.c:60 +msgid "_White Balance" +msgstr "_Бел баланÑ" + +#: app/actions/drawable-actions.c:65 +msgid "_Offset..." +msgstr "_ОфÑет..." + +#: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 +msgid "_Linked" +msgstr "_Поврзано" + +#: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 +msgid "_Visible" +msgstr "_Видливо" + +#: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 +msgid "Flip _Horizontally" +msgstr "Заврти _хоризонтално" + +#: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 +msgid "Flip _Vertically" +msgstr "Заврти _вертикално" + +#. please use the degree symbol in the translation +#: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 +msgid "Rotate 90 degrees _CW" +msgstr "Ротирај 90 Ñтепени во _наÑока на Ñказалките на чаÑовникот" + +#: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 +msgid "Rotate _180 degrees" +msgstr "Ротирај _180 Ñтепени" + +#: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 +msgid "Rotate 90 degrees CC_W" +msgstr "Ротирај за 90 Ñтепени Ñ_противно од Ñказалките" + +#: app/actions/drawable-commands.c:58 +msgid "Desaturate operates only on RGB color layers." +msgstr "Смалување на заÑитеноÑта на бои, работи Ñамо во RGB Ñлоевите на бои." + +#: app/actions/drawable-commands.c:76 +msgid "Equalize does not operate on indexed layers." +msgstr "Изедначувањето на тоновите не работи кај индекÑираните Ñлоеви." + +#: app/actions/drawable-commands.c:94 +msgid "Invert does not operate on indexed layers." +msgstr "Превртувањето на бои не работи на индекÑираните Ñлоеви." + +#: app/actions/drawable-commands.c:114 +msgid "White Balance operates only on RGB color layers." +msgstr "Белиот Ð±Ð°Ð»Ð°Ð½Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ð¸ Ñамо за Ñлоеви во RGB бои." + +#: app/actions/edit-actions.c:61 +msgid "_Edit" +msgstr "_Уреди" + +#: app/actions/edit-actions.c:62 +msgid "_Buffer" +msgstr "_Бафер" + +#: app/actions/edit-actions.c:65 app/actions/edit-actions.c:225 +msgid "_Undo" +msgstr "_Поништи" + +#: 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:226 +msgid "_Redo" +msgstr "_Врати" + +#: app/actions/edit-actions.c:72 +msgid "Redo" +msgstr "Врати" + +#: app/actions/edit-actions.c:77 +msgid "_Clear Undo History" +msgstr "ИÑ_чиÑти го иÑторијатот на поништувањето" + +#: app/actions/edit-actions.c:78 +msgid "Clear undo history..." +msgstr "ИÑчиÑти иÑторијат на поништувањето..." + +#: app/actions/edit-actions.c:83 +msgid "Cu_t" +msgstr "ИÑе_чи" + +#: app/actions/edit-actions.c:88 +msgid "_Copy" +msgstr "_Копирај" + +#: app/actions/edit-actions.c:93 +msgid "_Paste" +msgstr "_Вметни" + +#: app/actions/edit-actions.c:98 +msgid "Paste _Into" +msgstr "Вметни в_о" + +#: app/actions/edit-actions.c:103 +msgid "Paste as _New" +msgstr "Вметни како _ново" + +#: app/actions/edit-actions.c:108 +msgid "Cu_t Named..." +msgstr "_ИÑечи именувано..." + +#: app/actions/edit-actions.c:113 +msgid "_Copy Named..." +msgstr "Ко_пирај именувано..." + +#: app/actions/edit-actions.c:118 +msgid "_Paste Named..." +msgstr "Ð’_метни именувано..." + +#: app/actions/edit-actions.c:123 +msgid "Cl_ear" +msgstr "ИÑ_чиÑти" + +#: app/actions/edit-actions.c:131 +msgid "Fill with _FG Color" +msgstr "Пополни Ñо _тековната боја на четката" + +#: app/actions/edit-actions.c:136 +msgid "Fill with B_G Color" +msgstr "Пополни Ñо бојата на _позадината" + +#: app/actions/edit-actions.c:141 +msgid "Fill with P_attern" +msgstr "Пополни Ñо _моÑтра" + +#: app/actions/edit-actions.c:209 +#, c-format +msgid "_Undo %s" +msgstr "_Поништи %s" + +#: app/actions/edit-actions.c:214 +#, c-format +msgid "_Redo %s" +msgstr "_Врати %s" + +#: app/actions/edit-commands.c:104 +msgid "Clear Undo History" +msgstr "ИÑчиÑти иÑторијат на поништувањето" + +#: app/actions/edit-commands.c:122 +msgid "Really clear image's undo history?" +msgstr "ÐавиÑтина да го иÑчиÑтам иÑторијатот на понуштување на Ñликата?" + +#: app/actions/edit-commands.c:199 +msgid "Cut Named" +msgstr "ИÑечи именувано" + +#: app/actions/edit-commands.c:202 app/actions/edit-commands.c:222 +msgid "Enter a name for this buffer" +msgstr "ВнеÑи име за овој бафер" + +#: app/actions/edit-commands.c:219 +msgid "Copy Named" +msgstr "Копирај именувано" + +#: app/actions/edit-commands.c:326 +msgid "There is no active layer or channel to cut from." +msgstr "Ðема активен Ñлој или канал од кој би иÑекол." + +#: app/actions/edit-commands.c:338 app/actions/edit-commands.c:375 +msgid "(Unnamed Buffer)" +msgstr "(Ðеименуван бафер)" + +#: app/actions/edit-commands.c:363 +msgid "There is no active layer or channel to copy from." +msgstr "Ðема активен Ñлој или канал од кој би копирал." + +#: app/actions/error-console-actions.c:40 +msgid "Error Console Menu" +msgstr "Мени на конзолата за грешки" + +#: app/actions/error-console-actions.c:44 +msgid "_Clear Errors" +msgstr "_ИÑчиÑти грешки" + +#: app/actions/error-console-actions.c:45 +msgid "Clear errors" +msgstr "ИÑчиÑти ги грешките" + +#: app/actions/error-console-actions.c:53 +msgid "Save _All Errors to File..." +msgstr "За_чувај ги Ñите грешки во датотеката..." + +#: app/actions/error-console-actions.c:54 +msgid "Save all errors" +msgstr "Зачувај ги Ñите грешки" + +#: app/actions/error-console-actions.c:59 +msgid "Save _Selection to File..." +msgstr "Зачувај ја _Ñелекцијата во датотека..." + +#: app/actions/error-console-actions.c:60 +msgid "Save selection" +msgstr "Зачувај ја Ñелекцијата" + +#: app/actions/error-console-commands.c:69 +msgid "Cannot save. Nothing is selected." +msgstr "Ðе можам да зачувам. Ðишто не е изберено." + +#: app/actions/error-console-commands.c:80 +msgid "Save Error Log to File" +msgstr "Зачувај дневник на грешки во датотека" + +#: app/actions/error-console-commands.c:132 +#, c-format +msgid "" +"Error writing file '%s':\n" +"%s" +msgstr "" +"Грешка при пишувањето во датотеката „%s“:\n" +"%s" + +#: app/actions/file-actions.c:61 +msgid "_File" +msgstr "_Датотека" + +#: app/actions/file-actions.c:62 +msgid "Open _Recent" +msgstr "Отвори _поÑледни" + +#: app/actions/file-actions.c:63 +msgid "_Acquire" +msgstr "При_бави" + +#: app/actions/file-actions.c:66 app/actions/file-actions.c:71 +msgid "_Open..." +msgstr "_Отвори..." + +#: app/actions/file-actions.c:76 +msgid "Op_en as Layer..." +msgstr "О_твори како Ñлој..." + +#: app/actions/file-actions.c:81 +msgid "Open _Location..." +msgstr "Отвори _локација..." + +#: app/actions/file-actions.c:86 +msgid "_Save" +msgstr "_Зачувај" + +#: app/actions/file-actions.c:91 +msgid "Save _as..." +msgstr "Зачувај к_ако..." + +#: app/actions/file-actions.c:96 +msgid "Save a Cop_y..." +msgstr "Зачувај к_опија..." + +#: app/actions/file-actions.c:101 +msgid "Save as _Template..." +msgstr "Зачувај како _шаблон..." + +#: app/actions/file-actions.c:106 +msgid "Re_vert..." +msgstr "По_врати..." + +#: app/actions/file-actions.c:111 +msgid "_Quit" +msgstr "_Ðапушти" + +#: app/actions/file-commands.c:208 app/dialogs/file-save-dialog.c:249 +#, c-format +msgid "" +"Saving '%s' failed:\n" +"\n" +"%s" +msgstr "" +"Зачувувањето на „%s“ не уÑпеа:\n" +"\n" +"%s" + +#: app/actions/file-commands.c:231 app/dialogs/file-save-dialog.c:77 +msgid "Save Image" +msgstr "Зачувај Ñлика" + +#: app/actions/file-commands.c:247 +msgid "Save a Copy of the Image" +msgstr "Зачувај копија на Ñликата" + +#: app/actions/file-commands.c:258 +msgid "Create New Template" +msgstr "Ðаправи нова моÑтра" + +#: app/actions/file-commands.c:262 +msgid "Enter a name for this template" +msgstr "ВнеÑи име за оваа моÑтра" + +#: app/actions/file-commands.c:284 +msgid "Revert failed. No file name associated with this image." +msgstr "" +"Враќањето во првобитната ÑоÑтојба не уÑпеа. Ðиедна датотека не е поврзана Ñо " +"оваа Ñлика." + +#: app/actions/file-commands.c:296 +msgid "Revert Image" +msgstr "Врати ја Ñликата во првобитен облик" + +#: app/actions/file-commands.c:317 +#, c-format +msgid "Revert '%s' to '%s'?" +msgstr "Да повратам од '%s' во '%s'?" + +#: app/actions/file-commands.c:323 +msgid "" +"By reverting the image to the state saved on disk, you will lose all " +"changes, including all undo information." +msgstr "" +"Со враќање на Ñликата во ÑоÑтојбата која е зачувана на диÑкот, ќе ги изгубите Ñите промени, " +"вклучително и Ñите информации за поништување." + +#: app/actions/file-commands.c:372 +msgid "Open Image as Layer" +msgstr "Отвори Ñлика како Ñлој" + +#: app/actions/file-commands.c:377 app/dialogs/file-open-dialog.c:74 +msgid "Open Image" +msgstr "Отвори Ñлика" + +#: app/actions/file-commands.c:444 +msgid "(Unnamed Template)" +msgstr "(Ðеименувана моÑтра)" + +#: app/actions/file-commands.c:493 +#, c-format +msgid "" +"Reverting to '%s' failed:\n" +"\n" +"%s" +msgstr "" +"Враќањето на „%s“ не уÑпеа:\n" +"\n" +"%s" + +#: app/actions/fonts-actions.c:44 +msgid "Fonts Menu" +msgstr "Мени за фонтови" + +#: app/actions/fonts-actions.c:48 +msgid "_Rescan Font List" +msgstr "О_бнови го ÑпиÑокот на фонтови" + +#: app/actions/fonts-actions.c:49 +msgid "Rescan font list" +msgstr "Повторно прегледај го ÑпиÑокот на фонтови" + +#: app/actions/gradient-editor-actions.c:46 +msgid "Gradient Editor Menu" +msgstr "Мени на уредувачот на преливи" + +#: app/actions/gradient-editor-actions.c:50 +msgid "_Load Left Color From" +msgstr "_Вчитај боја на левата крајна точка од" + +#: app/actions/gradient-editor-actions.c:52 +msgid "_Save Left Color To" +msgstr "_Зачувај ја левата боја во" + +#: app/actions/gradient-editor-actions.c:55 +msgid "Load Right Color Fr_om" +msgstr "Вчитај ја бојата на деÑната точка _од" + +#: app/actions/gradient-editor-actions.c:57 +msgid "Sa_ve Right Color To" +msgstr "Зач_увај ја деÑната боја во" + +#: app/actions/gradient-editor-actions.c:63 +msgid "L_eft Endpoint's Color..." +msgstr "Боја на _левата крајна точка..." + +#: app/actions/gradient-editor-actions.c:68 +msgid "R_ight Endpoint's Color..." +msgstr "Боја на де_Ñната крајна точка..." + +#: app/actions/gradient-editor-actions.c:108 +msgid "Ble_nd Endpoints' Colors" +msgstr "Бои на крајните точки при Ñтоп_увањето" + +#: app/actions/gradient-editor-actions.c:113 +msgid "Blend Endpoints' Opacit_y" +msgstr "ÐепровидноÑÑ‚ на крајните точки при Ñто_пувањето" + +#: app/actions/gradient-editor-actions.c:143 +msgid "_Left Neighbor's Right Endpoint" +msgstr "ДеÑна крајна точка на _левиот ÑоÑед" + +#: app/actions/gradient-editor-actions.c:148 +msgid "_Right Endpoint" +msgstr "Боја на крајната деÑна точка" + +#: app/actions/gradient-editor-actions.c:153 +#: app/actions/gradient-editor-actions.c:201 +msgid "_FG Color" +msgstr "Боja на _четката" + +#: app/actions/gradient-editor-actions.c:158 +#: app/actions/gradient-editor-actions.c:206 +msgid "_BG Color" +msgstr "Боја на _позадината" + +#: app/actions/gradient-editor-actions.c:191 +msgid "_Right Neighbor's Left Endpoint" +msgstr "Левата крајна точка на _деÑниот ÑоÑед" + +#: app/actions/gradient-editor-actions.c:196 +msgid "_Left Endpoint" +msgstr "Боја на крајната _лева точка" + +#: app/actions/gradient-editor-actions.c:245 +msgid "_Linear" +msgstr "_ЛинијÑки" + +#: app/actions/gradient-editor-actions.c:250 +msgid "_Curved" +msgstr "_Кривини" + +#: app/actions/gradient-editor-actions.c:255 +msgid "_Sinusoidal" +msgstr "_СинуÑоидни" + +#: app/actions/gradient-editor-actions.c:260 +msgid "Spherical (i_ncreasing)" +msgstr "Сферична (зголе_мувачка)" + +#: app/actions/gradient-editor-actions.c:265 +msgid "Spherical (_decreasing)" +msgstr "Сферична (_намалувачка)" + +#: app/actions/gradient-editor-actions.c:270 +#: app/actions/gradient-editor-actions.c:293 +msgid "(Varies)" +msgstr "(Варира)" + +#: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 +msgid "_RGB" +msgstr "_RGB" + +#: app/actions/gradient-editor-actions.c:283 +msgid "HSV (_counter-clockwise hue)" +msgstr "HSV (_Ñпротивно од Ñказалките на чаÑовникот)" + +#: app/actions/gradient-editor-actions.c:288 +msgid "HSV (clockwise _hue)" +msgstr "HSV (во правец на Ñтрелките на чаÑовникот)" + +#: 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 +msgid "Zoom in" +msgstr "Зголеми" + +#: 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 +msgid "Zoom out" +msgstr "Ðамали" + +#: 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 +msgid "Zoom all" +msgstr "Зголеми Ñе" + +#: app/actions/gradient-editor-actions.c:582 +msgid "_Blending Function for Segment" +msgstr "Функција на _Ñтопување за Ñегмент" + +#: app/actions/gradient-editor-actions.c:584 +msgid "Coloring _Type for Segment" +msgstr "_Тип на боење на Ñегментот" + +#: app/actions/gradient-editor-actions.c:587 +msgid "_Flip Segment" +msgstr "_Заврти Ñегмент" + +#: app/actions/gradient-editor-actions.c:589 +msgid "_Replicate Segment..." +msgstr "_Дуплирај Ñегмент..." + +#: app/actions/gradient-editor-actions.c:591 +msgid "Split Segment at _Midpoint" +msgstr "Подели го Ñегментот на Ñ_редина" + +#: app/actions/gradient-editor-actions.c:593 +msgid "Split Segment _Uniformly..." +msgstr "Подели го Ñегментот _рамномерно..." + +#: app/actions/gradient-editor-actions.c:595 +msgid "_Delete Segment" +msgstr "_Избриши го Ñегментот" + +#: app/actions/gradient-editor-actions.c:597 +msgid "Re-_center Segment's Midpoint" +msgstr "Повторно _центрирај ја Ñредната точка на Ñегментот" + +#: app/actions/gradient-editor-actions.c:599 +msgid "Re-distribute _Handles in Segment" +msgstr "Повторно поÑтави _рачки на Ñегментот" + +#: app/actions/gradient-editor-actions.c:604 +msgid "_Blending Function for Selection" +msgstr "Функции на _Ñтопување за Ñелекција" + +#: app/actions/gradient-editor-actions.c:606 +msgid "Coloring _Type for Selection" +msgstr "_Тип на боење на Ñелекцијата" + +#: app/actions/gradient-editor-actions.c:609 +msgid "_Flip Selection" +msgstr "_Заврти ја Ñелекцијата" + +#: app/actions/gradient-editor-actions.c:611 +msgid "_Replicate Selection..." +msgstr "_Дуплирај ја Ñелекцијата..." + +#: app/actions/gradient-editor-actions.c:613 +msgid "Split Segments at _Midpoints" +msgstr "Подели ги Ñегментите на по_ловините" + +#: app/actions/gradient-editor-actions.c:615 +msgid "Split Segments _Uniformly..." +msgstr "Подели ги Ñегментите _рамномерно..." + +#: app/actions/gradient-editor-actions.c:617 +msgid "_Delete Selection" +msgstr "_Избриши ја Ñелекцијата" + +#: app/actions/gradient-editor-actions.c:619 +msgid "Re-_center Midpoints in Selection" +msgstr "Повторно _центрирај ја Ñредишната точка во Ñелекцијата" + +#: app/actions/gradient-editor-actions.c:621 +msgid "Re-distribute _Handles in Selection" +msgstr "Повторно поÑтави ги _рачките во Ñелекцијата" + +#: app/actions/gradient-editor-commands.c:84 +msgid "Left Endpoint Color" +msgstr "Боја на крајната лева тачка" + +#: app/actions/gradient-editor-commands.c:86 +msgid "Gradient Segment's Left Endpoint Color" +msgstr "Боја на крајната лева точка на преливниот Ñегмент" + +#: app/actions/gradient-editor-commands.c:186 +msgid "Right Endpoint Color" +msgstr "Боја на крајната деÑна точка" + +#: app/actions/gradient-editor-commands.c:188 +msgid "Gradient Segment's Right Endpoint Color" +msgstr "Боја на крајната деÑна точка на преливниот Ñегмент" + +#: app/actions/gradient-editor-commands.c:353 +msgid "Replicate Segment" +msgstr "Дуплирај го Ñегментот" + +#: app/actions/gradient-editor-commands.c:354 +msgid "Replicate Gradient Segment" +msgstr "Дуплирај го преливниот Ñегмент" + +#: app/actions/gradient-editor-commands.c:358 +msgid "Replicate Selection" +msgstr "Дуплирај Селекција" + +#: app/actions/gradient-editor-commands.c:359 +msgid "Replicate Gradient Selection" +msgstr "Дуплирај преливну Ñелекција" + +#: app/actions/gradient-editor-commands.c:371 +msgid "Replicate" +msgstr "Дуплирај" + +#: app/actions/gradient-editor-commands.c:386 +msgid "" +"Select the number of times\n" +"to replicate the selected segment." +msgstr "" +"Изберете број на дупликати\n" +"на избраниот Ñегмент." + +#: app/actions/gradient-editor-commands.c:389 +msgid "" +"Select the number of times\n" +"to replicate the selection." +msgstr "" +"Изберете број на дупликати\n" +"на Ñелекцијата." + +#: app/actions/gradient-editor-commands.c:444 +msgid "Split Segment Uniformly" +msgstr "Поддели го Ñегментот рамномерно" + +#: app/actions/gradient-editor-commands.c:445 +msgid "Split Gradient Segment Uniformly" +msgstr "Подели го преливниот Ñегмент рамномерно" + +#: app/actions/gradient-editor-commands.c:449 +msgid "Split Segments Uniformly" +msgstr "Подели го Ñегментот рамномерно" + +#: app/actions/gradient-editor-commands.c:450 +msgid "Split Gradient Segments Uniformly" +msgstr "Подели го преливниот Ñегмент рамномерно" + +#: app/actions/gradient-editor-commands.c:462 +msgid "Split" +msgstr "Подели" + +#: app/actions/gradient-editor-commands.c:478 +msgid "" +"Select the number of uniform parts\n" +"in which to split the selected segment." +msgstr "" +"Изберете го бројот на иÑтоветни делови\n" +"на кои Ñакате да го поделите избраниот Ñегмент." + +#: app/actions/gradient-editor-commands.c:481 +msgid "" +"Select the number of uniform parts\n" +"in which to split the segments in the selection." +msgstr "" +"Изберете го бројот на иÑтоветни делови\n" +"на кои Ñакате да ги поделите избраните Ñегменти." + +#: app/actions/gradients-actions.c:44 +msgid "Gradients Menu" +msgstr "Мени за преливи" + +#: app/actions/gradients-actions.c:48 +msgid "_New Gradient" +msgstr "_Ðов прелив" + +#: app/actions/gradients-actions.c:49 +msgid "New gradient" +msgstr "Ðов прелив" + +#: app/actions/gradients-actions.c:54 +msgid "D_uplicate Gradient" +msgstr "_Дуплирај го преливот" + +#: app/actions/gradients-actions.c:55 +msgid "Duplicate gradient" +msgstr "Дуплирај го преливот" + +#: app/actions/gradients-actions.c:60 +msgid "Save as _POV-Ray..." +msgstr "Зачувај како _POV-Ray..." + +#: app/actions/gradients-actions.c:61 +msgid "Save gradient as POV-Ray" +msgstr "Зачувај го градиентот како POV-Ray" + +#: app/actions/gradients-actions.c:66 +msgid "_Delete Gradient..." +msgstr "_Избриши прелив..." + +#: app/actions/gradients-actions.c:67 +msgid "Delete gradient" +msgstr "Избриши прелив" + +#: app/actions/gradients-actions.c:72 +msgid "_Refresh Gradients" +msgstr "ОÑве_жи преливи" + +#: app/actions/gradients-actions.c:73 +msgid "Refresh gradients" +msgstr "ОÑвежи преливи" + +#: app/actions/gradients-actions.c:81 +msgid "_Edit Gradient..." +msgstr "_Уреди го преливот..." + +#: app/actions/gradients-actions.c:82 +msgid "Edit gradient" +msgstr "Уреди го преливот" + +#: 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 +msgid "_Help" +msgstr "_Помош" + +#: app/actions/help-actions.c:46 +msgid "_Context Help" +msgstr "_СмиÑлена помош" + +#: app/actions/image-actions.c:47 +msgid "Toolbox Menu" +msgstr "Мени за збир од алатки" + +#: app/actions/image-actions.c:51 app/actions/image-actions.c:55 +msgid "Image Menu" +msgstr "Мени за Ñлика" + +#: app/actions/image-actions.c:58 +msgid "_Xtns" +msgstr "П_роширувања" + +#: app/actions/image-actions.c:59 +msgid "_Image" +msgstr "_Слика" + +#: app/actions/image-actions.c:60 +msgid "_Mode" +msgstr "_Режим" + +#: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 +msgid "_Transform" +msgstr "_ТраÑформација" + +#: app/actions/image-actions.c:62 +msgid "_Guides" +msgstr "_Водич" + +#: app/actions/image-actions.c:65 app/actions/image-actions.c:70 +msgid "_New..." +msgstr "_Ðова..." + +#: app/actions/image-actions.c:75 +msgid "Can_vas Size..." +msgstr "Големина на п_латното..." + +#: app/actions/image-actions.c:80 +msgid "F_it Canvas to Layers" +msgstr "По_деÑи го платното Ñпрема Ñлоевите" + +#: app/actions/image-actions.c:85 +msgid "_Print Size..." +msgstr "Големина на _печатење..." + +#: app/actions/image-actions.c:90 +msgid "_Scale Image..." +msgstr "Зголеми _или намали ја Ñликата..." + +#: app/actions/image-actions.c:95 +msgid "_Crop Image" +msgstr "_ИÑечи Ñлика" + +#: app/actions/image-actions.c:100 +msgid "_Duplicate" +msgstr "_Дуплирај" + +#: app/actions/image-actions.c:105 +msgid "Merge Visible _Layers..." +msgstr "Спој ги видливите _Ñлоеви..." + +#: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 +msgid "_Flatten Image" +msgstr "И_зрамни Ñлика" + +#: app/actions/image-actions.c:115 +msgid "Configure G_rid..." +msgstr "ПодеÑи мре_жа..." + +#: app/actions/image-actions.c:128 +msgid "_Grayscale" +msgstr "_Сиви тонови" + +#: app/actions/image-actions.c:133 +msgid "_Indexed..." +msgstr "_ИндекÑирана..." + +#: app/actions/image-commands.c:192 +msgid "Set Image Canvas Size" +msgstr "ПодеÑи ја големината на платното" + +#: app/actions/image-commands.c:219 app/actions/image-commands.c:449 +msgid "Resizing..." +msgstr "Менувам големина..." + +#: app/actions/image-commands.c:242 +msgid "Set Image Print Resolution" +msgstr "ПодеÑи резолуција на Ñликата за печатење" + +#: 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 +msgid "Rotating..." +msgstr "Ротирам..." + +#: 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 +msgid "Change Print Size" +msgstr "Промени големина на печатење" + +#: 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 +msgid "Scaling..." +msgstr "Менувам големина..." + +#: app/actions/images-actions.c:43 +msgid "Images Menu" +msgstr "Мени за Ñлики" + +#: app/actions/images-actions.c:47 +msgid "_Raise Views" +msgstr "По_дигни погледи" + +#: app/actions/images-actions.c:48 +msgid "Raise this image's displays" +msgstr "Подигни ги приказите на оваа Ñлика" + +#: app/actions/images-actions.c:53 app/actions/view-actions.c:68 +msgid "_New View" +msgstr "_Ðов поглед" + +#: app/actions/images-actions.c:54 +msgid "Create a new display for this image" +msgstr "Ðаправи нов приказ за оваа Ñлика" + +#: app/actions/images-actions.c:59 +msgid "_Delete Image" +msgstr "_Избриши Ñлика" + +#: app/actions/images-actions.c:60 +msgid "Delete this image" +msgstr "Избриши ја оваа Ñлика" + +#: app/actions/layers-actions.c:48 +msgid "Layers Menu" +msgstr "Мени на Ñлоеви" + +#: app/actions/layers-actions.c:51 +msgid "_Layer" +msgstr "_Слој" + +#: app/actions/layers-actions.c:52 +msgid "Stac_k" +msgstr "Сло_жи" + +#: app/actions/layers-actions.c:54 app/tools/gimplevelstool.c:665 +msgid "_Auto" +msgstr "_Ðвто" + +#: app/actions/layers-actions.c:55 +msgid "_Mask" +msgstr "_МаÑка" + +#: app/actions/layers-actions.c:56 +msgid "Tr_ansparency" +msgstr "Про_ѕирноÑÑ‚" + +#: app/actions/layers-actions.c:58 +msgid "_Properties" +msgstr "_СвојÑтва" + +#: app/actions/layers-actions.c:60 +msgid "Layer _Mode" +msgstr "_Режим на Ñлојот" + +#: app/actions/layers-actions.c:63 +msgid "Te_xt Tool" +msgstr "Ðлатка за _текÑÑ‚" + +#: app/actions/layers-actions.c:68 +msgid "_Edit Layer Attributes..." +msgstr "_Уреди ÑвојÑтва на Ñлојот..." + +#: app/actions/layers-actions.c:69 +msgid "Edit layer attributes" +msgstr "Уреди ÑвојÑтва на Ñлојот" + +#: app/actions/layers-actions.c:74 +msgid "_New Layer..." +msgstr "_Ðов Ñлој..." + +#: app/actions/layers-actions.c:75 +msgid "New layer..." +msgstr "Ðов Ñлој..." + +#: app/actions/layers-actions.c:80 +msgid "_New Layer" +msgstr "_Ðов Ñлој" + +#: app/actions/layers-actions.c:81 +msgid "New layer with last values" +msgstr "Ðов Ñлој Ñо поÑледните вредноÑти" + +#: app/actions/layers-actions.c:86 +msgid "D_uplicate Layer" +msgstr "_Дуплирај Ñлој" + +#: app/actions/layers-actions.c:87 +msgid "Duplicate layer" +msgstr "Дуплирај Ñлој" + +#: app/actions/layers-actions.c:92 +msgid "_Delete Layer" +msgstr "_Избриши Ñлој" + +#: app/actions/layers-actions.c:93 app/core/core-enums.c:1078 +msgid "Delete layer" +msgstr "Избриши Ñлој" + +#: app/actions/layers-actions.c:98 +msgid "_Raise Layer" +msgstr "_Подигни Ñлој" + +#: app/actions/layers-actions.c:99 +msgid "Raise layer" +msgstr "Подигни Ñлој" + +#: app/actions/layers-actions.c:104 +msgid "Layer to _Top" +msgstr "Слој на _врв" + +#: app/actions/layers-actions.c:105 +msgid "Raise layer to top" +msgstr "Подигни Ñлој на врвот" + +#: app/actions/layers-actions.c:110 +msgid "_Lower Layer" +msgstr "_Спушти Ñлој" + +#: app/actions/layers-actions.c:111 +msgid "Lower layer" +msgstr "Спушти Ñлој" + +#: app/actions/layers-actions.c:116 +msgid "Layer to _Bottom" +msgstr "Слој на _дно" + +#: app/actions/layers-actions.c:117 +msgid "Lower layer to bottom" +msgstr "Спушти го Ñлојот на дното" + +#: app/actions/layers-actions.c:122 +msgid "_Anchor Layer" +msgstr "Ð’_Ñидри Ñлој" + +#: app/actions/layers-actions.c:123 +msgid "Anchor floating layer" +msgstr "Ð’Ñидри го пловечкиот Ñлој" + +#: app/actions/layers-actions.c:128 +msgid "Merge Do_wn" +msgstr "Спој Ñо Ñлојот _подолу" + +#: app/actions/layers-actions.c:133 +msgid "Merge _Visible Layers..." +msgstr "Спој ги _видливите Ñлоеви..." + +#: app/actions/layers-actions.c:143 +msgid "_Discard Text Information" +msgstr "_Занемари податоци за текÑтот" + +#: app/actions/layers-actions.c:148 +msgid "Layer B_oundary Size..." +msgstr "Големина на _границата на Ñлојот..." + +#: app/actions/layers-actions.c:153 +msgid "Layer to _Image Size" +msgstr "Слој на големина на Ñ_ликата" + +#: app/actions/layers-actions.c:158 +msgid "_Scale Layer..." +msgstr "Г_олемина на Ñлојот..." + +#: app/actions/layers-actions.c:163 +msgid "Cr_op Layer" +msgstr "И_Ñечи Ñлој" + +#: app/actions/layers-actions.c:168 +msgid "Add La_yer Mask..." +msgstr "Додади маÑка на _Ñлојот..." + +#: app/actions/layers-actions.c:173 +msgid "Add Alpha C_hannel" +msgstr "Додади Ðлфа _канал" + +#: app/actions/layers-actions.c:181 +msgid "Keep Transparency" +msgstr "Задржи провидноÑÑ‚" + +#: app/actions/layers-actions.c:187 +msgid "Edit Layer Mask" +msgstr "Уреди маÑка на Ñлојот" + +#: app/actions/layers-actions.c:193 +msgid "Show Layer Mask" +msgstr "Прикажи ја маÑката на Ñлојот" + +#: app/actions/layers-actions.c:199 +msgid "Disable Layer Mask" +msgstr "Оневозможи маÑка на Ñлојот" + +#: app/actions/layers-actions.c:208 +msgid "Apply Layer _Mask" +msgstr "Примени _маÑка на Ñлојот" + +#: app/actions/layers-actions.c:213 +msgid "Delete Layer Mas_k" +msgstr "Избриши маÑ_ка на Ñлојот" + +#: app/actions/layers-actions.c:221 +msgid "_Mask to Selection" +msgstr "МаÑка на Ñе_лекција" + +#: app/actions/layers-actions.c:244 +msgid "Al_pha to Selection" +msgstr "Ðл_фа на Ñелекција" + +#: app/actions/layers-actions.c:249 +msgid "A_dd to Selection" +msgstr "_Додади во Ñелекција" + +#: app/actions/layers-actions.c:267 +msgid "Select _Top Layer" +msgstr "Избери Ñлој на _врвот" + +#: app/actions/layers-actions.c:272 +msgid "Select _Bottom Layer" +msgstr "Избери Ñлој на _дното" + +#: app/actions/layers-actions.c:277 +msgid "Select _Previous Layer" +msgstr "Избери _претходен Ñлој" + +#: app/actions/layers-actions.c:282 +msgid "Select _Next Layer" +msgstr "Избери _Ñледен Ñлој" + +#: app/actions/layers-actions.c:290 +msgid "Set Opacity" +msgstr "ПодеÑи непровидноÑÑ‚ на Ñлојот" + +#: app/actions/layers-commands.c:196 +msgid "Layer Attributes" +msgstr "СвојÑтва на Ñлојот" + +#: 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:840 +msgid "New Layer" +msgstr "Ðов Ñлој" + +#: app/actions/layers-commands.c:237 +msgid "Create a New Layer" +msgstr "Ðаправи нов Ñлој" + +#: app/actions/layers-commands.c:470 +msgid "Set Layer Boundary Size" +msgstr "ПодеÑи ја граничната големина на Ñлојот" + +#: app/actions/layers-commands.c:512 app/core/gimplayer.c:255 +msgid "Scale Layer" +msgstr "Зголеми или Ñмали Ñлој" + +#: app/actions/layers-commands.c:545 +msgid "Crop Layer" +msgstr "ИÑечи Ñлој" + +#: app/actions/layers-commands.c:683 +msgid "Layer Mask to Selection" +msgstr "МаÑка Ñлој во Ñелекцијата" + +#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1085 +#: 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 +msgid "Invalid width or height. Both must be positive." +msgstr "ÐеиÑправна ширина или виÑина. Двете морат да бидат позитивни." + +#: app/actions/palette-editor-actions.c:43 +msgid "Palette Editor Menu" +msgstr "Мени на уредувачот на палети" + +#: app/actions/palette-editor-actions.c:53 +msgid "_Delete Color" +msgstr "Из_бриши боја" + +#: app/actions/palette-editor-actions.c:54 +msgid "Delete color" +msgstr "Избриши боја" + +#: app/actions/palette-editor-actions.c:62 +msgid "New Color from _FG" +msgstr "Ðова боја од бојата на _иÑцртување" + +#: app/actions/palette-editor-actions.c:63 +msgid "New color from FG" +msgstr "Ðова боја од бојата на иÑцртување" + +#: app/actions/palette-editor-actions.c:68 +msgid "New Color from _BG" +msgstr "Ðова боја од по_задината" + +#: app/actions/palette-editor-actions.c:69 +msgid "New color from BG" +msgstr "Ðова боја од позадината" + +#: app/actions/palette-editor-actions.c:77 app/actions/view-actions.c:215 +msgid "Zoom _In" +msgstr "З_големи" + +#: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 +msgid "Zoom _Out" +msgstr "Ðа_мали" + +#: app/actions/palette-editor-actions.c:89 +msgid "Zoom _All" +msgstr "Зголеми ги _Ñите" + +#: app/actions/palette-editor-commands.c:68 +msgid "Edit Palette Color" +msgstr "Измени боју на палета" + +#: app/actions/palette-editor-commands.c:70 +msgid "Edit Color Palette Entry" +msgstr "Измени Ð²Ð½ÐµÑ Ð½Ð° бојата на палетата" + +#: app/actions/palettes-actions.c:44 +msgid "Palettes Menu" +msgstr "Мени за палети" + +#: app/actions/palettes-actions.c:48 +msgid "_New Palette" +msgstr "_Ðова палета" + +#: app/actions/palettes-actions.c:49 +msgid "New palette" +msgstr "Ðова палета" + +#: app/actions/palettes-actions.c:54 +msgid "_Import Palette..." +msgstr "_Увези палета..." + +#: app/actions/palettes-actions.c:55 +msgid "Import palette" +msgstr "Увези палета" + +#: app/actions/palettes-actions.c:60 +msgid "D_uplicate Palette" +msgstr "_Дуплирај палета" + +#: app/actions/palettes-actions.c:61 +msgid "Duplicate palette" +msgstr "Дуплирај палета" + +#: app/actions/palettes-actions.c:66 +msgid "_Merge Palettes..." +msgstr "_Спој ги палетите..." + +#: app/actions/palettes-actions.c:67 +msgid "Merge palettes" +msgstr "Спој ги палетите" + +#: app/actions/palettes-actions.c:72 +msgid "_Delete Palette" +msgstr "_Избриши палета" + +#: app/actions/palettes-actions.c:73 +msgid "Delete palette" +msgstr "Избриши палета" + +#: app/actions/palettes-actions.c:78 +msgid "_Refresh Palettes" +msgstr "ОÑ_вежи палети" + +#: app/actions/palettes-actions.c:79 +msgid "Refresh palettes" +msgstr "ОÑ_вежи палети" + +#: app/actions/palettes-actions.c:87 +msgid "_Edit Palette..." +msgstr "_Уреди палета..." + +#: app/actions/palettes-actions.c:88 +msgid "Edit palette" +msgstr "Уреди палета" + +#: app/actions/palettes-commands.c:72 +msgid "Merge Palette" +msgstr "Спој палети" + +#: app/actions/palettes-commands.c:76 +msgid "Enter a name for the merged palette" +msgstr "ВнеÑете име за Ñпоената палета" + +#: app/actions/patterns-actions.c:43 +msgid "Patterns Menu" +msgstr "Мени за иÑечоци" + +#: app/actions/patterns-actions.c:47 +msgid "_New Pattern" +msgstr "_Ðов шаблон" + +#: app/actions/patterns-actions.c:48 +msgid "New pattern" +msgstr "Ðов шаблон" + +#: app/actions/patterns-actions.c:53 +msgid "D_uplicate Pattern" +msgstr "_Дуплирај шаблон" + +#: app/actions/patterns-actions.c:54 +msgid "Duplicate pattern" +msgstr "Дуплирај шаблон" + +#: app/actions/patterns-actions.c:59 +msgid "_Delete Pattern..." +msgstr "_Избриши шаблон..." + +#: app/actions/patterns-actions.c:60 +msgid "Delete pattern" +msgstr "Избриши шаблон" + +#: app/actions/patterns-actions.c:65 +msgid "_Refresh Patterns" +msgstr "_ОÑвежи шаблони" + +#: app/actions/patterns-actions.c:66 +msgid "Refresh patterns" +msgstr "ОÑвежи шаблони" + +#: app/actions/patterns-actions.c:74 +msgid "_Edit Pattern..." +msgstr "_Уреди шаблон..." + +#: app/actions/patterns-actions.c:75 +msgid "Edit pattern" +msgstr "Измени шаблон" + +#: app/actions/plug-in-actions.c:62 +msgid "Filte_rs" +msgstr "_Филтри" + +#: app/actions/plug-in-actions.c:63 +msgid "_Blur" +msgstr "Ф_лека" + +#: app/actions/plug-in-actions.c:65 +msgid "Ma_p" +msgstr "_Мапа" + +#: app/actions/plug-in-actions.c:66 +msgid "_Noise" +msgstr "_Шум" + +#: app/actions/plug-in-actions.c:67 +msgid "Edge-De_tect" +msgstr "_ИÑтакни ивици" + +#: app/actions/plug-in-actions.c:68 +msgid "En_hance" +msgstr "Подо_бри" + +#: app/actions/plug-in-actions.c:69 +msgid "_Generic" +msgstr "_Генерично" + +#: app/actions/plug-in-actions.c:70 +msgid "Gla_ss Effects" +msgstr "_Стаклени ефекти" + +#: app/actions/plug-in-actions.c:71 +msgid "_Light Effects" +msgstr "С_ветлоÑни ефекти" + +#: app/actions/plug-in-actions.c:72 +msgid "_Distorts" +msgstr "_ДиÑторзии" + +#: app/actions/plug-in-actions.c:73 +msgid "_Artistic" +msgstr "_Уметнички" + +#: app/actions/plug-in-actions.c:74 +msgid "_Map" +msgstr "Mа_па" + +#: app/actions/plug-in-actions.c:75 +msgid "_Render" +msgstr "_Рендерирај" + +#: app/actions/plug-in-actions.c:76 +msgid "_Clouds" +msgstr "_Облаци" + +#: app/actions/plug-in-actions.c:77 +msgid "_Nature" +msgstr "_Природа" + +#: app/actions/plug-in-actions.c:79 +msgid "_Web" +msgstr "_Веб" + +#: app/actions/plug-in-actions.c:80 +msgid "An_imation" +msgstr "_Ðнимации" + +#: app/actions/plug-in-actions.c:81 +msgid "C_ombine" +msgstr "_Комбинирај" + +#: app/actions/plug-in-actions.c:82 +msgid "To_ys" +msgstr "_Играчки" + +#: app/actions/plug-in-actions.c:85 +msgid "Reset all Filters..." +msgstr "Врати ги Ñите опции за филтрите..." + +#: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:358 +msgid "Repeat Last" +msgstr "Повтори поÑледен" + +#: app/actions/plug-in-actions.c:98 app/actions/plug-in-actions.c:360 +msgid "Re-Show Last" +msgstr "Повторно прикажи поÑледен" + +#: app/actions/plug-in-actions.c:344 +#, c-format +msgid "Re_peat \"%s\"" +msgstr "По_втори „%s“" + +#: app/actions/plug-in-actions.c:345 +#, c-format +msgid "R_e-show \"%s\"" +msgstr "Повторно прикажи „%s“" + +#: app/actions/plug-in-commands.c:196 +msgid "Reset all Filters" +msgstr "Врати ги назад Ñите филтри" + +#: app/actions/plug-in-commands.c:210 +msgid "Do you really want to reset all filters to default values?" +msgstr "" +"Дали навиÑтина Ñакате да ги вратите Ñите опции на филтрите на Ñтандардните " +"вредноÑти?" + +#: app/actions/qmask-actions.c:42 +msgid "Quick Mask Menu" +msgstr "Мени за Брзи МаÑки" + +#: app/actions/qmask-actions.c:46 +msgid "_Configure Color and Opacity..." +msgstr "_ПодеÑи боја и непровидноÑÑ‚..." + +#: app/actions/qmask-actions.c:54 +msgid "_Quick Mask Active" +msgstr "Ðктивна _Брза маÑка" + +#: app/actions/qmask-actions.c:60 +msgid "Toggle _Quick Mask" +msgstr "Вклучи-иÑклучи Брза МаÑка" + +#: app/actions/qmask-actions.c:70 +msgid "Mask _Selected Areas" +msgstr "МаÑкирај ги _избраните облаÑти" + +#: app/actions/qmask-actions.c:75 +msgid "Mask _Unselected Areas" +msgstr "МаÑкирај ги _неизбраните облаÑти" + +#: app/actions/qmask-commands.c:106 +msgid "Quick Mask Attributes" +msgstr "СвојÑтва за Брзи МаÑки" + +#: app/actions/qmask-commands.c:109 +msgid "Edit Quick Mask Attributes" +msgstr "Измени ÑвојÑтва за Брзи МаÑки" + +#: app/actions/qmask-commands.c:111 +msgid "Edit Quick Mask Color" +msgstr "Измени бои за Брзи МаÑки" + +#: app/actions/qmask-commands.c:112 +msgid "Mask Opacity:" +msgstr "ÐепровидноÑÑ‚ на маÑка:" + +#: app/actions/select-actions.c:44 +msgid "Selection Editor Menu" +msgstr "Мени на уредник на Ñелекција" + +#: app/actions/select-actions.c:47 +msgid "_Select" +msgstr "_Избери" + +#: app/actions/select-actions.c:50 +msgid "_All" +msgstr "_Се" + +#: app/actions/select-actions.c:51 +msgid "Select all" +msgstr "Избери Ñе" + +#: app/actions/select-actions.c:56 +msgid "_None" +msgstr "_Ðишто" + +#: app/actions/select-actions.c:57 +msgid "Select none" +msgstr "Избери ништо" + +#: app/actions/select-actions.c:62 +msgid "_Invert" +msgstr "_Инвертирај" + +#: app/actions/select-actions.c:63 +msgid "Invert selection" +msgstr "Инвертирај Ñелекција" + +#: app/actions/select-actions.c:68 +msgid "_Float" +msgstr "_Пливачки" + +#: app/actions/select-actions.c:73 +msgid "Fea_ther..." +msgstr "_Омекнато..." + +#: app/actions/select-actions.c:78 +msgid "_Sharpen" +msgstr "И_зоÑтрено" + +#: app/actions/select-actions.c:83 +msgid "S_hrink..." +msgstr "О_Ñ‚Ñекувам..." + +#: app/actions/select-actions.c:88 +msgid "_Grow..." +msgstr "З_големи..." + +#: app/actions/select-actions.c:93 +msgid "Bo_rder..." +msgstr "Г_раница..." + +#: app/actions/select-actions.c:98 +msgid "Save to _Channel" +msgstr "Зачувај во _канал" + +#: app/actions/select-actions.c:99 +msgid "Save selection to channel" +msgstr "Зачувај ја Ñелекцијата во канал" + +#: app/actions/select-actions.c:104 +msgid "_Stroke Selection..." +msgstr "Земи ја Ñелекцијата како _контура" + +#: app/actions/select-actions.c:105 +msgid "Stroke selection..." +msgstr "Земи ја Ñелекцијата како контура..." + +#: app/actions/select-actions.c:110 +msgid "_Stroke Selection" +msgstr "Земи ја Ñелекцијата како _контура" + +#: app/actions/select-actions.c:111 +msgid "Stroke selection with last values" +msgstr "Земи ја Ñелекцијата како контура Ñо поÑледните вредноÑти" + +#: app/actions/select-commands.c:136 app/core/gimpselection.c:201 +msgid "Feather Selection" +msgstr "Облечи Ñелекција" + +#: app/actions/select-commands.c:140 +msgid "Feather selection by" +msgstr "Омекни го изборот за" + +#: app/actions/select-commands.c:171 app/core/gimpselection.c:208 +msgid "Shrink Selection" +msgstr "Ðамали Ñелекција" + +#: app/actions/select-commands.c:175 +msgid "Shrink selection by" +msgstr "намали го изборот за" + +#: app/actions/select-commands.c:184 +msgid "Shrink from image border" +msgstr "Ðамали ја Ñелекцијата од границата на Ñликата" + +#: app/actions/select-commands.c:205 app/core/gimpselection.c:207 +msgid "Grow Selection" +msgstr "Зголеми Ñелекција" + +#: app/actions/select-commands.c:209 +msgid "Grow selection by" +msgstr "Зголеми го изборот за" + +#: app/actions/select-commands.c:228 app/core/gimpselection.c:206 +msgid "Border Selection" +msgstr "Ограничи ја Ñелекцијата" + +#: 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 +msgid "There is no active layer or channel to stroke to." +msgstr "Ðема активен Ñлој или канал за иÑцртување." + +#: app/actions/select-commands.c:280 app/core/gimpselection.c:184 +msgid "Stroke Selection" +msgstr "Земи ја Ñелекцијата како контура" + +# bug: Templaes -> Templates +#: app/actions/templates-actions.c:42 +msgid "Templates Menu" +msgstr "Мени за моÑтри" + +#: app/actions/templates-actions.c:46 +msgid "_Create Image from Template..." +msgstr "_Ðаправи Ñлика од моÑтрата..." + +#: app/actions/templates-actions.c:47 +msgid "Create a new image from the selected template" +msgstr "Ðаправи нова Ñлика Ñпрема избраната моÑтра" + +#: app/actions/templates-actions.c:52 +msgid "_New Template..." +msgstr "Ðо_ва моÑтра..." + +#: app/actions/templates-actions.c:53 +msgid "Create a new template" +msgstr "Ðаправи нова моÑтра" + +#: app/actions/templates-actions.c:58 +msgid "D_uplicate Template..." +msgstr "_Дуплирај ја моÑтрата..." + +#: app/actions/templates-actions.c:59 +msgid "Duplicate the selected template" +msgstr "Дуплирај ја избраната моÑтра" + +#: app/actions/templates-actions.c:64 +msgid "_Edit Template..." +msgstr "_Уреди моÑтра..." + +#: app/actions/templates-actions.c:65 +msgid "Edit the selected template" +msgstr "Измени ја избраната моÑтра" + +#: app/actions/templates-actions.c:70 +msgid "_Delete Template" +msgstr "Из_бриши моÑтра" + +#: app/actions/templates-actions.c:71 +msgid "Delete the selected template" +msgstr "Избриши ја избраната моÑтра" + +#: app/actions/templates-commands.c:123 +msgid "New Template" +msgstr "Ðова моÑтра" + +#: app/actions/templates-commands.c:126 +msgid "Create a New Template" +msgstr "Ðаправи нова моÑтра" + +#: app/actions/templates-commands.c:185 app/actions/templates-commands.c:188 +msgid "Edit Template" +msgstr "Уреди ја моÑтрата" + +#: app/actions/templates-commands.c:224 +msgid "Delete Template" +msgstr "Избриши моÑтра" + +#: 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 +msgid "Open" +msgstr "Отвори" + +#: 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:284 +msgid "Clear" +msgstr "ИÑчиÑти" + +#: app/actions/text-editor-actions.c:51 +msgid "Clear all text" +msgstr "ИÑчиÑти го целиот текÑÑ‚" + +#: app/actions/text-editor-actions.c:59 +msgid "LTR" +msgstr "ЛÐД" + +#: 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 +msgid "RTL" +msgstr "ДÐЛ" + +#: 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 +msgid "Open Text File (UTF-8)" +msgstr "Отвори текÑтуелна датотека (УТФ-8)" + +#: app/actions/text-editor-commands.c:132 app/config/gimpconfig-utils.c:552 +#: app/config/gimpscanner.c:92 app/core/gimpbrush.c:393 +#: app/core/gimpbrushgenerated.c:601 app/core/gimpbrushpipe.c:344 +#: app/core/gimpgradient-load.c:63 app/core/gimppalette.c:360 +#: app/core/gimppattern.c:328 app/tools/gimpimagemaptool.c:603 +#: 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 +msgid "Tool Options Menu" +msgstr "Мени за опции на алатот" + +#: app/actions/tool-options-actions.c:60 +msgid "_Save Options to" +msgstr "_Зачувај опции во" + +#: app/actions/tool-options-actions.c:64 +msgid "_Restore Options from" +msgstr "_Поврати опции од" + +#: app/actions/tool-options-actions.c:68 +msgid "Re_name Saved Options" +msgstr "Преи_менувајте ги зачуваните опции за алатот" + +#: app/actions/tool-options-actions.c:72 +msgid "_Delete Saved Options" +msgstr "_Избриши ги зачуваните опции" + +#: app/actions/tool-options-actions.c:76 +msgid "_New Entry..." +msgstr "_Ðов внеÑ..." + +#: app/actions/tool-options-actions.c:81 +msgid "R_eset Tool Options" +msgstr "_Врати ги опциите на алатот" + +#: app/actions/tool-options-actions.c:82 +msgid "Reset to default values" +msgstr "Поврати на Ñтандардните вредноÑти" + +#: app/actions/tool-options-actions.c:87 +msgid "Reset _all Tool Options..." +msgstr "Врати ги _Ñите опции за алатот..." + +#: app/actions/tool-options-actions.c:88 +msgid "Reset all tool options" +msgstr "Врати ги Ñите опции за алатот" + +#: app/actions/tool-options-commands.c:73 +msgid "Save Tool Options" +msgstr "Сочувај ги опциите на алатот" + +#: 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 +msgid "Saved Options" +msgstr "Зачувани опции" + +#: app/actions/tool-options-commands.c:146 +msgid "Rename Saved Tool Options" +msgstr "Преименувајте ги зачуваните опции за алатот" + +#: app/actions/tool-options-commands.c:150 +msgid "Enter a new name for the saved options" +msgstr "ВнеÑете ново име за зачуваните опции за алатот" + +#: app/actions/tool-options-commands.c:215 +msgid "Reset Tool Options" +msgstr "Врати ги опциите на алатот" + +#: app/actions/tool-options-commands.c:233 +msgid "Do you really want to reset all tool options to default values?" +msgstr "" +"Дали навиÑтина Ñакате да ги вратите Ñите опции на алатот на Ñтандардните " +"вредноÑти?" + +#: app/actions/tools-actions.c:47 +msgid "Tools Menu" +msgstr "Мени за збир од алатки" + +#: app/actions/tools-actions.c:50 +msgid "_Tools" +msgstr "_Ðлати" + +#: app/actions/tools-actions.c:51 +msgid "_Selection Tools" +msgstr "Ðлати за _Ñелекција" + +#: app/actions/tools-actions.c:52 +msgid "_Paint Tools" +msgstr "Ðлати за боење:" + +#: app/actions/tools-actions.c:53 +msgid "_Transform Tools" +msgstr "Ðлати за _транÑформација" + +#: app/actions/tools-actions.c:54 +msgid "_Color Tools" +msgstr "Ðлати за _бои" + +#: app/actions/tools-actions.c:57 +msgid "_Reset Order & Visibility" +msgstr "_Поврати РедоÑлед и ВидливоÑÑ‚" + +#: app/actions/tools-actions.c:58 +msgid "Reset tool order and visibility" +msgstr "Поврати редоÑлед и видливоÑÑ‚ на алатите" + +#: app/actions/tools-actions.c:66 +msgid "_Show in Toolbox" +msgstr "П_рикажи во алатникот" + +#: app/actions/tools-actions.c:75 +msgid "_By Color" +msgstr "П_о Боја" + +#: app/actions/tools-actions.c:80 +msgid "_Arbitrary Rotation..." +msgstr "_Произволна ротација..." + +#: app/actions/vectors-actions.c:44 +msgid "Paths Menu" +msgstr "Мени за патеки" + +#: app/actions/vectors-actions.c:48 +msgid "Path _Tool" +msgstr "_Ðлатка за пaтеки" + +#: app/actions/vectors-actions.c:53 +msgid "_Edit Path Attributes..." +msgstr "_Измени ги ÑвојÑтвата на пaтеката..." + +#: app/actions/vectors-actions.c:54 +msgid "Edit path attributes" +msgstr "Измени ги ÑвојÑтвата на патеката" + +#: app/actions/vectors-actions.c:59 +msgid "_New Path..." +msgstr "_Ðова патека..." + +#: app/actions/vectors-actions.c:60 +msgid "New path..." +msgstr "Ðова патека..." + +#: app/actions/vectors-actions.c:65 +msgid "_New Path" +msgstr "_Ðова патека" + +#: app/actions/vectors-actions.c:66 +msgid "New path with last values" +msgstr "Ðова патека Ñо поÑледните вредноÑти" + +#: app/actions/vectors-actions.c:71 +msgid "D_uplicate Path" +msgstr "_Дуплирај патека" + +#: app/actions/vectors-actions.c:72 +msgid "Duplicate path" +msgstr "Дуплирај патека" + +#: app/actions/vectors-actions.c:77 +msgid "_Delete Path" +msgstr "И_збриши патека" + +#: app/actions/vectors-actions.c:78 +msgid "Delete path" +msgstr "Избриши патека" + +#: app/actions/vectors-actions.c:83 +msgid "Merge _Visible Paths" +msgstr "Спој ги _видливите патеки" + +#: app/actions/vectors-actions.c:88 +msgid "_Raise Path" +msgstr "_Подигни патека" + +#: app/actions/vectors-actions.c:89 +msgid "Raise path" +msgstr "Подигни патека" + +#: app/actions/vectors-actions.c:94 +msgid "Raise Path to _Top" +msgstr "Подигни патека на _врв" + +#: app/actions/vectors-actions.c:95 +msgid "Raise path to top" +msgstr "Подигни патека на врв" + +#: app/actions/vectors-actions.c:100 +msgid "_Lower Path" +msgstr "_Спушти патека" + +#: app/actions/vectors-actions.c:101 +msgid "Lower path" +msgstr "Спушти патека" + +#: app/actions/vectors-actions.c:106 +msgid "Lower Path to _Bottom" +msgstr "Спушти патека на _дно" + +#: app/actions/vectors-actions.c:107 +msgid "Lower path to bottom" +msgstr "Спушти патека на дно" + +#: app/actions/vectors-actions.c:112 +msgid "Stro_ke Path..." +msgstr "_ИÑцртај патека..." + +#: app/actions/vectors-actions.c:113 +msgid "Stroke path..." +msgstr "ИÑцртај патека..." + +#: app/actions/vectors-actions.c:118 +msgid "Stro_ke Path" +msgstr "ИÑ_цртај патека" + +#: app/actions/vectors-actions.c:119 +msgid "Stroke path with last values" +msgstr "ИÑцртај патека Ñо поÑледните вредноÑти" + +#: app/actions/vectors-actions.c:124 +msgid "Co_py Path" +msgstr "_Копирај патека" + +#: app/actions/vectors-actions.c:129 +msgid "Paste Pat_h" +msgstr "Ð’_метни патека" + +#: app/actions/vectors-actions.c:134 +msgid "I_mport Path..." +msgstr "_Увези патека..." + +#: app/actions/vectors-actions.c:139 +msgid "E_xport Path..." +msgstr "И_звези патека..." + +#: app/actions/vectors-actions.c:162 +msgid "Path to Sele_ction" +msgstr "Патека во Ñе_лекција" + +#: app/actions/vectors-actions.c:163 app/tools/gimpvectortool.c:1893 +msgid "Path to selection" +msgstr "Патека во Ñелекција" + +#: app/actions/vectors-actions.c:168 +msgid "Fr_om Path" +msgstr "_Од патека" + +#: app/actions/vectors-actions.c:194 +msgid "Selecti_on to Path" +msgstr "Селек_ција во патека" + +#: app/actions/vectors-actions.c:195 +msgid "Selection to path" +msgstr "Селекција во патека" + +#: app/actions/vectors-actions.c:200 +msgid "To _Path" +msgstr "Во _патека" + +#: app/actions/vectors-actions.c:205 +msgid "Selection to Path (_Advanced)" +msgstr "Селекција во патека (_Ðапредни опции)" + +#: app/actions/vectors-actions.c:206 +msgid "Advanced options" +msgstr "Ðапредни опции" + +#: app/actions/vectors-commands.c:140 +msgid "Path Attributes" +msgstr "СвојÑтва на патеката" + +#: 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 +msgid "New Path" +msgstr "Ðова патека" + +#: app/actions/vectors-commands.c:171 +msgid "New Path Options" +msgstr "Опции за нова патека" + +#: 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:239 +msgid "Stroke Path" +msgstr "Ðацртај патека" + +#: app/actions/view-actions.c:63 +msgid "_View" +msgstr "_Преглед" + +#: app/actions/view-actions.c:64 +msgid "_Zoom" +msgstr "_Зголеми" + +#: app/actions/view-actions.c:65 +msgid "_Padding Color" +msgstr "Боја на подлогата" + +#: app/actions/view-actions.c:73 +msgid "_Close" +msgstr "_Затвори" + +#: app/actions/view-actions.c:78 +msgid "_Fit Image in Window" +msgstr "Слика по _мерка на прозорецот" + +#: app/actions/view-actions.c:79 +msgid "Fit image in window" +msgstr "Слика по мерка на прозорецот" + +#: app/actions/view-actions.c:84 +msgid "Fit Image to Window" +msgstr "Слика по мерка на прозорецот" + +#: app/actions/view-actions.c:85 +msgid "Fit image to window" +msgstr "Слика по мерка на прозорецот" + +#: app/actions/view-actions.c:90 +msgid "_Info Window" +msgstr "Прозорец Ñо ин_формации" + +#: app/actions/view-actions.c:95 +msgid "Na_vigation Window" +msgstr "Ðа_вигациÑки прозорец" + +#: app/actions/view-actions.c:100 +msgid "Display _Filters..." +msgstr "_Филтри на приказ..." + +#: app/actions/view-actions.c:105 +msgid "Shrink _Wrap" +msgstr "Прозорец во Ñклад Ñо _размерот" + +#: app/actions/view-actions.c:106 +msgid "Shrink wrap" +msgstr "Прозорец во Ñклад Ñо размерот" + +#: app/actions/view-actions.c:111 +msgid "Move to Screen..." +msgstr "Префрли на екран..." + +#: app/actions/view-actions.c:119 +msgid "_Dot for Dot" +msgstr "_Точка по точка" + +#: app/actions/view-actions.c:125 +msgid "Show _Selection" +msgstr "Прикажи Ñе_лекција" + +#: app/actions/view-actions.c:131 +msgid "Show _Layer Boundary" +msgstr "Прикажи _граници на Ñлојот" + +#: app/actions/view-actions.c:137 +msgid "Show _Guides" +msgstr "Прикажи _водичи" + +#: app/actions/view-actions.c:143 +msgid "Sn_ap to Guides" +msgstr "С_према водичите" + +#: app/actions/view-actions.c:149 +msgid "S_how Grid" +msgstr "Прикажи мре_жа" + +#: app/actions/view-actions.c:155 +msgid "Sna_p to Grid" +msgstr "Спрема води_чите" + +#: app/actions/view-actions.c:161 +msgid "Show _Menubar" +msgstr "Прикажи главно _мени" + +#: app/actions/view-actions.c:167 +msgid "Show R_ulers" +msgstr "Прикажи ле_њири" + +#: app/actions/view-actions.c:173 +msgid "Show Scroll_bars" +msgstr "Прикажи _лизгачи" + +#: app/actions/view-actions.c:179 +msgid "Show S_tatusbar" +msgstr "Прикажи ÑтатуÑна линија" + +#: app/actions/view-actions.c:185 +msgid "Fullscr_een" +msgstr "Преку _целиот екран" + +#: app/actions/view-actions.c:234 +msgid "16:1 (1600%)" +msgstr "16:1 (1600%) " + +#: app/actions/view-actions.c:239 +msgid "8:1 (800%)" +msgstr "8:1 (800%)" + +#: app/actions/view-actions.c:244 +msgid "4:1 (400%)" +msgstr "4:1 (400%)" + +#: app/actions/view-actions.c:249 +msgid "2:1 (200%)" +msgstr "2:1 (200%)" + +#: app/actions/view-actions.c:254 +msgid "1:1 (100%)" +msgstr "1:1 (100%)" + +#: app/actions/view-actions.c:255 +msgid "Zoom 1:1" +msgstr "Со размер 1:1" + +#: app/actions/view-actions.c:260 +msgid "1:2 (50%)" +msgstr "1:2 (50%)" + +#: app/actions/view-actions.c:265 +msgid "1:4 (25%)" +msgstr "1:4 (25%)" + +#: app/actions/view-actions.c:270 +msgid "1:8 (12.5%)" +msgstr "1:8 (12.5%)" + +#: app/actions/view-actions.c:275 +msgid "1:16 (6.25%)" +msgstr "1:16 (6.25%)" + +#: app/actions/view-actions.c:280 +msgid "O_ther..." +msgstr "_Друго..." + +#: app/actions/view-actions.c:288 +msgid "From _Theme" +msgstr "Од _темата" + +#: app/actions/view-actions.c:293 +msgid "_Light Check Color" +msgstr "Проверка на _Ñветлата боја" + +#: app/actions/view-actions.c:298 +msgid "_Dark Check Color" +msgstr "Проверка на _темната боја" + +#: app/actions/view-actions.c:303 +msgid "Select _Custom Color..." +msgstr "Избери п_роизволна боја..." + +#: app/actions/view-actions.c:308 +msgid "As in _Preferences" +msgstr "Како во _поÑтавките" + +#: app/actions/view-actions.c:592 +#, c-format +msgid "Other (%s) ..." +msgstr "ОÑтанато (%s) ..." + +#: app/actions/view-actions.c:601 +#, c-format +msgid "_Zoom (%s)" +msgstr "_Зголемување (%s)" + +#: app/actions/view-commands.c:572 +msgid "Set Canvas Padding Color" +msgstr "ПодеÑи ја Бојата на Подлогата на Платното" + +#: app/actions/view-commands.c:574 +msgid "Set Custom Canvas Padding Color" +msgstr "ПоÑтави произволна боја за пополнување на платното" + +#: app/base/base-enums.c:23 +msgid "Smooth" +msgstr "Умекнување" + +#: 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 +msgid "Value" +msgstr "ВредноÑÑ‚" + +#: 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 +msgid "Green" +msgstr "Зелена" + +#: 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 +msgid "Alpha" +msgstr "Ðлфа" + +#: 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 +msgid "None (Fastest)" +msgstr "Ðишто (најбрзо)" + +#: 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 +msgid "Cubic (Best)" +msgstr "ЗапреминÑки (Ðајдобро)" + +#: app/base/base-enums.c:188 +msgid "Shadows" +msgstr "Сенки" + +#: app/base/base-enums.c:189 +msgid "Midtones" +msgstr "Средни тонови" + +#: app/base/base-enums.c:190 +msgid "Highlights" +msgstr "ÐаглаÑено" + +#: 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 "" +"Ðе можам да ја отворам swap датотеката. Гимп оÑтана без меморија и не може да ја " +"кориÑти swap датотеката. Ðекои делови од вашите Ñлики можеби Ñе раÑипани. Пробајте " +"да ја зачувате вашата работа Ñо кориÑтење на различни имиња на датотеки, реÑтартирајте " +"го Гимп и проверете ја локацијата на swap директориумот во вашите Параметри." + +#: app/config/gimpconfig-deserialize.c:100 +#, c-format +msgid "value for token %s is not a valid UTF-8 string" +msgstr "вредноÑта за изразот %s не е иÑправен UTF-8 збор" + +#: 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 +#, c-format +msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" +msgstr "" +"очекуваниот одговор од типот „да“ или „не“ за логичкиот израз %s, добиен ' %" +"s'" + +#: app/config/gimpconfig-deserialize.c:541 +#, c-format +msgid "invalid value '%s' for token %s" +msgstr "неиÑправна вредноÑÑ‚ „%s“ за %s" + +#: app/config/gimpconfig-deserialize.c:556 +#, c-format +msgid "invalid value '%ld' for token %s" +msgstr "неиÑправна вредноÑÑ‚ „%ld“ за изразот %s" + +#: app/config/gimpconfig-deserialize.c:625 +#, c-format +msgid "while parsing token '%s': %s" +msgstr "при обработка на изразот „%s“: %s" + +#: 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:602 +#: 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 +#, c-format +msgid "Error while writing '%s': %s" +msgstr "Грешка при пишивањето на „%s“: %s" + +#: app/config/gimpconfig-utils.c:583 +#, c-format +msgid "Error while reading '%s': %s" +msgstr "Грешка при читањето на „%s“: %s" + +#: app/config/gimpconfig-utils.c:625 +#, c-format +msgid "" +"There was an error parsing your '%s' file. Default values will be used. A " +"backup of your configuration has been created at '%s'." +msgstr "" +"Дојде до грешка при обработката на вашата датотека „%s“. Ќе ги кориÑтам " +"Ñтандардните вредноÑти. Резерва на вашите подеÑувања е креирана во „%s“." + +#: app/config/gimpconfigwriter.c:130 +#, c-format +msgid "Could not create temporary file for '%s': %s" +msgstr "Ðе уÑпеав да направам привремена датотека за „%s“: %s" + +#: app/config/gimpconfigwriter.c:617 +#, c-format +msgid "" +"Error writing to temporary file for '%s': %s\n" +"The original file has not been touched." +msgstr "" +"Грешка при запишувањето во привремената датотека за „%s“: %s\n" +"Оригиналната датотека не е дирана." + +#: app/config/gimpconfigwriter.c:625 +#, c-format +msgid "" +"Error writing to temporary file for '%s': %s\n" +"No file has been created." +msgstr "" +"Грешка при запишувањето во привремената датотека за „%s“: %s\n" +"Датотека не е направена." + +#: app/config/gimpconfigwriter.c:636 +#, c-format +msgid "Error writing to '%s': %s" +msgstr "Грешка при запишувањето во „%s“: %s" + +#: 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 +#, c-format +msgid "Parsing '%s'\n" +msgstr "Обработувам „%s“\n" + +#: app/config/gimprc.c:595 +#, c-format +msgid "Saving '%s'\n" +msgstr "Зачувувам '%s'\n" + +#. Not all strings defined here are used in the user interface +#. * (the preferences dialog mainly) and only those that are should +#. * be marked for translation. +#. +#: 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 +msgid "Specifies how the area around the image should be drawn." +msgstr "Одредува како ќе биде иÑцртана облаÑта околу Ñликата." + +#: 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 +msgid "Ask for confirmation before closing an image without saving." +msgstr "Барај потврда пред затворање на Ñлика која не е зачувана." + +#: app/config/gimprc-blurbs.h:33 +msgid "Sets the pixel format of cursors the GIMP will use." +msgstr "ПоÑтавува формат на пикÑели на курÑорот кој ќе го кориÑти ГИМП." + +#: app/config/gimprc-blurbs.h:36 +msgid "Sets the mode of cursor the GIMP will use." +msgstr "ПоÑтавува режим на курÑорот кој ќе го кориÑти ГИМП." + +#: app/config/gimprc-blurbs.h:39 +msgid "" +"Context-dependent cursors are cool. They are enabled by default. However, " +"they require overhead that you may want to do without." +msgstr "" +"КурÑори кои Ñе менуваат во завиÑноÑÑ‚ од контекÑтот Ñе Ñупер. Тие Ñе " +"предефинирано овозможени. Сепак, тие бараат реÑурÑи кои можеби би да не ги " +"кориÑти." + +#: app/config/gimprc-blurbs.h:47 +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 +msgid "This is the distance in pixels where Guide and Grid snapping activates." +msgstr "Ова е далечина во пикÑели, каде Ñе активира прекршувањето на Водичот и Мрежата." + +#: 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 " +"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." +msgstr "" +"Ðлатките како што Ñе нејаÑно-означување и пополнување Ñо боја бараат целини " +"Ñпрема алгоритмот за пополнување на оÑновата. ОÑновата почнува од првата " +"избрана точка и продолжува понатаму во Ñите правци Ñе додека разликата во " +"бојата на новата точка во Ð¾Ð´Ð½Ð¾Ñ Ð½Ð° првата не биде поголема од одредената " +"гранична вредноÑÑ‚. Оваа вредноÑÑ‚ ја претÑтавува предефинираната гранична " +"вредноÑÑ‚." + +#: app/config/gimprc-blurbs.h:90 +msgid "" +"The window type hint that is set on dock windows. This may affect the way " +"your window manager decorates and handles dock windows." +msgstr "" +"Ознака за видот на прозорецот која Ñе поÑтавува за прилепените прозорци. Ова " +"може да влијае на тоа, како вашиот управувач Ñо прозорци ги иÑцртува и " +"поÑтавува прилепените прозорци." + +#: app/config/gimprc-blurbs.h:121 +msgid "When enabled, the selected brush will be used for all tools." +msgstr "Кога е овозможено, избраната четка ќе Ñе кориÑти за Ñите алатки." + +#: 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 +msgid "When enabled, the selected pattern will be used for all tools." +msgstr "Кога е овозможено, излбраниот шаблон ќе Ñе кориÑти за Ñите алатки." + +#: app/config/gimprc-blurbs.h:146 +msgid "Sets the browser used by the help system." +msgstr "Одредува прелиÑтувач кој ќе Ñе кориÑти од ÑиÑтемот за помош." + +#: app/config/gimprc-blurbs.h:154 +msgid "Sets the text to appear in image window status bars." +msgstr "Одредува текÑÑ‚ кој ќе Ñе појави во ÑтауÑната линија на прозорецот Ñо Ñлика." + +#: app/config/gimprc-blurbs.h:157 +msgid "Sets the text to appear in image window titles." +msgstr "Одредува текÑÑ‚ кој ќе Ñе појави во наÑловот на прозорецот Ñо Ñлика." + +#: 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 +msgid "" +"When enabled, this will ensure that the full image is visible after a file " +"is opened, otherwise it will be displayed with a scale of 1:1." +msgstr "" +"Кога е вклучено, ова ќе оÑигура дека ќе биде видлива целата Ñлика кога Ñе " +"отвара датотека, во Ñпротивно ќе биде прикажана во размер 1:1." + +#: app/config/gimprc-blurbs.h:167 +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." +msgstr "ПÑтавува ниво на интерполација кај зголемувањето и другите транÑформации." + +#: 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 +msgid "" +"Speed of marching ants in the selection outline. This value is in " +"milliseconds (less time indicates faster marching)." +msgstr "" +"Брзина на марширачките мравки во границата на избраната површина. Оваа " +"вредноÑÑ‚ е во милиÑекунди (помала вредноÑÑ‚ покажува побрзо марширање)." + +#: app/config/gimprc-blurbs.h:181 +msgid "" +"GIMP will warn the user if an attempt is made to create an image that would " +"take more memory than the size specified here." +msgstr "" +"ГИМП ќе го предупреди кориÑникот ако проба да направи Ñлика која би зазела " +"повеќе меморија од големината која е зададена тука." + +#: app/config/gimprc-blurbs.h:185 +msgid "When enabled, GIMP will show mnemonics in menus." +msgstr "Кога е вклучено, ГИМП ќе прикажува мнемоници (Ñтавки за памтење на функции) во менијата." + +#: 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 +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, го приморува Ð¥ Ñерверот да бара информации и за хоризонталната " +"и за вертикалната резолуција." + +#: 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, го приморува Ð¥ Ñерверот да бара информации и за хоризонталната " +"и за вертикалната резолуција." + +#: 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 +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 +msgid "" +"On multiprocessor machines, if GIMP has been compiled with --enable-mp this " +"sets how many processors GIMP should use simultaneously." +msgstr "" +"Ðа повеќепроцеÑорÑките машини, ако ГИМП е компајлиран Ñо опцијата --enable-" +"mp ова одредува колку процеÑори ќе кориÑти ГИМП иÑтовремено." + +#: 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 " +"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." +msgstr "" +"Кога е вклучено, Ð¥ Ñерверот за Ñекој покрет ќе биде прашуван за тековната " +"позиција на глушецот, подобро отколку да Ñе оÑлонуваме на наговеÑтување на " +"позицијата. Ова значи дека цртањето Ñо големи четки ќе биде попрецизно, но " +"можно и побавно. Да биде работата почудна, на некои Ð¥ Ñервери вклучувањето " +"на оваа опција ќе резултира Ñо побрзо цртање." + +#: app/config/gimprc-blurbs.h:245 +msgid "" +"Sets whether GIMP should create previews of layers and channels. Previews in " +"the layers and channels dialog are nice to have but they can slow things " +"down when working with large images." +msgstr "" +"Одредува дали ГИМП треба да прави прегледи на Ñлоевите во каналот. Прегледи " +"во прозорците за Ñлоеви и канали е фино да Ñе имаат, но можат да ги уÑпорат " +"работите кога Ñе работи Ñо големи Ñлики." + +#: app/config/gimprc-blurbs.h:250 +msgid "" +"Sets the preview size used for layers and channel previews in newly created " +"dialogs." +msgstr "" +"Ја подеÑува големината на прегледот за Ñлоевите и каналите во новоÑоздадените " +"дијалози." + +#: 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 +msgid "" +"When enabled, the image window will automatically resize itself, when " +"zooming into and out of images." +msgstr "" +"Кога е вклучено, прозорецот Ñо Ñликата автоматÑки ќе ја промени ÑопÑтвената " +"големина, кога Ñе зумира Ñликата." + +#: app/config/gimprc-blurbs.h:262 +msgid "Let GIMP try to restore your last saved session on each startup." +msgstr "" +"Дали ГИМП треба да проба да ја поврати поÑледната зачувана ÑеÑија при Ñекое " +"подигање." + +#: app/config/gimprc-blurbs.h:265 +msgid "Remember the current tool, pattern, color, and brush across GIMP sessions." +msgstr "Запамти ја тековната алатка, одÑечка, боја или четка во ÑеÑиите на ГИМП." + +#: 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 +msgid "" +"When enabled, all paint tools will show a preview of the current brush's " +"outline." +msgstr "" +"Кога е вклучено, Ñите алатки за цртање ќе покажуваат Ñмален приказ на " +"контурата на тековната четка." + +#: 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 +msgid "" +"When enabled, the cursor will be shown over the image while using a paint " +"tool." +msgstr "" +"Кога е вклучено, курÑорот ќе Ñе прикажува над Ñликата, додека Ñе кориÑти " +"алатка за боење." + +#: app/config/gimprc-blurbs.h:288 +msgid "" +"When enabled, the menubar is visible by default. This can also be toggled " +"with the \"View->Show Menubar\" command." +msgstr "" +"Кога е вклучено, мени лентата е предефинирано видлива. Ова може да Ñе менува " +"преку \"Приказ->Прикажи Мени лента\" командата." + +#: app/config/gimprc-blurbs.h:292 +msgid "" +"When enabled, the rulers are visible by default. This can also be toggled " +"with the \"View->Show Rulers\" command." +msgstr "" +"Кога е вклучено, ленирите Ñе Ñтандардно вклучени. Ова може да Ñе менува Ñо " +"\"Приказ->Прикажи лењири\" командата." + +#: app/config/gimprc-blurbs.h:296 +msgid "" +"When enabled, the scrollbars are visible by default. This can also be " +"toggled with the \"View->Show Scrollbars\" command." +msgstr "" +"Кога е вклучено, лентата Ñо лизгачите е Ñтандардно видлива. Ова иÑто така " +"може да Ñе менува преку \"Приказ->Прикажи лента Ñо лизгачи\" командата." + +#: app/config/gimprc-blurbs.h:300 +msgid "" +"When enabled, the statusbar is visible by default. This can also be toggled " +"with the \"View->Show Statusbar\" command." +msgstr "" +"Кога е вклучено, ÑтатуÑната лента е Ñтандардно видлива. Ова иÑто така може " +"да Ñе промени Ñо \"Приказ->Прикажи ÑтатуÑна лента\" командата." + +#: app/config/gimprc-blurbs.h:304 +msgid "" +"When enabled, the selection is visible by default. This can also be toggled " +"with the \"View->Show Selection\" command." +msgstr "" +"Кога е вклучено, изборот е Ñтандардно видлив. Ова иÑто така може да Ñе " +"промени Ñо \"Приказ->Прикажи избор\" командата." + +#: app/config/gimprc-blurbs.h:308 +msgid "" +"When enabled, the layer boundary is visible by default. This can also be " +"toggled with the \"View->Show Layer Boundary\" command." +msgstr "" +"Кога е вклучено, границите на Ñлоевите Ñе Ñтандардно видливи. Ова иÑто така " +"може да Ñе промени Ñо \"Приказ->Прикажи граници на Ñлоеви\" командата." + +#: app/config/gimprc-blurbs.h:312 +msgid "" +"When enabled, the guides are visible by default. This can also be toggled " +"with the \"View->Show Guides\" command." +msgstr "" +"Кога е вклучено, водичите Ñе Ñтандардно видливи. Ова иÑто така може да Ñе " +"промени Ñо \"Приказ->Прикажи водичи\" командата." + +#: app/config/gimprc-blurbs.h:316 +msgid "" +"When enabled, the grid is visible by default. This can also be toggled with " +"the \"View->Show Grid\" command." +msgstr "" +"Кога е вклучено, мрежата е Ñтандардно видлива. Ова иÑто така може да Ñе " +"промени Ñо \"Приказ->Прикажи мрежа\" командата." + +#: app/config/gimprc-blurbs.h:320 +msgid "Enable to display a handy GIMP tip on startup." +msgstr "Овозможува прикажување на згодниот ГИМП Ñоветник при подигање." + +#: app/config/gimprc-blurbs.h:323 +msgid "Enable to display tooltips." +msgstr "Овозможува приказ на Ñоветот за алатки." + +#: app/config/gimprc-blurbs.h:326 +msgid "" +"There is always a tradeoff between memory usage and speed. In most cases, " +"the GIMP opts for speed over memory. However, if memory is a big issue, try " +"to enable this setting." +msgstr "" +"Секогаш поÑтои размена помеѓу иÑкориÑтеноÑта на меморијата и брзината. Во " +"повеќето Ñлучаи, ГИМП ја бира брзината наÑпроти меморијата. Сепак, ако " +"големината на меморијата е голем проблем, пробајте да го вклучите ова " +"подеÑување." + +#: app/config/gimprc-blurbs.h:331 +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 " +"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\"." +msgstr "" +"Ја подеÑува локацијата на привремената датотека. Гимп кориÑти шема заÑнована " +"на делчиња за ракување Ñо меморијата. Привремената датотека Ñе кориÑти за " +"брза и леÑна размена на делчињата на диÑкот и назад. Бидете ÑвеÑни дека " +"привремената датотека може да Ñтане многу голема ако ГИМП Ñе кориÑти Ñо " +"големи Ñлики. ИÑто така, работите може да Ñтанат ужаÑно бавни ако " +"привремената датотека е креирана во директориум кој е монтиран преку мрежа. " +"Од тие причини, пожелно е да ја ÑмеÑтите привремената датотека во \"/tmp\"." + +#: app/config/gimprc-blurbs.h:340 +msgid "When enabled, menus can be torn off." +msgstr "Кога е вклучено, менијата можат да бидат иÑкинати." + +#: app/config/gimprc-blurbs.h:343 +msgid "" +"When enabled, you can change keyboard shortcuts for menu items by hitting a " +"key combination while the menu item is highlighted." +msgstr "" +"Кога е вклучено, можете во лет да ги менувате кратенките од таÑтатурата за " +"Ñтавките од менито Ñо притиÑкање на комбинација на копчиња кога е избрана " +"Ñтавка од менито." + +#: app/config/gimprc-blurbs.h:347 +msgid "Save changed keyboard shortcuts when the GIMP exits." +msgstr "Зачувај ги кратенките на таÑтатурата кога ГИМП ќе Ñе затвори." + +#: app/config/gimprc-blurbs.h:350 +msgid "Restore saved keyboard shortcuts on each GIMP startup." +msgstr "Поврати ги зачуваните кратенки за таÑтатурата при Ñекое подигање на ГИМП." + +#: 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, " +"but some files are likely to remain, so it is best if this directory not be " +"one that is shared by other users." +msgstr "" +"ПодеÑува директориум за привремени датотеки. Датотеките ќе Ñе појавуваат " +"тука во текот на работењето во ГИМП. Повеќето датотеки ќе иÑчезнат кога ГИМП " +"ќе Ñе затвори, но некои датотеки веројатно ќе оÑтанат, па најдобро е ова да " +"биде директориум кој го делите Ñо другите кориÑници." + +#: 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 +msgid "" +"The thumbnail in the Open dialog will be automatically updated if the file " +"being previewed is smaller than the size set here." +msgstr "" +"Смалениот приказ во дијалогот „Отвори“ автоматÑки ќе биде ажуриран, ако датотеката " +"која Ñе прегледува е помала од големината која е тука подеÑена." + +#: app/config/gimprc-blurbs.h:373 +msgid "" +"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." +msgstr "" +"ОÑтавата за делчињата оÑигурува дека ГИМП нема да изгуби делче помеѓу " +"меморијата и диÑкот. ПоÑтавување на поголема вредноÑÑ‚ значи дека ГИМП ќе " +"кориÑти помала привремена датотека, но повеќе ќе ја кориÑти меморијата. " +"Обратно, помала вредноÑÑ‚ значи дека ГИМП ќе ја кориÑти повеќе привремената " +"датотека, а помалку меморијата." + +#: app/config/gimprc-blurbs.h:384 +msgid "" +"The window type hint that is set on the toolbox. This may affect how your " +"window manager decorates and handles the toolbox window." +msgstr "" +"Ознака за видот на прозорот кој Ñе поÑтавува за алатки. Ова може да влијае " +"на тоа како вашиот управувач Ñо прозорците го иÑцртува и поÑтавува " +"прозорецот Ñо алатките." + +#: app/config/gimprc-blurbs.h:388 +msgid "Sets the manner in which transparency is displayed in images." +msgstr "Го подеÑува начинот на прикажување на провидноÑта во Ñликите." + +#: app/config/gimprc-blurbs.h:391 +msgid "Sets the size of the checkerboard used to display transparency." +msgstr "Ја подеÑува големината на шаховÑката табла која ја прикажува провидноÑта." + +#: 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 +msgid "" +"Sets the minimal number of operations that can be undone. More undo levels " +"are kept available until the undo-size limit is reached." +msgstr "" +"Го подеÑува минималниот број на операции кои можат да бидат поништени. " +"Повеќе нивоа за поништување Ñе доÑтапни Ñе додека на Ñе доÑтигне границата " +"за бројот на понуштувања." + +#: app/config/gimprc-blurbs.h:402 +msgid "" +"Sets an upper limit to the memory that is used per image to keep operations " +"on the undo stack. Regardless of this setting, at least as many undo-levels " +"as configured can be undone." +msgstr "" +"Ја подеÑува горната граница на количината на меморија која може да биде " +"кориÑтена за чување на операциите за поништување по Ñлика. ÐезавиÑно од ова " +"подеÑување, може да Ñе отповикаат највеќе онолку операции колку што е " +"подеÑено." + +#: app/config/gimprc-blurbs.h:407 +msgid "Sets the size of the previews in the Undo History." +msgstr "Ја подеÑува големината на прегледите во ИÑторијатот на поништување." + +#: app/config/gimprc-blurbs.h:410 +msgid "When enabled, pressing F1 will open the help browser." +msgstr "Кога е вклучено, Ñо притиÑкање на F1 Ñе отвара читач за помош." + +#: app/config/gimprc-blurbs.h:413 +#, c-format +msgid "" +"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." +msgstr "" +"ПоÑтавува надворешен читач на веб кој треба да Ñе кориÑти. Ова може да биде " +"целоÑна патека или име на извршниот програм која ќе ја барам во кориÑничката " +"патека (PATH). Доколку наредбата Ñодржи '%s' тоа ќе биде заменето Ñо адреÑа, " +"ианку адреÑата ќе биде додадена на наредбата раздвоена Ñо размак." + +#: app/config/gimpscanner.c:220 +msgid "invalid UTF-8 string" +msgstr "Ðеправилен UTF-8 збор" + +#: 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 +msgid "_White (full opacity)" +msgstr "_Бела (потполна непровидноÑÑ‚)" + +#: app/core/core-enums.c:28 +msgid "_Black (full transparency)" +msgstr "_Црна (потполно провидна)" + +#: app/core/core-enums.c:29 +msgid "Layer's _alpha channel" +msgstr "_Ðлфа канал на Ñлојот" + +#: app/core/core-enums.c:30 +msgid "_Transfer layer's alpha channel" +msgstr "_ПренеÑи го алфа каналот на Ñлојот" + +#: app/core/core-enums.c:31 +msgid "_Selection" +msgstr "_Селекција" + +#: app/core/core-enums.c:32 +msgid "_Grayscale copy of layer" +msgstr "_Копија на Ñлојот во Ñиви тонови" + +#: 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 +msgid "FG to BG (HSV)" +msgstr "Боја на четка во боја на позадина (HSV)" + +#: app/core/core-enums.c:63 +msgid "FG to transparent" +msgstr "Боја на четката во провидна" + +#: app/core/core-enums.c:64 +msgid "Custom gradient" +msgstr "СопÑтвен прелив" + +#: app/core/core-enums.c:92 +msgid "FG color fill" +msgstr "Пополнување Ñо тековната боја" + +#: app/core/core-enums.c:93 +msgid "BG color fill" +msgstr "Пополнување Ñо бојата на позадината" + +#: app/core/core-enums.c:94 +msgid "Pattern fill" +msgstr "Пополнување од шаблон" + +#: app/core/core-enums.c:123 +msgid "Add to the current selection" +msgstr "Додај во тековната Ñелекција" + +#: app/core/core-enums.c:124 +msgid "Subtract from the current selection" +msgstr "ИÑфрли од тековната Ñелекција" + +#: app/core/core-enums.c:125 +msgid "Replace the current selection" +msgstr "Замени ја тековната Ñелекција" + +#: app/core/core-enums.c:126 +msgid "Intersect with the current selection" +msgstr "ПреÑек Ñо тековната Ñелекција" + +#: app/core/core-enums.c:160 +msgid "Gray" +msgstr "Сива" + +#: 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 +msgid "None" +msgstr "Ðишто" + +#: app/core/core-enums.c:220 +msgid "Floyd-Steinberg (normal)" +msgstr "Флојд-Штајнберг (нормално)" + +#: app/core/core-enums.c:221 +msgid "Floyd-Steinberg (reduced color bleeding)" +msgstr "Флојд-Штајнберг (Ñмалено иÑтекување на боја)" + +#: app/core/core-enums.c:222 +msgid "Positioned" +msgstr "Положба" + +#: app/core/core-enums.c:251 +msgid "Generate optimum palette" +msgstr "СоÑтави најдобра палета" + +#: app/core/core-enums.c:252 +msgid "Use web-optimized palette" +msgstr "КориÑти палета оптимизирана за Интернет" + +#: app/core/core-enums.c:253 +msgid "Use black and white (1-bit) palette" +msgstr "КориÑти црно-бела (1-битна) палета" + +#: app/core/core-enums.c:254 +msgid "Use custom palette" +msgstr "КориÑти произволна палета" + +#: app/core/core-enums.c:329 +msgid "Foreground color" +msgstr "Боја на _четка:" + +#: app/core/core-enums.c:330 +msgid "Background color" +msgstr "Боја на позадина" + +#: app/core/core-enums.c:331 +msgid "White" +msgstr "Бела" + +#. Transparency +#: app/core/core-enums.c:332 app/dialogs/preferences-dialog.c:1889 +msgid "Transparency" +msgstr "ПровидноÑÑ‚" + +#: 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 +msgid "Bi-linear" +msgstr "Билинеарно" + +#: 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 +msgid "Square" +msgstr "Квадрат" + +#: app/core/core-enums.c:374 +msgid "Conical (sym)" +msgstr "КонуÑна (Ñиметрична)" + +#: app/core/core-enums.c:375 +msgid "Conical (asym)" +msgstr "КонуÑна (аÑиметрична)" + +#: app/core/core-enums.c:376 +msgid "Shaped (angular)" +msgstr "Обликувана (аголно)" + +#: app/core/core-enums.c:377 +msgid "Shaped (spherical)" +msgstr "Обликувана (Ñферично)" + +#: app/core/core-enums.c:378 +msgid "Shaped (dimpled)" +msgstr "Обликувана (Ñо помош на дупчиња)" + +#: app/core/core-enums.c:379 +msgid "Spiral (cw)" +msgstr "Спирала (во наÑока на Ñтрелките на чаÑовникот)" + +#: app/core/core-enums.c:380 +msgid "Spiral (ccw)" +msgstr "Спирала (обратно од Ñтрелките на чаÑовникот)" + +#: app/core/core-enums.c:410 +msgid "Intersections (dots)" +msgstr "ПреÑеци (точки)" + +#: app/core/core-enums.c:411 +msgid "Intersections (crosshairs)" +msgstr "ПреÑеци (нишани)" + +#: app/core/core-enums.c:412 +msgid "Dashed" +msgstr "Прецртано" + +#: app/core/core-enums.c:413 +msgid "Double dashed" +msgstr "Дупло прецртано" + +#: app/core/core-enums.c:414 app/core/core-enums.c:469 +msgid "Solid" +msgstr "ЧиÑто" + +#: app/core/core-enums.c:441 +msgid "Stroke line" +msgstr "ИÑцртај линија" + +#: app/core/core-enums.c:442 +msgid "Stroke with a paint tool" +msgstr "ИÑцртај Ñо помош на алатот за цртање" + +#: app/core/core-enums.c:498 +msgid "Miter" +msgstr "Ðголно" + +#: app/core/core-enums.c:499 app/core/core-enums.c:529 +msgid "Round" +msgstr "Заоблено" + +#: app/core/core-enums.c:500 +msgid "Bevel" +msgstr "Вдлабнување" + +#: app/core/core-enums.c:528 +msgid "Butt" +msgstr "ОÑтро" + +#: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1775 +msgid "Custom" +msgstr "Произволно" + +#: app/core/core-enums.c:567 +msgid "Line" +msgstr "Линија" + +#: app/core/core-enums.c:568 +msgid "Long dashes" +msgstr "Долги црти" + +#: app/core/core-enums.c:569 +msgid "Medium dashes" +msgstr "Средни црти" + +#: app/core/core-enums.c:570 +msgid "Short dashes" +msgstr "Кратки црти" + +#: app/core/core-enums.c:571 +msgid "Sparse dots" +msgstr "Ретки точки" + +#: app/core/core-enums.c:572 +msgid "Normal dots" +msgstr "Ðормални точки" + +#: app/core/core-enums.c:573 +msgid "Dense dots" +msgstr "ГуÑти точки" + +#: app/core/core-enums.c:574 +msgid "Stipples" +msgstr "ТочкеÑто" + +#: app/core/core-enums.c:575 +msgid "Dash dot..." +msgstr "Тире Ñ‚oчка..." + +#: app/core/core-enums.c:576 +msgid "Dash dot dot..." +msgstr "Тире Ñ‚oчка Ñ‚oчка..." + +#: app/core/core-enums.c:604 +msgid "Stock ID" +msgstr "ИÑпорачана ИБ" + +#: app/core/core-enums.c:605 +msgid "Inline pixbuf" +msgstr "Вградена Ñлика" + +#: app/core/core-enums.c:606 +msgid "Image file" +msgstr "Големина на Ñлика" + +#: app/core/core-enums.c:634 +msgid "Circle" +msgstr "Круг" + +#: app/core/core-enums.c:636 +msgid "Diamond" +msgstr "Дијамант" + +#: app/core/core-enums.c:664 app/dialogs/preferences-dialog.c:1921 +msgid "Horizontal" +msgstr "Хоризонтално" + +#: app/core/core-enums.c:665 app/dialogs/preferences-dialog.c:1923 +msgid "Vertical" +msgstr "Вертикално" + +#: app/core/core-enums.c:666 +msgid "Unknown" +msgstr "Ðепознато" + +#: app/core/core-enums.c:730 +msgid "Tiny" +msgstr "Мало" + +#: app/core/core-enums.c:731 +msgid "Very small" +msgstr "Многу мало" + +#: app/core/core-enums.c:732 +msgid "Small" +msgstr "Мали" + +#: app/core/core-enums.c:733 +msgid "Medium" +msgstr "Средни" + +#: app/core/core-enums.c:734 +msgid "Large" +msgstr "Големи" + +#: app/core/core-enums.c:735 +msgid "Very large" +msgstr "Многу големо" + +#: app/core/core-enums.c:736 +msgid "Huge" +msgstr "Огромно" + +#: app/core/core-enums.c:737 +msgid "Enormous" +msgstr "Ðенормално големо" + +#: app/core/core-enums.c:738 +msgid "Gigantic" +msgstr "ГигантÑко" + +#: app/core/core-enums.c:767 +msgid "Sawtooth wave" +msgstr "ТеÑтераÑÑ‚ бран" + +#: app/core/core-enums.c:768 +msgid "Triangular wave" +msgstr "Триаголен бран" + +#: app/core/core-enums.c:830 +msgid "No thumbnails" +msgstr "Без Ñмален приказ" + +#: app/core/core-enums.c:831 +msgid "Normal (128x128)" +msgstr "Ðормално (128Ñ…128)" + +#: app/core/core-enums.c:832 +msgid "Large (256x256)" +msgstr "Големо (256x256)" + +#: app/core/core-enums.c:859 +msgid "Forward (traditional)" +msgstr "Ðанапред (Традиционално)" + +#: app/core/core-enums.c:860 +msgid "Backward (corrective)" +msgstr "Ðаназад (ИÑправувачки)" + +#: app/core/core-enums.c:1028 +msgid "<>" +msgstr "<<неправилно>>" + +#: app/core/core-enums.c:1029 +msgid "Scale image" +msgstr "Зголеми или Ñмали ја Ñликата" + +#: app/core/core-enums.c:1030 +msgid "Resize image" +msgstr "Промени ја големината на Ñликата" + +#: app/core/core-enums.c:1031 +msgid "Flip image" +msgstr "Обрни ја Ñликата" + +#: app/core/core-enums.c:1032 +msgid "Rotate image" +msgstr "Ротирај Ñлика" + +#: app/core/core-enums.c:1033 +msgid "Crop image" +msgstr "ИÑечи Ñлика" + +#: app/core/core-enums.c:1034 +msgid "Convert image" +msgstr "Конвертирај Ñлика" + +#: app/core/core-enums.c:1035 +msgid "Merge layers" +msgstr "Спој ги Ñлоевите" + +#: app/core/core-enums.c:1036 +msgid "Merge vectors" +msgstr "Спој ги векторите" + +#: app/core/core-enums.c:1037 app/core/gimpchannel.c:383 +msgid "Quick Mask" +msgstr "БрзаМаÑка" + +#: app/core/core-enums.c:1038 app/core/core-enums.c:1067 +#: 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:1039 app/core/core-enums.c:1068 +msgid "Guide" +msgstr "Водич" + +#: app/core/core-enums.c:1041 app/core/core-enums.c:1071 +msgid "Drawable mod" +msgstr "Режим на цртање" + +#: app/core/core-enums.c:1042 app/core/core-enums.c:1072 +msgid "Selection mask" +msgstr "МаÑка на Ñелекција" + +#: app/core/core-enums.c:1043 app/core/core-enums.c:1075 +msgid "Item visibility" +msgstr "ВидливоÑÑ‚ на Ñтавката" + +#: app/core/core-enums.c:1044 +msgid "Linked item" +msgstr "Поврзан предмет" + +#: app/core/core-enums.c:1045 +msgid "Item properties" +msgstr "СвојÑтва на предметот" + +#: app/core/core-enums.c:1046 app/core/core-enums.c:1074 +msgid "Move item" +msgstr "ПремеÑти предмет" + +#: app/core/core-enums.c:1047 +msgid "Scale item" +msgstr "Зголеми или намали предмет" + +#: app/core/core-enums.c:1048 +msgid "Resize item" +msgstr "Промени големина на предметот" + +#: app/core/core-enums.c:1049 app/core/core-enums.c:1079 +msgid "Add layer mask" +msgstr "Додади маÑка за Ñлоеви" + +#: app/core/core-enums.c:1050 +msgid "Apply layer mask" +msgstr "Примени маÑка за Ñлоеви" + +#: app/core/core-enums.c:1051 +msgid "Floating selection to layer" +msgstr "Пловечката Ñелекција префрли ја во Ñлој" + +#: app/core/core-enums.c:1052 +msgid "Float selection" +msgstr "Пловечка Ñелекција" + +#: app/core/core-enums.c:1053 +msgid "Anchor floating selection" +msgstr "Ð’Ñидри ја пловечката Ñелекција" + +#: app/core/core-enums.c:1054 +msgid "Remove floating selection" +msgstr "ОтÑтрани пловечка Ñелекција" + +#: app/core/core-enums.c:1055 app/core/gimp-edit.c:201 +msgid "Paste" +msgstr "Вметни" + +#: app/core/core-enums.c:1056 app/core/gimp-edit.c:352 +msgid "Cut" +msgstr "ИÑечи" + +#: app/core/core-enums.c:1057 app/core/core-enums.c:1085 +#: app/tools/gimptexttool.c:142 app/widgets/widgets-enums.c:263 +msgid "Text" +msgstr "ТекÑÑ‚" + +#: app/core/core-enums.c:1058 app/core/core-enums.c:1098 +#: app/core/gimpdrawable-transform.c:867 +msgid "Transform" +msgstr "ТраÑформација" + +#: app/core/core-enums.c:1059 app/core/core-enums.c:1099 +#: app/paint/gimppaintcore.c:344 +msgid "Paint" +msgstr "Цртај" + +#: app/core/core-enums.c:1060 app/core/core-enums.c:1100 +msgid "Attach parasite" +msgstr "Прикачи паразит" + +#: app/core/core-enums.c:1061 app/core/core-enums.c:1101 +msgid "Remove parasite" +msgstr "ОтÑтрани го паразитот" + +#: app/core/core-enums.c:1062 +msgid "Import paths" +msgstr "Увези патеки" + +#: app/core/core-enums.c:1063 app/pdb/drawable_cmds.c:1690 +msgid "Plug-In" +msgstr "Додаток" + +#: app/core/core-enums.c:1064 +msgid "Image type" +msgstr "Тип на Ñлика" + +#: app/core/core-enums.c:1065 +msgid "Image size" +msgstr "Големина на Ñлика" + +#: app/core/core-enums.c:1066 +msgid "Resolution change" +msgstr "Промена на резолуција" + +#: app/core/core-enums.c:1069 +msgid "Change indexed palette" +msgstr "Промена на индекÑираната палета" + +#: app/core/core-enums.c:1073 +msgid "Rename item" +msgstr "Промени име на предметот" + +#: app/core/core-enums.c:1076 +msgid "Set item linked" +msgstr "ПодеÑи го поврзаниот предмет" + +#: app/core/core-enums.c:1077 +msgid "New layer" +msgstr "Ðов Ñлој" + +#: app/core/core-enums.c:1080 +msgid "Delete layer mask" +msgstr "Избриши маÑка за Ñлоеви" + +#: app/core/core-enums.c:1081 +msgid "Reposition layer" +msgstr "Повторно ÑмеÑти Ñлој" + +#: app/core/core-enums.c:1082 +msgid "Set layer mode" +msgstr "ПодеÑи режим на Ñлојот" + +#: app/core/core-enums.c:1083 +msgid "Set layer opacity" +msgstr "ПодеÑи непровидноÑÑ‚ на Ñлојот" + +#: app/core/core-enums.c:1084 +msgid "Set preserve trans" +msgstr "ПодеÑи зачувување на провидноÑта" + +#: app/core/core-enums.c:1086 +msgid "Text modified" +msgstr "ТекÑтот е променет" + +#: app/core/core-enums.c:1087 +msgid "New channel" +msgstr "Ðов канал" + +#: app/core/core-enums.c:1089 +msgid "Reposition channel" +msgstr "Повторно ÑмеÑти канал" + +#: app/core/core-enums.c:1090 +msgid "Channel color" +msgstr "Боја на каналот" + +#: app/core/core-enums.c:1091 +msgid "New vectors" +msgstr "Ðови вектори" + +#: app/core/core-enums.c:1092 +msgid "Delete vectors" +msgstr "Избриши вектори" + +#: app/core/core-enums.c:1093 +msgid "Vectors mod" +msgstr "ВекторÑки режим" + +#: app/core/core-enums.c:1094 +msgid "Reposition vectors" +msgstr "Повторно ÑмеÑти вектори" + +#: app/core/core-enums.c:1095 +msgid "FS to layer" +msgstr "FS на Ñлој" + +#: app/core/core-enums.c:1096 +msgid "FS rigor" +msgstr "FS крутоÑÑ‚" + +#: app/core/core-enums.c:1097 +msgid "FS relax" +msgstr "FS Опуштање" + +#: app/core/core-enums.c:1102 +msgid "EEK: can't undo" +msgstr "EEK: не можам да поништам" + +#: app/core/gimp-edit.c:129 app/core/gimp-edit.c:253 +msgid "Pasted Layer" +msgstr "Вметнат Ñлој" + +#: app/core/gimp-edit.c:303 +msgid "Fill with FG Color" +msgstr "Пополни Ñо тековната боја на четката" + +#: app/core/gimp-edit.c:307 app/core/gimp-edit.c:328 +msgid "Fill with BG Color" +msgstr "Пополни Ñо бојата на позадината" + +#: app/core/gimp-edit.c:311 +msgid "Fill with White" +msgstr "Пополни Ñо бела боја" + +#: app/core/gimp-edit.c:315 +msgid "Fill with Transparency" +msgstr "Пополни Ñо провидноÑÑ‚" + +#: app/core/gimp-edit.c:319 +msgid "Fill with Pattern" +msgstr "Пополни Ñо шаблон" + +#: app/core/gimp-gradients.c:75 +msgid "FG to BG (HSV counter-clockwise)" +msgstr "Боја на четка во боја на позадина (HSV Ñпротивно од Ñтрелките на чаÑовникот)" + +#: app/core/gimp-gradients.c:80 +msgid "FG to BG (HSV clockwise hue)" +msgstr "Боја на четка во боја на позадина (HSV во правец на Ñтрелките на чаÑовникот)" + +#: app/core/gimp-gradients.c:85 +msgid "FG to Transparent" +msgstr "Боја на четката во провидна" + +#: app/core/gimp-gui.c:148 +msgid "GIMP" +msgstr "ГИМП" + +#. register all internal procedures +#: app/core/gimp.c:638 +msgid "Procedural Database" +msgstr "База на процедури" + +#: app/core/gimp.c:641 +msgid "Plug-In Environment" +msgstr "Окружување за додатоци" + +#. initialize the global parasite table +#: app/core/gimp.c:852 +msgid "Looking for data files" +msgstr "Ги барам датотеките Ñо податоците" + +#: app/core/gimp.c:852 +msgid "Parasites" +msgstr "Паразити" + +#. initialize the document history +#: app/core/gimp.c:876 +msgid "Documents" +msgstr "Документи" + +#. initialize the module list +#: app/core/gimp.c:884 app/dialogs/preferences-dialog.c:2296 +msgid "Modules" +msgstr "Модули" + +#: app/core/gimpbrush.c:531 +#, c-format +msgid "Could not read %d bytes from '%s': %s" +msgstr "Ðе можев да прочитам %d бајтови од „%s“: %s" + +#: app/core/gimpbrush.c:566 +#, c-format +msgid "Fatal parse error in brush file '%s': Unknown depth %d." +msgstr "" +"Кобна грешка при обработката на датотеката Ñа четките „%s“: Ðепозната " +"длабочина %d." + +#: app/core/gimpbrush.c:579 +#, c-format +msgid "Fatal parse error in brush file '%s': Unknown version %d." +msgstr "" +"Кобна грешка при обработка на датотеката Ñа четките „%s“: Ðепозната верзија %" +"d." + +#: app/core/gimpbrush.c:595 app/core/gimpbrush.c:715 +#, c-format +msgid "Fatal parse error in brush file '%s': File appears truncated." +msgstr "" +"Кобна грешка при обработка на датотеката Ñо четките „%s“: датотеката изгледа " +"недовршено." + +#: app/core/gimpbrush.c:603 app/core/gimpbrushgenerated.c:648 +#: app/core/gimpbrushpipe.c:360 +#, c-format +msgid "Invalid UTF-8 string in brush file '%s'." +msgstr "ÐеиÑправна УТФ-8 нишка во датотеката Ñо четките '%s'." + +#: app/core/gimpbrush.c:610 app/core/gimpcontext.c:1299 +#: app/core/gimpitem.c:479 app/core/gimppattern.c:400 +#: app/dialogs/template-options-dialog.c:80 app/tools/gimpvectortool.c:339 +msgid "Unnamed" +msgstr "Ðеименувано" + +#: app/core/gimpbrush.c:704 +#, c-format +msgid "" +"Fatal parse error in brush file '%s': Unsupported brush depth %d\n" +"GIMP brushes must be GRAY or RGBA." +msgstr "" +"Кобна грешка при обработката на датотеката Ñо четки '%s': Ðеподржана " +"длабочина на четката %d\n" +"ГИМП четките мораат да бидат СИВИ или во RGBA формат." + +#: 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 +#, c-format +msgid "Fatal parse error in brush file '%s': Unknown GIMP brush version." +msgstr "" +"Кобна грешка при обработката на датотеката Ñо четките '%s': Ðепозната " +"верзија на ГИМП четка." + +#: app/core/gimpbrushgenerated.c:669 +#, c-format +msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." +msgstr "Кобна грешка при обработката на датотеката за четката '%s': Ðепознат облик на ГИМП четка." + +#: app/core/gimpbrushgenerated.c:750 +#, c-format +msgid "Error while reading brush file '%s': %s" +msgstr "Грешка при читањето на датотеката за четката '%s': %s" + +#: app/core/gimpbrushgenerated.c:752 +msgid "File is truncated" +msgstr "Датотеката е оштетена" + +#: app/core/gimpbrushpipe.c:375 app/core/gimpbrushpipe.c:395 +#: app/core/gimpbrushpipe.c:485 +#, 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 +msgid "Channel" +msgstr "Канал" + +#: app/core/gimpchannel.c:281 +msgid "Rename Channel" +msgstr "Промени назив на каналот" + +#: app/core/gimpchannel.c:282 +msgid "Move Channel" +msgstr "ПомеÑти канал" + +#: app/core/gimpchannel.c:283 +msgid "Scale Channel" +msgstr "Зголеми или Смали канал" + +#: app/core/gimpchannel.c:284 +msgid "Resize Channel" +msgstr "Промени големина на каналот" + +#: app/core/gimpchannel.c:285 +msgid "Flip Channel" +msgstr "Обрни канал" + +#: app/core/gimpchannel.c:286 +msgid "Rotate Channel" +msgstr "Ротирај канал" + +#: app/core/gimpchannel.c:287 app/core/gimpdrawable-transform.c:1121 +msgid "Transform Channel" +msgstr "ТранÑформирај канал" + +#: app/core/gimpchannel.c:288 +msgid "Stroke Channel" +msgstr "СтеÑни канал" + +#: app/core/gimpchannel.c:310 +msgid "Feather Channel" +msgstr "Омекни канал" + +#: app/core/gimpchannel.c:311 +msgid "Sharpen Channel" +msgstr "ИзоÑтри канал" + +#: app/core/gimpchannel.c:312 +msgid "Clear Channel" +msgstr "ИÑчиÑти канал" + +#: app/core/gimpchannel.c:313 +msgid "Fill Channel" +msgstr "Пополни канал" + +#: app/core/gimpchannel.c:314 +msgid "Invert Channel" +msgstr "Инвертирај канал" + +#: app/core/gimpchannel.c:315 +msgid "Border Channel" +msgstr "Граници на каналот" + +#: app/core/gimpchannel.c:316 +msgid "Grow Channel" +msgstr "Рашири канал" + +#: app/core/gimpchannel.c:317 +msgid "Shrink Channel" +msgstr "СтеÑни канал" + +#: app/core/gimpchannel.c:631 +msgid "Cannot stroke empty channel." +msgstr "Ðе може да иÑцрта празен канал." + +#: app/core/gimpchannel.c:1527 +msgid "Set Channel Color" +msgstr "ПодеÑи боја на каналот" + +#: app/core/gimpchannel.c:1575 +msgid "Set Channel Opacity" +msgstr "ПодеÑи непровидноÑÑ‚ на каналот" + +#: 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 +msgid "Rect Select" +msgstr "Избери квадрат" + +#: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 +msgid "Ellipse Select" +msgstr "Избери елипÑа" + +#: app/core/gimpchannel-select.c:373 +msgid "Alpha to Selection" +msgstr "Ðлфа во Ñелекција" + +#: 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 +msgid "Fuzzy Select" +msgstr "Слободен избор" + +#: app/core/gimpchannel-select.c:505 +msgid "Select by Color" +msgstr "Избери по боја" + +#: 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 +#, 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:274 app/core/gimpitem.c:277 +msgid "copy" +msgstr "дупликат" + +#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:286 +#, c-format +msgid "%s copy" +msgstr "%s дупликат" + +#: 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 +msgid "Blend" +msgstr "Стопување" + +#: 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 +msgid "Bucket Fill" +msgstr "Пополни Ñо боја" + +#: app/core/gimpdrawable-desaturate.c:98 +msgid "Desaturate" +msgstr "ОÑиромаши" + +#: app/core/gimpdrawable-equalize.c:80 +msgid "Equalize" +msgstr "Изедначи" + +#: 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 +msgid "Levels" +msgstr "Ðивоа" + +#: app/core/gimpdrawable-offset.c:316 +msgid "Offset Drawable" +msgstr "ПомеÑтувај Цртливо" + +#: app/core/gimpdrawable-stroke.c:319 +msgid "Render Stroke" +msgstr "ИÑцртај потег" + +#. Start a transform undo group +#: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 +msgid "Flip" +msgstr "Обрни" + +#. Start a transform undo group +#: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 +msgid "Rotate" +msgstr "Ротирање" + +#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:259 +msgid "Transform Layer" +msgstr "ТранÑформирај Ñлој" + +#: app/core/gimpdrawable-transform.c:1134 +msgid "Transformation" +msgstr "ТранÑформација" + +#: app/core/gimpenvirontable.c:285 +#, c-format +msgid "Empty variable name in environment file %s" +msgstr "ИÑпразни името на променливата во датотеката на опкружувањето %s" + +#: 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 +#, c-format +msgid "Fatal parse error in gradient file '%s': Not a GIMP gradient file." +msgstr "" +"Кобна грешка при обработката на датотеката Ñо преливот „%s“: не е ГИМП-ова " +"датотека Ñо преливи." + +#: app/core/gimpgradient-load.c:87 +#, c-format +msgid "Invalid UTF-8 string in gradient file '%s'." +msgstr "ÐеиÑправна УТФ-8 нишка во датотеката Ñо преливите „%s“" + +#: 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 +#, c-format +msgid "Corrupt segment %d in gradient file '%s'." +msgstr "Корумпиран Ñегмент %d во датотеката Ñо преливите „%s“." + +#: app/core/gimpgradient-load.c:255 +#, c-format +msgid "No linear gradients found in '%s'" +msgstr "Ðе Ñе најдени линеарни преливи во '%s'" + +#: app/core/gimpgradient-load.c:265 +#, c-format +msgid "Failed to import gradients from '%s': %s" +msgstr "Ðе можев да ги увезам преливите од „%s“: %s" + +#: app/core/gimpgrid.c:128 +msgid "Line style used for the grid." +msgstr "Стил на линии кориÑтен за мрежата." + +#: app/core/gimpgrid.c:134 +msgid "The foreground color of the grid." +msgstr "Боја на линијата на мрежата." + +#: 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 +msgid "Horizontal spacing of grid lines." +msgstr "Хоризонтален раздел на линиите на мрежата." + +#: app/core/gimpgrid.c:150 +msgid "Vertical spacing of grid lines." +msgstr "Вертикален раздел на линиите на мрежата." + +#: 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 +msgid "Vertical offset of the first grid line; this may be a negative number." +msgstr "" +"Хоризонталниот офÑет на првата линија на мрежата; ова може да биде и " +"негативен број." + +#: app/core/gimpimage-colormap.c:63 +msgid "Set Colormap" +msgstr "ПодеÑи Мапа на бои" + +#: app/core/gimpimage-colormap.c:115 +msgid "Change Colormap entry" +msgstr "Промени Ð²Ð½ÐµÑ Ð²Ð¾ Мапата на бои" + +#: app/core/gimpimage-colormap.c:135 +msgid "Add Color to Colormap" +msgstr "Додади боја во Мапата на бои" + +#: app/core/gimpimage-convert.c:780 +msgid "Convert Image to RGB" +msgstr "Префрли ја Ñликата во RGB режим" + +#: app/core/gimpimage-convert.c:784 +msgid "Convert Image to Grayscale" +msgstr "Префрли ја Ñликата во Ñиви тонови" + +#: app/core/gimpimage-convert.c:788 +msgid "Convert Image to Indexed" +msgstr "Префрли ја Ñликата во индекÑирана" + +#: app/core/gimpimage-convert.c:867 +msgid "Converting to indexed (stage 2)..." +msgstr "Префрлам во индекÑирана (фаза 2)..." + +#: app/core/gimpimage-convert.c:911 +msgid "Converting to indexed (stage 3)..." +msgstr "Префрлам во индекÑирана (фаза 3)..." + +#: app/core/gimpimage-crop.c:123 +msgid "Crop Image" +msgstr "ИÑечи Ñлика" + +#: app/core/gimpimage-crop.c:126 app/core/gimpimage-resize.c:67 +msgid "Resize Image" +msgstr "Промени ја големината на Ñликата" + +#: app/core/gimpimage-guides.c:53 +msgid "Add Horizontal Guide" +msgstr "Додади хоризонтални водичи" + +#: app/core/gimpimage-guides.c:80 +msgid "Add Vertical Guide" +msgstr "Додади вертикални водичи" + +#: app/core/gimpimage-guides.c:143 app/tools/gimpmovetool.c:570 +msgid "Remove Guide" +msgstr "ОтÑтрани водичи" + +#: app/core/gimpimage-guides.c:167 +msgid "Move Guide" +msgstr "ПомеÑти водичи" + +#: app/core/gimpimage-merge.c:91 +msgid "Merge Visible Layers" +msgstr "Спој ги видливите Ñлоеви" + +#: 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 +msgid "Flatten Image" +msgstr "ОтÑтрани (Ñпој ги во еден) Ñите Ñлоеви." + +#: app/core/gimpimage-merge.c:193 +msgid "Merge Down" +msgstr "Спој ги Ñо Ñлој пониÑко." + +#: app/core/gimpimage-merge.c:202 +msgid "There are not enough visible layers for a merge down." +msgstr "Ðема доволно видливи Ñлоеви за Ñпојување надолу." + +#: app/core/gimpimage-merge.c:543 +msgid "Merge Visible Paths" +msgstr "Спој ги видливите патеки" + +#: 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 +msgid "Enable Quick Mask" +msgstr "Вклучи БрзиМаÑки" + +#: app/core/gimpimage-qmask.c:117 +msgid "Disable Quick Mask" +msgstr "ИÑклучи БрзиМаÑки" + +#: app/core/gimpimage-undo-push.c:3055 +#, c-format +msgid "Can't undo %s" +msgstr "Ðе можам да поништам %s" + +#: app/core/gimpimage.c:1357 +msgid "Change Image Resolution" +msgstr "Промени резолуција на Ñликата" + +#: app/core/gimpimage.c:1397 +msgid "Change Image Unit" +msgstr "Промени ја единицата на Ñликата" + +#: app/core/gimpimage.c:2177 +msgid "Attach Parasite to Image" +msgstr "Прикачи паразит на Ñликата" + +#: app/core/gimpimage.c:2210 +msgid "Remove Parasite from Image" +msgstr "ОтÑтрани го паразитот од Ñликата" + +#: app/core/gimpimage.c:2678 +msgid "Add Layer" +msgstr "Додади Ñлој" + +#: app/core/gimpimage.c:2745 +msgid "Remove Layer" +msgstr "ОтÑтрани Ñлој" + +#: app/core/gimpimage.c:2816 +msgid "Layer cannot be raised higher." +msgstr "Слојот не може да Ñе подигне повиÑоко." + +#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +msgid "Cannot raise a layer without alpha." +msgstr "Ðе можам да подигнам Ñлој кој нема алфа канал." + +#: app/core/gimpimage.c:2827 +msgid "Raise Layer" +msgstr "Подигни Ñлој" + +#: app/core/gimpimage.c:2844 +msgid "Layer cannot be lowered more." +msgstr "Слојот не може да Ñе Ñпушти повеќе." + +#: app/core/gimpimage.c:2849 +msgid "Lower Layer" +msgstr "Спушти Ñлој" + +#: app/core/gimpimage.c:2866 +msgid "Layer is already on top." +msgstr "Слојот е веќе на врвот." + +#: app/core/gimpimage.c:2877 +msgid "Raise Layer to Top" +msgstr "Подигни Ñлој на врвот" + +#: app/core/gimpimage.c:2897 +msgid "Layer is already on the bottom." +msgstr "Слојот е веќе на дното." + +#: app/core/gimpimage.c:2902 +msgid "Lower Layer to Bottom" +msgstr "Спушти го Ñлојот на дното" + +#: app/core/gimpimage.c:2941 +#, c-format +msgid "Layer '%s' has no alpha. Layer was placed above it." +msgstr "Слојот „%s“ нема алфа канал. Слојот е поÑтавен над него." + +#: app/core/gimpimage.c:2993 +msgid "Add Channel" +msgstr "Додади канал" + +#: app/core/gimpimage.c:3038 +msgid "Remove Channel" +msgstr "ОтÑтрани канал" + +#: app/core/gimpimage.c:3082 +msgid "Channel cannot be raised higher." +msgstr "Каналот не може да Ñе подигне повиÑоко." + +#: app/core/gimpimage.c:3087 +msgid "Raise Channel" +msgstr "Подигни канал" + +#: app/core/gimpimage.c:3104 +msgid "Channel is already on top." +msgstr "Слојот е веќе на врвот." + +#: app/core/gimpimage.c:3109 +msgid "Raise Channel to Top" +msgstr "Подигни го каналот на врвот" + +#: app/core/gimpimage.c:3126 +msgid "Channel cannot be lowered more." +msgstr "Каналот не може да Ñе Ñпушти пониÑко." + +#: app/core/gimpimage.c:3131 +msgid "Lower Channel" +msgstr "Спушти канал" + +#: app/core/gimpimage.c:3151 +msgid "Channel is already on the bottom." +msgstr "Слојот е веќе на дното." + +#: app/core/gimpimage.c:3156 +msgid "Lower Channel to Bottom" +msgstr "Спушти канал на дно" + +#: app/core/gimpimage.c:3231 +msgid "Add Path" +msgstr "Додади патека" + +#: app/core/gimpimage.c:3276 +msgid "Remove Path" +msgstr "ОтÑтрани патека" + +#: app/core/gimpimage.c:3320 +msgid "Path cannot be raised higher." +msgstr "Патеката не може да Ñе подигне повиÑоко." + +#: app/core/gimpimage.c:3325 +msgid "Raise Path" +msgstr "Подигни патека" + +#: app/core/gimpimage.c:3342 +msgid "Path is already on top." +msgstr "Патеката е веќе на врвот." + +#: app/core/gimpimage.c:3347 +msgid "Raise Path to Top" +msgstr "Подигни патека на врв" + +#: app/core/gimpimage.c:3364 +msgid "Path cannot be lowered more." +msgstr "Патеката не може да Ñе Ñпушти пониÑко." + +#: app/core/gimpimage.c:3369 +msgid "Lower Path" +msgstr "Спушти патека" + +#: app/core/gimpimage.c:3389 +msgid "Path is already on the bottom." +msgstr "Патеката е веќе на дното." + +#: app/core/gimpimage.c:3394 +msgid "Lower Path to Bottom" +msgstr "Спушти патека на дно" + +#: app/core/gimpimagefile.c:568 +msgid "Remote image" +msgstr "Одалечена Ñлика" + +#: app/core/gimpimagefile.c:573 app/dialogs/preferences-dialog.c:1443 +msgid "Folder" +msgstr "Директориуми" + +#: app/core/gimpimagefile.c:578 +msgid "Special File" +msgstr "Специјална датотека" + +#: app/core/gimpimagefile.c:605 +msgid "Click to create preview" +msgstr "Кликни да Ñоздадеш преглед" + +#: app/core/gimpimagefile.c:609 +msgid "Loading preview ..." +msgstr "Вчитувам преглед..." + +#: app/core/gimpimagefile.c:613 +msgid "Preview is out of date" +msgstr "Прегледот е заÑтарен" + +#: 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:533 app/widgets/gimptemplateeditor.c:638 +#: app/widgets/gimptemplateeditor.c:674 +#, c-format +msgid "%d x %d pixels" +msgstr "%d x %d пикÑели" + +# bug: plural-forms +#: app/core/gimpimagefile.c:639 +msgid "1 Layer" +msgstr "1 Слој" + +# bug: plural-forms +#: app/core/gimpimagefile.c:641 +#, c-format +msgid "%d Layers" +msgstr "Слоеви: %d" + +#: app/core/gimpimagefile.c:682 +#, c-format +msgid "Could not open thumbnail '%s': %s" +msgstr "Ðе можев да го отворам Ñмалениот приказ '%s': %s" + +#: app/core/gimpitem.c:1096 +msgid "Attach Parasite" +msgstr "Прикачи паразит" + +#: app/core/gimpitem.c:1106 +msgid "Attach Parasite to Item" +msgstr "Прикачи pаразит на предметот" + +#: app/core/gimpitem.c:1145 app/core/gimpitem.c:1152 +msgid "Remove Parasite from Item" +msgstr "ОтÑтрани го паразитот од предметот" + +#: app/core/gimplayer-floating-sel.c:98 +msgid "Remove Floating Selection" +msgstr "ОтÑтрани пловечка Ñелекција" + +#: 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 +msgid "Anchor Floating Selection" +msgstr "ЗаÑидри ја пловечката Ñелекција" + +#: 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 +msgid "Floating Selection to Layer" +msgstr "Пловечката Ñелекција префрли во Ñлој" + +#: app/core/gimplayer.c:252 app/pdb/internal_procs.c:152 +msgid "Layer" +msgstr "Слој" + +#: app/core/gimplayer.c:253 +msgid "Rename Layer" +msgstr "Промени име на Ñлојот" + +#: app/core/gimplayer.c:254 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +msgid "Move Layer" +msgstr "ПомеÑти Ñлој" + +#: app/core/gimplayer.c:256 +msgid "Resize Layer" +msgstr "Врати големина на Ñлој" + +#: app/core/gimplayer.c:257 +msgid "Flip Layer" +msgstr "Обрни Ñлој" + +#: app/core/gimplayer.c:258 +msgid "Rotate Layer" +msgstr "Ротирај Ñлој" + +#: app/core/gimplayer.c:341 app/core/gimplayer.c:1129 +#: app/core/gimplayermask.c:236 +#, c-format +msgid "%s mask" +msgstr "%s маÑка" + +#: app/core/gimplayer.c:387 +#, c-format +msgid "" +"Floating Selection\n" +"(%s)" +msgstr "" +"Пловечка Ñелекција\n" +"(%s)" + +#: app/core/gimplayer.c:1055 +msgid "Cannot add layer mask to layer which is not part of an image." +msgstr "Ðе можам да додадам маÑка на Ñлојот кој очигледно не е дел од Ñликата." + +#: app/core/gimplayer.c:1062 +msgid "Unable to add a layer mask since the layer already has one." +msgstr "Ðе можам да додадам маÑка на Ñлојот бидејки Ñлојот веќе има една." + +#: app/core/gimplayer.c:1069 +msgid "Cannot add layer mask to a layer with no alpha channel." +msgstr "Ðе можам да додадам маÑка на Ñлој кој нема алфа канал." + +#: app/core/gimplayer.c:1079 +msgid "Cannot add layer mask of different dimensions than specified layer." +msgstr "Ðе можам да додадам маÑка Ñо различни димензии од избраниот Ñлој." + +#: app/core/gimplayer.c:1183 +msgid "Transfer Alpha to Mask" +msgstr "ПренеÑи провидноÑÑ‚ во маÑката" + +#: app/core/gimplayer.c:1343 +msgid "Apply Layer Mask" +msgstr "Примени маÑка за Ñлоеви" + +#: app/core/gimplayer.c:1344 +msgid "Delete Layer Mask" +msgstr "Избриши маÑка за Ñлоеви" + +#: app/core/gimplayer.c:1445 +msgid "Add Alpha Channel" +msgstr "Додај Ðлфа канал" + +#: app/core/gimplayer.c:1467 +msgid "Layer to Image Size" +msgstr "Изедначи ја големината на Ñлојот и Ñликата" + +#: app/core/gimplayermask.c:132 +msgid "Move Layer Mask" +msgstr "ПомеÑти маÑка на Ñлојот" + +#: app/core/gimppalette-import.c:490 +#, c-format +msgid "" +"Unknown type of palette file:\n" +"%s" +msgstr "" +"Ðепознат вид на датотека за палета:\n" +"%s" + +# bug: cannot first sentence be replaced with the one from next message? +#: app/core/gimppalette.c:375 +#, c-format +msgid "" +"Fatal parse error in palette file '%s': Missing magic header.\n" +"Does this file need converting from DOS?" +msgstr "" +"Кобна грешка во датотеката на палетата '%s': ÐедоÑтига волшебното заглавие.\n" +"Треба ли оваа датотека да Ñе преведе од DOS?" + +# bug: cannot this be used in the above message? +#: 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 +#, c-format +msgid "Fatal parse error in palette file '%s': Read error in line %d." +msgstr "" +"Кобна грешка во датотеката на палетата '%s': Грешка при читањето на %d. " +"редот." + +#: app/core/gimppalette.c:410 +#, c-format +msgid "Invalid UTF-8 string in palette file '%s'" +msgstr "ÐеиÑправна UTF-8 нишка во палетната датотека '%s'" + +#: app/core/gimppalette.c:438 +#, c-format +msgid "" +"Reading palette file '%s': Invalid number of columns in line %d. Using " +"default value." +msgstr "" +"Ја читам палетната датотека '%s': Ðеправилен број на колони во редот %d. Ја " +"кориÑтам Ñтандардната вредноÑÑ‚." + +#. maybe we should just abort? +#: app/core/gimppalette.c:484 +#, c-format +msgid "Reading palette file '%s': Missing RED component in line %d." +msgstr "Ја читам палетата '%s': ÐедоÑтига ЦРВЕÐРкомпонента во редот %d." + +#: app/core/gimppalette.c:492 +#, c-format +msgid "Reading palette '%s': Missing GREEN component in line %d." +msgstr "Ја читам палетата '%s': ÐедоÑтига ЗЕЛЕÐРкомпонента во редот %d." + +#: app/core/gimppalette.c:500 +#, c-format +msgid "Reading palette file '%s': Missing BLUE component in line %d." +msgstr "Ја читам палетата '%s': ÐедоÑтига СИÐРкомпонента во редот %d." + +#: app/core/gimppalette.c:510 +#, c-format +msgid "Reading palette file '%s': RGB value out of range in line %d." +msgstr "" +"Ја читам палетната датотека '%s': RGB вредноÑта е надвор од опÑег во редот %" +"d." + +# bug: plural-forms +#: 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 +#, c-format +msgid "Fatal parse error in pattern file '%s': Unknown pattern format version %d." +msgstr "" +"Кобна грешка при обработката на датотеката Ñо шаблонот '%s': Ðепозната " +"верзија на иÑечоците %d." + +#: app/core/gimppattern.c:367 +#, c-format +msgid "" +"Fatal parse error in pattern file '%s: Unsupported pattern depth %d.\n" +"GIMP Patterns must be GRAY or RGB." +msgstr "" +"Кобна грешка при обработката на датотеката Ñо иÑечокот '%s': Ðеподржана " +"длабочина на иÑечоците %d. ГИМП иÑечоците мораат да бидат СИВИ или RGB." + +#: app/core/gimppattern.c:393 +#, c-format +msgid "Invalid UTF-8 string in pattern file '%s'." +msgstr "ÐеиÑправна УТФ-8 нишка во датотеката Ñо шаблонот„%s“." + +#: app/core/gimppdbprogress.c:260 app/widgets/gimppdbdialog.c:314 +#, c-format +msgid "Unable to run %s callback. The corresponding plug-in may have crashed." +msgstr "" +"Ðе можам да го отпочнам отповикувањето на %s. Можно е Ñоодветниот " +"додаток да е паднал." + +#: app/core/gimpprogress.c:107 app/core/gimpprogress.c:154 +msgid "Please wait..." +msgstr "Ве молам почекајте..." + +#: app/core/gimpselection.c:183 app/tools/gimpeditselectiontool.c:258 +msgid "Move Selection" +msgstr "ПомеÑти ја Ñелекцијата" + +#: app/core/gimpselection.c:202 +msgid "Sharpen Selection" +msgstr "ИзоÑтри Ñелекција" + +#: app/core/gimpselection.c:203 +msgid "Select None" +msgstr "Поништи Ñелекција" + +#: app/core/gimpselection.c:204 +msgid "Select All" +msgstr "Избери Ñе" + +#: app/core/gimpselection.c:205 +msgid "Invert Selection" +msgstr "Инвертирај Ñелекција" + +#: app/core/gimpselection.c:307 +msgid "No selection to stroke." +msgstr "Ðема Ñелекција која би била земена за контурата." + +#: app/core/gimpselection.c:668 +msgid "Unable to cut or copy because the selected region is empty." +msgstr "Ðе можам да иÑечам или копирам бидејќи избраните облаÑти Ñе празни." + +#: app/core/gimpselection.c:815 +msgid "Cannot float selection because the selected region is empty." +msgstr "Ðе можам да поÑтавам пловечка Ñелекција бидејќи избраната облаÑÑ‚ е празна." + +#: app/core/gimpselection.c:822 +msgid "Float Selection" +msgstr "Пловечка Ñелекција" + +#: app/core/gimpselection.c:839 +msgid "Floated Layer" +msgstr "Пловечки Ñлој" + +#: app/core/gimptemplate.c:158 +msgid "The unit used for coordinate display when not in dot-for-dot mode." +msgstr "Единица од координатниот ÑиÑтем кога не Ñе кориÑти режимот точка-за-точка." + +#: app/core/gimptemplate.c:165 +msgid "The horizontal image resolution." +msgstr "Хоризонтална резолуција на Ñликата." + +#: app/core/gimptemplate.c:170 +msgid "The vertical image resolution." +msgstr "Вертикална резолуција на Ñликата" + +#: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 +msgid "Background" +msgstr "Позадина" + +#. pseudo unit +#: 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 +msgid "pixels" +msgstr "точки" + +#. standard units +#: app/core/gimpunit.c:58 +msgid "inch" +msgstr "инч" + +#: app/core/gimpunit.c:58 +msgid "inches" +msgstr "инчи" + +#: app/core/gimpunit.c:59 +msgid "millimeter" +msgstr "милиметар" + +#: app/core/gimpunit.c:59 +msgid "millimeters" +msgstr "милиметри" + +#. professional units +#: app/core/gimpunit.c:62 +msgid "point" +msgstr "печатарÑка точка" + +#: app/core/gimpunit.c:62 +msgid "points" +msgstr "печатарÑки точки" + +#: app/core/gimpunit.c:63 +msgid "pica" +msgstr "цицеро" + +#: app/core/gimpunit.c:63 +msgid "picas" +msgstr "цицери" + +#: app/core/gimpunit.c:70 +msgid "percent" +msgstr "проценти" + +#: app/dialogs/about-dialog.c:45 +#, c-format +msgid "Version %s brought to you by" +msgstr "Верзијата %s ја добивте благодарение на" + +#: 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 +msgid "translator-credits" +msgstr "превод-заÑлуги" + +#: app/dialogs/about-dialog.c:59 +msgid "Contributions by" +msgstr "ДопринеÑоа" + +#: app/dialogs/about-dialog.c:153 +msgid "About The GIMP" +msgstr "За ГИМП" + +#: app/dialogs/channel-options-dialog.c:138 +msgid "Channel Name:" +msgstr "Име на каналот:" + +#: app/dialogs/convert-dialog.c:121 +msgid "Indexed Color Conversion" +msgstr "Префрлување на индекÑираната боја" + +#: app/dialogs/convert-dialog.c:124 +msgid "Convert Image to Indexed Colors" +msgstr "Префрли ја Ñликата во индекÑирани бои" + +#: app/dialogs/convert-dialog.c:165 app/dialogs/dialogs.c:171 +msgid "Colormap" +msgstr "Мапа на боја" + +#: app/dialogs/convert-dialog.c:179 +msgid "_Maximum number of colors:" +msgstr "_МакÑимален број на бои:" + +#: app/dialogs/convert-dialog.c:206 +msgid "_Remove unused colors from final palette" +msgstr "_ОтÑтрани ги неиÑкориÑтените бои од конечната палета" + +#. dithering +#: app/dialogs/convert-dialog.c:221 app/tools/gimpblendoptions.c:269 +msgid "Dithering" +msgstr "Мешање на бои" + +#: app/dialogs/convert-dialog.c:233 +msgid "Color _dithering:" +msgstr "Ме_шање на бои:" + +#: app/dialogs/convert-dialog.c:248 +msgid "Enable dithering of _transparency" +msgstr "Овозможи мешање на _провидноÑта" + +#: app/dialogs/convert-dialog.c:274 +msgid "Converting to indexed..." +msgstr "Префрлам во индекÑирана..." + +#: app/dialogs/convert-dialog.c:382 +msgid "Cannot convert to a palette with more than 256 colors." +msgstr "Ðе можам да префрлам во палета Ñо повеќе од 256 бои." + +#: app/dialogs/dialogs-constructors.c:164 app/gui/gui.c:161 +msgid "GIMP Message" +msgstr "ГИМП Порака" + +#: app/dialogs/dialogs.c:127 +msgid "Devices" +msgstr "Уреди" + +#: app/dialogs/dialogs.c:127 +msgid "Device Status" +msgstr "СоÑтојба на уредите" + +#: app/dialogs/dialogs.c:131 +msgid "Errors" +msgstr "Грешки" + +#: app/dialogs/dialogs.c:152 +msgid "History" +msgstr "ИÑторија" + +#: app/dialogs/dialogs.c:154 +msgid "Image Templates" +msgstr "моÑтри на Ñлика" + +#: app/dialogs/dialogs.c:175 +msgid "Histogram" +msgstr "ХиÑтограм" + +#: app/dialogs/dialogs.c:179 +msgid "Selection" +msgstr "Селекција" + +#: app/dialogs/dialogs.c:179 +msgid "Selection Editor" +msgstr "Уредник на Ñелекција" + +#: app/dialogs/dialogs.c:183 +msgid "Undo History" +msgstr "ИÑторијат на поништувањето" + +#: app/dialogs/dialogs.c:189 +msgid "Navigation" +msgstr "Ðавигација" + +#: app/dialogs/dialogs.c:189 +msgid "Display Navigation" +msgstr "Прикажи навигација" + +#: app/dialogs/dialogs.c:195 +msgid "FG/BG" +msgstr "Боја на четка/позадина" + +#: app/dialogs/dialogs.c:195 +msgid "FG/BG Color" +msgstr "FG/BG Бои" + +#: app/dialogs/dialogs.c:201 +msgid "Brush Editor" +msgstr "Уредник за четкици" + +#: app/dialogs/file-open-location-dialog.c:71 +msgid "Open Location" +msgstr "Отвори локација" + +#: app/dialogs/file-open-location-dialog.c:104 +msgid "Enter location (URI):" +msgstr "ВнеÑи локација (URI):" + +#: app/dialogs/file-save-dialog.c:160 +msgid "File exists" +msgstr "Датотеката поÑтои" + +#: app/dialogs/file-save-dialog.c:165 +msgid "_Replace" +msgstr "_Замени" + +#: app/dialogs/file-save-dialog.c:175 +#, c-format +msgid "A file named '%s' already exists." +msgstr "Датотека Ñо име '%s' веќе поÑтои." + +#: app/dialogs/file-save-dialog.c:180 +msgid "Do you want to replace it with the image you are saving?" +msgstr "Дали Ñакате да ја замените Ñо Ñликата која ја зачувувате?" + +#: app/dialogs/grid-dialog.c:81 +msgid "Configure Grid" +msgstr "ПодеÑи мрежа" + +#: app/dialogs/grid-dialog.c:82 +msgid "Configure Image Grid" +msgstr "ПодеÑи ја мрежата на Ñликата" + +#: app/dialogs/image-merge-layers-dialog.c:60 +msgid "Merge Layers" +msgstr "Спој ги Ñлоевите" + +#: app/dialogs/image-merge-layers-dialog.c:62 +msgid "Layers Merge Options" +msgstr "Опции за поврзување на Ñлоевите" + +#: app/dialogs/image-merge-layers-dialog.c:77 +msgid "Final, Merged Layer should be:" +msgstr "Конечниот, Ñпоениот Ñлој треба да биде:" + +#: app/dialogs/image-merge-layers-dialog.c:81 +msgid "Expanded as necessary" +msgstr "Зголеми по потреба" + +#: app/dialogs/image-merge-layers-dialog.c:84 +msgid "Clipped to image" +msgstr "Вгради Ñпрема Ñликата" + +#: app/dialogs/image-merge-layers-dialog.c:87 +msgid "Clipped to bottom layer" +msgstr "Вгради Ñпрема Ñлојот на дното" + +#: 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:1284 +msgid "_Template:" +msgstr "_МоÑтра:" + +#: 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 +#, c-format +msgid "You are trying to create an image with a size of %s." +msgstr "Се обидувате да Ñоздадете Ñлика Ñо големина од %s." + +#: 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 +msgid "Confirm Scaling" +msgstr "Потврди зголемување" + +#: 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 +msgid "" +"Scaling the image to the choosen size will shrink some layers completely " +"away." +msgstr "Избраната големина на Ñликата ќе ги Ñмали некои Ñлоеви во потполноÑÑ‚." + +#: app/dialogs/image-scale-dialog.c:218 +msgid "Is this what you want to do?" +msgstr "Дали е тоа она што Ñакате да го направите?" + +#. General +#: app/dialogs/info-dialog.c:363 app/dialogs/preferences-dialog.c:1514 +#: app/dialogs/preferences-dialog.c:1668 +#: app/widgets/gimpcontrollereditor.c:195 +msgid "General" +msgstr "Општо" + +#: app/dialogs/info-window.c:83 +msgid "Static Gray" +msgstr "Статично Ñиво" + +#: app/dialogs/info-window.c:84 app/dialogs/info-window.c:610 +msgid "Grayscale" +msgstr "Сиви тонови" + +#: app/dialogs/info-window.c:85 +msgid "Static Color" +msgstr "Статично во боја" + +#: app/dialogs/info-window.c:86 +msgid "Pseudo Color" +msgstr "ПÑевдо Боја" + +#: app/dialogs/info-window.c:87 +msgid "True Color" +msgstr "ВиÑтинÑка Боја" + +#: app/dialogs/info-window.c:88 +msgid "Direct Color" +msgstr "Директна боја" + +#: app/dialogs/info-window.c:131 +msgid "Cursor" +msgstr "КурÑор" + +#: app/dialogs/info-window.c:141 app/dialogs/preferences-dialog.c:1903 +#: 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 +msgid "n/a" +msgstr "н/д" + +#: app/dialogs/info-window.c:154 app/dialogs/info-window.c:176 +msgid "X" +msgstr "X" + +#: app/dialogs/info-window.c:160 app/dialogs/info-window.c:182 +msgid "Y" +msgstr "Y" + +#: app/dialogs/info-window.c:163 app/pdb/internal_procs.c:212 +msgid "Units" +msgstr "Единици" + +#: app/dialogs/info-window.c:228 +msgid "Comment" +msgstr "Примедба на Ñлика" + +#: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 +#: app/display/gimpdisplayshell-title.c:337 +#: app/display/gimpdisplayshell-title.c:349 app/widgets/gimpactiongroup.c:806 +msgid "(none)" +msgstr "(ништо)" + +#: app/dialogs/info-window.c:275 +msgid "Info Window" +msgstr "Прозор Ñо информации" + +#: app/dialogs/info-window.c:277 +msgid "Image Information" +msgstr "Информации за Ñликата" + +#. add the information fields +#: app/dialogs/info-window.c:294 +msgid "Pixel dimensions:" +msgstr "Големина на пикÑелот:" + +#: app/dialogs/info-window.c:296 +msgid "Print size:" +msgstr "Големина на печатење:" + +#: app/dialogs/info-window.c:298 +msgid "Resolution:" +msgstr "Резолуција:" + +#: app/dialogs/info-window.c:300 +msgid "Scale ratio:" +msgstr "ОдноÑ:" + +#: app/dialogs/info-window.c:302 +msgid "Number of layers:" +msgstr "Број на Ñлоеви:" + +#: app/dialogs/info-window.c:304 +msgid "Size in memory:" +msgstr "Големина во меморија:" + +#: app/dialogs/info-window.c:306 +msgid "Display type:" +msgstr "Тип на приказот:" + +#: app/dialogs/info-window.c:308 +msgid "Visual class:" +msgstr "Визуелна клаÑа:" + +#: app/dialogs/info-window.c:310 +msgid "Visual depth:" +msgstr "Визуелна длабочина:" + +#: app/dialogs/info-window.c:575 +#, c-format +msgid "pixels/%s" +msgstr "точки/%s" + +#: 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:1925 +msgid "dpi" +msgstr "тпи" + +#: app/dialogs/info-window.c:607 +msgid "RGB Color" +msgstr "RGB Бои" + +#: app/dialogs/info-window.c:614 +msgid "Indexed Color" +msgstr "ИндекÑирани бои" + +#: app/dialogs/info-window.c:614 +msgid "colors" +msgstr "бои" + +#: app/dialogs/layer-add-mask-dialog.c:64 +msgid "Add a Mask to the Layer" +msgstr "Додај маÑка на Ñлојот" + +#: app/dialogs/layer-add-mask-dialog.c:86 +msgid "Initialize Layer Mask to:" +msgstr "Иницијализирај маÑка на Ñлојот на:" + +#: app/dialogs/layer-add-mask-dialog.c:96 +msgid "In_vert Mask" +msgstr "Инвертирај маÑка" + +#: app/dialogs/layer-options-dialog.c:116 +msgid "Layer _Name:" +msgstr "Име на Ñлојот:" + +#. The size labels +#: app/dialogs/layer-options-dialog.c:127 app/tools/gimpcroptool.c:1026 +#: app/tools/gimpselectionoptions.c:529 +msgid "Width:" +msgstr "Ширина:" + +#: app/dialogs/layer-options-dialog.c:133 app/tools/gimpcroptool.c:1030 +#: app/tools/gimpscaletool.c:166 app/tools/gimpselectionoptions.c:537 +msgid "Height:" +msgstr "ВиÑина:" + +#: app/dialogs/layer-options-dialog.c:190 +msgid "Layer Fill Type" +msgstr "Тип на пополнување на Ñлојот" + +#: app/dialogs/layer-options-dialog.c:205 +msgid "Set Name from _Text" +msgstr "ПодеÑи име од _текÑÑ‚" + +#: app/dialogs/module-dialog.c:122 +msgid "Module Manager" +msgstr "Управувач Ñо модули" + +#: app/dialogs/module-dialog.c:124 +msgid "Manage Loadable Modules" +msgstr "Ракување Ñо вчитливите модули" + +#: app/dialogs/module-dialog.c:168 +msgid "Autoload" +msgstr "ÐутоматÑко вчитување" + +#: app/dialogs/module-dialog.c:175 +msgid "Module path" +msgstr "Патека до модулот" + +#: app/dialogs/module-dialog.c:418 +msgid "" +msgstr "<нема модули>" + +#: app/dialogs/module-dialog.c:430 app/dialogs/module-dialog.c:439 +msgid "On disk" +msgstr "Ðа диÑкот" + +#: app/dialogs/module-dialog.c:430 +msgid "Only in memory" +msgstr "Само во меморијата" + +#: app/dialogs/module-dialog.c:439 +msgid "No longer available" +msgstr "Ðе е веќе доÑтапно" + +#: app/dialogs/module-dialog.c:475 +msgid "Load" +msgstr "Вчитај" + +#: app/dialogs/module-dialog.c:477 +msgid "Query" +msgstr "Прашалник" + +#: app/dialogs/module-dialog.c:484 +msgid "Unload" +msgstr "ИÑфрли од меморија" + +#: app/dialogs/module-dialog.c:499 +msgid "Purpose:" +msgstr "Ðамена:" + +#: app/dialogs/module-dialog.c:500 +msgid "Author:" +msgstr "Ðвтор:" + +#: app/dialogs/module-dialog.c:501 +msgid "Version:" +msgstr "Верзија:" + +#: app/dialogs/module-dialog.c:502 +msgid "Copyright:" +msgstr "ÐвторÑки права:" + +#: app/dialogs/module-dialog.c:503 +msgid "Date:" +msgstr "Датум:" + +#: app/dialogs/module-dialog.c:504 +msgid "Location:" +msgstr "МеÑто:" + +#: app/dialogs/module-dialog.c:505 app/widgets/gimpcontrollereditor.c:240 +msgid "State:" +msgstr "СоÑтојба:" + +#: app/dialogs/module-dialog.c:506 +msgid "Last Error:" +msgstr "ПоÑледна грешка:" + +#: app/dialogs/module-dialog.c:507 +msgid "Available Types:" +msgstr "ДоÑтапни типови:" + +#: app/dialogs/offset-dialog.c:98 +msgid "Offset Layer" +msgstr "ОфÑет Ñлој" + +#: app/dialogs/offset-dialog.c:100 +msgid "Offset Layer Mask" +msgstr "ОфÑет маÑка на Ñлојот" + +#: 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:187 app/widgets/gimpgrideditor.c:274 +msgid "Offset" +msgstr "ОфÑет" + +#: app/dialogs/offset-dialog.c:168 app/dialogs/resize-dialog.c:216 +msgid "_X:" +msgstr "_X:" + +#: app/dialogs/offset-dialog.c:170 app/dialogs/resize-dialog.c:217 +msgid "_Y:" +msgstr "_Y:" + +#: 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 +msgid "Edge Behaviour" +msgstr "ОднеÑување на ивицата" + +#: app/dialogs/offset-dialog.c:210 +msgid "_Wrap around" +msgstr "_Замотај околу" + +#: app/dialogs/offset-dialog.c:213 +msgid "Fill with _background color" +msgstr "Пополни Ñо боја на _позадина" + +#: app/dialogs/offset-dialog.c:216 +msgid "Make _transparent" +msgstr "Ðаправи про_видно" + +#: app/dialogs/palette-import-dialog.c:171 +msgid "Import Palette" +msgstr "Увези палета" + +#: app/dialogs/palette-import-dialog.c:173 +msgid "Import a New Palette" +msgstr "Увези нова палета" + +#: app/dialogs/palette-import-dialog.c:179 +msgid "_Import" +msgstr "_Увоз" + +#. The "Source" frame +#: app/dialogs/palette-import-dialog.c:208 +msgid "Select Source" +msgstr "Избери извор" + +#: app/dialogs/palette-import-dialog.c:231 +msgid "I_mage" +msgstr "_Слика" + +#: app/dialogs/palette-import-dialog.c:246 +msgid "Palette _file" +msgstr "_Датотека на палетата" + +#: app/dialogs/palette-import-dialog.c:273 +msgid "Select palette file" +msgstr "Избери датотека на палетата" + +#. The "Import" frame +#: app/dialogs/palette-import-dialog.c:304 +msgid "Import Options" +msgstr "Опции на увозот" + +#: app/dialogs/palette-import-dialog.c:317 +msgid "New import" +msgstr "Ðов увоз" + +#: app/dialogs/palette-import-dialog.c:319 +msgid "Palette _Name:" +msgstr "_Име на палетата" + +#: app/dialogs/palette-import-dialog.c:325 +msgid "N_umber of colors:" +msgstr "Број на _бои:" + +#: app/dialogs/palette-import-dialog.c:338 +msgid "C_olumns:" +msgstr "К_олони:" + +#: app/dialogs/palette-import-dialog.c:350 +msgid "I_nterval:" +msgstr "И_нтервал:" + +#. The "Preview" frame +#: app/dialogs/palette-import-dialog.c:362 +msgid "Preview" +msgstr "Преглед" + +#: 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:497 +msgid "Configure Keyboard Shortcuts" +msgstr "ПодеÑи кратенки на таÑтатурата" + +#: app/dialogs/preferences-dialog.c:566 +msgid "" +"Your keyboard shortcuts will be reset to default values the next time you " +"start GIMP." +msgstr "" +"Вашите кратенки на таÑтатурата ќе бидат вратени на преддефинираните " +"вредноÑти Ñледниот пат кога ќе го подигнете ГИМП." + +#: app/dialogs/preferences-dialog.c:600 +msgid "" +"Your window setup will be reset to default values the next time you start " +"GIMP." +msgstr "" +"Вашите подеÑувања на прозорецот ќе бидат вратени на преддефинираните " +"вредноÑти кога Ñледниот пат ќе го подигнете ГИМП." + +#: app/dialogs/preferences-dialog.c:634 +msgid "" +"Your input device settings will be reset to default values the next time you " +"start GIMP." +msgstr "" +"Вашите подеÑувања за влезниот уред ќе бидат вратени на преддефинираните " +"вредноÑти кога Ñледниот пат ќе го подигнете ГИМП." + +#: app/dialogs/preferences-dialog.c:1053 +msgid "Show _menubar" +msgstr "Прикажи главно _мени" + +#: app/dialogs/preferences-dialog.c:1056 +msgid "Show _rulers" +msgstr "Прикажи ле_њири" + +#: app/dialogs/preferences-dialog.c:1059 +msgid "Show scroll_bars" +msgstr "Прикажи _лизгачи" + +#: app/dialogs/preferences-dialog.c:1062 +msgid "Show s_tatusbar" +msgstr "Прикажи Ñ_татуÑна линија" + +#: app/dialogs/preferences-dialog.c:1070 +msgid "Show s_election" +msgstr "Прикажи Ñеле_кција" + +#: app/dialogs/preferences-dialog.c:1073 +msgid "Show _layer boundary" +msgstr "Прикажи _граници на Ñлојот" + +#: app/dialogs/preferences-dialog.c:1076 +msgid "Show _guides" +msgstr "Прикажи _водичи" + +#: app/dialogs/preferences-dialog.c:1079 +msgid "Show gri_d" +msgstr "Прикажи мр_ежа" + +#: app/dialogs/preferences-dialog.c:1085 +msgid "Canvas _padding mode:" +msgstr "Режим на _иÑполнетоÑÑ‚ на платното:" + +#: app/dialogs/preferences-dialog.c:1090 +msgid "Custom p_adding color:" +msgstr "Произволна боја на _иÑполнетоÑÑ‚ на платното:" + +#: app/dialogs/preferences-dialog.c:1091 +msgid "Select custom canvas padding color" +msgstr "ПоÑтави произволна боја за пополнување на платното" + +#: app/dialogs/preferences-dialog.c:1162 +msgid "Preferences" +msgstr "ПоÑтавки" + +#: app/dialogs/preferences-dialog.c:1265 app/dialogs/preferences-dialog.c:1268 +msgid "New Image" +msgstr "Ðова Ñлика" + +#: app/dialogs/preferences-dialog.c:1306 +msgid "Default Image Grid" +msgstr "Предефинирана мрежа на Ñлика" + +#: app/dialogs/preferences-dialog.c:1309 +msgid "Default Grid" +msgstr "Предефинирана мрежа" + +#: app/dialogs/preferences-dialog.c:1329 +msgid "User Interface" +msgstr "КориÑнички интерфејÑ" + +#: app/dialogs/preferences-dialog.c:1332 +msgid "Interface" +msgstr "ИнтерфејÑ" + +#. Previews +#: app/dialogs/preferences-dialog.c:1339 +msgid "Previews" +msgstr "Прегледи" + +#: app/dialogs/preferences-dialog.c:1342 +msgid "_Enable layer & channel previews" +msgstr "_Вклучи прегледи за Ñлоеви и канали" + +#: app/dialogs/preferences-dialog.c:1348 +msgid "Default _layer & channel preview size:" +msgstr "Преддефинирана големина на прегледот за _Ñлоеви и канали:" + +#: app/dialogs/preferences-dialog.c:1351 +msgid "Na_vigation preview size:" +msgstr "Големина на прегледот за _навигација:" + +#. Keyboard Shortcuts +#: app/dialogs/preferences-dialog.c:1355 +msgid "Keyboard Shortcuts" +msgstr "Кратенки за таÑтатура" + +#: app/dialogs/preferences-dialog.c:1359 +msgid "Show menu _mnemonics (access keys)" +msgstr "Прикажи мени за мнемоници (клучеви за приÑтап)" + +#: app/dialogs/preferences-dialog.c:1362 +msgid "Use _dynamic keyboard shortcuts" +msgstr "КориÑти _динамички кратенки за таÑтатурата" + +#: app/dialogs/preferences-dialog.c:1366 +msgid "Configure _Keyboard Shortcuts..." +msgstr "ПодеÑи кратенки за _таÑтатура..." + +#: app/dialogs/preferences-dialog.c:1373 +msgid "_Save keyboard shortcuts on exit" +msgstr "_Зачувај ги при излезот кретенките за таÑтатурата" + +#: app/dialogs/preferences-dialog.c:1377 +msgid "Save Keyboard Shortcuts _Now" +msgstr "Зачувај ги кратенките за таÑтатурата _Ñега" + +#: app/dialogs/preferences-dialog.c:1384 +msgid "_Reset Saved Keyboard Shortcuts to Default Values" +msgstr "_Врати ги зачуваните кратенки за таÑтатурата на преддефинираните вредноÑти" + +#: app/dialogs/preferences-dialog.c:1399 app/dialogs/preferences-dialog.c:1402 +#: app/dialogs/preferences-dialog.c:1438 +msgid "Theme" +msgstr "Тема" + +#: app/dialogs/preferences-dialog.c:1408 +msgid "Select Theme" +msgstr "Изберете тема" + +#: app/dialogs/preferences-dialog.c:1490 +msgid "Reload C_urrent Theme" +msgstr "ОÑвежете ја _тековната тема" + +#: app/dialogs/preferences-dialog.c:1502 app/dialogs/preferences-dialog.c:1505 +msgid "Help System" +msgstr "СиÑтем за помош" + +#: app/dialogs/preferences-dialog.c:1517 +msgid "Show tool _tips" +msgstr "Покажи _Ñовети за алатки" + +#: app/dialogs/preferences-dialog.c:1520 +msgid "Show help _buttons" +msgstr "Прикажи коп_чиња за помош" + +#: app/dialogs/preferences-dialog.c:1523 +msgid "Show tips on _startup" +msgstr "Покажи Ñoвети при поди_гањето" + +#. Help Browser +#: app/dialogs/preferences-dialog.c:1527 +msgid "Help Browser" +msgstr "Претражувач на ÑиÑтемот за помош" + +#: app/dialogs/preferences-dialog.c:1531 +msgid "H_elp browser to use:" +msgstr "ПрелиÑтувач за помош кој ќе Ñе кориÑти:" + +#: app/dialogs/preferences-dialog.c:1536 +msgid "Web Browser" +msgstr "Претражувач на веб" + +#: app/dialogs/preferences-dialog.c:1540 +msgid "Select web browser" +msgstr "Изберете прелиÑтувач на веб" + +#: app/dialogs/preferences-dialog.c:1543 +msgid "_Web browser to use:" +msgstr "Кој прелиÑтувач на _веб да кориÑтам:" + +#. Snapping Distance +#: app/dialogs/preferences-dialog.c:1568 +msgid "Guide and Grid Snapping" +msgstr "Привлекување на водич и мрежа" + +#: app/dialogs/preferences-dialog.c:1573 +msgid "_Snap distance:" +msgstr "_Скрати раÑтојание:" + +#. Contiguous Regions +#: app/dialogs/preferences-dialog.c:1577 +msgid "Finding Contiguous Regions" +msgstr "Пронаоѓање на продолжителните облаÑти" + +#: app/dialogs/preferences-dialog.c:1582 +msgid "Default _threshold:" +msgstr "Преддефинирана _оÑетливоÑÑ‚:" + +#. Scaling +#: app/dialogs/preferences-dialog.c:1586 +msgid "Scaling" +msgstr "Зголемување" + +#: app/dialogs/preferences-dialog.c:1590 +msgid "Default _interpolation:" +msgstr "Преддефинирана _интерполација:" + +#. Global Brush, Pattern, ... +#: app/dialogs/preferences-dialog.c:1594 +msgid "Paint Options Shared Between Tools" +msgstr "Опции за боење заеднички за алатките" + +#: app/dialogs/preferences-dialog.c:1607 +msgid "Move Tool" +msgstr "Ðлатка за помеÑтување" + +#: app/dialogs/preferences-dialog.c:1611 +msgid "Change current layer or path" +msgstr "Промени го тековниот Ñлој или патека" + +#: app/dialogs/preferences-dialog.c:1624 app/dialogs/preferences-dialog.c:1627 +msgid "Toolbox" +msgstr "Мени за збир од алатки" + +#. Appearance +#: app/dialogs/preferences-dialog.c:1634 app/dialogs/preferences-dialog.c:1731 +#: app/widgets/gimpgrideditor.c:206 +msgid "Appearance" +msgstr "Изглед" + +#: app/dialogs/preferences-dialog.c:1638 +msgid "Show _foreground & background color" +msgstr "Прикажи боја на позадина и на предниот план" + +#: app/dialogs/preferences-dialog.c:1642 +msgid "Show active _brush, pattern & gradient" +msgstr "Прикажи активни _четки, шаблони и преливи" + +#: app/dialogs/preferences-dialog.c:1646 +msgid "Show active _image" +msgstr "Зачувај ја активната _Ñлика" + +#: app/dialogs/preferences-dialog.c:1656 app/dialogs/preferences-dialog.c:1659 +msgid "Image Windows" +msgstr "Прозорци за Ñлики" + +#: app/dialogs/preferences-dialog.c:1671 +msgid "Use \"_Dot for dot\" by default" +msgstr "Стандардно кориÑти \"_Точка за точка\"" + +#: app/dialogs/preferences-dialog.c:1677 +msgid "Marching _ants speed:" +msgstr "Брзина на марширачките _мравки:" + +#. Zoom & Resize Behavior +#: app/dialogs/preferences-dialog.c:1681 +msgid "Zoom & Resize Behavior" +msgstr "ОднеÑување на Зголемување и Промена на големина" + +#: app/dialogs/preferences-dialog.c:1685 +msgid "Resize window on _zoom" +msgstr "Промени ја големината на прозорот во Ñклад Ñо _зголемувањето" + +#: app/dialogs/preferences-dialog.c:1688 +msgid "Resize window on image _size change" +msgstr "Промени големина на прозорот во Ñклад Ñо промената на _големината на Ñликата" + +#: app/dialogs/preferences-dialog.c:1694 +msgid "Fit to window" +msgstr "По мерка на прозорецот" + +#: app/dialogs/preferences-dialog.c:1696 +msgid "Initial zoom _ratio:" +msgstr "Почетен _размер на зголемување:" + +#. Mouse Cursors +#: app/dialogs/preferences-dialog.c:1700 +msgid "Mouse Cursors" +msgstr "КурÑори на глушецот" + +#: app/dialogs/preferences-dialog.c:1704 +msgid "Show _brush outline" +msgstr "Покажи контура на _четката" + +#: app/dialogs/preferences-dialog.c:1707 +msgid "Show paint _tool cursor" +msgstr "Прикажи курÑор на _алатката за боење" + +#: app/dialogs/preferences-dialog.c:1713 +msgid "Cursor _mode:" +msgstr "Ре_жим на курÑорот:" + +#: app/dialogs/preferences-dialog.c:1716 +msgid "Cursor re_ndering:" +msgstr "ИÑ_цртување на курÑорот:" + +#: app/dialogs/preferences-dialog.c:1728 +msgid "Image Window Appearance" +msgstr "Изглед на прозорецот Ñо Ñлика" + +#: app/dialogs/preferences-dialog.c:1739 +msgid "Default Appearance in Normal Mode" +msgstr "Предефиниран изглед во нормален режим" + +#: app/dialogs/preferences-dialog.c:1744 +msgid "Default Appearance in Fullscreen Mode" +msgstr "Предефиниран изглед во приказ преку цел екран" + +#: app/dialogs/preferences-dialog.c:1753 +msgid "Image Title & Statusbar Format" +msgstr "Формат на наÑловот на Ñликата и ÑтатуÑната линија" + +#: app/dialogs/preferences-dialog.c:1756 +msgid "Title & Status" +msgstr "ÐаÑлов и ÑтатуÑ" + +#: app/dialogs/preferences-dialog.c:1776 +msgid "Standard" +msgstr "Стандардно" + +#: app/dialogs/preferences-dialog.c:1777 +msgid "Show zoom percentage" +msgstr "Покажи процентуално зголемување" + +#: app/dialogs/preferences-dialog.c:1778 +msgid "Show zoom ratio" +msgstr "Покажи размер" + +#: app/dialogs/preferences-dialog.c:1779 +msgid "Show image size" +msgstr "Прикажи големина на Ñликата" + +#: app/dialogs/preferences-dialog.c:1780 +msgid "Show memory usage" +msgstr "Покажи иÑкориÑтеноÑÑ‚ на меморија" + +#: app/dialogs/preferences-dialog.c:1791 +msgid "Image Title Format" +msgstr "Формат на наÑловот на Ñликата" + +#: app/dialogs/preferences-dialog.c:1792 +msgid "Image Statusbar Format" +msgstr "Формат на Ñликата на ÑтатуÑната линија" + +#: app/dialogs/preferences-dialog.c:1877 app/dialogs/preferences-dialog.c:1880 +msgid "Display" +msgstr "Приказ" + +#: app/dialogs/preferences-dialog.c:1893 +msgid "Transparency _type:" +msgstr "_Тип на провидноÑÑ‚:" + +#: app/dialogs/preferences-dialog.c:1896 +msgid "Check _size:" +msgstr "Провери _големина:" + +#: app/dialogs/preferences-dialog.c:1899 +msgid "Get Monitor Resolution" +msgstr "Утврди ја резолуцијата на мониторот" + +#: app/dialogs/preferences-dialog.c:1941 +#, c-format +msgid "From _windowing system (currently %d x %d dpi)" +msgstr "Земи резолуција од ÑиÑтемот (во моментов %d x %d тпи)" + +#: app/dialogs/preferences-dialog.c:1964 +msgid "_Manually" +msgstr "_Рачно" + +#: app/dialogs/preferences-dialog.c:1979 +msgid "C_alibrate..." +msgstr "_Калибрирање..." + +#: app/dialogs/preferences-dialog.c:1999 app/dialogs/preferences-dialog.c:2002 +msgid "Input Devices" +msgstr "Влезни уреди" + +#. Extended Input Devices +#: app/dialogs/preferences-dialog.c:2009 +msgid "Extended Input Devices" +msgstr "Проширени влезни уреди" + +#: app/dialogs/preferences-dialog.c:2013 +msgid "Configure E_xtended Input Devices..." +msgstr "ПодеÑи про_ширување на влезните уреди..." + +#: app/dialogs/preferences-dialog.c:2020 +msgid "_Save input device settings on exit" +msgstr "_Зачувај ги подеÑувањата за влезните уреди при излезот" + +#: app/dialogs/preferences-dialog.c:2024 +msgid "Save Input Device Settings _Now" +msgstr "Зачувај ги подеÑувањата за влезните уреди _Ñега" + +#: app/dialogs/preferences-dialog.c:2031 +msgid "_Reset Saved Input Device Settings to Default Values" +msgstr "_Врати ги зачуваните подеÑувањата за влезните уреди на преддефинираните вредноÑти" + +#: app/dialogs/preferences-dialog.c:2046 +msgid "Additional Input Controllers" +msgstr "Дополнителни влезни контролери" + +#: app/dialogs/preferences-dialog.c:2049 +msgid "Input Controllers" +msgstr "Влезни контролери" + +#: app/dialogs/preferences-dialog.c:2090 app/dialogs/preferences-dialog.c:2093 +msgid "Window Management" +msgstr "Управување Ñо прозорци" + +#: app/dialogs/preferences-dialog.c:2099 +msgid "Window Manager Hints" +msgstr "Совети за управување Ñо прозорци" + +#: app/dialogs/preferences-dialog.c:2105 +msgid "Hint for the _toolbox:" +msgstr "Помош за прозорецот за _алатки:" + +#: app/dialogs/preferences-dialog.c:2109 +msgid "Hint for the _docks:" +msgstr "Помош за _вÑидрувања:" + +#: app/dialogs/preferences-dialog.c:2112 +msgid "Focus" +msgstr "ФокуÑирај" + +#: app/dialogs/preferences-dialog.c:2116 +msgid "Activate the _focused image" +msgstr "Ðктивирај _фокуÑирана Ñлика" + +#. Window Positions +#: app/dialogs/preferences-dialog.c:2120 +msgid "Window Positions" +msgstr "Положба на прозорот" + +#: app/dialogs/preferences-dialog.c:2123 +msgid "_Save window positions on exit" +msgstr "_Зачувај ја положбата на прозорот при излез" + +#: app/dialogs/preferences-dialog.c:2127 +msgid "Save Window Positions _Now" +msgstr "Зачувај ја положбата на прозорецот _Ñега" + +#: app/dialogs/preferences-dialog.c:2134 +msgid "_Reset Saved Window Positions to Default Values" +msgstr "_Обнови ја Ñочуваната положба на прозорецот на преддефинираните вредноÑти" + +#: app/dialogs/preferences-dialog.c:2149 app/dialogs/preferences-dialog.c:2152 +#: app/dialogs/preferences-dialog.c:2300 +msgid "Environment" +msgstr "Опкружување" + +#: app/dialogs/preferences-dialog.c:2160 +msgid "Resource Consumption" +msgstr "Потрошувачка на реÑурÑите" + +#: app/dialogs/preferences-dialog.c:2170 +msgid "Minimal number of _undo levels:" +msgstr "Ðајмал број на нивоа за пони_штување:" + +#: app/dialogs/preferences-dialog.c:2173 +msgid "Maximum undo _memory:" +msgstr "МакÑимална _меморија за поништување:" + +#: app/dialogs/preferences-dialog.c:2176 +msgid "Tile cache _size:" +msgstr "_Големина на оÑтавата за парчиња:" + +#: app/dialogs/preferences-dialog.c:2179 +msgid "Maximum _new image size:" +msgstr "Ðајголема големина на _новата Ñлика:" + +#: app/dialogs/preferences-dialog.c:2184 +msgid "Number of _processors to use:" +msgstr "Број на кориÑтени про_цеÑори:" + +#. Image Thumbnails +#: app/dialogs/preferences-dialog.c:2189 +msgid "Image Thumbnails" +msgstr "Смален приказ" + +#: app/dialogs/preferences-dialog.c:2194 +msgid "Size of _thumbnails:" +msgstr "Големина на _Ñмалениот приказ:" + +#: app/dialogs/preferences-dialog.c:2198 +msgid "Maximum _filesize for thumbnailing:" +msgstr "МакÑимална големина на _датотеките за Ñмален приказ:" + +#. File Saving +#: app/dialogs/preferences-dialog.c:2202 +msgid "Saving Images" +msgstr "Зачувување на Ñлики" + +#: app/dialogs/preferences-dialog.c:2205 +msgid "Confirm closing of unsa_ved images" +msgstr "Потврди затворање на _незачувани Ñлики" + +#: app/dialogs/preferences-dialog.c:2216 app/dialogs/preferences-dialog.c:2219 +msgid "Folders" +msgstr "Директориуми" + +#: app/dialogs/preferences-dialog.c:2234 +msgid "Temp folder:" +msgstr "Привремена папка:" + +#: app/dialogs/preferences-dialog.c:2234 +msgid "Select Temp Folder" +msgstr "Избери привремен директориум" + +#: app/dialogs/preferences-dialog.c:2235 +#: app/dialogs/user-install-dialog.c:1403 +msgid "Swap folder:" +msgstr "Swap директориум:" + +#: app/dialogs/preferences-dialog.c:2235 +msgid "Select Swap Folder" +msgstr "Избери Swap директориум" + +#: app/dialogs/preferences-dialog.c:2268 +msgid "Brush Folders" +msgstr "Директориуми Ñо четки" + +#: app/dialogs/preferences-dialog.c:2270 +msgid "Select Brush Folders" +msgstr "Избери директориуми Ñо четки" + +#: app/dialogs/preferences-dialog.c:2272 +msgid "Pattern Folders" +msgstr "Директориуми Ñо иÑечоци" + +#: app/dialogs/preferences-dialog.c:2274 +msgid "Select Pattern Folders" +msgstr "Избери директориуми Ñо иÑечоци" + +#: app/dialogs/preferences-dialog.c:2276 +msgid "Palette Folders" +msgstr "Директориум Ñо палети" + +#: app/dialogs/preferences-dialog.c:2278 +msgid "Select Palette Folders" +msgstr "Избери директориуми Ñо палети" + +#: app/dialogs/preferences-dialog.c:2280 +msgid "Gradient Folders" +msgstr "Директориуми Ñо преливи" + +#: app/dialogs/preferences-dialog.c:2282 +msgid "Select Gradient Folders" +msgstr "Избери директориуми Ñо преливи" + +#: app/dialogs/preferences-dialog.c:2284 +msgid "Font Folders" +msgstr "Директориуми за фонтови" + +#: app/dialogs/preferences-dialog.c:2286 +msgid "Select Font Folders" +msgstr "Избери директориуми Ñо фонтови" + +#: app/dialogs/preferences-dialog.c:2288 +msgid "Plug-In Folders" +msgstr "Директориуми Ñо додатоци" + +#: app/dialogs/preferences-dialog.c:2290 +msgid "Select Plug-In Folders" +msgstr "Избери директориуми Ñо додатоци" + +#: app/dialogs/preferences-dialog.c:2292 +msgid "Scripts" +msgstr "Скрипти" + +#: app/dialogs/preferences-dialog.c:2292 +msgid "Script-Fu Folders" +msgstr "Директориуми Ñо Скрипт-Фу Ñкрипти" + +#: app/dialogs/preferences-dialog.c:2294 +msgid "Select Script-Fu Folders" +msgstr "Избери директориуми Ñо Скрипт-Фу Ñкрипти" + +#: app/dialogs/preferences-dialog.c:2296 +msgid "Module Folders" +msgstr "Директориуми за модули" + +#: app/dialogs/preferences-dialog.c:2298 +msgid "Select Module Folders" +msgstr "Избери директориуми за модули" + +#: app/dialogs/preferences-dialog.c:2300 +msgid "Environment Folders" +msgstr "Директориуми за опкружување" + +#: app/dialogs/preferences-dialog.c:2302 +msgid "Select Environment Folders" +msgstr "Избери директориуми за опкружување" + +#: app/dialogs/preferences-dialog.c:2304 +msgid "Themes" +msgstr "Теми" + +#: app/dialogs/preferences-dialog.c:2304 +msgid "Theme Folders" +msgstr "Директориуми за теми" + +#: app/dialogs/preferences-dialog.c:2306 +msgid "Select Theme Folders" +msgstr "Избери директориуми за теми" + +#: app/dialogs/print-size-dialog.c:129 +msgid "Print Size" +msgstr "Големина на печатење" + +#. the image size labels +#: app/dialogs/print-size-dialog.c:156 app/widgets/gimpsizebox.c:240 +#: app/widgets/gimptemplateeditor.c:236 +msgid "_Width:" +msgstr "_Ширина:" + +#: app/dialogs/print-size-dialog.c:163 app/widgets/gimpsizebox.c:247 +#: app/widgets/gimptemplateeditor.c:243 +msgid "H_eight:" +msgstr "_ВиÑина:" + +#. the resolution labels +#: app/dialogs/print-size-dialog.c:211 app/widgets/gimpsizebox.c:329 +#: app/widgets/gimptemplateeditor.c:363 +msgid "_X resolution:" +msgstr "_Ð¥ резолуција:" + +#: app/dialogs/print-size-dialog.c:218 app/widgets/gimpsizebox.c:336 +#: app/widgets/gimptemplateeditor.c:370 +msgid "_Y resolution:" +msgstr "_Y резолуција:" + +#: app/dialogs/print-size-dialog.c:229 app/widgets/gimpsizebox.c:348 +#: app/widgets/gimptemplateeditor.c:383 +#, c-format +msgid "pixels/%a" +msgstr "точки/%a" + +#: app/dialogs/quit-dialog.c:84 +msgid "Quit The GIMP" +msgstr "Ðапушти го ГИМП?" + +#: app/dialogs/quit-dialog.c:126 +msgid "If you quit GIMP now, these changes will be lost." +msgstr "Ðко го напуштите ГИМП Ñега, овие промени ќе бидат изгубени." + +#: app/dialogs/quit-dialog.c:164 +msgid "There is one image with unsaved changes:" +msgstr "Има една Ñлика Ñо незачувани промени:" + +#: app/dialogs/quit-dialog.c:167 +#, c-format +msgid "There are %d images with unsaved changes:" +msgstr "Има %d Ñлики Ñо незачувани промени:" + +#: app/dialogs/resize-dialog.c:115 +msgid "Canvas Size" +msgstr "Големина на платното" + +#: app/dialogs/resize-dialog.c:126 app/dialogs/scale-dialog.c:107 +msgid "Layer Size" +msgstr "Големина на Ñлој" + +#: app/dialogs/resolution-calibrate-dialog.c:67 +msgid "Calibrate Monitor Resolution" +msgstr "Калибрација на резолуцијата на мониторот" + +#: app/dialogs/resolution-calibrate-dialog.c:120 +msgid "Measure the rulers and enter their lengths:" +msgstr "Измерете ги лењирите и внеÑете ги нивните должини:" + +#: app/dialogs/resolution-calibrate-dialog.c:145 +msgid "_Horizontal:" +msgstr "_Хоризонтално:" + +#: app/dialogs/resolution-calibrate-dialog.c:150 +msgid "_Vertical:" +msgstr "_Вертикално:" + +#. Image size frame +#: app/dialogs/scale-dialog.c:96 app/widgets/gimptemplateeditor.c:214 +msgid "Image Size" +msgstr "Големина на Ñлика" + +#: app/dialogs/scale-dialog.c:168 +msgid "Quality" +msgstr "Квалитет" + +#: app/dialogs/scale-dialog.c:180 +msgid "I_nterpolation:" +msgstr "_Интерполација:" + +#: app/dialogs/scale-dialog.c:194 +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 +msgid "Choose Stroke Style" +msgstr "Изберете Ñтил на иÑцртување" + +#: app/dialogs/stroke-dialog.c:209 +msgid "Paint Tool:" +msgstr "Ðлатка за цртање:" + +#: app/dialogs/tips-dialog.c:90 +msgid "Your GIMP tips file appears to be missing!" +msgstr "Изгледа дека вашата датотека Ñо ГИМП Ñовети недоÑтаÑува!" + +#: 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 +msgid "The GIMP tips file could not be parsed!" +msgstr "Ðе можев да ја обработам датотеката Ñо ГИМП Ñоветите!" + +#: app/dialogs/tips-dialog.c:131 +msgid "GIMP Tip of the Day" +msgstr "ГИМП Ñoвет на денот" + +#: app/dialogs/tips-dialog.c:195 +msgid "Show tip next time GIMP starts" +msgstr "Покажи Ñовет при Ñледното подигање на ГИМП." + +#: app/dialogs/tips-dialog.c:219 +msgid "_Previous tip" +msgstr "_Претходен Ñовет" + +#: app/dialogs/tips-dialog.c:228 +msgid "_Next tip" +msgstr "_Следен Ñовет" + +#. This is a special string to specify the language identifier to +#. look for in the gimp-tips.xml file. Please translate the C in it +#. 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 +msgid "tips-locale:C" +msgstr "tips-locale:mk" + +#: app/dialogs/user-install-dialog.c:134 +msgid "" +"The gimprc is used to store personal preferences that affect GIMP's default " +"behavior. Paths to search for brushes, palettes, gradients, patterns, plug-" +"ins and modules can also configured here." +msgstr "" +"Датотеката gimprc Ñлужи за чување на личните подеÑувања" +"кои Ñе однеÑуваат на предефинираното однеÑување на ГИМП." +"Патеките за барање по четки, палети, преливи, отÑечки, " +"додатоци и модули можат иÑто така да Ñе подеÑат тука." + +#: app/dialogs/user-install-dialog.c:143 +msgid "" +"GIMP uses an additional gtkrc file so you can configure it to look " +"differently than other GTK apps." +msgstr "" +"ГИМП ја кориÑти дополнителната датотека gtkrc, така да можете" +"да подеÑите да изгледа поинаку од другите GTK програми." + +#: 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 " +"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." +msgstr "" +"Додатоците и проширувањата Ñе недворешни програми кои" +"ги подига ГИМП и кои обезбедуваат дополнителна функционалноÑÑ‚." +"Овие програми Ñе бараат по подигањето и информациите за" +"нивната функционалноÑÑ‚ и поÑтанок Ñе Ñкладираат во" +"оваа датотека. Оваа датотека би требало да ја чита Ñамо" +"ГИМП и не треба да Ñе менува." + +#: 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 " +"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." +msgstr "" +"Клучните кратенки можат да Ñе подеÑат динамички во ГИМП." +"Датотеката menurc е збир на вашите подеÑувања, па може да" +"Ñе зачува за Ñледната ÑеÑија. Можете да ја менувате оваа датотека" +"по желба, но многу е полеÑно да ги подеÑите кратенките преку ГИМП." +"Бришење на оваа датотека ќе ги врати во употреба Ñтандардните кратенки." + +#: app/dialogs/user-install-dialog.c:169 +msgid "" +"The sessionrc is used to store what dialog windows were open the last time " +"you quit The GIMP. You can configure The GIMP to reopen these dialogs at " +"the saved position." +msgstr "" +"Датотеката sessionrc Ñе кориÑти за Ñкладирање на податоци за тоа кој" +"прозорец е бил отворен кога поÑледен пат Ñте го затвориле ГИМП." +"Можете да го подеÑите ГИМП повторно да ги отвара овие прозори." + +#: 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 +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, " +"millimeters, points and picas. This file is overwritten each time you quit " +"the GIMP." +msgstr "" +"Датотеката unitrc Ñе кориÑти за чување на бази на кориÑничките единици." +"Можете да дефинирате дополнителни единици и да ги кориÑтите иÑто како и" +"вградените инчи, милиметри, печатарÑки точки. Оваа датотека Ñе препишува Ñекој " +"пат кога ќе го напуштите ГИМП." + +#: app/dialogs/user-install-dialog.c:191 +msgid "" +"This folder is used to store user defined brushes. The GIMP checks this " +"folder in addition to the system-wide GIMP brushes installation when " +"searching for brushes." +msgstr "" +"Овој директориум ги чува четките кои ги направил кориÑникот." +"ГИМП го проверува овој директориум како додаток на ÑиÑтемÑките" +"ГИМП четки, кога ги претражува инÑталираните четки." + +#: app/dialogs/user-install-dialog.c:199 +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 " +"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." +msgstr "" +"Овој директориум ги чува фонтовите кои Ñакате да ги видите Ñамо" +"во ГИМП. ГИМП го проверува овој директориум заедно Ñо ÑиÑтемÑките" +"директориуми на ГИМП кога бара фонтови Ñамо за ГИМП," +"ако не Ñтавете ги работите во општиот директориум за фонтови." + +#: app/dialogs/user-install-dialog.c:209 +msgid "" +"This folder is used to store user defined gradients. The GIMP checks this " +"folder in addition to the system-wide GIMP gradients installation when " +"searching for gradients." +msgstr "" +"Овој директоиум ги чува преливите направени од кориÑникот." +"ГИМП го проверува овој директориум како додаток на ÑиÑтемÑките" +"ГИМП преливи кога ги претражува инÑталираните преливи." + +#: app/dialogs/user-install-dialog.c:216 +msgid "" +"This folder is used to store user defined palettes. The GIMP checks this " +"folder in addition to the system-wide GIMP palettes installation when " +"searching for palettes." +msgstr "" +"Овој директориум ги чува палетите направени од кориÑникот." +"ГИМП го проверува овој директориум како додаток на ÑиÑтемÑките" +"ГИМП палети кога ги претражува инÑталираните палети." + +#: app/dialogs/user-install-dialog.c:223 +msgid "" +"This folder is used to store user defined patterns. The GIMP checks this " +"folder in addition to the system-wide GIMP patterns installation when " +"searching for patterns." +msgstr "" +"Овој директориум ги чува шаблоните направени од кориÑникот." +"ГИМП го проверува овој директориум како додаток на ÑиÑтемÑките" +"ГИМП шаблони кога ги претражува инÑталираните шаблони." + +#: app/dialogs/user-install-dialog.c:230 +msgid "" +"This folder is used to store user created, temporary, or otherwise non-" +"system-supported plug-ins. The GIMP checks this folder in addition to the " +"system-wide GIMP plug-in folder when searching for plug-ins." +msgstr "" +"Овој директориум ги чува привремените, други неÑиÑтемÑки или додатоци" +"направени од кориÑникот. ГИМП го проверува овој директориум како дополнение" +" на ÑиÑтемÑките ГИМП додатоци кога ги претражува инÑталираните додатоци." + +#: app/dialogs/user-install-dialog.c:238 +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 " +"the system-wide GIMP module folder when searching for modules to load during " +"initialization." +msgstr "" +"Овој директориум ги чува привремените, други неÑиÑтемÑки или DLL модули" +" направени од кориÑникот. ГИМП го проверува овој директориум како додаток" +" на ÑиÑтемÑките ГИМП модули кога ги претражува инÑталираните" +"модули кога бара модули кои треба да Ñе вчитаат." + +#: 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 " +"folder in addition to the system-wide GIMP environment folder when searching " +"for plug-in environment modification files." +msgstr "" +"Овој директориум ги чува привремените , други неÑиÑтемÑки или дополна на " +"опкружувањето направени од кориÑникот. ГИМП го проверува овој директориум како додаток" +"на ÑиÑтемÑкиoÑ‚ ГИМП директориум на опкружувањето кога ги претражува датотеки Ñо " +"измени на опкружувањето на додатоците." + +#: app/dialogs/user-install-dialog.c:257 +msgid "" +"This folder is used to store user created and installed scripts. The GIMP " +"checks this folder in addition to the systemwide GIMP scripts folder when " +"searching for scripts." +msgstr "" +"Овој директориум ги чува Ñкриптите направени и инÑталирани од кориÑникот." +"ГИМП го проверува овој директориум како додаток на ÑиÑтемÑките ГИМП Ñкрипти " +"кога ги пребарува Ñкриптите." + +#: app/dialogs/user-install-dialog.c:265 +msgid "This folder is searched for image templates." +msgstr "Овој директориум Ñодржи моÑтри за Ñлики." + +#: app/dialogs/user-install-dialog.c:270 +msgid "This folder is searched for user-installed themes." +msgstr "Овој директориум Ñодржи теми инÑталирани од Ñтрана на кориÑникот." + +#: 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<#>." +"<#> may persist in this folder. These files are useless across GIMP " +"sessions and can be destroyed with impunity." +msgstr "" +"Овој директориум Ñе кориÑти како привремена оÑтава на баферите за" +"понуштување, за да Ñе Ñмали кориÑтењето на меморијата. Ðко" +"е ГИМП неправилно убиен, датотеките од типот: gimp<#>.<#> можат" +"да оÑтанат во него. Овие датотеки Ñе беÑкориÑни и можат Ñлободно" +"да Ñе избришат." + +#: app/dialogs/user-install-dialog.c:284 +msgid "This folder is used to store tool options." +msgstr "Овој директориум ги чува опциите за алатки." + +#: 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 +msgid "This folder is used to store parameter files for the Levels tool." +msgstr "Овој директориум Ñлужи за ÑмеÑтување на параметарÑките датотеки на алатката за Ðивоа." + +#: app/dialogs/user-install-dialog.c:390 +msgid "Installation successful. Click \"Continue\" to proceed." +msgstr "УÑпешна инÑталација. Кликнете на \"Продолжи\" за понатамошно работење." + +#: app/dialogs/user-install-dialog.c:396 +msgid "Installation failed. Contact system administrator." +msgstr "ÐеуÑпешна инÑталација. Повикајте го ÑиÑтемÑкиот админиÑтратор." + +#: app/dialogs/user-install-dialog.c:609 +msgid "GIMP User Installation" +msgstr "ГИМП кориÑничка инÑталација" + +#: app/dialogs/user-install-dialog.c:614 +msgid "Continue" +msgstr "Продолжи" + +#. GPL_PAGE +#. version number +#: app/dialogs/user-install-dialog.c:765 +#, c-format +msgid "" +"Welcome to\n" +"The GIMP %d.%d User Installation" +msgstr "Добродојдовте во ГИМП %d.%d кориÑничката инÑталација" + +#: app/dialogs/user-install-dialog.c:771 +msgid "Click \"Continue\" to enter the GIMP user installation." +msgstr "Кликнете на \"Продолжи\" за да влезете во кориÑничката инÑталација на ГИМП." + +#: 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" +"Сите права задржани (C) 1995-2004\n" +"СпенÑер Кимбол, Питер ÐœÐ°Ñ‚Ð¸Ñ Ð¸ ГИМП развоен тим." + +#: 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 "" +"Овaa програмa е беÑплатен Ñофтвер, можете да го делите и/или менувате" +"во Ñклад Ñо уÑловите на GNU Општата Јавна Лиценца објавена од Ñтрана на" +"Free Software Foundation, или верзијата 2 на оваа лиценца, или" +"(по ваш избор) било која понова верзија." + +#: 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 "" +"Овaa програмa е диÑтрибуиранa Ñо надеж дека ќе биде кориÑна, но" +"БЕЗ ÐИКÐКВИ ГÐРÐÐЦИИ, дури и без наговеÑтена гаранција на" +"ПРОДÐÐ’ÐЧОТ или ПОДЕСÐОСТРЗРОДРЕДЕÐРУПОТРЕБÐ." +"Видете ја GNU Општата Јавна Лиценца за повеќе детали." + +#: app/dialogs/user-install-dialog.c:800 +msgid "" +"You should have received a copy of the GNU General Public License along with " +"this program; if not, write to the Free Software Foundation, Inc., 59 Temple " +"Place - Suite 330, Boston, MA 02111-1307, USA." +msgstr "" +"Би требало да Ñте ја добиле и копијата на GNU Општата Јавна Лиценца" +"заедно Ñо оваа програма, ако не, пишете на адреÑа:" +"Free Software Foundation, Inc., 59 Temple Place - Suite 330," +"Boston, MA 02111-1307, USA." + +#: app/dialogs/user-install-dialog.c:810 +msgid "Migrate User Settings" +msgstr "Мигрирајте ги кориÑничките подеÑувања" + +#: app/dialogs/user-install-dialog.c:811 +msgid "Click \"Continue\" to proceed with the user installation." +msgstr "Кликнете на \"Продолжи\" за да влезете во кориÑничката инÑталација." + +#: app/dialogs/user-install-dialog.c:816 +msgid "It seems you have used GIMP 2.0 before." +msgstr "Изгледа дека предходно Ñте го кориÑтеле ГИМП 2.0" + +#: app/dialogs/user-install-dialog.c:820 +msgid "_Migrate GIMP 2.0 user settings" +msgstr "_Мигрирај ги кориÑничките подеÑувања од ГИМП 2.0" + +#: app/dialogs/user-install-dialog.c:823 +msgid "Do a _fresh user installation" +msgstr "Ðаправи _Ñвежа кориÑничка инÑталација" + +#: app/dialogs/user-install-dialog.c:851 +msgid "Personal GIMP Folder" +msgstr "Личен ГИМП директориум" + +#: app/dialogs/user-install-dialog.c:852 +msgid "Click \"Continue\" to create your personal GIMP folder." +msgstr "Кликнете на \"Продолжи\" за да креирате ваш личен ГИМП директориум." + +#: app/dialogs/user-install-dialog.c:896 +#, c-format +msgid "" +"For a proper GIMP installation, a folder named '%s' needs to be " +"created." +msgstr "" +"За правилна ГИМП инÑталација, мора да биде креиран" +"директориум Ñо име '%s'." + +#: app/dialogs/user-install-dialog.c:903 +msgid "" +"This folder will contain a number of important files. Click on one of the " +"files or folders in the tree to get more information about the selected item." +msgstr "Овој директорим ќе Ñодржи повеќе важни датотеки. Кликнете на датотека или директориум во Ñтеблото за да добиете повеќе информации за избраната Ñтавка." + +#: app/dialogs/user-install-dialog.c:991 +msgid "User Installation Log" +msgstr "Дневник на кориÑничката инÑталација" + +#: 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 +msgid "GIMP Performance Tuning" +msgstr "ГИМП подеÑување на перформанÑи" + +#: app/dialogs/user-install-dialog.c:1000 +msgid "Click \"Continue\" to accept the settings above." +msgstr "Кликнете на \"Продолжи\" за да ги прифатите горните подеÑувања." + +#: 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 +#, c-format +msgid "Copying file '%s' from '%s'..." +msgstr "Ја копирам датотеката „%s“ од „%s“..." + +#: app/dialogs/user-install-dialog.c:1084 +#, c-format +msgid "Creating folder '%s'..." +msgstr "Креирам директориум '%s'..." + +#: 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 +msgid "" +"GIMP uses a limited amount of memory to store image data, the so-called " +"\"Tile Cache\". You should adjust its size to fit into memory. Consider " +"the amount of memory used by other running processes." +msgstr "" +"ГИМП кориÑти ограничена количина на меморија за Ñкладирање на податоци за " +"Ñликите ткн. \"ОÑтава за делчиња\". Треба да ја додеÑите нејзината големина за да Ñе " +"Ñобере во меморијата. МиÑлете и на меморијата потребна за другите процеÑи на ÑиÑтемот." + +#: app/dialogs/user-install-dialog.c:1375 +msgid "Tile cache size:" +msgstr "Големина на оÑтавата за делчиња:" + +#: 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 " +"with enough free space (several hundred MB). On a UNIX system, you may want " +"to use the system-wide temp-dir (\"/tmp\" or \"/var/tmp\")." +msgstr "" +"Сите Ñлики и податоци за поништувањето кои не Ñе Ñоберат во оÑтавата за " +"делчиња ќе бидат впишани во swap датотеката. Оваа датототека треба да биде на локалниот " +"датотечен ÑиÑтем Ñо доволно Ñлободен проÑтор (неколку Ñтотици МВ). Ðа Unix ÑиÑтемот, можете " +"да го кориÑтите ÑиÑтемÑкиот привремен директориум (\"/tmp\" или \"/var/tmp\")." + +#: app/dialogs/user-install-dialog.c:1398 +msgid "Select swap dir" +msgstr "Избери swap директориум" + +#: app/dialogs/vectors-export-dialog.c:53 +msgid "Export Path to SVG" +msgstr "Извези патека во SVG" + +#: app/dialogs/vectors-export-dialog.c:78 +msgid "Export the active path" +msgstr "Извези ја активната патека" + +#: app/dialogs/vectors-export-dialog.c:79 +msgid "Export all paths from this image" +msgstr "Извези ги Ñите патеки од оваа Ñлика" + +#: app/dialogs/vectors-import-dialog.c:57 +msgid "Import Paths from SVG" +msgstr "Увези пакета од SVG" + +#: app/dialogs/vectors-import-dialog.c:83 +msgid "All Files (*.*)" +msgstr "Сите датотеки (*.*)" + +#: app/dialogs/vectors-import-dialog.c:88 +msgid "Scalable SVG image (*.svg)" +msgstr "SVG Ñлика Ñо променлива големина (*.svg)" + +#: app/dialogs/vectors-import-dialog.c:99 +msgid "_Merge imported paths" +msgstr "_Спој ги увезените патеки" + +#: app/dialogs/vectors-import-dialog.c:109 +msgid "_Scale imported paths to fit image" +msgstr "Промени _големина на увезените патеки по мерка на Ñликата" + +#: app/dialogs/vectors-options-dialog.c:113 +msgid "Path Name:" +msgstr "Име на патеката:" + +#: app/display/display-enums.c:24 +msgid "Tool icon" +msgstr "Икона за алатот" + +#: app/display/display-enums.c:25 +msgid "Tool icon with crosshair" +msgstr "Икона за алатот Ñо нишан" + +#: app/display/display-enums.c:26 +msgid "Crosshair only" +msgstr "Само нишан" + +#: app/display/display-enums.c:55 +msgid "From theme" +msgstr "Врз оÑнова на темата" + +#: app/display/display-enums.c:56 +msgid "Light check color" +msgstr "Проверка на Ñветлите тонови" + +#: app/display/display-enums.c:57 +msgid "Dark check color" +msgstr "Проверка на темните тонови" + +#: app/display/display-enums.c:58 +msgid "Custom color" +msgstr "Произволна боја" + +#: app/display/gimpdisplayshell.c:943 +msgid "Zoom image when window size changes" +msgstr "Зголеми ја Ñликата кога ќе Ñе промени големината на прозорецот" + +#: app/display/gimpdisplayshell.c:963 +msgid "Toggle Quick Mask" +msgstr "Вклучи-иÑклучи БрзаМаÑка" + +#: 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 +msgid "Do_n't save" +msgstr "_Ðе Ñнимај" + +#: app/display/gimpdisplayshell-close.c:192 +#, c-format +msgid "Save the changes to image '%s' before closing?" +msgstr "Да ги зачувам промените во Ñликата %s пред затворање?" + +#: app/display/gimpdisplayshell-close.c:209 +#, c-format +msgid "If you don't save the image, changes from the last %s will be lost." +msgstr "Ðко не ја зачувате Ñликата, промените од поÑледната %s ќе бидат изгубени." + +#. one second, the time period +#: app/display/gimpdisplayshell-close.c:266 +msgid "second" +msgstr "Ñекунда" + +#: app/display/gimpdisplayshell-close.c:269 +#, c-format +msgid "%d seconds" +msgstr "%d Ñекунди" + +#: app/display/gimpdisplayshell-close.c:275 +msgid "minute" +msgstr "минута" + +#: app/display/gimpdisplayshell-close.c:277 +#, c-format +msgid "%d minutes" +msgstr "%d минути" + +#: app/display/gimpdisplayshell-dnd.c:96 +msgid "Drop New Layer" +msgstr "Отфрли го новиот Ñлој" + +#: app/display/gimpdisplayshell-dnd.c:140 +msgid "Drop New Path" +msgstr "Отфрли ја новата патека" + +#: app/display/gimpdisplayshell-filter-dialog.c:73 +msgid "Color Display Filters" +msgstr "Филтри за прикажување на боја" + +#: app/display/gimpdisplayshell-filter-dialog.c:76 +msgid "Configure Color Display Filters" +msgstr "ПодеÑи филтри за прикажување на боја" + +#: app/display/gimpdisplayshell-layer-select.c:122 +msgid "Layer Select" +msgstr "Избери Ñлој" + +#: app/display/gimpdisplayshell-scale.c:537 +msgid "Zoom Ratio" +msgstr "Размер" + +#: app/display/gimpdisplayshell-scale.c:539 +msgid "Select Zoom Ratio" +msgstr "Избери размер" + +#: app/display/gimpdisplayshell-scale.c:574 +msgid "Zoom Ratio:" +msgstr "Со размер:" + +#: app/display/gimpdisplayshell-scale.c:601 +msgid "Zoom:" +msgstr "Зголеми:" + +#: app/display/gimpdisplayshell-title.c:234 +msgid "RGB-empty" +msgstr "празно - RGB" + +#: app/display/gimpdisplayshell-title.c:237 +msgid "grayscale-empty" +msgstr "празно - Ñиви тонови" + +#: app/display/gimpdisplayshell-title.c:237 +msgid "grayscale" +msgstr "Ñиви тонови" + +#: app/display/gimpdisplayshell-title.c:240 +msgid "indexed-empty" +msgstr "празно - индекÑирано" + +#: app/display/gimpdisplayshell-title.c:240 +msgid "indexed" +msgstr "индекÑирана палета" + +#: app/display/gimpdisplayshell-title.c:292 +msgid "(modified)" +msgstr "(променето)" + +#: app/display/gimpdisplayshell-title.c:298 +msgid "(clean)" +msgstr "(иÑчиÑтено)" + +# bug: plural-forms +#: app/display/gimpdisplayshell-title.c:325 +msgid "1 layer" +msgstr "1 Ñлој" + +# bug: plural-forms +#: app/display/gimpdisplayshell-title.c:325 +#, c-format +msgid "%d layers" +msgstr "Слоеви: %d" + +#: app/display/gimpstatusbar.c:142 +msgid "Shadow type" +msgstr "Вид на Ñенки" + +#: app/display/gimpstatusbar.c:143 +msgid "Style of bevel around the statusbar text" +msgstr "Стил на вдлабнувањето околу теÑктот на ÑтатуÑната лента" + +#: app/display/gimpstatusbar.c:218 +msgid "Cancel" +msgstr "Откажи" + +#: 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 +msgid "Not a regular file" +msgstr "Ðе е иÑправна датотеката" + +#: app/file/file-open.c:173 +msgid "Plug-In returned SUCCESS but did not return an image" +msgstr "Додатокот пријави УСПЕХ но не ја врати Ñликата" + +#: app/file/file-open.c:181 +msgid "Plug-In could not open image" +msgstr "Додатокот не можеше да ја отвори Ñликата" + +#: app/file/file-open.c:417 +msgid "Image doesn't contain any visible layers" +msgstr "Сликата не Ñодржи никакви видливи Ñлоеви" + +#: app/file/file-save.c:220 +msgid "Plug-In could not save image" +msgstr "Додатокот не можеше да ја Ñочува Ñликата" + +#: app/file/file-utils.c:107 +msgid "Invalid character sequence in URI" +msgstr "ÐеиÑправна карактерен дел во URL-то" + +#: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 +#, c-format +msgid "Deleting \"%s\" failed: %s" +msgstr "Бришењето на \"%s\" не уÑпеа: %s" + +#: app/gui/splash.c:135 +msgid "GIMP Startup" +msgstr "ГИМП Ñе подига" + +#: 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 +#, c-format +msgid "Adding theme '%s' (%s)\n" +msgstr "Додавам тема „%s“ (%s)\n" + +#: app/paint/gimpairbrush.c:69 app/tools/gimpairbrushtool.c:55 +msgid "Airbrush" +msgstr "Спреј" + +#: 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 +msgid "Clone" +msgstr "Клон" + +#: app/paint/gimpconvolve.c:121 app/tools/gimpconvolvetool.c:70 +msgid "Convolve" +msgstr "Замотај" + +#: app/paint/gimpdodgeburn.c:87 app/tools/gimpdodgeburntool.c:70 +msgid "Dodge/Burn" +msgstr "Симни/Спали" + +#: app/paint/gimperaser.c:64 app/tools/gimperasertool.c:70 +msgid "Eraser" +msgstr "Бришач" + +#: app/paint/gimpink.c:101 app/tools/gimpinktool.c:62 +msgid "Ink" +msgstr "МаÑтило" + +#: app/paint/gimppaintbrush.c:65 app/tools/gimppaintbrushtool.c:51 +msgid "Paintbrush" +msgstr "Четка" + +#: app/paint/gimppencil.c:38 app/tools/gimppenciltool.c:51 +msgid "Pencil" +msgstr "Пенкало" + +#: app/paint/gimpsmudge.c:78 app/tools/gimpsmudgetool.c:54 +msgid "Smudge" +msgstr "Флека" + +#: app/paint/paint-enums.c:23 +msgid "Image source" +msgstr "Извор на Ñликата" + +#: app/paint/paint-enums.c:24 +msgid "Pattern source" +msgstr "Извор на шаблон" + +#: app/paint/paint-enums.c:52 +msgid "Non-aligned" +msgstr "Ðеподредено" + +#: app/paint/paint-enums.c:53 +msgid "Aligned" +msgstr "Подредено" + +#: 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 +msgid "Dodge" +msgstr "Симни" + +#: 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 +msgid "Blur" +msgstr "Флека" + +#: app/paint/paint-enums.c:110 +msgid "Sharpen" +msgstr "ИзоÑтрено" + +#: app/paint/paint-enums.c:167 +msgid "Constant" +msgstr "КонÑтантно" + +#: 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 +msgid "Brightness-Contrast" +msgstr "ОÑветлување-КонтраÑÑ‚" + +#: 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:143 +msgid "Curves" +msgstr "Кривини" + +#: 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 +msgid "Colorize" +msgstr "Обој" + +#: 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 +msgid "Threshold" +msgstr "ОÑетливоÑÑ‚" + +#: 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 +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 +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 +msgid "2D Transform..." +msgstr "2D ТранÑформација..." + +#: app/pdb/edit_cmds.c:608 app/tools/gimpblendtool.c:249 +msgid "Blending..." +msgstr "Стопувам..." + +#: 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 +msgid "Image resolution is out of bounds, using the default resolution instead." +msgstr "" +"Резолуцијата на Ñликата е вон опÑегот, кориÑтам меÑто тоа Ñтандардна " +"резолуција." + +#: app/pdb/internal_procs.c:86 +msgid "Internal Procedures" +msgstr "Интерни процедури" + +#: app/pdb/internal_procs.c:86 +msgid "Brush" +msgstr "Четка" + +#: app/pdb/internal_procs.c:89 +msgid "Brush UI" +msgstr "КориÑнички Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð½Ð° четката" + +#: app/pdb/internal_procs.c:98 app/tools/gimppaintoptions-gui.c:284 +#: app/widgets/gimpwidgets-constructors.c:75 +#: app/widgets/gimpwidgets-constructors.c:108 +msgid "Color" +msgstr "Боја" + +#: app/pdb/internal_procs.c:104 +msgid "Convert" +msgstr "Префрли" + +#: app/pdb/internal_procs.c:107 +msgid "Display procedures" +msgstr "Приказни процедури" + +#: app/pdb/internal_procs.c:110 +msgid "Drawable procedures" +msgstr "Процедури на цртежи" + +#: app/pdb/internal_procs.c:113 +msgid "Transformation procedures" +msgstr "Процедури за транÑформација" + +#: app/pdb/internal_procs.c:116 +msgid "Edit procedures" +msgstr "Уредувачки процедури" + +#: app/pdb/internal_procs.c:119 +msgid "File Operations" +msgstr "Операции Ñо датотеки" + +#: app/pdb/internal_procs.c:122 +msgid "Floating selections" +msgstr "Пловечки Ñелекции" + +#: app/pdb/internal_procs.c:125 +msgid "Font UI" +msgstr "КориÑнички Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð½Ð° фонтот" + +#: app/pdb/internal_procs.c:131 +msgid "Gimprc procedures" +msgstr "Gimprc процедури" + +#: app/pdb/internal_procs.c:134 +msgid "Gradient" +msgstr "Прелив" + +#: app/pdb/internal_procs.c:137 +msgid "Gradient UI" +msgstr "КориÑнички Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð½Ð° преливи" + +#: app/pdb/internal_procs.c:143 +msgid "Guide procedures" +msgstr "Процедури на водичи" + +#: app/pdb/internal_procs.c:146 +msgid "Help procedures" +msgstr "Помошни процедури" + +#: app/pdb/internal_procs.c:155 +msgid "Message procedures" +msgstr "Процедури за обавеÑтувања" + +#: app/pdb/internal_procs.c:158 +msgid "Miscellaneous" +msgstr "Разно" + +#: app/pdb/internal_procs.c:161 +msgid "Paint Tool procedures" +msgstr "Процедури на алатките за цртање" + +#: app/pdb/internal_procs.c:164 +msgid "Palette" +msgstr "Палета" + +#: app/pdb/internal_procs.c:167 +msgid "Palette UI" +msgstr "КориÑнички Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð½Ð° палетата" + +#: app/pdb/internal_procs.c:173 +msgid "Parasite procedures" +msgstr "Процедури на паразитот" + +#: app/pdb/internal_procs.c:182 +msgid "Pattern UI" +msgstr "КориÑнички Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ Ð½Ð° отÑечките" + +#: app/pdb/internal_procs.c:188 +msgid "Plug-in" +msgstr "Додатоци" + +#: app/pdb/internal_procs.c:191 +msgid "Procedural database" +msgstr "Процедурална база" + +#: app/pdb/internal_procs.c:194 app/widgets/gimpprogressdialog.c:239 +msgid "Progress" +msgstr "Ðапредок" + +#: app/pdb/internal_procs.c:197 +msgid "Image mask" +msgstr "МаÑка на Ñлика" + +#: app/pdb/internal_procs.c:200 +msgid "Selection Tool procedures" +msgstr "Процедури на алатката за Ñелекција" + +#: app/pdb/internal_procs.c:203 +msgid "Text procedures" +msgstr "ТекÑтуални процедури" + +#: app/pdb/internal_procs.c:206 +msgid "Transform Tool procedures" +msgstr "Процедури на алатката за транÑформација" + +#: app/pdb/procedural_db.c:254 +#, c-format +msgid "" +"PDB calling error:\n" +"procedure '%s' not found" +msgstr "" +"PDB грешка во повикувањето:\n" +"процедурата '%s' не е најдена" + +#: app/pdb/procedural_db.c:275 app/pdb/procedural_db.c:387 +#, c-format +msgid "" +"PDB calling error for procedure '%s':\n" +"Argument #%d type mismatch (expected %s, got %s)" +msgstr "" +"PDB грешка во повикувањето за процедурата '%s':\n" +"Ðргументот #%d е од погрешен тип (очекуван е %s, добиен е %s)" + +#: app/pdb/procedural_db_cmds.c:80 +msgid "Internal GIMP procedure" +msgstr "Интерна ГИМП процедура" + +#: app/pdb/procedural_db_cmds.c:81 +msgid "GIMP Plug-In" +msgstr "ГИМП додатоци" + +#: app/pdb/procedural_db_cmds.c:82 +msgid "GIMP Extension" +msgstr "Гимп проширувања" + +#: app/pdb/procedural_db_cmds.c:83 +msgid "Temporary Procedure" +msgstr "Привремена процедура" + +#: 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 +#, c-format +msgid "Terminating plug-in: '%s'\n" +msgstr "ИÑклучувам додаток: '%s'\n" + +#: app/plug-in/plug-in.c:730 +#, c-format +msgid "" +"Plug-In crashed: \"%s\"\n" +"(%s)\n" +"\n" +"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." +msgstr "" +"Додатокот откажа: \"%s\"\n" +"(%s)\n" +"\n" +"Умирачкиот додаток можеби ја пореметил интерната ÑоÑтојба на ГИМП. Можеби би " +"требало да ги зачувате Ñликите и повторно да го подигнете ГИМП за да бидете " +"Ñигурни дека Ñе е во ред." + +#: 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 +#, c-format +msgid "invalid value '%s' for icon type" +msgstr "неиÑправна вредноÑÑ‚ „%s“ за тип на икона" + +#: app/plug-in/plug-in-rc.c:447 +#, c-format +msgid "invalid value '%ld' for icon type" +msgstr "неиÑправна вредноÑÑ‚ '%ld' за тип на икона" + +#: 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 +msgid "Querying new Plug-ins" +msgstr "ИÑпитување на новите додатоци" + +#: 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 +msgid "Initializing Plug-ins" +msgstr "Ги подигам додатоците" + +#: 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 +msgid "Starting Extensions" +msgstr "Стартувам проширувања" + +#: app/plug-in/plug-ins.c:358 +#, c-format +msgid "Starting extension: '%s'\n" +msgstr "Го Ñтартувам проширувањето: „%s“\n" + +#: app/text/text-enums.c:81 +msgid "Left justified" +msgstr "Порамнето на лево" + +#: app/text/text-enums.c:82 +msgid "Right justified" +msgstr "Порамнето на деÑно" + +#: app/text/text-enums.c:83 +msgid "Centered" +msgstr "Центрирано" + +#: 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 +msgid "" +"Pack my box with\n" +"five dozen liquor jugs." +msgstr "" +"Pack my box with\n" +"five dozen liquor jugs." + +#: app/text/gimptext-compat.c:106 app/tools/gimptexttool.c:697 +msgid "Add Text Layer" +msgstr "Додади Ñлој за текÑÑ‚" + +#: app/text/gimptextlayer.c:170 +msgid "Text Layer" +msgstr "Слој за текÑÑ‚" + +#: app/text/gimptextlayer.c:171 +msgid "Rename Text Layer" +msgstr "Преименувај го теÑктуелниот Ñлој" + +#: app/text/gimptextlayer.c:172 +msgid "Move Text Layer" +msgstr "ПремеÑти го текÑтуелниот Ñлој" + +#: app/text/gimptextlayer.c:173 +msgid "Scale Text Layer" +msgstr "Зголеми или Ñмали го теÑктуелниот Ñлој" + +#: app/text/gimptextlayer.c:174 +msgid "Resize Text Layer" +msgstr "Врати големина на теÑктуелниот Ñлој" + +#: app/text/gimptextlayer.c:175 +msgid "Flip Text Layer" +msgstr "Заврти го текÑтуелниот Ñлој" + +#: app/text/gimptextlayer.c:176 +msgid "Rotate Text Layer" +msgstr "Ротирај го текÑтуелниот Ñлој" + +#: app/text/gimptextlayer.c:177 +msgid "Transform Text Layer" +msgstr "ТранÑформирај теÑктуелен Ñлој" + +#: app/text/gimptextlayer.c:531 +msgid "Discard Text Information" +msgstr "Занемари ги податоците за текÑтот" + +#: app/text/gimptextlayer.c:581 +msgid "Due to lack of any fonts, text functionality is not available." +msgstr "Заради недоÑтаток на фонтови, не е можна употреба на текÑÑ‚." + +#: app/text/gimptextlayer.c:616 +msgid "Empty Text Layer" +msgstr "Празен Ñлој за текÑÑ‚" + +#: app/text/gimptextlayer-xcf.c:73 +#, c-format +msgid "" +"Problems parsing the text parasite for layer '%s':\n" +"%s\n" +"\n" +"Some text properties may be wrong. Unless you want to edit the text layer, " +"you don't need to worry about this." +msgstr "" +"Проблеми при обработката на паразитниот текÑÑ‚ за Ñлојот %s:\n" +"%s\n" +"\n" +"Ðекои оÑобини на текÑтот можеби Ñе погрешни. ОÑвен ако Ñакате да го " +"промените Ñлојот на текÑтот, не треба да Ñе грижите за ова." + +#: app/tools/tools-enums.c:25 +msgid "Pick only" +msgstr "Само избор" + +#: app/tools/tools-enums.c:26 +msgid "Set foreground color" +msgstr "ПоÑтави боја на четката" + +#: app/tools/tools-enums.c:27 +msgid "Set background color" +msgstr "ПоÑтави боја на позадина" + +#: app/tools/tools-enums.c:54 +msgid "Crop" +msgstr "ИÑечи" + +#: app/tools/tools-enums.c:55 +msgid "Resize" +msgstr "Промени големина" + +#: app/tools/tools-enums.c:83 +msgid "Free select" +msgstr "Слободна Ñелекција" + +#: app/tools/tools-enums.c:84 +msgid "Fixed size" +msgstr "ФикÑна големина" + +#: app/tools/tools-enums.c:85 +msgid "Fixed aspect ratio" +msgstr "ФикÑен размер" + +#: app/tools/tools-enums.c:113 +msgid "Transform layer" +msgstr "ТранÑформирај Ñлој" + +#: app/tools/tools-enums.c:114 +msgid "Transform selection" +msgstr "ТранÑформирај Ñелекција" + +#: app/tools/tools-enums.c:115 +msgid "Transform path" +msgstr "ТранÑформирај патека" + +#: app/tools/tools-enums.c:143 +msgid "Design" +msgstr "Дизајн" + +#: app/tools/tools-enums.c:145 app/tools/gimpmovetool.c:116 +msgid "Move" +msgstr "ПремеÑти" + +#: app/tools/tools-enums.c:174 +msgid "Outline" +msgstr "Скица" + +#: app/tools/tools-enums.c:177 +msgid "Image + Grid" +msgstr "Слика + Мрежа" + +#: app/tools/tools-enums.c:204 +msgid "Number of grid lines" +msgstr "Број на мрежни линии" + +#: app/tools/tools-enums.c:205 +msgid "Grid line spacing" +msgstr "РаÑтојание на мрежните линии" + +#: app/tools/gimp-tools.c:283 +msgid "This tool has no options." +msgstr "Оваа алатка нема опции." + +#: app/tools/gimpairbrushtool.c:56 +msgid "Airbrush with variable pressure" +msgstr "Спреј Ñо променлив притиÑок" + +#: app/tools/gimpairbrushtool.c:57 +msgid "_Airbrush" +msgstr "_Спреј" + +#: app/tools/gimpairbrushtool.c:123 app/tools/gimpconvolvetool.c:211 +#: app/tools/gimpsmudgetool.c:123 +msgid "Rate:" +msgstr "Брзина:" + +#: app/tools/gimpairbrushtool.c:129 +msgid "Pressure:" +msgstr "ПритиÑок:" + +#: app/tools/gimpblendoptions.c:246 +msgid "Offset:" +msgstr "ОдÑтапување:" + +#: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 +msgid "Shape:" +msgstr "Облик:" + +#: app/tools/gimpblendoptions.c:261 app/tools/gimppaintoptions-gui.c:418 +msgid "Repeat:" +msgstr "Повторување:" + +#: app/tools/gimpblendoptions.c:279 +msgid "Adaptive supersampling" +msgstr "Прилагодливо ÑуперотÑечување" + +#: 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 +msgid "Threshold:" +msgstr "ОÑетливоÑÑ‚:" + +#: app/tools/gimpblendtool.c:102 +msgid "Fill with a color gradient" +msgstr "Пополни Ñо прелив на боја" + +#: app/tools/gimpblendtool.c:103 +msgid "Blen_d" +msgstr "Стоп_ување" + +#: 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 +msgid "Blend: " +msgstr "Стопување: " + +#: app/tools/gimpbrightnesscontrasttool.c:86 +msgid "Adjust brightness and contrast" +msgstr "ПодеÑете оÑветлување и контраÑÑ‚" + +#: app/tools/gimpbrightnesscontrasttool.c:87 +msgid "B_rightness-Contrast..." +msgstr "О_Ñветлување-КонтраÑÑ‚..." + +#: app/tools/gimpbrightnesscontrasttool.c:138 +msgid "Adjust Brightness and Contrast" +msgstr "ПодеÑете оÑветлување и контраÑÑ‚" + +#: app/tools/gimpbrightnesscontrasttool.c:181 +msgid "Brightness-Contrast does not operate on indexed layers." +msgstr "ОÑветлување-контраÑÑ‚ не Ñе подеÑува на индекÑирани Ñлоеви." + +#: app/tools/gimpbrightnesscontrasttool.c:236 +msgid "_Brightness:" +msgstr "ОÑ_ветлување:" + +#: app/tools/gimpbrightnesscontrasttool.c:251 +msgid "Con_trast:" +msgstr "_КонтраÑÑ‚:" + +#: app/tools/gimpbucketfilloptions.c:129 +msgid "Allow completely transparent regions to be filled" +msgstr "Дозволи им на потполно провидните региони да бидат пополнети" + +#: app/tools/gimpbucketfilloptions.c:135 +msgid "Base filled area on all visible layers" +msgstr "ОÑновно пополнети делови на Ñите видливи Ñлоеви" + +#: app/tools/gimpbucketfilloptions.c:141 app/tools/gimpselectionoptions.c:161 +msgid "Maximum color difference" +msgstr "Ðајголема разлика во бојата" + +#. fill type +#: app/tools/gimpbucketfilloptions.c:238 +#, c-format +msgid "Fill Type %s" +msgstr "Тип на пополнување %s" + +#. fill selection +#: app/tools/gimpbucketfilloptions.c:250 +#, c-format +msgid "Affected Area %s" +msgstr "ЗаÑегната облаÑÑ‚ %s" + +#: app/tools/gimpbucketfilloptions.c:254 +msgid "Fill whole selection" +msgstr "Пополни ја целата Ñелекција" + +#: app/tools/gimpbucketfilloptions.c:255 +msgid "Fill similar colors" +msgstr "Пополни Ñо Ñлични бои" + +#: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 +msgid "Finding Similar Colors" +msgstr "Пронаоѓање на Ñлични бои" + +#: 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 +msgid "Sample merged" +msgstr "Споен примерок" + +#: app/tools/gimpbucketfilltool.c:92 +msgid "Fill with a color or pattern" +msgstr "Пополни Ñо боја или отÑечка" + +#: app/tools/gimpbucketfilltool.c:93 +msgid "_Bucket Fill" +msgstr "Пополни Ñо _боја" + +#: app/tools/gimpbycolorselecttool.c:82 +msgid "Select By Color" +msgstr "Бирање по боја" + +#: app/tools/gimpbycolorselecttool.c:83 +msgid "Select regions by color" +msgstr "Избери региони по боја" + +#: app/tools/gimpbycolorselecttool.c:84 +msgid "_By Color Select" +msgstr "Избери по бо_ја" + +#: app/tools/gimpclonetool.c:90 +msgid "Paint using Patterns or Image Regions" +msgstr "Сликај кориÑтејќи отÑечок или рагиони на Ñлика" + +#: app/tools/gimpclonetool.c:91 +msgid "_Clone" +msgstr "_Клон" + +#: app/tools/gimpclonetool.c:266 +msgid "Source" +msgstr "Извор" + +#: app/tools/gimpclonetool.c:275 +msgid "Alignment" +msgstr "ПорамнетоÑÑ‚" + +#: app/tools/gimpcolorbalancetool.c:97 +msgid "Adjust color balance" +msgstr "ПодеÑи го баланÑот на бои" + +#: app/tools/gimpcolorbalancetool.c:98 +msgid "Color _Balance..." +msgstr "Ба_Ð»Ð°Ð½Ñ Ð½Ð° бои..." + +#: app/tools/gimpcolorbalancetool.c:149 +msgid "Adjust Color Balance" +msgstr "ПодеÑи Ð±Ð°Ð»Ð°Ð½Ñ Ð½Ð° бои" + +#: app/tools/gimpcolorbalancetool.c:193 +msgid "Color balance operates only on RGB color layers." +msgstr "БаланÑирањето на бои работи Ñамо за Ñлоеви во RGB бои." + +#: app/tools/gimpcolorbalancetool.c:276 +msgid "Select Range to Modify" +msgstr "Избери раÑпон за измена" + +#: app/tools/gimpcolorbalancetool.c:284 +msgid "Modify Selected Range's Color Levels" +msgstr "Измени ги нивоата на избраниот раÑпон на бои" + +#: app/tools/gimpcolorbalancetool.c:301 +msgid "Cyan" +msgstr "Цијан" + +#: app/tools/gimpcolorbalancetool.c:308 +msgid "Magenta" +msgstr "Магента" + +#: app/tools/gimpcolorbalancetool.c:315 +msgid "Yellow" +msgstr "Жолта" + +#: app/tools/gimpcolorbalancetool.c:325 +msgid "R_eset range" +msgstr "Пов_торно поÑтави раÑпон" + +#: app/tools/gimpcolorbalancetool.c:334 +msgid "Preserve _luminosity" +msgstr "Зачувај _оÑветленоÑÑ‚" + +#: app/tools/gimpcolorizetool.c:97 +msgid "Colorize the image" +msgstr "Обој ја Ñликата" + +#: app/tools/gimpcolorizetool.c:98 +msgid "Colori_ze..." +msgstr "_Обој..." + +#: app/tools/gimpcolorizetool.c:152 +msgid "Colorize the Image" +msgstr "Обој ја Ñликата" + +#: app/tools/gimpcolorizetool.c:195 +msgid "Colorize operates only on RGB color layers." +msgstr "Боењето работи Ñамо за Ñлоеви во RGB бои." + +#: app/tools/gimpcolorizetool.c:235 +msgid "Select Color" +msgstr "Избери боја" + +#: app/tools/gimpcolorizetool.c:253 app/tools/gimphuesaturationtool.c:361 +msgid "_Hue:" +msgstr "_Тип:" + +#: app/tools/gimpcolorizetool.c:267 app/tools/gimphuesaturationtool.c:389 +msgid "_Saturation:" +msgstr "_ЗаÑитеноÑÑ‚:" + +#: app/tools/gimpcolorizetool.c:281 app/tools/gimphuesaturationtool.c:375 +msgid "_Lightness:" +msgstr "_Светлина:" + +#: app/tools/gimpcoloroptions.c:184 +msgid "Sample average" +msgstr "ПроÑечен примерок" + +#: 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 +#, c-format +msgid "Pick Mode %s" +msgstr "Изберете режим %s" + +#. the add to palette toggle +#: app/tools/gimpcolorpickeroptions.c:193 +#, c-format +msgid "Add to palette %s" +msgstr "Додај во палета %s" + +#: app/tools/gimpcolorpickertool.c:99 +msgid "Color Picker" +msgstr "Избирач на бои" + +#: app/tools/gimpcolorpickertool.c:100 +msgid "Pick colors from the image" +msgstr "Избери боја од Ñликата" + +#: app/tools/gimpcolorpickertool.c:101 +msgid "C_olor Picker" +msgstr "И_збирач на бои" + +#. tool->gdisp->shell +#: app/tools/gimpcolorpickertool.c:343 +msgid "Color Picker Information" +msgstr "Информации за бирачот на бои" + +#: app/tools/gimpconvolvetool.c:71 +msgid "Blur or Sharpen" +msgstr "Замати или ИзоÑтри" + +#: app/tools/gimpconvolvetool.c:72 +msgid "Con_volve" +msgstr "_Замотај" + +#. the type radio box +#: 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 +#, c-format +msgid "Tool Toggle %s" +msgstr "Вклучи/ИÑклучи ја алатката %s" + +#: app/tools/gimpcropoptions.c:200 +msgid "Current layer only" +msgstr "Само тековниот Ñлој" + +#. enlarge toggle +#: app/tools/gimpcropoptions.c:205 +#, c-format +msgid "Allow enlarging %s" +msgstr "Дозволи зголемување %s" + +#. layer toggle +#: app/tools/gimpcropoptions.c:215 +#, c-format +msgid "Keep aspect ratio %s" +msgstr "Задржи размер од %s" + +#: app/tools/gimpcroptool.c:163 +msgid "Crop & Resize" +msgstr "ИÑечи и Промени големина" + +#: app/tools/gimpcroptool.c:164 +msgid "Crop or Resize an image" +msgstr "ИÑечи или промени големина на Ñликата" + +#: app/tools/gimpcroptool.c:165 +msgid "_Crop & Resize" +msgstr "ИÑе_чи и Промени големина" + +#. initialize the statusbar display +#: app/tools/gimpcroptool.c:498 app/tools/gimpcroptool.c:957 +msgid "Crop: " +msgstr "ИÑечи:" + +#: app/tools/gimpcroptool.c:990 +msgid "Crop & Resize Information" +msgstr "ИÑечи и промени големина - Информација" + +#: app/tools/gimpcroptool.c:1009 +msgid "Origin X:" +msgstr "Појдовен Ð¥:" + +#: app/tools/gimpcroptool.c:1013 +msgid "Origin Y:" +msgstr "Појдовен Y:" + +#: app/tools/gimpcroptool.c:1051 app/widgets/gimpbrusheditor.c:194 +msgid "Aspect ratio:" +msgstr "Размер:" + +#: app/tools/gimpcroptool.c:1062 +msgid "From selection" +msgstr "Од Ñелекција" + +#: app/tools/gimpcroptool.c:1070 +msgid "Auto shrink" +msgstr "ÐвтоматÑки намали" + +#: app/tools/gimpcurvestool.c:144 +msgid "Adjust color curves" +msgstr "ПодеÑи кривини на боја" + +#: app/tools/gimpcurvestool.c:145 +msgid "_Curves..." +msgstr "_Кривини..." + +#: app/tools/gimpcurvestool.c:204 +msgid "Adjust Color Curves" +msgstr "ПодеÑи кривини на боја" + +#: app/tools/gimpcurvestool.c:206 +msgid "Load Curves" +msgstr "Вчитај кривини" + +#: app/tools/gimpcurvestool.c:207 +msgid "Load curves settings from file" +msgstr "Вчитај ги подеÑувањата за кривина од датотека" + +#: app/tools/gimpcurvestool.c:208 +msgid "Save Curves" +msgstr "Зачувај кривини" + +#: app/tools/gimpcurvestool.c:209 +msgid "Save curves settings to file" +msgstr "Зачувај ги подеÑувањата на кривините во датотека" + +#: app/tools/gimpcurvestool.c:285 +msgid "Curves for indexed layers cannot be adjusted." +msgstr "Кривини за индекÑирани Ñлоеви не можат да Ñе подеÑат." + +#: app/tools/gimpcurvestool.c:481 app/tools/gimplevelstool.c:415 +#: app/widgets/gimphistogrameditor.c:160 +msgid "Channel:" +msgstr "Канал:" + +#: app/tools/gimpcurvestool.c:496 app/tools/gimplevelstool.c:430 +msgid "R_eset channel" +msgstr "_Повторно поÑтави канал" + +#. Horizontal button box for load / save +#: app/tools/gimpcurvestool.c:598 app/tools/gimplevelstool.c:640 +msgid "All Channels" +msgstr "Сите канали" + +#. The radio box for selecting the curve type +#: app/tools/gimpcurvestool.c:616 +msgid "Curve Type" +msgstr "Тип на кривина" + +#: app/tools/gimpdodgeburntool.c:71 +msgid "Dodge or Burn strokes" +msgstr "Симни или Ñпали ги потезите" + +#: app/tools/gimpdodgeburntool.c:72 +msgid "Dod_geBurn" +msgstr "_Симни/Спали" + +#. the type (dodge or burn) +#: app/tools/gimpdodgeburntool.c:192 +#, c-format +msgid "Type %s" +msgstr "Тип %s" + +#: app/tools/gimpdodgeburntool.c:204 +msgid "Mode" +msgstr "Режим" + +#: app/tools/gimpdodgeburntool.c:216 +msgid "Exposure:" +msgstr "ИзложеноÑÑ‚:" + +#: app/tools/gimpeditselectiontool.c:262 +#: app/tools/gimpeditselectiontool.c:1203 +msgid "Move Floating Selection" +msgstr "ПремеÑти Пловечка Ñелекција" + +#: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 +msgid "Move: " +msgstr "ПомеÑти:" + +#: app/tools/gimpellipseselecttool.c:72 +msgid "Select elliptical regions" +msgstr "Изберете елипÑеÑÑ‚ регион" + +#: app/tools/gimpellipseselecttool.c:73 +msgid "_Ellipse Select" +msgstr "Избери _елипÑа" + +#: app/tools/gimperasertool.c:71 +msgid "Erase to background or transparency" +msgstr "Избриши во позадина или во провидноÑÑ‚" + +#: app/tools/gimperasertool.c:72 +msgid "_Eraser" +msgstr "_Бришач" + +#. the anti_erase toggle +#: 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 +msgid "Affect:" +msgstr "Влијание:" + +#. tool toggle +#: app/tools/gimpflipoptions.c:167 +#, c-format +msgid "Flip Type %s" +msgstr "Тип на извртување %s" + +#: app/tools/gimpfliptool.c:83 +msgid "Flip the layer or selection" +msgstr "Заврти го Ñлојот или Ñелекцијата" + +#: app/tools/gimpfliptool.c:84 +msgid "_Flip" +msgstr "О_брни" + +#: app/tools/gimpfreeselecttool.c:97 +msgid "Select hand-drawn regions" +msgstr "Избери Ñо рака-цртани региони" + +#: app/tools/gimpfreeselecttool.c:98 +msgid "_Free Select" +msgstr "С_лободна Ñелекција" + +#: app/tools/gimpfuzzyselecttool.c:98 +msgid "Select contiguous regions" +msgstr "Избери продолжителни региони" + +#: app/tools/gimpfuzzyselecttool.c:99 +msgid "Fu_zzy Select" +msgstr "Ðе_јаÑна Ñелекција" + +#: app/tools/gimphistogramoptions.c:151 +msgid "Histogram Scale" +msgstr "Размер на хиÑтограмот" + +#: app/tools/gimphuesaturationtool.c:111 +msgid "Adjust hue and saturation" +msgstr "ПодеÑи тип и заÑитеноÑÑ‚:" + +#: app/tools/gimphuesaturationtool.c:112 +msgid "Hue-_Saturation..." +msgstr "Тип-_заÑитеноÑÑ‚" + +#: app/tools/gimphuesaturationtool.c:166 +msgid "Adjust hue / lightness / saturation" +msgstr "заÑитеноÑÑ‚" + +#: app/tools/gimphuesaturationtool.c:210 +msgid "Hue-Saturation operates only on RGB color layers." +msgstr "Тип-ЗаÑитеноÑÑ‚ работат Ñамо на Ñлоевите во RGB бои." + +#: app/tools/gimphuesaturationtool.c:263 +msgid "M_aster" +msgstr "_Главен" + +#: app/tools/gimphuesaturationtool.c:264 +msgid "_R" +msgstr "_R" + +#: app/tools/gimphuesaturationtool.c:265 +msgid "_Y" +msgstr "_Y" + +#: app/tools/gimphuesaturationtool.c:266 +msgid "_G" +msgstr "_G" + +#: app/tools/gimphuesaturationtool.c:267 +msgid "_C" +msgstr "_C" + +#: app/tools/gimphuesaturationtool.c:268 +msgid "_B" +msgstr "_B" + +#: app/tools/gimphuesaturationtool.c:269 +msgid "_M" +msgstr "_M" + +#: app/tools/gimphuesaturationtool.c:272 +msgid "Select Primary Color to Modify" +msgstr "Изберете примарна боја за измена" + +#: app/tools/gimphuesaturationtool.c:300 +msgid "Modify all colors" +msgstr "Измени ги Ñите бои" + +#: app/tools/gimphuesaturationtool.c:343 +msgid "Modify Selected Color" +msgstr "Измени ја избраната боја" + +#: app/tools/gimphuesaturationtool.c:405 +msgid "R_eset color" +msgstr "По_вторно поÑтави ја бојата" + +#: app/tools/gimpimagemaptool.c:259 app/widgets/gimpthumbbox.c:354 +msgid "_Preview" +msgstr "_Приказ" + +#: app/tools/gimpimagemaptool.c:292 +msgid "Quick Load" +msgstr "Брзо вчитување" + +#: app/tools/gimpimagemaptool.c:322 +msgid "Quick Save" +msgstr "Брзо зачувување" + +#. adjust sliders +#: 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 +msgid "Size:" +msgstr "Големина:" + +#: 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 +msgid "Sensitivity" +msgstr "ОÑетливоÑÑ‚" + +#: app/tools/gimpinkoptions-gui.c:103 +msgid "Tilt:" +msgstr "Ротирај:" + +#: app/tools/gimpinkoptions-gui.c:110 +msgid "Speed:" +msgstr "Брзина:" + +#: app/tools/gimpinkoptions-gui.c:121 +msgid "Type" +msgstr "Тип" + +#. Blob shape widget +#: app/tools/gimpinkoptions-gui.c:151 +msgid "Shape" +msgstr "Облик" + +#: app/tools/gimpinktool.c:63 +msgid "Draw in ink" +msgstr "Цртај Ñо маÑтило" + +#: app/tools/gimpinktool.c:64 +msgid "In_k" +msgstr "_МаÑтило" + +#: app/tools/gimpiscissorstool.c:277 +msgid "Scissors" +msgstr "Ðожички" + +#: app/tools/gimpiscissorstool.c:278 +msgid "Select shapes from image" +msgstr "Избери облици од Ñлика" + +#: app/tools/gimpiscissorstool.c:279 +msgid "Intelligent _Scissors" +msgstr "Паметни но_жички" + +#: app/tools/gimplevelstool.c:161 +msgid "Adjust color levels" +msgstr "ПодеÑи ги нивоата на боја" + +#: app/tools/gimplevelstool.c:162 +msgid "_Levels..." +msgstr "_Ðивоа..." + +#: app/tools/gimplevelstool.c:220 +msgid "Adjust Color Levels" +msgstr "ПодеÑи нивоа за боја" + +#: app/tools/gimplevelstool.c:222 +msgid "Load Levels" +msgstr "Вчитај нивоа" + +#: app/tools/gimplevelstool.c:223 +msgid "Load levels settings from file" +msgstr "Вчитај ги подеÑувањата на нивоата од датотека" + +#: app/tools/gimplevelstool.c:224 +msgid "Save Levels" +msgstr "Зачувај ги нивоата" + +#: app/tools/gimplevelstool.c:225 +msgid "Save levels settings to file" +msgstr "Зачувај ги подеÑувањата на нивоата во датотека" + +#: app/tools/gimplevelstool.c:285 +msgid "Levels for indexed layers cannot be adjusted." +msgstr "Ðе можат да Ñе пролагодат нивоата на индекÑираните Ñлоеви." + +#: app/tools/gimplevelstool.c:355 +msgid "Pick black point" +msgstr "Избери црна точка" + +#: app/tools/gimplevelstool.c:359 +msgid "Pick gray point" +msgstr "Избери Ñива точка" + +#: app/tools/gimplevelstool.c:363 +msgid "Pick white point" +msgstr "Избери бела точка" + +#. Input levels frame +#: app/tools/gimplevelstool.c:445 +msgid "Input Levels" +msgstr "Влезни нивоа" + +#: app/tools/gimplevelstool.c:539 +msgid "Gamma" +msgstr "Гама" + +#. Output levels frame +#: app/tools/gimplevelstool.c:569 +msgid "Output Levels" +msgstr "Излезни нивоа" + +#: app/tools/gimplevelstool.c:667 +msgid "Adjust levels automatically" +msgstr "ПодеÑи ги нивоата автоматÑки" + +#: app/tools/gimpmagnifyoptions.c:203 +msgid "Auto-resize window" +msgstr "ÐвтоматÑки промени големина на прозорец" + +#: app/tools/gimpmagnifytool.c:95 +msgid "Magnify" +msgstr "Зголеми" + +#: app/tools/gimpmagnifytool.c:96 +msgid "Zoom in & out" +msgstr "Зголеми и Ðамали приказ" + +#: app/tools/gimpmagnifytool.c:97 +msgid "M_agnify" +msgstr "З_големи" + +#: app/tools/gimpmeasureoptions.c:157 +msgid "Use info window" +msgstr "КориÑти инфо прозорец" + +#: app/tools/gimpmeasuretool.c:118 +msgid "Measure" +msgstr "Мерење" + +#: app/tools/gimpmeasuretool.c:119 +msgid "Measure distances and angles" +msgstr "Мери раÑтојанија и агли" + +#: app/tools/gimpmeasuretool.c:120 +msgid "_Measure" +msgstr "_Мерка" + +#: app/tools/gimpmeasuretool.c:264 +msgid "Add Guides" +msgstr "Додај водичи" + +#. tool->gdisp->shell +#: app/tools/gimpmeasuretool.c:847 +msgid "Measure Distances and Angles" +msgstr "Мери раÑтојанија и агли" + +#: app/tools/gimpmeasuretool.c:865 +msgid "Distance:" +msgstr "РаÑтојание:" + +#: app/tools/gimpmoveoptions.c:171 +msgid "Pick a layer or guide" +msgstr "Избери Ñлој или водич за помеÑтување" + +#: app/tools/gimpmoveoptions.c:172 +msgid "Move the current layer" +msgstr "ПомеÑти го тековниот Ñлој" + +#: app/tools/gimpmoveoptions.c:176 +msgid "Move selection" +msgstr "ПомеÑти ја Ñелекцијата" + +#: app/tools/gimpmoveoptions.c:180 +msgid "Pick a path" +msgstr "Избери патека" + +#: app/tools/gimpmoveoptions.c:181 +msgid "Move the current path" +msgstr "ПомеÑти ја тековната патека" + +#: app/tools/gimpmovetool.c:117 +msgid "Move layers & selections" +msgstr "ПомеÑти ги Ñлоевите и Ñелекциите" + +#: app/tools/gimpmovetool.c:118 +msgid "_Move" +msgstr "_ПремеÑти" + +#: app/tools/gimpmovetool.c:298 app/tools/gimpmovetool.c:576 +msgid "Move Guide: " +msgstr "ПомеÑти водич:" + +#: app/tools/gimpmovetool.c:570 +msgid "Cancel Guide" +msgstr "Откажи водич" + +#: app/tools/gimpmovetool.c:576 +msgid "Add Guide: " +msgstr "Додај водич:" + +#: app/tools/gimppaintbrushtool.c:52 +msgid "Paint fuzzy brush strokes" +msgstr "Сликај Ñо нејаÑни потези Ñо четката" + +#: app/tools/gimppaintbrushtool.c:53 +msgid "_Paintbrush" +msgstr "Четка за _боење" + +#: app/tools/gimppaintoptions-gui.c:103 app/widgets/gimpbrushselect.c:201 +#: app/widgets/gimplayertreeview.c:330 +msgid "Opacity:" +msgstr "ÐепровидноÑÑ‚:" + +#: app/tools/gimppaintoptions-gui.c:108 app/tools/gimpselectionoptions.c:374 +#: app/widgets/gimpbrushselect.c:218 app/widgets/gimplayertreeview.c:323 +msgid "Mode:" +msgstr "Режим:" + +#: app/tools/gimppaintoptions-gui.c:126 +msgid "Brush:" +msgstr "Четка:" + +#: app/tools/gimppaintoptions-gui.c:135 app/tools/gimppaintoptions-gui.c:395 +msgid "Gradient:" +msgstr "Прелив:" + +#: app/tools/gimppaintoptions-gui.c:177 +msgid "Hard edge" +msgstr "Тврд раб" + +#: app/tools/gimppaintoptions-gui.c:216 +msgid "Pressure sensitivity" +msgstr "ОÑетливоÑÑ‚ на притиÑокот" + +#: app/tools/gimppaintoptions-gui.c:237 +msgid "Opacity" +msgstr "ÐепровидноÑÑ‚" + +#: app/tools/gimppaintoptions-gui.c:251 +msgid "Hardness" +msgstr "Тврдина" + +#: app/tools/gimppaintoptions-gui.c:262 +msgid "Rate" +msgstr "Брзина" + +#: app/tools/gimppaintoptions-gui.c:275 +msgid "Size" +msgstr "Големина" + +#: app/tools/gimppaintoptions-gui.c:314 +msgid "Fade out" +msgstr "Избледување" + +#: app/tools/gimppaintoptions-gui.c:334 app/tools/gimppaintoptions-gui.c:404 +msgid "Length:" +msgstr "Должина" + +#: app/tools/gimppaintoptions-gui.c:368 +msgid "Use color from gradient" +msgstr "КориÑти ја бојата од преливот" + +#: app/tools/gimppenciltool.c:52 +msgid "Paint hard edged pixels" +msgstr "Сликај оÑтри рабови" + +#: app/tools/gimppenciltool.c:53 +msgid "Pe_ncil" +msgstr "Пен_кало" + +#: app/tools/gimpperspectivetool.c:81 +msgid "Perspective" +msgstr "ПерÑпектива" + +#: app/tools/gimpperspectivetool.c:82 +msgid "Change perspective of the layer or selection" +msgstr "Промени ја перÑпективата на Ñлојот или Ñелекцијата" + +#: app/tools/gimpperspectivetool.c:83 +msgid "_Perspective" +msgstr "Пе_Ñ€Ñпектива" + +#: app/tools/gimpperspectivetool.c:140 +msgid "Perspective Transform Information" +msgstr "Податоци за транÑформацијата на перÑпективата" + +#: app/tools/gimpperspectivetool.c:149 +msgid "Matrix:" +msgstr "Матрица:" + +#: app/tools/gimpposterizetool.c:79 +msgid "Reduce image to a fixed number of colors" +msgstr "Сведи ја Ñликата на одреден број на бои" + +#: app/tools/gimpposterizetool.c:80 +msgid "_Posterize..." +msgstr "_Ðамали број на бои..." + +#: app/tools/gimpposterizetool.c:131 +msgid "Posterize (Reduce Number of Colors)" +msgstr "ПоÑтеризирање (Смалување на бројот на бои)" + +#: app/tools/gimpposterizetool.c:173 +msgid "Posterize does not operate on indexed layers." +msgstr "Смалувањето на бои не работи кај индекÑираните Ñлоеви." + +#: app/tools/gimpposterizetool.c:223 +msgid "Posterize _levels:" +msgstr "Смали број на бои на ни_воата:" + +#: app/tools/gimprectselecttool.c:97 +msgid "Select rectangular regions" +msgstr "Избери четириаголни региони" + +#: app/tools/gimprectselecttool.c:98 +msgid "_Rect Select" +msgstr "Избери _квадрат" + +#: app/tools/gimprectselecttool.c:224 +msgid "Selection: ADD" +msgstr "Селекција: ДОДÐДИ" + +#: app/tools/gimprectselecttool.c:227 +msgid "Selection: SUBTRACT" +msgstr "Селекција: ОДЗЕМИ" + +#: app/tools/gimprectselecttool.c:230 +msgid "Selection: INTERSECT" +msgstr "Селекција: ÐÐПРÐВИ ПРЕСЕК" + +#: app/tools/gimprectselecttool.c:233 +msgid "Selection: REPLACE" +msgstr "Селекција: ЗÐМЕÐИ" + +#: app/tools/gimprectselecttool.c:468 +msgid "Selection: " +msgstr "Селекција: " + +#: app/tools/gimprotatetool.c:98 +msgid "Rotate the layer or selection" +msgstr "Ротирај Ñлој или Ñелекција" + +#: app/tools/gimprotatetool.c:99 +msgid "_Rotate" +msgstr "_Ротирање" + +#: app/tools/gimprotatetool.c:158 +msgid "Rotation Information" +msgstr "Податоци за ротацијата" + +#: app/tools/gimprotatetool.c:185 +msgid "Center X:" +msgstr "Центар Ð¥:" + +#: app/tools/gimprotatetool.c:189 +msgid "Y:" +msgstr "Y:" + +#: app/tools/gimpscaletool.c:91 +msgid "Scale" +msgstr "Големина" + +#: app/tools/gimpscaletool.c:92 +msgid "Scale the layer or selection" +msgstr "Промени ја големината на Ñлојот или Ñелекцијата" + +#: app/tools/gimpscaletool.c:93 +msgid "_Scale" +msgstr "_Големина" + +#: app/tools/gimpscaletool.c:152 +msgid "Scaling information" +msgstr "Информација за промената на големината" + +#: app/tools/gimpscaletool.c:163 +msgid "Original Width:" +msgstr "Оригинална ширина:" + +#: app/tools/gimpscaletool.c:170 +msgid "Current width:" +msgstr "Тековна ширина:" + +#: app/tools/gimpscaletool.c:174 +msgid "Current height:" +msgstr "Тековна виÑина:" + +#: app/tools/gimpscaletool.c:189 +msgid "Scale ratio X:" +msgstr "ÐžÐ´Ð½Ð¾Ñ Ð½Ð° големината Ð¥:" + +#: app/tools/gimpscaletool.c:192 +msgid "Scale ratio Y:" +msgstr "ÐžÐ´Ð½Ð¾Ñ Ð½Ð° големината Y:" + +#: app/tools/gimpscaletool.c:196 +msgid "Aspect Ratio:" +msgstr "ОдноÑ:" + +#: app/tools/gimpselectionoptions.c:136 +msgid "Smooth edges" +msgstr "Ублажи ги ивиците" + +#: app/tools/gimpselectionoptions.c:150 +msgid "Allow completely transparent regions to be selected" +msgstr "Дозволи избирање на потполно провидни региони" + +#: app/tools/gimpselectionoptions.c:156 +msgid "Base selection on all visible layers" +msgstr "Базирај ја Ñелекцијата на Ñите видливи Ñлоеви" + +#: 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 +msgid "Antialiasing" +msgstr "Омекнување на ивиците" + +#: app/tools/gimpselectionoptions.c:399 +msgid "Feather edges" +msgstr "ОлеÑни ги ивиците" + +#: app/tools/gimpselectionoptions.c:425 +msgid "Show interactive boundary" +msgstr "Прикажи интерактивни граници" + +#: app/tools/gimpselectionoptions.c:448 +msgid "Select transparent areas" +msgstr "Избери ги провидните облаÑти" + +#: app/tools/gimpselectionoptions.c:488 +msgid "Auto shrink selection" +msgstr "ÐвтоматÑки Ñмали ја Ñелекцијата" + +#: app/tools/gimpsheartool.c:98 +msgid "Shear" +msgstr "ОдÑечи" + +#: app/tools/gimpsheartool.c:99 +msgid "Shear the layer or selection" +msgstr "ОдÑечи Ñлој или Ñелекција" + +#: app/tools/gimpsheartool.c:100 +msgid "S_hear" +msgstr "_ОдÑечи" + +#: app/tools/gimpsheartool.c:157 +msgid "Shearing Information" +msgstr "Информација за одÑекувањето" + +#: app/tools/gimpsheartool.c:167 +msgid "Shear magnitude X:" +msgstr "Ð¥ Магнитуда на одÑекувањето:" + +#: app/tools/gimpsheartool.c:174 +msgid "Shear magnitude Y:" +msgstr "Y Магнитуда на одÑекувањето:" + +#: app/tools/gimpsmudgetool.c:55 +msgid "Smudge image" +msgstr "Замати ја Ñликата" + +#: app/tools/gimpsmudgetool.c:56 +msgid "_Smudge" +msgstr "_Флека" + +#: 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 +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 +msgid "Indentation of the first line" +msgstr "Вовлекување на првиот ред" + +#: app/tools/gimptextoptions.c:183 +msgid "Modify line spacing" +msgstr "Промени го проредот" + +#: app/tools/gimptextoptions.c:419 +msgid "Font:" +msgstr "Фонт:" + +#: app/tools/gimptextoptions.c:431 +msgid "Hinting" +msgstr "Советување" + +#: app/tools/gimptextoptions.c:438 +msgid "Force auto-hinter" +msgstr "Потикни автоматÑко Ñоветување" + +#: app/tools/gimptextoptions.c:453 +msgid "Text Color" +msgstr "Боја на букви" + +#: app/tools/gimptextoptions.c:458 +msgid "Color:" +msgstr "Боја:" + +#: app/tools/gimptextoptions.c:463 +msgid "Justify:" +msgstr "Порамни:" + +#: app/tools/gimptextoptions.c:469 +msgid "Indent:" +msgstr "Вовлечи:" + +#: app/tools/gimptextoptions.c:475 +msgid "" +"Line\n" +"spacing:" +msgstr "" +"Линија\n" +"раздел:" + +#: app/tools/gimptextoptions.c:478 +msgid "Create path from text" +msgstr "Ðаправи патека од текÑтот" + +#: app/tools/gimptexttool.c:143 +msgid "Add text to the image" +msgstr "Додај текÑÑ‚ кон Ñликата" + +#: app/tools/gimptexttool.c:144 +msgid "Te_xt" +msgstr "_ТекÑÑ‚" + +#: app/tools/gimptexttool.c:732 +msgid "GIMP Text Editor" +msgstr "ГИМП уредувач на текÑÑ‚" + +#: app/tools/gimptexttool.c:842 app/tools/gimptexttool.c:845 +msgid "Confirm Text Editing" +msgstr "Потври промена на текÑтот" + +#: app/tools/gimptexttool.c:866 +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 " +"modifications.\n" +"\n" +"You can edit the layer or create a new text layer from its text attributes." +msgstr "" +"Слојот што го избравте е текÑтуелен Ñлој, но бил променет Ñо кориÑтење " +"на други алатки. Промената на Ñлојот Ñо текÑтуелна алатка ќе ги поништи " +"тие промени.\n" +"\n" +"Можете да го промените Ñлојот или да Ñоздадете нов текÑтуелен Ñлој од неговите " +"текÑтуелни атрибути." + +#: app/tools/gimpthresholdtool.c:93 +msgid "Reduce image to two colors using a threshold" +msgstr "Сведи ја Ñликата на две бои Ñо кориÑтење на толеранција" + +#: app/tools/gimpthresholdtool.c:94 +msgid "_Threshold..." +msgstr "_ОÑетливоÑÑ‚..." + +#: app/tools/gimpthresholdtool.c:148 +msgid "Apply Threshold" +msgstr "Примени оÑетливоÑÑ‚" + +#: app/tools/gimpthresholdtool.c:199 +msgid "Threshold does not operate on indexed layers." +msgstr "ОÑетливоÑта не работи за индекÑирани Ñлоеви." + +#: app/tools/gimptransformoptions.c:329 +msgid "Transform Direction" +msgstr "ТранÑформирај правец" + +#: app/tools/gimptransformoptions.c:338 +msgid "Interpolation:" +msgstr "Интерполација:" + +#: app/tools/gimptransformoptions.c:348 +msgid "Supersampling" +msgstr "СуперотÑечување" + +#. the clip resulting image toggle button +#: app/tools/gimptransformoptions.c:353 +msgid "Clip result" +msgstr "ОдÑечи разултат" + +#: app/tools/gimptransformoptions.c:367 +msgid "Preview:" +msgstr "Преглед:" + +#. the constraints frame +#: app/tools/gimptransformoptions.c:413 +msgid "Constraints" +msgstr "Ограничувања" + +#: app/tools/gimptransformoptions.c:425 +#, c-format +msgid "15 degrees %s" +msgstr "15 Ñтепени %s" + +#: app/tools/gimptransformoptions.c:445 +#, c-format +msgid "Keep height %s" +msgstr "Задржи ја виÑината %s" + +#: app/tools/gimptransformoptions.c:447 +#, c-format +msgid "Keep width %s" +msgstr "Задржи ширина %s" + +#: app/tools/gimptransformoptions.c:449 +#, c-format +msgid "Keep aspect %s" +msgstr "Задржи го одноÑот %s" + +#: app/tools/gimptransformtool.c:253 +msgid "Transforming..." +msgstr "ТранÑформирам..." + +#: app/tools/gimpvectoroptions.c:113 +msgid "Restrict editing to polygons" +msgstr "Ограничи уредување на полигоните" + +#: app/tools/gimpvectoroptions.c:177 +msgid "Edit Mode" +msgstr "Режим на уредување" + +#: app/tools/gimpvectoroptions.c:182 +msgid "Polygonal" +msgstr "ПолигонÑки" + +#: app/tools/gimpvectoroptions.c:186 +#, c-format +msgid "" +"Path to Selection\n" +"%s Add\n" +"%s Subtract\n" +"%s Intersect" +msgstr "" +"Патека во Ñелекцијата\n" +"%s Додади\n" +"%s Одземи\n" +"%s ПреÑек" + +#: app/tools/gimpvectoroptions.c:196 +msgid "Create selection from path" +msgstr "Ðаправи Ñелекција oд патеката" + +#: app/tools/gimpvectoroptions.c:207 +msgid "Stroke path" +msgstr "Ðацртај патека" + +#: app/tools/gimpvectortool.c:161 +msgid "Create and edit paths" +msgstr "Ðаправи и уреди патека" + +#: app/tools/gimpvectortool.c:363 +msgid "Add Stroke" +msgstr "Додај потез" + +#: app/tools/gimpvectortool.c:381 +msgid "Add Anchor" +msgstr "Додај врÑка" + +#: app/tools/gimpvectortool.c:404 +msgid "Insert Anchor" +msgstr "Уфрли врÑка" + +#: app/tools/gimpvectortool.c:433 +msgid "Drag Handle" +msgstr "Повлечи рачка" + +#: app/tools/gimpvectortool.c:462 +msgid "Drag Anchor" +msgstr "Повлечи врÑка" + +#: app/tools/gimpvectortool.c:479 +msgid "Drag Anchors" +msgstr "Повлечи врÑки" + +#: app/tools/gimpvectortool.c:499 +msgid "Drag Curve" +msgstr "Повлечи крива" + +#: app/tools/gimpvectortool.c:527 +msgid "Connect Strokes" +msgstr "Поврзи потези" + +#: app/tools/gimpvectortool.c:557 +msgid "Drag Path" +msgstr "Повлечи патека" + +#: app/tools/gimpvectortool.c:567 +msgid "Convert Edge" +msgstr "Претвори ивица" + +#: app/tools/gimpvectortool.c:597 +msgid "Delete Anchor" +msgstr "Избриши врÑка" + +#: app/tools/gimpvectortool.c:619 +msgid "Delete Segment" +msgstr "Избриши Ñегмент" + +#: app/tools/gimpvectortool.c:831 +msgid "Move Anchors" +msgstr "ПремеÑти врÑки" + +#: app/tools/gimpvectortool.c:1196 +msgid "Click to pick path to edit." +msgstr "Кликнете да изберете која патека да ја уредувате." + +#: app/tools/gimpvectortool.c:1199 +msgid "Click to create a new path." +msgstr "Кликнете да направите нова патека." + +#: app/tools/gimpvectortool.c:1202 +msgid "Click to create a new component of the path." +msgstr "Кликнете да направите нова компонента на патеката." + +#: app/tools/gimpvectortool.c:1205 +msgid "Click to create a new anchor. (try SHIFT)" +msgstr "Кликнете да направите нова врÑка. (пробајте Shift)" + +#: app/tools/gimpvectortool.c:1208 +msgid "Click-Drag to move the anchor around." +msgstr "Кликнете па повлечете да ја премеÑтете врÑката." + +#: app/tools/gimpvectortool.c:1211 +msgid "Click-Drag to move the anchors around." +msgstr "Кликните па повлечете да ги премеÑтите врÑките." + +#: app/tools/gimpvectortool.c:1214 +msgid "Click-Drag to move the handle around. (try SHIFT)" +msgstr "Кликнете па повлечете да ја премеÑтете рачката. (пробајте Shift)" + +#: app/tools/gimpvectortool.c:1217 +msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" +msgstr "" +"Кликнете па повлечете да го промените изгледот на кривата. (Shift: " +"Ñиметрично)" + +#: app/tools/gimpvectortool.c:1221 +msgid "Click-Drag to move the component around. (try SHIFT)" +msgstr "Кликнете па повлечете да ја премеÑтите компонентата. (пробајте Shift)" + +#: app/tools/gimpvectortool.c:1225 +msgid "Click-Drag to move the path around." +msgstr "Кликнете па повлечете да ја премеÑтете патеката." + +#: app/tools/gimpvectortool.c:1228 +msgid "Click to insert an anchor on the path. (try SHIFT)" +msgstr "Кликнете да уфрлите врÑка на патеката. (пробајте Shift)" + +#: app/tools/gimpvectortool.c:1231 +msgid "Click to delete this anchor." +msgstr "Кликнете да ја избришете врÑката." + +#: app/tools/gimpvectortool.c:1234 +msgid "Click to connect this anchor with the selected endpoint." +msgstr "Кликнете да ја поврзете оваа врÑка Ñо избраната точка." + +#: app/tools/gimpvectortool.c:1238 +msgid "Click to open up the path." +msgstr "Кликнете да ја отворите патеката." + +#: app/tools/gimpvectortool.c:1241 +msgid "Click to make this node angular." +msgstr "Кликните да го претворите овој чвор у агол." + +#: app/tools/gimpvectortool.c:1751 +msgid "Delete Anchors" +msgstr "Избриши Ñидра" + +#: app/tools/gimpvectortool.c:1918 +msgid "There is no active layer or channel to stroke to" +msgstr "Ðема активен Ñлој или канал за цртање." + +#: app/vectors/gimpvectors.c:231 +msgid "Path" +msgstr "Патека" + +#: app/vectors/gimpvectors.c:232 +msgid "Rename Path" +msgstr "Промени име на патеката" + +#: app/vectors/gimpvectors.c:233 app/vectors/gimpvectors.c:373 +msgid "Move Path" +msgstr "ПомеÑти патека" + +#: app/vectors/gimpvectors.c:234 +msgid "Scale Path" +msgstr "Скалирај патека" + +#: app/vectors/gimpvectors.c:235 +msgid "Resize Path" +msgstr "Промени големина на патеката" + +#: app/vectors/gimpvectors.c:236 app/vectors/gimpvectors.c:464 +msgid "Flip Path" +msgstr "Обрни ја патеката" + +#: app/vectors/gimpvectors.c:237 app/vectors/gimpvectors.c:508 +msgid "Rotate Path" +msgstr "Ротирај патека" + +#: app/vectors/gimpvectors.c:238 app/vectors/gimpvectors.c:539 +msgid "Transform Path" +msgstr "ТранÑформирај патека" + +#: app/vectors/gimpvectors.c:568 +msgid "Cannot stroke empty path." +msgstr "Ðе може да црта по празна патека." + +#: app/vectors/gimpvectors-import.c:287 +msgid "Import Paths" +msgstr "Увези патеки" + +#: app/vectors/gimpvectors-import.c:298 +msgid "Imported Path" +msgstr "Увезена патека" + +#: app/vectors/gimpvectors-import.c:324 +#, c-format +msgid "No paths found in '%s'" +msgstr "Ðе Ñе најдени патеки во '%s'" + +#: app/vectors/gimpvectors-import.c:327 +msgid "No paths found in the buffer" +msgstr "Ðе Ñе најдени патеки во баферот" + +#: app/vectors/gimpvectors-import.c:337 +#, c-format +msgid "Failed to import paths from '%s': %s" +msgstr "Ðе можев да ги вчитам петеките од „%s“: %s" + +#: 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:292 app/widgets/gimpcontrollereditor.c:345 +msgid "Action" +msgstr "Ðкција" + +#: app/widgets/gimpactionview.c:317 +msgid "Shortcut" +msgstr "Кратенки за таÑтатура" + +#: app/widgets/gimpactionview.c:339 +msgid "Name" +msgstr "Име" + +#: app/widgets/gimpactionview.c:479 app/widgets/gimpactionview.c:672 +msgid "Changing shortcut failed." +msgstr "Промената на кратенката не уÑпеа." + +#: app/widgets/gimpactionview.c:519 +msgid "Conflicting Shortcuts" +msgstr "Конфликтни кратенки" + +#: app/widgets/gimpactionview.c:525 +msgid "_Reassign shortcut" +msgstr "По_вторно поÑтави ги кратенките" + +#: app/widgets/gimpactionview.c:536 +#, c-format +msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." +msgstr "Кратенката \"%s\" е веќе заземена од \"%s\" од групата \"%s\"." + +#: app/widgets/gimpactionview.c:540 +#, c-format +msgid "Reassigning the shortcut will cause it to be removed from \"%s\"." +msgstr "Повторното поÑтавување на кратенката ќе предизвика да биде отÑтранета од \"%s\"." + +#: app/widgets/gimpactionview.c:607 +msgid "Removing shortcut failed." +msgstr "ОтÑтранувањето на кратенката не уÑпеа." + +#: app/widgets/gimpactionview.c:612 +msgid "Invalid shortcut." +msgstr "Ðеправилна кратенка." + +#: app/widgets/gimpbrusheditor.c:168 +msgid "Spikes:" +msgstr "Шилци:" + +#: app/widgets/gimpbrusheditor.c:181 +msgid "Hardness:" +msgstr "Тврдина:" + +#: app/widgets/gimpbrusheditor.c:220 app/widgets/gimpbrushfactoryview.c:114 +msgid "Spacing:" +msgstr "Раздел:" + +#: 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:146 app/widgets/gimphistogrameditor.c:355 +msgid "(None)" +msgstr "(Ðишто)" + +#: app/widgets/gimpcellrendereraccel.c:234 +#: app/widgets/gimpcellrendereraccel.c:459 +msgid "Type a new accelerator, or press Backspace to clear" +msgstr "Ðапишете нов убрзувач или притиÑтене Backspace за да иÑчиÑтите" + +#: app/widgets/gimpcellrendereraccel.c:462 +msgid "Type a new accelerator" +msgstr "Ðапишете нов убрзувач" + +#: app/widgets/gimpchanneltreeview.c:151 +msgid "Reorder Channel" +msgstr "Повторно пореди ги каналите" + +#: app/widgets/gimpchanneltreeview.c:261 +msgid "Empty Channel" +msgstr "ИÑпразни канал" + +#: app/widgets/gimpclipboard.c:283 +msgid "Clipboard" +msgstr "ИнÑерти" + +#: app/widgets/gimpcolordialog.c:169 +msgid "Add the current color to the color history" +msgstr "Додај ја тековната боја во иÑторијатот на бои" + +#: app/widgets/gimpcolordisplayeditor.c:177 +msgid "Available Filters" +msgstr "ДоÑтапни филтери" + +#: app/widgets/gimpcolordisplayeditor.c:204 +msgid "Add the selected filter to the list of active filters." +msgstr "Додај го избраниот филтер во лиÑтата од активни филтери." + +#: app/widgets/gimpcolordisplayeditor.c:221 +msgid "Remove the selected filter from the list of active filters." +msgstr "ИÑфрли го избраниот филтер од лиÑтата на активни филтери." + +#: app/widgets/gimpcolordisplayeditor.c:235 +msgid "Move the selected filter up" +msgstr "ПомеÑти го избраниот филтер погоре" + +#: app/widgets/gimpcolordisplayeditor.c:244 +msgid "Move the selected filter down" +msgstr "ПомеÑти го избраниот филтер подолу" + +#: app/widgets/gimpcolordisplayeditor.c:289 +msgid "Active Filters" +msgstr "Ðктивни филтери" + +#: app/widgets/gimpcolordisplayeditor.c:322 +msgid "Reset the selected filter to default values" +msgstr "ПодеÑи го избраниот филтер на Ñтандардните вредноÑти" + +#: app/widgets/gimpcolordisplayeditor.c:543 +#, c-format +msgid "Configure selected filter: %s" +msgstr "ПодеÑи го избраниот филтер: %s" + +#: app/widgets/gimpcolordisplayeditor.c:550 +msgid "No filter selected" +msgstr "Ðе е изберен ниеден филтер" + +#: app/widgets/gimpcolordisplayeditor.c:554 +msgid "Configure selected filter" +msgstr "ПодеÑи го избраниот филтер" + +#: app/widgets/gimpcolorframe.c:240 +msgid "Index:" +msgstr "ИндекÑ:" + +#: app/widgets/gimpcolorframe.c:244 app/widgets/gimpcolorframe.c:265 +msgid "Red:" +msgstr "Црвена:" + +#: app/widgets/gimpcolorframe.c:245 app/widgets/gimpcolorframe.c:266 +msgid "Green:" +msgstr "Зелена:" + +#: app/widgets/gimpcolorframe.c:246 app/widgets/gimpcolorframe.c:267 +msgid "Blue:" +msgstr "Сина:" + +#: app/widgets/gimpcolorframe.c:256 app/widgets/gimpcolorframe.c:287 +msgid "Value:" +msgstr "ВредноÑÑ‚:" + +#: app/widgets/gimpcolorframe.c:275 +msgid "Hex:" +msgstr "ХекÑ:" + +#: app/widgets/gimpcolorframe.c:285 +msgid "Hue:" +msgstr "Ðиј.:" + +#: app/widgets/gimpcolorframe.c:286 +msgid "Sat.:" +msgstr "ЗаÑит.:" + +#: app/widgets/gimpcolorframe.c:303 +msgid "Cyan:" +msgstr "Цијан:" + +#: app/widgets/gimpcolorframe.c:304 +msgid "Magenta:" +msgstr "Магента:" + +#: app/widgets/gimpcolorframe.c:305 +msgid "Yellow:" +msgstr "Жолта:" + +#: app/widgets/gimpcolorframe.c:306 +msgid "Black:" +msgstr "Црна:" + +#: app/widgets/gimpcolorframe.c:320 +msgid "Alpha:" +msgstr "Ðлфа:" + +#: app/widgets/gimpcolormapeditor.c:247 +msgid "Color index:" +msgstr "Ð˜Ð½Ð´ÐµÐºÑ Ð½Ð° бојата:" + +#: app/widgets/gimpcolormapeditor.c:258 +msgid "HTML notation:" +msgstr "HTML белешка:" + +#: app/widgets/gimpcontainerpopup.c:502 +msgid "Smaller Previews" +msgstr "Помали прегледи" + +#: app/widgets/gimpcontainerpopup.c:507 +msgid "Larger Previews" +msgstr "Поголеми прегледи" + +#: app/widgets/gimpcontrollereditor.c:208 +msgid "Dump events from this controller" +msgstr "Отфрли ги Ñлучувањата од овој контролер" + +#: app/widgets/gimpcontrollereditor.c:213 +msgid "Enable this controller" +msgstr "Овозможи го овој контролер" + +#: app/widgets/gimpcontrollereditor.c:234 +msgid "Name:" +msgstr "Име:" + +#: app/widgets/gimpcontrollereditor.c:340 +msgid "Event" +msgstr "ÐаÑтан" + +#: app/widgets/gimpcontrollereditor.c:521 +msgid "Select Controller Event Action" +msgstr "Избери дејÑтво за наÑтани за контролерот" + +#: app/widgets/gimpcontrollerkeyboard.c:69 +msgid "Key Up (Shift + Control + Alt)" +msgstr "Клуч нагоре (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:72 +msgid "Key Up (Control + Alt)" +msgstr "Клуч нагоре (Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:75 +msgid "Key Up (Shift + Alt)" +msgstr "Клуч нагоре (Shift + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:78 +msgid "Key Up (Shift + Control)" +msgstr "Клуч нагоре (Shift + Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:81 +msgid "Key Up (Alt)" +msgstr "Клуч нагоре (Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:84 +msgid "Key Up (Control)" +msgstr "Клуч нагоре (Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:87 +msgid "Key Up (Shift)" +msgstr "Клуч нагоре (Shift)" + +#: app/widgets/gimpcontrollerkeyboard.c:90 +msgid "Key Up" +msgstr "Клуч нагоре" + +#: app/widgets/gimpcontrollerkeyboard.c:94 +msgid "Key Down (Shift + Control + Alt)" +msgstr "Клуч надоле (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:97 +msgid "Key Down (Control + Alt)" +msgstr "Клуч надоле (Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:100 +msgid "Key Down (Shift + Alt)" +msgstr "Клуч надоле (Shift + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:103 +msgid "Key Down (Shift + Control)" +msgstr "Клуч надоле (Shift + Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:106 +msgid "Key Down (Alt)" +msgstr "Клуч надоле (Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:109 +msgid "Key Down (Control)" +msgstr "Клуч надоле (Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:112 +msgid "Key Down (Shift)" +msgstr "Клуч надоле (Shift)" + +#: app/widgets/gimpcontrollerkeyboard.c:115 +msgid "Key Down" +msgstr "Клуч надоле" + +#: app/widgets/gimpcontrollerkeyboard.c:119 +msgid "Key Left (Shift + Control + Alt)" +msgstr "Клуч лево (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:122 +msgid "Key Left (Control + Alt)" +msgstr "Клуч лево (Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:125 +msgid "Key Left (Shift + Alt)" +msgstr "Клуч лево (Shift + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:128 +msgid "Key Left (Shift + Control)" +msgstr "Клуч лево (Shift + Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:131 +msgid "Key Left (Alt)" +msgstr "Клуч лево (Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:134 +msgid "Key Left (Control)" +msgstr "Клуч лево (Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:137 +msgid "Key Left (Shift)" +msgstr "Клуч левÐ¾ (Shift)" + +#: app/widgets/gimpcontrollerkeyboard.c:140 +msgid "Key Left" +msgstr "Клуч лево" + +#: app/widgets/gimpcontrollerkeyboard.c:144 +msgid "Key Right (Shift + Control + Alt)" +msgstr "Клуч деÑно (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:147 +msgid "Key Right (Control + Alt)" +msgstr "Клуч деÑно (Control + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:150 +msgid "Key Right (Shift + Alt)" +msgstr "Клуч деÑно (Shift + Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:153 +msgid "Key Right (Shift + Control)" +msgstr "Клуч деÑно (Shift + Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:156 +msgid "Key Right (Alt)" +msgstr "Клуч деÑно (Alt)" + +#: app/widgets/gimpcontrollerkeyboard.c:159 +msgid "Key Right (Control)" +msgstr "Клуч деÑно (Control)" + +#: app/widgets/gimpcontrollerkeyboard.c:162 +msgid "Key Right (Shift)" +msgstr "Клуч деÑно (Shift)" + +#: app/widgets/gimpcontrollerkeyboard.c:165 +msgid "Key Right" +msgstr "Клуч деÑно" + +#: app/widgets/gimpcontrollerkeyboard.c:207 +msgid "Keyboard" +msgstr "ТаÑтатура" + +#: app/widgets/gimpcontrollerkeyboard.c:230 +msgid "Keyboard Events" +msgstr "ТаÑтатурни наÑтани" + +#: app/widgets/gimpcontrollerkeyboard.c:231 +#: app/widgets/gimpcontrollerwheel.c:230 +msgid "Ready" +msgstr "Спремна" + +#: app/widgets/gimpcontrollerwheel.c:68 +msgid "Scroll Up (Shift + Control + Alt)" +msgstr "ПомеÑти нагоре (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:71 +msgid "Scroll Up (Control + Alt)" +msgstr "ПомеÑти нагоре (Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:74 +msgid "Scroll Up (Shift + Alt)" +msgstr "ПомеÑти нагоре (Shift + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:77 +msgid "Scroll Up (Shift + Control)" +msgstr "ПомеÑти нагоре (Shift + Control)" + +#: app/widgets/gimpcontrollerwheel.c:80 +msgid "Scroll Up (Alt)" +msgstr "ПомеÑти нагоре (Alt)" + +#: app/widgets/gimpcontrollerwheel.c:83 +msgid "Scroll Up (Control)" +msgstr "ПомеÑти нагоре (Control)" + +#: app/widgets/gimpcontrollerwheel.c:86 +msgid "Scroll Up (Shift)" +msgstr "ПомеÑти нагоре (Shift)" + +#: app/widgets/gimpcontrollerwheel.c:89 +msgid "Scroll Up" +msgstr "ПомеÑти нагоре" + +#: app/widgets/gimpcontrollerwheel.c:93 +msgid "Scroll Down (Shift + Control + Alt)" +msgstr "ПомеÑти надоле (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:96 +msgid "Scroll Down (Control + Alt)" +msgstr "ПомеÑти надоле (Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:99 +msgid "Scroll Down (Shift + Alt)" +msgstr "ПомеÑти надоле (Shift + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:102 +msgid "Scroll Down (Shift + Control)" +msgstr "ПомеÑти надоле (Shift + Control)" + +#: app/widgets/gimpcontrollerwheel.c:105 +msgid "Scroll Down (Alt)" +msgstr "ПомеÑти надоле (Alt)" + +#: app/widgets/gimpcontrollerwheel.c:108 +msgid "Scroll Down (Control)" +msgstr "ПомеÑти надоле (Control)" + +#: app/widgets/gimpcontrollerwheel.c:111 +msgid "Scroll Down (Shift)" +msgstr "ПомеÑти надоле (Shift)" + +#: app/widgets/gimpcontrollerwheel.c:114 +msgid "Scroll Down" +msgstr "ПомеÑти надоле" + +#: app/widgets/gimpcontrollerwheel.c:118 +msgid "Scroll Left (Shift + Control + Alt)" +msgstr "ПомеÑти налево (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:121 +msgid "Scroll Left (Control + Alt)" +msgstr "ПомеÑти налево (Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:124 +msgid "Scroll Left (Shift + Alt)" +msgstr "ПомеÑти налево (Shift + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:127 +msgid "Scroll Left (Shift + Control)" +msgstr "ПомеÑти налево (Shift + Control)" + +#: app/widgets/gimpcontrollerwheel.c:130 +msgid "Scroll Left (Alt)" +msgstr "ПомеÑти налево (Alt)" + +#: app/widgets/gimpcontrollerwheel.c:133 +msgid "Scroll Left (Control)" +msgstr "ПомеÑти налево (Control)" + +#: app/widgets/gimpcontrollerwheel.c:136 +msgid "Scroll Left (Shift)" +msgstr "ПомеÑти налево (Shift)" + +#: app/widgets/gimpcontrollerwheel.c:139 +msgid "Scroll Left" +msgstr "ПомеÑти налево" + +#: app/widgets/gimpcontrollerwheel.c:143 +msgid "Scroll Right (Shift + Control + Alt)" +msgstr "ПомеÑти надеÑно (Shift + Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:146 +msgid "Scroll Right (Control + Alt)" +msgstr "ПомеÑти надеÑно (Control + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:149 +msgid "Scroll Right (Shift + Alt)" +msgstr "ПомеÑти надеÑно (Shift + Alt)" + +#: app/widgets/gimpcontrollerwheel.c:152 +msgid "Scroll Right (Shift + Control)" +msgstr "ПомеÑти надеÑно (Shift + Control)" + +#: app/widgets/gimpcontrollerwheel.c:155 +msgid "Scroll Right (Alt)" +msgstr "ПомеÑти надеÑно (Alt)" + +#: app/widgets/gimpcontrollerwheel.c:158 +msgid "Scroll Right (Control)" +msgstr "ПомеÑти надеÑно (Control)" + +#: app/widgets/gimpcontrollerwheel.c:161 +msgid "Scroll Right (Shift)" +msgstr "ПомеÑти надеÑно (Shift)" + +#: app/widgets/gimpcontrollerwheel.c:164 +msgid "Scroll Right" +msgstr "ПомеÑти надеÑно" + +#: app/widgets/gimpcontrollerwheel.c:206 +msgid "Mouse Wheel" +msgstr "Тркалце на глушецот" + +#: app/widgets/gimpcontrollerwheel.c:229 +msgid "Mouse Wheel Events" +msgstr "ÐаÑтани на тркалцето на глушецот" + +#: app/widgets/gimpdataeditor.c:205 +msgid "Save" +msgstr "Зачувај" + +#: app/widgets/gimpdataeditor.c:213 +msgid "Revert" +msgstr "Поврати" + +#: app/widgets/gimpdevicestatus.c:281 +msgid "Save device status" +msgstr "Зачувај ÑоÑтојба на уредот" + +#: app/widgets/gimpdevicestatus.c:385 +#, c-format +msgid "Foreground: %d, %d, %d" +msgstr "Боја на четката: %d, %d, %d" + +#: app/widgets/gimpdevicestatus.c:390 +#, c-format +msgid "Background: %d, %d, %d" +msgstr "Позадина: %d, %d, %d" + +#: app/widgets/gimpdock.c:430 +msgid "You can drop dockable dialogs here." +msgstr "Можете да ги Ñпуштите приÑтанишните прозорци овде." + +#: app/widgets/gimpdockable.c:209 +msgid "Close this Tab" +msgstr "Затвори ја оваа картица" + +#: app/widgets/gimperrorconsole.c:235 app/widgets/gimperrordialog.c:252 +#, c-format +msgid "%s Message" +msgstr "%s Порака" + +#: app/widgets/gimperrordialog.c:229 +msgid "Too many error messages!" +msgstr "Премногу пораки за грешки!" + +#: app/widgets/gimperrordialog.c:230 +msgid "Messages are redirected to stderr." +msgstr "Пораките Ñе пренаÑочени кон stderr." + +#: app/widgets/gimpfiledialog.c:304 +msgid "Automatically Detected" +msgstr "ÐвтоматÑки откриени" + +#: app/widgets/gimpfiledialog.c:310 +msgid "By Extension" +msgstr "По екÑтензија" + +#: app/widgets/gimpfiledialog.c:496 +msgid "All Files" +msgstr "Сите датотеки" + +#: app/widgets/gimpfiledialog.c:635 +#, c-format +msgid "Select File _Type (%s)" +msgstr "Изберете _тип на датотека (%s)" + +#: app/widgets/gimpfileprocview.c:234 +msgid "File Type" +msgstr "Тип на датотека" + +#: app/widgets/gimpfileprocview.c:253 +msgid "Extensions" +msgstr "ЕкÑтензии" + +#: app/widgets/gimpgradienteditor.c:362 +msgid "Instant update" +msgstr "Брзо ажурирање" + +#: app/widgets/gimpgradienteditor.c:619 +#, c-format +msgid "Zoom factor: %d:1" +msgstr "Размер на приказот: %d:1" + +#: app/widgets/gimpgradienteditor.c:622 +#, c-format +msgid "Displaying [%0.6f, %0.6f]" +msgstr "Прикажувам [%0.6f, %0.6f]" + +#: app/widgets/gimpgradienteditor.c:814 +#, c-format +msgid "Position: %0.6f" +msgstr "Положба: %0.6f" + +#: app/widgets/gimpgradienteditor.c:816 +#, c-format +msgid "RGB (%0.3f, %0.3f, %0.3f)" +msgstr "RGB (%0.3f, %0.3f, %0.3f)" + +#: app/widgets/gimpgradienteditor.c:819 +#, c-format +msgid "HSV (%0.3f, %0.3f, %0.3f)" +msgstr "HSV (%0.3f, %0.3f, %0.3f)" + +#: app/widgets/gimpgradienteditor.c:821 +#, c-format +msgid "Intensity: %0.3f Opacity: %0.3f" +msgstr "Интензитет: %0.3f ÐепровидноÑÑ‚: %0.3f" + +#: 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 +msgid "Foreground color set to:" +msgstr "Бојата на четката подеÑена на:" + +#: 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 +msgid "Background color set to:" +msgstr "Бојата на позадината подеÑена на:" + +#: 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 +msgid "Drag: move" +msgstr "Повлечи: премеÑти" + +#: 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 +msgid "Click: select" +msgstr "Клик: избери" + +#: 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 +#, c-format +msgid "Handle position: %0.6f" +msgstr "Раководи Ñо положбата: %0.6f" + +#: app/widgets/gimpgradienteditor.c:1419 +#, c-format +msgid "Distance: %0.6f" +msgstr "ОдалеченоÑÑ‚: %0.6f" + +#: app/widgets/gimpgrideditor.c:219 +msgid "Line _Style:" +msgstr "_Стил на линијата:" + +#: app/widgets/gimpgrideditor.c:223 +msgid "Change grid foreground color" +msgstr "Промени боја на иÑцртување на мрежата" + +#: app/widgets/gimpgrideditor.c:228 +msgid "_Foreground color:" +msgstr "Боја на _четка:" + +#: app/widgets/gimpgrideditor.c:232 +msgid "Change grid background color" +msgstr "Промени боја на позадината на мрежата" + +#: app/widgets/gimpgrideditor.c:237 +msgid "_Background color:" +msgstr "Боја на _позадина:" + +#: app/widgets/gimpgrideditor.c:242 +msgid "Spacing" +msgstr "Раздел" + +#: app/widgets/gimpgrideditor.c:263 app/widgets/gimpgrideditor.c:295 +msgid "Width" +msgstr "Ширина" + +#: app/widgets/gimpgrideditor.c:265 app/widgets/gimpgrideditor.c:297 +msgid "Height" +msgstr "ВиÑина" + +#: app/widgets/gimphelp.c:187 +msgid "Help browser not found" +msgstr "Ðе е најден прелиÑтувач за ÑиÑтем за помош" + +#: app/widgets/gimphelp.c:188 +msgid "Could not find GIMP help browser." +msgstr "Ðе можам да го пронајдам ГИМП прелиÑтувачот за помош" + +#: app/widgets/gimphelp.c:189 +msgid "The GIMP help browser plug-in appears to be missing from your installation." +msgstr "ГИМП-овиот додаток за прелиÑтувач на помош изгледа дека го нема во вашата инÑталација." + +#: app/widgets/gimphelp.c:213 +msgid "Help browser doesn't start" +msgstr "ПрелиÑтувачот за помош не Ñе подигна" + +#: app/widgets/gimphelp.c:214 +msgid "Could not start the GIMP help browser plug-in." +msgstr "Ðе можам да го подигнам додатокот за ГИМП прегледувачот за помош" + +#: app/widgets/gimphelp.c:240 +msgid "Use _web browser instead" +msgstr "КориÑтете прелиÑтувач на веб како замена" + +#: app/widgets/gimphistogrameditor.c:133 +msgid "Mean:" +msgstr "Значење:" + +#: app/widgets/gimphistogrameditor.c:134 +msgid "Std Dev:" +msgstr "Стандардна девијација:" + +#: app/widgets/gimphistogrameditor.c:135 +msgid "Median:" +msgstr "Медијана:" + +#: app/widgets/gimphistogrameditor.c:136 +msgid "Pixels:" +msgstr "Точки:" + +#: app/widgets/gimphistogrameditor.c:137 +msgid "Count:" +msgstr "Бројач:" + +#: app/widgets/gimphistogrameditor.c:138 +msgid "Percentile:" +msgstr "Процент:" + +#: app/widgets/gimpimagedock.c:203 +msgid "Auto" +msgstr "Ðвто" + +#: app/widgets/gimpimagedock.c:214 +msgid "When enabled the dialog automatically follows the image you are working on." +msgstr "Кога е вклучен, дијалогот Ñам ја Ñледи Ñликата на која работите." + +#: app/widgets/gimpitemtreeview.c:987 +msgid "Set Item Exclusive Visible" +msgstr "Ðаправи го предметот иÑклучиво видлив." + +#: app/widgets/gimpitemtreeview.c:995 +msgid "Set Item Exclusive Linked" +msgstr "Ðаправи го предметот иÑклучиво поврзан" + +#: app/widgets/gimplayertreeview.c:250 +msgid "Reorder Layer" +msgstr "Повторно подреди го Ñлојот" + +#: app/widgets/gimplayertreeview.c:311 +msgid "Keep transparency" +msgstr "Задржи провидноÑÑ‚" + +#: app/widgets/gimplayertreeview.c:846 +msgid "Empty Layer" +msgstr "Празен Ñлој" + +#: app/widgets/gimpmessagebox.c:458 +#, c-format +msgid "Message repeated %d times." +msgstr "Пораката повторена %d пати." + +#: app/widgets/gimpmessagebox.c:460 +msgid "Message repeated once." +msgstr "Пораката е повторена Ñамо еднаш." + +#: app/widgets/gimppaletteeditor.c:258 app/widgets/gimppaletteeditor.c:999 +msgid "Undefined" +msgstr "Ðеодредено" + +#: app/widgets/gimppaletteeditor.c:266 +msgid "Columns:" +msgstr "Колони:" + +#: app/widgets/gimppropwidgets.c:1487 +#, c-format +msgid "This text input field is limited to %d characters." +msgstr "Ова поле за Ð²Ð½ÐµÑ Ð½Ð° текÑÑ‚ е ограничено на %d букви." + +#: app/widgets/gimpselectiondata.c:317 +#, c-format +msgid "" +"The filename '%s' couldn't be converted to a valid URI:\n" +"\n" +"%s" +msgstr "" +"Името на датотеката „%s“ не може да Ñе претвори во иÑправна адреÑа:\n" +"\n" +"%s" + +#: app/widgets/gimpselectiondata.c:321 +msgid "Invalid UTF-8" +msgstr "ÐеиÑправен УТФ-8" + +#: app/widgets/gimpsizebox.c:289 +msgid "Keep aspect ratio" +msgstr "Задржи размер" + +#: app/widgets/gimpsizebox.c:555 +#, c-format +msgid "%d x %d dpi" +msgstr "%d x %d тпи" + +#: app/widgets/gimpsizebox.c:559 +#, c-format +msgid "%d dpi" +msgstr "%d тпи" + +#: app/widgets/gimpstrokeeditor.c:198 +msgid "Line Width:" +msgstr "Ширина на линијата:" + +#: app/widgets/gimpstrokeeditor.c:209 +msgid "_Line Style" +msgstr "Стил на _линијата:" + +#: app/widgets/gimpstrokeeditor.c:228 +msgid "_Cap style:" +msgstr "Стил на _капицата:" + +#: app/widgets/gimpstrokeeditor.c:234 +msgid "_Join style:" +msgstr "Стил на Ñ_појот:" + +#: app/widgets/gimpstrokeeditor.c:239 +msgid "_Miter limit:" +msgstr "Граница на _аголниот Ñпој:" + +#: app/widgets/gimpstrokeeditor.c:246 +msgid "Dash pattern:" +msgstr "Шаблон за тире:" + +#: app/widgets/gimpstrokeeditor.c:288 +msgid "Dash preset:" +msgstr "Одредено тире:" + +#: app/widgets/gimpstrokeeditor.c:300 +msgid "_Antialiasing" +msgstr "О_мекнување на ивица" + +#: app/widgets/gimptemplateeditor.c:255 +#, c-format +msgid "%p" +msgstr "%p" + +#: app/widgets/gimptemplateeditor.c:330 +msgid "_Advanced Options" +msgstr "_Ðапредни опции" + +#: app/widgets/gimptemplateeditor.c:438 +msgid "Color_space:" +msgstr "_Раздел на боја:" + +#: app/widgets/gimptemplateeditor.c:446 +msgid "_Fill with:" +msgstr "П_ополни Ñо:" + +#: app/widgets/gimptemplateeditor.c:456 +msgid "Comme_nt:" +msgstr "_Кометар:" + +#: app/widgets/gimptemplateeditor.c:566 +msgid "_Name:" +msgstr "_Име:" + +#: app/widgets/gimptemplateeditor.c:577 +msgid "_Icon:" +msgstr "И_кона:" + +#: app/widgets/gimptemplateeditor.c:695 +#, c-format +msgid "%d x %d dpi, %s" +msgstr "%d x %d тпи, %s" + +#: app/widgets/gimptemplateeditor.c:699 +#, c-format +msgid "%d dpi, %s" +msgstr "%d тпи, %s" + +#: app/widgets/gimpthumbbox.c:337 +#, c-format +msgid "" +"Click to update preview\n" +"%s Click to force update even if preview is up-to-date" +msgstr "" +"Кликнете за да го ажурирате приказот.\n" +"%s Кликнете да ажирирате иако приказот е ажуриран." + +#: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 +msgid "No selection" +msgstr "Ðема Ñелекција" + +#: 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 +msgid "Creating Preview ..." +msgstr "Создавам преглед..." + +#: app/widgets/gimptoolbox-color-area.c:135 +msgid "Change Foreground Color" +msgstr "Промени боја на четката" + +#: app/widgets/gimptoolbox-color-area.c:140 +msgid "Change Background Color" +msgstr "Промени боја на позадина" + +#: app/widgets/gimptoolbox-image-area.c:90 +msgid "" +"The active image.\n" +"Click to open the Image Dialog." +msgstr "" +"Ðктивен Ñлика.\n" +"Кликнете да го отворите прозорот за Ñлики." + +#: app/widgets/gimptoolbox-indicator-area.c:143 +msgid "" +"The active brush.\n" +"Click to open the Brush Dialog." +msgstr "" +"Ðктивна четка.\n" +"Кликнете да го отворете прозорот за четки." + +#: app/widgets/gimptoolbox-indicator-area.c:174 +msgid "" +"The active pattern.\n" +"Click to open the Pattern Dialog." +msgstr "" +"Ðктивен одÑечок.\n" +"Кликнете да го отворите прозорот за одÑечоци." + +#: app/widgets/gimptoolbox-indicator-area.c:205 +msgid "" +"The active gradient.\n" +"Click to open the Gradient Dialog." +msgstr "" +"Ðктивен прелив.\n" +"Кликнете да го отворите прозорот за преливи." + +#: 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." +msgstr "" +"Боја на четка и позадина. Црните и белите квадрати повторно ги поÑтавуват " +"боите. Стрелките меѓуÑебно ги заменуваат боите. Дупол клик го отвара " +"прозорот за избирање на бои." + +#: app/widgets/gimptooloptionseditor.c:185 +msgid "Save options to..." +msgstr "Зачувај ги опциите во..." + +#: app/widgets/gimptooloptionseditor.c:193 +msgid "Restore options from..." +msgstr "Извлечи опции од..." + +#: app/widgets/gimptooloptionseditor.c:201 +msgid "Delete saved options..." +msgstr "ОтÑтрани ги зачуваните опции..." + +#: app/widgets/gimpuimanager.c:495 +msgid "Your GIMP installation is incomplete:" +msgstr "Вашата инÑталација на ГИМП не е комплетна:" + +#: app/widgets/gimpuimanager.c:497 +msgid "Plase make sure the menu XML files are correctly installed." +msgstr "Ве молам проверете дали XML датотеките од менито Ñе правилно инÑталирани." + +#: app/widgets/gimpundoeditor.c:255 +msgid "[ Base Image ]" +msgstr "[ ОÑновна Слика ]" + +#: app/widgets/gimpvectorstreeview.c:151 +msgid "Reorder path" +msgstr "Повторно подреди ги патеките" + +#: app/widgets/gimpvectorstreeview.c:289 +msgid "Empty Path" +msgstr "Празна патека" + +#: app/widgets/gimpviewablebox.c:75 +msgid "Open the brush selection dialog" +msgstr "Отвори прозор за избирање на четка" + +#: app/widgets/gimpviewablebox.c:115 +msgid "Open the pattern selection dialog" +msgstr "Отвори прозор за избирање на одÑечоци" + +#: app/widgets/gimpviewablebox.c:155 +msgid "Open the gradient selection dialog" +msgstr "Отвори прозор за избирање на преливи" + +#: app/widgets/gimpviewablebox.c:167 +msgid "Reverse" +msgstr "Поврати" + +#: app/widgets/gimpviewablebox.c:210 +msgid "Open the palette selection dialog" +msgstr "Отвори прозор за избирање на палети" + +#: app/widgets/gimpviewablebox.c:250 +msgid "Open the font selection dialog" +msgstr "Отвори прозорец за избирање на фонтови" + +#: 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 +msgid "Dissolve" +msgstr "Втопи" + +#: app/widgets/gimpwidgets-constructors.c:52 +msgid "Behind" +msgstr "Позади" + +#: app/widgets/gimpwidgets-constructors.c:53 +msgid "Color erase" +msgstr "Бриши бои" + +#: 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 +msgid "Divide" +msgstr "Подели" + +#: 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 +msgid "Overlay" +msgstr "Преклопување" + +#: 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 +msgid "Soft light" +msgstr "Слабо Ñветло" + +#: 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 +msgid "Grain merge" +msgstr "ТочкаÑто Ñпојување" + +#: 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 +msgid "Addition" +msgstr "Додаток" + +#: 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 +msgid "Lighten only" +msgstr "Само Ñветли" + +#: 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 +msgid "Saturation" +msgstr "ЗаÑитеноÑÑ‚" + +#. The format string which is used to display modifier names +#. * , and +#. +#: app/widgets/gimpwidgets-utils.c:391 +#, c-format +msgid "<%s>" +msgstr "<%s>" + +#: app/widgets/gimpwidgets-utils.c:795 +#, c-format +msgid "Invalid UTF-8 data in file '%s'." +msgstr "ÐеиÑправни УТФ-8 податоци во датотеката „%s“" + +#: app/widgets/widgets-enums.c:23 +msgid "Foreground" +msgstr "Боја на четката" + +#: app/widgets/widgets-enums.c:53 +msgid "Portrait" +msgstr "Портрет" + +#: app/widgets/widgets-enums.c:54 +msgid "Landscape" +msgstr "Хоризонтално" + +#: app/widgets/widgets-enums.c:113 +msgid "Pixel values" +msgstr "ВредноÑти на пикÑелите" + +#: app/widgets/widgets-enums.c:115 +msgid "HSV" +msgstr "HSV" + +#: app/widgets/widgets-enums.c:116 +msgid "CMYK" +msgstr "CMYK" + +#: app/widgets/widgets-enums.c:171 +msgid "Black & white" +msgstr "Црно и бело" + +#: app/widgets/widgets-enums.c:172 +msgid "Fancy" +msgstr "УкраÑен" + +#: app/widgets/widgets-enums.c:199 +msgid "GIMP help browser" +msgstr "ГИМП прелиÑтувач на ÑиÑтемот за помош" + +#: app/widgets/widgets-enums.c:200 +msgid "Web browser" +msgstr "ПрелиÑтувач на веб" + +#: app/widgets/widgets-enums.c:228 +msgid "Logarithmic" +msgstr "ЛогаритамÑко" + +#: app/widgets/widgets-enums.c:261 +msgid "Icon" +msgstr "Икона" + +#: app/widgets/widgets-enums.c:262 +msgid "Current status" +msgstr "Тековна ÑоÑтојба" + +#: app/widgets/widgets-enums.c:264 +msgid "Description" +msgstr "ОпиÑ" + +#: app/widgets/widgets-enums.c:265 +msgid "Icon & text" +msgstr "Икона и текÑÑ‚" + +#: app/widgets/widgets-enums.c:266 +msgid "Icon & desc" +msgstr "Икона и опиÑ" + +#: app/widgets/widgets-enums.c:267 +msgid "Status & text" +msgstr "СоÑтојба и текÑÑ‚" + +#: app/widgets/widgets-enums.c:268 +msgid "Status & desc" +msgstr "СоÑтојба и опиÑ" + +#: app/widgets/widgets-enums.c:295 +msgid "View as list" +msgstr "Приказ во вид на лиÑта" + +#: app/widgets/widgets-enums.c:296 +msgid "View as grid" +msgstr "Приказ во вид на мрежа" + +#: app/widgets/widgets-enums.c:324 +msgid "Normal window" +msgstr "Обичен прозорец" + +#: app/widgets/widgets-enums.c:325 +msgid "Utility window" +msgstr "КориÑен прозорец" + +#: app/widgets/widgets-enums.c:326 +msgid "Keep above" +msgstr "Задржи над" + +#: app/xcf/xcf-load.c:297 +msgid "" +"XCF warning: version 0 of XCF file format\n" +"did not save indexed colormaps correctly.\n" +"Substituting grayscale map." +msgstr "" +"XCF предупредување: верзијата 0 на XCF форматот на датотеката\n" +"не ги е правилно зачувала индекÑираните мапи на бои.\n" +"Ја менувам мапата на Ñиви бои." + +#: app/xcf/xcf-read.c:107 +msgid "Invalid UTF-8 string in XCF file" +msgstr "Ðеправилна УТФ-8 нишка во XCF датотеката" + +#: app/xcf/xcf-save.c:157 app/xcf/xcf-save.c:167 app/xcf/xcf-save.c:177 +#: app/xcf/xcf-save.c:187 app/xcf/xcf-save.c:211 app/xcf/xcf.c:342 +#, c-format +msgid "Error saving XCF file: %s" +msgstr "Грешка при зачувувањето на XCF датотеката: %s" + +#: 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 +#, c-format +msgid "Could not seek in XCF file: %s" +msgstr "Ðе можам да пребарувам во XCF датотеката: %s" + +#: app/xcf/xcf.c:86 app/xcf/xcf.c:143 +msgid "GIMP XCF image" +msgstr "ГИМП XCF Ñлика" + +#: 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 +msgid "Create and edit images or photographs" +msgstr "Ðаправи и уреди Ñлики или фотографии" + +#: data/misc/gimp.desktop.in.in.h:2 +msgid "Image Editor" +msgstr "Уредник за Ñлики" + +msgid " -S, --no-splash-image Do not add an image to the startup window.\n" +msgstr " -S, --no-splash-image Ðе додавај Ñлика на почетниот прозорец.\n" + +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 "Positioned Color Dithering" +msgstr "Позиционо мешање на боја" + +msgid "Transparent" +msgstr "ТранÑпарентна" + +msgid "Spiral (anticlockwise)" +msgstr "Спирала (Ñпротивно од Ñтрелките на чаÑовникот)" + +msgid "RGB-Alpha" +msgstr "RGB-Ðлфа" + +msgid "Grayscale-Alpha" +msgstr "Сиви тонови - Ðлфа" + +msgid "Indexed-Alpha" +msgstr "ИндекÑирана палета - Ðлфа" + +msgid "Image Mod" +msgstr "Режим на Ñлика" + +msgid "Channel Mod" +msgstr "Режим на каналот" + +msgid "Trying legacy loader on file '%s' with unknown extension." +msgstr "Го подигам официјалниот вчитувач за датотеката „%s“ Ñо непозната екÑтензија." + +msgid "Paste Transform" +msgstr "Вметни ја транÑформацијата" + +msgid "Set Indexed Palette" +msgstr "ПодеÑи ja индекÑиранaта палетa" + +msgid "Change Indexed Palette Entry" +msgstr "Промени го внеÑот во индекÑираната палета" + +msgid "Add Color to Indexed Palette" +msgstr "Додај боја во индекÑираната палета" + +# Данило каже: „Мало аориÑта не шкоди“ :-) +msgid "Could not open" +msgstr "Ðе можев да отворам" + +msgid "No preview available" +msgstr "Преглед не е доÑтапен" + +msgid "Black" +msgstr "Црна" + +msgid "Set canvas padding color" +msgstr "ПодеÑи ја бојата на подлогата на платното" + +msgid "Changes were made to '%s'. Close anyway?" +msgstr "Дојде до промена во '%s'. Сепак да затворам?" + +msgid "Zoom to fit window" +msgstr "Зголеми до големината на прозорот" + +msgid "General Palette Options" +msgstr "Опции на општата палета" + +msgid "Max. Number of Colors:" +msgstr "МакÑ. број на бои:" + +msgid "Dithering Options" +msgstr "Опции за мешање" + +msgid "[ Warning ]" +msgstr "[ Предупредување ]" + +msgid "" +"You are attempting to convert an image with an alpha channel to indexed " +"colors.\n" +"Do not generate a palette of more than 255 colors if you intend to create a " +"transparent or animated GIF file." +msgstr "" +"Пробувате да префрлите Ñлика Ñо алфа канал во индекÑирани бои.\n" +"Ðе правете палета Ñо повеќе од 255 бои ако имате намера да направите " +"провидна или анимирана GIF датотека." + +msgid "Select Custom Palette" +msgstr "Избери произвона палета" + +msgid "Indexed Palette" +msgstr "ИндекÑирана палета" + +msgid "/Add Tab/Tool _Options" +msgstr "/Додај картица/Опции за алати" + +msgid "/Add Tab/_Device Status" +msgstr "/Додај картица/СоÑтојба на уредот" + +msgid "/Add Tab/_Layers" +msgstr "/Додај картица/Слоеви" + +msgid "/Add Tab/_Channels" +msgstr "/Додај картица/Канали" + +msgid "/Add Tab/_Paths" +msgstr "/Додај картица/Патека" + +msgid "/Add Tab/Inde_xed Palette" +msgstr "/Додај картица/Ин_декÑирана палета" + +msgid "/Add Tab/Histogra_m" +msgstr "/Додај картица/_ХиÑтограм" + +msgid "/Add Tab/_Selection Editor" +msgstr "/Додај картица/Уредник за Ñелекции" + +msgid "/Add Tab/Na_vigation" +msgstr "/Додај картица/Ðавигација" + +msgid "/Add Tab/_Undo History" +msgstr "/Додај картица/ИÑторијат на поништувањето" + +msgid "/Add Tab/Colo_rs" +msgstr "/Додај картица/Бои" + +msgid "/Add Tab/Brus_hes" +msgstr "/Додај картица/Четки" + +msgid "/Add Tab/P_atterns" +msgstr "/Додај картица/ИÑечи" + +msgid "/Add Tab/_Gradients" +msgstr "/Додај картица/Преливи" + +msgid "/Add Tab/_Fonts" +msgstr "/Додај картица/Фонтови" + +msgid "/Add Tab/_Buffers" +msgstr "/Додај картица/Бафери" + +msgid "/Add Tab/_Images" +msgstr "/Додај картица/_Слики" + +msgid "/Add Tab/Document Histor_y" +msgstr "/Додај картица/ИÑторијат на документот" + +msgid "/Add Tab/_Templates" +msgstr "/Додај картица/моÑтри" + +msgid "/Add Tab/T_ools" +msgstr "/Додај картица/_Ðлати" + +msgid "/Add Tab/Error Co_nsole" +msgstr "/Додај картица/Конзола за грешки" + +msgid "/Preview Size/_Tiny" +msgstr "/Големина на прегледот/Малечок" + +msgid "/Preview Size/E_xtra Small" +msgstr "/Големина на прегледот/Многу мал" + +msgid "/Preview Size/_Small" +msgstr "/Големина на прегледот/Мал" + +msgid "/Preview Size/_Medium" +msgstr "/Големина на прегледот/Среден" + +msgid "/Preview Size/_Large" +msgstr "/Големина на прегледот/Голем" + +msgid "/Preview Size/Ex_tra Large" +msgstr "/Големина на прегледот/Многу голем" + +msgid "/Preview Size/_Huge" +msgstr "/Големина на прегледот/Огромен" + +msgid "/Preview Size/_Enormous" +msgstr "/Големина на прегледот/Ðенормално голем" + +msgid "/Preview Size/_Gigantic" +msgstr "/Големина на прегледот/Огромен" + +msgid "/Tab Style/_Icon" +msgstr "/Стил на картицата/_Икона" + +msgid "/Tab Style/Current _Status" +msgstr "/Стил на картицата/_Тековна Ñоцтојба" + +msgid "/Tab Style/_Text" +msgstr "/Стил на картица/Т_екÑÑ‚" + +msgid "/Tab Style/I_con & Text" +msgstr "/Стил на картицата/И_кона и текÑÑ‚" + +msgid "/Tab Style/St_atus & Text" +msgstr "/Стил на картицата/_Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Ð¸ текÑÑ‚" + +msgid "Determine File _Type:" +msgstr "Одреди _тип на датотека:" + +msgid "From _Template:" +msgstr "Од _моÑтра:" + +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 "/Automatic" +msgstr "/ÐвтоматÑки" + +msgid "" +"File '%s' exists.\n" +"Overwrite it?" +msgstr "" +"Датотеката „%s“ поÑтои.\n" +"Да ја препишам?" + +msgid "Unable to run font callback. The corresponding plug-in may have crashed." +msgstr "Ðе можам да подигнам фонт. Можеби е откажал Ñоодветниот додаток." + +msgid "/Load Left Color From/_Right Endpoint" +msgstr "/Вчитај ја бојата на левата точка од/_ДеÑната крајна точка" + +msgid "/Load Left Color From/_FG Color" +msgstr "/Вчитај ја бојата на левата точка од/Бојата на _четката" + +msgid "/Load Left Color From/_BG Color" +msgstr "/Вчитај ја бојата на левата точка од/Бојата на по_задината" + +msgid "/Load Right Color From/_Left Endpoint" +msgstr "/Вчитај на бојата на деÑната точка од/_Левата крајна точка" + +msgid "/Load Right Color From/_FG Color" +msgstr "/Вчитај ја бојата на деÑната точка од/Бојата на _четката" + +msgid "/Load Right Color From/_BG Color" +msgstr "/Вчитај ја бојата на деÑната точка од/Бојата на по_задината" + +msgid "/blendingfunction/_Linear" +msgstr "/функција на Ñтопување/_Линеарна" + +msgid "/blendingfunction/_Curved" +msgstr "/функција на Ñтопување/_Закривена" + +msgid "/blendingfunction/_Sinusodial" +msgstr "/функција на Ñтопување/_СинуÑоидна" + +msgid "/blendingfunction/(Varies)" +msgstr "/функција на Ñтопување/(разни)" + +msgid "/coloringtype/_RGB" +msgstr "/тип на боење/_RGB" + +msgid "/coloringtype/HSV (clockwise _hue)" +msgstr "/тип на боење/HSV (во _правец на Ñказалките на чаÑовникот)" + +msgid "/coloringtype/(Varies)" +msgstr "/тип на боење/(разно)" + +msgid "Unable to run gradient callback. The corresponding plug-in may have crashed." +msgstr "Ðе можев да го отповикам преливот. Можеби откажал Ñоодветниот додаток." + +msgid "" +"Some files are unsaved.\n" +"\n" +"Really quit The GIMP?" +msgstr "" +"Ðекои датотеки не Ñе зачувани.\n" +"\n" +"ÐавиÑтина да го напуштам ГИМП?" + +msgid "Final, Anchored Layer should be:" +msgstr "Конечниот, вÑидрениот Ñлој треба да биде:" + +msgid "Resize Error: Both width and height must be greater than zero." +msgstr "" +"Грешка при менувањето на големината: И ширината и виÑината мораат да бидат " +"поголеми од нула." + +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 "Слојот е премал" + +msgid "Scale Error: Both width and height must be greater than zero." +msgstr "" +"Грешка при менувањето на големината: И ширината и виÑината мораат да бидат " +"поголеми од нула." + +msgid "/File/_New..." +msgstr "/Датотека/Ðова..." + +msgid "/File/Open Recent/(None)" +msgstr "/Датотека/Отвори поÑледни/(Ðишто)" + +msgid "/File/Open Recent/Document _History" +msgstr "/Датотека/Отвори поÑледни/_ИÑторијат на документот" + +msgid "/File/_Save" +msgstr "/Датотека/_Зачувај" + +msgid "/File/Re_vert" +msgstr "/Датотека/_Врати" + +msgid "/File/_Close" +msgstr "/Датотека/_Затвори" + +msgid "/Edit/_Undo" +msgstr "/Уреди/Пони_шти" + +msgid "/Edit/_Redo" +msgstr "/Уреди/По_втори" + +msgid "/Edit/Undo _History" +msgstr "/Уреди/_ИÑторијат на поништувањата" + +msgid "/Edit/Cu_t" +msgstr "/Уреди/_ИÑечи" + +msgid "/Edit/_Copy" +msgstr "/Уреди/_Копирај" + +msgid "/Edit/_Paste" +msgstr "/Уреди/_Вметни" + +msgid "/Edit/Paste _Into" +msgstr "/Уреди/Вметни в_о" + +msgid "/Edit/Paste as _New" +msgstr "/Уреди/Вметни како _ново" + +msgid "/Edit/_Buffer" +msgstr "/Уреди/_Бафер" + +msgid "/Edit/Buffer/Cu_t Named..." +msgstr "/Уреди/Бафер/ИÑе_чи именувано..." + +msgid "/Edit/Buffer/_Copy Named..." +msgstr "/Уреди/Бафер/_Копирај именувано..." + +msgid "/Edit/Cl_ear" +msgstr "/Уреди/ИÑ_чиÑти" + +msgid "/Edit/Fill with _FG Color" +msgstr "/Уреди/Пополни Ñо бојата на _четката" + +msgid "/Edit/Fill with B_G Color" +msgstr "/Уреди/Пополни Ñо боја на _позадина" + +msgid "/Edit/Fill with P_attern" +msgstr "/Уреди/Пополни Ñо боја на иÑечоци" + +msgid "/Edit/_Stroke Selection..." +msgstr "/Уреди/_ИÑцртај избор..." + +msgid "/Edit/St_roke Path..." +msgstr "/Уреди/ИÑ_цртај патека..." + +msgid "/Select/_All" +msgstr "/Избери/_Се" + +msgid "/Select/_None" +msgstr "/Избери/_Ðишто" + +msgid "/Select/_Invert" +msgstr "/Избери/_Спротивно" + +msgid "/Select/_Float" +msgstr "/Избери/_Пловечко" + +msgid "/Select/_By Color" +msgstr "/Избери/По _боја" + +msgid "/Select/_Sharpen" +msgstr "/Избери/И_зоÑтрено" + +msgid "/Select/S_hrink..." +msgstr "/Избери/Ðамали..." + +msgid "/Select/Toggle _QuickMask" +msgstr "/Избери/Вклучи-иÑклучи _БрзаМаÑка" + +msgid "/Select/To _Path" +msgstr "/Селекција/Во _патека" + +msgid "/View/_New View" +msgstr "/Преглед/_Ðов поглед" + +msgid "/View/_Zoom" +msgstr "/Преглед/_Зголемување" + +msgid "/View/Zoom/Zoom _Out" +msgstr "/Преглед/Зголемување/О_далечи" + +msgid "/View/Zoom/Zoom _In" +msgstr "/Преглед/Зголемување/Прибли_жи" + +msgid "/View/Zoom/Zoom to _Fit Window" +msgstr "/Преглед/Зголемување/Спрема големината на прозорот" + +msgid "/View/Zoom/16:1" +msgstr "/Преглед/Зголемување/16:1" + +msgid "/View/Zoom/8:1" +msgstr "/Преглед/Зголемување/8:1" + +msgid "/View/Zoom/4:1" +msgstr "/Преглед/Зголемување/4:1" + +msgid "/View/Zoom/2:1" +msgstr "/Преглед/Зголемување/2:1" + +msgid "/View/Zoom/1:1" +msgstr "/Преглед/Зголемување/1:1" + +msgid "/View/Zoom/1:2" +msgstr "/Преглед/Зголемување/1:2" + +msgid "/View/Zoom/1:4" +msgstr "/Преглед/Зголемување/1:4" + +msgid "/View/Zoom/1:8" +msgstr "/Преглед/Зголемување/1:8" + +msgid "/View/Zoom/1:16" +msgstr "/Преглед/Зголемување/1:16" + +msgid "/View/_Info Window" +msgstr "/Преглед/_Информативен прозорец" + +msgid "/View/Show _Selection" +msgstr "/Преглед/Покажи _изберено" + +msgid "/View/Show _Layer Boundary" +msgstr "/Преглед/Покажи _граници на Ñлојот" + +msgid "/View/Show _Guides" +msgstr "/Преглед/Покажи _водичи" + +msgid "/View/S_how Grid" +msgstr "/Преглед/Покажи водичи" + +msgid "/View/Show _Menubar" +msgstr "/Преглед/Покажи _мени линија" + +msgid "/View/Show R_ulers" +msgstr "/Преглед/Покажи ле_њири" + +msgid "/View/Show Scroll_bars" +msgstr "/Преглед/Покажи кли_зачи" + +msgid "/View/Show S_tatusbar" +msgstr "/Преглед/Покажи Ñ_татуÑна линија" + +msgid "/View/Shrink _Wrap" +msgstr "/Преглед/Смали за_мотување" + +msgid "/View/Move to Screen..." +msgstr "/Преглед/Префрли на екран..." + +msgid "/Image/_Mode" +msgstr "/Слика/_Режим" + +msgid "/Image/Mode/_RGB" +msgstr "/Слика/Режим/_RGB" + +msgid "/Image/Mode/_Grayscale" +msgstr "/Слика/Режим/_Сиви тонови" + +msgid "/Image/Mode/_Indexed..." +msgstr "/Слика/Режим/_ИндекÑирано..." + +msgid "/Image/_Transform" +msgstr "/Слика/_ТранÑформација" + +msgid "/Image/Transform/Flip _Horizontally" +msgstr "/Слика/ТранÑформација/Заврти _хоризонтално" + +msgid "/Image/Transform/Flip _Vertically" +msgstr "/Слика/ТранÑформација/Заврти вертикално" + +msgid "/Image/Transform/Rotate 90 degrees _CW" +msgstr "/Слика/ТранÑформација/Ротирај за 90 Ñтепени во _наÑока на Ñказалките " + +msgid "/Image/Can_vas Size..." +msgstr "/Слика/Големина на п_латното..." + +msgid "/Image/_Scale Image..." +msgstr "/Слика/_Промени големина на Ñлика..." + +msgid "/Image/_Crop Image" +msgstr "/Слика/ИÑе_чи ја Ñликата" + +msgid "/Image/_Duplicate" +msgstr "/Слика/_Дуплирај" + +msgid "/Image/Merge Visible _Layers..." +msgstr "/Слика/Спој ги видливите Ñлоеви..." + +msgid "/Image/_Flatten Image" +msgstr "/Слика/Спој ги Ñите Ñлоеви" + +msgid "/Image/Configure G_rid..." +msgstr "/Слика/ПодеÑи мрежа..." + +msgid "/Layer/_New Layer..." +msgstr "/Слој/_Ðов Ñлој..." + +msgid "/Layer/Du_plicate Layer" +msgstr "/Слој/_Дуплирај Ñлој" + +msgid "/Layer/Anchor _Layer" +msgstr "/Слој/Ð’Ñидри _Ñлој" + +msgid "/Layer/Me_rge Down" +msgstr "/Слој/Спо_ј Ñо Ñлојот под него" + +msgid "/Layer/_Delete Layer" +msgstr "/Слој/И_збриши Ñлој" + +msgid "/Layer/Discard _Text Information" +msgstr "/Слој/Занемари ги податоците за _текÑтот" + +msgid "/Layer/Stack/_Raise Layer" +msgstr "/Слој/РедоÑлед/_Подигни Ñлој" + +msgid "/Layer/Stack/_Lower Layer" +msgstr "/Слој/РедоÑлед/_Спушти Ñлој" + +msgid "/Layer/Stack/Layer to T_op" +msgstr "/Слој/РедоÑлед/ПоÑтави на _врв" + +msgid "/Layer/Stack/Layer to Botto_m" +msgstr "/Слој/РедоÑлед/ПоÑтави на _дно" + +msgid "/Layer/_Colors" +msgstr "/Слој/_Бои" + +msgid "/Layer/Colors/Color _Balance..." +msgstr "/Слој/Бои/РавномерноÑÑ‚ на _боите..." + +msgid "/Layer/Colors/Hue-_Saturation..." +msgstr "/Слој/Бои/Тип-_ЗаÑитеноÑÑ‚..." + +msgid "/Layer/Colors/Colori_ze..." +msgstr "/Слој/Бои/Обо_ј..." + +msgid "/Layer/Colors/B_rightness-Contrast..." +msgstr "/Слој/Бои/ОÑ_ветленоÑÑ‚-КонтраÑÑ‚..." + +msgid "/Layer/Colors/_Threshold..." +msgstr "/Слој/Бои/_ОÑетливоÑÑ‚..." + +msgid "/Layer/Colors/_Levels..." +msgstr "/Слој/Бои/_Ðивоа..." + +msgid "/Layer/Colors/_Curves..." +msgstr "/Слој/Бои/_Кривини..." + +msgid "/Layer/Colors/_Posterize..." +msgstr "/Слој/Бои/Смали б_рој на бои..." + +msgid "/Layer/Colors/_Desaturate" +msgstr "/Слој/Бои/Смали _заÑитеноÑÑ‚" + +msgid "/Layer/Colors/In_vert" +msgstr "/Слој/Боје/_Инвертирај" + +msgid "/Layer/Colors/_Auto" +msgstr "/Слој/Бои/_ÐвтоматÑки" + +msgid "/Layer/Colors/Auto/_Equalize" +msgstr "/Слој/Бои/ÐвтоматÑки/_Изедначи" + +msgid "/Layer/Colors/_Histogram" +msgstr "/Слој/Бои/_ХиÑтограм" + +msgid "/Layer/_Mask" +msgstr "/Слој/_МаÑка" + +msgid "/Layer/Mask/_Add Layer Mask..." +msgstr "/Слој/МаÑка/_Додај маÑка на Ñлојот..." + +msgid "/Layer/Mask/A_pply Layer Mask" +msgstr "/Слој/МаÑка/_Примени маÑка" + +msgid "/Layer/Mask/_Delete Layer Mask" +msgstr "/Слој/МаÑка/_Избриши маÑка" + +msgid "/Layer/Mask/_Mask to Selection" +msgstr "/Слој/МаÑка/Из_бери маÑка" + +msgid "/Layer/Mask/_Add to Selection" +msgstr "/Слој/МаÑка/_Додај во Ñелекција" + +msgid "/Layer/Mask/_Subtract from Selection" +msgstr "/Слој/МаÑка/_Одземи од Ñелекција" + +msgid "/Layer/Mask/_Intersect with Selection" +msgstr "/Слој/МаÑка/_ПреÑек Ñо Ñелекцијата" + +msgid "/Layer/Tr_ansparency" +msgstr "/Слој/_ПровидноÑÑ‚" + +msgid "/Layer/Transparency/_Add Alpha Channel" +msgstr "/Слој/ПровидноÑÑ‚/_Додај Ðлфа канал" + +msgid "/Layer/Transparency/Al_pha to Selection" +msgstr "/Слој/ПровидноÑÑ‚/Ðл_фа во Ñелекцијата" + +msgid "/Layer/Transparency/A_dd to Selection" +msgstr "/Слој/ПровидноÑÑ‚/Д_одај во Ñелекцијата" + +msgid "/Layer/Transparency/_Subtract from Selection" +msgstr "/Слој/ПровидноÑÑ‚/О_Ñ‚Ñтрани од Ñелекцијата" + +msgid "/Layer/Transparency/_Intersect with Selection" +msgstr "/Слој/ПровидноÑÑ‚/_ПреÑек Ñо Ñелекцијата" + +msgid "/Layer/_Transform" +msgstr "/Слој/_ТранÑформирај" + +msgid "/Layer/Transform/Flip _Horizontally" +msgstr "/Слој/ТранÑформирај/Заврти _хоризонтално..." + +msgid "/Layer/Transform/Flip _Vertically" +msgstr "/Слој/ТранÑформирај/Заврти _вертикално..." + +msgid "/Layer/Transform/Rotate 90 degrees CC_W" +msgstr "/Слој/ТранÑформирај/Ротирај 90 Ñтепени _Ñпротивно од Ñказалките на чаÑовникот" + +msgid "/Layer/Transform/Rotate _180 degrees" +msgstr "/Слој/ТранÑформирај/Ротирај 180 Ñтепени" + +msgid "/Layer/Transform/_Offset..." +msgstr "/Слој/ТранÑформирај/_ОдÑтапување..." + +msgid "/Layer/Layer _Boundary Size..." +msgstr "/Слој/Големина на границата на Ñлојот..." + +msgid "/Layer/Layer to _Image Size" +msgstr "/Слој/Слој Ñпрема _големината на Ñликата" + +msgid "/Layer/_Scale Layer..." +msgstr "/Слој/_Промени големина..." + +msgid "/Layer/Cr_op Layer" +msgstr "/Слој/ИÑе_чи Ñлој" + +msgid "/Tools/Tool_box" +msgstr "/Ðлати/Кутија Ñо алати" + +msgid "/Tools/_Paint Tools" +msgstr "/Ðлати/Ðлати за _цртање" + +msgid "/Dialogs/Create New Dock/_Misc. Stuff" +msgstr "/Дијалози/Ðаправи ново Ñидро/_Разни работи" + +msgid "/Dialogs/Tool _Options" +msgstr "/Дијалози/_Опции на алатките" + +msgid "/Dialogs/_Device Status" +msgstr "/Дијалози/СоÑтојба на _уредот" + +msgid "/Dialogs/_Layers" +msgstr "/Дијалози/_Слоеви" + +msgid "/Dialogs/_Channels" +msgstr "/Дијалози/_Канали" + +msgid "/Dialogs/_Paths" +msgstr "/Дијалози/_Патеки" + +msgid "/Dialogs/Inde_xed Palette" +msgstr "/Дијалози/Ин_декÑирана палета" + +msgid "/Dialogs/Histogra_m" +msgstr "/Дијалози/_ХиÑтограм" + +msgid "/Dialogs/_Selection Editor" +msgstr "/Дијалози/Уредувач на _Ñелекција" + +msgid "/Dialogs/Na_vigation" +msgstr "/Дијалози/_Ðавигација" + +msgid "/Dialogs/_Undo History" +msgstr "/Дијалози/_ИÑторијат на поништувањето" + +msgid "/Dialogs/Colo_rs" +msgstr "/Дијалози/Бои" + +msgid "/Dialogs/Brus_hes" +msgstr "/Дијалози/_Четки" + +msgid "/Dialogs/P_atterns" +msgstr "/Дијалози/_ИÑечоци" + +msgid "/Dialogs/_Gradients" +msgstr "/Дијалози/_Преливи" + +msgid "/Dialogs/Pal_ettes" +msgstr "/Дијалози/Па_лети" + +msgid "/Dialogs/_Fonts" +msgstr "/Дијалози/_Фонтови" + +msgid "/Dialogs/_Buffers" +msgstr "/Дијалози/_Бафери" + +msgid "/Dialogs/_Images" +msgstr "/Дијалози/_Слики" + +msgid "/Dialogs/Document Histor_y" +msgstr "/Дијалози/И_Ñторијат на документот" + +msgid "/Dialogs/_Templates" +msgstr "/Дијалози/_моÑтри" + +msgid "/Dialogs/T_ools" +msgstr "/Дијалози/_Ðлати" + +msgid "/Dialogs/Error Co_nsole" +msgstr "/Дијалози/Кон_зола за грешки" + +msgid "/Filters/Repeat Last" +msgstr "/Филтери/_Повтори предходни" + +msgid "/Filters/Re-Show Last" +msgstr "/Филтери/Повторно прика_жи претходни" + +msgid "/Filters/_Blur" +msgstr "/Филтери/_Замати" + +msgid "/Filters/_Colors" +msgstr "/Филтери/_Бои" + +msgid "/Filters/Colors/Ma_p" +msgstr "/Филтери/Бои/_Мапа" + +msgid "/Filters/_Noise" +msgstr "/Филтери/_Пречки" + +msgid "/Filters/_Generic" +msgstr "/Филтери/_Општи" + +msgid "/Filters/_Map" +msgstr "/Филтери/_Мапирај" + +msgid "/Filters/_Render" +msgstr "/Филтери/_ИÑцртување" + +msgid "/Filters/Render/_Clouds" +msgstr "/Филтери/ИÑцртување/_Облаци" + +msgid "/Filters/Render/_Nature" +msgstr "/Филтери/ИÑцртување/_Природа" + +msgid "/Filters/Render/_Pattern" +msgstr "/Филтери/ИÑцртување/_ИÑечок" + +msgid "/Filters/_Web" +msgstr "/Филтери/_Веб" + +msgid "/Filters/To_ys" +msgstr "/Филтери/И_грачки" + +msgid "Extended" +msgstr "Дополнително" + +msgid "Empty Layer Copy" +msgstr "ИÑпразни ја копијата на Ñлојот" + +msgid "Layer _Name" +msgstr "Име на Ñлојот" + +msgid "/Flatten Image" +msgstr "/Спој ги во _еден Ñите Ñлоеви" + +msgid "Save Menu" +msgstr "Мени за Ñнимање" + +msgid "Indexed Palette Menu" +msgstr "Мени за индекÑирана палета" + +msgid "Offset _X:" +msgstr "ОфÑет Ð¥:" + +msgid "_Wrap" +msgstr "_Замотај" + +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 "_Info Window Per Display" +msgstr "Прозорец Ñо _информации по приказ" + +msgid "Menus" +msgstr "Менија" + +msgid "Enable _Tearoff Menus" +msgstr "Уклучи _иÑкинати менија" + +msgid "Open _Recent Menu Size:" +msgstr "Големина на ÑпиÑокот на _неодамна отворените датотеки:" + +msgid "Context Sensitive _Help with \"F1\"" +msgstr "Ðапредна помош доÑтапна Ñо ÑтиÑкање на таÑтерот \"F1\"" + +msgid "Pointer Movement Feedback" +msgstr "Повратна Ñпрега на движењето на курÑорот" + +msgid "Perfect-but-Slow _Pointer Tracking" +msgstr "Совршено-но-бавно _Ñледење на курÑорот" + +msgid "Enable Cursor _Updating" +msgstr "Вклучи ажурирање на курÑорот" + +msgid "Show reversed zoom ratio" +msgstr "Покажи обратен размер" + +msgid "8-Bit Displays" +msgstr "8-битен приказ" + +msgid "Install Colormap" +msgstr "Вгради мапа на боја" + +msgid "Monitor Resolution" +msgstr "Резолуција на мониторот" + +msgid "Monitor" +msgstr "Монитор" + +msgid "(Currently %d x %d dpi)" +msgstr "(Во моментов %d x %d тпи)" + +msgid "From _Windowing System" +msgstr "Од ÑиÑтемот на прозорци" + +msgid "Window Type Hints" +msgstr "Ознаки на видот на прозорот" + +msgid "Conservative Memory Usage" +msgstr "Конзервативно иÑкориÑтување на меморијата" + +msgid "File Saving" +msgstr "Зачувување на датотеки" + +msgid "Only when Modified" +msgstr "Само кога Ñе менувани" + +msgid "Always" +msgstr "Секогаш" + +msgid "\"File -> Save\" Saves the Image:" +msgstr "\"Датотека -> Зачувај\" Ја зачувува Ñликата:" + +msgid "Session Management" +msgstr "Управување Ñо ÑеÑии" + +msgid "Session" +msgstr "СеÑија" + +msgid "Clear Saved Window Positions Now" +msgstr "ИÑчиÑти ги зачуваните положби на прозорците Ñега" + +msgid "Clear Saved Keyboard Shortcuts Now" +msgstr "ИÑчиÑти ги зачуваните кратенки за таÑтатурата Ñега" + +msgid "Clear Saved Input Device Settings Now" +msgstr "Сега иÑчиÑти ги зачуваните подеÑувања за влезните уреди" + +msgid "Temp Dir:" +msgstr "Директориум за привремени датотеки:" + +msgid "Select Temp Dir" +msgstr "Избери Директориум за привремени датотеки" + +msgid "Swap Dir:" +msgstr "Директориум" + +msgid "Qmask Attributes" +msgstr "СвојÑтва на Брзи МаÑки" + +msgid "Scale Layer Options" +msgstr "Опции за зголемување на Ñлојот" + +msgid "Scale Image Options" +msgstr "Опции за зголемување на Ñлика" + +msgid "Pixel Dimensions" +msgstr "Големина на точка" + +msgid "Layer Boundary Size" +msgstr "Гранична големина на Ñлојот" + +msgid "New Width:" +msgstr "Ðова ширина:" + +msgid "Ratio X:" +msgstr "ÐžÐ´Ð½Ð¾Ñ Ð¥:" + +msgid "Constrain aspect ratio" +msgstr "Задржи пропорции" + +msgid "Print Size & Display Unit" +msgstr "ИÑпиши единица за големина и приказ" + +msgid "Resolution X:" +msgstr "X резолуција:" + +msgid "Stroke Options" +msgstr "Опции на иÑцртување" + +msgid "Stroke" +msgstr "ИÑцртај" + +msgid "/Save Options to/New Entry..." +msgstr "/Зачувај опции во/Ðов внеÑ..." + +msgid "/Restore Options from/(None)" +msgstr "/Поврати ги опциите од/(ништо)" + +msgid "/Rename Saved Options/(None)" +msgstr "/Преименувај ги зачуваните опции/(Ðишто)" + +msgid "/Delete Saved Options/(None)" +msgstr "/Избриши ги зачуваните опции/(Ðишто)" + +msgid "/Reset Tool Options" +msgstr "/Врати ги опциите за алатот" + +msgid "/File/_Preferences" +msgstr "/Датотека/_ПоÑтавки" + +msgid "/File/_Dialogs" +msgstr "/Датотека/_Дијалози" + +msgid "/File/Dialogs/Create New Doc_k" +msgstr "/Датотека/Дијалози/Ðаправи нов _вÑидрен" + +msgid "/File/Dialogs/Create New Dock/_Layers, Channels & Paths" +msgstr "/Датотека/Дијалози/Ðаправи нов вÑидрен/_Слоеви, Канали и Патеки..." + +msgid "/File/Dialogs/Create New Dock/_Brushes, Patterns & Gradients" +msgstr "/Датотека/Дијалози/Ðаправи нов вÑидрен/_Четки, иÑечоци и преливи" + +msgid "/File/Dialogs/Create New Dock/_Misc. Stuff" +msgstr "/Датотека/Дијалози/_Разни работи" + +msgid "/File/Dialogs/Tool _Options" +msgstr "/Датотека/Дијалози/_Опции за алатки" + +msgid "/File/Dialogs/_Device Status" +msgstr "/Датотека/Дијалози/СоÑтојба на _уредите" + +msgid "/File/Dialogs/_Layers" +msgstr "/Датотека/Дијалози/С_лоеви" + +msgid "/File/Dialogs/_Channels" +msgstr "/Датотека/Дијалози/_Канали" + +msgid "/File/Dialogs/_Paths" +msgstr "/Датотека/Дијалози/_Патеки" + +msgid "/File/Dialogs/Inde_xed Palette" +msgstr "/Датотека/Дијалози/Ин_декÑирани палети" + +msgid "/File/Dialogs/Histogra_m" +msgstr "/Датотека/Дијалози/ХиÑтогра_м" + +msgid "/File/Dialogs/_Selection Editor" +msgstr "/Датотека/Дијалози/Уредувач на _Ñелекција" + +msgid "/File/Dialogs/Na_vigation" +msgstr "/Датотека/Дијалози/Ðа_вигација" + +msgid "/File/Dialogs/_Undo History" +msgstr "/Датотека/Дијалози/ИÑторијат на пони_штувањето" + +msgid "/File/Dialogs/Colo_rs" +msgstr "/Датотека/Дијалози/_Бои" + +msgid "/File/Dialogs/Brus_hes" +msgstr "/Датотека/Дијалози/_Четки" + +msgid "/File/Dialogs/P_atterns" +msgstr "/Датотека/Дијалози/_ИÑечоци" + +msgid "/File/Dialogs/_Gradients" +msgstr "/Датотека/Дијалози/П_реливи" + +msgid "/File/Dialogs/Pal_ettes" +msgstr "/Датотека/Дијалози/Па_лети" + +msgid "/File/Dialogs/_Fonts" +msgstr "/Датотека/Дијалози/_Фонтови" + +msgid "/File/Dialogs/_Buffers" +msgstr "/Датотека/Дијалози/Ба_фери" + +msgid "/File/Dialogs/_Images" +msgstr "/Датотека/Дијалози/_Слики" + +msgid "/File/Dialogs/Document Histor_y" +msgstr "/Датотека/Дијалози/_ИÑторијат на документот" + +msgid "/File/Dialogs/_Templates" +msgstr "/Датотека/Дијалози/_моÑтри" + +msgid "/File/Dialogs/T_ools" +msgstr "/Датотека/Дијалози/_Ðлати" + +msgid "/File/Dialogs/Error Co_nsole" +msgstr "/Датотека/Дијалози/_Конзола за грешки" + +msgid "/File/D_ebug" +msgstr "/Датотека/_ОтÑтранување на грешки" + +msgid "/Xtns/_Module Manager" +msgstr "/Проширувања/Управник на _модули" + +msgid "/Help/_Help" +msgstr "/Помош/_Помош" + +msgid "/Help/_About" +msgstr "/Помош/_За" + +msgid "Click \"Continue\" to start The GIMP." +msgstr "Кликнете на \"Продолжи\" за да го подигнете ГИМП." + +msgid "" +"To display images in their natural size, GIMP needs to know your monitor " +"resolution." +msgstr "" +"За приказ на Ñликите во природна големина, ГИМП мора да ја знае " +"резолуцијата на вашиот монитор." + +msgid "Aborting Installation..." +msgstr "Ја прекинувам инÑталацијата..." + +msgid "Cannot create folder: %s" +msgstr "Ðе можам да направам директоријум: %s" + +msgid "" +"GIMP can obtain this information from the windowing system.\n" +"However, usually this does not give useful values." +msgstr "" +"ГИМП може да го добие овој податок од ÑиÑтемот.\n" +"Сепак, тоа обично не дава добри резултати." + +msgid "" +"Alternatively, you can set\n" +"the monitor resolution manually." +msgstr "" +"Или можете рачно да ја подеÑите\n" +"резолуцијата на мониторот." + +msgid "" +"You can also press the \"Calibrate\" button to open a window\n" +"which lets you determine your monitor resolution interactively." +msgstr "" +"Можете иÑто така да притиÑнете го \"Калибрирај\" копчето за отварање на\n" +"прозорецот кој ви овозможува интерактивно утврдување на резолуцијата на " +"мониторот." + +msgid "Calibrate" +msgstr "Калибрирај" + +msgid "Empty Vectors Copy" +msgstr "ИÑпразни ја копијата на векторот" + +msgid "Modify letter spacing" +msgstr "Измени го раÑтојанието на буквите" + +msgid "Don't Show Grid" +msgstr "Ðе прикажувај мрежа" + +msgid "/Tools/Paint Tools/_Airbrush" +msgstr "/Ðлати/Ðлатки за Ñликање/_Спреј" + +msgid "/Tools/Paint Tools/Blen_d" +msgstr "/Ðлати/Ðлатки за Ñликање/Сто_пување" + +msgid "/Tools/Color Tools/B_rightness-Contrast..." +msgstr "/Ðлати/Ðлатки за бои/_ОÑветлување-КонтраÑÑ‚..." + +msgid "/Tools/Paint Tools/_Bucket Fill" +msgstr "/Ðлати/Ðлатки за Ñликање/Полнење Ñо кофа" + +msgid "/Tools/Selection Tools/_By Color Select" +msgstr "/Ðлати/Ðлатки за Ñелекции/Избор _по боја" + +msgid "/Tools/Paint Tools/_Clone" +msgstr "/Ðлати/Ðлатки за Ñликање/К_лон" + +msgid "/Tools/Color Tools/Color _Balance..." +msgstr "/Ðлати/Ðлатки за бои/_Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° бои..." + +msgid "/Tools/Color Tools/Colori_ze..." +msgstr "/Ðлати/Ðлатки за бои/Обој..." + +msgid "/Tools/C_olor Picker" +msgstr "/Ðлати/Бирач на бои" + +msgid "/Tools/Paint Tools/Con_volve" +msgstr "/Ðлати/Ðлатки за Ñликање/Замотај" + +msgid "/Tools/Transform Tools/_Crop & Resize" +msgstr "/Ðлати/Ðлатки за транÑформација/ИÑе_чи и промени големина" + +msgid "/Tools/Color Tools/_Curves..." +msgstr "/Ðлати/Ðлатки за бои/Кривини..." + +msgid "Modify Curves for Channel:" +msgstr "Измени кривини за каналот:" + +msgid "/Tools/Paint Tools/Dod_geBurn" +msgstr "/Ðлати/Ðлатки за Ñликање/СимниСпали" + +msgid "Move Floating Layer" +msgstr "ПомеÑти го пливачкиот Ñлој" + +msgid "/Tools/Selection Tools/_Ellipse Select" +msgstr "/Ðлати/Ðлатки за Ñелекции/Означи Ñо _елипÑа" + +msgid "/Tools/Paint Tools/_Eraser" +msgstr "/Ðлати/Ðлатки за Ñликање/_Бришач" + +msgid "/Tools/Transform Tools/_Flip" +msgstr "/Ðлати/Ðлатки за транÑформација/_Заврти" + +msgid "/Tools/Selection Tools/_Free Select" +msgstr "/Ðлати/Ðлатки за Ñелекција/Слободна Ñелекција" + +msgid "/Tools/Selection Tools/Fu_zzy Select" +msgstr "/Ðлати/Ðлатки за Ñелекција/ÐејаÑна Ñелекција" + +msgid "/Tools/Color Tools/Hue-_Saturation..." +msgstr "/Ðлати/Ðлатки за бои/Тип-За_ÑитеноÑÑ‚..." + +msgid "/Tools/Paint Tools/In_k" +msgstr "/Ðлати/Ðлатки за Ñликање/МаÑтило" + +msgid "/Tools/Color Tools/_Levels..." +msgstr "/Ðлати/Ðлатки за бои/_Ðивоа..." + +msgid "Modify Levels for Channel:" +msgstr "ПодеÑи ги нивоата за канал:" + +msgid "Allow Window Resizing" +msgstr "Дозволи менување на големината на прозорот" + +msgid "/Tools/M_agnify" +msgstr "/Ðлати/Зголеми" + +msgid "/Tools/_Measure" +msgstr "/Ðлати/Мерење" + +msgid "/Tools/Transform Tools/_Move" +msgstr "/Ðлати/Ðлатки за транÑформација/По_меÑти" + +msgid "/Tools/Paint Tools/_Paintbrush" +msgstr "/Ðлати/Ðлатки за Ñликање/Четка" + +msgid "Pattern:" +msgstr "ОдÑечок" + +msgid "/Tools/Paint Tools/Pe_ncil" +msgstr "/Ðлати/Ðлатки за Ñликање/Пенка_ло" + +msgid "/Tools/Transform Tools/_Perspective" +msgstr "/Ðлати/Ðлатки за транÑформација/ПерÑпектива" + +msgid "/Tools/Color Tools/_Posterize..." +msgstr "/Ðлати/Ðлатки за Ñликање/Смали го _бројот на бои..." + +msgid "/Tools/Selection Tools/_Rect Select" +msgstr "/Ðлати/Ðлатки за Ñелекција/_Четириаголна Ñелекција" + +msgid "/Tools/Transform Tools/_Rotate" +msgstr "/Ðлати/Ðлатки за транÑформација/Ротација" + +msgid "/Tools/Transform Tools/_Scale" +msgstr "/Ðлати/Ðлатки за транÑформација/_Големина" + +msgid "/Tools/Transform Tools/S_hear" +msgstr "/Ðлати/Ðлатки за транÑформација/ОдÑечи" + +msgid "/Tools/Paint Tools/_Smudge" +msgstr "/Ðлати/Ðлатки за Ñликање/Замати" + +msgid "_Size:" +msgstr "_Големина:" + +msgid "/Tools/Te_xt" +msgstr "/Ðлати/_TeкÑÑ‚" + +msgid "/Tools/Color Tools/_Threshold..." +msgstr "/Ðлати/Ðлатки за бои/ОÑетливоÑÑ‚..." + +msgid "Threshold Range:" +msgstr "РаÑпон на оÑетливоÑта:" + +msgid "Density:" +msgstr "ГуÑтина:" + +msgid "" +"Activate both the \"Keep Height\" and\n" +"\"Keep Width\" toggles to constrain\n" +"the aspect ratio" +msgstr "" +"Вклучи ги \"Задржи виÑина\" и \n" +"\"Задржи ширина\" копчињата заради\n" +"зачувување на одноÑот." + +msgid "Transformations do not work on layers that contain layer masks." +msgstr "ТранÑформациите не работат на Ñлоевите кои Ñодржат Ñлојна маÑка." + +msgid "/Tools/_Paths" +msgstr "/Ðлати/_Патеки" + +msgid "Delete" +msgstr "Избриши" + +msgid "" +"Channel to Selection\n" +"%s Add\n" +"%s Subtract\n" +"%s%s%s Intersect" +msgstr "" +"Канал во Ñелекција\n" +"%s Додади\n" +"%s Одземи\n" +"%s%s%s ПреÑек" + +msgid "FG" +msgstr "FG" + +msgid "BG" +msgstr "BG" + +msgid "Edit Foreground Color" +msgstr "Уреди боја на четката" + +msgid "" +"Add Color from FG\n" +"%s from BG" +msgstr "" +"Додади боја на иÑцртување\n" +"%s од позадината" + +msgid "He_x Triplet:" +msgstr "Хе_кÑадекадна тројка:" + +msgid "Edit Indexed Color" +msgstr "Уреди ја индекÑираната боја" + +msgid "Edit Indexed Image Palette Color" +msgstr "Уреди ја бојата на палетата на индекÑираната Ñлика" + +msgid "New" +msgstr "Ðово" + +msgid "Refresh" +msgstr "ОÑвежи" + +msgid "Configure input devices" +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 ОтÑрани ги непотребните внеÑови" + +msgid "" +"Save all Errors\n" +"%s Save Selection" +msgstr "" +"Зачувај ги Ñите грешки\n" +"%s Зачувај Ñелекција" + +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 "Intensity Range:" +msgstr "ОпÑег на интензитетот:" + +msgid "" +"%s\n" +"%s To Top" +msgstr "" +"%s\n" +"%s Ðа Врв" + +msgid "" +"%s\n" +"%s To Bottom" +msgstr "" +"%s\n" +"%s Ðа Дно" + +msgid "" +"New Color from FG\n" +"%s from BG" +msgstr "" +"Ðова боја на иÑцртување\n" +"%s од позадината" + +msgid "Stroke _Width:" +msgstr "_Ширина на потез:" + +msgid "Style" +msgstr "Стил" + +msgid "" +"Reset to default values\n" +"%s Reset all Tool Options" +msgstr "" +"Врати на Ñтандардните вредноÑти\n" +"%s Врати ги Ñите опции на алатот" + +msgid "%s Options" +msgstr "Опции за %s" + +msgid "" +"WARNING:\n" +"Too many open message dialogs.\n" +"Messages are redirected to stderr." +msgstr "" +"ПРЕДУПРЕДУВÐЊЕ:\n" +"Премногу отворени дијалози за пораки.\n" +"Пораките Ñе преупатени за Ñтандардниот излез за грешки." + +msgid "Internal" +msgstr "Интерно" + +msgid "The GIMP (unstable)" +msgstr "ГИМП (Ñтабилна верзија)" + diff -uraN gimp-2.2.8/po/ms.gmo gimp-2.2.9/po/ms.gmo --- gimp-2.2.8/po/ms.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.9/po/ms.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,232 +0,0 @@ -Þ•L|"¿ÜDØ[Ù[&ï[G\9^\G˜\Nà\@/]2p];£]Pß]O0^2€^9³^-í^9_;U_7‘_ É_ Ó_Ý_ -ì_÷_` -`*`2`:`V`p`†`0`¾`Ï`â`ù`aaa a !aK.a.za1©aÛaêaùa - b b -"b-b BbLb[b -dbob~b‘b©b*¿b6êb!c>cVc_c~c“c§c»cÚcïcdd1d -MdXd`did‰d ‘d ›d1¨d3Údee'e.eHe Oe -\egexe<ˆeÅeÕeíeõeúeff -&f1fJf&af$ˆf­f´fºfÁfÇf"Ïf òfþfg ggg-g>g Rg _gmgvg}g …g ’gžg ¦g³g¸g½g ÂgÌg ég÷gCþg7Bh=zh¸hÖh3ìh# i!Difiƒi i ©i³i¼iÔiìij,jCjKj ^jlj Œj­jÂjËj Ôjâjöj üj. -k59k5ok8¥kÞk ûklO7l ‡l•l±lÉlÚlàlïl õlm m&m?mFmam~m‡mšm­m¶m -¿mÊmÙmîmnn n&n¨n±n ¹nÆnánúno/o8o -JoUo -to)o©o#Ão#ço% p1pPpWpkp~p‘p#§p-Ëpùp%q5qKqcq hqvq -q -›q¦q¾qÅq Ôq -áqìqóqúq þqr rrr% r!Fr hrur ˆr–r¨r·rÇrßrür -s s%s ,s:s Bs -Os Zsgsos‚s•s¯s ¸sÂs ÒsÜsãs ôsþs tt -)t 4t @t -Mt Xt -dt ot{tt žt¬tÌtÜtátùt u%u ;uEuXu mu{u‹u¦uµu*Æu.ñu v‡O‡_‡ w‡ „‡‘‡¯‡·î‡ˆˆ "ˆ.ˆCˆWˆ@_ˆ ˆ §ˆ´ˆÒˆÙˆ Þˆ êˆöˆ -‰ ‰ ‰ 7‰E‰ ]‰i‰ -‰Š‰Ÿ‰§‰°‰¸‰ ЉÞ‰ -æ‰ñ‰ -ŠŠŠ5ŠRŠZŠ -aŠ lŠ yŠ‡ŠœŠ¯ŠÊŠአêŠøŠþŠ‹ ‹$‹D‹V‹j‹y‹ˆ‹‹ •‹ ¢‹ -¯‹ -º‹ Å‹Ï‹Þ‹÷‹Œ1Œ8Œ -AŒ LŒXŒjŒ ~Œ ˆŒ’Œ›Œ ¬Œ,¹ŒæŒúŒ);SXgn’™¨ ¸Å×ß„çlŽ{ŽƒŽ -ŒŽ—Ž®ŽÎŽ"íŽ!2 K U_ o}V…+Ü(17 MYs%‹ -±¼ÄÓç -÷‘‘ ‘(‘ <‘ F‘T‘ Z‘g‘l‘|‘™‘·‘É‘ -Ï‘Ú‘â‘ -ò‘ý‘ ’’’ 8’D’ Y’!e’‡’ –’¤’¿’Æ’Î’Ý’å’ù’ “&“4C“x““ ‰“““œ“ ¬“#¶“ Ú“ æ“ð“ø“””,”@” I”V”_”e” {”…”‰” š” ¤”!®” ДÞ”å” í”û” •• -/•:•L•h•m• s•!€•¢•!À•#â• – ––#–(–(-–,V– -ƒ–JŽ– Ù–æ– õ– ——*— D—;P—Œ— ›— ¨— ´—— Ò— à—ì—ô— ˜˜7˜T˜f˜z˜+˜¹˜À˜ Ϙ ܘ é˜ õ˜ ™ ™"™9™6Q™ˆ™™ —™¤™™×™Þ™ í™ ú™šš 6šBšWš]š -cšnš sšš -–š ¡š­š¿š4Øš ›*›=›Z›Em› ³› Á›Λæ› ì› ú› œ -œœ:œ -BœMœVœ]œoœ -wœ‚œ—œ §œ´œÏœãœûœ 4Kb˜ ±¿Ôæöž*žDž_žwž=ž6ΞSŸJYŸ ¤Ÿ®Ÿ¿ŸΟ èŸôŸ  +  ? K d v Š   » ´Ó )ˆ¡N²¡¢K£=a£ƒŸ£*#¤?N¤`Ž¤¯ï¤Ÿ¦4¢§/קº¨¨ʨШרߨ﨩©$© 9©E©U© f©s© ˆ©–©¨©Ç©Ü©ì©û© ª%ª*ª0ª6ªGª Nª[ª bªoªuª|ª„ª8ªvƪ=«D« J«!k««¥«Á«Ü«õ«¬/¬6¬?¬S¬ Z¬ g¬s¬|¬ ‹¬—¬¨¬#±¬ Õ¬߬ó¬ -ø¬ -­­­1'­7Y­5‘­HÇ­!®*2®B]¯ ¯ ¿¯ͯ5Ô¯¯ -°0º°Cë°,/±2\±*±2º±í± ² -²²/²5²:² I²V²h² x²…² ‹²•²§²»²˲Ú²ô²³ ³ - ³+³0³;9³ u³³ „³‘³—³Ÿ³±³¸³À³3ɳý³´"´(´/´L´U´F^´¥´ Å´KÑ´Qµ$oµ5”µPʵG¶-c¶j‘·oü·el¸jÒ¸~=¹p¼¹o-ºwºt»tŠ»`ÿ»‰`¼ê¼ð¼ö¼ý¼6½oE½µ½¼½#Ľè½ÿ½¾¾¾ -"¾ -¾9¾K¾ S¾a¾j¾ y¾‡¾¾¾ ¯¾ оݾà¾ð¾ ¿¿ ¿ #¿ -¿:¿@¿G¿ O¿[¿ ^¿h¿o¿x¿{¿¿Š¿ ¿ ¸¿ -Å¿пÖ¿ -ß¿ê¿í¿ñ¿ø¿ý¿5À7À IÀSÀcÀhÀoÀ wÀ…À šÀ»À -ÛÀ æÀòÀöÀþÀÁ ÁÁ Á Á*Á0Á 7Á.EÁbtÁ×Â+íÂOÃ<iÃC¦ÃIêÃ=4Ä3rÄ=¦ÄKäÄJ0Å7{Å6³Å>êÅ@)Æ>jÆ<©Æ -æÆ -ñÆüÆ - ÇÇ)ÇAÇ JÇ VÇ`Ç~ÇdzÇ<»ÇøÇÈ#È<È DÈ NÈXÈ ]È iÈQwÈ9ÉÈ+É /É <ÉJÉaÉqɃɕɰÉÂÉÛÉìÉûÉÊ+ÊGÊ'^Ê7†Ê¾ÊÜÊøÊ Ë"Ë<ËVË lË˧ËÁË×Ë öË Ì $Ì 2Ì%<Ì -bÌ -mÌ xÌ+†Ì-²ÌàÌåÌøÌþÌÍ Í &Í2ÍIÍ7^Í–Í¨Í -ÂÍÍÍÒÍÛÍìÍüÍ! Î-Î9HÎ4‚ηÎÀÎÇÎÎÎ×Î$ßÎ ÏÏÏÏ"Ï6ÏGÏZÏ lÏ yφÏÏ–Ï -œÏ §Ï³Ï ¼ÏÊÏÐÏÕÏÚÏâÏüÏÐeÐDÐVÆÐ&ÑDÑ3dÑ)˜Ñ&ÂÑ"éÑ" Ò /Ò;Ò DÒNÒhÒÒ’Ò&¡ÒÈÒÐÒ àÒ#îÒ+Ó>ÓSÓ\Ó dÓqÓ„Ó‹Ó.Ó;ÌÓ7ÔC@Ô!„Ô'¦ÔÎÔqéÔ [ÕgÕ…Õ ›Õ¨Õ ­Õ»ÕÁÕÐÕ éÕ÷ÕÖÖ0Ö -NÖYÖiÖ -yÖ„Ö‹Ö”Ö¨ÖÁÖÒÖåÖíÖ¨öÖŸ×¨× ®×¼×Ú× õ×Ø +Ø5ØIØ^Ø -~Ø*‰Ø!´Ø)ÖØ*Ù)+Ù'UÙ }Ù‡ÙÙ°ÙÆÙ#ÜÙ,Ú-Ú"CÚfÚÚ™Ú Ú³Ú ÏÚÛÚêÚÛ Û"Û2ÛAÛJÛPÛWÛmÛrÛxÛÛ(‰Û#²Û ÖÛâÛóÛÜÜ-Ü >Ü_Ü}Ü Ü™Ü ¡Ü­Ü¼Ü ÄÜ ÐÜ ÚÜæÜîÜÝÝ2Ý9Ý @Ý -MÝXÝ_ÝoÝ xÝ…Ý‹Ý ¤Ý°Ý¿ÝÎÝÝÝîÝýÝÞ+ÞAÞ#VÞzÞ•ÞšÞ¯ÞÂÞÙÞîÞ÷Þß ß )ß7ßQßaß7xß5°ß#æß -à'à@à`à,à ¬à¹à -Íà)Øàá -áá)áFádá‚á˜á´áDÎáGâ[â!aâƒâ ™â¥â¼â!Úâüâ ãã*ã 0ã<ãQã hãuã„ã“ã£ã·ãËãããôãä+ä(2ä[äwä äœä¥ä¹äÍäàäùä"å1å@åSånå~å -…åå—åœå å ©å¸µånææ ¥æ ±æ¾æÎæÓæ -âæíæ ç ç!ç2çDç‰]çëçç -Óè‹Þèjéoéwréêéêê%ê6êLê']ê(…ê ®ê -»ê ÆêÐêßê æêóêùêëëë+ë3ëDëHëbë ë -‹ë–ëë¥ëµëÄëÕëÛëeäë JìTìdìlìCuì#¹ìZÝì8í>íNí -Uí`ífíoíctí9Øíî î %î /î9î Pî]î|îŽî©î ¸îÄî Éî Óî áî îîüîï%ï5ïIïRïYïsï {ï…ï•ï¯ï!Âïäïþï ð -ðð0ð AðMðcðtð!}ð ŸðÀð#Õð&ùð- ñ1Nñ,€ñ-­ñ Ûñüñòò /ò9òTò]òcòsòòò¥òµòÉòåò÷ò$ó++ó"Wó zó›ó°ó ¸óÅóÛóòóWûóSô Xô%eô‹ô’ô—ô ¨ôµôÌô ÔôÞôðôõõ,õFõVõoõwõ€õ‰õ¢õ´õ½õÑõêõïõôõ öö &ö0öCöUöeö…ö”ö«ö ÈöÖößöåöéöîö' ÷3÷I÷ c÷p÷÷…÷Ž÷Ÿ÷¯÷¿÷Ï÷Þ÷ð÷% ø$2øWø`øfø uø‚ø•ø ©ø ³ø ÀøÌø ßø0ìøù ,ù!Mùoùù“ù§ù®ù¿ùÐù Öùäù öùúú úž-úÌú ßú éú óúýúû0ûJûjû†ûžû §û ±û ½û Éû^Õû04ü6eüœü ü ²ü¼üÔü'íü ýý %ý2ý DýQý Zýfý -lýwýˆýý£ýªý»ýÂý"Ñý*ôýþ3þ :þFþ LþYþbþ -hþsþzþ -Žþ™þ -®þ¹þ Øþ æþôþ -ÿÿÿ(ÿ0ÿEÿ Tÿ"uÿ=˜ÿÖÿÞÿ æÿðÿøÿ ' >HQ Z{„Ÿº ÃÐ -Øã ù  -"!-Ofmu…­ÌÛò C7:{'¶*Þ 06 =*I7t ¬F¸ ÿ +=Um7|´Ëâø1EL -fq¬¾Ó2ê '9HZk}†˜«CÇ  ,Me kyŠš° ÍÛì ò ü  6 BNa9u ¯Ðæ G ] r ‚ œ ¢  ³ Á Ò â   - - -% -+ -< - B -N -a - r -~ -˜ -© -À - Ó -ß -ò - # > ^  u ‚ ” ¥ ¶ Ð ä   9 =P 3Ž S P  g q ‚ “  « · Æ Û î  #8Q#iâª2QÀ-H@5‰ˆ¿/HCxS¼ãô=û89ÚrMT[cl}–³ -ÄÏåù (<,X…›°ÁÔðõû -!, 2@F MW8`Œ™ &0(9(b‹"ª%Íó"%5[kr†  œª ºÈØëñ ( -- 8 ES-X5†-¼Nê9nVXÅ 5A<FÖƒ5Z 5 &Æ /í 1!-O!}!˜!Ÿ!¦! ¼!É!Ï! Þ!ê!û! """"(" 9"G"X"h" -"Š" ™" ¦"´" º"HÄ" # #(#:# ?#M#f# -n# y#F†#Í#å#ú#$ $($/$B7$"z$ $T©$Zþ$'Y%<%^¾%e&Tƒ&vØ'|O(~Ì(uK)ŽÁ)~P*~Ï*€N+€Ï+‚P,ZÓ,Œ.-»-Á-Ç-Î-2â-.•.œ.1¤.Ö.ò. ú. / / -/ -(/3/ D/Q/ h/ t/ -‚//“/–/ ´/ -Õ/à/ã/ô/0030 -60 -A0L0T0Z0 b0n0q0€0 ‡0‘0 ”0¡0±0Ç0 à0 -ì0 -÷0 1 111!1'1-1@11r1 …1’1¦1«1 °1º1Ë1!â1 2 %2 /292=2E2J2O2V2 ]2 g2q2w2}21Œ2£Âd˶âSò¯5Ð4š$ñÊQpyõFêŒgó¸áóÖ™9BB9Ͳ¾\sº–Äí¸Q(ñ1í¤-bõK8wlg•-ŠzXZËŸ«6‰E½>÷é}ÝŠ=ÚÉ?Ç"Sà%!âæÃM%‡)Ó‡ÿO7"-éIjD -DÖcidx…Qs*¢Þu!çØä.Ï–u]Œ5F¸Ÿ±~P`ÒA.©™Ò´]„5ζɀUßÓ;«ÕøüÕ.t–Æerö¨Gn!·'¯J~ÜcxÝïü…@Fe@µV¤½3BéB9·uËêa1ð ÐL)M>³.Ø=NÎI{Ã2Å0#— {ÏÄë|4hFµ¿º?q]Á@ EÛJ:%œ©Þ}àcˆ[”®Ú Æj,Õ/Ðùa‹^Xå™5áûwÙSΧ‘вCT~Op¼Ÿ[—HÉCø2\,#÷Ö< ¬ÕB$ènfpVý—Ô­¥:¶Ô¿&©+RâÇ\ä³Å蹌WH ¢$ÁÁ“ê+‚I"[‚6^œL„xhvkœPÌ(ïˆ*/6éyúÑ1AÿŸ+€ïºå= - -,­‹&¡˜¾IN†î‹P•ÚMù¤Ìò‘;ž±! ¥,–<­:>mMG盦‘ÒÀ‰së`z*áO¨ÜÎ_û ÇCÙ#wÈŠ/Y«tÝo?‚ð9¾ - LüdE(žìcäTžJUªv‡†™å×KÔ®|µ°°|Ê‚®C -k=ã˜ÛÄîÂiÊ’úeÌÁèXYѪ´n ß¾¯Iái~fŽl_°#þ2):hñî¢GŽ4Å”þv7“ &EE'ã-ÒšY¶Å0þ²V DµRöƒ< ¬Gõ9/Ýí5Œªíàœ†ÙFîlü}óȨ« —&èÑ2¦×u›ÀÛ1Ü%'ðYù3¤rxZSnz©âˆˆ7´äšš<¹L½ç¬m“æÖ•Í°aK3’Í· !f†tØRT±6ßZlyO’r 0Wj]V8ô+KAÚ‹múWË ¦ÿã˜Ã>;ãg¥æCù‘;$#;^ôLUöh/v %ø¼r¡H‰7m»0{¬¨ÛðûÊXøçÆ2g„½b}¸›È ±[à÷jžD3zß,'»(0òªõ¦´æ)€{qJ²-ÏêA‰Šƒ"=?6>ÙŽÆp×À¡¢›`8”oàñ3|Øë³®wƒº Ât4ó“d…(R·q»Ì À§£4P×òû¯H" ?$„*a7¡þ£³…ìJìb*o)ôU _qoåb&.­syÓÄN€k\fDT»ëÞÿýÜGk¼@¿ìý¼ e’Â@ÈN8<KÔú+÷Ž_ïÇÍ¥:˜i”Z• 'QHÞ£^§ÑÉ1ƒW¹ ÓÏ¿‡ýô¹ö`A8 § -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-shm Do not use shared memory between GIMP and plugins. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -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:AirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAllow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAsk for confirmation before closing an image without saving.Attach ParasiteAttach 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 SelectionBrightness-ContrastBrush 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 create folder '%s': %sCannot create previewCannot crop because the current selection 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 delete this anchor.Click to make this node angular.Click to open up the path.Click to update preview -%s Click to force update even if preview is up-to-dateClick: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize the ImageColorize the imageColormapColumns:Con_trast:Configure GridConfigure Image GridConfirm Image SizeConnect StrokesConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueConvertConvert 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 delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New 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 TypeCurvesCustomCutCut 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 imageDesaturateDescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDocument HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag: moveDraw in inkDrawable proceduresDrop New LayerDrop New PathDuplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeErase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sError writing to '%s': %sError writing to temporary file for '%s': %s -No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFeather ChannelFeather SelectionFile OperationsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with FG ColorFill 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 selectionsFoldersFont FoldersFont UIFont:FontsFonts MenuForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP 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 SelectionGuideGuide 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: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 maskImagesImages 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-insInkInput DevicesInput LevelsInsert AnchorInstant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid 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 URIInvertInvert ChannelInvert SelectionJustify:Keyboard ShortcutsLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer 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.LevelsLine _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 LayersMessage 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 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 patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileOffsetOffset 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: - -%sOptions: -Origin X:Original Width:Output LevelsOverlayPDB calling error for procedure '%s': -Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundPack my box with -five dozen liquor jugs.PaintPaint 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...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPolygonalPortraitPosition: %0.6fPosterizePosterize (Reduce Number of Colors)PreferencesPressure:PreviewPreview is out of datePreviewsProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuickMaskRGBRGB (%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"Rect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRegisteredRemember 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 PathRender 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 ImageReverting to '%s' failed: - -%sRight Endpoint ColorRotateRotate ChannelRotate LayerRotate PathRotate Text LayerRotate the layer or selectionRotating...Rotation InformationRoundSat.:SaturationSaveSave 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' -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 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 -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 VisibleSet Layer Boundary SizeSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderSizeSize:SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Specifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsState:Static ColorStatic GrayStd Dev:Stroke ChannelStroke PathStroke SelectionSubtractSubtract from the current selectionTemplatesTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The foreground color of the grid.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 vertical image resolution.Theme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to stroke toThere should be a file called '%s'. Please check your installation.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store tool options.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Tool proceduresTransformationTransforming...TransparencyTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.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, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.WhiteWidthWidth:Window PositionsXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom out[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_Y_Y:colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Cvalue for token %s is not a valid UTF-8 stringProject-Id-Version: Gimp HEAD -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2003-11-04 09:00+0800 -Last-Translator: MIMOS Open Source Development Group -Language-Team: Projek Gabai -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Opsyen tak sah "%s" - -Penggunaan: %s [opsyen ... ] [fail ... ] - - --debug-handlers Bolehkan pengendali isyarat menyahpepijat tak mati. - --display Gunakan paparan X yang ditandakan. - --dump-gimprc Outputkan fail gimprc dengan seting piawai. - --no-shm Jangan gunakan memori kongsi GIMP dan plugin. - --system-gimprc Gunakan fail sistem ganti gimprc. - --verbose Tunjukkan mesej pemula. - -b, --batch Proses arahan dalam mod kelompok. - -c, --console-messages Paparkan amaran pada konsol bukan kotak dialog. - -d, --no-data Jangan muatkan berus, kecerunan, pelet, corak. - -f, --no-fonts Jangan muatkan sebarang fon. - -g, --gimprc Gunakan fail ganti gimprc. - -h, --help Keluarkan output bagi bantuan ini. - -i, --no-interface Jalankan tanpa antara muka pengguna. - -s, --no-splash Jangan tunjukkan tetingkap pemula. - -v, --version Keluarkan output maklumat versi. -%d Lapisan%d lapisan%d x %d piksel%g x %g %s%s Salinan SaluranSaluran %s ke PemilihanMesej %ssalinan %s %s topeng%s%sKlik: tambahkan pemilihan%s%sSeret: alihkan & mampatkan(%0.3f, %0.3f, %0.3f)(Tiada)(Tetingkap konsol ini akan ditutup dalam masa sepuluh saat) -(Penimbal Tanpa nama)(Templat Tanpa nama)(rentetan UTF-8 tak sah)(tiada)1 Lapisan1 lapisan<%s><>Bagi pelaksanaan optimum GIMP, beberapa seting mungkin perlu diselaraskan.Fail tip GIMP tidak dapat dihuraikan dengan betul!Fail GIMP tip anda nampaknya hilang!Tentang GIMPPenapis AktifTambahkan Saluran AlfaTambah PenambatTambahkan SaluranTambahkan PanduanTambahkan Panduan MengufukTambahkan LapisanTambahkan Topeng LapisanTambahkan LaluanTambah TandaanTambhkan Lapisan TeksTambahkan Panduan MenegakTambahkan Topeng ke LapisanTambahkan teks ke imejTambahkan warna semasa ke sejarah warnaTambahkan penapis yang dipilih ke senarai penapis aktifTambahkan ke pemilihan semasaMenambahkan tema '%s' (%s) -TambahanSelaraskan Kecerahan dan KontrasSelaraskan Imbangan WarnaSelaraskan Lengkung WarnaSelaraskan Aras WarnaSelaraskan kecerahan dan kontrasSelaraskan imbangan warnaSelaraskan lengkung warnaSelaraskan aras warnaSelaraskan warna dan kepekatanSelaraskan aras secara automatikPenyelarasanMempengaruhi:PenyemburPenyembur dengan tekanan berubah-ubahDijajarkanPenjajaranSemua SaluranBolehkan kawasan lut sinar sepenuhnya diisiBenarkan kawasan lut sinar dipilih sepenuhnyaAlfa/Alfa ke PemilihanAlfa:Tambat Pemilihan ApungSudut:AntialiasRupa bentukgunakan Topeng LapisanGunakan Nilai AmbangMeminta pengesahan sebelum menutup imej tanpa menyimpanLampirkan ParasitLampirkan Parasit ke ItemPengarang:AutoAutoloadPenapis yang AdaJenis yang Ada:Latar belakangWarna latar belakang disetkan ke:Latar belakang: %d, %d, %dKawasan berisi asas pada semua lapisan yang dapat dilihatPemilihan asas pada semua lapisan yang dapat dilihatBelakangSerongHitam:CampuranCampur:Campur: Tak sah bagi imej berindeks.Mencampur...BiruBiru:KaburKabur atau JelaskanSaluran SempadanPemilihan SempadanKecerahan-KontrasEditor BerusFolder BerusBerus UIBerus:BerusMenu BerusIsian BaldiPenimbalMenu PenimbalLeburButtCMYKL_ajur:Tentukur Resolusi MonitorTidak dapat buat asal %sBatalTidak dapat menambahkan topeng lapisan bagi dimensi yang berlainan daripada lapisan yang ditentukan. Tidak dapat menambahkan topeng lapisan ke lapisan tanpa saluran alfaTidak dapat menambahkan topeng lapisan ke lapisan yang bukan sebahagian daripada imej.Tidak dapat mewujudkan folder '%s': %sTidak boleh mewujudkan pralihatTidak dapat memotong kerana pemilihan semasa kosongTidak boleh menaikkan lapisan tanpa alfa.Tidak boleh simpan. Tiada yang dipilihTidak boleh menanda saluran kosongTidak boleh menanda laluan kosong.Saiz KanvasPusat X:Di tengahUbah Warna Latar belakangUbah Warna Latar depanUbah Resolusi ImejUbah Unit ImejUbah perspektif lapisan atau pemilihanSaluranAtribut SaluranNama Saluran:Saluran tidak boleh diturunkan lagiSaluran tidak boleh dinaikkan lebih tinggi.Saluran ke PemilihanSaluran:SaluranMenu SaluranPilih Gaya TandaanKosongKosongkan SaluranKlik "Teruskan" untuk menerima seting di atas.Klik "Teruskan" untuk mewujudkan folder peribadi GIMP anda.Klik "Teruskan" untuk memasuki pemasangan pengguna GIMPKlik untuk sambungkan penambat ini dengan titik akhir yang dipilih.Klik untuk hapuskan penambat ini.Klik untuk membuatkan nod ini bersudut.Klik untuk membuka laluan.Klik untuk mengemas kini pralihat -%s Klik untuk mengemas kini secara paksa walaupun pralihat adalah yang terkiniKlik: pilihKlik: pilih Seret: alihkanKlip ke lapisan bawahKlip ke imejKlonTutup Tab iniWarnaImbangan WarnaWarnakan Penapis PaparanPemilih WarnaMaklumat Pemilih WarnaWarna:_Jenis Mewarna bagi Segmen_Jenis Mewarna bagi PemilihanMewarnakanMewarnakan ImejMewarnakan imejPeta warnaLajur:Kon_trasKonfigurasikan GridKonfigurasikan Grid ImejSahkan Saiz ImejSambungkan TandaanPemalarKekanganKursor bersandar konteks memang hebat. Kursor ini dibolehkan secara piawai. Walau bagaimanapun, kursor ini memerlukan overhed yang mungkin anda ingin lakukan tanpanya.TeruskanTukarTukarkan TepiTukarkan Imej ke Skala kelabuTukarkan Imej ke BerindeksTukarkan Imej ke Warna BerindeksTukarkan Imej ke RGBLingkaranJenis Lingkaran %sSalin yang DinamakanMenyalin fail '%s' dari '%s'...Hak cipta:Segmen rosak %d dalam fail kecerunan '%s'.Tidak dapat menghapuskan '%s': %sTidak dapat membuka '%s' untuk mebaca: %sTidak dapat membuka '%s' untuk menulis: %sTidak dapat membaca %d bait dari '%s': %sTidak dapat mencari dalam fail XCF: %sBilangan:Wujudkan Templat BaruWujudkan Imej BaruWujudkan Lapisan BaruWujudkan Templat BaruWujudkan paparan baru bagi imej iniWujudkan imej baru dari templat yang dipilihWujudkan templat baruWujudkan dan edit imej atau gambarWujudkan dan edit laluanMewujudkan folder '%s'...PotongPotong & Ubah saizPotong & Ubah saiz MaklumatPotong ImejPotong LapisanPotong & Ubah saiz imejPotong: Rerambut silang sahajaKubik (Terbaik)Jenis LengkungLengkungBiasaPotongPotong yang DinamakanCyanCyan:SengkangTarikh:Rupa bentuk Piawai dalam Mod Skrin PenuhRupa bentuk Piawai dalam Mod NormalGrid PiawaiGrid Imej PiawaiHapuskan PenambatHapuskan Topeng LapisanHapuskan SegmenHapuskan TemplatHapuskan opsyen yang disimpan...Hapuskan templat yang dipilihHapuskan imej iniNyahpekatHuraianReka bentukStatus PerantiPerantiMenu DialogPerbezaanWarna TerusPaparanPaparkan Pemanduan arahPaparkan prosedurMemaparkan [%0.6f, %0.6f]HilangJarak:Jarak: %0.6fPenditeranBahagiSejarah DokumenDokumentMenu DokumenTepisTandaan Tepis atau LeburTepis/LeburSeret PenambatSeret PenambatSeret LengkungSeret PengendaliSeret: alihkanLukis menggunakan dakwatProsedur boleh lukisGugurkan Lapisan BaruGugurkan Laluan BaruBuat duplikasi templat yang dipilihEEK: tidak boleh buat asalEditEdit Atribut SaluranEdit Warna SaluranEdit Entri Pelet WarnaEdit Atribut LapisanEdit ModEdit Warna PeletEdit Atribut LaluanEdit TemplatEdit prosedurEdit templat yang dipilihPemilihan ElipsKosongkan Lapisan TeksKosongkan nama pemboleh ubah dalam fail persekitaran %sBolehkan untuk memaparkan tip mudah GIMP pada pemula.Bolehkan untuk memaparkan tip alat.Terlalu besarMasukkan nama bagi opsyen yang disimpanMasukkan nama bagi penimbal iniMasukkan nama bagi templat iniMasukkan nama baru bagi opsyen yang disimpanPersekitaranFolder PersekitaranMenyamakanPadam ke latar belakang atau kelutsinaranPemadamRalat KonsolMenu Ralat KonsolRalat menyimpan fail XCF: %sRalat semasa membaca '%s': %sRalat semasa menulis '%s': %sRalat menulis XCF: %sRalat menulis fail '%s': -%sRalat menulis ke '%s': %sRalat menulis ke fail sementara bagi '%s': %s -Tiada fail diwujudkan.Ralat menulis ke fail sementara bagi '%s': %s -Fail asal tidak diganggu.RalatTambahkan seperti yang diperlukanEksport Laluan ke SVGPendedahan:Peranti Input LanjutanFG ke BG (warna ikut jam HSV)FG ke BG (pembilang ikut jam HSV)FG ke BG (HSV)FG ke BG (RGB)FG ke Lut sinarFG/BGWarna FG/BGSaluran Bulu PelepahPemilihan Bulu PelepahOperasi FailIsikan SaluranIsi Kelegapan:Jenis Isian %sIsi dengan Warna BGIsi dengan Warna FGIsi dengan KelutsinaranIsi dengan PutihIsi dengan kecerunan warnaIsi dengan warna atau corakBerisiAkhir, Lapisan yang Dicantum seharusnya:Mencari Kawasan BerhampiranMencari Warna yang SamaRatakan ImejTerbalikTerbalikkan SaluranTerbalikkan LapisanTerbalikkan LaluanTerbalikkan Lapisan TeksJenis Pembalikan %sTerbalikkan lapisan atau pemilihanTerbalikkan...Apungkan PemilihanPemilihan Apung ke LapisanPemilihan apungFolderFolder FonFon UIFon:fonMenu FonLatar depanWarna latar depan & latar belakang. Bentuk segi empat sama hitam dan putih mengesetkan semula warna. Anak panah menyilihkan warna. Klik dua kali untuk membuka dialog pemilihan warna.Warna latar depan disetkan ke:Latar depan: %d, %d, %dBebas PilihTanpa pegangPemilihan KaburGIMPSambungan GIMPMesej GIMPMenalakan Pelaksanaan GIMPGIMP Plug-InPemula GIMPEditor Teks GIMPTip Hari Ini GIMPPemasangan Pengguna GIMPGIMP tidak dapat memberikan awalan bagi antara muka pengguna grafik. -Pastikan persediaan yang betul bagi persekitaran paparan anda wujud.GIMP tidak dipasang dengan betul bagi pengguna semasa. -Pemasangan untuk pengguna dilangkau kerana bendera '--tiada-antara muka' digunakan. -Untuk melaksanakan pemasangan untuk pengguna, jalankan GIMP tanpa bendera '--tiada-antara muka'.Versi GIMPGIMP akan memberikan amaran kepada pengguna jika cuba mewujudkan imej yang menggunakan banyak memori daripada saiz yang ditetapkan di sini.GamaAmPada amnya hanya dibenarkan paparan 8-bit, ini mengesetkan bilangan minimum warna sistem yang diperuntukkan untuk GIMP.Dapatkan Resolusi MonitorLuar biasa besarProsedur GimprcEditor KecerunanMenu Editor KecerunanFolder KecerunanWarna Titik akhir Kiri Segmen KecerunanWarna Titik akhir Kanan Segmen KecerunanKecerunan UIKecerunan:KecerunanMenu KecerunanKelabuSkala kelabuHijauHijau:GridTambahkan SaluranTambahkan PemilihanPanduanProsedur panduanHSVHSV (%0.3f, %0.3f, %0.3f)Mengendalikan kedudukan: %0.6fKekerasanKekerasan:TinggiTinggi:Pelayar BantuanSistem BantuanProsedur bantuanHeks:TonjolanMemberikan petunjuk untuk mengubah garis luar fon bagi menghasilkan bitmap yang tepat pada saiz kecilHistogramSkala HistogramSejarahMengufukOfset mengufuk bagi garis grid pertama; ini mungkin nombor negatif.Langkauan mengufuk bagi garis grid.Berapa banyakkah nama fail imej yang dibuka baru-baru ini untuk terus menyimpan menu Fail.WarnaKepekatan WarnaWarna:Amat besarI_mejS_elang:IkonJika ada, petunjuk dari fon digunakan tetapi anda mungkin lebih suka menggunakan penunjuk automatikNama pemboleh ubah tak sah dalam fail persekitaran %s: %sImejMaklumat ImejMenu ImejSaiz ImejFormat Bar status ImejTemplat ImejJudul Imej & Format Bar statusFormal Judul ImejRupa Bentuk Tetingkap ImejTetingkap ImejTopeng imejImejMenu ImejImport OpsyenImport PeletImport LaluanImport Laluan dari SVGImport Pelet BaruLaluan DiimportSong_sangkan TopengTambahanInden:Pengindenan garis pertamaIndeks:BerindeksWarna BerindeksPenukaran Warna BerindeksTetingkap MaklumatBerikan awalan Topeng Lapisan ke:Memberikan awalan Plug-inDakwatPeranti InputAras InputSisipkan PenambatKemas kini cepatAntara mukaProsedur dalaman GIMPProsedur DalamanSisipan:Bersilang dengan pemilihan semasaPersilangan (haris halus silang)Persilangan (bintik)Data UTF-8 tak sah dalam fail '%s'.Rentetan UTF-8 tak sah dalam fail XCF.Rentetan UTF-8 tak sah dalam fail berus '%s'.Rentetan UTF-8 tak sah dalam fail kecerunan '%s'.Rentetan UTF-8 tak sah dalam fail pelet '%s'Rentetan UTF-8 tak sah dalam fail corak '%s'.Jujukan aksara tak sah dalam URISongsangSongsangkan SaluranSongsangkan PemilihanLaraskan:Jalan Pintas Papan KekunciLandskapBesarBesar (256x256)Pralihat yang Lebih BesarRalat Terakhir:LapisanAtribut LapisanJenis Isian LapisanTopeng Lapisan ke PemilihanPemilihan Lapisan_Nama Lapisan:Lapisan tidak boleh diturunkan lagi.Lapisan tidak boleh dinaikkan lebih tinggi.Lapisan telah pun berada di bawah.Lapisan telahpun berada di atas.Lapisan ke Saiz ImejLapisanMenu LapisanOpsyen Cantum LapisanWarna Titik akhir KiriPanjang:Biarkan GIMP cuba menyimpan semula sesi terakhir anda yang disimpan pada setiap pemula.Aras_Gaya Garis:Gaya garis yang digunakan untuk grid.LinearMuatMuatkan LengkungMuatkan ArasMemuatkan pralihat ...Lokasi:LogaritmaMencari fail dataTurunkan SaluranTurunkan Saluran ke BawahTurunkan LapisanTurunkan Lapisan Ke bawahTurunkan LaluanTurunkan Laluan ke BawahMagentaMagenta:BesarkanUruskan Modul Boleh muatKelegapan Topeng:Matriks:Kedalaman Maksimum:Perbezaan maksimum warnaMin:UkurUkur Jarak dan SudutUkur jarak dan sudutMedian:SederhanaCantumkan Ke bawahCantumkan LapisanCantumkan PeletCantumkan Lapisan Dapat DilihatProsedur mesejMesej diulang %d kali.Mesej diulang sekali sahaja.Ton sederhanaPelbagaiMiterModMod:Ubah suai Warna yang DipilihUbah suai Aras Warna Julat yang DipilihUbah suai semua warnaUbah suai langkauan garisFolder ModulPengurus ModulModulAlihkan Alihkan PenambatAlihkan SaluranAlihkan PanduanAlihkan LapisanAlihkan LaluanAlihkan PemilihanAlihkan lapisan & pemilihanAlihkan penapis yang dipilih ke bawahAlihkan penapis yang dipilih ke atasAlihkan:DarabPemanduan arahSaluran BaruWarna Saluran BaruOpsyen Saluran BaruImej BaruLapisan BaruLaluan BaruOpsyen Laluan BaruTemplat BaruBerus tidak ada untuk digunakan dengan alat ini.Tidak ada lagiTiada laluan dijumpai dalam '%s'Corak tidak ada bagi operasi ini.Tiada pemilihan untuk ditandaTiadaTiada (Paling laju)NormalNormal (128x128)Bukan fail biasaOfsetSaluran OfsetOfset Boleh lukisLapisan OfsetTopeng Lapisan OfsetOfset:Dalam cakeraPada mesin berbilang pemproses, jika GIMP dikompil dengan --bolehkan-mp, ini mengesetkan berapa banyakkah pemproses GIMP seharusnya digunakan secara serentak.Hanya dalam memoriKelegapanKelegapanBuka ImejBuka Fail Teks (UTF-8)Buka dialog pemilihan berusBuka dialog pemilihan fonBuka dialog pemilihan kecerunanBuka dialog pemilihan corakGagal membuka '%s': - -%sOpsyen: -X Asalan:Lebar Asal:Aras OutputTindih atasRalat panggilan PDB untuk prosedur '%s': -Jenis argumen #%d tidak padan (dijangka %s, dapat %s)Ralat panggilan PDB: -procedure %s tidak dijumpaiIsikan kotak saya dengan -lima dozen jag minuman keras.CatProsedur Alat CatAlat Cat:Cat tandaan berus kaburCat piksel bertepi kerasCat menggunakan Corak atau Kawasan ImejBerus catPeletEditor PeletMenu Editor PeletFolder PeletPelet UI_Nama PeletPeletMenu PeletProsedur ParasitParasitMenghuraikan '%s' -TampalLapisan DitampalLaluanAtribut LaluanLaluan tidak boleh diturunkan lagiLaluan tidak boleh dinaikkan lebih tinggi.Laluan ke PemilihanLaluanMenu LaluanCorakFolder CorakCorak UICorakMenu CorakPensilPeratus lebar berusPersentil:Folder Peribadi GIMPPerspektifMaklumat Penjelmaan PerspektifPerspektif...Pilih Mod %sPilih warna dari imejPikselPiksel:Sila tunggu...Plug-InPersekitaran Plug-InFolder Plug-InPlug-In tidak dapat membuka imejPlug-In tidak dapat menyimpan imejPlug-In mengembalikan SUCCESS tetapi tidak mengembalikan imejPlug-InPlug-inPoligonalPortretKedudukan: %0.6fMemposterkanMemposterkan (Kurangkan Bilangan Warna)KeutamaanTekanan:PralihatPralihat sudah ketinggalan zamanPralihatPangkalan data BerprosedurPangkalan data berprosedurKemajuanPseudo WarnaTujuan:PertanyaanBertanya Plug-in baruQuickMaskRGBRGB (%d, %d, %d)Warna RGBRGB-kosongRGBA (%0.3f, %0.3f, %0.3f, %0.3f)T_unjukkan semula "%s"JejariJejari:Naikkan SaluranNaikkan Saluran ke AtasNaikkan LapisanNaikkan Lapisan hingga Ke atasNaikkan LaluanNaikkan Laluan ke AtasNaikkan paparan imej iniKadarKadar:Tunjukkan semula yang Terakhir_Letakkan semula Di tengah-tengah Titik Pertengahan dalam Pemilihan_Letakkan Semula Di tengah-tengah Titik Pertengahan SegmenAgihkan semula _Pengendali dalam SegmenAgihkan semula _Pengendali dalam PemilihanUl_ang "%s"Pemilihan Segi empat tepatMerahMerah:Buat semulaKecilkan imej ke bilangan warna yang tetapKecilkan imej kepada dua warna menggunakan nilai ambangDidaftarkanIngat tentang alat, corak, warna dan berus semasa sepanjang sesi GIMP.Imej jauhAlihkan SaluranKeluarkan PanduanKeluarkan LapisanAlihkan Parasit ke ImejAlihkan Parasit ke ItemAlihkan LaluanAlihkan penapis yang dipilih dari senarai penapis aktifNamakan semula SaluranNamakan semula LapisanNamakan semula LaluanRender GoresanSusun semula SaluranSusun semula LapisanUlang yang TerakhirUlang:Gantikan pemilihan semasaUlang samaUlang sama Segmen KecerunanUlang sama Pemilihan KecerunanUlang sama SegmenUlang sama PemilihanSet Semula Opsyen AlatSetkan semula penapis yang dipilih ke nilai piawaiUbah saizUbah saiz SaluranUbah saiz ImejUbah saiz LapisanUbah saiz LaluanMensaiz semula...ResolusiPenggunaan SumberKonfigurasi SumberSimpan semua opsyen dari...Simpan semula kekunci pintas yang disimpan pada setiap pemula GIMP.SongsangKembaliKembalikan ImejMengembalikan ke '%s' gagal: - -%sWarna Titik akhir KananPutarPutar SaluranPutarkan LapisanPutarkan LaluanPutarkan Lapisan TeksPutar lapisan atau pemilihanMemutarkan...Maklumat PutaranBulatKetepuan:KepekatanSimpanSimpan LengkungSimpan Log Ralat ke FailSimpan ImejSimpan ArasSimpan Opsyen AlatSimpan Salinan ImejSimpan kekunci pintas yang diubah apabila GIMP ditamatkanSimpan seting lengkung dari failSimpan status perantiSimpan seting aras ke failSimpan opsyen ke...Simpan kedudukan dan saiz dialog utama apabila GIMP keluar dari sistem.Opsyen Yang DisimpanMenyimpan '%s' -Menyimpan '%s' gagal: - -%sSkalaSkalakan SaluranSkalakan ImejSkalakan LapisanSkalakan LaluanSkalakan lapisan atau pemilihanMenskalakanMenskalakan...GuntingSkrinFolder Script-FuSkripPilih SemuaPilih Folder BerusPilih Ikut WarnaPilih WarnaPilih Folder PersekitaranPilih Folder FonPilih Folder KecerunanPilih Folder ModulPilih TiadaPilih Folder PeletPilih Folder CorakPilih Folder Plug-InPilih Warna Utama untuk Diubah suaiPilih Julat untuk Mengubah suaiPilih Folder Script-FuPilih SumberPilih Folder TemaPilih Nisbah ZumPilih ikut WarnaPilih kawasan berhampiranPilih kawasan elipsPilih kawasan lukisan tanganPilih kawasan segi empat tepatPilih kawasan ikut warnaPilih bentuk dari imejPilih bilangan kali -untuk mengulang sama segmen yang dipilih.Pilih bilangan kali -untuk mengulang sama pemilihan.Pilih bilangan bahagian secara seragam -yang akan memisahkan segmen dalam pemilihan.Pilih bilangan bahagian secara seragam -yang akan memisahkan segmen yang dipilih.PemilihanEditor PemilihanTopeng PemilihanProsedur Alat PemilihanPemilihan: Pemilihan: ADDPemilihan: INTERSECTPemilihan: REPLACEPemilihan: SUBTRACTKepekaanSetkan Warna Pad KanvasSetkan Warna SaluranSetkan Kelegapan SaluranSetkan Saiz Kanvas ImejSetkan Item Eksklusif Dapat DilihatSetkan Saiz Sempadan LapisanSetkan had atas memori yang digunakan bagi setiap imej untuk memastikan operasi pada timbunan yang dibuat asal. Tanpa mengambil kira seting ini, sekurang-kurangnya banyak aras-buat asal yang dikonfigurasikan boleh dibuat asal.Setkan pelayar yang digunakan oleh sistem bantuan.Mengesetkan warna pad kanvas yang digunakan jika mod pad disetkan ke warna biasa.Setkan pelayar web luaran untuk digunakan. Ini boleh jadi laluan mutlak atau nama bagi fail boleh laksana untuk dicari dalam LALUAN pengguna. Jika arahan mengandungi '%s' ia akan digantikan dengan URL, jika tidak URL tersebut akan ditambah kepada arahan denagn satu ruang yang memisahkan kedua-duanya.Setkan aras sisipan yang digunakan untuk penskalaan dan penjelmaan lain.Setkan cara supaya kelutsinaran dipaparkan pada imej.Setkan bilangan minimum operasi yang boleh dibuat asal. Lebih banyak aras yang dibuka dapat digunakan sehingga had saiz-dibuka dipenuhi.Setkan mod kursor yang akan digunakan oleh GIMPSetkan saiz papan dam yang digunakan untuk memaparkan kelutsinaran.Setkan saiz pralihat pemanduan arah yang ada di penjuru kanan bawah tetingkap imej.Setkan lokasi fail silih. Gimp menggunakan jubin berasaskan skema peruntukan memori. Fail silih digunakan untuk menyilih jubin dengan cepat dan mudah ke cakera dan kembali semula ke dalamnya. Berhati-hati bahawa fail silih boleh menjadi sangat besar dengan mudah jika GIMP digunakan dengan imej yang besar. Keadaan mungkin juga menjadi sangat perlahan jika fail silih diwujudkan dalam direktori yang dilekapkan NFS. Oleh itu, disyorkan untuk menempatkan fail silih anda dalam "/tmp".Setkan direktori storan sementara. Fail akan muncul di sini semasa GIMP dijalankan. Kebanyakan fail akan hilang apabila GIMP keluar dari sistem, tetapi sesetengah fail mungkin kekal di situ, maka disyorkan agar direktori ini tidak dikongsi dengan pengguna lain.Setkan teks yang akan muncul dalam bar status tetingkap imej.Setkan teks yang akan muncul dalam judul tetingkap imej.Setkan sama ada GIMP perlu mewujudkan pralihat bagi lapisan dan saluran atau tidak. Pralihat dalam dialog lapisan dan saluran memang digalakkan tetapi cara ini akan memperlahankan pemprosesan semasa melukis imej besar.BayangBentukBentuk:JelaskanJelaskan SaluranJelaskan PemilihanRicihRicih lapisan atau pemilihanMericih MaklumatMericih...Tunjukkan B_ar statusTunjukkan Bar_tatalTunjukkan _PanduanTunjukkan Sempadan _LapisanTunjukkan _Bar menuTunjukkan penggunaan memoriTunjukkan tip apabila GIMP bermula lain kaliTunjukkan peratus zumTunjukkan nisbah zumKecilkan SaluranKecilkan PemilihanKecilkan dari sempadan imejSaizSaiz:KecilPralihat yang Lebih KecilLicinTepi licinComotComotkan imejPejalSumberLangkauanLangkau:Menentukan bagaimana kawasan di sekeliling imej dilukis.Kelajuan semut yang berjalan dalam garis luar pemilihan. Nilai ini dalam milisaat (masa yang kurang menunjukkan semut berjalan lebih cepat).Kelajuan:PisahkanPisahkan Segmen Kecerunan Secara SeragamPisahkan Segmen Kecerunan Secara SeragamPisahkan Segmen Secara SeragamPisahkan Segmen _Secara Seragam...Pisahkan Segmen di _Titik pertengahanPisahkan Segmen Secara SeragamPisahkan Segmen _Secara Seragam...Pisahkan Segmen di _Titik PertengahanSegi empat samaPiawaiMemulakan SambunganKeadaan:Warna StatikKelabu StatikSisihan Piawai:Gores SaluranTandakan LaluanTandakan PemilihanTolakTolak dari pemilihan semasaTemplatProsedur SementaraTeksWarna TeksLapisan TeksProsedur teksGIMPBerus aktif. -Klik untuk membuka Dialog Berus.Kecerunan aktif. -Klik untuk membuka Dialog Kecerunan.Berus aktif. -Klik untuk membuka Dialog Corak.Warna latar belakang grid; hanya digunakan dalam gaya garis sengkang berganda.Warna latar depan bagi grid.Cache jubin digunakan untuk memastikan GIMP tidak menghasilkan jubin antara memori dengan cakera. Mengesetkan nilai ini lebih tinggi akan menyebabkan GIMP menggunakan kurang ruang silih, tetapi juga akan menyebabkan GIMP menggunakan lebih banyak memori. Sebaliknya, saiz cache yang lebih kecil menyebabkan GIMP menggunakan lebih banyak ruang silih dan kurang memori.Unit yang digunakan untuk paparan koordinat apabila bukan dalam mod bintik-untuk-bintik.Resolusi imej menegak.Folder TemaTemaTidak cukup lapisan dapat dilihat untuk dicantumkan ke bawahSentiasa ada keseimbangan antara penggunaan memori dan kelajuan. Dalam kebanyakan keadaan, GIMP memilih kelajuan berbanding dengan memori. Walau bagaimanapun, jika memori ialah isu utama, cuba bolehkan seting ini.Tidak ada lapisan atau saluran aktif untuk ditandakanFail '%s' seharusnya ada. Sila semak pemasangan anda.Mencari folder ini untuk templat imej.Mencari folder ini untuk tema dipasang penggunaFolder ini digunakan untuk menyimpan opsyen alat.Medan input teks ini terhad kepada %d aksara.Alat ini tidak ada opsyen.AmbangAmbangSaiz kecil %d bagi %dKecondongan:HalusJudul & StatusOpsyen AlatMenu Opsyen AlatToggle Alat %sMenu Kotak alatanAlatJelmaJelmakan SaluranJelmakan ArahJelmakan LapisanJelmakan LaluanJelmakan prosedur AlatPenjelmaanMenjelmakan...KelutsinaranWarna SebenarJenisJenis %sTidak dapat menambahkan topeng lapisan kerana lapisan telah mempunyainyaTidak ditentukanBuat asalBuat asal SejarahUnitTak diketahuiJenis fail tak diketahuiPunggahTanpa namaTak berjudulGunakan semua lapisan yang dapat dilihat apabila mengecilkan pemilihanLog Pemasangan PenggunaAntara muka PenggunaNilaiNilai:Versi %s dibawa kepada anda olehVersi:MenegakOfset menegak bagi garis grid pertama; ini mungkin nombor negatif.Langkauan menegak bagi garis grid.Pelayar WebApabila diaktifkan dialog akan mengikut imej yang anda sedang buat secara automatik.Apabila diaktifkan, semua alat cat akan menunjukkan pralihat bagi garis luar berus semasa.Apabila dibolehkan, menu boleh ditutup.Apabila diaktifkan, menekan F1 akan membuka pelayar bantuan.Apabila dibolehkan, GIMP tidak akan menyimpan imej jika ia tidak diubah sejak GIMP membukanya.Apabila dibolehkan, GIMP akan menggunakan tetingkap maklumat yang berbeza bagi setiap pandangan imej.Apabila dibolehkan, pelayan X akan ditanya tentang kedudukan semasa tetikus pada setiap pergerakan, bukan bergantung pada petunjuk kedudukan. Ini bermakna mengecaat dengan berus besar seharusnya lebih tepat, tetapi mungkin lebih perlahan. Sebaliknya, pada sesetengah pelayan X membolehkan opsyen ini menjadikan kerja mengecat lebih cepat.Apabila diaktifkan, grid dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Grid".Apabila diaktifkan, panduan dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Panduan".Apabila diaktifkan, tetingkap imej akan mengubah saiznya sendiri secara automatik, apabila mengezum imej ke dalam dan ke luar.Apabila dibolehkan, tetingkap imej akan mengubah saiznya sendiri secara automatik, apabila saiz fizikal imej berubah.Apabila diaktifkan, sempadan lapisan dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Sempadan Lapisan".Apabila diaktifkan, bar menu dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Bar menu".Apabila diaktifkan, pembaris dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Pembaris".Apabila diaktifkan, bar tatal dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Bar tatal".Apabila diaktifkan, pemilihan dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Pemilihan".Apabila diaktifkan, bar status dapat dilihat secara piawai. Ini juga boleh ditogolkan dengan arahan "Lihat->Tunjukkan Bar status".Apabila dibolehkan, ini akan memastikan setiap piksel imej dipetakan ke piksel pada skrin.Apabila dibolehkan, ini akan memastikan bahawa imej penuh dapat dilihat selepas fail dibuka, jika tidak ia akan dipaparkan dengan skala 1:1.PutihLebarLebar:Kedudukan TetingkapRalat XCF: versi fail XCF %d yang disokong ditemuiAmaran XCF: versi 0 daripada format fail XCF -tidak menyimpan peta warna berindeks dengan betul. -Menggantikan peta skala kelabu.KuningKuning:Anda boleh menggugurkan dialog boleh dok di sini.Zum dan Ubah saiz Peri lakuZum 1:1Zum SemuaZum Ke dalamZum Ke luarNisbah ZumNisbah ZumFaktor zum: %d:1Zum ke dalamZum ke dalam & ke luarZum ke luar[ Imej Asas ]_Pelicinan_Auto_BFungsi _Mencampur bagi SegmenFungsi _Mencampur bagi Pemilihan_Kecerahan_C_Hapuskan Segmen_Hapuskan Pemilihan_Terbalikkan Segmen_Terbalikkan Pemilihan_G_Kecerunan_Mengufuk:_Warna:_Ikon_Import_Kecerahan:_M_Secara Manual_Nama:_Pralihat_R_Buat semula_Buat semula %s_Ulang sama Segmen..._Ulang sama Pemilihan...-Kepekatan:_Pemilihan_Buat asal_Buat asal %s_Menegak:_Y_Y:warnasalindpimenjangkakan 'ya' atau 'tidak' bagi token boolean %s, dapat '%s'ralat huraian matiskala kelabuskala kelabu-kosonginciinciberindeksberindeks-kosongrentetan UTF-8 tak sahnilai tak sah '%ld' bagi token %snilai tak sah '%s' bagi token %smilimetermilimetern/aperatuspikapikapikselpikselpiksel/%apiksel/%stitiktitiktips-locale:msnilai bagi token %s bukan rentetan UTF-8 yang sah \ No newline at end of file diff -uraN gimp-2.2.8/po/nb.gmo gimp-2.2.9/po/nb.gmo --- gimp-2.2.8/po/nb.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.9/po/nb.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,484 +0,0 @@ -Þ•U ÄJs l•8Ç9Ç&OÇkvÇGâÇ9*ÈGdÈA¬ÈNîÈi=É<§ÉkäÉ@PÊ2‘Ê;ÄÊPËOQË2¡Ë9ÔË-Ì9<Ì;vÌ7²Ì êÌôÌ -ûÌ Í -Í -Í &Í2ÍBÍ -QÍ\Í_ÍoÍ -‡Í’͚͢;ÍØÍîÍ0õÍ&Î7ÎJÎSÎ[Î -rÎ}΄ΌΔΠ£Î ±Î ½Î -ËÎ -ÖÎ áÎ îÎúÎ -Ï Ï"Ï 'Ï 3ÏK@Ï…ŒÏ.Ð1AÐ!sЕЧЮнÐÄÐàÐïÐÑ -ÑÑ -/Ñ :ÑFÑ \Ñ -hÑsÑˆÑ ›Ñ¥Ñ´Ñ -½ÑÈÑ×ÑêÑÒÒ&Ò5Ò*KÒ6vÒ­ÒÀÒÝÒõÒþÒÓ:ÓOÓcÓwÓ–Ó«Ó¿Ó#ÓÓ÷ÓÔ --Ô8ÔIÔQÔcÔlÔŒÔ Ô ¨Ô ²Ô ¿ÔÉÔÙÔ1îÕ3 ÖTÖhÖnÖÖ‹ˆÖ -××9×O×i×p× × -Œ×—ר׺×Ê×AÛ×JØhØ<{Ø ¸Ø ÆØÔØäØýØÙ%Ù-Ù2Ù LÙXÙnÙي١ٳ٠ÄÙÒÙêÙ -óÙþÙÚ(Ú?Ú&UÚ$|Ú¡Ú¨Ú ®Ú ¸ÚÆÚÍÚæÚíÚóÚ Û"Û 8ÛDÛIÛOÛTÛ -dÛoÛ~ÛÛ£Û7·ÛïÛ õÛ ÜÜÜ Ü (Ü 5ÜAÜ IÜVÜ[Ü `ÜmmÜÛÜ àÜ îÜ üÜÝÝ ,Ý:ÝJÝ QÝC^Ý7¢Ý=ÚÝ@Þ6YÞdÞõÞß3)ß]ß<qß#®ß!Òßôßà +à7à Mà Wàaàjà‚à˜à°àÈàÚàìà á&áCá,Zá‡á¡á©á ¼áÊá êá â!â;âVâlââ–âŸâ ¨â ¶âÃâ×âÞâåâ ëâùâ ã ã(ã.>ã5mã5£ã7Ùã8ä)Jä,tä¡ä½äÕä2òä %åFåaåO}åAÍå%æ&5æ4\æ1‘æ#Ãæ çæõæ ç ç'ç?çPçVç_çnç~ç -ç˜ç ç ¦ç´ç Êç×çðçè0è Eè Qè^è eè oè |è‰è¤èÁè+Êèöè éé%é 5éCé LéVé -^é iésé$“é¸éËéÚéïé ê-êGêeêxêˆê"êÀêÖê åêóêë ëë ë¢ë«ë¼ë ÄëÑëìëì%ì :ì"Hì"kìŽì§ì°ì -Âì ÍìÛì -úì)í/í,Iíví!í#²í#Öí!úí%îBî.aîî —î£î´îÈîÛîîî#ï-(ïVï%lï’ï¨ï¾ïÙïîïð ðð -3ð ->ð -IðTðlðsð‚ð ‡ð •ð¢ð²ðÂðÕðäðóð úðñ -ñ&ñ--ñ[ñ bñoññ–ñ šñ¤ñ©ñ¯ñÀñÓñçñøñ òò.òEò Vòbò rò ~ò Œò™ò ò¦ò%¬ò!Òò ôòóó&,óSó góuó„ó—ó ©ó·óÆó Öóãó òóÿó ôô.ô =ôIôXôpô‹ô¨ôºôÉô -âô -íô-øô &õ2õ 9õGõOõ Wõdõ -lõ wõ„õ—õªõÃõËõÞõòõ öö-ö 6ö@ö PöZöaö:ö?ºö8úö 3÷?÷H÷Z÷ k÷u÷ -„÷÷•÷ -«÷ ¶÷ Ä÷ Ð÷ -Ý÷ è÷ ô÷ -þ÷ øø ø+ø?ø Nø>\ø ›ø¼øÌøÞøñøùù"ù4ùTùdù tùù ùù¢ùºùÍùæùúùú ú*ú=úRúmú ƒú -‘úœú -´ú¿ú ×úåú ûúû û*û:ûUû dû rû -~û‰û*šûÅûÎû!àûü.üHüdü#mü"‘ü´üÑü&ðüý -ý9ýMý,Vý#ƒý§ý®ý ½ýËýÞý'øý þ'=þeþ‚þ˜þ´þFÎþTÿjÿqÿ wÿ„ÿšÿ ­ÿÎÿ åÿïÿ -  <]l{Ÿ ¥±º ÃÏå(î$<=B6€<·?ôA47v9®cè9LB†=Éf>nC­Jñg< ¤°À Òàõú   &2 D Q _m˜­ÀÔçú #3Gc~›¢«Êåü$ 8F -Y dr w -„ ™ ©·Ê -Ûæ  -  &  6 D \ x ” ¨ (Á ê ð ÷  ÿ  - - - - -O+ -{ - - -”˜ -- > W n  -„   › §  ° .¼ ë þ   -  +  9  E R W  f s  ‹  ˜ ¥ ¶ Ê á uð f Ìx ÅEc  oz|÷ýrx‘¨±ÃÒÛë&'8 ` l v€  © ®¸¾ÅÊ Üéø -(9=Wt‰˜¡· Î -Øã ìöý - #>Ue -juŠ¡H© -ò ý -H*!sB•ØÜ1ë05 :GN^ -ny ~ Š`–™÷C‘1Õ08 > KX -j -u€—§¸×ê ( -9 -DHO -˜ £ -°» ÂÎÝ ìù$ 3 @NS [ ht|š¡ ©·€Ð Q]rŒ¢¾Â Ô â ïKý3I6}´Ã"Ù ü2 A$Kp‹   ® Ï(ð+)E*o!š¼/Îþ*%Pa'~¦¶ÆÏ -áìü"4CL[t‡ ž¿Úëô  /  F g ‚  “  ­ Ç Û !ó !1!C! J!W!n!!”!³!Ì!-Û! ##"#5#9# S#]#c#s# ƒ##3•#É#Ú#ò#$ $ -'$ 2$ >$K$i$ˆ$¨$Á$Õ$æ$ û$ % % '%3%H%\%k%@s%´%-»%é% û%& & & '&4&R& Y&e& j& v&‚&™&¸&×&ë& ÿ& ' '!' 8'F'^' w'ƒ' -™'¤'¹' Ï'Ý' õ'( -("(7(@(H([(`(h(q(y(‹(£( ¹(Ç(Ü(ó( -û(#)*)C)\)r)x)€))+º)æ)î) õ) * -* * '*5*J*^*w** ¥*²* Á*Ï*â*ý*"+7+@+V+ v+„+Š++•+$«+Ð+â+ö+, , , (, 6,B,U, Z, g,t, -Œ, —, -¤,¯, ¿,É,Ø, è, ò,ü,-$-;-Q-o-‹--¤-­- À-Ì-ß-ù-þ- -. ..-.A.T. g. q.{.„. •. ¢. ¬.¸.Õ.ä.ö. / -/ /*/ E/ R/^/ x/ „/ /,œ/É/!Ü/þ/0)0)F0 p0}0 •0 £0¯0´0Ã0Ê0 Û0 ç0õ0B1AK11«1À1 Ò1Ü1ã1ò1 22!262>2„F2Ë2Ú2ì2ô2ý2 -3 3 !3/3F3 X3e3w3—3"¶3!Ù3!û3454N4 f4 p4 z4„4”4£4 «4¹4VÁ4+5 D5(N5w5"}5 5 ¶5 Â5Î5è5%6 -&6 16;6C6R6f6 -v66 6ž6 §6µ6 É6 Ó6á6ç6ú6 7 7 '757&O7,v7 £7°7µ7 -Å7 -Ð7Û7ø7858M8`84r8§8¹8 -¿8Ê8Ò8 -â8 í8ú8 9 9 9(9/9 L9X9 m9!y9›9 ª9¸9 Î9Ú9ë9: : :1: C:P:W:;_:?›:Û:ê:ò:;;3;¡P;4ò;'<0<-8< f=p=y= -‰= ”=#ž=Â=-Õ= >>$> 9>C>K>b>k> -t> >¥‹>1?E?Y? b?o?x?€?†?œ? -´? -¿?Ê?à? -ð? û? @@@1@ B@ L@!V@x@ |@Š@ž@ ­@ º@Ç@â@é@ ñ@ÿ@A *A6A -IATAfA yA‡A œA¨A -»AÆAØAôABB B!)BKB!iB#‹B¯B ÅB -ÒB9ÝBUC=mC<«C=èC&D",D?ODD¡D ²D¾DÂDÇD(ÌD,õD"E2EDEUE -fEqE‡EœEJ°E ûEFF0F JF WFdFF ™F ¥F³FËFåFõF;GKGeG tG GG§G ¹G ÅGÓG ãG ñG þG -HH 0H:HUHrH„H˜H«H¼HÏHàHóHI I5I+LIxII°I·I ÆI ÓI àIìI þI JJ#.J RJ^J pJ|J‘J¨J6ÀJ÷JKK#K 8K7EK}K›K°KÀKÇKÞKôK L LL.L BLOL mLyLŽL”L -›L -¦L±L ¹LÆLÛL êLøL -þL MM #M/M -FMQMqM ŽMšM¬MÇMãM þM -NN3NCNWN4lN¡N¾NÑNêNOO)O.COErO¸O ÉO ×OäO üO -PP3P 9P GP SP -_PjP {P -‡P’P¡P °P½PÚPâPœöPN“Q -âQíQöQýQR R#R5RQRgR#R¥RÃR ×RãRõRS'S#ASeSƒS —S¤S·SÔSëS$T+TJT _TiTyT“T§T!¿TáTýTU -U!U6U FUSUrUU¤U¸UÐU æUòU V V7VVVmV †V”V§V ºVÇVÜVîVWW.WEW -WWbWrW"ŒW¯WÉW ãWïWXX6XOX=_X6XSÔXJ(YsYŒYŸY ²Y¼YÍYãYòY ZZ9Z KZWZfZ{ZŽZ ¢Z®ZÇZÙZ íZúZ[0[K[e[€[˜[ ¬[¸[Í[â[ò[\\´&\)Û\N]T]Kh^=´^ƒò^*v_¤¡_¢F`3é`Ta?ra`²a2bFb¯Èbxd4{e/°eºàe ›f§f¯fµf¼fÍfÞfñfùf gg!g4gGgdg yg …g’g;›g×g çgôgh h"h 7hEhUh#ih hšh ¯h ½h&Êhñh -ii"i2iLi"^ii™i©i¹iÊiéiÿij$j4jCj Tjajzj ŽjšjŸj¯jÄj+Êjöjüj k k!k (k5k Ek -Sk^kdkkksk |k ˆk8•kvÎkElLldl|l „l ‘ll £l!Älælþlm5mNmkmˆmmžm¥m®mÂmÜm ãm ðm üm -nn!n *n7nGn Vnbn sn n‹n¨n!·nÙnín(o/o#8o \o jowo~o -„o o œo¦oµoÉoäo -éo ôo -p pp)pK2p1~p7°p1èp5qHPqA™qŠÛq;fr!¢rÁÄr †sæ§s Žt¨›u}Dv*ÂvBíwæ0xy6y‚¸y;z AzOz)Vz5€z¯¶z1f{0˜{0É{1ú{(,|CU|€™|S},n}2›} Î}Aï~A1*s«žíJ€ 8ÎE‚£ƒª¸ƒ§c„§ …³…˜¶†GO‡è—‡2p‰£‰ ½‰-lj -õ‰ŠŠ%Š6Š<ŠAŠPŠYŠ_ŠqŠ„Š ŠªŠ¼Š ÌŠ ÚŠäŠýŠ‹ ‹‹ -!‹<,‹ iŒwŒ ŽŒ˜ŒªŒ¾ŒÎŒÝŒòŒ +?Nhx ‡”¨ -¸ÃÈÑ3è;Ž;XŽ¡”Ž6F= „Ž “  ®´¼ Îïöþ‘%‘E‘3^‘#’‘¶‘Αá‘ñ‘ ’!’0’?’E’ L’X’u’~’F‡’Î’ -î’ -ù’“ “ “ %“ 2“ ?“ M“![“!}“ Ÿ“ «“+·“Kã“0/”Q`”˜²”¢K•$î•5–PI–Gš–-â–O˜j`˜o˘e;™j¡™~ šp‹šoüšwl›<ä›?!œ>aœt œt`Š‰ëužõž0ûž,Ÿ2Ÿ9ŸKŸ`Ÿ qŸŸ6Ÿo¸Ÿ( * 1 49 #n È’ G[¡%£¡XÉ¡U"¢Ox¢È¢ߢè¢ñ¢ù¢ -£ £ £#£ ,£6£?£#Q£u£ }£‹£”£š£©£°£¹£Ì£ߣè£ú£ ¤¤ ¤ )¤7¤ N¤X¤`¤f¤ i¤s¤†¤¡¤ À¤á¤ ç¤ô¤û¤¥ #¥0¥ 8¥B¥S¥ V¥ b¥ l¥z¥Ž¥•¥ -œ¥§¥ ¯¥¼¥Ä¥ä¥ í¥û¥¦¦/¦ >¦J¦ -R¦]¦o¦ ¦¦œ¦ ¬¦º¦ Φ ܦê¦ ú¦§§0§@§R§ c§ o§{§Š§“§¤§ ¾§ ȧ -Õ§à§æ§õ§¨ ¨2¨L¨]¨v¨‡¨™¨ ©¨ ʨ Ô¨Þ¨ æ¨ð¨ ö¨©©&© ,©:©J©Q©W©^© q©~©© Š© ”© -ž© -©©´©Í©Ö© Þ©è© î©û©ªª ªªª#ª+ª >ª JªWªqª yª†ªª”ªœª¶ªŪ -åªðª« « «*«2«:«P« _« l«x« {«…«Š««£«¾«Ç«Ï«â«ø« ¬ %¬3¬9¬I¬O¬V¬ -^¬ i¬v¬ †¬ ”¬ -¢¬ ­¬ »¬ Ȭ Ò¬ ߬ì¬ ý¬­ ­­ ­ -&­1­ :­F­O­ ^­ k­w­€­ ‡­•­¥­¬­ µ­ ­ ЭÝ­ æ­ ô­® ®®0®6®9®>®F® U® b® n®{®® £®°®¶®¿®Юã®õ®(¯0¯8¯A¯W¯o¯¯4›¯1Я/°2°H°X°x° €°°“°§°#¸° Ü°ý°±#±3±"C±f± -n±y±‹±œ±£±¬±± ӱ߱æ±î±þ±²%² ->² -I² -T²_² e²s²y²‰²²–² -¶²Á²Ò²ز -á²ì²ò²û²³³+³:³ B³O³^³b³h³k³z³~³ -„³³–³›³5Ÿ³Õ³ ç³ñ³´´ ´ ´#´!8´ Z´ {´œ´ -¼´ Ç´Ó´Ú´Þ´æ´ë´ñ´÷´ þ´ µµµµ &µ4µ.GµvµT“µè¶#ÿ¶t#·]˜·2ö·X)¸O‚¸IÒ¸L¹8i¹q¢¹Aº9Vº=ºUκO$»1t»:¦»3á»8¼6N¼9…¼¿¼Ƽ -ͼؼ ß¼ ì¼ ù¼½½ -%½0½ 3½@½ -T½ _½i½r½Š½¦½¼½1Ľö½ ¾ -¾$¾+¾B¾K¾S¾Y¾ _¾ m¾ {¾ ‡¾ -•¾ - ¾ «¾ ¸¾ľ Ù¾ å¾ñ¾ ö¾¿X¿zk¿)æ¿.À)?ÀiÀ|À„ÀŒÀ•À ´ÀÂÀÜÀåÀøÀ ÁÁ)ÁBÁ^Á$yÁžÁ ´ÁÁÁ ÓÁáÁñÁ"Â&Â?Â]Â{ÂÂ+£Â2ÏÂÃÃ0ÃMÃUÃoÃáôÃÈÃèÃüÃÄ$ÄAÄYÄ sÄ}Ä ”Ä¡Ä -¶ÄÁÄàÄñÄ ùÄ Å -ÅÅ*,Å.WÆ0†Æ·ÆÏÆàÆüÆŸÇ -®Ç¹ÇÒÇèÇÈ ÈÈ'È0ÈAÈ PÈ ]ÈBkÈH®È÷È2 É<ÉVÉ pÉ~É–É °É -¾ÉÉÉÎÉ âÉìÉ&Ê+Ê4ÊFÊ[ÊpʃʚʣʬʻÊÔÊéÊ'ýÊ!%ËGËKË -QË \ËhËoËŠË‘Ë&™ËÀË$ÈË íËùËþËÌ"Ì6Ì?ÌTÌ cÌpÌ2ƒÌ¶Ì ½Ì ÊÌ ×ÌáÌéÌ -ñÌ üÌ -Í -ÍÍ#Í -(Íe3Í™Í žÍ ¬Í -¸Í -ÃÍÎÍîÍÎÎÎQ6Î6ˆÎC¿ÎCÏ5GÏa}Ï"ßÏ"Ð2%ÐXÐ?nÐ-®Ð#ÜÐÑÑ;ÑQÑ cÑ mÑwрѕѬÑÁÑÛÑïÑ Ò (Ò IÒjÒ%Ò§ÒÂÒÈÒ -ÞÒéÒ! Ó -+Ó6ÓSÓpÓ‚Ó“Ó¤Ó«Ó ³Ó½ÓÎÓÞÓåÓëÓ -ðÓûÓÔ Ô(Ô8=Ô=vÔ@´Ô?õÔ?5Õ2uÕ.¨Õ!×Õ&ùÕ" Ö8CÖ(|Ö¥Ö"¿ÖsâÖ@V×)—×)Á×;ë×:'Ø'bØ ŠØ˜Ø²Ø ÄØÒØæØùØÿØÙÙ(Ù 9ÙFÙNÙ TÙaÙyÙٜ٭Ù)¿ÙéÙ ùÙÚ - Ú -Ú#Ú,ÚCÚ[Ú$`Ú …Ú ‘Ú Ú§Ú ºÚ ÈÚ -ÒÚ ÝÚ -çÚ òÚ"þÚ%!ÛGÛ^Û"rÛ•Û±ÛÐÛçÛÜ Ü3Ü#KÜo܄ܙܭÜÁÜ ÊÜØÜxáÜZÝ cÝ mÝw݆ݤÝ%ÂÝèÝÞ'Þ'9ÞaÞÞˆÞ™Þ©Þ!¸Þ ÚÞ*çÞß21ßdß!ß$£ß&Èß'ïß'à?à*^à‰à ‘àŸà°à¿àÕàéà&øà*áJá+\áˆá¡á¸áÐáîáââ3.âbâ qâ~â,â -ºâÅâ ×âáâôâ ãã#ã -3ã>ãRãZãiã zã„ã,‹ã ¸ãÅãØã"ïãää-ä2ä8äHäWä käxä ˆä–ä¨ä¸äÏäâä÷äåå(å0å 6å#@å då…å—å´å<Íå -æ æ )æ5æEæ Tæ aæ oæ yæ †æ ’æžæ ®æ¸æ Çæ -Ôæßæîæ ç&ç6çIçXç vç„ç,“ç ÀçÌç Óçàçèç -ïçúç -è èè-èAèZèaèpèè •è¡è¶è¾èÇè Öèàè"èèE éKQé)é Çé -ÓéÞéñé -ê ê -ê&ê+ê -Cê Nê \ê -fê qê {êˆê -‘êœê «ê·êÇêçê öêDë&Iëpë ëë ¡ë­ë ¼ëÉëÚëóë ì ì*ì9ìHìPìnì†ì¤ìÀìÛìñìíí$-íRí jíví…í ží¬íÌíÞíõíîî-îCî Uî -cînî wî î$î ´î¾î'ÓîûîGï4_ï”ï!šï.¼ï$ëï!ð32ðfð -€ð‹ð¡ð)©ð)Óð ýð ñ ñ ñ!0ñ+Rñ~ñ)žñ!Èñêñ$ ò!.òOPòT òõòúò óó$ó&<ócó ~ó‹ó -£ó®ó-Áó'ïóô3ôOôjô…ô—ô ±ô »ô -ÈôÓôëô/ôô*$õOõBUõ0˜õCÉõ; ö=Iö/‡ö1·ödéö4N÷Kƒ÷5Ï÷^ø5dø<šøA×øbù |ù †ù ’ù œù ¨ù¶ùºùÔùãùëù üù - -úú 1ú=úRúoú‚úšú³úËúÞúðú -ûû2û!Kû#mû‘û–û žû¿ûÜûóû ü!ü9üIügü wü…ü Šü—ü  ü ªü -¸üÃüÕü -åüðü ý ýý.ý >ýKý`ýxýý ý(¹ýâýèýîýõýþþ'þ0þM?þþ¤þ”­þBÿQÿjÿÿ —ÿ ¡ÿ ®ÿ»ÿ Äÿ%Îÿôÿ  -"- 6 D P]b q~” ¨¶ÊÛô{ØÖhl? ¬„¹>DgMµÍ êô - #7T1e/—!Ç -é ô';@IPXa { -…¡&² Ùúþ1JYb œ ¦°¸ÁÈÐ Ö âï 1 -6ATnUv -Ì ×á ð -ú[ 'a B‰ Ì  Ò +à  - - ' -3 -B -I -[ - k -w - | - Š -i˜ -­ C° 5ô +* V \ m |  ‘ › «  -Ç Ò )â  #  8 #E i  -r M} Ë  -Û  æ ð  ÷ )8Oeu„“ š¤ ´ÁÊä ìö… ¦¸Ïí!(.A -P[Hj3³0ç2-D r~”§¶¼Õç÷ -(M,v'£*Ëö6!Xa q(¨"¹-Ü -"3; S#_#ƒ§¹Ñãìû)!@b~ œ¯Íå%&F [gy–­$Çì (7Qe!|žº&Ëòû #@IN] x„@ˆÉØð  ,6Ecƒž¹Ñáú -  (IfuL}Ê;Ò#4: L Y"eˆŸ ¤ °¾Õõ( C O [i -}ˆžµ¾ ÒÜò -)2 FP -epxŒ’š £­Â Üý.K T&`)‡±Ê áîó %' M U ] m  ƒ  — « Ä ß ù !/!@!V!l!!›!$µ! Ú!æ!" ""."6"<"C"$U"z"Œ" ª"¶" Æ"Ð" Ø"æ"ï"# # # #6#M# f#p# -# Š#—#¦# µ#Ã# ×#ä#ö#$$6$J$ R$^$ n$z$/Œ$¼$Á$ -Ç$Ò$Û$î$%% -6%A%J%R%k% r%|%"…% ¨%´%Í% æ%ó%&! & -& 9& C& -d& o& }&9Š&Ä&)×&''6'2T' ‡'”'¯'À'É'Ï'ß'æ'÷' ((J)(Kt($À(å( û( ) ) )+) ?)K)\)r){)€„) **$*6*I* O*[*o*~*•* ¨*µ*Ð*á*ò*++++B+`+}+Œ+›+ª+»+Ê+ -Ó+ Þ+aè+/J, z,D„,É,&Í,ô,- -,-B--`- Ž- š-¤-«-»- Ô-á-ê- -ü-. -.. -/.:.I.Q.c. z. -ˆ.“.£.-¸.&æ. ///2/ A/O/m//«/Æ/×/5ç/0-030<0E0 T0 `0 m0{0 „0‘0™0 0 -¼0Ç0 -Ü0(ç0 1 1/,1 \1i1z1‘1 £1­1¾1 Ñ1ß1ç19ð1:*2e2w2†2¤2%¾2%ä2¿ -30Ê3û3 -454 O5Y5b5 r5 ~5"Œ5¯5-Å5 ó566$6 +686U6g6z66œ¤6A7S7f7o7 7Ž7—7(7Æ7 ä7 î7ú78 -&8 18 =8K8O8i8 z8„8!Œ8®8²8 Æ8ç8ø8 9959<9 D9P9g9 9‰9 -ž9©9À9 ×9ã9 ú9: -:$:::*V::†:Œ:%Ÿ:#Å:&é:$;"5;X; -g;>r;S±;<<<B<F<Æ<9Ë<L=R=r=‘=¡=¦= ¬=(¸=3á=>&>;>M> -_>j>&ˆ>%¯>FÕ>? +?7?T?k? ‚?Œ?¥? -À?Ë?Ý?ù?@@15@g@ƒ@˜@«@%¿@å@ý@ A"A4ADA UAbAjAAˆA¡A¹A ÈAÖA åAïAþAB(8BaBwB$‘B,¶BãB/C1CBC]CxC‘C«CÉCäCD5 D VDbD tD DD¢D7ÂD"úDE&E.E EE@SE!”E¶E ÏEÝEãEF F ,F -6FAFPF cFpF -‡F’F§F¬F µF ÃFÍF ÖFãFûFG$G*G2G8G UGbG yG+…G±G ÎGÜGõGH-H FHTHfH~HŽH¨H/ºH êH II>I^I tII-˜I=ÆIJJ)J!8J ZJhJwJ”J ›J ©J -¶J ÁJÍJ ÞJìJüJK&K9K QK[K¸qKK*L vL‚L‡LŽLŸL¦L¯L¾LØLìL!M%MAM RM_MrMM¨M%ÃMéM N N*NŠ PŠ\ŠmŠ…Š ˜Š¥ŠªŠ²Š@ÍŠ:‹DI‹®Ž‹=ŒJ] ¨²¸ÈØàçöŽ Ž Ž%*Ž!PŽrŽ,‹Ž ¸ŽÙŽòŽ 3K ]kqxŒª³Y¼% < HUYkz ‹™ ¨,¶,ã ‘ ‘-$‘8R‘/‹‘;»‘Š÷‘¤‚’'“-D“3r“G¦“<î“I+•hu•zÞ•TY–b®–i—b{—bÞ—fA˜:¨˜9ã˜8™cV™gº™c"šY†šmàšN›)S›}›„›Œ›ž›µ›Æ›Ö›+Ø›kœpœrœvœ2{œ#®œÂÒœH•!ÞgžYhžUž/ŸHŸQŸZŸcŸ kŸ wŸ „Ÿ ŽŸ˜Ÿ¡ŸªŸ)¼ŸæŸïŸ þŸ   ! ' F e t ‡  Ÿ «  °  ¾ Ì  -ä ï ÷ ý ¡¡!¡=¡X¡x¡ ‡¡“¡›¡!¤¡Æ¡Õ¡ Þ¡ë¡þ¡ -¢ ¢ -¢ ¢6¢=¢ -C¢N¢U¢d¢(l¢ •¢Ÿ¢¯¢¸¢É¢ã¢££ -£#£;£ L£ Z£ h£ u£‚£ –£ -££ ®£ ¼£È£Û£÷£ ¤ -¤¤ /¤ <¤J¤R¤e¤ƒ¤“¤¤¤­¤¶¤ɤæ¤ø¤¥)¥<¥Z¥o¥¥)Ž¥¸¥¿¥ -ȥӥ㥠-è¥ó¥ -¦¦ ¦ -¦:¦@¦ H¦R¦ c¦q¦ t¦ -~¦ -‰¦ ”¦ ¡¦«¦À¦ȦÛ¦ä¦ ë¦ø¦ § §§§!§ )§3§ G§U§h§ -z§…§”§š§Ÿ§¤§»§Χ î§ú§ ¨ -¨ (¨4¨=¨E¨ ]¨ i¨ -s¨~¨¨Š¨¨˜¨ª¨ĨʨÓ¨í¨+ © 8© F©S©Z©k©r©y© -€© ‹© •©¢© ³© Á© Ë© -Ø©ã© ì©ø© -ª ªª %ª1ª8ª?ªNª aª nª -xªƒª ’ªŸª§ª°ªÀªÕª ܪ æªòª« « « @«N« f«r«…«Ž«‘«–« ž« -«« ¶««Ô«í«¬¬ -!¬,¬>¬T¬g¬(z¬ £¬­¬¶¬ɬÛ¬#ö¬3­EN­6”­Ë­é­û­® #®-®4®M®6e®'œ®&Ä®ë®ô®¯8¯O¯U¯]¯o¯€¯†¯–¯§¯ ¼¯ɯ Яگ𯰰 &°0°6°=° D° P° ^° k° u°° š°¨°Á° È° -Ò°Ý°â°ê°ð° ± (±5± >±J±Z±^±e±h±x±|± -‚±±”±›±=Ÿ±ݱò± û±²² ² ²-²#B²"f²"‰²!¬² -β -Ù² ä²î²ò²ú²ÿ²³ ³ -³ -³*³0³ 8³B³1Q³0ƒ³´³#åpö £¬íù«æ²´g’¶~áuèj™aš0!Lg‹eN _µS ¨_cRˆ†& ¶.¤òÀ2 £¥Û§âo†Ý福ØSfÌÒpq€OV@Ï`lÜÁ^‘i²÷9 Ðq&Äß—Šd§Þe.w¦èÂâIºMÓĪÒ9L 4 ô±g>%wÆÂÑôÓ|]üf 1Ÿ€, *6t]R‚ & UÞ&=tà•yBñRÌŽXxÝ”MØ©;êqX< ¿v% :ë6í6Ûú3 Wñk‡Qñc>h͆î"¯ê*ê7U?˜—Ì\!+O6WPN€: ¦ÓU…œçП–  »ÍE~r*öóÛõa½¾£P žW5Æ»ý¿|~;I¸wPw¹ÙÁ' ¿Oª;`}ØÃ3iªÈëbÒ¼u.-]­¬´‹ -`¹%,…˜ú5/;YÌä›àƒS&U û#/”Ôw o'Q ùSá¶2ÍOóCÁ› }F<¿Ê$ ôKξAè‚Ò…~ïo 8‰§¶ö©ˆˆ”xQsA¢J;ûNEÝÚòãMÉÐÆiªyx †Å®I¢×í,R†üÐ[Þ¼×tê#uÉD¾µîÿÄ!Å% rEaáO-„: Ô¡ hدŸ^±½ï -]D¥ÀBÚ©‚]FT PÁbÖÖ«´–Ø^AŒ“ßK{¸sÞFL -ò1î‰"ÀQ±Ü5réÛ´õy4 ½74Fz‡öôºw¡âí" „»(™N‡ ?æq¬Úì—ÞFM²÷+# м|Šš`¸ ¢e¨õ {«ÓíÔ”Q)_Ys5ÿÀâæ‚ýb*;#$®™Žóûäô鈒$òtY*üþ!¡qºh<Ê’4ʆɘ‘ðç×óLæ@!@ZRÌg›/y5mä!„ù{:$·–ÈøpÆX“VÓCÏ\·Š-µY©QæýMv¬LfËoowP >"hd0àXàåÑE .{±ÆA^ämÈLö$Õ -äz$ŽÍÅa‘¾=lh¢›Nɺºá¶Ë¤æz\üVNÏÑê¯r eçÊÄ 8>kÚ3É<Õ¢ìö×î-BCƒ¨0 Ë" çƒNŒ îõ@^dÞ -âÊ'ü -J]°Ø€Æñ:¿Ÿw¸á±?˃½dÙdå´„ f T÷œ'”D Z•M ‹¸±ÖàᜓA=ÓF ¡[§¸«ýC|÷Áo· ¬Å0æ¼- ìB þ sÔ³-§S˜xwTàù¬Î`„ªÙ¼YÐÙChÕñÈ<­jÁ= - B -š9‹Þn¥ 3ÉEß¿ã1ÛMKYr ¯…ì>Jý–D) @¬våG†{Ê! (l¸<WäëÈ÷®[$j“‚qE[‡ øÎãzëç!}DJÙ^~Å%\¦†D*Cÿv# ¿[dFŠ`> ñl9_?¼<å¼í7 ½eÚyFó&ð°³€JL}å äH|«ó㷻NJ_qnÀ葘H á‹8ø0.‚±A ¾7A JvÖ\GB~¯-„&ÌôsÈ©'JöÏÿ³.×ïý5|‰Á7tÌI× /Nßy¢žŠ•£.ÍX¾þu|'°/ Ç—?Ÿ½‡ÃƒÝ‚À cMuv€ý°6÷}ª.©2¨…›1™ªpczyìÍBHhÄ£nRïݽ Ž{‘øH¯Šÿãå’"ð˜e1uQΔ žþ§J ¦Œ. ·1™×G#ú:¹¤éS»ð'ÃÃ÷Pxõ½LÕ®-¢˜võet]ÎÖG_ÚŽ3…p ¯þg—š­ïjòãè²+cUŸÅ¶®%ÇŒÇ4mõõ¹ç£+0YN”òk ³èÒiQ,‚U6ëÿÑÝÈ~zIK "D ( S‰lv™p¤›æÔ¾“ÑÜ1Œî/gX&5ºúš2%𜓓Ÿ&ø=)†­ ,  i碲rõûÊGðøz°š¡ë‘;M •üÑäm?6 l¥™»k^¹ŸŽ)*Á<¢éòß+qˆê"kCCZ “œUTÔO‹O+æá²ÆxóûVã9BÂFN‰xZã­Öóª«nÜz 2¥7uþZÝœìÖú¹ÌPî4á38@ͧu‹ 3Á9Ü¡Â@ 3jÇ9Ú,ø(ê¤ÀÕŸ9€ûUÛÑOÇ5AÒ¶-Wœ·=³[ˆ‹9íž)­Ø|ž• ºn—ÙPT¼H¶úEµ Š¨Dr;Sœݶ³ð7¥2s’1 e=íÇÆ$ }Zgxk‘òždüŒb_„4 ¨1ï9Ñ8Ë~; n:Î /Þ‹Ët^¡!Ý™•KKéûuWOÖü2¡\÷®þ0£IÏ–bìü8Õé°’o~A  * ¦—¦!Å m`Í>Ή*×>h•Œóo߸:5 3nP—TŽByܲè˧ýid“H[σӤú˜ÙÛ,I8ëŒÒ«­(‰§H(KGC2 ÐÏVr´òª\4?E¬'}µâ€ ß°’÷Þy¤·ÇR7 Sj:{‘µàøalú7>ÓÒÑ6(bY¤#€7 è;O aW`mU ? ø ¸R ¨[W P^¤6/Àfä=ܽí0´]r…ñi+» lK–)fÆtìiç¹é©Òh£Dµk{Ï*ÕÜÉbŒV Ús¿ù·ìë]ÂÛ R\ÄJaˆùVÉÖ‰-m/ôY{KnŠöVÿ°ê"å ?ß -)ûjqýkS+vb«EÉHB& c›ù_é2x<m¼= éñÐ4µœ 4 Ìö•cV‰eßþA˜³»ô%¯5}$ aGšI©™â’ïΦ„ØÅ MƒEH­TÖžñ³ži«¾@g=à\,Ôt s‡#UÚô”‡X¦žZƒlÄ6Ê÷è¥Ø'ˆÅÿ,Ï"àf„/ÿ– ¿ÐKÙ:ðkI  µ+ ²¹Â  벺Žù”ŽfZÀjÛÔ­(W’ÊJú´%±®F_ (ï®Î8Èp´LêÔ?®) bpÈ<ܾâÕ ¦c'×˹8ƒš‡ -0—# î¥G8 ûDmC )1+aÄ£þ…I`¬åÖnR.Í%ËÇG 3 •[ÙÕ›TÑ¨Ó TâX±GºÄ@š2çQT»}Lz ©X¯f)‡ùpc|sãð¥>Hgjd@$,…o0¡Q‚³Ã(Z -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.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. -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 EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-21 21:49+0100 -Last-Translator: Sigurd Gartmann -Language-Team: Norwegian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Ugyldig flagg «%s» - -Bruk: %s [flagg ... ] [fil ... ] - - --batch-interpreter - Prosedyre som skal brukes til Ã¥ prosessere kommandoer. - --debug-handlers SlÃ¥ pÃ¥ feilsøkings-signalhÃ¥ndterere for ikke-fatale signaler. - --display Bruk oppgitt X-skjerm. - --dump-gimprc Skriver en gimprc-fil med standardinnstillinger til skjerm. - --no-mmx Ikke bruk spesielle prosessorhastighetsforbedringer. - --no-shm Ikke bruk delt minne mellom GIMP og dens tillegg. - --pdb-compat-mode -Prosedyredatabasekompatibilitetsmodus. - --session Bruk en alternativ sessionrc fil. - --stack-trace-mode - Feilsøkingsmodus for fatale signaler. - - --system-gimprc Bruk en alternativ system gimprc fil. - --verbose Vis meldinger under oppstart. - -b, --batch Kjør kommandoer i batch-modus. - -c, --console-messages Vis advarsler pÃ¥ konsollet i stedet for i en dialogboks. - -d, --no- Ikke last pensler, graderinger, paletter, mønstre. - -f, --no-fonts Ikke last skrifttyper. - -g, --gimprc Bruk en alternativ gimprc fil. - -h, --help Skriv ut denne hjelpen. - -i, --no-interface Kjør uten brukergrensesnitt. - -s, --no-splash Ikke vis oppstartsvinduet. - -v, --version Skriv ut versjonsinformasjon. -%d lag%d dpi%d dpi, %s%d lag%d minuttene%d sekundene%d x %d dpi%d x %d dpi, %s%d x %d piksler%g x %g %s%p%s-kanalkopi%s-kanal til utvalg%s melding%s kopier%s maske%s%sklikk: utvid utvalg%s%sdra: flytt og komprimer(%0.3f, %0.3f, %0.3f)(Ingen)(Dette konsollvinduet vil lukkes om ti sekunder) -(Buffer uten navn)(Mal uten navn)(Varierer)(tomt)(ugyldig UTF-8-streng)(endret)(ingen)1 lag1 lag15 grader %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D-transformasjon...4:1 (400%)8:1 (800%)<%s><>For optimal ytelse i GIMP, er det nødvendig med justering av noen innstillinger.GIMP - GNU Image Manipulation Program -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis og GIMP-utviklingslaget.GIMP tips-filen kunne ikke tolkes!Din GIMP tips-fil ser ut til Ã¥ mangle!En fil med navnet «%s» finnes allerede._Legg til i utvalg_VinkelOm GIMPHandlingAktiver det _fokuserte bildeetAktive filtreTilpassende supersamplingLegg tilLegg til alfakanalLegg til alfakanalLegg til ankerLegg til kanalLegg farge til fargekartLegg til innrettingslinje: Legg til innrettingslinjerLegg til horisontal innrettingslinjeLegg til lag_maske...Legg til lagLegg til lagmaskeLegg til baneLegg til strøkLegg til tekstlagLegg til vertikal innrettingslinjeLegg til maske for lagetLegg til farge fra bakgrunnenLegg til farge fra forgrunnenLegg til lagmaskeLegg tekst til bildetLegg gjeldende farge til i fargehistorikkenLegg til valgt filter i listen over aktive filtre.Legg til palett %sLegg til i dette utvalgetLegger til tema «%s» (%s) -TilleggEkstra inndatakontrollereJustér lysstyrke og kontrastJuster fargebalanseJuster fargekurverJuster fargenivÃ¥erJuster lysstyrke og kontrast...Juster fargebalanseJuster fargekurveneJuster fargenivÃ¥erJuster glød / lys / metningJuster Glød og metningJuster nivÃ¥er automatiskJusteringAvanserte alternativerPÃ¥virkning:PÃ¥virket omrÃ¥de %sLuftpenselLuftpensel med variabelt trykkAl_fa til utvalgJustertJusteringAlle kanalerAlle filerAlle filer (*.*)Alle bilde- og angredata som ikke passer i flisbufferen vil bli skrevet til en mellomlagerfil. Denne fila bør plasseres pÃ¥ et lokalt filsystem med tilstrekkelig plass (flere hundre MB). PÃ¥ et UNIX-system vil du kanskje bruke systemets mappe for midlertidige filer. («/tmp» eller «/var/tmp»).Tillat fylling av helt gjennomsiktige omrÃ¥derTillat markering av helt gjennomsiktige omrÃ¥derTillat forstørring %sGjennomsiktighetGjennomsiktighet til utvalgGjennomsiktighet:Et bilde av den valgte størrelsen vil bruke mer minne et det som er innstilt som «maksimal bildestørrelse» i innstillingsvinduet (nÃ¥værende verdi er %s).An_imasjonForankre flytende utvalgForankre flytende lagForankre flytende utvalgVinkel:Anti-fjern %sAntialiaseringUtseendePÃ¥før lagmaskeBruk lag_maskeBruk terskelBruk lagmaskeEr du sikker pÃ¥ at du vil slette «%s» fra listen og fra disken?Er du sikker pÃ¥ at du vil slette malen «%s» fra listen og fra disken?Som i _brukervalgSpør om bekreftelse før et ulagret bilde lukkes.Bredde- og høydeforhold:Bredde- og høydeforhold:Fest parasittFest parasitt pÃ¥ bildeFest parasitt til elementFest parasittForfatter:AutoFølg aktivt _bildeAutokrympKrymp utvalg automatiskAntomatisk endring av vindusstørrelseAutolastFunnet automatiskTilgjengelige filtreTilgjengelige typer:Bakgrunnsfargefyll_Lysstyrke-Kontrast...B_uffereBakgrunnBakgrunnsfargeBakgrunnsfarge satt til:Bakgrunn: %d, %d, %dBakover (korrektiv)Baser fylt omrÃ¥de pÃ¥ alle synlige lagBaser utvalg pÃ¥ alle synlige lagBakNivÃ¥Bi-lineærSvart hvittSvart:Bland endepunktenes farger_BlandFortynnBland endepunktenes _ugjennomsiktighetBland: Bland: Umulig for indekserte bilder.Blanding...BlÃ¥BlÃ¥:Gjør utydeligUtydeliggjør eller gjør skarpereKan_t...Sett ramme pÃ¥ kanalRam inn utvalgKantvalg vedLysstyrke-KontrastLysstyrke-kontrast virker ikke pÃ¥ indekserte lag.PenselPenseleditorPenselmapperPensel UIPensel:PenslerPenselmenyBøttefyllingBuffereBuffermenyBrennButtEtter typeVed Ã¥ forkaste bildet til forrige lagring, mister du alle endringer, inkludert all angreinformasjon.CMYK_Kalibrér...FargevelgerK_olonner:K_ombinérKalibrer oppløsning for skjermKan ikke angre %sStørrelse pÃ¥ _lerretAvbrytAvbryt innrettingslinjeKan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte laget.Kan ikke legge til lagmaske til et lag uten alfakanal.Kan ikke legge til lagmaske til lag som ikke er en del av et bilde.Kan ikke forankre dette laget fordi det ikke er et flytende utvalg.Kan ikke konvertere en palett med mer enn 256 farger.Kan ikke opprette nytt lag fra det flytende utvalget fordi det tilhører en lagmaske eller kanal.Kan ikke opprette mappe «%s»: %sKan ikke opprette forhÃ¥ndsvisningKunne ikke beskjære fordi dette utvalget er tomt.Kan ikke utvide $(%s)Kan ikke gjøre utvalg flytende fordi den valgte region er tom.Kan ikke løfte et lag uten gjennomsiktighet.Kan ikke lagre. Ingenting er valgt.Kan ikke tegne pÃ¥ tom kanal.Kan ikke tegne pÃ¥ tom bane.Størrelse pÃ¥ lerretLerret_fyllmodus:Senter X:Senter Y:SentrertEndre bakgrunnsfargeEndre fargekartinnslagEndre forgrunnsfargeEndre bildets oppløsningEndre bildets enhetEndre utskriftsstørrelseEndre gjeldende lag eller baneEndre rutenettets bakgrunnsfargeEndre rutenettets forgrunnsfargeEndre indeksert palettEndre perspektiv for lag eller utvalgEndring av snarvei feilet.KanalAttributter for kanalKanalnavn:Kanalen kan ikke senkes lavere.Kanalen kan ikke løftes høyere.KanalfargeKanalen er allerede nederst.Kanalen er allerede øverst._Kanal til utvalgKanal til utvalgKanal til utvalgKanal:KanalerKanalmenyRute_størrelse:Velg strøkstilSirkel_TømTømTøm kanalTøm AngrehistorikkTøm all tekstTøm feilTøm angre-historikkKlikk «fortsett» for Ã¥ akseptere innstillingene over.Klikk «fortsett» for Ã¥ opprette din personlige GIMP-mappe.Klikk «fortsett» for Ã¥ gÃ¥ videre i GIMP bruker-installasjon.Klikk «fortsett» for Ã¥ gÃ¥ videre i GIMP-brukerinstallasjon.Klikk for Ã¥ tilkoble dette ankeret med det valgte endepunktet.Klikk for Ã¥ opprette et nytt anker (prøv SKIFT).Klikk for Ã¥ opprette en ny komponent i banen.Klikk for Ã¥ opprette en ny bane.Klikk for Ã¥ opprette forhÃ¥ndsvisningKlikk for Ã¥ slette dette ankeret.Klikk for Ã¥ sette inn et anker pÃ¥ banen (prøv SKIFT).Klikk for Ã¥ gjøre denne noden vinklet.Klikk for Ã¥ Ã¥pne banen.Opprett en ny bane for redigering.Klikk for Ã¥ oppdatere forhÃ¥ndsvisning -%s Klikk for Ã¥ oppdatere selv om forhÃ¥ndsvisningen allerede er oppdatertKlikk og dra for Ã¥ endre formen pÃ¥ kurven (SKIFT: symmetrisk).Klikk og dra for Ã¥ flytte ankeret rundt.Klikk og dra for Ã¥ flytte ankerne rundt.Klikk og dra for Ã¥ flytte komponenten rundt (prøv SKIFT).Klikk og dra for Ã¥ flytte hÃ¥ndtaket rundt (prøv SKIFT).Klikk og dra for Ã¥ flytte banen rundt.Klikk: utvalgKlikk: velg Dra: flyttKlipp ut resultatUtklippstavleKlippes til bunnlagKlippes til bildetKloneLukk %sLukk alle fanerLukk alle faner?Lukk denne fanenKopiér bane_FargerFargeFargebalanseFilter for fargevisningPipetteInformasjon om fargevelgerFarge_balanse...Farge _dithering:Fargebalanse virker kun pÃ¥ RGB-fargelag.Slett med fargeFargeindeks:Farge:_FargekartFarge_rom:_Farg...Farge_type for segmentFarge_type for utvalgetFargFarging virker kun pÃ¥ RGB-fargelag.Farg bildetFarg bildetFargekartFargekartbehandlerFargekartmenyKolonner:Kommentar:KommentarKon_trast:Kon_voluérKonfigurer filtre for fargevisningStill inn _utvidede inndataenheter...Still inn _rutenett...Konfigurer rutenettKonfigurer størrelse pÃ¥ rutenettStill inn tastatursnarveierStill inn _tastatusnarveier...Still inn valgt filterStill inn valgt filter: %sBekreft størrelse pÃ¥ bildetBekreft SkaléringBekreft tekstredigeringBekreft lukking av _ulagrede bilderSnarveier i konfliktKonisk (asymmetrisk)Konisk (symmetrisk)Koble sammen strøkKonstantBegrensningerKontekstKontekstavhengige markører er fine. De er pÃ¥slÃ¥tt som standard. De krever litt ekstra, og du kan fint klare deg uten.FortsettBidrag avKonverterKonverter kantKonverter bilde til grÃ¥tonerKonverter bilde til indeksertKonverter bilde til indekserte fargerKonverter bilde til RGBKonvertér bildeKonvertérer til indeksert (trinn 2)...Konvertérer til indeksert (trinn 3)...Konvertérer til indeksert...ConvolveConvolve type %sKopier navngittKopier _synligKopierer fil «%s» fra «%s»...Opphavsrett:Korrupt segment %d i graderingsfil «%s».Kunne ikke opprette «%s»: %sKunne ikke opprette midlertidig fil for «%s»: %sKunne ikke slette «%s»: %sKunne ikke finne GIMPs hjelpleserKan ikke Ã¥pne «%s» for lesing: %sKan ikke Ã¥pne «%s» for skriving: %sKunne ikke Ã¥pne miniatyrfil «%s»: %sKunne ikke lese %d bytes fra «%s»: %sKunne ikke søke i XCF-fil: %sKunne ikke starte GIMPs hjelplesertillegg.Antall:_Beskjær lagOpprett ny dok_kOpprett ny malOpprett et nytt bildeOpprett et nytt lagOpprett ny malOpprett en ny visning for dette bildetOpprett et nytt bilde fra den valgte malenOpprett en ny malOpprett og rediger bilder eller fotografierOpprett og rediger banerOpprett bane fra tekstOpprett utvalg fra baneOppretter forhÃ¥ndsvisning...Oppretter mappe «%s»...BeskjærBeskjær og endre størrelseInformasjon om beskjæring og endring av størrelseBeskjær bildeBeskjær lagBeskjær bildeBeskjær eller endre størrelse pÃ¥ et bildeBeskjær: Kun «trÃ¥dkors»Klipp _utKlipp _ut navngittKubisk (Beste)Status _nÃ¥NÃ¥værende høyde:Kun dette lagetStatus nÃ¥NÃ¥værende bredde:MarkørMarkør_modus:Markør_visning:KurvetypeKurverKurver for indekserte lag kan ikke justeres.EgendefinertEgendefinert fargeEgendefinert graderingEgendefinert f_yllfarge for lerretKlipp utKlipp ut navngittCyanCyan:_Kopiér pensel_Kopiér kanalD_upliker gradering_Kopiér lag_Kopiér palett_Kopiér bane_Kopiér mønster_Kopiér mal...Farge for mørke ruterGjør kun mørkereStrek prikk prikk...Strek prikk...Strekmønster:Forvalgte streker:StipletDato:AvlusningStandard utseende i fullskjermmodusStandard utseende i normal modusStandard rutenettStandard _rutenett for bildeForvalgt _interpolasjon:Standard størrelse for forhÃ¥ndsvisning av _lag og kanaler:Forvalgt _terskel:Slett ankerSlett anker_Slett lagmaskeSlett lagmaskeSlett objektSlett segmentSlett malSlett penselSlett kanalSlett fargeSlett graderingSlett lagSlett lagmaskeSlett palettSlett baneSlett mønsterSlett lagrede alternativer...Slett det valgte bufferetSlett valgt malSlett dette bildetSlett vektorerSletting av «%s» feilet: %sTette prikkerMindre metningMindre metning virker bare pÃ¥ RGB-fargelag.BeskrivelseDesignEnhetsstatusEnheterMenyerDialogmenyFirkantDifferanseDirekte fargerSlÃ¥ av lagmaskeSlÃ¥ av hurtigmaskeForkast tekstinformasjonSkjermVis navigeringVis _filter...Prosedyrer for skjermSkjermtype:Viser [%0.6f, %0.6f]OppløsAvstand:Avstand: %0.6fDitheringDel oppGjør en _fersk brukerinstallasjonErdu sikker pÃ¥ at du vil nullstille alle filter til standardverdier?Vil du virkelig nullstille alle verktøysalternativer til standardverdiene?Vil du erstatte den med bildet du lagrer?_Ikke lagreKan dokkesDokumenthist_orikkDokumenthistorikkDokumenterDokumentmeny_BlekBrennBlekBlek eller brenn strøkBlek/BrennDobbelstipletDra ankerDra ankereDra kurveDra hÃ¥ndtakDra baneDra: flyttTegn med blekkTegneobjektTegningsendringProsedyrer for tegnede objekterSlipp nytt lagSlipp ny baneSiden skrifttyper mangler, er ikke tekstfunksjonalitet tilgjengelig.Kast handlinger fra denne kontrollerenKopiér penselKopiér kanalD_upliker graderingKopiér lagKopiér palettKopiér baneKopiér mønsterKopiér den valgte malenUffda: kan ikke angre_Eksporter bane...Veldig l_itenKantoppførselKant_deteksjonRedigerRediger attributter for kanalRediger farge for kanalRediger fargepalettoppføringRediger fargekartoppføringRediger lagets attributterRedigér til lagmaskeRedigeringsmodusRediger palettfargeRediger baneegenskaperRedigér attributter for hurtigmaskeRedige hurtigmaskefargeRediger malRediger penselRediger kanalattributterRediger fargeRediger fargekartoppføring #%dRediger graderingRediger lagattributterRediger palettRediger baneegenskaperRedigér mønsterRedigeringsprosedyrerRediger valgt malEllipseutvalgTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i omgivelsesfil %sFor_bedreSlÃ¥ pÃ¥ hurtigmaskeSlÃ¥ pÃ¥ dithering av _gjennomsiktighetSlÃ¥ pÃ¥ denne kontrollerenAktiver denne for Ã¥ vise nyttige GIMP-tips ved oppstart av programmet.Aktiver denne for Ã¥ vise smÃ¥ verktøyforklaringer.EnormSkriv inn navn for flettet palettSkriv inn et navn for det lagrede alternativetSkriv inn et navn for denne bufferenSkriv inn et navn for denne malenSkriv inn et nytt navn for det lagrede alternativetSkriv inn lokasjon (URI):OmgivelserMapper for omgivelserJevn utUtjevning virker ikke pÃ¥ indekserte lag.Slett til bakgrunn eller gjennomsiktighetViskelærFeil_konsollFeilkonsollFeilkonsollmenyFeil under lagring av XCF-fil: %sFeil ved lesing av «%s» pÃ¥ linje %d: - %sFeil under lesing av «%s»: %sFeil under lesing av penselfil «%s»: %sFeil under skriving av «%s»: %sFeil under skriving av XCF: %sFeil ved skriving til fil «%s»: -%sFeil under skriving av «%s»: %sFeil under skriving til midlertidig fil for «%s»: %s -Ingen fil ble opprettet.Feil under skriving til midlertidig fil for «%s»: %s -Originalfilen ble ikke rørt.FeilHendelseVeldig st_orUtvides etter behovEksporter baner til SVGEkspoerter alle baner fra dette bildetEksporter den aktive banenEksponering:Utvidede inndataenheterUtvidelserForgrunnsfargefyllForgrunn til bakgrunn (HSV glød med klokken)Forgrunn til bakgrunn (HSV mot klokken)Forgrunn til bakgrunn (HSV)Forgrunn til bakgrunn (RGB)Forgrunn til gjennomsiktigForgrunn til gjennomsiktigForgrunn/bakgrunnForgrunns-/bakgrunnsfargeFS løsneFS stram innFS til lag_Tilpass lerret til lagUttoningKunne ikke importere gradienter fra «%s»: %s.Kunne ikke importere baner fra «%s»: %s.FlottFatal feil i penselfil «%s»: Filen ser ut til Ã¥ være avkuttet.Fatal feil i penselfil «%s»: Filen er korrupt.Fatal feil i penselfil «%s»: Dette er ikke en penselfil for GIMP.Fatal feil i penselfil «%s»: Ukjent form pÃ¥ GIMP-pensel.Fatal feil i penselfil «%s»: Ukjent versjon av GIMP-pensel.Fatal feil i penselfil «%s»: Ukjent dybde %d.Fatal feil i penselfil «%s»: Ukjent versjon %d.Fatal feil i penselfil «%s»: Penseldybde ikke støttet %d -GIMP-penseler mÃ¥ være GRAY eller RGBA.Fatal feil i graderingsfil «%s»: Filen er korrupt.Fatal feil i graderingsfil «%s»: Dette er ikke en graderingsfil for GIMP.Fatal feil i palettfil «%s»: Mangler magisk header.Fatal feil i palettfil «%s»: Mangler magisk header -Trenger denne filen konvertering fra DOS?Fatal feil i palettfil «%s»: Lesefeil pÃ¥ linje %d.Fatal feil i mønsterfil «%s»: Kunne ikke lese %d byte: %sFatal feil i mønsterfil «%s»: Ukjent mønsterformatversjon %d.Fatal feil i mønsterfil «%s»: Ustøttet penseldybde %d. -GIMP-mønstre mÃ¥ være GRAY eller RGB.F_jær...Fjær kanalFjærvalgFjærkanterFjærvalg vedFil_Vindu for Ã¥pning av filFiloperasjonerFiltypeFilen eksistererFila er tømtFyll kanalUgjennomsiktighet for fyll:Fylltype %sFyll liknende fargerFyll gjennomsiktige omrÃ¥derFyll hele utvalgetFyll med bakgrunnsfargeFyll med _bakgrunnsfargeFyll med forgrunnsfargeFyll med _mønsterFyll med mønsterFyll med gjennomsiktighetFyll med hvittFyll med _forgrunnsfargeFyll med _bakgrunnsfargeFyll med en farge eller graderingFyll med en farge eller et mønsterFylt_FilterEndelig, flettet lag skal være:Velg sammenhengende omrÃ¥derFinner lignende fargerTilpass bilde til vinduTilpass bilde i vinduTilpass bilde til vinduTilpass vinduetFast bedde- til høydeforholdFast størrelseFlat ut bildeVendVend kanalerVend lagVend baneVend tekstlagVending %sVend _horisontaltVend _vertikaltVend bildeVender laget eller utvalgetVend...Vender...Flytende utvalgFlytende utvalgFlytende lagFlytende utvalg -(%s)Flytende utvalg til lagFlytende utvalg til lagFlytende utvalgFloyd-Steinberg (normal)Floyd-Steinberg (redusert fargelekkasje)FokusMappeMapperSkrifttypemapperGrensesnitt for skrifterSkrift:SkrifterSkrifttypemenyFor en fullstendig GIMP-installasjonen mÃ¥ en mappe kalt «%s» lages.Tving automatiske hintForgrunnForgrunns- og bakgrunnsfarger. De svarte og hvite rutene nullstiller farger. Pilene bytter farger. Dobbeltklikk for Ã¥ Ã¥pne menyen for fargevalg.ForgrunnsfargeForgrunnsfarge satt til:Forgrunn: %d, %d, %dFremover (tradisjonell)_Fra baneFritt utvalgFritt utvalgFrihÃ¥ndFra _temaFra _vindussystemet (nÃ¥ %d x %d dpi)Fra venstre til høyreFra høyre til venstreFra utvalgFra temaFu_zzy utvalg_FullskjermFuzzy utvalgGIMPGIMP utvidelseGIMP meldingGIMP ytelsesjusteringGIMP programtilleggGIMP oppstartGIMP tekstbehandlerGIMP Dagens tipsGIMP bruker-installasjonGIMP XCF-bildeGIMP klarte ikke Ã¥ initialisere det grafiske brukergrensesnittet. -Kontroller at dine skjermomgivelser er korrekt satt opp.GIMP hjelpleserGIMP er ikke korrekt installert for denne brukerprofilen. -Profilinstallasjonen ble omgÃ¥tt ved bruk av «--no-interface»-flagget. -For Ã¥ gjennomføre profilinstallasjonen, kjør GIMP uten «--no-interface»-flagget.GIMP bruker en begrenset mengde med minne for Ã¥ lagre bildedata, sÃ¥kalt «flisbuffer». Du bør justere størrelsen pÃ¥ denne sÃ¥ den passer i minnet. Ta i betraktning mengden minne som brukes av andre prosesser.GIMP bruker en gtkrc-fil slik at du kan konfigurere den til Ã¥ se annerledes ut enn andre GTK applikasjoner.GIMP versjonGIMP vil advare brukeren om at det er gjort forsøk pÃ¥ Ã¥ opprette et bilde som vil bruke mer minne enn det som er spesifisert her.GammaGenereltGenerelt bare en sak for 8-bit-skjermer. Dette setter minimalt antall systemfarger som GIMP skal bruke.Generér optimal palettHent oppløsning for monitorGigantiskProsedyrer for gimprc_GlasseffekterGraderingGraderingsbehandlerMeny for graderingsbehandlerGraderingsmapperFarge pÃ¥ venstre endepunkt av graderingsssegmentFarge pÃ¥ høyre endepunkt av graderingssegmentBrukergrensesnitt for graderingerGradering:GraderingerGraderingsmenyTrekk fra pikselverdierFlett pikselverdierGrÃ¥GrÃ¥toneGrønnGrønn:RutenettRom mellom rutenettlinjerØk kanalØk utvalgØk utvalget medInnrettingslinjeInnrettingslinje- og rutenettilpasningProsedyrer for innrettingslinjerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (glød _mot klokken)HSV (_glød med klokken)HTML-notasjon:_Høyde:Hjelp_leser som skal brukes:Posisjon for hÃ¥ndtak: %0.6fHard kantHardt lysHardhetHardhet:HøydeHøyde:HjelpHjelp leserHjelpesystemHjelp_leser starter ikkeHjelp_leser ikke funnetHjelpeprosedyrerHex:Lyse tonerHint til _dokkene:Hint til _verktøykassen:HintingHinting endrer skrifttypenes omriss for Ã¥ lage tydeligere tekst ved smÃ¥ størrelserHistogra_mHistogramHistogramskalaHistorikkHorisontalHorisontal forskyvning av den første linja i rutenettet. Dette kan være et negativt tall.Horisontal linjeavstand for rutenettet.Hvor mange filnavn til nylig Ã¥pnede filer skal vises i filmenyen.GlødGlød/MetningGlød-metning virker bare pÃ¥ RGB-fargelag.Glød og metning...Glød:Ekstra storI_kon og tekst_Bilde_Importer bane...I_nterpolasjon:I_ntervall:IkonIkon og beskrIkon og tekstHvis tilgjengelig er hint fra skrifttypen brukt, men du kan foretrekke Ã¥ alltid bruke automatisk hinter.Gjør at flytteverktøyet endrer det aktivet laget eller den aktive banen nÃ¥r et lag eller bane blir valgt. Dette pleide Ã¥ være forvalgt oppførsel i tidligere versjoner.Hvis du ikke lagrer bildet, vil endringer fra de siste %s bli tapt.Hvis du avslutter nÃ¥, vil disse endringene gÃ¥ tapt.Ugyldig variabelnavn i omgivelsesfil %s: %sBildeBilde + rutenettBildebehandlerInformasjon om bildeBildemenyBildestørrelseStatuslinjeformat for bildeBildemalerBildeminiatyrerFormat for for bildetittel og statuslinjeTittelformat for bildeBildevinduoppførselBildevinduerBildet inneholder ingen synlige lagBildefilBildemaskeBildeoppløsningen er utenfor grensene, bruker standard oppløsning i stedet.BildestørrelseBildekildeBildetypeBilderBildemenyAlternativer for importImporter palettImporter banerImporter baner fra SVGImporter en ny palettImporter palettImporter banerImportert baneBle_kk_InverterIn_verter maskeInkrementellInnrykk:Innrykk pÃ¥ første linjeIndeks:IndeksertIndeksert fargeIndeksert fargeomdannelseIndekserte fargelag er alltid skalert uten interpolering. Den valgte interpolasjonstypen vil bare ha betydning for kanaler og masker.InformasjonsvinduInitielt zoom_forhold:Initialiser lagets maske til:Initierer programtilleggInitierer programtillegg: «%s» -BlekkInndatakontrollereInndataenheterNivÃ¥ inn:Sett inn ankerInstaller et privat fargekart; kan være nyttig pÃ¥ Ã¥ttebitersskjermer.Installasjonen feilet. Kontakt systemadministrator.Installasjonen er vellykket. Klikk «Fortsett».Øyeblikkelig oppdateringIntelligent _saksIntensitet: %0.3f Ugjennomsiktighet: %0.3fGrensesnittIntern GIMP prosedyreInterne prosedyrerInterpolasjon:KryssKryss med dette utvalgetKryss (trÃ¥dkors)Kryss (prikker)Ugyldig UTF-8-strengUgyldig UTF-8 data i fil «%s».Ugyldig UTF-8-streng i XCF-fil.Ugyldig UTF-8-streng i penselfil «%s».Ugyldig UTF-8-streng i graderingsfil «%s».Ugyldig UTF-8-streng i palettfil «%s»Ugyldig UTF-8-streng i mønsterfil «%s».Ugyldig tegnsekvens i URIUgyldig snarvei.Ugyldig bredde eller høyde. Begge mÃ¥ være positive.InverterInvertér kanalSnu om utvalgInverter virker ikke pÃ¥ indekserte lag.Invertér utvalgEr dette hva du ønsker Ã¥ gjøre?Det ser ut til at du har brukt GIMP 2.0 før. Egenskaper for elementElementsynlighetJuster:Behold gjennomsiktighetBehold overBehold bredde- og høydeforhold %sBehold bredde- og høydeforhold %sBehold høyde %sBehold gjennomsiktighetBehold bredde %sTast nedTast ned (alt)Tast ned (kontroll + alt)Tast ned (kontroll)Tast ned (skift + alt)Tast ned (skift + kontroll + alt)Tast ned (skift + kontroll)Tast ned (skift)Tast venstreTast venstre (alt)Tast venstre (kontroll + alt)Tast venstre (kontroll)Tast venstre (skift + alt)Tast venstre (skift + kontroll + alt)Tast venstre (skift + kontroll)Tast venstre (skift)Tast høyreTast høyre (alt)Tast høyre (kontroll + alt)Tast høyre (kontroll)Tast høyre (skift + alt)Tast høyre (skift + kontroll + alt)Tast høyre (skift + kontroll)Tast høyre (skift)Tast oppTast opp (alt)Tast opp (kontroll + alt)Tast opp (kontroll)Tast opp (skift + alt)Tast opp (skift + Kontroll + Alt)Tast opp (skift + kontroll)Tast opp (skift)Tastatursnarveier kan omdefineres dynamisk i GIMP. menurc er et dump av din konfigurasjon som gjør den blir husket til neste økt. Du kan redigere denne filen hvis du vil, men det er mye lettere Ã¥ definere tastene fra GIMP. Sletting av denne filen vil gjenopprette standard tastatursnarveier.TastaturTastaturhendelserTastatursnarveierVTHVe_nstre endepunkts farge...LandskapStorStor (256x256)Større forhÃ¥ndsvisningerSiste feil:LagLag «%s» har ingen gjennomsiktighet. Lag ble plassert ovenfor.LagattributterLag_grensestørrelse...Fylltype for lagLagmaske til utvalgVelg lagLagstørrelseLag_modus_Navn pÃ¥ lag:Laget kan ikke senkes lavere.Laget kan ikke løftes høyere.Laget er allerede nederst.Laget er allerede øverst.Lag til bildestørrelseLag til _bunnenLag til _bildestørrelseLag til _toppenLagets _alfakanalLagLagmenyAlternativer for fletting av lag_Venstre endepunkts farge...VenstrejustertLengde:La GIMP forsøke Ã¥ gjenopprette din forrige lagrede økt ved hver oppstart.NivÃ¥erNivÃ¥er for indekserte tengnede objekter kan ikke justeres.Farge for lyse ruterGjør kun lysereLinjeLinje- -mellomrom:Strekbredde:Linje_stil:Linjestil som brukes i rutenettet.LineærLenket elementLastLast kurverLaste nivÃ¥erLast _høyre farge fraLes kurveinnstillingene fra filHent nivÃ¥innstillinger fra filHent tekst fra filLaster forhÃ¥ndsvisning...Plassering:LogaritmiskLange strekerSer etter datafilerSenk kanalSenk kanal til bunnenSenk kanal til _bunnenSenk lagSenk lag til bunnenSenk baneSenk banen til bunnenSenk bane til _bunnenSenk kanalSenk kanal til bunnenSenk lagSenk lag til bunnenSenk baneSenk bane til bunnen_Forstørr_MesterFlytt til skjerm..._KartMagentaMagenta:ForstørrGjør _gjennomsiktigHÃ¥ndter lastbare modulerHastighet for marsjerende _maur:Maskeugjennomsiktighet:Maskér _valgte omrÃ¥derMasker _ikke-valgte omrÃ¥derMatrise:Maks dybde:Maksimal filstørrelse for miniatyrer:Maksimal bildestørrelse for _nye bilder:Maksimal fargedifferanseMaksimalt angre_minne:Middelverdi:MÃ¥lMÃ¥l avstander og vinklerMÃ¥l avstander og vinklerMÃ¥l linjalene og skriv inn lengdene:Median:MiddelsMiddels strekerFlett sammen _nedoverFlett nedFlett lagFlett sammen palettFlett sammen synlige lagFlett sammen synlige banerFle_tt sammen synlige lagFlett sammen _synlige lagFlett sammen _synlige banerFlett sammen lagFlett sammen paletterFlett sammen vektorerMeldingsprosedyrerMelding gjentatt %d ganger.Melding gjentatt en gang.Meldinger er videresendt til stderr.MellomtonerOverfør brukerinnstillingerMinimalt antall _angrenivÃ¥er:ForskjelligHjørneModusModus:Endre valgt fargeEndre fargenivÃ¥er for valgt omrÃ¥deEndre alle fargerEndre linjeavstand i rutenettModulmapperModulhÃ¥ndtererModulbaneModulerMusemarkørerMusehjulMusehjulhendelserFlyttFlytt ankereFlytt kanalFlytt flytende utvalgFlytt innrettingslinjeFlytt innrettingslinje: Flytt lagFlytt lagmaskeFlytt baneFlytt utvalgFlytt tekstlagFlytteverktøyFlytt elementFlytt lag og utvalgFlytt utvalgFlytt dette lagetFlytt denne banenFlytt valgt filter nedFlytt valgt filter oppFlytt til skjerm...Flytt: Multipliser_Antall farger:Na_vigering_NavigasjonsvinduStørrelse for forhÃ¥ndsvisning av _navigering:NavnNavn:NavigeringNy kanalFarge pÃ¥ ny kanalNye kanalalternativerNy farge fra _bakgrunnenNy farge fra _forgrunnenNytt bildeNytt lagNy baneAlternativer for ny baneNy malNy penselNy kanalNy kanal med verdier fra sist gangNy kanal...Ny farge fra _bakgrunnenNy farge fra _forgrunnenNy graderingNy importeringNytt lagNytt lag med verdier fra sistgangNytt lag...Ny palettNy bane med verdier fra sistgangNy bane...Nytt mønsterNye vektorerIngen pensler tilgjengelig for bruk med dette verktøyet.Ingen filter valgtIngen lineære gradienter funnet i «%s»Ikke lenger tilgjengeligIngen baner funnet i «%s»Ingen baner funnet i bufferetIngen mønstre tilgjengelig for denne operasjonen.Ingen utvalgIngen utvalg til stykning.Ingen miniatyrerUjustertIngenIngen (Raskest)NormalNormal (128x128)Normale prikkerNormalt vinduIkke en vanlig fil.Ikke nok synlige lag til Ã¥ gjøre sammenfletting. Det mÃ¥ være minst to.Ikke nok synlige baner til Ã¥ gjøre sammenslÃ¥ing. Det mÃ¥ være minst to.Antall _prosessorer som skal brukes:Antall rutenettlinjerAntall lag:A_nnet...ForskyvningForskyv kanalTegning pÃ¥ avstandForskyv lagForskyv lagmaskeForskyv med x/_2, y/2Avstand:PÃ¥ diskPÃ¥ flerprosessormaskiner, hvis GIMP ble kompilert med --enable-mp, angir dette hvor mange prosessorer GIMP skal bruke samtidig.Bare i minneÃ…p_ne som lag...UgjennomsiktighetUgjennomsiktighet:Ã…pneÃ…pne bildeÃ…pne bilde som lagÃ…pne lokasjonÃ…pne tekstfil (UTF-8)Ã…pne lo_kasjon...Ã…pne _sisteVindu for Ã¥pning av bildeÃ…pne penselvalgÃ…pne skriftvalgÃ…pne graderingsvalgÃ…pne palettvalgÃ…pne mønstervalgÃ…pne valgt oppføringÃ…pning av «%s» feilet: - -%sÃ…pning av «%s» feilet: %sAlternativer: -X opprinnelse:Opprinnelse X:Original bredde:Annet (%s) ...OversiktNivÃ¥er utLegg overFeil ved PDB-kall for prosedyre «%s»: -Argument nummer %d hadde typefeil (forventet %s, fikk %s)Feil ved PDB-kall: -Prosedyre «%s» ikke funnet_MønstreTaxisjÃ¥føren quizet -bedre om calypso, watt -og klær pÃ¥ vei hjem.MalTegnealternativer delt mellom verktøyProsedyrer for tegneverktøyTegneverktøy:Tegne_modusMal fuzzy malerstrøkTegn piksler med harde kanterTegn ved bruk av mønstre eller bildeomrÃ¥derMalerpenselPal_etterPalettPalettbehandlerMeny for palettbehandlerPalettmapperPalettUI_Navn pÃ¥ palett:Palett_filPaletterPalettmenyParasitt-prosedyrerParasitterTolker «%s» -Lim innLim buffer _inn iLim inn buffer som _nyLim inn _baneLim inn _iLim inn som _nyLim inn valgt bufferLim det valgte bufferet inn som et nytt bildeLim det valgte bufferet inn i utvalgetInnlimt lagBaneEgenskaper for baneNavn pÃ¥ bane:_BaneverktøyBanen kan ikke senkes lavere.Banen kan ikke løftes høyere.Banen er allerede pÃ¥ bunnen.Banen er allerede øverst.Bane til _utvalgBane til utvalgBane til utvalg -%s Legg til -%s Trekk fra -%s KryssBane til utvalgBanerBanemenyMønstreMønstermapperMønster UIMønsterfyllMønsterkildeMønstreMønstermeny_BlyantBlyantProsent av penselens breddeProsentil:Personlig GIMP-mappePerspektivInformasjon for perspektivtransformasjonPerspektiv...Velgemodus %sVelg et lag eller en innrettingslinje Ã¥ flytteVelg en baneVelg svart punktVelg farger fra bildetVelg grÃ¥tt punktVelg bareVelg hvitt punktPikseldimensjoner:PikselverdierPikslerPiksler:Vær sikker pÃ¥ at meny-XML-filene er korrekt installert.Vennligst vent mens din personlige GIMP-mappe opprettes...Vennligst vent...ProgramtilleggOmgivelser for programtilleggMapper for programtilleggProgramtillegg kunne ikke Ã¥pne bildeProgramtillegg kunne ikke lagre bildeProgramtillegget krasjet: «%s» -(%s) - -Programtillegget kan ha ødelagt GIMPs interne tilstand ved krasjen. Du bør lagre dine bilder og starte GIMP pÃ¥ nytt for Ã¥ være pÃ¥ den sikre siden.Programtillegg oppga suksess, men ikke noe bildeProgramtilleggProgramtilleggProgramtillegg og utvidelser er eksterne programmer som kjøres av GIMP og gir ekstra funksjonalitet. Disse programmene søkes det etter under kjøring og informasjon om deres funksjonalitet og endringstider mellomlagres i denne filen. Denne filen er ment Ã¥ kun være lesbar for GIMP, og bør ikke redigeres.MangekantPortrettPosisjon: %0.6fPosisjonertPosteriseringPosteriser (reduser antall farger)Posterisér _nivÃ¥er:Posterisering virker ikke pÃ¥ indekserte lag.InnstillingerBevar _luminositetTrykkfølsomhetTrykk:ForhÃ¥ndsvisForhÃ¥ndsvisning er utdatertForhÃ¥ndsvisning:ForhÃ¥ndsvisningerUtskriftsstørrelse:Utskriftsstørrelse:Problemer med tekstparasitt for lag «%s»: \n -%s - -Noen tekstegenskaper kan være feil. Hvis du ikke vil endre tekstlaget, trenger du ikke bry deg om dette.ProsedyredatabaseProsedyre-databaseFremgangIndekserte fargerBeskrivelse:KvalitetSpørKjører spørring pÃ¥ nye programtilleggSpør programtillegg: «%s» -Hent fortHurtigmaskeAttributter for hurtigmaskeHurtigmaskemenyLagre fortHurtigmaskeAvslutt GIMP?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-fargeRGB-tomRGBA (%0.3f, %0.3f, %0.3f, %0.3f)HTVVis «%s» pÃ¥ nyttN_ullstill verktøysalternativer_Nullstill kanal_Nullstill fargeN_ullstill omrÃ¥deHø_yre endepunkts fargeRadialRadius:Løft kanalLøft kanal til toppenLøft kanal til _toppenLøft lagLøft lag til toppenLøft baneLøft banen til toppenLøft bane til _toppenLøft kanalLøft kanal til toppenLøft lagLøft lag til toppenLøft baneLøft bane til toppenLøft dette bildets visningLøft bildet dersom det allerede er Ã¥pentRateRate:Vis siste pÃ¥ nyttS_entrer midtpunkter i utvalget igjenS_entrer segmentets midtpunkt igjenDistribuer _hÃ¥ndtak i segmentet igjenDistribuer hÃ¥ndtak i utvalget igjenGi lagrede alternativer nytt _navn_Gjenta «%s»Forkast...Leser palettfil «%s»: Mangler GRØNN komponent pÃ¥ linje %d.Leser palettfil «%s»: Ugyldig antall kolonner pÃ¥ linje %d. Bruker standardverdi.Leser palettfil «%s»: Mangler BLÃ… komponent pÃ¥ linje %d.Leser palettfil «%s»: Mangler RØD komponent pÃ¥ linje %d.Leser palettfil «%s»: RGB-verdi utenfor gyldig omrÃ¥de pÃ¥ linje %d.KlarEr du sikker pÃ¥ at du vil tømme bildets angrehistorikk?Tilordning av snarvei pÃ¥ nytt vil føre til at den blir fjernet fra «%s».Last _forhÃ¥ndsvisning pÃ¥ nyttLast forhÃ¥ndsvisning pÃ¥ nyttRektangelutvalgRødRød:GjenopprettReduser bildet til et fast antall fargerReduser bildet til to farger ved bruk av en terskelOppdater penslerOppdater graderingerOppdater paletterOppdater mønstreRegistrertLast _gjeldende tema pÃ¥ nyttLast _alle forhÃ¥ndsvisninger pÃ¥ nyttLast alle forhÃ¥ndsvisninger pÃ¥ nyttHusk gjeldende verktøy, mønster, farge og pensel mellom GIMP-økter.Eksternt bildeFjern kanalFjern _hengende oppføringerOpphev flytende utvalgFjern innrettingslinjeFjern lagFjern parasitt fra bildeFjern parasitt fra elementFjern bane_Fjern oppføringFjern hengende oppføringerFjern flytende utvalgFjern parasittFjern valgt oppføringFjern valgt filter fra listen over aktive filtre.Fjerning av snarvei feilet.Endre navn pÃ¥ kanalEndre navn pÃ¥ lagEndre navn pÃ¥ baneGi alternativer for lagring nytt navnEndre navn pÃ¥ tekstlagEndre navn pÃ¥ elementRender strøkReorganiser kanalReorganiser lagReorganiser baneGjenta sisteGjenta:Erstatt dette utvalgetKopierKopier graderingssegmentKopier graderingsutvalgKopier segmentKopier utvalgFlytt av kanalFlytt lagFlytt vektorerLast skrifttyper pÃ¥ nyttNullstill verktøysalternativerNullstill _alle verktøysalternativer...Nullstill alle filterNullstill _alle filter...Nullstill alle verktøysalternativerNullstill valgt filter til forvalgte verdierNullstill til standardverdierNullstill verktøyenes rekkefølge og synlighetEndre størrelseEndre størrelse pÃ¥ kanalEndre størrelse pÃ¥ bildeEndre størrelse pÃ¥ lagEndre størrelse pÃ¥ baneEndre størrelse pÃ¥ tekstlagEndre størrelse pÃ¥ bildeEndre elementets størrelseEndre vindustørrelse ved _zoomEndre vindustørrelse ved endring av bilde_størrelseSkalerer...Endre oppløsningOppløsning:RessursbrukRessurskonfigurasjonGjenopprett alternativer fra...Gjenopprett lagrede hurtigtaster nÃ¥r GIMP startes opp.Begrens redigering til mangekanterReverserForkastForkast '%s' til '%s'?Forkast bildeGjenoppretting feilet. Ingen filnavn assosiert med dette bildet.Forkasting til «%s» feilet: - -%s_Høyre endepunkts fargeHøyrejustertRoterRotér 90 grader _mot klokkenRotér _90 grader med klokkenRotér kanalRoter lagRoter baneRoter tekstlagRotér _180 graderRotér bildeRoter lag eller utvalgRoterer...RotasjonsinformasjonRund_ForskyvVis _rutenett_Krymp..._Spisser_Bytt fargerLagre h_øyre farge tilPrøve gjennomsnittPrøve sammenflettetMet.:MetningLagreLagre «%s» som POV-strÃ¥leLagre kurverLagre feillogg til filLagre bildeLagre innstillinger for inndataenheter _nÃ¥Lagre tastatursnarveier _nÃ¥Lagre nivÃ¥erAlternativer for lagringLagre vindusposisjoner _nÃ¥Lagre _alle feil til fil...Lagre _utvalg til fil...L_agre som...Lagre en _kopi...Lagre en kopi av bildetLagre alle feilLagre som _POV-strÃ¥le...Lagre som _mal...Lagre endrede hurtigtaster nÃ¥r GIMP avsluttes.Lagre kurveinntillingene til filLagre enhetsstatusLagre gradering som POV-strÃ¥leLagre nivÃ¥inntillinger til filLagre alternativer...Lagre utvalgLagre utvalg til kanalLagre endringer til bildet «%s» det lukkes?Lagre menyenes posisjoner og størrelser nÃ¥r GIMP avsluttes.La_gre til kanalLagret alternativerLagrer «%s» -Feil under lagring av «%s». - -%sLagrer bilderSagtann-bølgeSkalerbart SVG-bilde (*.svg)SkalerSkalér kanalSkaler bildeSkaler lagSkaler baneSkalér tekstlagSkalér bildeSkalér elementSkaleringsforhold X:Skaleringsforhold Y:Skaleringsforhold:Skaler lag eller utvalgSkaleringSkaleringsinformasjonÃ… skalere bildet til den valgte størrelsen vil gjøre at det bruker mer minne enn det som er innstilt om «maksimal bildestørrelse» i innstillingsvinduet (nÃ¥værende verdi er %s).Skalering av bilde til den valge størrelsen vil krympe noen lag helt vekk.Skalerer...SaksSkjermScript-Fu-mapperSkriptRull nedRull ned (alt)Rull ned (kontroll + alt)Rull ned (kontroll)Rull ned (skift + alt)Rull ned (skift + kontroll + alt)Rull ned (skift + kontroll)Rull ned (skift)Rull venstreRull venstre (alt)Rull venstre (kontroll + alt)Rull venstre (kontroll)Rull venstre (skift + alt)Rull venstre (skift + kontroll + alt)Rull venstre (skift + kontroll)Rull venstre (skift)Rull høyreRull høyre (alt)Rull høyre (kontroll + alt)Rull høyre (kontroll)Rull høyre (skift + alt)Rull høyre (skift + kontroll + alt)Rull høyre (skift + kontroll)Rull høyre (skift)Rull oppRull opp (skift + kontroll)Rull opp (kontroll + alt)Rull opp (kontroll)Rull opp (skift + alt)Rull opp (skift + kontroll + alt)Rull opp (skift + kontroll)Rull opp (skift)VelgVelg altVelg penselmapperUtvalg etter fargeVelg etter fargeVelg kontrollerens hendelsehandlingVelg mapper for omgivelserVel fil_type (%s)Velg skrifttypemapperVelg graderingsmapperVelg mapper for modulerVelg ingenVelg palettmapperVelg mønstermapperVelg mapper for programtilleggVelg primærfarge som skal endresVelg omrÃ¥de som skal endresVelg Script-Fu-mapperVelg kildeVelg mellomlagermappeVelg mappe for midlertidige filerVelg temaVelg temamapperVelg zoomforholdVelg n_ederste lagVelg _egendefinert farge...Velg _neste lagVelg _forrige lagVelg _øverste lagVelg altVelg etter fargeVelg sammenhengende omrÃ¥derVelg egendefinert fyllfarge for lerretVelg elliptiske omrÃ¥derVelg omrÃ¥der etter frihÃ¥ndVelg ingenVelg palettfilVelg rektangulære omrÃ¥derVelg omrÃ¥der etter fargeVelg former fra bildetVelg mellomlagermappeVelg antall ganger du ønsker -Ã¥ kopiere valgt segment.Velg antall ganger -utvalget skal kopieres.Velg antall enhetlige deler -du vil dele segmentene i utvalget i.Velg antall enhetlige deler -du vil dele valgt segment i.Velg gjennomsiktige omrÃ¥derVelg nettleserUtvalg til _baneUtvalgUtvalgsbehandlerMeny for utvalgsbehandlerUtvalgsmaskeProsedyrer for utvalgsverktøyUtvalgsmaskeUtvalg til bane (_Avansert)Utvalg til baneUtvalg: Utvalg: ADDUtvalg: INTERSECTUtvalg: REPLACEUtvalg: SUBTRACTFølsomhetSett fyllfarge for lerretSett kanalfargeSett kanalugjennomsiktighetSett fargekartVelg egendefinert fyllfarge for lerretSett størrelse pÃ¥ bildelerretVelg bildets utskriftsoppløsningGjør elementet eksklusivt lenketGjør elementet eksklusivt synligAngi størrelse pÃ¥ laggrenseOpprett navn fra _tekstAngi ugjennomsiktighetVelg bakgrunnsfargeVelg forgrunnsfargeSett element lenketAngi lagmodusAngi lagets ugjennomsiktighetAngi gjennomsiktighetsbevaringAngir en øvre grense for minne som brukes for hvert bildet til angrehistorikk. Uavhengig av denne innstillingen vil alltid det antallet som er konfigurert kunne angres.Angir nettleseren som blir brukt av hjelpesystemet.Velger lerretfarge hvis lerretmodus er satt til brukervalgt farge.Setter hvilken ekstern nettleser som skal brukes. Kan være en absolutt filsti eller en kjørbar fil som befinner seg i brukerens søkesti. Hvis kommandoen inneholder '%s' vil den bli erstattet med gjeldende URI, ellers vil URI bli lagt til kommandoen etter et mellomrom.Angir interpolasjonsnivÃ¥ brukt til skalering og andre transformasjoner.Angir hvordan gjennomsiktiget vises i bilder.Angir et minimalt antall operasjoner som kan angres. Flere nivÃ¥er holdes tilgjengelige til angrestørrelsen er nÃ¥dd.Angir markørens modus.Angir skjermens horisontale oppløsning, i punkter per tomme. Hvis satt til 0, tvinges X-tjeneren til Ã¥ bli spurt om bÃ¥de horisontal og vertikal oppløsningsinformasjon.Angir skjermens vertikale oppløsning, i punkter per tomme. Hvis satt til 0, tvinges X-tjeneren til Ã¥ bli spurt om bÃ¥de horisontal og vertikal oppløsningsinformasjon.Angir markørenes pikselformat.Angir standard størrelse pÃ¥ forhÃ¥ndsvisning av lag og kanaler.Angir størrelsen pÃ¥ sjakkbrettet som brukes til Ã¥ vise gjennomsiktiget.Angir størrelsen til navigasjonsforhÃ¥ndsvisningen som er synlig i det nederste høyre hjørnet av bildevinduet.Angir størrelsen pÃ¥ forhÃ¥ndsvisningene i angrehistorikken.Angir størrelsen pÃ¥ miniatyrbildene som vises ved Ã¥pning. Merk at GIMP ikke kan lagre miniatyrbilder hvis forhÃ¥ndsvisning av lag ikke er slÃ¥tt pÃ¥.Angir mellomlagerfilas plassering. GIMP bruker flisbasert minnereservering. Mellomlagerfila blir brukt til hurtig og enkelt lagre og hente fliser til og fra disk. Vær oppmerksom pÃ¥ at mellomlagerfiler kan bli veldig store dersom GIMP brukes pÃ¥ store bilder. Dersom mellomlagerfila befinner seg pÃ¥ et lagringsomrÃ¥de som nÃ¥s over nettverk kan ytelsen reduseres kraftig. Av disse Ã¥rsakene kan det være ønskelig Ã¥ plassere fila i mappen «/tmp».Angir hvor midlertidige filer skal lagres. Filer vil bli lagret her mens GIMP brukes. Mesteparten av filene forsvinner nÃ¥r GIMP avsluttes, men noen filer vil ogsÃ¥ kunne ligge igjen slik at det kan være lurt om dette er en mappe som ikke deles med andre brukere.Angir teksten som skal vises i bildevinduets statuslinjer.Angir teksten som skal vises i bildevinduets tittelfelt.Angir om GIMP skal opprette forhÃ¥ndsvisning av lag og kanaler. ForhÃ¥ndsvisning i lag- og kanalvinduene er kjekke Ã¥ ha, men de kan gjøre at ting gÃ¥r tregere ved arbeid pÃ¥ store bilder.SkyggetypeSkyggerFormForm:Formet (vinklet)Formet (prikket)Formet (sfærisk)Gjør skarpereSkjerp kanalSkjerp utvalgForskyvForskyvning størrelsesorden X:Forskyvning størrelsesorden Y:Forskyv laget eller utvalgetInformasjon om forskyvningForskyvning...Korte strekerSnarveiSvarvei «%s» er allerede tatt av «%s» fra «%s»-gruppa.Vis lagmaskeVis _linjalerVis s_tatuslinjeVis _rullefeltVis innrettings_linjerVis _laggrenseVis _menylinjeVis _utvalgVis _penselomrissVelg _forgrunns- og bakgrunnsfargeVis innrettings_linjerVis _laggrenseVis _menylinjeVis _linjalerVis aktive _pensler, mønstre og graderingerFølg aktivt _bildeVis _rutenettVis hjelpe_knapperVis bilde_størrelseVis interaktiv grenseVis minnebrukVis meny_hurtigtaster (tilgjengelighetstaster)Vis tegneverktøymarkørVis _utvalgVis s_tatuslinjeVis _rullelinjerVis tips neste gang GIMP starterVis tips ved opp_startVis verktøy_tipsVis zoom-prosentVis zoomforholdKrymp kanalKrymp utvalg_Pakk sammenKrymp fra bildekantenKrymp utvalget medPakk sammenStørrelseStørrelse i minne:Størrelse pÃ¥ _miniatyrfiler:Størrelse:Hopper over «%s»: feil versjon av GIMP-protokollen.LitenMindre forhÃ¥ndsvisningerJevnJevn ut kanterTilsmussTilsmuss bildeFest til innrettingsl_injerFest til r_utenettMykt lysSammenhengendeKildeMellomromMellomrom:Spredte prikkerSpesiell filSpesifiserer hvordan omrÃ¥det rundt bildet skal vises.Farten til de marsjerende maurene i utvalgsomrisset. Denne verdien oppgis i millisekunder (lavere tid indikerer raskere marsjering).Hastighet:Sfærisk (_minkende)Sfærisk (_økende)Spisser:Spiral (mot klokken)Spiral (med klokken)DelDel graderingssegment enhetligDel graderingssegmenter enhetligDel segmentet enhetligSplitt segmentet _enhetlig...Del segmentet ved _midtpunktetDel segmenter enhetligDel segmenter _enhetlig...Del segmentene ved _midtpunktetFirkantetSt_atus og tekstSta_belStandardStarter utvidelserStarter utvidelse: «%s» -Tilstand:Statiske fargerStatiske grÃ¥tonerStatus og beskrStatus og tekstStandardavvik:Stiplinger_Strek opp bane_Strek opp bane...Strek opp kanalStrøkbaneStrek opp utvalgStrek opp linjeStrek opp baneStrek opp bane med verdier fra sistgangStrek opp bane...Strek opp utvalget med verdier fra sistgangStrek opp utvalg...Strek opp med et tegneverktøyStil pÃ¥ kantlinja rundt statuslinjetekstenTrekk fraTrekk fra dette utvalgetSupersamplingMellomlagermappe:_Verktøy_Tekst_TekstverktøyMappe for midlertidige filer:MalerMalmenyMidlertidig prosedyreAvsllutter programtillegg: «%s» -TekstTekstfargeTekstbehandlerTekstlagTekst endretTekstprosedyrerGIMPGIMP hjelpelesertillegget ser ut til Ã¥ mangler i installasjonen din.Den aktive penselen. -Klikk for Ã¥ Ã¥pne penselmenyen.Den aktive graderingen. -Klikk for Ã¥ Ã¥pne graderingsmenyen.Det aktive bildet. -Klikk for Ã¥ Ã¥pne bildemenyen.Det aktive mønsteret. -Klikk for Ã¥ Ã¥pne mønstermenyen.Bakgrunnsfargen til rutenettet, brukes kun i dobbelstreket linjestil.Mengdetolkeren «%s» er ikke tilgjengelig, mengdemodus slÃ¥tt av.Filnavnets tegnkoding kan ikke konverteres til UTF-8: %s - -Se til at verdien for miljøvariabelen G_FILENAME_ENCODING er riktig.Filnavnet «%s» kunne ikke bli konvertert til en gyldig URI: - -%sForgrunnsfargen til rutenettet.Filen «gimprc» brukes til Ã¥ lagre personlige innstillinger som virker inn pÃ¥ GIMPs standardoppførsel. Stier til søking etter pensler, paletter, graderinger, mønstre, programtillegg og moduler kan ogsÃ¥ angis her.Horisontal bildeoppløsningLaget du valgte er et tekstlag som har blitt endret ved hjelp av andre verktøy.Dersom du endrer laget med tekstverktøyet vil de øvrige endringene forkastes. - -Du kan endre laget eller opprette et nytt tekstlag fra dets tekstegenskaper.Navnet pÃ¥ mappen som inneholder GIMPs brukeroppsett kan ikke bli konvertert til UTF-8: %s - -Sannsyligvis fordi filsystemet ditt lagrer filer i en annen tegnkoding enn UTF-8 og ikke har fortalt Glib om dette. Se til at miljøvariabelen G_FILENAME_ENCODING er satt rett.sessionrc brukes til Ã¥ lagre informasjon om Ã¥pne menyer ved forrige avslutning av GIMP. Du kan konfigurere GIMP til Ã¥ gjenÃ¥pne disse vinduene i lagret posisjon.Miniatyrbildet i Ã¥pnevinduet vil bli automatisk oppdatert hvis fila som blir vist er mindre enn størrelsen angitt her.Hurtigbufring av fliser blir brukt for Ã¥ sikre at GIMP ikke roter bort fliser mellom minne og disk. Valg av høye verdier vil føre til at GIMP bruker mindre diskplass, men mer minne. Tilsvarende vil en mindre flisbuffer gjøre at GIMP bruker mer diskplass og mindre minne.Enheten som brukes pÃ¥ koordinater nÃ¥r ikke piksel-for-piksel-modus brukes.Unitrc brukes til Ã¥ lagre din brukerenhetsdatabase. Du kan definere ekstra enheter og bruke dem akkurat som du bruker de innebygde enhetene tommer, millimeter, punkter og picas. Denne filen overskrives hver gang du avslutter GIMP.Endre vertikal bildeoppløsningVindustypeforslag til dokkvinduer. Dette kan pÃ¥virke mÃ¥ten vindushÃ¥ndtereren dekorerer og hÃ¥ndterer dokkvinduer.Vindustypeforslag til verktøykassen. Dette kan pÃ¥virke hvordan vindushÃ¥ndtereren dekorerer og hÃ¥ndterer verktøykassevinduet.TemaTemamapperTemaDet er %d bilder med ulagrede endringer:Ikke nok synlige lag til Ã¥ slÃ¥ sammen nedover.Det er alltid en avveiing mellom minnebruk og fart. I de fleste tilfeller vil GIMP favorisere fart over minnebruk. Hvis lavt minnebruk er viktigere kan du aktivere denne innstillingen.Det er ikke noe aktivt lag eller noen aktiv kanal Ã¥ kopiere fra.Det er ikke noe aktivt lag eller noen aktiv kanal Ã¥ klippe fra.Det er ikke noe aktivt lag eller en aktiv kanal Ã¥ tegne pÃ¥Det er ikke noe aktivt lag eller noen aktiv kanal Ã¥ tegne pÃ¥.Det er ett bilde med ulagrede endringer:Det skulle vært en fil som het «%s». Kontroller installasjonen for feil.En feil oppsto ved tolking av din '%s'-fil. Benytter standardverdier. En sikkerhetskopi av konfigurasjonen din er opprettet pÃ¥ '%s'.Denne filen inneholder en samling av standard mediastørrelser som fungerer som bildemaler.Denne mappen blir gjennomsøkt etter bildemaler.Denne mappen blir gjennomsøkt etter tema installert av brukeren.Denne mappen brukes til Ã¥ lagre skrifttyper som bare skal kunne brukes i GIMP. NÃ¥r GIMP søker etter skrifttyper kontrolleres denne mappen i tillegg til systemmappene for skrifttyper. Hvis du har skrifttyper som skal kunne brukes i andre programmer ogsÃ¥ mÃ¥ du plassere dem i systemmappen for skrifttyper.Denne mappen brukes til Ã¥ lagre parameterfiler for kurveverktøyet.Denne mappen brukes til Ã¥ lagre parameterfiler for nivÃ¥verktøyet.Denne mappen brukes til Ã¥ lagre verktøysalternativer.Denne mappen brukes til Ã¥ lagre brukeropprettede og installerte skript. NÃ¥r GIMP søker etter skript kontrolleres denne mappen i tillegg til systemmappen for skript.Denne mappen brukes til Ã¥ lagre brukerdefinerte, midlertidige, eller DLL-moduler som ikke støttes av systemet. NÃ¥r GIMP under oppstart søker etter DLL-moduler, kontrolleres denne mappen i tillegg til systemmappen for moduler.Denne mappen brukes til Ã¥ lagre brukerdefinerte, midlertidige, eller andre utvidelser av omgivelsene for programtillegg som ikke støttes av systemet. NÃ¥r GIMP søker etter endringer i omgivelsene for programtillegg kontrolleres denne mappen i tillegg til systemmappen for omgivelser.Denne mappen brukes til Ã¥ lagre brukerdefinerte, midlertidige, eller andre programtillegg som ikke støttes av systemet. NÃ¥r GIMP søker etter programtillegg kontrolleres denne mappen i tillegg til systemmappen for programtillegg.Denne mappen kan brukes til Ã¥ lagre brukerdefinerte pensler. NÃ¥r GIMP søker etter pensler kontrolleres denne mappen i tillegg til systemmappen for GIMP-pensler.Dette er en undermappe som kan brukes til Ã¥ lagre brukerdefinerte graderinger. NÃ¥r GIMP søker etter graderinger kontrolleres denne mappen i tillegg til systemmappen for graderinger.Denne mappen brukes til Ã¥ lagre brukerdefinerte paletter. NÃ¥r GIMP søker etter paletter kontrolleres denne mappen i tillegg til systemmappen for paletter.Denne mappen brukes til Ã¥ lagre brukerdefinerte mønstre. NÃ¥r GIMP søker etter mønstre kontrolleres denne mappen i tillegg til systemmappen for mønstre.Denne mappen blir brukt til Ã¥ midlertidig lagre angrehistorikk for Ã¥ redusere minnebruk. Hvis GIMP drepes, kan filer som har formen «gimp<#>.<#>» bli liggende igjen i denne mappen. Disse filene er ubrukelige mellom økter og kan slettes uten omtanke.Denne mappen vil vil inneholde et antall viktige filer. Klikk pÃ¥ en av filene eller mappene i treet for Ã¥ fÃ¥ mer informasjon om dem.Dette er avstanden i piksler hvor innrettings- og rutenettstilpassing aktiveres.Dette programmet blir distribuert i hÃ¥p om at det er nyttig, men UTEN NOEN FORM FOR GARANTI, ikke en gang noen garanti for Ã¥ være MARKEDSDYKTIG eller TILPASSET NOEN BESTEMT BRUK. Se GNU General Public License for mer informasjon.Dette programmet er fri programvare. Du kan redistribuere det og/eller endre det under betingelsene gitt i GNU General Public License som er utgitt av Free Software Foundation, enten versjon 2 av lisensen, eller (hvis du velger det) enhver senere versjon.Dette tekstfeltet er begrenset til %d tegn.Dette verktøyet har ingen alternativerTerskelTerskel virker ikke pÃ¥ indekserte lag.Terskel:Miniatyr %d av %dFlisbuffer_størrelse:Flisbufferstørrelse:Vending:Ekstra LitenTittel og status_Til baneLe_kerSlÃ¥ av/pÃ¥ hurtigmaskeSlÃ¥ av/pÃ¥ _hurtigmaskeFor mange feilmeldinger!VerktøysalternativerVerktøysalternativmenyVerktøybryter %sVerktøys_alternativerVerktøyikonVerktøyikon med «trÃ¥dkors»VerktøykasseVerktøykasseVerktøykassemenyVerktøyVerktøymenyVerktøy som tryllestav og malingspann finner regioner basert pÃ¥ en frøfyllingsalgoritme. Frøfylling starter pÃ¥ den valgte pikselen og utvider omrÃ¥det i alle retninger helt til forskjellen i pikselintensitet til originalen er større enn den spesifiserte terskelen. Denne verdien representerer forvalgtterskelen.Gjennom_siktighetOverfør gjennomsiktighet til maskeTransformérTransformér kanalTransformasjonsretningTransformasjonslagTransformér baneTransformér tekstlagProsedyrer for transformasjonsverktøyTransformér lagTransformér baneTransformér utvalgTransformasjonTransformasjonsprosedyrerTransformérer...Oversatt avGjennomsiktighetGjennomsiktighets_type:Triangulær bølgeSanne fargerTypeType %sSkriv inn en ny hurtigtastSkriv inn en ny hurtigtast, eller tykk «Tilbake» for Ã¥ sletteKunne ikke legge til lagmaske siden laget allerede har en.Kunne ikke klippe ut eller kopiere fordi den valgte regionen er tom.Kan ikke Ã¥pne en mellomlagerfilprøve. For Ã¥ unngÃ¥ datatap, se til at plassering og rettigheter for mellomlagermappen angitt i brukervalgene (for tiden «%s») er riktige.Kunne ikke Ã¥pne mellomlagerfila. GIMP har gÃ¥tt tom for minne og kan ikke bruke mellomlagerfila. Noen deler av bildene dine kan være ødelagt. Prøv Ã¥ lagre alt arbeid ved bruk av foskjellige filnavn, start GIMP pÃ¥ nytt og sjekk lokasjonen til mellomlagermappa i innstillingene dine.Ikke i stand til Ã¥ kjøre %s tilbakekall. Programtillegget kan ha feilet.UdefinertAngreAngre-historikkAngre_historikkEnheterUkjentUkjent filtypeUkjent type palettfil: -%sFrigiUten navnUten navnBruk «_punkt for punkt» som forvalgBruk _dynamiske tastatursnarveierBruk _nettleser i stedetBruk alle synlige lag ved krymping av utvalgBruk svarthvitt (1-bits) -palettBruk farge fra graderingBruk egendefinert palettBruk infovinduBruk nettoptimert palettBrukerinstallasjonsloggBrukergrensesnittVerktøyvinduVerdiVerdi:Endring av vektorerVersjon %s leveres til deg avVersjon:VertikalVertikal forskyvning av den første linja i rutenettet. Dette kan være et negativt tall.Vertikal linjeavstand for rutenettet.Veldig storVeldig litenVisVis som _rutenettVis som _listeVis som rutenettVis som listeSynlig klasse:Synlig dybde:Advarsel: Klarte ikke Ã¥ laste data: - -«%s»Advarsel: Klarte ikke Ã¥ lagre data: - -«%s»NettleserNettleserVelkommen til -GIMP %d.%d-brukerinstallasjonenGjør at menyen automatisk følger bildet du jobber pÃ¥.Gjør at GIMP vil vise snarveistaster i menyer.Gjør at alle tegneverktøy viser gjeldende pensels omriss.Hvis aktivert, vil et bilde bli aktivt nÃ¥r bildevinduet mottar fokus. Dette er nyttig for vindushÃ¥ndtere som bruker «klikk for fokus».Gjør at dialoger vil vise en hjelpekanpp som gir tilgang til den relaterte hjelpesiden. Uten denne knappen, er hjelpesiden fremdeles tilgjengelig ved Ã¥ trykke F1.Gjør at menyer kan løsnes.Gjør at F1-knappen vil Ã¥pne en hjelpeleser.Gjør at GIMP ikke vil lagre bilder som er uendret.Gjør at GIMP vil bruke egne informasjonsvinduer for hver bildevisning.Er dette slÃ¥tt pÃ¥, vil X-tjeneren bli spurt etter musepekerens posisjon ved hver eneste bevegelse, framfor Ã¥ stole pÃ¥ posisjonshintet. Det betyr at tegning med store pensler vil bli mer presist, men det kan føre til dÃ¥rligere ytelse. Snodig nok vil denne funksjonen føre til bedre ytelse pÃ¥ noen X-tjenere.Gjør at markøren vil bli vist over bildet nÃ¥r et tegneverktøy brukes.Gjør at rutenettet er synlig som standard. Dette kan ogsÃ¥ endres med «Vis->Vis rutenett»-kommandoen.Gjør at innrettingslinjene er synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis innerttingslinjer»-kommandoen.Vil endre størrelsen pÃ¥ bildevinduet automatisk nÃ¥r du zoomer inn og ut i bildet.Vil endre størrelsen pÃ¥ bildevinduet automatisk etter som endringer skjer i det faktiske bildet.Gjør at laggrensen er synlig som standard. Dette kan ogsÃ¥ endres med «Vis->Vis laggrense»-kommandoen.Gjør menylinja synlig som standard. Dette kan ogsÃ¥ endres med «Vis->Vis menylinje»-kommandoen.Gjør linjalene synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis linjaler»-kommandoen.Gjør rullefeltene synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis rullefelt»-kommandoen.Gjør at valgt pensel vil bli brukt for med alle verktøy.Gjør at valgt gradering vil bli brukt med alle verktøy.Gjør at valgt mønster vil bli brukt med alle verktøy.Gjør at utvalg er synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis utvalg»-kommandoen.Gjør statuslinja synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis statuslinje»-kommandoen.Hvis pÃ¥slÃ¥tt, vil dette gjøre at hvert piksel i et bilde blir koblet til en piksel pÃ¥ skjermen.Gjør at hele bildet er synlig nÃ¥r det Ã¥pnes. Ellers vil det bli vist med en 1:1-skala.Gjør at du kan endre hurtigtaster for menyvalg ved Ã¥ trykke en tastekombinasjon mens menyvalget er markert.HvitHvitbalanse virker bare pÃ¥ RGB-fargelag.BreddeBredde:VindushÃ¥ndteringVindushÃ¥ndteringshintVindusposisjonerSkriver «%s» -XXCF-feil: ustøttet XCF filversjon %d møttXCF-advarsel: versjon 0 av XCF filformatet -lagret ikke indekserte fargekart riktig. -Erstatter grÃ¥tonekart.YGulGul:Du prøver Ã¥ opprette et bilde med størrelse %s.Noen menyer kan du slippe i dokken.Du skal ha mottatt en kopi av GNU General Public License sammen med dette programmet. Hvis ikke, skriv til Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du mÃ¥tte starte GIMP pÃ¥ nytt for at disse endringene skal tre i kraft:Din GIMP-installasjon er uferdig:Dine innstillinger om inndataenheter vil bli nullstilt til standardverdiene neste gang du starter GIMP.Dine tastatursnarveier til bli nullstilt til standardverdiene neste gang du starter GIMP.Ditt vindusoppsett vil bli nullstilt til standardverdiene neste gang du starter GIMP.Oppførsel ved zooming og endring av størrelseZoom 1:1Zoom altZoom innZoom utZoomforholdZoomforhold:Zoom _altZoom _innZoom _utZoom altZoom faktor: %d:1Zoom bildet nÃ¥r vindusstørrelsen endresZoom innZoom inn og utForminskeZoom:[ Basisbilde ]_Om_Hent_Legg til farge fra bakgrunnen_Legg til farge fra forgrunnen_Legg til fane_Legg til i utvalg_Avanserte alternativer_Luftpensel_AltFor_ankre lag_Antialiasing_VilkÃ¥rlig Rotasjon..._Artistisk_Aspekt_Auto_B_Bakgrunnsfarge_Bakgrunnsfarge:_Svart (helt gjennomsiktig)_Blandingstype for segment_Blandingsfunksjon for utvalget_Utydeliggjør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og graderinger_Bøttefylling_Buffere_Etter farge_Etter fargeutvalg_C_Endestil:_Kanaler_Tøm feil_Tøm angre-historikk_Klone_Lukk_Lukk fane_Skyer_Fargeverktøy_Farger_Still inn farge og ugjennomsiktighet..._Kontekst_Kontekst hjelp_Kopiér_Kopier navngitt_Opprett bilde fra mal..._Beskjær og endre størrelse_Beskjær bilde_Bøyd_Kurver...Farge for _mørke ruter_Standard farger_Slett pensel_Slett buffer_Slett kanal_Slett farge_Slett gradering..._Slett bilde_Slett lag_Slett palett_Slett bane_Slett mønster..._Slett lagrede alternativer_Slett segment_Slett utvalg_Slett malMindre _metningLø_sne fane_Enhetsstatus_Menyer_Forkast endringer_Forkast informasjon om tekstFor_vrengninger_Punkt for punkt_KopiérR_edigerR_ediger pensel...R_ediger kanalattributter...R_ediger farge...R_ediger gradering...R_ediger lagattributter...R_ediger palett...R_ediger baneinnstillinger...R_ediger mønster..._Rediger mal..._Ellipseutvalg_SlÃ¥ pÃ¥ lag- og kanalforhÃ¥ndsvisninger_Enorm_Jevn ut_Viskelær_Forgrunnsfarge_Fil_Fyll med:_Tilpass bilde i vindu_Flat ut bilde_Vend_Vend segment_Vend utvalg_Flyt_Skrift_Skrifter_Forgrunnsfarge:_Fritt utvalg_GGe_nerelt_Gigantisk_Gradering_Graderinger_GrÃ¥tone_GrÃ¥tonekopi av lag_Øk...Innrettings_linjer_Hardhet_Hjelp_Horisontal:_Glød:Ekstra sto_r_Ikon_Ikon:_Bilde_Bilder_Importer_Importer palett..._Indeksert..._Informasjonsvindu_Kryss med utvalg_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og baner_Venstre endepunkt_Venstre nabos høyre endepunkt_NivÃ¥er...Farge for _lyse ruter_Lyseffekter_Lysverdi:Strek_stil:_Lineær_LenketHent _venstre farge fra_Senk kanal_Senk lag_Senk bane_M_Manuelt_Kart_MaskerMaske til _utvalg_Maksimalt antall farger:_MÃ¥l_Middels_Flett sammen paletter..._Flett sammen importerte baner_Overfør brukerinnstillingene fra GIMP 2.0D_iverse ting_Kantgrense:_Modus_ModulhÃ¥ndterer_Flytt_Navn:N_atur_Ny pensel_Ny kanal_Ny kanal..._Nytt innslag..._Ny gradering_Nytt lag_Nytt lag..._Ny palett_Ny bane_Ny bane..._Nytt mønster_Ny mal..._Ny visning_Ny..._Neste tips_Støy_IngenForskyvning..._Ugjennomsiktighet_Ã…pne bilde_Ã…pne..._Fyllfarge_Tegneverktøy_Malerpensel_Palett_Lim inn_Lim inn buffer_Lim inn navngitt..._Baner_Mønster_Perspektiv_Posterisér..._Innstillinger_ForhÃ¥ndsvisStørrelse pÃ¥ _forhÃ¥ndsvisning_Forrige tips_Utskriftsstørrelse..._Egenskaper_Hurtigmaske aktiv_Avslutt_R_RGB_Radius_Løft kanal_Løft lag_Løft bane/_Løft visninger_Løft eller Ã¥pne bilde_Tilordne snarvei pÃ¥ nytt_Rektangelutvalg_Gjenta_Gjenta %s_Oppdater pensler_Oppdater graderinger_Oppdater paletter_Oppdater mønstre_Fjern ubrukte farger fra endelig palett_Rendring_Erstatt_Kopier segment..._Kopier utvalg..._Last skrifttyper pÃ¥ nytt_Nullstill rekkefølge og synlighet_Nullstill lagrede innstillinger for inndataenheter_Nullstill lagrede tastatursnarveier til standardverdier ved oppstartNullstill lagrede vindusposisjoner til standardverdier_Gjenopprett alternativer fra_Høyre endepunkt_Høyre nabos venstre endepunkt_Rotér_Metning:_LagreLagre v_enstre farge til_Lagre alternativer til_Lagre innstillinger for inndataenheter ved avslutning_Lagre tastatursnarveier ved avslutning_Lagre vindusposisjoner ved avslutning_Skalér_Skalér bilde..._Skalér lag..._Skalér importerte baner sÃ¥ de passer bildestørrelsen_Velg_Utvalg_Utvalgsbehandler_Utvalgsverktøy_FormGjør _skarpereVis bilde_utvalg_Vis i verktøykasse_Sinusformet_Liten_Tilsmuss_Innrettingsdistanse:_Strek opp utvalg_Strek opp utvalg_Trekk fra utvalg_Fanestil_Mal:M_aler_Tekst_Terskel...Ekstra lite_n_Dagens tips_Verktøy_Verktøy_Overfør lagets alfakanal_Transformér_Transformasjonsverktøy_Angre_Angre %s_Vertikal:_Vis_SynligNe_tt_Nettleser som skal brukes:_Hvit (helt ugjennomsiktig)_Hvitbalanse_Bredde:_Bryt rundt_X-oppløsning:_X:_Utvid_Y_Y-oppløsning:_Y:_Zoom_Zoom (%s)fargerkopierdpiforventet «ja» eller «nei» for bolsk tegn %s, fikk «%s»fatal feil i tolkinggrÃ¥tonegrÃ¥tone-tomtommetommerindeksertindeksert-tomugyldig UTF-8-strengugyldig verdi «%ld» for ikontypeugyldig verdi «%ld» for tegn %sugyldig verdi «%s» for ikontypeugyldig verdi «%s» for tegn %smillimetermillimetreminuttenei/tprosentpicapicaspikselpikslerpiksler/%apiksler/%spunktpunktersekundenetips-locale:noKjartan Maraas -Sigurd Gartmann -Runar Ingebrigtsenverdi for tegn %s er ikke en gyldig UTF-8-strengunder lesing av «%s»: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/nl.gmo gimp-2.2.9/po/nl.gmo --- gimp-2.2.8/po/nl.gmo 2005-04-09 21:48:07.000000000 +0200 +++ gimp-2.2.9/po/nl.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,441 +0,0 @@ -Þ• ôH% Ì‘`ÂaÂ&wÂGžÂ9æÂG ÃAhÃNªÃiùÃ<cÄk Ä@ Å2MÅ;€ÅP¼ÅO Æ2]Æ9Æ-ÊÆ9øÆ;2Ç7nÇ ¦Ç°Ç -·Ç ÂÇ -ÌÇ -×Ç âÇîÇþÇ - ÈÈÈ+È -CÈNÈVÈ^ÈzȔȪÈ0±ÈâÈóÈÉÉÉ -.É9É@ÉHÉPÉ _É mÉ yÉ -‡É -’É É ªÉ¶É ÆÉ ÒÉÞÉ ãÉ ïÉKüÉ…HÊ.ÎÊ1ýÊ!/ËQËcËjËyË€ËË¦ËªË½Ë -ÏË ÚËæË üË -ÌÌ(Ì ;ÌEÌTÌ -]ÌhÌẘ̴̢ÌÆÌÕÌ*ëÌ6ÍMÍ`Í}͕͞ͻÍÚÍïÍÎÎ6ÎKÎ_ÎsÎÎ -©Î´ÎÅÎÍÎßÎèÎÏÏ $Ï .Ï ;ÏEÏUÏ1jÐ3œÐÐÐÖÐéЋðÐ -|чѡѷÑÑÑØÑ çÑ -ôÑÿÑÒ"Ò2ÒACÒJ…ÒÐÒ<ãÒ Ó .Ó<ÓLÓeÓ}ÓÓ•ÓšÓ ´ÓÀÓÓÓÜÓóÓÔ Ô$Ô<Ô -EÔPÔaÔzÔ‘Ô&§Ô$ÎÔóÔúÔ Õ -ÕÕÕ8Õ?ÕEÕ_Õ"gÕ ŠÕ–Õ›Õ¡Õ¦Õ -¶ÕÁÕÐÕáÕõÕ7 ÖAÖ GÖ TÖbÖkÖrÖ zÖ ‡Ö“Ö ›Ö¨Ö­Ö ²Öm¿Ö-× 2× @× N×X×a× ~×Œ×œ× £×C°×7ô×=,Ø@jØ6«ØdâØGÙeÙ3{Ù¯Ù<ÃÙ#Ú!$ÚFÚcÚ }Ú ‰Ú “ÚÚ¦Ú¾ÚÔÚìÚÛÛ(ÛEÛbÛÛ,–ÛÃÛÝÛåÛ øÛÜ &Ü GÜ!UÜwܒܨܽÜÒÜÛÜ äÜ òÜÿÜÝÝ!Ý 'Ý5ÝHÝ WÝdÝ.zÝ5©Ý5ßÝ7Þ8MÞ)†Þ,°ÞÝÞùÞß2.ß aß‚ßßO¹ßA à%Kà&qà4˜à1Íà#ÿà #á1á MáWáoá€á†áážá®á -½áÈáÐá Öáäá úáâ â02â câ oâ|â ƒâ â šâ§âÂâßâ+èâã'ã:ãCã Sãaã jãtã -|ã ‡ã‘ã$±ãÖãéãøã ä *äKäeäƒä–ä¦ä»äÑä àäîäþä åååå¦å·å ¿åÌåçåæ æ 5æ"Cæ"fæ‰æ¢æ«æ -½æ ÈæÖæ -õæ)ç*ç,Dçqç!‹ç#­ç#Ñç!õç%è=è.\è‹è ’èžè¯èÃèÖèéè#ÿè-#éQé%géé£é¸éÐé Õéãé -ýé -ê -êê6ê=êLê Qê _êlê|êŒê›êªê ±ê -¿êÊê-Ñêÿê ëë#ë 'ë1ë6ë<ëMë`ëtë…ë˜ë¨ë»ëÒë ãëïë ÿë ì ì&ì-ì3ì%9ì!_ì ìŽì¡ì¹ì ÍìÛìêìýì íí,í <íIí Xíeí uí‚í”í £í¯í¾íÖíñíî î/î -Hî -Sî-^î Œî˜î Ÿî­îµî ½îÊî -Òî Ýîêîýîï)ï1ïDïXï kïyï“ï œï¦ï ¶ïÀïÇï:åï? ð8`ð ™ð¥ð®ðÀð ÑðÛðêððð -ñ ñ ñ +ñ -8ñ Cñ Oñ -Yñ dñpñyññ œñ>ªñ éñ -òò,ò?òOòaòpò‚ò¢ò²ò ÂòÏò Þòëòðòóó4óHó^ó nóxó‹ó ó»ó Ñó -ßóêó -ô ô %ô3ô IôVô kôxôˆô£ô ²ô Àô -Ìô×ô*èôõõ.õ.Eõtõõ#™õ"½õàõýõ&öCö Yöeöyö,‚ö#¯öÓöÚö éö÷ö -÷'$÷L÷'i÷‘÷®÷Ä÷à÷Fú÷TAø–øø £ø°øÆøÙø ðøúø -ù ù*ù Gùhùwù†ù˜ùªù °ù¼ùÒù(Ûù$ú)ú0/ú=`ú6žú1Õú<û?DûA„û7Æû9þûc8ü0œü9ÍüBý=Jýfˆý>ïýC.þJrþg½þ %ÿ1ÿAÿSÿhÿmÿÿ ÿ ™ÿ¥ÿ ·ÿ Äÿ Òÿàÿ÷ÿ 3FYk‚’¦ÂÝú -)D[oƒ —¥ -¸ ÃÑ Ö -ã îø ) -:Ea iu… •£»×ó( IOV ^ksy -OŠ -Ú”åz‹¤» -Ñ Ü èô ý. 8K^ -m x „‘– ¥² Ê ×äõ  u/¥Ì·Å„cJ ®z»6 < rD · Ð ç ð  - - -* -? -&P -'w - Ÿ -B« - î - ø -     & - 2  D Q ` r x  ¡ ¥ ¿ Ü ñ     6  -@ K  T ^ e m  r   ‹ ¦ ½ Í  -Ò Ý Hå  -.  9 C S  -[ Hf !¯ BÑ 1'Y^ cpw‡ -—¢ § ³`¿C 1d0–Ç Í Úç -ù -&6Gfy ‘(Ÿ -È -ÓHÞ -' 2 -?J Q]l {ˆž³  ÏÝâ ê ÷ )0 8F _k€š°Ì ÐÞ ð þ K3e6™Ðß"õ ":N ]$gŒ§ ¼ Ê ë( +5)a*‹!¶Ø/ê!0*Al}'šÂÒâë -ý(:IRaz ¤Åàñú "5 Lmˆ ™£³Íá!ù7I P]t…š¹Ò-á(;? Yciy ‰•3›Ïàø  -- 8 DQoŽ®ÇÛì & -9Nbq@yº-Áï   ,J Q] b nz‘°Ïã ÷   0>V o{ -‘œ± ÇÕ íù -  / 8 @ S X ` i q ƒ ›  ± ¿ Ô ë  -ó #þ "!;!Q!W!_!|!™!¡! ¨! ¶! -Â! Í! Ú!è!ý!"*"C" X"e" t"‚"•"°""Ç"ê"ó" # )#7#=#B#H#$^#ƒ#•#©#¸# Ç#Ó# Û# é#õ#$ $ $'$ -?$ J$ -W$b$ r$|$‹$ ›$ ¥$¯$È$×$î$%"%>%P%W%`% s%%’%¬%±% -·% Â%Î%à%ô%& & $&.&7& H& U& _&k&ˆ&—&©& »& -È& Ó&Ý& ø& '' +' 7' C',O'|'!'±'Å'Ü')ù' #(0( H( V(b(g(v(}( Ž( š(¨(B»(Aþ(@)^)s) …))–)¥) µ)Â)Ô)é)ñ)„ù)~**Ÿ*§*°* -µ*À* Ô*â*ù* ++*+J+"i+!Œ+!®+Ð+è+, , #, -,7,G,V, ^,l,Vt,+Ë, ÷,(-*-"0-S- i- u--›-%³- -Ù- ä-î-ö-.. -).4. C.Q. Z.h. |. †.”.š.­. Â. Î. Ú.è.&/,)/ V/c/h/ -x/ -ƒ/Ž/«/É/è/00%070 -=0H0P0 -`0 k0x0‡0 0ž0¦0­0 Ê0Ö0 ë0!÷01 (161 L1X1i1„1”1¥1 ·1Ä1Ë1;Ó1?2O2^2f2z2Š2§2¡Ä24f3›3¤3-¬3 Ú4ä4í4 -ý4 5#565-I5 w5ƒ5˜5 ­5·5¿5Ö5ß5 -è5 ó5¥ÿ5¥6¹6Í6 Ö6ã6ì6ô6ú67 -(7 -37>7T7 -d7 o7 y7‡7‹7¥7 ¶7 À7!Ê7ì7 ð7þ78 !8.8I8P8 X8f8{8 ‘88 -°8»8Í8 à8î8 99 -"9-9?9[9x9}9 ƒ9!9²9!Ð9#ò9: ,: -9:9D:U~:=Ô:<;=O;;"“;¶;È; Ù;å;é;î;(ó;,<I<Y<k<|< -<˜<®<Ã<J×< "=/=>=W= q= ~=‹=¦= À= Ì=Ú=ò= >>;6>r>Œ> ›> ¨>´>Î> à> ì>ú> -? ? %?1?9? W?a?|?™?«?¿?Ò?ã?ö?@@5@G@\@+s@Ÿ@·@×@Þ@ í@ ú@ AA %A 2A>A#UA yA…A —A£A¸AÏA6çAB&B-B BB7OB‡B¥BºBÊBÑBèBþB C C&C8C LCYC wCƒC˜CžC -¥C -°C»C ÃCÐC åCóC -ùCD D D*D -ADLDlD ‰D•D§DÂDÞD ùDEE.E>ERE4gEœE¹EÌEåEFF$F.>FEmF³F ÄF ÒFßF ÷F GG.G 4G BG NG -ZGeG vG -‚GGœG «G¸GÕGÝG -ñGüGH HH &H2HDH`HvH#H´HÒH æHòHI I6I#PItI’I ¦I³IÆIãIúI$J:JYJ nJxJˆJ¢J¶J!ÎJðJ KK -%K0KEK UKbK}K”K¨KÀK ÖKâKùKL'LFL]L vL„L—L ªL·LÌLÞLóL MM5M -GMRMbM|M–M °M¼MÐMëMNN=,N6jNS¡NJõN@OSO fOpOO—O¦OÀOÏOíO ÿO PP/PBP VPbP{PP ¡P®PÄPßPùPQ,Q @QLQaQvQ†Q•Q§Q´ºQ)oRN™RèRKüS=HTƒ†T* -U¤5U¢ÚU3}VT±V?W`FW2§WÚW¯\X Z4[/D[ºt[ /\;\C\I\P\a\r\…\\\¯\µ\È\Û\ø\ ] ]&];/]k] {]ˆ]˜] ©]¶] Ë]Ù]é]#ý] !^.^ C^ Q^&^^…^ -˜^£^¶^Æ^"Ø^û^_#_3_D_c_y_‰_ž_®_½_ Î_Û_ô_ ```)`>`+D`p`v`‡` Ž`›` ¢`¯` ¿` -Í`Ø`Þ`å`í` ö` a8avHa¿aÆaÞaöa þa bb b!>b`bxb”b¯bÈbåbc ccc(c"tatÖ`K‰¬6‘¶‘0¼‘í‘ó‘ú‘ ’!’ 2’@’6B’oy’é’ë’ò’4ú’#/“ÈS“G”%d”Š”¡”ª”³”»” -Ä” Ï” Û”å” î”ø”•#•7• ?•M•V•\•k•r•{•Ž•¡•ª•¼• ΕØ• Ý• ë•ù• ––"–(– +–5–H–c– ‚–£– ©–¶–½–Æ– å–ò– ú–—— — $— .—<—P—W— -^—i— q—~—†—¦— ¯—½—×Ò—ñ— ˜ ˜ -˜˜1˜ A˜O˜^˜ n˜|˜ ˜ ž˜¬˜ ¼˜ɘܘò˜™™ %™ 1™=™L™U™f™ €™ Š™ -—™¢™¨™·™Ó™â™ô™šš8šIš[š kš Œš –š š ¨š²š ¸šÄšÙšèš îšüš ››› › 3›@›C› L› V› -`› -k›v››˜›  ›ª› °›½›Ûɛϛ֛ݛå›í› œ œœ3œ ;œHœOœVœ^œxœ‡œ -§œ²œÅœ Ôœ àœìœôœüœ ! .: =GLRe€‰‘¤º Ú çõû žžž - ž +ž8ž Hž Vž -dž ož }ž Šž ”ž ¡ž®ž ¿žÉž ÑžÛžâž -èžóž üžŸ Ÿ Ÿ*Ÿ3Ÿ :ŸHŸXŸ_Ÿ hŸ uŸ ƒŸŸ ™Ÿ §ŸµŸ ÄŸПãŸéŸìŸñŸùŸ     ! . C  V c i r ƒ – ¨ (º ã ë ô  -¡"¡4¡1N¡/€¡°¡Æ¡Ö¡ö¡ þ¡ ¢¢%¢#6¢ Z¢{¢š¢¡¢±¢"Á¢ä¢ -ì¢÷¢ ££!£*£@£ Q£]£d£l£|£Ž£££ -¼£ -Ç£ -ңݣ ã£ñ£÷£¤ ¤¤ -4¤?¤P¤V¤ -_¤j¤p¤y¤~¤“¤©¤¸¤À¤ϤÓ¤Ù¤ܤë¤ï¤ -õ¤¥¥ ¥5¥F¥ X¥b¥r¥w¥~¥ †¥”¥!©¥ Ë¥ ì¥ ¦ --¦ 8¦D¦K¦O¦W¦\¦b¦h¦ o¦ y¦ƒ¦‰¦¦ —¦¥¦.¸¦ç¦n§s¨)Š¨I´¨9þ¨T8©D©RÒ©r%ªF˜ªkߪKK«:—«AÒ«]¬Mr¬-À¬Cî¬52­Dh­:­­8è­!®*® -1®<® -E® P® \®h®x® ˆ®”®—®¦® -¾® É® Ö®à®!ý®¯5¯.<¯k¯}¯ -‘¯œ¯¥¯ ¯ίÕ¯ܯ 㯠ñ¯ ÿ¯ ° -° -$° /° <°H° \° h°t° y°†°S•°€é°>j±.©±$رý±² ²(².²>² W²a²x²Ž²ž² ¯²вç²ü²³4³C³ Y³g³v³Š³§³ijÛ³ò³!´2*´C]´¡´¸´"×´ ú´µ µ>µTµjµµŸµµµ˵"⵶ -$¶/¶C¶L¶ `¶j¶‡¶ -œ¶ -§¶ ²¶¿¶ζPã¶14¸4f¸›¸¡¸µ¸º¼¸ w¹¹Ÿ¹¹¹×¹ ݹ é¹÷¹ºº+º=ºGRºMšºèºPûº L» V»b» u»–»±»Ä» ̻ػ ø»¼ !¼+¼A¼U¼h¼x¼¼ –¼¢¼³¼Ò¼ê¼,½(2½[½b½ i½s½|½ƒ½¢½ª½(±½ Ú½-ä½ ¾¾"¾)¾2¾J¾ -S¾ ^¾k¾|¾6¾Ǿ Ͼ ݾ -ë¾ö¾ÿ¾ ¿¿¿ %¿ 2¿<¿B¿¢S¿ö¿û¿ -À À !À-ÀLÀgÀ vÀ€ÀO“À>ãÀO"ÁCrÁ5¶ÁhìÁUÂtÂ4’ÂÇÂHáÂ'*Ã(RÃ%{áà ¼Ã Êà Ôà ÞÃêà Ä'ÄAÄaÄÄ–Ä"³Ä ÖÄ÷Ä8ÅLÅhÅoÅ €Å#ŒÅ!°Å ÒÅÞÅûÅÆ.ÆCÆXÆ`Æ hÆ uÆ‚Æ—ÆžÆ ¦Æ°Æ$ÁÆæÆ øÆ'Ç;.Ç9jÇ7¤Ç7ÜÇ>È6SÈ2ŠÈ"½È'àÈÉ;%É&aɈÉ"¥ÉjÈÉF3Ê"zÊ"Ê7ÀÊ5øÊ .ËOË"_Ë‚Ë‹Ë¥Ë¼Ë -ÃËÎËàËóËÌÌÌ "Ì.Ì CÌOÌhÌ%xÌ žÌ «Ì·Ì ¾Ì ÌÌØÌçÌÿÌ -Í$"ÍGÍ]Í sÍ€Í”Í ¦Í°Í -¿Í ÊÍ ÔÍáÍ,Î-ÎBÎSÎoΈÎ!¤Î%ÆÎìÎ -ÏÏ6ÏQÏhÏ~ÏÏ ˜Ï¤Ï¬Ï.Ð7Ð MÐYÐ%jÐ%Ð.¶ÐåÐÑ&Ñ&@ÑgхњѬÑÆÑ)ÛÑ -Ò-Ò>Ò1YÒ‹Ò(©Ò#ÒÒ'öÒ)Ó$HÓ"mÓ1ÓÂÓ ÊÓØÓìÓÔÔ2Ô1KÔA}Ô¿Ô+ØÔÕÕ9ÕVÕ^Õ sÕ”Õ §Õ´ÕÇÕåÕìÕþÕÖ#Ö3ÖCÖSÖbÖsÖ zÖ ˆÖ’Ö=™Ö ×ÖáÖ òÖ×× ×&×-×A×T×h×y׋כׯ×Ç×Ö×é×ý× ØØ 5Ø?ØFØOØ _ØmØ~ØبØÁØÓØæØþØÙ(Ù<ÙQÙeÙxÙŠÙžÙ¯ÙÆÙØÙèÙ ÿÙ# Ú"DÚgÚÚ –Ú ·Ú ÄÚ%ÐÚ öÚ Û Û Û&Û /Û=ÛEÛ NÛ\ÛqÛ‰Û£Û¬Û¾ÛÒÛ åÛóÛÜÜÜ)Ü9Ü*?Ü>jÜW©ÜCÝ EÝ SÝaÝwÝ -ŒÝ—ݧÝ!¯ÝÑÝìÝ ýÝ -Þ Þ%Þ -4Þ?ÞSÞ cÞoÞ…Þ˜Þ9®Þ$èÞ ß ß2ßEßUßfßuß!ˆßªßÇß Úß -æßñßùßàà1àLàgàà ”à à´àËàéàáá(áBáQápáá™á«áÂáÖáëá â â 'â3â<â)Pâ zâ†ââ.ºâéâýâ(ã*,ãWã vã*—ãÂãÚããã óã0ÿã-0ä^äbä qää ’ä*³äÞä*úä#%åIå#då ˆåP©åcúå^æeæ kæwæ‹æ£æ ºæÆæ âæìæ*üæ!'çIçZçkçç“ç ™ç¦ç -Äç)Ïç&ùç è9'èJaèA¬è:îèG)éKqéI½é?ê?Gê}‡ê;ëAAëFƒëLÊë…ì>ìFÜìM#í}qíïíþíîî2î:îYî kîxîˆî œî ªî -ËîÖîóîïï1ïEïYïlï…ï”ï©ïÆïâï ÿï ð.ðAð`ð}ðšð·ðÔðæð ÷ðññ ñ1ñ @ñNñbñuñŒñ¡ñ#¶ñ Úñ çñôñòò)òBò_ò|òò*ªòÕòÛòßò -æòñòùòÿò -óZó kóªuó ô/ôLôbô|ô…ô”ô£ô -¨ô@³ôôô -õ õ -õ7õ HõVõ [õ iõvõ õõ°õÁõÕõðõ€ö…ö¸›öÕT÷j*ø •øp¡øùù}!ùŸù¸ù -ÎùÙù ëùùù úú "ú+0ú,\ú -‰úJ”úßúèú ñúÿú ûûûû&û8ûGûXûkû tû•û¨û¬û!Æûèû ü üü7ü -Mü -Xücü lüvü}ü†ü ‹ü —ü£ü½ü×üæüëüüüOý -Tý _ýiý yý †ýS’ý*æýWþ iþsþ/„þ -´þ -¿þÊþ Ýþéþüþ ÿ ÿÿ8ÿrJÿY½ÿ18I -‚¡³ÉÙìÿ - ;If%z - «b½ 3C S` r¡ºÑâó ) 2>[ boƒ ²Ñð#3 8FV ftSƒ7×9I`-v ¤®Å Øæî $8)H)r2œ2Ï/22e9– -ÐÛí-þ,@+X„— -ªµÌÝô   -2 = N i ~ "— º ×  ê ö  -$ -: -#T -x -– - ª -· -Ê -ç -þ -$ > ] r { Š £ ¶  Í î  g  ‚ Ž  © ­ Ê Ò Ø é  3GV ly ’ Ÿ -« -¶!Áã8Ud‚‘§ -­¸Öï[d>l «¹Í Ò -ßê  ! .<$T$yž¶Ð Ùæ'ö.>Oa q~­ ÄÐ -åð -ÿ - /<D MWjƒ¡ ¿%à *F&\ ƒ•¯ÉÒÙê+=Yu•µÒäù 9'R z!ˆ&ªÑÚâèï3 AV r  Œ–ž­¶ ÍÙìÿ3J[r‚— ­ºËèý -Nm ˆ–§ -¸ÃÕóø þ (<Qf x „ŽŸ ¯ ½ Êëû #1 BNn }‰ § ´Â/Ò'C[ w-˜ ÆÔô(0CZjZ…Xà9V j -x ƒ¢»Ìã ý œ²ÅÙëþ  2 A [ n  ~ #Ÿ  à #ä !!#*!N!h!†!£! ¬! ¹!Æ!Ù!é!ð!ÿ!Z"-j" ˜":¢" -Ý",è"#1#C#R#q#5#Å# Í#×# Ý#é# ú#$ $ $)$ 2$@$ -S$^${$ -ƒ$Ž$ ¨$ µ$Á$Ú$5ú$.0% _%m% q%%ˆ% %®%Í%è%&&'&9& -?&J& R& -`&k& z&†& &&¦&"®& Ñ&Ý& ó&#ÿ&#' 2'?' Y'f' w'˜'©'¸' È'Õ'Ü'Aä'A&(h((‡( ˜("¦(#É(Òí(6À)÷)*h* -q+|+ƒ+ ’+ ž+)«+Õ+/ë+ -,&,:,K, Q,], v,ƒ, ’, ,°¯,`-u- Š- ”- - ¦-°- ¹-Ú- -ú- -..%. 5. -B.M._.c.}. Ž.˜.!¡.Ã.Ç.Û.ú. //=/E/M/]/m/ ~/ Š/ -˜/ £/ °/¾/Î/ å/ñ/ -0 0'0$F0k0p0v0%Œ0#²0!Ö0"ø0181G18X1W‘18é17"27Z2’2?˜2Ø2ö23%3*303,B39o3©3½3Ñ3å3 ù344;4VX4¯4Á4Ô4ð45$5#55Y5w5‡5™5´5Ó5 è5D 6N6m6~6 6'›6Ã6×6 æ6ô677)7:7C7^7f7}7•7¥7¶7Í7â7û78-;8i88,œ8%É8!ï889 -J9U9g9}99œ9±9Ç9$×9=ü9 ::H: -[: f:s:„:.: Ì: Ù:æ:;G;!a;ƒ;;¯;·;Î;å; ô; < <<3<F< -`<k<~<ƒ< ‹< ™<¥<­<¿<Ú<ñ< ø<= =%=4=Q= d=…==­=È=&ä= >+>;>M>m>>™>2²>$å> -?!?%=?c?z?‹?7¦?XÞ?7@J@\@x@’@ §@ ´@Õ@Ý@ì@ ÿ@ AA*A =AJA^ArAzA•AA -®A¹AÁAÈAÙA áAïAB!B9B%UB{B›B±BÀBÕBôB C&*C QCrC‰C™C¯CÏCéC'D!/DQD iDvDˆD¤DºD#ÔDøDE -*E5EFE_EsE„EŸE½EÓEìEFF,FEF)^F!ˆFªFÆFÖFëFGG-GGGaG|G–G®GÈGÙG!ìGH.HMH^HvH–H³HÏHOäHB4I_wI[×I3JIJ\JeJuJŠJ™J¸J ÇJèJ -úJKK+K?K SK`KyK!K±KÈKàK#úK#LBL]LvL’L­LÆLæL úL!MØ=M3NTJNEŸNKåO=1PxoP)èP¬Qª¿Q;jR[¦RNSeQSC·SžûS8šTüÓVAÐW@XÖSX *Y6YFYKYQYdYwY ˆY”Y§Y¼Y -ÃY -ÎYÙYôY ZZ !Z:+ZfZwZ‡Z˜Z«Z¼ZÌZÛZëZ [![3[D[T[+d[[ ª[¸[Ë[ä[+û['\F\V\h\#|\ \º\Ê\ã\ü\ ]]5]T]g]]‡]œ]µ]7¾]ö]ü] ^ ^.^5^G^^^ q^}^‚^ ‡^ ”^¢^±^AÂ^}_ ‚_Œ_¡_·_ ¿_à_`! `#+`O`j`Š`©`!Æ`"è` aa%a -a7aUaua|aŒa›a±aÀaÕa Ýaêaþa b$b=b'Vb~b/•bÅb!áb#c 'c1cPc -_c jcwc~c…c •cŸc®cÃcÜc -âc íc ùcdd#d=+dCidC­dGñdC9eX}eFÖe!fÚ?f$g?gÓNh„"iΧiMvj Äj"Òk…õk›{lm m)m51mEgmÔ­m6‚n4¹n2în3!o2UoLˆo‚Õo_Xp0¸p@ép­*qUØqW.r.†rÁµrwsõytîou¶^v¶w¶Ìw¶ƒxS:yšŽzK){þu{ t|4~}"³}fÖ} =~5K~~Š~ž~¶~ ¿~É~ Ø~ -â~í~.AYoƒ$™¾Ïà õ€]€o~ œª¿Õèú#‚6‚I‚[‚ r‚€‚˜‚®‚ À‚΂â‚ ó‚ÿ‚ƒ ƒ8%ƒ=^ƒIœƒ½æƒD¤„é…ø…†"†>†G†P†"f†‰††™†$¢†'dž<ï†!,‡N‡h‡‚‡#™‡½‡ Ö‡à‡ð‡÷‡ÿ‡ ˆ0ˆ 8ˆQBˆ(”ˆ -½ˆ -Ȉӈو‰ +‰ 7‰*D‰,o‰ -œ‰ -§‰.²‰bá‰HDŠnŠŸüŠ3œ‹PЋi!ŒJ‹Œ+ÖŒTŽzWŽƒÒŽpVgÇ/}¯-‘‡­‘N5’N„’NÓ’}"“ “N"”‘q”•”•*˜•ÕË• Ô•â•ö•–"–>$–•c–ù–û–—6—-=—wk—Fã˜%*™P™i™ r™~™ ‡™‘™ ™ °™ ½™ -Ç™ Ò™Þ™,%š 5š?šEšYš _škšƒš›šªšš -ךâšéšúš › -#› .› :›G› J›T›g›|›–› °› º›Ç› ЛÚ›ù›œ -œœ&œ )œ5œ>œ%Mœsœ{œ „œ‘œ™œ œ+©œÕœ Þœ -ëœöœ(=Sg -p{‹²ÆÚížž0žCžTžlž‹žŸž´ž Êžמèž øžŸŸ 3ŸAŸ QŸ ]ŸgŸ|ŸšŸ­ŸŸÞŸñŸ  ! 7 *G r  y  †   š  £ ° Π -â í ÿ ¡ ¡ '¡4¡E¡U¡ X¡ b¡n¡w¡ €¡Ž¡ ª¡ ·¡ Á¡Ë¡ Ñ¡ ß¡ ë¡ -÷¡ ¢ ¢ ¢ (¢4¢ I¢W¢j¢ €¢Œ¢Ÿ¢¦¢¬¢³¢Ë¢Ü¢ ü¢££ -&£ -1£<£ -E£P£g£ v£ ƒ££ -’£ £ª£²£È£á£è£ð£! ¤++¤W¤`¤p¤ w¤ …¤’¤™¤¡¤ °¤¾¤Ϥᤠð¤ý¤ ¥ -¥ %¥3¥B¥ U¥ b¥ l¥z¥€¥‡¥˜¥«¥ -¾¥É¥Ò¥Û¥â¥ë¥û¥¦¦ '¦4¦ E¦ Q¦^¦ w¦ƒ¦•¦¤¦·¦À¦æȦЦ ߦ ì¦ø¦ -§&§E§X§k§€§•§ª§¿§.Ô§ ¨ - ¨¨-¨ C¨%d¨-Š¨4¸¨í¨©©6© ?©M©V©p©-…©!³©%Õ©û©ªª0,ª ]ª iªsª „ªŽª ”ª¡ª±ª Ϫܪãªëª««8« P« -Z« -e«p«w« -‰«”« ¤« ±«$¾«ã«ò«¬¬ $¬0¬ -7¬B¬G¬a¬ -v¬ ¬ ‹¬™¬œ¬¢¬ ¥¬³¬¶¬ ¾¬ˬ Ó¬ݬ9ᬭ .­;­M­R­ Y­f­x­)“­$½­(â­# ® -/® :®F®M®T®\®a®g®m® t® ~®ˆ®®”®œ®v«®5"¯X¯€ñ Ùé:êçeî¤é„$àL×;^¶K;†²ò|d -…ßÐÃ$Í6?¤7 x¼ðéxÑ]À¯ókîkûOà£À;À*[+æÊäMà™²"Ën«õHâ1ÑËußIõZ€' üq¢XžeôöµçÇBŽ®ý)òëJþð˜†NœÈ,þ¿’W°5öc1¹} q•ŽÇÈ6H;wô@¿hUûéÕ`r_ÖŒFÌ<•„ÛÂAÎ'ÅÛa»%/2ÕO ÉyûçnTpæªFŸvÖ6§ñT]`˜^hÏ -‘4œ).sò· ÚÙ­b°Pu«ëu¤öªš30ΊÇDýÐØÏw·ÆVeBö[BI:"©ü¶ÝÊ9¶gùbײíŽuwúN-Ðù” ¹¥êvèèc+þgagß}È‚a[W´2ÕÌûQùt—Ülmx…vª™ 6`-Q€XÜm,vº˜¥ž…/Ðï_f¨‹†˜G©_ UÈò³I‰˜ÎÝ5Y” ³Áùèw’GŽ›hC›æê øôÒ€Ên…ŸTŸ õ´ÿÏ°ûóÝŠAc<ºAJˆæ½]Xi\bÇÙu.ZÓ¿=æŠó o nǤåO“½­! #1Mµ·Y¬Çt^Ÿ¸¹ÊÐ<KÉM 6LBãIFµCˆæN…sÑèÔë« >w Oœk!T¡Æõ³t»9Ñe]@ -±´7— -%LÞûŠƒ ¯ßˆ•öʶH{K~ÃԌ~ÄÆHèŽ?ú\x° £Nóý Ƨ¦÷ÆíwPªM‘ÑÅ•âµ£‰C¡XÛ¯Zĺà¤WŠxX0²šg•ÉN S©Ö Þ$tè¬,oõIj''¦4)1l»%&#5±â/rpp1Àçñ)Ð{E󠉳”ò"ņ¦™£¼÷'Ä£‹ÓâHfÁÔ ¾L+–ÚÜïë«ÄT9z7VQxÚmDÕÙ7ÈÕR’×ðšC/Œ2~•lA¼'hö•up˜âÅ€÷Ç ¦mnZÞËÅhŒå|R+/(tž{V¡ï£‡ ½#H 8aÇ`?f¿çÞ‰š/ï­eÒü}Í2V¿&Ý& UÈÕ]G¼/ƒÉ¾ùp‹¨ @bãÂS6z¨å? -ƒÑW íRBúˆãZ¼±Ícݹ8ÒeáÅ4oÖƒðñNŒÕQÕäR>Ÿ3fî¡ãÂz*Y¡-9÷O™$ ÏUÜßä$íÌhÌÂÀ oë}5tF°!”Q7,–æðdä®BAKUx¢åñ‡GS‚ßáè´Ø+<2³ç¿ÒÿÙ9›d`lð Œðù¾- ç†*Ãî™Â½AØí¹i’E¸™`së0ô;ÎÛƒ² õ{Pý¡Ñ ¨¢s:Gƒâ·ÞDp¯b ¢æ¨:ÍWÓÁñ–p)_8¯ø²† ½_›"xÕkKÓ’Ž«jPüá¿. zE«„4ÝÒ>ä›Ý<™(uhW“fzºË40˱¼dPl«; †P¾%4-‰Ö-=ÏóËÃØ¢‡ÓË&.Š®÷œ¸’ <ÃܤÊ!à"¼S{÷J[\¦?ùøêìó^s‹ÿ1/?3®O¨ˆ¾LQ8cM±¬ˆqjÃÞ–Å¥WIføÊۇŸÞÚD#soþVÚì{¸l§ñɬÏl§Ûã§l5n¬Éhð˜–fi©ÉLƒµHÇožJ­æ-cÉÓá¬!þräöB ių*Z9žb-­¼(EHj’7…± -~ùóK}‹iNß=yØÔán’Ä?»ž#®ž±íGZøTúbªQµÌиòw‚J ÿƒ29%P½t× µ5û[2\ ã›»ø>‘¥ÚçF=ÿcA¯é‚º· msQ®¹ÆSLªO¦¥…ôŠ5(çfͬ¢ -7ßg³Zãå,yk4=zC"°^¶o+(˜*<Üt¯iY†'c¶›%FÏ¢–T(a_~ +üîá·>‘"`KÚEüo&ÞäP Xz±ÝE@œ0@ü*îD¦~²¿¤Á²Ô‚Á õC\y p¾KÐw­þÒW׶괬 k8]¡;Í¥úÁô\¢(ÁG˜´jkÀ0“E¶=‡‡V‹ô–é”Â|‘)·ÎNÆ*?~>»C¦„€ ^¢$”ʽ`Ìþ ËŸ%ê@•qH“&j€m®?°}ìYüå§îiT¸”VvŽ¹óÿXñKÛz'á"ÒÐDœg@Ôàràò3 Ï|ú‹VI¼›Xrå¹j¨,€ÃÁ2Þ¥]Èê­3“g·}0dRÂiág#ꊩ Gl!Ëš©WÄ×hRº©š1½û: aÛýILÜ÷´ÿ«Ùªºm‘SÑr0³/©›ª a - yÆ·‡–Î Ö+ÉøØÍy »÷f“”¸âõì_ïT$üµžŒë´]ºÚÓvq‹yP F |AUïŽãtM ¬!Ì=‚:Qde53Ö‘„ÃÜ×Á ¯zEÄ=éšvÙuÅ–Ô<18)¦ìC¹1Ò#©ÍŠ}íø. „£[!&vâ8•@&‰¥-¡>Äû—:ˆíËdöŸ¨ãqá¤>ZRÿ …^ …k”jR{—G_ ·Y ¨xÈ×úâÖV(!Uè -`°E­|%6{ì®.$+qrYYàm]ö.5€Ú3y)Œ—\ä—;ý#:c*.ÿ[×"g¶œ¾ §jÔÓ«ì3Í|[ýì‰ý,œ_°d—šå¡w¾:œ‰u¤Ýƒªqërb8Ô=;,NJdôùžm² ‚Ö>‚onåºvYJØUS&^bFÒ9@ñMMý DyÙ½R™ADô44÷*¸#Xea£IiÓ“'þJúqBUpÙ207S~rÀïéàúÈ,® š„­‘¿{À$\ ßòÀ(Ü Ž6ˆ9)þs“D e~Î í%B†‚n¯ØS“§‰a<\ Ñ8£èŸ¸ìÌÛØ™³Œ[OÄäCÌëFµ7§¾¥3õò .|éM6îÊÎ^ïê» -´kÏð—  ˆ}Æ‘‡L—sJ|øO± -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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 GIMPActionActive FiltersAdaptive supersamplingAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)All image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:An image of the choosen size will use more memory than what is configured as "Maximum Image Size" in the Preferences dialog (currently %s).An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAttach parasiteAuthor:AutoAuto _Follow Active ImageAuto shrinkAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionBy reverting the image to the state saved on disk, you will lose all changes, including all undo information.CMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipboardClipped to bottom layerClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current statusCurrent width:CursorCursor _mode:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sError writing to '%s': %sError writing to temporary file for '%s': %s -No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundP_atternsPack my box with -five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick white pointPixel dimensions:Pixel valuesPixelsPixels:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.ReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave 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...ScissorsScreenScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Color...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect the number of times -to replicate the selected segment.Select the number of times -to replicate the selection.Select the number of uniform parts -in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.Select web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet ColormapSet Image Canvas SizeSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySet preserve transSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the monitor's horizontal resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the monitor's vertical resolution, in dots per inch. If set to 0, forces the X server to be queried for both horizontal and vertical resolution information.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can not create thumbnails if layer previews are disabled.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen ChannelSharpen SelectionShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow memory usageShow menu _mnemonics (access keys)Show paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink _WrapShrink from image borderShrink selection byShrink wrapSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:Spherical (_decreasing)Spherical (i_ncreasing)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke PathStroke SelectionStroke lineStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: - -%sWarning: Failed to save data: - -%sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.gimp-2-0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-03-12 19:09+0100 -PO-Revision-Date: 2005-03-20 02:39+0100 -Last-Translator: Tino Meinen -Language-Team: Dutch -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Plural-Forms: nplurals=2; plural=(n != 1); - -Ongeldige optie "%s" - -Gebruik: %s [optie ...] [bestand ... ] - - --debug-handlers Niet-fatale debugsignaalhandlers inschakelen. - --display Gebruik toegewezen X-display. - --dump-gimprc Produceer een gimprc-bestand met standaard instellingen. - --no-cpu-accel Gebruik geen speciale CPU-versnellingen. - --no-shm Gebruik geen gedeeld geheugen tussen GIMP en plug-ins. - --pdb-compat-mode - Compatibiliteitsstand voor Procedurele Database. - --session Gebruik een alternatief sessionrc-bestand. - --stack-trace-mode - Debug-stand voor fatale signalen. - --system-gimprc Gebruik een alternatief systeem-gimprc-bestand. - --verbose Opstartboodschappen weergeven. - -b, --batch Instructies in batch-stand uitvoeren. - -c, --console-messages Waarschuwingen in console weergeven i.p.v. in een dialoogvenster. - -d, --no-data Geen penselen, verlopen, paletten, patronen laden - -f, --no-fonts Geen fonts laden. - -g, --gimprc Gebruik een alternatief gimprc-bestand. - -h, --help Deze hulptekst weergeven. - -i, --no-interface Uitvoeren zonder een gebruikersinterface - -s, --no-splash Opstartvenster niet weergeven. - -v, --version Versie-informatie weergeven. -%d lagen%d dpi%d dpi, %s%d lagen%d minuten%d seconden%d x %d dpi%d x %d dpi, %s%d × %d pixels%g × %g %s%p%s kanaalkopie%s kanaal naar selectie%s Bericht%s kopiëren%s masker%s%sKlik: Breid selectie uit%s%sSleep: verplaats & comprimeer(%0.3f, %0.3f, %0.3f)(Geen)(Dit venster wordt na tien seconden gesloten) -(Naamloze buffer)(Naamloze sjabloon)(Varieert)(schoon)(ongeldige UTF-8-tekenreeks)(gewijzigd)(geen)1 laag1 laag15 graden %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D transformatie...4:1 (400%)8:1 (800%)<%s><>Voor optimale GIMP-prestaties moet u mogelijk enkele instellingen aanpassen.De GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis en het GIMP-ontwikkelteam.Het GIMP-tipsbestand kon niet correct worden ingelezen!Uw GIMP-tipsbestand lijkt te ontbreken!Een bestand genaamd '%s' bestaat al._Toevoegan aan selectieHoe_kOver de GIMPActieActieve filtersAdaptieve overmonsteringToevoegenAl_phakanaal toevoegenAlphakanaal toevoegenAnker toevoegenKanaal toevoegenKleur toevoegen aan kleurenkaartHulplijnen toevoegen: Hulplijnen toevoegenHorizontale hulplijn toevoegenLaagmasker _toevoegen...Laag toevoegenLaagmaskter toevoegenPad toevoegenLijn toevoegenTekstlaag toevoegenVerticale hulplijn toevoegenMasker aan de laag toevoegenKleur toevoegen uit AGKleur toevoegen uit VGLaagmaskter toevoegenTekst aan de afbeelding toevoegenVoeg de huidige kleur toe aan de kleurgeschiedenisVoeg het geselecteerde filter toe aan de lijst van actieve filters.Aan palet %s toevoegenToevoegen aan huidige selectieThema '%s' (%s) toevoegen (bezig) -OptellingAanvullende invoerapparatenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenHelderheid-Contrast aanpassenKleurbalans aanpassenKleurcurves aanpassenKleurniveaus aanpassenKleurtoon en verzadiging aanpassenNiveau's automatisch aanpassenAanpassingGeavanceerde optiesBetreft:Betroffen gebied %sVerfspuitVerfspuit met variabele drukAl_pha naar selectieUitgelijndUitlijningAlle kanalenAlle bestandenAlle bestanden (*.*)Alle informatie over afbeeldingen en Ongedaan Maken die niet in de tegelcache past, wordt naar een wisselbestand geschreven. Dit bestand hoort op een lokaal bestandssysteem te staan met genoeg vrije schijfruimte (enkele honderden megabytes). Op een UNIX-systeem zou u de temp-map van het systeem kunnen gebruiken ("/tmp" of "/var/tmp").Sta vullen van volledig transparante gebieden toeSelectie van volledig transparante gebieden toestaanAlphaAlpha naar selectieAlpha:Een afbeelding met de gekozen afmetingen zal meer geheugen nodig hebben dan momenteel als "Maximale afbeeldingsgrootte" is geconfigureerd in het dialoogvenster Voorkeuren (momenteel %s).Ani_matieDrijvende selectie verankerenDrijvende laag verankerenDrijvende selectie verankerenHoek:Anti-gum %sAnti-aliasingWeergaveLaagmasker toepassenLaag_masker toepassenDrempel toepassenLaagmasker toepassenBent u zeker dat u '%s' uit de lijst en van de schijf wilt verwijderen?Bent u zeker dat u sjabloon '%s' van de lijst en van schijf wilt verwijderen?Als in _voorkeurenVraag om bevestiging alvorens een afbeelding te sluiten zonder deze op te slaan.Platheid:Verhouding:Parasiet aanhangenParasiet aan afbeelding koppelenParasiet aan item koppelenParasiet aanhangenAuteur:Automatisch_Actieve afbeelding auto-volgenAutokrimpenVenster automatish aanpassenAutoladenAutomatisch opgemerktBeschikbare filtersBeschikbare typen:AG-kleur vullen_Helderheid-ContrastB_uffersAchtergrondAchtergrondkleurAchtergrondkleur ingesteld op:Achtergrond: %d, %d, %dAchterwaarts (corrigerend)Baseer gevuld gebied op alle zichtbare lagenSelectie baseren op alle zichtbare lagenAchterSchuinBilineairZwartwitZwart:Kleuren van eindpunten _mengen_MengenMengen_Ondoorzichtigheid van eindpunten mengenVerloop: Verloop: ongeldig voor geïndexeerde beelden.Mengen...BlauwBlauw:VervagenVervagen of verscherpen_Rand...KanaalrandRandselectieRandselectie metHelderheid-ContrastHelderheid-Contrast werkt niet op geïndexeerde lagen.PenseelPenseeleditorPenseelmappenPenseel-UIPenseel:PenselenMenu PenselenVullenBuffersMenu BuffersDonkerderStompVolgens extensieDoor de afbeelding terug te zetten naar de versie die op de schijf is opgeslagen zult u alle wijzigingen verliezen, inclusief alle informatie over ongedaan maken.CMYK_Kalibreren...K_leurkiezerKolommen:_CombinerenKalibreer beeldschermresolutieKan %s niet ongedaan makenCan_vasgrootteAnnulerenHulplijn annulerenKan geen laagmasker toevoegen met andere afmetingen dan de gespecificeerde laagKan geen laagmasker toevoegen aan een laag zonder alphakanaal.Kan geen laagmasker toevoegen aan een laag die niet deel is van een afbeelding.Kan deze laag niet verankeren, want het is geen drijvende selectie.Kan een palet met meer dan 256 kleuren niet omzetten.Kan geen nieuwe laag maken van de drijvende selectie, omdat hij toebehoort aan een laagmasker of kanaal.Kan map '%s' niet aanmaken: %sKan geen vooruitblik aanmakenKan niet snijden, omdat de huidige selectie leeg is.Kan niet uitbreiden ${%s}Kan selectie niet laten drijven, omdat het geselecteerde gebied leeg is.Kan een laag zonder alpha niet verhogenKan niet opslaan. Niets is geselecteerd.Kan geen lijn tekenen op leeg kanaal.Kan geen leeg pad tekenen.CanvasgrootteMidden X:Midden Y:GecentreerdAchtergrondkleur veranderenKleur van kleurenkaart wijzigen.Voorgrondkleur veranderenAfbeeldingsresolutie veranderenAfbeeldingseenheid veranderenAfdrukgrootte wijzigenHuidige laag of pad wijzigenAchtergrondkleur raster veranderenVoorgrondkleur raster veranderenGeïndexeerd palet wijzigenVerander het perspectief van de huidige laag of selectieWijzigen sneltoets mislukt.KanaalKanaalattributenKanaalnaam:Kanaal kan niet verder naar benedenKanaal kan niet verder naar bovenKanaalkleurKanaal is reeds de onderste.Kanaal is reeds de bovenste.Kanaal naar sele_ctieKanaal naar selectieKanaal naar selectieKanaal:KanalenMenu KanalenVak_grootte:Kies lijntekenstijl.Cirkel_WissenLeegmakenKanaal leegmakenOverzicht 'Ongedaan maken' leegmakenAlle tekst wissenFouten wissenOverzicht 'Ongedaan maken' leegmaken...Klik "Doorgaan" om bovenstaande instellingen te aanvaarden.Klik "Doorgaan" om uw persoonlijke GIMP-map aan te maken.Klik "Doorgaan" om de gebruikersinstallatie te starten.Klik "Doorgaan" om de gebruikersinstallatie te starten.Klik om dit anker met het geselecteerde eindpunt te verbinden.Klik om een nieuw anker aan te maken. (Probeer SHIFT.)Klik om nieuwe component van het pad aan te maken.Klik om een nieuw pad aan te makenKlikken om een vooruitblik aan te makenKlik om dit anker te wissen.Klik om een anker op het pad in te voegen. (Probeer SHIFT.)Klik om dit knooppunt hoekig te maken.Klik om het pad te splitsen.Klik om te bewerken pad te kiezen.Klik om vooruitblik te vernieuwen -%s Klik om vernieuwing af te dwingen, ook als vooruitblik bijgewerkt isKlik-sleep om de vorm van de curve te veranderen. (SHIFT: symetrisch.)Klik-sleep om het anker te slepen.Klik-sleep om de ankers te slepen.Klik-sleep om het component te slepen. (Probeer SHIFT.)Klik-sleep om het handvat te slepen. (Probeer SHIFT.)Klik-sleep om het pad te slepen.Klik: selecteerKlik: selecteer Sleep: verplaatsKlembordOp onderste laag gesnedenOp afbeelding gesnedenKlonen%s sluitenAlle tabs sluitenAlle tabs sluiten?Deze tab sluitenPad _kopiërenKleu_renKleurKleurbalansKleurweergavefiltersKleurkiezerInformatie kleurenkiezerKleur_balans...Kleurbalans werkt enkel op RGB-lagen.Kleur wissenKleurindex:Kleur:_Kleurenkaart_Kleurtype:_Verkleuren...Kleur_type voor segmentKleurtype voor selectieVerkleurenVerkleuren werkt enkel op RGB-lagen.Afbeelding verkleurenAfbeelding verkleurenKleurenkaartKleurenkaart editorMenu KleurenkaartKolommen:_Tekstbijlage:CommentaarContrast:_ConvoluerenKleurweergavefilters instellen_Uitgebreide invoerapparaten configureren..._Raster instellen...Raster instellenAfbeeldingsraster instellenSneltoetsen configurerenSneltoetsen configureren...Geselecteerde filter configurerenGeselecteerde filter configureren: %sAfbeeldingsgrootte bevestigenSchalen bevestigenTekstbewerken bevestigenConflicterende sneltoetsenConisch (asymmetrisch)Conisch (symmetrisch)Lijnen verbindenConstantBeperkingenContextContextafhankelijke cursors zijn handig. Standaard staan ze aan. Ze verbruiken echter extra bronnen, en wellicht wilt u dat niet.DoorgaanMet bijdragen van ...ConverterenRand converterenAfbeelding naar Grijswaarden omzettenAfbeelding naar Geïndexeerd omzettenAfbeelding naar geïndexeerde kleuren omzettenAfbeelding naar RGB omzettenAfbeelding converterenNaar geïndexeerd omzetten (stap 2)...Naar geïndexeerd omzetten (stap 3)...Naar geïndexeerd omzetten...Vervagen/verscherpenConvolutietype %sBenoemde buffer kopiëren_Zichtbare kopiërenBestand '%s' wordt gekopieerd uit '%s'...Copyright:Beschadigd segment %d in verloopbestand '%s'.Kan '%s' niet aanmaken: %sKon geen tijdelijk bestand voor '%s' aanmaken: %sKan '%s' niet verwijderen: %sKon de hulpbrowser van GIMP niet vinden.Kon '%s' niet openen voor lezen: %sKon '%s' niet openen voor schrijven: %sKon miniatuurbestand '%s' niet openen: %sKan %d bytes niet lezen uit '%s': %sKan niet zoeken in XCF-bestand: %sKon de hulpbrowser plug-in van GIMP niet starten.Aantal:Laag s_nijdenNieuw do_k aanmakenNieuwe sjabloon aanmakenNieuwe afbeelding makenMaak nieuwe laag aanNieuwe sjabloon aanmakenMaak een nieuwe weergave voor deze afbeelding aanNieuwe afbeelding aanmaken op basis van de geselecteerde sjabloonNieuwe sjabloon aanmakenAfbeeldingen of foto's aanmaken en bewerkenPaden aanmaken en bewerkenLaden vooruitblik (bezig)Map '%s' wordt aangemaakt...SnijdenKnippen & herschalenInformatie knippen en herschalenAfbeelding snijdenLaag snijdenAfbeelding snijdenAfbeelding snijden of schalenKnip: Alleen kruisdraadK_nippenBenoemde buffer k_nippen...Kubisch (beste)Huidige _statusHuidige hoogte:Huidige statusHuidige breedte:CursorCursor_modus:CurvetypeCurvesCurves voor geïndexeerde lagen kunnen niet worden aangepast.AangepastAangepaste kleurEigen verloopKnippenBenoemde buffer knippenCyaanCyaan:Penseel d_uplicerenKanaal d_uplicerenVerloop d_uplicerenLaag d_uplicerenPalet d_uplicerenPad d_uplicerenPatroon d_uplicerenSjabloon d_upliceren...Donkere vakjesEnkel donker makenStreep stip stip...Streep stip...Streepjespatroon:Streep-voorinstelling:GestreeptDatum:DebuggenVolledig schermNormale standStandaard rasterStandaard rasterStandaard _interpolatie:Standaard drempelwaarde:Anker verwijderenAnkers verwijderenLaagmasker _verwijderenLaagmasker verwijderenObject verwijderenSegment verwijderenSjabloon verwijderenPenseel verwijderenKanaal verwijderenKleur verwijderenVerloop verwijderenLaag verwijderenLaagmasker verwijderenPalet verwijderenPad verwijderenPatroon verwijderen...Opgeslagen opties verwijderen...De geselecteerde buffer verwijderenGeselecteerde sjabloon verwijderenVerwijder deze afbeeldingVectoren verwijderenVerwijderen van '%s' mislukt: %sVeel stippenDesaturerenDesatureren werkt enkel op RGB-lagen.OmschrijvingOntwerpenApparaatstatusApparatenDialogenMenu DialogenDiamandVerschilDirecte kleurLaagmasker uitzettenSnelmasker uitschakelenTekstinformatie wegwerpenWeergaveWeergavenavigatie_Weergavefilters...WeergaveproceduresWeergavetype:Tonen [%0.6f, %0.6f]OplossenAfstand:Afstand: %0.6fKleurbenaderingDelenEen _verse gebruikersinstallatie uitvoerenWilt u echt alle filters herstellen naar hun standaardwaarden?Weet u zeker dat u alle gereedschapsopties tot hun standaard waarden wilt terugbrengen?Wilt u het vervangen door de afbeelding die u aan het opslaan bent?_Niet opslaanAankoppelbaar_DocumentgeschiedenisDocumentgeschiedenisDocumentenMenu DocumentenLichterLijnen tegenhouden of doordrukkenTegenhouden of doordrukkenDubbel gestreeptAnker slepenAnkers slepenCurve slepenHandvat slepenPad slepenSlepen: verplaatsenIn inkt tekenenTekengebiedTekengebiedproceduresNieuwe laag slepenNieuw pad verwijderenTekstfunctionaliteit ontbreekt, omdat er geen fonts zijn.Acties van dit invoerapparaat dumpenPenseel duplicerenKanaal duplicerenVerloop duplicerenLaag duplicerenPalet duplicerenPad duplicerenPatroon duplicerenGeselecteerde sjabloon duplicerenEek: kan niet ongedaan makenPad e_xporteren..._Zeer kleinRandgedragR_andenBewerkenKanaalattributen bewerkenKanaalkleur bewerkenKleur paletingang bewerkenKleur-paletingang bewerkenLaagattributen bewerkenLaagmaskter bewerkenBewerkstandPaletkleur bewerkenPadattributen bewerkenSnelmaskerattributen bewerkenSnelmaskerkleur bewerkenSjabloon bewerkenPenseel bewerken...Kanaalattributen bewerkenKleur bewerkenKleur-paletingang #%d bewerkenVerloop bewerkenLaagattributen bewerkenPalet bewerken...Padattributen bewerkenPatroon bewerken...BewerkingsproceduresGeselecteerde sjabloon bewerkenOvale selectieNieuw kanaalNieuwe laagLeeg padTekstlaag leegmakenLege variabelenaam in omgevingsbestand %sVer_sterkenSnelmasker inschakelenDit invoerapparaat gebruikenToon handige tips bij het starten van de GIMP.Toon zwevende tips.EnormGeef een naam op voor samengevoegd paletGeef een naam voor de opgeslagen opties opGeef een naam voor deze bufferGeef een naam voor deze sjabloonGeef een naam op voor de opgeslagen optiesLocatie invoeren (URI):OmgevingOmgevingsmappenGelijkmaken'Gelijkmaken' werkt niet op geïndexeerde lagen.Naar achtergrond of transparantie verwijderenGomFoutenco_nsoleFoutenconsoleMenu FoutenconsoleFout bij opslaan XCF-bestand: %sFout tijdens parseren '%s' in regel %d: %sFout tijdens lezen '%s': %sFout tijdens lezen penseelbestand '%s': %sFout tijdens schrijven van '%s': %sFout bij schrijven XCF: %sFout bij schrijven bestand '%s': -%sFout bij schrijven naar '%s': %sFout bij schrijven naar tijdelijk bestand voor '%s': %s -Geen bestand aangemaakt.Fout bij het schrijven van tijdelijk bestand voor '%s': %s -Het originele bestand is niet getouched.FoutenActieZ_eer grootVergroot waar nodigPad naar SVG exporterenActieve pad exporterenBelichting:Uitgebreide invoerapparatenExtensiesVG-kleur vullenVG naar AG (KVW kleurtoon met wijzers mee)VG naar AG (KVW tegen wijzers in)VG naar AG (KVW)VG naar AG (RGB)VG naar TransparantVG naar transparantVG/AGVG-/AG-kleurCanvas laten _passen op lagenUitvloeienKon verlopen niet importeren uit '%s': %sKon paden niet importeren uit '%s': %sChiqueFatale verwerkingsfout in penseelbestand '%s': Bytes = 0.Fatale parseerfout in penseelbestand '%s': bestand lijkt te zijn ingekort.Fatale parseerfout in penseelbestand '%s': bestand is beschadigd.Fatale verwerkingsfout in penseelbestand '%s': Hoogte = 0.Fatale parseerfout in penseelbestand '%s': is geen GIMP-penseelbestand.Fatale verwerkingsfout in penseelbestand '%s': onbekende vorm GIMP-penseel.Fatale parseerfout in penseelbestand '%s': onbekende versie GIMP-penseel.Fatale parseerfout in penseelbestand '%s': onbekende diepte %d.Fatale parseerfout in penseelbestand '%s': onbekende versie %d.Fatale parseerfout in penseelbestand '%s': niet-ondersteunde penseeldiepte %d -GIMP-penselen moeten Grijswaarden of RGBA zijn.Fatale verwerkingsfout in penseelbestand '%s': Breedte = 0.Fatale parseerfout in verloopbestand '%s': bestand is beschadigd.Fatale parseerfout in verloopbestand '%s': is geen GIMP-verloopbestandFatale parseerfout in paletbestand '%s': ontbrekende bestandstypeaanduiding.Fatale parseerfout in paletbestand '%s': incorrecte bestandstypeaanduiding. -Is dit bestand in een ander besturingssysteem geschreven?Fatale parseerfout in paletbestand '%s': leesfout op regel %d.Fatale parseerfout in patroonbestand '%s': kon niet %d bytes lezen: %sFatale parseerfout in patroonbestand '%s': onbekende patroonformaatversie %d.Fatale parseerfout in patroonbestand '%s': niet-ondersteunde patroondiepte %d. -GIMP-patronen moeten Grijswaarden of RGB zijn._Verzachten...Kanaal verzachtenStraalselectieStraalselectie metBestand_Dialoogvenster Bestand openenBestandsoperatiesBestandstypeBestand bestaatBestand is afgekaptKanaal vullenOndoorzichtigheid van opvullen: Vultype %sTransparante gebieden vullenHele selectie vullenVullen met AG-kleurVullen met _AG-kleurVullen met VG-kleurVullen met _patroonMet patroon vullenMet transparantie vullenMet wit vullenVullen met _VG-kleurVullen met _achtergrondkleurVullen met een kleurverloopVul met een kleur of patroonUitgevuldFilte_rsUiteindelijke, samengevoegde laag moet worden:Aaneengesloten gebieden vindenGelijkaardige kleuren zoekenAfbeelding in venster passenAfbeelding in venster passenAfbeelding in venster passenIn venster passenVaste verhoudingVaste grootteAfbeelding plettenOmkerenKanaal spiegelenLaag spiegelenPad spiegelenTekstlaag spiegelenSpiegelrichting %s_Horizontaal spiegelen_Verticaal spiegelenAfbeelding spiegelenSpiegel de huidige laag of selectieSpiegelen...Spiegelen...Drijvende selectieDrijvende selectieDrijvende laagDrijvende Selectie< -(%s)Drijvende selectie naar laagDrijvende selectie naar laagDrijvende selectiesFloyd-Steinberg (normaal)Floyd-Steinberg (verminderde kleuruitloop)FocusMapMappenFontmappenFont-UIFont:FontsMenu FontsVoor een correcte GIMP-installatie moet een map met de naam '%s' worden aangemaakt.VoorgrondVoorgrond- en achtergrondkleuren. Met de zwarte en witte vierkanten stelt u kleuren opnieuw in. Met de pijlen verwisselt u kleuren. Dubbelklik om een kleur uit te kiezen.VoorgrondkleurVoorgrondkleur ingesteld op:Voorgrond: %d, %d, %dVoorwaarts (traditioneel)_Uit padVrije selectieVrije selectieVrijVan _themaResolutie aan het venstersysteem vragen (momenteel %d × %d dpi)Van links naar rechtsVan rechts naar linksVan selectieVan thema_Volledig schermVage selectieGIMPGIMP-extensieGIMP-berichtGIMP-prestatie-afstemmingGIMP-plug-inOpstarten van GIMPGIMP-teksteditorGIMP Tip van de dagGIMP-gebruikersinstallatieGIMP XCF-afbeeldingGIMP kon de grafische gebruikersinterface niet initialiseren. -Zorg dat een correcte instelling voor uw weergaveomgeving bestaat.Hulpbrowser voor GIMPDe gebruikersinstallatie was overgeslagen, omdat de optie '--no-interface' gebruikt werd. -Om de gebruikersinstallatie uit te voeren, start de u GIMP zonder deze optie '--no-interface'.GIMP gebruikt een beperkte hoeveelheid geheugen voor afbeeldingsgegevens, de zogeheten "Tegelcache". U moet de grootte aanpassen aan uw geheugen. Hou rekening met geheugen dat door andere processen wordt gebruikt.GIMP gebruikt een eigen gtkrc-bestand zodat u het er anders kunt laten uitzien dan andere GTK-programma's.GIMP-versieGIMP waarschuwt een gebruiker als een poging wordt gedaan een afbeelding aan te maken die meer geheugen vereist.GammaAlgemeenHet minimum aantal systeemkleuren dat is gereserveerd voor de GIMP (over het algemeen alleen belangrijk bij 8-bit weergaven).Optimaal palet genererenBeeldscherminformatieGigantischGimprc-procedures_GlaseffectenVerloopVerloopeditorMenu VerloopeditorVerloopmappenKleur van linkereindpunt van verloopsegmentKleur van rechtereindpunt van verloopsegmentVerloop-UIVerloopbestand '%s' is beschadigd: segmenten omvatten niet het bereik 0-1.Verloop:VerlopenMenu VerlopenGrijsGrijswaardenGroenGroen:RasterRasterlijnafstandKanaal groeienSelectie groeienGroei selectie metHulplijnMagnetische hulplijnen en rasterHulplijnproceduresKVWKVW (%0.3f, %0.3f, %0.3f)KVW (_kleurtoon tegen de klok in)KVW (k_leurtoon kloksgewijs)HTML-notatie:Hoogt_e: Te gebruiken hulpbrowser:Handel positie: %0.6fHarde randHard lichtHardheidHardheid:HoogteHoogte: HulpHulpbrowserHulpsysteemHulpbrowser start niet opHulpbrowser niet gevondenHulpproceduresHex:Lichtere kleurenHintingHinten verandert de tekenvorm om bij alle groottes een gestoken bitmap te makenHistogra_mHistogramHistogramschaalGeschiedenisHorizontaalHorizontale verspringing van de eerste rasterlijn; dit mag een negatief getal zijn.Horizontale tussenruimte van rasterlijnen.Aantal recent geopende afbeeldingsbestanden te tonen in het menu Bestand/Recent openen.KleurtoonTint-VerzadigingKleurtoon-Verzadiging werkt enkel op RGB-lagen.Kleurtoon:ReusachtigPi_ctogram & tekst_AfbeeldingPad i_mporteren...I_nterpolatie:Interval:PictogramPictogram & omschrijvingPictogram & tekstAls hints in de font aanwezig zijn, worden ze gebruikt, maar mogelijk verkiest u altijd de autohinter te gebruikenIndien u de afbeelding niet opslaat zullen de wijzigingen in de laatste %s verloren gaan.Niet-opgeslagen wijzigingen zullen verloren gaan.Niet toegestane variabelenaam in omgevingsbestand %s: %sAfbeeldingAfbeelding + rasterAfbeelding-editorAfbeeldingsinformatieAfbeeldingsmenuAfbeeldingsgrootteFormaat statusbalkAfbeeldingssjablonenMiniaturenFormaat titel en statusbalkFormaat titelWeergave afbeeldingsvenstersAfbeeldingsvenstersAfbeelding bevat geen zichtbare lagenAfbeeldingAfbeeldingsmaskerAfbeeldingsresolutie is buiten het bereik, in plaats daarvan wordt de standaardresolutie gebruikt.AfbeeldingsgrootteAfbeeldingsbronAfbeeldingstypeAfbeeldingenMenu AfbeeldingenImportoptiesPalet importerenPaden importerenPaden uit SVG importerenNieuw palet importerenPalet importerenPaden importerenGeïmporteerd padIn_ktIn_verterenMasker inverterenOplopendInspringen:Inspringing van eerste regelIndex:GeïndexeerdGeïndexeerde KleurGeïndexeerde kleuromzettingInformatievenster_Aanvankelijke zoomverhouding:Laagmasker initialiseren naar:Initialiseren plug-ins (bezig)Initialiseren plug-in '%s' (bezig) -InktInline pixbufInvoerapparatenInvoerapparatenInvoerniveausAnker invoegenInstalleer een eigen kleurkaart; kan nuttig zijn voor 8-bit (256 kleuren) displays.Installatie mislukt. Neem contact op met systeembeheer.Installatie succesvol. Klik "Doorgaan" om verder te gaan.Onmiddelijk vernieuwenIntelligente _scharenIntensiteit: %0.3f Ondoorzichtigheid: %0.3fBedieningInterne GIMP-procedureInterne proceduresInterpolatie:SnijdenSnijden met huidige selectieDoorsnedes (kruisdraden)Doorsnedes (punten)Ongeldige UTF-8Ongeldige UTF-8-gegevens in bestand '%s'.Ongeldige UTF-8-tekenreeks in XCF-bestandOngeldige UTF-8-tekenreeks in penseelbestand '%s'.Ongeldige UTF-8-tekenreeks in verloopbestand '%s'.Ongeldige UTF-8-tekenreeks in paletbestand '%s'Ongeldige UTF-8-tekenreeks in patroonbestand '%s'.Ongeldige tekenreeks in URIOngeldige sneltoets.Ongeldige breedte of hoogte. Beiden moeten positief zijn.InverterenKanaal inverterenSelectie omkerenInverteren werkt niet op geïndexeerde lagen.Selectie inverterenIs dit wat u wilt doen?Blijkbaar heeft u eerder GIMP 2.0 gebruikt.Eigenschappen itemZichtbaarheid itemUitvullen:Transparantie behoudenZichtbaar houdenVerhouding behouden %sHoogte behouden %sTransparantie behoudenBreedte behouden %sToets neerToets neer (Alt)Toets neer (Control + Alt)Toets neer (Control)Toets neer (Shift + Alt)Toets neer (Shift + Control + Alt)Toets neer (Shift + Control)Toets neer (Shift)Toets linksToets links (Alt)Toets links (Control + Alt)Toets links (Control)Toets links (Shift + Alt)Toets links (Shift + Control + Alt)Toets links (Shift + Control)Toets links (Shift)Toets rechtsToets rechts (Alt)Toets rechts (Control + Alt)Toets rechts (Control)Toets rechts (Shift + Alt)Toets rechts (Shift + Control + Alt)Toets rechts (Shift + Control)Toets rechts (Shift)Toets opToets op (Alt)Toets op (Control + Alt)Toets op (Control)Toets op (Shift + Alt)Toets op (Shift + Control + Alt)Toets op (Shift + Control)Toets op (Shift)Toetsenbordkoppelingen kunnen dynamisch worden gewijzigd in de GIMP. Het menurc-bestand is een opname van uw toetseninstellingen op het moment dat de GIMP wordt gesloten. U kunt als u wilt dit bestand veranderen, maar het is veel makkelijker om de toetsen te definiëren vanuit de GIMP. Door dit bestand te verwijderen worden de standaardkoppelingen hersteld.ToetsenbordToetsaanslagenSneltoetsenLNR_Kleur van linkereindpunt...LiggendGrootGroot (256×256)Grotere vooruitblikkenLaatste fout:LaagLaag '%s' heeft geen alpha. Laag erboven geplaatst.LaagattributenLaag _grensgrootte...Vultype laagLaagmasker naar selectieLaagselectieLaaggrootteLaag_modusNaam laag:Laag kan niet verder naar benedenLaag kan niet verder naar bovenLaag is reeds de onderste.Laag is reeds de bovensteLaag naar afbeeldingsgrootteLaag _onderaanLaag naar _afbeeldingsgrootteLaag _bovenaan_Alphakanaal van laagLagenMenu LagenOpties voor samenvoegen lagenKleur van linkereindpuntLinks uitgelijndLengte:Laat GIMP trachten uw laatste sessie te herstellen bij elke keer dat u het programma start.NiveausNiveaus voor geïndexeerde lagen kunnen niet worden aangepast.Lichte vakjesEnkel lichter makenLijnLijnbreedte:Lijnstijl:Lijnstijl van het raster.LineairGekoppeld itemLadenCurves ladenNiveaus laden_Rechterkleur laden uitCurve-instellingen laden uit bestandNiveauinstellingen uit bestand ladenTekst uit bestand ladenLaden vooruitblik (bezig)Locatie:LogaritmischLange streepjesBezig met zoeken naar gegevensbestandenKanaal verlagenKanaal onderaanKanaal _onderaanLaag naar benedenLaag naar bodemPad verlagenPad naar bodemPad naar _bodemKanaal verlagenKanaal onderaan zettenLaag omlaagLaag onderaan zettenPad omlaagPad naar bodemVer_grotenAllemaal_Verplaatsen naar scherm..._ProjecterenMagentaMagenta:Vergroten_Transparant makenLaadbare modules beherenSnelheid _marcherende mieren:Ondoorzichtigheid van masker:Geselecteerde _gebieden maskeren_Niet-geselecteerde gebieden maskerenMatrix:Max. Diepte:Maximale _bestandsgrootte voor miniaturen:Maximum kleurverschilMax. _geheugenruimte "Ongedaan maken":Gemiddelde:MetenAfstanden en hoeken metenAfstanden en hoeken metenMediaan:MediumMedium streepjes_Neerwaarts samenvoegenNeerwaarts samenvoegenLagen samenvoegenPalet samenvoegenZichtbare lagen samenvoegenZichtbare paden samenvoegen_Zichtbare lagen samenvoegen..._Zichtbare lagen samenvoegen...Zichtbare paden samen_voegenLagen samenvoegenPaletten samenvoegenVectoren samenvoegenBerichtproceduresBericht %d maal herhaaldBericht eenmaal herhaaldBerichten worden naar de stderr gevoerdMiddenkleurenGebruikersinstellingen overzetten_Min. aantal niveaus "Ongedaan maken":AllerleiVerstekModusModus:Geselecteerde kleur aanpassenVerander kleurniveau's van het geselecteerde bereikPas alle kleuren aanRegeltussenruimte aanpassenModulemappenModulebeheerModulepadModulesMuisaanwijzersMuiswielMuiswielgebeurtenissenVerplaatsenAnkers verplaatsenKanaal verplaatsenDrijvende selectie verplaatsenHulplijn verplaatsenHulplijn verplaatsen: Laag verplaatsenLaagmasker verplaatsenPad verplaatsenSelectie verplaatsenTekstlaag verplaatsenVerplaatsingItem verplaatsenVerplaats lagen en selectiesSelectie verplaatsenHuidige laag verplaatsenHuidig pad verplaatsenGeselecteerd filter naar benedenGeselecteerd filter naar bovenVerplaatsen naar scherm...Verplaatsen: Vermenigvuldigen_Aantal kleuren:Na_vigatie_Navigatievenster_Navigatievooruitblikgrootte:NaamNaam:NavigatieNieuw kanaalNieuwe kanaalkleurOpties Nieuw kanaalNieuwe kleur uit _AGNieuwe kleur uit _VGNieuwe afbeeldingNieuwe laagNieuw padOpties nieuw padNieuwe sjabloonNieuw penseelNieuw kanaalNieuw kanaal met laatste waardesNieuw kanaal...Nieuwe kleur uit AGNieuwe kleur uit VGNieuw verloopNieuw importerenNieuwe laagNieuwe laag met laatste waardesNieuwe laag...Nieuw paletNieuw pad met laatste waardesNieuw pad...Nieuw patroonNieuwe vectorenGeen penselen beschikbaar voor dit gereedschap.Geen filter geselecteerdGeen lineaire verlopen gevonden in '%s'Niet langer beschikbaarGeen paden gevonden in '%s'Geen paden gevonden in de bufferGeen patronen beschikbaar voor deze operatie.Geen selectieGeen selectie om op te tekenen.Geen miniaturenNiet uitgelijndGeenGeen (snelste)NormaalNormaal (128×128)Normaal aantal stippenNormaal vensterNiet een standaard bestandEr zijn niet genoeg zichtbare lagen om samen te voegen. Er moeten er ten minste twee zijn.Er zijn niet genoeg zichtbare paden om samen te voegen. Er moeten er minstens twee zijn.Aantal processors gebruiken:Aantal rasterlijnenAantal lagen:_Anders...VerspringenKanaal verspringenVerspringing tekengebiedLaag verspringenLaagmasker verspringenVerschuiven met x/_2, y/2Verspringing:Op schijfOp computers met meerdere processors en met een GIMP die met de optie '--enable-mp' is gemaakt, bepaalt dit hoeveel processors GIMP tegelijk moet gebruiken.Alleen in geheugenOp_enen als laag...OndoorzichtigheidOndoorzichtigheid:OpenenAfbeelding openenAfbeelding openen als laagLocatie openenOpen tekstbestand (UTF-8)_Locatie openen..._Recent geopendDialoogvenster Afbeelding openenOpen het penseelkeuzedialoogvensterOpen het fontkeuzedialoogvensterOpen het verloopkeuzedialoogvensterOpen het paletkeuzedialoogvensterOpen het patroonkeuzedialoogvensterGeselecteerde item openenOpenen van '%s' mislukte. - -%sOpenen van '%s' mislukte: %sOpties: -Oorsprong X:Oorsprong Y:Originele breedte:Anders (%s) ...OmtrekUitvoerniveausOverheen leggenPDB-aanroepfout voor procedure '%s': -Argument #%d type past niet (verwachtte %s, kreeg %s)PDB-aanroepfout: -procedure '%s' niet gevondenP_atronenVoor de GIMP Pixelquiz moet -je psyche een beetje afwijken.SchilderenSchilderopties gedeeld tussen gereedschappenTekengereedschapsproceduresTekengereedschap:_SchilderstandVage penseelstreken schilderenTeken lijnen met harde randenMet patronen of stukken uit een afbeelding schilderenPenseelPal_ettenPaletPaleteditorMenu PaleteditorPaletmappenPalet-UIPalet_naam:Palet_bestandPalettenMenu PalettenParasietproceduresParasietenBezig met parseren van '%s' -PlakkenInterface<Buffer plakken als _nieuwPad _plakkenPlakken _opPlakken als _nieuw beeldDe geselecteerde buffer plakkenDe geselecteerde buffer plakken als nieuwe afbeeldingDe geselecteerde buffer plakken in de selectieGeplakte laagPadPadattributenPadnaam:_PadPad kan niet verder naar benedenPad kan niet verder naar bovenLaag is reeds de onderste.Pad is reeds de bovenste.Pad naar sele_ctiePad naar selectiePad naar selectiePadenMenu PadenPatroonPatroonmappenPatroon-UIPatroon vullenPatroonbronPatronenMenu PatronenPot_loodPotloodPercentage van breedte van penseelPercentiel:Persoonlijke GIMP-mapPerspectiefInformatie perspectieftransformatiePerspectief...Kiesstand %sKies een laag of hulplijnKies een padZwartpunt kiezenKies een kleur uit de afbeeldingGrijspunt kiezenWitpunt kiezenPixeldimensies:PixelwaardenPixelsPixels:Controleer dat de menu XML-bestanden correct zijn geïnstalleerd.Wacht a.u.b. terwijl uw persoonlijke GIMP-map wordt aangemaakt...Een ogenblik geduld...Plug-inPlug-in-omgevingPlug-inmappenPlug-in kon afbeelding niet openenPlug-in kon afbeelding niet opslaanPlug-in crashte: "%s" -(%s) - -De stervende plug-in kan de interne staat van de GIMP overhoop hebben gehaald. U doet er verstandig aan uw afbeeldingen op te slaan en de GIMP af te sluiten en opnieuw op te starten.Plug-in melde SUCCES, maar produceerde geen afbeeldingPlug-insPlug-inPlug-ins en extensies zijn externe programma's die door de GIMP worden uitgevoerd en die extra functionaliteit bieden. Tijdens het uitvoeren van de GIMP wordt naar deze programma's gezocht en in dit bestand wordt informatie over hun functionaliteit en mod-tijden opgeslagen. Dit bestand hoort alleen door de GIMP gelezen te worden en mag niet worden gewijzigd.PolygonaalStaandPositie: %0.6fMet positiePosteriserenPosteriseren (aantal kleuren verminderen)Posterisatie_niveaus:Posteriseren werkt niet op geïndexeerde lagen.Voorkeuren_Lichtheid behoudenDrukgevoeligheidDruk:VooruitblikVooruitblik is verouderdVooruitblik:VooruitblikkenAfdrukgrootteAfdrukgrootte:Problemen met het parseren van de tekstparasiet voor laag '%s': -%s - -Sommige teksteigenschappen kunnen fout zijn. Dat is geen probleem, behalve als u de tekstlaag wilt bewerken.Procedurele DatabaseProcedurele databankVoortgangPseudokleurDoel:KwaliteitOpvragenOpvragen nieuwe plug-ins (bezig)Opvragen plug-in: '%s' (bezig) -Snel ladenSnelmaskerSnelmaskerattributenMenu SnelmaskerSnel opslaanSnelmaskerDe GIMP afsluitenRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-kleurRGB-leegRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RNL"%s" opnieu_w tonenGereedschapsopties _herstellenKanaal _herstellenKleur _herstellenKl_eur van rechtereindpunt...RadiaalStraal:Kanaal verhogenKanaal bovenaanKanaal _bovenaanLaag omhoogLaag bovenaanPad omhoogPad naar topPad naar _topKanaal verhogenKanaal bovenaan zettenLaag omhoogLaag bovenaan zettenPad omhoogPad naar topDe weergaven van deze afbeelding omhoogVenster bovenop indien reeds geopendMateMate:Laatste opnieuw tonenMiddelpunten in selectie hercentrerenMiddelpunt van segment hercentrerenHandvatten in segment herverdelenHandvatten in selectie herverdelenOpgeslagen opties _hernoemen"%s" _herhalen_Terugdraaien...Laden palet '%s': GROEN-component ontbreekt op regel %d.Laden palet '%s': ongeldig aantal kolommen op regel %d. GIMP gebruikt standaard waarde.Laden palet '%s': BLAUW-component ontbreekt op regel %d.Laden palet '%s': ROOD-component ontbreekt op regel %d.Laden palet '%s': RGB-waarde buiten bereik op regel %d.KlaarOverzicht 'ongedaan maken' voor deze afbeelding echt leegmaken?_Vooruitblik opnieuw aanmakenVooruitblik opnieuw aanmakenRechthoekselectieRoodRood:Opnieuw uitvoerenAfbeelding tot vast aantal kleuren reducerenAfbeelding tot twee kleuren reduceren met een grenswaardePenselen vernieuwenVerlopen vernieuwenPaletten vernieuwenPatronen vernieuwenGeregistreerdHuidig thema herladen_Alle vooruitblikken herladenAlle vooruitblikken herladenOnthou het huidige gereedschap, patroon, de kleur en penseel voor een volgende sessie.NetwerkafbeeldingKanaal verwijderenLosse i_ngangen verwijderenDrijvende selectie verwijderenHulplijn verwijderenLaag verwijderenParasiet uit afbeelding verwijderenParasiet van item verwijderenPad verwijderen_Item verwijderenLosse ingangen verwijderenDrijvende selectie verwijderenParasiet verwijderenGeselecteerde ingang verwijderenVerwijder het geselecteerde filter uit de lijst van actieve filters.Verwijderen sneltoets mislukt.Kanaal hernoemenLaag hernoemenPad hernoemenOpgeslagen gereedschapsopties hernoemenTekstlaag hernoemenItem hernoemenLijn renderenHerrangschik kanaalLaag herschikkenPad herschikkenLaatste herhalenHerhaal:Huidige selectie vervangenKopieerKopieer verloopsegmentKopieer verloopselectieKopieer segmentKopieer selectieKanaal herpositionerenLaag herpositionerenVectoren herpositionerenLettertypelijst opnieuw inlezenGereedschapsopties herinstellen_Alle gereedschapsopties opnieuw instellen...Alle filters herstellenAlle filters herstellen...Alle gereedschapsopties opnieuw instellen...Geselecteerd filter naar beginwaardenTerugzetten naar standaardwaardenVolgorde en zichtbaarheid van het gereedschap herstellenHerschalenKanaal herschalenAfbeelding herschalenLaag herschalenPad herschalenTekstlaag herschalenAfbeelding herschalenItem herschalenVenstergrootte aanpassen bij _zoomen_Venstergrootte aanpassen bij vergroten/verkleinen afbeeldingHerschalen...ResolutiewijzigingResolutie:BronverbruikBronconfiguratieOpties herstellen uit...Herstel opgeslagen sneltoetsen als GIMP start.TerugdraaienTerugdraaien'%s' terugzetten naar '%s'?Afbeelding terugzettenTerughalen lukte niet. Geen bestandsnaam aan deze afbeelding verbonden.Terughalen uit '%s' mislukte. - -%sKleur van rechtereindpuntRechts uitgelijndRoteren90 graden draaien _TKI_90 graden draaien MKMKanaal draaienLaag draaienPad draaienTekstlaag draaien_180 graden draaienAfbeelding draaienDraai de laag of selectieRoteren...Rotatie-informatieRond_Hellen_Raster tonen_Krimpen...S_pakenKleuren _wisselenRechterkleur opsl_aan naarSamengevoegd monsterenVerz.:VerzadigingOpslaan'%s' opslaan als POV-RayCurves opslaanFoutenlog in bestand opslaanAfbeelding opslaanApparaatinstellingen _nu opslaanSneltoetsen _nu opslaanNiveaus opslaanGereedschapsopties opslaanVensterposities _nu opslaan_Alle fouten naar bestand schrijven...Selectie op_slaan in bestand...Opslaan _als..._Kopie opslaan...Kopie van de afbeelding opslaanAlle fouten opslaanAls _POV-Ray opslaan...Opslaan als s_jabloon...Sla gewijzigde sneltoetsen op als de GIMP afsluit.Sla curve-instellingen op in bestandApparaatstatus opslaanVerloop opslaan als POV-RayNiveauinstellingen in bestand opslaanOpties opslaan naar...Selectie opslaanSelectie opslaan in kanaalWijzigingen aan afbeelding '%s' opslaan voor afsluiten?Sla de posities en groottes van de belangrijkste dialoogvensters op als de GIMP afsluit.Opslaan in _kanaalOpgeslagen optiesBezig met opslaan van '%s' -Bewaren '%s' mislukt: - -%sAfbeeldingen opslaanZaagtandgolfSchaalbaar vectorbestand (*.svg)SchalenKanaal schalenAfbeelding schalenLaag schalenPad schalenTekstlaag schalenAfbeelding schalenItem schalenSchaalverhouding X:Schaalverhouding Y:Schaal:Schaal de laag of selectieSchalenSchaalinformatieSchalen...ScharenSchermScript-Fu-mappenScriptsMuiswiel neerMuiswiel neer (Alt)Muiswiel neer (Control + Alt)Muiswiel neer (Control)Muiswiel neer (Shift + Alt)Muiswiel neer (Shift + Control + Alt)Muiswiel neer (Shift + Control)Muiswiel neer (Shift)Muiswiel linksMuiswiel links (Alt)Muiswiel links (Control + Alt)Muiswiel links (Control)Muiswiel links (Shift + Alt)Muiswiel links (Shift + Control + Alt)Muiswiel links (Shift + Control)Muiswiel links (Shift)Muiswiel rechtsMuiswiel rechts (Alt)Muiswiel rechts (Control + Alt)Muiswiel rechts (Control)Muiswiel rechts (Shift + Alt)Muiswiel rechts (Shift + Control + Alt)Muiswiel rechts (Shift + Control)Muiswiel rechts (Shift)Muiswiel op Muiswiel op (Alt)Muiswiel op (Control + Alt)Muiswiel op (Control)Muiswiel op (Shift + Alt)Muiswiel op (Shift + Control + Alt)Muiswiel op (Shift + Control)Muiswiel op (Shift)SelecterenAlles selecterenPenseelmappen selecterenOp kleur selecterenKleur selecterenOmgevingsmappen selecterenSelecteer bestands_type ( %s)Fontmappen selecterenVerloopmappen selecterenModulemappen selecterenNiets selecterenPaletmappen selecterenPatroonmappen selecterenPlug-inmappen selecterenSelecteer primaire kleur om aan te passenSelecteer bereik om aan te passenScript-Fu-mappen selecterenBron selecterenWisselmap selecterenTijdelijke map selecterenThema selecterenThemamappen selecterenZoomverhouding selecterenO_nderste laag selecteren_Eigen kleur selecteren...V_olgende laag selecteren_Vorige laag selecteren_Bovenste laag selecterenAlles selecterenSelecteer op kleurSelecteer aaneengesloten gebiedenElliptische gebieden selecterenSelecteer gebieden met de handNiets selecterenPaletbestand selecterenSelecteer rechthoekige gebiedenGebieden op kleur selecterenSemi-automatisch selecterenWisselmap selecterenSelecteer het aantal keren dat het -geselecteerd segment moet worden gekopieerd.Selecteer het aantal keren dat de -selectie moet worden gekopieerd.Selecteer het aantal gelijke delen waarin de -geselecteerde segmenten moeten worden opgesplitst.Selecteer het aantal gelijke delen waarin het -geselecteerd segment moet worden opgesplitst.Webbrowser selecterenSele_ctie naar padSelectieSelectie-editorMenu Selectie-editorSelectiemaskerSelectiegereedschapsproceduresSelectiemaskerSelectie naar pad (ge_avanceerd)Selectie naar padSelectie: Selectie: TOEVOEGENSelectie: SNIJDENSelectie: VERVANGENSelectie: AFTREKKENGevoeligheidStel canvasopvulkleur inKanaalkleur instellenKanaalondoorzichtigheid instellenKleurenkaart instellenCanvasgrootte instellenAfdrukresolutie instellenStel item in op exclusief gekoppeldStel item in op exclusief zichtbaarLaaggrensgrootte instellenNaam uit tekst instellenOndoorzichtigheid instellenAchtergrondkleur instellenVoorgrondkleur instellenItem op vastgekoppeld instellenLaagmodus instellenOndoorzichtigheid laag instellen'Behoudt transparantie' instellenBovenste limiet voor de hoeveelheid geheugenruimte die per afbeelding wordt gebruikt om handelingen ongedaan te kunnen maken. Ongeacht deze instelling kunt u tenminste zoveel handelingen ongedaan maken als ingesteld.De browser die door het hulpsysteem wordt gebruikt.Stelt de opvulkleur van het canvas in als de opvulstand is ingesteld op eigen kleur.Stelt de externe webbrowser in die gebruikt moet worden. Dit kan een absoluut pad zijn of de naam van het uitvoerbaar bestand dat in het PATH van de gebruiker gezocht moet worden. Als de instructie '%s' bevat, zal hij door de URL worden vervangen, anders wordt de URL aan de instructie geplakt, met een spatie tussen de twee.Het niveau van interpolatie gebruikt voor schalen en andere transformaties.De manier waarop transparantie in afbeeldingen wordt getoond.Het minimaal aantal handeling dat ongedaan kan worden gemaakt. Meer handelingen worden bewaard tot de limiet is bereikt.De modus van de cursor die GIMP gebruikt.Stelt de horizontale beeldresolutie in op dots per inch. Bij de waarde 0 wordt de X-server gedwongen informatie te geven voor zowel de horizontale als verticale resolutie.Stelt de verticale beeldresolutie in op dots per inch. Bij de waarde 0 wordt de X-server gedwongen informatie te geven voor zowel de horizontale als verticale resolutie.Steld het pixelformaat in van de cursors die GIMP gebruikt.De standaardgrootte van de vooruitblik voor lagen en kanalen in nieuw aangemaakte dialogen.De grootte van de vakken die worden getoond om transparantie mee aan te geven.De grootte van de navigatievooruitblik (te vinden in de rechteronderhoek van het afbeeldingsvenster).De grootte van de vooruitblikken in het Overzicht 'Ongedaan maken'.De grootte van de miniatuurafbeelding in het dialoogvenster "Openen". Merk op dat GIMP geen miniaturen kan aanmaken als laagvooruitblikken zijn uitgeschakeld.De lokatie van het wisselbestand. De GIMP gebruikt een op 'tegels' gebaseerde geheugentoewijzingsmethode. Het wisselbestand wordt gebruikt om snel en gemakkelijk tegels naar de schijf te schrijven en weer terug te halen. Hou er rekening mee dat het wisselbestand gemakkelijk erg groot kan worden als de GIMP met grote afbeeldingen wordt gebruikt. De computer kan ook zeer traag worden als het wisselbestand wordt aangemaakt in een map die via NFS is aangekoppeld. Om deze redenen kan het wenselijk zijn dat u uw wisselbestand in "/tmp" opslaat (UNIX-achtige systemen).De tijdelijke opslagmap. Hier zullen bestanden verschijnen als GIMP wordt uitgevoerd. De meeste bestanden zullen weer worden gewist als u GIMP verlaat, maar nu en dan blijven bestanden achter, dus kunt u deze map beter niet delen met andere gebruikers.De tekst die verschijnt in de statusbalk van afbeeldingsvensters.De tekst die verschijnt in de titelbalk van afbeeldingsvensters.Moet GIMP vooruitblikken aanmaken van lagen en kanalen? Vooruitblikken in de dialogen voor lagen en kanalen kunnen handig zijn, maar kunnen de werking van het programma vertragen als u met grote afbeeldingen werkt.SchaduwtypeDonkere kleurenVormVorm:Naar vorm (hoekig)Naar vorm (putjes)Naar vorm (rond)VerscherpenKanaal verscherpenSelectie verscherpenHellenHelling X:Helling Y:De laag of selectie hellenHellingsinformatieHellen...Korte streepjesSneltoetsSneltoets "%s" is al in gebruik bij "%s" in de groep "%s".Laagmasker tonen_Linealen tonenStatusbalk tonenScrollbalken tonenHulplijnen tonenLaaggrens tonenMenubalk tonenSelectie _tonen_Penseelomtrek tonen_Voor- en achtergrondkleur tonen_Hulplijnen tonen_Laaggrens tonen_Menubalk tonen_Linealen tonenActieve Penselen, Patronen & Verlopen tonen_Actieve afbeelding tonen_Raster tonen_Hulpknoppen tonenAfbeeldingsgrootte tonenGeheugenverbruik tonenMenu-sneltoetsen tonen (combinatie-toetsen)_Tekengereedschap cursor tonenS_electie tonenS_tatusbalk tonen_Schuifbalken tonenToon tip bij het opstarten van GIMP_Tips tonen bij opstarten_Tooltips tonenZoompercentage weergevenZoomverhouding weergevenKanaal krimpenSelectie krimpenNaar _afbeeldingsgrootteKrimp vanaf de afbeeldingsrandKrimp selectie metNaar afbeeldingsgrootteGrootteGrootte in geheugen:Grootte van _miniaturen:Grootte:'%s' wordt overgeslagen: verkeerde GIMP-protocolversie.KleinKleinere vooruitblikkenGeleidelijkGladde randenSmerenAfbeelding smeren_Hulplijnen magnetisch_Raster magnetischZacht lichtVastBronTussenruimteTussenruimte:Weinig stippenSpeciaal bestandGeeft aan hoe het gebied rond de afbeelding moet worden getekend.Snelheid van marcherende mieren in de selectierand. Deze waarde is in milliseconden (minder tijd betekent sneller marcheren).Snelheid:Sferisch (_afnemend)Sferisch (_toenemend)Spaken:Spiraalvormig (tegen de klok in)Spiraalvormig (met de klok mee)SplitsenSplits verloopsegment gelijkmatigSplits verloopsegmenten gelijkmatigSplits segment gelijkmatigSegment gelijkmatig splitsen...Segment op middelpunt splitsenSplits segmenten gelijkmatigSegmenten gelijkmatig splitsen...Segmenten op middelpunten splitsenVierkantSt_atus en tekst_StapelStandaardStarten van extensies (bezig)Starten extensie: '%s' (bezig) -Staat:Statische KleurStatisch GrijsStatus & omschrijvingStatus & tekstStandaard afwijking:StippenStandaard IDLijn tekenen op pad_Lijn tekenen op pad...Pad naar lijnLijn op selectie tekenenLijn op selectie tekenenLijn tekenen op pad met laatste waardesLijn tekenen op pad...Lijn tekenen op selectie met de laatste waardesLijn tekenen op selectie...Lijn tekenen met tekengereedschapSoort kader rond de statusbalktekstAftrekkenVan huidige selectie aftrekkenOvermonsteringWisselmap:_Gereedschap_Tekst_TekstTijdelijke map:SjablonenMenu SjablonenTijdelijke procedurePlug-in afsluiten: '%s' -TekstTekstkleurTeksteditorTekstlaagTekst gewijzigdTekstproceduresDe GIMPDe GIMP-hulp browserplug-in is schijnbaar niet geinstalleerd.Het actieve penseel. -Klik om het dialoogvenster Penselen te openen.Het actieve verloop. -Klik om het dialoogvenster Verlopen te openen.De actieve afbeelding. -Klik om het dialoogvenster Afbeelding te openen.Het actieve patroon. -Klik om het dialoogvenster Patronen te openen.De achtergrondkleur van het raster; wordt alleen gebruikt in dubbelgestreepte lijnstijl.De bestandsnaam '%s' kon niet in een geldige URI worden veranderd: - -%sDe voorgrondkleur van het raster.Het bestand gimprc wordt gebruikt om persoonlijke voorkeuren op te slaan die de werking van de GIMP beïnvloeden. Paden naar penselen, paletten, verlopen, patronen, plug-ins en modules kunnen hier ook worden ingesteld.De horizontale afbeeldingsresolutie.De laag die u selecteerde is een tekstlaag, maar werd met andere gereedschappen gewijzigd. Als u deze laag met het tekstgereedschap bewerkt, zullen deze wijzigingen ongedaan worden gemaakt. - -U kunt de laag bewerken of een nieuwe tekstlaag maken uit zijn tekstattributen.Het sessionrc-bestand wordt gebruikt om op te slaan welke dialoogvensters open waren toen u de GIMP voor het laatst afsloot. U kunt de GIMP configureren zodat hij deze dialogen op de opgeslagen positie heropent.De miniatuur in het dialoogvenster Openen zal automatisch worden vernieuwd als het bekeken bestand kleiner is dat hier is ingesteld.De tegelcache wordt gebruikt om ervoor te zorgen dat GIMP geen tegels tussen geheugen en schijf blijft wisselen. Als u deze waarde hoger maakt, gebruikt de GIMP minder wisselruimte, maar wel meer geheugen. De eenheid voor coördinatenweergaven in een andere dan stip-voor-stip-stand.Het unitrc-bestand wordt gebruikt om uw eenhedendatabase op te slaan. U kunt additionele eenheden definiëren en deze net zo gebruiken als de ingebouwde eenheden, zoals duimen, millimeters, punten en picas. Dit bestand wordt elke keer dat u de GIMP afsluit, opgeslagen.De verticale afbeeldingsresolutie.De venstertypehint die op dokvensters is ingesteld. Dit kan beïnvloeden hoe uw venstermanager dokvensters weergeeft en ermee omgaat.De venstertypehint die op de gereedschapskist is ingesteld. Dit kan beïnvloeden hoe uw venstermanager het Gereedschappenvenster weergeeft en ermee omgaat.ThemaThemamappenThema'sER zijn %d bestanden met niet opgeslagen wijzigingen:Er zijn niet genoeg zichtbare lagen voor een neerwaarte samenvoeging.Er is altijd een afweging tussen geheugengebruik en snelheid. In de meeste gevallen kiest de GIMP voor hoge snelheid boven zuinig geheugengebruik. Als geheugen echter een probleem is, probeer dan deze instelling.Er is geen actieve laag of kanaal om van te kopiëren.Er is geen actieve laag of kanaal om van te knippen.Er is geen actieve laag of kanaal om op te tekenenEr is geen actieve laag of kanaal om op te tekenen.Er is een bestand met niet opgeslagen wijzigingen:Er hoort een bestand genaamd '%s' te zijn. Controleer a.u.b. uw installatie.Het parseren van uw bestand '%s' ging mis. Standaard waarden worden gebruikt. Een kopie van uw instellingen is aangemaakt in '%s'.Dit bestand bevat een verzameling standaard mediumgroottes die dienen als afbeeldingssjablonen.In deze map worden afbeeldingssjablonen gezocht.In deze map worden door de gebruiker geplaatste thema's gezocht.Deze map wordt gebruikt om door de gebruiker gedefinieerde fonts in op te slaan. De GIMP controleert deze map naast de systeembrede map voor fonts bij het zoeken naar fonts.Deze map wordt gebruikt om parameterbestanden van het curvegereedschap in te bewaren.Deze map wordt gebruikt om parameterbestanden van het niveausgereedschap in te bewaren.In deze map worden gereedschapsopties bewaard.Deze map wordt gebruikt om door de gebruiker gemaakte en geïnstalleerde scripts in op te slaan. De GIMP controleert deze map naast de systeembrede map voor scripts bij het zoeken naar scripts.Deze map wordt gebruikt om door de gebruiker gemaakte, tijdelijke of andere niet door het systeem ondersteunde DLL-modules in op te slaan. De GIMP controleert deze map naast de systeembrede map voor modules bij het zoeken naar modules tijdens het opstarten.Deze map wordt gebruikt om door de gebruiker aangemaakte, tijdelijke, of andere niet door het systeem toevoegingen aan de plug-inomgeving op te slaan. De GIMP controleert deze map naast de systeembrede omgevingsmap bij het zoeken naar plug-ins.Deze map wordt gebruikt om door de gebruiker aangemaakte, tijdelijke, of andere niet door het systeem ondersteunde plug-ins in op te slaan. De GIMP controleert deze map naast de systeembrede map voor plug-ins bij het zoeken naar plug-ins.Deze map wordt gebruikt om door de gebruiker gedefinieerde penselen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor penselen bij het zoeken naar penselen.Deze map wordt gebruikt om door de gebruiker gedefinieerde verlopen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor verlopen bij het zoeken naar verlopen.Deze map wordt gebruikt om door de gebruiker gedefinieerde paletten in op te slaan. De GIMP controleert deze map naast de systeembrede map voor paletten bij het zoeken naar paletten.Deze map wordt gebruikt om door de gebruiker gedefinieerde patronen in op te slaan. De GIMP controleert deze map naast de systeembrede map voor patronen bij het zoeken naar patronen.Deze map wordt gebruikt om tijdelijk buffers voor Ongedaan Maken in op te slaan om op geheugengebruik te besparen. Als de GIMP niet op de zachtaardige manier is afgesloten, kunnen in deze directory bestanden achterblijven met de vorm: gimp<#>.<#>. Deze bestanden zijn tussen GIMP-sessies nutteloos en kunnen probleemloos worden verwijderd.Deze map zal enkele belangrijke bestanden bevatten. Klik op een van de bestanden of mappen in de boom om meer informatie over het gekozen item te krijgen.Dit is de afstand in pixels waar magnetische hulplijnen en raster beginnen.Dit programma wordt gedistribueerd hopende dat het goed te gebruiken zal zijn, maar zonder enige garantie; zelfs zonder de impliciete garantie van verkoopbaarheid of geschiktheid voor een bepaald doel. Zie de GNU general Public License voor meer details.Dit programma is vrije software; u kunt het opnieuw distribueren en/of modificeren onder de voorwaarden van de GNU General Public License zoals gepubliceerd door de Free Software Foundation; ofwel versie 2 van deze licentie, of (naar uw believen) een latere versie.Het tekstinvoerveld kan maximaal %d tekens bevatten.Dit gereedschap heeft geen opties.Dit venster heeft %d tabs openstaan. Wanneer u het venster sluit zullen ook alle tabs worden gesloten DrempelwaardeDrempelgereedschap werkt niet op geïndexeerde lagen.Drempel:Miniatuur %d van %dGrootte van TegelbufferHelling:MiniscuulTitel & StatusNaar _pad_SpeeltjesSnelmasker schakelen_Snelmasker schakelenTeveel foutmeldingen!GereedschapsoptiesMenu GereedschapsoptiesWissel gereedschap %sGereedschaps_optiesGereedschapspictogramGereedschapspictogram met kruisdraadGereedschapskistGereedschapskistGereedschapskistmenuGereedschapGereedschapmenuGereedschap als 'Vage selectie' en 'Vullen' vinden gebieden van aaneengesloten pixels op basis van een 'seed-fill' methode. Hierbij wordt vanuit de beginpixel in alle richtingen uitgewaaierd en gekeken wanneer het verschil in helderheid van de pixel met de beginpixel een drempelwaarde overschrijd. Deze waarde staat voor de standaard drempelwaarde.Tr_ansparantieAlpha naar masker verplaatsenTransformerenKanaal transformerenTransformatierichtingLaag transformerenPad transformerenTekstlaag transformerenTransformatiegereedschapsproceduresLaag transformerenPad transformerenSelectie transformerenTransformatieTransformatieproceduresTransformatie (bezig)Vertaald door ...Transparantie_Transparantietype:Driehoekige golfEchte kleurTypeType %sTyp een nieuwe sneltoetsTyp een nieuwe sneltoets, of geeg Backspace om te wissenKan geen laagmasker toevoegen, omdat de laag er al een heeft.Niet in staat te knippen of kopiëren, omdat geselecteerd gebied leeg is.Niet in staat een testwisselbestand te openen. Voorkom gegevensverlies en controleer a.u.b. de lokatie en rechten van de wisselmap die in uw Voorkeuren staan ingesteld (op dit moment "%s").Kon het wisselbestand niet openen. The Gimp heeft te weinig geheugenruimte maar kan het wisselbestand niet gebruiken. Mogelijkerwijze zijn nu delen van uw afbeelding beschadigd. Probeer uw werk op te slaan onder andere bestandsnamen, start the Gimp opnieuw op en controleer de lokatie van het wisselbestand in uw Voorkeuren.OngedefinieerdOngedaan makenOverzicht 'Ongedaan maken'_Overzicht 'Ongedaan maken'EenhedenOnbekendOnbekend bestandstypeOnbekend type van paletbestand: -%sLossenNaamloosNaamloosStandaard "stip voor stip" gebruiken_Webbrowser gebruiken in plaats hiervanGebruik alle zichtbare lagen bij het krimpen van de selectieZwart/wit (1-bit) palet gebruikenGebruik kleur uit verloopAangepast palet gebruikenInfovenster gebruiken Web-geoptimaliseerd palet gebruikenGebruikersinstallatielogBedieningWerktuigvensterWaardeWaarde:VectorwijzigingVersie %s, u aangeboden door ...Versie:VerticaalVerticale verspringing van de eerste rasterlijn; dit mag een negatief getal zijn.Verticale tussenruimte van rasterlijnen.Zeer grootZeer kleinBeeldAls _raster bekijkenAls _lijst bekijkenAls raster weergevenAls lijst weergevenBeeldklasseBeelddiepte:Waarschuwing: Kon gegevens niet laden: - -%sWaarschuwing: Kon gegevens niet opslaan: - -%sWebbrowserWebbrowserWelkom bij de -GIMP %d.%d gebruikersinstallatieWanneer ingeschakeld volgt het dialoogvenster automatisch de afbeelding die waar u mee bezig bent.Indien ingeschakeld worden in de menus van de GIMP sneltoetsen gebruikt.Wanneer ingeschakkeld zal al het tekengereedschap een vooruitblik van de omtrek van het huidige penseel tonen.Als dit aanstaat, zal een afbeelding actief worden als zijn venster focus ontvangt. Dit is nuttig voor vensterbeheerprogramma's die "click to focus" gebruiken.Als dit aanstaat, kunnen menu's afgescheurd worden.Als dit aanstaat wordt met het indrukken van de F1-toets de hulpbrowser gestart.Als dit aanstaat, slaat de GIMP een afbeelding niet op als deze niet gewijzigd is sinds hij werd geopend.Als dit aanstaat gebruikt de GIMP een infovenster per afbeeldingsweergave.Als dit aanstaat wordt de X-server bij elke muisbeweging om de muispositie gevraagd. Anders wordt op positiehints vertrouwd. Dit betekent dat schilderen met grote penselen nauwkeuriger zou moeten zijn, maar ook trager. Vreemd genoeg resulteert deze optie bij sommige X-servers in sneller schilderen.Als dit aanstaat, zal de cursor zichtbaar zijn tijdens het tekenen op de afbeelding.Als dit aanstaat, is het raster standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Raster tonen".Als dit aanstaat, zijn de hulplijnen standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Hulplijnen tonen".Als dit aanstaat zal het afbeeldingsvenster zichzelf herschalen als er op de afbeelding wordt in- of uitgezoomd.Als dit aanstaat zal het afbeeldingsvenster zichzelf herschalen als de afbeelding zelf wordt geschaald.Als dit aanstaat, is de laaggrens standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Laaggrens tonen".Als dit aanstaat, is de menubalk standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Menubalk tonen".Als dit aanstaat, zijn de linealen standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Linealen tonen".Als dit aanstaat, zijn de scrollbalken standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Scrollbalken tonen".Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde penseel.Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde verloop.Wanneer ingeschakeld, gebruiken alle gereedschappen het geselecteerde patroon.Als dit aanstaat, is de selectie standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Selectie tonen".Als dit aanstaat, is de statusbalk standaard zichtbaar. Dit kan ook worden geschakeld met het menu-item "Beeld/Statusbalk tonen".Als dit aanstaat wordt elke afbeeldingspixel geprojecteerd op een schermpixel.Als dit aanstaat, zal de volledige afbeelding zichtbaar zijn na het openen van een bestand, anders zal deze getoond worden op een schaal van 1:1.Als dit aanstaat, kunt u de sneltoetsen voor menu-items wijzigen door een toetsencombinatie in te drukken terwijl het menu-item is geselecteerd.WitWitbalans werkt enkel op RGB-kleurenlagen.BreedteBreedte:VensterbeheerVensterbeheer hintsVensterpositiesSchrijven van '%s' (bezig) -XXFC-fout: niet ondersteunde XCF-bestandsversie %d tegengekomenXCF waarschuwing: versie 0 van het XCF- -bestandsformaat sloeg geïndexeerde kleurenkaarten -verkeerd op. Bezig met vervangen van -de grijswaardenkaart.YGeelGeel:U probeert een afbeelding aan te maken met grootte %s.U kunt hier dokbare dialoogvensters plaatsen.U zou een kopie van de GNU General Public License, samen met dit programma, ontvangen moeten hebben; indien dat niet het geval is kunt u schrijven naar de Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -Aan de vertaling van deze tekst kunnen geen rechten worden ontleend. Hiervoor moet u de oorspronkelijke Engelse teksten gebruiken.U moet de GIMP herstarten om de volgende veranderingen door te voeren:Uw installatie van GIMP is incompleetGedrag zoomen en schalenZoom 1:1Alles tonenInzoomenUitzoomenZoomverhoudingZoomverhouding:_Alles tonen_Inzoomen_UitzoomenAlles tonenZoomfactor: %d:1Afbeelding zoomen als venstergrootte wijzigtInzoomenIn- & uitzoomenUitzoomenZoom:[ Basisafbeelding ]I_nfo_ImporterenKleur _toevoegen uit AGKleur _toevoegen uit VG_Tab toevoegen_Aan selectie toevoegen_Geavanceerde opties_Verfspuit_AllesLaag ver_ankeren_Anti-aliasing_Willekeurige draaiing..._Artistiek_Verhouding_Automatisch_B_AG-kleur_Achtergrondkleur:_Zwart (transparant)_Mengfunctie voor segmentMengfunctie voor selectie_VervagenHe_lderheid:Pe_nseel_Penselen_Penselen, Patronen & Verlopen_Vullen_BuffersOp _kleurOp kle_urselectie_C_Hoekstijl:_Kanalen_Fouten wissenOverzicht 'Ongedaan maken' _leegmaken_KlonenSl_uitenTab sl_uitenW_olken_Kleur_KleurenKleur en ondoorzichtigheid _configureren..._Context_Contexthulp_KopiërenBenoemde buffer _kopiëren..._Afbeelding volgens sjabloon aanmaken..._Knippen & herschalenAfbeelding _snijden_Gebogen_Curves..._Donkere vakjes_StandaardkleurenPenseel _verwijderenBuffer _verwijderenKanaal _verwijderenKleur verwij_deren_Verloop verwijderen... Afbeelding _verwijderenLaag _verwijderenPalet verwij_derenPad _verwijderenPatroon verwij_deren...Opgeslagen opties _verwijderenSegment verwijderenSelectie verwijderenSjabloon _verwijderen_DesaturerenTab _loskoppelen_Apparaatstatus_Dialogen_Wijzigingen verwerpenTekstinformatie weggooien_Vervormingen_Punt voor punt_DuplicerenBe_werkenPenseel be_werken...Kanaalattributen be_werken...Kleur be_werken...Verloop be_werken...Laagattributen be_werken...Palet be_werken...Padattributen be_werken...Patroon be_werken...Sjabloon be_werken..._Ovale selectie_Laag- en kanaalvooruitblikken inschakelenE_norm_Gelijkmaken_Gummetje_VG-kleur_Bestand_Vullen met:A_fbeelding in venster passenAfbeelding _pletten_SpiegelenSegment spiegelenSelectie spiegelen_Zwevend_Lettertype_Lettertypes_Voorgrondkleur:_Vrije selectie_G_GeneriekGig_antisch_Verloop_Verloop_Grijswaarden_Grijswaardenkopie van laag_Uitdijen..._Hulplijn_Hardheid_Hulp_Horizontaal:Kleur_toon:_Reusachtig_Pictogram_Pictogram:_Afbeelding_Afbeeldingen_ImporterenPalet _importeren...Geï_ndexeerd_InformatievensterMet selectie _snijden_Inverteren_Verbindingsstijl:_Groot_Laag_Lagen_Lagen, Kanalen & Paden_Linker eindpunt_Rechtereindpunt van linkerbuur_Niveaus..._Lichte vakjes_LichteffectenLichtheid:_Lijnstijl_Lineair_Gekoppeld_Linkerkleur laden uitKanaal om_laagLaag om_laagPad om_laag_M_HandmatigPro_jecteren_Masker_Masker naar selectie_Maximum aantal kleuren:_Meten_MiddelPaletten _samenvoegen..._Geïmporteerde paden samenvoegenGIMP 2.0 _gebruikersinstellingen overzetten_OverigeVerste_klimiet:_Modus_Modulebeheer_Verplaatsen_Naam:_Natuur_Nieuw penseel_Nieuw kanaal_Nieuw kanaal..._Nieuwe invoer..._Nieuw verloop_Nieuwe laag_Nieuwe laag..._Nieuw palet_Nieuw pad_Nieuw pad..._Nieuw patroon_Nieuw sjabloon..._Nieuw beeld_Nieuw..._Volgende tip_Ruis_Niets_Verschuiving..._OndoorzichtigheidAfbeelding _openen_Openen...T_ekenen_PenseelPa_let_PlakkenBuffer _plakkenBenoemde buffer _plakken..._Paden_Patroon_Perspectief_Posteriseren..._Voorkeuren_Vooruitblik_Grootte van vooruitblikV_orige tipA_fdrukgrootte..._Eigenschappen_Snelmasker actiefSl_uiten_R_RGB_StraalKanaal om_hoogLaag om_hoogPad om_hoog_Weergaven omhoog_Afbeelding openen of tonen_Sneltoetsen opnieuw toewijzen_RechthoekselectieO_pnieuw uitvoeren%s opnieuw uitvoeren_Penselen vernieuwenVerlopen ve_rnieuwenPaletten ver_nieuwenPatronen _vernieuwen_Ongebruikte kleuren uit het palet verwijderen_Renderen_VervangenSegment kopiëren...Selectie kopiëren..._Lettertypelijst opnieuw inlezenVolgorde en zichtbaarheid _herstellenHerstel opgeslagen sneltoetsen bij opstarten._Opgeslagen vensterposities herstellen bij opstartenOpties he_rstellen uit_Rechter eindpunt_Linkereindpunt van rechterbuur_RoterenVer_zadiging:Op_slaanLinkerkleur op_slaan naarOpties op_slaan naar_Apparaatinstellingen opslaan bij verlaten..._Sneltoetsen opslaan bij verlatenVensterposities op_slaan bij verlaten_SchalenAfbeelding _schalen...Laag _schalen...Geïmporteerde paden _schalen naar afbeeldinging_Selecteren_Selectie_Selectie-editor_Selectie_VormVer_scherpen_Selectie tonen_Tonen in de gereedschapskist_Sinusvormig_Klein_Smeren_Magnetische afstand:_Lijn tekenen op selectie_Lijn tekenen op selectie...Van selectie _aftrekkenTab_stijl_Sjabloon:_Sjablonen_Tekst_Drempelwaarde...Minisc_uul_Tip van de dag_Gereedschap_Gereedschap_Alphakanaal van de laag verplaatsen_Transformeren_Transformatie_Ongedaan maken%s o_ngedaan maken_Verticaal:Beel_d_Zichtbaar_WebTe gebruiken _webbrowser:_Wit (ondoorzichtig)_Witbalans_Breedte:Resolutie _X:X:_Xtra_YResolutie _Y:Y:_Zoomen_Zoomen (%s)kleurenkopiërendpiverwachtte 'ja' of 'nee' voor Boolse token %s, kreeg '%s'fatale parseerfoutgrijswaardengrijswaarden-leegduimduimengeïndexeerdgeïndexeerd-leegongeldige UTF-8-tekenreeksongeldige waarde '%ld' voor pictogramtypeongeldige waarde '%ld' voor token %songeldige waarde '%s' voor pictogramtypeongeldige waarde '%s' voor token %smillimetermillimetersminuutn.v.t.procentpicapicaspixelpixelspixels/%apixels/%spuntpuntensecondetips-locale:nlTino Meinen -Branko Collin(2003) -Gert de Wit (2000) -Wing Tung Leung (1998) - -Kijk voor meer info op http://nl.gnome.org/waarde voor token %s is geen geldige UTF-8-tekenreeksbij parseren token '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/no.gmo gimp-2.2.9/po/no.gmo --- gimp-2.2.8/po/no.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.9/po/no.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,484 +0,0 @@ -Þ•U ÄJs l•8Ç9Ç&OÇkvÇGâÇ9*ÈGdÈA¬ÈNîÈi=É<§ÉkäÉ@PÊ2‘Ê;ÄÊPËOQË2¡Ë9ÔË-Ì9<Ì;vÌ7²Ì êÌôÌ -ûÌ Í -Í -Í &Í2ÍBÍ -QÍ\Í_ÍoÍ -‡Í’͚͢;ÍØÍîÍ0õÍ&Î7ÎJÎSÎ[Î -rÎ}΄ΌΔΠ£Î ±Î ½Î -ËÎ -ÖÎ áÎ îÎúÎ -Ï Ï"Ï 'Ï 3ÏK@Ï…ŒÏ.Ð1AÐ!sЕЧЮнÐÄÐàÐïÐÑ -ÑÑ -/Ñ :ÑFÑ \Ñ -hÑsÑˆÑ ›Ñ¥Ñ´Ñ -½ÑÈÑ×ÑêÑÒÒ&Ò5Ò*KÒ6vÒ­ÒÀÒÝÒõÒþÒÓ:ÓOÓcÓwÓ–Ó«Ó¿Ó#ÓÓ÷ÓÔ --Ô8ÔIÔQÔcÔlÔŒÔ Ô ¨Ô ²Ô ¿ÔÉÔÙÔ1îÕ3 ÖTÖhÖnÖÖ‹ˆÖ -××9×O×i×p× × -Œ×—ר׺×Ê×AÛ×JØhØ<{Ø ¸Ø ÆØÔØäØýØÙ%Ù-Ù2Ù LÙXÙnÙي١ٳ٠ÄÙÒÙêÙ -óÙþÙÚ(Ú?Ú&UÚ$|Ú¡Ú¨Ú ®Ú ¸ÚÆÚÍÚæÚíÚóÚ Û"Û 8ÛDÛIÛOÛTÛ -dÛoÛ~ÛÛ£Û7·ÛïÛ õÛ ÜÜÜ Ü (Ü 5ÜAÜ IÜVÜ[Ü `ÜmmÜÛÜ àÜ îÜ üÜÝÝ ,Ý:ÝJÝ QÝC^Ý7¢Ý=ÚÝ@Þ6YÞdÞõÞß3)ß]ß<qß#®ß!Òßôßà +à7à Mà Wàaàjà‚à˜à°àÈàÚàìà á&áCá,Zá‡á¡á©á ¼áÊá êá â!â;âVâlââ–âŸâ ¨â ¶âÃâ×âÞâåâ ëâùâ ã ã(ã.>ã5mã5£ã7Ùã8ä)Jä,tä¡ä½äÕä2òä %åFåaåO}åAÍå%æ&5æ4\æ1‘æ#Ãæ çæõæ ç ç'ç?çPçVç_çnç~ç -ç˜ç ç ¦ç´ç Êç×çðçè0è Eè Qè^è eè oè |è‰è¤èÁè+Êèöè éé%é 5éCé LéVé -^é iésé$“é¸éËéÚéïé ê-êGêeêxêˆê"êÀêÖê åêóêë ëë ë¢ë«ë¼ë ÄëÑëìëì%ì :ì"Hì"kìŽì§ì°ì -Âì ÍìÛì -úì)í/í,Iíví!í#²í#Öí!úí%îBî.aîî —î£î´îÈîÛîîî#ï-(ïVï%lï’ï¨ï¾ïÙïîïð ðð -3ð ->ð -IðTðlðsð‚ð ‡ð •ð¢ð²ðÂðÕðäðóð úðñ -ñ&ñ--ñ[ñ bñoññ–ñ šñ¤ñ©ñ¯ñÀñÓñçñøñ òò.òEò Vòbò rò ~ò Œò™ò ò¦ò%¬ò!Òò ôòóó&,óSó góuó„ó—ó ©ó·óÆó Öóãó òóÿó ôô.ô =ôIôXôpô‹ô¨ôºôÉô -âô -íô-øô &õ2õ 9õGõOõ Wõdõ -lõ wõ„õ—õªõÃõËõÞõòõ öö-ö 6ö@ö PöZöaö:ö?ºö8úö 3÷?÷H÷Z÷ k÷u÷ -„÷÷•÷ -«÷ ¶÷ Ä÷ Ð÷ -Ý÷ è÷ ô÷ -þ÷ øø ø+ø?ø Nø>\ø ›ø¼øÌøÞøñøùù"ù4ùTùdù tùù ùù¢ùºùÍùæùúùú ú*ú=úRúmú ƒú -‘úœú -´ú¿ú ×úåú ûúû û*û:ûUû dû rû -~û‰û*šûÅûÎû!àûü.üHüdü#mü"‘ü´üÑü&ðüý -ý9ýMý,Vý#ƒý§ý®ý ½ýËýÞý'øý þ'=þeþ‚þ˜þ´þFÎþTÿjÿqÿ wÿ„ÿšÿ ­ÿÎÿ åÿïÿ -  <]l{Ÿ ¥±º ÃÏå(î$<=B6€<·?ôA47v9®cè9LB†=Éf>nC­Jñg< ¤°À Òàõú   &2 D Q _m˜­ÀÔçú #3Gc~›¢«Êåü$ 8F -Y dr w -„ ™ ©·Ê -Ûæ  -  &  6 D \ x ” ¨ (Á ê ð ÷  ÿ  - - - - -O+ -{ - - -”˜ -- > W n  -„   › §  ° .¼ ë þ   -  +  9  E R W  f s  ‹  ˜ ¥ ¶ Ê á uð f Ìx ÅEc  oz|÷ýrx‘¨±ÃÒÛë&'8 ` l v€  © ®¸¾ÅÊ Üéø -(9=Wt‰˜¡· Î -Øã ìöý - #>Ue -juŠ¡H© -ò ý -H*!sB•ØÜ1ë05 :GN^ -ny ~ Š`–™÷C‘1Õ08 > KX -j -u€—§¸×ê ( -9 -DHO -˜ £ -°» ÂÎÝ ìù$ 3 @NS [ ht|š¡ ©·€Ð Q]rŒ¢¾Â Ô â ïKý3I6}´Ã"Ù ü2 A$Kp‹   ® Ï(ð+)E*o!š¼/Îþ*%Pa'~¦¶ÆÏ -áìü"4CL[t‡ ž¿Úëô  /  F g ‚  “  ­ Ç Û !ó !1!C! J!W!n!!”!³!Ì!-Û! ##"#5#9# S#]#c#s# ƒ##3•#É#Ú#ò#$ $ -'$ 2$ >$K$i$ˆ$¨$Á$Õ$æ$ û$ % % '%3%H%\%k%@s%´%-»%é% û%& & & '&4&R& Y&e& j& v&‚&™&¸&×&ë& ÿ& ' '!' 8'F'^' w'ƒ' -™'¤'¹' Ï'Ý' õ'( -("(7(@(H([(`(h(q(y(‹(£( ¹(Ç(Ü(ó( -û(#)*)C)\)r)x)€))+º)æ)î) õ) * -* * '*5*J*^*w** ¥*²* Á*Ï*â*ý*"+7+@+V+ v+„+Š++•+$«+Ð+â+ö+, , , (, 6,B,U, Z, g,t, -Œ, —, -¤,¯, ¿,É,Ø, è, ò,ü,-$-;-Q-o-‹--¤-­- À-Ì-ß-ù-þ- -. ..-.A.T. g. q.{.„. •. ¢. ¬.¸.Õ.ä.ö. / -/ /*/ E/ R/^/ x/ „/ /,œ/É/!Ü/þ/0)0)F0 p0}0 •0 £0¯0´0Ã0Ê0 Û0 ç0õ0B1AK11«1À1 Ò1Ü1ã1ò1 22!262>2„F2Ë2Ú2ì2ô2ý2 -3 3 !3/3F3 X3e3w3—3"¶3!Ù3!û3454N4 f4 p4 z4„4”4£4 «4¹4VÁ4+5 D5(N5w5"}5 5 ¶5 Â5Î5è5%6 -&6 16;6C6R6f6 -v66 6ž6 §6µ6 É6 Ó6á6ç6ú6 7 7 '757&O7,v7 £7°7µ7 -Å7 -Ð7Û7ø7858M8`84r8§8¹8 -¿8Ê8Ò8 -â8 í8ú8 9 9 9(9/9 L9X9 m9!y9›9 ª9¸9 Î9Ú9ë9: : :1: C:P:W:;_:?›:Û:ê:ò:;;3;¡P;4ò;'<0<-8< f=p=y= -‰= ”=#ž=Â=-Õ= >>$> 9>C>K>b>k> -t> >¥‹>1?E?Y? b?o?x?€?†?œ? -´? -¿?Ê?à? -ð? û? @@@1@ B@ L@!V@x@ |@Š@ž@ ­@ º@Ç@â@é@ ñ@ÿ@A *A6A -IATAfA yA‡A œA¨A -»AÆAØAôABB B!)BKB!iB#‹B¯B ÅB -ÒB9ÝBUC=mC<«C=èC&D",D?ODD¡D ²D¾DÂDÇD(ÌD,õD"E2EDEUE -fEqE‡EœEJ°E ûEFF0F JF WFdFF ™F ¥F³FËFåFõF;GKGeG tG GG§G ¹G ÅGÓG ãG ñG þG -HH 0H:HUHrH„H˜H«H¼HÏHàHóHI I5I+LIxII°I·I ÆI ÓI àIìI þI JJ#.J RJ^J pJ|J‘J¨J6ÀJ÷JKK#K 8K7EK}K›K°KÀKÇKÞKôK L LL.L BLOL mLyLŽL”L -›L -¦L±L ¹LÆLÛL êLøL -þL MM #M/M -FMQMqM ŽMšM¬MÇMãM þM -NN3NCNWN4lN¡N¾NÑNêNOO)O.COErO¸O ÉO ×OäO üO -PP3P 9P GP SP -_PjP {P -‡P’P¡P °P½PÚPâPœöPN“Q -âQíQöQýQR R#R5RQRgR#R¥RÃR ×RãRõRS'S#ASeSƒS —S¤S·SÔSëS$T+TJT _TiTyT“T§T!¿TáTýTU -U!U6U FUSUrUU¤U¸UÐU æUòU V V7VVVmV †V”V§V ºVÇVÜVîVWW.WEW -WWbWrW"ŒW¯WÉW ãWïWXX6XOX=_X6XSÔXJ(YsYŒYŸY ²Y¼YÍYãYòY ZZ9Z KZWZfZ{ZŽZ ¢Z®ZÇZÙZ íZúZ[0[K[e[€[˜[ ¬[¸[Í[â[ò[\\´&\)Û\N]T]Kh^=´^ƒò^*v_¤¡_¢F`3é`Ta?ra`²a2bFb¯Èbxd4{e/°eºàe ›f§f¯fµf¼fÍfÞfñfùf gg!g4gGgdg yg …g’g;›g×g çgôgh h"h 7hEhUh#ih hšh ¯h ½h&Êhñh -ii"i2iLi"^ii™i©i¹iÊiéiÿij$j4jCj Tjajzj ŽjšjŸj¯jÄj+Êjöjüj k k!k (k5k Ek -Sk^kdkkksk |k ˆk8•kvÎkElLldl|l „l ‘ll £l!Älælþlm5mNmkmˆmmžm¥m®mÂmÜm ãm ðm üm -nn!n *n7nGn Vnbn sn n‹n¨n!·nÙnín(o/o#8o \o jowo~o -„o o œo¦oµoÉoäo -éo ôo -p pp)pK2p1~p7°p1èp5qHPqA™qŠÛq;fr!¢rÁÄr †sæ§s Žt¨›u}Dv*ÂvBíwæ0xy6y‚¸y;z AzOz)Vz5€z¯¶z1f{0˜{0É{1ú{(,|CU|€™|S},n}2›} Î}Aï~A1*s«žíJ€ 8ÎE‚£ƒª¸ƒ§c„§ …³…˜¶†GO‡è—‡2p‰£‰ ½‰-lj -õ‰ŠŠ%Š6Š<ŠAŠPŠYŠ_ŠqŠ„Š ŠªŠ¼Š ÌŠ ÚŠäŠýŠ‹ ‹‹ -!‹<,‹ iŒwŒ ŽŒ˜ŒªŒ¾ŒÎŒÝŒòŒ +?Nhx ‡”¨ -¸ÃÈÑ3è;Ž;XŽ¡”Ž6F= „Ž “  ®´¼ Îïöþ‘%‘E‘3^‘#’‘¶‘Αá‘ñ‘ ’!’0’?’E’ L’X’u’~’F‡’Î’ -î’ -ù’“ “ “ %“ 2“ ?“ M“![“!}“ Ÿ“ «“+·“Kã“0/”Q`”˜²”¢K•$î•5–PI–Gš–-â–O˜j`˜o˘e;™j¡™~ šp‹šoüšwl›<ä›?!œ>aœt œt`Š‰ëužõž0ûž,Ÿ2Ÿ9ŸKŸ`Ÿ qŸŸ6Ÿo¸Ÿ( * 1 49 #n È’ G[¡%£¡XÉ¡U"¢Ox¢È¢ߢè¢ñ¢ù¢ -£ £ £#£ ,£6£?£#Q£u£ }£‹£”£š£©£°£¹£Ì£ߣè£ú£ ¤¤ ¤ )¤7¤ N¤X¤`¤f¤ i¤s¤†¤¡¤ À¤á¤ ç¤ô¤û¤¥ #¥0¥ 8¥B¥S¥ V¥ b¥ l¥z¥Ž¥•¥ -œ¥§¥ ¯¥¼¥Ä¥ä¥ í¥û¥¦¦/¦ >¦J¦ -R¦]¦o¦ ¦¦œ¦ ¬¦º¦ Φ ܦê¦ ú¦§§0§@§R§ c§ o§{§Š§“§¤§ ¾§ ȧ -Õ§à§æ§õ§¨ ¨2¨L¨]¨v¨‡¨™¨ ©¨ ʨ Ô¨Þ¨ æ¨ð¨ ö¨©©&© ,©:©J©Q©W©^© q©~©© Š© ”© -ž© -©©´©Í©Ö© Þ©è© î©û©ªª ªªª#ª+ª >ª JªWªqª yª†ªª”ªœª¶ªŪ -åªðª« « «*«2«:«P« _« l«x« {«…«Š««£«¾«Ç«Ï«â«ø« ¬ %¬3¬9¬I¬O¬V¬ -^¬ i¬v¬ †¬ ”¬ -¢¬ ­¬ »¬ Ȭ Ò¬ ߬ì¬ ý¬­ ­­ ­ -&­1­ :­F­O­ ^­ k­w­€­ ‡­•­¥­¬­ µ­ ­ ЭÝ­ æ­ ô­® ®®0®6®9®>®F® U® b® n®{®® £®°®¶®¿®Юã®õ®(¯0¯8¯A¯W¯o¯¯4›¯1Я/°2°H°X°x° €°°“°§°#¸° Ü°ý°±#±3±"C±f± -n±y±‹±œ±£±¬±± ӱ߱æ±î±þ±²%² ->² -I² -T²_² e²s²y²‰²²–² -¶²Á²Ò²ز -á²ì²ò²û²³³+³:³ B³O³^³b³h³k³z³~³ -„³³–³›³5Ÿ³Õ³ ç³ñ³´´ ´ ´#´!8´ Z´ {´œ´ -¼´ Ç´Ó´Ú´Þ´æ´ë´ñ´÷´ þ´ µµµµ &µ4µ.GµvµT“µè¶#ÿ¶t#·]˜·2ö·X)¸O‚¸IÒ¸L¹8i¹q¢¹Aº9Vº=ºUκO$»1t»:¦»3á»8¼6N¼9…¼¿¼Ƽ -ͼؼ ß¼ ì¼ ù¼½½ -%½0½ 3½@½ -T½ _½i½r½Š½¦½¼½1Ľö½ ¾ -¾$¾+¾B¾K¾S¾Y¾ _¾ m¾ {¾ ‡¾ -•¾ - ¾ «¾ ¸¾ľ Ù¾ å¾ñ¾ ö¾¿X¿zk¿)æ¿.À)?ÀiÀ|À„ÀŒÀ•À ´ÀÂÀÜÀåÀøÀ ÁÁ)ÁBÁ^Á$yÁžÁ ´ÁÁÁ ÓÁáÁñÁ"Â&Â?Â]Â{ÂÂ+£Â2ÏÂÃÃ0ÃMÃUÃoÃáôÃÈÃèÃüÃÄ$ÄAÄYÄ sÄ}Ä ”Ä¡Ä -¶ÄÁÄàÄñÄ ùÄ Å -ÅÅ*,Å.WÆ0†Æ·ÆÏÆàÆüÆŸÇ -®Ç¹ÇÒÇèÇÈ ÈÈ'È0ÈAÈ PÈ ]ÈBkÈH®È÷È2 É<ÉVÉ pÉ~É–É °É -¾ÉÉÉÎÉ âÉìÉ&Ê+Ê4ÊFÊ[ÊpʃʚʣʬʻÊÔÊéÊ'ýÊ!%ËGËKË -QË \ËhËoËŠË‘Ë&™ËÀË$ÈË íËùËþËÌ"Ì6Ì?ÌTÌ cÌpÌ2ƒÌ¶Ì ½Ì ÊÌ ×ÌáÌéÌ -ñÌ üÌ -Í -ÍÍ#Í -(Íe3Í™Í žÍ ¬Í -¸Í -ÃÍÎÍîÍÎÎÎQ6Î6ˆÎC¿ÎCÏ5GÏa}Ï"ßÏ"Ð2%ÐXÐ?nÐ-®Ð#ÜÐÑÑ;ÑQÑ cÑ mÑwрѕѬÑÁÑÛÑïÑ Ò (Ò IÒjÒ%Ò§ÒÂÒÈÒ -ÞÒéÒ! Ó -+Ó6ÓSÓpÓ‚Ó“Ó¤Ó«Ó ³Ó½ÓÎÓÞÓåÓëÓ -ðÓûÓÔ Ô(Ô8=Ô=vÔ@´Ô?õÔ?5Õ2uÕ.¨Õ!×Õ&ùÕ" Ö8CÖ(|Ö¥Ö"¿ÖsâÖ@V×)—×)Á×;ë×:'Ø'bØ ŠØ˜Ø²Ø ÄØÒØæØùØÿØÙÙ(Ù 9ÙFÙNÙ TÙaÙyÙٜ٭Ù)¿ÙéÙ ùÙÚ - Ú -Ú#Ú,ÚCÚ[Ú$`Ú …Ú ‘Ú Ú§Ú ºÚ ÈÚ -ÒÚ ÝÚ -çÚ òÚ"þÚ%!ÛGÛ^Û"rÛ•Û±ÛÐÛçÛÜ Ü3Ü#KÜo܄ܙܭÜÁÜ ÊÜØÜxáÜZÝ cÝ mÝw݆ݤÝ%ÂÝèÝÞ'Þ'9ÞaÞÞˆÞ™Þ©Þ!¸Þ ÚÞ*çÞß21ßdß!ß$£ß&Èß'ïß'à?à*^à‰à ‘àŸà°à¿àÕàéà&øà*áJá+\áˆá¡á¸áÐáîáââ3.âbâ qâ~â,â -ºâÅâ ×âáâôâ ãã#ã -3ã>ãRãZãiã zã„ã,‹ã ¸ãÅãØã"ïãää-ä2ä8äHäWä käxä ˆä–ä¨ä¸äÏäâä÷äåå(å0å 6å#@å då…å—å´å<Íå -æ æ )æ5æEæ Tæ aæ oæ yæ †æ ’æžæ ®æ¸æ Çæ -Ôæßæîæ ç&ç6çIçXç vç„ç,“ç ÀçÌç Óçàçèç -ïçúç -è èè-èAèZèaèpèè •è¡è¶è¾èÇè Öèàè"èèE éKQé)é Çé -ÓéÞéñé -ê ê -ê&ê+ê -Cê Nê \ê -fê qê {êˆê -‘êœê «ê·êÇêçê öêDë&Iëpë ëë ¡ë­ë ¼ëÉëÚëóë ì ì*ì9ìHìPìnì†ì¤ìÀìÛìñìíí$-íRí jíví…í ží¬íÌíÞíõíîî-îCî Uî -cînî wî î$î ´î¾î'ÓîûîGï4_ï”ï!šï.¼ï$ëï!ð32ðfð -€ð‹ð¡ð)©ð)Óð ýð ñ ñ ñ!0ñ+Rñ~ñ)žñ!Èñêñ$ ò!.òOPòT òõòúò óó$ó&<ócó ~ó‹ó -£ó®ó-Áó'ïóô3ôOôjô…ô—ô ±ô »ô -ÈôÓôëô/ôô*$õOõBUõ0˜õCÉõ; ö=Iö/‡ö1·ödéö4N÷Kƒ÷5Ï÷^ø5dø<šøA×øbù |ù †ù ’ù œù ¨ù¶ùºùÔùãùëù üù - -úú 1ú=úRúoú‚úšú³úËúÞúðú -ûû2û!Kû#mû‘û–û žû¿ûÜûóû ü!ü9üIügü wü…ü Šü—ü  ü ªü -¸üÃüÕü -åüðü ý ýý.ý >ýKý`ýxýý ý(¹ýâýèýîýõýþþ'þ0þM?þþ¤þ”­þBÿQÿjÿÿ —ÿ ¡ÿ ®ÿ»ÿ Äÿ%Îÿôÿ  -"- 6 D P]b q~” ¨¶ÊÛô{ØÖhl? ¬„¹>DgMµÍ êô - #7T1e/—!Ç -é ô';@IPXa { -…¡&² Ùúþ1JYb œ ¦°¸ÁÈÐ Ö âï 1 -6ATnUv -Ì ×á ð -ú[ 'a B‰ Ì  Ò +à  - - ' -3 -B -I -[ - k -w - | - Š -i˜ -­ C° 5ô +* V \ m |  ‘ › «  -Ç Ò )â  #  8 #E i  -r M} Ë  -Û  æ ð  ÷ )8Oeu„“ š¤ ´ÁÊä ìö… ¦¸Ïí!(.A -P[Hj3³0ç2-D r~”§¶¼Õç÷ -(M,v'£*Ëö6!Xa q(¨"¹-Ü -"3; S#_#ƒ§¹Ñãìû)!@b~ œ¯Íå%&F [gy–­$Çì (7Qe!|žº&Ëòû #@IN] x„@ˆÉØð  ,6Ecƒž¹Ñáú -  (IfuL}Ê;Ò#4: L Y"eˆŸ ¤ °¾Õõ( C O [i -}ˆžµ¾ ÒÜò -)2 FP -epxŒ’š £­Â Üý.K T&`)‡±Ê áîó %' M U ] m  ƒ  — « Ä ß ù !/!@!V!l!!›!$µ! Ú!æ!" ""."6"<"C"$U"z"Œ" ª"¶" Æ"Ð" Ø"æ"ï"# # # #6#M# f#p# -# Š#—#¦# µ#Ã# ×#ä#ö#$$6$J$ R$^$ n$z$/Œ$¼$Á$ -Ç$Ò$Û$î$%% -6%A%J%R%k% r%|%"…% ¨%´%Í% æ%ó%&! & -& 9& C& -d& o& }&9Š&Ä&)×&''6'2T' ‡'”'¯'À'É'Ï'ß'æ'÷' ((J)(Kt($À(å( û( ) ) )+) ?)K)\)r){)€„) **$*6*I* O*[*o*~*•* ¨*µ*Ð*á*ò*++++B+`+}+Œ+›+ª+»+Ê+ -Ó+ Þ+aè+/J, z,D„,É,&Í,ô,- -,-B--`- Ž- š-¤-«-»- Ô-á-ê- -ü-. -.. -/.:.I.Q.c. z. -ˆ.“.£.-¸.&æ. ///2/ A/O/m//«/Æ/×/5ç/0-030<0E0 T0 `0 m0{0 „0‘0™0 0 -¼0Ç0 -Ü0(ç0 1 1/,1 \1i1z1‘1 £1­1¾1 Ñ1ß1ç19ð1:*2e2w2†2¤2%¾2%ä2¿ -30Ê3û3 -454 O5Y5b5 r5 ~5"Œ5¯5-Å5 ó566$6 +686U6g6z66œ¤6A7S7f7o7 7Ž7—7(7Æ7 ä7 î7ú78 -&8 18 =8K8O8i8 z8„8!Œ8®8²8 Æ8ç8ø8 9959<9 D9P9g9 9‰9 -ž9©9À9 ×9ã9 ú9: -:$:::*V::†:Œ:%Ÿ:#Å:&é:$;"5;X; -g;>r;S±;<<<B<F<Æ<9Ë<L=R=r=‘=¡=¦= ¬=(¸=3á=>&>;>M> -_>j>&ˆ>%¯>FÕ>? +?7?T?k? ‚?Œ?¥? -À?Ë?Ý?ù?@@15@g@ƒ@˜@«@%¿@å@ý@ A"A4ADA UAbAjAAˆA¡A¹A ÈAÖA åAïAþAB(8BaBwB$‘B,¶BãB/C1CBC]CxC‘C«CÉCäCD5 D VDbD tD DD¢D7ÂD"úDE&E.E EE@SE!”E¶E ÏEÝEãEF F ,F -6FAFPF cFpF -‡F’F§F¬F µF ÃFÍF ÖFãFûFG$G*G2G8G UGbG yG+…G±G ÎGÜGõGH-H FHTHfH~HŽH¨H/ºH êH II>I^I tII-˜I=ÆIJJ)J!8J ZJhJwJ”J ›J ©J -¶J ÁJÍJ ÞJìJüJK&K9K QK[K¸qKK*L vL‚L‡LŽLŸL¦L¯L¾LØLìL!M%MAM RM_MrMM¨M%ÃMéM N N*NŠ PŠ\ŠmŠ…Š ˜Š¥ŠªŠ²Š@ÍŠ:‹DI‹®Ž‹=ŒJ] ¨²¸ÈØàçöŽ Ž Ž%*Ž!PŽrŽ,‹Ž ¸ŽÙŽòŽ 3K ]kqxŒª³Y¼% < HUYkz ‹™ ¨,¶,ã ‘ ‘-$‘8R‘/‹‘;»‘Š÷‘¤‚’'“-D“3r“G¦“<î“I+•hu•zÞ•TY–b®–i—b{—bÞ—fA˜:¨˜9ã˜8™cV™gº™c"šY†šmàšN›)S›}›„›Œ›ž›µ›Æ›Ö›+Ø›kœpœrœvœ2{œ#®œÂÒœH•!ÞgžYhžUž/ŸHŸQŸZŸcŸ kŸ wŸ „Ÿ ŽŸ˜Ÿ¡ŸªŸ)¼ŸæŸïŸ þŸ   ! ' F e t ‡  Ÿ «  °  ¾ Ì  -ä ï ÷ ý ¡¡!¡=¡X¡x¡ ‡¡“¡›¡!¤¡Æ¡Õ¡ Þ¡ë¡þ¡ -¢ ¢ -¢ ¢6¢=¢ -C¢N¢U¢d¢(l¢ •¢Ÿ¢¯¢¸¢É¢ã¢££ -£#£;£ L£ Z£ h£ u£‚£ –£ -££ ®£ ¼£È£Û£÷£ ¤ -¤¤ /¤ <¤J¤R¤e¤ƒ¤“¤¤¤­¤¶¤ɤæ¤ø¤¥)¥<¥Z¥o¥¥)Ž¥¸¥¿¥ -ȥӥ㥠-è¥ó¥ -¦¦ ¦ -¦:¦@¦ H¦R¦ c¦q¦ t¦ -~¦ -‰¦ ”¦ ¡¦«¦À¦ȦÛ¦ä¦ ë¦ø¦ § §§§!§ )§3§ G§U§h§ -z§…§”§š§Ÿ§¤§»§Χ î§ú§ ¨ -¨ (¨4¨=¨E¨ ]¨ i¨ -s¨~¨¨Š¨¨˜¨ª¨ĨʨÓ¨í¨+ © 8© F©S©Z©k©r©y© -€© ‹© •©¢© ³© Á© Ë© -Ø©ã© ì©ø© -ª ªª %ª1ª8ª?ªNª aª nª -xªƒª ’ªŸª§ª°ªÀªÕª ܪ æªòª« « « @«N« f«r«…«Ž«‘«–« ž« -«« ¶««Ô«í«¬¬ -!¬,¬>¬T¬g¬(z¬ £¬­¬¶¬ɬÛ¬#ö¬3­EN­6”­Ë­é­û­® #®-®4®M®6e®'œ®&Ä®ë®ô®¯8¯O¯U¯]¯o¯€¯†¯–¯§¯ ¼¯ɯ Яگ𯰰 &°0°6°=° D° P° ^° k° u°° š°¨°Á° È° -Ò°Ý°â°ê°ð° ± (±5± >±J±Z±^±e±h±x±|± -‚±±”±›±=Ÿ±ݱò± û±²² ² ²-²#B²"f²"‰²!¬² -β -Ù² ä²î²ò²ú²ÿ²³ ³ -³ -³*³0³ 8³B³1Q³0ƒ³´³#åpö £¬íù«æ²´g’¶~áuèj™aš0!Lg‹eN _µS ¨_cRˆ†& ¶.¤òÀ2 £¥Û§âo†Ý福ØSfÌÒpq€OV@Ï`lÜÁ^‘i²÷9 Ðq&Äß—Šd§Þe.w¦èÂâIºMÓĪÒ9L 4 ô±g>%wÆÂÑôÓ|]üf 1Ÿ€, *6t]R‚ & UÞ&=tà•yBñRÌŽXxÝ”MØ©;êqX< ¿v% :ë6í6Ûú3 Wñk‡Qñc>h͆î"¯ê*ê7U?˜—Ì\!+O6WPN€: ¦ÓU…œçП–  »ÍE~r*öóÛõa½¾£P žW5Æ»ý¿|~;I¸wPw¹ÙÁ' ¿Oª;`}ØÃ3iªÈëbÒ¼u.-]­¬´‹ -`¹%,…˜ú5/;YÌä›àƒS&U û#/”Ôw o'Q ùSá¶2ÍOóCÁ› }F<¿Ê$ ôKξAè‚Ò…~ïo 8‰§¶ö©ˆˆ”xQsA¢J;ûNEÝÚòãMÉÐÆiªyx †Å®I¢×í,R†üÐ[Þ¼×tê#uÉD¾µîÿÄ!Å% rEaáO-„: Ô¡ hدŸ^±½ï -]D¥ÀBÚ©‚]FT PÁbÖÖ«´–Ø^AŒ“ßK{¸sÞFL -ò1î‰"ÀQ±Ü5réÛ´õy4 ½74Fz‡öôºw¡âí" „»(™N‡ ?æq¬Úì—ÞFM²÷+# м|Šš`¸ ¢e¨õ {«ÓíÔ”Q)_Ys5ÿÀâæ‚ýb*;#$®™Žóûäô鈒$òtY*üþ!¡qºh<Ê’4ʆɘ‘ðç×óLæ@!@ZRÌg›/y5mä!„ù{:$·–ÈøpÆX“VÓCÏ\·Š-µY©QæýMv¬LfËoowP >"hd0àXàåÑE .{±ÆA^ämÈLö$Õ -äz$ŽÍÅa‘¾=lh¢›Nɺºá¶Ë¤æz\üVNÏÑê¯r eçÊÄ 8>kÚ3É<Õ¢ìö×î-BCƒ¨0 Ë" çƒNŒ îõ@^dÞ -âÊ'ü -J]°Ø€Æñ:¿Ÿw¸á±?˃½dÙdå´„ f T÷œ'”D Z•M ‹¸±ÖàᜓA=ÓF ¡[§¸«ýC|÷Áo· ¬Å0æ¼- ìB þ sÔ³-§S˜xwTàù¬Î`„ªÙ¼YÐÙChÕñÈ<­jÁ= - B -š9‹Þn¥ 3ÉEß¿ã1ÛMKYr ¯…ì>Jý–D) @¬våG†{Ê! (l¸<WäëÈ÷®[$j“‚qE[‡ øÎãzëç!}DJÙ^~Å%\¦†D*Cÿv# ¿[dFŠ`> ñl9_?¼<å¼í7 ½eÚyFó&ð°³€JL}å äH|«ó㷻NJ_qnÀ葘H á‹8ø0.‚±A ¾7A JvÖ\GB~¯-„&ÌôsÈ©'JöÏÿ³.×ïý5|‰Á7tÌI× /Nßy¢žŠ•£.ÍX¾þu|'°/ Ç—?Ÿ½‡ÃƒÝ‚À cMuv€ý°6÷}ª.©2¨…›1™ªpczyìÍBHhÄ£nRïݽ Ž{‘øH¯Šÿãå’"ð˜e1uQΔ žþ§J ¦Œ. ·1™×G#ú:¹¤éS»ð'ÃÃ÷Pxõ½LÕ®-¢˜võet]ÎÖG_ÚŽ3…p ¯þg—š­ïjòãè²+cUŸÅ¶®%ÇŒÇ4mõõ¹ç£+0YN”òk ³èÒiQ,‚U6ëÿÑÝÈ~zIK "D ( S‰lv™p¤›æÔ¾“ÑÜ1Œî/gX&5ºúš2%𜓓Ÿ&ø=)†­ ,  i碲rõûÊGðøz°š¡ë‘;M •üÑäm?6 l¥™»k^¹ŸŽ)*Á<¢éòß+qˆê"kCCZ “œUTÔO‹O+æá²ÆxóûVã9BÂFN‰xZã­Öóª«nÜz 2¥7uþZÝœìÖú¹ÌPî4á38@ͧu‹ 3Á9Ü¡Â@ 3jÇ9Ú,ø(ê¤ÀÕŸ9€ûUÛÑOÇ5AÒ¶-Wœ·=³[ˆ‹9íž)­Ø|ž• ºn—ÙPT¼H¶úEµ Š¨Dr;Sœݶ³ð7¥2s’1 e=íÇÆ$ }Zgxk‘òždüŒb_„4 ¨1ï9Ñ8Ë~; n:Î /Þ‹Ët^¡!Ý™•KKéûuWOÖü2¡\÷®þ0£IÏ–bìü8Õé°’o~A  * ¦—¦!Å m`Í>Ή*×>h•Œóo߸:5 3nP—TŽByܲè˧ýid“H[σӤú˜ÙÛ,I8ëŒÒ«­(‰§H(KGC2 ÐÏVr´òª\4?E¬'}µâ€ ß°’÷Þy¤·ÇR7 Sj:{‘µàøalú7>ÓÒÑ6(bY¤#€7 è;O aW`mU ? ø ¸R ¨[W P^¤6/Àfä=ܽí0´]r…ñi+» lK–)fÆtìiç¹é©Òh£Dµk{Ï*ÕÜÉbŒV Ús¿ù·ìë]ÂÛ R\ÄJaˆùVÉÖ‰-m/ôY{KnŠöVÿ°ê"å ?ß -)ûjqýkS+vb«EÉHB& c›ù_é2x<m¼= éñÐ4µœ 4 Ìö•cV‰eßþA˜³»ô%¯5}$ aGšI©™â’ïΦ„ØÅ MƒEH­TÖžñ³ži«¾@g=à\,Ôt s‡#UÚô”‡X¦žZƒlÄ6Ê÷è¥Ø'ˆÅÿ,Ï"àf„/ÿ– ¿ÐKÙ:ðkI  µ+ ²¹Â  벺Žù”ŽfZÀjÛÔ­(W’ÊJú´%±®F_ (ï®Î8Èp´LêÔ?®) bpÈ<ܾâÕ ¦c'×˹8ƒš‡ -0—# î¥G8 ûDmC )1+aÄ£þ…I`¬åÖnR.Í%ËÇG 3 •[ÙÕ›TÑ¨Ó TâX±GºÄ@š2çQT»}Lz ©X¯f)‡ùpc|sãð¥>Hgjd@$,…o0¡Q‚³Ã(Z -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.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. -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 EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)Spikes:Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path with last valuesStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolStyle of bevel around the statusbar textSubtractSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe GIMP help browser plug-in appears to be missing from your installation.The active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-21 21:49+0100 -Last-Translator: Sigurd Gartmann -Language-Team: Norwegian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Ugyldig flagg «%s» - -Bruk: %s [flagg ... ] [fil ... ] - - --batch-interpreter - Prosedyre som skal brukes til Ã¥ prosessere kommandoer. - --debug-handlers SlÃ¥ pÃ¥ feilsøkings-signalhÃ¥ndterere for ikke-fatale signaler. - --display Bruk oppgitt X-skjerm. - --dump-gimprc Skriver en gimprc-fil med standardinnstillinger til skjerm. - --no-mmx Ikke bruk spesielle prosessorhastighetsforbedringer. - --no-shm Ikke bruk delt minne mellom GIMP og dens tillegg. - --pdb-compat-mode -Prosedyredatabasekompatibilitetsmodus. - --session Bruk en alternativ sessionrc fil. - --stack-trace-mode - Feilsøkingsmodus for fatale signaler. - - --system-gimprc Bruk en alternativ system gimprc fil. - --verbose Vis meldinger under oppstart. - -b, --batch Kjør kommandoer i batch-modus. - -c, --console-messages Vis advarsler pÃ¥ konsollet i stedet for i en dialogboks. - -d, --no- Ikke last pensler, graderinger, paletter, mønstre. - -f, --no-fonts Ikke last skrifttyper. - -g, --gimprc Bruk en alternativ gimprc fil. - -h, --help Skriv ut denne hjelpen. - -i, --no-interface Kjør uten brukergrensesnitt. - -s, --no-splash Ikke vis oppstartsvinduet. - -v, --version Skriv ut versjonsinformasjon. -%d lag%d dpi%d dpi, %s%d lag%d minuttene%d sekundene%d x %d dpi%d x %d dpi, %s%d x %d piksler%g x %g %s%p%s-kanalkopi%s-kanal til utvalg%s melding%s kopier%s maske%s%sklikk: utvid utvalg%s%sdra: flytt og komprimer(%0.3f, %0.3f, %0.3f)(Ingen)(Dette konsollvinduet vil lukkes om ti sekunder) -(Buffer uten navn)(Mal uten navn)(Varierer)(tomt)(ugyldig UTF-8-streng)(endret)(ingen)1 lag1 lag15 grader %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D-transformasjon...4:1 (400%)8:1 (800%)<%s><>For optimal ytelse i GIMP, er det nødvendig med justering av noen innstillinger.GIMP - GNU Image Manipulation Program -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis og GIMP-utviklingslaget.GIMP tips-filen kunne ikke tolkes!Din GIMP tips-fil ser ut til Ã¥ mangle!En fil med navnet «%s» finnes allerede._Legg til i utvalg_VinkelOm GIMPHandlingAktiver det _fokuserte bildeetAktive filtreTilpassende supersamplingLegg tilLegg til alfakanalLegg til alfakanalLegg til ankerLegg til kanalLegg farge til fargekartLegg til innrettingslinje: Legg til innrettingslinjerLegg til horisontal innrettingslinjeLegg til lag_maske...Legg til lagLegg til lagmaskeLegg til baneLegg til strøkLegg til tekstlagLegg til vertikal innrettingslinjeLegg til maske for lagetLegg til farge fra bakgrunnenLegg til farge fra forgrunnenLegg til lagmaskeLegg tekst til bildetLegg gjeldende farge til i fargehistorikkenLegg til valgt filter i listen over aktive filtre.Legg til palett %sLegg til i dette utvalgetLegger til tema «%s» (%s) -TilleggEkstra inndatakontrollereJustér lysstyrke og kontrastJuster fargebalanseJuster fargekurverJuster fargenivÃ¥erJuster lysstyrke og kontrast...Juster fargebalanseJuster fargekurveneJuster fargenivÃ¥erJuster glød / lys / metningJuster Glød og metningJuster nivÃ¥er automatiskJusteringAvanserte alternativerPÃ¥virkning:PÃ¥virket omrÃ¥de %sLuftpenselLuftpensel med variabelt trykkAl_fa til utvalgJustertJusteringAlle kanalerAlle filerAlle filer (*.*)Alle bilde- og angredata som ikke passer i flisbufferen vil bli skrevet til en mellomlagerfil. Denne fila bør plasseres pÃ¥ et lokalt filsystem med tilstrekkelig plass (flere hundre MB). PÃ¥ et UNIX-system vil du kanskje bruke systemets mappe for midlertidige filer. («/tmp» eller «/var/tmp»).Tillat fylling av helt gjennomsiktige omrÃ¥derTillat markering av helt gjennomsiktige omrÃ¥derTillat forstørring %sGjennomsiktighetGjennomsiktighet til utvalgGjennomsiktighet:Et bilde av den valgte størrelsen vil bruke mer minne et det som er innstilt som «maksimal bildestørrelse» i innstillingsvinduet (nÃ¥værende verdi er %s).An_imasjonForankre flytende utvalgForankre flytende lagForankre flytende utvalgVinkel:Anti-fjern %sAntialiaseringUtseendePÃ¥før lagmaskeBruk lag_maskeBruk terskelBruk lagmaskeEr du sikker pÃ¥ at du vil slette «%s» fra listen og fra disken?Er du sikker pÃ¥ at du vil slette malen «%s» fra listen og fra disken?Som i _brukervalgSpør om bekreftelse før et ulagret bilde lukkes.Bredde- og høydeforhold:Bredde- og høydeforhold:Fest parasittFest parasitt pÃ¥ bildeFest parasitt til elementFest parasittForfatter:AutoFølg aktivt _bildeAutokrympKrymp utvalg automatiskAntomatisk endring av vindusstørrelseAutolastFunnet automatiskTilgjengelige filtreTilgjengelige typer:Bakgrunnsfargefyll_Lysstyrke-Kontrast...B_uffereBakgrunnBakgrunnsfargeBakgrunnsfarge satt til:Bakgrunn: %d, %d, %dBakover (korrektiv)Baser fylt omrÃ¥de pÃ¥ alle synlige lagBaser utvalg pÃ¥ alle synlige lagBakNivÃ¥Bi-lineærSvart hvittSvart:Bland endepunktenes farger_BlandFortynnBland endepunktenes _ugjennomsiktighetBland: Bland: Umulig for indekserte bilder.Blanding...BlÃ¥BlÃ¥:Gjør utydeligUtydeliggjør eller gjør skarpereKan_t...Sett ramme pÃ¥ kanalRam inn utvalgKantvalg vedLysstyrke-KontrastLysstyrke-kontrast virker ikke pÃ¥ indekserte lag.PenselPenseleditorPenselmapperPensel UIPensel:PenslerPenselmenyBøttefyllingBuffereBuffermenyBrennButtEtter typeVed Ã¥ forkaste bildet til forrige lagring, mister du alle endringer, inkludert all angreinformasjon.CMYK_Kalibrér...FargevelgerK_olonner:K_ombinérKalibrer oppløsning for skjermKan ikke angre %sStørrelse pÃ¥ _lerretAvbrytAvbryt innrettingslinjeKan ikke legge til lagmaske med forskjellig dimensjon fra det spesifiserte laget.Kan ikke legge til lagmaske til et lag uten alfakanal.Kan ikke legge til lagmaske til lag som ikke er en del av et bilde.Kan ikke forankre dette laget fordi det ikke er et flytende utvalg.Kan ikke konvertere en palett med mer enn 256 farger.Kan ikke opprette nytt lag fra det flytende utvalget fordi det tilhører en lagmaske eller kanal.Kan ikke opprette mappe «%s»: %sKan ikke opprette forhÃ¥ndsvisningKunne ikke beskjære fordi dette utvalget er tomt.Kan ikke utvide $(%s)Kan ikke gjøre utvalg flytende fordi den valgte region er tom.Kan ikke løfte et lag uten gjennomsiktighet.Kan ikke lagre. Ingenting er valgt.Kan ikke tegne pÃ¥ tom kanal.Kan ikke tegne pÃ¥ tom bane.Størrelse pÃ¥ lerretLerret_fyllmodus:Senter X:Senter Y:SentrertEndre bakgrunnsfargeEndre fargekartinnslagEndre forgrunnsfargeEndre bildets oppløsningEndre bildets enhetEndre utskriftsstørrelseEndre gjeldende lag eller baneEndre rutenettets bakgrunnsfargeEndre rutenettets forgrunnsfargeEndre indeksert palettEndre perspektiv for lag eller utvalgEndring av snarvei feilet.KanalAttributter for kanalKanalnavn:Kanalen kan ikke senkes lavere.Kanalen kan ikke løftes høyere.KanalfargeKanalen er allerede nederst.Kanalen er allerede øverst._Kanal til utvalgKanal til utvalgKanal til utvalgKanal:KanalerKanalmenyRute_størrelse:Velg strøkstilSirkel_TømTømTøm kanalTøm AngrehistorikkTøm all tekstTøm feilTøm angre-historikkKlikk «fortsett» for Ã¥ akseptere innstillingene over.Klikk «fortsett» for Ã¥ opprette din personlige GIMP-mappe.Klikk «fortsett» for Ã¥ gÃ¥ videre i GIMP bruker-installasjon.Klikk «fortsett» for Ã¥ gÃ¥ videre i GIMP-brukerinstallasjon.Klikk for Ã¥ tilkoble dette ankeret med det valgte endepunktet.Klikk for Ã¥ opprette et nytt anker (prøv SKIFT).Klikk for Ã¥ opprette en ny komponent i banen.Klikk for Ã¥ opprette en ny bane.Klikk for Ã¥ opprette forhÃ¥ndsvisningKlikk for Ã¥ slette dette ankeret.Klikk for Ã¥ sette inn et anker pÃ¥ banen (prøv SKIFT).Klikk for Ã¥ gjøre denne noden vinklet.Klikk for Ã¥ Ã¥pne banen.Opprett en ny bane for redigering.Klikk for Ã¥ oppdatere forhÃ¥ndsvisning -%s Klikk for Ã¥ oppdatere selv om forhÃ¥ndsvisningen allerede er oppdatertKlikk og dra for Ã¥ endre formen pÃ¥ kurven (SKIFT: symmetrisk).Klikk og dra for Ã¥ flytte ankeret rundt.Klikk og dra for Ã¥ flytte ankerne rundt.Klikk og dra for Ã¥ flytte komponenten rundt (prøv SKIFT).Klikk og dra for Ã¥ flytte hÃ¥ndtaket rundt (prøv SKIFT).Klikk og dra for Ã¥ flytte banen rundt.Klikk: utvalgKlikk: velg Dra: flyttKlipp ut resultatUtklippstavleKlippes til bunnlagKlippes til bildetKloneLukk %sLukk alle fanerLukk alle faner?Lukk denne fanenKopiér bane_FargerFargeFargebalanseFilter for fargevisningPipetteInformasjon om fargevelgerFarge_balanse...Farge _dithering:Fargebalanse virker kun pÃ¥ RGB-fargelag.Slett med fargeFargeindeks:Farge:_FargekartFarge_rom:_Farg...Farge_type for segmentFarge_type for utvalgetFargFarging virker kun pÃ¥ RGB-fargelag.Farg bildetFarg bildetFargekartFargekartbehandlerFargekartmenyKolonner:Kommentar:KommentarKon_trast:Kon_voluérKonfigurer filtre for fargevisningStill inn _utvidede inndataenheter...Still inn _rutenett...Konfigurer rutenettKonfigurer størrelse pÃ¥ rutenettStill inn tastatursnarveierStill inn _tastatusnarveier...Still inn valgt filterStill inn valgt filter: %sBekreft størrelse pÃ¥ bildetBekreft SkaléringBekreft tekstredigeringBekreft lukking av _ulagrede bilderSnarveier i konfliktKonisk (asymmetrisk)Konisk (symmetrisk)Koble sammen strøkKonstantBegrensningerKontekstKontekstavhengige markører er fine. De er pÃ¥slÃ¥tt som standard. De krever litt ekstra, og du kan fint klare deg uten.FortsettBidrag avKonverterKonverter kantKonverter bilde til grÃ¥tonerKonverter bilde til indeksertKonverter bilde til indekserte fargerKonverter bilde til RGBKonvertér bildeKonvertérer til indeksert (trinn 2)...Konvertérer til indeksert (trinn 3)...Konvertérer til indeksert...ConvolveConvolve type %sKopier navngittKopier _synligKopierer fil «%s» fra «%s»...Opphavsrett:Korrupt segment %d i graderingsfil «%s».Kunne ikke opprette «%s»: %sKunne ikke opprette midlertidig fil for «%s»: %sKunne ikke slette «%s»: %sKunne ikke finne GIMPs hjelpleserKan ikke Ã¥pne «%s» for lesing: %sKan ikke Ã¥pne «%s» for skriving: %sKunne ikke Ã¥pne miniatyrfil «%s»: %sKunne ikke lese %d bytes fra «%s»: %sKunne ikke søke i XCF-fil: %sKunne ikke starte GIMPs hjelplesertillegg.Antall:_Beskjær lagOpprett ny dok_kOpprett ny malOpprett et nytt bildeOpprett et nytt lagOpprett ny malOpprett en ny visning for dette bildetOpprett et nytt bilde fra den valgte malenOpprett en ny malOpprett og rediger bilder eller fotografierOpprett og rediger banerOpprett bane fra tekstOpprett utvalg fra baneOppretter forhÃ¥ndsvisning...Oppretter mappe «%s»...BeskjærBeskjær og endre størrelseInformasjon om beskjæring og endring av størrelseBeskjær bildeBeskjær lagBeskjær bildeBeskjær eller endre størrelse pÃ¥ et bildeBeskjær: Kun «trÃ¥dkors»Klipp _utKlipp _ut navngittKubisk (Beste)Status _nÃ¥NÃ¥værende høyde:Kun dette lagetStatus nÃ¥NÃ¥værende bredde:MarkørMarkør_modus:Markør_visning:KurvetypeKurverKurver for indekserte lag kan ikke justeres.EgendefinertEgendefinert fargeEgendefinert graderingEgendefinert f_yllfarge for lerretKlipp utKlipp ut navngittCyanCyan:_Kopiér pensel_Kopiér kanalD_upliker gradering_Kopiér lag_Kopiér palett_Kopiér bane_Kopiér mønster_Kopiér mal...Farge for mørke ruterGjør kun mørkereStrek prikk prikk...Strek prikk...Strekmønster:Forvalgte streker:StipletDato:AvlusningStandard utseende i fullskjermmodusStandard utseende i normal modusStandard rutenettStandard _rutenett for bildeForvalgt _interpolasjon:Standard størrelse for forhÃ¥ndsvisning av _lag og kanaler:Forvalgt _terskel:Slett ankerSlett anker_Slett lagmaskeSlett lagmaskeSlett objektSlett segmentSlett malSlett penselSlett kanalSlett fargeSlett graderingSlett lagSlett lagmaskeSlett palettSlett baneSlett mønsterSlett lagrede alternativer...Slett det valgte bufferetSlett valgt malSlett dette bildetSlett vektorerSletting av «%s» feilet: %sTette prikkerMindre metningMindre metning virker bare pÃ¥ RGB-fargelag.BeskrivelseDesignEnhetsstatusEnheterMenyerDialogmenyFirkantDifferanseDirekte fargerSlÃ¥ av lagmaskeSlÃ¥ av hurtigmaskeForkast tekstinformasjonSkjermVis navigeringVis _filter...Prosedyrer for skjermSkjermtype:Viser [%0.6f, %0.6f]OppløsAvstand:Avstand: %0.6fDitheringDel oppGjør en _fersk brukerinstallasjonErdu sikker pÃ¥ at du vil nullstille alle filter til standardverdier?Vil du virkelig nullstille alle verktøysalternativer til standardverdiene?Vil du erstatte den med bildet du lagrer?_Ikke lagreKan dokkesDokumenthist_orikkDokumenthistorikkDokumenterDokumentmeny_BlekBrennBlekBlek eller brenn strøkBlek/BrennDobbelstipletDra ankerDra ankereDra kurveDra hÃ¥ndtakDra baneDra: flyttTegn med blekkTegneobjektTegningsendringProsedyrer for tegnede objekterSlipp nytt lagSlipp ny baneSiden skrifttyper mangler, er ikke tekstfunksjonalitet tilgjengelig.Kast handlinger fra denne kontrollerenKopiér penselKopiér kanalD_upliker graderingKopiér lagKopiér palettKopiér baneKopiér mønsterKopiér den valgte malenUffda: kan ikke angre_Eksporter bane...Veldig l_itenKantoppførselKant_deteksjonRedigerRediger attributter for kanalRediger farge for kanalRediger fargepalettoppføringRediger fargekartoppføringRediger lagets attributterRedigér til lagmaskeRedigeringsmodusRediger palettfargeRediger baneegenskaperRedigér attributter for hurtigmaskeRedige hurtigmaskefargeRediger malRediger penselRediger kanalattributterRediger fargeRediger fargekartoppføring #%dRediger graderingRediger lagattributterRediger palettRediger baneegenskaperRedigér mønsterRedigeringsprosedyrerRediger valgt malEllipseutvalgTøm kanalTomt lagTøm baneTomt tekstlagTomt variabelnavn i omgivelsesfil %sFor_bedreSlÃ¥ pÃ¥ hurtigmaskeSlÃ¥ pÃ¥ dithering av _gjennomsiktighetSlÃ¥ pÃ¥ denne kontrollerenAktiver denne for Ã¥ vise nyttige GIMP-tips ved oppstart av programmet.Aktiver denne for Ã¥ vise smÃ¥ verktøyforklaringer.EnormSkriv inn navn for flettet palettSkriv inn et navn for det lagrede alternativetSkriv inn et navn for denne bufferenSkriv inn et navn for denne malenSkriv inn et nytt navn for det lagrede alternativetSkriv inn lokasjon (URI):OmgivelserMapper for omgivelserJevn utUtjevning virker ikke pÃ¥ indekserte lag.Slett til bakgrunn eller gjennomsiktighetViskelærFeil_konsollFeilkonsollFeilkonsollmenyFeil under lagring av XCF-fil: %sFeil ved lesing av «%s» pÃ¥ linje %d: - %sFeil under lesing av «%s»: %sFeil under lesing av penselfil «%s»: %sFeil under skriving av «%s»: %sFeil under skriving av XCF: %sFeil ved skriving til fil «%s»: -%sFeil under skriving av «%s»: %sFeil under skriving til midlertidig fil for «%s»: %s -Ingen fil ble opprettet.Feil under skriving til midlertidig fil for «%s»: %s -Originalfilen ble ikke rørt.FeilHendelseVeldig st_orUtvides etter behovEksporter baner til SVGEkspoerter alle baner fra dette bildetEksporter den aktive banenEksponering:Utvidede inndataenheterUtvidelserForgrunnsfargefyllForgrunn til bakgrunn (HSV glød med klokken)Forgrunn til bakgrunn (HSV mot klokken)Forgrunn til bakgrunn (HSV)Forgrunn til bakgrunn (RGB)Forgrunn til gjennomsiktigForgrunn til gjennomsiktigForgrunn/bakgrunnForgrunns-/bakgrunnsfargeFS løsneFS stram innFS til lag_Tilpass lerret til lagUttoningKunne ikke importere gradienter fra «%s»: %s.Kunne ikke importere baner fra «%s»: %s.FlottFatal feil i penselfil «%s»: Filen ser ut til Ã¥ være avkuttet.Fatal feil i penselfil «%s»: Filen er korrupt.Fatal feil i penselfil «%s»: Dette er ikke en penselfil for GIMP.Fatal feil i penselfil «%s»: Ukjent form pÃ¥ GIMP-pensel.Fatal feil i penselfil «%s»: Ukjent versjon av GIMP-pensel.Fatal feil i penselfil «%s»: Ukjent dybde %d.Fatal feil i penselfil «%s»: Ukjent versjon %d.Fatal feil i penselfil «%s»: Penseldybde ikke støttet %d -GIMP-penseler mÃ¥ være GRAY eller RGBA.Fatal feil i graderingsfil «%s»: Filen er korrupt.Fatal feil i graderingsfil «%s»: Dette er ikke en graderingsfil for GIMP.Fatal feil i palettfil «%s»: Mangler magisk header.Fatal feil i palettfil «%s»: Mangler magisk header -Trenger denne filen konvertering fra DOS?Fatal feil i palettfil «%s»: Lesefeil pÃ¥ linje %d.Fatal feil i mønsterfil «%s»: Kunne ikke lese %d byte: %sFatal feil i mønsterfil «%s»: Ukjent mønsterformatversjon %d.Fatal feil i mønsterfil «%s»: Ustøttet penseldybde %d. -GIMP-mønstre mÃ¥ være GRAY eller RGB.F_jær...Fjær kanalFjærvalgFjærkanterFjærvalg vedFil_Vindu for Ã¥pning av filFiloperasjonerFiltypeFilen eksistererFila er tømtFyll kanalUgjennomsiktighet for fyll:Fylltype %sFyll liknende fargerFyll gjennomsiktige omrÃ¥derFyll hele utvalgetFyll med bakgrunnsfargeFyll med _bakgrunnsfargeFyll med forgrunnsfargeFyll med _mønsterFyll med mønsterFyll med gjennomsiktighetFyll med hvittFyll med _forgrunnsfargeFyll med _bakgrunnsfargeFyll med en farge eller graderingFyll med en farge eller et mønsterFylt_FilterEndelig, flettet lag skal være:Velg sammenhengende omrÃ¥derFinner lignende fargerTilpass bilde til vinduTilpass bilde i vinduTilpass bilde til vinduTilpass vinduetFast bedde- til høydeforholdFast størrelseFlat ut bildeVendVend kanalerVend lagVend baneVend tekstlagVending %sVend _horisontaltVend _vertikaltVend bildeVender laget eller utvalgetVend...Vender...Flytende utvalgFlytende utvalgFlytende lagFlytende utvalg -(%s)Flytende utvalg til lagFlytende utvalg til lagFlytende utvalgFloyd-Steinberg (normal)Floyd-Steinberg (redusert fargelekkasje)FokusMappeMapperSkrifttypemapperGrensesnitt for skrifterSkrift:SkrifterSkrifttypemenyFor en fullstendig GIMP-installasjonen mÃ¥ en mappe kalt «%s» lages.Tving automatiske hintForgrunnForgrunns- og bakgrunnsfarger. De svarte og hvite rutene nullstiller farger. Pilene bytter farger. Dobbeltklikk for Ã¥ Ã¥pne menyen for fargevalg.ForgrunnsfargeForgrunnsfarge satt til:Forgrunn: %d, %d, %dFremover (tradisjonell)_Fra baneFritt utvalgFritt utvalgFrihÃ¥ndFra _temaFra _vindussystemet (nÃ¥ %d x %d dpi)Fra venstre til høyreFra høyre til venstreFra utvalgFra temaFu_zzy utvalg_FullskjermFuzzy utvalgGIMPGIMP utvidelseGIMP meldingGIMP ytelsesjusteringGIMP programtilleggGIMP oppstartGIMP tekstbehandlerGIMP Dagens tipsGIMP bruker-installasjonGIMP XCF-bildeGIMP klarte ikke Ã¥ initialisere det grafiske brukergrensesnittet. -Kontroller at dine skjermomgivelser er korrekt satt opp.GIMP hjelpleserGIMP er ikke korrekt installert for denne brukerprofilen. -Profilinstallasjonen ble omgÃ¥tt ved bruk av «--no-interface»-flagget. -For Ã¥ gjennomføre profilinstallasjonen, kjør GIMP uten «--no-interface»-flagget.GIMP bruker en begrenset mengde med minne for Ã¥ lagre bildedata, sÃ¥kalt «flisbuffer». Du bør justere størrelsen pÃ¥ denne sÃ¥ den passer i minnet. Ta i betraktning mengden minne som brukes av andre prosesser.GIMP bruker en gtkrc-fil slik at du kan konfigurere den til Ã¥ se annerledes ut enn andre GTK applikasjoner.GIMP versjonGIMP vil advare brukeren om at det er gjort forsøk pÃ¥ Ã¥ opprette et bilde som vil bruke mer minne enn det som er spesifisert her.GammaGenereltGenerelt bare en sak for 8-bit-skjermer. Dette setter minimalt antall systemfarger som GIMP skal bruke.Generér optimal palettHent oppløsning for monitorGigantiskProsedyrer for gimprc_GlasseffekterGraderingGraderingsbehandlerMeny for graderingsbehandlerGraderingsmapperFarge pÃ¥ venstre endepunkt av graderingsssegmentFarge pÃ¥ høyre endepunkt av graderingssegmentBrukergrensesnitt for graderingerGradering:GraderingerGraderingsmenyTrekk fra pikselverdierFlett pikselverdierGrÃ¥GrÃ¥toneGrønnGrønn:RutenettRom mellom rutenettlinjerØk kanalØk utvalgØk utvalget medInnrettingslinjeInnrettingslinje- og rutenettilpasningProsedyrer for innrettingslinjerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (glød _mot klokken)HSV (_glød med klokken)HTML-notasjon:_Høyde:Hjelp_leser som skal brukes:Posisjon for hÃ¥ndtak: %0.6fHard kantHardt lysHardhetHardhet:HøydeHøyde:HjelpHjelp leserHjelpesystemHjelp_leser starter ikkeHjelp_leser ikke funnetHjelpeprosedyrerHex:Lyse tonerHint til _dokkene:Hint til _verktøykassen:HintingHinting endrer skrifttypenes omriss for Ã¥ lage tydeligere tekst ved smÃ¥ størrelserHistogra_mHistogramHistogramskalaHistorikkHorisontalHorisontal forskyvning av den første linja i rutenettet. Dette kan være et negativt tall.Horisontal linjeavstand for rutenettet.Hvor mange filnavn til nylig Ã¥pnede filer skal vises i filmenyen.GlødGlød/MetningGlød-metning virker bare pÃ¥ RGB-fargelag.Glød og metning...Glød:Ekstra storI_kon og tekst_Bilde_Importer bane...I_nterpolasjon:I_ntervall:IkonIkon og beskrIkon og tekstHvis tilgjengelig er hint fra skrifttypen brukt, men du kan foretrekke Ã¥ alltid bruke automatisk hinter.Gjør at flytteverktøyet endrer det aktivet laget eller den aktive banen nÃ¥r et lag eller bane blir valgt. Dette pleide Ã¥ være forvalgt oppførsel i tidligere versjoner.Hvis du ikke lagrer bildet, vil endringer fra de siste %s bli tapt.Hvis du avslutter nÃ¥, vil disse endringene gÃ¥ tapt.Ugyldig variabelnavn i omgivelsesfil %s: %sBildeBilde + rutenettBildebehandlerInformasjon om bildeBildemenyBildestørrelseStatuslinjeformat for bildeBildemalerBildeminiatyrerFormat for for bildetittel og statuslinjeTittelformat for bildeBildevinduoppførselBildevinduerBildet inneholder ingen synlige lagBildefilBildemaskeBildeoppløsningen er utenfor grensene, bruker standard oppløsning i stedet.BildestørrelseBildekildeBildetypeBilderBildemenyAlternativer for importImporter palettImporter banerImporter baner fra SVGImporter en ny palettImporter palettImporter banerImportert baneBle_kk_InverterIn_verter maskeInkrementellInnrykk:Innrykk pÃ¥ første linjeIndeks:IndeksertIndeksert fargeIndeksert fargeomdannelseIndekserte fargelag er alltid skalert uten interpolering. Den valgte interpolasjonstypen vil bare ha betydning for kanaler og masker.InformasjonsvinduInitielt zoom_forhold:Initialiser lagets maske til:Initierer programtilleggInitierer programtillegg: «%s» -BlekkInndatakontrollereInndataenheterNivÃ¥ inn:Sett inn ankerInstaller et privat fargekart; kan være nyttig pÃ¥ Ã¥ttebitersskjermer.Installasjonen feilet. Kontakt systemadministrator.Installasjonen er vellykket. Klikk «Fortsett».Øyeblikkelig oppdateringIntelligent _saksIntensitet: %0.3f Ugjennomsiktighet: %0.3fGrensesnittIntern GIMP prosedyreInterne prosedyrerInterpolasjon:KryssKryss med dette utvalgetKryss (trÃ¥dkors)Kryss (prikker)Ugyldig UTF-8-strengUgyldig UTF-8 data i fil «%s».Ugyldig UTF-8-streng i XCF-fil.Ugyldig UTF-8-streng i penselfil «%s».Ugyldig UTF-8-streng i graderingsfil «%s».Ugyldig UTF-8-streng i palettfil «%s»Ugyldig UTF-8-streng i mønsterfil «%s».Ugyldig tegnsekvens i URIUgyldig snarvei.Ugyldig bredde eller høyde. Begge mÃ¥ være positive.InverterInvertér kanalSnu om utvalgInverter virker ikke pÃ¥ indekserte lag.Invertér utvalgEr dette hva du ønsker Ã¥ gjøre?Det ser ut til at du har brukt GIMP 2.0 før. Egenskaper for elementElementsynlighetJuster:Behold gjennomsiktighetBehold overBehold bredde- og høydeforhold %sBehold bredde- og høydeforhold %sBehold høyde %sBehold gjennomsiktighetBehold bredde %sTast nedTast ned (alt)Tast ned (kontroll + alt)Tast ned (kontroll)Tast ned (skift + alt)Tast ned (skift + kontroll + alt)Tast ned (skift + kontroll)Tast ned (skift)Tast venstreTast venstre (alt)Tast venstre (kontroll + alt)Tast venstre (kontroll)Tast venstre (skift + alt)Tast venstre (skift + kontroll + alt)Tast venstre (skift + kontroll)Tast venstre (skift)Tast høyreTast høyre (alt)Tast høyre (kontroll + alt)Tast høyre (kontroll)Tast høyre (skift + alt)Tast høyre (skift + kontroll + alt)Tast høyre (skift + kontroll)Tast høyre (skift)Tast oppTast opp (alt)Tast opp (kontroll + alt)Tast opp (kontroll)Tast opp (skift + alt)Tast opp (skift + Kontroll + Alt)Tast opp (skift + kontroll)Tast opp (skift)Tastatursnarveier kan omdefineres dynamisk i GIMP. menurc er et dump av din konfigurasjon som gjør den blir husket til neste økt. Du kan redigere denne filen hvis du vil, men det er mye lettere Ã¥ definere tastene fra GIMP. Sletting av denne filen vil gjenopprette standard tastatursnarveier.TastaturTastaturhendelserTastatursnarveierVTHVe_nstre endepunkts farge...LandskapStorStor (256x256)Større forhÃ¥ndsvisningerSiste feil:LagLag «%s» har ingen gjennomsiktighet. Lag ble plassert ovenfor.LagattributterLag_grensestørrelse...Fylltype for lagLagmaske til utvalgVelg lagLagstørrelseLag_modus_Navn pÃ¥ lag:Laget kan ikke senkes lavere.Laget kan ikke løftes høyere.Laget er allerede nederst.Laget er allerede øverst.Lag til bildestørrelseLag til _bunnenLag til _bildestørrelseLag til _toppenLagets _alfakanalLagLagmenyAlternativer for fletting av lag_Venstre endepunkts farge...VenstrejustertLengde:La GIMP forsøke Ã¥ gjenopprette din forrige lagrede økt ved hver oppstart.NivÃ¥erNivÃ¥er for indekserte tengnede objekter kan ikke justeres.Farge for lyse ruterGjør kun lysereLinjeLinje- -mellomrom:Strekbredde:Linje_stil:Linjestil som brukes i rutenettet.LineærLenket elementLastLast kurverLaste nivÃ¥erLast _høyre farge fraLes kurveinnstillingene fra filHent nivÃ¥innstillinger fra filHent tekst fra filLaster forhÃ¥ndsvisning...Plassering:LogaritmiskLange strekerSer etter datafilerSenk kanalSenk kanal til bunnenSenk kanal til _bunnenSenk lagSenk lag til bunnenSenk baneSenk banen til bunnenSenk bane til _bunnenSenk kanalSenk kanal til bunnenSenk lagSenk lag til bunnenSenk baneSenk bane til bunnen_Forstørr_MesterFlytt til skjerm..._KartMagentaMagenta:ForstørrGjør _gjennomsiktigHÃ¥ndter lastbare modulerHastighet for marsjerende _maur:Maskeugjennomsiktighet:Maskér _valgte omrÃ¥derMasker _ikke-valgte omrÃ¥derMatrise:Maks dybde:Maksimal filstørrelse for miniatyrer:Maksimal bildestørrelse for _nye bilder:Maksimal fargedifferanseMaksimalt angre_minne:Middelverdi:MÃ¥lMÃ¥l avstander og vinklerMÃ¥l avstander og vinklerMÃ¥l linjalene og skriv inn lengdene:Median:MiddelsMiddels strekerFlett sammen _nedoverFlett nedFlett lagFlett sammen palettFlett sammen synlige lagFlett sammen synlige banerFle_tt sammen synlige lagFlett sammen _synlige lagFlett sammen _synlige banerFlett sammen lagFlett sammen paletterFlett sammen vektorerMeldingsprosedyrerMelding gjentatt %d ganger.Melding gjentatt en gang.Meldinger er videresendt til stderr.MellomtonerOverfør brukerinnstillingerMinimalt antall _angrenivÃ¥er:ForskjelligHjørneModusModus:Endre valgt fargeEndre fargenivÃ¥er for valgt omrÃ¥deEndre alle fargerEndre linjeavstand i rutenettModulmapperModulhÃ¥ndtererModulbaneModulerMusemarkørerMusehjulMusehjulhendelserFlyttFlytt ankereFlytt kanalFlytt flytende utvalgFlytt innrettingslinjeFlytt innrettingslinje: Flytt lagFlytt lagmaskeFlytt baneFlytt utvalgFlytt tekstlagFlytteverktøyFlytt elementFlytt lag og utvalgFlytt utvalgFlytt dette lagetFlytt denne banenFlytt valgt filter nedFlytt valgt filter oppFlytt til skjerm...Flytt: Multipliser_Antall farger:Na_vigering_NavigasjonsvinduStørrelse for forhÃ¥ndsvisning av _navigering:NavnNavn:NavigeringNy kanalFarge pÃ¥ ny kanalNye kanalalternativerNy farge fra _bakgrunnenNy farge fra _forgrunnenNytt bildeNytt lagNy baneAlternativer for ny baneNy malNy penselNy kanalNy kanal med verdier fra sist gangNy kanal...Ny farge fra _bakgrunnenNy farge fra _forgrunnenNy graderingNy importeringNytt lagNytt lag med verdier fra sistgangNytt lag...Ny palettNy bane med verdier fra sistgangNy bane...Nytt mønsterNye vektorerIngen pensler tilgjengelig for bruk med dette verktøyet.Ingen filter valgtIngen lineære gradienter funnet i «%s»Ikke lenger tilgjengeligIngen baner funnet i «%s»Ingen baner funnet i bufferetIngen mønstre tilgjengelig for denne operasjonen.Ingen utvalgIngen utvalg til stykning.Ingen miniatyrerUjustertIngenIngen (Raskest)NormalNormal (128x128)Normale prikkerNormalt vinduIkke en vanlig fil.Ikke nok synlige lag til Ã¥ gjøre sammenfletting. Det mÃ¥ være minst to.Ikke nok synlige baner til Ã¥ gjøre sammenslÃ¥ing. Det mÃ¥ være minst to.Antall _prosessorer som skal brukes:Antall rutenettlinjerAntall lag:A_nnet...ForskyvningForskyv kanalTegning pÃ¥ avstandForskyv lagForskyv lagmaskeForskyv med x/_2, y/2Avstand:PÃ¥ diskPÃ¥ flerprosessormaskiner, hvis GIMP ble kompilert med --enable-mp, angir dette hvor mange prosessorer GIMP skal bruke samtidig.Bare i minneÃ…p_ne som lag...UgjennomsiktighetUgjennomsiktighet:Ã…pneÃ…pne bildeÃ…pne bilde som lagÃ…pne lokasjonÃ…pne tekstfil (UTF-8)Ã…pne lo_kasjon...Ã…pne _sisteVindu for Ã¥pning av bildeÃ…pne penselvalgÃ…pne skriftvalgÃ…pne graderingsvalgÃ…pne palettvalgÃ…pne mønstervalgÃ…pne valgt oppføringÃ…pning av «%s» feilet: - -%sÃ…pning av «%s» feilet: %sAlternativer: -X opprinnelse:Opprinnelse X:Original bredde:Annet (%s) ...OversiktNivÃ¥er utLegg overFeil ved PDB-kall for prosedyre «%s»: -Argument nummer %d hadde typefeil (forventet %s, fikk %s)Feil ved PDB-kall: -Prosedyre «%s» ikke funnet_MønstreTaxisjÃ¥føren quizet -bedre om calypso, watt -og klær pÃ¥ vei hjem.MalTegnealternativer delt mellom verktøyProsedyrer for tegneverktøyTegneverktøy:Tegne_modusMal fuzzy malerstrøkTegn piksler med harde kanterTegn ved bruk av mønstre eller bildeomrÃ¥derMalerpenselPal_etterPalettPalettbehandlerMeny for palettbehandlerPalettmapperPalettUI_Navn pÃ¥ palett:Palett_filPaletterPalettmenyParasitt-prosedyrerParasitterTolker «%s» -Lim innLim buffer _inn iLim inn buffer som _nyLim inn _baneLim inn _iLim inn som _nyLim inn valgt bufferLim det valgte bufferet inn som et nytt bildeLim det valgte bufferet inn i utvalgetInnlimt lagBaneEgenskaper for baneNavn pÃ¥ bane:_BaneverktøyBanen kan ikke senkes lavere.Banen kan ikke løftes høyere.Banen er allerede pÃ¥ bunnen.Banen er allerede øverst.Bane til _utvalgBane til utvalgBane til utvalg -%s Legg til -%s Trekk fra -%s KryssBane til utvalgBanerBanemenyMønstreMønstermapperMønster UIMønsterfyllMønsterkildeMønstreMønstermeny_BlyantBlyantProsent av penselens breddeProsentil:Personlig GIMP-mappePerspektivInformasjon for perspektivtransformasjonPerspektiv...Velgemodus %sVelg et lag eller en innrettingslinje Ã¥ flytteVelg en baneVelg svart punktVelg farger fra bildetVelg grÃ¥tt punktVelg bareVelg hvitt punktPikseldimensjoner:PikselverdierPikslerPiksler:Vær sikker pÃ¥ at meny-XML-filene er korrekt installert.Vennligst vent mens din personlige GIMP-mappe opprettes...Vennligst vent...ProgramtilleggOmgivelser for programtilleggMapper for programtilleggProgramtillegg kunne ikke Ã¥pne bildeProgramtillegg kunne ikke lagre bildeProgramtillegget krasjet: «%s» -(%s) - -Programtillegget kan ha ødelagt GIMPs interne tilstand ved krasjen. Du bør lagre dine bilder og starte GIMP pÃ¥ nytt for Ã¥ være pÃ¥ den sikre siden.Programtillegg oppga suksess, men ikke noe bildeProgramtilleggProgramtilleggProgramtillegg og utvidelser er eksterne programmer som kjøres av GIMP og gir ekstra funksjonalitet. Disse programmene søkes det etter under kjøring og informasjon om deres funksjonalitet og endringstider mellomlagres i denne filen. Denne filen er ment Ã¥ kun være lesbar for GIMP, og bør ikke redigeres.MangekantPortrettPosisjon: %0.6fPosisjonertPosteriseringPosteriser (reduser antall farger)Posterisér _nivÃ¥er:Posterisering virker ikke pÃ¥ indekserte lag.InnstillingerBevar _luminositetTrykkfølsomhetTrykk:ForhÃ¥ndsvisForhÃ¥ndsvisning er utdatertForhÃ¥ndsvisning:ForhÃ¥ndsvisningerUtskriftsstørrelse:Utskriftsstørrelse:Problemer med tekstparasitt for lag «%s»: \n -%s - -Noen tekstegenskaper kan være feil. Hvis du ikke vil endre tekstlaget, trenger du ikke bry deg om dette.ProsedyredatabaseProsedyre-databaseFremgangIndekserte fargerBeskrivelse:KvalitetSpørKjører spørring pÃ¥ nye programtilleggSpør programtillegg: «%s» -Hent fortHurtigmaskeAttributter for hurtigmaskeHurtigmaskemenyLagre fortHurtigmaskeAvslutt GIMP?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-fargeRGB-tomRGBA (%0.3f, %0.3f, %0.3f, %0.3f)HTVVis «%s» pÃ¥ nyttN_ullstill verktøysalternativer_Nullstill kanal_Nullstill fargeN_ullstill omrÃ¥deHø_yre endepunkts fargeRadialRadius:Løft kanalLøft kanal til toppenLøft kanal til _toppenLøft lagLøft lag til toppenLøft baneLøft banen til toppenLøft bane til _toppenLøft kanalLøft kanal til toppenLøft lagLøft lag til toppenLøft baneLøft bane til toppenLøft dette bildets visningLøft bildet dersom det allerede er Ã¥pentRateRate:Vis siste pÃ¥ nyttS_entrer midtpunkter i utvalget igjenS_entrer segmentets midtpunkt igjenDistribuer _hÃ¥ndtak i segmentet igjenDistribuer hÃ¥ndtak i utvalget igjenGi lagrede alternativer nytt _navn_Gjenta «%s»Forkast...Leser palettfil «%s»: Mangler GRØNN komponent pÃ¥ linje %d.Leser palettfil «%s»: Ugyldig antall kolonner pÃ¥ linje %d. Bruker standardverdi.Leser palettfil «%s»: Mangler BLÃ… komponent pÃ¥ linje %d.Leser palettfil «%s»: Mangler RØD komponent pÃ¥ linje %d.Leser palettfil «%s»: RGB-verdi utenfor gyldig omrÃ¥de pÃ¥ linje %d.KlarEr du sikker pÃ¥ at du vil tømme bildets angrehistorikk?Tilordning av snarvei pÃ¥ nytt vil føre til at den blir fjernet fra «%s».Last _forhÃ¥ndsvisning pÃ¥ nyttLast forhÃ¥ndsvisning pÃ¥ nyttRektangelutvalgRødRød:GjenopprettReduser bildet til et fast antall fargerReduser bildet til to farger ved bruk av en terskelOppdater penslerOppdater graderingerOppdater paletterOppdater mønstreRegistrertLast _gjeldende tema pÃ¥ nyttLast _alle forhÃ¥ndsvisninger pÃ¥ nyttLast alle forhÃ¥ndsvisninger pÃ¥ nyttHusk gjeldende verktøy, mønster, farge og pensel mellom GIMP-økter.Eksternt bildeFjern kanalFjern _hengende oppføringerOpphev flytende utvalgFjern innrettingslinjeFjern lagFjern parasitt fra bildeFjern parasitt fra elementFjern bane_Fjern oppføringFjern hengende oppføringerFjern flytende utvalgFjern parasittFjern valgt oppføringFjern valgt filter fra listen over aktive filtre.Fjerning av snarvei feilet.Endre navn pÃ¥ kanalEndre navn pÃ¥ lagEndre navn pÃ¥ baneGi alternativer for lagring nytt navnEndre navn pÃ¥ tekstlagEndre navn pÃ¥ elementRender strøkReorganiser kanalReorganiser lagReorganiser baneGjenta sisteGjenta:Erstatt dette utvalgetKopierKopier graderingssegmentKopier graderingsutvalgKopier segmentKopier utvalgFlytt av kanalFlytt lagFlytt vektorerLast skrifttyper pÃ¥ nyttNullstill verktøysalternativerNullstill _alle verktøysalternativer...Nullstill alle filterNullstill _alle filter...Nullstill alle verktøysalternativerNullstill valgt filter til forvalgte verdierNullstill til standardverdierNullstill verktøyenes rekkefølge og synlighetEndre størrelseEndre størrelse pÃ¥ kanalEndre størrelse pÃ¥ bildeEndre størrelse pÃ¥ lagEndre størrelse pÃ¥ baneEndre størrelse pÃ¥ tekstlagEndre størrelse pÃ¥ bildeEndre elementets størrelseEndre vindustørrelse ved _zoomEndre vindustørrelse ved endring av bilde_størrelseSkalerer...Endre oppløsningOppløsning:RessursbrukRessurskonfigurasjonGjenopprett alternativer fra...Gjenopprett lagrede hurtigtaster nÃ¥r GIMP startes opp.Begrens redigering til mangekanterReverserForkastForkast '%s' til '%s'?Forkast bildeGjenoppretting feilet. Ingen filnavn assosiert med dette bildet.Forkasting til «%s» feilet: - -%s_Høyre endepunkts fargeHøyrejustertRoterRotér 90 grader _mot klokkenRotér _90 grader med klokkenRotér kanalRoter lagRoter baneRoter tekstlagRotér _180 graderRotér bildeRoter lag eller utvalgRoterer...RotasjonsinformasjonRund_ForskyvVis _rutenett_Krymp..._Spisser_Bytt fargerLagre h_øyre farge tilPrøve gjennomsnittPrøve sammenflettetMet.:MetningLagreLagre «%s» som POV-strÃ¥leLagre kurverLagre feillogg til filLagre bildeLagre innstillinger for inndataenheter _nÃ¥Lagre tastatursnarveier _nÃ¥Lagre nivÃ¥erAlternativer for lagringLagre vindusposisjoner _nÃ¥Lagre _alle feil til fil...Lagre _utvalg til fil...L_agre som...Lagre en _kopi...Lagre en kopi av bildetLagre alle feilLagre som _POV-strÃ¥le...Lagre som _mal...Lagre endrede hurtigtaster nÃ¥r GIMP avsluttes.Lagre kurveinntillingene til filLagre enhetsstatusLagre gradering som POV-strÃ¥leLagre nivÃ¥inntillinger til filLagre alternativer...Lagre utvalgLagre utvalg til kanalLagre endringer til bildet «%s» det lukkes?Lagre menyenes posisjoner og størrelser nÃ¥r GIMP avsluttes.La_gre til kanalLagret alternativerLagrer «%s» -Feil under lagring av «%s». - -%sLagrer bilderSagtann-bølgeSkalerbart SVG-bilde (*.svg)SkalerSkalér kanalSkaler bildeSkaler lagSkaler baneSkalér tekstlagSkalér bildeSkalér elementSkaleringsforhold X:Skaleringsforhold Y:Skaleringsforhold:Skaler lag eller utvalgSkaleringSkaleringsinformasjonÃ… skalere bildet til den valgte størrelsen vil gjøre at det bruker mer minne enn det som er innstilt om «maksimal bildestørrelse» i innstillingsvinduet (nÃ¥værende verdi er %s).Skalering av bilde til den valge størrelsen vil krympe noen lag helt vekk.Skalerer...SaksSkjermScript-Fu-mapperSkriptRull nedRull ned (alt)Rull ned (kontroll + alt)Rull ned (kontroll)Rull ned (skift + alt)Rull ned (skift + kontroll + alt)Rull ned (skift + kontroll)Rull ned (skift)Rull venstreRull venstre (alt)Rull venstre (kontroll + alt)Rull venstre (kontroll)Rull venstre (skift + alt)Rull venstre (skift + kontroll + alt)Rull venstre (skift + kontroll)Rull venstre (skift)Rull høyreRull høyre (alt)Rull høyre (kontroll + alt)Rull høyre (kontroll)Rull høyre (skift + alt)Rull høyre (skift + kontroll + alt)Rull høyre (skift + kontroll)Rull høyre (skift)Rull oppRull opp (skift + kontroll)Rull opp (kontroll + alt)Rull opp (kontroll)Rull opp (skift + alt)Rull opp (skift + kontroll + alt)Rull opp (skift + kontroll)Rull opp (skift)VelgVelg altVelg penselmapperUtvalg etter fargeVelg etter fargeVelg kontrollerens hendelsehandlingVelg mapper for omgivelserVel fil_type (%s)Velg skrifttypemapperVelg graderingsmapperVelg mapper for modulerVelg ingenVelg palettmapperVelg mønstermapperVelg mapper for programtilleggVelg primærfarge som skal endresVelg omrÃ¥de som skal endresVelg Script-Fu-mapperVelg kildeVelg mellomlagermappeVelg mappe for midlertidige filerVelg temaVelg temamapperVelg zoomforholdVelg n_ederste lagVelg _egendefinert farge...Velg _neste lagVelg _forrige lagVelg _øverste lagVelg altVelg etter fargeVelg sammenhengende omrÃ¥derVelg egendefinert fyllfarge for lerretVelg elliptiske omrÃ¥derVelg omrÃ¥der etter frihÃ¥ndVelg ingenVelg palettfilVelg rektangulære omrÃ¥derVelg omrÃ¥der etter fargeVelg former fra bildetVelg mellomlagermappeVelg antall ganger du ønsker -Ã¥ kopiere valgt segment.Velg antall ganger -utvalget skal kopieres.Velg antall enhetlige deler -du vil dele segmentene i utvalget i.Velg antall enhetlige deler -du vil dele valgt segment i.Velg gjennomsiktige omrÃ¥derVelg nettleserUtvalg til _baneUtvalgUtvalgsbehandlerMeny for utvalgsbehandlerUtvalgsmaskeProsedyrer for utvalgsverktøyUtvalgsmaskeUtvalg til bane (_Avansert)Utvalg til baneUtvalg: Utvalg: ADDUtvalg: INTERSECTUtvalg: REPLACEUtvalg: SUBTRACTFølsomhetSett fyllfarge for lerretSett kanalfargeSett kanalugjennomsiktighetSett fargekartVelg egendefinert fyllfarge for lerretSett størrelse pÃ¥ bildelerretVelg bildets utskriftsoppløsningGjør elementet eksklusivt lenketGjør elementet eksklusivt synligAngi størrelse pÃ¥ laggrenseOpprett navn fra _tekstAngi ugjennomsiktighetVelg bakgrunnsfargeVelg forgrunnsfargeSett element lenketAngi lagmodusAngi lagets ugjennomsiktighetAngi gjennomsiktighetsbevaringAngir en øvre grense for minne som brukes for hvert bildet til angrehistorikk. Uavhengig av denne innstillingen vil alltid det antallet som er konfigurert kunne angres.Angir nettleseren som blir brukt av hjelpesystemet.Velger lerretfarge hvis lerretmodus er satt til brukervalgt farge.Setter hvilken ekstern nettleser som skal brukes. Kan være en absolutt filsti eller en kjørbar fil som befinner seg i brukerens søkesti. Hvis kommandoen inneholder '%s' vil den bli erstattet med gjeldende URI, ellers vil URI bli lagt til kommandoen etter et mellomrom.Angir interpolasjonsnivÃ¥ brukt til skalering og andre transformasjoner.Angir hvordan gjennomsiktiget vises i bilder.Angir et minimalt antall operasjoner som kan angres. Flere nivÃ¥er holdes tilgjengelige til angrestørrelsen er nÃ¥dd.Angir markørens modus.Angir skjermens horisontale oppløsning, i punkter per tomme. Hvis satt til 0, tvinges X-tjeneren til Ã¥ bli spurt om bÃ¥de horisontal og vertikal oppløsningsinformasjon.Angir skjermens vertikale oppløsning, i punkter per tomme. Hvis satt til 0, tvinges X-tjeneren til Ã¥ bli spurt om bÃ¥de horisontal og vertikal oppløsningsinformasjon.Angir markørenes pikselformat.Angir standard størrelse pÃ¥ forhÃ¥ndsvisning av lag og kanaler.Angir størrelsen pÃ¥ sjakkbrettet som brukes til Ã¥ vise gjennomsiktiget.Angir størrelsen til navigasjonsforhÃ¥ndsvisningen som er synlig i det nederste høyre hjørnet av bildevinduet.Angir størrelsen pÃ¥ forhÃ¥ndsvisningene i angrehistorikken.Angir størrelsen pÃ¥ miniatyrbildene som vises ved Ã¥pning. Merk at GIMP ikke kan lagre miniatyrbilder hvis forhÃ¥ndsvisning av lag ikke er slÃ¥tt pÃ¥.Angir mellomlagerfilas plassering. GIMP bruker flisbasert minnereservering. Mellomlagerfila blir brukt til hurtig og enkelt lagre og hente fliser til og fra disk. Vær oppmerksom pÃ¥ at mellomlagerfiler kan bli veldig store dersom GIMP brukes pÃ¥ store bilder. Dersom mellomlagerfila befinner seg pÃ¥ et lagringsomrÃ¥de som nÃ¥s over nettverk kan ytelsen reduseres kraftig. Av disse Ã¥rsakene kan det være ønskelig Ã¥ plassere fila i mappen «/tmp».Angir hvor midlertidige filer skal lagres. Filer vil bli lagret her mens GIMP brukes. Mesteparten av filene forsvinner nÃ¥r GIMP avsluttes, men noen filer vil ogsÃ¥ kunne ligge igjen slik at det kan være lurt om dette er en mappe som ikke deles med andre brukere.Angir teksten som skal vises i bildevinduets statuslinjer.Angir teksten som skal vises i bildevinduets tittelfelt.Angir om GIMP skal opprette forhÃ¥ndsvisning av lag og kanaler. ForhÃ¥ndsvisning i lag- og kanalvinduene er kjekke Ã¥ ha, men de kan gjøre at ting gÃ¥r tregere ved arbeid pÃ¥ store bilder.SkyggetypeSkyggerFormForm:Formet (vinklet)Formet (prikket)Formet (sfærisk)Gjør skarpereSkjerp kanalSkjerp utvalgForskyvForskyvning størrelsesorden X:Forskyvning størrelsesorden Y:Forskyv laget eller utvalgetInformasjon om forskyvningForskyvning...Korte strekerSnarveiSvarvei «%s» er allerede tatt av «%s» fra «%s»-gruppa.Vis lagmaskeVis _linjalerVis s_tatuslinjeVis _rullefeltVis innrettings_linjerVis _laggrenseVis _menylinjeVis _utvalgVis _penselomrissVelg _forgrunns- og bakgrunnsfargeVis innrettings_linjerVis _laggrenseVis _menylinjeVis _linjalerVis aktive _pensler, mønstre og graderingerFølg aktivt _bildeVis _rutenettVis hjelpe_knapperVis bilde_størrelseVis interaktiv grenseVis minnebrukVis meny_hurtigtaster (tilgjengelighetstaster)Vis tegneverktøymarkørVis _utvalgVis s_tatuslinjeVis _rullelinjerVis tips neste gang GIMP starterVis tips ved opp_startVis verktøy_tipsVis zoom-prosentVis zoomforholdKrymp kanalKrymp utvalg_Pakk sammenKrymp fra bildekantenKrymp utvalget medPakk sammenStørrelseStørrelse i minne:Størrelse pÃ¥ _miniatyrfiler:Størrelse:Hopper over «%s»: feil versjon av GIMP-protokollen.LitenMindre forhÃ¥ndsvisningerJevnJevn ut kanterTilsmussTilsmuss bildeFest til innrettingsl_injerFest til r_utenettMykt lysSammenhengendeKildeMellomromMellomrom:Spredte prikkerSpesiell filSpesifiserer hvordan omrÃ¥det rundt bildet skal vises.Farten til de marsjerende maurene i utvalgsomrisset. Denne verdien oppgis i millisekunder (lavere tid indikerer raskere marsjering).Hastighet:Sfærisk (_minkende)Sfærisk (_økende)Spisser:Spiral (mot klokken)Spiral (med klokken)DelDel graderingssegment enhetligDel graderingssegmenter enhetligDel segmentet enhetligSplitt segmentet _enhetlig...Del segmentet ved _midtpunktetDel segmenter enhetligDel segmenter _enhetlig...Del segmentene ved _midtpunktetFirkantetSt_atus og tekstSta_belStandardStarter utvidelserStarter utvidelse: «%s» -Tilstand:Statiske fargerStatiske grÃ¥tonerStatus og beskrStatus og tekstStandardavvik:Stiplinger_Strek opp bane_Strek opp bane...Strek opp kanalStrøkbaneStrek opp utvalgStrek opp linjeStrek opp baneStrek opp bane med verdier fra sistgangStrek opp bane...Strek opp utvalget med verdier fra sistgangStrek opp utvalg...Strek opp med et tegneverktøyStil pÃ¥ kantlinja rundt statuslinjetekstenTrekk fraTrekk fra dette utvalgetSupersamplingMellomlagermappe:_Verktøy_Tekst_TekstverktøyMappe for midlertidige filer:MalerMalmenyMidlertidig prosedyreAvsllutter programtillegg: «%s» -TekstTekstfargeTekstbehandlerTekstlagTekst endretTekstprosedyrerGIMPGIMP hjelpelesertillegget ser ut til Ã¥ mangler i installasjonen din.Den aktive penselen. -Klikk for Ã¥ Ã¥pne penselmenyen.Den aktive graderingen. -Klikk for Ã¥ Ã¥pne graderingsmenyen.Det aktive bildet. -Klikk for Ã¥ Ã¥pne bildemenyen.Det aktive mønsteret. -Klikk for Ã¥ Ã¥pne mønstermenyen.Bakgrunnsfargen til rutenettet, brukes kun i dobbelstreket linjestil.Mengdetolkeren «%s» er ikke tilgjengelig, mengdemodus slÃ¥tt av.Filnavnets tegnkoding kan ikke konverteres til UTF-8: %s - -Se til at verdien for miljøvariabelen G_FILENAME_ENCODING er riktig.Filnavnet «%s» kunne ikke bli konvertert til en gyldig URI: - -%sForgrunnsfargen til rutenettet.Filen «gimprc» brukes til Ã¥ lagre personlige innstillinger som virker inn pÃ¥ GIMPs standardoppførsel. Stier til søking etter pensler, paletter, graderinger, mønstre, programtillegg og moduler kan ogsÃ¥ angis her.Horisontal bildeoppløsningLaget du valgte er et tekstlag som har blitt endret ved hjelp av andre verktøy.Dersom du endrer laget med tekstverktøyet vil de øvrige endringene forkastes. - -Du kan endre laget eller opprette et nytt tekstlag fra dets tekstegenskaper.Navnet pÃ¥ mappen som inneholder GIMPs brukeroppsett kan ikke bli konvertert til UTF-8: %s - -Sannsyligvis fordi filsystemet ditt lagrer filer i en annen tegnkoding enn UTF-8 og ikke har fortalt Glib om dette. Se til at miljøvariabelen G_FILENAME_ENCODING er satt rett.sessionrc brukes til Ã¥ lagre informasjon om Ã¥pne menyer ved forrige avslutning av GIMP. Du kan konfigurere GIMP til Ã¥ gjenÃ¥pne disse vinduene i lagret posisjon.Miniatyrbildet i Ã¥pnevinduet vil bli automatisk oppdatert hvis fila som blir vist er mindre enn størrelsen angitt her.Hurtigbufring av fliser blir brukt for Ã¥ sikre at GIMP ikke roter bort fliser mellom minne og disk. Valg av høye verdier vil føre til at GIMP bruker mindre diskplass, men mer minne. Tilsvarende vil en mindre flisbuffer gjøre at GIMP bruker mer diskplass og mindre minne.Enheten som brukes pÃ¥ koordinater nÃ¥r ikke piksel-for-piksel-modus brukes.Unitrc brukes til Ã¥ lagre din brukerenhetsdatabase. Du kan definere ekstra enheter og bruke dem akkurat som du bruker de innebygde enhetene tommer, millimeter, punkter og picas. Denne filen overskrives hver gang du avslutter GIMP.Endre vertikal bildeoppløsningVindustypeforslag til dokkvinduer. Dette kan pÃ¥virke mÃ¥ten vindushÃ¥ndtereren dekorerer og hÃ¥ndterer dokkvinduer.Vindustypeforslag til verktøykassen. Dette kan pÃ¥virke hvordan vindushÃ¥ndtereren dekorerer og hÃ¥ndterer verktøykassevinduet.TemaTemamapperTemaDet er %d bilder med ulagrede endringer:Ikke nok synlige lag til Ã¥ slÃ¥ sammen nedover.Det er alltid en avveiing mellom minnebruk og fart. I de fleste tilfeller vil GIMP favorisere fart over minnebruk. Hvis lavt minnebruk er viktigere kan du aktivere denne innstillingen.Det er ikke noe aktivt lag eller noen aktiv kanal Ã¥ kopiere fra.Det er ikke noe aktivt lag eller noen aktiv kanal Ã¥ klippe fra.Det er ikke noe aktivt lag eller en aktiv kanal Ã¥ tegne pÃ¥Det er ikke noe aktivt lag eller noen aktiv kanal Ã¥ tegne pÃ¥.Det er ett bilde med ulagrede endringer:Det skulle vært en fil som het «%s». Kontroller installasjonen for feil.En feil oppsto ved tolking av din '%s'-fil. Benytter standardverdier. En sikkerhetskopi av konfigurasjonen din er opprettet pÃ¥ '%s'.Denne filen inneholder en samling av standard mediastørrelser som fungerer som bildemaler.Denne mappen blir gjennomsøkt etter bildemaler.Denne mappen blir gjennomsøkt etter tema installert av brukeren.Denne mappen brukes til Ã¥ lagre skrifttyper som bare skal kunne brukes i GIMP. NÃ¥r GIMP søker etter skrifttyper kontrolleres denne mappen i tillegg til systemmappene for skrifttyper. Hvis du har skrifttyper som skal kunne brukes i andre programmer ogsÃ¥ mÃ¥ du plassere dem i systemmappen for skrifttyper.Denne mappen brukes til Ã¥ lagre parameterfiler for kurveverktøyet.Denne mappen brukes til Ã¥ lagre parameterfiler for nivÃ¥verktøyet.Denne mappen brukes til Ã¥ lagre verktøysalternativer.Denne mappen brukes til Ã¥ lagre brukeropprettede og installerte skript. NÃ¥r GIMP søker etter skript kontrolleres denne mappen i tillegg til systemmappen for skript.Denne mappen brukes til Ã¥ lagre brukerdefinerte, midlertidige, eller DLL-moduler som ikke støttes av systemet. NÃ¥r GIMP under oppstart søker etter DLL-moduler, kontrolleres denne mappen i tillegg til systemmappen for moduler.Denne mappen brukes til Ã¥ lagre brukerdefinerte, midlertidige, eller andre utvidelser av omgivelsene for programtillegg som ikke støttes av systemet. NÃ¥r GIMP søker etter endringer i omgivelsene for programtillegg kontrolleres denne mappen i tillegg til systemmappen for omgivelser.Denne mappen brukes til Ã¥ lagre brukerdefinerte, midlertidige, eller andre programtillegg som ikke støttes av systemet. NÃ¥r GIMP søker etter programtillegg kontrolleres denne mappen i tillegg til systemmappen for programtillegg.Denne mappen kan brukes til Ã¥ lagre brukerdefinerte pensler. NÃ¥r GIMP søker etter pensler kontrolleres denne mappen i tillegg til systemmappen for GIMP-pensler.Dette er en undermappe som kan brukes til Ã¥ lagre brukerdefinerte graderinger. NÃ¥r GIMP søker etter graderinger kontrolleres denne mappen i tillegg til systemmappen for graderinger.Denne mappen brukes til Ã¥ lagre brukerdefinerte paletter. NÃ¥r GIMP søker etter paletter kontrolleres denne mappen i tillegg til systemmappen for paletter.Denne mappen brukes til Ã¥ lagre brukerdefinerte mønstre. NÃ¥r GIMP søker etter mønstre kontrolleres denne mappen i tillegg til systemmappen for mønstre.Denne mappen blir brukt til Ã¥ midlertidig lagre angrehistorikk for Ã¥ redusere minnebruk. Hvis GIMP drepes, kan filer som har formen «gimp<#>.<#>» bli liggende igjen i denne mappen. Disse filene er ubrukelige mellom økter og kan slettes uten omtanke.Denne mappen vil vil inneholde et antall viktige filer. Klikk pÃ¥ en av filene eller mappene i treet for Ã¥ fÃ¥ mer informasjon om dem.Dette er avstanden i piksler hvor innrettings- og rutenettstilpassing aktiveres.Dette programmet blir distribuert i hÃ¥p om at det er nyttig, men UTEN NOEN FORM FOR GARANTI, ikke en gang noen garanti for Ã¥ være MARKEDSDYKTIG eller TILPASSET NOEN BESTEMT BRUK. Se GNU General Public License for mer informasjon.Dette programmet er fri programvare. Du kan redistribuere det og/eller endre det under betingelsene gitt i GNU General Public License som er utgitt av Free Software Foundation, enten versjon 2 av lisensen, eller (hvis du velger det) enhver senere versjon.Dette tekstfeltet er begrenset til %d tegn.Dette verktøyet har ingen alternativerTerskelTerskel virker ikke pÃ¥ indekserte lag.Terskel:Miniatyr %d av %dFlisbuffer_størrelse:Flisbufferstørrelse:Vending:Ekstra LitenTittel og status_Til baneLe_kerSlÃ¥ av/pÃ¥ hurtigmaskeSlÃ¥ av/pÃ¥ _hurtigmaskeFor mange feilmeldinger!VerktøysalternativerVerktøysalternativmenyVerktøybryter %sVerktøys_alternativerVerktøyikonVerktøyikon med «trÃ¥dkors»VerktøykasseVerktøykasseVerktøykassemenyVerktøyVerktøymenyVerktøy som tryllestav og malingspann finner regioner basert pÃ¥ en frøfyllingsalgoritme. Frøfylling starter pÃ¥ den valgte pikselen og utvider omrÃ¥det i alle retninger helt til forskjellen i pikselintensitet til originalen er større enn den spesifiserte terskelen. Denne verdien representerer forvalgtterskelen.Gjennom_siktighetOverfør gjennomsiktighet til maskeTransformérTransformér kanalTransformasjonsretningTransformasjonslagTransformér baneTransformér tekstlagProsedyrer for transformasjonsverktøyTransformér lagTransformér baneTransformér utvalgTransformasjonTransformasjonsprosedyrerTransformérer...Oversatt avGjennomsiktighetGjennomsiktighets_type:Triangulær bølgeSanne fargerTypeType %sSkriv inn en ny hurtigtastSkriv inn en ny hurtigtast, eller tykk «Tilbake» for Ã¥ sletteKunne ikke legge til lagmaske siden laget allerede har en.Kunne ikke klippe ut eller kopiere fordi den valgte regionen er tom.Kan ikke Ã¥pne en mellomlagerfilprøve. For Ã¥ unngÃ¥ datatap, se til at plassering og rettigheter for mellomlagermappen angitt i brukervalgene (for tiden «%s») er riktige.Kunne ikke Ã¥pne mellomlagerfila. GIMP har gÃ¥tt tom for minne og kan ikke bruke mellomlagerfila. Noen deler av bildene dine kan være ødelagt. Prøv Ã¥ lagre alt arbeid ved bruk av foskjellige filnavn, start GIMP pÃ¥ nytt og sjekk lokasjonen til mellomlagermappa i innstillingene dine.Ikke i stand til Ã¥ kjøre %s tilbakekall. Programtillegget kan ha feilet.UdefinertAngreAngre-historikkAngre_historikkEnheterUkjentUkjent filtypeUkjent type palettfil: -%sFrigiUten navnUten navnBruk «_punkt for punkt» som forvalgBruk _dynamiske tastatursnarveierBruk _nettleser i stedetBruk alle synlige lag ved krymping av utvalgBruk svarthvitt (1-bits) -palettBruk farge fra graderingBruk egendefinert palettBruk infovinduBruk nettoptimert palettBrukerinstallasjonsloggBrukergrensesnittVerktøyvinduVerdiVerdi:Endring av vektorerVersjon %s leveres til deg avVersjon:VertikalVertikal forskyvning av den første linja i rutenettet. Dette kan være et negativt tall.Vertikal linjeavstand for rutenettet.Veldig storVeldig litenVisVis som _rutenettVis som _listeVis som rutenettVis som listeSynlig klasse:Synlig dybde:Advarsel: Klarte ikke Ã¥ laste data: - -«%s»Advarsel: Klarte ikke Ã¥ lagre data: - -«%s»NettleserNettleserVelkommen til -GIMP %d.%d-brukerinstallasjonenGjør at menyen automatisk følger bildet du jobber pÃ¥.Gjør at GIMP vil vise snarveistaster i menyer.Gjør at alle tegneverktøy viser gjeldende pensels omriss.Hvis aktivert, vil et bilde bli aktivt nÃ¥r bildevinduet mottar fokus. Dette er nyttig for vindushÃ¥ndtere som bruker «klikk for fokus».Gjør at dialoger vil vise en hjelpekanpp som gir tilgang til den relaterte hjelpesiden. Uten denne knappen, er hjelpesiden fremdeles tilgjengelig ved Ã¥ trykke F1.Gjør at menyer kan løsnes.Gjør at F1-knappen vil Ã¥pne en hjelpeleser.Gjør at GIMP ikke vil lagre bilder som er uendret.Gjør at GIMP vil bruke egne informasjonsvinduer for hver bildevisning.Er dette slÃ¥tt pÃ¥, vil X-tjeneren bli spurt etter musepekerens posisjon ved hver eneste bevegelse, framfor Ã¥ stole pÃ¥ posisjonshintet. Det betyr at tegning med store pensler vil bli mer presist, men det kan føre til dÃ¥rligere ytelse. Snodig nok vil denne funksjonen føre til bedre ytelse pÃ¥ noen X-tjenere.Gjør at markøren vil bli vist over bildet nÃ¥r et tegneverktøy brukes.Gjør at rutenettet er synlig som standard. Dette kan ogsÃ¥ endres med «Vis->Vis rutenett»-kommandoen.Gjør at innrettingslinjene er synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis innerttingslinjer»-kommandoen.Vil endre størrelsen pÃ¥ bildevinduet automatisk nÃ¥r du zoomer inn og ut i bildet.Vil endre størrelsen pÃ¥ bildevinduet automatisk etter som endringer skjer i det faktiske bildet.Gjør at laggrensen er synlig som standard. Dette kan ogsÃ¥ endres med «Vis->Vis laggrense»-kommandoen.Gjør menylinja synlig som standard. Dette kan ogsÃ¥ endres med «Vis->Vis menylinje»-kommandoen.Gjør linjalene synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis linjaler»-kommandoen.Gjør rullefeltene synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis rullefelt»-kommandoen.Gjør at valgt pensel vil bli brukt for med alle verktøy.Gjør at valgt gradering vil bli brukt med alle verktøy.Gjør at valgt mønster vil bli brukt med alle verktøy.Gjør at utvalg er synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis utvalg»-kommandoen.Gjør statuslinja synlige som standard. Dette kan ogsÃ¥ endres med «Vis->Vis statuslinje»-kommandoen.Hvis pÃ¥slÃ¥tt, vil dette gjøre at hvert piksel i et bilde blir koblet til en piksel pÃ¥ skjermen.Gjør at hele bildet er synlig nÃ¥r det Ã¥pnes. Ellers vil det bli vist med en 1:1-skala.Gjør at du kan endre hurtigtaster for menyvalg ved Ã¥ trykke en tastekombinasjon mens menyvalget er markert.HvitHvitbalanse virker bare pÃ¥ RGB-fargelag.BreddeBredde:VindushÃ¥ndteringVindushÃ¥ndteringshintVindusposisjonerSkriver «%s» -XXCF-feil: ustøttet XCF filversjon %d møttXCF-advarsel: versjon 0 av XCF filformatet -lagret ikke indekserte fargekart riktig. -Erstatter grÃ¥tonekart.YGulGul:Du prøver Ã¥ opprette et bilde med størrelse %s.Noen menyer kan du slippe i dokken.Du skal ha mottatt en kopi av GNU General Public License sammen med dette programmet. Hvis ikke, skriv til Free Software Foundation Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du mÃ¥tte starte GIMP pÃ¥ nytt for at disse endringene skal tre i kraft:Din GIMP-installasjon er uferdig:Dine innstillinger om inndataenheter vil bli nullstilt til standardverdiene neste gang du starter GIMP.Dine tastatursnarveier til bli nullstilt til standardverdiene neste gang du starter GIMP.Ditt vindusoppsett vil bli nullstilt til standardverdiene neste gang du starter GIMP.Oppførsel ved zooming og endring av størrelseZoom 1:1Zoom altZoom innZoom utZoomforholdZoomforhold:Zoom _altZoom _innZoom _utZoom altZoom faktor: %d:1Zoom bildet nÃ¥r vindusstørrelsen endresZoom innZoom inn og utForminskeZoom:[ Basisbilde ]_Om_Hent_Legg til farge fra bakgrunnen_Legg til farge fra forgrunnen_Legg til fane_Legg til i utvalg_Avanserte alternativer_Luftpensel_AltFor_ankre lag_Antialiasing_VilkÃ¥rlig Rotasjon..._Artistisk_Aspekt_Auto_B_Bakgrunnsfarge_Bakgrunnsfarge:_Svart (helt gjennomsiktig)_Blandingstype for segment_Blandingsfunksjon for utvalget_Utydeliggjør_Lysstyrke:_Pensel_Pensler_Pensler, mønstre og graderinger_Bøttefylling_Buffere_Etter farge_Etter fargeutvalg_C_Endestil:_Kanaler_Tøm feil_Tøm angre-historikk_Klone_Lukk_Lukk fane_Skyer_Fargeverktøy_Farger_Still inn farge og ugjennomsiktighet..._Kontekst_Kontekst hjelp_Kopiér_Kopier navngitt_Opprett bilde fra mal..._Beskjær og endre størrelse_Beskjær bilde_Bøyd_Kurver...Farge for _mørke ruter_Standard farger_Slett pensel_Slett buffer_Slett kanal_Slett farge_Slett gradering..._Slett bilde_Slett lag_Slett palett_Slett bane_Slett mønster..._Slett lagrede alternativer_Slett segment_Slett utvalg_Slett malMindre _metningLø_sne fane_Enhetsstatus_Menyer_Forkast endringer_Forkast informasjon om tekstFor_vrengninger_Punkt for punkt_KopiérR_edigerR_ediger pensel...R_ediger kanalattributter...R_ediger farge...R_ediger gradering...R_ediger lagattributter...R_ediger palett...R_ediger baneinnstillinger...R_ediger mønster..._Rediger mal..._Ellipseutvalg_SlÃ¥ pÃ¥ lag- og kanalforhÃ¥ndsvisninger_Enorm_Jevn ut_Viskelær_Forgrunnsfarge_Fil_Fyll med:_Tilpass bilde i vindu_Flat ut bilde_Vend_Vend segment_Vend utvalg_Flyt_Skrift_Skrifter_Forgrunnsfarge:_Fritt utvalg_GGe_nerelt_Gigantisk_Gradering_Graderinger_GrÃ¥tone_GrÃ¥tonekopi av lag_Øk...Innrettings_linjer_Hardhet_Hjelp_Horisontal:_Glød:Ekstra sto_r_Ikon_Ikon:_Bilde_Bilder_Importer_Importer palett..._Indeksert..._Informasjonsvindu_Kryss med utvalg_Invertér_Koblingsstil:_Stor_Lag_Lag_Lag, kanaler og baner_Venstre endepunkt_Venstre nabos høyre endepunkt_NivÃ¥er...Farge for _lyse ruter_Lyseffekter_Lysverdi:Strek_stil:_Lineær_LenketHent _venstre farge fra_Senk kanal_Senk lag_Senk bane_M_Manuelt_Kart_MaskerMaske til _utvalg_Maksimalt antall farger:_MÃ¥l_Middels_Flett sammen paletter..._Flett sammen importerte baner_Overfør brukerinnstillingene fra GIMP 2.0D_iverse ting_Kantgrense:_Modus_ModulhÃ¥ndterer_Flytt_Navn:N_atur_Ny pensel_Ny kanal_Ny kanal..._Nytt innslag..._Ny gradering_Nytt lag_Nytt lag..._Ny palett_Ny bane_Ny bane..._Nytt mønster_Ny mal..._Ny visning_Ny..._Neste tips_Støy_IngenForskyvning..._Ugjennomsiktighet_Ã…pne bilde_Ã…pne..._Fyllfarge_Tegneverktøy_Malerpensel_Palett_Lim inn_Lim inn buffer_Lim inn navngitt..._Baner_Mønster_Perspektiv_Posterisér..._Innstillinger_ForhÃ¥ndsvisStørrelse pÃ¥ _forhÃ¥ndsvisning_Forrige tips_Utskriftsstørrelse..._Egenskaper_Hurtigmaske aktiv_Avslutt_R_RGB_Radius_Løft kanal_Løft lag_Løft bane/_Løft visninger_Løft eller Ã¥pne bilde_Tilordne snarvei pÃ¥ nytt_Rektangelutvalg_Gjenta_Gjenta %s_Oppdater pensler_Oppdater graderinger_Oppdater paletter_Oppdater mønstre_Fjern ubrukte farger fra endelig palett_Rendring_Erstatt_Kopier segment..._Kopier utvalg..._Last skrifttyper pÃ¥ nytt_Nullstill rekkefølge og synlighet_Nullstill lagrede innstillinger for inndataenheter_Nullstill lagrede tastatursnarveier til standardverdier ved oppstartNullstill lagrede vindusposisjoner til standardverdier_Gjenopprett alternativer fra_Høyre endepunkt_Høyre nabos venstre endepunkt_Rotér_Metning:_LagreLagre v_enstre farge til_Lagre alternativer til_Lagre innstillinger for inndataenheter ved avslutning_Lagre tastatursnarveier ved avslutning_Lagre vindusposisjoner ved avslutning_Skalér_Skalér bilde..._Skalér lag..._Skalér importerte baner sÃ¥ de passer bildestørrelsen_Velg_Utvalg_Utvalgsbehandler_Utvalgsverktøy_FormGjør _skarpereVis bilde_utvalg_Vis i verktøykasse_Sinusformet_Liten_Tilsmuss_Innrettingsdistanse:_Strek opp utvalg_Strek opp utvalg_Trekk fra utvalg_Fanestil_Mal:M_aler_Tekst_Terskel...Ekstra lite_n_Dagens tips_Verktøy_Verktøy_Overfør lagets alfakanal_Transformér_Transformasjonsverktøy_Angre_Angre %s_Vertikal:_Vis_SynligNe_tt_Nettleser som skal brukes:_Hvit (helt ugjennomsiktig)_Hvitbalanse_Bredde:_Bryt rundt_X-oppløsning:_X:_Utvid_Y_Y-oppløsning:_Y:_Zoom_Zoom (%s)fargerkopierdpiforventet «ja» eller «nei» for bolsk tegn %s, fikk «%s»fatal feil i tolkinggrÃ¥tonegrÃ¥tone-tomtommetommerindeksertindeksert-tomugyldig UTF-8-strengugyldig verdi «%ld» for ikontypeugyldig verdi «%ld» for tegn %sugyldig verdi «%s» for ikontypeugyldig verdi «%s» for tegn %smillimetermillimetreminuttenei/tprosentpicapicaspikselpikslerpiksler/%apiksler/%spunktpunktersekundenetips-locale:noKjartan Maraas -Sigurd Gartmann -Runar Ingebrigtsenverdi for tegn %s er ikke en gyldig UTF-8-strengunder lesing av «%s»: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/pa.gmo gimp-2.2.9/po/pa.gmo --- gimp-2.2.8/po/pa.gmo 2005-03-14 11:01:06.000000000 +0100 +++ gimp-2.2.9/po/pa.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,332 +0,0 @@ -Þ•/”Aí - ƒÀ®Á®&×®kþ®Gj¯9²¯Gì¯A4°Nv°iÅ°</±kl±@ر2²;L²Pˆ²OÙ²2)³9\³-–³9ij;þ³7:´ r´|´ -ƒ´ Ž´ -˜´ -£´ ®´º´Ê´ -Ù´ä´ç´÷´ -µµ"µ*µFµ`µvµ0}µ®µÁµɵ -àµëµòµúµ¶ ¶ ¶ +¶ -9¶ -D¶ O¶ \¶h¶ x¶ „¶¶ •¶ ¡¶K®¶…ú¶.€·1¯·!á·¸¸¸+¸2¸N¸]¸a¸t¸ -†¸ ‘¸¸ ³¸ -¿¸ʸ߸ ò¸ü¸ ¹ -¹¹.¹A¹Y¹k¹}¹Œ¹*¢¹6͹ºº4ºLºUºrº‘º¦ºººκíº»»#*»N»h» -„»» »¨»º»ûã»÷» ÿ» ¼ ¼ ¼10¼3b¼–¼œ¼¯¼ -¶¼Á¼Û¼ñ¼ ½½ !½ -.½9½J½\½l½A}½J¿½ -¾<¾ Z¾ h¾v¾~¾ƒ¾ ¾©¾¿¾Ò¾Û¾ò¾¿ ¿#¿;¿ -D¿O¿`¿y¿¿&¦¿$Í¿ò¿ù¿ ÿ¿ ÀÀÀ%À -À9À>À -DÀOÀ^ÀoÀ7ƒÀ»À ÁÀ ÎÀÜÀåÀìÀ ôÀ Á Á Á"Á'Á ,Á9Á >Á LÁ ZÁdÁmÁ ŠÁ˜Á¨Á ¯Á¼ÁÚÁðÁ#Â!(ÂJÂg   —¡ªÂÂÂØÂðÂÃÃ,ÃIÃfÃÃ,šÃÇÃáÃéà üà -Ä *Ä KÄ!YÄ{ĖĬÄÁÄÖÄßÄ èÄ öÄÅÅÅ%Å +Å9ÅLÅ [ÅhÅ.~Å5­Å5ãÅ7Æ8QÆ)ŠÆ,´ÆáÆýÆÇ22Ç edžǡÇO½ÇA È%OÈ&uÈ4œÈ1ÑÈ#É 'É5É QÉ ]ÉgÉxÉ~É‡É–É¦É -µÉÀÉÈÉ ÎÉÜÉ òÉÿÉÊ*Ê <Ê HÊUÊ \Ê fÊ sÊ€Ê‰ÊœÊ¯Ê¸Ê ÈÊÖÊ ßÊéÊ -ñÊüÊ$ËAËTËcËxË •Ë¶ËÐËîËÌÌ"&ÌIÌ_Ì nÌ|ÌŒÌ •Ì¡Ì©Ì²ÌÃÌ ËÌØÌóÌ Í !Í"/Í"RÍuÍ ŽÍœÍ -»Í)ÆÍðÍ, -Î7Î!QÎ#sÎ#—Î%»ÎáÎ.Ï/Ï 6ÏBÏSÏgÏzÏÏ#£Ï-ÇÏõÏ% Ð1ÐGÐ]ÐxÐХРªÐ¸Ð -ÒÐ -ÝÐèÐÑÑÑ Ñ )Ñ6ÑFÑVÑiÑxÑ‡Ñ ŽÑœÑ -¯ÑºÑ-ÁÑïÑ öÑÒÒ*Ò.Ò3Ò9ÒJÒ]ÒqÒ‚Ò•Ò¥Ò¸ÒÏÒ àÒìÒ üÒ ÓÓÓ#Ó%)Ó!OÓ qÓ~Ó‘Ó ¥Ó³ÓÂÓÕÓ çÓõÓÔ Ô!Ô 0Ô=Ô MÔZÔlÔ {Ô‡Ô–Ô®ÔÉÔæÔøÔÕ - Õ -+Õ 6ÕBÕ IÕWÕ_Õ gÕtÕ -|Õ ‡Õ”Õ§ÕºÕÓÕÛÕîÕÖ Ö#Ö=Ö FÖPÖ `ÖjÖqÖ:Ö?ÊÖ8 -× C×O×X×j× {×…× ”× ¢× ®× -»× Æ× Ò× -Ü× ç×ó× ü× ØØ ,Ø:ØJØ\ØoØؑؠزØÒØâØ òØÿØÙÙ+Ù>ÙWÙkÙ {م٘٭ÙÈÙ ÞÙ -ìÙ÷Ù -ÚÚ 2Ú@Ú VÚcÚ xÚ…Ú•Ú°Ú ¿Ú ÍÚ -ÙÚäÚ*õÚ Û!2ÛTÛ.kÛšÛ¶Û#¿ÛãÛÜ Ü$Ü8Ü#AÜeÜlÜ {܉Ü'£ÜËÜ'èÜÝ-ÝCÝ_ÝFyÝTÀÝÞÞ "Þ/ÞEÞ XÞyÞ ÞšÞ -±Þ ¼ÞÊÞ çÞßß&ß8ßJß Pß \ßhß(qß$šß¿ß0Åß=öß64à1kà<à?ÚàAá9\ác–á0úá9+âBeâ=¨âfæâ>MãŒã œãªã¿ãÄãÖã æã ðãüã ä ä )ä7äKäbäwäŠäžä±äÄäÖäíäýäå-åHåeålåuå”å«å¿åÓå çåõå -ææ æ -%æ 0æ:æ JæXækæ -|æ‡æ£æ«æ»æ ËæÙæñæ ç)ç=çCçJç Rç_çgçmç -sçO~çÎç -àç”ëç€è‘èªèÁè -×è âè îèúè é.é>éQédé -sé ~é Œé˜éé ¬é¹é Ñé Þéëéüéê'êu6ê¬êÌ¾ê ‹ëz˜ëìì!ì:ìQìZìiìrì‚ì “ì Ÿì ©ì³ì Âì ÐìÜì áìëìñìøìýì íí"í:íKíOíií†í›íªí³íÉí àí -êíõí þíîîî î )î5îPîgîwî -|î‡îœî³î -»î ÆîÐîàî -èî!óîBïXï\ïkï~ïƒï ˆï•ïœï -¬ï·ï ¼ï ÈïCÔï1ð0Jð{ð ð Žð›ð -­ð -¸ðÃðÚðêðûðñ-ñ Eñ(Sñ -|ñ -‡ñ -’ñ ñ -ªñµñ ¼ñÈñ×ñ æñóñ òò -ò :òHòMò Uòaòiò‡òŽò –ò ¤ò°òÅòÛò÷ò ûò ó ó )ó 6ó3Dó6xó¯ó¾ó"Ôó ÷óôô -ô$7ô\ôwô Œô šô »ô(Üô+õ)1õ![õ}õõ–õ¥õ¶õÇõ'äõ öö,ö5ö -GöRöböxöˆöšö©ö²öÁöÚöíö ÷%÷@÷Q÷Z÷i÷‚÷•÷ ¬÷Í÷è÷ ù÷øø-øAø!Yø{ø—ø©ø °ø½øÔøåøúøù2ùAùJùZùmù qù{ùù‘ù ¡ù­ù3³ùçùøùú ú --ú 8ú DúQúoúŽú®úÇúÛúìú ûû&û -û9ûNû]û@eû¦û-­ûÛû íûúû ÿû ü ü&üDü KüWü \ü hütü“ü²üÆü Úü äü ðüüü ý!ý9ý Rý^ý -týý”ý ªý¸ý ÐýÜý -òýýýþþ#þ6þ>þGþOþ aþoþ -wþ#‚þ¦þ¿þØþîþôþüþÿ6ÿ>ÿ Eÿ Sÿ -_ÿ jÿ wÿ…ÿšÿ®ÿÇÿàÿ õÿ 2M"d‡ °¾ÄÉÏ$å -0? NZ b p| ” ¡® -Æ Ñ -Þé ù " ,6O^u‹©Å×Þç ú -$ /;Mat ‡ ‘›¤ µ  ÌØõ ( -5 @ J Wc } ‰ •,¡Î!á.)K u‚ š ¨´¹ÈÏ à ìúB AP’°Å ×áé„ñv…—Ÿ¨ -­¸ ÌÚñ "B"a!„!¦Èàù     % / ? N  V d +l  ˜ ¢ ¨  ¾  Ê Ö ð  - -  - -% -4 - -D -O - ^ -l - u - ƒ -‘ -— -ª - ¿ - Ë - × -å -&ÿ -,&  S ` e  -u  -€ ‹ ¨ Æ å ý  4" W i  -o z ‚  -’  ª ¹   Ð Ø ß  ü    !) K  Z h  ~ Š › ¶  Æ Ð á  ó ?O^fzŠ§ÄÍ Õßè -ø # 1-D r~“ ¨²ºÑÚ -ã îú" +8AIOe -} -ˆ“© -¹ Ä ÎÜàú  !A ESg v ƒ«² ºÈÝ óÿ -/ BP eq -„¡½Úßå û -+ <HLQ(V,¬¼Îß -ðû&J: …’¡º Ô á î ú :J;d º É Öâ ô   ,9A_rƒ–§ºÕê+-Eel { ˆ •¡ ³ À ÌØ êö "6:qŽ–­´Ëá ð ý  /< Zf{ -ˆ -“ž ¦³ ÂÐ -Öá æò - 4 Q]oŠ¦ ÁÍÝí4Kh{”±ÄÓ.íEb s Ž ¦ ´ÂÝ ã ñ ý -  % -1<K Zg„Œ ©°Â ÊÖè#4Xv Š–¨ÄÚ#ô6 JWj‡ž$¹Þý   , F Z !r ” °   -É Ô é  ù !%!@!W!k!ƒ! ™!¥!¼!Ó!ê! " " 9"G"Z" m"z""¡"¶"Î"á"ø" - -##%#?#Y# s##“#®#Æ#ß#ï#$$ .$8$I$_$n$ˆ$—$µ$ Ç$Ó$â$÷$ -% %*%<% P%]%x%’% ­%¹%Î%ã%ó%&)&=>&*|&3§&TÛ&?0'2p'4£'/Ø' ((("()(:(K(^(f(l((’(¯( Ä( Ð(Ý(;æ(") 2)?)O) `)m) ‚)) )#´) Ø)å) ú) *&*<* -O*Z*m*}*—*©*Á*Ñ*á*ò*+'+7+L+\+k+p+€+•++›+Ç+Í+Þ+ å+ò+ ù+ , -,,%,,,4, =, I,8V,,–, ž, «,·,½,Ä,Ó,Ú,ã,÷,- - %- 1- ?-M-V-_- h-u-…- ”- - ±- ½-É-!Ø-ú-.'.#0. T.a.h. -n. y. †..Ÿ.³.Î. -Ó. Þ. -ê. õ.//1/7N/1†/5¸/Hî/A70;y0!µ0 ×0ø01 1+1)215\10’1(Ã1Cì1€02,±2GÞ22&3Y3 s3-}3 -«3¶3É3Û3ì3ò3÷3444'4:4 S4`4r4 ‚4 4š4³4¼4 Ä4Ñ4 -×4 â4ð4 55#575G5V5k5…5•5¤5¸5Ç5á5ñ5 6 6!6 -16<6A6J63a6¡•6 77A7 F7 S7a7g7o7 7¢7©7±7º7Ú73ó7#'8K8c8v8†8 8¶8Å8Ô8Ú8 á8í8 -999 -<9 -G9R9 W9 e9 s9 €9 9!›9!½9 ß9 ë9+÷9K#:$o:5”:GÊ:O;eb;jÈ;<3<?p<>°<`ï<‰P=Ú=à=æ=í=ÿ=> %>3>65>ol>Ü>Þ>å>#í>%?7?@?I?Q? -Z? e? q?{? „?Ž?—?©? ±?¿?È?Î?Ý?ä?í?@@@.@ @@ J@ X@ f@p@x@~@ @‹@ž@¹@ ¿@Ì@Ó@Ü@ û@A AA+A .A :A DARAfAmA -tAA ‡A”AœA¼A ÅAÓAÙAèAB B -"B-B?B OB]BlB |BŠB žB ¬BºB ÊB×BêBCC !C -C9CHCQCbC |C †C -“CžC¤C³CÏCÞCðC -DD4DEDWD gD qD{D ƒDD “DŸD´DÃD ÉD×DçDîDôDûD EEE 'E 1E -;E -FEQEjEsE {E…E ‹E˜EžE¤EªE±E¸EÀEÈE ÛE çEôEF F#F*F1F9F -SF^FqF €F ŒF˜F F¨F¾F ÍF ÚFæF éFóFøFþFG,G5G=GPGfG †G“G™G©G¯G¶G -¾G ÉGÖG æG ôG -H H H (H 2H ?HLH ]HgH oHyHH ˆH”HH ¬H ¹HÅHÎH ÕHãHóHúH I I I+I 4I BIPI _IkI~I„I‡IŒI”I £I °I ¼IÉIÞI ñIþIJ JJ1JCJUJ]JfJxJ4’J1ÇJ/ùJ)K?K GKTKZKnK#K £KÄKãKêKúK -L -LL/L@LGLPLfLwL~L†L˜L­L -ÆL -ÑL -ÜLçL íLûLMMMM ->MIMZM`M -iMtMzMƒM˜M®M½M ÅMÒMáMåMëMîMýMN -NNNN5"NXN jNtN„N‰NN ˜N¦N!»N ÝN þNO -?O JOVO]OaOiOnOtOzO O ‹O•O›O¢O ©O·O.ÊOùOP´Q8ÎQ‚R‡ŠRRSxeS`ÞS ?T´àTa•U´÷Ui¬VZW]qWÏW OXQðXkBYN®YSýY_QZW±Z [[ -#[.[A[Q[ d[p[€[ -˜[£[¦[ À[á[ ÷[\5\8M\†\œ\o²\+"] N],Z] ‡]“] ©] µ]Á] Ø] æ] ò] -^ - ^ ^ #^/^ H^ T^`^ e^(s^·œ^0T_v…`eü`Oba-²a àaîab9bUbub0ˆb,¹b"æb c=)c7gcŸc;¹c3õc)d,Fdsd“d0°dAád-#e#Qe#ue,™e9Æeafzbf:Ýf<gSUg©g2¼gUïg9Eh6h3¶hUêh9@i6zi3±iRåi98j:rj­jÃjàj)ôjkI8k!‚k¤k´kÊkäkþk€l}Ÿl m*m ImWm&nm3•m&Ém -ðmûmn 5n0Bn*sn6žn&Õn•ün¦’o49p€np ïp q 1q ?q=Iq"‡q6ªq&áqr"r"?r&br‰r> r ßrír"sF)s$ps•sZ±sP t]t mtzt#Žt ²tÀt×t*ët u #u1uHuhu7…u€½u>vNvkv‹vžv¯v¿v#Üv w -w $w 1w%>wdwiw €w ¡w¯wEÃwX xbx x‰xM x-îx)yTFyt›yRzQczµzÒzåzøz<{3E{3y{O­{=ý{);|Ce|I©|Jó|6>}[u}<Ñ} ~~2~eJ~\°~ =$Hb!«Íë € €$€>€#]€ € Ž€ ›€¨€#¿€ã€/ŸK|ë’h‚uû‚„qƒoöƒWf„=¾„-ü„D*…o…_ý…-]†>‹†Ìʆ€—‡\ˆbuˆ€Øˆ‚Y‰J܉'Š<CŠ€Š Š"¼Šߊ ïŠ üŠ<‹Z‹x‹ “‹ ¡‹«‹3Å‹ù‹2Œ IŒ!jŒŒŒ¦Œ -ÁŒÌŒçŒ 3!3U‰) #Ê îüŽ#ŽM:ŽFˆŽ%ÏŽ"õŽ2?KF‹6Ò: 6D"{-žhÌ"5‘0X‘-‰‘,·‘ ä‘ñ‘ ’’+’K’9[’]•’Fó’H:“ƒ“F£“Bê“/-”]”\x”!Õ”Q÷”GI•M‘•@ß•j –G‹–DÓ–Q—Ej——°—H˜Y˜*w˜)¢˜)̘ ö˜)™GA™N‰™)Ø™Sš-Vš-„š*²šHÝšB&›i›0y›Fª›ñ›œT1œ†œ—œ ·œÄœáœ&ÿœ &3G"{&ž ÅÒ'îž3žˆCž ÌžÖžêž(Ÿ 0Ÿ =ŸJŸ iŸŠŸ¤Ÿ¾Ÿ'ÕŸýŸ  #< )` Š 8§ (à  ¡$¡ :¡H¡DX¡:¡Ø¡)ò¡.¢K¢h¢*…¢&°¢×¢ñ¢£%£B£\£s££&¤£#Ë£ï£ ¤,&¤&S¤,z¤#§¤ˤ2褥;¥ T¥a¥q¥ Ž¥›¥´¥ Î¥ Û¥è¥&¦&)¦)P¦z¦ Š¦&«¦"Ò¦õ¦/§ C§ P§^§r§ …§I’§¯Ü§§Œ¨œ4©Ñ©ï©)ª%,ªRª%kª%‘ª·ªת÷ª«4«Q«,o«œ«"µ«1Ø« -¬)+¬U¬r¬Œ¬¦¬#º¬Þ¬ø¬:­BP­&“­º­Ø­ ø­ ® #®[D®@ ®#ᮯJ¯'d¯-Œ¯-º¯è¯° °@°7T°Œ°$¬° Ñ° ò°±-±,J±w±—±±±ȱ å±c²#j²IŽ²&زgÿ²=g³¥³A¸³1ú³#,´P´%f´Œ´Xœ´ õ´#µ&µLFµb“µ@öµY7¶=‘¶8϶G·9P·¬Š·¯7¸ç¸ ú¸¹)%¹+O¹G{¹)ù -í¹,ø¹%ºAºCXºMœºêºýº"»"3»V»\»l»€»Iš»Fä»+¼Z;¼€–¼p½Zˆ½‘ã½u¾Š¿r‘¿æÀ]ëÀ‡IÁ¥ÑÁ‘w Õ ģĺÄ$ÚÄ ÿÄ0 Å%=ÅcÅ}Å3šÅÎÅ#åÅ Æ-*Æ/XÆˆÆ £Æ ÄÆ åÆ#Ç#*Ç/NÇ ~Ç ŸÇ:ÀÇ-ûÇ7)È aÈnÈ?‚È0ÂÈ9óÈ?-É9mÉ)§É5ÑÉ"Ê *Ê7ÊQÊ#hÊ*ŒÊ·Ê ÕÊ#öÊË47ËlË|˓˪ËÁË'ÝË'Ì-ÌDÌWÌgÌwÌ”Ì ¤Ì ²Ì¿ÌÙÌ0[ÍŒÍQ¦Í#øÎGÏ%dϊϦÏÁÏØÏïÏÐ]Ð#|Ð# ÐÄÐØÐïÐ$ -Ñ /Ñ<Ñ\Ñ,|Ñ"©Ñ"ÌÑ#ïÑ2Ò;FÒ ‚Ò £Ò2¯Ó´âÓ—Õ ±Õ »ÖÈÖ6ØÖD×T× d×…×"˜×"»×Þ×ô×ØØ<;Ø?xØ ¸ØÅØ âØ -ìØ÷Ø&Ù.Ù(KÙ3tÙ%¨ÙÎÙÒÙ#ìÙ6Ú GÚTÚ>fÚ)¥ÚÏÚìÚ ÛÛ *Û 7ÛEÛ%XÛ"~Û`¡ÛBÜ+EÜqÜ‚Ü%’Ü1¸ÜêÜúÜÝ",Ý OÝ\ÝOoÝ´¿Ý tÞÞ&¡Þ ÈÞÖÞ$æÞ ß ß<ßPß#`ß „ß°¥ß¥Vàdüàaá!qá"“á%¶áÜáùá?âVâ"vâS™â,íâ,ãGãSgã»ãØãøãä2äOä_ä|ä#“ä·ä.Ñä7å#8å\åvå“å §å µå$ÂåJçå2æCæSæ%mæ4“æWÈæ^ çç"ç(²ç"Ûçþç/è‚Nè†Ñè.Xé#‡é<«éèé2ê(4ê ]ê9jê-¤ê0ÒêëV"ëIyëWÃëdìi€ì'êìí 2í<íSígíH{í~Äí%Cîiîƒî(—îÀî/Úî9 -ïDï(bï"‹ï®ï"Ëï,îï&ð*Bð4mð.¢ð$Ñðöð"ñ,6ñ&cñ*Šñ4µñ.êñ$ò>ò"[ò,~ò&«ò*Òò4ýò.2ó$aó†ó ó)Àó#êó'ô16ô+hô!”ô¶ô Êô,ëôõõ 0õ=õTõqõ õo™õ ö*ö'Höpö„ö›ö¯öXÄöU÷:s÷E®÷Tô÷Iø8hø!¡ø.Ãøòøù#ù=ùWùÈhù 1ú{>ú&ºú"áú û$û 6û!Wû3yû­û½û Úû$äû üR*üC}ü1ÁüDóü -8ýCý%_ýJ…ýÐý)íý-þ'Eþ0mþžþ:µþ>ðþ /ÿ)Pÿzÿ0”ÿÅÿ:âÿ8*Itª)Ä)î&2VYE°)ö7  -X c-m-› É ×ä-*23]&‘P¸3 C==7¿÷&8%X<~C»MÿMiaËÛ â -ì#÷A#]#"¥+Èô*D&^…#™ ½*Þ, .6 e -ƒ #± #Õ &ù  - 7 -4X -# -0± -3â -C @Z  ›  ¼  Ê +Ô  #  8  -B M a #{ #Ÿ $à $è  * > #X | ™ ¶ =Ð #+#Os¤» Ò@ó4Qk\ˆ3åR&lB“GÖa€8ž&×þ3)]m‡§)Ç¿ñÙ±B‹<Î' 3'Dl8€,¹3æ3M"`9ƒ½@Ý 8/Y9‰0Ã<ô919k2¥0Ø/  9EUeƒ–"¦É{ã_ s/}­Â9ÝC[u"§&Êñ! '-U#lEÖ7éD!&f4­3â`Jw ßì  X6 [ =ë H)!!r!”!\²!" -":"T"d"„"—"±"Î"Þ"û"#B#b#,‚#¯#;Â#þ#$7,$#d$,ˆ$-µ$/ã$%,0%]%{%˜%¨%“¹%6M&„&,š&%Ç&Mí&L;'ˆ'ž'´'Ç'Ý'ô'(J(*h(j“(þ(,)4E) z)ˆ):˜)Ó)ä)ô)*(**%S*y*‰* £*±* Ç*XÔ*U-+ƒ+—+#±+&Õ+ü+,3,J,N,h, y,‡,!˜,º,+¾,:ê,3%-0Y-3Š-4¾- ó-..02.4c.˜.-¯.Ý.7÷.;//k/0…/¶/-Í/û/70:M0mˆ0 ö0 1:1!L1"n1 ‘1-ž1)Ì1ö1 2 -2 (2}I2‰Ç2Q3q3&Ž3µ3Õ37î36&46]4³”4H5h56‚5&¹5%à566&762^6&‘6%¸6/Þ6t7Iƒ7-Í7*û7'&8-N8&|8£8,Ã8 ð8,9>99R9)Œ9&¶9,Ý9@ -:6K:D‚:/Ç:G÷:`?;F ;Jç;2<&L<)s<#<:Á<-ü<)*=#T=Gx=.À=ï=>,>TL>­¡>GO? —?¤?Ä?Þ?`ñ?JR@@½@Ú@0ú@&+A"RA:uA&°A(×A B -B#B?BYBmBˆB¢BÂBÜBøB" CM.C"|CSŸCMóCAD&aD@ˆD_ÉDC)E(mE,–E,ÃE9ðE2*F¶]F\G6qG@¨GYéG)CHmH0ŠHt»H´0I*åIJA-J6oJ:¦J"áJ1K6KMK"gKŠK§K&ÇK"îKL,1L,^L&‹L>²LñL,M1M DM,QM~M”M%´M/ÚM) -N-4N7bN1šN'ÌNôN"O,4O&aO*ˆO4³O.èO$PÁn.o/o Co$Mo rooTo[äo@pQphp#…p ©pÊpèpqq/qMqdq{q’q©qÀq:Úqr*/r Zr9gr¡r ¿r ÍrÛrïr ss:sKZs ¦s°sÄsásõs t #td0ti•t`ÿt``uÁÁu€ƒvw:’wKÍwDx ^xkx ˆx;•xšÑx_ly^Ìy£+zâÏz…²{©8|jâ|?M}}t­}"~=~!]~~~±~)Á~ë~)-D4r§ »Üú€9,€&f€€"£€ Æ€Ѐç€MQa~ž¸#Õ,ù&‚@‚]‚w‚Š‚:ª‚,傃-.ƒ\ƒ|ƒ “ƒ ƒ,±ƒtÞƒS„"Õ…ø…*†'3† [†h†/~†N®†ý†‡"‡MB‡0‡wÁ‡[9ˆ3•ˆ3Ɉ5ýˆC3‰8w‰0°‰á‰ Š ŠŠD6Š {Š‰ŠUŸŠõŠ‹ )‹-6‹*d‹)‹&¹‹ à‹TŒZVŒ±ŒÑŒ}îŒÚlXGŽ’ Ž·3»ëৈ‘’˜’+“Œ»“)H”ír• `–m–€–%”–5º–ð–0—A—fC—;ª—æ˜ è˜ õ˜Z™\^™»™Ì™à™ú™š 4šUšjšˆš¦š%ºšàš-úš(› B›P›n› †›'§›'Ï›÷›)œ ?œ`œ~œ"œœ¿œ$Ùœ þœ '7AyŠ¤¸;Ìž #ž1ž!Ižkžnž‰ž)šž1Äžöž -Ÿ!Ÿ:ŸKŸ cŸCqŸ µŸß àŸêŸ= 4? "t — -® Ü  ô ¡0¡N¡i¡†¡£¡'º¡â¡#¢-$¢R¢ i¢Š¢!§¢ É¢ê¢&û¢-"£P£*d££ Ÿ£ ­£'Σö£¤ +¤$L¤'q¤ ™¤ º¤#Û¤ÿ¤¥*¥ ;¥I¥Z¥Ci¥­¥Ê¥Û¥ò¥ ¦¦+¦(<¦e¦€¦ƒ¦—¦«¦¦"Ó¦.ö¦%§(<§e§|§“§ §§µ§ɧݧî§þ§ ¨*¨J¨)]¨ ‡¨ ¨¨¶¨Ô¨ å¨ï¨5©9©*M©)x©¢©¿©Ý©ñ©$ ª 0ªQª#oª“ª –ª£ª´ª$Ī>éª («6«-G«-u«N£«#ò« ¬,$¬Q¬i¬x¬ ¬°¬ ά&שּׂ0­D­$[­€­ž­¼­#Ú­þ­® (®I®d®&®¨®¾®Ù®ñ®¯*¯ =¯^¯~¯¯£¯º¯Ô¯ò¯ °##°G°d°-z°¨°¹°¼°Á° Ü°ý° ±8±<U±-’± À±á±)²#+²O²*l²#—²»²Ò²6æ²D³Šb³ní³h\´AÅ´µµ8µ7Oµ*‡µn²µ„!¶Q¦¶ø¶%·#9· ]· k· u·–·®·¿·-Ó·7¸9¸J¸[¸v¸&”¸»¸Ù¸î¸ ¹&¹7¹'K¹ s¹ ¹A¹ѹ幺º.ºEºVº5gº7º Õºöº »"/»R» V»c»"f»‰»»ž» °» º»Ä»}×»&U¼|¼Œ¼ ©¼ ³¼½¼ͼ(í¼@½4W½?Œ½2̽ÿ½¾ 1¾>¾[¾ t¾ ¾Ž¾ž¾®¾Á¾Ô¾ä¾ô¾¿E¿cY¿^½¿âšF¤ZÈ!²œiÇ4Ra)ø -/$Ze†PÐ)’»d›g>O˜©t+ÑÔy¤°×E2uòÛ¡ÖU&ê[Z’«¥Ç$¶pzÍ “윮pL‚[Êõ€£Ìmʹ:¨mc:Y@<ûéÆ0X‚Ä#¬hQN^‰~š:¢º¬žµSÀÚXŰǘkðfÔ§Ìx•<*2Ø~Œ|ƒ0lÒ6ÿÒá_ ’Ó0pDus)µ¢}989s¸áKGý“¡¯ÏÆäëz%û(Øê(A² yœ Y²³ÿñ±ªðHd¶°ó%vØ,K=C A†DØ\ò"|WTNáÎ/°|ï¨(ëåÕ¢CëbDa_üéì¥Ï.Ì2­‘|°&Júq‰½‹òÍ$àx_às_H('_¹ÿ] V¯êý£JaqN›36è+ ï@T& …¤ÞYu?É–»ɤÕÁßRÏ‘óߖ会`yX¼o%± ÃzkËŸ\ñS-gíoõÜîÖŽMÐ>tCÕ´N9EüÑ'ö™”ꉚìzÚ XQ3ïÿÆB‘îàÖ%Å\vK ¯W³fã‘þÉWxom:!Õ‡S™ÈX$#d“†hü$. -ÆLbùÒj.Š—½ó—Ni'MIÁPŽÝ@¿¸ QlÃßìÊ»3œp?µ-ö\"CӲث -nI›´Ì2‘Ö’$7ýŒPamE¨ç=DüÔÜkòõv³à·‡ÝȬ?˜ëDTú˪q’­±åd ãúu›rÇkáa‹¾«å78û¨QúAŒ”€ð^Ƴ¾å¯æ´º6Fù³éqjÚÀrz¨¢™ZÑã'¸K”Ÿˆ HržVÕ·RSζ…`“‰¿,h“Âøt(1ùpnůó{E1Y¥+yV×^rèB÷’HiˆàŠTÞ#´êë› ¡ e°é¹ÂÇÍ(6<]÷´þ‡k‚¬™rûK=º]ÚõúI½ÚïèYcá±~~tžMÕm}¥…N2À!jÛžõ¼™«…' yÞÇ[[">Uò}Å_U”ì‚7ŒQäÏf¸l¨´È-:íìÃ'ˆ…¬€ÓäF5OøHdÊþæWÛ;Ò]qVª«¥wî@­G€†c¿aÜßæöVb°ÊöqÞí -Ñé4*¤{kÏùÍæëŠâ(}dvELå βããS•ñä‚tÀÀƒ¢šü©Y8-š˜„0;Кƒ¼2¦“6 š£:©%œŠ•›5ªðñ~u C±R“uí^ÃSÂÏ6â¨çSeã’þ`ÙçpA16·‹8gp÷gRÎŒÀ{¿f@—†ÈV‰ô{;wÂõq ¹Ï9JÝÔ,Y8e ‹xǽsSË”Ä$‚_G‚2û¾G;üOΗÑæ+gò± LçJõ*ÉuÛ&ô‰!Ãë­QþøÕ»zŽI{*-1ÜžÄl *jÄgâÍ*t&ý²ã3®¸Æjž®/DæìLéo¾ÙÁè=+#^¶àB?c–ï»`9/ÊÜ¡íž„Í¿+¢] rçMAü£T!{…%Ÿ ³Ú_(ù<×POoŽ + gº`á«i4 —Ü€Õ€×Òÿ˜-ÓöÒnö"®Iâåñ.}+.%ƒC¶Š‡ÑÿbêU•VŒvTTí•ð˜1œ)êµ»>•iG«ˆÓ4ðIãeå”Ä*¼ØÑwð ’Ðõªèâ©Èàú,Á¸Ùßó¦ØïG±ÓìÛ5×ývYBº‹íÈîÅÂ:>,U.wûKë%¾)ȶùj@o„ \ô“ÙÜ‘îEc$si£Âñ*` - Ú^­{Uá4†= -Ÿ›BJ‰mZ©P|·éq¬ÝFQC€òùæX'Òל4CUxm„ç:§OX%FI[ý¤ÁNÀ·f3 E7„ÙBü¼Ì÷z"î›â.˜ÝÇng U.#ÅÉ žsÐ#¶ö¯wÜέiL=W 5Ëê0P¼ý DÉ^}7B•~¥É²ßŽŽµ—3®o3vøôŸ4Ÿå,ç£ D&lW¢=ÞpxèxÍ5#û󦌦d†–7<&yËÓ¸)”,@Ê®y=¬tø  ‰9—Q*··ù¥¹¾ôc]Æ–Ý'´ÞÔÓ â` `87˘º'ƒ0觵Ðh|k>‹f)…L|O9¿5-)÷eŸywŸŽîHLñ ½säÀ§Aý4»‡8§ï< à Ú ÞÎ"¬n«}ÂF9¡i‡b¹»–mäÁÙˆ+ÃñŒWHd–1¥b@b;¾Mºªb0øX„ltŽl‘¦¿Ö³w[²/cŠÖhwö‹uf AÖnïè¼OjJ,\/PúR5 ~o—߃ -­ ;ôƒ­í‡¤¦ 1$ò|¹ÂÿKhj R™;×!ٙ̾Fs©.Õ½5ÿ§Æª-þ&þóÄRn©Ïª}˯#¿&T§…´ÛœÌ½º -M -†çÁÅ >6Ò\WÝÔ¦ÅîBø\H ¶Kc¦·ß÷á?E‹€{ÌNf‘]úØ„÷"h?G¢ÛÛÞô!ÙaæaGѱôнˆé;xûŠA1§¤°ó/lÁ£Í83¡?¡©Ðµ”Ý,(<"J„~[ˆƒ×v"k-ćÉáˆOZ³FMzZ™ð>ΖŠ£e¨J¯Ä^þ/!ÖM#h¹!0n)?]2®‚Ô<ËÔ®µVrZ÷äPe/r[¸I7Ê -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi%d x %d dpi, %s%d x %d pixels%g x %g %s%p%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Template)(clean)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transform...4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!A file named '%s' already exists.A_dd to SelectionA_ngleAbout The GIMPActionActivate the _focused imageActive FiltersAddAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd Color to ColormapAdd Guide: Add GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from BGAdd color from FGAdd layer maskAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to palette %sAdd to the current selectionAdding theme '%s' (%s) -AdditionAdditional Input ControllersAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue / lightness / saturationAdjust hue and saturationAdjust levels automaticallyAdjustmentAdvanced optionsAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll FilesAll Files (*.*)Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:An_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdApply layer maskAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?As in _PreferencesAsk for confirmation before closing an image without saving.Aspect Ratio:Aspect ratio:Author:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack:Blen_dBlend: Blending...BlueBlue:Bo_rder...Border ChannelBorder SelectionBrightness-ContrastBrightness-Contrast does not operate on indexed layers.BrushBrush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtBy ExtensionCMYKC_alibrate...C_olor PickerC_olumns:C_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCancel GuideCannot create folder '%s': %sCannot create previewCannot expand ${%s}Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:Center Y:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to imageCloneClose %sClose all TabsClose all tabs?Close this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color eraseColor index:Color:Color_mapColor_space:Colori_ze...ColorizeColorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Configure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...Copy _VisibleCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for this templateEnter location (URI):EnvironmentEnvironment FoldersEqualizeErase to background or transparencyEraserError Co_nsoleError ConsoleError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%sError writing to '%s': %sError writing to temporary file for '%s': %s -No file has been created.Error writing to temporary file for '%s': %s -The original file has not been touched.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS to layerFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Feather ChannelFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerate optimum paletteGet Monitor ResolutionGiganticGla_ss EffectsGradientGradient EditorGradient FoldersGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterval:IconIcon & descIcon & textIf you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorInfo WindowInitial zoom _ratio:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstallation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresIntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid character sequence in URIInvalid shortcut.InvertInvert ChannelInvert SelectionInvert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)KeyboardKeyboard EventsKeyboard ShortcutsLTRLandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...MagentaMagenta:MagnifyMake _transparentMask Opacity:Matrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error: -procedure '%s' not foundP_atternsPaintPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaintbrushPal_ettesPalettePalette EditorPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to Selection -%s Add -%s Subtract -%s IntersectPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick onlyPick white pointPixel dimensions:Pixel valuesPixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-InsPlug-inPolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re_name Saved OptionsRe_peat "%s"Re_vert...ReadyRecreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat:Replace the current selectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSample averageSample mergedSat.:SaturationSaveSave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%sSaving ImagesSawtooth waveScalable SVG image (*.svg)ScaleScale ChannelScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScissorsScreenScript-Fu FoldersScriptsScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Controller Event ActionSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect Range to ModifySelect Script-Fu FoldersSelect SourceSelect Swap FolderSelect Temp FolderSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Custom Color...Select _Next LayerSelect _Previous LayerSelect _Top LayerSelect allSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect noneSelect palette fileSelect rectangular regionsSelect regions by colorSelect shapes from imageSelect swap dirSelect transparent areasSelect web browserSelecti_on to PathSelectionSelection EditorSelection Editor MenuSelection MaskSelection Tool proceduresSelection maskSelection to Path (_Advanced)Selection to pathSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Channel ColorSet Channel OpacitySet ColormapSet Image Print ResolutionSet Item Exclusive LinkedSet Item Exclusive VisibleSet OpacitySet background colorSet foreground colorSet item linkedSet layer modeSet layer opacitySets the browser used by the help system.Sets the manner in which transparency is displayed in images.Sets the mode of cursor the GIMP will use.Sets the pixel format of cursors the GIMP will use.Sets the preview size used for layers and channel previews in newly created dialogs.Sets the size of the checkerboard used to display transparency.Sets the size of the previews in the Undo History.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenShearShear magnitude X:Shear magnitude Y:Shear the layer or selectionShearing InformationShearing...Short dashesShortcutShortcut "%s" is already taken by "%s" from the "%s" group.Show Layer MaskShow R_ulersShow S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow _SelectionShow _brush outlineShow _foreground & background colorShow _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow help _buttonsShow image sizeShow interactive boundaryShow memory usageShow paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink ChannelSizeSize in memory:Size of _thumbnails:Size:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSna_p to GridSoft lightSolidSourceSpacingSpacing:Sparse dotsSpecial FileSpecifies how the area around the image should be drawn.Speed:Spikes:Spiral (ccw)Spiral (cw)SplitSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStatus & descStatus & textStd Dev:StipplesStock IDStro_ke PathStro_ke Path...Stroke ChannelStroke PathStroke SelectionStroke lineStroke pathStroke path...Stroke selection with last valuesStroke selection...Stroke with a paint toolSubtractSubtract from the current selectionSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTerminating plug-in: '%s' -TextText ColorText EditorText LayerText modifiedText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The horizontal image resolution.The vertical image resolution.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is no active layer or channel to stroke toThere is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This folder is searched for image templates.This is the distance in pixels where Guide and Grid snapping activates.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%sUnloadUnnamedUntitledUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual depth:Warning: Failed to load data: - -%sWarning: Failed to save data: - -%sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will use a different info window per image view.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.WhiteWidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You can drop dockable dialogs here.Your GIMP installation is incomplete:Zoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_Anchor Layer_Antialiasing_Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_None_Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replace_Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Small_Smudge_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp.gimp-2-2 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-03-08 20:16+0100 -PO-Revision-Date: 2005-03-09 09:29+0530 -Last-Translator: Amanpreet Singh Alam -Language-Team: Punjabi -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.9.1 -Plural-Forms: nplurals=2; plural=(n != 1); - -ਗਲਤ ਚੋਣ"%s" - -ਵਰਤੋ: %s [ਚੋਣ ... ] [ਫਾਇਲ ... ] - - --batch-interpreter - ਬੈਚ ਕਮਾਂਡ ਚਲਾਉਣ ਲਈ ਢੰਗ ਹੈ। - --debug-handlers ਨਾ-ਘਾਤਕ ਡੀਬੱਗ ਸੰਕੇਤ ਹੈਡਲਰਾਂ ਨੂੰ ਯੋਗ ਕਰੋ। - --display <ਦਰਿਸ਼> ਨਿਯਤ X ਦਰਿਸ਼ ਵਰਤੋ। - --dump-gimprc ਮੂਲ ਵਿਵਸਥਾ ਨਾਲ ਆਉਟਪà©à©±à¨Ÿ ਇੱਕ gimprc ਫਾਇਲ - --no-cpu-accel ਖਾਸ ਪà©à¨°à©‹à¨¸à©ˆà¨¸à¨° ਗਤੀ ਨਾ ਵਰਤੋ। - --no-shm ਜੈਮਪ ਅਤੇ ਪਲੱਗਇੰਨ ਵਿੱਚ ਸਾਂà¨à©€ ਮੈਮੋਰੀ ਦੀ ਵਰਤੋਨਾ ਕਰੋ। - --pdb-compat-mode <ਆਨ | ਆਫ | ਚੇਤਾਵਨੀ> - ਪਰੋਸੀਜ਼ਰਲ ਡਾਟਾਬਸੇ ਕੰਪਲੈਸਿਟੀ ਮੋਡ। - --session <ਨਾਂ> ਬਦਲਵੀ ਅਜਲਾਸ ਫਾਇਲ ਵਰਤੋ। - --stack-trace-mode <ਕਦੇ ਨਹੀ | ਪà©à©±à¨›à©‹ | ਹਮੇਸ਼ਾ> - ਘਾਤਕ ਸੰਕੇਤਾਂ ਲਈ ਡੀਬੱਗ ਮੋਡ। - --system-gimprc ਇੱਕ ਬਦਲਵੀ ਸਿਸਟਮ gimprc ਫਾਇਲ ਵਰਤੋ। - --verbose ਸ਼à©à¨°à©‚ਆਤੀ ਸà©à¨¨à©‡à¨¹à©‡ ਵੇਖਾਉ। - -b, --batch ਕਮਾਂਡ ਨੂੰ ਬੈਚ ਵਿੱਚ ਚਲਾਉ। - -c, --console-messages ਤਖਤੀ ਦੀ ਬਜਾਠਕੰਨਸੋਲ ਤੇ ਚੇਤਵਾਨੀ ਵੇਖਾਉ। - -d, --no-data ਬਰà©à¨¸à¨¼, ਢਾਲੂ, ਰੰਗ-ਪੱਟੀਆਂ ਅਤੇ ਤਰਤੀਬਾਂ ਨੂੰ ਲੋਡ ਨਾ ਕਰੋ। - -f, --no-fonts ਕੋਈ ਫੋਂਟ ਨਾ ਲੋਡ ਕਰੋ। - -g, --gimprc <ਜੈਮਪਆਰਸੀ> ਇੱਕ ਬਦਲਵੀ gimprc ਫਾਇਲ ਵਰਤੋ। - -h, --help ਆਉਟਪà©à©±à¨Ÿ ਇਹ ਸਹਾਇਤਾ। - -i, --no-interface ਯੂਜਰ ਇੰਟਫੇਸ ਨਾ ਚਰਤੋ। - -s, --no-splash ਸ਼à©à¨°à©‚ਆਤੀ à¨à¨°à©‹à¨–ਾ ਨਾ ਵੇਖਾਉ। - -v, --version ਆਉਟਪà©à©±à¨Ÿ ਵਰਜਨ ਜਾਣਕਾਰੀ। -%d ਪਰਤਾਂ%d dpi%d dpi, %s%d ਪਰਤਾਂ%d ਮਿੰਟ%d ਸਕਿੰਟ%d x %d dpi%d x %d dpi, %s%d x %d ਪਿਕਸਲ%g x %g %s%p%s ਚੈਨਲ ਨਕਲਚੋਣ ਲਈ %s ਚੈਨਲ%s ਸà©à¨¨à©‡à¨¹à¨¾%s ਨਕਲ%s ਮਖੌਟਾ%s%s ਦਬਾਉ: ਵਿਸਥਾਰਿਤ ਚੋਣ%s%sਚà©à©±à¨•à©‹: ਹਿਲਾਉ ਤੇ ਦਬਾਉ(%0.3f, %0.3f, %0.3f)(ਕੋਈ ਨਹੀ)(ਕੰਨਸੋਲ à¨à¨°à©‹à¨–ਾ 10 ਸਕਿੰਟਾਂ ਵਿੱਚ ਬੰਦ ਹੋ ਜਾਵੇਗਾ) -(ਬਿਨਾਂ ਨਾਂ ਨਮੂਨਾ)(ਸਾਫ਼)(ਗਲਤ ਯੂਟੀà¨à¨«-à©® ਸਤਰ)(ਸੋਧ)(ਕੋਈ ਨਹੀ)1 ਪਰਤ1 ਪਰਤ15 ਡਿਗਰੀ %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D ਤਬਦੀਲੀ...4:1 (400%)8:1 (800%)<%s><<ਗਲਤ>><ਕੋਈ ਮੈਡੀਊਲ ਨਹੀ>ਜੈਮਪ ਦੀ ਅਨà©à¨•à©‚ਲ ਕਾਰਜਕà©à¨¸à¨¼à¨¤à¨¾ ਲਈ, ਕà©à¨ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਅਨà©à¨•à©‚ਲ ਕਰਨਾ ਪਵੇਗਾ।ਜੈਮਪ(GIMP) - GNU ਚਿੱਤਰਾਂ ਲਈ ਇਸਤੇਮਾਲ ਕਰਨ ਵਾਲਾ ਕਾਰਜ -ਹੱਕ ਰਾਖਵੇ ਹਨ (C) ੧੯੯੫-੨੦੦੪ -ਸਪੈਨਸਰ ਕਿਮਬਿਲ, ਪੀਟਰ ਮਟੀਟੀਸ ਅਤੇ ਗਨੋਮ ਵਿਕਾਸ ਟੀਮ।ਜੈਮਪ ਇਸ਼ਾਰਾ ਫਾਇਲ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ!ਤà©à¨¹à¨¡à©€ ਜੈਮਪ ਇਸ਼ਾਰਾ ਫਾਇਲ ਗà©à©°à¨® ਲੱਗਦੀ ਹੈ!ਫਾਇਲ ਨਾਂ '%s' ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ।ਚੋਣ ਵਿੱਚ ਜੋੜà©à¨¹à©‹(_d)ਕੋਣ(_n)ਜੈਮਪ ਬਾਰੇਕਾਰਵਾਈਕੇਂਦਰਿਤ ਚਿੱਤਰ ਸਰਗਰਮ(_f)ਸਰਗਰਮ ਫਿਲਟਰਜੋੜà©à¨¹à©‹à¨à¨³à¨«à¨¾ ਚੈਨਲ ਜੋੜà©à¨¹à©‹(_h)à¨à¨²à¨«à¨¾ ਚੈਨਲ ਜੋੜà©à¨¹à©‹à¨¸à¨¹à¨¾à¨°à¨¾ ਜੋੜà©à¨¹à©‹à¨šà©ˆà¨¨à¨² ਜੋੜà©à¨¹à©‹à¨°à©°à¨—-ਖਾਕੇ ਤੋਂ ਰੰਗ ਜੋੜà©à¨¹à©‹à¨¦à¨¿à¨¸à¨¼à¨¾-ਨਿਰਦੇਸ਼ਨ ਸ਼ਾਮਲ: ਗਾਈਡ ਸ਼ਾਮਲਲੇਟਵੀ ਨਿਰਦੇਸ਼ਕ ਜੋੜà©à¨¹à©‹à¨ªà¨°à¨¤ ਮਖੌਟਾ ਜੋੜà©à¨¹à©‹(_y)...ਪਰਤ ਜੋੜà©à¨¹à©‹à¨ªà¨°à¨¤ ਮਖੋਟਾ ਜੋੜà©à¨¹à©‹à¨®à¨¾à¨°à¨— ਜੋੜà©à¨¹à©‹à¨›à©‹à¨¹ ਜੋੜà©à¨¹à©‹à¨¨à¨µà©€ ਪਾਠ ਪਰਤ ਜੋੜà©à¨¹à©‹à¨²à©°à¨¬à¨•à¨¾à¨°à©€ ਨਿਰਦੇਸ਼ਕ ਜੋੜà©à¨¹à©‹à¨ªà¨°à¨¤ ਲਈ ਮਖੌਟਾ ਸ਼ਾਮਲBG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲFG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲਪਰਤ ਮਖੌਟਾ ਜੋੜà©à¨¹à©‹à¨šà¨¿à©±à¨¤à¨° ਵਿੱਚ ਪਾਠ ਜੋੜà©à¨¹à©‹à¨®à©Œà¨œà©‚ਦਾ ਰੰਗ ਨੂੰ ਰੰਗ ਅਤੀਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰੋਸਰਗਰਮ ਫਿਲਟਰ ਦੀ ਸੂਚੀ ਵਿੱਚ ਚà©à¨£à©‡ ਫਿਲਟਰ ਨੂੰ ਜੋੜà©à¨¹à©‹à¨°à©°à¨—-ਪੱਟੀ ਵਿੱਚ ਜੋੜà©à¨¹à©‹ %sਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚ ਜੋੜà©à¨¹à©‹à¨¸à¨°à©‚ਪ '%s' ਸ਼ਾਮਿਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ (%s) -ਜੋੜà©à¨¹à©‹à¨¹à©‹à¨° ਇੰਪà©à©±à¨Ÿ ਕੰਟਰੋਲਰਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨà©à¨•à©‚ਲ ਕਰੋਰੰਗ ਸੰਤà©à¨²à¨¨ ਅਨà©à¨•à©‚ਲ ਕਰੋਰੰਗ ਗੋਲਾਈ ਅਨà©à¨•à©‚ਲ ਕਰੋਰੰਗ ਪੱਧਰ ਅਨà©à¨•à©‚ਲ ਕਰੋਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਨੂੰ ਅਨà©à¨•à©‚ਲ ਕਰੋਰੰਗ ਸੰਤà©à¨²à¨¨ ਅਨà©à¨•à©‚ਲ ਕਰੋਰੰਗ ਗੋਲਾਈ ਅਨà©à¨•à©‚ਲ ਕਰੋਰੰਗ ਪੱਧਰ ਅਨà©à¨•à©‚ਲ ਕਰੋਆਭਾ / ਚਮਕੀਲਾਪਨ / ਸਤà©à¨°à¨¿à¨ªà¨¤à¨¾ ਅਨà©à¨•à©‚ਲਆਭਾ ਤੇ ਸਤà©à¨°à¨¿à¨ªà¨¤ ਅਨà©à¨•à©‚ਲਪੱਧਰ ਸਵੈ ਹੀ ਅਨà©à¨•à©‚ਲ ਕਰੋਅਨà©à¨•à©‚ਲਣਤਕਨੀਕੀ ਚੋਣਪà©à¨°à¨­à¨¾à¨µ:ਪà©à¨°à¨­à¨¾à¨µà¨¿à¨¤ ਖੇਤਰ %sà¨à¨…ਰ-ਬà©à¨°à¨¸à¨¼à¨¹à¨µà¨¾à¨ˆ-ਬà©à¨°à¨¸à¨¼ ਬਦਲਣਯੋਗ ਦਬਾਉ ਨਾਲਚੋਣ ਲਈ à¨à¨²à¨«à¨¾(_p)ਇਕਸਾਰਇਕਸਾਰਤਾਸਾਰੇ ਚੈਨਲਸਭ ਫਾਇਲਾਂਸਭ ਫਾਇਲਾਂ (*.*)ਪੂਰੀ ਤਰà©à¨¹à¨¾à¨‚ ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਨੂੰ ਭਰਨ ਦੀ ਮਨਜ਼ੂਰੀ ਦਿਉਪੂਰੀ ਤਰà©à¨¹à¨¾à¨‚ ਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਦੀ ਚੋਣ ਦੀ ਮਨਜ਼ੂਰੀ ਦਿਉà¨à¨²à¨«à¨¾à¨šà©‹à¨£ ਲਈ à¨à¨²à¨«à¨¾ à¨à¨²à¨«à¨¾:ਸਜੀਵਤਾ(_i)ਸਹਾਰਾ ਤਰਦੀ ਚੋਣਤਰਦੀ ਪਰਤ ਨੂੰ ਜੋੜà©à¨¹à©‹à¨²à¨Ÿà¨•à¨¦à©€ ਤਰਦੀ ਚੋਣਕੋਣ:ਗੈਰ ਮੇਟੋ %sà¨à¨Ÿà©€à¨²à¨¾à¨ˆà¨¸à¨¿à©°à¨—ਦਿੱਖਪਰਤ ਮਖੌਟਾ ਲਾਗੂ ਕਰੋਪਰਤ ਮਖੌਟਾ ਲਾਗੂ(_M)ਮà©à©±à¨¢à¨²à¨¾-ਮà©à©±à¨² ਲਾਗੂ ਕਰੋਪਰਤ ਮਖੌਟਾ ਲਾਗੂਕੀ ਤà©à¨¸à©€ ਯਕੀਨਨ ਹੀ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹà©à©°à¨¦à©‡ ਹੋ?ਕੀ ਤà©à¨¸à©€ ਯਕੀਨਨ ਹੀ ਨਮੂਨਾ '%s' ਨੂੰ ਸੂਚੀ ਅਤੇ ਡਿਸਕ ਤੋ ਹਟਾਉਣਾ ਚਾਹà©à©°à¨¦à©‡ ਹੋ ?ਜਿਵੇਂ ਕਿ ਪਸੰਦ ਵਿੱਚ(_P)ਬਿਨਾਂ ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਤੋ ਪਹਿਲ਼ਾਂ ਪà©à©±à¨›à©‹à¥¤à¨…ਕਾਰ ਅਨà©à¨ªà¨¾à¨¤:ਅਕਾਰ ਅਨà©à¨ªà¨¾à¨¤:ਲੇਖਕ:ਸਵੈਸਰਗਰਮ ਚਿੱਤਰ ਸਵੈ-ਸੰਭਾਲ(_F)ਸਵੈ ਸà©à©°à¨˜à©œà©à¨¹à©‹à¨šà©‹à¨£ ਨੂੰ ਸਵੈ-ਸੰਗੇੜà©à¨¹à©‹à¨¸à¨µà©ˆ-ਅਕਾਰ à¨à¨°à©‹à¨–ਾਸਵੈ-ਲੋਡਸਵੈਚਾਲਿਤ ਖੋਜਉਪਲੱਬਧ ਫਿਲਟਰਉਪਲੱਬਧ ਕਿਸਮਾਂ:BG ਰੰਗ ਭਰੋਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂ(_r)...ਬਫਰ(_u)ਪਿੱਠਭੂਮੀਪਿੱਠਭੂਮੀ ਰੰਗਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ:ਪਿੱਠਭੂਮੀ: %d, %d, %dਪਿੱਛੇ (ਸਹੀ)ਸਾਰੀਆਂ ਦਿੱਖ ਪਰਤਾਂ ਲਈ ਅਧਾਰ ਭਰਨ ਖੇਤਰਸਾਰੀਆ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਅਧਾਰ ਚੋਣਪਿੱਛੇà¨à©à©°à¨¡à¨¦à©‹-ਧਾਰੀਕਾਲਾ ਤੇ ਚਿੱਟਾਕਾਲਾ:ਮਿਲਾਵਟ(_d)ਮਿਲਾਵਟ:ਮਿਲਾ ਜਾ ਰਿਹਾ ਹੈ...ਨੀਲਾਨੀਲਾ:ਹਾਸ਼ੀਆ(_r)...ਹਾਸ਼ੀਆ ਚੈਨਲਹਾਸ਼ੀਆ ਚੋਣਪਰਕਾਸ਼ਵਾਨਤਾ-ਵੱਖਰੇਵਾਂਤਤਕਰਾ ਪਰਤਾਂ ਤੇ ਚਮਕੀਲਾਪਨ-ਅਸਮਾਨਤਾ ਕੰਮ ਨਹੀ ਕਰਦੇ ਹਨ।ਬà©à¨°à¨¸à¨¼à¨¬à©à¨°à¨¸à¨¼ ਸੋਧਕਬà©à¨°à¨¸à¨¼ ਫੋਲਡਰਬà©à¨°à¨¸à¨¼ UIਬà©à¨°à¨¸à¨¼:ਬà©à¨°à¨¸à¨¼à¨¬à©à¨°à¨¸à¨¼ ਮੇਨੂਬਾਲਟੀ ਨਾਲ ਭਰੋਬਫਰਬਫ਼ਰ ਮੇਨੂਲਿਖੋਉੱਚਾà¨à¨•à¨¸à¨¼à¨Ÿà©‡à¨¸à¨¼à¨¨ ਨਾਲCMYKਇਕਸਾਰ(_a)...ਰੰਗ ਚੋਣਕਾਰ(_o)ਕਾਲਮ:ਸੰਯੋਗ(_o)ਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਨਾਲ ਇਕਸਾਰ%s ਨੂੰ ਪà©à¨¨à¨°-ਪà©à¨°à¨¾à¨ªà¨¤ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਖਾਕਾ ਅਕਾਰ...ਰੱਦਗਾਈਡ ਰੱਦਫੋਲਡਰ '%s' ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ: %sਦਰਿਸ਼ ਨਹੀ ਬਣ ਸਕਿਆ${%s} ਫੈਲਾ ਨਹੀ ਸਕਦਾਪਰਤ ਨੂੰ à¨à¨²à¨«à¨¾ ਬਿਨਾਂ ਉਠਾਇਆ ਜਾ ਸਕਦਾਸੰਭਾਲਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ। ਕà©à¨ ਨਹੀ ਸੰਭਾਲਿਆ ਗਿਆ।ਖਾਲੀ ਚੈਨਲ ਨੂੰ ਦਬਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਖਾਲੀ ਰਸਤੇ ਨੂੰ ਛੋਹਿਆ ਨਹੀ ਜਾ ਸਕਦਾਕੈਨਵਸ ਅਕਾਰਕੇਦਰੀ X:ਕੇਦਰੀ X:ਕੇਦਰੀਪਿੱਠਭੂਮੀ ਰੰਗ ਤਬਦੀਲ ਕਰੋਰੰਗ-ਖਾਕੇ ਇਕਾਈ ਤਬਦੀਲਮà©à©±à¨–-ਭੂਮੀ ਰੰਗ ਤਬਦੀਲਚਿੱਤਰ ਦੀ ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਦੀ ਇਕਾਈ ਤਬਦੀਲ ਕਰੋਛਾਪਣ ਅਕਾਰ ਤਬਦੀਲਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਮਾਰਗ ਤਬਦੀਲਗਰਿੱਡ ਦਾ ਪਿੱਠਭੂਮੀ ਰੰਗ ਤਬਦੀਲਗਰਿੱਡ ਦਾ ਮà©à©±à¨–-ਭੂਮੀ-ਰੰਗ ਤਬਦੀਲਤਤਕਰਾ ਰੰਗ-ਪੱਟੀ ਤਬਦੀਲਮੌਜੂਦਾ ਪਰਤ ਜਾਂ ਚੋਣ ਦਾ ਅਵਲੋਕਣ ਤਬਦੀਲ ਸ਼ਾਰਟਕੱਟ ਬਦਲਣਾ ਅਸਫਲ ਹੈ।ਚੈਨਲਚੈਨਲ ਗà©à¨£à¨šà©ˆà¨¨à¨² ਨਾਂ:ਚੈਨਲ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਚੈਨਲ ਨੂੰ ਹੋਰ ਉਭਾਰਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਚੈਨਲ ਰੰਗਚੈਨਲ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈਚੈਨਲ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਚੋਣ ਲਈ ਚੈਨਲ(_c)ਚੋਣ ਲਈ ਚੈਨਲਚੋਣ ਲਈ ਚੈਨਲਚੈਨਲ:ਚੈਨਲਚੈਨਲ ਮੇਨੂਅਕਾਰ ਜਾਂਚ(_s):ਛੋਹ ਸ਼ੈਲੀ ਚà©à¨£à©‹à¨šà©±à¨•à¨°à¨¸à¨¾à¨«à¨¼à¨¸à¨¾à¨«à¨¼à¨¸à¨¾à¨« ਚੈਨਲਵਾਪਿਸ ਦਾ ਅਤੀਤਸਭ ਪਾਠ ਸਾਫ਼ਗਲਤੀ ਸਾਫ਼ਮà©à¨¡à¨¼ ਕਰੋ ਅਤੀਤ ਸਾਫ..ਉਪਰ ਦਿੱਤੀਆਂ ਵਿਵਸਥਾਵਾਂ ਨੂੰ ਮਨਜ਼ੂਰ ਕਰਨ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਨੂੰ ਦਬਾਉ।ਆਪਣਾ ਨਿੱਜੀ ਜੈਮਪ ਫੋਲਡਰ ਬਣਾਉਣ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਦਬਾਓ।ਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਨਾਲ ਜਾਰੀ ਰੱਖਣ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਦਬਾਓ।ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਨੂੰ ਦਬਾਓ।ਇਸ ਸਹਾਰੇ ਨੂੰ ਚà©à¨£à©‡ ਅਖੀਰੀ-ਬਿੰਦੂਆਂ ਨਾਲ ਜੋਡ਼ਨ ਲਈ ਦਬਾਉ।ਨਵਾਂ ਸਹਾਰਾ ਬਣਾਉਣ ਲਈ ਦਬਾਉ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਰਸਤੇ ਵਿੱਚ ਨਵਾਂ ਭਾਗ ਬਣਾਉਣ ਲਈ ਦਬਾਉ।ਨਵਾਂ ਮਾਰਗ ਬਣਾਉਣ ਲਈ ਦਬਾਉਦਿੱਖ ਵੇਖਣ ਲਈ ਦਬਾਓਇਸ ਸਹਾਰੇ ਨੂੰ ਹਟਾਉਣ ਲਈ ਦਬਾਉਇਸ ਰਸਤੇ ਵਿੱਚ ਸਹਾਰੇ ਨੂੰ ਜੋਡ਼ਨ ਲਈ ਦਬਾਉ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਇਸ ਨੋਡ ਨੂੰ ਕੋਣੀ ਨਹੀ ਬਣਾਇਆ ਜਾ ਸਕਦਾ ਹੈ।ਮਾਰਗ ਖੋਲਣ ਲਈ ਦਬਾਉਸੋਧ ਲਈ ਮਾਰਗ ਚà©à¨£à¨¨ ਲਈ ਦਬਾਉਨਮੂਨਾ ਦਾ ਨਵੀਨੀਕਰਨ ਲਈ ਦਬਾਉ -%s ਦਬਾਉ ਨਵੀਨੀਕਰਨ ਲਈ ਭਾਵੇ ਕਿ ਨਮੂਨਾ ਪਹਿਲਾਂ ਹੀ ਨਵੀਨ ਹੋਵੇ ਗੋਲਾਈ ਦੀ ਸਥਿਤੀ ਤਬਦੀਲ ਕਰਨ ਲਈ ਦਬਾਉ-ਚà©à©±à¨•à©‹ (SHIFT: ਸਮਮਿਤੀ)ਸਹਾਰੇ ਨੂੰ à¨à¨§à¨°-ਓਧਰ ਕਰਨ ਲਈ ਦਬਾਉ-ਚà©à©±à¨•à©‹ ਸਹਾਰਿਆਂ ਨੂੰ à¨à¨§à¨°-ਓਧਰ ਕਰਨ ਲਈ ਦਬਾਉ-ਚà©à©±à¨•à©‹ ਭਾਗ ਨੂੰ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚà©à©±à¨•à©‹ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਹੈਡਲਰ ਨੂੰ ਘà©à©°à¨®à¨¾à©³à¨£ ਲਈ ਦਬਾਉ-ਚà©à©±à¨•à©‹ (SHIFT ਨਾਲ ਕੋਸ਼ਿਸ ਕਰੋ)ਮਾਰਗ ਪਾਸੇ ਭੇਜਣ ਲਈ ਦਬਾਉ-ਚà©à©±à¨•à©‹à¨¦à¨¬à¨¾à¨‰: ਚà©à¨£à©‹ ਦਬਾਉ: ਚà©à¨£à©‹ ਚà©à¨•à©‹: ਹਿਲਾਉਕਲਿੱਪ ਨਤੀਜਾਕਲਿੱਪਬੋਰਡਚà©à©±à¨•à¨¿à¨† ਚਿੱਤਰਸਮਰੂਪ%s ਬੰਦਸਭ ਟੈਬਾਂ ਬੰਦਕੀ ਸਭ ਟੈਬ ਬੰਦ ਕਰਨੀਆਂ ਹਨ?ਇਹ ਟੈਬ ਹਟਾਉਨਕਲ ਮਾਰਗ(_p)ਰੰਗ(_r)ਰੰਗਰੰਗ ਸਾਵਾਂਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰਰੰਗ ਚੋਣਕਾਰਰੰਗ ਚੋਣਕਾਰ ਜਾਣਕਾਰੀਰੰਗ ਸਾਵਾਂ(_B)...ਰੰਗ ਥਰਾਹਰਟ(_d):ਰੰਗ ਮੇਟਾਉਰੰਗ ਤਤਕਰਾ:ਰੰਗ:ਰੰਗ-ਖਾਕਾ(_m)ਰੰਗ ਥਾਂ(_s):ਰੰਗਤ(_z)...ਰੰਗਤਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋਚਿੱਤਰ ਨੂੰ ਰੰਗੀਨ ਕਰੋਰੰਗ-ਖਾਕਾਰੰਗ-ਖਾਕਾ ਸੰਪਾਦਕਰੰਗ-ਖਾਕਾ ਮੇਨੂਕਾਲਮ:ਟਿੱਪਣੀ:ਟਿੱਪਣੀਅਸਮਾਨਤਾ:ਰੰਗ-ਵੇਖਾਉਣ ਲਈ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾਵਾਧੂ ਇੰਪà©à©±à¨Ÿ ਜੰਤਰ ਸੰਰਚਨਾ(_x)...ਗਰਿੱਡ ਸੰਰਚਨਾ...ਗਰਿੱਡ ਸੰਰਚਨਾਚਿੱਤਰ ਗਰਿੱਡ ਸੰਰਚਨਾਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਸੰਰਚਨਾ(_K)...ਚà©à¨£à©‡ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾਚà©à¨£à©‡ ਫਿਲਟਰ ਦੀ ਸੰਰਚਨਾ: %sਚਿੱਤਰ ਅਕਾਰ ਦੀ ਪà©à¨¸à¨¼à¨Ÿà©€à¨ªà©ˆà¨®à¨¾à¨¨à¨¾ ਪà©à¨¶à¨Ÿà©€à¨ªà¨¾à¨  ਸੋਧ ਦੀ ਪà©à¨¸à¨¼à¨Ÿà©€à¨¨à¨¾-ਸੰਭਾਲੇ ਚਿੱਤਰ ਨੂੰ ਬੰਦ ਕਰਨ ਸਮੇਂ ਪà©à¨¶à¨Ÿà©€(_v)ਸ਼ਾਰਟਕੱਟ ਟਕਰਾਸ਼ੰਕੂਕਾਰ (ਅਸਮਮਿਤੀ)ਸ਼ੰਕੂਕਾਰ (ਸਮਮਿਤੀ)ਛੋਹਾਂ ਨੂੰ ਜੋੜà©à¨¹à©‹à¨¸à¨¥à¨¿à¨°à¨¸à©€à¨®à¨¾à¨µà¨¾à¨‚ਪਾਠਜਾਰੀ ਰੱਖੋਯੋਗਦਾਨ ਰਿਹਾਤਬਦੀਲਕਿਨਾਰੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ ਗਰੇ-ਪੈਮਾਨਾ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਚਿੱਤਰ ਨੂੰ ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲਚਿੱਤਰ ਨੂੰ RGB ਵਿੱਚ ਤਬਦੀਲ਼ ਕਰੋਚਿੱਤਰ ਤਬਦੀਲਤਤਕਰੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋ (ਪਗ ੨)...ਤਤਕਰੇ ਵਿੱਚ ਤਬਦੀਲ (ਪੱਧਰ à©©)...ਤਤਕਰਾ ਵਿੱਚ ਤਬਦੀਲ...ਦਿੱਖ ਨਕਲ(_V)ਫਾਇਲ '%s' ਨੂੰ '%s' ਤੋ ਨਕਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਹੱਕ ਰਾਖਵੇ ਹਨ:ਨਿਕਾਰਾ ਭਾਗ %d ਢਾਂਲਵਾ ਫਾਇਲ '%s' ਵਿੱਚ'%s' ਨੂੰ ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ: %s'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਨਹੀ ਬਣਾ ਸਕਿਆ: %s'%s' ਨੂੰ ਹਟਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ: %sਜੈਮਪ ਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾ ਲੱਭਿਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ। '%s' ਨੂੰ ਪੜà©à¨¹à¨¨ ਲਈ ਖੋਲਣਾ ਅਸਫਲ: %s '%s' ਨੂੰ ਲਿਖਣ ਲਈ ਖੋਲਣਾ ਅਸਫਲ: %s %d ਬਾਈਟ'%s' ਤੋ ਪੜà©à¨¹à©‡ ਨਹੀ ਜਾ ਸਕੇ ਹਨ: %sXCF ਫਾਇਲ ਵਿੱਚ ਲੱਭਿਆ ਜਾ ਸਕਿਆ: %sਜੈਮਪ ਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾ ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼à©à¨°à©‚ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਗਿਣਤੀ:ਪਰਤ ਫੈਲਾਓ(_o)ਨਵਾਂ ਤਰਦਾ ਬਣਾਓ(_k)ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉਨਵੀ ਪਰਤ ਬਣਾਉਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਇਸ ਚਿੱਤਰ ਲਈ ਨਵਾਂ ਦਰਿਸ਼ ਬਣਾਉਚà©à¨£à©‡ ਨਮੂਨੇ ਤੋ ਨਵਾਂ ਚਿੱਤਰ ਬਣਾਉ ਨਵਾਂ ਨਮੂਨਾ ਬਣਾਉਚਿੱਤਰ ਜਾਂ ਤਸਵੀਰਾਂ ਬਣਾਉ ਜਾਂ ਸੋਧੋਮਾਰਗ ਬਣਾਉ ਤੇ ਸੋਧੋਪਾਠ ਤੋਂ ਮਾਰਗ ਬਣਾਓਮਾਰਗ ਤੋ ਚੋਣ ਬਣਾਓਨਮੂਨਾ ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ ...ਫੋਲਡਰ '%s' ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਫੈਲਾਉਫੈਲਾਉ ਤੇ ਮà©à¨¡à¨¼-ਅਕਾਰਫੈਲਾਉ ਤੇ ਮà©à¨¡à¨¼-ਅਕਾਰ ਜਾਣਕਾਰੀਚਿੱਤਰ ਫੈਲਾਉਚਿੱਤਰ ਫੈਲਾਓਚਿੱਤਰ ਨੂੰ ਫੈਲਾਉ ਤੇ ਮà©à¨¡à¨¼-ਅਕਾਰ ਦਿਉਫੈਲਾਉ:ਕਰਾਸਹੇਅਰ ਹੀਕੱਟੋਕੱਟਿਆ ਨਾਂ...ਘਣਕਾਰ(ਉੱਤਮ)ਮੌਜੂਦਾ ਸਥਿਤੀ(_S)ਮੌਜੂਦਾ ਉਚਾਈ:ਸਿਰਫ਼ ਮੌਜੂਦਾ ਪਰਤ ਲਈਮੌਜੂਦਾ ਸਥਿਤੀਮੌਜੂਦਾ ਚੌਡ਼ਾਈ:ਕਰਸਰਕਰਸਰ ਮੋਡ(_m):ਕਰਸਰ ਪੇਸ਼ਕਾਰੀ(_n):ਗੋਲਾਈ ਕਿਸਮਚਾਪਾਂਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਗੋਲਾਈ ਨੂੰ ਅਨà©à¨•à©‚ਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਸੋਧਸੋਧ ਰੰਗਢਾਲਵਾਂ ਸੋਧਸੋਧ ਚਿਣਿਆ ਰੰਗ(_a):ਕੱਟੋਨੀਲਾਯਰਕਾਨ(ਨੀਲਾ):ਨਕਲੀ ਬà©à¨°à¨¸à¨¼(_u)ਨਕਲੀ ਚੈਨਲਨਕਲੀ ਢਾਲੂਨਕਲੀ ਪਰਤਨਕਲੀ ਰੰਗ-ਪੱਟੀ(_u)ਨਕਲੀ ਮਾਰਗ(_u)ਨਕਲੀ ਤਰਤੀਬ(_u)ਨਕਲੀ ਨਮੂਨਾ(_u)...ਗੂੜà©à¨¹à©‡ ਜਾਂਚ ਰੰਗਸਿਰਫ ਹਨੇਰਾਧਾਰੀਦਾਰ ਬਿੰਦੂ ਬਿੰਦੂ...ਧਾਰੀਦਾਰ ਬਿੰਦੂ...ਡੈਸ਼ ਤਰਤੀਬ:ਧਾਰੀਦਾਰਮਿਤੀ:ਡੀਬੱਗਪੂਰੇ ਪਰਦਾ ਢੰਗ ਵਿੱਚ ਮੂਲ ਸ਼ਕਲਸਧਾਰਨ ਢੰਗ ਵਿੱਚ ਮੂਲ ਸ਼ਕਲਮੂਲ ਗਰਿੱਡਮੂਲ ਚਿੱਤਰ ਗਰਿੱਡਮੂਲ ਮà©à©±à¨¢à¨²à¨¾ ਮà©à©±à¨²(_t):ਸਹਾਰਾ ਹਟਾਉਸਹਾਰਾ ਹਟਾਓਪਰਤ ਮਖੌਟਾ ਹਟਾਓ(_k)ਪਰਤ ਮਖੌਟਾ ਹਟਾਉਇਕਾਈ ਹਟਾਉਖੰਡ ਹਟਾਉਨਮੂਨਾ ਹਟਾਉਬà©à¨°à¨¸à¨¼ ਹਟਾਓਚੈਨਲ ਹਟਾਉਰੰਗ ਹਟਾਓਢਾਲੂ ਹਟਾਓਪਰਤ ਹਟਾਓਪਰਤ ਮਖੌਟਾ ਹਟਾਓਰੰਗ-ਪੱਟੀ ਹਟਾਓਮਾਰਗ ਹਟਾਓਤਰਤੀਬ ਹਟਾਓਸੰਭਾਲੀ ਚੋਣ ਹਟਾਉ...ਚà©à¨£à¨¿à¨† ਬਫਰ ਹਟਾਉਚà©à¨£à¨¿à¨† ਨਮੂਨਾ ਹਟਾਉਇਹ ਚਿੱਤਰ ਹਟਾਉਵੈਕਟਰ ਹਟਾਓ"%s" ਨੂੰ ਹਟਾਉਣਾ ਅਸਫਲ: %sਸੰਘਣੇ ਬਿੰਦੂਅਸਤà©à¨°à¨¿à¨ªà¨¤à¨µà¨°à¨£à¨¨à¨¢à¨¾à¨‚ਚਾਯੰਤਰ ਸਥਿਤੀਯੰਤਰਵਾਰਤਾਲਾਪਤਖਤੀ ਮੇਨੂਹੀਰਾਅੰਤਰਸਿੱਧੇ ਰੰਗਪਰਤ ਮਖੌਟਾ ਆਯੋਗਤੇਜ਼ ਮਖੌਟਾ ਆਯੋਗਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦਦਰਿਸ਼ਦਰਿਸ਼ à¨à¨§à¨°-ਓਧਰਫਿਲਟਰ ਵੇਖਾਓ(_F)...ਕਾਰਵਾਈ ਵੇਖਾਓਦਰਿਸ਼ ਕਿਸਮ:[%0.6f, %0.6f] ਦਿੱਖ ਰਿਹਾ ਹੈਘੋਲੋਦੂਰੀ:ਦੂਰੀ: %0.6fਥਰਾਹਰਟਵੰਡੋਤਾਜ਼ਾ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰੋ(_f)ਕੀ ਤà©à¨¸à©€ ਨਿਸ਼ਚਿਤ ਹੀ ਸਭ ਫਿਲਟਰਾਂ ਨੂੰ ਮੂਲ ਹੀ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ?ਕੀ ਤà©à¨¸à©€ ਨਿਸ਼ਚਿਤ ਹੀ ਸੰਦ ਚੋਣ ਨੂੰ ਮੂਲ ਹੀ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਿਤ ਕਰਨਾ ਚਾਹੋਗੇ ?ਕੀ ਤà©à¨¸à©€à¨‚ ਇਸ ਨੂੰ ਸੰਭਾਲਣ ਵਾਲੇ ਚਿੱਤਰ ਨਾਲ ਤਬਦੀਲ ਕਰਨਾ ਚਾਹà©à©°à¨¦à©‡ ਹੋ?ਸੰਭਾਲੋ ਨਾ(_n)ਤਰਨਯੋਗਦਸਤਾਵੇਜ਼ ਅਤੀਤ(_y)ਦਸਤਾਵੇਜ਼ ਅਤੀਤਦਸਤਾਵੇਜ਼ਦਸਤਾਵੇਜ਼ ਮੇਨੂਦੂਹਰੀ-ਧਾਰੀਦਾਰਸਹਾਰਾ ਚà©à©±à¨•à©‹à¨¸à¨¹à¨¾à¨°à©‡ ਚà©à©±à¨•à©‹à¨—ੋਲਾਈ ਚà©à©±à¨•à©‹à¨¹à©ˆà¨¡à¨² ਚà©à©±à¨•à©‹à¨®à¨¾à¨°à¨— ਚà©à©±à¨•à©‹à¨šà©à¨•à©‹: ਹਿਲਾਉਸਿਆਹੀ ਵਿੱਚ ਉਲੀਕੋਉਲੀਕਣਯੋਗਉਲੀਕਣਯੋਗ ਮੋਡਖਿੱਚਣਯੋਗ ਕਾਰਵਾਈਆਂਨਵੀ ਪਰਤ ਸà©à¨Ÿà©‹à¨¨à¨µà¨¾à¨‚ ਮਾਰਗ ਸà©à©±à¨Ÿà©‹à¨¨à¨•à¨²à©€ ਬà©à¨°à¨¸à¨¼à¨¨à¨•à¨²à©€ ਚੈਨਲਨਕਲੀ ਢਾਲੂਨਕਲ ਪਰਤਨਕਲੀ ਰੰਗ-ਪੱਟੀਨਕਲੀ ਮਾਰਗਨਕਲੀ ਤਰਤੀਬਚà©à¨£à©‡ ਨਮੂਨੇ ਦੀ ਨਕਲ ਬਣਾਉEEK: ਮà©à¨¡à¨¼ ਪਹਿਲਾਂ ਨਹੀ ਕਰ ਸਕਿਆਨਿਰਯਾਤ ਮਾਰਗ(_x)...ਬਹà©à¨¤ ਛੋਟਾ(_x)ਬਾਹੀ ਵਿਵਹਾਰਸੋਧਚੈਨਲ ਗà©à¨£ ਸੋਧਚੈਨਲ ਰੰਗ ਸੋਧਰੰਗ ਦੀ ਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਇੰਦਰਾਜ਼ ਦੀ ਸੋਧਰੰਗ-ਪੱਟੀ ਇੰਦਰਾਜ਼ ਵਿੱਚ ਸੋਧਪਰਤ ਮਖੌਟਾ ਸੋਧਸੋਧ ਮੋਡਰੰਗ-ਪੱਟੀ ਵਿੱਚ ਇੰਦਰਾਜ਼ ਦੀ ਸੋਧਮਾਰਗ ਗà©à¨£ ਦੀ ਸੋਧਤੇਜ਼ ਮਖੌਟਾ ਗà©à¨£ ਸੋਧਤੇਜ਼ ਮਖੌਟਾ ਰੰਗ ਸੋਧਨਮੂਨਾ ਸੋਧਬà©à¨°à¨¸à¨¼ ਸੋਧ...ਚੈਨਲ ਗà©à¨£ ਸੋਧਰੰਗ ਸੋਧਰੰਗ-ਪੱਟੀ ਇੰਦਰਾਜ਼ ਸੋਧ #%dਢਾਲਵਾਂ ਸੋਧ...ਪਰਤ ਗà©à¨£ ਦੀ ਸੋਧਰੰਗ-ਪੱਟੀ ਸੋਧਮਾਰਗ ਗà©à¨£ ਸੋਧਤਰਤੀਬ ਸੋਧਕਾਰਵਾਈ ਸੋਧਚà©à¨£à¨¿à¨† ਨਮੂਨਾ ਸੋਧੋਅੰਡਾਕਾਰ ਚੋਣਖਾਲੀ ਚੈਨਲਖਾਲੀ ਪਰਤਖਾਲ਼ੀ ਮਾਰਗਖਾਲੀ ਪਾਠ ਪਰਤਵਾਤਾਵਰਣ ਫਾਇਲ %s ਵਿੱਚ ਵੇਰੀਬਲ ਨਾਂ ਖਾਲੀ ਹੈਤੇਜ਼ ਮਖੌਟਾ ਯੋਗਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉਣਾ ਯੋਗ(_t)ਇਹ ਕੰਟਰੋਲਰ ਯੋਗਸ਼à©à¨°à©‚ ਵੇਲੇ ਜੈਮਪ ਸੰਕੇਤ ਨੂੰ ਵੇਖਾਉ ਯੋਗ ਕਰੋਸੰਕੇਤ ਨੂੰ ਵੇਖਾਉ ਯੋਗ ਕਰੋਵਿਸ਼ਾਲਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ ਲਈ ਨਾਮ ਭਰੋਇਸ ਨਮੂਨੇ ਦਾ ਨਾਂ ਭਰੋਟਿਕਾਣਾ ਦਿਓ (URI):ਵਾਤਾਵਰਣਵਾਤਾਵਰਣ ਫੋਲਡਰਸਮਰੂਪਪਿੱਠਭੂਮੀ ਜਾਂ ਪਾਰਦਰਸ਼ਤਾ ਨੂੰ ਮੇਟਾਉਰਬਡ਼ਕੰਨਸੋਲ ਗਲਤੀ(_n)ਕੰਨਸੋਲ ਗਲਤੀਗਲਤੀ, XCF ਫਾਇਲ ਨੂੰ ਸੰਭਾਲਣ ਵਿੱਚ: %sਗਲਤੀ, '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਦੌਰਾਨ, ਸਤਰ %d ਵਿੱਚ: %sਗਲਤੀ, '%s' ਨੂੰ ਪੜà©à¨¹à¨¨ ਦੌਰਾਨ: %sਬà©à¨°à¨¶ ਫਾਇਲ਼ '%s' ਨੂੰ ਪੜà©à¨¹à¨¨ ਦੌਰਾਨ ਗਲਤੀ: %sਗਲਤੀ, '%s' ਨੂੰ ਲਿਖਣ ਦੌਰਾਨ: %sਗਲਤੀ XCF ਨੂੰ ਲਿਖਣ ਵਿੱਚ: %sਗਲਤੀ, ਫਾਇਲ '%s' ਨੂੰ ਲਿਖਣ ਵਿੱਚ: -%sਗਲਤੀ '%s' ਨੂੰ ਲਿਖਣ ਵਿੱਚ: %s'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਲਿਖਣ ਵਿੱਚ ਗਲਤੀ: %s -ਕੋਈ ਫਾਇਲ ਨੂੰ ਬਣਾਇਆ ਨਹੀ ਜਾ ਸਕਿਆ ਹੈ।'%s' ਲਈ ਆਰਜ਼ੀ ਫਾਇਲ ਲਿਖਣ ਵਿੱਚ ਗਲਤੀ: %s -ਅਸਲੀ ਫਾਇਲ ਨੂੰ ਛੂਹਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਗਲਤੀਆਂਘਟਨਾਬਹà©à¨¤ ਵੱਡਾ(_t)ਲੋੜ ਅਨà©à¨¸à¨¾à¨° ਫੈਲੇSVG ਤੇ ਭੇਜਣ ਲਈ ਮਾਰਗਇਸ ਚਿੱਤਰ ਤੋਂ ਸਭ ਮਾਰਗ ਨਿਰਯਾਤਸਰਗਰਮ ਮਾਰਗ ਆਯਾਤਪੱਖ:ਵਾਧੂ ਇੰਪà©à©±à¨Ÿ ਜੰਤਰà¨à¨•à¨¸à¨¼à¨Ÿà©‡à¨¸à¨¼à¨¨FG ਰੰਗ ਭਰੋFG ਤੋ BG (HSV ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)FG ਤੋ BG (HSV ਘਡ਼ੀ ਦੀ ਉਲਟ-ਦਿਸ਼ਾ ਵਿੱਚ)FG ਤੋ BG (HSV)FG ਤੋ BG (RGB)FG ਤੋ ਪਾਰਦਰਸ਼ੀFG ਤੋ ਪਾਰਦਰਸ਼ੀFG/BGFG/BG ਰੰਗFS ਤੋ ਪਰਤਫਿੱਕਾ ਕਰੋ'%s' ਤੋਂ ਢਾਲੂ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %s'%s' ਤੋ ਮਾਰਗ ਲਿਆਉਣ ਵਿੱਚ ਅਸਫਲ: %sਫੈਂਸੀਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਬਾਇਟ = 0ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਤਬਦੀਲ ਜਾਪਦੀ ਹੈ।ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਉਚਾਈ = 0ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਇੱਕ ਜੈਮਪ ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ ਨਹੀ ਹੈ।ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬà©à¨°à¨¸à¨¼ ਰੂਪ ਹੈ।ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਜੈਮਪ ਬà©à¨°à¨¸à¨¼ ਵਰਜਨ ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣਪਛਾਤਾ ਵਰਜਨ %d।ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਅਣ-ਸਹਿਯੋਗੀ ਬà©à¨°à¨¸à¨¼ ਡੂੰਘਾਈ %d।ਜੈਮਪ ਬà©à¨°à¨¸à¨¼ GRAY ਜਾਂ RGBA ਹੋਣੇ ਜ਼ਰੂਰ ਹਨ।ਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਗਲਤੀ: ਚੌੜਾਈ = 0ਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਫਾਇਲ ਨਕਾਰਾ ਹੈ।ਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਇਹ ਜੈਪਮ ਢਾਲਵਾਂ ਫਾਇਲ ਨਹੀ ਹੈਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਮੈਜਿਕ ਸਿਰਲੇਖ ਗਲਤੀ ਹੈ।ਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਮੈਜਿਕ ਸਿਰਲੇਖ ਗਲਤੀ ਹੈ।ਕੀ ਇਸ ਫਾਇਲ ਨੂੰ ਡਾਸ (DOS) ਤੋ ਤਬਦੀਲ ਕਰਨ ਦੀ ਲੋਡ਼ ਹੈ ?ਰੰਗ-ਪੱਟੀ '%s' ਵਿੱਚ ਘਾਤਕ ਪਾਰਸ ਗਲਤੀ ਹੈ: ਸਤਰ %d ਵਿੱਚ ਪੜà©à¨¹à¨¨ ਦੀ ਗਲਤੀਹੋਰ ਚੈਨਲਪਤਲੇ ਕਿਨਾਰੇਹੋਰ ਚੋਣ ਇਸ ਨਾਲਫਾਇਲਫਾਇਲ ਖੋਲà©à¨¹à©‹ ਤਖਤੀ(_D)ਫਾਇਲ ਕਾਰਵਾਈਆਂਫਾਇਲ ਕਿਸਮਫਾਇਲ ਮੌਜੂਦਫਾਇਲ ਇਕਸਾਰ ਨਹੀਂ ਰਹੀਭਰੋ ਚੈਨਲਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨ ਭਰੋ:ਭਰਨ ਦੀ ਕਿਸਮ %sਮਿਲ-ਜà©à¨²à¨¦à©‡ ਰੰਗ ਭਰੋਪਾਰਦਰਸ਼ੀ ਖੇਤਰ ਭਰੋਸਭ ਚੋਣ ਭਰੋBG ਰੰਗ ਨਾਲ ਭਰੋBG ਰੰਗ ਨਾਲ ਭਰੋFG ਰੰਗ ਨਾਲ ਭਰੋਤਰਤੀਬ ਨਾਲ ਭਰੋਤਰਤੀਬ ਨਾਲ ਭਰੋਪਾਰਦਰਸ਼ਤਾ ਨਾਲ ਭਰੋਸਫੈਦ ਨਾਲ ਭਰੋFG ਰੰਗ ਨਾਲ ਭਰੋਪਿੱਠਭੂਮੀ ਰੰਗ ਨਾਲ ਭਰੋ(_b)ਰੰਗ ਢਾਲਵੇ ਨਾਲ ਭਰੋਰੰਗ ਜਾਂ ਤਰਤੀਬ ਨਾਲ ਭਰੋਭਰਿਆਫਿਲਟਰ(_r)ਅੰਤ ਵਿੱਚ, ਪਰਤ ਮਿਲਾਨ ਹੋਵੇ:ਮਿਲ-ਜà©à¨²à¨¦à©‡ ਰੰਗ ਖੋਜੋਚਿੱਤਰ à¨à¨°à©‹à¨–ੇ ਦੇ ਅਨà©à¨•à©‚ਲਚਿੱਤਰ à¨à¨°à©‹à¨–ੇ ਵਿੱਚ ਅਨà©à¨•à©‚ਲਚਿੱਤਰ à¨à¨°à©‹à¨–ੇ ਦੇ ਅਨà©à¨•à©‚ਲà¨à¨°à©‹à¨–ੇ ਦੇ ਅਨà©à¨•à©‚ਲਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨà©à¨ªà¨¾à¨¤à¨¨à¨¿à¨¸à¨¼à¨šà¨¿à¨¤ ਅਕਾਰà¨à¨Ÿà¨•à¨¾à¨à¨Ÿà¨•à¨¾ ਚੈਨਲਪਰਤ à¨à¨Ÿà¨•à¨¾à¨®à¨¾à¨°à¨— ਨੂੰ à¨à¨Ÿà¨•à©‹à¨ªà¨¾à¨  ਪਰਤ ਨੂੰ à¨à¨Ÿà¨•à©‹à¨à¨Ÿà¨•à¨¾ ਕਿਸਮ %sਖਿਤਿਜੀ à¨à¨Ÿà¨•à©‹:ਲੰਬਕਾਰੀ à¨à¨Ÿà¨•à©‹:ਚਿੱਤਰ à¨à¨Ÿà¨•à©‹à¨šà©‹à¨£ ਜਾਂ ਚੋਣ ਨੂੰ à¨à¨Ÿà¨•à©‹à¨à¨Ÿà¨•à¨¾...ਤਰਦੀ ਚੋਣਤਰਦੀ ਚੋਣਤਰਦੀ ਪਰਤਤਰਦੀ ਚੋਣ -(%s)ਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣਪਰਤ ਲਈ ਤਰਦੀ ਚੋਣਤਰਦੀ ਚੋਣਕੇਦਰਿਤਫੋਲਡਰਫੋਲਡਰਫੋਂਟ ਫੋਲਡਰਫੋਂਟ UIਫੋਂਟ:ਫੋਂਟਫੋਂਟ ਮੇਨੂਠੀਕ ਜੈਮਪ ਇੰਸਟਾਲੇਸ਼ਨ ਲਈ, ਫੋਲਡਰ '%s' ਬਣਾਉਣ ਦੀ ਲੋੜ ਹੈ।ਸਵੈ-ਸੰਕੇਤ ਲਈ ਮਜਬੂਰਮà©à©±à¨–-ਭੂਮੀਮà©à©±à¨–-ਭੂਮੀ ਤੇ ਪਿੱਠਭੂਮੀ ਰੰਗ। ਕਾਲੇ-ਸਫੈਦ ਵਰਗ ਰੰਗ ਨੂੰ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਿਤ ਕਰਦੇ ਹਨ।ਤੀਰ ਰੰਗ ਸੰਭਾਲਦਾ ਹੈ। ਦੋ ਵਾਰ ਦਬਾਉ ਤੇ ਰੰਗ ਚੋਣ ਤਖਤੀ ਖà©à©±à¨²à¨¦à©€ ਹੈ।ਮà©à©±à¨–-ਭੂਮੀ ਰੰਗਮà©à©±à¨–-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋ:ਮà©à©±à¨–-ਭੂਮੀ: %d, %d, %dਅੱਗੇ (ਮੂਲ਼)ਮਾਰਗ ਤੋਂ(_o)ਮà©à¨•à¨¤ ਚੋਣਮà©à¨•à¨¤ ਚੋਣਹੱਥ ਨਾਲਸਰੂਪ ਤੋਂ(_T)à¨à¨°à©‹à¨–ਾ ਸਿਸਟਮ (ਮੌਜੂਦਾ %d x %d ਡੀਪੀਆਈ) ਤੋਂ(_w)ਖੱਬੇ ਤੋਂ ਸੱਜੇਸੱਜੇ ਤੋਂ ਖੱਬੇਚੋਣ ਤੋਂਸਰੂਪ ਤੋਂਮà©à¨•à¨¤ ਚੋਣ(_z)ਪੂਰੇ ਪਰਦੇ ਤੇ(_e)ਜੈਮਪਜੈਮਪ ਵਿਸਥਾਰਜੈਮਪ ਸà©à¨¨à©‡à¨¹à¨¾à¨—ਨੋਮ ਕਾਰਜਕà©à¨¸à¨¼à¨¤à¨¾ ਜੈਮਪ ਪਲੱਗਿੰਨਜੈਮਪ ਸ਼à©à¨°à©‚ਆਤਜੈਮਪ ਪਾਠ ਸੋਧਕਜੈਮਪ - ਅੱਜ ਦਾ ਇਸ਼ਾਰਾਜੈਮਪ ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨਜੈਮਪ XCF ਚਿੱਤਰਜੈਮਪ ਗਰਾਫਿਕਲ ਯੂਜਰ ਇੰਟਰਫੇਸ਼ ਆਰੰਭ ਨਹੀ ਕਰ ਸਕਿਆ ਹੈ। -ਜਾਂਚ ਲਵੋ ਕਿ ਤà©à¨¹à¨¾à¨¡à¨¾ ਦਰਿਸ਼ ਨਿਰਧਾਰਨ ਠੀਕ ਨਿਸ਼ਚਿਤ ਕੀਤਾ ਹੈ।ਜੈਮਪ ਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾à¨œà©ˆà¨®à¨ª ਮੌਜੂਦਾ ਉਪਭੋਗਤਾ ਲਈ ਸਹੀ ਤਰਾਂ ਇੰਸਟਾਲ ਨਹੀ ਹੈ। -ਉਪਭੋਗਤਾ ਇੰਸਟਾਲੇਸ਼ਨ ਬਾਕੀ ਰਹਿ ਗਈ ਹੈ, ਕਿਉਕਿ '--no-interface' ਤਰੀਕਾ ਵਰਤਿਆ ਗਿਆ ਹੈ। -ਉਪਭੋਗਤਾ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨ ਲਈ, ਜੈਮਪ ਨੂੰ '--no-interface' ਨਾਲ ਚਲਾਉ।ਜੈਮਪ ਵਰਜਨਜੈਪਮ ਉਪਭੋਗਤਾ ਨੂੰ ਚੇਤਵਾਨੀ ਦੇਵੇਗਾ, ਜਦੋ ਕਿ ਚਿੱਤਰ ਜੋ ਕਿ ਬਣਾਉਣਾ ਹੈ, ਨਿਰਧਾਰਿਤ ਮੈਮੋਰੀ ਨਾਲੋ ਜਿਆਦਾ ਥਾਂ ਵਰਤੇਗਾ।ਗਾਮਾਸਧਾਰਨਅਨà©à¨•à©‚ਲ ਰੰਗ-ਪੱਟੀ ਬਣਾਓਮਾਨੀਟਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਪà©à¨°à¨¾à¨ªà¨¤à¨µà¨¿à¨°à¨¾à¨Ÿà¨•à©±à¨š ਪà©à¨°à¨­à¨¾à¨µ(_s)ਢਾਲਵਾਂਢਾਲਵਾ ਸੰਪਾਦਕਢਾਲਵਾਂ ਫੋਲਡਰਢਾਲਵਾਂ UIਢਾਲਵਾਂ:ਢਾਲਵਾਂਢਾਲਵਾਂ ਮੇਨੂਲੱਕਡ਼ ਦੀਆਂ ਧਾਰੀਆਂ ਖੋਲੋਲੱਕਡ਼ ਦੀਆਂ ਧਾਰੀਆਂ ਵਿਲੀਨਭੂਰਾਗਰੇ-ਪੈਮਾਨਾਹਰਾਹਰਾ:ਗਰਿੱਡਗਰਿੱਡ ਰੇਖਾ ਥਾਂਉਭਾਰੋ ਚੈਨਲਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨਗਾਈਡ ਤੇ ਗਰਿੱਡ ਤਸਵੀਰਗਾਇਡ ਕਾਰਵਾਈਆਂHSVHSV (%0.3f, %0.3f, %0.3f)HSV (ਘੜੀ-ਉਲਟ ਆਭਾ)HSV (ਘਡ਼ੀ ਦੀ ਦਿਸ਼ਾ ਵਿੱਚ)HTML ਪਗ:ਉਚਾਈ(_e):ਵਰਤਣ ਲਈ ਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾(_e):ਸਥਿਤੀ ਸੰਭਾਲੋ: %0.6fਸਖਤ ਕਿਨਾਰਾਹਾਰਡ ਰੋਸ਼ਨੀਸਖਤਕਠੋਰਤਾ:ਉਚਾਈਉਚਾਈ:ਸਹਾਇਤਾਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾à¨¸à¨¹à¨¾à¨‡à¨¤à¨¾ ਸਿਸਟਮਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾ ਨਹੀਂ ਲੱਭਿਆਸਹਾਇਤਾ ਕਾਰਵਾਈਆਂਹੈਕਸਾ:ਉਭਾਰੋਡੌਕ ਲਈ ਸੰਕੇਤ(_d):ਸੰਦਖਾਨੇ ਲਈ ਸੰਕੇਤ(_t):ਸੰਕੇਤਆਇਤ ਗਰਾਫ(_m)ਆਇਤ ਗਰਾਫਭਿੰਨ ਸਕੇਲਿੰਗਅਤੀਤਖਿਤਿਜੀਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੇਟਵੀ ਦੂਰੀਫਾਇਲ ਮੇਨੂ-ਸੂਚੀ ਵਿੱਚ ਕਿੰਨੇ ਤਾਜ਼ਾ ਖੋਲà©à¨¹à©‹ ਚਿੱਤਰਾਂ ਦੇ ਫਾਇਲ-ਨਾਂ ਰੱਖਦਟ ਹਨ।ਰੰਗਤਆਭਾ-ਸਤà©à¨°à¨¿à¨ªà¨¤à¨†à¨­à¨¾-ਸਤà©à¨°à¨¿à¨ªà¨¤(_S)...ਰੰਗਤ:ਵਿਰਾਟਆਈਕਾਨ ਤੇ ਪਾਠ(_c)ਚਿੱਤਰਆਯਾਤ ਮਾਰਗ(_m)...ਅੰਤਰਾਲ:ਆਈਕਾਨਆਈਕਾਨ ਤੇ ਵਰਣਨਆਈਕਾਨ ਤੇ ਪਾਠਜੇਕਰ ਤà©à¨¸à©€à¨‚ ਚਿੱਤਰ ਨਾ ਸੰਭਾਲਿਆ ਤਾਂ ਆਖਰੀ %s ਤੋਂ ਤਬਦੀਲੀਆਂ ਗà©à©°à¨® ਹੋ ਜਾਣਗੀਆ।ਜੇਕਰ ਤà©à¨¸à©€à¨‚ ਜੈਮਪ ਹà©à¨£ ਬੰਦ ਕੀਤਾ ਤਾਂ ਅਣ-ਸੰਭਾਲਿਆ ਡਾਟਾ ਖਤਮ ਹੋ ਜਾਵੇਗਾ।ਵਾਤਾਵਰਣ ਫਾਇਲ %s ਵਿੱਚ ਵੇਰੀਬਲ ਨਾਂ ਗਲਤ ਹੈ: %sਚਿੱਤਰਚਿੱਤਰ + ਗਰਿੱਡਚਿੱਤਰ ਸੰਪਾਦਕਚਿੱਤਰ ਜਾਣਕਾਰੀਚਿੱਤਰ ਮੇਨੂਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰ ਸਥਿਤੀ ਪੱਟੀ ਫਾਰਮਿਟਚਿੱਤਰ ਨਮੂਨੇਚਿੱਤਰ ਥੰਮਨੇਲਚਿੱਤਰ ਨਾਂ ਅਤੇ ਸਥਿਤੀ ਪੱਟੀ ਫਾਰਮਿਟਚਿੱਤਰ ਨਾਂ ਫਾਰਮਿਟਚਿੱਤਰ à¨à¨°à©‹à¨–ਾ ਦਿੱਖਚਿੱਤਰ à¨à¨°à©‹à¨–ੇਕਿਸੇ ਉਪਲੱਬਧ ਪਰਤਾਂ ਤੇ ਚਿੱਤਰ ਨਹੀਂਚਿੱਤਰ ਫਾਇਲਚਿੱਤਰ ਮਖੌਟਾਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰ ਸਰੋਤਚਿੱਤਰ ਕਿਸਮਚਿੱਤਰਚਿੱਤਰ ਮੇਨੂਲਿਆਉ ਚੋਣਰੰਗ-ਪੱਟੀ ਆਯਾਤਮਾਰਗ ਲਿਆਉSVG ਤੋ ਲਿਆਉਣ ਲਈ ਮਾਰਗਨਵੀ ਰੰਗ-ਪੱਟੀ ਆਯਾਤ ਕਰੋਰੰਗ-ਪੱਟੀ ਆਯਾਤਮਾਰਗ ਲਿਆਓਲਿਆਦਾ ਮਾਰਗਸਿਆਹੀ(_k)ਉਲਟ(_v)ਵਾਧਾਹਾਸ਼ੀਠਤੋ ਪਰਾ:ਪਹਿਲੀ ਸਤਰ ਦਾ ਹਾਸ਼ੀਠਤੋ ਪਰà©à¨¹à¨¾à¨¤à¨¤à¨•à¨°à¨¾:ਤਤਕਰਾਤਤਕਰਾ ਰੰਗਜਾਣਕਾਰੀ à¨à¨°à©‹à¨–ਾਸ਼à©à¨°à©‚ ਆਕਾਰ ਅਨà©à¨ªà¨¾à¨¤(_r):ਪਲੱਗਿੰਨ ਨੂੰ ਸ਼à©à¨°à©‚ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈਪਲੱਗਿੰਨ ਨੂੰ ਸ਼à©à¨°à©‚ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s' -ਸਿਆਹੀਇੰਲਾਇਨ ਪਿਕਬਫਇੰਪà©à©±à¨Ÿ ਕੰਟਰੋਲਰਇੰਟਪà©à©±à¨Ÿ ਯੰਤਰਇੰਪà©à©±à¨Ÿ ਪੱਧਰਸਹਾਰਾ ਵਿੱਚ ਜੋੜà©à¨¹à©‹à¨‡à©°à¨¸à¨Ÿà¨¾à¨²à©‡à¨¶à¨¨ ਅਸਫਲ ਰਹੀ। ਸਿਸਟਮ ਪà©à¨°à¨¬à©°à¨§à¨• ਨਾਲ ਸੰਪਰਕ ਕਰੋ।ਇੰਸਟਾਲੇਸ਼ਨ ਸਫਲ ਰਹੀ ਹੈ। ਜਾਰੀ ਰਹਿਣ ਲਈ "ਜਾਰੀ ਰੱਖੋ" ਦਬਾਓ।ਤਤਕਾਲਿਕ ਨਵੀਨੀਕਰਨਕà©à¨¸à¨¼à¨² ਛਾਂਗਈ(_S)ਤੀਬਰਤਾ: %0.3f ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨: %0.3fਇੰਟਰਫੇਸ਼ਅੰਦਰੂਨੀ ਜੈਮਪ ਤਰੀਕਾਅੰਦਰੂਨੀ ਕਾਰਵਾਈਕਾਂਟਮੌਜੂਦਾ ਚੋਣ ਨਾਲ ਜੋੜà©à¨¹à©‹à¨…ੰਤਰ-ਖੰਡ(ਧਾਰੀਦਾਰ)ਅੰਤਰ-ਖੰਡ(ਬਿੰਦੂਦਾਰ)ਗਲਤ ਯੂਟੀà¨à¨«-8ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀà¨à¨«-à©® ਡਾਟਾ ਹੈ।XCF ਫਾਇਲ ਵਿੱਚ ਗਲਤ ਯੂਟੀà¨à¨«-8 ਡਾਟਾਬà©à¨°à¨¸à¨¼ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀà¨à¨«-8 ਸਤਰਢਾਲਵਾਂ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀà¨à¨«-8 ਸਤਰ ਹੈ।ਰੰਗ-ਪੱਟੀ ਫਾਇਲ '%s' ਵਿੱਚ ਗਲਤ ਯੂਟੀà¨à¨«-8 ਸਤਰ ਹੈ।URI ਵਿੱਚ ਗਲਤ ਅੱਖਰਗਲਤ ਸ਼ਾਰਟਕੱਟਉਲਟਉਲਟ ਚੈਨਲਉਲਟ ਚੋਣਉਲਟ ਚੋਣਕੀ ਤà©à¨¸à©€à¨‚ ਇਹ ਕਰਨਾ ਚਾਹà©à©°à¨¦à©‡ ਹੋ?ਇਸਤਰਾਂ ਜਾਪਦਾ ਹੈ ਕਿ ਤà©à¨¸à©€à¨‚ ਪਹਿਲਾਂ ਜੈਮਪ 2.0 ਵਰਤਿਆ ਹੈ।ਇਕਾਈ ਵਿਸ਼ੇਸਤਾਇਕਾਈ ਦਿੱਖਅਨà©à¨•à©‚ਲ:ਪਾਰਦਰਸ਼ਤਾ ਰੱਖੋਉੱਪਰ ਰੱਖੋਅਕਾਰ ਅਨà©à¨ªà¨¾à¨¤ %s ਰੱਖੋਨਿਸ਼ਚਿਤ ਅਕਾਰ ਅਨà©à¨ªà¨¾à¨¤ %sਉਚਾਈ %s ਰੱਖੋਪਾਰਦਰਸ਼ਤਾ ਰੱਖੋਚੌਡ਼ਾਈ %s ਰੱਖੋਸਵਿੱਚ ਦਬਾਉਸਵਿੱਚ ਦਬਾਉ (Alt)ਸਵਿੱਚ ਦਬਾਉ (Control + Alt)ਸਵਿੱਚ ਦਬਾਉ (Control)ਸਵਿੱਚ ਦਬਾਉ (Shift + Alt)ਸਵਿੱਚ ਦਬਾਉ (Shift + Control + Alt)ਸਵਿੱਚ ਦਬਾਉ (Shift + Control)ਸਵਿੱਚ ਦਬਾਉ (Shift)ਖੱਬੀ ਸਵਿੱਚਖੱਬੀ ਸਵਿੱਚ (Alt)ਖੱਬੀ ਸਵਿੱਚ (Control + Alt)ਖੱਬੀ ਸਵਿੱਚ (Control)ਖੱਬੀ ਸਵਿੱਚ (Shift + Alt)ਖੱਬੀ ਸਵਿੱਚ (Shift + Control + Alt)ਖੱਬੀ ਸਵਿੱਚ (Shift + Control)ਖੱਬੀ ਸਵਿੱਚ (Shift)ਸੱਜੀ ਸਵਿੱਚਸੱਜੀ ਸਵਿੱਚ (Alt)ਸੱਜੀ ਸਵਿੱਚ (Control + Alt)ਸੱਜੀ ਸਵਿੱਚ (Control)ਸੱਜੀ ਸਵਿੱਚ (Shift + Alt)ਸੱਜੀ ਸਵਿੱਚ (Shift + Control + Alt)ਸੱਜੀ ਸਵਿੱਚ (Shift + Control)ਸੱਜੀ ਸਵਿੱਚ (Shift)ਸਵਿੱਚ ਉਪਰਸਵਿੱਚ ਉਪਰ (Alt)ਸਵਿੱਚ ਉਪਰ (Control + Alt)ਸਵਿੱਚ ਉਪਰ (Control)ਸਵਿੱਚ ਉਪਰ (Shift + Alt)ਸਵਿੱਚ ਉਪਰ (Shift + Control + Alt)ਸਵਿੱਚ ਉਪਰ (Shift + Control)ਸਵਿੱਚ ਉਪਰ (Shift)ਕੀ-ਬੋਰਡਕੀ-ਬੋਰਡ ਘਟਨਾਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟLTRਭੂ ਦਰਿਸ਼ਵੱਡਾਵੱਡਾ (256x256)ਵੱਡੇ ਨਮੂਨੇਅਖੀਰੀ ਗਲਤੀ:ਪਰਤਪਰਤ '%s' ਦਾ ਕੋਈ ਅਲਫਾ ਨਹੀ ਹੈ। ਪਰਤ ਇਸ ਤੋ ਉੱਪਰ ਹੈ।ਪਰਤ ਗà©à¨£à¨ªà¨°à¨¤ ਸੀਮਾ ਅਕਾਰ(_o)...ਪਰਤ ਭਰਨ ਦੀ ਕਿਸਮਪਰਤ ਚੋਣਪਰਤ ਅਕਾਰਪਰਤ ਮੋਡਪਰਤ ਨਾਂ:ਪਰਤ ਨੂੰ ਹੋਰ ਹੇਠਾਂ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾਪਰਤ ਨੂੰ ਹੋਰ ਉਠਾਇਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਪਰਤ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾਂ ਹੈਪਰਤ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਪਰਤ ਨੂੰ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਅਨà©à¨¸à¨¾à¨° ਕਰੋਹੇਠ ਲਈ ਪਰਤ(_B)ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਦੀ ਪਰਤ(_I)ਉੱਪਰ ਲਈ ਪਰਤ(_T)ਪਰਤ ਦਾ à¨à¨²à¨«à¨¾ ਚੈਨਲ(_a)ਪਰਤਾਂਪਰਤ ਮੇਨੂਪਰਤ ਵਿਲੀਨ ਚੋਣਖੱਬੇ ਪਾਸੇਲੰਬਾਈ:ਜੈਪਮ ਨੂੰ ਆਪਣੇ ਅਖੀਰੀ ਸੰਭਾਲੇ ਅਜਲਾਸ ਨੂੰ ਸ਼à©à¨°à©‚ ਵੇਲੇ ਮà©à¨¡à¨¼-ਪà©à¨°à¨¾à¨ªà¨¤ ਕਰਨ ਦੀ ਆਗਿਆ ਦਿਉ।ਪੱਧਰਤਤਕਰਾ ਪਰਤਾਂ ਲਈ ਪੱਧਰ ਅਨà©à¨•à©‚ਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਫਿੱਕੇ ਜਾਂਚ ਰੰਗਸਿਰਫ਼ ਰੋਸ਼ਨੀਰੇਖਾਲਾਈਨ -ਖਾਲੀ ਥਾਂ:ਰੇਖਾ ਚੌਡ਼ਾਈ:ਰੇਖਾ ਸ਼ੈਲੀ(_S):ਗਰਿੱਡ ਲਈ ਰੇਖਾ ਸ਼ੈਲੀਰੇਖਿਕਸਬੰਧਤ ਇਕਾਈਲੋਡਗੋਲਾਈ ਲੋਡ ਕਰੋਪੱਧਰ ਲੋਡ ਕਰੋਫਾਇਲ ਵਿੱਚੋ ਗੋਲਾਈ ਵਿਵਸਥਾ ਖੋਲà©à¨¹à©‹à¨«à¨¾à¨‡à¨² ਤੋ ਪੱਧਰ ਵਿਵਸਥਾ ਪੜà©à¨¹à©‹à¨«à¨¾à¨‡à¨² ਤੋ ਪਾਠ ਲੋਡ ਕਰੋਦਰਿਸ਼ ਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਥਾਂ:ਲਾਗਰਿਥਮਿਕਲੰਬੀਆਂ ਧਾਰੀਆਂਡਾਟਾ ਫਾਇਲਾਂ ਵਿੱਚ ਖੋਜ ਜਾਰੀ ਹੈਚੈਨਲ ਹੇਠਾਂਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇ(_B)ਪਰਤ ਨੂੰ ਹੇਠ ਕਰੋਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਮਾਰਗ ਹੇਠਰਸਤੇ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਉਮਾਰਗ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਓ(_B)ਚੈਨਲ ਹੇਠ ਕਰੋਹੇਠਲਾ ਚੈਨਲ ਥੱਲੇਹੇਠਲੀ ਪਰਤਪਰਤ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਮਾਰਗ ਹੇਠਾਂਮਾਰਗ ਨੂੰ ਹੇਠ ਵੱਲ ਨਿਵਾਓਵੱਡ-ਦਰਿਸ਼(_a)ਮà©à©±à¨–(_a)ਪਰਦੇ ਤੇ à¨à¨§à¨°-ਓਧਰ...ਮੈਜ਼ੀਨਟਾਮੈਜ਼ਾਨਟਿਕ:ਵੱਡ-ਦਰਿਸ਼ਪਾਰਦਰਸ਼ੀ ਬਣਾਓ(_t)ਮਖੌਟਾ ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨:ਮੈਟà©à¨°à¨¿à¨•à¨¸:ਅਧਿਕਤਮ ਡੂੰਘਾਈ:ਥੰਮਨੇਲ ਲਈ ਵੱਧ-ਤੋਂ ਵੱਧ ਫਾਇਲ ਅਕਾਰ(_f):ਨਵੇ ਚਿੱਤਰ ਦਾ ਅਧਿਕਤਮ ਅਕਾਰ(_n):ਅਧਿਕਤਮ ਰੰਗ ਫ਼ਰਕਅਧਿਕਤਜ਼ ਵਾਪਸ ਮੈਮੋਰੀ(_m):ਮੱਧ:ਮਾਪਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਦੂਰੀ ਅਤੇ ਕੋਣ ਮਾਪੋਮੱਧਮ:ਮੱਧਮਮੱਧਮ ਧਾਰੀਆਂਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ(_w)ਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਰੰਗ-ਪੱਟੀ ਵਿਲੀਨਦਿੱਸ ਰਹੀਆਂ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਰਸਤੇ ਵਿਲੀਨ ਕਰੋਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰੋ...ਦਿੱਖ ਪਰਤਾਂ ਨੂੰ ਵਿਲੀਨ(_V)...ਦਿੱਸ ਰਹੇ ਮਾਰਗ ਵਿਲੀਨ(_V)ਪਰਤ ਵਿਲੀਨਰੰਗ-ਪੱਟੀ ਵਿਲੀਨਵੈਕਟਰ ਵਿਲੀਨਸà©à¨¨à©‡à¨¹à¨¾ ਕਾਰਵਾਈਸà©à¨¨à©‡à¨¹à¨¾ %d ਵਾਰ ਮà©à¨¡à¨¼ ਵੇਖਾਉਸà©à¨¨à©‡à¨¹à¨¾ ਇੱਕ ਵਾਰ ਮà©à¨¡à¨¼ ਵੇਖਾਉਸà©à¨¨à©‡à¨¹à¨¿à¨†à¨‚ ਨੂੰ stderr ਲਈ ਭੇਜਿਆ ਗਿਆ।ਮੱਧ-ਟੋਨਵਾਪਸ ਹੋਣ ਵਾਲੇ ਪੱਧਰਾਂ ਦੀ ਘੱਟੋ-ਘੱਟ ਗਿਣਤੀ(_u):ਫà©à¨Ÿà¨•à¨²à¨•à¨£à¨¢à©°à¨—ਮੋਡ:ਚà©à¨£à©‡ ਰੰਗ ਸੋਧੋਰੰਗ ਪੱਧਰ ਦੀ ਚà©à¨£à©€ ਸੀਮਾ ਸੋਧਸਾਰੇ ਰੰਗ ਸੋਧੋਰੇਖਾ ਥਾਂ ਸੋਧੋਮੈਡੀਊਲ ਫੋਲਡਰਮੈਡੀਲਿਊ ਪà©à¨°à¨¬à©°à¨§à¨•à¨®à©ˆà¨¡à©€à¨Šà¨² ਮਾਰਗਮੈਡੀਲਿਊਮਾਊਸ ਕਰਸਰਮਾਊਸ ਪਹੀਆਮਾਊਸ ਪਹੀਆ ਘਟਨਾà¨à¨§à¨°-ਓਧਰਸਹਾਰੇ à¨à¨§à¨°-ਓਧਰਚੈਨਲ à¨à¨§à¨°-ਓਧਰਤਰਦੀ ਚੋਣ à¨à¨§à¨°-ਓਧਰਨਿਰਦੇਸ਼ਕ à¨à¨§à¨°-ਓਧਰਨਿਰਦੇਸ਼ਕ à¨à¨§à¨°-ਓਧਰ: ਪਰਤ à¨à¨§à¨°-ਓਧਰਪਰਤ-ਮਖੌਟਾ à¨à¨§à¨°-ਓਧਰਮਾਰਗਂ à¨à¨§à¨°-ਓਧਰਚà©à¨£à¨¿à¨† à¨à¨§à¨°-ਓਧਰਪਾਠ ਪਰਤ ਘà©à©°à¨®à¨¾à¨“ਭੇਜਣ ਸੰਦਇਕਾਈ à¨à¨§à¨°-ਓਧਰਪਰਤਾਂ ਤੇ ਚੋਣ à¨à¨§à¨°-ਓਧਰਚà©à¨£à¨¿à¨† à¨à¨§à¨°-ਓਧਰਮੌਜੂਦਾ ਪਰਤ à¨à¨§à¨°-ਓਧਰਮੌਜੂਦਾ ਮਾਰਗ à¨à¨§à¨°-ਓਧਰਚà©à¨£à©‡ ਫਿਲਟਰ ਨੂੰ ਹੇਠਾਂ ਭੇਜੋਚà©à¨£à©‡ ਫਿਲਟਰ ਨੂੰ ਉੱਪਰ ਭੇਜੋਪਰਦੇ ਤੇ ਜਾਓ...ਭੇਜੋ:ਬਹà©à¨°à©°à¨—ਾਂ ਦੀ ਗਿਣਤੀ(_u):à¨à¨§à¨°-ਓਧਰà¨à¨§à¨°-ਓਧਰ à¨à¨°à©‹à¨–ਾਨਾਂਨਾਂ:à¨à¨§à¨°-ਓਧਰਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ ਰੰਗਨਵਾਂ ਚੈਨਲ ਚੋਣ_BG ਤੋਂ ਨਵੇਂ ਰੰਗ_FG ਤੋਂ ਨਵੇਂ ਰੰਗਨਵਾਂ ਚਿੱਤਰਨਵੀ ਪਰਤਨਵਾਂ ਮਾਰਗਨਵਾਂ ਮਾਰਗ ਚੋਣਨਵਾਂ ਨਮੂਨਾਨਵਾਂ ਬà©à¨°à¨¸à¨¼à¨¨à¨µà¨¾à¨‚ ਚੈਨਲਆਖਰੀ ਮà©à©±à¨² ਨਾਲ ਨਵਾਂ ਚੈਨਲਨਵਾਂ ਚੈਨਲ...BG ਤੋਂ ਨਵੇਂ ਰੰਗFG ਤੋਂ ਨਵੇਂ ਰੰਗਨਵਾਂ ਢਾਲੂਨਵੀ ਆਯਾਤਨਵੀਂ ਪਰਤਨਵੀ ਪਰਤ...ਨਵੀ ਰੰਗ-ਪੱਟੀਆਖਰੀ ਮà©à©±à¨²à¨¾ ਨਾਲ ਨਵਾਂ ਮਾਰਗਨਵਾਂ ਮਾਰਗ...ਨਵੀ ਤਰਤੀਬਨਵਾਂ ਵੈਕਟਰਇਸ ਸੰਦ ਨਾਲ ਵਰਤਣ ਲਈ ਕੋਈ ਬà©à¨°à¨¶ ਨਹੀਂ ਹੈ।ਕੋਈ ਫਿਲਟਰ ਨਹੀ ਚà©à¨£à¨¿à¨†'%s' ਵਿੱਚ ਕੋਈ ਰੇਖਿਕ ਢਾਲੂ ਨਹੀ ਲੱਭਿਆਹà©à¨£ ਉਪਲੱਬਧ ਨਹੀ'%s' ਵਿੱਚ ਕੋਈ ਮਾਰਗ ਨਹੀ ਲੱਭਿਆਬਫਰ ਵਿੱਚ ਕੋਈ ਮਾਰਗ ਨਹੀ ਲੱਭਿਆਇਸ ਕਾਰਵਾਈ ਲਈ ਕੋਈ ਤਰਤੀਬ ਉਪਲੱਬਧ ਨਹੀ ਹੈ।ਕੋਈ ਚੋਣ ਨਹੀà¨à¨Ÿà¨•à©‡ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈਕੋਈ ਥੰਮਨੇਲ ਨਹੀਨਾ-ਇਕਸਾਰਕੋਈ ਨਹੀਕੋਈ ਨਹੀ (ਸੱਭ ਤੋ ਤੇਜ਼)ਸਧਾਰਨਸਧਾਰਨ (128x128)ਸਧਾਰਨ ਬਿੰਦੂਸਧਾਰਨ à¨à¨°à©‹à¨–ਾਨਿਯਮਤ ਫਾਇਲ ਨਹੀਂਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆ ਪਰਤਾਂ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਪਰਤਾਂ ਹੋਣੀਆ ਚਾਹੀਦੀਆਂ ਹਨ।ਦਿੱਖ ਰਸਤੇ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੇ ਉਪਲੱਬਧ ਰਸਤੇ ਨਹੀ ਹਨ। ਘੱਟੋ-ਘੱਟ ਦੋ ਰਸਤੇ ਲੋਡ਼ੀਦੇ ਹਨ।ਵਰਤਣ ਲਈ ਕਾਰਜਾਂ ਦੀ ਗਿਣਤੀ(_p):ਗਰਿੱਡ ਰੇਖਾਵਾਂ ਦੀ ਗਿਣਤੀਪਰਤਾਂ ਦੀ ਗਿਣਤੀ:ਹੋਰ(_t)...ਹਾਸ਼ੀਠਤੋਂ ਦੂਰੀ:ਡਿਸਕ ਤੇਬਹà©-ਪà©à¨°à©‹à¨¸à©ˆà¨¸à¨° ਮਸ਼ੀਨਤੇ, ਜੇਕਰ ਜੈਮਪ --enable-mp ਨਾਲ ਕੰਪਾਇਲ ਹੋਇਆ ਹੈ ਤਾਂ, ਇਹਨਿਰਧਾਰਿਤ ਕਰੇਗਾ ਇੱਕ ਸਮੇਂ ਜੈਮਪ ਕਿੰਨੇ ਪà©à¨°à©‹à¨¸à©ˆà¨¸à¨° ਵਰਤ ਸਕਦਾ ਹੈ।ਸਿਰਫ ਮੈਮੋਰੀ ਵਿੱਚਨਵੀਂ ਪਰਤ ਵਾਂਗ ਖੋਲੋ...ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨à¨§à©à©°à¨¦à¨²à¨¾à¨ªà¨¨:ਖੋਲà©à¨¹à©‹à¨šà¨¿à©±à¨¤à¨° ਖੋਲà©à¨¹à©‹à¨šà¨¿à©±à¨¤à¨° ਪਰਤ ਵਾਂਗ ਖੋਲà©à¨¹à©‹à¨Ÿà¨¿à¨•à¨¾à¨£à¨¾ ਖੋਲੋਪਾਠ ਫਾਇਲ (ਯੂਟੀà¨à¨«-8) ਖੋਲà©à¨¹à©‹à¨¥à¨¾à¨‚ ਖੋਲੋ...ਤਾਜ਼ਾ ਖੋਲੇ(_R)ਚਿੱਤਰ ਖੋਲà©à¨¹à©‹ ਤਖਤੀਬà©à¨°à¨¸à¨¼ ਚੋਣ ਤਖਤੀ ਖੋਲà©à¨¹à©‹à¨«à©‹à¨‚ਟ ਚੋਣ ਤਖਤੀ ਖੋਲੋਢਾਲਵਾਂ ਚੋਣ ਤਖਤੀ ਖੋਲà©à¨¹à©‹à¨¤à¨°à¨¤à©€à¨¬ ਚੋਣ ਤਖਤੀ ਖੋਲà©à¨¹à©‹à¨¤à¨°à¨¤à©€à¨¬ ਚੋਣ ਤਖਤੀ ਖੋਲà©à¨¹à©‹à¨šà©à¨£à¨¿à¨† ਇੰਦਰਾਜ਼ ਖੋਲੋ'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: - -%s'%s' ਨੂੰ ਖੋਲਣਾ ਅਸਫਲ: %sਚੋਣ: -ਖੇਤਰ X:ਖੇਤਰ Y:ਅਸਲੀ ਚੌੜਾਈ:ਹੋਰ (%s) ...ਹਾਸ਼ੀਆਆਉਟਪà©à©±à¨Ÿ ਪੱਧਰਪਰਤ ਫੈਲਾਉPDB ਨੂੰ ਲਿਆਉਣ ਵਿੱਚ ਗਲਤੀ: -ਤਰੀਕਾ '%s' ਨਹੀ ਲੱਭਿਆ ਜਾ ਸਕਿਆਤਰਤੀਬ(_a)ਪੇਟਪੇਂਟ ਸੰਦ ਕਾਰਵਾਈਆਂਪੇਟ ਸੰਦ:ਪੇਂਟ ਢੰਗ(_M)ਧà©à©°à¨¦à¨²à¨¾ ਬà©à¨°à¨¸à¨¼ ਛੋਹ ਬਣਾਉਸਖਤ ਕਿਨਾਰੇ ਪਿਕਸਲ਼ ਪੇਟ ਕਰੋਪੇਟ-ਬà©à¨°à¨¸à¨¼à¨°à©°à¨—-ਪੱਟੀ(_e)ਰੰਗ-ਪੱਟੀਤਰਤੀਬ ਸੰਪਾਦਕਰੰਗ-ਪੱਟੀ ਫੋਲਡਰਰੰਗ-ਪੱਟੀ UIਰੰਗ-ਪੱਟੀ ਨਾਮ:ਰੰਗ-ਪੱਟੀ ਫਾਇਲ(_f)ਰੰਗ-ਪੱਟੀਰੰਗ-ਪੱਟੀ ਮੇਨੂ'%s' ਨੂੰ ਪਾਰਸ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ -ਚਿਪਕਾਉਬਫਰ ਨੂੰ ਇੱਥੇ ਚਿਪਕਾਉ(_I)ਬਫਰ ਨੂੰ ਨਵੇਂ ਵਾਂਗ ਚਿਪਕਾਉ(_N)ਚਿਪਕਾਉਣ ਮਾਰਗ(_h)ਵਿੱਚ ਚਿਪਕਾਉਨਵੇ ਦੇ ਤੌਰ ਤੇ ਚਿਪਕਾਉਚà©à¨£à©‡ ਬਫਰ ਨੂੰ ਚਿਪਕਾਉਚà©à¨£à¨¿à¨† ਬਫਰ ਨੂੰ ਨਵੇਂ ਚਿੱਤਰ ਵਾਂਗ ਚਿਪਕਾਉਚà©à¨£à©‡ ਬਫਰ ਨੂੰ ਚੋਣ ਵਿੱਚ ਚਿਪਕਾਉਚਿਪਕਾਈ ਪਰਤਮਾਰਗਮਾਰਗ ਗà©à¨£à¨®à¨¾à¨°à¨— ਨਾਂ:ਮਾਰਗ ਸੰਦ(_T)ਮਾਰਗ ਨੂੰ ਹੇਠ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।ਰਸਤੇ ਨੂੰ ਹੋਰ ਉਭਾਰਿਆ ਨਹੀ ਜਾ ਸਕਦਾ ਹੈ।ਮਾਰਗ ਪਹਿਲਾਂ ਹੀ ਹੇਠਾ ਹੈ।ਮਾਰਗ ਪਹਿਲਾਂ ਹੀ ਸਭ ਤੋ ਉਪੱਰ ਹੈਚੋਣ ਲਈ ਮਾਰਗ(_c)ਚੋਣ ਲਈ ਮਾਰਗਚੋਣ ਲਈ ਮਾਰਗ -%s ਜੋੜà©à¨¹à©‹ -%s ਘਟਾਓ -%s ਵਿਚਕਾਰ ਚੋਣ ਲਈ ਮਾਰਗਮਾਰਗਮਾਰਗ ਮੇਨੂਤਰਤੀਬਤਰਤੀਬ ਫੋਲਡਰਤਰਤੀਬ UIਤਰਤੀਬ ਭਰੋਤਰਤੀਬ ਸਰੋਤਤਰਤੀਬਤਰਤੀਬ ਮੇਨੂਪਿਨਸਲ(_n)ਪਿਨਸਲਬà©à¨°à¨¸à¨¼ ਦੀ ਪà©à¨°à¨¤à©€à¨¸à¨¼à¨¤ ਚੌਡ਼ਾਈਪà©à¨°à¨¤à©€à¨¸à¨¼à¨¤à¨¤à¨¾:ਨਿੱਜੀ ਜੈਮਪ ਫੋਲਡਰਅਵਲੋਕਣਅਵਲੋਕਣ ਤਬਦੀਲੀ ਜਾਣਕਾਰੀਅਵਲੋਕਣ਼ਚੋਣ ਮੋਡ %sਇੱਕ ਪਰਤ ਜਾਂ ਗਾਈਡ ਚà©à¨£à©‹à¨‡à©±à¨• ਮਾਰਗ ਚà©à¨£à©‹à¨•à¨¾à¨²à¨¾ ਬਿੰਦੂ ਚà©à©±à¨•à©‹à¨šà¨¿à©±à¨¤à¨° ਤੋ ਰੰਗ ਚà©à¨£à©‹à¨¸à¨²à©‡à¨Ÿà©€ ਬਿੰਦੂ ਚà©à©±à¨•à©‹à¨¸à¨¿à¨°à¨« ਚà©à©±à¨•à©‹à¨¸à¨«à©ˆà¨¦ ਬਿੰਦੂ ਚà©à©±à¨•à©‹à¨ªà¨¿à¨•à¨¸à¨¾à¨² ਮਾਪ:ਪਿਕਸਲ ਮà©à©±à¨²à¨ªà¨¿à¨•à¨¸à¨²à¨ªà¨¿à¨•à¨¸à¨²:ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ, ਜਦੋਂ ਕਿ ਜੈਮਪ ਫੋਲਡਰ ਬਣਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ...ਪਲੱਗਇੰਨਪਲੱਗ-ਇੰਨ ਵਾਤਾਵਰਣਪਲੱਗਿੰਨ ਫੋਲਡਰਪਲੱਗਿੰਨ ਫਾਇਲ ਨੂੰ ਖੋਲ ਨਹੀਂ ਸਕੀਪਲੱਗਿੰਨ ਚਿੱਤਰ ਸੰਭਾਲ ਨਹੀਂ ਸਕੀਪਲੱਗਿੰਨਪਲੱਗਿੰਨਬਹà©à¨­à©à¨œà¨ªà©‹à¨°à¨Ÿà¨°à©‡à¨Ÿà¨¸à¨¥à¨¿à¨¤à©€: %0.6fਸਥਿਤੀਇਸ਼ਤਾਹਰੀਇਸ਼ਤਹਾਰੀ(ਰੰਗਾਂ ਦੀ ਗਿਣਤੀ ਘੱਟ)ਇਸ਼ਤਹਾਰੀ ਪੱਧਰ(_l):ਇਸ਼ਤਹਾਰੀ ਤਤਕਰੀ ਪਰਤਾਂ ਤੇ ਕੰਮ ਨਹੀ ਕਰਦਾ ਹੈ।ਮੇਰੀ-ਪਸੰਦਪਰਕਾਸ਼ਵਾਨੀ ਰੱਖੋ(_l)ਦਬਾਉ ਸ਼ੰਵੇਦਨਸ਼ੀਲਤਾਦਬਾਉ:ਨਮੂਨਾਦਰਿਸ਼ ਪà©à¨°à¨¾à¨£à¨¾ ਹੋ ਗਿਆ ਹੈਨਮੂਨਾ:ਨਮੂਨਾਛਾਪਈ ਅਕਾਰ:ਛਾਪਈ ਅਕਾਰ:ਕਾਰਵਾਈ ਡਾਟਾਬੇਸਤਰੀਕਾ ਡਾਟਾਬੇਸਤਰੱਕੀਫ਼ਰਜੀ ਰੰਗਲੋਡ਼:ਗà©à¨£à¨µà©±à¨¤à¨¾à¨¸à¨µà¨¾à¨²à¨¨à¨µà©€ ਪਲੱਗਿੰਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈਪਲੱਗਿੰਨ ਲਈ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s' -ਤੇਜ਼ ਲੋਡਤੇਜ਼ ਮਖੌਟਾਤੇਜ਼ ਮਖੌਟਾ ਗà©à¨£à¨¤à©‡à©› ਮਖੌਟਾ ਮੇਨੂਤੇਜ਼ ਸੰਭਾਲੋਤੇਜ਼ ਮਖੌਟਾਜੈਮਪ ਬੰਦRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ਰੰਗRGB-ਖਾਲੀRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTL"%s" ਨੂੰ ਮà©à¨¡à¨¼ ਵਿਖਾਓਸੰਦ ਚੋਣ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਨ(_e)ਚੈਨਲ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਨ(_e)ਰੰਗ ਮà©à¨¡à¨¼-ਨਿਰਧਾਰਨ(_e)ਸੀਮਾ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਨ(_e)ਸੱਜਾ ਅੰਤ-ਬਿੰਦ ਰੰਗ(_i)...ਕਰਣੀਅਰਧ-ਵਿਆਸ:ਚੈਨਲ ਉਠਾਉਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰ(_T)ਪਰਤ ਉਠਾਓਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਉਮਾਰਗ ਉਠਾਉਰਸਤੇ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਉਮਾਰਗ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਓ(_T)ਚੈਨਲ ਉਠਾਉਉਪਰਲਾ ਚੈਨਲ ਨੂੰ ਉਪਰਪਰਤ ਉਠਾਓਪਰਤ ਨੂੰ ਉਪੱਰ ਉਠਾਓਮਾਰਗ ਉਠਾਓਮਾਰਗ ਨੂੰ ਉਪਰ ਵੱਲ ਉਠਾਓਇਸ ਚਿੱਤਰ ਦਾ ਦਰਿਸ਼ ਉਠਾਉਜੇਕਰ à¨à¨°à©‹à¨–ਾ ਪਹਿਲਾਂ ਹੀ ਖà©à©±à¨²à¨¾ ਹੋਵੇਂ ਤਾ ਉਭਾਰੋਮà©à©±à¨²à¨®à©à©±à¨²:ਸੰਭਾਲੀ ਚੋਣ ਨਾਂ-ਤਬਦੀਲ(_n)ਮà©à¨¡à¨¼-ਦਹਰਾਓ "%s"ਪà©à¨¨à¨°-ਪà©à¨°à¨¾à¨ªà¨¤...ਤਿਆਰਨਮੂਨਾ ਮà©à¨¡à¨¼-ਬਣਾਉ(_P)ਨਮੂਨਾ ਮà©à¨¡à¨¼-ਬਣਾਉਆਇਤਕਾਰ ਚੋਣਲਾਲਲਾਲ:ਮà©à¨¡à¨¼ ਉਹੀ ਕਰੋਚਿੱਤਰ ਨੂੰ ਨਿਸ਼ਚਿਤ ਗਿਣਤੀ ਦੇ ਰੰਗਾਂ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਮà©à©±à¨¢à¨²à¨¾-ਮà©à©±à¨² ਵਰਤ ਕੇ ਚਿੱਤਰ ਨੂੰ ਦੋ ਰੰਗ ਵਿੱਚ ਤਬਦੀਲ ਕਰ ਦਿਉਬà©à¨°à¨¸à¨¼ ਤਾਜ਼ਾਢਾਲੂ ਤਾਜ਼ਾਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾਤਰਤੀਬ ਤਾਜ਼ਾਰਜਿਸਟਰਿਡਮੌਜੂਦਾ ਸਰੂਪ ਮà©à©œ-ਲੋਡ(_u)ਸਾਰੇ ਨਮੂਨੇ ਮà©à¨¡à¨¼-ਬਣਾਉਸਾਰੇ ਨਮੂਨੇ ਮà©à¨¡à¨¼-ਬਣਾਉਜੈਮਪ ਅਜਲਾਸ ਦੌਰਾਨ ਮੌਜੂਦਾ ਸੰਦ, ਤਰਤੀਬ, ਰੰਗ ਅਤੇ ਬà©à¨°à¨¸à¨¼ ਵਗੈਰਾ ਨੂੰ ਯਾਦ ਰੱਖੋ।ਰਿਮੋਟ ਚਿੱਤਰਚੈਨਲ ਹਟਾਉਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓ(_n)ਅਸਥਿਰ ਚੋਣ ਹਟਾਉਨਿਰਦੇਸ਼ਕ ਹਟਾਉਪਰਤ ਹਟਾਉਮਾਰਗ ਹਟਾਉਇੰਦਰਾਜ਼ ਹਟਾਉ(_E)ਲਟਕਦੇ ਇੰਦਰਾਜ਼ ਹਟਾਓਅਸਥਿਰ ਚੋਣ ਹਟਾਓਪਾਰਾਸਾਇਟ ਹਟਾਓਚà©à¨£à©‡ ਇੰਦਰਾਜ਼ ਹਟਾਓਸਰਗਰਮ ਫਿਲਟਰ ਦੀ ਸੂਚੀ ਵਿਚੋ ਚà©à¨£à©‡ ਫਿਲਟਰ ਨੂੰ ਹਟਾਉਸ਼ਾਰਟਕੱਟ ਨੂੰ ਹਟਾਉਣਾ ਅਸਫਲ ਹੈ।ਚੈਨਲ ਦਾ ਨਾਂ-ਤਬਦੀਲਪਰਤ ਦਾ ਨਾਂ-ਤਬਦੀਲਮਾਰਗ ਨਾਂ-ਤਬਦੀਲਪਾਠ ਪਰਤ ਨਾਂ-ਤਬਦੀਲਇਕਾਈ ਨਾਂ-ਤਬਦੀਲਹਾਜ਼ਰੀ à¨à¨Ÿà¨•à¨¾à¨šà©ˆà¨¨à¨² ਮà©à¨¡à¨¼-ਕਰਮਬੱਧਮà©à¨¡à¨¼-ਕਰਮ ਪਰਤਮਾਰਗ ਮà©à¨¡à¨¼-ਕਰਮਬੱਧਦà©à¨¹à¨°à¨¾à¨‰:ਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚ ਤਬਦੀਲਚੈਨਲ ਮà©à¨¡à¨¼-ਸਥਾਪਨਪਰਤ ਮà©à¨¡à¨¼-ਸਥਾਪਨਵੈਕਟਰ ਮà©à¨¡à¨¼-ਸਥਾਪਤਫੋਂਟ ਸੂਚੀ ਦਾ ਮà©à¨¡à¨¼ ਨਿਰੀਖਣਸੰਦ ਚੋਣ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਨਸਭ ਸੰਦ ਚੋਣ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਨ(_a)...ਸਭ ਫਿਲਟਰ ਮà©à©œ-ਤਿਆਰ..ਸਭ ਸੰਦ ਚੋਣ ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਨ ਕਰੋਚà©à¨£à©‡ ਫਿਲਟਰ ਦਾ ਮà©à©±à¨² ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਿਤ ਕਰੋਮੂਲ ਮà©à©±à¨² ਮà©à¨¡à¨¼ ਨਿਰਧਾਰਿਤ ਕਰੋਸੰਦ ਕà©à¨°à¨® ਤੇ ਦਿੱਖ ਮà©à©œ-ਨਿਰਧਾਰਨਮà©à¨¡à¨¼-ਅਕਾਰਚੈਨਲ ਮà©à¨¡à¨¼-ਅਕਾਰਚਿੱਤਰ ਮà©à¨¡à¨¼-ਅਕਾਰਪਰਤ ਮà©à¨¡à¨¼-ਅਕਾਰਮਾਰਗ ਨੂੰ ਮà©à¨¡à¨¼-ਅਕਾਰ ਦਿਉਪਾਠ ਪਰਤ ਮà©à¨¡à¨¼-ਅਕਾਰਚਿੱਤਰ ਮà©à¨¡à¨¼-ਅਕਾਰਇਕਾਈ ਮà©à©œ-ਅਕਾਰਮà©à¨¡à¨¼-ਅਕਾਰ ਦਿੱਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲਰੈਜ਼ੋਲੇਸ਼ਨ:ਸਰੋਤ ਵਰਤੋਂਸਰੋਤ ਸੰਰਚਨਾਇਸ ਤੋ ਚੋਣ ਨੂੰ ਮà©à¨¡à¨¼-ਨਿਰਧਾਰਿਤ ਕਰੋ...ਹਰੇਕ ਜੈਮਪ ਸ਼à©à¨°à©‚ ਕਰਨ ਸਮੇਂ ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਪà©à¨¨à¨°-ਪà©à¨°à¨¾à¨ªà¨¤ ਕਰੋ।ਬਹà©à¨­à©à¨œ ਦੀ ਸੋਧ ਤੇ ਪਾਬੰਦੀ ਲਾਓਉੱਲਟਪà©à¨¨à¨°-ਪà©à¨°à¨¾à¨ªà¨¤à¨¸à©±à¨œà©‡ ਪਾਸੇਘà©à©°à¨®à¨¾à¨‰à¨˜à©à©°à¨®à¨¾à©³ 90 ਡਿਗਰੀ ਘਡ਼ੀ ਦੀ ਉਲਟ-ਦਿਸ਼ਾ ਵਿੱਚਘੜੀ ਦੀ ਦਿਸ਼ਾ 90 ਡਿਗਰੀ ਤੇ ਘà©à©°à¨®à¨¾à¨“ਘà©à©°à¨®à¨¾à¨‰ ਚੈਨਲਪਰਤ ਘà©à©°à¨®à¨¾à¨‰à¨®à¨¾à¨°à¨— ਘà©à©°à¨®à¨¾à¨‰à¨ªà¨¾à¨  ਪਰਤ ਨੂੰ ਘà©à©°à¨®à¨¾à¨‰à¨˜à©à©°à¨®à¨¾à©³ 180 ਡਿਗਰੀਚਿੱਤਰ ਘà©à©°à¨®à¨¾à¨“ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘà©à©°à¨®à¨¾à¨‰à¨˜à©à©°à¨®à¨¾ ਰਿਹਾ ਹੈ...ਘà©à©°à¨®à¨¾à¨‰ ਜਾਣਕਾਰੀਗੋਲਘਟਾਓ(_h)ਗਰਿੱਡ ਵੇਖਾਓ(_h)ਸà©à©°à¨˜à©œà©‹(_h)...ਸਪੀਇਕ(_p)ਸਵੈਪ ਰੰਗ(_w)ਸਧਾਰਨ ਔਸਤਨਮੂਨਾ ਮਿਲਾਨਸਤà©à¨°à¨¿à¨ªà¨¤à©€:ਸੰਤà©à¨°à¨¿à¨ªà¨¤à©€à¨¸à©°à¨­à¨¾à¨²à©‹à¨—ੋਲਾਈ ਸੰਭਾਲੋਗਲਤੀ ਲਾਗ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਚਿੱਤਰ ਸੰਭਾਲੋਇੰਪà©à©±à¨Ÿ ਜੰਤਰ ਵਿਵਸਥਾ ਹà©à¨£ ਸੰਭਾਲੋ(_N)ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਹà©à¨£ ਸੰਭਾਲੋ(_N)ਪੱਧਰ ਸੰਭਾਲੋਸੰਦ ਚੋਣ ਸੰਭਾਲੋà¨à¨°à©‹à¨–ਾ ਸਥਿਤੀ ਹà©à¨£ ਸੰਭਾਲੋ(_N)ਸਾਰੀਆਂ ਗਲਤੀਆਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ...ਚੋਣ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋ...ਇਸਤਰਾਂ ਸੰਭਾਲੋ...ਨਕਲ ਕਰਕੇ ਸੰਭਾਲੋ...ਸਭ ਗਲਤੀਆਂ ਸੰਭਾਲੋPOV-ਕਿਰਨ ਇਸਤਰਾਂ ਸੰਭਾਲੋ...ਨਮੂਨਾ ਵਾਂਗ ਸੰਭਾਲੋ...ਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।ਗੋਲਾਈ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਯੰਤਰ ਦੀ ਸਥਿਤੀ ਸੰਭਾਲੋPOV-ਕਿਰਨ ਢਾਲੂ ਵਾਂਗ ਸੰਭਾਲੋ...ਪੱਧਰ ਵਿਵਸਥਾਂ ਨੂੰ ਫਾਇਲ ਵਿੱਚ ਸੰਭਾਲੋਚੋਣ ਨੂੰ ਸੰਭਾਲੋ...ਚੋਣ ਸੰਭਾਲੋਚੈਨਲ ਤੇ ਚੋਣ ਸੰਭਾਲੋਕੀ ਚਿੱਤਰ '%s' ਨੂੰ ਬੰਦ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਸੰਭਾਲਣਾ ਹੈ?ਜਦੋ ਵੀ ਜੈਮਪ ਬੰਦ ਹੋਵੇ ਤਾਂ, ਮà©à©±à¨– ਤਖਤੀਆ ਦਾ ਅਕਾਰ ਤੇ ਸਥਿਤੀਆਂ ਨੂੰ ਸੰਭਾਲ ਲਵੇ।ਚੈਨਲ ਤੇ ਸੰਭਾਲੋ(_C)ਸੰਭਾਲੀ ਚੋਣ'%s' ਨੂੰ ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ -'%s' ਨੂੰ ਸੰਭਾਲਣਾ ਅਸਫਲ: - -%sਚਿੱਤਰ ਸੰਭਾਲੇ ਜਾ ਰਹੇ ਹਨਧਾਰੀਦਾਰ ਲਹਿਰਫੈਲਣਯੋਗ SVG ਚਿੱਤਰ (*.svg)ਮਾਪ-ਜਾਂਚਸਕੇਲ ਚੈਨਲਚਿੱਤਰ ਪੈਮਾਨਾਪਰਤ ਪੈਮਾਨਾਮਾਰਗ ਪੈਮਾਨਾਪਾਠ ਪਰਤ ਪੈਮਾਨਾਚਿੱਤਰ ਪੈਮਾਨਾਇਕਾਈ ਪੈਮਾਨਾਮਾਪ-ਜਾਂਚ ਅਨà©à¨ªà¨¾à¨¤ X:ਮਾਪ-ਜਾਂਚ ਅਨà©à¨ªà¨¾à¨¤ X:ਪੈਮਾਨਾ ਅਨà©à¨ªà¨¾à¨¤:ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਮਾਪ-ਜਾਂਚਪੈਮਾਨਾਮਾਪ-ਜਾਂਚ ਜਾਣਕਾਰੀਛਾਂਗਣਾਪਰਦਾਸਕà©à¨°à¨¿à¨ªà¨Ÿ-ਫੂ ਫੋਲਡਰਸਕà©à¨°à¨¿à¨ªà¨Ÿà¨¸à¨•à¨°à©‹à¨² ਹੇਠਾਂਸਕਰੋਲ ਹੇਠਾਂ (Alt)ਸਕਰੋਲ ਹੇਠਾਂ (Control + Alt)ਸਕਰੋਲ ਹੇਠਾਂ (Control)ਸਕਰੋਲ ਹੇਠਾਂ (Shift + Alt)ਸਕਰੋਲ ਹੇਠਾਂ (Shift + Control + Alt)ਸਕਰੋਲ ਹੇਠਾਂ (Shift + Control)ਸਕਰੋਲ ਹੇਠਾਂ (Shift)ਸਕਰੋਲ ਖੱਬੇਸਕਰੋਲ ਖੱਬੇ (Alt)ਸਕਰੋਲ ਖੱਬੇ (Control + Alt)ਸਕਰੋਲ ਖੱਬੇ (Control)ਸਕਰੋਲ ਖੱਬੇ (Shift + Alt)ਸਕਰੋਲ ਖੱਬੇ (Shift + Control + Alt)ਸਕਰੋਲ ਖੱਬੇ (Shift + Control)ਸਕਰੋਲ ਖੱਬੇ (Shift)ਸਕਰੋਲ ਸੱਜੇਸਕਰੋਲ ਸੱਜੇ (Alt)ਸਕਰੋਲ ਸੱਜੇ (Control + Alt)ਸਕਰੋਲ ਸੱਜੇ (Control)ਸਕਰੋਲ ਸੱਜੇ (Shift + Alt)ਸਕਰੋਲ ਸੱਜੇ (Shift + Control + Alt)ਸਕਰੋਲ ਸੱਜੇ (Shift + Control)ਸਕਰੋਲ ਸੱਜੇ (Shift)ਸਕਰੋਲ ਉੱਪਰਸਕਰੋਲ ਉੱਪਰ (Alt)ਸਕਰੋਲ ਉੱਪਰ (Control + Alt)ਸਕਰੋਲ ਉੱਪਰ (Control)ਸਕਰੋਲ ਉੱਪਰ (Shift + Alt)ਸਕਰੋਲ ਉੱਪਰ (Shift + Control + Alt)ਸਕਰੋਲ ਉੱਪਰ (Shift + Control)ਸਕਰੋਲ ਉੱਪਰ (Shift)ਚੋਣਸਾਰੇ ਚà©à¨£à©‹à¨¬à©à¨°à¨¸à¨¼ ਫੋਲਡਰ ਚà©à¨£à©‹à¨°à©°à¨— ਅਨà©à¨¸à¨¾à¨° ਚà©à¨£à©‹à¨°à©°à¨— ਚà©à¨£à©‹à¨•à©°à¨Ÿà¨°à©‹à¨²à¨° ਘਟਨਾ ਕਾਰਵਾਈ ਚà©à¨£à©‹à¨µà¨¾à¨¤à¨¾à¨µà¨°à¨£ ਫੋਲਡਰ ਚà©à¨£à©‹à¨«à¨¾à¨‡à¨² ਕਿਸਮ (%s) ਚà©à¨£à©‹à¨«à©‹à¨‚ਟ ਫੋਲਡਰ ਚà©à¨£à©‹à¨¢à¨¾à¨²à¨µà¨¾à¨‚ ਫੋਲਡਰ ਚà©à¨£à©‹à¨®à©ˆà¨¡à©€à¨Šà¨² ਫੋਲਡਰ ਚà©à¨£à©‹à¨•à©‹à¨ˆ ਨਾ ਚà©à¨£à©‹à¨°à©°à¨—-ਪੱਟੀ ਫੋਲਡਰ ਚà©à¨£à©‹à¨¤à¨°à¨¤à©€à¨¬ ਫੋਲਡਰ ਚà©à¨£à©‹à¨ªà¨²à©±à¨—ਿੰਨ ਫੋਲਡਰ ਚà©à¨£à©‹à¨®à©à©±à¨– ਰੰਗ ਨੂੰ ਸੋਧ ਲਈ ਚà©à¨£à©‹à¨¸à©‹à¨§ ਲਈ ਸੀਮਾ ਸੋਧਸਕà©à¨°à¨¿à¨ªà¨Ÿ-ਫੂ ਫੋਲਡਰ ਚà©à¨£à©‹à¨¸à¨°à©‹à¨¤ ਚੋਣਸਵੈਪ ਫੋਲਡਰ ਚà©à¨£à©‹à¨†à¨°à©›à©€ ਫੋਲਡਰ ਚà©à¨£à©‹à¨¸à¨°à©‚ਪ ਚੋਣਸਰੂਪ ਫੋਲਡਰ ਚà©à¨£à©‹à¨†à¨•à¨¾à¨° ਅਨà©à¨ªà¨¾à¨¤ ਚà©à¨£à©‹à¨¥à©±à¨²à©‡ ਵਾਲੀ ਪਰਤ ਚà©à¨£à©‹(_B)ਪਸੰਦੀਦਾ ਰੰਗ ਵਰਤੋਂ(_C)...ਅਗਲੀ ਪਰਤ ਚà©à¨£à©‹(_N)ਪਿਛਲੀ ਪਰਤ ਚà©à¨£à©‹(_P)ਉਪਰਲੀ ਪਰਤ ਚà©à¨£à©‹(_T)ਸਭ ਚà©à¨£à©‹à¨°à©°à¨— ਨਾਲ ਚà©à¨£à©‹à¨²à¨—ਾਤਾਰ ਖੇਤਰ ਚà©à¨£à©‹à¨…ੰਡਾਕਾਰ ਖੇਤਰ ਚà©à¨£à©‹à¨¦à¨¸à¨¤à©€-ਉਲੀਕੇ ਖੇਤਰ ਚà©à¨£à©‹à¨•à©‹à¨ˆ ਨਾ ਚà©à¨£à©‹à¨°à©°à¨—-ਪੱਟੀ ਫੋਲਡਰ ਚà©à¨£à©‹à¨†à¨‡à¨¤à¨•à¨¾à¨° ਖੇਤਰ ਚà©à¨£à©‹à¨–ੇਤਰ ਨੂੰ ਰੰਗ ਅਨà©à¨¸à¨¾à¨° ਚà©à¨£à©‹à¨šà¨¿à©±à¨¤à¨° ਤੋ ਖਾਕਾ ਚà©à¨£à©‹à¨¸à¨µà©ˆà¨ª ਡਾਇ ਚà©à¨£à©‹à¨ªà¨¾à¨°à¨¦à¨°à¨¸à¨¼à©€ ਖੇਤਰ ਚà©à¨£à©‹à¨µà©ˆà¨¬ à¨à¨²à¨•à¨¾à¨°à¨¾ ਚà©à¨£à©‹à¨®à¨¾à¨°à¨— ਲਈ ਚੋਣ(_o)ਚੋਣਚੋਣ ਸੋਧਕਚੋਣ ਸੰਪਾਦਕ ਮੇਨੂਮਖੋਟਾ ਚੋਣਚੋਣ ਸੰਦ ਤਰੀਕਾਮਖੌਟਾ ਚੋਣਮਾਰਗ ਲਈ ਚੋਣ (ਤਕਨੀਕੀ(_A))ਮਾਰਗ ਲਈ ਚੋਣਚੋਣ:ਚੋਣ: ਜੋੜà©à¨¹à©‹à¨šà©‹à¨£: ਵਿੱਚਕਾਰ ਲਿਖੋਚੋਣ: ਤਬਦੀਲਚੋਣ: ਘਟਾਉਸੰਵੇਦਨਸ਼ੀਲਤਾਚੈਨਲ ਦਾ ਰੰਗ ਨਿਰਧਾਰਿਤ ਕਰੋਚੈਨਲ ਦਾ ਧà©à©°à¨¦à¨¾à¨²à¨ªà¨¨ ਨਿਰਧਾਰਿਤ ਕਰੋਰੰਗ-ਖਾਕਾ ਨਿਰਧਾਰਨਚਿੱਤਰ ਦੀ ਰੈਜ਼ੋਲੇਸ਼ਨ ਤਬਦੀਲ ਕਰੋਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਸੰਬੰਧਿਤ ਨਿਰਧਾਰਿਤ ਕਰੋਇਕਾਈ ਨੂੰ ਨਿਵੇਕਲਾਂ ਦਿੱਖ ਨਿਰਧਾਰਿਤ ਕਰੋਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨ ਨਿਧਾਰਨਪਿੱਠਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਨਮà©à©±à¨–-ਭੂਮੀ ਰੰਗ ਨਿਰਧਾਰਨਇਕਾਈ ਸਬੰਧ ਨਿਰਧਾਰਨਪਰਤ ਮੋਡ ਨਿਰਧਾਰਨਪਰਤ ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨ ਨਿਰਧਾਰਨਸਹਾਇਤਾ ਸਿਸਟਮ ਲਈ à¨à¨²à¨•à¨¾à¨°à¨¾ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਨਿਰਧਾਰਿਤ ਕਰੋ ਕਿ ਚਿੱਤਰ ਵਿੱਚ ਪਾਰਦਰਸ਼ਤਾ ਕਿਵੇ ਵੇਖਾਈ ਜਾਵੇਕਰਸਰ ਦਾ ਮੋਡ ਨਿਰਧਾਰਿਤ ਕਰੋ ਜੋਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।ਕਰਸਰ ਦੇ ਪਿਕਸਲ ਫਾਰਮਿਟ ਦਿਓ, ਜੋ ਕਿ ਜੈਮਪ ਵਰਤੇਗਾ।ਨਵੇਂ ਬਣੇ ਵਾਰਤਾਲਾਪ ਵਿੱਚ ਪਰਤਾਂ ਅਤੇ ਚੈਨਲਾਂ ਦਾ ਮੂਲ ਨਮੂਨਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਪਾਰਦਰਸ਼ਤਾ ਵੇਖਾਉਣ ਲਈ ਡੱਬੀਦਾਰ-ਖਾਕੇ ਦਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਮà©à¨¡à¨¼-ਉਹੀ ਅਤੀਤ ਵਿੱਚ ਨਮੂਨਿਆਂ ਦਾ ਅਕਾਰ ਨਿਰਧਾਰਿਤ ਕਰੋ।ਚਿੱਤਰ à¨à¨°à©‹à¨–ੇ ਵਿੱਚ ਸਥਿਤੀ-ਪੱਟੀ ਵਿੱਚ ਪਾਠ ਦੇ ਦਰਿਸ਼ ਦਾ ਨਿਰਧਾਰਨ ਕਰੋਚਿੱਤਰ à¨à¨°à©‹à¨–ੇ ਦੇ ਸਿਰਲੇਖ ਵਿੱਚ ਪਾਠ ਦੇ ਦਰਿਸ਼ ਦਾ ਨਿਰਧਾਰਨ ਕਰੋਛਾਂ ਕਿਸਮਪà©à¨›à¨¾à¨µà¨¾à¨‚ਖਾਕਾਖਾਕਾਸ਼ਕਲ (ਕੋਣਾਕਾਰ)ਸ਼ਕਲ (ਲਹਿਰਦਾਰ)ਸ਼ਕਲ (ਗੋਲਾਕਾਰ)ਉਘੜਵਾਂਘਟਾਉX ਦੇ ਮà©à©±à¨² ਨੂੰ ਘਟਾਓ:X ਦੇ ਮà©à©±à¨² ਨੂੰ ਘਟਾਓ:ਪਰਤ ਜਾਂ ਚੋਣ ਨੂੰ ਘਟਾਉਘਟਾਉਣ ਦੀ ਜਾਣਕਾਰੀਘਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ...ਛੋਟੀਆਂ ਧਾਰੀਆਂਸ਼ਾਰਟਕੱਟਸ਼ਾਰਟਕੱਟ "%s" ਨੂੰ ਪਹਿਲਾਂ ਹੀ "%s" ਨੇ ਸਮੂਹ "%s" ਰਾਹੀਂ ਲੈ ਲਿਆ ਹੈ।ਪਰਤ-ਮਖੌਟਾ ਵੇਖਾਓਪੈਮਾਨਾ ਵੇਖਾਓ(_u)ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓਸੰਕੇਤ ਵਿਖਾਓਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਉਚੋਣ ਵੇਖਾਓ(_S)ਬà©à¨°à¨¶ ਖਾਕਾ ਵੇਖਾਓ(_b)ਮà©à©±à¨–ਭੂਮੀ ਤੇ ਪਿੱਠਭੂਮੀ ਰੰਗ ਵੇਖਾਓਸੰਕੇਤ ਵਿਖਾਓ(_g)ਪਰਤ-ਹਾਸ਼ੀਆ ਵੇਖਾਓ(_l)ਮੇਨੂ-ਪੱਟੀ ਵੇਖਾਓ(_m)ਪੈਮਾਨਾ ਵੇਖਾਓ(_r)ਬà©à¨°à¨¶, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ ਵੇਖਾਓ(_b)ਸਰਗਰਮ ਚਿੱਤਰ ਵੇਖਾਓ(_i)ਗਰਿੱਡ ਵੇਖਾਓ(_d)ਸਹਾਇਤਾ ਬਟਨ ਵੇਖਾਓ(_b)ਚਿੱਤਰ ਅਕਾਰ ਵੇਖਾਓਪਰਸਰ-ਪà©à¨°à¨­à¨¾à¨µà©€ ਹਾਸ਼ੀਠਵੇਖਾਓਵਰਤੀ ਮੈਮੋਰੀ ਵੇਖਾਓਪੇਂਟ ਸੰਦ ਕਰਸਰ ਵੇਖਾਓ(_t)ਚੋਣ ਵੇਖਾਓ(_e)ਸਥਿਤੀ-ਪੱਟੀ ਵੇਖਾਓ(_t)ਸਕਰੋਲ-ਪੱਟੀ ਵੇਖਾਓ(_b)ਅਗਲੀ ਵਾਰ ਜੈਮਪ ਚੱਲਣ ਤੇ ਇਸ਼ਾਰਾ ਵਿਖਾਓਸ਼à©à¨°à©‚ ਤੇ ਇਸ਼ਾਰਾ ਵੇਖਾਓ(_s)ਸੰਦ-ਸੰਕੇਤ ਵੇਖਾਓ(_t)ਜ਼ੂਮ ਪà©à¨°à¨¤à©€à¨¶à¨¤ ਵੇਖਾਓਜ਼ੂਮ ਅਕਾਰ ਵੇਖਾਓਸà©à©°à¨˜à©œà©à¨¹à©‹ ਚੈਨਲਅਕਾਰਮੈਮੋਰੀ ਵਿੱਚ ਅਕਾਰ:ਥੰਮਨੇਲ ਅਕਾਰ(_t):ਅਕਾਰ:ਛੱਡਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s': ਗਲਤ ਜੈਮਪ ਪà©à¨°à©‹à¨Ÿà©‹à¨•à¨¾à¨² ਵਰਜਨ ਹੈ।ਛੋਟਾਛੋਟੇ ਨਮੂਨੇਮà©à¨²à¨¾à¨‡à¨®à¨®à©à¨²à¨¾à¨…ਮ ਕਿਨਾਰੇਧੱਬਾਧੱਬਾ ਚਿੱਤਰਗਰਿੱਡ ਦੀ ਤਸਵੀਰ(_p)ਸਾਫਟ ਰੋਸ਼ਨੀਇੱਕਸਰੋਤਖਾਲੀ-ਥਾਂਖਾਲ਼ੀ ਥਾਂ:ਵਿਰਲੇ ਬਿੰਦੂਖਾਸ ਫਾਇਲਨਿਰਧਾਰਿਤ ਕਰੋ ਚਿੱਤਰ ਦà©à¨†à¨²à©‡ ਖੇਤਰ ਕਿਸ-ਤਰਾਂ ਉਲੀਕਿਆ ਜਾਵੇ।ਗਤੀ:ਕਿੱਲ:ਘà©à©°à¨®à¨¾à¨“ (ਘਡ਼ੀ ਦਿਸ਼ਾ ਵਿੱਚ)ਘà©à©°à¨®à¨¾à¨“ (ਸੱਜਾ ਪਾਸੇ)ਵੱਖ ਕਰੋਵਰਗਸਥਿਤੀ ਤੇ ਪਾਠ(_a)ਸਟਾਕਮਿਆਰੀਵਿਸਥਾਰ ਨੂੰ ਸ਼à©à¨°à©‚ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈਵਿਸਥਾਰ ਨੂੰ ਸ਼à©à¨°à©‚ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: '%s' -ਸਥਿਤੀ:ਸਥਿਰ ਰੰਗਸਥਿਰ ਸਲੇਟੀਸਥਿਤੀ ਤੇ ਵਰਣਨਸਥਿਤੀ ਤੇ ਪਾਠਮਿਆਰੀ ਯੰਤਰ:ਬਿੰਦੀਕਾਰੀਸਟਾਕ IDਛੋਹ ਮਾਰਗ(_k)ਛੋਹ ਮਾਰਗ(_k)...ਚੈਨਲ ਛੋਹਛੋਹ ਮਾਰਗà¨à¨Ÿà¨•à¨¾ ਚੋਣà¨à¨Ÿà¨•à¨¾ ਸਤਰਛੋਹ ਮਾਰਗਛੋਹ ਮਾਰਗ...ਆਖਰੀ ਮà©à©±à¨² ਨਾਲ ਚੋਣ à¨à¨Ÿà¨•à¨¾à¨šà©‹à¨£ à¨à¨Ÿà¨•à¨¾...ਪੇਂਟ ਸੰਦ ਨਾਲ ਛੋਹਘਟਾਉਮੌਜੂਦਾ ਚੋਣ ਵਿੱਚੋ ਹਟਾਉਸਵੈਪ ਫੋਲਡਰ:ਸੰਦ(_o)ਪਾਠ(_x)ਪਾਠ ਸੰਦਆਰਜ਼ੀ ਫੋਲਡਰ:ਨਮੂਨੇਨਮੂਨਾ ਮੇਨੂਆਰਜ਼ੀ ਤਰੀਕਾਪਲੱਗਿੰਨ ਖਤਮ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ: '%s' -ਪਾਠਪਾਠ ਰੰਗਪਾਠ ਸੰਪਾਦਕਪਾਠ ਪਰਤਪਾਠ ਸੋਧਪਾਠ ਤਰੀਕਾਜੈਮਪਸਰਗਰਮ ਬà©à¨°à¨¸à¨¼à¥¤ -ਬà©à¨°à¨¸à¨¼ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਸਰਗਰਮ ਢਾਲਵਾਂ। -ਢਾਲਵਾਂ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਸਰਗਰਮ ਚਿੱਤਰ -ਚਿੱਤਰ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਸਰਗਰਮ ਤਰਤੀਬ -ਤਰਤੀਬ ਤਖਤੀ ਖੋਲਣ ਲਈ ਦਬਾਉ।ਗਰਿੱਡ ਦਾ ਪਿੱਠਭੂਮੀ ਰੰਗ; ਕੇਵਲ ਦੂਹਰੀ ਧਾਰੀਦਾਰ ਰੇਖਾ ਸ਼ੈਲੀ ਨਾਲ ਹੀ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਬੈਚ ਇੰਟਰਪà©à¨°à©‡à¨Ÿà¨° '%s' ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ, ਬੈਚ ਢੰਗ ਆਯੋਗ ਹੈ।ਫਾਇਲ-ਨਾਂ '%s' ਨੂੰ ਜਾਇਜ਼ URI ਵਿੱਚ ਤਬਦੀਲ ਨਹੀ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ: - -%sਗਰਿੱਡ ਦਾ ਮà©à©±à¨–-ਭੂਮੀ ਰੰਗਖਿਤਿਜੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨ ਹੈ।ਲੰਬਕਾਰੀ ਚਿੱਤਰ ਰੈਜ਼ੋਲੇਸ਼ਨਸਰੂਪਸਰੂਪ ਫੋਲਡਰਸਰੂਪ%d ਚਿੱਤਰ ਨਾ ਸੰਭਾਲੇ ਗਠਹਨ:ਹੇਠਾਂ ਨੂੰ ਵਿਲੀਨ ਕਰਨ ਲਈ ਲੋਡ਼ੀਦੀਆਂ ਉਪਲੱਬਧ ਦਿੱਖ ਪਰਤਾਂ ਨਹੀ ਹਨ।ਛੋਹਣ ਲਈ ਕੋਈ ਸਰਗਰਮ ਪਰਤ ਜਾਂ ਚੈਨਲ ਨਹੀ ਹੈਇੱਕ ਚਿੱਤਰ ਵਿੱਚ ਇੱਕ ਨਾ ਸੰਭਾਲਿਆ ਚਿੱਤਰ:ਫਾਇਲ %s ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀ ਇੰਸਟਾਲੇਸ਼ਨ ਦੀ ਪੜਤਾਲ ਕਰੋ।ਤà©à¨¹à¨¾à¨¡à©€ ਫਾਇਲ '%s' ਨੂੰ ਪਾਰਸ ਕਰਨ ਵਿੱਚ ਗਲਤੀ ਹੈ। ਤà©à¨¹à¨¾à¨¡à©€ ਸੰਰਚਨਾ ਦਾਇੱਕ ਬੈਕਅੱਪ '%s' ਤੇ ਬਣਾਇਆ ਗਿਆ ਹੈ।ਇਹ ਫੋਲਡਰ ਚਿੱਤਰ ਨਮੂਨਿਆਂ ਦੀ ਖੋਜ ਕਰਨ ਲਈ ਵਰਤਿਆ ਜਾਦਾ ਹੈ।ਇਹ ਪਿਕਸਲਾਂ ਵਿੱਚਕਾਰ ਦੂਰੀ ਹੈ, ਜਿਥੇ ਕਿ ਗਾਈਡ ਤੇ ਗਰਿਡ ਅਚਾਨਕ ਸਰਗਰਮੀ ਹੈ।ਇਹ ਪਾਠ ਇੰਪà©à©±à¨Ÿ ਖੇਤਰ %d ਅੱਖਰਾਂ ਲਈ ਰਾਖਵਾਂ ਹੈ।ਇਸ ਸੰਦ ਲਈ ਕੋਈ ਚੋਣ ਨਹੀ ਹੈ।ਮà©à©±à¨¢à¨²à¨¾ ਮà©à©±à¨²à¨®à©à©±à¨¢à¨²à¨¾-ਮà©à©±à¨² ਤਤਕਰਾ-ਪਰਤਾਂ ਤੇ ਕਾਰਜ ਨਹੀ ਕਰਦਾ ਹੈ।ਅਧਾਰ ਮà©à©±à¨²:ਥੰਮਨੇਲ %d ਦਾ %dਕੈਂਚੇ ਅਕਾਰ(_s):ਕੈਂਚੇ ਅਕਾਰ:ਸਿਰਲੇਖ:ਬਾਰੀਕਸਿਰਲੇਖ ਤੇ ਸਥਿਤੀਮਾਰਗ ਲਈ(_P)ਖਿਡੌਣੇ(_y)ਤੇਜ਼ ਮਖੌਟਾ ਤਬਦੀਲਤੇਜ਼ ਮਖੌਟਾ ਤਬਦੀਲ(_Q)ਕਈ ਗਲਤੀਆਂ ਲੱਭੀਆਂ ਹਨ!ਸੰਦ ਚੋਣਸੰਦ ਚੋਣ ਮੇਨੂਸੰਦ ਤਬਦੀਲ %sਸੰਦ ਚੋਣ(_O)ਸੰਦ ਆਈਕਾਨਕਰਾਸਹੇਅਰ ਲਈ ਸੰਦ ਆਈਕਾਨਸੰਦਪੱਟੀ ਬਕਸਾ(_b)ਸੰਦਬਕਸਾਸੰਦਪੱਟੀ ਮੇਨੂਸੰਦਸੰਦ ਮੇਨੂਪਾਰਦਰਸ਼ਤਾà¨à¨²à¨«à¨¾ ਨੂੰ ਮਖੌਟੇ ਵਿੱਚ ਤਬਦੀਲ ਕਰੋਤਬਦੀਲਤਬਦੀਲ ਚੈਨਲਤਬਦੀਲ ਦਿਸ਼ਾਤਬਦੀਲ ਪਰਤਮਾਰਗ ਤਬਦੀਲਪਾਠ ਤਬਦੀਲ ਪਰਤਤਬਦੀਲੀ ਸੰਦ ਤਰੀਕਾਤਬਦੀਲ ਪਰਤਮਾਰਗ ਤਬਦੀਲਚੋਣ ਤਬਦੀਲਤਬਦੀਲੀਤਬਦੀਲੀ ਵਿਧੀਤਬਦੀਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ...ਭਾਸ਼ਾ ਤਬਦੀਲ ਕੀਤੀਪਾਰਦਰਸ਼ਤਾਪਾਰਦਰਸ਼ਤਾ ਕਿਸਮ(_t):ਤਿਕੋਨੀ ਲਹਿਰਅਸਲੀ ਰੰਗਕਿਸਮਕਿਸਮ %sਨਵਾਂ ਪà©à¨°à¨µà©‡à¨¶à¨• ਦਿਓਨਵਾਂ ਪà©à¨°à¨µà©‡à¨¶à¨• ਦਿਓ ਜਾਂ ਸਾਫ਼ ਕਰਨ ਲਈ ਬੈਕਸਪੇਸ ਦਿਓ।ਜਾਂਚ ਸਵੈਪ ਫਾਇਲ ਖੋਲਣ ਵਿੱਚ ਅਸਫਲ ਹੈ। ਡਾਟਾ ਗà©à¨†à¨‰à¨£ ਤੋ ਬਚਣ ਲਈ ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੀ ਪਸੰਦ ਵਿੱਚ ਨਿਰਧਾਰਿਤ ਕੀਤੀ ਸਵੈਪ ਡਾਇਰੈਕਟਰੀ ਦੀ ਸਥਿਤੀ ਅਤੇ ਅਧਿਕਾਰ ਵੇਖ ਲਵੋ (ਮੌਜੂਦਾ "%s")ਨਾ-ਪਰਾਭਾਸ਼ਿਤਵਾਪਿਸਮà©à¨¡à¨¼ ਕਰੋ ਦਾ ਅਤੀਤਮà©à¨¡à¨¼ ਕਰੋ ਅਤੀਤ(_H)ਇਕਾਈਅਣਪਛਾਤਾਅਣਪਛਾਤੀ ਫਾਇਲ ਕਿਸਮਰੰਗ-ਪੱਟੀ ਫਾਇਲ ਦੀ ਅਣਜਾਣੀ ਕਿਸਮ: -%sਅਨ-ਲੋਡਬੇ-ਨਾਮਬਿਨਾਂ ਸਿਰਲੇਖਸਫ਼ਰੀ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਰਤੋਂ(_d)ਵੈਬ à¨à¨²à¨•à¨¾à¨°à¨¾ ਵਰਤੋਂ(_w)ਸਾਰੀਆਂ ਪਰਤੋ ਵਰਤੋ ਜਦੋ ਕਿ ਚੋਣ ਨੂੰ ਸੰਗੇਡ਼ਿਆ ਜਾਵੇਕਾਲੀ ਤੇ ਚਿੱਟੀ ਰੰਗ ਪੱਟੀ (1-ਬਿੱਟ) ਵਰਤੋਂਢਾਲਵੇਂ ਤੋ ਰੰਗ ਵਰਤੋਂਸੋਧੀ ਰੰਗ-ਪੱਟੀ ਵਰਤੋਂਜਾਣਕਾਰੀ à¨à¨°à©‹à¨–ਾ ਵਰਤੋਂਵੈਬ-ਅਨà©à¨•à©‚ਲ ਰੰਗ-ਪੱਟੀ ਵਰਤੋਂਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਲਾਗਯੂਜਰ ਇੰਟਰਫੇਸ(ਸ਼ਕਲ)ਸਹੂਲਤ à¨à¨°à©‹à¨–ਾਮà©à©±à¨²à¨®à©à©±à¨²:ਵੈਕਟਰ ਢੰਗਵਰਜਨ %s ਤà©à¨¹à¨¾à¨¡à©‡ ਲਈ ਲੈਕੇ ਆਠਹਨਵਰਜਨ:ਲੰਬਕਾਰੀਗਰਿੱਡ ਰੇਖਾਵਾਂ ਵਿੱਚ ਲੰਬਕਾਰੀ ਦੂਰੀਬਹà©à¨¤ ਵੱਡਾਬਹà©à¨¤ ਛੋਟਾਵੇਖੋਗਰਿੱਡ ਵਾਂਗ ਵੇਖੋ(_G)ਸੂਚੀ ਵਾਂਗ ਵੇਖੋ(_L)ਗਰਿੱਡ ਵਾਂਗ ਵੇਖੋਸੂਚੀ ਵਾਂਗ ਵੇਖੋਦਿੱਖ ਡੂੰਘਾਈ:ਚੇਤਾਵਨੀ: ਡਾਟਾ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ: -%sਚੇਤਾਵਨੀ: ਡਾਟਾ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਮੱਰਥ: -%sਵੈਬ ਬਰਾਊਜ਼ਰਵੈਬ à¨à¨²à¨•à¨¾à¨°à¨¾à¨œà©€ ਆਇਆਂ ਨੂੰ -ਜੈਮਪ %d.%d ਉਪਭੋਗੀ ਇੰਸਟਾਲੇਸ਼ਨ ਤੇ ਸਵਾਗਤ ਹੈਜੇਕਰ ਯੋਗ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ ਤਾਂ ਤਖਤੀ ਸਵੈ ਹੀ ਚਿੱਤਰ ਜਿਸ ਤੇ ਤà©à¨¸à©€ ਕੰਮ ਕਰ ਰਹੇ ਹੋ ਦੇ ਨਾਲ ਚਲੇਗਾ।ਯੋਗ ਕਰਨ ਤੇ ਮੇਨੂ ਵੱਖ ਕੀਤੇ ਜਾ ਸਕਣਗੇ।ਜਦੋ ਯੋਗ ਕੀਤਾ ਤਾਂ , F1 ਦਬਾਉਣ ਨਾਲ ਸਹਾਇਤਾ à¨à¨²à¨•à¨¾à¨°à¨¾ ਖà©à©±à¨² ਜਾਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਜੈਮਪ ਹਰੇਕ ਚਿੱਤਰ ਲਈ ਵੱਖਰਾ ਜਾਣਕਾਰੀ à¨à¨°à©‹à¨–ਾ ਵਰਤੇਗਾ।ਜਦੋ ਚà©à¨£à¨¿à¨† ਗਿਆ ਤਾਂ, ਕਰਸਰ ਨੂੰ ਚਿੱਤਰ ਉਪਰ ਵੇਖਾਇਆ ਜਾਵੇ, ਜਦੋਂ ਕਿ ਪੇਂਟ ਸੰਦ ਹੋਵੇ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ à¨à¨°à©‹à¨–ਾ ਅਕਾਰ ਦੇ ਵਾਧੇ ਅਤੇ ਘਟਾ ਸਾਰਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਚਿੱਤਰ à¨à¨°à©‹à¨–ਾ ਵਾਸਵਤਿਕ ਚਿੱਤਰ ਦੇ ਅਕਾਰ ਵਿੱਚ ਤਬਦੀਲੀ ਅਨà©à¨¸à¨¾à¨° ਆਪਣੇ ਆਪ ਨੂੰ ਤਬਦੀਲ ਕਰ ਲਵੇਗਾ।ਜਦੋ ਚà©à¨£à¨¿à¨† ਗਿਆ ਤਾਂ, ਚà©à¨£à¨¿à¨† ਬà©à¨°à¨¸à¨¼ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਜਦੋ ਚà©à¨£à¨¿à¨† ਗਿਆ ਤਾਂ, ਚà©à¨£à¨¿à¨† ਢਾਲੂ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤਿਆ ਜਾਵੇਗਾ।ਜਦੋ ਚà©à¨£à¨¿à¨† ਗਿਆ ਤਾਂ, ਚà©à¨£à©€ ਤਰਤੀਬ ਸਭ ਸੰਦਾਂ ਲਈ ਵਰਤੀ ਜਾਵੇਗੀ।ਜਦੋ ਇਹ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਗਿਆ ਤਾਂ ਇਹ ਯਕੀਨੀ ਬਣਾਇਆ ਜਾਵੇਗਾ ਕਿ ਚਿੱਤਰ ਦਾ ਹਰੇਕ ਪਿਕਸਲ ਨੂੰਸਕਰੀਨ ਦੇ ਪਿਕਸਲ ਨਾਲ ਮੇਲ ਦਿੱਤਾ ਜਾਵੇਗਾ।ਜਦੋ ਨਿਰਧਾਰਿਤ ਕੀਤਾ ਤਾਂ, ਫਾਇਲ ਖੋਲਣ ਮਗਰੋਂ ਪੂਰਾ ਚਿੱਤਰ ਖà©à¨²à©‡à¨—ਾ, ਨਹੀ ਤਾਂਇਹ 1:1 ਅਨà©à¨ªà¨¾à¨¤ ਵਿੱਚ ਖà©à©±à¨²à©‡à¨—ਾ ।ਸਫੈਦਚੌਡ਼ਾਈਚੌਡ਼ਾਈ:à¨à¨°à©‹à¨–ਾ ਪà©à¨°à¨¬à©°à¨§à¨¨à¨à¨°à©‹à¨–ਾ ਪà©à¨°à¨¬à©°à¨§à¨• ਇਸ਼ਾਰੇà¨à¨°à©‹à¨–ਾ ਸਥਿਤੀਲਿਖਿਆ ਜਾ ਰਿਹਾ ਹੈ '%s' -XXCF ਗਲਤੀ: ਨਾ-ਸਹਿਯੋਗੀ XCF ਫਾਇਲ ਵਰਜਨ %d ਮਿਲਿਆ ਹੈXCF ਚੇਤਵਾਨੀ: XCF ਫਾਇਲ ਫਾਰਮਿਟ ਦਾ ਵਰਜਨ 0 -ਤਤਕਰਾ ਰੰਗ-ਖਾਕਿਆਂ ਨੂੰ ਠੀਕ ਤਰਾਂ ਸੰਭਾਲ ਸਕਦਾ ਹੈ। -ਸਲੇਟੀ-ਸਕੇਲ ਖਾਕੇ ਨਾਲ ਤਬਦੀਲ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ।Yਪੀਲਾਪੀਲਾ:ਤà©à¨¸à©€ ਡੋਕਬਲ ਤਖਤੀਆਂ ਇਥੇ ਰੱਖ ਸਕਦੇ ਹੋ।ਤà©à¨¹à¨¾à¨¡à©€ ਜੈਮਪ ਇੰਸਟਾਲੇਸ਼ਨ ਮà©à¨•à©°à¨®à¨² ਨਹੀਂ:ਆਕਾਰ 1:1ਸਭ ਆਕਾਰਅਕਾਰ ਵਧਾਉਅਕਾਰ ਘਟਾਉਆਕਾਰ ਅਨà©à¨ªà¨¾à¨¤à¨†à¨•à¨¾à¨° ਅਨà©à¨ªà¨¾à¨¤:ਸਭ ਜ਼ੂਮ(_A)ਅਕਾਰ ਵਧਾਓ(_I)ਅਕਾਰ ਘਟਾਓ(_O)ਸਭ ਆਕਾਰਆਕਾਰ ਗà©à¨£à¨¾à¨‚ਕ: %d:1ਅਕਾਰ ਵਧਾਉਅਕਾਰ ਵੱਡਾ ਤੇ ਛੋਟਾਅਕਾਰ ਘਟਾਉਆਕਾਰ:[ ਮੂਲ ਚਿੱਤਰ ]ਇਸ ਬਾਰੇ(_A)ਪà©à¨°à¨¾à¨ªà¨¤ ਕਰੋ(_A)BG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲ(_A)FG ਤੋ ਰੰਗ ਸ਼ਾਮਿਲ(_A)ਟੈਬ ਸ਼ਾਮਿਲ(_A)ਚੋਣ ਵਿੱਚ ਜੋੜà©à¨¹à©‹à¨¤à¨•à¨¨à©€à¨•à©€ ਚੋਣ(_A)à¨à¨…ਰ-ਬà©à¨°à¨¸à¨¼(_A)ਲਟਕਦੀ ਪਰਤ(_A)à¨à¨Ÿà©€à¨²à¨¾à¨¸à©€à¨‡à©°à¨—(_A)ਕਲਾਕਾਰੀ(_A)ਅਕਾਰ ਅਨà©à¨ªà¨¾à¨¤(_A):ਸਵੈ_B_BG ਰੰਗਪਿੱਠਭੂਮੀ ਰੰਗ(_B):ਕਾਲਾ(ਪੂਰਾ ਪਾਰਦਰਸ਼ੀ)(_B)ਧੱਬਾ(_B)ਚਮਕੀਲਾਪਨ:ਬà©à¨°à¨¸à¨¼(_B)ਬà©à¨°à¨¸à¨¼(_B)ਬà©à¨°à¨¶, ਤਰਤੀਬਾਂ ਤੇ ਢਾਲੂ(_B)ਬਲਟੀ ਭਰਨ(_B)ਬਫਰ(_B)ਰੰਗ ਨਾਲ(_B)ਰੰਗ ਚੋਣ ਨਾਲ(_B)_Cਕੈਪ ਸ਼ੈਲੀ:ਚੈਨਲ(_C)ਗਲਤੀਆਂ ਸਾਫ਼ ਕਰੋਮà©à¨¡à¨¼ ਕਰੋ ਅਤੀਤ ਸਾਫ(_C)ਸਮਰੂਪ(_C)ਬੰਦ(_C)ਟੈਬ ਬੰਦ ਕਰੋ(_C)ਬੱਦਲ(_C)ਰੰਗ ਸੰਦ(_C)ਰੰਗ(_C)ਰੰਗ ਤੇ ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨ ਸੰਰਚਨਾ(_C)...ਪਾਠ(_C)ਭਾਗ ਸਹਾਇਤਾਨਕਲਨਕਲ ਨਾਂ...ਨਮੂਨੇ ਤੋਂ ਚਿੱਤਰ ਬਣਾਓ(_C)...ਫੈਲਾਉ ਤੇ ਮà©à¨¡à¨¼-ਅਕਾਰ(_C)ਚਿੱਤਰ ਫੈਲਾਉ...ਘਾਤਾਂ(_C)...ਗੂੜà©à¨¹à©‡ ਜਾਂਚ ਰੰਗ(_D)ਮੂਲ ਰੰਗ(_D)ਬà©à¨°à¨¸à¨¼ ਹਟਾਓ(_D)ਬਫਰ ਹਟਾਓ(_D)ਚੈਨਲ ਹਟਾਉ(_D)ਰੰਗ ਹਟਾਓ(_D)ਢਾਲੂ ਹਟਾਓ...ਚਿੱਤਰ ਹਟਾਓਪਰਤ ਹਟਾਓਰੰਗ-ਪੱਟੀ ਹਟਾਓ(_D)ਮਾਰਗ ਹਟਾਓ(_D)ਤਰਤੀਬ ਹਟਾਓ(_D)...ਸੰਭਾਲੀ ਚੋਣ ਹਟਾਓ(_D)ਖੰਡ ਹਟਾਓਨਮੂਨਾ ਹਟਾਓ(_D)ਅਸਤà©à¨°à¨¿à¨ªà¨¤(_D)ਟੈਬ ਵੱਖ ਕਰੋ(_D)ਜੰਤਰ ਸਥਿਤੀ(_D)ਤਖਤੀ(_D)ਤਬਦੀਲੀਆਂ ਰੱਦ(_D)ਪਾਠ ਜਾਣਕਾਰੀ ਰੱਦ(_D)ਖਿੰਡਣ(_D)ਬਿੰਦੂ ਤੋ ਬਿੰਦੂ(_D)ਨਕਲ਼...ਸੋਧ(_E)ਬà©à¨°à¨¸à¨¼ ਸੋਧ(_E)...ਚੈਨਲ ਗà©à¨£ ਸੋਧ(_E)...ਰੰਗ ਸੋਧ(_E)...ਢਾਲੂ ਸੋਧ...ਪਰਤ ਗà©à¨£ ਸੋਧ...ਰੰਗ-ਪੱਟੀ ਸੋਧ(_E)ਮਾਰਗ ਗà©à¨£ ਸੋਧ(_E)...ਤਰਤੀਬ ਸੋਧ(_E)...ਨਮੂਨਾ ਸੋਧ(_E)...ਅੰਡਾਕਾਰ ਚੋਣ(_E)ਵਿਸ਼ਾਲ(_E)ਸਮਰੂਪ(_E)ਰਬਡ਼(_E)_FG ਰੰਗਫਾਇਲ(_F)ਭਰੋ(_F):ਚਿੱਤਰ à¨à¨°à©‹à¨–ੇ ਵਿੱਚ ਅਨà©à¨•à©‚ਲ(_F)ਚਿੱਤਰ ਹਟਾਓà¨à¨Ÿà¨•à¨¾(_F)ਫਾਇਲ਼ ਖੰਡਚੋਣ à¨à¨Ÿà¨•à©‹à¨¤à¨°à¨¦à¨¾(_F)ਫੋਂਟ(_F)ਫੋਂਟ(_F)ਮà©à©±à¨–-ਭੂਮੀ ਰੰਗ(_F):ਮà©à¨•à¨¤ ਚੋਣ(_F)_Gਸਧਾਰਨ(_G)ਵਿਰਾਟ(_G)ਢਾਲਵਾਂ(_G)ਢਾਲੂ(_G)ਸਲੇਟੀ-ਪੈਮਾਨਾਪਰਤ ਦੀ ਸਲੇਟੀ ਨਕਲ(_G)ਫੈਲਾਓ(_G)...ਦਿਸ਼ਾ-ਨਿਰਦੇਸ਼ਨਕਠੋਰਤਾ(_H)ਸਹਾਇਤਾ(_H)ਖਿਤਿਜੀ:ਰੰਗਤ:ਵਿਰਾਟ(_H)ਆਈਕਾਨ(_I)ਆਈਕਾਨ:ਚਿੱਤਰਚਿੱਤਰ(_I)ਲਿਆਉਰੰਗ-ਪੱਟੀ ਆਯਾਤ(_I)...ਤਤਕਰਾ...ਜਾਣਕਾਰੀ à¨à¨°à©‹à¨–ਾ(_I)ਚੋਣ ਨਾਲ ਕਾਂਟਉਲਟ(_I)ਜੋਡ਼ ਸ਼ੈਲੀ:ਵੱਡਾ(_L)ਪਰਤਪਰਤਾਂ(_L)ਪਰਤਾਂ, ਚੈਨਲ ਤੇ ਮਾਰਗ(_L)ਪੱਧਰ(_L)...ਫਿੱਕੇ ਜਾਂਚ ਰੰਗ(_L)ਰੋਸ਼ਨੀ ਪà©à¨°à¨­à¨¾à¨µ(_L)ਪਰਕਾਸ਼਼ਮਾਨ:ਰੇਖਾ ਸ਼ੈਲੀ:ਰੇਖਿਕ(_L)ਸੰਬੰਧਿਤ(_L)ਖੱਬਾ ਰੰਗ ਲੋਡ(_L)ਹੇਠਲਾ ਚੈਨਲ(_L)ਹੇਠਲੀ ਪਰਤ(_L)ਹੇਠਲਾਂ ਮਾਰਗ(_L)_Mਦਸਤੀਨਕਸ਼ਾ(_M)ਮਖੌਟਾਚੋਣ ਤੇ ਮਖੌਟਾ(_M)ਰੰਗਾਂ ਦੀ ਅਧਿਕਤਮ ਗਿਣਤੀ(_M):ਮਾਪ(_M)ਮੱਧਮ(_M)ਵਿਲੀਨ ਰੰਗ-ਪੱਟੀ(_M)...ਮਿਲਾਨ ਆਯਾਤ ਮਾਰਗ(_M)ਜੈਮਪ 2.0 ਦੀ ਉਪਭੋਗੀ ਵਿਵਸਥਾ ਰੱਖੋ(_M)ਫà©à¨Ÿà¨•à¨² ਭੰਡਾਰ(_M)ਮੋਡ(_M)ਮੈਡੀਊਲ ਪà©à¨°à¨¬à©°à¨§à¨•(_M)à¨à¨§à¨°-ਓਧਰ(_M)ਨਾਂ(_N):ਕà©à¨¦à¨°à¨¤à©€(_N)ਨਵਾਂ ਬà©à¨°à¨¸à¨¼(_N)ਨਵਾਂ ਚੈਨਲ(_N)ਨਵਾਂ ਚੈਨਲ(_N)...ਨਵਾਂ ਇੰਦਰਾਜ਼(_N)...ਨਵਾਂ ਢਾਲੂਨਵੀ ਪਰਤਨਵੀ ਪਰਤ...ਨਵੀ ਰੰਗ-ਪੱਟੀ(_N)ਨਵਾਂ ਮਾਰਗ(_N)ਨਵਾਂ ਮਾਰਗ(_N)ਨਵੀ ਤਰਤੀਬ(_N)ਨਵਾਂ ਨਮੂਨਾ(_N)...ਨਵਾਂ ਦਰਿਸ਼ਨਵਾਂ...ਅੱਗੇ ਇਸ਼ਾਰਾ(_N)ਕੋਈ ਨਹੀਂ(_N)ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨(_O)ਚਿੱਤਰ ਖੋਲà©à¨¹à©‹(_O)ਖੋਲà©à¨¹à©‹...ਚਿਣੇ ਰੰਗ(_P)ਪੇਟ ਸੰਦ(_P)ਪੇਟ-ਬà©à¨°à¨¸à¨¼(_P)ਰੰਗ-ਪੱਟੀ(_P)ਚਿਪਕਾਉਬਫਰ ਚਿਪਕਾਉ(_P)ਚਿਪਕਾਉ ਨਾਂ...ਮਾਰਗ(_P)ਤਰਤੀਬ(_P)ਅਵਲੋਕਣ(_P)ਇਸ਼ਤਹਾਰ(_P)...ਮੇਰੀ-ਪਸੰਦ(_P)ਨਮੂਨਾਨਮੂਨਾ ਅਕਾਰ(_P)ਪਿੱਛੇ ਇਸ਼ਾਰਾ(_P)ਛਾਪਣ ਅਕਾਰ...ਵਿਸ਼ੇਸਤਾਤੇਜ਼ ਮਖੌਟਾ ਸਰਗਰਮ(_Q)ਬਾਹਰ(_Q)_R_RGBਅਰਧ-ਵਿਆਸ(_R)ਉਭਰਿਆ ਚੈਨਲ(_R)ਪਰਤ ਉਭਾਰੋਉਠਾਇਆ ਮਾਰਗ(_R)ਦਰਿਸ਼ ਉਭਾਰੋਚਿੱਤਰ ਖੋਲà©à¨¹à©‹ ਜਾਂ ਉਭਾਰੋਸ਼ਾਰਟਕੱਟ ਮà©à©œ-ਦਿਓ(_R)ਆਇਤਕਾਰ ਚੋਣ(_R)ਮà©à¨¡à¨¼ ਪਹਿਲਾਂਮà©à©œ ਪਹਿਲਾਂ ਕਰੋ %sਬà©à¨°à¨¸à¨¼ ਤਾਜ਼ਾ(_R)ਢਾਲੂ ਤਾਜ਼ਾਰੰਗ-ਪੱਟੀ ਤਾਜ਼ਾ(_R)ਤਰਤੀਬ ਤਾਜ਼ਾ(_R)ਪੇਸ਼ਕਾਰ(_R)ਤਬਦੀਲ(_R)ਫੋਂਟ ਸੂਚੀ ਮà©à¨¡à¨¼-ਜਾਂਚੋਕà©à¨°à¨® ਤੇ ਦਿੱਖ ਮà©à©œ-ਨਿਰਧਾਰਨ(_R)ਸੰਭਾਲੀ ਇੰਪà©à©±à¨Ÿ ਜੰਤਰ ਵਿਵਸਥਾ ਦਾ ਮà©à©±à¨² ਮà©à¨¡à¨¼ ਮੂਲ ਨਿਰਧਾਰਨ(_R)ਸੰਭਾਲੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਨੂੰ ਮੂਲ ਮà©à©±à¨² ਦਿਓ(_R)ਸੰਭਾਲੀ à¨à¨°à©‹à¨–ਾ ਸਥਿਤੀ ਲਈ ਮà©à©œ-ਮੂਲ ਮà©à©±à¨² ਕਰੋ(_R)ਇਸ ਤੋਂ ਚੋਣ ਮà©à¨¡à¨¼-ਨਿਰਧਾਰਨ(_R)ਘà©à©°à¨®à¨¾à¨“(_R)ਸਤà©à¨°à¨¿à¨ªà¨¤à©€:ਸੰਭਾਲੋ(_S)ਖੱਬੇ ਰੰਗ ਨੂੰ ਸੰਭਾਲੋ(_S)ਚੋਣ ਨੂੰ ਸੰਭਾਲੋ(_S)ਬੰਦ ਕਰਨ ਤੇ ਇੰਪà©à©±à¨Ÿ ਜੰਤਰ ਵਿਵਸਥਾ ਨੂੰ ਸੰਭਾਲੋ(_S)ਬੰਦ ਕਰਨ ਤੇ ਕੀ-ਬੋਰਡ ਸ਼ਾਰਟਕੱਟ ਵਿੱਚ ਤਬਦੀਲੀਆਂ ਸੰਭਾਲੋ(_S)ਬੰਦ ਕਰਨ ਤੇ à¨à¨°à©‹à¨–ਾ ਸਥਿਤੀ ਸੰਭਾਲੋ(_S)ਮਾਪ-ਜਾਂਚ(_S)ਚਿੱਤਰ ਪੈਮਾਨਾ...ਪਰਤ ਪੈਮਾਨਾ(_S)...ਚੋਣ(_S)ਚੋਣਚੋਣ ਸੰਪਾਦਕ(_S)ਚੋਣ ਸੰਦ(_S)ਖਾਕਾ(_S)ਤਿੱਖਾ(_S)ਚਿੱਤਰ ਚੋਣ ਵੇਖਾਓ(_S)ਸੰਦ-ਬਕਸੇ ਵਿੱਚ ਵੇਖਾਓ(_S)ਛੋਟਾ(_S)ਧੱਬਾ(_S)ਚੋਣ à¨à¨Ÿà¨•à¨¾(_S)ਚੋਣ à¨à¨Ÿà¨•à¨¾(_S)...ਚੋਣ ਵਿਚੋਂ ਘਟਾਉਟੈਬ ਸ਼ੈਲੀ(_T)ਨਮੂਨਾ(_T):ਨਮੂਨੇ(_T)ਪਾਠ(_T)ਮà©à©±à¨¢à¨²à¨¾ ਮà©à©±à¨²(_T)...ਨਿੰਮਾ(_T)ਅੱਜ ਦਾ ਇਸ਼ਾਰਾ(_T)ਸੰਦ(_T)ਸੰਦ(_T)ਤਬਦੀਲੀ ਪਰਤ ਦਾ à¨à¨²à¨«à¨¾ ਚੈਨਲ(_T)ਤਬਦੀਲ(_T)ਤਬਦੀਲ ਸੰਦ(_T)ਵਾਪਿਸ(_U)ਮà©à©œ ਕਰੋ %sਲੰਬਕਾਰੀ:ਵੇਖੋ(_V)ਦਿੱਖ(_V)ਵਰਤਣ ਲਈ ਵੈਬ à¨à¨²à¨•à¨¾à¨°à¨¾(_W):ਸਫੇਦ(ਪੂਰਾ ਧà©à©°à¨¦à¨²à¨¾à¨ªà¨¨)(_W)ਸਫੈਟ ਸਾਵਾਂ(_W)ਚੌਡ਼ਾਈ(_W):ਪਾਸੇ ਸਮੇਟੋ(_W)_X ਰੈਜ਼ੋਲੇਸ਼ਨ:_X:ਵਾਧਾ_Y_Y ਰੈਜ਼ੋਲੇਸ਼ਨ:_Y:ਅਕਾਰ(_Z)ਆਕਾਰ (%s)ਰੰਗਨਕਲਡੀਪੀਆਈਬੂਲੀਅਨ ਟੋਕਨ %s ਲਈ 'ਹਾਂ' ਜਾਂ 'ਨਹੀ' ਦੀ ਉਮੀਦ ਸੀ, ਮਿਲਿਆ '%s'ਘਾਤਕ ਪਾਰਸ ਗਲਤੀਸਲੇਟੀਸਲੇਟੀ-ਖਾਲੀਇੰਚਇੰਚਤਤਕਰਾਤਤਕਰਾ-ਖਾਲ਼ੀਗਲਤ ਯੂਟੀà¨à¨«-8 ਸਤਰਆਈਕਾਨ ਕਿਸਮ ਲਈ ਗਲਤ ਮà©à©±à¨² '%ld'ਗਲਤ ਮà©à©±à¨² '%ld' ਟੋਕਨ %s ਲਈਆਈਕਾਨ ਕਿਸਮ ਲਈ ਗਲਤ ਮà©à©±à¨² '%s'ਗਲਤ ਮà©à©±à¨² '%s' ਟੋਕਨ %s ਲਈਮਿਲੀਮੀਟਰਮਿਲੀਮੀਟਰਮਿੰਟਉਪਲੱਬਧ ਨਹੀਪà©à¨°à¨¤à©€à¨¸à¨¼à¨¤à¨ªà©€à¨•à¨¾à¨ªà©€à¨•à¨¾à¨ªà¨¿à¨•à¨¸à¨²à¨ªà¨¿à¨•à¨¸à¨²à¨ªà¨¿à¨•à¨¸à¨²/%aਪਿਕਸਲ/%sਬਿੰਦੂਬਿੰਦੂਸਕਿੰਟtips-locale:paਅਮਨਪਰੀਤ ਸਿੰਘ ਆਲਮ (amanlinux@netscape.net)ਟੋਕਨ %s ਦਾ ਮà©à©±à¨² ਜਾਇਜ ਯੂਟੀà¨à¨«-8 ਸਤਰ ਨà©à¨°à¨¿ ਹੈਜਦੋ ਟੋਕਨ '%s' ਨੂੰ ਪਾਰਸ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/pl.gmo gimp-2.2.9/po/pl.gmo --- gimp-2.2.8/po/pl.gmo 2005-02-12 14:38:00.000000000 +0100 +++ gimp-2.2.9/po/pl.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,439 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·_¸`¹%y¹sŸ¹fº8zºL³ºm»en»‘Ô»Ef¼¬¬¼LY½D¦½Aë½g-¾M•¾:ã¾O¿/n¿Bž¿;á¿:À XÀbÀ -iÀ tÀ~À‘À ¥À±ÀÁÀ -ÑÀÜÀßÀðÀ Á Á!Á%*Á,PÁ}Á“ÁBšÁÝÁïÁ   Â:ÂJ Q [Âe ƒÂ ‘  -«Â -¶Â Á ÎÂ"Ú ý ÃÃÃ*Ãt;È°ÃM9Ä;‡Ä!ÃÄåÄûÄÅÅ&Å@ÅOÅiÅqńřũÅ!¹ÅÛÅïÅÆÆ6ÆFÆ\ÆnÆ…ÆŸÆ»ÆÔÆ)ñÆÇ1Ç+PÇ3|Ç°Ç!ÄÇæÇÈ È!(ÈJÈgÈ…È!¤ÈÆÈãÈÉ, É MÉ nÉ É›É®É·ÉÐÉ ÙÉúÉ -Ê !Ê-Ê?ÊOÊgeÊ=ÍË< ÌHÌgÌlÌ‡Ì¤Ì 2Í$<Í$aÍ$†Í«Í±Í -ÈÍÓÍÛÍöÍ -ÎÎ<5Î<rίÎOÈÎ -Ï#Ï#=Ï-aÏ/Ï#¿ÏãÏêÏñÏÐ)Ð@Ð -UÐ`ÐyЊР-šÐ¥Ð»ÐÃÐ -ÈÐÓÐìÐýÐOÑ5aÑ—ÑŸÑ -±Ñ¼ÑÌÑ%ÔÑ úÑÒ% Ò -3Ò/>ÒnÒ …Ò -Ò -šÒ¥Ò ÀÒÌÒàÒ'øÒ ÓI5ÓÓ‡Ó–ÓªÓ½ÓÆÓ ÎÓÛÓóÓ úÓ ÔÔÔŽ-Ô¼ÔÁÔÐÔ áÔ ëÔ#÷ÔÕ;ÕPÕWÕKiÕ<µÕNòÕOAÖE‘Öp×Ö%H×n×M×Û×H÷×/@Ø&pØ0—Ø'ÈØðØÙ -!Ù -,Ù 7ÙEÙXÙxÙÙ®ÙÆÙ+ÞÙ -Ú&$ÚKÚ*fÚ‘Ú®ÚµÚÆÚ&ÕÚ'üÚ $Û2ÛLÛjÛÛ—Û­ÛµÛ½ÛÌÛçÛþÛ -Ü ÜÜ1ÜQÜ$nÜ“Ü<³ÜWðÜQHÝDšÝ;ßÝ@Þ.\Þ$‹Þ°ÞÏÞIéÞ+3ß_ß-ßm­ßOà3kà4ŸàXÔàT-á7‚áºá.Ðáÿáâ!â8â -MâXâpâŒâ«â¾âÒâÚâàâðâãã7ãKã;cãŸã°ã¿ãÆã×ã îãüãä 3ä6=ätä…ä–ä¦ä½äÒä Ûä çä -ñäüä,å1EåwåŽå¢å#½å!áå æ$$æIægæ €æ/¡æÑæîæçç,ç 3ç@ç -Iç Tè^èvèè&•è$¼è'áè é(é19é1ké'éÅéàéñéêê2ê0Cêtê:’êÍê9êê($ë'Më.uë0¤ë%ÕëAûë =ìIìZìlì‡ì  ì­ìÈì-Úì í8í#Nírí Ží¯íÇí -áíìí+ -î6îHî]î&oî –î¢î±î¹î ÌîØîçîüî ï"ï 8ïBïSï gïsï9zï´ï ½ïËï$Üï ð ðð+ð=ðOð`ðsð†ð˜ð­ð¾ðÓðçðùðñ "ñ0ñ -OñZñ`ñ*uñ# ñÄñÕñíñ1ò8òJò]òròˆò¡ò´òÇòÛòîòóó(ó;óTófó{ó%Žó´óÓóñóô"ô ;ô Iô1Uô‡ô Œôšô «ô·ôÆôÝô åôïôõõ 9õ Zõhõzõ$“õ¸õËõ èõ ôõö ö ö7*öSböT¶öE ÷ Q÷^÷p÷†÷ ›÷¥÷¶÷ Ó÷)á÷ ø'ø=øVøqøŠø£ø¾øÕøêøûø&ù;ùUù;qù1­ùßùüùú8úUúqúú*­úØúñú -ûû2ûHûOûnû"‰û$¬ûÑûðû -üü 2ü%Sü!yü›ü°üÄüãü)öü ý6ýUý hý‰ýý®ýÍý äý ñýÿýþ0&þ Wþeþ€þþ;±þ#íþÿ$ÿ#>ÿbÿzÿ'”ÿ¼ÿ Ùÿ$åÿ - -:(Py’¤%»:á0*M0x,©4Ö0 \<o™  *G0f—´"Ä çô@ -7K)ƒ)­*×*-4!O#q•µ Ñ5Û3 -ESPb¤XI`nªks…XùVR Æ© Jp -Y» -p c† ê ax fÚ hA Ū  p~“©"Àãèû  ':Odyˆ¤¶Ð%è" 8Y#všµ!Ô ö+ -!6Xx–!ªÌàñ-=Oiyˆ—!¦ È Õâø 9 Z{1¬Þð÷ÿ (2 ;gI±Ì­â#¦!Êì & < FBP“¦ ¹ÇÐ åó ''?g}˜¶)Ðú"”·¿‚ÆI‚^áç„ït#’ ¶ÂÓâëþ1-2_’Z§  '8LRemv}œ²"Ì -ï!ú04Nk‰ ›¨Èßð -   -  # 0 6  K *Y $„ © º  ¿ "É *ì !‰! -©! ´!¾!Ï!Ø!Ià!**"RU"¨"°"IÄ"#&# ,#6#E#L#d#s#{# # Ž#Èœ#±e$F%@^%:Ÿ%Ú%à% ï%ý% &&"-&P&b&u&’&¨&¿&,Ï&ü& 'Y'r'' -‡'’' ™' §' µ'Ã'Ô'ñ' (($( -<( G(Q( a( m(w(“( ›(§( ¸(Ù(g)*y)¤)¿)Ó) î)ø)*&*=*P*}c*Iá*R++~+“+$©+ Î+#Ø+ü+ , ,+,,X,p,…,$—,+¼,1è,2-/M-1}-#¯-Ó-Lç-4.=.N.6f..µ.eÕ.;/S/ i/u/’/ª/¿/Ô/ê/0000!H0j0†0)¦0#Ð0ô011 61W1r1(‘1"º1Ý1ö12! 2B2^2)~2#¨2Ì2æ2ù2"353 R3*s3$ž3Ã3„Þ3 -c5n5ƒ5–5"š5½5Â5É5Ù5ì5ü5H6M6^6y6’6¯6¾6 Î6Ü6&ì6'7;7V7'u77"­7Ð7é7þ7 88-8L8 e8aq8Ó8=Û89,9>9D9V9 i9v9‰9‘9¤9­9½9Î9!ç9" :,:E: `: m:{:Š:¨:·:Ñ:ç:ú:;);E;_;r;Œ;Ÿ;¹;Î;ê; -ù;< < )< -3< ><L<#j<Ž< ­<»<Ø<ø<=.="@=c=+= ­=·=¾=Ý=3ü=0>9>A>Q>c>x>Œ>Ÿ>¾>Ú>ø>?3?G?Z?q?‘?°?DÇ? @%@'<@d@ -l@w@|@‚@.Ÿ@Î@ î@A#A7AIAQA bApA ˆA–A®A$ÄAéABB0BLBdB~B žBªBÁB áBíBÿB)C*=ChC~C ŽC˜C -«C¶C!ÈCêCðC ÷C D D"D7D&QD -xD ƒDDŸD µD ÂD ÏD*ÛDEE%.E TE bE nE+{E§E ·E-ÃEñE F F-FJF2`F“F&¥F#ÌFðFG G@G OG]GbGgGoGG GG]¶G`H&uHœH±HÁH ÐHÞHôHI*IFIcIrI¾{I:JKJkJrJzJ‚J'’JºJÏJíJKK.KJKgK…K¡K½K$×K#üK L(L8LGL ^LlLuL -ˆLh“LCüL@M1IM {M0…M ¶M×MîM,þM*+N4VN‹N“N›N ¢N°NÃNÖNèN÷NO -O O:OMO`OfOvOO ŸO©OºO9ØO,P?P PPZPmP~P(”P)½PçP Q%Q#?QAcQ¥Q ¾QÈQ×QÞQòQR RR R 'R1R:RVR%hR ŽR.šRÉRØRñR S S7SRS hSuSŒS¡S³S»SDÄSJ TTThTpT„T"˜T!»TïÝT>ÍU VVtV ‘W›W£W ²W¼W1ÎWX?X \XhXX’X›X¤X ¾X ÈXÒXâXÿóX óYZZZ.Z=ZFZNZiZ „Z ’ZŸZ·Z ËZ ØZ%åZ [[)[ -:[ E[!O[q[u[&Ž[µ[Æ[Ö[#ç[ \ \!\$6\ [\|\$‘\¶\!Í\ï\]$$]I]$^]ƒ]!š] ¼]*Ý]^^^+0^$\^'^)©^Ó^ó^_Q_hc_SÌ_P `Qq`Ã`7Ê`_aba&~a¥a¾a Ça -Ña=ÜaHbcbyb“b§b¼bËb&æb3 cvAc ¸cÅcØc!öcd.d*Ad,ld™d®d#¾d!âd!e&e1Bete‘e¦e»e(Òeûef0fKfbfyf’f £f ±f ÒfÜf úfg-gCgZgqgŠg§g3Åg3ùg2-h4`h2•h#Èh<ìh)i9iRijiƒi"iÀiØi)òi4jQjij€j‘jªj#ÀjXäj*=khk -qk3|k°kCÅkM lWlwl‘l˜l´lÑlàlïlmm /m=m \mim ~m ‹m—m ªm·m¿mÏmåmnn "n,n3nQn"`n ƒn*n»nÖnænýn(o@o`opo‚o•o²oÐoièo Rpsp"p!°p"Òpõpq;$qr`qÓqæqõq#r+r@rUr -rr}r”r¦r¶r Ïrðrss;sXs"ss -–s¡sµ¹svot æt ôt þt u u(u>u%Zu€u# u-Äu'òuv8vMv$hvv"¬v,Ïv&üv#w@wVw%rw˜w#¸w-Üw' -x2xPxgx&„x «x$Ìx.ñx( yIy hytyŒy©y Äy5Òy-z6zNzlz‹z¨zÁzÝzúz+{C{a{{{§{ Ã{Ñ{(í{|*|D|W|k||—|%²|-Ø|"})}I}b}$z}$Ÿ}!Ä}æ}Cý};A~O}~VÍ~$@Y t€“¬¾Þ@ð*1€ \€j€}€“€¨€ -½€'È€ð€ -$1?$q –,·,ä#‚5‚ S‚ -`‚k‚‚–‚¯‚'É‚ ñ‚5þƒi4„çž„N††9Ն‡@Ò‡˜ˆ˜¬ˆHE‰RŽ‰Iá‰T+Š0€ŠŸ±Š -Q‹v\>ÓŽCçV ->IP Ycr‚ ’ž² -Ê Õ ã"ñ‘ ,‘:‘J‘KQ‘‘µ‘È‘ß‘ü‘’-’C’Z’)x’¢’º’×’ï’/“4“O“c““"œ“¿“1Ü“(”7”P”i”"ˆ”«”Å”$Þ”(•,•A•Z•p•!Œ•®•Æ•Εâ•÷•=–>–D– W–c–t–„–™–³–Ê–Ý– æ–ð–ù–——2 ——S— ë—÷—˜)˜1˜C˜V˜(^˜ ‡˜¨˜!Ƙ%蘙"-™(P™ y™ †™”™ š™¦™ ¿™à™æ™š š )š6š FšRšfš€šš´šÑš ðšýš;›R›=r›!°›Ò›+ä› œ#œ>œNœ ^œjœqœ†œ™œ¢œ²œ$Çœìœ òœÿœ 4FUK2¡7Ô/ ž0<žRmžQÀž£Ÿ9¶ŸðŸ ¡O1¡¤¢(&¤ªO¥_ú¥tZ§%ϧõ¨‘©Ÿ§©GªMª`ª!gª?‰ª8ɪ@¬=C¬>¬>À¬$ÿ¬D$­ i­r -®@}®X¾®‡¯[Ÿ°\û°AX±Ïš±j²;~³þº´´¹µ¼n¶°+·²Ü·&¸”¶¹VKºÙ¢º|»?‚¼&¼hé¼ -R½8]½–½½°½ƽ Û½ç½ î½ü½…¾Ÿ¾¨¾ ¾$оõ¾¿¿9¿K¿\¿{¿‹¿š¿ -®¿¹¿¬È¿uÁ$ˆÁ­Á¾Á×ÁñÁ -Â"%Â$HÂm†¡¾ÂÏÂêÂþÂÃ%Ã=ÃNÃ`ÃdÃlÃI‡Ã?ÑÃKļ]Ä5ÅaPÆ²Æ -ÂÆÍÆßÆ òÆüÆÇÇ0Ç 6Ç @Ç'JÇrÇ-‘ÇA¿ÇÈ!È:ÈIÈ[È%zÈ È·È ÉÈ -ÓÈÞÈ!ïÈÉÉI!É*kÉ –É ¤É±É·ÉÏÉæÉÿÉÊ+Ê.CÊ-rʠʲÊ8ÄÊQýÊ=OËxËÒÌÖÙÌ°ÍJËÍfÎV}ΣÔÎgxЊàÐkÑ`üÑg]ÒšÅÒ‘`ÓŠòÓž}ÔIÕKfÕI²Õ“üÕ“ÖQ$׳v×®*ØÙØ2àØ Ù Ù,Ù@ÙTÙfÙxÙ7zÙ¥²ÙXÚZÚ cÚ4mÚ2¢ÚÂÕÚf˜Û+ÿÛy+Üh¥ÜfÝ1uÝ§Ý ¹ÝÃÝËÝÑÝîÝ - ÞÞ Þ'Þ":Þ0]Þ ŽÞœÞ ¹ÞÆÞÕÞ æÞôÞýÞ'ß@ßRßhß |ß †ßß ¤ß°ß Ãß -ÐßÛßêß íß ùß"à#)à&Mà tà ~àŠà“àœàºàÓàÚàêàá áá!$áFá dápáyáá•áªá²á ÐáÚáíáöá' -â2â Qâ_â -hâsâˆâšâ ©â ¶â ÄâÑâ äâñâãã"ã3ãIãXãkã zã‡ãœã®ã¾ãÎãíãÿã ää"ä8äWäkä‚ä¡ä ·äØäíäå)åEå NåZåaåxå~åå¢å³å¼åËåÞå -çå òåüåæ+æ.æ 7æ Dæ -NæYæ%mæ “æ ¡æ ­æ¹æ Àæ Êæ -Ôæßæææîæõæ ýæçç,ç?ç Xçbçuç}ç†çç­ç%Âç èçôçè è &è2è ;èGè_ènèè’è •è Ÿè­è´èÊèèèðèùè' éC5éyé‹é¦é¬éÁéÐéØé àé îéûé êê +ê9ê JêWêgê zê‡ê ˜ê¤ê­ê¿êÅêËêÝêåê ôêëë+ë4ë<ë CëPë -bëmë uë‚ë ˜ë ¥ë¯ëÂëÕëéëùë ììì !ì+ì<ìOìdìsìì©ìÃìËìáìôì íí7.í fítí}í“í­í.ÈíI÷í9Aî4{î°îÀî%Öîüî ïïï -ï>;ï.zï)©ï Óïßïðï-ð 2ð ?ðLð`ð xð‚ð!‹ð­ð Éð×ðÞðïðñ#ñBñZñ jñ tñ~ñ…ñ”ñ œñ ©ñ µñ#Áñåñ÷ñòò 2ò<ò Cò -MòXòuò •ò £ò ±ò¾òÒòÖòßòâòöòúò óó$ó*óH.ó*wó¢óµóÐóÔó Ùóåó÷ó5ô%Eô3kô$ŸôÄô Íô×ôèôëôóôúôõõ -õ -õ&õ,õ3õEõGTõ4œõ"Ñõ[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-09 23:11+0100 -PO-Revision-Date: 2005-02-09 02:12+0100 -Last-Translator: Bartosz Kosiorek -Language-Team: Polish -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.9.1 - -Niepoprawna opcja "%s" - -Użycie: %s [opcja ...] [plik ...] - - --batch-interpreter - Procedura użyta do przetworzenia poleceÅ„ wsadowych. - --debug-handlers Aktywuje obsÅ‚ugÄ™ analizowania bÅ‚Ä™dów przy mniej groźnych sygnaÅ‚ach. - --display Wykorzystuje podany ekran X. - --dump-gimprc Wypisuje plik gimprc z ustawieniami domyÅ›lnymi. - --no-cpu-accel Nie wykorzystuje specjalnych instrukcji procesora przyÅ›pieszajÄ…cych dziaÅ‚anie. - --no-shm Nie wykorzystuje pamiÄ™ci dzielonej pomiÄ™dzy programem GIMP a wtyczkami. - --pdb-compat-mode - Tryb zgodnoÅ›ci bazy danych procedur (wyÅ‚Ä…czony | wÅ‚Ä…czony | ostrzeżenia). - --session Wykorzystuje alternatywny plik sessionrc. - --stack-trace-mode - WyÅ›wietlenie stosu wywoÅ‚aÅ„ funkcji po otrzymaniu poważnego sygnaÅ‚u (nigdy | pytanie |zawsze). - --system-gimprc Wykorzystuje alternatywny systemowy plik gimprc. - --verbose WyÅ›wietla komunikaty przy uruchamianiu. - -b, --batch Wykonuje polecenia w trybie wsadowym. - -c, --console-messages Wypisuje ostrzeżenia na konsolÄ™ zamiast wyÅ›wietlania w oknie dialogowym. - -d, --no-data Nie wczytuje pÄ™dzli, gradientów, palet, deseni. - -f, --no-fonts Nie Å‚aduje żadnych czcionek. - -g --gimprc Wykorzystuje alternatywny plik konfiguracji gimprc. - -h, --help Wypisuje tÄ™ pomoc. - -i, --no-interface Uruchamia bez interfejsu użytkownika. - -s, --no-splash Nie wyÅ›wietla okna startowego. - -v, --version Wypisuje informacjÄ™ o wersji. -%d warstw%d dpi%d dpi, %s%d warstwostatnich %d minutostatnich %d sekund%d x %d dpi%d x %d dpi, %s%d x %d pikseli%g x %g %s%pKopia kanaÅ‚u %sKanaÅ‚ %s na zaznaczenieKomunikat: %skopia: %smaska %s%s%sKlikniÄ™cie: poszerza zaznaczenie%s%sCiÄ…gniÄ™cie: przesuwa ze Å›cieÅ›nieniem(%0.3f, %0.3f, %0.3f)(Brak)(To okno konsoli zostanie zamkniÄ™te w ciÄ…gu dziesiÄ™ciu sekund) -(Bufor bez nazwy)(Szablon bez nazwy)(Zmienna)(niezmodyfikowany)(niepoprawny napis UTF-8)(zmodyfikowany)(brak)1 warstwa1 warstwaWielokrotność 15 stopni %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)Wykonywanie przeksztaÅ‚cenia 2D...4:1 (400%)8:1 (800%)<%s><>Aby osiÄ…gnąć optymalnÄ… wydajność programu GIMP, może być konieczne dostrojenie niektórych ustawieÅ„.GIMP - program GNU do obróbki obrazów -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis oraz grupa twórców programu GIMP.Nie można przeanalizować zawartoÅ›ci pliku z poradami programu GIMP!Nie można odnaleźć pliku z poradami progamu GIMP!Plik o nazwie "%s" już istnieje.Dod_aj do zaznaczeniaKÄ…_tInformacje o programie GIMPOperacjaA_ktywuj obraz z kursoremAktywne filtryNadpróbkowanie adaptywneDodanieDodaj kanaÅ‚ a_lfaDodanie kanaÅ‚u alfaDodanie zaczepuDodanie kanaÅ‚uDodanie koloru do palety kolorówDodaj prowadnicÄ™: Dodanie prowadnicDodanie prowadnicy poziomejDodaj _maskÄ™ warstwy...Dodanie warstwyDodanie maski warstwyDodanie Å›cieżkiDodanie pociÄ…gniÄ™ciaDodanie warstwy tekstowejDodanie prowadnicy pionowejDodanie maski do warstwyDodanie koloru z koloru tÅ‚aDodanie koloru z koloru pierwszoplanowegoDodanie maski warstwyUmieszczanie tekstu na obrazieDodaje bieżący kolor do historii kolorówDodaje zaznaczony filtr do listy aktywnych filtrówDodaj do palety %sDodaje do bieżącego zaznaczeniaDodawanie motywu "%s" (%s) -SumaDodatkowe urzÄ…dzenia sterujÄ…ceModyfikacja jasnoÅ›ci i kontrastuModyfikacja balansu kolorówModyfikacja krzywych kolorówModyfikacja poziomów kolorówModyfikacja jasnoÅ›ci i kontrastuModyfikacja balansu kolorówModyfikacja krzywych kolorówModyfikacja poziomów kolorówModyfikacja odcienia / jasnoÅ›ci / nasyceniaModyfikacja odcienia i nasyceniaDopasowuje poziomy automatycznieDopasowanieOpcje zaawansowaneElement:UwzglÄ™dniany obszar %sAerografAerograf ze zmiennym ciÅ›nieniemKanaÅ‚ alfa na z_aznaczenieWyrównanyWyrównanieWszystkie kanaÅ‚yWszystkie plikiWszystkie pliki (*.*)Wszystkie dane obrazów oraz historii operacji, które nie zmieszczÄ… siÄ™ w cache kafli, zostanÄ… zapisane w pliku wymiany. Plik ten powinien być umieszczony w lokalnym systemie plików z wystarczajÄ…cÄ… iloÅ›ciÄ… wolnego miejsca (setki megabajtów). W systemach uniksowych dobrym wyborem jest zazwyczaj systemowy katalog tymczasowy ("/tmp" lub "/var/tmp").Pozwala na wypeÅ‚nianie caÅ‚kowicie przezroczystych obszarówPozwala na zaznaczanie caÅ‚kowicie przezroczystych obszarówDopuszczalne powiÄ™kszanie %sAlfaZaznaczenie z kanaÅ‚u alfaAlfa:Obraz o wybranym rozmiarze wymaga iloÅ›ci pamiÄ™ci przekraczajÄ…cej wartość ustalonÄ… w oknie preferencji jako "Maksymalny rozmiar nowego obrazu" (aktualnie: %s).A_nimacjaZakotwiczenie oderwanego zaznaczeniaZakotwiczenie oderwanego zaznaczeniaZakotwiczenie oderwanego zaznaczeniaKÄ…t:Cofanie wycierania %sWygÅ‚adzajWyglÄ…dZastosowanie maski warstwyZastos_uj maskÄ™ warstwyProgowanieZastosowanie maski warstwyCzy na pewno chcesz usunąć element "%s" z listy i z dysku?Czy na pewno chcesz usunąć szablon "%s" z listy i z dysku?_Zgodnie z preferencjamiPowoduje konieczność potwierdzania zamkniÄ™cia każdego niezapisanego obrazu.Proporcje:Współczynnik proporcji:DoÅ‚Ä…czenie danych pasożytniczychDoÅ‚Ä…czenie do obrazu danych pasożytniczychDoÅ‚Ä…czenie do elementu danych pasożytniczychDoÅ‚Ä…czenie danych pasożytniczychAutor:Autom.Podążaj za _aktywnym obrazemAutomatycznie zmniejszajZmniejszaj zaznaczenieDopasuj rozmiar oknaÅadowanieRozpoznanie automatyczneDostÄ™pne filtryDostÄ™pne typy:Kolor tÅ‚aJas_ność i kontrastB_uforyTÅ‚oKolor tÅ‚aKolor tÅ‚a ustawiony na:TÅ‚o: %d, %d, %dWstecz (korekcyjny)Powoduje ustalanie wypeÅ‚nianego obszaru w oparciu o wszystkie widoczne warstwyOpiera zaznaczenie na wszystkich widocznych warstwachZ tyÅ‚uÅšciÄ™ty skoÅ›nieDwuliniowyCzarny i biaÅ‚yCzarny:Kolory punktów koÅ„_cowych gradientu_GradientGradient_Krycie punktów koÅ„cowych gradientuGradient: Gradient: NiedostÄ™pny w trybach indeksowanych.Tworzenie gradientu...NiebieskiNiebieski:RozmywanieRozmywanie lub wyostrzanieOb_ramuj...Obramowanie kanaÅ‚uObramowanie zaznaczeniaOdlegÅ‚ość obramowania od zaznaczeniaJasność i kontrastNie można modyfikować jasnoÅ›ci i kontrastu na warstwach indeksowanych.PÄ™dzelEdytor pÄ™dzliFoldery z pÄ™dzlamiGUI wyboru pÄ™dzlaPÄ™dzel:PÄ™dzleMenu pÄ™dzliWypeÅ‚nienie kubeÅ‚kiemBuforyMenu buforówWypalaniePniakWedÅ‚ug rozszerzeniaPrzywrócenie obrazu do stanu zapisanego w pliku spowoduje utratÄ™ wszystkich dokonanych w nim zmian, wraz z informacjami o historii operacji.CMYKWy_kalibruj...Po_branie koloru_Kolumny:ÅÄ…_czenieKalibracja rozdzielczoÅ›ci monitoraNie można cofnąć operacji %sWy_miary płótna...AnulujUsuÅ„ prowadnicÄ™Nie można dodać maski warstwy o wymiarach różnych od wymiarów warstwy.Nie można dodać maski warstwy do warstwy bez kanaÅ‚u alfa.Nie można dodać maski warstwy do warstwy, która nie jest częściÄ… obrazu.Nie można zakotwiczyć warstwy, ponieważ nie jest ona oderwanym zaznaczeniem.Nie można dokonać konwersji na paletÄ™ z wiÄ™cej niż 256 kolorami.Nie można utworzyć nowej warstwy z oderwanego zaznaczenia, ponieważ należy ono do maski warstwy lub kanaÅ‚u.Nie można utworzyć folderu "%s": %sNie można utworzyć podglÄ…duNie można przeprowadzić kadrowania, gdyż bieżące zaznaczenie jest puste.Nie można rozwinąć ${%s}Nie można oderwać zaznaczenia, ponieważ zaznaczony obszar jest pusty.Nie można podnieść warstwy bez kanaÅ‚u alfa.Nie można zapisać. Brak zaznaczenia.Nie można rysować na obszarze pustego kanaÅ‚u.Nie można namalować pustej Å›cieżki.Wymiary płótnaWyglÄ…d wyÅ›ciół_ki płótna:Centruj X:Centruj Y:WyÅ›rodkowanyZmiana koloru tÅ‚aZmiana elementu palety kolorówZmiana aktywnego koloruZmiana rozdzielczoÅ›ci obrazuZmiana jednostki obrazuZmieÅ„ rozmiar wydruku:Zmieniaj bieżącÄ… warstwÄ™ lub Å›cieżkÄ™Zmiana koloru tÅ‚a siatkiZmiana koloru pierwszoplanowego siatkiZmiana palety indeksowanejZmiana perspektywy warstwy lub zaznaczeniaNie można zmienić skrótu.KanaÅ‚Atrybuty kanaÅ‚uNazwa kanaÅ‚u:Nie można bardziej obniżyć kanaÅ‚u.Nie można bardziej podnieść kanaÅ‚u.Kolor kanaÅ‚uKanaÅ‚ jest już na dnie.KanaÅ‚ jest już na wierzchu.KanaÅ‚ na _zaznaczenieKanaÅ‚ na zaznaczenieKanaÅ‚ na zaznaczenieKanaÅ‚:KanaÅ‚yMenu kanałów_Rozmiar pola szachownicy:Wybór stylu rysowaniaKolistyWy_czyśćWyczyśćWyczyszczenie kanaÅ‚uWyczyszczenie historii operacjiWyczyszczenie caÅ‚ego tekstuWyczyszczenie informacji o bÅ‚Ä™dachWyczyszczenie historii operacjiKliknij "Kontynuuj", aby zaakceptować powyższe ustawienia.Kliknij przycisk "Kontynuuj" aby utworzyć swój spersonalizowany folder programu GIMP.Aby rozpocząć spersonalizowanÄ… instalacjÄ™ programu GIMP, kliknij "Kontynuuj".Aby kontynuować instalacjÄ™ spersonalizowanÄ…, kliknij "Kontynuuj".KlikniÄ™cie Å‚Ä…czy zaczep z zaznaczonym punktem koÅ„cowym.KlikniÄ™cie tworzy nowy zaczep. (spróbuj użyć klawisza SHIFT)KlikniÄ™cie tworzy nowÄ… skÅ‚adowÄ… Å›cieżki.KlikniÄ™cie tworzy nowÄ… Å›cieżkÄ™.Kliknij aby utworzyć podglÄ…dKlikniÄ™cie usuwa zaczep.KlikniÄ™cie wstawia do Å›cieżki zaczep. (spróbuj użyć klawisza SHIFT)KlikniÄ™cie ustawia wÄ™zeÅ‚ jako kanciasty.KlikniÄ™cie otwiera Å›cieżkÄ™.KlikniÄ™cie wybiera modyfikowanÄ… Å›cieżkÄ™.KlikniÄ™cie odÅ›wieża podglÄ…d -%s KlikniÄ™cie wymusza odÅ›wieżenie podglÄ…du, nawet, jeÅ›li jest aktualny.KlikniÄ™cie i przeciÄ…gniÄ™cie zmienia ksztaÅ‚t krzywej. (SHIFT - symetrycznie)KlikniÄ™cie i przeciÄ…gniÄ™cie przemieszcza zaczep.KlikniÄ™cie i przeciÄ…gniÄ™cie przemieszcza zaczepy.KlikniÄ™cie i przeciÄ…gniÄ™cie przemieszcza skÅ‚adowÄ…. (spróbuj użyć klawisza SHIFT)KlikniÄ™cie i przeciÄ…gniÄ™cie przemieszcza uchwyt. (spróbuj użyć klawisza SHIFT)KlikniÄ™cie i przeciÄ…gniÄ™cie przemieszcza Å›cieżkÄ™.KlikniÄ™cie: zaznaczaKlikniÄ™cie: zaznacza CiÄ…gniÄ™cie: przesuwaPrzytnij wynikSchowekPrzyciÄ™ta do najniższej warstwyPrzyciÄ™ta do obrazuKlonowanieZamkniÄ™cie obrazu "%s"Zamknij wszystkie zakÅ‚adkiZamknąć wszystkie zakÅ‚adki?Zamknij zakÅ‚adkÄ™S_kopiuj Å›cieżkÄ™Kolo_ryKolorBalans kolorówFiltry wyÅ›wietlania kolorówPobranie koloruInformacje o zakraplaczu_Balans kolorów..._Ditherowanie kolorów:Zmiana balansu koloru jest możliwa tylko na warstwach RGB.Wymazanie koloruIndeks koloru:Kolor:Pa_leta kolorówPrz_estrzeÅ„ kolorów:_Barwienie..._Typ kolorowania segmentu_Typ kolorowania zaznaczeniaBarwienieBarwienie obrazu jest możliwe tylko na warstwach RGB.Barwienie obrazuBarwienie obrazuPaleta kolorówEdytor palety kolorówMenu palety kolorówKolumny:Ko_mentarz:Komentarz_Kontrast:Roz_mywanie lub wyostrzanieKonfiguracja filtrów wyÅ›wietlania kolorów_Konfiguruj rozbudowane urzÄ…dzenia wejÅ›ciowe...Ko_nfiguruj siatkÄ™...Konfiguracja siatkiKonfiguracja siatki obrazuKonfiguracja skrótów klawiszowych_Konfiguruj skróty klawiszowe...Konfiguracja zaznaczonego filtruKonfiguracja zaznaczonego filtru: %sPotwierdzenie rozmiaru obrazuPotwierdzenie skalowaniaPotwierdzenie modyfikacji tekstuPo_twierdzaj zamkniÄ™cie niezapisanych obrazówKonflikt pomiÄ™dzy skrótamiStożkowy (asym.)Stożkowy (sym.)PoÅ‚Ä…czenie pociÄ…gnięćStaÅ‚eOgraniczeniaKontekstWskaźnik zmieniajÄ…cy swój ksztaÅ‚t w zależnoÅ›ci od kontekstu, w jakim ma zostać użyty, znacznie uÅ‚atwia pracÄ™. Możliwość ta jest domyÅ›lnie wykorzystywana, jednak wiąże siÄ™ ona z dodatkowym zużyciem zasobów, z którego być może warto zrezygnować.KontynuujWspółautorzy programuKontrastZmiana typu grzebietuKonwersja obrazu na odcienie szaroÅ›ciKonwersja obrazu na tryb indeksowanyKonwersja obrazu do trybu indeksowanegoKonwersja obrazu na format RGBKonwersja obrazuKonwersja obrazu na tryb indeksowany (2. etap)...Konwersja obrazu na tryb indeksowany (3. etap)...Konwersja obrazu na tryb indeksowany...Rozmywanie lub wyostrzanieTyp operacji %sSkopiuj nazwanyKopiuj _widoczneKopiowanie pliku "%s" z "%s"...Prawa autorskie:Uszkodzony segment %d w pliku "%s" z gradientem.Nie można utworzyć "%s": %sNie można utworzyć pliku tymczasowego dla pliku "%s": %sNie można usunąć "%s": %sNie można odnaleźć przeglÄ…darki pomocy programu GIMP.Nie można otworzyć "%s" do odczytu: %sNie można otworzyć "%s" do zapisu: %sNie można otworzyć pliku miniaturki "%s": %sNie można odczytać %d bajtów z pliku "%s": %sNie można przeglÄ…dać pliku XCF: %sNie można uruchomić wtyczki przeglÄ…darki pomocy programu GIMP.Liczność:_Kadruj warstwÄ™Utwórz nowy _dokUtworzenie nowego szablonuUtworzenie nowego obrazuNowa warstwaUtworzenie nowego szablonuNowy widok obrazuTworzy nowy obraz w oparciu o wybrany szablonNowy szablonProgram do tworzenia oraz obróbki obrazów i fotografiiTworzenie i modyfikowanie Å›cieżekUtwórz z tekstu Å›cieżkÄ™Utwórz zaznaczenie ze Å›cieżkiTworzenie podglÄ…du ...Tworzenie folderu "%s"...KadrowanieKadrowanie i zmiana wymiarówInformacje o kadrowaniu i zmianie wymiarówKadrowanie obrazuWykadrowanie warstwyKadrowanie obrazuKadrowanie lub zmiana wymiarów obrazuKadrowanie:Tylko krzyżyk_Wytnij_Wytnij nazwany...SzeÅ›ciennaAktualny _stanAktualna wysokość:Tylko bieżąca warstwaAktualny stanAktualna szerokość:Wskaźnik_Tryb wskaźnikaWyglÄ…d wskaźnika:Typ krzywejKrzyweNie można zmieniać krzywych na warstwach indeksowanych.DowolnieDowolny kolorDowolny gradientWybrany kolor wyÅ›ciółki płótna:WyciÄ™cieWytnij nazwanyNiebieskozielonyNiebieskozielony:_Duplikuj pÄ™dzel_Duplikuj kanaÅ‚_Duplikuj gradient_Duplikuj warstwÄ™_Duplikuj paletÄ™_Duplikuj Å›cieżkÄ™_Duplikuj deseÅ„_Duplikuj szablon...Kolor ciemnego polaTylko ciemniejszeKreska kropka kropka...Kreska kropka...Wzór kreski:PoczÄ…tkowe ustawienie kreski:KreskowanaData:Åšledzenie wykonaniaDomyÅ›lny wyglÄ…d w trybie peÅ‚noekranowymDomyÅ›lny wyglÄ…d w trybie zwykÅ‚ymDomyÅ›lna siatkaDomyÅ›lna siatka obrazuDomyÅ›lna _interpolacja:DomyÅ›lny rozmiar podglÄ…du _kanaÅ‚u lub warstwy:DomyÅ›lny p_róg:UsuniÄ™cie zaczepuUsuniÄ™cie zaczepówUsuÅ„ mas_kÄ™ warstwyUsuniÄ™cie maski warstwyUsuniÄ™cie obiektuUsuniÄ™cie odcinkaUsuniÄ™cie szablonuUsuniÄ™cie pÄ™dzlaUsuniÄ™cie kanaÅ‚uUsuniÄ™cie koloruUsuniÄ™cie gradientuUsuniÄ™cie warstwyUsuniÄ™cie maski warstwyUsuniÄ™cie paletyUsuniÄ™cie Å›cieżkiUsuniÄ™cie deseniaUsuniÄ™cie wybranego zestawu opcji...UsuniÄ™cie zaznaczonego buforaUsuniÄ™cie wybranego szablonuUsuniÄ™cie obrazuUsuniÄ™cie wektorówNie można usunąć pliku "%s": %sGÄ™ste punktyDesaturacjaDesaturacja jest możliwa tylko na warstwach RGB.OpisProjektowanieStan urzÄ…dzeniaUrzÄ…dzeniaOkna dialogoweMenu okien dialogowychRombowyRóżnicaBezpoÅ›redni kolorWyÅ‚Ä…czenie maski warstwyWyÅ‚Ä…czenie szybkiej maskiPorzucenie informacji o tekÅ›cieWyÅ›wietlanieNawigacja obrazem_Filtry wyÅ›wietlania...Procedury obsÅ‚ugi widoków obrazówTyp wyÅ›wietlania:WyÅ›wietlanie [%0.6f, %0.6f]PrzenikanieOdlegÅ‚ość:OdlegÅ‚ość: %0.6fDitheringDzielenieUtworzenie _nowego zestawu ustawieÅ„ spersonalizowanychCzy na pewno chcesz przywrócić domyÅ›lne wartoÅ›ci opcji dla wszystkich filtrów?Czy na pewno chcesz przywrócić domyÅ›lne wartoÅ›ci opcji dla wszystkich narzÄ™dzi?Czy chcesz zastÄ…pić istniejÄ…cy plik zapisywanym wÅ‚aÅ›nie obrazem?_Nie zapisujElement dokowalnyHi_storia dokumentówHistoria dokumentówDokumentyMenu dokumentówRozjaÅ›_nianie lub wypalanieRozjaÅ›nianieRozjaÅ›nianie lub wypalanie pociÄ…gnięćRozjaÅ›nianie lub wypalaniePodwójnie kreskowanaPrzeciÄ…gniÄ™cie zaczepuPrzeciÄ…gniÄ™cie zaczepówPrzeciÄ…gniÄ™cie krzywejPrzeciÄ…gniÄ™cie uchwytuPrzeciÄ…gniÄ™cie Å›cieżkiCiÄ…gniÄ™cie: przesuwaRysowanie stalówkÄ…Obszar rysowaniaZmiana obszaru rysowaniaProcedury obsÅ‚ugi obszarów rysowaniaUpuszczenie nowej warstwyUpuszczenie nowej Å›cieżkiFunkcje tekstowe nie sÄ… dostÄ™pne z powodu braku czcionek.Wypisywanie zdarzeÅ„ pochodzÄ…cych od urzÄ…dzeniaUtworzenie duplikatu pÄ™dzlaUtworzenie duplikatu kanaÅ‚uUtworzenie duplikatu gradientuUtworzenie duplikatu warstwyUtworzenie duplikatu paletyUtworzenie duplikatu Å›cieżkiUtworzenie duplikatu deseniaUtworzenie duplikatu zaznaczonego szablonuEEK: Nie można cofnąć_Eksportuj Å›cieżkÄ™..._Bardzo maÅ‚yZachowanie przy krawÄ™dzi_Wykrywanie krawÄ™dziEdycjaModyfikacja atrybutów kanaÅ‚uModyfikacja koloru kanaÅ‚uModyfikacja koloru elementu paletyModyfikacja elementu palety kolorówModyfikacja atrybutów warstwyModyfikacja maski warstwyTryb edycjiModyfikacja koloru z paletyModyfikacja atrybutów Å›cieżkiModyfikacja atrybutów szybkiej maskiModyfikacja koloru szybkiej maskiModyfikacja szablonuModyfikacja pÄ™dzlaModyfikacja atrybutów kanaÅ‚uModyfikacja koloruModyfikacja elementu palety o indeksie %dModyfikacja gradientuModyfikacja atrybutów warstwyModyfikacja paletyModyfikacja atrybutów Å›cieżkiModyfikacja deseniaProcedury edycjiModyfikacja wybranego szablonuZaznaczenie eliptycznePusty kanaÅ‚Pusta warstwaPusta Å›cieżkaPusta warstwa tekstowaPusta nazwa zmiennej w pliku %s ze Å›rodowiskiem_UwydatnianieWÅ‚Ä…czenie szybkiej maskiD_ithering przezroczystoÅ›ciWÅ‚Ä…cz urzÄ…dzeniePowoduje wyÅ›wietlanie porad po uruchomieniu programu GIMP.Powoduje wyÅ›wietlanie podpowiedzi.OgromnyWprowadź nazwÄ™ poÅ‚Ä…czonej paletyWprowadź nazwÄ™ zapisywanych opcjiWprowadź nazwÄ™ buforaWprowadź nazwÄ™ szablonuWprowadź nowÄ… nazwÄ™ zapisanych opcjiWprowadź poÅ‚ożenie (URI):ÅšrodowiskoFoldery ze zmiennymi Å›rodowiskowymiZrównanieZrównywanie nie jest możliwe na warstwach indeksowanych.Wycieranie do tÅ‚a lub przezroczystoÅ›ciGumka_Konsola bÅ‚Ä™dówKonsola bÅ‚Ä™dówMenu konsoli bÅ‚Ä™dówBÅ‚Ä…d przy zapisywaniu pliku XCF: %sPrzy analizie pliku "%s" napotkano bÅ‚Ä…d w wierszu %d: %sPrzy odczycie z pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d: %sPrzy odczycie z pliku "%s" z pÄ™dzlami: %sPrzy zapisie do pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d: %sBÅ‚Ä…d przy zapisie pliku w formacie XCF: %sPrzy zapisywaniu do pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d: -%sPrzy zapisie do pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d: %sPrzy zapisie do pliku tymczasowego dla pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d: %s -Nie utworzono pliku.Przy zapisie do pliku tymczasowego dla pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d: %s -Oryginalny plik pozostaÅ‚ niezmieniony.BÅ‚Ä™dyZdarzenieB_ardzo wielkiRozszerzona w razie potrzebyEksport Å›cieżki do pliku SVGEksport wszystkich Å›cieżek zawartych w obrazieEksport bieżącej Å›cieżkiIntensywność:Rozbudowane urzÄ…dzenia wejÅ›cioweRozszerzeniaKolor pierwszoplanowyKolor pierwszoplanowy na kolor tÅ‚a (odcieÅ„ HSV prawoskrÄ™tnie)Kolor pierwszoplanowy na kolor tÅ‚a (HSV lewoskrÄ™tnie)Kolor pierwszoplanowy na kolor tÅ‚a (RGB)Kolor pierwszoplanowy na kolor tÅ‚a (RGB)Kolor pierwszoplanowy na przezroczystośćKolor pierwszoplanowy na przezroczystośćKoloryKolor pierwszoplanowy/tÅ‚aUwolnienie oderwanego zaznaczeniaUsztywnienie oderwanego zaznaczeniaOderwane zaznaczenie do warstwyD_opasuj płótno do warstwZanikanieNie można zaimportować gradientów z pliku "%s": %sNie można zaimportować Å›cieżek z pliku "%s": %sFantazyjnyBÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: Rozmiar pliku = 0 BajtówPoważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: plik wydaje siÄ™ być obciÄ™ty.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: plik jest uszkodzony.BÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: Wysokość = 0.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: to nie jest plik z pÄ™dzlami programu GIMP.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: nieznany ksztaÅ‚t pÄ™dzla programu GIMP.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: nieznana wersja pliku z pÄ™dzlami programu GIMP.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: nieznana gÅ‚Ä™bia %d.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: nieznana wersja %d.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: NieobsÅ‚ugiwana gÅ‚Ä™bia pÄ™dzla (%d). -PÄ™dzle programu GIMP muszÄ… być zapisane albo w odcieniach szaroÅ›ci albo w formacie RGBA.BÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z pÄ™dzlami: Szerokość = 0.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z gradientem: plik jest uszkodzony.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z gradientem: to nie jest plik z gradientem programu GIMP.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z paletÄ…: brak nagłówka identyfikacyjnego.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z paletÄ…: brak nagłówka identyfikacyjnego. -Być może plik wymaga konwersji z DOS-a.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z paletÄ…: bÅ‚Ä…d przy odczycie wiersza %d.Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z deseniami: nie można odczytać %d bajtów: %sPoważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z deseniami: nieznana wersja formatu desenia (%d).Poważny bÅ‚Ä…d przy analizie skÅ‚adniowej pliku "%s" z deseniami: nieobsÅ‚ugiwana gÅ‚Ä™bia desenia (%d). -Desenie programu GIMP muszÄ… być zapisane albo w odcieniach szaroÅ›ci albo w formacie RGB.Z_aokrÄ…gl...ZmiÄ™kczenie kanaÅ‚uZaokrÄ…gla krawÄ™dzieZaokrÄ…glaj krawÄ™dzieZaokrÄ…gl krawÄ™dzie zaznaczenia oPlikO_kno wyboru plikuOperacje na plikachTyp plikuPlik istniejePlik jest obciÄ™tyWypeÅ‚nienie kanaÅ‚uKrycie wypeÅ‚nienia:Typ wypeÅ‚nienia %sPodobne koloryZ obszarami przezroczystymiCaÅ‚e zaznaczenieWypeÅ‚nienie kolorem tÅ‚aWypeÅ‚nij kolorem _tÅ‚aWypeÅ‚nienie kolorem pierwszoplanowymWypeÅ‚nij _deseniemWypeÅ‚nienie deseniemWypeÅ‚nienie przezroczystoÅ›ciÄ…WypeÅ‚nienie biaÅ‚ym koloremWypeÅ‚nij _kolorem pierwszoplanowymWypeÅ‚nienie kolorem _tÅ‚aWypeÅ‚nianie gradientem koloruWypeÅ‚nianie kolorem lub deseniemWypeÅ‚niony_FiltryWynikowa, poÅ‚Ä…czona warstwa powinna być:Odnajdywanie ciÄ…gÅ‚ych obszarówWyszukiwanie podobnych kolorówDopasuj powiÄ™kszenie do oknaCaÅ‚y obraz w oknieDopasowanie powiÄ™kszenia do oknaDopasowanie do oknaStaÅ‚e proporcjeStaÅ‚y rozmiarSpÅ‚aszczenie obrazuOdbicieOdbicie kanaÅ‚uOdbicie warstwyOdbicie Å›cieżkiOdbicie warstwy tekstowejTyp odbicia %sOdbij po_ziomoOdbij pio_nowoOdbicie obrazuOdbijanie warstwy lub zaznaczeniaOdbijanie...Odbijanie...Oderwanie zaznaczeniaOderwanie zaznaczeniaOderwana warstwaOderwane zaznaczenie -(%s)Oderwane zaznaczenie na warstwÄ™Oderwane zaznaczenie na warstwÄ™Oderwane zaznaczeniaFloyda-Steinberga (zwykÅ‚y)Floyda-Steinberga (ograniczone zlewanie kolorów)Aktywowanie okienFolderFolderyFoldery z czcionkamiGUI wyboru czcionkiCzcionka:CzcionkiMenu czcionekAby instalacja programu GIMP przebiegÅ‚a poprawnie, musi zostać utworzony folder o nazwie "%s".Tylko automatyczny hintingKolor pierwszoplanowyKolor pierwszoplanowy oraz tÅ‚a. Czarny lub biaÅ‚y kwadrat przywraca pierwotne kolory. StrzaÅ‚ki zamieniajÄ… kolory. Dwukrotne klikniÄ™cie koloru otwiera okno wyboru koloru.Kolor pierwszoplanowyKolor pierwszoplanowy ustawiony na:Kolor pierwszoplanowy: %d, %d, %dNaprzód (tradycyjny)Ze Å›_cieżkiZaznaczenie odrÄ™czneZaznaczenie odrÄ™czneOdrÄ™cznaZ _motywuPobieraj rozdzielczość od _systemu okien (Aktualnie %d x %d dpi)Od lewej do prawejOd prawej do lewejZ zaznaczeniaZ motywuZaznaczenie roz_myteP_eÅ‚ny ekranZaznaczenie rozmyteGIMPRozszerzenie programu GIMPKomunikat programu GIMPOptymalizacja wydajnoÅ›ci -programu GIMPWtyczka programu GIMPUruchamianie programu GIMPEdytor tekstowy programu GIMPPorada dnia programu GIMPSpersonalizowana instalacja programu GIMPObraz XCF programu GIMPProgram GIMP nie może zainicjować interfejsu graficznego. -Upewnij siÄ™, że ustawienie Å›rodowiska wyÅ›wietlania jest poprawne.PrzeglÄ…darka pomocy programu GIMPProgram GIMP nie zostaÅ‚ jeszcze zainstalowany dla bieżącego użytkownika. -Ze wzglÄ™du na użycie opcji "--no-interface" pominiÄ™to instalacjÄ™ -spersonalizowanÄ… programu. Aby wykonać tÄ™ instalacjÄ™, należy uruchomić program -GIMP bez opcji "--no-interface".GIMP wykorzystuje ograniczonÄ… ilość pamiÄ™ci do przechowywania danych obrazu. Jest to tak zwany "Cache kafli". Należy dopasować jego rozmiar do wielkoÅ›ci dostÄ™pnej pamiÄ™ci, uwzglÄ™dniajÄ…c przy tym pamięć wykorzystywanÄ… przez inne uruchomione procesy.GIMP wykorzystuje dodatkowy plik gtkrc, dziÄ™ki czemu możliwe jest ustawienie jego wyglÄ…du niezależnie od innych aplikacji GTK.Wersja programu GIMPProgram GIMP wyÅ›wietli ostrzeżenie jeżeli ilość pamiÄ™ci niezbÄ™dna do utworzenia obrazu przekroczy podanÄ… tutaj wartość. GammaOgólneUstala minimalnÄ… liczbÄ™ kolorów systemowych, zajmowanych przez program GIMP. Ustawienie odnosi siÄ™ tylko do ekranów 8-bitowych.Wygenerowana optymalna paletaPobieranie rozdzielczoÅ›ci monitoraGigantycznyProcedury gimprcEfekty _szkÅ‚aGradientEdytor gradientówMenu edytora gradientówFoldery z gradientamiKolor lewego punktu koÅ„cowego segmentu gradientuKolor prawego punktu koÅ„cowego segmentu gradientuGUI wyboru gradientuPlik '%s' z gradientem jest nieprawidÅ‚owy: Segmenty nie zawierajÄ… siÄ™ w przedziale 0-1.Gradient:GradientyMenu gradientówWydobycie ziarnaPoÅ‚Ä…czenie ziarnaSzaryOdcienie szaroÅ›ciZielonyZielony:SiatkaOdstÄ™p miÄ™dzy liniami siatkiPowiÄ™kszenie kanaÅ‚uPowiÄ™kszenie zaznaczeniaStopieÅ„ powiÄ™kszenia zaznaczeniaProwadnicaPrzyciÄ…gaj do prowadnic i siatkiProcedury prowadnicHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odcieÅ„ _lewoskrÄ™tnie)HSV (odcieÅ„ p_rawoskrÄ™tnie)Notacja HTML-owa:_Wysokość:Używana prz_eglÄ…darka pomocy:Pozycja uchwytu: %0.6fTwarda krawÄ™dźTwarde Å›wiatÅ‚oTwardośćTwardość:WysokośćWysokość: PomocPrzeglÄ…darka pomocySystem pomocyNie można uruchomić przeglÄ…darki pomocyNie odnaleziono przeglÄ…darki pomocyProcedury pomocyHex:ÅšwiatÅ‚aPodpowiedź typu okna dla _doków:Podpowiedź typu okna dla _narzÄ™dziówki:HintingHinting wpÅ‚ywa przy niewielkich rozmiarach znaków na ksztaÅ‚t czcionki, tak aby przy rasteryzacji powstawaÅ‚a bitmapa lepszej jakoÅ›ci.Histogra_mHistogramSkala histogramuHistoriaPoziomoPoziome przesuniÄ™cie pierwszej linii siatki; może być liczbÄ… ujemnÄ….Poziome odstÄ™py pomiÄ™dzy liniami siatki.Ilość wyÅ›wietlanych w menu "Plik" nazw plików z ostatnio otwieranymi obrazami.OdcieÅ„OdcieÅ„ i nasycenieZmiany odcienia i nasycenia kolorów sÄ… możliwe tylko na warstwach RGB.Odc_ieÅ„ i nasycenie...Odc.:PotężnyI_kona i tekstO_braz_Importuj Å›cieżkÄ™...I_nterpolacja:Ok_res:IkonaIkona i opisIkona i tekstJeÅ›li dostÄ™pne sÄ… podpowiedzi dotyczÄ…ce rasteryzacji doÅ‚Ä…czone do czcionki, wówczas GIMP z nich korzysta. Możliwe jest jednak korzystanie wyÅ‚Ä…cznie ze sposobu hintingu wbudowanego w program.Powoduje, że narzÄ™dzie przesuwania zmienia aktywnÄ… warstwÄ™ lub Å›cieżkÄ™ z chwilÄ… jej uchwycenia. Zachowanie to wystÄ™powaÅ‚o jako domyÅ›lne w starszych wersjach programu.JeÅ›li zrezygnujesz z zapisania obrazu, zostanÄ… utracone zmiany z %s.ZakoÅ„czenie dziaÅ‚ania programu spowoduje utracenie tych zmian.Niepoprawna nazwa zmiennej w pliku %s ze Å›rodowiskiem: %sObrazObraz + siatkaEdytor obrazuInformacje o obrazieMenu obrazuWymiary obrazuFormat opisu na pasku stanu obrazuSzablony obrazówMiniaturki obrazowFormat tytuÅ‚u i opisu stanuFormat tytuÅ‚u obrazuWyglÄ…d okna z obrazemOkna z obrazamiObraz nie zawiera żadnych widocznych warstwPlik z obrazemMaska obrazuRozdzielczość obrazu przekracza dopuszczalny zakres. Użyto rozdzielczoÅ›ci domyÅ›lnej.Wymiary obrazuObrazTyp obrazuObrazyMenu obrazówOpcje importuImport paletyImport Å›cieżekImport Å›cieżek z pliku SVGImport nowej paletyImport paletyImport Å›cieżekZaimportowana Å›cieżkaSta_lówkaIn_wersja_Inwersja maskiPrzyrostoweWciÄ™cie:WciÄ™cie pierwszego wierszaIndeks:IndeksowanyTryb indeksowanyKonwersja do trybu indeksowanegoWarstwy w trybie indeksowanym sÄ… zawsze skalowane bez interpolacji. Wybrany typ interpolacji wpÅ‚ynie tylko na skalowanie kanałów i masek.Okno informacyjnePoczÄ…_tkowy współczynnik powiÄ™kszenia:PoczÄ…tkowa maska warstwy:Inicjowanie wtyczekInicjowanie wtyczki: "%s" -StalówkaOsadzony obiekt pixbufUrzÄ…dzenia sterujÄ…ceUrzÄ…dzenia wejÅ›ciowePoziomy wejÅ›cioweWstawienie zaczepuInstalowanie prywatnej palety kolorów. Opcja jest przydatna w przypadku pracy na ekranie w trybie 8-bitowym (256-kolorowym).Instalacja nie powiodÅ‚a siÄ™. Skontaktuj siÄ™ z administratorem systemu.Instalacja przebiegÅ‚a pomyÅ›lnie. Aby kontynuować, kliknij przycisk "Kontynuuj".StaÅ‚e odÅ›wieżanieInteligentne _nożyceIntensywność: %0.3f Krycie: %0.3fInterfejsWewnÄ™trzna procedura programu GIMPWewnÄ™trzne proceduryInterpolacja:PrzeciÄ™cieCzęść wspólna z bieżącym zaznaczeniemPrzeciÄ™cia (krzyżyki)PrzeciÄ™cia (punkty)Niepoprawny UTF-8Niepoprawne dane UTF-8 w pliku "%s".Niepoprawne ciÄ…g znaków UTF-8 w pliku XCFNiepoprawny napis UTF-8 w pliku z pÄ™dzlami "%s".Niepoprawny napis UTF-8 w pliku "%s" z gradientem.Niepoprawny napis UTF-8 w pliku z paletÄ… "%s".Niepoprawny napis UTF-8 w pliku z deseniami "%s".Niepoprawna sekwencja znaków w URINiepoprawny skrót.Niepoprawna szerokość lub wysokość. Obie wartoÅ›ci muszÄ… być dodatnie.InwersjaInwersja kanaÅ‚uOdwrócenie zaznaczeniaInwersja nie jest możliwa na warstwach indeksowanych.Odwrócenie zaznaczeniaCzy na pewno chcesz to zrobić?Wykryto pliki wykorzystywane przez program GIMP w wersji 2.0. -Wybierz sposób dalszego postÄ™powania.WÅ‚aÅ›ciwoÅ›ci elementuWidoczność elementuJustowanie:Zachowanie przezroczystoÅ›ciWyÅ›wietlaj na wierzchuStaÅ‚e proporcje %sStaÅ‚e proporcje %sStaÅ‚a wysokość %sZachowanie przezroczystoÅ›ciStaÅ‚a szerokość %sStrzaÅ‚ka w dółStrzaÅ‚ka w dół (Alt)StrzaÅ‚ka w dół (Control + Alt)StrzaÅ‚ka w dół (Control)StrzaÅ‚ka w dół (Shift + Alt)StrzaÅ‚ka w dół (Shift + Control + Alt)StrzaÅ‚ka w dół (Shift + Control)StrzaÅ‚ka w dół (Shift)StrzaÅ‚ka w lewoStrzaÅ‚ka w lewo (Alt)StrzaÅ‚ka w lewo (Control + Alt)StrzaÅ‚ka w lewo (Control)StrzaÅ‚ka w lewo (Shift + Alt)StrzaÅ‚ka w lewo (Shift + Control + Alt)StrzaÅ‚ka w lewo (Shift + Control)StrzaÅ‚ka w lewo (Shift)StrzaÅ‚ka w prawoStrzaÅ‚ka w prawo (Alt)StrzaÅ‚ka w prawo (Control + Alt)StrzaÅ‚ka w prawo (Control)StrzaÅ‚ka w prawo (Shift + Alt)StrzaÅ‚ka w prawo (Shift + Control + Alt)StrzaÅ‚ka w prawo (Shift + Control)StrzaÅ‚ka w prawo (Shift)StrzaÅ‚ka w górÄ™StrzaÅ‚ka w górÄ™ (Alt)StrzaÅ‚ka w górÄ™ (Control + Alt)StrzaÅ‚ka w górÄ™ (Control)StrzaÅ‚ka w górÄ™ (Shift + Alt)StrzaÅ‚ka w górÄ™ (Shift + Control + Alt)StrzaÅ‚ka w górÄ™ (Shift + Control)StrzaÅ‚ka w górÄ™ (Shift)W programie GIMP możliwa jest dynamiczna konfiguracja skrótów klawiszowych. Plik menurc zawiera stan tej konfiguracji, co pozwala na jej użycie w nastÄ™pnej sesji. Dopuszczalna jest samodzielna modyfikacja tego pliku, jednak definiowanie skrótów klawiszowych jest dużo Å‚atwiejsze w samym programie. UsuniÄ™cie tego pliku spowoduje przywrócenie domyÅ›lnych skrótów klawiszowych.KlawiaturaZdarzenia klawiaturySkróty klawiszoweLDPKolor _lewego punktu koÅ„cowego...LÄ…dWielkiDuże (256x256)WiÄ™ksze podglÄ…dyOstatni bÅ‚Ä…d:WarstwaWarstwa "%s" nie ma kanaÅ‚u alfa, warstwa zostaÅ‚a umieszczona powyżej.Atrybuty warstwyWymiary grani_c warstwy...Typ wypeÅ‚nienia warstwyMaska warstwy na zaznaczenieWybór warstwyWymiary warstwy_Tryb warstwy_Nazwa warstwy:Nie można bardziej obniżyć warstwy.Nie można bardziej podnieść warstwy.Warstwa jest już na dnie.Warstwa jest już na wierzchu.Dopasowanie wymiarów warstwy do obrazuWarstwa _na dnoDop_asuj wymiary warstwy do obrazuWarstwa na w_ierzchoÅ‚ek_KanaÅ‚ alfa warstwyWarstwyMenu warstwOpcje Å‚Ä…czenia kanałówKolor lewego punktu koÅ„cowegoWyjustowany lewostronnieDÅ‚ugość:Powoduje, że przy każdym uruchomieniu programu GIMP przywracana jest poprzednia zapisana sesja.PoziomyNie można modyfikować poziomów na warstwach indeksowanych.Kolor jasnego polaTylko jaÅ›niejszeLiniaOdstÄ™py -wierszy:Szerokość linii:_Styl linii:Styl linii siatki.LiniowaDowiÄ…zany elementZaÅ‚adujOdczyt krzywychOdczyt poziomówPobranie pr_awego koloruOdczyt ustawieÅ„ krzywych z plikuOdczyt ustawieÅ„ poziomów z plikuWczytanie tekstu z plikuOdczytywanie podglÄ…du ...PoÅ‚ożenie:LogarytmicznaDÅ‚ugie kreskiWyszukiwanie plików z danymiObniża kanaÅ‚Obniżenie kanaÅ‚u na dnoObniż kanaÅ‚ na _dnoObniżenie warstwyObniżenie warstwy na dnoObniżenie Å›cieżkiObniżenie Å›cieżki na dnoObniż Å›cieżkÄ™ na _dnoObniżenie kanaÅ‚uObniżenie kanaÅ‚u na dnoObniżenie warstwyObniżenie warstwy na dnoObniżenie Å›cieżkiObniżenie Å›cieżki na dnoPo_wiÄ™kszenieÅÄ…czn_iePrzenieÅ› na _ekran..._OdwzorowaniaPurpurowyPurpurowy:PowiÄ™kszenieUstawienie prz_ezroczystoÅ›ciZarzÄ…dzanie moduÅ‚ami Å‚adowalnymiSzybkość a_nimacji obwódki:Krycie maski:Za_maskuj zaznaczone obszaryZamaskuj _niezaznaczone obszaryMacierz:Maks. gÅ‚Ä™bia:Ma_ksymalny rozmiar miniaturyzowanych plików:Maksymal_ny rozmiar nowego obrazu:Maksymalna różnica kolorów_Maksymalna pamięć dla historii operacji:Åšrednia:MiarkaPomiary odlegÅ‚oÅ›ci i kÄ…tówPomiary odlegÅ‚oÅ›ci i kÄ…tówZmierz linijki i wprowadź poniżej ich dÅ‚ugoÅ›ci:Mediana:ÅšredniÅšrednie kreskiPoÅ‚Ä…cz _w dółPoÅ‚Ä…czenie w dółPoÅ‚Ä…czenie warstwPoÅ‚Ä…czenie paletPoÅ‚Ä…czenie widocznych warstwPoÅ‚Ä…cz widoczne Å›cieżki_PoÅ‚Ä…cz widoczne warstwy..._PoÅ‚Ä…cz widoczne warstwy..._PoÅ‚Ä…cz widoczne Å›cieżkiPoÅ‚Ä…czenie warstwPoÅ‚Ä…czenie paletPoÅ‚Ä…czenie wektorówProcedury obsÅ‚ugi komunikatówPowtórzono komunikat %d razy.Powtórzono komunikat.Komunikaty zostanÄ… przekierowane na standardowe wyjÅ›cie bÅ‚Ä™dów.PółtonyMigracja -ustawieÅ„ spersonalizowanychMi_nimalna ilość poziomów cofnięć:RóżneZaostrzonyTrybTryb:Modyfikacja wybranego koloruModyfikacja poziomów koloru wybranego zakresuModyfikacja wszystkich kolorówZmienia odstÄ™p miÄ™dzywierszowyFoldery z moduÅ‚amiMenedżer modułówÅšcieżka moduÅ‚uModuÅ‚yWskaźniki myszyKółko myszyZdarzenia kółka myszyPrzesuniÄ™ciePrzesuniÄ™cie zaczepówPrzesuniÄ™cie kanaÅ‚uPrzesuniÄ™cie oderwanego zaznaczeniaPrzesuniÄ™cie prowadnicyPrzenieÅ› prowadnicÄ™: PrzesuniÄ™cie warstwyPrzesuniÄ™cie maski warstwyPrzesuniÄ™cie Å›cieżkiPrzesuniÄ™cie zaznaczeniaPrzesuniÄ™cie warstwy tekstowejPrzesuwaniePrzesuniÄ™cie elementuPrzesuwanie warstw i zaznaczeÅ„ZaznaczenieBieżąca warstwaBieżąca Å›cieżkaPrzesuniÄ™cie zaznaczonego filtru w dółPrzesuniÄ™cie zaznaczonego filtru w górÄ™PrzenieÅ› na ekran...PrzesuniÄ™cie: Mnożenie_Ilość kolorów:Naw_igacjaOkno n_awigacyjneRozmiar podglÄ…du _nawigacyjnego:NazwaNazwa:NawigacjaNowy kanaÅ‚Kolor nowego kanaÅ‚uOpcje nowego kanaÅ‚uNowy kolor z koloru _tÅ‚aNowy kolor z koloru p_ierwszoplanowegoNowy obrazNowa warstwaNowa Å›cieżkaOpcje nowej Å›cieżkiNowy szablonNowy pÄ™dzelNowy kanaÅ‚Nowy kanaÅ‚ z użyciem ostatnich wartoÅ›ciNowy kanaÅ‚...Nowy kolor z koloru tÅ‚aNowy kolor z koloru pierwszoplanowegoNowy gradientNowy importNowa warstwaNowa warstwa z użyciem ostatnich wartoÅ›ciNowa warstwa...Nowa paletaNowa Å›cieżka z użyciem ostatnich wartoÅ›ciNowa Å›cieżka...Nowy deseÅ„Nowe wektoryBrak dostÄ™pnych pÄ™dzli dla tego narzÄ™dzia.Nie zaznaczono filtruNie odnaleziono gradientów liniowych w pliku "%s"Już niedostÄ™pnyNie odnaleziono Å›cieżek w pliku "%s"Nie odnaleziono Å›cieżek w buforzeBrak deseni dla tej operacji.Brak zaznaczeniaBrak zaznaczenia do narysowania.Bez miniaturekNiewyrównanyBrakBrakZwykÅ‚yZwykÅ‚e (128x128)ZwykÅ‚e punktyZwykÅ‚e oknoTo nie jest zwykÅ‚y plikNiewystarczajÄ…ca ilość widocznych warstw do poÅ‚Ä…czenia. Potrzebne sÄ… przynajmniej dwie.NiewystarczajÄ…ca ilość widocznych Å›cieżek do poÅ‚Ä…czenia. Potrzebne sÄ… przynajmniej dwie._Ilość wykorzystywanych procesorów:Ilość linii siatkiIlość warstw:_Inne (%s) ...PrzesuniÄ™ciePrzesuniÄ™cie kanaÅ‚uPrzesuniÄ™cie obszaru rysowaniaPrzesuniÄ™cie warstwyPrzesuniÄ™cie maski warstwyPrzesuniÄ™cie o (x/_2),(y/2)PrzesuniÄ™cie:Na dyskuW przypadku komputerów wieloprocesorowych, jeÅ›li GIMP zostaÅ‚ skompilowany z użyciem opcji --enable-mp, ustawienie okreÅ›la, ile procesorów program powinien wykorzystywać jednoczeÅ›nie.Tylko w pamiÄ™ciOtwó_rz jako nowÄ… warstwÄ™...KrycieKrycie:OtwórzOtwarcie obrazuOtwarcie obrazu w postaci nowej warstwyOtwarcie poÅ‚ożeniaOtwiera plik tekstowy (UTF-8)Ot_wórz poÅ‚ożenie...Os_tatnio otwieraneOkno otwarcia obrazuOtwiera okno wyboru pÄ™dzlaOtwiera okno wyboru czcionkiOtwiera okno wyboru gradientuOtwarcie okna wyboru paletyOtwiera okno wyboru deseniaOtwarcie wybranej pozycjiNie można otworzyć pliku "%s": - -%sNie można otworzyć pliku "%s": %sOpcje: -PoczÄ…tkowy X: PoczÄ…tkowy Y:Pierwotna szerokość:Inne (%s) ...ObwódkaPoziomy wyjÅ›ciowePokrywanieBÅ‚Ä…d przy wywoÅ‚ywaniu procedury %s z PDB: -Niepoprawny typ %d. argumentu (oczekiwano %s, otrzymano %s)BÅ‚Ä…d przy wywoÅ‚aniu poprzez PDB: -nie odnaleziono procedury "%s".D_eseniepchnąć w tÄ™ łódź jeża -lub oÅ›m skrzyÅ„ figRysowanieOpcje rysowania współdzielone przez narzÄ™dziaProcedury narzÄ™dzi rysowniczychNarzÄ™dzie rysownicze:_Tryb rysowaniaMalowanie rozmytymi pociÄ…gniÄ™ciami pÄ™dzlaRysowanie pikselami o ostrych krawÄ™dziachMalowanie przy użyciu deseni lub fragmentów obrazuPÄ™dzelPale_tyPaletaEdytor paletyMenu edytora paletFoldery z paletamiGUI wyboru palety_Nazwa palety:_Plik z paletÄ…PaletyMenu paletProcedury danych pasożytniczychDane pasożytniczeAnalizowanie "%s" -WklejWklej bufor _doWklej bufor jako _nowyWk_lej Å›cieżkÄ™Wklej _doWklej jako _nowyWklejenie zaznaczonego buforaWklejenie zaznaczonego bufora pod postaciÄ… nowego obrazuWklejenie zaznaczonego bufora do zaznaczeniaWklejona warstwaÅšcieżkaAtrybuty Å›cieżkiNazwa Å›cieżki:_NarzÄ™dzie Å›cieżkiNie można bardziej obniżyć Å›cieżki.Nie można bardziej podnieść Å›cieżki.Åšcieżka jest już na dnie.Åšcieżka jest już na wierzchu.Åšcieżka na _zaznaczenieUtworzenie zaznaczenia ze Å›cieżkiÅšcieżka na zaznaczenie -%s Dodanie -%s OdjÄ™cie -%s PrzeciÄ™cieÅšcieżka na zaznaczenieÅšcieżkiMenu Å›cieżekDeseÅ„Foldery z deseniamiGUI wyboru deseniaDeseÅ„DeseÅ„DesenieMenu deseniOłó_wekOłówekProcent szerokoÅ›ci pÄ™dzlaKafelek procentu:Spersonalizowany folder -programu GIMPPerspektywaInformacje o przeksztaÅ‚ceniu perspektywicznymPerspektywa...Przeznaczenie koloru %sWskazana warstwa/prowadnicaWskazana Å›cieżkaWybór czarnego punktuPobieranie koloru z obrazuWybór szarego punktuTylko wybórWybór biaÅ‚ego punktuWymiary w pikselach:WartoÅ›ci pikseliPikselePiksele:Upewnij siÄ™, że menu plików XML zostaÅ‚o poprawnie zainstalowane.Poczekaj chwilÄ™ na utworzenie spersonalizowanego folderu programu GIMP...Poczekaj chwilÄ™...WtyczkaÅšrodowisko wtyczkiFoldery z wtyczkamiWtyczka nie może otworzyć obrazuWtyczka nie może zapisać obrazuWe wtyczce wystÄ…piÅ‚ nieodwracalny bÅ‚Ä…d: "%s" -(%s) - -PrzerywajÄ…c dziaÅ‚anie w wyniku bÅ‚Ä™du wtyczka mogÅ‚a uszkodzić wewnÄ™trzny stan programu GIMP. Dla bezpieczeÅ„stwa zalecane jest zapisanie obrazów i ponowne uruchomienie programu.Wtyczka zwróciÅ‚a kod powodzenia, lecz nie zwróciÅ‚a obrazu.WtyczkiWtyczkaWtyczki i rozszerzenia sÄ… zewnÄ™trznymi programami uruchamianymi przez program GIMP, które poszerzajÄ… jego możliwoÅ›ci. Programy te sÄ… wyszukiwane w czasie uruchamiania programu, zaÅ› informacje o ich funkcjach oraz czasach modyfikacji sÄ… przechowywane w tym pliku. Jest on przeznaczony do odczytu wyÅ‚Ä…cznie przez program i nie powinien być rÄ™cznie modyfikowany.WielokÄ…tPortretPozycja: %0.6fPozycyjnyRedukcja kolorówRedukcja kolorów (zmniejszenie iloÅ›ci kolorów)_Poziomy redukcji kolorów:Redukcja kolorów nie jest możliwa na warstwach indeksowanych.PreferencjeZachowanie _luminancjiCzuÅ‚ość naciskuNacisk: PodglÄ…dPodglÄ…d jest nieaktualnyPodglÄ…d:PodglÄ…dyRozmiar wydrukuRozmiar wydruku:WystÄ…piÅ‚ problem przy analizowaniu zawartoÅ›ci elementu pasożytniczego opisujÄ…cego tekst, doÅ‚Ä…czonego do warstwy "%s": -%s - -Niektóre wÅ‚aÅ›ciwoÅ›ci tekstu mogÄ… być niepoprawne. JeÅ›li tekst nie bÄ™dzie modyfikowany, nie ma to wiÄ™kszego znaczenia.Baza procedurBaza danych procedurPostÄ™pPaleta kolorówPrzeznaczenie:JakośćOdpytajOdpytywanie nowych wtyczekOdpytywanie wtyczki: "%s" -Szybki odczytSzybka maskaAtrybuty szybkiej maskiMenu szybkiej maskiSzybki zapisSzybka maskaZakoÅ„czenie dziaÅ‚ania programu GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)Kolory RGBRGB-pustyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)PDL_WyÅ›wietl ponownie "%s"P_rzywróć domyÅ›lne opcje narzÄ™dziaZr_esetuj kanaÅ‚Zr_esetuj kolorZr_esetuj zakresKolor p_rawego punktu koÅ„cowego...PromienistyPromieÅ„:Podniesienie kanaÅ‚uPodniesienie kanaÅ‚u na wierzchoÅ‚ekPodnieÅ› kanaÅ‚ na _wierzchoÅ‚ekPodniesienie warstwyPodniesienie warstwy na wierzchoÅ‚ekPodniesienie Å›cieżkiPodniesienie Å›cieżki na wierzchPodnieć Å›cieżkÄ™ na _wierzchPodniesienie kanaÅ‚uPodniesienie kanaÅ‚u na wierzchoÅ‚ekPodniesienie warstwyPodniesienie warstwy na wierzchoÅ‚ekPodniesienie Å›cieżkiPodniesienie Å›cieżki na wierzchWysuwa widoki bieżącego obrazuWysuniÄ™cie okna jeÅ›li obraz jest otwartyTempoTempo:WyÅ›wietl ponownie ostatni_WyÅ›rodkuj punkty poÅ›rednie w zaznaczeniu_WyÅ›rodkuj punkt poÅ›redni segmentuRozłóż ponownie uc_hwyty w segmencieRozłóż ponownie uc_hwyty w zaznaczeniuZmieÅ„ _nazwÄ™ zapisanych opcji_Powtórz "%s"Przyw_róć...Odczytywanie pliku "%s" z paletÄ…: brak skÅ‚adowej zielonej (GREEN) w wierszu %d.Odczytywanie pliku "%s" z paletÄ…: niepoprawna ilość kolumn w wierszu %d, użyto wartoÅ›ci domyÅ›lnej.Odczytywanie pliku "%s" z paletÄ…: brak skÅ‚adowej niebieskiej (BLUE) w wierszu %d.Odczytywanie pliku "%s" z paletÄ…: brak skÅ‚adowej czerwonej (RED) w wierszu %d.Odczytywanie pliku "%s" z paletÄ…: wartość RGB w wierszu %d jest poza zakresem.GotowyCzy na pewno wyczyÅ›cić historiÄ™ operacji na obrazie?Zmiana przypisania skrótu spowoduje, że jego skojarzenie z operacjÄ… "%s" zostanie usuniÄ™te.Wygeneruj podglÄ…d na _nowoPonowne wygenerowanie podglÄ…du obrazuZaznaczenie prostokÄ…tneCzerwonyCzerwony:PonowienieZmniejszenie liczby kolorów w obrazie do ustalonej wartoÅ›ciZmniejszenie liczby kolorów w obrazie do dwóch przy użyciu progowaniaOdÅ›wieżenie pÄ™dzliOdÅ›wieżenie gradientówOdÅ›wieżenie paletOdÅ›wieżenie deseniZarejestrowanyOdÅ›wież _bieżący motywOd_czytaj ponownie wszystkie podglÄ…dyPonowne odczytanie wszystkich plików z podglÄ…damiPowoduje zapamiÄ™tywanie aktywnego narzÄ™dzia, desenia, koloru oraz pÄ™dzla pomiÄ™dzy kolejnymi sesjami programu GIMP.Obraz zdalnyUsuniÄ™cie kanaÅ‚uU_suÅ„ nieistniejÄ…ce pozycjeUsuniÄ™cie oderwanego zaznaczeniaUsuniÄ™cie prowadnicyUsuniÄ™cie warstwyUsuniÄ™cie z obrazu danych pasożytniczychUsuniÄ™cie z elementu danych pasożytniczychUsuniÄ™cie Å›cieżki_UsuÅ„ pozycjÄ™UsuniÄ™cie nieistniejÄ…cych pozycjiUsuniÄ™cie oderwanego zaznaczeniaUsuniÄ™cie danych pasożytniczychUsuniÄ™cie wybranej pozycjiUsuwa zaznaczony filtr z listy aktywnych filtrówNie można usunąć skrótu.Zmiana nazwy kanaÅ‚uZmiana nazwy warstwyZmiana nazwy Å›cieżkiZmiana nazwy zapisanych opcji narzÄ™dziaZmiana nazwy warstwy tekstowejZmiana nazwy elementuNarysowanie pociÄ…gniÄ™ciaZmiana pozycji kanaÅ‚uZmiana pozycji warstwyZmiana pozycji Å›cieżkiPowtórz ostatniOkresowość:ZastÄ™puje bieżące zaznaczenieZreplikujReplikacja segmentu gradientuReplikacja zaznaczenia gradientuZreplikuj segmentZreplikuj zaznaczenieZmiana pozycji kanaÅ‚uZmiana pozycji warstwyZmiana pozycji wektorówOdÅ›wieżenie listy czcionekPrzywrócenie opcji narzÄ™dziPrzy_wróć domyÅ›lne opcje wszystkich narzÄ™dzi...Przywrócenie domyÅ›lnych opcji wszystkich filtrówPrzy_wróć domyÅ›lne opcje wszystkich filtrów...Przywrócenie domyÅ›lnych opcji wszystkich narzÄ™dziPrzywraca domyÅ›lne ustawienia zaznaczonego filtruPrzywrócenie wartoÅ›ci domyÅ›lnychPrzywrócenie domyÅ›lnego porzÄ…dku i widocznoÅ›ci narzÄ™dziZmiana rozmiaruZmiana wymiarów kanaÅ‚uZmiana wymiarów obrazuZmiana wymiarów warstwyZmiana rozmairu Å›cieżkiZmiana wymiarów warstwy tekstowejZmiana wymiarów obrazuZmiana wymiarów elementuZmieniaj wymiary okna przy po_wiÄ™kszeniuZmianiaj wymiary okna przy z_mianie wymiarów obrazuZmienianie wymiarów...Zmiana rozdzielczoÅ›ciRozdzielczość:Wykorzystywanie zasobówKonfiguracja zasobówOdczyt opcji z wybranego zestawu...Powoduje przywracanie zapisanych skrótów klawiszowych przy uruchamianiu programu GIMP.Wymusza Å›cieżkÄ™ w ksztaÅ‚cie wielokÄ…taOdwróćPrzywróćCzy przywrócić obraz "%s" do wersji z pliku "%s"?Przywrócenie obrazuPrzywrócenie obrazu nie powiodÅ‚o siÄ™. Obrazowi nie nadano nazwy.Przywrócenie obrazu do stanu zapisanego -w pliku "%s" nie powiodÅ‚o siÄ™: - -%sKolor prawego punktu koÅ„cowegoWyjustowany prawostronnieObrótObróć o 9_0 stopni w lewoObróć o _90 stopni w prawoObrót kanaÅ‚uObrót warstwyObrót Å›cieżkiObrót warstwy tekstowejObróć o _180 stopniObrót obrazuObrót warstwy lub zaznaczeniaObracanie...Informacje o obrocieZaokrÄ…glonyNac_hylenieWyÅ›wietl _siatkÄ™_Zmniejsz..._OstrzaZ_amieÅ„ koloryZap_is prawego koloruPróbkuj Å›redniÄ… kolorówPróbkuj wszystkie warstwyNas.:NasycenieZapiszZapis "%s" w formacie POV-RayZapis krzywychZapis dziennika bÅ‚Ä™dów do plikuZapis obrazu_Zapisz ustawienia urzÄ…dzeÅ„ wejÅ›ciowych_Zapisz skróty klawiszoweZapis poziomówZapis opcji narzÄ™dzia_Zapisz poÅ‚ożenia okien_Zapisz wszystkie komunikaty do pliku...Z_apisz zaznaczenie do pliku...Z_apisz jako...Zapisz _kopiÄ™...Zapis kopii obrazuZapis informacji o bÅ‚Ä™dachZapisz w formacie _POV-Ray...Zapisz jako _szablon...Powoduje zapisywanie zmodyfikowanych skrótów klawiszowych przed zakoÅ„czeniem dziaÅ‚ania programu GIMP.Zapis ustawieÅ„ krzywych w plikuZapisuje stan urzÄ…dzeniaZapis gradientu w formacie POV-RayZapis ustawieÅ„ poziomów w plikuZapis opcji w wybranym zestawie...Zapis zaznaczeniaZapis zaznaczenia do kanaÅ‚uCzy zapisać zmiany w obrazie "%s" przed jego zamkniÄ™ciem?Powoduje zapisywanie poÅ‚ożeÅ„ i rozmiarów głównych okien dialogowych przed zakoÅ„czeniem dziaÅ‚ania programu.Zapisz do kanaÅ‚_uZapisane opcjeZapisywanie "%s" -Nie można zapisać pliku "%s": - -%sZapisywanie obrazówFala piÅ‚oksztaÅ‚tnaSkalowalny obraz SVG (*.svg)SkalowaniePrzeskalowanie kanaÅ‚uSkalowanie obrazuSkaluj warstwÄ™Przeskalowanie Å›cieżkiPrzeskalowanie warstwy tekstowejPrzeskalowanie obrazuPrzeskalowanie elementuWspółczynnik skalowania X:Współczynnik skalowania Y:Współczynnik skalowania:Skalowanie warstwy lub zaznaczeniaSkalowanieInformacje o skalowaniuPrzeskalowanie obrazu do wybranego rozmiaru wymaga iloÅ›ci pamiÄ™ci przekraczajÄ…cej wartość ustalonÄ… w oknie preferencji jako "Maksymalny rozmiar nowego obrazu" (aktualnie: %s).Przeskalowanie obrazu do podanych wymiarów spowoduje zmniejszenie niektórych warstw do niedostrzegalnych rozmiarów.Skalowanie...NożyczkiPrzesiewanieFoldery ze Script-FuSkryptyPrzewiniÄ™cie w dółPrzewiniÄ™cie w dół (Alt)PrzewiniÄ™cie w dół (Control + Alt)PrzewiniÄ™cie w dół (Control)PrzewiniÄ™cie w dół (Shift + Alt)PrzewiniÄ™cie w dół (Shift + Control + Alt)PrzewiniÄ™cie w dół (Shift + Control)PrzewiniÄ™cie w dół (Shift)PrzewiniÄ™cie w lewoPrzewiniÄ™cie w lewo (Alt)PrzewiniÄ™cie w lewo (Control + Alt)PrzewiniÄ™cie w lewo (Control)PrzewiniÄ™cie w lewo (Shift + Alt)PrzewiniÄ™cie w lewo (Shift + Control + Alt)PrzewiniÄ™cie w lewo (Shift + Control)PrzewiniÄ™cie w lewo (Shift)PrzewiniÄ™cie w prawoPrzewiniÄ™cie w prawo (Alt)PrzewiniÄ™cie w prawo (Control + Alt)PrzewiniÄ™cie w prawo (Control)PrzewiniÄ™cie w prawo (Shift + Alt)PrzewiniÄ™cie w prawo (Shift + Control + Alt)PrzewiniÄ™cie w prawo (Shift + Control)PrzewiniÄ™cie w prawo (Shift)PrzewiniÄ™cie w górÄ™PrzewiniÄ™cie w górÄ™ (Alt)PrzewiniÄ™cie w górÄ™ (Control + Alt)PrzewiniÄ™cie w górÄ™ (Control)PrzewiniÄ™cie w górÄ™ (Shift + Alt)PrzewiniÄ™cie w górÄ™ (Shift + Control + Alt)PrzewiniÄ™cie w górÄ™ (Shift + Control)PrzewiniÄ™cie w górÄ™ (Shift)ZaznaczenieZaznaczenie wszystkiegoWybór folderów z pÄ™dzlamiZaznaczenie wedÅ‚ug koloruWybór koloruWybór akcji dla zdarzenia z urzÄ…dzenia sterujÄ…cegoWybór folderów ze zmiennymi Å›rodowiskowymiWybór _typu pliku (%s)Wybór folderów z czcionkamiWybór folderów z gradientamiWybór folderów z moduÅ‚amiRezygnacja z zaznaczeniaWybór folderów z paletamiWybór folderów z deseniamiWybór folderów z wtyczkamiModyfikacja zmienianego koloru podstawowegoWybór modyfikowanego zakresuWybór folderów ze Script-FuWybór źródÅ‚aWybór folderu wymianyWybór folderu tymczasowegoWybór motywuWybór folderów z motywamiUstawienie współczynnika powiÄ™kszeniaN_ajniższa warstwaWybierz _dowolny kolor..._NastÄ™pna warstwaPoprz_ednia warstwaNaj_wyższa warstwaZaznaczenie wszystkiegoZaznaczenie wedÅ‚ug koloruZaznaczanie sÄ…siadujÄ…cych obszarówWybór dowolnego koloru wyÅ›ciółki płótnaZaznaczanie obszarów eliptycznychOdrÄ™czne zaznaczanie obszarówRezygnacja z zaznaczeniaWybór pliku z paletÄ…Zaznaczanie obszarów prostokÄ…tnychZaznaczanie obszarów wedÅ‚ug koloruZaznaczanie ksztaÅ‚tów w obrazieWybór folderu wymianyOkreÅ›l, ile razy powinien zostać -zreplikowany zaznaczony segment.OkreÅ›l, ile razy powinno zostać -zreplikowane zaznaczenie.Podaj liczbÄ™ jednakowych części, na jakie -ma zostać podzielone zaznaczenie.Podaj liczbÄ™ jednakowych części, na jakie -ma zostać podzielony zaznaczony segment.Z obszarami przezroczystymiWybór przeglÄ…darki WWWZaznaczenie na Å›_cieżkÄ™ZaznaczenieEdytor zaznaczeniaMenu edytora zaznaczeniaMaska zaznaczeniaProcedury narzÄ™dzi zaznaczaniaMaska zaznaczeniaPrzeksztaÅ‚cenie zaznaczenia na Å›cieżkÄ™ (opcje _zaawansowane)PrzeksztaÅ‚cenie zaznaczenia na Å›cieżkÄ™Zaznaczenie: Zaznaczenie: DODAJZaznaczenie: PRZETNIJZaznaczenie: ZASTÄ„PZaznaczenie: ODEJMIJCzuÅ‚ośćUstawienie koloru wyÅ›ciółki płótnaUstawienie koloru kanaÅ‚uUstawienie krycia kanaÅ‚uUstawienie palety kolorówUstawienie dowolnego koloru wyÅ›ciółki płótnaUstawienie wymiarów płótna obrazuUstaw rozdzielczość drukowaniaUstawienie wyÅ‚Ä…cznego dowiÄ…zania elementuUstawienie wyÅ‚Ä…cznej widocznoÅ›ci elementuUstawienie wymiarów granic warstwyUstaw nazwÄ™ w oparciu _tekstUstaw krycieKolor tÅ‚aKolor pierwszoplanowyDowiÄ…zanie elementuUstawienie trybu warstwyUstawienie krycia warstwyUstawienie zachowania przezroczystoÅ›ciUstawia maksymalny rozmiar pamiÄ™ci, jaki może zostać przydzielony każdemu z obrazów na historiÄ™ operacji. Niezależnie od tego ustawienia program gwarantuje jednak możliwość cofniÄ™cia przynajmniej takiej liczby operacji, jakÄ… skonfigurowano jako minimalnÄ….Ustawia przeglÄ…darkÄ™ używanÄ… przez system pomocy.Ustawia kolor wyÅ›ciółki płótna, używany jeÅ›li wyglÄ…d wyÅ›ciółki ustalony jest na dowolny kolor.OkreÅ›la, jaki program ma być używany w roli zewnÄ™trznej przeglÄ…darki WWW. Jako wartość można podać Å›cieżkÄ™ bezwzglÄ™dnÄ… programu lub nazwÄ™ programu znajdujÄ…cego siÄ™ na Å›cieżce przeszukiwaÅ„ (PATH). JeÅ›li polecenie zawiera napis "%s", to przy uruchamianiu przeglÄ…darki zostanie on zastÄ…piony adresem URL przeznaczonym do wyÅ›wietlenia. JeÅ›li polecenie nie zawiera tego napisu, wówczas adres URL zostanie doÅ‚Ä…czony (po poprzedzeniu go spacjÄ…) na koÅ„cu polecenia.Rodzaj interpolacji wykorzystywany przy skalowaniu i innych przeksztaÅ‚ceniachUstala sposób prezentowania przezroczystoÅ›ci w obrazie.Ustala minimalnÄ… liczbÄ™ operacji w programie, które można cofnąć. Możliwość cofniÄ™cia wiÄ™kszej liczby operacji istnieje do czasu osiÄ…gniÄ™cia ograniczenia rozmiaru historii operacji.Ustawia typ kursora, który bÄ™dzie używany przez program GIMP.Ustala rozdzielczość poziomÄ… monitora w punktach na cal. Jeżeli ustawione jest 0, wymusza zapytanie X serwera o rozdzielczość pionowÄ… i poziomÄ….Ustala rozdzielczość pionowÄ… monitora w punktach na cal. Jeżeli ustawione jest 0, wymusza zapytanie X serwera o rozdzielczość pionowÄ… i poziomÄ….Ustawia format pikseli używany przez program GIMP dla wskaźnika myszy.Ustawia rozmiar podglÄ…du warstw i kanałów w nowoutworzonych oknach dialogowych.Ustawia rozmiar szachownicy używanej dla zobrazowania przezroczystoÅ›ci.Ustala rozmiar podglÄ…du nawigacyjnego, widocznego w prawym dolnym rogu okna obrazu.Ustawia rozmiar podglÄ…dów w historii operacji.Ustawia wymiary miniaturek wyÅ›wietlanych w oknie otwarcia obrazu. Należy zaznaczyć, iż GIMP nie tworzy miniaturek, jeÅ›li wyÅ‚Ä…czony jest podglÄ…d warstw.Ustala poÅ‚ożenie pliku wymiany. Program GIMP opiera sposób wykorzystywania pamiÄ™ci na fragmentach zwanych kaflami. Plik wymiany sÅ‚uży szybkiemu przemieszczaniu danych kafli pomiÄ™dzy pamiÄ™ciÄ… i dyskiem. Należy pamiÄ™tać o tym, że przy pracy z dużymi obrazami plik wymiany może bardzo szybko osiÄ…gnąć spory rozmiar. Ze wzglÄ™du na szybkość dziaÅ‚ania nie należy umieszczać pliku wymiany na dyskach sieciowych (np. poprzez NFS). W wiÄ™kszoÅ›ci przypadków zaleca siÄ™ umiejscowienie go w katalogu "/tmp".Ustawia katalog przeznaczony na tymczasowe przechowywanie danych. BÄ™dÄ… siÄ™ w nim pojawiaÅ‚y pliki tworzone w czasie dziaÅ‚ania programu GIMP. WiÄ™kszość z plików zostanie usuniÄ™ta przy zakoÅ„czeniu dziaÅ‚ania programu, jednak istnieje możliwość, że część plików pozostanie, wiÄ™c zaleca siÄ™, aby katalog ten nie byÅ‚ współdzielony z innnymi użytkownikami.Ustawia napis pojawiajÄ…cy siÄ™ na pasku stanu okna z obrazem.Ustawia napis pojawiajÄ…cy siÄ™ na pasku tytuÅ‚owym okna z obrazem.OkreÅ›la, czy program GIMP powinien tworzyć podglÄ…dy warstw i kanałów. PodglÄ…dy w oknie warstw i kanałów uÅ‚atwiajÄ… pracÄ™, jednak przy pracy z dużymi obrazami mogÄ… negatywnie wpÅ‚ynąć na szybkość dziaÅ‚ania programu.Typ cieniaCienieKsztaÅ‚tKsztaÅ‚t:Rozlany (kÄ…t)Rozlany (dół)Rozlany (sfera)WyostrzanieWyostrzenie kanaÅ‚uWyostrzenie zaznaczeniaNachylenieNachylenie X:Nachylenie Y:Nachylenie warstwy lub zaznaczeniaInformacje o nachyleniuNachylanie...Krótkie kreskiSkrótSkrót "%s" zostaÅ‚ już powiÄ…zany z operacjÄ… "%s" z grupy o nazwie "%s".WyÅ›wietl maski warstwyWyÅ›wietl _linijkiWyÅ›wietl pasek _stanuWyÅ›wietl pase_k przewijaniaWyÅ›wietl pr_owadniceWyÅ›wietl g_ranice warstwyWyÅ›wietl pasek _menuWyÅ›wietl _zaznaczeniaWyÅ›wietlaj o_bwódki pÄ™dzlaWyÅ›wietlaj _kolor pierwszoplanowy i tÅ‚aWyÅ›wietlaj pr_owadniceWyÅ›wietlaj g_ranice warstwyWyÅ›wietlaj pasek _menuWyÅ›wietlaj _linijkiWyÅ›wietlaj ak_tywny pÄ™dzel, deseÅ„ i gradientWyÅ›wietlaj aktywny o_brazWyÅ›wietlaj sia_tkiWyÅ›wietlaj przyciski po_mocyWyÅ›wietlaj rozmiar obrazuWyÅ›wietlaj interaktywnÄ… granicÄ™WyÅ›wietlaj użycie pamiÄ™ciWyÅ›wietlaj _mnemoniki w menu (klawiszy dostÄ™pu)WyÅ›wietlaj wskaźnik podczas _rysowaniaWyÅ›wietlaj _zaznaczeniaWyÅ›wietlaj pasek _stanuWyÅ›wietlaj pase_k przewijaniaWyÅ›wietlaj porady w przyszÅ‚oÅ›ciPorady przy _uruchamianiuWyÅ›wietlaj po_dpowiedziWyÅ›wietlaj procentowe powiÄ™kszenieWyÅ›wietlaj współczynnik powiÄ™kszeniaZmniejszenie kanaÅ‚uZmniejszenie zaznaczeniaZa_cieÅ›nij otoczenieZmniejszaj od granic obrazuStopieÅ„ zmniejszenia zaznaczeniaZacieÅ›nienie otoczeniaRozmiarRozmiar w pamiÄ™ci:Wymiary m_iniaturek:Rozmiar:PominiÄ™to plik "%s": niewÅ‚aÅ›ciwa wersja protokoÅ‚u GIMP-a.MaÅ‚yMniejsze podglÄ…dyWygÅ‚adzonaWygÅ‚adza brzegiRozsmarowywanieRozsmarowanie obrazuPrzyciÄ…gaj do pro_wadnicPrzyciÄ…gaj do si_atkiMiÄ™kkie Å›wiatÅ‚oCiÄ…gÅ‚aŹródÅ‚oOdstÄ™pyOdstÄ™p:Rzadkie punktyPlik specjalnyOkreÅ›la sposób rysowania obszaru wokół obrazu.Szybkość animacji obwódki, widocznej wokół zaznaczonego obszaru. Wartość jest podana w milisekundach (krótszy czas oznacza szybszÄ… animacjÄ™).Szybkość:Sferyczna (_opadajÄ…ca)Sferyczna (_wzrastajÄ…ca)Ostrza:Spiralny (w lewo)Spiralny (w prawo)PodzielRównomierny podziaÅ‚ segmentu gradientuRównomierny podziaÅ‚ segmentówPodziel segment równomierniePodziel _segment równomiernie..._Podziel segment w punkcie poÅ›rednimPodziel segmenty równomierniePodziel _segmenty równomiernie..._Podziel segmenty w punktach poÅ›rednichProstokÄ…tnyS_tan i tekstS_tosStandardowyUruchamianie rozszerzeÅ„Uruchamianie rozszerzenia: "%s" -Stan:Statyczna paleta kolorówStatyczne odcienie szaroÅ›ciStan i opisStan i tekstSt. odchylenie:KropkowaniaIdentyfikator ikony_Rysuj wzdÅ‚uż Å›cieżki_Rysuj wzdÅ‚uż Å›cieżki...PociÄ…gniÄ™cie kanaÅ‚uRysowanie wzdÅ‚uż Å›cieżkiRysowanie wzdÅ‚uż zaznaczeniaRysuj liniÄ™Rysuj wzdÅ‚uż Å›cieżkiRysowanie wzdÅ‚uż Å›cieżki z użyciem ostatnich wartoÅ›ciRysowanie wzdÅ‚uż Å›cieżki...Rysowanie wzdÅ‚uż zaznaczenia z użyciem ostatnich wartoÅ›ciRysowanie wzdÅ‚uż zaznaczenia...Rysuj narzÄ™dziemWyglÄ…d kantu wokół tekstu na pasku stanuRóżnicaOdejmuje od bieżącego zaznaczeniaNadpróbkowanieFolder wymiany:_NarzÄ™dzia_TekstNarzÄ™dzie _tekstoweFolder tymczasowy:SzablonyMenu szablonówProcedura tymczasowaPrzerywanie dzialania wtyczki: "%s" -TekstKolor tekstuEdytor tekstowyWarstwa tekstowaZmodyfikowany tekstModyfikuj krzywÄ…GIMPNie można odnaleźć przeglÄ…darki pomocy programu GIMP w jego używanej instalacji.Aktywny pÄ™dzel. -KlikniÄ™cie otwiera okno pÄ™dzli.Aktywny gradient. -KlikniÄ™cie otwiera okno gradientów.Aktywny obraz. -KlikniÄ™cie otwiera okno obrazu.Aktywny deseÅ„. -KlikniÄ™cie otwiera okno deseni.Kolor tÅ‚a siatki, używany tylko przy wyÅ›wietlaniu linii podwójnie kreskowanej.Interpreter poleceÅ„ wsadowych "%s" nie jest dostÄ™pny, wyÅ‚Ä…czono tryb wsadowy.Nie można dokonać konwersji z ustawionego kodowania nazw plików na kodowanie UTF-8: %s - -Sprawdź wartość zmiennej Å›rodowiskowej o nazwie G_FILENAME_ENCODING.Nie można zmienić nazwy pliku "%s" na poprawne URI: - -%sKolor pierwszoplanowy siatki.Plik gimprc jest wykorzystywany do zapisu preferencji spersonalizowanych wpÅ‚ywajÄ…cych na domyÅ›lne zachowanie siÄ™ programu GIMP. SÄ… tutaj również zapisywane skonfigurowane Å›cieżki wyszukiwania pÄ™dzli, palet, gradientów, deseni, wtyczek i modułów.Pozioma rozdzielczość obrazu.Zaznaczona warstwa jest warstwÄ… tekstowÄ…, jednak zostaÅ‚a zmodyfikowana przy użyciu innych narzÄ™dzi. Wprowadzenie zmian przy użyciu narzÄ™dzia tekstowego spowoduje porzucenie zmian wykonanych wczeÅ›niej innymi narzÄ™dziami. - -Możliwe jest zmodyfikowanie warstwy lub utworzenie nowej warstwy tekstowej w oparciu o atrybuty obecnej.Nie można przekonwertować na kodowanie UTF-8 nazwy katalogu przechowujÄ…cego spersonalizowanÄ… konfiguracjÄ™ programu GIMP: %s - -Prawdopodobnie nazwy plików zapisane w systemie plików oparto na kodowaniu innym niż UTF-8, a jednoczeÅ›nie nie udostÄ™pniono programom wykorzystujÄ…cym bibliotekÄ™ GLib informacji o tym kodowaniu. Aby to zrobić, należy ustawić odpowiednio zmiennÄ… Å›rodowiskowÄ… G_FILENAME_ENCODING.Plik sessionrc jest wykorzystywany do zapisu informacji o oknach dialogowych, które byÅ‚y otwarte przy ostatnim zakoÅ„czeniu pracy z programem GIMP. Możliwe jest skonfigurowanie programu w taki sposób, aby przy kolejnym uruchomieniu automatycznie otwieraÅ‚ on te okna na poprzednich pozycjach.W przypadku, gdy rozmiar obrazu przeglÄ…danego w oknie otwarcia obrazu bÄ™dzie mniejszy od podanej tutaj wartoÅ›ci, nastÄ…pi automatyczne zaktualizowanie jego miniaturki.Obszar cache kafli jest używany przez program w celu zapobieżenia intensywnej wymianie danych kafli pomiÄ™dzy pamiÄ™ciÄ… i dyskiem. Ustalenie wiÄ™kszej wartoÅ›ci spowoduje użycie mniejszej przestrzeni wymiany, jednak zwiÄ™kszy wykorzystanie pamiÄ™ci. Analogicznie, mniejszy cache oznacza wiÄ™kszy rozmiar pliku wymiany i mniejsze zużycie pamiÄ™ci.Jednostka używana przy wyÅ›wietlaniu współrzÄ™dnych na obrazie, jeÅ›li nie jest ustawiony tryb "punkt do punktu".Plik unitrc jest wykorzystywany do zapisu spersonalizowanej bazy danych jednostek. Możliwe jest zdefiniowanie dodatkowych jednostek i używanie ich na równi z wbudowanymi: calami, milimetrami, punktami i cycerami. Plik ten jest nadpisywany przy każdym zakoÅ„czeniu dziaÅ‚ania programu GIMP.Pionowa rozdzielczość obrazu.Typ podpowiedzi powiÄ…zanych z oknami doków. Ustawienie to może wpÅ‚ynąć na sposób, w jaki menedżer okien ozdabia i obsÅ‚uguje okna doków.Typ podpowiedzi powiÄ…zanej z oknem narzÄ™dziówki. Ustawienie to może wpÅ‚ynąć na sposób, w jaki menedżer okien ozdabia i obsÅ‚uguje okno narzÄ™dziówki.MotywFoldery z motywamiMotywyNie zapisano zmian w %d obrazach:Ilość warstw jest niewystarczajÄ…ca dla poÅ‚Ä…czenia w dół.W czasie dziaÅ‚ania programu konieczne jest ustalenie kompromisu pomiÄ™dzy stopniem wykorzystania pamiÄ™ci i szybkoÅ›ciÄ… dziaÅ‚ania. W wiÄ™kszoÅ›ci przypadków GIMP przedkÅ‚ada szybkość nad oszczÄ™dne użycie pamiÄ™ci. JeÅ›li podejÅ›cie to nie sprawdza siÄ™ w używanym systemie, spróbuj ustawić tÄ™ opcjÄ™.Brak aktywnej warstwy lub kanaÅ‚u, z którego można skopiować.Brak aktywnej warstwy lub kanaÅ‚u, z którego można wyciÄ…c.Brak aktywnej warstwy lub kanaÅ‚u, na którym można rysować.Brak aktywnej warstwy lub kanaÅ‚u, na którym można rysować.Nie zapisano zmian w jednym obrazie:Powinien istnieć plik o nazwie "%s". Sprawdź instalacjÄ™ programu.Przy analizie zawartoÅ›ci pliku "%s" wystÄ…piÅ‚ bÅ‚Ä…d. Zamiast niego zostanÄ… użyte wartoÅ›ci domyÅ›lne. Utworzono kopiÄ™ zapasowÄ… konfiguracji w pliku "%s".W pliku tym przechowywany jest zestaw standardowych rozmiarów noÅ›ników, sÅ‚użących jako szablony dokumentów.Folder ten jest przeglÄ…dany w poszukiwaniu szablonów obrazów.Folder ten jest przeglÄ…dany w poszukiwaniu motywów -zainstalowanych przez użytkownika.Folder ten jest wykorzystywany do przechowywania czcionek, które powinny być widoczne jedynie w programie GIMP. Program oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu czcionek. Z możliwoÅ›ci tej należy korzystać tylko wtedy, gdy czcionki majÄ… być dostÄ™pne wyÅ‚Ä…cznie w GIMP-e, w przeciwnym wypadku należy je umieÅ›cić w globalnym katalogu z czcionkami.Folder ten jest wykorzystywany do przechowywania plików z parametrami narzÄ™dzia krzywych.Folder ten jest wykorzystywany do przechowywania plików z parametrami narzÄ™dzia poziomów.Folder ten jest wykorzystywany do przechowywania opcji narzÄ™dzi.Folder ten jest wykorzystywany do przechowywania skryptów utworzonych i zainstalowanych przez użytkownika. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu skryptów.Folder ten jest wykorzystywany do przechowywania modułów DLL utworzonych przez użytkownika, tymczasowych lub nie zainstalowanych jako systemowe z innego powodu. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu wczytywanych modułów.Folder ten jest wykorzystywany do przechowywania utworzonych przez użytkownika dodatków do Å›rodowiska wtyczek, tymczasowych lub nie zainstalowanych jako systemowe z innego powodu. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu plików modyfikujÄ…cych Å›rodowisko wtyczek.Folder ten jest wykorzystywany do przechowywania wtyczek utworzonych przez użytkownika, tymczasowych lub nie zainstalowanych jako systemowe z innego powodu. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu wtyczek.Folder ten jest wykorzystywany do przechowywania spersonalizowanego zbioru pÄ™dzli. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu pÄ™dzli.Folder ten jest wykorzystywany do przechowywania spersonalizowanego zbioru gradientów. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu gradientów.Folder ten jest wykorzystywany do przechowywania spersonalizowanego zbioru palet. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu palet.Folder ten jest wykorzystywany do przechowywania spersonalizowanego zbioru deseni. Program GIMP oprócz folderu systemowego przeglÄ…da również ten folder w poszukiwaniu deseni.Folder ten jest wykorzystywany do tymczasowego przechowywania buforów historii wykonanych operacji. JeÅ›li GIMP zostanie bezceremonialnie zakoÅ„czony, mogÄ… w tym folderze pozostać pliki o nazwach postaci: gimp<#>.<#>. SÄ… one bezużyteczne w kolejnych sesjach, mogÄ… wiÄ™c zostać usuniÄ™te.Folder ten bÄ™dzie zawieraÅ‚ spory zbiór ważnych plików. Kliknij jeden z plików lub folderów w drzewie, aby otrzymać o nim wiÄ™cej informacji.OkreÅ›la odlegÅ‚ość w pikselach, przy której uaktywniajÄ… siÄ™ prowadnice i siatka.Program ten jest rozpowszechniany w nadziei, że bÄ™dzie użyteczny, ale BEZ Å»ADNEJ GWARANCJI, w tym bez gwarancji PRZYDATNOÅšCI DO KONKRETNEGO ZASTOSOWANIA. Szczegóły można znaleźć w GNU General Public License.Jest to oprogramowanie ogólnodostÄ™pne - możesz je rozpowszechniać i/lub modyfikować zgodnie z postanowieniami GNU General Public License opublikowanej przez Free Software Foundation w wersji 2 lub (zależnie od twojego wyboru) którejkolwiek późniejszej.DÅ‚ugość tego pola tekstowego jest ograniczona do %d znaków.Brak opcji powiÄ…zanych z narzÄ™dziem.Okno ma otwarte %d zakÅ‚adek. ZamkniÄ™cie tego okna, spowoduje także zamkniÄ™cie powyższych zakÅ‚adek.ProgowanieProgowanie nie jest możliwe na warstwach indeksowanych.Próg:Miniaturka %d z %d_Rozmiar cache kafli:Rozmiar cache kafli:Nachylenie:DrobnyTytuÅ‚ i stanPrz_ekształć na Å›cieżkÄ™Aby edytować klawisz skrótu, kliknij na odpowiedni rzÄ…d i wprowadź nowy akcelerator lub wyczyść pozycjÄ™ naciskajÄ…c Backspace.Za_bawkiPrzeÅ‚Ä…cz szybkÄ… maskÄ™_Szybka maskaZbyt wiele komunikatów o bÅ‚Ä™dach!Opcje narzÄ™dziaMenu opcji narzÄ™dziaPrzeÅ‚Ä…cznik narzÄ™dzia %s_Opcje narzÄ™dziaIkona narzÄ™dziaIkona narzÄ™dzia z krzyżykiemNarzÄ™_dziówkaNarzÄ™dziówkaMenu narzÄ™dziówkiNarzÄ™dziaMenu narzÄ™dziNarzÄ™dzia, takie jak zaznaczenie rozmyte, czy wypeÅ‚nienie kubeÅ‚kiem, identyfikujÄ… ciÄ…gÅ‚e obszary w oparciu o algorytm wypeÅ‚niania przez wysiewanie. Wysiewanie rozpoczyna siÄ™ we wskazanym punkcie poczÄ…tkowym i postÄ™puje we wszystkich kierunkach, aż do momentu, w którym różnica jasnoÅ›ci pomiÄ™dzy punktem bieżącym i poczÄ…tkowym jest wiÄ™ksza od pewnego progu. Ustawienie reprezentuje domyÅ›lnÄ… wartość progu.Prze_zroczystośćPrzeniesienie kanaÅ‚u alfa na maskÄ™PrzeksztaÅ‚ceniePrzeksztaÅ‚cenie kanaÅ‚uKierunek przeksztaÅ‚ceniaPrzeksztaÅ‚cenie warstwyPrzeksztaÅ‚cenie Å›cieżkiPrzeksztaÅ‚cenie warstwy tekstowejProcedury narzÄ™dzi przeksztaÅ‚caniaPrzeksztaÅ‚cenie warstwyPrzeksztaÅ‚cenie Å›cieżkiPrzeksztaÅ‚cenie zaznaczeniaPrzeksztaÅ‚cenieProcedury przeksztaÅ‚caniaPrzeksztaÅ‚canie...Lokalizacja programuPrzezroczystość_Typ przezroczystoÅ›ci:Fala trójkÄ…tnaRzeczywisty kolorTypTyp %sWprowadź nowy akceleratorWprowadź nowy akcelerator lub wyczyść pozycjÄ™ przyciskajÄ…c BackspaceNie można dodać maski warstwy, ponieważ warstwa już jÄ… ma.Nie można wyciąć lub skopiować, ponieważ zaznaczony obszar jest pusty.Nie można otworzyć testowego pliku wymiany. Aby zapobiec utracie danych zweryfikuj poÅ‚ożenie oraz uprawnienia katalogu zdefiniowanego w preferencjach programu (aktualnie jest to "%s").Nie można otworzyć pliku wymiany. Program Gimp wyczerpaÅ‚ dostÄ™pnÄ… pamięć i nie może użyć pliku wymiany. Część elementów obrazów może być uszkodzona. Należy podjąć próbÄ™ zapisu danuch pod innÄ… nazwÄ…, ponownie uruchomić program i sprawdzić poÅ‚ożenie katalogu wymiany w preferencjach.Nie można wywoÅ‚ać funkcji typu %s. Być może przestaÅ‚a dziaÅ‚ać odpowiadajÄ…ca jej wtyczka.NiezdefiniowanaCofniÄ™cieHistoria operacji_Historia operacjiJednostkiNieznanyNieznany typ plikuNieznany typ palety: -%sUsuÅ„Bez nazwyBez nazwyDomyÅ›lne ustawienie "_Punkt do punktu"Dynamiczne skróty k_lawiszowe_Wykorzystanie zamiast tego przeglÄ…darki WWWUżywa przy zmniejszaniu zaznaczenia wszystkich widocznych warstwPaleta czarno-biaÅ‚a (1-bitowa)Użyj koloru z gradientuDowolna paletaOkno informacyjnePaleta zoptymalizowana dla WWWDziennik -instalacji spersonalizowanejInterfejs użytkownikaOkno narzÄ™dzioweWartośćWartość:Zmiana wektorówAutorami programu w wersji %s sÄ…Wersja:PionowoPionowe przesuniÄ™cie pierwszej linii siatki, może być liczbÄ… ujemnÄ….Pionowe odstÄ™py pomiÄ™dzy liniami siatki.Bardzo wielkiBardzo maÅ‚yWidokWyÅ›wietl jako _siatkÄ™WyÅ›wietl jako _listÄ™WyÅ›wietlaj jako siatkÄ™WyÅ›wietlaj jako listyKlasa wyÅ›wietlania:GÅ‚Ä™bia wyÅ›wietlania:Ostrzeżenie: Nie można odczytać danych: - -%sOstrzeżenie: Nie można zapisać danych: - -%sPrzeglÄ…darka WWWPrzeglÄ…darka WWWWitaj w -spersonalizowanej instalacji programu GIMP %d.%dPowoduje, że okno dialogowe automatycznie dopasowuje siÄ™ do bieżącego obrazu.Powoduje wyÅ›wietlanie mnemoników w pozycjach menu programu.Powoduje wyÅ›wietlanie podglÄ…du ksztaÅ‚tu aktywnego pÄ™dzla podczas używania któregokolwiek z narzÄ™dzi rysowniczych.Powoduje, że obraz staje siÄ™ aktywny, kiedy okno otrzyma wskazanie (fokus). Opcja ta jest przydatna w przypadku, gdy używany menedżer okien przekazuje fokus okna po jego klikniÄ™ciu (ang. "click to focus").Powoduje, że w oknach dialogowych dostÄ™pny bÄ™dzie przycisk pomocy, dajÄ…cy dostÄ™p do strony pomocy powiÄ…zanej z oknem. Przy wyÅ‚Ä…czonej opcji pomoc nadal bÄ™dzie dostÄ™pna poprzez przyciÅ›niÄ™cie klawisza F1.Pozwala na odrywanie menu.Powoduje uruchomienie przeglÄ…darki pomocy po przyciÅ›niÄ™ciu klawisza F1.Powoduje, że program GIMP nie zapisze obrazu, jeÅ›li nie zostaÅ‚ on zmodyfikowany od chwili otwarcia.OkreÅ›la, czy dla każdego widoku obrazu powinno być użyte osobne okno informacyjne.Powoduje, że serwer X odpytywany jest o współrzÄ™dne wskaźnika myszy przy każdym zdarzeniu opisujÄ…cym zmianÄ™ jego poÅ‚ożenia (zamiast użycia informacji przekazanych ze zdarzeniem). Powinno to zwiÄ™kszyć precyzjÄ™ rysowania przy użyciu pÄ™dzli o dużych rozmiarach, jednak kosztem szybkoÅ›ci dziaÅ‚ania. Co ciekawe, w przypadku niektórych serwerów X użycie tej opcji powoduje, że program dziaÅ‚a szybciej.Powoduje, że w czasie używania narzÄ™dzia rysowniczego nad obrazem wyÅ›wietlany jest wskaźnik myszy.Powoduje, że domyÅ›lnie siatka jest widoczna. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl siatkÄ™".Powoduje, że domyÅ›lnie prowadnice sÄ… widoczne. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl prowadnice".Powoduje automatycznÄ… zmianÄ™ wymiarów okna z obrazem w przypadku zmiany powiÄ™kszenia obrazu.Powoduje automatycznÄ… zmianÄ™ wymiarów okna z obrazem w przypadku zmiany fizycznych wymiarów obrazu.Powoduje, że domyÅ›lnie granice warstwy sÄ… widoczne. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl granice warstwy".Powoduje, że domyÅ›lnie pasek menu jest widoczny. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl pasek menu".Powoduje, że domyÅ›lnie linijki sÄ… widoczne. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl linijki".Powoduje, że domyÅ›lnie paski przewijania sÄ… widoczne. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl paski przewijania".Powoduje użycie wybranego pÄ™dzla w odniesieniu do wszystkich narzÄ™dzi.Powoduje użycie wybranego gradientu w odniesieniu do wszystkich narzÄ™dzi.Powoduje użycie wybranego desenia w odniesieniu do wszystkich narzÄ™dzi.Powoduje, że domyÅ›lnie zaznaczenie jest widoczne. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl zaznaczenia".Powoduje, że domyÅ›lnie pasek stanu jest widoczny. Ustawienie można zmienić w dowolnej chwili przy użyciu opcji "Widok->WyÅ›wietl pasek stanu".Opcja zapewnia, że każdy piksel obrazu jest odwzorowywany na piksel na ekranie.Powoduje, że po wczytaniu obrazu skala jego widoku ustalana jest w taki sposób, aby caÅ‚y obraz byÅ‚ widoczny. JeÅ›li opcja nie jest aktywna, skala ustawiana jest zawsze na 1:1.Umożliwia dynamiczne modyfikowanie skrótów klawiszowych zwiÄ…zanych z pozycjami menu poprzez przyciÅ›niÄ™cie wybranej kombinacji klawiszy, kiedy dana pozycja jest aktywna.BiaÅ‚eBilans bieli możliwy jest tylko na warstwach RGB.SzerokośćSzerokość:ZarzÄ…dzanie oknamiZarzÄ…dzanie oknamiPoÅ‚ożenia okienZapisywanie "%s" -XBÅ‚Ä…d XCF: napotkano nieobsÅ‚ugiwanÄ… wersjÄ™ pliku %dOstrzeżenie dotyczÄ…ce XCF: wersja 0 formatu pliku -XCF nie przechowywaÅ‚a poprawnie indeksowanych palet -kolorów. NastÄ…pi zastÄ…pienie palety odcieniami szaroÅ›ci.YŻółtyŻółty:WystÄ…piÅ‚a próba utworzenia obrazu o rozmiarze %s.Możesz tutaj upuszczać dokowalne okna dialogowe.Kopia licencji GNU GPL powinna zostać dostarczona wraz z tym programem. JeÅ›li jej brak, napisz na adres Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Aby weszÅ‚y w życie wymienione poniżej zmiany, bÄ™dzie konieczne ponowne uruchomienie programu GIMP:Instalacja programu GIMP jest niekompletna:Ustawienia urzÄ…dzenia wejÅ›ciowego zostanÄ… ustawione na wartoÅ›ci domyÅ›lne przy nastÄ™pnym uruchomieniu programu GIMP.Skróty klawiszowe zostanÄ… ustawione na wartoÅ›ci domyÅ›lne przy nastÄ™pnym uruchomieniu programu GIMP.Ustawienia okien zostanÄ… ustawione na wartoÅ›ci domyÅ›lne przy nastÄ™pnym uruchomieniu programu GIMP.Zachowanie przy powiÄ™kszaniu i zmianie wymiarówPowiÄ™kszenie 1:1CaÅ‚ośćBliżejDalejWspółczynnik powiÄ™kszeniaWspółczynnik powiÄ™kszenia:_CaÅ‚ość_Bliżej_DalejWidok na caÅ‚ośćWspółczynnik powiÄ™kszenia: %d:1Zmiana powiÄ™kszenia przy zmianie wymiarów oknaPowiÄ™kszeniePowiÄ™kszanie i zmniejszanieZmniejszeniePowiÄ™kszenie:[ Obraz bazowy ]_Informacje oPo_bierz_Dodaj kolor z koloru tÅ‚a_Dodaj kolor z koloru pierwszoplanowego_Dodaj zakÅ‚adkÄ™Dod_aj do zaznaczeniaOpcje _zaawansowane_Aerograf_Wszystko_Zakotwicz warstwÄ™_WygÅ‚adzaj_Dowolny obrót..._ArtystycznePr_oporcje_Automatycznie_BKolor _tÅ‚aKolor _tÅ‚a:_Czarna (peÅ‚na przezroczystość)Typ fu_nkcji gradientu dla segmentuTyp fu_nkcji gradientu dla zaznaczeniaRoz_mycie_Jasność:_PÄ™dzel_PÄ™dzle_PÄ™dzle, desenie i gradientyWyp_eÅ‚nienie kubeÅ‚kiem_BuforWedÅ‚ug _koloruZaznaczenie wedÅ‚ug _koloru_CWyglÄ…d _trzonka:_KanaÅ‚y_Wyczyść komunikaty o bÅ‚Ä™dachWy_czyść historiÄ™ operacji_KlonowanieZa_mknijZa_mknij zakÅ‚adkÄ™_ChmuryNarzÄ™dzia _kolorów_Kolory_Konfiguruj kolor i krycie..._KontekstPomoc _kontekstowaS_kopiujS_kopiuj nazwany...U_twórz orbaz na podstawie szablonu..._Kadrowanie i zmiana wymiarów_Kadruj obrazÅ_ukowa_Krzywe...Kolor _ciemnego pola_DomyÅ›lne kolory_UsuÅ„ pÄ™dzel_UsuÅ„ bufor_UsuÅ„ kanaÅ‚_UsuÅ„ kolor_UsuÅ„ gradient..._UsuÅ„ obraz_UsuÅ„ warstwÄ™_UsuÅ„ paletÄ™_UsuÅ„ Å›cieżkÄ™_UsuÅ„ deseÅ„..._UsuÅ„ zapisane opcje_UsuÅ„ segment_UsuÅ„ zaznaczenie_UsuÅ„ szablon_DesaturacjaOdÅ‚Ä…_cz zakÅ‚adkÄ™Stan _urzÄ…dzeniaOkna _dialogowe_Porzuć zmiany_Porzuć informacje o tekÅ›cie_ZnieksztaÅ‚cenia_Punkt do punktu_Duplikuj_Edycja_Modyfikuj pÄ™dzel..._Modyfikuj atrybuty kanaÅ‚u..._Modyfikuj kolor..._Modyfikuj gradient..._Modyfikuj atrybuty warstwy..._Modyfikuj paletÄ™..._Modyfikuj atrybuty Å›cieżki..._Modyfikuj deseÅ„..._Modyfikuj szablon...Zaznaczenie _eliptyczne_WyÅ›wietlaj podglÄ…dy kanałów i warstw_OgromnyZ_równanie_Gumka_Kolor pierwszoplanowy_PlikWypeÅ‚_nienie:_CaÅ‚y obraz w oknieSpÅ‚asz_cz obrazOd_bicieO_dbij segmentO_dbij zaznaczenieO_derwij_Czcionka:_Czcionki_Kolor pierwszoplanowy:Zaznaczenie od_rÄ™czne_G_Ogólne_Gigantyczny_Gradient_GradientyOdcienie _szaroÅ›ciKop_ia warstwy w odcieniach szaroÅ›ci_PowiÄ™ksz...Pro_wadnice_TwardośćPomo_cPo_ziomo:_OdcieÅ„:_Potężny_Ikona_Ikona:_Obraz_Obrazy_Importuj_Importuj paletÄ™..._Indeksowany...Okno _informacyjnePrze_tnij z zaznaczeniem_OdwróćWyg_lÄ…d grzbietu:_Wielki_Warstwa_Warstwy_Warstwy, kanaÅ‚y i Å›cieżki_Lewy punkt koÅ„cowyP_rawy punkt koÅ„cowy lewego sÄ…siada_Poziomy...Kolor ja_snego polaEfekty Å›w_ietlne_Jasność:_Styl linii_Liniowa_DowiÄ…zany_Pobranie lewego koloru_Obniż kanaÅ‚_Obniż warstwÄ™_Obniż Å›cieżkÄ™_M_RÄ™cznieO_dwzorowania_MaskaMaska na _zaznaczenie_Maksymalna ilość kolorów:_MiarkaÅš_redni_PoÅ‚Ä…cz palety..._PoÅ‚Ä…czenie zaimportowanych Å›cieżekPrzeprowadzenie _migracji ustawieÅ„ spersonalizowanych z wersji 2.0_Różne elementyOgra_niczenie zaostrzenia:_Tryb_Menedżer modułów_PrzesuniÄ™cie_Nazwa:_Natura_Nowy pÄ™dzel_Nowy kanaÅ‚_Nowy kanaÅ‚..._Nowa pozycja..._Nowy gradient_Nowa warstwa_Nowa warstwa..._Nowa paleta_Nowa Å›cieżka_Nowa Å›cieżka..._Nowy deseÅ„_Nowy szablon..._Nowy widok_Nowy..._NastÄ™pna porada_Szum_Brak_PrzesuniÄ™cie...K_rycie_Otwórz obraz_Otwórz...Kolor _wyÅ›ciółkiNarzÄ™dzia _rysownicze_PÄ™dzelPa_letaWk_lejWk_lej buforWk_lej nazwany...Åš_cieżki_DeseÅ„_Perspektywa_Redukcja kolorów...P_referencje_PodglÄ…d_Rozmiar podglÄ…du_Poprzednia porada_Rozmiar wydruku..._WÅ‚aÅ›ciwoÅ›ciAktywna _szybka maskaZa_koÅ„cz_R_RGBP_romieÅ„_PodnieÅ› kanaÅ‚_PodnieÅ› warstwÄ™_PodnieÅ› Å›cieżkÄ™_WysuÅ„ widoki_WysuÅ„ lub otwórz obraz_ZmieÅ„ przypisanie skrótuZaznaczenie p_rostokÄ…tneP_onówP_onów operacjÄ™: %sOdÅ›_wież pÄ™dzleOdÅ›_wież gradientyOdÅ›_wież palety_OdÅ›wież desenie_UsuniÄ™cie nieużywanych kolorów z ostatecznej palety_Renderowanie_ZastÄ…pZr_eplikuj segment...Zr_eplikuj zaznaczenie..._OdÅ›wież listÄ™ czcionekP_rzywróć domyÅ›lny porzÄ…dek i widoczność_Ustaw zapisane ustawienia urzÄ…dzeÅ„ wejÅ›ciowych na wartoÅ›ci domyÅ›lne_Ustaw zapisane skróty klawiszowe na wartoÅ›ci domyÅ›lne_Ustaw zapisane pozycje okien na wartoÅ›ci domyÅ›lne_Odczytaj opcje_Prawy punkt koÅ„cowyL_ewy punkt koÅ„cowy prawego sÄ…siadaOb_rót_Nasycenie:_Zapisz_Zapis lewego koloru_Zapisz opcjeZap_isz ustawienia urzÄ…dzeÅ„ wejÅ›ciowych przed zakoÅ„czeniemZap_isz skróty klawiszowe przed zakoÅ„czeniemZapisz pozycje okien przed za_koÅ„czeniem_Skalowanie_Skaluj obraz..._Skaluj warstwÄ™...Prze_skalowanie Å›cieżek do wymiarów obrazu_Zaznaczenie_ZaznaczenieEdytor _zaznaczeniaNarzÄ™dzia _zaznaczania_KsztaÅ‚tWyo_strz_WyÅ›wietl elementy wyboru obrazu_WyÅ›wietl w narzÄ™dziówce_Sinusoidalna_MaÅ‚yRoz_smarowywanie_ZasiÄ™g przyciÄ…gania:Ry_suj wzdÅ‚uż zaznaczeniaRy_suj wzdÅ‚uż zaznaczenia...Od_ejmij od zaznaczeniaS_tyl zakÅ‚adekSza_blon:Sza_blony_TekstP_rogowanie..._Drobny_Porada dnia_NarzÄ™dzie_NarzÄ™dzia_Przeniesienie kanaÅ‚u alfa warstwyPrze_ksztaÅ‚cenieNarzÄ™dzia prz_eksztaÅ‚caniaCof_nijCof_nij operacjÄ™: %sPio_nowo:_Widok_WidocznySieć _WWWUży_wana przeglÄ…darka WWW:_BiaÅ‚a (bez przezroczystoÅ›ci)_Bilans bieli_Szerokość:_ZawiniÄ™cieRozdzielczość _X:_X:_Dodatki_YRozdzielczość _Y:_Y:_PowiÄ™kszenie_PowiÄ™kszenie (%s)kolorykopiadpioczekiwano wartoÅ›ci "yes" lub "no" tokenu logicznego %s, otrzymano "%s"poważny bÅ‚Ä…d przy analizie skÅ‚adniowejodcienie szaroÅ›ciodcienie szaroÅ›ci - pustycalcaleindeksowanyindeksowany-pustyNiepoprawny napis UTF-8niepoprawna wartość okreÅ›lajÄ…ca typ ikonyL: "%ld"niepoprawna wartość "%ld" tokenu %sniepoprawna wartość okreÅ›lajÄ…ca typ ikony: "%s"niepoprawna wartość "%s" tokenu %smilimetrmilimetryostatniej minutyndprocentcycerocycerapikselpikselepikseli/%apikseli/%spunktpunktyostatniej sekundytips-locale:plGNOME PL Team - PaweÅ‚ DziekoÅ„ski - Artur PolaczyÅ„ski - Bartosz Kosiorekwartość tokenu %s nie jest poprawnym napisem UTF-8przy przetwarzaniu tokenu "%s": %s \ No newline at end of file diff -uraN gimp-2.2.8/po/POTFILES.skip gimp-2.2.9/po/POTFILES.skip --- gimp-2.2.8/po/POTFILES.skip 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po/POTFILES.skip 2003-01-09 17:57:13.000000000 +0100 @@ -0,0 +1 @@ +data/misc/gimp.desktop.in diff -uraN gimp-2.2.8/po/pt_BR.gmo gimp-2.2.9/po/pt_BR.gmo --- gimp-2.2.8/po/pt_BR.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.9/po/pt_BR.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,417 +0,0 @@ -Þ•V ÌJs |•HÇIÇ&_Çk†ÇGòÇ9:ÈGtÈA¼ÈNþÈiMÉ<·ÉkôÉ@`Ê2¡Ê;ÔÊPËOaË2±Ë9äË-Ì9LÌ;†Ì7ÂÌ úÌÍ - Í Í - Í -+Í 6ÍBÍRÍ -aÍlÍoÍÍ -—ͪ͢ͲÍÎÍèÍþÍ0Î6ÎGÎZÎcÎkÎ -‚ÎΔΜΤΠ³Î ÁÎ ÍÎ -ÛÎ -æÎ ñÎ þÎ -Ï Ï &Ï2Ï 7Ï CÏKPÏ…œÏ."Ð1QÐ!ƒÐ¥Ð·Ð¾ÐÍÐÔÐðÐÿÐÑÑ-Ñ -?Ñ JÑVÑ lÑ -xÑƒÑ˜Ñ «ÑµÑÄÑ -ÍÑØÑçÑúÑÒ$Ò6ÒEÒ*[Ò6†Ò½ÒÐÒíÒÓÓ+ÓJÓ_ÓsÓ‡Ó¦Ó»ÓÏÓ#ãÓÔ!Ô -=ÔHÔYÔaÔsÔ|ÔœÔ°Ô ¸Ô ÂÔ ÏÔÙÔéÔ1þÕ30ÖdÖxÖ~Ö‘Ö‹˜Ö -$×/×I×_×y×€× × -œ×§×¸×Ê×Ú×Aë×J-ØxØ<‹Ø ÈØ ÖØäØôØ Ù%Ù5Ù=ÙBÙ \ÙhÙ~Ù‘ÙšÙ±ÙÃÙ ÔÙâÙúÙ -ÚÚÚ8ÚOÚ&eÚ$ŒÚ±Ú¸Ú ¾Ú ÈÚÖÚÝÚöÚýÚÛÛ"%Û HÛTÛYÛ_ÛdÛ -tÛÛŽÛŸÛ³Û7ÇÛÿÛ Ü Ü Ü)Ü0Ü 8Ü EÜQÜ YÜfÜkÜ pÜm}ÜëÜ ðÜ þÜ ÝÝÝ <ÝJÝZÝ aÝCnÝ7²Ý=êÝ@(Þ6iÞd Þß#ß39ßmß<ß#¾ß!âßà!à ;àGà ]àgàpàˆàžà¶àÎàààòàá,áIá,`áá§á¯á ÂáÐá ðá â!âAâ\ârâ‡âœâ¥â ®â ¼âÉâÝâäâëâ ñâÿâã !ã.ã.Dã5sã5©ã7ßã8ä)Pä,zä§äÃäÛä2øä +åLågåOƒåAÓå%æ&;æ4bæ1—æ#Éæ íæûæ ç #ç-çEçVç\çeçtç„ç -“çžç¦ç ¬çºç ÐçÝçöçè0è Kè Wèdè kè uè ‚èèªèÇè+Ðèüèé"é+é ;éIé Ré\é -dé oéyé$™é¾éÑéàéõé ê3êMêkê~êŽê"£êÆêÜê ëêùê ë ëë&ë¨ë±ëÂë Êë×ëòë ì+ì @ì"Nì"qì”ì­ì¶ì -Èì Óìáì -í) í5í,Oí|í!–í#¸í#Üí!î%"îHî.gî–î î©îºîÎîáîôî# -ï-.ï\ï%rï˜ï®ïÄïßïôï ð ðð -9ð -Dð -OðZðrðyðˆð ð ›ð¨ð¸ðÈðÛðêðùð ññ -!ñ,ñ-3ñañ hñuñ…ñœñ  ñªñ¯ñµñÆñÙñíñþñò!ò4òKò \òhò xò „ò ’òŸò¦ò¬ò%²ò!Øò úòóó&2óYó mó{óŠóó ¯ó½óÌó Üóéó øóô ô"ô4ô CôOô^ôvô‘ô®ôÀôÏô -èô -óô-þô ,õ8õ ?õMõUõ ]õjõ -rõ }õŠõõ°õÉõÑõäõøõ öö3ö <öFö Vö`ögö:…ö?Àö8÷ 9÷E÷N÷`÷ q÷{÷ -Š÷•÷›÷ -±÷ ¼÷ Ê÷ Ö÷ -ã÷ î÷ ú÷ -ø øø $ø1øEø Tø>bø ¡øÂøÒøäø÷øùù(ù:ùZùjù zù‡ù –ù£ù¨ùÀùÓùìùúú &ú0úCúXúsú ‰ú -—ú¢ú -ºúÅú Ýúëú ûû #û0û@û[û jû xû -„ûû* ûËûÔû!æûü.üNüjü#sü"—üºü×ü&öüý 3ý?ýSý,\ý#‰ý­ý´ý ÃýÑýäý'þý&þ'CþkþˆþžþºþFÔþTÿpÿwÿ }ÿŠÿ ÿ ³ÿÔÿ ëÿõÿ -  % Bcr“¥ «·À ÉÕë(ô$B=H6†<½?úA:7|9´cî9RBŒ=Ïf >tC³J÷gB ª¶Æ Øæû " ,8 J W es‡ž³ÆÚí)9Mi„¡¨±Ðë* >L -_ jx } -Š •Ÿ ¯½Ð -áì    ,  < J b ~ š ® (Ç ð ö ý   - - - - -& -O1 - - -“ -”ž -3 D ] t  -Š  •  ¡ ­  ¶ . ñ    -&  1  ?  K X ]  l y  ‘  ž « ¼ Ð ç uö l Ì~ ÅKc uz‚ýr ~—®·ÉØáñ&'> f r |† • £¯ ´¾ÄËÐ âïþ.?C]zž§½ Ô -Þé òü   )D[k -p{§H¯ -ø   -%H0!yB›Þâ1ñ#6; @MTd -t „ `œ™ýC—1Û0 > D Q^ -p -{†­¾Ýð ( -? -JHU -ž © -¶Á ÈÔã òÿ* 9 FTY a nz‚ § ¯½€Ö Wcx’¨Ä ÈÖ è ö K3]6‘È×"í 2F U$_„Ÿ ´  ã(+-)Y*ƒ!®Ð/â(*9du'’ºÊÚã -õ&6HW`oˆ› ²Óîÿ  0 C  Z { –  § ± Á Û ï !!)!E!W! ^!k!‚!“!¨!Ç!à!-ï!#&#6#I#M# g#q#w#‡# —#£#3©#Ý#î#$$ .$ -;$ F$ R$_$}$œ$¼$Õ$é$ú$ %%4% ;%G%\%p%%@‡%È%-Ï%ý% && !& /& ;&H&f& m&y& ~& Š&–&­&Ì&ë&ÿ& ' ' )'5' L'Z'r' ‹'—' -­'¸'Í' ã'ñ' (( -+(6(K(T(\(o(t(|(…((Ÿ(·( Í(Û(ð() -)#)>)W)p)†)Œ)”)±)+Î)ú)* * * -#* .* ;*I*^*r*‹*¤* ¹*Æ* Õ*ã*ö*+"(+K+T+j+ Š+˜+ž+£+©+$¿+ä+ö+ -,, (,4, <, J,V,i, n, {,ˆ, - , «, -¸,Ã, Ó,Ý,ì, ü, --)-8-O-e-ƒ-Ÿ-±-¸-Á- Ô-à-ó- .. -. #./.A.U.h. {. …..˜. ©. ¶. À.Ì.é.ø. -/ / -)/ 4/>/ Y/ f/r/ Œ/ ˜/ ¤/,°/Ý/!ð/0&0=0)Z0 „0‘0 ©0 ·0Ã0È0×0Þ0 ï0 û0 1B1A_1¡1¿1Ô1 æ1ð1÷12 2#252J2R2„Z2ß2î2333 -3!3 53C3Z3 l3y3‹3«3"Ê3!í3!414I4b4 z4 „4 Ž4˜4¨4·4 ¿4Í4VÕ4+,5 X5(b5‹5"‘5´5 Ê5 Ö5â5ü5%6 -:6 E6O6W6f6z6 -Š6•6 ¤6²6 »6É6 Ý6 ç6õ6û67 #7 /7 ;7I7&c7,Š7 ·7Ä7É7 -Ù7 -ä7ï7 8*8I8a8t84†8»8Í8 -Ó8Þ8æ8 -ö8 999 &949<9C9 `9l9 9!9¯9 ¾9Ì9 â9î9ÿ9: *:4:E: W:d:k:;s:?¯:ï:þ:;;*;G;¡d;4<;<D<-L< z=„== -= ¨=#²=Ö=-é= >#>8> M>W>_>v>> -ˆ> “>¥Ÿ>E?Y?m? v?ƒ?Œ?”?š?°? -È? -Ó?Þ?ô? -@ @ @'@+@E@ V@ `@!j@Œ@ @ž@²@ Á@ Î@Û@ö@ý@ AA(A >AJA -]AhAzA A›A °A¼A -ÏAÚAìAB%B*B 0B!=B_B!}B#ŸBÃB ÙB -æB9ñBU+C=C<¿C=üC:D"@D?cD£DµD ÆDÒDÖDÛD(àD, E6EFEXEiE -zE…E›E°EJÄE FF+FDF ^F kFxF“F ­F ¹FÇFßFùF G;#G_GyG ˆG •G¡G»G ÍG ÙGçG ÷G H HH&H DHNHiH†H˜H¬H¿HÐHãHôHI"I4III+`IŒI¤IÄIËI ÚI çI ôIJ J J+J#BJ fJrJ „JJ¥J¼J6ÔJ K(K0K7K LK7YK‘K¯KÄKÔKÛKòKL L $L0LBL VLcL LL¢L¨L -¯L -ºLÅL ÍLÚLïL þL M -MM"M 7MCM -ZMeM…M ¢M®MÀMÛM÷M NN.NGNWNkN4€NµNÒNåNþNO.O=O.WOE†OÌO ÝO ëOøO P P,PGP MP [P gP -sP~P P -›P¦PµP ÄPÑPîPöPœ -QN§Q -öQR -RR#R +R7RIReR{R#•R¹R×R ëR÷R S%S;S#USyS—S «S¸SËSèSÿS$T?T^T sT}TT§T»T!ÓTõTU#U -*U5UJU ZUgU†U¡U¸UÌUäU úUVV4VKVjVV šV¨V»V ÎVÛVðVWW/WBWYW -kWvW†W" WÃWÝW ÷WXX2XJXcX=sX6±XSèXJn GnTndn snn n œn¨nÅn!Ônön -o(#oLo#Uo yo ‡o”o›o -¡o ¬o ¹oÃoÒoæop -p p -p (p6pFpKOp1›p7Íp1q57qHmqA¶qŠøq;ƒr!¿rÁár £sæÄs «t¨¸u}av*ßvB -xæMx4ySy‚ÕyXz ^zlz)sz5z¯Óz1ƒ{0µ{0æ{1|(I|Cr|€¶|S7},‹}2¸} ë}A AN*«»íg€ UÎb‚£1ƒªÕƒ§€„§(…Ð…˜Ó†Gl‡è´‡ïˆ2‰À‰NÚ‰ )Š-3Š -aŠlŠŠ‘Š¢Š¨Š­Š¼ŠÅŠËŠÝŠðŠ ‹‹(‹ 8‹ F‹P‹i‹r‹ z‹‡‹ -‹<˜‹ Ռ㌠úŒ*:I^xˆ—«ºÔä óŽŽ -$Ž/Ž4Ž=Ž3TŽ;ˆŽ;ÄŽ¡¢F© ðú ÿ ‘‘ ‘(‘ :‘[‘b‘j‘s‘‘‘±‘3Ê‘#þ‘"’:’M’]’w’’œ’«’±’ ¸’Ä’á’ê’Fó’:“ -Z“ -e“p“ u“ ƒ“ ‘“ ž“ «“ ¹“!Ç“!é“ ” ”+#”KO”0›”QÌ”˜•¢·•$Z–5–Pµ–G—-N—O|˜j̘o7™e§™j š~xšp÷šoh›wØ›<Pœ?œ>Íœt t`ö‰WžážaŸ0gŸ˜ŸžŸ¥Ÿ·ŸÌŸ ÝŸëŸ6íŸo$ ” –  4¥ #Ú Èþ GÇ¡%¢X5¢UŽ¢Oä¢4£K£T£]£e£ -n£ y£ …££ ˜£¢£«£#½£á£ é£÷£¤¤¤¤%¤8¤K¤T¤f¤ x¤‚¤ ‡¤ •¤£¤ º¤Ĥ̤Ò¤ Õ¤ߤò¤ ¥ ,¥M¥ S¥`¥g¥p¥ ¥œ¥ ¤¥®¥¿¥ Â¥ Î¥ Ø¥æ¥ú¥¦ -¦¦ ¦(¦0¦P¦ Y¦g¦m¦|¦›¦ ª¦¶¦ -¾¦ɦÛ¦ ë¦ù¦§ §&§ :§ H§V§ f§s§†§œ§¬§¾§ ϧ Û§ç§ö§ÿ§ ¨ #¨ -0¨;¨A¨P¨l¨{¨¨§¨¸¨Ѩâ¨ô¨ © %© /©9© A©K© Q©]©r©© ‡©•©¥©¬©²©¹© Ì©Ù©Ü© å© ï© -ù© -ªª(ª1ª 9ªCª IªVª\ªbªhªoªvª~ª†ª ™ª ¥ª²ª̪ Ôªáªèªïª÷ª« « -@«K«^« m« y«…««•««« º« Ç«Ó« Ö«à«å«ë«þ«¬"¬*¬=¬S¬ s¬ €¬Ž¬”¬¤¬ª¬±¬ -¹¬ ĬѬ á¬ ï¬ -ý¬ ­ ­ #­ -­ :­G­ X­b­ j­t­{­ -­Œ­ •­¡­ª­ ¹­ Æ­Ò­Û­ â­ð­®® ® ® +®8® A® O®]® l®x®‹®‘®”®™®¡® °® ½® É®Ö®ë® þ® ¯¯¯+¯>¯P¯(b¯‹¯“¯œ¯²¯ʯܯ4ö¯1+°/]°°£°³°Ó° Û°è°î°±#± 7±X±w±~±Ž±"ž±Á± -ɱÔ±æ±÷±þ±²² .²:²A²I²Y²k²€² -™² -¤² -¯²º² À²βÔ²ä²ê²ñ² -³³-³3³ -<³G³M³V³[³p³†³•³ ³ª³¹³½³óƳÕ³Ù³ -ß³ê³ñ³ö³5ú³0´ B´L´\´a´h´ p´~´!“´ µ´ Ö´÷´ -µ "µ.µ5µ9µAµFµLµRµ Yµ cµmµsµzµ µµ.¢µѵîµp·&‰·w°·X(¸>¸MÀ¸P¹Y_¹q¹¹A+ºqmºIߺC)»Dm»c²»S¼8j¼>£¼1â¼>½GS½B›½ -Þ½é½ -ð½ -û½ -¾ ¾ ¾)¾9¾ -H¾S¾V¾j¾ „¾ ‘¾ ž¾ ª¾ ˾쾿, ¿8¿J¿\¿d¿l¿ …¿’¿›¿¤¿ ­¿ ¹¿ -Æ¿ Ñ¿ -Þ¿ é¿ ó¿ -ÿ¿ -À - À -+À6À ;ÀIÀaXÀ~ºÀ;9Á:uÁ&°Á×Á ðÁ úÁÂÂ(Â7 MÂWÂm‚”¤ÂÃÂÓÂã üÂÃ.ÃKÃ[ÃvÃçÃÇÃàÃüÃÄ,2Ä8_ĘĮÄËÄçÄ#ðÄÅ/ÅLÅdÅ{ŖųÅÍÅ*äÅÆ-ÆMÆTÆhÆqÆ -‚ÆÆ­ÆÄÆ ÍÆÙÆéÆûÆ\Ç?pÈ;°ÈìÈÉÉÉž É ¿ÉËÉçÉÊ Ê)Ê:Ê -CÊNÊiÊ…Ê”Ê6¯Ê@æÊ'Ë/?Ë oË |ˉ˙˳ËÌËÜË ãËïË Ì$Ì$;Ì`Ìy̨̼̓ÌÛÌòÌûÌ ÍÍ&Í8ÍMOÍ;ÍÙÍ àÍ êÍôÍÎ -Î 'Î1Î :Î[Î*dÎ Î΢ΨαÎÊÎÚÎïÎÏ%Ï68ÏoÏvωϡϷϿÏÈÏ ÙÏçÏïÏÿÏРЂ$ЧР¬Ð¹Ð ËÐ ÕÐ ßÐÑÑ,Ñ 5Ñ]CÑJ¡Ñ[ìÑKHÒC”Ò„ØÒ%]Ó%ƒÓ8©ÓâÓQýÓ7OÔ+‡Ô%³Ô2ÙÔ ÕÕ ;Õ EÕRÕ gÕˆÕžÕ¼ÕÖÕôÕÖ 1ÖRÖ)qÖ›Ö»ÖÁÖÔÖ#ãÖ× %×2×N×i×השװ׷×Æ×Ú×÷×ØØ ØØ3Ø FØ"SØ<vØ@³ØMôØOBÙ:’Ù2ÍÙ.Ú/Ú%OÚ!uÚ7—Ú'ÏÚ$÷ÚÛ|5ÛA²Û%ôÛ'Ü7BÜ2zÜ$­ÜÒÜ%äÜ -Ý Ý)'Ý!QÝsÝ zÝ„Ý™Ý¯Ý ¿ÝÍÝÓÝ×ÝìÝ Þ%ÞBÞ[Þ1oÞ -¡Þ¬Þ¼ÞÁÞÐÞ áÞïÞ ß /ß/9ßiß|ß ßßµßËß Óß áß íß -ùß)à0.à_àtà…à¢à!Ààâà#á&áCá`á,{á¨á½áÔáéá üáâ â¡)â ËâÕâ éâóâ"ã$&ã&Kãrã‹ã&œã&Ããêã ää)ä9ä Oäpä4ƒä¸ä2Óäå2#å'Vå'~å&¦å$Íå,òåCæ cæmæ#|æ æµæËæáæ&öæ4çRç%gçç¢ç Àçáçèè"è-7è eè sè è è°è·èÑèÙèíè þè éé 2é?éNéUéfé éé6–é ÍéÛéíéê"ê)ê9ê?êFêWêgêzê‹êœê¬ê¾êÒêñêëë)ë?ë -Wëbëhë%në!”ë ¶ëÄëÞë;÷ë3ìDìTìeììœì«ì¼ìËì Úì èìôì íí-í<íKí^íví’í¯íÃíÓíóí -î7î Gî Sî]î sî €îŠîœî -¥î -°î»îÙîöî -ï!ï5ïMïfïzï ’ï œï¨ï -ºïÅï#ÍïUñï\GðB¤ð çð -ôðÿðñ -2ñ=ñ%Pñvñ.†ñ$µñÚñëñüñòò,ò;òKò ]òiò#ò£ò¶òPÈò!ó;óKóZóló|óŒóœó­óËóåóõóôô-ô4ôNô!bô„ô¤ô¿ôÙôêôÿô$õ>õ]õ lõzõ -”õ&ŸõÆõÖõ ñõÿõö(öBö^ö rö ~ö ‹ö—ö2­ö àöêö$÷*÷@E÷†÷¦÷'­÷%Õ÷ û÷ ø*=øhø~ø‡ø Ÿø4©ø)Þøùù"ù3ùLù%kù‘ù)©ùÓùðù! ú+úKHúT”úéúïú öúûû%7û]û tû"û -¤û¯û6Ïû0ü7üOühüü šü§ü»üÎüãüúü ý(ý&Gý nýBzýL½ýW -þWbþdºþPÿJpÿ’»ÿPN[ŸVû|RMÏWdu‘Ú l x†˜§½Åà÷/?[tŽ­Èãÿ1Gdy–!´Ö ö" .Lh00°áñ '6FUn† ¸È æ ô&7Pp¦)Àê -ï ú ! > E L ][ ¹  Ô ´â  — -¥ -¾ -Ñ - ë -õ -  -  A) k † ¡  · Ä  Ù å ù þ  ! > N f ~ " ² ŠÅ P ÷k c‚lï†ÿ†‹|‘&CKk}†›·0Ð/$1 V `j|‹š  ®´» Áâñ#"F]a|$š¿Î×ó - !(07?EX)i"“¶Í Ó3ß3GdM ² -¾É -Þ -éSô,H;u±·=É$+;CS dpwŒx›èNý:L7‡¿ÆÕçþ $DV.kš ¸Ù.ë,M?Ÿ¯¾ÆÖïÿ 1JZk{ ‚Œ Ÿ «¸Öß èõ­¾ Õ$ã< BPi”R¤:÷K2~™#® ÒÜù  *4 _ w  (Ÿ %È 1î 4 !0U!3†!)º!ä!:ö!1":"I"/\"Œ"% "+Æ"ò"# #*# @#M#c#y#Š# #²#Ã# Ú#û#$(5$"^$$š$®$$É$î$" %,0%&]%„%¡%´%#Î%ò%!&+2&%^&„& &°& Ç&è&'("'"K'n'^‡'æ(î()))8)A)H)Y) v)„)E‹)Ñ)!å) *#(*L*`*r*ˆ*$™*¾*Ý*ú*+4+ I+j+~+œ+¤+#´+Ø+÷+ ,I,c,8k,¤,Â,Ò,Ù,ó,-#-=- D-Q-Z-j-{-.—-*Æ-ñ-! .-. <.I. Z. {.‰.¤.À.Ï. ë.ù./1/@/]/m/ˆ/—/´/½/Ä/Ú/â/ê/ó/û/0#00T0k0"‰0¬0´09Ê0"1'1A1`1f1m1Š1,§1Ô1Ý1ä1ö122/2?2[2v2•2´2Ð2á2ò23393/T3 „3"‘3'´3Ü3å3î3ó3ù324H4&a4ˆ4 4¸4Ñ4Ú4ì4ý455 .5:5 -T5 -_5 j5w5 5œ5¬5Â5 Ô5à5ú5 -66%36$Y6~6”6 œ6¨6 »6È6/â677 7 -,777I7`7z7 •7 ¡7 -­7¸7 Ï7 Û7 -ç7"ò7 8!#8"E8 h8v8 ˆ8)”8¾8 Î8)Ú8 9 9 9<-9j9)„9®9Ê9!ê91 :>:"P:s: ‚::—:®:µ:Æ: Ø:æ:Q;QS;%¥;Ë;æ; ú; << <<<L<h< <<•–<,=@= V= -`=k= q=~= —=¡= À=Î=Ý=&ù=& >(G>'p>(˜>Á>Ý>ö> - ? ? "?,?>?M?V?h?qq?7ã? @N%@t@7{@'³@Û@ò@A A,7AdAkAtA{AA§A!¾AàAñAB BB 7BABRBXBiB €B B—B¨B/ÃB&óB C(C.CACPC#gC‹C©CÅCàCöCC DODdDlD|D„D#œDÀDÚDëDôDE E E 5EAE \E.hE—E¦E»EÔEåEûEF*FTTeT ºT ÈTÖTòT UU*UEU _UmU~UœU¸UÉU7æUVWGWeW„W–W©W¼WÐWèW$X/)XYX"tX0—X0ÈXùXJY ]YkYY˜Y²Y"ÉYìYZ#Z3?ZsZ†Z ¡Z®ZÂZ!ÝZAÿZ A[b[k[t[[G[å[\#\ -7\"B\e\ƒ\”\¦\·\Ò\è\ú\]*] D] P] Z] h]u] }]‹]§]¹]Ð] Ö]â]é] ^#^ 4^6B^#y^^¬^&Ê^$ñ^_6_F_\_x_Ž_¦_G½_``;`#W`{`“`¥`6¾`Jõ`@aSacaraŒa›a®a ÊaØaìabb+bIb^brbbb"ŸbÂb!Ôb»öbj²cd0d8dAdZdbdud"Žd±d Îd*ïd$e?eZere'e!¸e%Úe/f)0fZfzf’f&¯f Öf$÷f.g(Kgtg“g¥g!½gßgûg)h#Ehih ƒhh$hÂhÕh,åh$i7i"Ri!ui$—i¼i"Ìi$ïi$j&9j`j&~j¥j¶j"Öjùj! k+kFk bkƒkŸk»kÖkækùk6lNlllŒlœlºlÚl#ölm?:m4zmT¯mQnVnunn ¦n°nÅnân*øn#o!9o[o -ro}o’o«oÅo Üo%êop&pBp2[p Žp+¯p&Ûp&q$)qNqgqzqq§qÀq Üq#ýq!r7(s‚`s ãsauDfu­«u/Yv¡‰vŸ+w>Ëwe -xTpxqÅxG7y©y*)zT|@p}B±}Üô}Ñ~à~è~î~õ~+GVk„ªÇå €€"€2)€\€v€†€ž€¸€É€ã€ù€ %&L]w-Ë àî‚ ‚8‚/O‚&‚¦‚¸‚Ђ/ê‚ ƒ;ƒSƒmƒƒƒ£ƒ$²ƒ׃ îƒüƒ„#„=„7F„~„†„£„ ©„·„ ¾„Ë„á„ ö„…… … …)…<…>M…Œ… ††0†H†P†p†‹†,“†+À† ì†$ ‡2‡N‡#n‡%’‡¸‡Á‡ч؇à‡ù‡ˆ ˆ.ˆ>ˆSˆbˆ rˆˆˆˆ™ˆ­ˆ¼ˆ̈àˆòˆ:‰%I‰Lo‰)¼‰'æ‰5Š DŠPŠlŠ}Š ’ŠŸŠ¦Š»ŠÓŠÛŠëŠ‹‹ $‹1‹A‹Q‹b‹y‹P~‹7Ï‹9Œ8AŒ8zŒI³ŒOýŒ™MJç2ŽÕJŽ#  DKPÊœ‘’g’ÿú’eú“9`”!š•§¼•¢d–— —!—-'—LU—ᢗ5„˜7º˜?ò˜B2™-u™N£™„ò™ewš2Ýš?›tP›\Åœ\"QÃÑ*•ž ÀŸΠ¡Ô¡¬v¢ #£¡Ä£‹f¤¦ò¥f™¦ϧЧ=Ѩ!©U1©‡©.Ž©½©Å©Ø©ø© ª -%ª0ª Aª MªYªtª‘ª«ª êäªûª«)«G«]«r« «›«|¸«5­E­ ^­j­|­™­¬­¾­.Ú­ ®®.®D® T®u®†®•®¤®½®Í®Ö®Û®ä®=þ®?<¯F|¯Éï2°SÀ± -²²(²?²W² `²m²*Š² µ²Á² ʲ#Ö²'ú²"³=6³"t³—³¯³ʳç³(´/´E´Y´_´f´ {´œ´¥´Q®´*µ +µ 8µ -FµQµaµqµ€µµžµ'³µ"Ûµ þµ ¶5¶gP¶9¸¶ò¶¼r·µ/¸cå¸KI¹U•¹dë¹RPºh£»ƒ ¼Œ¼s½y‘½£ ¾•¯¾ŠE¿žÐ¿QoÀTÁÀRÁ‹iÁ—õÁT—â¨zÃ#Ä2*Ä]ÄeÄnÄ!‡Ä©ÄÀÄÑÄ@ÓĉŞŠŨÅ;±Å-íÅÆÆSâÆ*6džaÇnèÇcWÈ&»ÈâÈ ëÈøÈÉ É É -$É /É 9É CÉPÉ1kÉɳɸÉÏÉÕÉåÉ ìÉöÉÊ*Ê9ÊRÊ gÊsÊyÊ‰Ê’Ê ¦Ê ³Ê ÀÊÍÊ ÐÊ ÞÊìÊ# -Ë'.Ë VË`ËiË qË{˛˪˲˻ËÏËÒËåË íË ûËÌ$Ì ,Ì8Ì@ÌTÌ[Ì -z̡̙̅Ì$µÌÚÌðÌÿÌ -ÍÍ)Í8ÍHÍXÍ gÍt͖͆ͦͶÍÅÍÙÍòÍÎÎ 'Î3ÎCÎ -ZÎ eÎ †Î”Î ¨Î²ÎºÎÌÎêÎúÎÏ-Ï?Ï]ÏpÏ‚Ï3—ÏËÏ -ÓÏ ÞÏèÏ÷ÏÐÐ'Ð 7ÐAÐTÐhÐqÐyÐÐСР¤Ð°Ð ¹Ð -ÃÐÎÐ"ÝÐ Ñ ÑÑÑ #Ñ0Ñ8Ñ@ÑHÑPÑXÑ aÑkÑ ÑŒÑ$¤Ñ ÉÑÓÑêÑòÑúÑÒÒ%4Ò ZÒfÒ}ÒҜүҷҿÒÜÒëÒûÒ -Ó ÓÓ"Ó)ÓCÓ^ÓfÓnÓƒÓ2 ÓÓÓÛÓðÓöÓÔÔ Ô (Ô 5ÔAÔ PÔ\Ô kÔxÔ ˆÔ •Ô¡Ô °Ô¾ÔÎÔãÔìÔûÔÕ Õ -Õ %Õ 3Õ=Õ[ÕsÕ{ÕƒÕ ŠÕ˜Õ«Õ´Õ ½ÕÊÕÙÕèÕýÕÖ,Ö IÖWÖoÖuÖxÖ}Ö ƒÖ Ö žÖ«ÖÃÖÛÖïÖ× ××.×C×V×.j× ™× ¥×±×Ç×Þ×#û×7Ø>WØ9–ØÐØçØ$Ù +Ù 7ÙEÙMÙgÙ-}Ù"«Ù&ÎÙõÙÚÚ66Ú -mÚ -xÚƒÚ™Ú³ÚºÚÊÚæÚ ÛÛÛ!Û;ÛPÛdÛ {Û‰Û’Û›Û -¢Û ­Û ¹Û ÆÛ ÒÛ!ßÛ ÜÜ .Ü 8Ü -EÜ PÜ \ÜfÜkÜ†Ü Ü ·Ü ÁÜÎÜÞÜâÜêÜíÜýÜÝ -ÝÝÝÝI#ÝmÝ „Ý’Ý¦Ý ¯Ý¹ÝÂÝÑÝ)èÝ+Þ(>Þ*gÞ -’Þ Þ©Þ°Þ ´ÞÀÞÆÞÍÞÓÞ ÚÞ äÞîÞôÞûÞßfß<|ß"¹ß$äp÷ ¤¬íù«æ±³f’µ~àvèj™`™/ ÿKfŠeO `·T ¨^cRŠ‡& ¶.£òÀ2 £¤Û§ãn†Üð¨œ×SfÍÒopOU@Ï`kÞÁ^‘h³÷: Ðs&ÄÞ–Šd§Þd-v¦èÂâK¹LÓÅ©€Ò9M 5 ô±f?%wÅÂÒöÓ~\üg 3Ÿ€- +5u] Q -' VÞ%=sâ”yBñRÌŽöxÜ–LØ«;êqW= ¿x%à 9ë5ì6Ûú2 Wók‡Qñc=h͆Ÿí#®ì,ê7T@˜—Ì]",Q7VPM€; §ÒT…çÏž˜¡ »ÌE}r*øõÝôœa½‘½¥P -Y4 Æ»ü¿|~:I¸vOy¹ÙÁ( ¿Nª<a}×Ã4j¬ÇêbÒ¾u/-\­~®´€‹ -_¹%+…˜ü5/:XËä›à‚T&WŸý"/”Õw q&R ùRâ¶3ÎNôDÀ› }F;¾Ê% ôK;Aé‚Ñ…}ïn7‰§·ö¨ˆˆ”xPr@¢I;üNEßÙòãNÉŒÑÆhªxw …Å®H¡×ï,TˆûÐ[Þ¼×tê#tËF¾´ÿîÿÄ!Å& qEaãO-„: Ô£ gØ°Ÿ^±¼ñ -]C¥ÀDÚª‚^EU OÁaØÖ«´–Ø_AŽ•áK{·sÞHL -ó1î‹"¿S±Ü 4qéÛ¶-y3¿74Fz‡öóºw¡âí" Â…Áº'˜N‡ >åp«Úì—ÝFO²ö*$ Ò»|Š™_¸ ¢d¨õ z­ÕíÔ“Q*_Ys6ÿÀáçƒþb*;#$®›óûãô鈔$ñsZ)üþ!¢p¼h<Ê’3Ɇɚ“ðæ×òMå@!?[QÌg/x4læ!„ø}9#¹—È -øpÅX“VÓBÑ]·Š,¶X¨€RèüMv¬NfËopvQ =$gc0ßWáåÑF 0|±ÈB]änÉLõ&Õ äy#ŽÌÅa½<li¡›Nɺ¹áµÌ¦~æ y\ýVMÏÐë±t eéÌÄ 8@kÛ2Ê<Õ£ìö×î/BEƒ§1 Ë# çƒNŒ ðõA^dß -áÊ&ü I\°ÙÆð<ÀŸw·á°>Ë‚¾eÙdä´„ g Søœ'‚“C Z–L ‹¸²Öàá›”A=ÓG ¡[©¸ªýC{÷Áo· ¬Çž0æ». íC ý uÓ³-¦S™wxSàø­Î`†ªÙ¼YÐÚCiÔñÈ<­lÁ<Œ A ›;‹Þn§ 5ÉGßÁâ1ÜMKZq ¯„î>Kü•D* ?«uåG†{Ê" (lº;kWåëÈ÷­\#i“„qDZ† ø Îåzëæ CLÙ]€Æ$\¨†D*Bÿw% ¾ZdG‰`? òk8^?¼<å¼í7¼fÚxEó'ï°³€JK~å äG{¬ò!㷻Ɗ_qpÂ瑘I àŠ9÷/œ.‚±@ ¾6C JvÖ\FB~®,ƒ%ÎõsÇ©)JöÏ µ.Øïý5|‰À7tËIÙ"1PÞz¢ž‰•£-ÏXÿ¿ýu}'°0 È—>Ÿ½†Ã…Þ‚Á dMuv€ý²6Ķ}ª©4¨…š1˜«ob{{ìÍAHhânQîݽ {øH¯Šþäå‘!ï—f0wPД - žý¦K ¥Œ/ ¸0™ÖG#ù:¸¥éR»ò(ÃÅöRxõ½LÕ°-¢˜uõet]ÎÕH_ÜŽ3‡r ¯ÿg™š­ïiòãè²-cTžÄ¶®%ÉÆ4m÷¹è£+2XO”ôk ³êÒiP.U6ìÑÝÈyJL "E ) S‰kvšp¤›æÖÀ“ÑÝ0‹î.gW(5ºùš2$ð›’’¡%ù?)…­ + -¢j礲rôúÉIñ÷|¯š¡í‘=N •üÐäl?7 m¥™ºl]¸Ÿ()Â=¢éñà+q‰ê"jCBY “œUTÔPŒN+æá´ÇyóúVâ8CÂFMˆxZã¬×ó©«mÜz 1¥9tYÝœëÕú¹ÌQí4á37?ͧu‹ 3Ã9Ü¡ÄA 2jÇ9Ú,ø'é¤À× 9ûUÛÓOÇ7AѶ.Wœ·<´\‡‹:í)­Ú{ž”! ºn—ØPS¼I¸úEµ ŒªDs:Uœݶ²ð6¥2r’ƒe=ìÇÆ$ }Zgzj‘òžcûŒa`ƒ5 ©2î8Â’:Ë}< m:Î/àÍv_ #Ý™•MJèútVO–þ1¡\ù®þ0¢IÏŽ–cìû7Öë°’o~B  + ¦—¦ Ä maÍ=͉)×>h—Œón߸:6 3oP–TŽByܱè˨ýic“H[΄Ԥù—ÙÛ-H8ëŒÔ«¯'Š§G(JFC3 ÐÎWr´~òª[4AD¬'|µâ ß’¯“öÝy£·ÇR8 Rj;z‘µß÷bnû6>ÓÓÑ8*bY¤#‚8 ç;P `V_mV @ ú ¹S ¨ZX O^¤50Àeã=Û½î0µ^r„Žði*½ lK–(fÆtìhç»é©Òg£E´mzÏ*ÕÜÈa‹X Ùr¿ú¶ƒëë]ÁÚ R[ÄJ`‡ùUÈÖ€‰,l.óŽY{Jn‹õVþ°ê!ç ?ß )ûjrÿjS+ucªFÉHA& dšû^è2w>o½> êñÏ3µž 6 Ìõ•cUˆdßþ@˜³¼ô$¯5|% bGšH©™â’ïϦ„ØÅ MƒDJ¬TÕŸñ²ži«¾@h>à[+ÔsŸs‡"UÚô”ˆY¦ Z‚lÄ6Ë÷è¥Ø2 &ˆÅÿ,Ð!àe„.þ– ¿ÐLÛ9ðkJ µ, ²ºÂ  ê²»Žø•e[¿iÚÔ®(W‘ÊIú´'³®E_ (ï¯Î8Èo³KéÓ?­(bpÊ;Û¾âÔ!¥b'Öʹ8ƒš‡ -/˜" ï¤G9 ûDmD +1*aÆ£þ…I`¬æÖmS.Í&ÊÇH 4 •[ØÕ›VÑ§Ò TäX°FºÃBœ1çQU»|Lz ©X¯f)‰ùq‘b|tãð¦>Ghke@$,†o1 Q³Ã)Y -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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: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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.This window has %d tabs open. Closing the window will also close all its tabs.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%sUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse _web browser insteadUse all visible layers when shrinking the selectionUse black and white (1-bit) paletteUse color from gradientUse custom paletteUse info windowUse web-optimized paletteUser Installation LogUser InterfaceUtility windowValueValue:Vectors modVersion %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: - -%sWarning: Failed to save data: - -%sWeb BrowserWeb browserWelcome to -The GIMP %d.%d User InstallationWhen enabled the dialog automatically follows the image you are working on.When enabled, GIMP will show mnemonics in menus.When enabled, all paint tools will show a preview of the current brush's outline.When enabled, an image will become the active image when its image window receives the focus. This is useful for window managers using "click to focus".When enabled, dialogs will show a help button that gives access to the related help page. Without this button, the help page can still be reached by pressing F1.When enabled, menus can be torn off.When enabled, pressing F1 will open the help browser.When enabled, the GIMP will not save if the image is unchanged since opening it.When enabled, the GIMP will use a different info window per image view.When enabled, the X server is queried for the mouse's current position on each motion event, rather than relying on the position hint. This means painting with large brushes should be more accurate, but it may be slower. Perversely, on some X servers enabling this option results in faster painting.When enabled, the cursor will be shown over the image while using a paint tool.When enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWhite Balance operates only on RGB color layers.WidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: pt_BR -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-14 02:58-0200 -Last-Translator: Joao S. O. Bueno Calligaris -Language-Team: Brazilian Portuguese <> -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3 - -Opção "%s" inválida - -Uso: %s [opção ...] [arquivos ...] - --batch-interpreter - O procedimento com o qual processar comandos de lote. - --debug-handlers Habilita manipuladores de sinais de depuração não fatais. - --display Usa o display indicado para o X11. - --dump-gimprc Imprime um arquivo gimprc com as opções padrão. - --no-cpu-accel Não usa recursos especiais da CPU (MMX, etc). - --no-shm Não usa memória compartilhada entre o GIMP e seus plug-ins. - --pdb-compat-mode - Modo de compatibilidade da Procedural Database. - --session Use um arquivo sessionrc alternativo. - --stack-trace-mode - Modo de depuração para sinais fatais. - --system-gimprc Usa um arquivo gimprc do sistema alternativo. - --verbose Mostra as mensagens de inicialização. - -b, --batch Execução de comandos em lote (batch). - -c, --console-messages Mostra avisos (warnings) no console no lugar de caixas de diálogo. - -d, --no-data Não carrega pincéis, degradês, paletas, texturas. - -f, --no-fonts Não carrega nenhuma fonte. - -g, --gimprc Usa um arquivo gimprc alternativo. - -h, --help Apresenta esta ajuda. - -i --no-interface Executa sem interface de usuário. - -s, --no-splash Não apresenta a janela de inicialização. - -v, --version Apresenta as informações de versão. -%d Camadas%d ppp%d ppp, %s%d camadas%d minutos%d segundos%d x %d ppp%d x %d ppp, %s%d x %d pixels%g x %g %s%pCópia do Canal %s %s Canal para Seleção.Mensagem %s cópia de %s%s máscara%s%s Clique: estende a seleção%s%s Arrastar: mover & comprimir(%0.3f, %0.3f, %0.3f)(Nenhum)(Esta janela será fechada em dez segundos) -(Buffer Sem Nome)(Modelo Sem Nome)(Varia)(limpo)(string UTF-8 inválida)(modificado)(Nenhum)1 Camada1 camada15 graus %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%) 1:4 (25%)1:8 (12.5%)2:1 (200%)Transformação 2D...4:1 (400%)8:1 (800%)<%s><>Para um desempenho otimizado do GIMP, algumas configurações podem ter que ser ajustadas.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.O arquivo de dicas do GIMP não pôde ser analisado!Seu arquivo de dicas do GIMP parece estar faltando!Um arquivo com o nome '%s' já existe._Adicionar à seleção _Ângulo:Sobre o GIMPAçãoAtivar a imagem em _focoFiltros AtivosAmostragem adaptativaAdicionarAdicionar Canal Al_faAdicionar Canal AlfaAdicionar ÂncoraAdicionar CanalAdicionar cor ao Mapa de CoresAdicionar GuiasAdicionar GuiasAdiciona Guia HorizontalAdici_onar Máscara à Camada...Adicionar CamadaAdicionar Máscara à CamadaAdicionar VetorAdiciona Segmento de VetorAdicionar Camada de TextoAdiciona Guia VerticalAdiciona uma Máscara à CamadaAdiciona a Cor de F_undoAdicionar a Cor de _FrenteAdicionar máscara à CamadaAdiciona texto à imagemAdicionar a cor atual ao histórico de coresAdiciona o filtro selecionado à lista de filtros ativosAdicionar a paleta %sAdicionar à seleção atualAdicionando tema '%s' (%s) -AdiçãoControladores de Entrada AdicionaisAjustar Brilho e ContrasteAjustar Equilíbrio de CoresAjustar curvas de coresAjustar Níveis de CorAjustar brilho e contrasteAjustar equilíbrio de coresAjuste de curvas de coresAjustar níveis de corAjustar matiz / luminosidade / saturaçãoAjuste de matiz e saturaçãoAjustar níveis automaticamenteAjusteOpções avançadasAtua em:Ãrea Afetada %sAerógrafoAerógrafo com pressão variadaA_lfa Para a SeleçãoAlinhadoAlinhamentoTodos os CanaisTodos os ArquivosTodos os Arquivos (*.*)Toda imagem e dados das operações de desfazer que não cabem no Cache de Fragmentos serão gravados em um arquivo de troca. Este arquivo deve estar localizado num sistema de arquivos local com espaço livre suficiente (várias centenas de MB). Em um sistema UNIX, você pode querer usar o diretório temporário do sistema ("/tmp" ou "/var/tmp").Permite que regiões totalmente transparentes sejam preenchidasPermite a seleção de regiões completamente transparentesPermitir aumento %sAlfaAlfa para SeleçãoAlfa:Uma imagem do tamanho escolhido vai usar mais memória do que está configurado como "Tamanho Máximo de Imagem" no diálogo de preferências (atualmente %s).An_imaçãoAncorar Seleção FlutuanteAncora a seleção flutuanteAncorar seleção flutuanteÂngulo:Anti borracha %sSuavizarAparênciaAplicar Máscara na CamadaA_plicar Máscara à CamadaAplicar LimiteAplicar máscara na CamadaTem certeza que quer remover "%s" da lista e do disco?Tem certeza que deseja remover o modelo"%s" da lista e do disco?Como nas P_referênciasConfirma antes de fechar uma imagem sem salvar.Proporção:Proporção:Anexar ParasitaAnexar Parasita à ImagemAnexar Parasita ao ÃtemAnexar parasitaAutor:AutomáticoAcompanhar _Imagem AtivaAuto-encolherEncolher a seleção automaticamenteRedimensionar janela automaticamenteCarregar AutomaticamenteDetectado AutomaticamenteFiltros DisponíveisTipos Disponíveis:Preenchimento com Cor de FundoB_rilho e Contraste...B_uffersFundoCor de fundoCor de fundo escolhida:Fundo: %d, %d, %dPara trás (corretivo)Calcula a área a ser preenchida levando em conta todas as camadas visíveis.Calcular a seleção com base em todas as camadas visíveisAtrásInclinadoBi-linearPreto & brancoPreto:Cores dos Cantos da _Mescla Mist_urarMisturarOpacidade dos Cantos da _Mescla Mistura:Mistura: Inválida para imagens indexadas.Misturando...AzulAzul:DesfocarDesfoca ou Deixa NítidoCriar _Borda...Criar Borda do CanalCriar Borda da SeleçãoCriar borda da seleção porBrilho e ContrasteBrilho e Contraste não funciona em camadas indexadas.PincelEditor de PincéisDiretórios de PincéisInterface de PincéisPincel:PincéisMenu de PincéisPreenchimentoBuffersMenu de BuffersSuper-exposiçãoSecoPor ExtensãoAo reverter a imagem para o estado salvo em disco, você perderá todas as modificações, inclusive as informações de desfazer.CMYKC_alibrar...Selet_or de CoresCo_lunas:C_ombinarCalibra a Resolução do MonitorImpossível desfazer %sTaman_ho da Tela...CancelarCancelar GuiaImpossível adicionar uma máscara de camada de dimensões diferentes da camada especificada.Impossível adicionar uma máscara de camada à uma camada sem canal alfa.Impossível adicionar uma máscara de camada a uma camada que não é parte de uma imagem.Impossível ancorar esta camada porque ela não é uma seleção flutuante.Não é possível converter para uma paleta com mais que 256 cores.Impossível criar uma nova camada da seleção flutuante porque esta pertence a uma máscara de camada ou canal. Use copiar e colar.Impossível criar diretório '%s': %sImpossível criar pré-visualizaçãoImpossível cortar porque a seleção atual está vazia.Impossível expandir ${%s}Não foi possível flutuar a seleção porque a região selecionada está vazia.Impossível subir uma camada sem alfa (transparência).Impossível salvar. Nada está selecionado.Impossível contornar um canal vazio.Impossível desenhar o contorno de um vetor vazio.Tamanho da TelaModo de preenchimento da tela:Centro X:CentralizadoAlterar Cor de FundoAlterar entrada no Mapa de CoresAlterar Cor de FrenteAlterar Resolução da ImagemAlterar Unidade da ImagemAlterar Tamanho da ImpressãoAltera a camada ou vetor atualAlterar cor de fundo da gradeAlterar a cor de frente da gradeAlteração da paleta indexadaMuda a perspectiva da camada ou seleçãoA alteração do atalho falhou.CanalAtributos do CanalNome do Canal:O canal não pode mais ser baixado.O canal não pode subir mais.Cor de canalO canal já está no fundo.O Canal já está no topo.Canal para _SeleçãoCanal para SeleçãoCanal para seleçãoCanal:CanaisMenu de CanaisTamanho do _xadrez:Escolha o Estilo de ContornoCírculo_LimparLimparLimpar CanalHistórico de DesfazerLimpa todo o textoLimpar errosLimpar o histórico de desfazer...Clique em "Continuar" para aceitar as configurações acima.Clique em "Continuar" para criar seu diretório pessoal do GIMP.Clique em "Continuar" para entrar na instalação do GIMP para este usuário.Clique em "Continuar" para continuar a instalação do GIMP para este usuário.Clique para conectar esta âncora com a ponta selecionada.Clique para criar uma nova âncora. (tente SHIFT) Clique para criar um novo componente do vetor.Clique para criar um novo vetorClique para criar pré-visualizaçãoClique para remover esta âncora.Clique para inserir uma âncora no vetor. (tente SHIFT)Clique para tornar este nó um ângulo.Clique para tornar o caminho aberto.Clique no vetor a editarClique para atualizar pré-visualização -%s Clique para forçar atualização mesmo se a pré-visualização estiver em diaClique e Arraste para mudar a forma da curva. (SHIFT: simétrica)Clique e Arraste para mover a âncoraClique e Arraste para mover as âncorasClique e Arraste para mover o componente. (tente SHIFT)Clique e Arraste para mover a alça. (tente SHIFT)Clique e Arraste para mover o vetor.Clique: selecionaClicar: selecionar Arrastar: moverCortar o resultadoClipboardCortada para o tamanho da camada de baixoCortada para o tamanho da imagemClonarFechar %sFechar todas as AbasFechar todas as abas?Fechar esta AbaCo_piar VetorCoresCorEquilíbrio de CoresFiltros de Exibição de CoresSeletor de CoresInformação Sobre o Seletor de CoresEquilíbrio de _Cores...Re_tícula de coresEquilíbrio de cores somente opera em camadas RGBApagar corÃndice da cor:Cor:_Mapa de CoresEspaço de _cor:Colori_zar...Mo_delo de Cor para o SegmentoMo_delo de Cor para a SeleçãoColorizarColorização só opera em camadas no modo RGB.Colorizar a imagemColorizar a imagemMapa de CoresEditor do Mapa de CoresMenu do Mapa de CoresColunasCome_ntário:ComentárioCon_traste:Con_volverConfigurar Filtros de Exibição de CoresConfigurar Dispositivos de Entrada Estendidos...Configurar G_rade...Configurar GradeConfigurar a Grade da ImagemConfigurar Atalhos de TecladoConfigurar _Atalhos de Teclado...Configurar o filtro selecionadoConfigurar o filtro selecionado: %sConfirme o Tamanho da ImagemConfirme o RedimensionamentoConfirme Edição de TextoConfirmar fechamento de imagens não sal_vasAtalhos ConflitantesCônico (assimétrico)Cônico (simétrico)Conectar SegmentosConstanteRestrições de movimentoContextoCursores que dependem do contexto são legais. Eles são ativados por padrão. Entretanto, eles requerem recursos extras que você pode querer não desperdiçar.ContinuarContribuições porConverterConverter CantoConverte Imagem para Tons de CinzaConverte Imagem para Cores IndexadasConverte a Imagem para Cores IndexadasConverte Imagem para RGBConverter imagemConvertendo para indexado (estágio 2)Convertendo para indexado (estágio 3)Convertendo para indexado...ConvolverTipo de Convolução %sCopiar com NomeCopiar Como é _VistoCopiando arquivo '%s' de '%s'...Direitos autorais:Segmento %d corrompido no arquivo de degradês '%s'.Impossível criar '%s': %sFalha na criação do arquivo temporário '%s': %sImpossível remover '%s': %sImpossível encontrar o navegador de ajuda do GIMPImpossível abrir '%s' para leitura: %sImpossível abrir '%s' para escrita: %sImpossível remover miniatura '%s': %sImpossível ler %d bytes de '%s': %sImpossível buscar dentro de arquivo XCF: %sNão foi possível iniciar o plug-in do navegador de ajuda do GIMP.Contagem:C_ortar CamadaCriar _Novo Diálogo de AcoplamentoCriar um Novo ModeloCriar uma Nova ImagemCriar uma Nova CamadaCriar um Novo ModeloCriar uma nova janela para esta imagemCriar uma nova imagem a partir do modelo selecionadoCriar um novo modeloCriar e editar imagens ou fotografiasCria e edita vetoresCriar vetor a partir do textoCria seleção a partir de vetorCriando Pré-visualização...Criando diretório '%s'...CortarCorta & RedimensionaInformações sobre Corte & RedimensionamentoCortar ImagemCortar CamadaCortar imagemCorta ou Redimensiona uma imagemCorta:Apenas marcação em cruzCor_tarCor_tar com Nome...Cúbica (Melhor)E_stado AtualAltura atual:Somente na camada atualEstado atualLargura atual:CursorM_odo do cursor:_Renderização do cursor:Tipo de CurvaCurvasCurvas para camadas indexadas não podem ser ajustadasPersonalizadoCor personalizadaDegradê personalizadoCor de preenchimento da tela:CortarCortar com NomeCianoCiano:D_uplicar Pincel_Duplicar CanalD_uplicar DegradêD_uplicar Camada_Duplicar Paleta_Duplicar Vetor_Duplicar TexturaD_uplicar Modelo...Cor dos tons escuros do xadrezSomente escurecerTraço ponto ponto...Traço ponto...Padrão de tracejado:Tracejado predefinido: PontilhadoData:DebugAparência Padrão no Modo Tela CheiaAparência Padrão no Modo NormalGrade Padrão_Grade de Imagem Padrão:_Interpolação padrão:Tamanho padrão da pré-visualização de camadas & canais:Limi_te padrão:Remover ÂncoraRemover ÂncorasRemo_ver Máscara da CamadaRemover Máscara de CamadaRemover ObjetoRemover SegmentoRemover ModeloExcluir PincelRemover canalRemover corRemove degradêRemove camadaRemover máscara da camadaRemover PaletaRemove o vetorRemover Textura...Remover opções salvasRemove o buffer selecionadoRemover o modelo selecionadoRemover esta imagemRemover vetoresA remoção de '%s' falhou: %sPontilhado densoDessaturarDessaturar opera somente em camadas no modo de cor RGBDescriçãoCriaçãoEstado do DispositivoDispositivosDiálogosMenu de DiálogosDiamanteDiferençaCor DiretaDesabilita Máscara da CamadaDesabilitar Máscara RápidaDescartar Informação de TextoExibiçãoNavegação ExibidaFiltros para a _Tela...Procedimentos do DisplayTipo de exibição:Exibindo [%0.6f, %0.6f]DissolverDistância:Distância: %0.6fReticuladoDividir_Instalar com configurações novasVocê quer realmente reiniciar todas as opções dos filtros para os valores padrão?Você quer realmente reinicializar todas as opções de ferramentas para os valores padrão?Você deseja sobrescreve-lo com a imagem que você está salvando?_Não salvarAcoplávelHis_tórico de DocumentosHistórico de DocumentosDocumentosMenu de DocumentosSub-e_xposição ou super-exposiçãoSub-exposiçãoPincel de Sub-exposição ou Super-exposiçãoSub-exposição ou super-exposiçãoPontilhado duploArrastar ÂncoraArrastar ÂncorasArrastar CurvaArrastar AlçaArrastar VetorArrastar: moverDesenha com tintaDesenhávelModificar desenhávelProcedimentos de Objeto DesenhávelSoltar Nova CamadaSoltar Novo VetorDevido à ausência de fontes, a funcionalidade de texto não está disponível.Ignorar eventos deste controladorDuplicar PincelDuplicar canalDuplicar degradêDuplicar camadaDuplicar PaletaDuplica o vetorDuplicar TexturaDuplicar o modelo selecionadoUps! impossível desfazerE_xportar VetorM_uito PequenoComportamento nas BordasDetectar _BordaEditarEditar Atributos do CanalEditar Cor do CanalEditar Entrada da Paleta de CoresEditar entrada no Mapa de CoresEditar Atributos da CamadaEditar Máscara da CamadaModo de EdiçãoEditar Cor da PaletaEditar Atributos do VetorEditar Atributos da Máscara RápidaEditar Cor da Máscara RápidaEditar ModelosEditar PincelEditar atributos do canalEditar corEditar entrada nº %d no mapa de coresEditar degradêEditar atributos da camadaEditar PaletaEditar atributos do vetorEditar TexturaProcedimentos de ediçãoEditar o modelo selecionadoSeleção ElípticaCanal VazioCamada VaziaVetor VazioCamada de Texto VaziaNome de variável vazio em arquivo de ambiente %s.Rea_lçarHabilitar Máscara RápidaHabilita retícula da transparênciaHabilitar este controladorHabilita a exibição de uma dica do GIMP ao iniciar o programa.Habilita a exibição de dicas.EnormeInforme um nome para a paleta combinadaEntre um nome para as opções salvasInforme um nome para este bufferInforme um nome para este modeloEntre um novo nome para as opções salvasDigite o local (URL):AmbienteDiretórios de AmbienteEqualizarA equalização não funciona com imagens indexadas.Apaga para cor de fundo ou transparênciaBorrachaConsole de ErrosConsole de ErrosMenu do Console de ErrosErro ao salvar arquivo XCF: %sErro ao analisar '%s' na linha %d: %sErro ao ler de '%s': %sErro ao ler de arquivo de pincel '%s': %sErro ao escrever em '%s': %sErro ao escrever XCF: %sErro ao escrever arquivo '%s': -%sErro ao escrever em '%s': %sErro ao escrever no arquivo temporário '%s': %s -Nenhum arquivo foi criado.Erro ao escrever no arquivo temporário '%s': %s -O arquivo original não foi tocado.ErrosEventoMui_to GrandeExpandida como necessárioExportar Vetor para SVGExporta todos os vetores desta imagemExportar o vetor ativoExposição:Dispositivos de Entrada EstendidosExtensõesPreenchimento com Cor de FrenteFrente para Fundo (tonalidade HSV no sentido horário)Frente para Fundo (HSV no sentido anti-horário)Frente para Fundo (HSV)Frente para Fundo (RGB) Frente para TransparenteFrente para transparenteFrente/FundoCor de Frente/FundoRelaxar Sel. Flut.Enrijecer Sel. Flut.Sel. Flut. para camadaA_justar Tela às CamadasEsvanecerFalha ao importar degradês de '%s': %s Falha ao importar vetores de '%s': %s SofisticadoErro fatal de análise: O arquivo de pincel '%s' parece truncado.Erro fatal de análise no arquivo de pincel '%s':O arquivo está corrompido.Erro fatal de análise no arquivo de pincel '%s': Não é um arquivo de pincel do GIMP.Erro fatal de análise no arquivo de pincel '%s': Forma de pince; do GIMP desconhecida.Erro fatal de análise no arquivo de pincel '%s': Versão de arquivo de pincel do GIMP desconhecida.Erro fatal de análise no arquivo de pincel '%s': Profundidade desconhecida: %d.Erro fatal de análise no arquivo de pincel '%s': Versão desconhecida %d.Erro fatal de análise no arquivo de pincel '%s': Profundidade não suportada %d -Arquivos de pincel do GIMP devem ser em Escala de Cinzas ou RGBA.Erro fatal de análise no arquivo de degradês '%s'. O arquivo está corrompido.Erro fatal de análise no arquivo de degradê '%s'; Não é um arquivo de degradê do GIMP.Erro fatal de análise no arquivo de paleta '%s': O cabeçalho mágico está faltando.Erro fatal ao carregar o arquivo de paleta '%s': Cabeçalho mágico ausente -Este arquivo não precisa ser convertido do DOS?Erro fatal de análise ao carregar a paleta '%s':Erro de leitura na linha %d.Erro fatal de análise no arquivo de texturas '%s': Não foi possível ler %d bytes: %sErro fatal de análise no arquivo de texturas '%s': Versão de formato de texturas desconhecida: %d.Erro fatal de análise no arquivo de texturas '%s': Profundidade de textura não suportada %d. -Texturas do GIMP devem ser Escala de Cinzas ou RGB_Enevoar...Enevoar CanalEnevoar SeleçãoEnevoar bordasEnevoar seleção porArquivo_Diálogo de Abrir ArquivoOperações de ArquivoTipo de ArquivoArquivo existeO arquivo está truncadoPreencher CanalOpacidade de Preenchimento:Tipo de Preenchimento %sPreencher cores similaresPreencher áreas transparentesPreencher toda a seleçãoPreencher com Cor de FundoPreencher com Cor de F_undoPreencher com Cor de FrentePreencher com TexturaPreencher com TexturaPreencher com TransparênciaPreencher com BrancoPreencher com Cor de _Frente_Preencher com a cor de fundoPreenche com um degradê de coresPreenche com uma cor ou texturaJustificadoFi_ltrosA Camada Combinada Final deve ser:Encontrar Regiões ContíguasEncontrando Cores SimilaresCaber Imagem na JanelaAjusta o zoom para a imagem caber toda na janelaAjusta o zoom para a imagem caber toda na janelaCaber na janelaProporção fixaTamanho fixoAchatar ImagemEspelharEspelhar CanalEspelhar CamadaEspelhar VetorEspelhar Camada de TextoTipo de Espelhamento %sEspelhar _HorizontalmenteEspelhar _VerticalmenteEspelhar imagemEspelha a camada ou seleçãoEspelhando...Espelhando...Flutuar SeleçãoFlutuar seleçãoCamada FlutuanteSeleção Flutuante -(%s)Seleção Flutuante para CamadaSeleção flutuante para camadaSeleções flutuantesFloyd-Steinberg (normal) Floyd-Steinberg (perda de cores reduzida)FocoDiretórioDiretóriosDiretórios de FontesInterface de Usuário para FontesFonte:FontesMenu de FontesPara uma instalação adequada do GIMP, um diretório chamado '%s' precisa ser criado.Forçar dicas automáticasCor de frenteCores de frente e fundo. Os quadrados branco e preto reinicializam as cores. As setas trocam as cores. O clique duplo seleciona uma cor a partir do diálogo de seleção de cores.Cor de frenteCor de frente escolhida:Frente: %d, %d, %dPara Frente (tradicional)Do _VetorSeleção LivreSeleção livreMão livreDo _TemaObtém resolução do sistema de janelas (atualmente %d x %d ppp)Da esquerda para a direitaDa direita para a esquerdaA partir da seleçãoUsar do temaSeleção Contí_guaTela C_heiaSeleção ContíguaGIMPExtensão do GIMPMensagem do GIMPAjuste de Desempenho do GIMPPlug-in do GIMPInicialização do GIMPEditor de Texto do GIMPDica GIMP do diaInstalação para usuário do GIMPImagem XCF do GIMPO GIMP não pôde inicializar a interface gráfica. -Certifique-se de que existe uma configuração de ambiente para o DISPLAY a utilizar..Navegador de ajuda do GIMPO GIMP não está adequadamente instalado para o usuário atual. -A instalação para este usuário não foi executada porque a opção '--no-interface' foi usada. -Para fazer a instalação do usuário, execute o GIMP sem a opção '--no-interface'O GIMP usa uma quantidade limitada de memória para armazenamento de dados, o chamado "Cache de Fragmentos" (Tile Cache) . Você deve ajustar este tamanho para que se ajuste na memória. Considerar a quantidade de memória usada por outros processos em execução.O GIMP usa um arquivo gtkrc adicional e por isso você pode configurá-lo para que ele seja diferente das outras aplicações GTK.Versão do GIMPO GIMP vai alertar o usuário se for feita uma tentativa de criar uma imagem que vá usar mais memória que o valor especificado aqui.GamaGeralNormalmente somente relevante para displays de 8-bit, este valor é o número mínimo de cores a serem alocadas para o GIMP.Gerar paleta otimizada:Obter Resolução do MonitorGiganteProcedimentos do arquivo GimprcEfeitos de _VidroDegradêEditor de Degradês Menu do Editor de DegradêsDiretórios de DegradêsCor do Ponto à Esquerda do Segmento de DegradêCor do Ponto à Direita do Segmento de DegradêInterface de Usuário para DegradêsDegradê:DegradêsMenu de DegradêsExtrair grãosMesclar grãosCinzaTons de CinzaVerdeVerde:GradeEspaçamento das linhas da gradeAumentar CanalAumentar SeleçãoAumentar a seleção porGuiaAtrair para as guias e para a gradeProcedimentos de guiasHSV HSV (%0.3f, %0.3f, %0.3f)HSV (sentido _anti-horário)HSV (tonalidade no sentido horário)Notação HTML_Altura:Navegador de a_juda a usar:Posição de alça: %0.6fBorda duraLuz duraDurezaDureza:AlturaAltura:AjudaNavegador de AjudaSistema de AjudaO navegador de ajuda não está iniciandoNavegador de ajuda não encontradoProcedimentos de ajudaHexa:Tons clarosDica de tipo de janela para as janelas _acopláveisDica de tipo de janela para a caixa de _ferramentasDicasAs dicas alteram o contorno das fontes de forma a produzir um bitmap nítido para tamanhos pequenos.Histogra_maHistogramaEscala do HistogramaHistóricoHorizontalDeslocamento horizontal da primeira linha da grade; este número pode ser negativo.Espaçamento horizontal das linhas da grade.Quantos nomes de arquivos recém utilizados manter no menu.MatizMatiz-SaturaçãoMatiz-Saturação funciona somente com camadas em formato RGBMatiz-_Saturação...Matiz:ImensoÃ_cone & TextoI_magemI_mportar VetorI_nterpolação:In_tervalo:ÃconeÃcone & descriçãoÃcone & textoSe disponíveis, as dicas da fonte serão utilizadas, mas você pode preferir utilizar as dicas geradas automaticamente.Quando habilitado, a ferramenta Mover altera o vetor ou a camada ativa para a que foi movida, senão, o vetor ou camada ativa permance a mesma não importando qual foi movida. Esse era o comportamento padrão em versões anteriores.Se você não salvar a imagem, modificações dos últimos %s serão perdidas.Se você sair agora, estas modificações serão perdidas.Nome de variável ilegal em arquivo de ambiente %s.: %sImagemImagem + GradeEditor de ImagensInformação de ImagemMenu de ImagemTamanho da ImagemFormato da Barra de Estado da ImagemModelos de ImagemMiniaturas de ImagemFormato do Título da Imagem & Barra de EstadoFormato do Título da Imagem:Aparência das Janelas de ImagemJanelas de imagemA imagem não contém nenhuma camada visível.Arquivo de imagemMáscara da imagemA resolução da imagem está fora dos limites. Usando a resolução padrão.Tamanho da imagemFonte em imagemTipo de imagemImagensMenu de ImagensOpções de ImportaçãoImportar PaletaImportar VetoresImportar Vetores de Arquivo SVG Importar uma Nova PaletaImportar PaletaImportar vetoresVetor ImportadoT_intaIn_verterIn_verter MáscaraIncrementalIdentação:Identação da primeira linhaÃndice:IndexadoCor IndexadaConversão de Cor IndexadaCamadas de cor indexada sempre são redimensionadas sem interpolação. O tipo de interpolação escolhida irá afetar apenas o redimensionamento dos canais e das máscaras.Janela de InformaçãoZoom inicial:Inicializar Máscara da Camada para:Inicializando Plug-insInicializando plug-in: "%s" -TintaInline pixbufControladores de EntradaDispositivos de EntradaNíveis de EntradaInserir ÂncoraInstala um mapa de cores privado; pode ser útil em displays de 8-bit (256 cores).A instalação falhou. Contate o administrador do sistema.Instalação concluída com sucesso. Clique em "Continuar" para prosseguir.Atualização instantânea_Tesoura InteligenteIntensidade %0.3f Opacidade: %0.3fInterfaceProcedimento interno do GIMPProcedimentos InternosInterpolação:Fazer intersecção Fazer intersecção com a seleção atualIntersecções (cruzes)Intersecções (pontos)UTF-8 inválidoDados UTF-8 inválidos no arquivo '%s' .String UTF-8 inválida no arquivo XCFString UTF-8 inválida no arquivo de pincel '%s'.String UTF-8 inválida no arquivo de degradês '%s'.String UTF-8 inválida no arquivo de paleta '%s'String UTF-8 inválida no arquivo de texturas '%s'.Seqüencia de caracteres inválida na URLAtalho inválido.Largura ou altura inválida(s). Ambas devem ser positivas.InverterInverter CanalInverter SeleçãoA inversão não funciona em camadas indexadas.Inverte a seleçãoË isso mesmo que você deseja fazer?Parece que você já usou o GIMP 2.0 antes.Propriedades de ítemVisibilidade de ítemJustificar:Manter TransparênciaManter acimaManter proporção %sManter proporção %sManter altura %sManter transparênciaManter largura %sTecla-Seta BaixoTecla-Seta Baixo (Alt)Tecla-Seta Baixo (Control + Alt)Tecla-Seta Baixo (Control)Tecla-Seta Baixo (Shift + Alt)Tecla-Seta Baixo (Shift + Control + Alt)Tecla-Seta Baixo (Shift + Control)Tecla-Seta Baixo (Shift)Tecla-Seta EsquerdaTecla-Seta Esquerda (Alt)Tecla-Seta Esquerda (Control + Alt)Tecla-Seta Esquerda (Control)Tecla-Seta Esquerda (Shift + Alt)Tecla-Seta Esquerda (Shift + Control + Alt)Tecla-Seta Esquerda (Shift + Control)Tecla-Seta Esquerda (Shift)Tecla-Seta DireitaTecla-Seta Direita (Alt)Tecla-Seta Direita (Control + Alt)Tecla-Seta Direita (Control)Tecla-Seta Direita (Shift + Alt)Tecla-Seta Direita (Shift + Control + Alt)Tecla-Seta Direita (Shift + Control)Tecla-Seta Direita (Shift)Tecla-Seta CimaTecla-Seta Cima (Alt) Tecla-Seta Cima (Control + Alt) Tecla-Seta Cima (Control) Tecla-Seta Cima (Shift + Alt) Tecla-Seta Cima (Shift + Control + Alt) Tecla-Seta Cima (Shift + Control) Tecla-Seta Cima (Shift) Os atalhos de teclado podem ser redefinidos dinamicamente no GIMP. O menurc é um depósito de sua configuração, de forma que ela possa ser lembrada para a próxima sessão. Você pode editar este arquivo se desejar, mas é muito mais fácil definir as teclas dentro do GIMP. A remoção deste arquivo irá recuperar os atalhos de teclado padrões.TecladoEventos de TecladoAtalhos de TecladoEPDCor do Ponto do Canto _EsquerdoPaisagemGrandeGrande (256x256)Pré-Visualizações MaioresÚltimo Erro:CamadaA camada "%s" não tem alfa. A camada atual foi colocada acima. dela.Atributos da CamadaTamanho dos L_imites da camada...Tipo de Preenchimento da Camada:Máscara da Camada para a SeleçãoSeleção de CamadaTamanho da Camada_Modo de Combinação_Nome da Camada:A camada não pode mais ser baixada.A camada não pode subir mais.A camada já está no fundo.A camada já está no topo.Camada para Tamanho da ImagemCamada para o _FundoCamada para o Ta_manho de ImagemCamada para o _TopoCopia o Canal _Alfa da CamadaCamadasMenu de CamadasOpções de Combinação de CamadasCor do Ponto no Canto EsquerdoAlinhado à esquerdaComprimento:Faz o GIMP tentar restaurar sua última sessão salva quando é iniciado.NíveisNíveis não podem ser ajustados para imagens indexadas.Cor dos tons claros do xadrezSomente clarearLinearEspaçamento -entre linhasLargura da Linha:Estilo das _Linhas:Estilo de linha usado para a grade.LinearÃtem ligadoCarregarCarregar CurvasCarregar NíveisCarregar Cor da D_ireita deLê configuração de curvas salvaa em arquivoLer ajustes de níveis a partir de arquivoCarrega texto de arquivo Carregando pré-visualização...Localização:LogarítmicoTracinhos longosProcurando por arquivos de dadosAbaixar CanalAbaixar Canal até o FundoAbaixar Canal até o _FundoAbaixar camadaAbaixar Camada para o FundoAbaixar VetorAbaixar Vetor para o Fundo Abaixar Vetor para o Fu_ndoAbaixa o canalAbaixa o canal até o fundoAbaixa a camadaAbaixa camada para o fundoAbaixa o vetorAbaixa o vetor para o fundo _Ampliar_TodosMo_ver para a Tela...Ma_pearMagentaMagenta:AmpliarDeixar _transparenteGerenciar Módulos CarregáveisVelocidade de marcha das formig_as:Opacidade da Máscara:Mascarar Ãreas _SelecionadasMascarar Ãreas _Não-SelecionadasMatriz:Profundidade máxima:Tamanho _máximo de arquivo para geração de miniaturas:Tamanho máximo de _novas imagens:Diferença de cor máximaMemória máxima para desfazerMeio:MedidaMedir Distâncias e ÂngulosMedir distâncias e ângulosMeça as réguas e digite seus comprimentos:Mediana:MédioTracinhos médiosCombinar Abai_xoCombinar com as abaixoCombinar CamadasCombinar PaletaCombinar Camadas Visíveis.Combinar Vetores VisíveisCombinar Camadas _Visíveis...Combinar Camadas V_isíveis..._Combinar Vetores VisíveisCombinar camadasCombinar PaletasCombinar vetoresProcedimentos de mensagemMensagem repetida %d vezes.Mensagem repetida uma vez.As mensagens estão redirecionadas para stderr.Tons médiosMigrar Configurações do UsuárioNúmero mínimo de níveis de desfazer:DiversosQuadradoModoModo:Modificar a Cor SelecionadaModificar os Níveis de Cores da Faixa SelecionadaModificar todas as coresModificar o espaçamento entre linhas.Diretórios de MódulosGerenciador de MódulosCaminho para os módulosMódulosCursores de MouseRodinha do MouseEventos da Rodinha do MouseMoverMover ÂncorasMover CanalMover Seleção FlutuanteMover GuiaMover GuiaMover CamadaMover Máscara de CamadaMover VetorMover SeleçãoMover Camada de TextoFerramenta Mover Mover ítemMove camadas & seleçõesMover seleçãoMover a camada atualMover o vetor atualMover o filtro selecionado para baixoMover o filtro selecionado para cimaMo_ver para a Tela...Mover: MultiplicarNúmero de _cores:Na_vegaçãoJanela de Na_vegação...Tamanho de pré-visualização de _navegação:Nome: Nome: NavegaçãoNovo CanalCor do Novo CanalOpções do Novo CanalNova Cor da cor de F_undoNova Cor da cor de _FrenteNova ImagemNova CamadaNovo VetorOpções do Novo VetorNovo ModeloNovo PincelNovo canalNovo canal com os últimos valoresNovo canal...Insere cor de fundo como nova corInsere cor de frente como nova corNovo degradêNova importaçãoNova camadaNova camada repetindo os últimos valores_Nova camada...Nova PaletaNovo vetor usando os últimos parâmetrosNovo vetor...Nova TexturaNovos vetoresNão há pincéis disponíveis para uso com esta ferramenta.Nenhum filtro selecionadoNenhum degradê linear encontrado em '%s'Não está mais disponívelNenhum vetor encontrado em '%s'Nenhum vetor encontrado no bufferNenhuma textura disponível para esta operação.Nenhuma seleçãoNão há seleção para contornar.Sem miniaturasNão alinhadoNenhumNenhuma (Mais Rápida)NormalNormal (128x128)Pontilhado normalJanela normalNão é um arquivo regularNão há camadas visíveis suficientes para combinar. Deve haver no mínimo duas.Não há vetores visíveis suficientes para combinar. Deve haver no mínimo dois.Número de _processadores a utilizar:Número de linhas da gradeNúmero de camadas:_Outra...DeslocamentoDeslocar CanalDeslocar Objeto DesenhávelDeslocar CamadaDeslocar Máscara de CamadaDeslocar por x/_2, y/2Deslocamento:No discoEm máquinas com múltiplos processadores, se o GIMP foi compilado com --enable-mp, seleciona quantos processadores o GIMP deve usar simultaneamente.Somente na memóriaAb_rir como Camada...OpacidadeOpacidade:AbrirAbrir ImagemAbrir Imagem como CamadaAbrir URLAbrir Arquivo de Texto (UTF-8)_Abrir URL...Abrir _RecenteDiálogo para abrir imagensAbre o diálogo de seleção de pincelAbre o diálogo de seleção de fontesAbre o diálogo de seleção de degradêAbre o diálogo de seleção de paletasAbre o diálogo de seleção de texturasAbrir a entrada selecionadaFalha ao abrir '%s': - -%sFalha ao abrir '%s' %sOpções: -Origem X:Origem Y:Largura Original:Outro (%s) ...ContornoNíveis de SaídaSobreporErro de chamada da PDB para o procedimento '%s': -O tipo do argumento n. %d não confere. (esperado %s, obteve %s)Erro de chamada da PDB. Procedimento %s não encontradoT_exturasAqui jaz Xavier da Gama Kowaltovsky, homem -de bem falecido com apenas vinte. PintarOpções de Pintura Compartilhadas Entre as FerramentasProcedimentos de Ferramentas de PinturaFerramenta de Pintura:_Modo de EdiçãoPinta com pinceladas suavesPinta com bordas durasPinta usando Texturas ou Regiões de ImagensPincelPal_etasPaletaEditor de PaletasMenu do Editor de PaletasDiretórios de PaletasInterface de Usuário para Paleta_Nome da Paleta:_Arquivo de paletaPaletasMenu de PaletasProcedimentos de parasitasParasitasAnalisando '%s' -ColarC_olar Buffer emCola Buffer como _NovoColar Ve_torColar _EmColar como _NovoCola o buffer selecionado Cola o buffer selecionado como uma nova imagem Cola o buffer selecionado na seleçãoCamada ColadaVetorAtributos do VetorNome do Vetor:_Ferramenta de VetoresO vetor não pode mais ser baixado.O vetor não pode mais subir.O vetor já está no fundo.O vetor já está no topo.Vetor para _SeleçãoVetor para SeleçãoVetor para Seleção -%s Adiciona -%s Subtrai -%s Faz intersecçãoVetor para seleçãoVetoresMenu de VetoresTexturaDiretórios de TexturasInterface de Usuário para TexturasPreenchimento com texturaFonte em texturaTexturasMenu de TexturasLáp_isLápisPorcentagem da largura do pincelPercentual:Diretório Pessoal do GIMPPerspectivaInformação de Transformação de PerspectivaPerspectiva...Modo de Seleção %sPegue uma camada ou guiaEscolha um vetorSelecione ponto negroSeleciona amostra de corSelecione ponto cinzaApenas visualizarSelecione ponto brancoTamanho em pixels:Valores de pixelPixelsPixels:Certifique-se que os arquivos XML dos menus estão instalados corretamente.Por favor, aguarde enquanto sua pasta pessoal do GIMP está sendo criada...Por favor espere...Plug-InAmbiente de Plug-InDiretórios de Plug-insO Plug-in não pôde abrir a imagemO Plug-in não pôde salvar a imagemPlug-In com problemas: "%s" -(%s) - -O Plug-In pode ter comprometido o estado interno do GIMP ao morrer. Você pode querer salvar suas imagens e reiniciar o GIMP por segurança.O Plug-In retornou "SUCCESS", mas não retornou uma imagem.Plug-InsPlug-inOs plug-ins e extensões são programas externos executados pelo GIMP que provem funcionalidades adicionais. Estes programas são localizados em tempo de execução e as informações sobre suas funcionalidades e datas de modificações são guardadas neste arquivo. Este arquivo deve ser lido somente pelo GIMP e não deve ser editado.PoligonalRetratoPosição: %0.6fPosicionadaPosterizarPosterizar (Reduzir Número de Cores)_Níveis de posterização:A posterização não funciona em camadas indexadasPreferênciasPreservar _luminosidadeSensibilidade à pressãoPressão:Pré-VisualizaçãoA pré-visualização está desatualizadaPré-Visualização:Pré-visualizaçõesTamanho de ImpressãoTamanho de impressão:Problemas ao analisar o parasita de texto para a camada '%s': -%s - -Algumas propriedades de texto podem estar erradas. A não ser que você queira editar o texto da camada você não tem que se preocupar com isso. Base de Dados ProceduralBase de Dados de ProcedimentosProgressoPseudo-corPropósito:QualidadeConsultarConsultando novos Plug-insConsultando plug-in: "%s" -Carregar RápidoMáscara RápidaAtributos da Máscara RápidaMenu de Máscara RápidaSalvar RápidoMáscara RápidaSair do GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)Cor RGBRGB-vazioRGBA (%0.3f, %0.3f, %0.3f, %0.3f)DPEExibir Novamente "%s"Re_inicializar Opções desta FerramentaR_einicializar canalR_einicializar cor_Reinicializar faixaCor do Ponto do Canto _Direito...RadialRaio:Subir CanalSubir Canal até o TopoSobir o Canal até o _TopoSubir CamadaSubir Camada para o TopoSubir VetorSubir Vetor para o TopoSubirr Vetor para o _TopoSobe o canalSobe o canal até o topoSobe a camadaSobe a camada para o topoSobe o vetorSobe o vetor para o topoExibe as janelas desta ImagemTrazer janela para cima se já estiver abertaTaxaTaxa:Exibir Novamente o ÚltimoRe_centralizar Pontos Médios da SeleçãoRe_centralizar o Ponto Médio do SegmentoRedistribuir _Pontos de Manuseio no SegmentoRedistribuir _Pontos de Manuseio na SeleçãoRe_nomear Opções SalvasRepetir "%s"Re_verter...Ao carregar paleta '%s':Falta o componente verde (G) na linha %d.Ao Carregar paleta '%s':Número inválido de colunas na linha %d. Usando valor padrão.Ao carregar paleta '%s':Falta o componente azul (B) na linha %d.Ao carregar paleta '%s':Falta o componente vermelho (R) na linha %d.Ao carregar paleta '%s': Valor RGB fora da faixa na linha %d.ProntoRealmente limpar o histórico de desfazer da imagem?Re-atribuir o atalho fará com que ele seja removido de "%s".Regenerar Pré-_VisualizaçãoRegenera a pré-visualizaçãoSeleção RetangularVermelhoVermelho:RefazerReduzir a imagem a um número fixo de coresReduzir imagem a duas cores usando um limiteRegenerar PincéisRegenera degradêsRegenerar PaletasRe_generar TexturasRegistradoRecarregar Tema AtualRegenerar _Todas as Pré-VisualizaçõesRegenera todas as pré-visualizaçõesLembrar as ferramentas, texturas, cores e pincéis atuais entre as sessões do GIMP.Imagem remotaRemover CanalRemover Entradas _PendentesRemover Seleção FlutuanteRemover GuiaRemover CamadaRemover Parasita da ImagemRemover Parasita do ÃtemRemover Vetor_Remover EntradaRemove as entradas pendentesRemover seleção flutuanteRemover parasitaRemove a entrada selecionadaRemove o filtro selecionado da lista de filtros ativos.A remoção do atalho falhou.Renomear CanalRenomear CamadaRenomear VetorRenomear Opções de Ferramenta SalvasRenomear Camada de TextoRenomear ítemRenderizar ContornoReposicionar CanalReposicionar CamadaReposicionar vetorRepetir ÚltimoRepetir:Substituir a seleção atualReplicarReplicar Segmento de DegradêReplicar Seleção de DegradêReplicar SegmentoReplicar SeleçãoReposicionar canalReposicionar camadaReposicionar de vetoresRegenera a lista de fontes Reinicializa Opções de FerramentasReinicializar _Todas as Opções de FerramentasReiniciar todos os FiltrosReinicializar _Todos os Filtros...Reinicializa as opções de todas as ferramentasRestaurar valores padrão no filtro selecionado Restaura valores padrãoRestaura a ordem e a visibilidade das ferramentas para os valores padrãoRedimensionarRedimensionar CanalMudar Tamanho da ImagemAlterar Tamanho da CamadaMudar Tamanho de VetorAlterar Tamanho da Camada de TextoMudar Tamanho da ImagemMudar tamanho de ítemRedimensionar janela ao fazer _zoomRedimensionar janela ao mudar o _tamanho da imagemRedimensionando...Alteração de resoluçãoResolução:Consumo de RecursosConfiguração de recursosRestaurar opções a partir de...Restaurar os atalhos de teclado salvos quando o GIMP é iniciado.Restringe edição a polígonos.InverterReverterReverter '%s' para '%s'?Reverter ImagemA reversão falhou.Não há um nome de arquivo associado a esta imagem.Reversão para '%s' falhou: - -%sCor do Ponto no Canto DireitoAlinhado à direitaRotacionarRotacionar 90 Graus _Anti-HorárioRotacionar 90 _Graus HorárioRotacionar CanalRotacionar CamadaRotacionar VetorRotacionar Camada de Texto_Rotacionar 180 GrausRotacionar imagemRotaciona a camada ou seleçãoRotacionando...Informação de RotaçãoArredondadoInc_linarExibir Gr_adeEncol_her...P_ontasT_rocar CoresSalvar Cor da Di_reita ParaAmostra da médiaUsar amostra combinadaSat.:SaturaçãoSalvarSalvar "%s" como POV-RaySalvar CurvasSalvar Registro de Erros em ArquivoSalvar ImagemSalvar Configurações do Dispositivo de Entrada AgoraSalvar os Atalhos de Teclado _AgoraSalvar NíveisSalvar Opções de FerramentaSalvar as Posições das Janelas AgoraGravar _Todos os Erros em Arquivo...Gravar _Seleção em Arquivo...Salvar _como...Salvar uma Có_pia...Salvar uma Cópia da ImagemSalavr todos os errosSalvar como _POV-Ray...Salvar como _Modelo...Salvar os atalhos de teclado para os ítens de menu quando o GIMP sair.Salvar curvas em arquivoSalvar estado do dispositivoSalva Degradê como POV-RaySalvar ajustes de nível em arquivoSalvar opções para...Salva a seleçãoSalva Seleção em CanalSalvar as alterações na imagem '%s' antes de fechar?Salvar as posições e tamanhos das janelas principais quando o GIMP sair.Salvar para Cana_lOpções SalvasSalvando '%s' -Falha ao salvar '%s': - -%sSalvar ImagensOnda de ziguezagueImagem Vetorial SVG (*.svg)RedimensionarRedimensionar CanalRedimensionar ImagemRedimensionar CamadaRedimensionar Vetor Redimensionar Camada de TextoRedimensionar imagemRedimensionar ítemProporção X:Proporção Y:Fator de zoom:Redimensiona a camada ou seleçãoRedimensionamentoInformação de redimensionamentoRedimensionar a imagem para o tamanho escolhido fará com que ela use mais memória do que está configurado como "Tamanho Máximo de Imagem" no diálogo de Preferências (atualmente %s).O tamanho escolhido para a imagem irá diminuir algumas camadas até que elas desapareçam completamente. Redimensionando...TesouraEsconderDiretórios de Script-FuScriptsRolagem para BaixoRolagem para Baixo (Alt)Rolagem para Baixo (Control + Alt)Rolagem para Baixo (Control)Rolagem para Baixo (Shift + Alt)Rolagem para Baixo (Shift + Control + Alt)Rolagem para Baixo (Shift + Control)Rolagem para Baixo (Shift)Rolagem para a EsquerdaRolagem para a Esquerda (Alt)Rolagem para a Esquerda (Control + Alt)Rolagem para a Esquerda (Control)Rolagem para a Esquerda (Shift + Alt)Rolagem para a Esquerda (Shift + Control + Alt)Rolagem para a Esquerda (Shift + Control)Rolagem para a Esquerda (Shift)Rolagem para a Direita Rolagem para a Direita (Alt)Rolagem para a Direita (Control + Alt)Rolagem para a Direita (Control)Rolagem para a Direita (Shift + Alt)Rolagem para a Direita (Shift + Control + Alt)Rolagem para a Direita (Shift + Control)Rolagem para a Direita (Shift)Rolagem para CimaRolagem para Cima (Alt)Rolagem para Cima (Control + Alt)Rolagem para Cima (Control)Rolagem para Cima (Shift + Alt)Rolagem para Cima (Shift + Control + Alt)Rolagem para Cima (Shift + Control)Rolagem para Cima (Shift)SeleçãoSelecionar TudoSelecione os Diretórios de PincéisSelecionar por CorSelecione a CorSeleciona a Ação do Controlador de EventosSelecione os Diretórios de AmbienteTipo de Preenchimento (%s)Selecione os Diretórios de FontesSelecione Diretórios de DegradêSelecione os Diretórios de MódulosSelecionar NadaSelecione os Diretório de PaletasSelecione os Diretórios de TexturasSelecione os Diretórios de Plug-insSelecione Cor Primária para ModificarSelecione a Faixa a ModificarSelecione os Diretórios de Script-FuSelecionar FonteSelecione o Diretório de TrocaSelecione o Diretório TemporárioSelecionar TemaSelecione os Diretórios de TemasSeleção de Taxa de Zoom:Selecionar Camada do F_undoSelecionar Cor _Personalizada...Selecionar _Próxima CamadaSelecionar Camada _AnteriorSelecionar Camada do _TopoSelecionar TudoSelecionar por CorSeleciona regiões contíguasSelecione a cor personalizada de preenchimento da telaSeleciona regiões elípticasSeleciona regiões a mão livreLimpa seleçãoSelecione o arquivo de paletaSeleciona regiões retangularesSelecionar regiões por corSeleciona formas a partir da imagemSelecione o diretório de trocaSelecione o número de vezes -a replicar o segmento selecionado.Selecione o número de vezes -a replicar a seleção.Selecione o número de partes uniformes -nas quais dividir os segmentos da seleção.Selecione o número de partes uniformes -nas quais dividir o segmento selecionado.Seleciona áreas transparentesSelecione o navegador webSeleçã_o para VetorSeleçãoEditor de SeleçõesMenu do Editor de SeleçõesMáscara de SeleçãoProcedimentos das ferramentas de seleçãoMáscara de seleçãoSeleção para Vetor (_Avançado)Seleçã_o para vetorSeleção:Seleção: ADICIONARSeleção: INTERSECÇÃOSeleção: SUBSTITUIÇÃOSeleção: SUBTRAÇÃOSensibilidadeDefine a Cor de Preenchimento da TelaDefine a Cor do CanalDefine a Opacidade do CanalEstabelece Mapa de CoresDefine Cor Personalizada de Preenchimento da TelaAjusta Tamanho da Tela de ImagemAlterar Resolução de Impressão da ImagemSetar Ãtem como Ligado ExclusivamenteAtivar Visibilidade Exclusiva do ÃtemAjusta o Tamanho do Limite da CamadaNome a Partir do _Texto Escolher OpacidadeEscolher cor de fundoEscolher cor de frenteMarcar ítem como ligadoSelecionar o modo da camadaSelecionar a opacidade da camadaSelecionar preservar transparênciaSeleciona um limite máximo de memória utilizado por imagem para manter operações na pilha de desfazer. Qualquer que seja o valor selecionado aqui, pelo menos tantas operações de desfazer quanto as selecionadas em níveis-de-desfazer poderão ser desfeitas.Seleciona o navegador utilizado pelo sistema de ajuda. Configura a cor de preenchimento da tela usada se o modo de preenchimento da janela de imagem estiver definido como personalizado.Seleciona o navegador externo a ser usado. O valor pode ser um caminho absoluto, ou um executável a ser procurado no PATH do usuário. Se o comando contiver um '%s', este será trocado pela URL, caso contrário, a URL será adicionada ao final do comando, separada deste por um espaço.Seleciona o nível de interpolação utilizado para redimensionar e para outras transformações.Seleciona a forma como a transparência é representada nas imagens.Seleciona o número mínimo de operações que pode ser desfeito. Mais níveis de desfazer são mantidos disponíveis até que o limite do tamanho-de-desfazer seja atingido.Seleciona o modo do cursor que o GIMP vai usar.Configura a resolução horizontal do monitor, em pontos por polegada. Se colocada em 0, faz com que o servidor X forneça as resoluções horizontal e vertical.Configura a resolução vertical do monitor, em pontos por polegada. Se colocada em 0, faz com que o servidor X forneça as resoluções horizontal e vertical.Seleciona o formato de pixel dos cursores que o GIMP vai usar.Seleciona o tamanho padrão das pré-visualizações de camadas e canais em diálogos recém-criados.Seleciona o tamanho do padrão de xadrez utilizado para representar transparência.Seleciona o tamanho da visualização de navegação disponível no canto inferior esquerdo da janela de imagens.Seleciona o tamanho das Pré-visualizações no Histórico de Desfazer.Seleciona o tamanho da miniatura exibidas no diálogo de Abrir. Note que o GIMP não pode criar miniaturas se as pré-visualizações de camada estiverem desabilitadas.Seleciona a localização do arquivo de troca. O GIMP utiliza alocação de memória baseada em fragmentos da imagem (tiles). O arquivo de trocas Ã© utilizado para trocar de forma rápida e fácil esses fragmentos entre a memória e o disco. Tenha em mente que o arquivo de trocas pode se tornar muito grande com facilidade se o GIMP for usado com imagens grandes. As coisas também podem ficar terrivelmente lentas se o arquivo de trocas estiver num diretório de um disco da rede. Por essas razões, é melhor manter o seu arquivo de trocas em "/tmp".Seleciona o diretório de armazenamento temporário. Arquivos aparecerão aqui quando o GIMP estiver em execução. A maioria deles desaparecerá quando o GIMP sair, mas alguns arquivos podem ficar. Portanto é melhor que este diretório não seja compartilhado com outros usuários.Seleciona o texto que aparecerá na barra de estado das janelas.Seleciona o texto que aparecerá no título das janelas de imagem.Seleciona se o GIMP deve criar pré-visualizações das camadas e canais. Visualizações nas janelas de camadas e canais podem ser uma coisa boa, mas podem deixar as coisas lentas quando se trabalha com imagens grandes.Tipo de sombraSombrasFormaForma:Acompanha Forma (angular)Acompanha Forma (com ondas)Acompanha Forma (esférico)Tornar nítidoDeixar Canal NítidoDeixar Seleção NítidaInclinarMagnitude de inclinação X:Magnitude de inclinação Y:Inclina a camada ou seleçãoInformações de InclinaçãoInclinando...Tracinhos curtosAtalhoAtalho "%s" já foi usado por "%s" do grupo "%s".Exibir Máscara da CamadaExibir _RéguasExibir Barra de Es_tadoExibir Barras de R_olagemExibir as _GuiasExibir _Limites de CamadaExibir Barra de _MenuExibir _SeleçãoExibir contorno do _pincelExibir _cor de frente & cor de fundoExibir as _guiasExibir _limites de camadaExibir barra de _menuExibir _réguasExibir _pincéis, texturas & degradês ativosExibir _imagem ativaExibir gr_adeExibir botões de a_judaExibir tamanho da imagemExibir borda interativaExibir uso de memóriaExibir mnemônicos nos menus (teclas de acesso)Exibir cursor de ferramenta de pinturaExibir _seleçãoExibir barra de es_tadoExibir barras de r_olagemExibir dica na próxima inicialização do GIMPExibir dica_s na inicializaçãoExibir dicas flutuantesExibir percentual de zoomExibir taxa de zoomEncolher CanalEncolher SeleçãoArrumar JanelaEncolher a partir da borda da imagemEncolher seleção porArruma janelaTamanhoTamanho na memória:Tamanho dos arquivos de miniaturas:Tamanho:Ignorando '%s': versão incorreta do protocolo do GIMP.PequenoPré-Visualizações MenoresSuaveBordas suavesBorrarBorra imagemAt_rair para as GuiasAtra_ir para a GradeLuz suaveSólidoFonteEspaçamentoEspaçamento:Pontilhado esparsoArquivo EspecialEspecifica como a área em torno da imagem deve ser desenhada.Velocidade de animação do tracejado das seleções. Este valor está em milissegundos (tempo menor, animação mais rápida).Velocidade:Esférico (_diminuindo)Esférico (_aumentando)Pontas:Espiral (sentido anti-horário)Espiral (sentido horário)DividirDividir o Segmento de Degradê UniformementeDividir Segmentos de Degradê UniformementeDividir o Segmento UniformementeDividir o Segmento _Uniformemente...Dividir o Segmento no _MeioDividir Segmentos UniformementeDividir Segmentos _Uniformemente...Dividir Segmentos nos Pontos _MédiosQuadradoEst_ado & Texto_PilhaPadrãoInicializando ExtensõesInicializando extensão: "%s" -Estado:Cor EstáticaCinza EstáticoEstado & descriçãoEstado & textoDesvio padrão:Pontilhados:Stock IDCon_tornar VetorCon_tornar Vetor...Encolher CanalContornar VetorContornar SeleçãoLinha de contornoDesenha o contorno do vetorDesenha o contorno do vetor usando os últimos parâmetrosDesenha o contorno do vetor na imagemDesenha o contorno da seleção na imagem, repetindo os últimos parâmetrosDesenha o contorno da seleção na imagemContornar com uma ferramenta de pinturaEstilo de relevo em torno do texto da barra de estadoSubtraçãoSubtrair da seleção atualSuper-AmostragemDiretório de troca:Fe_rramentasTe_xtoFerramenta de Te_xtoDiretório temporário:ModelosMenu de ModelosProcedimento temporárioEncerrando plug-in: "%s" -TextoCor do TextoEditor de TextoCamada de TextoTexto modificadoProcedimentos de textoGIMPO plug-in do navegador de ajuda do GIMP parece estar ausente da sua instalaçãoPincel ativo. -Clique para abrir o Diálogo de Pincéis.Degradê Ativo -Clique para Abrir o Diálogo de Degradês.Textura ativa. -Clique para abrir o Diálogo de Texturas.Textura ativa. -Clique para abrir o Diálogo de Texturas.Cor de fundo da grade; usada apenas no estilo de linha 'tracejado duplo'.O interpretador de lote'%s ' não está disponível, modo de lote desabilitado.O modo de codificação de nomes de arquivo não pode ser convertido para UTF-8: %s -Por favor cheque o valor da variável de ambiente G_FILENAME_ENCODINGO nome de arquivo '%s' não pôde ser convertido para uma URI válida: - -%sCor de frente da grade.O gimprc é usado para armazenar preferências que afetam o comportamento padrão do GIMP. Os caminhos para busca de pincéis, paletas, degradês, texturas, plug-ins e módulos também podem ser configurados aqui.A resolução horizontal da imagem.A camada que você selecionou é uma camada de texto, mas foi modificada por outras ferramentas. Editar o texto com a ferramenta de texto descartará essas modificações. - -Você pode editar a camada ou criar uma nova camada de texto com os mesmos atributos de texto.O nome do diretório contendo a configuração do GIMP para este usuário não pode ser convertido para UTF-8: %s - -O mais provável é que seu sistema de arquivos use uma codificação diferente de UTF-8 para os nomes de arquivo e você não tenha dito isso à GLib. Por favor configure a variável de ambiente G_FILENAME_ENCODING.O sessionrc é usado para armazenar quais janelas de diálogo estavam abertas na última vez que você saiu do GIMP. Você pode configurar o GIMP para abrir estes diálogos novamente na posição salva.A visualização no diálogo de Abrir será automaticamente atualizada se o arquivo sendo pré-visualizado for menor que o tamanho escolhido aqui.O cache de fragmentos é usado para assegurar que o GIMP não estrague fragmentos de imagem entre a memória e o disco. Selecionar um valor maior aqui fará o GIMP utilizar menos espaço de troca, mas também fará o GIMP usar mais memória, e vice-versa.A unidade utilizada para visualizar as coordenadas quando não estiver no modo de um pixel por ponto.O unitrc é usado como banco de dados para armazenar as suas unidades de medida. Você pode definir unidades adicionais a serem utilizadas da mesma forma que são utilizadas medidas as medidas predefinidas, como polegadas, milímetros, pontos e paicas. Este arquivo é sobrescrito toda vez que você sai do GIMP.A resolução vertical da imagem.A dica (hint) de tipo de janela usada para as janelas de acoplamento. Isso pode afetar a forma como seu gerenciador de janela decora e trata as janelas de acoplamento.A dica de tipo de janela utilizada para a caixa de ferramentas. Isso pode afetar como seu gerenciador de janelas decora e trata a janela da caixa de ferramentas.TemaDiretórios de TemasTemasHá %d imagens com modificações não salvasNão há camadas visíveis suficientes para combinar com as camadas abaixo.Existe sempre um compromisso entre uso de memória e velocidade. Na maior parte dos casos, o GIMP opta por velocidade em detrimento da memória. Entretanto, se memória for uma questão crítica, tente habilitar esta opção.Não há um canal ou uma camada ativa da qual copiar.Não há um canal ou uma camada ativa da qual recortar.Não há uma camada ou canal ativo no qual desenhar o contorno.Não há um canal ou uma camada ativa na qual desenhar o contorno.Há uma imagem com modificações não salvasDeveria existir um arquivo chamado '%s'. Por favor verifique sua instalação.Houve um erro ao analisar o arquivo '%s'. Os valores padrão serão utilizados. Uma cópia de sua configuração foi criada em '%s'.Este arquivo guarda uma coleção de tamanhos padrão de mídia que funcionam como modelos de imagem.O GIMP procura modelos de imagem neste diretório.O GIMP procura temas instalados pelo usuário neste diretório.Este diretório é utilizado para guardar as fontes que você queira que sejam visíveis apenas para o GIMP. O GIMP checa este diretório além do diretório de fontes da instalação do GIMP no sistema quando está procurando por fontes. Use este diretório apenas se você desejar ter fontes apenas para o GIMP. Senão, ponha suas fontes no diretório global de fontes.Este subdiretório é usado para armazenar arquivos de parâmetros para a ferramenta Curvas.Este subdiretório é usado para armazenar arquivos de parâmetros para a ferramenta NíveisEste diretório é utilizado para armazenar arquivos de opções das ferramentas.Este diretório é usado pelo GIMP para armazenar scripts criados e instalados pelo usuário.O GIMP checa este diretório além dos diretórios padrões de scripts pré-instalados com o sistema.Este diretório pode ser usado para armazenar módulos DLL temporários ou que não são suportados pelo sistema que foram criados pelo usuário. O GIMP verifica este diretório além do diretório padrão do sistema para módulos do GIMP ao pesquisar os módulos que irá carregar ao inicializar.Este diretório é usado para armazenar modificações do ambiente de plug-ins criadas pelo usuário. O GIMP checa este diretório além do diretório do diretório de ambiente de plug-ins do sistema quando procura por arquivos de modificação do ambiente de plug-ins.Este diretório é usado para armazenar plug-ins criados pelo usuário, plug-ins temporários, ou outros plug-ins não suportados em todo o sistema. O GIMP checa este diretório além do diretório de plug-ins do sistema quando procura por arquivos de plug-ins.Esta pasta é usada para armazenar pincéis definidos pelo usuário. O GIMP verifica esta pasta além dos pincéis padrão do sistema, ao procurar por pincéis.Este é o diretório utilizado para armazenar os degradês definidos pelo usuário. O GIMP checa este diretório além dos degradês padrões pré-instalados com o sistema.Este diretório é usado para armazenar paletas definidas pelo usuário. O GIMP checa este diretório além das paletas padrões pré-instaladas com o sistema.Este diretório é usado para armazenar texturas definidas pelo usuário. O GIMP checa este diretório além das texturas padrões pré-instaladas com o sistema.Este subdiretório é usado pelo GIMP para armazenar temporariamente buffers usados na ação desfazer para reduzir o uso de memória. Caso o GIMP seja finalizado de forma incondicional, arquivos podem permanecer indevidamente neste diretório com o formato: gimp<#>.<#>. Estes arquivos são inúteis em uma nova sessão do GIMP e podem ser eliminados pelo usuário sem qualquer dano ao sistema.Este diretório conterá vários arquivos importantes. Clique em um dos arquivos ou diretórios na árvore para obter maiores informações sobre o ítem selecionado.Esta é a distância em pixels a partir da qual as Guias e a Grade atraem um objeto sendo posicionado.Este programa é distribuído com o intuito de ser útil, mas NÃO CONTÉM QUALQUER GARANTIA, nem mesmo mercantis ou de atender a um determinado propósito.Veja a Licença Pública GNU para maiores detalhes.Este programa é um software livre que pode ser redistribuído e/ou modificado sob os termos da Licença Pública Geral GNU publicada pela Free Software Foundation; ou pela versão 2 da referida Licença ou (a seu critério) por qualquer versão posterior.Esta entrada de texto padrão está limitada a %d caracteres.Esta ferramenta não tem opçõesEsta janela tem %d abas abertas. Fechar a janela também fechará todas as suas abas.LimiteO limites não funcionam em imagens indexadas.Limite:Miniatura %d de %dTamanho do cache de fragmento_sTamanho do cache de fragmentosInclinação:MinúsculoTítulo & EstadoPara _VetorBrin_quedosLiga/Des. Máscara RápidaLigar/Des. Máscara _RápidaMuitas mensagens de erro!Opções de FerramentasMenu das Opções de FerramentasModo da Ferramenta %s _Opções de FerramentasÃcone da ferramentaÃcone da ferramenta com cruzCai_xa de FerramentasCaixa de FerramentasMenu da Caixa de FerramentasFerramentasMenu da Caixa de FerramentasFerramentas como a de seleção contígua e de preenchimento determinam as regiões de atuação baseadas num algoritmo de preenchimento de semente (seed-fill). O preenchimento começa no pixel selecionado inicialmente e progride em todas as direções até que a diferença de intensidade do pixel para o original seja maior que um limite. Este valor representa o limite padrão.Tr_ansparênciaMover Alfa para MáscaraTransformarTransformar CanalDireção da TransformaçãoTransformar CamadaTransformar VetorTransformar Camada de TextoProcedimentos da ferramenta de transformaçãoTransformar camadaTransformar vetorTransformar seleçãoTransformaçãoProcedimentos de transformaçãoTransformando...Tradução porTransparência_Tipo de transparência:Onda triangularCor RealTipoTipo %sDigite um novo aceleradorDigite um novo acelerador, ou pressione Backspace para limparJá existe uma máscara de camada, impossível adicionar outra.Impossível cortar ou copiar porque a região selecionada está vazia.Impossível abrir um arquivo de troca para teste. Por favor, para evitar perda de dados, cheque a localização e as permissões do diretório de troca definido nas suas Preferências (atualmente "%s")Impossível abrir arquivo de troca. O GIMP ficou sem memória e não pode usar o arquivo de trocas. Algumas partes das suas imagem podem estar corrompidas.Tente salvar seu arquivo usando nomes de arquivo diferentes, reinicie o GIMP e verifique a localização do diretório de troca nas suas Preferências.Impossível; executar callback de %s. O plug-in correspondente pode ter 'quebrado'.IndefinidoDesfazerHistórico do Desfazer_Histórico do DesfazerUnidadesDesconhecidoTipo de arquivo desconhecidoTipo de arquivo de paleta desconhecido: -%sDescarregarSem nomeSem títuloUsar "_Pixel por Ponto" por padrãoUtilizar atalhos de teclado _dinâmicosUsar navegador _webConsiderar todas as camadas visíveis ao encolher a seleçãoUsar paleta preto e branco (1 Bit)Usar cores do degradê Usar paleta personalizada:Usar janela de informaçõesUsar paleta otimizada para webRegistro de Instalação para o UsuárioInterface de UsuárioJanela de utilidadeValorValor:Modificar de vetoresVersão %s trazida a você porVersão:VerticalDeslocamento vertical da primeira linha da grade; este número pode ser negativo.Espaçamento vertical das linhas da grade.Muito grandeMuito pequenoVisualizarVer como _GradeVer como _ListaVer como gradeVer como listaClasse visual:Profundidade visual:Alerta: Falha ao carregar os dados: - -%sAlerta: Falha ao salvar dados: - -%sNavegador WebNavegador webBem-vindo à -Instalação para Usuário do GIMP %d.%dQuando habilitado o menu de imagens acompanha automaticamente a imagem na qual você está trabalhando.Quando habilitado, o GIMP exibirá mnemônicos nos menus.Quando habilitado, todas as ferramentas de pintura irão mostrar uma visualização da linha de contorno do pincel selecionado.Quando ativado, uma imagem se tornara ativa quando sua janela de imagem receber o foco. Isso é útil para gerenciadores de janela utilizando "click to focus " (clicar para obter o foco). Quando habilitado, os diálogos exibirão um botão de ajuda que dá acesso a página de ajuda correspondente. Sem esse botão, a página ainda pode ser acessada pressionando-se F1.Quando habilitado, os menus podem ser destacados e mantidos abertos em janelinhas (tear off menus).Quando habilitado, ao se pressionar F1 o navegador de ajuda será invocado.Quando habilitado, o GIMP não salvará uma imagem se ela não tiver modificações. Quando habilitado, o GIMP utilizará uma janela de informação diferente para cada vista da imagem.Quando habilitado, o servidor X é consultado sobre a posição do mouse a cada evento de movimentação, em vez de se confiar na dica de posição. Isto significa que pintar com pincéis grandes deve ser mais preciso, mas pode se tornar mais lento. Perversamente, em alguns servidores X habilitar esta opção resulta em mais velocidade.Quando habilitado, o cursor será exibido sobre a imagem quando uma ferramenta de pintura estiver ativa.Quando habilitado, o padrão é que a grade seja visível. Isso também pode ser alterado com o comando "Visualizar->Exibir Grade".Quando habilitado, o padrão é que as linhas guia sejam visíveis. Isso também pode ser alterado com o comando "Visualizar->Exibir Guias".Quando habilitado, as janelas de imagem irão automaticamente se redimensionar quando se fizer zoom in e zoom out.Quando habilitado, as janelas de imagem irão automaticamente se redimensionar quando o tamanho físico da imagem mudar.Quando habilitado, o padrão é que os limites da camada ativa sejam visíveis. Isso também pode ser alterado com o comando "Visualizar->Exibir Limite de Camada".Quando habilitado, o padrão é que a barra de menus seja visível . Isso também pode ser alterado com o comando "Visualizar->Exibir Barra de Menu".Quando habilitado, o padrão é que as réguas sejam visíveis. Isso também pode ser alterado com o comando "Visualizar->Exibir Réguas".Quando habilitado, o padrão é que as barras de rolagem sejam visíveis. Isso também pode ser alterado com o comando "Visualizar->Exibir Barras de Rolagem".Quando habilitado, o pincel selecionado será utilizado por todas as ferramentas.Quando habilitado, o gradiente selecionado será utilizado por todas as ferramentas.Quando habilitado, a textura selecionada será utilizada por todas as ferramentas.Quando habilitado, o padrão é que a seleção seja visível. Isso também pode ser alterado com o comando "Visualizar->Exibir Seleção".Quando habilitado, o padrão é que a barra de estado seja visível. Isso também pode ser alterado com o comando "Visualizar->Exibir Barra de Estado".Quando ativado, assegura que cada pixel na imagem é mapeado para um pixel na tela.Quando habilitado, isto assegura que a imagem toda esteja visível na tela depois que um arquivo for aberto. Senão, ela será exibida numa escala 1:1.Quando habilitado, você pode alterar os atalhos para os ítens de menus simplesmente pressionando a combinação de teclas desejada enquanto o ítem estiver iluminado.BrancoEquilíbrio de Branco somente opera em camadas RGBLarguraLargura:Gerenciamento de JanelasDicas de Gerenciamento de JanelasPosições das JanelasEscrevendo '%s' -XErro de XCF: encontrada versão de arquivo XCF %d não suportadaAviso XCF: versão 0 do formato de arquivo XCF -não salvou corretamente mapas de cores indexadas. -Substituindo por mapa de tons de cinza.YAmareloAmarelo:Você está tentando criar uma imagem com um tamanho de %s.Você pode soltar diálogos acopláveis aqui.Você deve ter recebido uma cópia da Licença Pública GNU -com este programa. Caso contrário escreva para a Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Você precisa reiniciar o GIMP para que as alterações seguintes sejam efetivadas:Sua instalação do GIMP está imcompleta:Suas configurações de dispositivos de entrada serão re-inicializadas para os padrões na próxima vez que você inicializar o GIMP.Seus atalhos de teclado serão re-inicializados para os padrões na próxima vez que você inicializar o GIMP.Suas configurações de janela serão reinicializadas na próxima vez que você inicializar o GIMP.Comportamento do Zoom & Redimensionar:Zoom 1:1Ampliar TudoAmpliarDiminuirTaxa de ZoomTaxa de Zoom:Ver _Todas_Aumentar_DiminuirAmpliar tudoFator de ampliação: %d:1Zoom automático quando o tamanho da janela mudarAmplia visualizaçãoZoomDiminui vizualizaçãoZoom:[ Imagem Base ]_Sobre_CapturarAdicionar Cor de F_undoAdicionar a Cor de _FrenteAdicionar _Aba_Adicionar à Seleção Opções _Avançadas_Aerógrafo_Tudo_Ancorar camadaSuavizarRotação _Livre..._Artísticos_Proporção_Automático_BCor de F_undoCor de f_undo_Preta (transparência total)Função de _Mescla para o SegmentoFunção de _Mesclagem para a Seleção_Desfocar_Brilho:_Pincel_Pincéis_Pincéis, Texturas & Degradês_Preenchimento_BufferPor _CorSelecionar por Cor:_C_Estilo das pontasC_anais_Limpar Erros_Limpar o Histórico de Desfazer_Clonar_Fechar_Fechar Aba_NuvensFerramentas de C_or_Cores_Configurar Cor e Opacidade... _ContextoAjuda por _Contexto_Copiar_Copiar com Nome.../_Criar Imagem a Partir de Modelo..._Corta & Redimensiona_Cortar Imagem_Curvo_Curvas...Xadrez de Tons _Escuros_Cores PadrãoE_xcluir Pincel_Remover Buffer_Remover canal_Remover Cor_Remover Degradê_Remover Imagem_Remover Camada_Remover Paleta_Remover Vetor_Remover Textura...Re_mover Opções SalvasRemo_ver SegmentoRemo_ver Seleção_Remover Modelo_Dessaturar_Desacoplar AbaEstado do _DispositivoD_iálogos_Descartar Informação de TextoDist_orçõesUm _Ponto por Pixel_Duplicar_Editar_Editar Pincel..._Editar Atributos do Canal..._Editar Cor... _Editar Degradê..._Editar Atributos da Camada..._Editar Paleta..._Editar Atributos de Vetor..._Editar Textura..._Editar Modelo...Seleção _Elíptica_Habilitar pré-visualizações de camadas & canais_Enorme_Equalizar_BorrachaCor de _Frente_Arquivo_Preencher com:Caber Imagem na JanelaAc_hatar Imagem_Espelhar_Espelhar Segmento_Espelhar Seleção_Flutuar _Fonte_FontesCor de _frenteSeleção _Livre_G_Genéricos_GiganteDe_gradêDe_gradêsTons de _Cinza_Cópia em Tons de Cinza da Camada_Aumentar..._Guias_DurezaA_juda_Horizontal:_Matiz:_Imenso_Ãcone_Icone:_Imagem_Imagens_Importar_Importar Paleta..._Indexado...Janela de _InformaçãoFazer _Intersecção com a Seleção_InverterE_stilo das junções:_Grande_Camada_Camadas_Camadas, Canais & VetoresCor do Canto EsquerdoCanto _Direito do Vizinho à Esquerda_Níveis...Xadrez de Tons _ClarosEfeitos de Lu_z_Luminosidade:Estilo das _Linhas_Linear_LigadoCarregar cor da E_squerda deA_baixar CanalA_baixar Camada_Abaixar Vetor_M_Manualmente_Mapear_TodosMáscara para a SeleçãoNúmero _máximo de cores:_Medida_Médio_Combinar Paletas...Co_mbinar vetores importados_Migrar as configurações de usuário do GIMP 2.0E_xtrasL_imite dos ângulos_ModoGerenciador de _Módulos_Mover_Nome: _Natureza_Novo Pincel_Novo Canal_Novo Canal..._Novo Vetor_Novo Degradê_Nova Camada_Nova camada..._Nova Paleta_Novo Vetor_Novo Vetor..._Nova Textura_Novo Modelo..._Nova visualização_Novo..._Próxima dica_Ruído_Nada_Deslocamento..._Opacidade_Abrir Imagem_Abrir...Cor de _Preenchimento da TelaFerramentas de _Pintura_Pincel_PaletaC_olar_Colar BufferCo_lar com Nome..._Vetores_Padrão_Perspectiva_Posterizar..._PreferênciasPré-_Visualização_Tamanho da Pré-VisualizaçãoDica _anteriorTamanho para Im_pressão..._Propriedades_Máscara Rápida AtivaSa_ir_R_RGB_RaioS_ubir CanalS_ubir CamadaS_ubir Vetor_Elevar Visualizações_Elevar ou Abrir Imagem_Re-atribuir atalhoSeleção _Retangular_Refazer_Refazer %s_Regenerar PincéisRe_generar DegradêsRe_generar PaletasRe_generar Texturas_Remover cores não utilizadas da paleta final_RenderizarSubstitui_r_Replicar Segmento..._Replicar Seleção..._Regenerar a Lista de Fontes_Reinicializar Ordem & Visibilidade_Restaurar as Configurações do Dispositivo de Entrada_Restaurar os Atalhos de Teclado para a Configuração PadrãoR_estaurar Posições das Janelas para os Valores Padrão_Restaurar Opções deCor do Ponto no Canto Di_reitoCanto _Esquerdo do Vizinho a Direita_Rotacionar_Saturação:_SalvarSalvar cor Es_querda Para_Salvar Opções paraSalvar configurações do dispositivo ao sair_Salvar atalhos de teclado ao sair_Salvar posições das janelas ao sair_RedimensionarRedimen_sionar Imagem...Redimen_sionar camada...Redimen_sionar vetores importados para caber na imagem_Seleção_SeleçãoEditor de _SeleçõesFerramentas de _Seleção_Forma_Tornar NítidaExibir _Seleção da Imagem_Exibir na Caixa de Ferramentas_Senoidal_Pequeno_BorrarDi_stância de atração:Contornar Se_leçãoContornar Seleção_Subtrair da SeleçãoEstilo de Aba_Modelo:M_odelos_Texto_Limite..._Minúsculo_Dica do diaFerramen_ta_Ferramentas_Transfere o Canal Alfa da Camada_TransformarFerramentas de _TransformaçãoDesfa_zerDesfa_zer %s_Vertical:_Visualizar_Visível_WebNavegador web a utilizar:_Branca (opacidade total)E_quilíbrio de Branco_Largura:_Dar a voltaResolução _X:_X:E_xtras_YResolução _Y:_Y:_Zoom_Zoom (%s)corescopiarpppesperava-se 'yes' ou 'no' como palavra-chave booleana %s, encontrado '%s'erro fatal de análisetons de cinzatons de cinza-vaziapolegadapolegadasindexadoindexado-vaziostring UTF-8 inválidavalor '%ld' inválido para tipo de íconevalor '%ld' inválido para palavra-chave %svalor '%s' inválido para tipo de íconevalor '%s' inválido para palavra-chave %smilímetromilímetrosminuton/aporcentagempaicapaicaspixelpixelspixels/%apixels/%spontopontossegundotips-locale:pt_BRCyro Mendes de Moraes Neto -Marcia Norie Nakaza -Alexandre Folle de Menezes -João S. O. Bueno Calligarisvalor para palavra-chave %s não é uma string UTF-8 válidaao analisar palavra-chave '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/pt.gmo gimp-2.2.9/po/pt.gmo --- gimp-2.2.8/po/pt.gmo 2005-01-22 17:33:16.000000000 +0100 +++ gimp-2.2.9/po/pt.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,280 +0,0 @@ -Þ•öÌ'|Oðiñi&jG.j9vjG°jAøjN:ki‰k<ókk0l@œl2Ýl;mPLmOm2ím9 n-Zn9ˆn;Ân7þn 6o @oJo -Yodoto -Œo—oŸo§oÃoÝoóo0úo+p},P}}}…} ˜}¦} Æ}ç}ü}~ ~~0~ 6~.D~5s~5©~8ß~),Bo‹2¨ Ûü€O3€Aƒ€%Å€&ë€41G#y «Çßðö‚ ‚‚ /‚<‚0U‚†‚‚¨‚Å‚+΂ú‚ ƒ ƒ)ƒ -2ƒ=ƒ]ƒlƒƒ”ƒ©ƒ¹ƒ ƒ΃P„Y„j„ r„„š„³„Ó„è„ñ„ -…… --…)8…b…,|…©…#Ã…#ç…! †%-†S†r†y†† †³†#Ɇ-톇%1‡W‡m‡…‡ Š‡˜‡ -²‡ -½‡ȇà‡ç‡ ö‡ -ˆˆ-ˆCˆJˆ NˆXˆ]ˆcˆjˆ%pˆ!–ˆ ¸ˆň ؈æˆøˆ‰‰/‰L‰ -^‰-i‰ —‰£‰ ª‰¸‰ À‰ -͉ ؉å‰þ‰ŠŠ,ŠFŠ OŠYŠ iŠsŠ?zŠºŠ ËŠÕŠäŠêŠ -‹ ‹ ‹ -$‹ /‹ ;‹ -E‹ P‹\‹e‹y‹ ˆ‹>–‹Õ‹õ‹Œ -Œ"Œ5ŒNŒ dŒnŒŒ –Œ¤Œ´ŒÏŒ ÞŒ ìŒ -øŒ*.?nŠ#“"·Ú÷&Ž =ŽIŽ]Ž,fŽ#“Ž·Ž ¾ŽÌŽߎ'ùŽ!>[qF§TîCJ` s}” ±Òáð‘ ‘$‘=9‘6w‘<®‘Aë‘7-’9e’cŸ’9“B=“=€“f¾“>%”Cd”J¨”gó”[•k•}•’• ¢• ¯• ½•Ë•Þ•ñ•––*–E–b–i–ˆ–£– º–È– Í– -Ú– å–ï– ÿ– — )—5—E—a—u—{—‚— Š———Ÿ—¥— -«—O¶— -˜”˜¦˜¿˜ Ö˜☠ë˜ø˜ý˜ ™™ 1™ >™K™\™p™u‡™Ìý™ÅÊšc› ô›zœ|œ‚œrŠœýœ/?T&e'Œ ´ À ÊÔã èòøÿ žž ž2ž8žPžažežž–ž Ÿž©ž°ž ¸ž Şўហ-æžHñž :ŸDŸTŸ -\ŸHgŸ!°ŸBÒŸ  1( Z _ d  -k v `{ 0Ü  ¡¡ -%¡ -0¡;¡R¡b¡¡”¡ ¬¡ -º¡HÅ¡¢ ¢!¢0¢ ?¢L¢b¢ w¢ …¢ ’¢ž¢¦¢Ä¢Ë¢ Ó¢ᢠú¢£ £6£R£ V£ d£ q£3£6³£ê£ ù£¤¤/¤$>¤c¤~¤ “¤ ¡¤ ¤(ã¤+ ¥)8¥*b¥!¥/¯¥ߥæ¥õ¥*¦1¦-:¦h§ {§…§‹§›§ «§·§3½§ñ§¨¨ *¨ 7¨D¨b¨¨¡¨º¨Ψ Õ¨á¨ö¨ -©@©S©-Z©ˆ© ©š©¸©¿© Ä© ЩÜ© ð© ú©ª ª+ª CªOª -eªpª…ªª–ªžª ¶ªĪ -̪תðªöªþª«8«@« -G« R« _«m«‚«–«©«Ä«Û« ä«ò«ø«ý«¬$¬>¬P¬d¬s¬‚¬Š¬ ¬ œ¬ -©¬ -´¬¿¬ Ϭ٬謭­;­B­ -K­ V­b­t­ ˆ­ ’­œ­¥­ ¶­,íð­®®)8®b®z®®Ž®•®¦®B¹®Aü®>¯E¯T¯ d¯q¯ƒ¯‹¯„“¯°'°/° -8°C°Z°z°"™°!¼°Þ°÷° ± ±#±3± B±P±VX±+¯±(Û±²" -²-² C²O²i²%² -§²²²º²ɲݲ -í²ø²³ ³³ 2³ <³J³ P³]³b³r³³­³¿³ -ųгس -è³ó³ ü³ -´´ .´:´ O´![´}´ Œ´š´µ´¼´?Ä´µµµ/µ?µ\µ¡yµ4¶P¶Y¶-a¶ ·™·¢· ²·#¼·-à· ¸ ¸$¸,¸C¸¥L¸ò¸¹¹ #¹0¹9¹?¹U¹ m¹w¹{¹ Œ¹ –¹! ¹ ¹й×¹ ß¹í¹ ºº -!º,º>ºZº_º eº!rº”º!²º#Ôº øº9»U?»=•»<Ó»=¼ N¼Z¼^¼c¼(h¼,‘¼ -¾¼ɼJß¼ *½7½ F½ S½`½{½ •½;¡½ݽ ì½ ù½¾ ¾-¾ =¾ K¾W¾_¾ }¾‡¾¢¾¿¾Ѿå¾+ø¾$¿+¿ :¿ G¿ T¿ `¿ l¿x¿¿¤¿6¼¿ó¿û¿ À7ÀGÀeÀzÀÀ À À©À»À ÙÀåÀúÀÁ -ÁÁÁ +Á7Á -NÁ YÁeÁwÁ4ÁÅÁâÁõÁÂE% k y†ž ¤Â ²Â ¾Â -ÊÂÕÂò -úÂÃÃÃ'à -/Ã:ÃOà _ÃlÇÛóà ÉÃÕÃìÃÄÄ9ÄPÄ iÄ wĄęīĻÄÕÄïÄ Å$Å<Å=UÅ6“ÅSÊÅJÆ iÆsÆ„Æ“Æ ­Æ¹ÆÈÆÝÆðÆ ÇÇ)Ç;ÇOÇeÇǚDzǴÆÇ){ÈN¥ÈôÈKÊ=Tʃ’Ê*Ë?AË`Ë2â˯ÌÅÍ4ÈÎ/ýκ-ÏèÏðÏöÏýÏÐÐ'Ð-ÐJÐ _ÐkÐ{Ð ŒÐ™Ð ®Ð¼ÐÎÐíÐÑÑ!Ñ2ÑKÑ_ÑdÑ+jÑ–ÑœÑ­Ñ ´ÑÁÑ ÈÑÕÑÛÑâÑêÑ óÑ8Òv9Ò°Ò·Ò ½Ò!ÞÒÓÓ4ÓOÓhÓ…Ó¢Ó©Ó²ÓÆÓàÓ çÓ ôÓÔ ÔÔ !Ô-Ô>Ô#GÔ kÔ yÔƒÔ’Ô¦Ô -«Ô -¶ÔÁÔÑÔ1ÚÔ7 Õ5DÕHzÕ;ÃÕ!ÿÕÁ!ÖæãÖ¨Ê×*sØBžÙæáÙÈÚçÚ‚iÛìÛ òÛÜ5ܯ=Ü1íÜ0Ý0PÝ1ÝC³Ý€÷ÝSxÞ,ÌÞ2ùÞ ,ßAMàAà*Ñà«üàí¨á –âΣã£räªå§Áå§iæç˜èG­èèõèïÞé2Îêë ë-%ë -Së^ëqëwë|ë ‹ë˜ëªë ºëÇëÍë äëîëìì$ì3ìMì\ìlì {ì -ˆì“ì˜ì;¡ì;Ýì¡í »íÅí Êí×íÝíåí÷íþíî3îCîYîhînîuî’î›îF¤îëî ïKïQcï$Nð5sðP©ðGúð-BñjpòoÛòeKój±ó~ôp›ôo õw|õ<ôõ?1ö>qöt°öt%÷`š÷‰û÷…øù ùùù*ù ;ù6Iùo€ùðù÷ù#ÿùÈ#úGìú4ûKûTû]ûeû -nû yû…û—û Ÿû­û¶û¼û ËûÙûßûâû ü "ü/ü6ü9üIü [üiüyü |ü †ü“ü™ü ü ¨ü´ü ·üÁüÈüÑüÚüÝüãüìüý ý -'ý2ý8ý -AýLýPýSý -Wýbýiýný5rý¨ý ºýÄýÔýÙýàý èýöý þ,þ -Lþ Wþcþgþoþtþzþ€þ ‡þ ‘þ›þ¡þ ¨þ¶þ.ÉþøþHÿ^/wV§<þS;JZÚ|5G²qúNlD»=Y>U˜:îE)1oA¡Hã@, -m -xƒ -’° É Õ ßë +A7J‚”¦ÃÌÕÞ ãñ^–_7ö>.  m z Š Ÿ ± Á Ñ ë ü  -+ -? -Y -q -Ž --¨ -<Ö - 2 N W r Œ ¡ · Ò ï  " > ^ e n  ‡ ¢  «  · Ä 4ã 9RWlr ˜ -¥°Ë@ÝI<h¥Á#à +@TZv0ˆ-¹çî÷þ * <JOU^ s€–°7Ãû &08 A O] er„Œ ‘!›½ÕYÞE8R~CÑ;nQÀ"à:>FX+Ÿ(Ë ô! 7 DNWl… -·åëþ# #1Ukr y…¡ ¨<µ:òH-;v1²0ä" 89Y%“¹)ÖpEq$·&Ü549$n“$§Ìèû"+N];yµº#Úþ.5F -Wb k-w¥·Òî -  %˜2 ËÕ éó %#Bf~‡œ!µ×5ê 3: n '‰ '± ;Ù #!(9! b!l!~!!¢!.·!5æ!"%1"W"o"…"Ž"/§" ×" å"$ó" # "#.# -?#J#7Q# ‰#—#ž#¶#¼# Ã#Í#.Ó#&$)$=$[$k$†$—$¦$Ã$á$õ$?% E%Q%X% n%{% -Š% •%¡%Á%É%Ý%ö% & &&& 8&D&QL&ž& -´&¿&Ï&ß&ý&'$'6' E'S'd't' „''©'¼'[Ó'/(N(h(o(‰((¹( Ñ(ß(ô( ))8)U) j) v) ƒ)‘)2¤)7×)(* 8*)E*+o* ›*"¼*0ß*++ )+13+(e+Ž+—+¨+Á+$á+,,5,"N,q,O,Zà,;-A-_- z-#‡-1«-0Ý-.&.?.X. `.&l.O“.Pã.Y4/ZŽ/Sé/N=0ŠŒ0S1_k1OË12R2Rð2dC3¨364E4\4w4 4œ4¸4Î4é45595#N5r5 -’55¼5Û5ø5 6 6 6 (666I6[6 -{6†6 ›6¼6Ó6Ø6 Þ6ë6þ677 7X!7z7 7"8B8X8 -i8t8‡8Œ8ž8¯8É8Ù8ê8ü8 9}-9ó«9ëŸ:†‹;<"<°<µ<x»<4= -Q=\=q=†=£=.º=-é= > -$> -/>:>J>P>a>g>n> u>ƒ>>´>¹>Õ>ë>ï> ? &? 3?A?H?P?`?q?ˆ? ?V™? -ð?û? - @ -@U#@,y@H¦@ï@õ@8 -ACAJAQA YAeAjlA7×ABB *B6BHBeB&tB›B²BÎBáBVôBKCSCcCyC‰C›C´CÍCßC òC þCD'D0D 9DFDaD$uDšD±DÎDÔDíDýD> E<LE‰E ¥E¯EÌEãE#óEF.FFF(VF*F6ªF9áF5G7QG)‰G<³GðGùGH-H JHSVHªIºIÃIÊIÛI ïIýI8J=JNJ"iJŒJ ŸJ$­J$ÒJ÷JK0KNK VKcKK šKM§KõK8ýK6L_B_S_ [_!e_‡_Ÿ_¦_ ¬_¹_ Î_Ü_ò_`$`?`D`J`3d`+˜`,Ä`.ñ` aG.a`vaF×aJbKibµbÌb Õbßb+çb0c DcNcIac «c ¹c ÇcÔc&ãc$ -d/d:?dzd‰d™d)ªdÔdédùd -ee#eBeKege…e—e«e4Ée þe f f5fJf`f sf€f”f¯f4Äfùfg g?g[g{g“g ™g ¥g ²gÀgÓg -ïgúg h h &h2h9h Rh`h hhœh»h4×h' i4i,Qi~iI–iàiòij j ,j:jMj^jnjj”j¥j­j³jÄjÌj#Ýjkk%k!Ak%ck#‰k­k"Ãk#æk# -l%.lTlrll¢l³lÑlëlÿlm ¿˜"þ˜!™/(™ -X™c™ ‚™ -™›™­™Å™å™ü™ š"š @šLšbš€š—š,«šØšèš ùš›››$›F,›Ds›»¸› -tœœˆœœœ ¥œ²œ Мܜ åœ<ñœ".Qfls’›S¤*ø #žQ/žlž§îž*–Ÿ6ÁŸ^øŸRW Rª qý¡so¢zã¢}^£…Ü£b¤xâ¤[¥Oé¥R9¦PŒ¦yݦ…W§cݧ‘A¨šÓ¨n©u©}©†©™©®©>¿©ˆþ©‡ªª&˜ªÆ¿ªO†«"Ö«ù« -¬ ¬¬¬0¬B¬W¬`¬o¬x¬~¬ Ž¬ œ¬©¬"­¬&Ь÷¬­­ ­­1­D­Y­ -]­ h­u­}­ †­­Ÿ­ ¢­¯­¶­ ¿­Ë­έ ×­ã­ù­ ® ® +® 5® -B®M®Q®T® -X®c®i®p®;t®°®Ê®Ú®ð® ù®¯ ¯¯%5¯$[¯ -€¯ ‹¯—¯ ›¯§¯¬¯²¯¸¯ ¿¯ ɯӯٯ௠ï¯:ý¯8°/ž.ayK®XgÞ —¶>þe±¹ãûpa]Ç V)‡lç‡<ôÑêüëå‹9fUUTè¯(t†zm§>eÍÑÉy—=9”Á&ß2÷÷&çpÿõ–æ¹Ö£ùîN¯Ú`Ísuq°~ÞüŒ‚õÏžMŒªº“GÝÊ ¥Æ ñ*ÏÖf†J¾­¥úOE<FÅ!Ñk3vÂQ髵mP-Y:HKehÂ;>Y »õÏŧï–à³ia¿I+„ázê†tjƼ‰½‡3­Í(DTR7'L>¬8cm¡à2ŒÂÚB$ÍqÜî{BšòøâfíåP4}›B0gŠE^ ÂÛ*oŒñ<²iN4žªkM¶ŸïÓ°0,Ÿä7ðËr"(±<hÎŽ[²Õ‰ôìnyûë‰%Ç< ¤‘@• -‹˜PÚã),$É$uFî=âBá›`a‹S¦ÅòÍÐÜWä;e˜A'óÛðœÈ%Qëô^-ò ïWöˆãY•”éíd[®I˜„ +ù Hqtê$¾ÖÈkÕz›~ ÊPî ¿È°M°63£ÁÞ€ÒóìÚ¢!U1&hê6ðÀè@’Ou¤«Ïì\ÂZ\£Dù æ é¶:““N„e\ˆÕsœÉúX®ljÀ€F¨´, ûïï1 …vR}”4jvåÆ´‘™[lEšìÖ½ÿµV" 1Cüª%ßž~ÕDDÄY”·¾ÎrÛ¹`SµsÒù³~Ü.Å’Š -Ì© -/Ù õ(ZVsÃÔJCSõ ¡è¨’›c™áJ€™Øw“£IàÞüר -}.zA×Ù2!Û0¸˜ , -ö䰼歙x©¯ ÔÀw_ ?ˆ¾iV56Á8¶i#œŽO‹ÝsM!_F SEŸØT‚Ì!áÉ‘9ZCº·„A7L´þ.nºÌбzœ\rãñ¿Ò³ƒ5}‘¦¤æN׫kAÄÀÐ:óⱎú?±ÓwW‰|çýô¢¹–Æä²%¡QP\/p6}B#Wáo7ýbŽ—ôfºÈÕ÷º»"?¸i4öMR)(D{ø…¯j—§˜ZÓð…¥½à«[#I]…Ü@žjdÀ_5¯ †¼/‡KâýÜö.ÌÃJË|UèÛÆÙ߬{˥ǽȠƒþ]wå­ñ:QÒC híLíCÊÄݨ;Øí¹ÝŒpÎÔ:Xqd7¦¤Ðh#…ã×H‚ÿøG‘Áq•Ω/ÿµ®u)Êl®é Ä–-ß–¿ƒ©o8Ÿcc2«OU€¶Ùp´Lo¤Ù5x|€Q£š'¿÷û¢ª@y3dw"Þgâ?õ·Xg ý`F¼»&kt~§%·Ç»¢Ï+,ˆ•";²Ø`ѳ|™vy8¦|¥Rn&lb=ÐÄÇëc3GmŸç’nÉI6nxšórSÃÓ†+­gÝø)Å'xxѸHœËÔ^ñéV©š+^'•Y ¬r2êaGú½ßŠ@ƒA{*èî_ˆ¸ªKL§ƒJ‰E„äÁò1Ód]¢]öætð×[¡1‡ -òmì#¾»‚K¸”ØbÚçóàf‹94ŠO¼¡Ë²T>8´Ö-$Ì0¬¨XN›HÎvZ³=T¬Š;{bÒR*båë=Ê—uŽ9?*5‚’W·“¦oÃ0_Ôþ^G -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d layers%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(Unnamed Buffer)(Unnamed Template)(invalid UTF-8 string)(none)1 Layer1 layer<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis and the GIMP Development Team.The GIMP tips file could not be parsed!Your GIMP tips file appears to be missing!About The GIMPActive FiltersAdd Alpha ChannelAdd AnchorAdd ChannelAdd GuidesAdd Horizontal GuideAdd LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd text to the imageAdd the current color to the color historyAdd the selected filter to the list of active filters.Add to the current selectionAdding theme '%s' (%s) -AdditionAdjust Brightness and ContrastAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAll image and undo data which doesn't fit into the Tile Cache will be written to a swap file. This file should be located on a local filesystem with enough free space (several hundred MB). On a UNIX system, you may want to use the system-wide temp-dir ("/tmp" or "/var/tmp").Allow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha to SelectionAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Are you sure you want to delete template '%s' from the list and from disk?Ask for confirmation before closing an image without saving.Attach ParasiteAttach Parasite to ImageAttach Parasite to ItemAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase filled area on all visible layersBase selection on all visible layersBehindBevelBlack:BlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder ChannelBorder SelectionBorder selection byBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnButtCMYKC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot add layer mask of different dimensions than specified layer.Cannot add layer mask to a layer with no alpha channel.Cannot add layer mask to layer which is not part of an image.Cannot anchor this layer because it is not a floating selection.Cannot convert to a palette with more than 256 colors.Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Cannot stroke empty channel.Cannot stroke empty path.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to SelectionChannel:ChannelsChannels MenuChoose Stroke StyleClearClear ChannelClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClipped to bottom layerClipped to imageCloneClose this TabColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor balance operates only on RGB color layers.Color:Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColumns:Con_trast:Configure Color Display FiltersConfigure GridConfigure Image GridConfirm Image SizeConfirm Text EditingConnect StrokesConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCubic (Best)Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:DashedDate:Default Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDelete AnchorDelete Layer MaskDelete SegmentDelete TemplateDelete saved options...Delete the selected templateDelete this imageDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogs MenuDifferenceDirect ColorDiscard Text InformationDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo you really want to reset all tool options to default values?Document HistoryDocumentsDocuments MenuDodgeDodge or Burn strokesDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Duplicate the selected templateEEK: can't undoEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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. -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 UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground color set to:Foreground: %d, %d, %dFree SelectFreehandFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrow ChannelGrow SelectionGrow selection byGuideGuide 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: - -%sOpening '%s' failed: %sOptions: -Origin X:Original Width:Other (%s) ...Output 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" -(%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': -%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: - -%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' -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 -to replicate the selected segment.Select the number of times -to replicate the selection.Select the number of uniform parts -in which to split the segments in the selection.Select the number of uniform parts -in which to split the selected segment.SelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Canvas Padding ColorSet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Item Exclusive LinkedSet Item Exclusive VisibleSet Layer Boundary SizeSet Name from _TextSets an upper limit to the memory that is used per image to keep operations on the undo stack. Regardless of this setting, at least as many undo-levels as configured can be undone.Sets the browser used by the help system.Sets the canvas padding color used if the padding mode is set to custom color.Sets the external web browser to be used. This can be an absolute path or the name of an executable to search for in the user's PATH. If the command contains '%s' it will be replaced with the URL, else the URL will be appended to the command with a space separating the two.Sets the level of interpolation used for scaling and other transformations.Sets the manner in which transparency is displayed in images.Sets the minimal number of operations that can be undone. More undo levels are kept available until the undo-size limit is reached.Sets the mode of cursor the GIMP will use.Sets the size of the checkerboard used to display transparency.Sets the size of the navigation preview available in the lower right corner of the image window.Sets the size of the previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.ShadowsShapeShape:SharpenSharpen ChannelSharpen SelectionShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow Scroll_barsShow _GuidesShow _Layer BoundaryShow _MenubarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:Skipping '%s': wrong GIMP protocol version.SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSolidSourceSpacingSpacing:Special FileSpecifies how the area around the image should be drawn.Speed of marching ants in the selection outline. This value is in milliseconds (less time indicates faster marching).Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareStandardStarting ExtensionsStarting extension: '%s' -State:Static ColorStatic GrayStd Dev:StipplesStroke ChannelStroke PathStroke SelectionSubtractSubtract from the current selectionSupersamplingTemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTilt:TinyTitle & StatusTool OptionsTool Options MenuTool Toggle %sToolbox MenuToolsTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform 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 -did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_Antialiasing_Auto_B_Blending Function for Segment_Blending Function for Selection_Brightness:_Brush_C_Delete Segment_Delete Selection_Flip Segment_Flip Selection_G_Gradient_Horizontal:_Hue:_Icon:_Import_Lightness:_M_Manually_Name:_Pattern_Preview_R_Redo_Redo %s_Replicate Segment..._Replicate Selection..._Saturation:_Selection_Undo_Undo %s_Vertical:_X:_Y_Y:_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: 2.6 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-04-06 00:02+0200 -Last-Translator: Duarte Loreto -Language-Team: Portuguese -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Opção "%s" inválida - -Utilização: %s [opção ...] [ficheiro ...] - --debug-handlers Activa manipuladores de sinais de depuração não-fatais. - --display Utiliza o monitor de X indicado. - --dump-gimprc Gerar um ficheiro gimprc com definições por omissão. - --no-cpu-accel Não utilizar optimizações especiais de CPU. - --no-shm Não utilizar memória partilhada entre o GIMP e seus plugins. - --pdb-compat-mode - Modo de compatibilidade de Procedimentos de Base de Dados. - --session Utilizar um ficheiro sessionrc alternativo. - --stack-trace-mode - Modo de depuração para sinais fatais. - --system-gimprc Utiliza um ficheiro gimprc de sistema alternativo. - --verbose Mostrar as mensagens de inicialização. - -b, --batch Processar comandos em modo batch. - -c, --console-messages Mostra avisos na consola em vez de em caixas de diálogo. - -d, --no-data Não carregar texturas, gradientes, paletas, pincéis. - -f, --no-fonts Não carregar quaisquer fontes. - -g, --gimprc Utilizar um ficheiro gimprc alternativo. - -h, --help Apresenta esta ajuda. - -i --no-interface Executar sem interface de utilizador. - -s, --no-splash Não apresentar a janela de inicialização. - -v, --version Apresentar informações de versão. -%d Camadas%d camadas%d x %d pixeis%g x %g %sCópia de Canal %sCanal %s para SelecçãoMensagem %s%s cópia%s máscara%s%sClique: extender selecção%s%sArrastar: mover & comprimir(%0.3f, %0.3f, %0.3f)(Nenhum)(Esta janela de consola será fechada em dez segundos) -(Buffer Sem Nome)(Modelo Sem Nome)(expressão UTF-8 inválida)(nenhum)1 Camada1 camada<%s><>Para desempenho óptimo do GIMP, poderão ter de ser ajustadas algumas configurações.O GIMP - Aplicação GNU de Manipulação de Imagem -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis e a Equipa de Desenvolvimento do GIMP.O ficheiro de dicas GIMP não pode ser parseado!Parece que o seu ficheiro de dicas GIMP está em falta!Sobre O GIMPFiltros ActivosAdicionar Canal AlfaAdicionar ÂncoraAdicionar CanalAdicionar GuiasAdicionar Guia HorizontalAdicionar CamadaAdicionar Máscara de CamadaAdicionar CaminhoAdicionar PinceladaAdicionar Camada de TextoAdicionar Guia VerticalAdicionar Máscara à CamadaAdicionar texto à imagemAdicionar a cor actual ao histórico de coresAdicionar o filtro seleccionado à lista de filtros activos.Adicionar à selecção actualA adicionar tema '%s' (%s) -AdiçãoAjustar Brilho e ContrasteAjustar Equilíbrio CoresAjustar Curvas CoresAjustar Níveis CoresAjustar brilho e contrasteAjustar equilíbrio de coresAjuste de curvas de coresAjustar níveis de coresAjustar matiz e saturaçãoAjustar níveis automaticamenteAjusteAfectar:Ãrea Afectada %sSpraySpray com pressão variadaAlinhadoAlinhamentoTodos CanaisToda imagem e dados de desfazer que não couberem na Cache Blocos serão gravados num ficheiro swap. Este deve estar localizado num sistema de ficheiros local com espaço livre suficiente (centenas de MB). Num sistema UNIX, pode utilizar o directório temp geral ("/tmp" ou "/var/tmp").Permitir encher regiões completamente transparentesPermitir selecção de áreas completamente transparentesAlfaAlfa para SelecçãoAlfa:Ancorar Selecção FlutuanteÂngulo:AntialiasingAparênciaAplicar Máscara de CamadaAplicar IntervaloTem certeza que deseja remover '%s' da lista e do disco rígido?Tem certeza que deseja remover o modelo '%s' da lista e do disco rígido?Pedir confirmação antes de fechar uma imagem sem a gravar.Anexar Informações AnexasAnexar Informações à ImagemAnexar Informações Anexas ao ItemAutor:AutomáticoLer AutomaticamenteFiltros DisponíveisTipos Disponíveis:FundoCor de fundo definida como:Fundo: %d, %d, %dÃrea base enchida em todas as camadas visíveisSelecção base em todas as camadas visíveisAtrásCinzelarPreto:MisturarMistura: Mistura: Inválida para imagens indexadas.A Misturar...AzulAzul:DesfocarDesfocar ou RealçarMargem CanalSelecção de LimitesLimites de selecção porBrilho e ContrasteBrilho e Contraste não operam sobre camadas indexadas.Editor de PincéisDirectório de PincéisPincel UIPincel:PincéisMenu PincéisPreenchimentoBuffersMenu BuffersSuper-ExposiçãoAlargarCMAKC_olunas:Calibrar a Resolução do MonitorImpossível desfazer %sCancelarImpossível adicionar máscara de camada de dimensões diferentes da camada especificada.Impossível adicionar máscara de camada a uma camada sem canal alfa.Impossível adicionar máscara de camada a camada que não é parte de uma imagem.Incapaz de fixar esta camada pois não é uma selecção flutuante.Incapaz de converter para uma paleta com mais de 256 cores.Incapaz de criar uma nova camada da selecção flutuante pois esta pertence a uma máscara de camada ou canal.Incapaz de criar pasta '%s': %sNão é possível criar antevisãoIncapaz de cortar pois a região seleccionada está vazia.Incapaz de expandir ${%s}Incapaz de flutuar selecção pois a região seleccionada está vazia.Não é possível elevar a camada sem alfa.Não pode gravar. Nada foi seleccionado.Incapaz de pincelar canal vazio.Incapaz de aclarar caminho vazio.Tamanho TelaCentro X:CentradoAlterar Cor de FundoAlterar Cor de 1º PlanoAlterar Resolução ImagemAlterar Unidade ImagemAlterar a perspectiva da camada ou selecçãoCanalAtributos do CanalNome do Canal:O canal não pode ser mais descido.O canal não pode ser mais elevado.Canal para SelecçãoCanal:CanaisMenu CanaisSeleccione Estilo PinceladaLimparLimpar CanalClique em "Continuar" para aceitar as configurações acima.Clique em "Continuar" para criar a sua pasta pessoal GIMP.Clique em "Continuar" para entrar na instalação de utilizador do GIMP.Clique para ligar esta âncora ao ponto final seleccionado.Clique para criar uma nova âncora. (tente SHIFT)Clique para criar um novo componente do caminho.Clique para criar um novo caminho.Clique para apagar esta âncora.Clique para inserir uma âncora no caminho. (tente SHIFT)Clique para tornar este nó ângular.Clique para abrir o caminho.Clique para seleccionar caminho a editar.Clique para actualizar antevisão -%s Clique para forçar actualização mesmo que antevisão esteja actualizadaClique-Arraste para alterar a forma da curva. (SHIFT: simetricamente)Clique-Arraste para mover a âncora.Clique-Arraste para mover as âncoras.Clique-Arraste para mover o componente. (tente SHIFT)Clique-Arraste para mover o manípulo. (tente SHIFT)Clique-Arraste para mover o caminho.Clicar: seleccionarClicar: seleccionar Arrastar: moverAjustada à camada de fundoAjustada à imagemCópiaFechar esta AbaCorEquilíbrio de CoresFiltros de Apresentação de CoresSelector CoresInformação Selector CoresEquilíbrio de cores apenas opera sobre camadas em cor RGB.Cor:_Tipo Coloração para Segmento_Tipo Coloração para a SelecçãoColorirColorir apenas opera sobre camadas em cor RGB.Colorir a ImagemColorir a imagemMapa CoresColunas:Con_traste:Configurar Filtros de Apresentação de CoresConfigurar GrelhaConfirmar Grelha da ImagemConfirmar Tamanho da ImagemConfirmar Edição de TextoLigar PinceladasConstanteRestriçõesCursores dependentes do contexto são engraçados. Estão activos por omissão. No entanto, requerem processamento que poderá não querer desperdiçar.ContinuarContribuições porConverterConverter MargemConverter Imagem em Escala CinzaConverter Imagem em IndexadaConverter Imagem em Cores IndexadasConverter Imagem em RGBEnvolverTipo Envolvência %sCópia com DenominaçãoA copiar ficheiro '%s' de '%s'...Direitos de Autor:Segmento %d corrompido no ficheiro de gradiente '%s'.Incapaz de criar '%s': %sIncapaz de criar ficheiro temporário para '%s': %sIncapaz de apagar '%s': %sImpossível abrir '%s' para leitura: %sImpossível abrir '%s' para escrita: %sIncapaz de abrir ficheiro de imagem de referência '%s': %sIncapaz de ler %d bytes de '%s': %sImpossível procurar no ficheiro XCF: %sContador:Criar Novo ModeloCriar Nova ImagemCriar Nova CamadaCriar um Novo ModeloCriar uma nova apresentação para esta imagemCriar uma nova imagem a partir do modelo seleccionadoCriar um novo modeloCriar e editar imagens ou fotografiasCriar e editar caminhosA criar pasta '%s'...RecortarRecortar & RedimensionarInformações sobre Recorte & RedimensionamentoCortar ImagemCortar CamadaRecortar ou Redimensionar uma imagemRecorta: Apenas CruzCúbico (Melhor)Tipo CurvaCurvasCurvas para camadas indexadas não podem ser ajustadas.PersonalizadoCortarCorte com DenominaçãoCianoCiano:SombreadoData:Aparência por Omissão em Modo Ecrã CompletoAparência por Omissão em Modo NormalGrelha por OmissãoGrelha de Imagem por OmissãoRemover ÂncoraRemover Máscara de CamadaRemover SegmentoRemover ModeloRemover opções gravadas...Remover o modelo seleccionadoRemover esta imagemDes-saturaçãoRedução de saturação apenas opera sobre camadas de cor RGB.DescriçãoDesignEstado do DispositivoDispositivosMenu DiálogosDiferençaCor DirectaDescartar Informação de TextoMonitorMostrar NavegaçãoProcedimentos do monitorA Mostrar: [%0.6f, %0.6f]DissolverDistância:Distância: %0.6fEsbatimentoDividirDeseja mesmo repor todas as opções de ferramentas para os valores por omissão?Histórico DocumentosDocumentosMenu DocumentosSub-ExposiçãoAclarar Sub/Sobre-ExposiçãoSub/Sobre-ExposiçãoArrastar ÂncoraArrastar ÂncorasArrastar CurvaArrastar PegaArrastar CaminhoArrastar: moverDesenho a tintaDesenhávelProcedimentos de desenhoLargar Nova CamadaDescartar Novo CaminhoDevido à inexistência de quaisquer fontes, a funcionalidade de texto está indisponível.Duplicar o modelo seleccionadoEEK: impossível desfazerEditarEditar Atributos do CanalEditar Cor de CanalEditar Entrada Paleta CoresEditar Atributos CamadaModo EdiçãoEditar Cor de PaletaEditar Atributos do CaminhoEditar ModeloProcedimentos de ediçãoEditar o modelo seleccionadoSelecção ElípticaCanal VazioCamada VaziaCaminho VazioCamada Texto VaziaNome de variável vazio no ficheiro de ambiente %sActivar para apresentar uma útil dica GIMP ao iniciar.Activar para apresentar dicas de botão.EnormíssimoIntroduza um nome para a paleta misturadaIntroduza um nome para as opções gravadasInserir um nome para este bufferIntroduza um nome para este modeloIntroduza um novo nome para as opções gravadasAmbientePastas AmbienteEqualizarEqualização não opera sobre camadas indexadas.Apaga mantendo o fundo ou transparênciaBorrachaConsola de ErrosMenu de Consola de ErrosErro ao gravar ficheiro XCF: %sErro ao parsear '%s' na linha %d: %sErro ao ler '%s': %sErro ao escrever '%s': %sErro ao escrever XCF: %sErro ao escrever ficheiro '%s': -%sErro ao escrever para '%s': %sErro ao escrever ficheiro temporário para '%s': %s -Nenhum ficheiro foi criado.Erro ao escrever ficheiro temporário para '%s': %s -O ficheiro original não foi alterado.ErrosExpandir segundo necessidadesExportar Caminhos para SVGExposição:Dispositivos de Entrada Adicionais:Frente para Fundo (matiz HSV no sentido horário)Frente para Fundo (HSV no sentido anti-horário)Frente para Fundo (HSV)Frente para Fundo (RGB) Frente para Transparente1ºP/FDCor 1ºP/FDFalha ao importar caminhos de '%s': %sErro fatal de parseamento no ficheiro de pincel '%s': Ficheiro parece truncado.Erro fatal de parseamento no ficheiro de pincel '%s': Ficheiro está corrompido.Erro fatal de parseamento no ficheiro de pincel '%s': Não é um ficheiro de pincel GIMP.Erro fatal de parseamento no ficheiro de pincel '%s': Versão de pincel GIMP desconhecida.Erro fatal de parseamento no ficheiro de pincel '%s': Profundidade %d desconhecida.Erro fatal de parseamento no ficheiro de pincel '%s': Versão %d desconhecida.Erro fatal de parseamento no ficheiro de pincel '%s': Profundidade %d de pincel não suportada -Pinceis GIMP têm de ser CINZENTOS ou RGBA.Erro fatal de parseamento no ficheiro de gradiente '%s': Ficheiro está corrompido.Erro fatal de parseamento no ficheiro de gradiente '%s': Não é um ficheiro de gradiente GIMP.Erro fatal de parseamento no ficheiro de paleta '%s': Falta cabeçalho mágico.Erro fatal de parseamento no ficheiro de paleta '%s': Falta cabeçalho mágico. -Este ficheiro necessita de ser convertido do DOS?Erro fatal de parseamento no ficheiro de paleta '%s': Erro de leitura na linha %d.Erro fatal de parseamento no ficheiro de padrão '%s': Incapaz de ler %d bytes: %sErro fatal de parseamento no ficheiro de padrão '%s' Versão %d de formato de padrão desconhecida.Erro fatal de parseamento no ficheiro de padrão '%s': Profundidade %d de padrão não suportada. -Padrões GIMP têm de ser CINZENTOS ou RGB.Canal DifusãoSelecção de DifusãoDifusão de selecção porOperações de FicheiroEncher CanalOpacidade do Preenchimento:Tipo Preenchimento %sPreencher com Cor de FundoPreencher com Cor de 1º PlanoPreencher com PadrãoPreencher com TransparentePreencher com BrancoPreencher com um gradiente de coresPreenche com uma cor ou texturaPreenchidoA Camada Mesclada Final será:A Procurar Regiões ContíguasA Procurar Cores SemelhantesUnificar CamadasVirarVirar CanalVirar CamadaVirar CaminhoVirar Camada TextoTipo Inversão %sInverter a camada ou selecçãoA Virar...Selecção FlutuanteSelecção Flutuante para CamadaSelecções flutuantesFocoPastaDirectóriosDirectório FontesFonte UIFonte:FontesMenu FontesPara uma instalação adequada do GIMP, tem de ser criada uma pasta chamada '%s'.FrenteCores de frente e fundo. Os quadrados branco e preto reinicializam as cores. As setas trocam as cores. Duplo clique para abrir a janela de selecção de cores.Cor de 1º plano definida como:1º Plano: %d, %d, %dSelecção LivreMão LivreSelecção MágicaGIMPExtensão do GIMPMensagem do GIMPAjuste do Desempenho GIMPPlug-In do GIMPArranque do GIMPEditor Texto GIMPDica do Dia GIMPInstalação Utilizador do GIMPGIMP incapaz de inicializar o interface de utilizador. -Certifique-se de que existe uma instalação adequada ao seu ambiente.O GIMP não está correctamente instalado para o utilizador actual. -Instalação de utilizador foi ignorada pois a opção '--no-interface' foi utilizada. -Para efectuar instalação de utilizador, execute o GIMP sem a opção '--no-interface'.O Gimp utiliza uma quantidade limitada de memória para armazenar dados de imagem, a chamada "Cache de Blocos". Deve ajustar o seu tamanho para que caiba em memória. Considere a memória utilizada por outros processos em execução.O GIMP utiliza um ficheiro gtkrc adicional para que possa configurá-lo para ter uma aparência diferente das outras aplicações GTK.Versão do GIMPGIMP avisará o utilizador se uma tentativa for efectuada para criar uma imagem que utilizaria mais memória que o tamanho aqui especificado.GamaGeralNormalmente apenas uma preocupação de ecrãs 8-bit, define o número mínimo de cores de sistema alocadas para o GIMP.Obter Resolução do MonitorGigantescoProcedimentos GimprcEditor de GradientesMenu de Editor de GradientesDirectório GradientesCor Ponto Final Esquerdo do Segmento GradienteCor Ponto Final Direito do Segmento GradienteGradiente UIGradiente:GradientesMenu GradientesCinzaEscalas de CinzaVerdeVerde:GrelhaCrescer CanalSelecção de CrescimentoCrescer selecção porGuiaAnexação de Guia e GrelhaProcedimentos de guiaMSVHSV (%0.3f, %0.3f, %0.3f)Posição de manuseio: %0.6fResistênciaResistência:AlturaAltura:Navegador AjudaSistema de AjudaProcedimentos de ajudaHex:Tons ClarosDicas alteram o rebordo das fontes para produzir uma imagem clara em tamanhos pequenosHistogramaEscala HistogramaHistóricoHorizontalDeslocamento horizontal da primeira linha da grelha; poderá ser um número negativo.Espaçamento horizontal da linhas de grelha.Quantos nomes de ficheiros recentemente abertos manter no menu Ficheiro.MatizSaturação de MatizSaturação-Matiz apenas opera sobre camadas em cor RGB.Matiz:EnormeI_magemI_ntervalo:ÃconeSe disponíveis, dicas da fonte são utilizadas mas poderá preferir utilizar sempre as dicas automáticasNome de variável ilegal no ficheiro de ambiente %s: %sImagemInformação ImagemMenu ImagemTamanho da ImagemFormato Barra Estados ImagemModelos ImagemTítulo Imagem & Formato Barra EstadosFormato Título ImagemAparência Janela de ImagemJanelas de ImagensMáscara da imagemA resolução da imagem está fora dos limites, a utilizar a resolução por omissão.ImagensMenu de ImagensOpções ImportaçãoImportar PaletaImportar CaminhosImportar Caminhos de SVGImportar uma Nova PaletaCaminho ImportadoIn_verter MáscaraIncrementalIndentar:Indentação da primeira linhaÃndice:IndexadoCor IndexadaConversão de Cor IndexadaJanela InformaçãoInicializar Camada da Máscara para:A Inicializar Plug-insA inicializar plug-in: '%s' -TintaDispositivos de Entrada:Níveis EntradaInserir ÂncoraInstalação falhou. Contacte o seu administrador de sistemas.Instalação com sucesso. Prima "Continuar" para prosseguir.Actualização instantâneaInterfaceProcedimento interno do GIMPProcedimentos InternosInterpolação:Interceptar com a selecção actualIntersecções (miras)Intersecções (pontos)UTF-8 inválidoDados UTF-8 inválidos no ficheiro '%s'.Expressão UTF-8 inválida no ficheiro XCFExpressão UTF-8 inválida no ficheiro de pincel '%s'.Expressão UTF-8 inválida no ficheiro de gradiente '%s'.Expressão UTF-8 inválida no ficheiro de paleta '%s'Expressão UTF-8 inválida no ficheiro de padrão '%s'.Sequência de caracteres inválida no URILargura ou altura inválida(s). Ambas têm de ser positivas.InverterInverter CanalInverter SelecçãoInversão não opera sobre camadas indexadas.Justificar:Os atalhos de teclado podem ser redefinidos dinamicamente no GIMP. O menurc é um depósito de sua configuração, para que possa ser recordada na sessão seguinte. Caso deseje, poderá editar este ficheiro, mas é muito mais fácil definir as teclas dentro do GIMP. Se remover este ficheiro recuperará os atalhos de teclado por omissão.Atalhos TecladoPaisagemGrandeGrande (256x256)Antevisões GrandesÚltimo Erro:CamadaCamada "%s" não tem alfa. Camada foi colocada por cima.Atributos CamadaTipo Preenchimento Camada:Máscara de Camada para SelecçãoSeleccionar Camada_Nome Camada:A camada não pode ser mais descida.A camada não pode ser mais elevada.A camada já está no fundo.A camada já está no topo.Camada para Tamanho de ImagemCamadasMenu CamadasOpções de Mescla de CamadasCor Ponto Final EsquerdoComprimento:Deixar o GIMP tentar restaurar a sua última sessão gravada a cada arranque.NíveisNíveis para camadas indexadas não podem ser ajustados.Linha_Estilo Linha:Estilo de linha utilizado para a grelha.LinearCarregarCarregar CurvasCarregar NíveisA carregar antevisão...Localização:LogarítmicoA procurar ficheiros de dadosBaixar CanalBaixar Canal ao FundoBaixar CamadaBaixar Camada ao FundoBaixar CaminhoBaixar Caminho para FundoMagentaMagenta:AmpliarGerir Módulos CarregáveisOpacidade da Máscara:Matriz:Profundidade Máx:Diferença máxima de corMédia:MedidaMedir Distâncias e ÂngulosMedir distâncias e ângulosMediana:MédioMesclar AbaixoJuntar CamadasMisturar PaletaMesclar Camadas VisíveisJuntar Caminhos VisíveisProcedimentos de mensagemMensagem repetida %d vezes.Mensagem repetida uma vez.Tons MédiosDiversosReduzirModoModo:Modificar Cor SeleccionadaModificar Níveis Cores Ãrea SeleccionadaModificar todas as coresAlterar espaçamento linhasDirectório MóduloGestor de MódulosMódulosMoverMover ÂncorasMover CanalMover GuiaMover CamadaMover Máscara de CamadaMover CaminhoMover SelecçãoMove camadas & selecçõesMover abaixo o filtro seleccionadoMover acima o filtro seleccionadoMover: MultiplicarNavegaçãoNovo CanalNova Cor de CanalNovas Opções de CanaisNova imagemNova CamadaNovo CaminhoNovas Opções de CaminhoNovo ModeloNão há pincéis disponíveis para utilizar com esta ferramenta.Nunca mais disponívelNenhum caminho encontrado em '%s'Nenhum caminho encontrado no bufferNão há texturas disponíveis para esta operação.Nenhuma selecção para ser aclarada.NenhumNenhum (Mais Rápido)NormalNormal (128x128)Não é um ficheiro regularNão há camadas visíveis suficientes para serem combinadas. Devem existir pelo menos duas.Não há caminhos visíveis suficientes para serem combinados. Devem existir pelo menos dois.DeslocamentoCanal DeslocamentoDeslocamento DesenhávelCamada de DeslocamentoMáscara de Camada de DeslocamentoDeslocamento:No discoEm máquinas multi-processador, se o GIMP tiver sido compilado com --enable-mp define quantos processadores o GIMP deverá utilizar simultaneamente.Somente em memóriaOpacidadeOpacidade:Abrir ImagemAbrir Ficheiro Texto (UTF-8)Abrir o diálogo de selecção pinceisAbrir o diálogo de selecção de fontesAbrir o diálogo de selecção de gradientesAbrir o diálogo de selecção de padrõesFalha ao abrir '%s': - -%sFalha ao abrir '%s': %sOpções: -Origem X:Largura Original:Outro (%s) ...Níveis SaídaSobreporErro na chamada PDB para o procedimento '%s': -Tipo incorrecto de argumento nº%d (esperado %s, obtido %s)Erro de chamada PDB: -procedimento '%s' não encontradoabcdefghijkl -mnopqrstuvwxyz.PintarOpções de Pintura Partilhadas Entre FerramentasProcedimentos de Ferramentas PinturaFerramenta Pintura:Pinta com traços fracosPintar píxels de margens vincadasPintar utilizando Texturas ou Regiões de ImagensPincelPaletaEditor PaletaMenu de Editor de PaletaDirectório PaletasPaleta UI_Nome Paleta:PaletasMenu PaletasProcedimentos de info anexaInformações AnexasA parsear '%s' -ColarCamada coladaCaminhoAtributos CaminhoCaminho não pode ser mais descidoCaminho não pode ser mais elevado.Caminho para SelecçãoCaminhosMenu CaminhosPadrãoDirectório TexturasUI PadrãoTexturasMenu TexturasLápisPercentagem da largura do pincelPercentil:Pasta Pessoal do GIMPPerspectivaInformação de Transformação de PerspectivaPerspectiva...Seleccionar Modo %sSelecciona cores da imagemPixelsPixels:Aguarde que a sua pasta pessoal do GIMP seja criada...Por favor aguarde...Plug-InAmbiente Plug-InDirectório Plug-InsPlug-in não conseguiu abrir imagemPlug-in não conseguiu gravar imagemPlug-In crashou: "%s" -(%s) - -O Plug-In morto poderá ter baralhado o estado interno do GIMP. Por segurança, poderá querer gravar as suas imagens e reiniciar o GIMP.Plug-In devolveu SUCESSO mas não devolveu uma imagemPlug-InsPlug-inOs plug-ins e suas extensões são aplicações externas executadas pelo GIMP que podem disponibilizar funcionalidades adicionais. Estas aplicações são procuradas durante a execução e as informações sobre as suas funcionalidades e modos são guardadas neste ficheiro. Este ficheiro deve ser lido somente pelo GIMP e não deve ser editado.PoligonalRetratoPosição: %0.6fPosterizarPosterização (Reduzir Número de Cores)A posterização não opera em camadas indexadas.PreferênciasPressão:AntevisãoAntevisão está desactualizadaAntevisõesProblemas ao parsear o anexo de texto para a camada '%s': -%s - -Algumas propriedades de texto poderão estar incorrectas. Excepto se desejar editar a camada de texto, não necessitará de se preocupar com isto.Base de Dados ProcessualBase de dados processualProgressoPseudo CorPropósito:QuestionarA consultar novos Plug-insA consultar plug-in: '%s' -Máscara RápidaRGBRGB (%d, %d, %d)Cor RGBRGB-vazioRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Mostrar Novam_ente "%s"RadialRaio:Elevar CanalElevar Canal ao TopoElevar CamadaElevar Camada ao TopoElevar CaminhoElevar Caminho para TopoElevar a apresentação desta imagemTaxaTaxa:Mostrar Novamente Último_Centralizar Novamente Pontos Médios da Selecção_Centrar Novamente Ponto Médio do SegmentoRedistribuir Pontos de Man_useio no SegmentoRedistribuir Pontos de Man_useio na SelecçãoRe_petir "%s"A carregar ficheiro de paleta '%s': Falta componente VERDE na linha %d.A carregar paleta '%s': Número de colunas inválido na linha %d. A utilizar valor por omissão.A carregar ficheiro de paleta '%s': Falta componente AZUL na linha %d.A carregar ficheiro de paleta '%s': Falta componente VERMELHO na linha %d.A carregar ficheiro de paleta '%s': Valor RGB fora dos limites na linha %d.Selecção RectangularVermelhoVermelho:RefazerReduzir a imagem a um número fixo de coresReduzir imagem a duas cores utilizando um limiteRegistadoReler Tema Act_ualRecordar a ferramenta, padrão, cor e pincel actuais entre sessões GIMP.Imagem remotaRemover CanalRemover GuiaRemover CamadaRemover Informações Anexas da ImagemRemover Informações Anexas do ItemRemover CaminhoRemover o filtro seleccionado da lista de filtros activos.Renomear CanalRenomear CamadaRenomear CaminhoRenomear Opções de Ferramentas GravadasRenderizar PinceladaReordenar CanalReordenar CamadaRepetir ÚltimoRepetir:Substituir a selecção actualReplicarReplicar Segmento GradienteReplicar Selecção GradienteReplicar SegmentoReplicar SelecçãoRepor Opções de FerramentasRepor o filtro seleccionado nos valores por omissãoRedimensionarRedimensionar CanalRedimensionar ImagemRedimensionar CamadaRedimensionar CaminhoA Redimensionar...Resolução:Consumo de RecursosConfiguração de recursosRepor opções de...Repor atalhos de teclado gravados ao iniciar o GIMP.ReverterReverterReverter ImagemReversão falhou. Não existe ficheiro associado a esta imagem.Reversão para '%s' falhou: - -%sCor Ponto Final DireitoRodarRodar CanalRodar CamadaRodar CaminhoRodar Camada TextoRoda a camada ou selecçãoA Rodar...Informação de RotaçãoArredondadoSat.:SaturaçãoGravarGravar '%s' como POV-RayGravar CurvasGravar Log de Erro em FicheiroGravar ImagemGravar NíveisGravar Opções de FerramentasGravar uma Cópia da ImagemGravar atalhos de teclado alterados ao sair do GIMP.Gravar definições curvas para o discoGravar estado do dispositivoGravar definições de níveis para ficheiroGravar opções para...Gravar as posições e tamanhos dos diálogos principais ao sair do GIMP.Opções GravadasA gravar '%s' -Gravação de '%s' falhou: - -%sDimensionarEscalar CanalDimensionar ImagemCamada de EscalaEscalar CaminhoEscalar a camada ou selecçãoEscalaA dimensionar...TesouraEcrãPastas Script-FuScriptsSeleccionar TudoSeleccionar Directório de PincéisSeleccionar Por CorSeleccionar CorSeleccionar Pastas AmbienteSeleccionar Directório de FontesSeleccionar Directório de GradientesSeleccionar Directório de MódulosNão Seleccionar NadaSeleccionar Directório de PaletasSeleccionar Directório de TexturasSeleccionar Directório de Plug-InsSeleccionar Cor Primária a ModificarSeleccionar Ãrea a ModificarSeleccionar Pastas Script-FuSeleccionar OrigemSeleccionar TemaSeleccionar Directório TemasSeleccionar Rácio EscalaSeleccionar por CorSeleccionar regiões adjuntasSelecciona regiões elípticasSeleccionar regiões manualmenteSelecciona regiões rectangularesSeleccionas regiões por corSeleccionar formas a partir da imagemSeleccione o número de vezes -que deseja replicar o segmento seleccionado.Seleccione o número de vezes -a replicar a selecção.Seleccione o número de partes uniformes -nas quais dividir os segmentos na selecção.Seleccione o número de partes uniformes -nas quais dividir o segmento seleccionado.SelecçãoEditor SelecçõesMáscara de SelecçãoProcedimentos de Ferramentas SelecçãoSelecção: Selecção: ADICIONARSelecção: INTERSECTARSelecção: SUBSTITUIRSelecção: SUBTRAIRSensibilidadeDefinir Cor de Espaçamento TelaDefinir Cor de CanalDefinir Opacidade CanalAjustar Tamanho de TelaDefinir Item Exclusivamente LigadoDefinir Item Exclusivamente VisívelAjustar Tamanho Limite CamadaSeleccionar Nome do _TextoDefine um limite superior à memória que é utilizada por imagem para manter operações na pilha de desfazer. Independentemente desta definição, poderão ser desfeitos pelo menos tantos níveis de desfazer quantos os configurados.Define o browser utilizado pelo sistema de ajuda.Define a cor de enchimento da tela utilizado se o modo de enchimento estiver definido para cor personalizada.Define o browser web externo a ser utilizado. Pode ser um caminho absoluto ou o nome de um executável a procurar na PATH do utilizador. Se o comando contiver '%s' será substituido pelo URL, caso contrário o URL será acrescentado ao comando com um espaço a separar ambos.Define o nível de interpolação utilizado para escalar w outras transformações.Define a forma como a transparência é apresentada nas imagens.Define o número mínimo de operações que podem ser desfeitas. Mais níveis de regressão são mantidos disponíveus até que o limite de desfazer seja atingido.Defino o modo do cursor que o GIMP irá utilizar.Define o tamanho da axadrezado utilizado para demonstrar transparência.Define o tamanho da antevisão de navegação disponível no canto inferior direito da janela de imagem.Define o tamanho da antevisão no Histórico de Desfazer.Define a localização do ficheiro de swap. O GIMP utiliza um esquema de alocação de memória baseada em blocos. O ficheiro de swap é utilizado para rapidamente trocar blocos de e para o disco. Tenha em atenção que o ficheiro de swap pode ficar muito grande se o GIMP for utilizado com imagens muito grandes. O funcionamento pode também ficar horrivelmente lento se o ficheiro de swap for criado num directório montado sobre NFS. Por estes motivos, poderá ser desejável colocar o ficheiro de swap em "/tmp".Define o directório de armazenamento temporário. Irão aqui surgir ficheiros durante a execução do GIMP. A maioria dos ficheiros desaparecerá quando o GIMP terminar mas alguns poderão permanecer, pelo que poderá ser melhor que este directório não seja partilhado por outros utilizadores.Define o texto a surgir na barra de estados da janela de imagem.Define o texto a surgir no título das janelas de imagem.Define se o GIMP deverá ou não criar antevisões das camadas e canais. Antevisões no diálogo de camadas e canais são úteis mas podem demorar o funcionamento ao trabalhar com imagens grandes.SombrasFormaForma:RealçarCanal RealceRealçar SelecçãoCortarCorta a camada ou selecçãoInformações de CorteA Cortar...Mostrar Barra de Es_tadoMostrar _Barras RolamentoMostrar _GuiasMostrar _Limite de CamadaMostrar Barra _MenusMostrar utilização de memóriaMostrar dica na próxima inicialização do GIMPMostrar percentagem de zoomMostrar taxa de zoomEncolher CanalSelecção de EncolhimentoEncolher a imagem a partir do limiteEncolher selecção porTamanhoTamanho:A ignorar '%s': versão de protocolo GIMP incorrecta.Pequeno/Reler todas AntevisõesUniformeSuavizar margensEsborratarEsborratar imagemSólidoFonteEspaçamentoEspaçamento:Ficheiro EspecialEspecifica como deverá ser desenhada a área à volta da imagem.Velocidade das formigas marchantes na selecção de contorno. Este valor está em milisegundos (menos tempo significa marcha mais rápida).Velocidade:DividirDividir Segmento Gradiente UniformementeDividir Segmentos Gradiente UniformementeDividir Segmento UniformementeDividir Segmento _Uniformemente...Dividir Segmento no Ponto _MédioDividir Segmentos UniformementeDividir Segmentos _Uniformemente...Dividir Segmentos nos Pontos _MédiosQuadradoPadrãoA Inicializar ExtensõesA inicializar extensão: '%s' -Estado:Cor EstáticaCinza EstáticoDesvio Padrão:FurosPincelar CanalCaminho AclararAclarar SelecçãoSubtracçãoRemover da selecção actualSuper-AmostragemModelosMenu de ModelosProcedimento TemporárioTextoCor TextoCamada TextoProcedimentos de textoO GIMPO pincel activo. -Clique para abrir o Diálogo de Pincéis.O gradiente activo. -Clique para abrir o Diálogo de Gradientes.A textura activa. -Clique para abrir o Diálogo de Texturas.A cor de fundo da grelha; apenas utilizada no estilo de linha duplo tracejado.O ficheiro '%s' não pode ser convertido num URI válido: - -%sA cor de 1º plano para a grelha.O gimprc é utilizado para armazenar preferências que afectam o comportamento por omissão do GIMP. Os caminhos onde procurar pincéis, paletas, gradientes, texturas, plug-ins e módulos podem também ser configurados aqui.A camada que seleccionou é uma camada de texto mas foi alterada utilizando outras ferramentas. Editar a camada com a ferramenta de texto irá descartar estas alterações. - -Pode editar a camada ou criar uma nova camada de texto a partir dos seus atributos de texto.O sessionrc é usado para armazenar as janelas de diálogo abertas da última vez que o GIMP foi finalizado. Pode configurar o GIMP para abrir estes diálogos novamente na posição gravada.A cache de blocos é utilizada para garantir que o GIMP não destroi blocos entre a memória e o disco. Definir este valor alto fará com que o GIMP utilize menos espaço de swap, mas também que utilize mais memória. Do mesmo modo, uma cache menor fará o GIMP utilizar mais espaço de swap e menos memória.A unidade utilizada para apresentar coordenadas quando não se está em modo ponto-por-ponto.O unitrc é utilizado para armazenar a base de dados de unidades dos utilizadores. Pode definir unidades adicionais e utiliza-las da mesma forma que utiliza medidas internas como polegadas, milímetros, pontos e picas. Este ficheiro é sobreposto de cada vez que sair do GIMP.A resolução vertical da imagem.A dica de tipo de janela que é definida em janelas de anexar. Poderá afectar a forma como o gestor de janelas decora e gere janelas anexáveis.A dica de tipo de janela que é definida para a caixa de ferramentas. Poderá afectar a forma como o gestor de janelas decora e gere a janela de caixa de ferramentas.TemaDirectório TemasTemasNão há camadas visíveis suficientes para serem combinadas.Existe sempre uma troca entre utilização de memória e velocidade. Na maioria dos casos, o GIMP opta por velocidade à custa de memória. No entanto, se a memória for um grande problema, tente activar esta opção.Não existe nenhuma camada ou canal activo de onde copiar.Não existe nenhuma camada ou canal activo de onde cortar.Não existe nenhuma camada ou canal activo para aclararNão existe nenhuma camada ou canal activo para aclarar.Deveria existir um ficheiro chamado '%s'. Verifique a sua instalação.Ocorreu um erro ao parsear o seu ficheiro '%s'. Serão utilizados valores por omissão. Foi criada uma cópia de segurança da sua configuração em '%s'.Este ficheiro armazena uma colecção de media de tamanhos padrão que servem como modelos de imagens.Nesta pasta são procurados modelos de imagens.Nesta pasta são procurados temas instalados pelo utilizador.Esta pasta é utilizada para armazenar fontes que apenas deseja visíveis no GIMP. O GIMP verifica esta pasta além das fontes padrão instaladas no sistema, ao procurar texturas. Utilize isto apenas se desejar mesmo ter fontes apenas para o GIMP, caso contrário coloque-as no seu directório de fontes.Esta pasta é utilizada para armazenar ficheiros de parâmetros para a ferramenta Curvas.Esta pasta é utilizada para armazenar ficheiros de parâmetros para a ferramenta Níveis.Esta pasta é utilizada para armazenar opções de ferramentas.Esta pasta é utilizada para armazenar scripts criados e instalados pelo utilizador. O GIMP verifica esta pasta além dos scripts padrão pré-instalados com o sistema, ao procurar scripts.Esta pasta é utilizada para armazenar módulos DLL temporários ou não suportados pelo sistema que foram criados pelo utilizador. O GIMP verifica esta pasta além dos módulos padrão pré-instalados com o sistema, ao procurar módulos para carregar durante a inicialização.Esta pasta é utilizada para armazenar plug-ins temporários, não suportados pelo sistema ou que foram criados pelo utilizador. O GIMP verifica esta pasta além dos plug-ins padrão pré-instalados com o sistema, ao procurar ficheiros de alteração de ambiente de plug-ins.Esta pasta é utilizada para armazenar plug-ins temporários ou não suportados pelo sistema que foram criados pelo utilizador. O GIMP verifica esta pasta além dos plug-ins padrão pré-instalados com o sistema, ao procurar plug-ins.Esta pasta é utilizada para armazenar pincéis criados pelos utilizadores. O GIMP verifica esta pasta além dos pincéis padrão do sistema, ao pesquisar por pincéis.Esta pasta é utilizada para armazenar gradientes definidos pelo utilizador. O GIMP verifica esta pasta além dos gradientes padrão pré-instalados com o GIMP, ao procurar gradientes.Esta pasta é utilizada para armazenar paletas definidas pelo utilizador. O GIMP verifica esta pasta além das paletes padrão pré-instaladas com o sistema, ao procurar paletes.Esta pasta é utilizada para armazenar texturas definidas pelo utilizador. O GIMP verifica esta pasta além das texturas padrão pré-instaladas com o sistema, ao procurar texturas.Esta pasta é utilizada para armazenar buffers de desfazer para reduzir o consumo de memória. Se o GIMP for terminado abruptamente, ficheiros com o formato: gimp<#>.<#> poderão persistir nesta pasta. Estes ficheiros são inúteis para o GIMP e podem ser removidos sem preocupações.Esta pasta irá conter vários ficheiros importantes. Clique num dos ficheiros ou pastas na árvore para obter mais informações sobre o item seleccionado.Esta é a distância em pixels na qual são activadas as anexações de Guia e Grelha.Esta aplicação é distribuída com o intuito de ser útil, mas NÃO CONTÉM QUALQUER GARANTIA, nem mesmo a garantia implícita de ser COMERCIALIZÃVEL ou ADEQUADA A UM DETERMINADO FIM. Veja a Licença Pública GNU para mais detalhes.Esta aplicação é livre; pode ser redistribuída e/ou modificada sob os termos da Licença Pública Geral GNU tal como publicada pela Free Software Foundation; na sua versão 2 ou (a seu critério) em qualquer versão posterior.Este campo de entrada de texto está limitado a %d caracteres.Esta ferramenta não tem opções.LimiteIntervalos não operam sobre camadas indexadas.Intervalo:Imagem de Referência %d de %dInclinação:MinúsculoTítulo & EstadosOpções de FerramentasMenu de Opções de FerramentasAlternar Ferramenta %sMenu Caixa de FerramentasFerramentasTransferir Alfa para MáscaraTransformarCanal TransformaçãoDirecção de TransformaçãoCamada TransformaçãoTransformar CaminhoProcedimentos de Ferramentas TransformaçãoTransformaçãoA Transformar...Traduzido porTransparênciaCor RealTipoTipo %sImpossível adicionar máscara de camada pois a camada já possui uma.Incapaz de cortar ou copiar pois a região seleccionada está vazia.Incapaz de abrir um ficheiro swap de teste. Para evitar a perca de dados verifique a localização e permissões do directório de swap definido nas suas Preferências (actualmente "%s").IndefinidoDesfazerHistórico DesfazerUnidadesDesconhecidoTipo de ficheiro desconhecidoDescarregarSem nomeSem títuloUtilizar todas as camadas visíveis ao encolher a selecçãoRegisto de Instalação UtilizadorInterface UtilizadorValorValor:Versão %s trazida até si porVersão:VerticalDeslocamento vertical da primeira linha da grelha; poderá ser um número negativo.Espaçamento vertical de linhas de grelha.Browser WebQuando activo o diálogo segue automaticamente a imagem em que está a trabalhar.Quando activo, todas as ferramentas de pintura irão apresentar uma antevisão do contorno do pincel actual.Quando activo, uma imagem torna-se a imagem activa quando a sua janela de imagem recebe o foco. Isto é útil para gestores de janelas que utilizem "clique para foco".Quando activo, menus podem ser destacados.Quando activo, primir F1 abrirá o navegador de ajuda.Quando activo, o GIMP não grvará uma imagem se esta estiver inalterada desde a sua abertura.Quando activo, o GIMP utilizará uma janela de info diferente por vista de imagem.Quando activo, o servidor X é questionado quanto à posição actual do rato a cada evento de movimento, em vez de se confiar na dica de posição actual. Significa que pintar com pinceis maiores terá mais precisão, mas poderá ser mais lento. Perversamente, nalguns servidores X activar esta opção resulta em pinturas mais rápidas.Quando activo, a grelha é visível por omissão. Pode também ser alternado com o comando "Ver->Mostrar Grelha".Quando activo, as guias são visíveis por omissão. Pode também ser alternado com o comando "Ver->Mostrar Guias".Quando activo, a janela de imagem irá automaticamente redimensionar-se sempre que a aumentar ou diminuir zoom de imagens.Quando activo, a janela de imagem irá automaticamente redimensionar-se sempre que o tamanho físico da imagem seja alterado.Quando activo, o limite de camada é visível por omissão. Pode também ser alternado com o comando "Ver->Mostrar Limite de Camada".Quando activo, torna a barra de menu visível por omissão. Pode também ser alternado com o comando "Ver->Mostrar Barra Menu".Quando activo, torna as réguas visíveis por omissão. Pode também ser alternado com o comando "Ver->Mostrar Réguas".Quando activo, torna as barras de rolamento visíveis por omissão. Pode também ser alternado com o comando "Ver->Mostrar Barras Rolamento".Quando activo, o pincel seleccionado será utilizado para todas as ferramentas.Quando activo, o gradiente seleccionado será utilizado para todas as ferramentas.Quando activo, o padrão seleccionado será utilizado para todas as ferramentas.Quando activo, a selecção é visível por omissão. Pode também ser alternado com o comando "Ver->Mostrar Selecção".Quando activo, torna a barra de estados visível por omissão. Pode também ser alternado com o comando "Ver->Mostrar Barra Estados".Quando activo, irá assegurar-se de que cada pixel de uma imagem é mapeado para um pixel no ecrã.Quando activo, certifica-se de que a imagem completa é visível após um ficheiro ser aberto, caso contrário será mostrado com uma escala 1:1.Quando activo, pode alterar atalhos de teclado de itens de menu através da pressão de uma combinação de teclas quando um item de menu está realçado.BrancoLarguraLargura:Gestão de JanelasPosições da JanelaA escrever '%s' -Erro XCF: encontrada versão de ficheiro XCF %d não suportadaAviso XCF: versão 0 do formato de ficheiro XCF -não guardou correctamente mapas de cores indexadas. -A substituir mapa de tons de cinza.AmareloAmarelo:Pode largar diálogos anexáveis aqui.Deverá ter recebido uma cópia da Licença Pública GNU com esta aplicação. Caso contrário escreva para a Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Terá de reinicializar o GIMP para que as seguintes alterações tenham efeito:Comportamento Zoom & RedimensionarZoom 1:1Zoom GeralAum ZoomDim ZoomRácio de EscalaRácio de Escala:Factor de zoom: %d:1Aum ZoomAum & Dim ZoomDim ZoomZoom:[ Imagem Base ]_Antialiasing_AutomáticoA_Z_Função de Mistura para SegmentoFunção de _Mistura para a Selecção_Brilho:P_incel_C_Remover Segmento_Remover Selecção_Inverter Segmento_Inverter SelecçãoV_D_Gradiente_Horizontal:_Matiz:Ãc_one:_Importar_Luminosidade:_M_Manualmente_Nome:_Padrão_Antevisão_V_Refazer_Refazer %s_Replicar Segmento..._Replicar Selecção..._Saturação:_Selecção_Desfazer_Desfazer %s_Vertical:_X:_A_Y:_Zoom (%s)corescopiardpiesperado 'sim' ou 'não' para token boleano %s, obtido '%s'erro fatal de parseamentoescala de cinzaescala de cinza vaziapolegadapolegadasindexadoíndice vazioexpressão UTF-8 inválidavalor '%ld' inválido para o token %svalor '%s' inválido para o token %smilímetromilímetrosn/apercentagempicapicaspixelpixelspixels/%apixels/%spontopontostips-locale:ptDuarte Loretovalor para o token %s não é uma expressão UTF-8 válidaao parsear token '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/ro.gmo gimp-2.2.9/po/ro.gmo --- gimp-2.2.8/po/ro.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.9/po/ro.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,84 +0,0 @@ -Þ•UÄ -Él&‘9¸Nò@A2‚PµO9V-9¾;ø74l{ƒ0‹¼ Å ÑÞ*â - ! ) 3 9 @ G -T _ g -l w Ž • " À Ì Ñ × Ü í !!!! .F.O.e.k.ˆ.‘.š. .¦.­.6¾.õ.ü./ /// /'/7/8E8N8-j8 ˜8 ¢8®8 ´8Á8Æ8Ì8 Ý8 é8õ899 -9#949 <9F9a9{9›9¶9Ð90è9:#: C:M:V:p:Š:£:³:É:%Ü:; -;"; 8; -F;Q;l; ;Ž;£;¿;Ñ;!Ù;û; <(#< L< -V<a<e<x<~<…<™<¯< ¸< Â< Î<Û<ú< = = +=5=>= O=[=c=w=†= •=¡=¨=°=Â=#ß=> >'>@> R>^>c>i>{>Š>‘>˜>¡>±> -Á>Ì>ä>õ>ü> ??*?1?8?>?N?V?Z?_?f?"y? œ? ¨? ´?¾?Ù? ô? @ - @F@>^@@£@ª@²@ »@ -Å@Ð@ -Ù@ä@ó@ AAA#A 5A -?A JAXAmA$tA™A0 AÑAáA úABB&B8B HB TB^BmBˆB¢BªB¹B¿B ÃBÏB!×BùBCC C C C,C 5C?C NCZCsC‡CC —C¡C½C ÆCÐCàCðCDD&D9DKD SD]D cDmD €DŒDŸD¹DÑD âD(ðDEE&E -/E):EdE€EšE -±E ¼EÈEÌEÕE -ÜEçE ðEüEF FF -$F/FCFLFbFGgF1¯FáFõF -ûFG G#G2GFG JGTG]G sG -}G ˆG ’G³G&»G âGìGõGùG H H> H_HfH -mHxHH ‡H “H¡H³H¸H¿H ÇH ÓH ÝHçHïHôH úH II#I)IütNb8Èûýð°7•-¸­0â·É:¿lK,šñú7TIFu"¾èªäC. XT Pw&…8ë“cqÌL]5Û jk -2Ö4ƒË|p¤H?WUMx.ì¬2 1GP™´'ZR Q6»S©Bnõd(²€µgU)Þ$ÁÚÐO#a‡Ù!9^N;i9Ø\I(ϼ³V½ #6ÝC†Ä¯J–ÿe‘÷:Î_ ô%vKm¨E„øźÓMêAùÍ[<,;~í¦/&À/‰×Œ4*ÔŠÊLDÕ%á‹ ” £oåöÂòþ+±œÇ«sÜŽS—R -ã¹rYQ3`ˆ*-D=ÞŸ{}hF ˜"›ó+’Ñ>Æ5301<àzï E)AÒ‚§éJ¢ç>G=y@'¥Bî$!¡@HO¶®?fæß -Usage: %s [option ... ] [file ... ] - - --display Use the designated X display. - --no-shm Do not use shared memory between GIMP and plugins. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d x %d pixels%s copy%s mask(This console window will close in ten seconds) -(Varies)<>AddAdd the current color to the color historyAdditionAdjustmentAlignedAlignmentAlphaAlpha:Angle:AntialiasingAppearanceAuthor:AutoBackgroundBackground: %d, %d, %dBehindBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBorder SelectionBrightness-ContrastBrush EditorBrush UIBrushesCalibrate Monitor ResolutionCan't undo %sCancelCenter X:ChannelChannelsClearClick "Continue" to accept the settings above.Click "Continue" to enter the GIMP user installation.Clipped to bottom layerClipped to imageColorColor BalanceColor PickerConfirm Image SizeContinueConvertCopyright:Count:CropCrop & ResizeCrop & Resize InformationCrop: Crosshair onlyCurvesCustomCyanDate:Device StatusDevicesDifferenceDirect ColorDisplayDissolveDistance:Distance: %0.6fDivideEditEdit Channel AttributesEdit Channel ColorEdit Layer AttributesEdit Palette ColorEdit Path AttributesEdit proceduresEnter a name for this bufferEnvironmentExpanded as necessaryExposure:ExtensionsFG to BG (HSV)FG to BG (RGB)FG to TransparentFeather SelectionFile OperationsFill Opacity:Finding Contiguous RegionsFloating selectionsForegroundForeground: %d, %d, %dGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Tip of the DayGIMP User InstallationGIMP versionGeneralGet Monitor ResolutionGimprc proceduresGradient EditorGradient UIGradient:GradientsGrayGrayscaleGreenGreen:Grow SelectionHandle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHistogramHorizontalHueHue-SaturationHugeImageImage WindowsImage maskImport PaletteIncrementalIndex:IndexedIndexed ColorIndexed Color ConversionInitialize Layer Mask to:Instant updateInterfaceInternal GIMP procedureInternal ProceduresInvertLargeLayerLayer Fill TypeLayer SelectLevelsLinearLoadLoad CurvesLoad LevelsLocation:Looking for data filesLower ChannelMagentaMask Opacity:Matrix:Max Depth:Mean:Median:MediumMerge PaletteMiscellaneousModeMode:ModulesMove ToolMove layers & selectionsMove: MultiplyNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNo brushes available for use with this tool.No patterns available for this operation.NoneNormalOffsetOffset:OpacityOpacity:OpenOptions: -Origin X:Original Width:OverlayPalettePalettesParasite proceduresParasitesPastePasted LayerPath to SelectionPathsPattern UIPatternsPerspective Transform InformationPerspective...Pick colors from the imagePixelsPixels:Please wait...Plug-InsPlug-inPreferencesPressure:PreviewProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:RGBRGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RadialRadius:RedRed:RedoRegisteredRepeat:ReplicateResizeResolution:Resource ConsumptionResource configurationRevertRotateRotating...Rotation InformationSaturationSaveSave CurvesSave ImageSave LevelsSave a Copy of the ImageScaleScale ImageScale LayerScalingScaling...ScreenSelectionSelection MaskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Layer Boundary SizeShadowsShapeShearShearing...Show tip next time GIMP startsShow zoom percentageShow zoom ratioShrink SelectionSizeSize:SmallSmoothSourceSpacing:Speed:SplitSquareStandardState:Static ColorStatic GrayStd Dev:SubtractTemporary ProcedureThe GIMPThere are not enough visible layers for a merge down.This tool has no options.ThresholdThreshold:TinyTool OptionsTransformTransparencyTrue ColorTypeUndefinedUndoUnitsUnloadUnnamedUntitledUser Installation LogValueVersion %s brought to you byVersion:VerticalWhiteWidthWidth:Window PositionsXCF error: unsupported XCF file version %d encounteredYellowZoom inZoom outcolorscopydpigrayscalegrayscale-emptyinchinchesindexedindexed-emptymillimetermillimeterspercentpicapicaspixelpixelspixels/%apointpointsProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2000-11-24 15:46+0100 -Last-Translator: Robert Claudiu Gheorghe -Language-Team: Română -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Utilizare: %s [opÅ£iune ... ] [fiÅŸier ... ] - - --display FoloseÅŸte terminalul grafic X Windows specificat. - --no-shm Nu folosi memorie partajată între GIMP ÅŸimodulele auxiliare(plugins). - --system-gimprc FoloseÅŸte fiÅŸierul sistem de configurare gimprc alternativ precizat. - --verbose Arată mesajele de întâmpinare. - -c, --console-messages AfiÅŸează atenÅ£ionările la consolă în loc de o fereastră de dialog. - -d, --no-data Nu încărca pensule, gradienÅ£i, palete, modele. - -g, --gimprc FoloseÅŸte un fiÅŸier de configurare gimprc alternativ. - -h, --help AfiÅŸează acest ecran cu mesaje de ajutor. - -i, --no-interface Se execută fără nici o interfaţă cu utilizatorul. - -s, --no-splash Nu arăta fereastra de întâmpinare. - -v, --version TipăreÅŸte informaÅ£ii despre versiune. -%d x %d puncte ecran%s copieremasca %s(Această fereastră de consola se va închide în zece secunde) -(Variabil)<>AdaugăAdaugă culoarea curentă la istoricul de culoriAdăugareReglareAliniatAliniereAlfaAlfa(transparenţă):Unghi:AntialiasingAspectAutor:AutomatFundalFundal: %d, %d, %dIn spateAmestec:Amestec: Invalid pentru imaginii indexateAmestec...AlbastruAlbastru:ClaritateSelecÅ£ie bordurăLuminozitate-ContrastModificator de pensuleInterfaţă utilizator pentru PensulePensuleCalibrare rezolutie monitorNu pot reface %sRenunţăCentru X:CanalCanaleCurăţăSelectează "Continuă" pentru a accepta parametri stabiliÅ£i de mai sus.SelectaÅ£i "Continuă" pentu a porni 'The GIMP user installation'.Decupat după stratul de la bazăDecupat după imagineCuloareBalanÅ£a de culoriSelector de culoriConfirmă dimensiunea imaginiiContinuăConversieCopyright:Numar:DecupareDecupare ÅŸi redimensionareInformatii despre decupare ÅŸi redimensionareDecupare:Numai cruceCurbePersonalizatBleuData:Stare dispozitivDispozitiveDiferenţăCuloare DirectăAfiÅŸareDizolvăDistanÅ£e:Distantă: %0.6fImparteModificăModifică atribute canalulModifică culoare canalulModificare caracteristici stratModifică paleta de culoriModifică atribute traseuProceduri de modificareIntroduceÅ£i un nume pentru acest memorie tamponMediuExpandează atât cât este necesarExpunere:ExtensiiPrim plan -> Fundal (HSV)Prim plan -> Fundal (RGB)Prim plan -> TransparentSelecÅ£ie panăOperaÅ£ii pe fiÅŸiereOpacitate umplere:Determinare limite(intindere) regiuniSelecÅ£ii plutitoarePrim Plan Prim plan: %d, %d, %dExtensie GIMPMesaj GIMPAjustare performanÅ£e GIMPModul inserabil GIMPPornire GIMPUna pe zi de la GIMPInstalare utilizator a GIMPVersiunea de GIMPGeneralDetermină rezoluÅ£ia monitoruluiProceduri gimprcEditorul de gradienÅ£iInterfaţă utilizator pentru GradienÅ£iGradient:GradienÅ£iGriScară de gri-uri VerdeVerde:MăreÅŸte selecÅ£iaPoziÅ£ie maner: %0.6fDuritateDuritate:ÃŽnălÅ£imeÃŽnălÅ£ime:AfiÅŸare informaÅ£ii de ajutorSistem de ajutorProceduri de ajutorHistogramăOrizontalNuanţăNuanÅ£a-SaturareFoarte mareImagineFerestre cu imaginiMască imagineImport PaletăIncrementalIndex:IndexatCuloare indexatăConversie la culori indexateIniÅ£ializează masca stratului cu:Actualizare instantaneeInterfaţăProcedură internă GIMPProceduri interneInverseazăMareStratTip umplere stratSelectie StratNiveleLinearIncarcăÎncarcă curbeIncarcă niveleAmplasare:Caut fiÅŸierele de dateCoboară canalulVioletOpacitate mascăMatrice:Adâncimea maximă:Medie:Mediu:MediuCombină paletaDiverseModMod:ModuleUnealtă deplasareDeplasează straturi ÅŸi selecÅ£iiDeplasare: MultiplicăCanal nouCuloarea pentru noul canalOpÅ£iuni pentru noul canalImagine nouăStrat nouTraseu nouNu sunt disponibile pensule pentru a fi folosite cu această unealtă.Nu există nici un model disponibil pentru această operaÅ£ie.NimicNormalDecalajDecalaj:OpacitateOpacitate:DeschideOpÅ£iuni: -Originea pe X:Lăţimea originalăSuprapunerePaletăPaleteProceduri parazitParaziÅ£iInsereazăStrat inseratTraseul -> SelecÅ£ieTraseeInterfaţă utilizator pentru ModeleModeleInformaÅ£ii despre transformarea de perspectivăPerspectivă...Alege culori din imaginePuncte ecranPixeli:AÅŸteptaÅ£i vă rog...Module inserabileModul inserabilPreferinÅ£ePresiune:PrevizualizareBază de date proceduralăBaza de date proceduralăProgresPseudo CuloareScop:RGBCuloare RGBRGB-golRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RadialRază:RoÅŸuRoÅŸu:Re-RefacereInregistratRepetă:ReplicareRedimensionareRezoluÅ£ie:Consum de resurse sistemConfigurare resurseRefacereRotireRotesc...InformaÅ£ii despre rotaÅ£ieSaturareSalveazăSalvează curbeSalvare imagineSalvează niveleSalvează o copie a imaginiiScalareScalează imagineaScalează stratulScalareScalez...EcranSelecÅ£ieMasca de selecÅ£ieSelecÅ£ie: SelecÅ£ie: AdaugăSelecÅ£ie: IntersecteazăSelecÅ£ie: InlocuieÅŸteSelecÅ£ie: ScadeSensibilitateStabileÅŸte dimensiune exterioară stratUmbreFormăDecupareDecupez...Arată sugestii ÅŸi la urmatoarea pornireArată procentul de mărireArată factorul de scarăMicÅŸorează selecÅ£iaDimensiuneDimensiune:MicNetezireSursăSpaÅ£iere:Viteză:ImpărÅ£irePătratStandardStare:Culoare StaticaGri StaticDeviaÅ£ia standard:ScădereProcedură temporarăGIMPNu sunt suficiente straturi vizibile pentru a face o combinare în jos.Această unealtă nu are nici un fel de opÅ£iuni.Prag de declanÅŸarePrag:Foarte micOpÅ£iuni unelteTransformareTransparenţăCuloare adevăratăTipNedefinitRefacereUnităţi de măsurăDescarcăFară numeFara numeJurnalul de instalare utilizatorValoareVersiunea %s vă este adusă de cătreVersiune:VerticalAlbLăţimeLăţime:PoziÅ£ie fereastrăEroare XCF: am găsit versiunea de fiÅŸier XCF nesuportată %dGalbenMarireMicÅŸorareculoricopierepuncte/inchnivele de grinivele de gri-golinchinchesindexatindexat-golmilimetrumilimetriprocentpicapicaspunct ecranpuncte ecranpuncte ecran/%apunctpuncte \ No newline at end of file diff -uraN gimp-2.2.8/po/ru.gmo gimp-2.2.9/po/ru.gmo --- gimp-2.2.8/po/ru.gmo 2005-04-29 13:45:48.000000000 +0200 +++ gimp-2.2.9/po/ru.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,507 +0,0 @@ -Þ•^  Kƒ ü•È È&ÈkFÈG²È9úÈG4ÉA|ÉN¾Éi Ê<wÊk´Ê@ Ë2aË;”ËPÐËO!Ì2qÌ9¤Ì-ÞÌ9 Í;FÍ7‚Í ºÍÄÍ -ËÍ ÖÍ -àÍ -ëÍ öÍÎÎ -!Î,Î/Î?Î -WÎbÎjÎrΎΨξÎ0ÅÎöÎÏÏ#Ï+Ï -BÏMÏTÏ\ÏdÏ sÏ Ï Ï -›Ï -¦Ï ±Ï ¾ÏÊÏ ÚÏ æÏòÏ ÷Ï ÐKÐ…\Ð.âÐ1Ñ!CÑeÑwÑ~ÑєѰѿÑÖÑÚÑíÑ -ÿÑ -ÒÒ ,Ò -8ÒCÒXÒ kÒuÒ„Ò -Ò˜Ò§ÒºÒÒÒäÒöÒÓ*Ó6FÓ}ÓÓ­ÓÅÓÎÓëÓ -ÔÔ3ÔGÔfÔ{ÔÔ#£ÔÇÔáÔ -ýÔÕÕ!Õ3Õ<Õ\ÕpÕ xÕ ‚Õ Õ™Õ©Õ1¾Ö3ðÖ$×8×>×Q׋X× -ä×ï× ØØ9Ø@Ø OØ -\ØgØxØŠØšØA«ØJíØ8Ù<KÙ ˆÙ –٤ٴÙÍÙåÙõÙýÙÚ Ú(Ú>ÚQÚZÚqÚƒÚ ”Ú¢ÚºÚ -ÃÚÎÚßÚøÚÛ&%Û$LÛqÛxÛ ~Û ˆÛ–ÛÛ¶Û½ÛÃÛÝÛ"åÛ ÜÜÜÜ$Ü -4Ü?ÜNÜ_ÜsÜ7‡Ü¿Ü ÅÜ ÒÜàÜéÜðÜ øÜ ÝÝ Ý&Ý+Ý 0Ým=Ý«Ý °Ý ¾Ý ÌÝÖÝßÝ üÝ -ÞÞ !ÞC.Þ7rÞ=ªÞ@èÞ6)ßd`ßÅßãß3ùß-à<Aà#~à!¢àÄàáà ûàá á 'á1á:áRáhá€á˜áªá¼áÙáöáâ,*âWâqâyâ Œâšâ ºâ Ûâ!éâ ã&ã<ãQãfãoã xã †ã“ã§ã®ãµã »ãÉãÜã ëãøã.ä5=ä5sä7©ä8áä)å,Dåqåå¥å2Âå õåæ1æOMæAæ%ßæ&ç4,ç1aç#“ç ·çÅç áç íç÷çè è&è/è>èNè -]èhèpè vè„è šè§èÀèÒè0äè é !é.é 5é ?é LéYété‘é+šéÆéÙéìéõé êê ê&ê -.ê 9êCê$cêˆê›êªê¿ê Üêýêë5ëHëXë"mëë¦ë µëÃëÓë Üëèëðërì{ìŒì ”ì¡ì¼ìÕìõì -í"í";í^íwí€í -’í í«í -Êí)Õíÿí,îFî!`î#‚î#¦î!Êî%ìîï.1ï`ï gïsï„ï˜ï«ï¾ï#Ôï-øï&ð%<ðbðxðŽð©ð¾ðÖð Ûðéð -ñ -ñ -ñ$ñ<ñCñRñ Wñ eñrñ‚ñ’ñ¥ñ´ñÃñ ÊñØñ -ëñöñ-ýñ+ò 2ò?òOòfò jòtòyòòò£ò·òÈòÛòëòþòó &ó2ó Bó Nó \óiópóvó%|ó!¢ó ÄóÑóäó&üó#ô 7ôEôTôgô yô‡ô–ô ¦ô³ô ÂôÏô ßôìôþô õõ(õ@õ[õxõŠõ™õ -²õ -½õ-Èõ öõö ööö 'ö4ö -<ö GöTögözö“ö›ö®öÂö Õöãöýö ÷÷ ÷*÷1÷:O÷?Š÷8Ê÷ øøø*ø ;øEø -Tø_øeø -{ø †ø ”ø  ø -­ø ¸ø Äø -Îø Ùøåø îøûøù ù>,ù kùŒùœù®ùÁùÑùãùòùú$ú4ú DúQú `úmúrúŠúú¶úÊúàú ðúúú û"û=û Sû -aûlû -„ûû §ûµû ËûØû íûúû -ü%ü 4ü Bü -NüYü*jü•üžü!°üÒü.éüý4ý#=ý"aý„ý¡ý&Àýçý ýý þþ,&þ#Sþwþ~þ þ›þ®þ'Èþðþ' ÿ5ÿRÿhÿ„ÿFžÿTåÿ:A GTj }ž µ¿ -Ö áï -<K]o uŠ “Ÿµ(¾$ç 0=C61¸<ê?'Ag7©9ác09°Bê=-fk>ÒCJUg  $ 6DY^p € Š– ¨ µ ÃÑåü$8K^p‡—«Çâÿ  . I ` t ˆ  œ ª  -½  È Ö  Û  -è  ó ý  - -. - -? -J -f - n -z -Š - š -¨ -À -Ü -ø - (% N T [  c p x ~  -„ O ß  -ñ ”ü ‘ ¢ » Ò  -è  ó  ÿ    . O b u  -„    © ¶ »  Ê ×  ï  ü  .EuTÊÌÜÅ©co Ózà[ariÜõ '6?Od&u'œ ÄBÐ  ' 6 DP U_elq ƒŸ±·Ïàäþ0?H^ u -Š “¤¬ ± ¾Êåü  -1HHP -™ ¤®¾ -ÆHÑ!B<ƒ1’Ä×Ü áîõ -  % 1`=™žC81|0®ß å òÿ - -'>N_~‘ ©(· -à -ëHö -? J -Wb iu„ “ ¶Ë Ú çõú  #AH P^€w ø3Ie iw ‰ — ¤K²3þ62ix"Ž ±»Óç ö$%@ U c „(¥+Î)ú*$!Oq/ƒ³ºÉ*Ú  '3 [ k { „  -– ¡ ± Ç × é ø !!)!? I?#S?w?-Š? ¸?Ä?Ù? î?ø?@@ @ -)@ 4@¥@@æ@ú@A A$A-A5A;AQA -iA -tAA•A -¥A °A ºAÈAÌAæA ÷A B! B-B 1B?BSB bB oB|B—BžB ¦B´BÉB ßBëB -þB CC .CM\MqMMˆMŸMµM ÄM ÑMÝMïM NN .N:NONUN -\N -gNrN zN‡NœN «N¹N -¿NÊNÏN äNðN -OO2O OO[OmOˆO¤O ¿OËOÛOôOPP4-PbPP’P«PÈPÛPêP.QE3QyQ ŠQ ˜Q¥Q ½Q ËQÙQôQ úQ R R - R+R ŒOŒUŒZŒiŒorŒâŒèŒúŒ  &3E U cm† —¤ -ª<µ òŽ !3GWf{•¥´È×ñ 1 -ALQZ3q;¥;á¡‘¿‘FÆ’ ““ “ )“7“=“E“ W“x““‡““®“Γ3ç“#”?”W”j”z”””ª”¹”È”Δ Õ”á”þ”•F•W• -w• -‚•• ’•  • ®• »• È• Ö•!ä•!– (– 4–+@–Kl–0¸–Qé–˜;—¢Ô—$w˜5œ˜PÒ˜G#™-k™O™šjéšoT›eÄ›j*œ~•œpo…wõ<mž?ªž>êžt)ŸtžŸ` ‰t þ ~¡0„¡µ¡»¡¡Ô¡é¡ ú¡¢6 -¢oA¢±¢³¢º¢4¢#÷¢È£Gä£%,¤XR¤U«¤O¥Q¥h¥q¥z¥‚¥ -‹¥ –¥ ¢¥¬¥ µ¥¿¥È¥#Ú¥þ¥ ¦¦¦#¦2¦9¦B¦U¦h¦q¦ƒ¦ •¦Ÿ¦ ¤¦ ²¦À¦ צá¦é¦ï¦ ò¦ü¦§*§ I§j§ p§}§„§§ ¬§¹§ Á§˧ܧ ߧ ë§ õ§¨¨¨ -%¨0¨ 8¨E¨M¨m¨ v¨„¨Š¨™¨¸¨ ǨÓ¨ -Û¨æ¨ø¨ ©©%© 5©C© W© e©s© ƒ©©£©¹©É©Û© ì© ø©ªªª-ª Gª Qª -^ªiªoª~ªšª©ª»ªÕªæªÿª«"« 2« S« ]«g« o«y« «‹« «¯« µ«ëÓ«Ú«à«ç« ú«¬ -¬ ¬ ¬ -'¬ -2¬=¬V¬_¬ g¬q¬ w¬„¬Š¬¬–¬¬¤¬¬¬´¬ Ǭ Ó¬à¬ú¬ ­­­­%­?­N­ -n­y­Œ­ ›­ §­³­»­íÙ­ è­ õ­® ®®®®,®G®P®X®k®® ¡® ®®¼®®Ò®Ø®ß® -ç® ò®ÿ® ¯ ¯ -+¯ 6¯ D¯ Q¯ [¯ h¯u¯ †¯¯ ˜¯¢¯©¯ -¯¯º¯ ïϯد ç¯ ô¯° ° °°.°5° >° K° Y°f° o° }°‹° š°¦°¹°¿°°Ç°Ï° Þ° ë° ÷°±± ,±9±?±H±Y±l±~±(±¹±Á±ʱà±ø± -²4$²1Y²/‹²»²Ѳá²³ ³³³0³#A³ e³†³¥³¬³¼³"̳ï³ -÷³´´%´,´5´K´ \´h´o´w´‡´™´®´ -Ç´ -Ò´ -Ý´è´ î´ü´µµµµ -?µJµ[µaµ -jµuµ{µ„µ‰µžµ´µõ ˵صçµëµñµôµ¶¶ - ¶¶¶$¶5(¶^¶ p¶z¶Š¶¶–¶ ž¶¬¶!Á¶ 㶠·%· -E· P·\·c·g·o·t·z·€· ‡· ‘·›·¡·¨· ¯·½·.зÿ·L¸0i¹Gš¹Œâ¹—oº`»kh»XÔ»‘-¼”¿¼dT½¹½uG¾X½¾Y¿‘p¿yÀD|ÀcÁÀF%ÁelÁRÒÁQ% wƒŠ ªÂ ¶ÂÄÂÔÂ#ôÂà -8ÃCÃFÃ4aÖìà ÄÃ;ÒÃLÄ[ÄqÄfzÄ!áÄ%Å)Å:Å-OÅ}Å’Å -›Å -¦Å±Å ÉÅ -ÖÅ áÅ -ïÅ -úÅ Æ -Æ"Æ -@Æ -KÆVÆ[ÆvÆŽÆ“Ço³ÇJ#È=nÈ'¬È ÔÈÞÈùÈM -ÉXÉ-xɦÉ'·É&ßÉÊ"Ê8>Ê+wÊ)£ÊFÍÊ(Ë=Ë$WË|ËšË,¸ËBåË'(Ì'PÌ1xÌ$ªÌ5ÏÌFÍcLÍ%°Í7ÖÍ(Î7Î@LÎ?Î6ÍÎ0Ï,5Ï>bÏ4¡Ï0ÖÏ,ÐL4Ð7Ð:¹ÐôÐ) Ñ7Ñ'IÑqÑ;‚Ñ=¾ÑüÑÒ3ÒGÒYÒuÒ`‡Ô^èÔ+GÕsÕ<‰ÕÆÕÚÝÕ¸Ö8ÉÖ:×8=× v׀יײ×&È×&ï×Ø&4Ø[ØyÝØ+WÙƒƒÙÚÚ/Ú1EÚ)wÚ¡Ú ·ÚÃÚAÌÚÛ/$Û&TÛ{Û3”Û!ÈÛêÛ$Ü*+Ü VÜdÜkÜ'}Ü¥Ü)¹Ü{ãÜh_Ý ÈÝ ÕÝâÝ÷Ý Þ9Þ%UÞ%{ÞK¡ÞíÞcßdß -vß ßß,¢ßÏßáß!à#à)@àojà -Úàåàá !á /á -;áFá\á káxáá§á¬áÈÆáâ”â°âÀâÒâ@éâ(*ãSã nã'{ã‹£ãe/䇕äƒå`¡åÀæ6Ãæ`úæo[ç+Ëç”÷çaŒèLîè;;é>wé¶é6Ðé ê ê#ê"5ê;Xê7”ê<Ìê2 ë1<ë:në-©ëB×ë<ìLWìR¤ì -÷ìí í:?í:zíµí'Ëí+óí î @î aî ‚î Žî›î ³î,Ôîïï(ï9ï*Uï€ïšï*¸ïmãïuQðxÇðx@ñs¹ñi-òU—ò@íòM.ó;|ór¸óJ+ô2vôY©ô™õ‘õO/öOö~ÏözN÷QÉ÷ ø[<ø;˜øÔø+ìø*ù -CùNù&`ù'‡ù$¯ù!Ôù öùú ú.)úXú"gúŠú#©úÍúMûgû ~ûˆû ¤û°û5Éû7ÿû7üxLü-Åü-óü!ý,=ý$jýýŸý·ýÎýàýAõý>7þ vþ—þ4µþAêþA,ÿ3nÿ6¢ÿ@Ùÿ58P|‰'1./`!²ÅÜÝíËàö#R7SŠSÞ821kILç=4r‡8£%Ü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 Š˜« ºÄXÓR,1»Hí#6Zt"Ž"±Ôñ-Ga"yœ"´ ×ø$3,X0…,¶!ã,2JagÉÚ'ë(7QZk$,¦6Ó -"5)X‚%¡ÇÞô'8:G‚‡zŠ (*'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(¹0â0#ù0 1+1;1J12i1Cœ1?à1 2b/2z’2m 3b{3vÞ3…U4…Û4za5zÜ5úW6bR7bµ7†8Ÿ8Ó9Xó9ŒL:‹Ù:ße;E<]<8w<°<9Ð< -=,="@=c=u=“=«=,É=ö=,>6<>.s>$¢>"Ç>9ê>$?B?#b?†?9 ?"Ú?2ý?30@+d@@4 @,Õ@&A/)A/YA/‰A¹A-ÔA'B#*BNB]ByB“B,±BÞB,üB()C:RCJCØCîC%D%*DPD*lD1—D1ÉD%ûD_!EvE -øEFF#F AF OF [FhF‚€FAGEGcG&rH<™H%ÖH'üH$I%8I%^I„I—Ic¦I -J$J>J VJ5dJšJ4´JéJîJK< K]KwK"‰K¬K7ÃKûKÒ L#àL>M¤CNÈèO±PÁÃP -…Q -Qà›Q5|R:²RíRSS8S%IS0oS% SQÆSSTlTˆ‚T UU0U NU \U -hUsU‘U U -°U9»UõU8V*LVwVAV+ÒVþVW(WEW]WrWNW ÐWñW X!X4X HX UXcX#rX–XJ²XKýX'IYqY -vY7YA¹Y ûY¸ZÕZíZ#[([7[˜T[Mí[;\»\Â\_â\ B]c]k]%|]¢]*¹]ä]ÿ]^*(^$S^Ùx^"R_ru`Jè`T3aˆa#Ÿa'Ãa0ëab##n>bnL¡nRînJAoJŒoU×oY-p†‡pq%+q-Qqbq-âqCrFTr!›r4½ròr+s/„5n„(¤„:Í„>…G…W…=q…J¯…6ú…81†j†z†5†5ņSû†O‡_‡n‡,ˆ‡,µ‡â‡#ˆ,$ˆ2Qˆ/„ˆ/´ˆ2䈉#5‰#Y‰%}‰/£‰5Ó‰: ŠDŠFUŠ<œŠ ÙŠ æŠ -óŠ þŠ0 -‹Q;‹"‹0°‹á‹!Œ%#Œ IŒ VŒcŒyŒŒ!¦Œ#ÈŒ<ìŒ/)0YŠ*ª#Õ)ù0#Ž,TŽ)ŽJ«Ž)öŽ. 2O?‚AÂ*/H[u‰*¥Ðáó‘" ‘,C‘!p‘6’‘!É‘ë‘ÿ‘.’F’`’v’DŒ’Ñ’!ê’6 “C“_“w“B‹“Γå“@ÿ“@”[”s”n”ü”0•"L•,o•2œ•MÏ•–A8–z–’–²–¹–×–ì– -——2—}N—ƒÌ—;P˜ Œ˜­˜Ę՘昙™$.™!S™u™‡™—™±š!Κðš ›+›%:›5`›–›0¯›'à›"œ%+œ3Qœ5…œ;»œ7÷œ7/0g+˜,Äñžž.žMžcžrž’žn§žJŸaŸdqŸÖŸWéŸ>A € – 0´ 0å n¡ -…¡¡ ¡¯¡(Ï¡ø¡¢(¢?¢X¢g¢}¢™¢/¢¢Ò¢ã¢-£0£N£#c£0‡£U¸£D¤S¤ s¤€¤  ¤"Á¤<ä¤<!¥+^¥/Š¥3º¥3î¥\"¦3¦³¦¦ܦ!ë¦ §§?§]§l§†§˜§#©§ͧ,ݧ -¨K!¨m¨‡¨0£¨Ô¨#ð¨9©!N©3p©!¤©)Ʃ𩪪Y$ªy~ª*øª#«'8«%`«J†«NÑ«A ¬zb­Ý­ò­-®5°R°g°}°Œ°Q§°&ù°^ ±±!’±0´± å±ñ±K²N²/`² ²!±²¥Ó²,y³,¦³Ó³ä³´´ #´10´(b´‹´«´*Å´"ð´#µ7µQµgµkµ…µ–µšµ!©µ˵#ϵDóµ$8¶"]¶)€¶2ª¶ݶ ò¶·4·'O·w·&·¶·*Ò·*ý·(¸4B¸w¸&¸¶¸*Ò¸Bý¸>@¹¹¹1¢¹EÔ¹CºM^ºQ¬ºDþºC»U»|d»·á»x™¼|½…½ -¾F ¾|g¾%ä¾% -¿-0¿^¿m¿}¿^¿cï¿SÀ#oÀ“À³ÀÓÀ)ïÀ.Á.HÁcwÁ ÛÁèÁ0Â43Â'hÂÂ1¨Â+ÚÂÃ"Ã0AÃ4rÃ-§ÃÕÃ0ëÃcÄR€Ä'ÓÄ#ûÄ+ÅDKÅ6Å-ÇÅõÅ'Æ%9Æ)_Æ%‰Æ ¯Æ2½ÆðÆ* -Ç?5Ç*uÇ, ÇÍÇëÇ' È03È#dÈPˆÈ0ÙÈH -ÉPSÉo¤ÉBÊUWÊ!­Ê*ÏÊ4úÊ&/Ë,VË;ƒË4¿ËôËLÌf`Ì ÇÌ'èÌÍ1&Í1XÍ3ŠÍz¾Í89ÎrΉÎ(¢Î/ËÎûÎ:{Ï/¶Ï æÏóÏ3Ð/8ÐhЂКÐ*¶ÐáÐ%úÐ3 ÑTÑ(hёњѱÑÑÑéÑ+ÒE.Ò#tÒ7˜ÒÐÒêÒÓ/ÓFÓEfÓ)¬ÓCÖÓ;ÔVÔ>vÔ*µÔIàÔ6*ÕaÕ Õ4 Õ&ÕÕ-üÕ+*ÖuVÖ<ÌÖ: ×;D×@€×(Á×%ê×5Ø6FØ^}Ø"ÜØ)ÿØ)Ù0DÙ)uÙ#ŸÙ'ÃÙëÙ'úÙ3"Ú%VÚ)|Ú8¦Ú3ßÚ+Û9?Û9yÛ6³ÛVêÛAÜ6`Ü!—Ü‚¹Ý!<Þ^Þ -mÞxÞ“Þ¢Þ«ÞºÞÓÞæÞ ýÞß9ß -JßUßfßß–ß"¯ßÒßïß àà"à?àVà$qà–àµà -ÊàÕàæàáá"/áRáoá‚á•á,­áÚáõá â2)â%\â.‚â4±â.æâã,3ã0`ã4‘ãBÆã7 ä)Aäkä.‹ä0ºäëä&å*å&Håoå,Šå.·å(æåæ"'æ6Jæ5æ>·æ<öæ3ç&Iç>pç1¯ç5áç.è_FèK¦èŽòèvé4øé,-ê3ZêŽê0¡ê0Òê.ë>2ë.qëQ ë3òë%&ì5Lì5‚ì5¸ì3îì "íJCí*Ží>¹í0øíJ)î.tî<£î5àî8ï9Oï#‰ï:­ï&èï;ð5Kð(ð:ªð-åð/ñ~Cò¼ÂòÒó¬Rõtÿõ+tö* ÷çË÷ã³ø*—ù_Âùh"ú¤‹ú\0û -ûv˜ü$ÿo4‚¤G'o -ˆ “ Ÿ À(á -49n5…5»;ñ0-^x.”pÃ$4%Y44´-é,*D'o,—CÄ.-7+e%‘Z·8  K 2l 4Ÿ >Ô < -CP -)” -(¾ -5ç -5 MS =¡ (ß ( @1 r 8ˆ 8Á =ú *8 7c  › ¨ +Æ  ò ST'g¦ -À/Ë6û(2[q† —¤¶ÎJä'/W'i+‘ ½*Ç*òI0Kz6Æ9ý378k;¤7à!- O\!s(•¾#Òö& =!^€"¯%Òø"21 -d"oH’%ÛP&R?yW¹7$-\ Š« à -Ï"Úý %&/L -|‡»×%õx i™w{{o÷Pgˆ¸²Aoô1d.–]ʼn# ý­!)«#Õ$*Ú%]'ìc'YP)†ª)ž1*Ð*Ù*ñ*@ú*i;+Z¥+T-PU-L¦-Ló-;@.£|.÷ /»0^Ô0Œ31eÀ1«&4©Ò4z|52÷5 *7_69Ÿ–:J6</=F±>Nø?åGA&-C®TD’EŠ–FL!HAnH„°H -5IP@I ‘II¹IÐI çIõI(J1J4AJvK0K0¾KAïK+1L+]L5‰L,¿L-ìLIM%dM.ŠM.¹MèM.ÿM›.NÊP>äP#Q%@Q3fQ%šQ'ÀQ:èQ>#R%bR'ˆR-°RÞR/ûR+SKSZS sS!”S¶SÏS -ÖS.áSSTodT†ÔT [UµgVyX—X°XÁXÛXõXY(Y;EYY”Y©YO¾Y6Z>EZf„ZHëZ=4[1r[>¤[Sã[27\3j\ž\½\Ì\Û\,÷\ $]2]”K]Ià]*^D^b^,s^* ^+Ë^)÷^ !_$B_Og_<·_%ô_%`b@`Ü£`~€a¨ÿaj¨bfd”zerfw‚f¨úfÅ£giiiÕÓið©j¢šk„=løÂlë»mܧnÿ„ow„p}üpyzq ôqÿs­t˜¯t¬Hu -õuv €v v7›v7Óv w#w6wQ8w Šw˜x šx §xRµxGyPyvkz9âz¢{™¿{ŒY|Ræ|9}/L}%|}%¢}È}×}/ç}%~%=~)c~~f¢~% #/%Sy)‰³Ê'Þ1€"8€&[€)‚€¬€¾€Å€ã€&ü€#4LUWi7|;´9ð*‚@‚ P‚ \‚1h‚š‚ ©‚µ‚"Æ‚é‚ë‚ ƒ8ƒ+Gƒ sƒƒ Žƒ ¯ƒ!¼ƒ Þƒ>èƒ'„#9„]„9s„<­„8ê„#… ;…H… X…#e…‰…¤…¾…Ø…#ð…%†:†!S†u†‘†!±†Ó†!ñ†‡1‡ O‡(p‡™‡$©‡6·ˆˆ5ˆ Pˆ^ˆ0yˆªˆ#ƈ+ꈉ16‰h‰,ˆ‰"µ‰I؉"Š6Š PŠ^Š yŠƒŠ/‹Š#»ŠߊïŠ#‹3‹ F‹ R‹'`‹&ˆ‹¯‹ -±‹¼‹Ò‹ã‹õ‹5ŒJŒbŒ|ŒŒ Œ¾ŒÆŒØŒðŒ  8,E"r&•(¼åŽŽ#Ž ,Ž)6Ž$`ŽE…ŽËŽÜŽëŽ !9J:[–²Ìêì -û 2#Ei&ŽBµ9ø!2‘T‘ q‘"}‘ ‘¸‘Ê‘Ù‘ð‘’!’?’\’q’‰’£’¼’×’ð’ “!“0“F“ -M“X“j“&ˆ“¯““)Õ“ ÿ“ ””-”6J””‘” ”¸”×”/ë”)•E•#[••*• »•Ç•É• ΕÜ•ö•–+–BC–†–.™– È–Ö–ì–$— -— N—fo—Ö—é—-û—/)˜0Y˜9Š˜aĘj&™H‘™*Ú™/šE5š{šš§š8»š(ôšW›Eu›>»›ú› -œ(+œETœšœ®œ1Âœ)ôœ *'<&d‹ž ±)½#ç& ž&2žYžvž‡ž —ž£ž²žÅžØžðž:ŸCŸ3aŸ •Ÿ£Ÿ·ŸÑŸâŸñŸNøŸ9G  œ %« Ñ î  ñ û ý ¡¡,¡ -@¡ -K¡V¡cZ¡=¾¡ü¡(¢C¢ -L¢W¢)v¢+ ¢MÌ¢D£L_£B¬£ï£¤ ¤$¤(¤7¤@¤I¤a¤y¤¤ -¡¤ ¬¤¹¤Ȥ'פeÿ¤Re¥[¯­›}røʪ2ç7=ù€ž-‡~U³º>8 W8WÌòV¸nÚ•€ê†Ã0¡ŠeŸÜr<Ý4üãšOÍ®š†¨éÝŒ° S ß+#åc8ùt®ù§W–sòï£lBýg\0'ÍG©=b½mŒº/¿x:‘Ö¦6 ø\T\ן¬Ã#ìýB-ÂLÞƈSs‰àïM2 Ï=€±ÏMú‰ÛåHÕv;—í§3%(þ ÌºÅÜ—w$ Z_v ê!Reþ÷`Hxç+±¼ B†Z„´ ¢X‚!¾+[À!Æ·¥+*¼hesªcw3 ‚ÅëÂã0žiŠò# Òô§oëLóž›TÓÔKªXg€_ -ÚN;69 ^ÖÚÞ¥´öP Œzï}"„+²Ûß, –éêùn( µÞµ2§.Cö/µ™ðœ‡­£VƒèúšG9×ô·üEO=OÄv!ú†õ1_çš>ö¡Ã?¯þpÝÖ¯è _,Ë] C ‹ë6`€G|ž  {89ßÑ®áØvS½›àýºXÖãœãÛ”(¥M ÉåU0 Nÿ±XÓ½E : ¼2Òr”˜ÍHƒ³ªÁa„ꋺð5oÇVhü­|?B¡A &4³~ µ’>LÛfÞË$®0èâ¼5Ÿ™47zç³–ç±}Ï -€]ÈP•ú -¸]F 2ð -•"x[§i„'Éø¬eãï&ñ’Ç›("äqä>ŠU9Ü…±m> t`,’ÜrGäÀQ¶v¸¨Š - ' Ó´âÉù|’¿è£Ð,NÍí34±ã Dn†EŸ›3$ i«¸gùìLÔéc>túIÐB†·'^ü©"Û~@! ûÀŽ]ïY ìø ]èw7Q-Ý—hË ”€i«©–UªËˆAî yJá…OyAjapmÐZü D­Ùš k,º{Z…΋ol *#¨(¹S1 åWȸÉ@Ӊίzo*ŒVoŽELVÔœrG ©J ; ?=|Qí›Ì´ñ áþ Ì—fJÙY@0«¤bø—ÔX% =óvRIm/IÆjûF1Y&wÓÜXÚ$æ ômŠYi4È TsGAè}*2ÿC厎N¡ïÜRkH²¢‘ñmŸ«!r£ükE«Õß”‡^Tm·ÅŽ A^­N Y¿I½?3[ÍÖ' K1e,&n-wkɺôÐkd6êoI˜“Š¨›ƒ³ó—¦;Ç0•Cæ× ß—§5?HuW ŒÄqÿÕSB  ï>I”ýÀﶷý ‘d†IÂÁa;Þu°d½ ÑF²£¤ŒL×eèß[BR°°Æ -zfþNñ¥\Ï[é)çóNž‡ÒòC¾Ëùö øà^™ÿ.îku•1ã:vKÂdAát*5 X»s­C•H6vÉÖ¶TFc­x'^+ûf( ÷Ä–ŒHÒ*ÕNÙòæ‘ JƒO ¨#QqAÌj™;:Q Ì ×Õ…Äü&(mBì²ôÛ÷è -6‡£uÎëÕ.öžj.  ‰’\t¬p¶kÄÍüêb%Qý¢`泃zF£gœé0|ˆð8SqÔß wñ&"§F¢)}Põâ@ ¬œµJœÈæa¥2Ò¥ÇxJwÉÄÏ<¥êFPúСÑp¢#4p›5 ðqc)¹K“Sê';«·ëÚ$ÿÓ'O/Î txƒÌ< L ΑÈt£ëÏâlCµœõÜ%B j§Âi+š ,÷1¤l¶K@ f-= "& “Ñ)s…äØd+òT "¿W¹¦=AÏôÆ&sjíÐà®<›þÐæH ¬ñ?‡óÔñDEO±Ø«$À…ÑC„bñU -%íÞ“×êMÑóVJ €°ag‰˜<ø~\ 6K Ó? yBß‹¯Dä"Å/ÊÅr =ô[ Z¬ØÚTðé„h- ¤<@ì]i lc d»ÿ] ‰JU:*ó¦pð4à`V‡˜¯Û}‘P“ku é V ¿ŽA?4 ^ÊFåPZ—ªDasˆ»wó©x†~n„ÜD7.Ë[ô7 l¤-1ÒoÚ‚´;î~ûC@ÛbÀ 12Ýò³ž™Ã¬Þ/¹ÁØ%†Öw:ÃÊ ;”#Xy(+ÜÙÃØ"擹MÙÊWUÆ”Ìy…åƒ. ²%°ÞõnÑdòà´{ÖæeÁƃæIy™±€½¢žh`h{ë O 6 ²@œg¡Ðèl >5 C‹ª@Ý9‚ÈVšXG‘´=Ŷ:l˜±øMÑ {õp¾•L÷ýbK ¢ÀìÇö:áf· ³îÒ~tES ÓG¾çn¬!Guj$ˆ2)ÿ<éKÝTýu*P9ì>ls¢Óà#5E¾9íY߇[ú$z¡“z[ÇGûeد’fà jüDúM¹}¦…uôÍ,>¾~Žc3xi9Ò•÷IÍ7ò.‚»z#õžFÚQSA8©%Œ1îΘ©´ -Ÿ)Â/’{½Q¼agÙ¸Á9(®bþ;oR4þQ²‹ë\ä ¿¤Å˜#Ý:«M L”âPí,ÊÎõ»¨¡ŠD©Õ ²%Ð÷$à¸É¿}* š._|'-h Á7Ϙ&÷´8|‹¡äáħ$) þ_Ò°) xÌŠÞµãʼnö]¶ûq^i¾úU)ùO°!ã{â+ ^²MY·ÉHö n¨àR ?@ ÊY ÈM‡^ hRŸ×¼»JbýX í‹Æ7-¼EךR _]<¼{TEaŽ®\5Äk¹Õ‹\(–! yqÀWñ3ºyP®¥ V–¿5/ ÚWÙZâªá`I 3P‚û…‘³f ¬îåù¤ÙÕûáªÝ–¥á4Ûp»7S|r«ïË~Ñ!â& ¦¨3rÿ™¤ì¹Z ¯œZð®U ˜íÇî<-‘‚YëÖ¦—<L*ìÎn×»K‰q.à -H eÁ¨» " „Ù•–d°|Ë NW ¹øˆpŽ,äˆ:‰8ój\zaˆÔé÷¤¾Z0b¿_ÿcÁ0Ê ¸ `5R1À¢gŠ ç6¶ä”_’UÇ’{¦½OD½hD ™2ŒJcö]Ÿ`ˆº9vØF?õ·)ðÔ8Í'Q¯¦RKÄ©õØy8/ µÏ¶­¼ÎâÂgÅÆ “ ÇoÁm%dÂt¸q6 Nf}7å­.“Ô Èµu‚‚™3/ûÈçTþËYÊ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.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: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.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-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 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.9.1 - -ÐедопуÑтимый параметр "%s" - -ИÑпользуйте: %s [Параметры ...] [Файлы ...] - - --batch-interpreter - Процедура, запуÑÐºÐ°ÐµÐ¼Ð°Ñ Ð² командном режиме. - --debug-handlers Разрешить отладку обработчиков Ñигналов Ð´Ð»Ñ Ð½ÐµÑ„Ð°Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ… Ñигналов. - --display <диÑплей> ИÑпользовать указанный X-диÑплей. - --dump-gimprc ПОказать файл gimprc Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð°Ð¼Ð¸ по умолчанию. - --no-cpu-accel Ðе иÑпользовать уÑкорители CPU. - --no-shm Ðе иÑпользовать разделÑемую памÑÑ‚ÑŒ между GIMP и его дополнениÑми. - --pdb-compat-mode - Режим ÑовмеÑтимоÑти Ñ Ð±Ð°Ð·Ð¾Ð¹ данных процедур. - --session ИÑпользовать альтернативный файл sessionrc. - --stack-trace-mode - Режим отладки Ð´Ð»Ñ Ñ„Ð°Ñ‚Ð°Ð»ÑŒÐ½Ñ‹Ñ… Ñигналов. - --system-gimprc ИÑпользовать альтернативный ÑиÑтемный файл gimprc. - --verbose Показывать ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¿Ñ€Ð¸ Ñтарте. - -b --batch <команды> ЗапуÑтить в командном режиме. - -c, --console-messages Показывать Ð¿Ñ€ÐµÐ´ÑƒÐ¿Ñ€ÐµÐ¶Ð´ÐµÐ½Ð¸Ñ Ð½Ð° конÑоли вмеÑто диалоговых окон. - -d, --no-data Ðе загружать шаблоны, градиенты, палитры и киÑти. - -f, --no-fonts Ðе загружать шрифты. - -g, --gimprc ИÑпользовать альтернативный файл gimprc. - -h, --help ВывеÑти Ñту подÑказку. - -i, --no-interface ЗапуÑтить без интерфейÑа пользователÑ. - -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 -Copyright (C) 1995-2003 -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Ра_змер холÑтаОтменаУдалить направлÑющуюÐевозможно добавить маÑку ÑлоÑ, отличающуюÑÑ - размерами от указанного ÑлоÑ.Ðевозможно добавить маÑку ÑÐ»Ð¾Ñ Ðº Ñлою без альфа-канала.Ðевозможно добавить маÑку ÑÐ»Ð¾Ñ Ðº Ñлою, не ÑвлÑющемуÑÑ Ñ‡Ð°Ñтью изображениÑ.Ðевозможно прикрепить Ñтот Ñлой, потому что -Ñто не плавающее выделение.Ðевозможно преобразовать в палитру больше 256 цветов.Ðевозможно Ñоздать новый Ñлой из плавающего -выделениÑ, потому что оно принадлежит -маÑке ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ каналу.Ðе удаетÑÑ Ñоздать папку '%s': %sÐе удалоÑÑŒ Ñоздать файл предварительного проÑмотра.Ðе удалоÑÑŒ вырезать из-за того, -что Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ пуÑта.неверное раÑширение ${%s}Ðевозможно Ñоздать плавающее выделение из-за того, -что Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ пуÑта.Ðевозможно поднÑÑ‚ÑŒ Ñлой, у которого нет альфа-канала.Ðевозможно Ñохранить. Ðичего не выделено.Ðевозможно обвеÑти пуÑтой каналÐевозможно обвеÑти пуÑтой контур.Размер холÑтаЦвет фона вокруг изображениÑ:Центр X:Центр Y:По центруИзменить цвет фонаИзменить Ñлемент цветовой картыИзменить цвет переднего планаИзменить разрешение изображениÑИзменить единицы измерениÑИзменить размер Ð´Ð»Ñ Ð¿ÐµÑ‡Ð°Ñ‚Ð¸Ð¡Ð¼ÐµÐ½Ð¸Ñ‚ÑŒ текущий Ñлой или контурИзменить цвет фона ÑеткиИзменить цвет переднего плана ÑеткиСменить индекÑированную палитруИзменение перÑпективы ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ выделениÑÐе удалоÑÑŒ Ñменить клавиши быÑтрого доÑтупа.КаналÐтрибуты каналаÐазвание канала:Канал не может быть опущен ниже.Канал не может быть поднÑÑ‚ выше.Цвет каналаСлой уже в Ñамом низу.Слой уже на Ñамом верху.Канал -> ВыделениеКанал -> ВыделениеКанал -> ВыделениеКанал:КаналыМеню каналовПроверить размер:Стиль Ð¾Ð±Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¾Ð±Ð»Ð°ÑтиОкружноÑÑ‚ÑŒ_ОчиÑтитьОчиÑтитьОчиÑтить каналОчиÑтить иÑторию отменУдалить текÑтОчиÑтить ошибкиОчиÑтить иÑторию отменÐажмите "Продолжить", чтобы принÑÑ‚ÑŒ предложенные параметры.Ðажмите "Продолжить", чтобы Ñоздать ваш перÑональный каталог GIMP.Ðажмите "Продолжить", чтобы перейти к пользовательÑкой уÑтановке.Ðажмите "Продолжить", чтобы перейти к пользовательÑкой уÑтановке.Ðажмите чтобы Ñоединить Ñту точку Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð¾Ð¹ конечной точкой.Ðажмите чтобы Ñоздать новую точку. (попробуйте нажать SHIFT)Ðажмите чтобы Ñоздать новый компонент контураÐажмите чтобы Ñоздать новый контурÐажмите Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° предпроÑмотра.Ðажмите чтобы удалить Ñту точку.Ðажмите чтобы Ñоздать точку на контуре. (попробуйте нажать SHIFT)Ðажмите чтобы Ñделать Ñту точку угловой.Ðажмите чтобы открыть путь.Ðажмите чтобы выбрать контур Ð´Ð»Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸ÑÐажмите, чтобы обновить проÑмотр -Ðажмите Ñ %s чтобы принудительно обновить проÑмотрÐажмите и потащите чтобы изменить линию. С SHIFT рычаги перемещаютÑÑ Ñимметрично.Ðажмите и потащите чтобы перемеÑтить точкуÐажмите и потащите чтобы перемеÑтить точкиÐажмите и потащите чтобы перемеÑтить Ñлемент. (попробуйте нажать SHIFT)Ðажмите и потащите чтобы перемеÑтить рычаг. (попробуйте нажать SHIFT)Ðажмите и потащите чтобы перемеÑтить контурЩелчок: выделениеЩелчок: выделение Ðажать и потÑнуть: перемещениеОтÑекать по границе изображениÑБуфер обменаОтÑечен по нижнему ÑлоюОтÑечен по изображениюШтампЗакрыть %sЗакрыть вÑе закладкиЗакрыть вÑе закладки?Закрыть Ñтот диалогКопировать контур_ЦветаЦветЦветовой баланÑЦветные Ñкранные Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ñ‹ÐŸÐ¸Ð¿ÐµÑ‚ÐºÐ°Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ цветеЦветовой _баланÑСмешивание _цветов:Цветовой Ð±Ð°Ð»Ð°Ð½Ñ Ð´ÐµÐ¹Ñтвует только на цветные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² формате RGB.ОчиÑтка цветаÐомер цвета:Цвет:Ð¦Ð²ÐµÑ‚Ð¾Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð°Ð ÐµÐ¶Ð¸Ð¼:Тон_ировать...Тип Ð¾ÐºÑ€Ð°ÑˆÐ¸Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑегментаТип Ð¾ÐºÑ€Ð°ÑˆÐ¸Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸ÑТонироватьТонирование дейÑтвует только на цветные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² формате RGB.Тонирование изображениÑТонирование изображениÑÐ¦Ð²ÐµÑ‚Ð¾Ð²Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð°Ð ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ цветовой картыМеню цветовой картыСтолбцы:Комментарий:КомментарийКонтраÑÑ‚:РазмываниеÐаÑтроить цветные Ñкранные фильтрыКонфигурировать уÑтройÑтва вводаÐаÑтроить Ñетку...ÐаÑтроить ÑеткуÐаÑтроить Ñетку изображениÑÐаÑтроить клавиши быÑтрого доÑтупаÐаÑтроить клавиши быÑтрого доÑтупаÐаÑтроить выбранный фильтр ÐаÑтроить выбранный фильтр: %sПодтверждение размера изображениÑПодтвердить маÑштабированиеПодтвердитте изменение текÑтаЗапрашивать подтверждение при закрытии неÑохраненных изображений.ИÑпользуемые клавишиКоничеÑкий (аÑимметричный)КоничеÑкий (Ñимметричный)Соединить контурыКонÑтантаОграничениÑКонтекÑтПиктограмма курÑора, менÑющаÑÑÑ Ð² завиÑимоÑти от выбранного инÑтрумента - Ñто очень удобно. ÐžÐ¿Ñ†Ð¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð° по умолчанию.ПродолжитьПри учаÑтииПреобразованиеПреобразовать уголПреобразовать изображение в Градации ÑерогоПреобразовать изображение в индекÑированноеПреобразовать изображение в индекÑированноеПреобразовать изображение в RGBПреобразовать изображениеПреобразовать в индекÑированное (2 Ñтап)Преобразовать в индекÑированное (3 Ñтап)...Преобразовать в индекÑированноеРазмываниеВид дейÑÑ‚Ð²Ð¸Ñ %sСкопировать из буфера Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼Ð¡ÐºÐ¾Ð¿Ð¸Ñ€Ð¾Ð²Ð°Ñ‚ÑŒ видимоеКопирование файлов: '%s' из '%s'...ÐвторÑкое право:Повреждённый Ñегмент %d в файле градиента '%s'.Ðевозможно Ñоздать '%s': %sÐе удалоÑÑŒ Ñоздать временный файл Ð´Ð»Ñ '%s': %sÐевозможно удалить '%s': %sÐе удалоÑÑŒ найти программу проÑмотра Ñправки GIMPÐевозможно открыть '%s' Ð´Ð»Ñ Ñ‡Ñ‚ÐµÐ½Ð¸Ñ: %sÐевозможно открыть '%s' Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи: %sÐе удалоÑÑŒ открыть файл миниатюр '%s': %sÐевозможно прочеÑÑ‚ÑŒ %d байт из '%s': %sÐе удалоÑÑŒ открыть XCF файл: %sÐе удалоÑÑŒ запуÑтить программу проÑмотра Ñправки GIMPЧиÑло:Кадрировать ÑлойСоздать новую _панельСоздать новый образецСоздать новое изображениеСоздать новый ÑлойСоздать новый образецСоздать новое окно Ð´Ð»Ñ Ñтого изображениÑСоздать новое изображение из образцаСоздать новый образецСоздание и редактирование изображений или фотографийСоздание и редактирование контуровСоздать кривую из текÑтаСоздать выделенную облаÑÑ‚ÑŒ из контураСоздать предварительный проÑмотр...Создание папки '%s'...КадрированиеКадрировать и изменить Ñ€Ð°Ð·Ð¼ÐµÑ€Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ кадрировании и изменении размераКадрировать изображениеКадрировать ÑлойКадрировать изображениеКадрировать или изменить размер изображениÑКадрировать: Только перекреÑтьеВы_резатьВы_резать в буфер Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ÐšÑƒÐ±Ð¸Ñ‡ÐµÑкое (лучшее)_СоÑтоÑÐ½Ð¸ÐµÐ¢ÐµÐºÑƒÑ‰Ð°Ñ Ð²Ñ‹Ñота:Только текущий ÑлойТекущее ÑоÑтоÑÐ½Ð¸ÐµÐ¢ÐµÐºÑƒÑ‰Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð°:КурÑорРежим курÑора:Вид к_урÑора:Тип кривой:КривыеКривые Ð´Ð»Ñ Ð¸Ð½Ð´ÐµÐºÑированных изображений не могут быть наÑтроены.По выборуВыбранный цветГрадиент пользователÑОпределить цвет фона:ВырезатьВырезать в буфер Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼Ð“Ð¾Ð»ÑƒÐ±Ð¾Ð¹Ð“Ð¾Ð»ÑƒÐ±Ð¾Ð¹:С_оздать копию киÑтиСо_здать копию каналаСоздать копию градиентаСоздать копию ÑлоÑСоздать копию палитрыСоздать копию контураСоздать _копию шаблонаСоздать копию образца...ТемныйТолько тёмноеТире-точка-точка...Тире-точка...Шаблон:Тип линии:ПунктирДата:ОтладкаВнешний вид по умолчанию в полноÑкранном режимеВнешний вид по умолчанию в нормальном режимеПараметры ÑеткиПараметры ÑеткиИнтерполÑÑ†Ð¸Ñ Ð¿Ð¾ умолчанию:_Размер пред. проÑмотра Ñлоев и каналов:Порог по умолчанию:Удалить точкуУдалить ÑкорÑУдалить маÑку ÑлоÑУдалить маÑку ÑлоÑУдалить объект Удалить ÑегментУдалить образецУдалить киÑтьУдалить каналУдалить цветУдалить градиент...Удалить ÑлойУдалить маÑку ÑлоÑУдалить палитру...Удалить контурУдалить шаблон...Удалить параметры...Удалить выбранный буферУдалить выбранный образецУдалить Ñто изображениеУдаление векторовÐевозможно "%s" удалить: %sЧаÑтые точкиОбеÑцвечиваниеОбеÑцвечивание дейÑтвует только на Ñлои в формате RGB.ОпиÑаниеСозданиеСоÑтоÑние уÑтройÑтваУÑтройÑтваДиалогиМеню диалоговРомбРазличиеЧиÑтый цветСпрÑтать маÑку ÑлоÑВыключить быÑтрую маÑкуУдалить текÑтовую информациюДиÑплейОкно навигацииЭкранные фильтры...Процедуры отображениÑТип изображениÑ:Отображение [%0.6f, %0.6f]РаÑтворениеРаÑÑтоÑние:РаÑÑтоÑние: %0.6fПараметры ÑмешиваниÑДелениеВыполнить полную переуÑтановкуДейÑтвительно вернутьÑÑ Ðº наÑтройкам по умолчанию Ð´Ð»Ñ Ð²Ñех фильтров?ДейÑтвительно вернутьÑÑ Ðº наÑтройкам по умолчанию Ð´Ð»Ñ Ð²Ñех инÑтрументов?Ð’Ñ‹ хотите заменить Ñто изображение тем, которое ÑÐµÐ¹Ñ‡Ð°Ñ ÑохранÑете?Ðе ÑохранÑтьПанельÐе_давние изображениÑÐедавние изображениÑДокументыМеню ÑпиÑка изображенийОÑветление/ЗатемнениеОÑветлительОÑветлить или затемнить штрихиОÑветление/ЗатемнениеДвойной пунктирПеремеÑтить точкуПеремеÑтить точкиПеремеÑтить кривуюПеремеÑтить рычагПеремеÑтить контурÐажать и потÑнуть: перемещениеРиÑовать пером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': Размер = 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Отразить по горизонталиОтразить по вертикалиЗеркально отразить изображениеОтражение Ñлоев или выделенных облаÑтейОтражение...Отражение...Плавающее выделениеПлавающее выделениеПлавающий ÑлойПлавающее выделение -(%s)Плавающее выделение в ÑлойПлавающее выделение в ÑлойПлавающее выделениеСмешивание цветов по Флойду-Стейнбергу (нормальное)Смешивание цветов по Флойду-Стейнбергу (уменьшенное раÑтекание)ФокуÑКаталогКаталогиКаталог шрифтовШрифт UIШрифт:ШрифтыМеню ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð²Ð”Ð»Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð¾Ð¹ уÑтановки GIMP должен быть Ñоздан -каталог Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼ '%s'.ИÑпользовать автоинÑтруктированиеПереднего планаЦвета переднего плана и фона. Черный и белый квадратики ÑбраÑывают цвета. Стрелки переключают цвета. Двойной щелчок позволÑет выбрать цвет из меню.Цвет переднего планаУÑтановить цвет переднего плана:Передний план: %d, %d, %dВперёд (традиционное)Из контураСвободное выделениеСвободное выделениеСвободныйИз _темыПолучить разрешение от оконной ÑиÑтемы (ÑÐµÐ¹Ñ‡Ð°Ñ %d x %d dpi)Слева направоСправа налевоИз выделениÑИз темыВ_ыделение ÑвÑзанной облаÑтиВо веÑÑŒ _ÑкранВыделение ÑвÑзанной облаÑтиGIMPРаÑÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ GIMPСообщение GIMPÐаÑтройка производительноÑти GIMPÐ”Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ GIMPЗапуÑк GIMPРедактор текÑта GIMPСовет Ð´Ð½Ñ GIMPУÑтановка GIMP Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑФайл GIMP XCFGIMP не Ñмог запуÑтить графичеÑкий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ. -УбедитеÑÑŒ в правильноÑти наÑтроек Вашего видеоадаптера.Ð¡Ð¿Ñ€Ð°Ð²Ð¾Ñ‡Ð½Ð°Ñ ÑиÑтемаGIMP неправильно уÑтановлен Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ³Ð¾ пользователÑ. -так как при уÑтановке иÑпользовалаÑÑŒ Ð¾Ð¿Ñ†Ð¸Ñ '--no-interface' -Ð”Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑкой уÑтановки запуÑтите GIMP без опции '--no-interface' .Gimp иÑпользует ограниченное количеÑтво памÑти Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð´Ð°Ð½Ð½Ñ‹Ñ… изображениÑ, -так называемый "Tile Cache". Ð’Ñ‹ должны подобрать занимаемый им в памÑти размер. -Обдумайте количеÑтво памÑти, иÑпользуемое другими запущенными процеÑÑами. GIMP иÑпользует дополнительный файл gtkrc, поÑтому вы можете -Ñконфигурировать его иначе чем другие Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ 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 цветов) диÑплеÑми.УÑтановка не удалаÑÑŒ. -ОбратитеÑÑŒ к ÑиÑтемному админиÑтратору.УÑтановка завершена. -Ðажмите кнопку "Продолжить" Ð´Ð»Ñ Ð´Ð°Ð»ÑŒÐ½ÐµÐ¹ÑˆÐµÐ¹ работы.БыÑтрое обновление_Умные ножницыЯркоÑÑ‚ÑŒ %0.3f ÐепрозрачноÑÑ‚ÑŒ: %0.3fИнтерфейÑВнутреннÑÑ Ð¿Ñ€Ð¾Ñ†ÐµÐ´ÑƒÑ€Ð° GIMPВнутренние процедурыИнтерполÑциÑ:ПереÑечениеПереÑечь Ñ Ñ‚ÐµÐºÑƒÑ‰Ð¸Ð¼ выделениемПереÑÐµÑ‡ÐµÐ½Ð¸Ñ (креÑтики)ПереÑÐµÑ‡ÐµÐ½Ð¸Ñ (точки)недопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8 в файле'%s'.ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8 в XCF файле.ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8 в файле киÑтей '%s'.ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8 в файле градиента '%s'.ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8 файле палитры "%s"ÐедопуÑÑ‚Ð¸Ð¼Ð°Ñ Ñтрока UTF-8 файле шаблона '%s'ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð¿Ð¾ÑледовательноÑÑ‚ÑŒ Ñимволов в URLÐекорректное Ñочетание клавиш быÑтрого доÑтупа.ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð° или выÑота. -Оба Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ быть положительными.ИнвертированиеИнвертировать каналИнвертировать выделениеИнвертирование не дейÑтвует на индекÑированные Ñлои.Инвертировать выделениеВы дейÑтвительно хотите Ñто Ñделать?Возможно, Ð’Ñ‹ иÑпользовали раньше GIMP 2.0.СвойÑтва ÑлементаВидимоÑÑ‚ÑŒ облаÑти риÑованиÑФорматирование:СохранÑÑ‚ÑŒ прозрачноÑтьВÑегда наверхуСохранить пропорции %sСохранить пропорции %sСохранить выÑоту %sСохранÑÑ‚ÑŒ прозрачноÑтьСохранить ширину %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Комбинации клавиш могут быть динамичеÑки переопределены -в Gimp. menurc - Ñодержит копию вашей конфигурации, -поÑтому ее можно запомнить Ð´Ð»Ñ Ð¿Ð¾Ñледующих ÑеанÑов. -Ð’Ñ‹ можете править Ñтот файл, еÑли захотите, но гораздо -проще переопределÑÑ‚ÑŒ клавиши из Gimp. Удаление Ñтого -файла воÑÑтановит иÑходные комбинации клавиш.КлавиатураКлавиатураКлавиши быÑтрого доÑтупаLTRЦвет крайней левой точки...ЛандшафтныйБольшойБольшой (256x256)Увеличенный проÑмотрПоÑледнÑÑ Ð¾ÑˆÐ¸Ð±ÐºÐ°:СлойСлой '%s' не имеет альфа-канала. Этот Ñлой будет размещен выше.Ðтрибуты ÑлоÑРазмер границ ÑлоÑ...Тип заливки ÑлоÑМаÑка ÑÐ»Ð¾Ñ -> ВыделениеВыделить ÑлойРазмер ÑлоÑРежим Ñ_лоÑÐазвание ÑлоÑ:Слой невозможно опуÑтить ниже.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': -Argument #%d type mismatch (expected %s, got %s)Ошибка вызова PDB: -процедура '%s' не найдена_ШаблоныВ чащах юга жил-был цитруÑ. -Да, но фальшивый ÑкземплÑръ!РиÑованиеОпции риÑÐ¾Ð²Ð°Ð½Ð¸Ñ Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ñ‹ между инÑтрументами.Процедуры инÑтрументов риÑованиÑИнÑтрумент:Режим риÑованиÑРиÑование мÑгкими линиÑмиРиÑование резкими линиÑмиРиÑование Ñ Ð¸Ñпользованием шаблона или учаÑтка изображениÑКиÑтьПа_литрыПалитраРедактор палитрыМеню редактора палитрКаталоги палитрПалитра UIÐ˜Ð¼Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ñ‹:Файл палитры:ПалитрыМеню палитрПроцедуры шумаШумыСинтакÑичеÑкий анализ '%s' -Ð’ÑтавитьВÑтавить буфер вВÑтавить буфер как новыйВÑтавить контурВ_Ñтавить вВÑтавить как _новоеВÑтавить выделенный буферВÑтавить выделенный буфер в новое изображениеВÑтавить выбранный буфер в выделениеВÑтавленный ÑлойКонтурÐтрибуты контураÐазвание контура:ИнÑтрумент контурКонтур не может быть опущен ниже.Контур не может быть поднÑÑ‚ выше.Контур уже в Ñамом низу.Контур уже на Ñамом верху.Контур -> Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑтьКонтур в выделенную облаÑтьКонтур Выделение -%s Добавить -%s ВычеÑÑ‚ÑŒ -%s ПереÑечьКонтур в выделенную облаÑтьКонтурыМеню контуровШаблоныКаталоги шаблоновUI шаблонаЗаливка шаблономИÑходный шаблонШаблоныМеню шаблонов_КарандашКарандашСкороÑÑ‚ÑŒ риÑованиÑПроцент:ПерÑональный каталог GIMPПерÑÐ¿ÐµÐºÑ‚Ð¸Ð²Ð°Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ преобразовании перÑпективыПерÑпектива...Вид дейÑÑ‚Ð²Ð¸Ñ %sВыбрать Ñлой/направлÑющуюВыбрать контурВыбор _чёрной точкиПолучение цвета из изображениÑВыбор _Ñерой точкиПоказать информацию о цветеВыбор _белой точкиРазрешение в пикÑелÑÑ…:ПикÑелейПикÑелейПикÑелей:УбедитеÑÑŒ, что файлы меню корректно уÑтановлены.ПожалуйÑта подождите пока будут -Ñозданы ваши личные каталоги Gimp...Подождите пожалуйÑта...ДополнениеОкружение дополненийКаталоги дополненийДополнение не может открыть изображениеДополнение не может Ñохранить изображениеРухнуло дополнение: "%s" -(%s) - -Умершее дополнение может иÑпортить внутреннее ÑоÑтоÑние GIMP. -Возможно, Ð´Ð»Ñ Ð¾Ð±ÐµÑÐ¿ÐµÑ‡ÐµÐ½Ð¸Ñ Ð±ÐµÐ·Ð¾Ð¿Ð°ÑноÑти Ñтоит Ñохранить -Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð¸ перезапуÑтить GIMP.Дополнение уÑпешно закончило работу но не возвратило изображение.ДополнениÑÐ”Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸ÐµÐ”Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ð¸ раÑÑˆÐ¸Ñ€ÐµÐ½Ð¸Ñ - Ñто внешние программы запуÑкаемые -GIMP'ом, которые предоÑтавлÑÑŽÑ‚ дополнительные возможноÑти. -Эти программы разыÑкиваютÑÑ Ð¿Ñ€Ð¸ запуÑке и -Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± их функциональноÑти и mod-times -кÑшируютÑÑ Ð² Ñтом файле. Этот файл предназначен только -Ð´Ð»Ñ Ñ‡Ñ‚ÐµÐ½Ð¸Ñ 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)RTLПоказать "%s" ещё разВоÑÑтановить параметры инÑтрументовВоÑ_Ñтановить каналВоÑÑтановить _цветВоÑÑтановить значениеЦвет крайней правой точки...РадиальныйРадиуÑ:ПоднÑÑ‚ÑŒ каналПоднÑÑ‚ÑŒ канал на верх ÑтопкиПоднÑÑ‚ÑŒ канал наверх ПоднÑÑ‚ÑŒ ÑлойСделать Ñлой верхнимПоднÑÑ‚ÑŒ контурСделать контур верхнимСделать контур верхнимПоднÑÑ‚ÑŒ каналПоднÑÑ‚ÑŒ канал на верх ÑтопкиПоднÑÑ‚ÑŒ ÑлойСделать Ñлой верхнимПоднÑÑ‚ÑŒ контурСделать контур верхнимРазвернуть окно Ñ Ñтим изображениемСделать активным еÑли уже открытоСкороÑтьСкороÑÑ‚ÑŒ:Показать поÑледний ещё разОтцентровать Ñредние точки выделениÑОтцентровать Ñреднюю точку ÑегментаПерераÑпределить направлÑющие в ÑегментеПерераÑпределить направлÑющие в выделенномПереименовать Ñохраненные параметрыПовтор "%s"ВернутьЗагружаетÑÑ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° '%s': -Ðеправильный компонент "Зелёный" в Ñтроке %d.ЗагружаетÑÑ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° '%s': неправильное чиÑло Ñтолбцов в Ñтроке %d. ИÑпользуетÑÑ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ðµ по умолчанию.ЗагружаетÑÑ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° '%s': -Ðеправильный компонент "Синий" в Ñтроке %d.ЗагружаетÑÑ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° '%s': -Ðеправильный компонент "КраÑный" в Ñтроке %d.ЗагружаетÑÑ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð° '%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' -Ðе удалоÑÑŒ '%s' Ñохранить: - -%sСохранить изображениÑÐŸÐ¸Ð»Ð¾Ð¾Ð±Ñ€Ð°Ð·Ð½Ð°Ñ Ð²Ð¾Ð»Ð½Ð°Ð’ÐµÐºÑ‚Ð¾Ñ€Ð½Ñ‹Ð¹ формат (*.svg)МаÑштабМаÑштабировать каналМаÑштабировать изображениеМаÑштабировать ÑлойМаÑштабировать контурМаÑштабировать текÑтовый ÑлойМаÑштабировать изображениеМаÑштабировать ÑлементПропорции маÑÑˆÑ‚Ð°Ð±Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ð¾ X:Пропорции маÑÑˆÑ‚Ð°Ð±Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ð¾ Y:КоÑффициент маÑштабированиÑ:МаÑштабирование Ñлоев или выделенных облаÑтейМаÑÑˆÑ‚Ð°Ð±Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸ÐµÐ˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ маÑштабированииЕÑли изменить размер Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñ Ñ‚Ð°ÐºÐ¸Ð¼Ð¸ параметрами, то оно займет больше меÑта, чем Ñто указано в параметре наÑтроек "МакÑимальный размер изображениÑ" (%s).Выбранный размер Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ñократит некоторые Ñлои до иÑчезновениÑ.МаÑштабирование...ÐожницыЭкранКаталоги Script-FuСкриптыВнизВниз (Alt)Вниз (Control + Alt)Вниз (Control)Вниз (Shift + Alt)Вниз (Shift + Control + Alt)Вниз (Shift + Control)Вниз (Shift)ВлевоВлево (Alt)Влевл (Control + Alt)Влево (Control)Влево (Shift + Alt)Влево (Shift + Control + Alt)Влево (Shift + Control)Влево (Shift)ВправоВправо (Alt)Вправо (Control + Alt)Вправо (Control)Вправо (Shift + Alt)Вправо (Shift + Control + Alt)Вправо (Shift + Control)Вправо (Shift)ВверхВверх (Alt)Вверх (Control + Alt)Вверх (Control)Вверх (Shift + Alt)Вверх (Shift + Control + Alt)Вверх (Shift + Control)Вверх (Shift)ВыделениеВыделить вÑеВыбрать каталоги киÑтейВыбор по цветуВыбрать цветВыбор дейÑтвиÑВыбрать каталоги окружениÑВыбрать тип файла (%s)Выбрать каталоги шрифтовВыбрать каталоги градиентовВыбрать каталоги модулейВыделение ÑнÑтьВыбрать каталоги палитрВыбрать каталоги шаблоновВыбрать каталоги дополненийВыбрать оÑновной цвет Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸ÑВыбрать облаÑÑ‚ÑŒ Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸ÑВыбрать каталоги Script-FuВыбрать иÑходноеВыбрать каталог подкачкиВыбрать временный каталогВыбрать темуВыбрать каталоги темВыбрать маÑштабВыделить нижний ÑлойВыбрать цвет...Выделить Ñледующий ÑлойВыделить предыдущий ÑлойВыделить верхний ÑлойВыделить вÑеВыделение по цветуВыделение ÑвÑзанных облаÑтейЦвет фона вокруг изображениÑВыделение ÑллиптичеÑких облаÑтейВыделение произвольных облаÑтейÐе выделеноВыбрать файл палитрыВыделение прÑмоугольных облаÑтейВыделение облаÑти по цветуВыделение форм в изображенииВыбрать каталог подкачкиВыбор чиÑла Ñоздаваемых -копий выделенного ÑегментаВыбор чиÑла Ñоздаваемых -копий выделениÑ.Выберите чиÑло равных чаÑтей -на которое надо разделить Ñегменты в выделенииВыберите чиÑло равных чаÑтей -на которое надо разделить ÑегментВыделÑÑ‚ÑŒ прозрачные облаÑтиВыбрать внешний Ð±Ñ€Ð°ÑƒÐ·ÐµÑ€Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ -> КонтурВыделениеПравка выделенной облаÑтиПравка выделенной облаÑтиМаÑка выделенной облаÑтиПроцедуры инÑтрументов выделениÑМаÑка выделенной облаÑтиВыделенное в контур (РаÑширенные параметры)Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ -> ÐšÐ¾Ð½Ñ‚ÑƒÑ€Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ: Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ: ДОБÐÐ’Ð˜Ð¢Ð¬Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ: ÐŸÐ•Ð Ð•Ð¡Ð•Ð§Ð¬Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ: ЗÐМЕÐÐ˜Ð¢Ð¬Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ: ВЫЧЕСТЬЧувÑтвительноÑтьУÑтановить цвет фона вокруг изображениÑУÑтановить цвет каналаУÑтановить непрозрачноÑÑ‚ÑŒ каналаУÑтановить цветовую картуУÑтановить цвет фона вокруг изображениÑУÑтановить размер холÑтаИзменить разрешение изображениÑУÑтановить ÑвÑзь Ñ ÑлементомУÑтановить видимоÑÑ‚ÑŒ ÑлементаУÑтановить размеры границ ÑлоÑÐазвание из _текÑтаУÑтановить непрозрачноÑÑ‚ÑŒ ÑлоÑУÑтановить цвет фонаУÑтановить цвет переднего планаУÑтановить ÑвÑзь Ñ ÑлементомУÑтановить режим ÑлоÑУÑтановить непрозрачноÑÑ‚ÑŒ ÑлоÑСохранение прозрачноÑтиУÑтанавливает лимит памÑти, иÑпользуемый Ð´Ð»Ñ Ð¾Ñ‚ÐºÐ°Ñ‚Ð¾Ð² в каждом изображении. Лимит может быть превышен Ð´Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ ÐºÐ¾Ð»Ð¸Ñ‡ÐµÑтва откатов, указанного в наÑтройках.УÑтановите браузер, который должна иÑпользовать ÑÐ¿Ñ€Ð°Ð²Ð¾Ñ‡Ð½Ð°Ñ ÑиÑтема.ОпределÑет цвет фона окна вокруг изображениÑ, еÑли в режиме заливки фона окна указано "Выбранный цвет".Укажите браузер, который будет иÑпользовать ÑиÑтема помощи. По желанию можно указать полный путь или только команду Ð´Ð»Ñ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ. ЕÑли команда Ñодержит '%s', вмеÑто Ñтого Ð²Ñ‹Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÐµÑ‚ подÑтавлен URL, еÑли нет, то URL будет добавлен к команде через пробел.УÑтанавливает уровень интерполÑции, иÑпользуемый при маÑштабировании и подобных изменениÑÑ….ОпределÑет, как будет отображатьÑÑ Ð¿Ñ€Ð¾Ð·Ñ€Ð°Ñ‡Ð½Ð¾ÑÑ‚ÑŒ в изображении.УÑтанавливает минимальное количеÑтво возможных откатов. Большее количеÑтво откатов возможно до тех пор, пока не иÑпользован лимит памÑти, отведенной Ð´Ð»Ñ Ð¾Ñ‚ÐºÐ°Ñ‚Ð¾Ð².ОпределÑет тип курÑораУÑтанавливает горизонтальное разрешение монитора в точках на дюйм. При нулевом значении уÑтанавливаетÑÑ ÑиÑтемное значение.УÑтанавливает вертикальное разрешение монитора в точках на дюйм. При нулевом значении уÑтанавливаетÑÑ ÑиÑтемное значение.ОпределÑет тип курÑораУÑтанавливает размер проÑмотра Ð´Ð»Ñ Ñлоев и каналов.УÑтанавливает размер клеток, обозначающих прозрачноÑÑ‚ÑŒ.УÑтанавливает размер окна навигации, находÑщегоÑÑ Ð² правом нижнем углу окна изображениÑ.УÑтанавливает размер проÑмотра Ð´Ð»Ñ Ð¸Ñтории отмен.УÑтанавливает размер изображений предпроÑмотра в диалоге Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð°. Работает только в том Ñлучае, еÑли включена Ð¾Ð¿Ñ†Ð¸Ñ Ð¿Ñ€ÐµÐ´Ð¿Ñ€Ð¾Ñмотра Ñлоев.УÑтанавливает меÑтонахождение файла подкачки. Обратите внимание на то, что файл подкачки может Ñтать очень большим, еÑли работать Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ð¼Ð¸ изображениÑми. Кроме того, процеÑÑ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ может Ñтать очень медленным, еÑли файл подкачки Ñоздан в папке, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ñмонтирована поверх NFS. Ð’ Ñтом Ñлучае, возможно, лучше вÑего помеÑтить файл подкачки в /tmp.ОпределÑет временный каталог. ЗдеÑÑŒ буду ÑодержатьÑÑ Ñ„Ð°Ð¹Ð»Ñ‹, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¼Ð¸ GIMP работает в данный момент. БольшинÑтво из них будут удалÑÑ‚ÑŒÑÑ Ñразу поÑле Ð¾ÐºÐ¾Ð½Ñ‡Ð°Ð½Ð¸Ñ Ñ€Ð°Ð±Ð¾Ñ‚Ñ‹ Ñ GIMP, однако некоторые оÑтанутÑÑ, поÑтому лучше вÑего будет, еÑли другие пользователи не будут иметь права проÑматривать Ñтот каталог.УÑтановите форму текÑта, отображающегоÑÑ Ð² Ñтроке ÑоÑтоÑниÑУÑтановите форму текÑта, отображающегоÑÑ Ð² заголовке окна изображениÑУказывает, надо ли Ñоздавать предпроÑмотр Ñлоев и каналов. ПредпроÑмотр Ñлоев и каналов - приÑÑ‚Ð½Ð°Ñ Ð²ÐµÑ‰ÑŒ, но Ñта Ð¾Ð¿Ñ†Ð¸Ñ Ð¼Ð¾Ð¶ÐµÑ‚ ÑущеÑтвенно замедлить работу Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ð¼Ð¸ изображениÑми.Тип тениТениФормаФорма:По форме (угловой)По форме (Ñмочкой)По форме (ÑферичеÑкий)РезкоÑтьРезкоÑÑ‚ÑŒ каналаРезкоÑÑ‚ÑŒ выделенной облаÑтиИÑкривлениеКоÑффициент иÑÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾ X:КоÑффициент иÑÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾ X:ИÑкривление Ñлоев или Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ð¹Ð˜Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð± иÑкривленииИÑкривление...Короткие линииКлавиши быÑтрого доÑтупаКлавиши быÑтрого доÑтупа "%s" иÑпользованы в пункте "%s" меню "%s".Показать маÑку ÑлоÑПоказывать _линейки Показывать Ñтроку ÑоÑтоÑниÑПоказывать полоÑÑ‹ прокруткиПоказывать направлÑющиеПоказывать границы ÑлоÑПоказывать панель менюПоказывать выделениеПоказывать контур киÑтиПоказать цвет переднего плана и фонаПоказывать _направлÑющиеПоказывать _границы ÑлоÑПоказывать _панель менюПоказывать _линейки Показать иÑпользуемые киÑти, шаблоны и градиентыПоказать активное изображениеПоказывать _ÑеткуПоказывать кнопку "Справка"Показать размер изображениÑПоказывать интерактивные границыПоказывать иÑпользование памÑтиПоказывать клавиши быÑтрого доÑтупаПоказывать инÑтрументПоказывать _выделениеПоказывать Ñ_троку ÑоÑтоÑниÑПоказывать полоÑÑ‹ п_рокруткиПоказывать Ñовет при Ñледующем запуÑке GIMPПоказывать подÑказки при запуÑкеПоказывать по_дÑказкиПоказывать маÑштаб в %Показывать маÑштабный коÑффициентСжать каналСокращение выделенной облаÑтиСо_кратить окно по изображениюСократить по границе изображениÑСократить выделение наСократить окно по изображениюРазмерРазмер в памÑти:Размер файлов миниатюр:Размер:ПропуÑк '%s': Ð½ÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Ð¿Ñ€Ð¾Ñ‚Ð¾ÐºÐ¾Ð»Ð° GIMP.МаленькийУменьшенный проÑмотрСглаживаниеСгладить краÑПалецРазмазывание изображениÑВыравнивание по направлÑющимВыравнивание по ÑеткеМÑгкий ÑветОднотонныйИÑточникЯчейкиИнтервал:Редкие точкиОÑобый файлОпределÑет цвет фона вокруг изображениÑСкороÑÑ‚ÑŒ муравьиной дорожки в выделенной облаÑти. Значение указываетÑÑ -в миллиÑекундах (чем меньше значение, тем быÑтрее двигаетÑÑ Ð³Ñ€Ð°Ð½Ð¸Ñ†Ð° -выделенной облаÑти).СкороÑÑ‚ÑŒ:Сфера (уменьшающаÑÑÑ)Сфера (увеличивающаÑÑÑ)Лучи:Спиральный (по чаÑовой)Спиральный (по чаÑовой)РазделитьРавномерно разделить Ñегмент градиентаРавномерно разделить Ñегменты градиентаРавномерно разделить ÑегментРавномерно разделить Ñегмент...Разделить Ñегмент по центруРавномерно разделить ÑегментыРавномерно разделить Ñегменты...Разделить Ñегменты по центрамКвадратный_СоÑтоÑние и текÑтКаÑкадСтандартныйЗапуÑк раÑширенийЗапуÑк раÑширениÑ: '%s' -СоÑтоÑние:ПоÑтоÑнное цветноеПоÑтоÑнное ÑероеСоÑтоÑние и опиÑаниеСоÑтоÑние и текÑтСтанд. отклонение:ПунктирПорÑдковый номерОбвеÑти по контуруОбвеÑти по контуру...Сжать каналОбвеÑти по контуруОбвеÑти выделенную облаÑтьЛиниÑОбвеÑти по контуруОбвеÑти контур Ñ Ð¿Ð¾Ñледними значениÑмиОбвеÑти по контуру...ОбвеÑти выделенное Ñ Ð¿Ð¾Ñледними значениÑмиОбвеÑти выделенное...ИÑпользовать один из инÑтрументовСтиль Ñлементов вокруг текÑта Ñтроки ÑоÑтоÑниÑВычитаниеВычеÑÑ‚ÑŒ из текущего выделениÑÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð°Ñ Ð¸Ð½Ñ‚ÐµÑ€Ð¿Ð¾Ð»ÑциÑКаталог подкачки:_ИнÑтрументы_ТекÑтТекÑтВременный каталог:ОбразцыМеню Ð¾Ð±Ñ€Ð°Ð·Ñ†Ð¾Ð²Ð’Ñ€ÐµÐ¼ÐµÐ½Ð½Ð°Ñ Ð¿Ñ€Ð¾Ñ†ÐµÐ´ÑƒÑ€Ð°Ð”Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ðµ по образцу: '%s' -ТекÑтЦвет текÑтаРедактор текÑтаТекÑтовый ÑлойТекÑÑ‚ изменененТекÑтовые процедурыGIMPÐ’ Вашей уÑтановке GIMP отÑутÑтвует проÑмотрщик Ñправочной ÑиÑтемы.ДейÑÑ‚Ð²ÑƒÑŽÑ‰Ð°Ñ ÐºÐ¸ÑÑ‚ÑŒ. -Щелкните, чтобы открыть диалог "КиÑти".ДейÑтвующий градиент. -Щелкните, чтобы открыть диалог "Градиенты".Ðктивное изображение. -Щелкните, чтобы открыть диалог "Изображение".ДейÑтвующий шаблон. -Щелкните, чтобы открыть диалог "Шаблоны".Цвет фона Ñетки (Ð´Ð»Ñ ÑÑ‚Ð¸Ð»Ñ "Двойной пунктир")Интерпретатор '%s' недоÑтупен, иÑпользование командного режима невозможно.Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° невозможно перекодировать в UTF-8: %s - -Проверьте значение переменной Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ G_FILENAME_ENCODING.Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° '%s' не может быть Ñконвертировано в корректный URL: - -%sЦвет переднего плана Ñеткиgimprc иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¿ÐµÑ€Ñональных -наÑтроек GIMP по умолчанию. -Пути поиÑка киÑтей, палитр, градиентов, шаблонов, -дополнений и модулей также указываютÑÑ Ð·Ð´ÐµÑÑŒ.Измененить горизонтальное разрешение изображениÑÐ’Ñ‹ выбрали текÑтовый Ñлой, но он был изменен Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ других инÑтрументов. Редактирование ÑÐ»Ð¾Ñ Ð¸Ð½Ñтрументом ТекÑÑ‚ приведет к потере Ñтих изменений. - -Ð’Ñ‹ можете продолжить редактировать Ñтот Ñлой или Ñоздать новый.Ðазвание каталога, Ñодержащего пользовательÑкие наÑтройки GIMP, невозможно керекодировать в UTF-8: %s - -Ðаиболее вероÑтно, что в Вашей файловой ÑиÑтеме иÑпользуетÑÑ ÐºÐ¾Ð´Ð¸Ñ€Ð¾Ð²ÐºÐ°, Ð¾Ñ‚Ð»Ð¸Ñ‡Ð½Ð°Ñ Ð¾Ñ‚ UTF-8, и Ð’Ñ‹ не указали Ñто Ð´Ð»Ñ GLib. УÑтановите правильное значение переменной Ð¾ÐºÑ€ÑƒÐ¶ÐµÐ½Ð¸Ñ G_FILENAME_ENCODING.sessionrc иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð´Ð¸Ð°Ð»Ð¾Ð³Ð¾Ð²Ñ‹Ñ… окон -открытых в поÑледний раз при выходе из Gimp. Ð’Ñ‹ можете -наÑтроить Gimp, так чтобы открывать их в Ñтой позиции.ЕÑли размер файла предпроÑмотра окажетÑÑ Ð¼ÐµÐ½ÑŒÑˆÐµ указанного здеÑÑŒ значениÑ, то предпроÑмотр в диалоге Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ð±ÑƒÐ´ÐµÑ‚ обновлен автоматичеÑки.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.ИÑпользуетÑÑ, еÑли отключен режим "Точка за точкой"unitrc иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð²Ð°ÑˆÐµÐ¹ базы данных единиц измерениÑ. -Ð’Ñ‹ можете определить дополнительные единицы и иÑпользовать их также -как вы иÑпользуете вÑтроенные единицы: дюймы, миллиметры, -пункты и пики. Этот файл перепиÑываетÑÑ ÐºÐ°Ð¶Ð´Ñ‹Ð¹ раз, когда -вы выходите из GIMP.Измененить вертикальное разрешение изображениÑОт Ñтой наÑтройки завиÑит то, какой вид придаÑÑ‚ оконный менеджер панелÑм.От Ñтой опции завиÑит, как будет отображатьÑÑ Ð¿Ð°Ð½ÐµÐ»ÑŒ инÑтрументов оконным менеджером.ТемаКаталоги темТемыЕÑÑ‚ÑŒ неÑохраненные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ (%d):ÐедоÑтаточно видимых Ñлоев Ð´Ð»Ñ Ð¾Ð±ÑŠÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ Ð¿Ñ€ÐµÐ´Ñ‹Ð´ÑƒÑ‰Ð¸Ð¼.Ð’Ñегда ÑущеÑтвует выбор между ÑкороÑтью работы и иÑпользованием памÑти. Ð’ большинÑтве Ñлучаев GIMP выбирает первое. Однако, еÑли памÑÑ‚ÑŒ имеет Ð´Ð»Ñ Ð²Ð°Ñ Ñ€ÐµÑˆÐ°ÑŽÑ‰ÐµÐµ значение, включите Ñту функцию.Ðет активного ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ канала Ð´Ð»Ñ ÐºÐ¾Ð¿Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸ÑÐет активного ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ канала Ð´Ð»Ñ Ð²Ñ‹Ñ€ÐµÐ·Ð°Ð½Ð¸ÑÐет активного ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ канала Ð´Ð»Ñ Ð¾Ð±Ð²Ð¾Ð´ÐºÐ¸Ðет активного ÑÐ»Ð¾Ñ Ð¸Ð»Ð¸ канала Ð´Ð»Ñ Ð¾Ð±Ð²Ð¾Ð´ÐºÐ¸Ð•ÑÑ‚ÑŒ неÑохраненное изображение:Похоже, ваш файл Ñоветов GIMP Ñодержит ошибку! Это должен быть файл '%s'. Проверьте уÑтановку.Произошла ошибка при чтении файла '%s'. Будут иÑпользованы параметры по умолчанию. Ð ÐµÐ·ÐµÑ€Ð²Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ Ð²Ð°ÑˆÐµÐ¹ конфигурации была Ñоздана в '%s'.Этот файл Ñодержит набор Ñтандартных размеров изображений, -которые иÑпользуютÑÑ Ð² качеÑтве образцов.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¾Ð±Ñ€Ð°Ð·Ñ†Ð¾Ð².Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ‚ÐµÐ¼, -уÑтановленных пользователем.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ð¾Ð², которые должны отображатьÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ в GIMP Ð’ процеÑÑе поиÑка шрифтов GIMP проверÑет Ñтот каталог так же, как и ÑиÑтемный. ИÑпользуйте Ñтот каталог в том Ñлучае, еÑли какие-то шрифты вы будете иÑпользовать только при работ в GIMP. Во вÑех оÑтальных ÑлучаÑÑ… шрифты раÑполагаютÑÑ Ð² общем каталоге.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð², Ñодержащих -параметры инÑтрумента "Контуры".Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð², Ñодержащих -параметры инÑтрумента "Уровни".Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð² инÑтрументовЭтот каталог иÑпользуетÑÑ GIMP Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных -пользователем и уÑтановленных Ñкриптов. GIMP проверÑет Ñтот каталог -в дополнение к ÑиÑтемному при поиÑке Ñкриптов.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем, -временных или других неподдерживаемых ÑиÑтемой динамичеÑки -загружаемых модулей. По умолчанию в файле gimprc указана проверка -Ñтого подкаталога, в дополнение к ÑиÑтемному при поиÑке модулей -загружаемых при инициализации.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем, -временных или других неподдерживаемых дополнений. Gimp проверÑет Ñтот каталог -в дополнение к ÑиÑтемному при поиÑке дополнений.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем, -временных или других неподдерживаемых дополнений. По умолчанию -в файле gimprc указана проверка Ñтого подкаталога, -в дополнение к ÑиÑтемному при поиÑке дополнений.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем киÑтей. -По умолчанию в файле gimprc указана проверка Ñтого -подкаталога, в дополнение к ÑиÑтемному при поиÑке -киÑтей.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем градиентов. При поиÑке градиентов GIMP проверÑет Ñодержимое Ñтого каталога в дополнение к ÑиÑтемному.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем палитр. -По умолчанию в файле gimprc указана проверка Ñтого -подкаталога, в дополнение к ÑиÑтемному при поиÑке -палитр.Этот каталог иÑпользуетÑÑ Ð´Ð»Ñ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñозданных пользователем шаблонов. -По умолчанию в файле gimprc указана проверка Ñтого подкаталога, -в дополнение к ÑиÑтемному при поиÑке -образцов.Этот каталог иÑпользуетÑÑ GIMP Ð´Ð»Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð³Ð¾ Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ -буферов отката Ð´Ð»Ñ ÑƒÐ¼ÐµÐ½ÑŒÑˆÐµÐ½Ð¸Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ð°Ð¼Ñти. ЕÑли -GIMP некорректно завершил работу, файлы могут оÑтатьÑÑ Ð² Ñтом каталоге -в виде: gimp<#>.<#>. Эти файлы беÑполезны поÑле Ð¿Ñ€ÐµÑ€Ñ‹Ð²Ð°Ð½Ð¸Ñ -ÑеанÑа GIMP и могут быть удалены.Этот каталог будет Ñодержать Ñ€Ñд важных файлов. -Ð”Ð»Ñ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð¹ информации о файле или -подкаталоге в дереве щелкните кнопкой мыши на его названии.Это диÑÑ‚Ð°Ð½Ñ†Ð¸Ñ Ð² пикÑелÑÑ…, на которой Ñрабатывает Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ "прилипаниÑ" Ð´Ð»Ñ Ñетки и направлÑющих.Эта программа раÑпроÑтранÑетÑÑ Ð² надежде, что она будет полезна, -но БЕЗ КÐКИХ-ЛИБО ГÐРÐÐТИЙ, в том чиÑле подразумеваемой гарантии -MERCHANTABILITY или ПРИМЕÐИМОСТИ ДЛЯ КÐКИХ-ЛИБО ЦЕЛЕЙ. -Подробнее об Ñтом Ñмотрите GNU General Public License.Эта программа - ÑвободнаÑ; вы можете раÑпроÑтранÑÑ‚ÑŒ ее и/или изменÑÑ‚ÑŒ -в ÑоответÑтвии Ñ ÑƒÑловиÑми GNU General Public License, опубликованной -Free Software Foundation; в Лицензии верÑии 2, или (по вашему уÑмотрению) -любой более поздней верÑии.Это текÑтвое поле ограничено %d Ñимволами.У Ñтого инÑтрумента нет параметров.Окно Ñодержит %d открытых закладок. Закрытие окна приведет к их закрытию.ПорогПорог не дейÑтвует на индекÑированные Ñлои.Порог:Миниатюры %d %dРазмер кÑша:Размер кÑша:Ðаклон:КрошечныйЗаголовок и СоÑтоÑниеВ контурЧтобы редактировать клавишу быÑтрого доÑтупа, нажмите на ÑоответÑвующей Ñтроке и -введите новое Ñочетание клавиш. Чтобы удалить клавишу быÑтрого доÑтупа нажмите Backspace.РазвлечениеПереключить быÑтрую маÑкуПереключить быÑтрую маÑкуСлишком много Ñообщений об ошибках!Параметры инÑтрументовПараметры инÑтрументовПереключатель инÑтрумента %s_Параметры инÑтрументовПиктограмма инÑтрументаПиктограмма инÑтрумента Ñ Ð¿ÐµÑ€ÐµÐºÑ€ÐµÑтьемПанель инÑтрументовМеню панели инÑтрументовМеню панели инÑтрументовИнÑтрументыМеню панели инÑтрументовТакие инÑтрументы, как "Заливка" или "Свободное выделение" при работе иÑпользуют алгоритм зернового заполнениÑ. Зерновое заполнение начинаетÑÑ Ñ Ð¸Ð·Ð½Ð°Ñ‡Ð°Ð»ÑŒÐ½Ð¾ выбранного пикÑела и продолжаетÑÑ Ð´Ð¾ тех пор, пока разница между изначально выбранным и заполнÑемым пикÑелом не превыÑит определенного порога. ЧиÑло, указываемое здеÑÑŒ, определÑет Ñтот порого по умолчанию.Про_зрачноÑтьПреобразовать альфа-канал в маÑкуПреобразованиеПреобразовать каналÐаправление преобразованиÑПреобразование ÑлоÑПреобразовать контурПреобразование текÑтового ÑлоÑПроцедуры инÑтрументов риÑованиÑПреобразование ÑлоÑПреобразовать контурПреобразовать выделениеПреобразованиеПроцедуры преобразованиÑПреобразование...ПереводПрозрачноÑтьТип прозрачноÑти:Ð¢Ñ€ÐµÑƒÐ³Ð¾Ð»ÑŒÐ½Ð°Ñ Ð²Ð¾Ð»Ð½Ð°ÐŸÐ¾Ð»Ð½Ð¾Ñ†Ð²ÐµÑ‚Ð½Ð¾ÐµÐ¢Ð¸Ð¿Ð¢Ð¸Ð¿ %sÐажмите Ñочетание клавишÐажмите Ñочетание клавиш или Backspace Ð´Ð»Ñ Ð¾Ñ‚Ð¼ÐµÐ½Ñ‹Ðе удалоÑÑŒ добавить маÑку ÑлоÑ, так как у ÑÐ»Ð¾Ñ ÑƒÐ¶Ðµ еÑÑ‚ÑŒ маÑка.Ðе удалоÑÑŒ вырезать/Ñкопировать из-за того, -что Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ пуÑта.Ðевозможно открыть теÑтовый файл подкачки. Чтобы избежать потерю данных, проверте раÑположение и права на файл подкачки в наÑтройках. (ÑÐµÐ¹Ñ‡Ð°Ñ "%s").Ðевозможно открыть файл подкачки. GIMP иÑпользовал вÑÑŽ доÑтупную оперативную памÑÑ‚ÑŒ и не может иÑпользовать файл подкачки. Ваше изображение может быть утерÑно. Сохраните его, перезапуÑтите GIMP и проверьте пути к файлу подкачки в наÑтройках.Ðе удалоÑÑŒ вызвать %s . Возможно, запрашиваемое дополнение рухнуло.ÐеопределеноОтменитьИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¾Ñ‚Ð¼ÐµÐ½Ð˜ÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¾Ñ‚Ð¼ÐµÐ½Ð•Ð´Ð¸Ð½Ð¸Ñ†Ñ‹ÐеизвеÑтный ÐеизвеÑтный тип файлаÐеизвеÑтный тип файла палитры: -%sВыгрузитьБезымÑнныйБезымÑнноеИÑпользовать "Точка за точкой" по умолчаниюИÑпользовать быÑтрые клавишиИÑпользовать внешний проÑмотрщикИÑпользовать вÑе видимые Ñлои при Ñокращении выделениÑИÑпользовать черно-белую (1-бит) палитруИÑпользование цвета из градиентаИÑпользовать Ñвою палитру:ИÑпользовать информационное окноИÑпользовать оптимизированную Ð´Ð»Ñ WWW палитруФайл региÑтрации уÑтановкиПользовательÑкий интерфейÑÐ’ÑпомогательноеЯркоÑтьЯркоÑтьРежим векторовВерÑÐ¸Ñ %s Ñоздана Ð´Ð»Ñ Ð’Ð°ÑВерÑиÑ:ВертикальноеСмещение по вертикали Ð´Ð»Ñ Ð¿ÐµÑ€Ð²Ð¾Ð¹ линии Ñетки. Значение может быть отрицательным.РаÑÑтоÑние между вертикальными линиÑмиОчень большойОчень маленькийПроÑмотрПроÑмотр в виде _таблицы_ПроÑмотр в виде ÑпиÑкаПроÑмотр в виде таблицыПроÑмотр в виде ÑпиÑкаОптичеÑкий клаÑÑ:ОптичеÑÐºÐ°Ñ Ð³Ð»ÑƒÐ±Ð¸Ð½Ð°:Внимание: Ðе удалоÑÑŒ загрузить данные из: - -%sВнимание:Ðе удалоÑÑŒ Ñохранить: - -%sВнешний проÑмотрщикВнешний проÑмотрщикДобро пожаловать -в пользовательÑкую %d.%d уÑтановку GIMP При включении Ñтой функции Ñодержимое диалога менÑетÑÑ Ð² ÑоответÑтвии Ñ Ñ‚ÐµÐ¼, какое изображение активно в данный момент.При включении Ñтой опции GIMP отображает мнемоничеÑкие правила в меню.При включении Ñтой опции вÑе инÑтрументы Ð´Ð»Ñ Ñ€Ð¸ÑÐ¾Ð²Ð°Ð½Ð¸Ñ Ð¿Ð¾ÐºÐ°Ð·Ñ‹Ð²Ð°ÑŽÑ‚ Ð¾Ñ‡ÐµÑ€Ñ‚Ð°Ð½Ð¸Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ киÑти.При включении Ñтой опции изображение ÑтановитÑÑ Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ‹Ð¼, когда его окно получает фокуÑ. Это полезно в работе Ñ Ð¾ÐºÐ¾Ð½Ð½Ñ‹Ð¼Ð¸ менеджерами в которых Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð´Ð°Ð½Ð¸Ñ Ñ„Ð¾ÐºÑƒÑа окну по нему надо кликнуть мышкой.При включении Ñтой опции во вÑех диалогах будет отображатьÑÑ ÐºÐ½Ð¾Ð¿ÐºÐ° "Справка", нажав на которую можно обратитьÑÑ Ðº ÑиÑтеме помощи. ЕÑли Ñта Ð¾Ð¿Ñ†Ð¸Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°, ÑиÑтему помощи можно вызвать кнопкой F1.Когда Ñта Ð¾Ð¿Ñ†Ð¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°, выпадающее меню можно отцепить от панели инÑтрументов.Когда Ñта Ð¾Ð¿Ñ†Ð¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð°, кнопкой F1 вызываетÑÑ ÑиÑтема помощи.ОпределÑет, надо ли ÑохранÑÑ‚ÑŒ неизмененные поÑле Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ñ„Ð°Ð¹Ð»Ñ‹.При включении Ñтой опции GIMP Ñоздает отдельное информационное окно Ð´Ð»Ñ ÐºÐ°Ð¶Ð´Ð¾Ð³Ð¾ изображениÑ.При включении Ñтой опции X-Ñервер определÑет позицию мыши поÑле каждого движениÑ. Это означает, что риÑование большими киÑÑ‚Ñми будет более точным, но медленным. Однако на некоторых Ð¥-Ñерверах включение Ñтой опции обеÑпечивет более быÑтрую работу.При включении Ñтой опции во Ð²Ñ€ÐµÐ¼Ñ Ñ€Ð¸ÑÐ¾Ð²Ð°Ð½Ð¸Ñ Ð²Ð¸Ð´ÐµÐ½ курÑор.При включении Ñтой функции Ñетка включена по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать Ñетку".При включении Ñтой функции направлÑющие включены по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать направлÑющие"Размер окна автоматичеÑки изменÑетÑÑ Ð¿Ñ€Ð¸ увеличении и уменьшении размеров изображениÑ.Размер окна автоматичеÑки изменÑетÑÑ Ð¿Ñ€Ð¸ маÑштабировании изображениÑ.При включении Ñтой функции показ границы ÑÐ»Ð¾Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½ по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать границы ÑлоÑ".При включении Ñтой функции панель меню включена по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать панель меню".При включении Ñтой функции линейки включены по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать линейки"При включении Ñтой функции полоÑÑ‹ прокрутки включены по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать полоÑÑ‹ прокрутки".При включении Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ ÐºÐ¸ÑÑ‚ÑŒ иÑпользуетÑÑ Ð²Ñеми инÑтрументами.При включении выбранный градиент иÑпользуетÑÑ Ð²Ñеми инÑтрументами.При включении выбранный шаблон иÑпользуетÑÑ Ð²Ñеми инÑтрументами.При включении Ñтой функции показ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¾Ð±Ð»Ð°Ñти включен по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать выделение облаÑти".При включении Ñтой функции Ñтрока ÑоÑтоÑÐ½Ð¸Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð° по умолчанию. Это так же можно Ñделать командой "ПроÑмотр->Показать Ñтроку ÑоÑтоÑниÑ".При включении Ñтой функции каждый пикÑел Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÐµÑ‚ ÑоответÑтвовать пикÑелу на ÑкранеУÑтанавливает маÑштаб открываемого Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ - по размеру окна или в маÑштабе 1:1.При включении Ñтой опции клавиши быÑтрого доÑтупа к подÑвеченному меню можно менÑÑ‚ÑŒ "на лету".БелоеЦветовой Ð±Ð°Ð»Ð°Ð½Ñ Ð´ÐµÐ¹Ñтвует только на цветные Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ñ Ð² формате RGB.ШиринаШирина:Управление внешним видом оконУправление внешним видом Ð¾ÐºÐ¾Ð½ÐŸÐ¾Ð·Ð¸Ñ†Ð¸Ñ Ð¾ÐºÐ½Ð°Ð—Ð°Ð¿Ð¸ÑÑŒ '%s' -XОшибка XCF: Ð½ÐµÐ¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ %d XCF-файлаВнимание: формат файла XCF верÑии 0 -не ÑохранÑет индекÑированные цветовые карты правильно. -Ð¢ÐµÐºÑƒÑ‰Ð°Ñ ÐºÐ°Ñ€Ñ‚Ð° будет заменена на карту в градациÑÑ… Ñерого.YЖелтыйЖелтый:Ð’Ñ‹ пытаетеÑÑŒ Ñоздать изображение размером %s.Панели диалогов можно прикрепить Ñюда.Ð’Ñ‹ должны были получить копию GNU General Public License -вмеÑте Ñ Ñтой программой; еÑли Ñтого не произошло, напишите в Free Software -Foundation, Inc., 59 Temple Place - Suite 330, Boston, -MA 02111-1307, USA.Ðадо перезапуÑтить GIMP, чтобы -подейÑтвовали Ñледующие изменениÑ:УÑтановка GIMP не была завершена:При Ñледующем запуÑке GIMP Ð´Ð»Ñ ÑƒÑтройÑтв ввода будут иÑпользованы наÑтройки по умолчанию.При Ñледующем запуÑке GIMP будут иÑпользованы клавиши быÑтрого доÑтупа по умолчанию.При Ñледующем запуÑке GIMP будет иÑпользовано раÑположение окон по умолчанию.Правила маÑÑˆÑ‚Ð°Ð±Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð°ÐœÐ°Ñштаб 1:1Увеличить до размера окнаУвеличение маÑштабаУменьшение маÑштабаМаÑштабМаÑштаб:Увеличить до размера окнаУвеличение маÑштабаУменьшение маÑштабаВернуть к размеру окнаМаÑштаб: %d:1При изменении размера окна изменÑÑ‚ÑŒ размер изображениÑУвеличение маÑштабаИзменение маÑштабаУменьшение маÑштабаМаÑштаб:[ОÑновное изображение]О прог_рамме_ЗахватитьДобавить цвет из фонаДобавить цвет из оÑновногоДо_бавить закладкуДобавить к выделениюРаÑширенные параметры_ÐÑрографВÑеПрикрепить ÑлойÐнтиалиаÑингПараметры вращениÑ...ИмитациÑ_ПерÑпективаÐвтоBЦвет фонаЦвет фона:_Черный (ÐбÑолютно прозрачный)Ð¤ÑƒÐ½ÐºÑ†Ð¸Ñ ÑÐ¼ÐµÑˆÐ¸Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ ÑÐµÐ³Ð¼ÐµÐ½Ñ‚Ð°Ð¤ÑƒÐ½ÐºÑ†Ð¸Ñ ÑÐ¼ÐµÑˆÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸Ñ_РазмываниеЯркоÑÑ‚ÑŒ:КиÑти:_КиÑти_КиÑти, шаблоны и градиентыЗаливка_БуферПо _цветуВыделение по цветуCВид начала:_Каналы_ОчиÑтить ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ñ Ð¾Ð± ошибкахО_чиÑтить иÑторию отмен_ШтампЗакрыть_Закрыть закладкуОблакаИнÑтрументы цвета_ЦветÐаÑтроить цвет и непрозрачноÑÑ‚ÑŒ..._КонтекÑтКонтекÑÑ‚Ð½Ð°Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒ_Копировать_Скопировать из буфера Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼Ð¡Ð¾Ð·Ð´Ð°Ñ‚ÑŒ образец из изображениÑ...Ка_дрировать и изменить размерКа_дрироватьКривыеКривые...Темный_Цвета по умолчанию_Удалить киÑтьУдалить буферУдалить каналУдалить цвет_Удалить градиент...Удалить изображение_Удалить Ñлой_Удалить палитру...Удалить контур_Удалить шаблон...Удалить параметрыУдалить ÑегментУдалить выделениеУдалить образец_ОбеÑцвечивание_Выбрать закладку_СоÑтоÑние уÑтройÑтва_Диалоги_Отменить изменениÑУдалить текÑтовую информациюИÑкажениÑТочка за точкойСо_здать копию_ПравкаПравка киÑти..._Правка атрибутов канала..._Правка цвета..._Правка градиента...Правка атрибутов ÑлоÑ..._Правка палитры...Правка атрибутов контура..._Правка шаблона...Редактировать образец...Выделение _ÑллипÑаВключить пред. _проÑмотр Ñлоев и каналов_Громадный_Выравнивание_ЛаÑтикЦвет пер.плана_ФайлФон:Изображение к выÑоте окнаСвеÑти изображение_ЗеркалоОтразить ÑегментОтразить выделениеПлавающее_Шрифт_ШрифтыЦвет переднего плана:С_вободное выделениеGОбщиеГ_игантÑкийГрадиент_ГрадиентГрадации _ÑÐµÑ€Ð¾Ð³Ð¾ÐšÐ¾Ð¿Ð¸Ñ ÑÐ»Ð¾Ñ Ð² оттенках _ÑерогоУвеличение..._ÐаправлÑющаÑ_ЖеÑткоÑÑ‚ÑŒ_СправкаГоризонтальнаÑ:Тон:_Огромный_ПиктограммаПиктограмма:И_зображение_ИзображениÑИмпортИмпортировать палитру...Ин_декÑированное...Ин_формационное окноПереÑечь Ñ Ð²Ñ‹Ð´ÐµÐ»ÐµÐ½Ð¸ÐµÐ¼_ИнвертированиеВид угла:БольшойСлой_Слои_Слои, каналы и контурыКрайней левой точкиСоÑедней Ñлева к крайней правой точке_Уровни...СветлыйСветовые ÑффектыОÑветление:_Стиль линии:ЛинейнаÑСвÑзаныйЗагрузить цвет крайней левой изОпуÑтить каналОпуÑтить ÑлойОпуÑтить контурMВручнуюКарта_МаÑка_МаÑка -> Ð’Ñ‹Ð´ÐµÐ»ÐµÐ½Ð½Ð°Ñ Ð¾Ð±Ð»Ð°ÑÑ‚ÑŒ_МакÑ. чиÑло цветов:_ИзмерительСреднийОбъединить палитры...Объединить импортированные контурыИÑпользовать параметры из GIMP 2.0_Разн. инÑтрументыОÑтрота ÑкоÑов:Ре_жим_ДиÑпетчер модулей_ПеремещениеÐазвание:Природа_ÐÐ¾Ð²Ð°Ñ ÐºÐ¸ÑÑ‚ÑŒ_Ðовый канал_Ðовый канал..._Ðовый Ñлемент..._Ðовый градиент_Ðовый Ñлой_Ðовый Ñлой...ÐÐ¾Ð²Ð°Ñ Ð¿Ð°Ð»Ð¸Ñ‚Ñ€Ð°_Ðовый контурÐовый контур..._Ðовый шаблонÐовый образец...Ðовое окно_Ðовый..._След. ÑоветШумСнÑÑ‚ÑŒ_Смещение_ÐепрозрачноÑÑ‚ÑŒ_Открыть изображение_Открыть..._Цвет фонаИнÑтрументы риÑованиÑ_КиÑÑ‚ÑŒ_Палитра_Ð’Ñтавить_Ð’Ñтавить буфер_Ð’Ñтавить из буфера Ñ Ð¸Ð¼ÐµÐ½ÐµÐ¼...Ко_нтурыШаблоныПе_Ñ€Ñпектива_ПоÑтеризовать..._ÐаÑтройкаПредварительный ПроÑмотрРазмер пред._проÑмотра_Пред. ÑоветРазмер при печати...СвойÑтваВключить быÑтрую маÑкуВ_ыходR_RGB_РадиуÑПоднÑÑ‚ÑŒ канал_ПоднÑÑ‚ÑŒ ÑлойПоднÑÑ‚ÑŒ контурПоднÑÑ‚ÑŒ окна_Развернуть или открыть изображениеÐазначитьПр_Ñмоугольное выделениеПовто_рПовторить %sОбновить киÑтиО_бновить градиентыО_бновить палитры_Обновить шаблоны_Удалить неиÑпользуемые цвета из окончательной палитрыРендеринг_ЗаменитьСделать копию Ñегмента...Сделать копию выделениÑ...Перечитать ÑпиÑок шрифтовПорÑдок/видимоÑÑ‚ÑŒ по умолчаниюВоÑÑтановить параметры уÑтройÑтв ввода по умолчанию_ВоÑÑтанавливать Ñохранённые быÑтрые клавиши при запуÑкеВоÑÑтанавить позицию окон по умолчаниюЗагрузить параметры изЦвет крайней правой точкиСоÑедней Ñправа к крайней левой точке_ВращениеÐаÑыщенноÑÑ‚ÑŒ:_СохранитьСохранить цвет крайней левой вСохранить параметры вСохранÑÑ‚ÑŒ параметры уÑтройÑтв ввода при выходе_СохранÑÑ‚ÑŒ быÑтрые клавиши при выходеСохранÑÑ‚ÑŒ позицию окон при выходе_МаÑштабМаÑ_штабировать...МаÑштабировать Ñлой...МаÑштабировать к размеру изображениÑ_Выделение_ВыделениеП_равка выделенной облаÑтиИнÑтрументы выделениÑ_ФормаРе_зкоÑтьПоказывать выделениеПоказывать на панелиСинуÑоидаМаленькийПале_цДиÑÑ‚Ð°Ð½Ñ†Ð¸Ñ "прилипаниÑ"ОбвеÑти выделенноеОбвеÑти выделенное...ВычеÑÑ‚ÑŒ из выделениÑСтиль _закладок_Образцы:_Образцы_ТекÑтПоро_г...Крошечный_Совет днÑ_ИнÑтрументы_ИнÑтрументыП_реобразовать альфа-канал ÑлоÑПре_образованиеИнÑтрументы преобразованиÑ_ОтменаОтменить %sВертикальнаÑ:ПроÑмотрВидимыйВебИÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÐ¼Ð°Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ð° проÑмотра Ñправки:_Белый (ÐбÑолютно непрозрачный)_Ð‘Ð°Ð»Ð°Ð½Ñ Ð±ÐµÐ»Ð¾Ð³Ð¾_Ширина:Залить изображениемРазрешение по X:X:РаÑш.YРазрешение по Y:Y:МаÑштабМаÑштаб (%s)цветакопиÑ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.8/po/sk.gmo gimp-2.2.9/po/sk.gmo --- gimp-2.2.8/po/sk.gmo 2005-03-21 11:23:33.000000000 +0100 +++ gimp-2.2.9/po/sk.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,441 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·:¸;¹-V¹s„¹?ø¹<8ºSuºGɺh»sz»Eî»q4¼M¦¼7ô¼A,½Un½LĽ8¾BJ¾8¾Aƾ;¿;D¿ €¿Š¿ -‘¿ œ¿ ¦¿ -°¿ »¿Ç¿ ׿ -å¿ð¿ó¿À -À %À/À#8À\À|À’À7™ÀÑÀèÀ -Á ÁÁ -2Á =ÁGÁPÁYÁ hÁ vÁ ‚Á -Á -›Á ¦Á ³Á¿Á ÔÁ àÁìÁñÁÂM†^Â:åÂ5 Ã$VÃ{ÃÕåëÃËÃÛÃõÃýÃÄ&Ä8ÄGÄfÄyĊĦĿÄÎÄ ãÄñÄÅÅ7ÅPÅhÅÅ–Å+±Å8ÝÅÆ+ÆIÆcÆkƉƢÆÁÆ×ÆïÆÇ'Ç=Ç'UÇ}Ç™Ç -¶ÇÁÇ ØÇäÇ ûÇ# È-È ->È -IÈTÈdÈtÈjŠÈ6õÉ5,ÊbÊ{Ê€ÊÊš–Ê -1Ë<ËXËtËË –Ë £Ë±Ë¹ËÏË æËôË? -Ì;J̆Ì@™Ì ÚÌ èÌöÌ Í'ÍEÍXÍ _Í'kÍ“Í«ÍËÍåÍ üÍ -ÎÎ+ÎDÎUÎ^Î fÎtΑΥÎAºÎ7üÎ 4Ï@Ï HÏTÏdÏ mÏŽÏ—Ï!ŸÏ ÁÏ,ËÏ -øÏÐ -Ð ÐÐ ;ÐEÐ XÐ fÐ tÐ2дмÐÌÐßÐòÐûÐÑ ÑÑ$Ñ3Ñ <ÑFÑpVÑÇÑÌÑÜÑ íÑ ÷Ñ!Ò&ÒAÒWÒ`ÒNrÒ?ÁÒQÓLSÓ; ÓnÜÓ,KÔ!xÔ4šÔ ÏÔOðÔ3@Õ.tÕ*£Õ)ÎÕøÕ -Ö%Ö.Ö 7ÖCÖWÖvÖ‹Ö¡Ö¹Ö$ÒÖ÷Ö×2×'M×u×זר×.¸×*ç× Ø Ø;ØVØiØ{ØØ•ØجØÄØßØ äØîØ÷Ø Ù#Ù6ÙEÙIbÙK¬ÙMøÙLFÚ?“Ú6ÓÚ, -Û"7ÛZÛ&yÛ8 Û*ÙÛÜ( ÜsIÜ@½Ü,þÜ,+Ý<XÝ?•Ý(ÕÝþÝ$Þ5Þ GÞQÞlÞ -Þ ŒÞ˜Þ°ÞÉÞÞÞñÞøÞþÞß0ß@ß^ßwß:ˆßÃßÓßãß êßöß -àà3àNà1Wà‰à›à -­à¸àÍààà éà õà -ÿà -á(á3CáwáŽá¡á½á!Ûáýáâ5âPâjâ.…â´âÑâíâã -ã -&ã1ãŠ9ã ÄãÑã Úãäã(ôã-ä-Käyä–ä'¬ä'Ôäüäå!å3åKå#då -ˆå1“å!Åå6çåæ36æ.jæ+™æ+Åæ+ñæ)ç5Gç}ç…ç•çªçÄçÝçôç-è2<èoè1‰è»èÖèîèé é?éHé*bééŸé®é+¿é -ëéöé -êê5êKê[ênêƒê’ê¥ê¬ê½ê Öêâê;éê%ë.ë=ëNë gëtë ë -—ë¢ë·ëËëàëôëìì/ìIì bìpì‡ì˜ì­ì Êì×ìßì/æì%í<íRíqí6ŽíÅíÙíëíýíî,î;îKîaîuîˆîšî®î½îÒî åîóî#ï&ï BïcïzïŠï ªï -·ï2Âïõïûïð -ðð&ð6ð>ð GðTðkðƒð -¡ð¬ðÁðÖðëðûð ñ !ñ/ñCñRñ/ZñQŠñRÜñ0/ò `ò lòzòò ¥ò¯òÀò -×ò!âòóó-ó?óQó`óuó‡ó—ó§ó®ó¿óÔóéó?ýó(=ôfôzôô¡ô´ôÇôÙôìô#õ,õ BõOõ^õnõvõ’õ«õÊõêõö ö)ö?ö!Yö{ö™ö¬öÀöÜö#ëö÷#÷>÷N÷g÷w÷‰÷§÷¹÷É÷Ù÷è÷1ø 3ø@øWøwø:‘ø&Ìøóø$üø'!ùIù"iù-Œùºù -Öùáù ÷ù2ú(4ú]úbúuú‡ú ú*Àúëú, û!8ûZû&xûŸûM¼û^ -üiüoüxü‡ü¢ü#»üßü úü ý'ý0ý8Jý<ƒýÀýÚýôý þ!þ2þIþbþzþ’þ -²þ,½þ)êþÿ4ÿHRÿ?›ÿ5Ûÿ=DOF”<Û<U5×J OXK¨sôJhV³T -z_ Úèø +2I \hx²ÃÛø'A[m~™©ÄÞü %!-Om&‰&°&×þ / @L^pœ¯ÅØ ì  , ? R e } š · Ë +é  - - - -' -2 -G -Y -a - h -Sv -Ê -á -¡ê -Œ › ¹ Î ã ì û  -  + L [  j t |  ¤ · ¼  × ä ú  ( = ,L y Š‹ þ21‹3 ¿|ËH M}Y×ô 1BJ[s0‡0¸éGýEMVfz–¥­¶¿ßò%#I]a1{-­ Û è%ò 8 E S ]go x‚™"­&Ð÷ *?_G -§ ²¼ Î ØLâ+/Q[­µ8Æÿ  ' 5?U -ep v „j‘žüA›<Ý6QZn–¦"¹Üð,2Ka.pŸ¯Z¾, ;HQa t‚”¬ÀÓå ÷  ! -+6O Vbt}“#@"^ž §µÊÞïlNoP¾ ( !@  b !l Ž ¤ ³ » Ù ó !&!'?!)g!5‘!1Ç!3ù! -"N"8m" ¦"²"Å"2Ö" ##26#i#~# •#¡#¹#É#Û#í#$$ 0$=$P$m$„$$Ÿ$Ä$ã$ø$%%>%X%'v%!ž%À%Ø%è%þ%&8&'V&!~& & ¸&Å&Ù&ö& '$('M'l')€' ª(¶(Ë(ß("î( -))$)6)J)[)9b)œ)­)Å)Ø) ð)þ)**).*)X*‚**¸*Õ*í* +#+7+ >+L+i+ˆ+›+[¤+,<,E,_,o,v,‡,—,%§, Í,×,ë,ô,--(4-)]-‡-¢- º- Ç- Õ-ã-..,.G.X.o..™.´.Å.ß.ð.//1/7/@/\/ -b/ m/y/~/•/±/ É/×/ò/00 ,0'M0u0$’0·0À0È0å0/121;1D1U1e1t1†1—1·1#Õ1#ù12<2N2_2r2†2£2$»2à2&ï2#3:3A3H3O3W3,o3œ3³3Ó3æ3÷34 44*4B4I4]4n4Œ4 4¶4È4à4ñ455+5?5Y5k5‡5$¢5$Ç5ì56 -66 +676#I6m6t6 -|6 ‡6”6ª6Å6Ü6ô6 7 7737 C7 Q7$^7ƒ7“7©7 À7 Î7 Û7$è7 8 8#*8N8 ]8 j8Dx8½8(Ü89%"9(H99q9«9º9 Ù9 ç9ô9ü9 : :4: D:Q:Bg:Aª:"ì:;%;5;>; E; S; `;m;€;’;™;—¢; :<H<`<g<o<x<Š<§< ¼<Ý<ö< = &=G=!f=ˆ=¨=È= ã=> > +> 8>E> X>f>l> >h‰>.ò>!?1)?[?0d?•?µ?É?$Û?!@5"@X@`@h@ o@}@’@¤@µ@Å@Ô@ Û@é@ÿ@AA$A8ASA cApA„A+A#ÉAíAþAB B"B)2B)\B†B BºBÌB0ÝBCC %C2C9CLC^C mCzC CC˜C C ¹CÃC ÛC)èCD"D6D TDbDvDD ¢D®DÀD ÖDäDêDGñDF9E€E”E¤EÃE*âE* F¿8F7øF0GAGCQG•H -¤H¯H ¿H ËH&ÙHI3I -LIWIlII…IŽI ¡I «IµIÇI·ÙI‘J©J¾J ÆJÓJÛJ ãJ$ïJ%K:K LKZKsKˆK šK¨K·K»KÕK æK ðK!ýKL.LDLdLuL…L"–L ¹LÃLÌLÝLùLM'M>MNMgM€M‘M­M¾MÕMåM$ýM#"NFN LNXN-rN* N+ËN+÷N!#OEO UOGbOiªOFPI[PJ¥P ðP+üP>(QgQQšQ °Q -ºQÅQ%ËQ&ñQR)R;RKR [R#iR#R"±RPÔR%S9SLSjS‰SžS±SÑSñSTT6TUTgT<…T,ÂTïTUU+'USUpU…UœU­U¾UÎU âUîU VV2VNVbVuVŠVŸV¶VÒV*ñVW7W&VW1}W!¯W-ÑWÿWX(XAXZXrX’X«X*ÄX4ïX$Y7Y JYXYiYYB˜Y#ÛYÿYZZ%ZPl -Ql!\l~l–l¯l&Çl$îl&m):m*dmm¦mÀmÑmémn!n9nQnÑjn1y -ñyüyzz z$z¬"L¬(o¬'˜¬:À¬$û¬ ­:­S­'f­)Ž­¸­Ô­æ­ê­ó­®®'®I.®(x®¡® °® -½®È®à®ö® ¯"¯4¯.F¯,u¯¢¯²¯1¯Mô¯2B°cu°”Ù°Én±.8²Bg²Zª²X³g^³]Æ´y$µzžµr¶uŒ¶·~’·…¸‡—¸G¹Gg¹F¯¹uö¹’lºeÿº…e»Žë»z¼:€¼»¼ü ̼Ú¼î¼ý¼½/½A½Ͻѽؽ1à½*¾Õ=¾?¿(S¿y|¿lö¿icÀ.ÍÀ üÀ -Á Á *Á4ÁLÁeÁ zÁ -‡Á’Á¦Á3¹Á íÁùÁ ÂÂ# ; GÂQÂj„“§¿ÂÎÂ×ÂèÂ÷ -à à +Ã8Ã;ÃJÃZÃxÖà ³ÃÀÃÆÃÏÃØà -ôÃÿà ÄÄ*Ä-ÄBÄKÄ[Ä -vÄ Ä‹ÄœÄ¤Ä¶Ä½ÄÚÄãÄ úÄÅ'#ÅKÅ`Å sÅ -ŊŤŸÅÍÅáÅõÅÆ Æ6ÆJÆ^ÆmÆ!€Æ¢Æ³ÆÃÆ -ÚÆåÆõÆ ÇÇ Ç ?Ç KÇ WÇ dÇnǃǢǵÇÊÇèÇüÇÈ-ÈDÈ&WÈ ~È ˆÈ–ÈœÈ¬È ´È'ÁÈéÈ ûÈÉÉ .É;ÉCÉKÉ\ÉlÉ oÉ |É‰É ’ÉœÉ!¬É ÎÉ ÚÉ äÉ -îÉ ùÉ Ê -ÊÊ"Ê *Ê 4Ê>ÊFÊ]ÊmÊ€Ê ”ʡʳʼÊÄÊÌÊåÊ$úÊ Ë+ËFË XËdË -tË Ë‰Ë¤Ë¶ËÈËÙË -ÜËçËíËôËÌ!Ì )Ì3ÌFÌ0f̸̗̟̰ÌÊÌÒÌ ÛÌåÌ ôÌÍÍ&Í 5ÍCÍ TÍ bÍoÍ ÍÍ¡Í°Í·ÍÉÍÏÍ ÕÍßÍçÍ úÍÎÎ+Î4Î <ÎFÎWÎpÎwÎ ~ΌΠžÎ ªÎ´ÎÉÎßÎ ôÎÏÏ Ï#Ï(Ï1ÏDÏWÏiÏ#~Ï¢ÏÀÏ -×Ï âÏìÏþÏÐ"Ð13Ð eÐ -rÐ}ЕЬÐ%ÉÐKïÐ?;Ñ9{ѵÑÌÑ$áÑ -Ò -Ò Ò&Ò@Ò9XÒ,’Ò'¿ÒçÒïÒÓ?ÓYÓaÓiÓyÓ‹Ó ‘ÓÓ¸Ó ÔÓâÓéÓñÓ Ô Ô6Ô JÔ XÔ -dÔoÔuÔ~Ô ‡Ô ‘Ô -›Ô¦ÔÂÔÒÔíÔ õÔ Õ Õ Õ%Õ*ÕIÕaÕ uÕÕŸÕ°Õ´Õ¼Õ¿ÕÐÕÔÕ ÚÕçÕíÕôÕMøÕFÖdÖsÖ‹Ö‘Ö ˜Ö¤Ö¹Ö%ÓÖ%ùÖ$×$D×i×l×o× w׃ׅ׊×דיע׫ׯ׵׽×Ì×5Ü×"Ø[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-03-20 20:30+0100 -PO-Revision-Date: 2005-03-20 20:52+0100 -Last-Translator: Marcel Telka -Language-Team: Slovak -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Neplatná možnosÅ¥ "%s" - -Použitie: %s [možnosÅ¥ ...] [súbor ...] - - --batch-interpreter - Procedúra, ktorou spracovávaÅ¥ dávkové príkazy. - --debug-handlers PovoliÅ¥ ladenie obsluhy signálov. - --display PoužiÅ¥ zvolenú X obrazovku. - --dump-gimprc VypísaÅ¥ súbor gimprc so Å¡tandardnými nastaveniami. - --no-cpu-accel NepoužívaÅ¥ Å¡peciálnu CPU akceleráciu. - --no-shm NepoužívaÅ¥ zdieľanú pamäť medzi programom GIMP a zásuvnými modulmi. - --pdb-compat-mode - Režim kompatibility s procedurálnou databázou. - --session PoužiÅ¥ alternatívny sessionrc súbor. - --stack-trace-mode - Ladiaci režim pre závažné signály. - --system-gimprc PoužiÅ¥ alternatívny systémový gimprc súbor. - --verbose Zobrazí správy o Å¡tarte. - -b, --batch Vykoná program v dávkovom režime. - -c, --console-messages ZobraziÅ¥ varovania na konzole miesto dialógového okna. - -d, --no-data NenaÄítaÅ¥ vzorky, prechody, palety a Å¡tetce. - -s, --no-fonts NenaÄítaÅ¥ žiadne písmo. - -g, --gimprc PoužiÅ¥ alternatívny gimprc súbor. - -h, --help Vypíše túto informáciu. - -i, --no-interface Spustenie bez grafického rozhrania. - -s, --no-splash Å tart bez úvodného okna. - -v, --version Vypíše informácie o verzii. -%d vrstvy%d dpi%d dpi, %s%d vrstvy%d minút%d sekúnd%d x %d dpi%d x %d dpi, %s%d x %d bodov%g x %g %s%p%s kópia kanálu%s kanál do výberu%s správa%s kópia%s maska%s%sKliknutie: rozšíriÅ¥ selekciu%s%sŤahanie: posun a kompresia(%0.3f, %0.3f, %0.3f)(NiÄ)(Toto konzolové okno bude o desaÅ¥ sekúnd uzavreté) -(Nepomenovaný buffer)(Nepomenovaná Å¡ablóna)(Mení sa)(Äisté)(neplatný UTF-8 reÅ¥azec)(zmenené)(Žiadna)1 vrstva1 vrstva15 stupňov %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D Transformácia...4:1 (400%)8:1 (800%)<%s><><Žiadny modul>Pre optimálny výkon GIMPu musia byÅ¥ niektoré nastavenia upravené.GIMP - GNU Program na manipuláciu s obrázkami -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis a GIMP vývojársky tím.Nebolo možné analyzovaÅ¥ súbor s tipmi pre GIMP!Zdá sa, že váš súbor s GIMP tipmi chýba!Súbor s názvom '%s' už existuje.Prid_aÅ¥ do výberu_UholO programe GIMPAkciaAktivovaÅ¥ obrázok vo f_ókuseAktívne filtreAdaptívne prevzorkovaniePridaÅ¥PridaÅ¥ alfa _kanálPridaÅ¥ alfa kanálPridaÅ¥ ukotveniePridaÅ¥ kanálPridaÅ¥ farbu do farebnej mapyPridaÅ¥ vodítko: PridaÅ¥ vodítkaPridaÅ¥ vodorovné vodítkoPr_idaÅ¥ masku vrstve...PridaÅ¥ vrstvyPridaÅ¥ masku vrstvyPridaÅ¥ cestuPridaÅ¥ vykresleniePridanie textovej vrstvyPridaÅ¥ zvislé vodítkoPridanie masky do vrstvyPridaÅ¥ farbu z pozadiaPridaÅ¥ farbu z poprediaPridaÅ¥ masku vrstvyPridanie textu do obrázkaPridaÅ¥ aktuálnu farbu do histórie fariebPridaÅ¥ oznaÄené filtre do zoznamu aktívnych filtrov.PridaÅ¥ do palety %sPridaÅ¥ k aktuálnemu výberuPridanie témy '%s' (%s) -SúÄetÄŽalÅ¡ie vstupné regulátoryÚprava jasu a kontrastuÚprava farebného vyváženiaÚprava kriviek farbyÚprava úrovní fariebÚprava jasu a kontrastuÚprava farebného vyváženiaÚprava kriviek farbyÚprava úrovní fariebÚprava odtieňa / svetlosti / sýtostiÚprava odtieňa a sýtostiAutomaticky upraviÅ¥ úrovneZarovnaniePokroÄilé nastaveniaOvplyvniÅ¥:Ovplyvnená oblasÅ¥ %sRozpraÅ¡ovaÄRozpraÅ¡ovaÄ s premenlivým tlakomAl_fa do výberuZarovnanýZarovnanieVÅ¡etky kanályVÅ¡etky súboryVÅ¡etky súbory (*.*)Nie vÅ¡etky obrázky a údaje pre funkciu VrátiÅ¥ späť sa zmestia do Vyrovnávacej pamäte dlaždíc a musia byÅ¥ uložené do odkladacieho súboru. Tento súbor je umiestnený na lokálnom súborovom systéme s dostatoÄným priestorom (niekoľko MB). V systémoch UNIX budete na toto chcieÅ¥ asi použiÅ¥ systémový temp-adresár ("/tmp" alebo "/var/tmp").Povolí, aby úplne priesvitné oblasti boli vyplnenéPovolí, aby úplne priesvitné oblasti boli zvolenéPovoliÅ¥ zväÄÅ¡enie %sAlfaAlfa do výberuAlfa:Obrázok zvolenej veľkosti bude používaÅ¥ viac pamäti, než je nastavené ako "Maximálna veľkosÅ¥ obrázkov" v dialógu Nastavenia (momentálne %s).An_imáciaUkotviÅ¥ plávajúci výberUkotviÅ¥ plávajúcu vrstvuUkotviÅ¥ plávajúci výberUhol:Anti guma %sVyhladzovanieVzhľadPoužiÅ¥ masku vrstvyPoužiÅ¥ _masku vrstvyPoužiÅ¥ prahPoužiÅ¥ masku vrstvySte si istý, že chcete odstrániÅ¥ '%s' zo zoznamu a z disku?SkutoÄne chcete zmazaÅ¥ Å¡ablónu '%s' zo zoznamu a disku?_Podľa nastaveníPožiadaÅ¥ o potvrdenie pred zatvorením obrázka bez uloženia.Pomer strán:Pomer strán:PripojiÅ¥ parazitaPripojiÅ¥ parazita k obrázkuPripojiÅ¥ parazita k položkePripojiÅ¥ parazitaAutor:AutomatickyAutomaticky nasleduj aktívny _obrázokAutomatické zmenÅ¡enieAutomatické zmenÅ¡enie výberuAuto-zmena veľkosti oknaAutomaticky naÄítaÅ¥Auto-detekciaDostupné filtreDostupné typy:Vyplnenie farbou pozadia_Jas-Kontrast...B_ufferyPozadieFarba pozadiaFarba pozadia nastavená na:Pozadie: %d, %d, %dDozadu (korigované)Základom vyplnená oblasÅ¥ na vÅ¡etkých viditeľných vrstváchZákladný výber vo vÅ¡etkých viditeľných vrstváchPod kresbouÅ ikmáBilineárnyÄŒierna a bielaÄŒierna:Farby ko_ncových bodov prechoduPrecho_dPrechodKr_ytie koncových bodov prechoduPrechod: Prechod: nefunguje pre indexované obrázky.Prechod...ModráModrá:RozostrenieRozostrenie alebo zaostrenie_Obvod...OhraniÄiÅ¥ kanálOkraj výberuVybraÅ¥ okrajJas-KontrastJas-kontrast nefunguje na indexovaných vrstvách.Å tetecEditor Å¡tetcovPrieÄinky Å¡tetcaRozhranie Å¡tetcovÅ tetec:Å tetcePonuka Å tetcePlechovkaBufferyPonuka BufferyStmaviÅ¥UseknutáPodľa príponyNávratom k obrázku uloženému na disku stratíte vÅ¡etky zmeny vrátane informácií o spätných úpravách.CMYKK_alibrovaÅ¥...Farebná p_ipetaS_tĺpce:K_ombináciaKalibrovaÅ¥ rozlíšenie monitoraNie je možné vrátiÅ¥ %sVeľkosÅ¥ plát_na...ZruÅ¡iÅ¥ZruÅ¡iÅ¥ vodítkoNie je možné pridaÅ¥ masku iných rozmerov, než má Å¡pecifikovaná vrstva.Nie je možné pridaÅ¥ masku vrstvy do vrstvy bez alfa kanálu.Nie je možné pridaÅ¥ masku vrstvy k vrstve, ktorá nie je súÄasÅ¥ou obrázka.Nie je možné ukotviÅ¥ túto vrstvu, pretože to nie je plávajúci výber.Nie je možné konvertovaÅ¥ paletu s viac než 256 farbami.Nie je možné vytvoriÅ¥ novú vrstvu z plávajúceho výberu, pretože patrí do masky výberu alebo kanála.Nie je možné vytvoriÅ¥ prieÄinok '%s': %sNie je možné vytvoriÅ¥ náhľadNie je možné orezaÅ¥, pretože výber je prázdny.Nie je možné expandovaÅ¥ ${%s}Nie je možné vytvoriÅ¥ plávajúci výber, lebo zvolená oblasÅ¥ je prázdna.Nie je možné vrstvu bez alfy presunúť vyÅ¡Å¡ie.Nie je možné ukladaÅ¥. NiÄ nie je zvolené.Nie je možné obkresliÅ¥ prázdny kanál.Nie je možné obkresliÅ¥ prázdnu cestu.VeľkosÅ¥ plátnaRežim vy_plnenia plátna:Stred X:Stred Y:CentrovanéZmena farby pozadiaZmeniÅ¥ položku farebnej mapyZmena farby poprediaPremiestnenie kanáluZmena jednotky obrázkaUmeniÅ¥ veľkosÅ¥ tlaÄeZmeniÅ¥ aktuálnu vrstvu alebo cestuZmena farby pozadia mriežkyZmena farby popredia mriežkyZmeniÅ¥ indexovanú paletuZmena perspektívy vrstvy alebo výberuZmena klávesovej skraty.KanálAtribúty kanálaNázov kanálu:Kanál už nie je možné umiestniÅ¥ nižšie.Kanál nie je možné umiestniÅ¥ vyÅ¡Å¡ie.Farba kanáluKanál je už celkom dole.Kanál je už celkom hore._Kanál do výberuKanál do výberuKanál do výberuKanál:KanályPonuka KanályVeľko_sÅ¥ Å¡achovnice:Vyberte Å¡týl obkresleniaKruhVym_azaÅ¥VymazaÅ¥VyÄistiÅ¥ kanálVrátiÅ¥ späť históriuZmazaÅ¥ celý textVymazaÅ¥ chybyVrátiÅ¥ späť históriu...Kliknite na "PokraÄovaÅ¥" na akceptáciu vyÅ¡Å¡ie uvedených nastavení.Kliknite na "PokraÄovaÅ¥" na vytvorenie vášho osobného GIMP prieÄinku.Kliknite na "PokraÄovaÅ¥" na vstup do používateľskej inÅ¡talácií GIMPu.Kliknite na "PokraÄovaÅ¥" na pokraÄovanie používateľskej inÅ¡talácií.Kliknutím spojíte toto ukotvenie s vybraným koncovým bodom.Kliknutím vytvoríte nové ukotvenie (skúste SHIFT).Kliknutím vytvoríte nový komponent cesty.Kliknutím vytvoríte novú cestu.Kliknutím vytvoríte náhľadKliknutím odstránite toto ukotvenie.Kliknutím vložíte ukotvenie na cestu (skúste SHIFT).Kliknutím zmeníte tento uzol na uhlový.Kliknutím otvoríte cestu.Kliknutím vyberte cestu na upravovanie.Kliknite pre aktualizáciu náhľadu -%s a klinutie vynúti aktualizáciu aj v prípade, že zobrazenie je aktuálneKliknutím a Å¥ahaním zmeníte tvar krivky (SHIFT: symetricky).Kliknutím a Å¥ahaním presuniete ukotvenie.Kliknutím a Å¥ahaním presuniete ukotvenia.Kliknutím a Å¥ahaním presuniete komponent (skúste SHIFT).Kliknutím a Å¥ahaním presuniete riadiaci bod (skúste SHIFT).Kliknutím a Å¥ahaním presuniete cestu.Kliknutie: výberKliknutie: výber Ťahanie: posunOrezaÅ¥ výsledokSchránkaPripnúť k spodnej vrstvyPripnúť k obrázkuKlonovanieZavrieÅ¥ %sZatvoriÅ¥ vÅ¡etky kartyZatvoriÅ¥ vÅ¡etky karty?ZatvoriÅ¥ tútokartuKo_pírovaÅ¥ cestuFa_rbyFarbaFarebné vyváženieFiltre farebného zobrazeniaFarebná pipetaInformácie o farebnej pipeteFare_bné vyváženie...Rozptyl _farieb:Vyváženie farieb funguje iba na vrstvách s RGB farbami.Vymazanie farbyFarebný index:Farba:_Map fariebFarebný prie_stor:_OfarbiÅ¥..._Typ vyfarbenia pre segment_Typ vyfarbenia pre výberOfarbiÅ¥Ofarbenie funguje iba s vrstvami vo farbách RGB.OfarbiÅ¥ obrázokOfarbiÅ¥ obrázokMap fariebEditor farebnej mapyPonuka mapy fariebStĺpce:Kome_ntár:KomentárKon_trast:Zmena _ostrostiNastavenie filtrov farebného zobrazeniaNastavenie roz_šírených vstupných zariadení...NastaviÅ¥ m_riežku...NastaviÅ¥ mriežkuNastaviÅ¥ mriežku obrázkaNastaviÅ¥ klávesové skratkyNastaviÅ¥ _klávesové skratky...NastaviÅ¥ zvolený filterNastaviÅ¥ zvolený filter: %sPotvrdiÅ¥ rozmery obrázkaPotvrdiÅ¥ zmenu veľkostiPotvrdiÅ¥ editovanie textuPot_vrdiÅ¥ uzatvorenie neuložených obrázkovKonflikt klávesovej skratkyKužeľový (nesymetrický)Kužeľový (symetrický)SpojiÅ¥ obkresleniaObmedzeniaObmedzeniaKontextKurzory závisiace na kontexte sú super. Implicitne sú povolené. Vyžadujú vÅ¡ak réžiu, bez ktorej sa možno budete chcieÅ¥ obísÅ¥.PokraÄovaÅ¥PrispeliKonverziaKonverzia hranyKonvertovaÅ¥ obrázok do odtieňov Å¡ediKonvertovaÅ¥ obrázok do indexovaných fariebKonvertovaÅ¥ obrázok do indexovaných fariebKonvertovaÅ¥ obrázok do RGBKonvertovaÅ¥ obrázokKonvertovanie na index (Å¡tádium 2)...Konvertovanie na index (Å¡tádium 3)...Konverzia na index...Zmena ostrostiTyp zaostrenia %sKopírovaÅ¥ pomenovanéKopírovaÅ¥ _viditeľnéKopírovanie súboru '%s' z '%s'...Copyright:PoruÅ¡ený segment %d v súbore s prechodom '%s'.Nie je možné vytvoriÅ¥ '%s': %sNie je možné vytvoriÅ¥ doÄasný súbor pre '%s': %sNie je zmazaÅ¥ '%s': %sNie je možné nájsÅ¥ PrehliadaÄ Pomocníka GIMP.Nie je možné otvoriÅ¥ '%s' pre Äítanie: %sNie je možné otvoriÅ¥ '%s' pre zápis: %sNie je možné otvoriÅ¥ miniatúru '%s': %sNie je možné ÄítaÅ¥ %d bytov z '%s': %sNie je možné hľadaÅ¥ v XCF súbore: %sNie je možné spustiÅ¥ prehliadaÄ pomocníka GIMPu.PoÄet:_OrezaÅ¥ vrstvu_VytvoriÅ¥ nový dokVytvoriÅ¥ novú Å¡ablónuVytvoriÅ¥ nový obrázokVytvoriÅ¥ novú vrstvuVytvoriÅ¥ novú Å¡ablónuVytvoriÅ¥ nové zobrazenie pre tento obrázokVytvoriÅ¥ nový obrázok podľa zvolenej Å¡ablónyVytvoriÅ¥ novú Å¡ablónuVytváranie a úprava obrázkov alebo fotografiíVytvoriÅ¥ a upraviÅ¥ cestyVytvoriÅ¥ cestu z textuVytvoriÅ¥ výber z cestyVytváranie náhľadu...Vytváranie prieÄinka '%s'...OrezanieOrezanie a zmena rozmerovInformácie o orezávaní a zmene rozmerovOrezanie obrázkaOrezaÅ¥ vrstvuOrezaÅ¥ obrázokOrezanie obrázka alebo zmena jeho rozmerovOrezanie: Iba nitkový kríž_VystrihnúťVys_trihnúť pomenované...Kubická (najlepÅ¡ia)Aktuálny _stavAktuálna výška:Len aktuálna vrstvaAktuálny stavAktuálna šírka:KurzorReži_m kurzora:Vykresľova_nie kurzora:Typ krivky:KrivkyKrivky nemôžu byÅ¥ upravované v indexovaných vrstvách.VlastnéVlastná farbaVlastný prechodVlastná f_arba výplne:VystrihnúťVystrihnúť pomenovanéAzúrováAzúrová:D_uplikovaÅ¥ Å¡tetecD_uplikovaÅ¥ kanálD_uplikovaÅ¥ prechodD_uplikovaÅ¥ vrstvuD_uplikovaÅ¥ paletuD_uplikovaÅ¥ cestuD_uplikovaÅ¥ vzorkuD_uplikovaÅ¥ Å¡ablónu...Farba tmavej Å¡achovniceLen stmavenieÄŒiarka bodka bodka...ÄŒiarka bodka...Vzorka Äiarkovania:Prednastavenie Äiarkovania:ÄŒiarkovanáDátum:LadiťŠtandardný vzhľad v celoobrazovkovom režimeÅ tandardný vzhľad v bežno režimeÅ tandardná mriežkaÅ tandardná mriežka obrázkaÅ tandardná _interpolácia:Å tandardná veľkosÅ¥ náhľadu na _vrstvy a kanály:Å tandar_dná prah:ZmazaÅ¥ ukotvenieZmazaÅ¥ ukotveniaOdstrániÅ¥ mas_ku vrstvyZmazaÅ¥ masku vrstvyZmazaÅ¥ objektZmazaÅ¥ segmentOdstrániÅ¥ Å¡ablónuOdstrániÅ¥ Å¡tetecOdstrániÅ¥ kanálOdstrániÅ¥ farbuOdstrániÅ¥ prechodZmazaÅ¥ vrstvuZmazaÅ¥ masku vrstvyOdstrániÅ¥ paletuZmazaÅ¥ cestuZmazaÅ¥ vzorkuOdstrániÅ¥ uložené nastavenia...OdstrániÅ¥ zvolený bufferOdstrániÅ¥ oznaÄenú Å¡ablónuZmazaÅ¥ tento obrázokZmazaÅ¥ vektoryZmazanie "%s" sa nepodarilo: %sHusté bodkyOdfarbenieOdfarbenie pracuje iba s vrstvami vo farbách RGB.PopisNávrhStav zariadeniaZariadeniaDialógyPonuka DialógyDiamantRozdielyPriama farbaZakázaÅ¥ masku vrstvyZakázaÅ¥ Rýchlu maskuZruÅ¡iÅ¥ textové informácieZobrazenieZobraziÅ¥ navigáciuZobraziÅ¥ _filtre...ZobraziÅ¥ procedúryTyp zobrazenia:Zobrazenie [%0.6f, %0.6f]RozpustenieVzdialenosÅ¥:VzdialenosÅ¥: %0.6fRozptyľovanieDelenieVytvoriÅ¥ no_vú používateľskú inÅ¡taláciuSkutoÄne chcete anulovaÅ¥ vÅ¡etky nastavenia nástrojov na Å¡tandardné hodnoty?SkutoÄne chcete vynulovaÅ¥ vÅ¡etky nastavenia nástrojov na Å¡tandardné hodnoty?Chcete ho nahradiÅ¥ obrázkom, ktorý ukladáte?_NeukladaÅ¥DokovateľnýHistór_ia dokumentovHistória dokumentovDokumentyPonuka DokumentyZosv_etlenie-StmavenieZosvetliťŤahy zosvetlenia alebo stmaveniaZosvetliÅ¥/StmaviÅ¥Dvojito ÄiarkovanáŤahaÅ¥ ukotvenieŤahaÅ¥ ukotveniaŤahaÅ¥ krivkuŤahaÅ¥ riadiaci bodPretiahnuÅ¥ cestuŤahanie: posunKreslenie peromKresbaRežim kresleniaProcedúry kresleniaPustiÅ¥ novú vrstvuPustiÅ¥ novú cestuKvôli nedostupnosti písem textové funkcie nie sú dostupné.VypisovaÅ¥ udalosti z tohoto regulátoraDuplikovaÅ¥ Å¡tetecDuplikovaÅ¥ kanálDuplikovaÅ¥ prechodDuplikovaÅ¥ vrstvuDuplikovaÅ¥ paletuDuplikovaÅ¥ cestuDuplikovaÅ¥ vzorkuDuplikovaÅ¥ novú Å¡ablónuEEK: nie je možné vrátiÅ¥ späťE_xportovaÅ¥ cestu...E_xtra maléChovanie hrán_Detekcia hránÚpravyÚpravy vlastností kanáluUpraviÅ¥ farebný kanálUpraviÅ¥ položku farby paletyUpraviÅ¥ položku farebnej mapyÚpravy vlastností vrstvyUpraviÅ¥ masku vrstvyRežim úpravUpraviÅ¥ farby paletyÚpravy vlastností cestyUpraviÅ¥ atribúty rýchlej maskyUpraviÅ¥ farbu rýchlej maskyUpraviÅ¥ Å¡ablónuUpraviÅ¥ Å¡tetec...Úpravy vlastností kanáluUpraviÅ¥ farbuUpraviÅ¥ položku farebnej mapy #%dUpraviÅ¥ prechod...Úpravy vlastností vrstvyUpraviÅ¥ paletuUpraviÅ¥ atribúty cestyUpraviÅ¥ vzorkuÚpravy procedúrUpraviÅ¥ oznaÄenú Å¡ablónuEliptický výberPrázdny kanálPrázdna vrstvaPrázdna cestaPrázdna textová vrstvaPrázdny názov premennej v súbore prostredia %s_VylepÅ¡eniePovoliÅ¥ Rýchlu maskuPovoliÅ¥ rozp_tyl priesvitnostiPovoliÅ¥ tento regulátorPovolí zobrazenie užitoÄných rád pri spustení GIMPu.Povolí zobrazenie popisov nástrojov.EnormnáZadajte názov pre zlúÄenú paletuVložte názov pre uložené nastaveniaVložte názov pre tento bufferVložte názov pre túto Å¡ablónuVložte názov pre tieto uložené nastaveniaVložiÅ¥ umiestnenie (URI):ProstrediePrieÄinky prostrediaVyrovnaÅ¥Ekvalizácia nefunguje na indexovaných vrstvách.OdfarbiÅ¥ do pozadia alebo priesvitnostiGumaKo_nzola s chybamiKonzola s chybamiPonuka Konzola s chybamiChyba pri ukladaní súbora: %sChyba poÄas analýzy '%s' v riadku %d: %sChyba poÄas Äítania '%s': %sChyba pri Äítaní súboru Å¡tetca '%s': %sChyba poÄas zapisovania '%s': %sChyba pri zapisovaní XCF: %sChyba pri zapisovaní súboru '%s': -%sChyba pri analýze: '%s': %sChyba pri zapisovaní do súboru pre %s': %s -Žiadny súbor nebol vytvorený.Chyba poÄas zapisovania do doÄasného súboru pre '%s': %s -Pôvodný súbor nebol dotknutý.ChybyUdalosÅ¥Ex_tra veľkéZväÄÅ¡iÅ¥ podľa potrebyExportovaÅ¥ cestu do SVGExportovaÅ¥ cesty z tohoto obrázkaExportovaÅ¥ aktívnu cestuExpozícia:Rozšírené vstupné zariadeniaPríponyVyplnenie farbou poprediaPopredie do pozadia (HVS v smere hodinových ruÄiÄiek)Popredie do pozadia (HVS proti smeru hodinových ruÄiÄiek)Popredie do pozadia (HSV)Popredie do pozadia (RGB)Popredie do priesvitnaPozadie do priesvitnapopredie/pozadieFarba popredia/pozadiaUvoľniÅ¥ pláv. výberuDrsnosÅ¥ pláv. výberuPláv. výber do vrstvyPr_ispôsobiÅ¥ plátno vrstvámZoslabenieNepodarilo sa importovaÅ¥ prechod z '%s': %sNepodarilo sa naÄítaÅ¥ cestu z '%s': %sFarebnýZávažná chyba v súbore Å¡tetca '%s': Bajtov = 0.Závažná chyba v súbore Å¡tetca '%s': Súbor sa zdá byÅ¥ skrátený.Závažná chyba v súbore Å¡tetca '%s': Súbor je poÅ¡kodený.Závažná chyba v súbore Å¡tetca '%s': Výška = 0.Závažná chyba v súbore Å¡tetca '%s': Nie je GIMP Å¡tetec.Závažná chyba v súbore Å¡tetca '%s': Neznámy tvar GIMP Å¡tetca.Závažná chyba v súbore Å¡tetca '%s': Neznáma verzia GIMP Å¡tetca.Závažná chyba v súbore Å¡tetca '%s': Neznáma hĺbka %d.Závažná chyba v súbore Å¡tetca '%s': Neznáma verzia %d.Závažná chyba v súbore Å¡tetca '%s': Nepodporovaná hĺbka Å¡tetca %d -GIMP Å¡tetce musia byÅ¥ v Odtieňoch Å¡edej alebo RGBA.Závažná chyba v súbore Å¡tetca '%s': Šírka = 0.Fatálna chyba spracovania v súbore prechodu '%s': Súbor je poÅ¡kodený.Fatálna chyba spracovania v súbore prechodu '%s': Súbor nie je GIMP prechod.Fatálna chyba spracovania súbora palety '%s': Chýba kúzelná hlaviÄka.Fatálna chyba spracovania súbora palety '%s': Chýba kúzelná hlaviÄka. -Nepotrebuje tento súbor prevod z DOSu?Fatálna chyba spracovania súbora palety '%s': Chyba Äítania riadku %d.Fatálna chyba pri analýze súboru vzorky '%s': Nie je možné ÄítaÅ¥ %d bajtov: %sFatálna chyba pri analýze súboru vzorky '%s': Neznáma verzia formátu vzorky %d.Fatálna chyba pri analýze súboru vzorky '%s': Nepodporovaná hĺbka vzorky %d. -GIMP vzorky musia byÅ¥ Å EDÉ alebo RGB.Za_oblenie...ZaobliÅ¥ kanálZaoblený výberZaoblenie hránZaobliÅ¥ výber oSúbor_Dialóg pre otvoreniePráca so súbormiTyp súboruSúbor existujeSúbor je skrátenýVyplniÅ¥ kanálKrytie vyplňovania:Typ vyplnenia %sVyplniÅ¥ podobné farbyVyplniÅ¥ priesvitné oblastiVyplniÅ¥ celý výberVyplnenie farbou pozadiaVyplnenie farbou po_zadiaVyplnenie farbou poprediaVyplniÅ¥ vzo_rkouVyplniÅ¥ vzorkouVyplniÅ¥ s priesvitnosÅ¥ouVyplniÅ¥ bielouVyplnenie _farbou poprediaVyplnenie far_bou pozadiaVyplnenie farebným prechodomVyplnenie farbou alebo vzorkouVyplnenéFilt_reKoneÄná zlúÄená vrstva bude:Hľadanie spojitých oblastíHľadanie podobných fariebPrispôsobiÅ¥ zobrazenie obrázka oknuPrispôsobiÅ¥ zobrazenie obrázka oknuPrispôsobiÅ¥ zobrazenie obrázka oknuPrispôsobiÅ¥ oknuPevný pomerFixná veľkosÅ¥Do jednej vrstvyPreklopeniePreklopiÅ¥ kanálPreklopiÅ¥ vrstvuPreklopiÅ¥ cestuPreklopiÅ¥ textovú vrstvuTyp preklopenia %sPreklopiÅ¥ v_odorovnePreklopiÅ¥ z_vislePreklopiÅ¥ obrázokPreklopenie vrstvy alebo výberuPreklopenie...Preklápanie...Plávajúci výberPlávajúci výberPlávajúca vrstvaPlávajúci výber -(%s)Plávajúci výber do vrstvyPlávajúci výber do vrstvyPlávajúce výberyFloyd-Steinbergov (normálny)Floyd-Steinbergov (znížený odber farieb)FókusPrieÄinokPrieÄinkyPrieÄinky s písmomRozhranie písma:Písmo:PísmaPonuka PísmaAby bola inÅ¡taláciu GIMPu správna, musí byÅ¥ vytvorený prieÄinok '%s'.Vnútenie auto-hintingPopredieFarby popredia a pozadia. ÄŒierny a biely Å¡tvorec obnovujú pôvodné farby. Šípky navzájom zamenia farby. Dvojité kliknutie otvorí dialóg výberu farby.Farba poprediaFarba popredia nastavená na:Popredie: %d, %d, %dDopredu (tradiÄné)Z _cestyVoľný výberVoľný výberVoľná rukaZ _témyOd _správcu okien (aktuálne %d × %d dpi)Zľava dopravaSprava doľavaZ výberuZ témyPri_bližný výberNa c_elú obrazovkuPribližný výberGIMPRozšírenie programu GIMPGIMP správaLadenie výkonu GIMPuZásuvný modul programu GIMPSpustenie GIMPuGIMP textový editorGIMP: tip dňaPoužívateľská inÅ¡talácia programu GIMPGIMP XCF obrázokGIMP nemohol inicializovaÅ¥ grafické používateľské rozhranie. -Uistite sa, že existuje správne nastavenie zobrazovacieho prostredia.PrehliadaÄ GIMP pomocníkaGimp nie je správne nainÅ¡talovaný pre aktuálneho používateľa. -Používateľská inÅ¡talácia bola preskoÄená, lebo bolo použité '--no-interface'. -Ak chcete, aby bola vykonaná používateľská inÅ¡talácia, spustite GIMP bez '--no-interface'.GIMP používa obmedzené množstvo pamäte na ukladanie obrázkových údajov, tzv. "Vyrovnávaciu pamäť dlaždíc". Jej veľkosÅ¥ by ste mali prispôsobiÅ¥ veľkosti celkovej pamäte. Berte vÅ¡ak ohľad aj na množstvo pamäte použitej inými procesmi.GIMP používa tiež dodatoÄný súbor gtkrc a preto ho je možné nastaviÅ¥ tak,aby bol jeho vzhľad iný ako ostatných GTK aplikácií.GIMP verziaGIMP bude varovaÅ¥ používateľa pri pokuse vytvoriÅ¥ obrázok, ktorý by zabral viac pamäte ako je tu urÄená veľkosÅ¥.GamaVÅ¡eobecnéNastavuje minimálny poÄet farieb systému alokovaných pre GIMP, vÅ¡eobecne je to doležité iba pre osembitové obrazovky.GenerovaÅ¥ optimálnu paletuZískaÅ¥ rozlíšenie monitoraGigantickáProcedúry GimprcEfekty so s_klomPrechodEditor prechodovPonuka Editor prechodovPrieÄinky prechoduFarba ľavého koncového bodu segmentu prechoduFarba pravého koncového bodu segmentu prechoduRozhranie prechodovSúbor prechodu '%s' je poÅ¡kodený: Segmenty nepokrývajú rozsah 0-1.PrechodPrechodyPonuka PrechodyExtrakcia zrnitostiZlúÄenie zrnitostiÅ edáOdtiene Å¡edejZelenáZelená:MriežkaMedzera medzi Äiarami mriežkyZväÄÅ¡iÅ¥ kanálZväÄÅ¡iÅ¥ výberZväÄÅ¡iÅ¥ výber oVodítkoPrichytávanie k vodítkam a mriežkeProcedúry vodítokHSVHSV (%0.3f, %0.3f, %0.3f)HSV (odtieň proti smeru hodinových ru_ÄiÄiek)HSV (odtieň v smere _hodinových ruÄiÄiek)HTML zápis:_Výška:PoužiÅ¥ pr_ehliadaÄ pre pomocníka:Pozícia riadiaceho bodu: %0.6fOstré hranyOstré svetloTvrdosÅ¥:TvrdosÅ¥:VýškaVýška:PomocníkPrehliadaÄ pomocníkaSystém pomocníkovPrehliadaÄ pomocníka neÅ¡tartujePrehliadaÄ pomocníka nebol nájdenýProcedúry pomocníkaHex:SvetláTypu pre _doky:Typu pre _nástroje:HintingHinting zmení obrys písma tak, aby boli vytvorené ostré bitmapy aj pri malých veľkostiachHistogra_mHistogramMierka histogramuHistóriaVodorovneVodorovný posun prvej Äiary mriežky; môže to byÅ¥ aj záporné Äíslo.Vodorovné medzery medzi Äiarami mriežky.Koľko názvov nedávno otvorených obrázkov bude udržovaných v ponuke Súbor.OdtieňOdtieň-SýtosÅ¥Odtieň-SýtosÅ¥ funguje iba s vrstvami vo farbách RGB.Odtieň-_SýtosÅ¥...Odtieň:ObrovskáI_kona a textO_brázokI_mportovaÅ¥ cestu...I_nterpolácia:I_nterval:IkonaIkona a popisIkona a textAk je dostupné, použije sa hinting z písma, ale ak chcete, vždy môžete použiÅ¥ automatický hintingAk je povolené, nástroj presunu mení aktívnu vrstvu alebo cestu, keÄ je vybraná vrstva alebo cesta. To bolo v starších verziách implicitné chovanie.Ak neuložíte obrázok, zmeny od posledného %s budú stratené.Ak teraz ukonÄíte GIMP, neuložené zmeny budú stratené.Neplatný názov premennej v súbore prostredia %s: %sObrázokObrázok + mriežkaEditor obrázkovInformácie o obrázkuPonuka ObrázokVeľkosÅ¥ obrázkaFormát stavového riadku obrázkaÅ ablóny obrázkovMiniatúry obrázkovFormát titulku obrázka a stavového riadkuFormát titulku obrázkaVzhľad okna obrázkaOkná obrázkaObrázok neobsahuje žiadne viditeľné vrstvySúbor obrázkaMaska obrázkaRozlíšenie obrázka je mimo rozsah, namiesto neho sa použije Å¡tandardné rozlíšenie.VeľkosÅ¥ obrázkaZdroj obrázkaTyp obrázkaObrázkyPonuka ObrázkyNastavenia importuImport paletyImportovaÅ¥ cestyImportovaÅ¥ cestu z SVGImport novej paletyImportovaÅ¥ paletuImportovaÅ¥ cestyImportovaÅ¥ cestuA_tramentIn_vertovaÅ¥In_vertovaÅ¥ maskuPostupnýOdsadenie:Odsadenie prvého riadkuIndex:IndexovanáIndexovaná farbaKonverzia na indexované farbyVrstvy indexovaných farieb sú zmenené bez interpolácie. Zvolený typ interpolácie ovplyvní iba zmenu kanálov a masiek.InformaÄné okno_PoÄiatoÄné zväÄÅ¡enie:Východzí stav masky vrstvy:Inicializácia zásuvných modulovInicializácia modulu: '%s' -AtramentInline pixbufVstupné regulátoryVstupné zariadeniaVstupné úrovneVložiÅ¥ ukotvenieNainÅ¡talovaÅ¥ súkromnú farebnú mapu; môže byÅ¥ užitoÄné na 8-bitových (256 farebných) displejoch.InÅ¡talácia sa nepodarila. Kontaktujte prosím systémového administrátora.InÅ¡talácia bola úspeÅ¡ne dokonÄená.PokraÄuje kliknutím na "PokraÄovaÅ¥".Okamžitá aktualizácia_Inteligentné nožniceIntenzita: %0.3f Krytie: %0.3fRozhranieInterná procedúra programu GIMPVnútorné procedúryInterpolácia:PrienikPrienik s aktuálnym výberomPrieseÄníky (krížiky)PrieseÄníky (body)Neplatné UTF-8Nesprávny UTF-8 dáta v súbore '%s'.Nesprávny UTF-8 reÅ¥azec v súbore XCFNesprávny UTF-8 reÅ¥azec v súbore '%s'.Nesprávny UTF-8 reÅ¥azec v súbore s prechodom '%s'.Neplatný UTF-8 reÅ¥azec v súbore s paletou '%s'Neplatný UTF-8 reÅ¥azec v súbore so vzorkou '%s'.Neplatná sekvencia znakov v URINeplatná klávesová skratka.Neplatná šírka alebo výška. Obe musia byÅ¥ kladné.InvertovaÅ¥InvertovaÅ¥ kanálInverzný výberInvertovanie nefunguje na indexovaných vrstvách.InvertovaÅ¥ výberJe to to, Äo si prajete?Zdá sa, že ste v minulosti používali GIMP 2.0 Vlastnosti položiekViditeľnosÅ¥ položkyZarovnanie:DodržaÅ¥ priesvitnosÅ¥UdržovaÅ¥ horeUdržaÅ¥ pomer %sUdržaÅ¥ pomer %sDodržaÅ¥ výšku %sDodržaÅ¥ priesvitnosÅ¥DodržaÅ¥ šírku %sKláves doleKláves dole (Alt)Kláves dole (Control + Alt)Kláves dole (Control)Kláves dole (Shift + Alt)Kláves dole (Shift + Control + Alt)Kláves dole (Shift + Control)Kláves dole (Shift)Kláves doľavaKláves doľava (Alt)Kláves doľava (Control + Alt)Kláves doľava (Control)Kláves doľava (Shift + Alt)Kláves doľava (Shift + Control + Alt)Kláves doľava (Shift + Control)Kláves doľava (Shift)Kláves dopravaKláves doprava (Alt)Kláves doprava (Control + Alt)Kláves doprava (Control)Kláves doprava (Shift + Alt)Kláves doprava (Shift + Control + Alt)Kláves doprava (Shift + Control)Kláves doprava (Shift)Kláves horeKláves hore (Alt)Kláves hore (Control + Alt)Kláves hore (Control)Kláves hore (Shift + Alt)Kláves hore (Shift + Control + Alt)Kláves hore (Shift + Control)Kláves hore (Shif)Klávesové skratky sa dajú v GIMPe dynamicky predefinovaÅ¥. Súbor menurc uchováva vaÅ¡u konfiguráciu pre ÄalÅ¡ie spustenie. Je možné ho editovaÅ¥, ale oveľa jednoduchÅ¡ie je definovaÅ¥ klávesové skratky priamo v GIMPe. Ak tento súbor zmažete, obnovia sa pôvodné klávesové skratky.KlávesnicaUdalosti klávesniceKlávesové skratkyZľava dopravaFarba ľav_ého koncového bodu...Na šírkuVeľkáVeľké (256x256)VäÄÅ¡ie náhľadyPosledná chyba:VrstvaVrstva '%s' nemá alfu. Vrstva bola umiestnená nad ňou.Atribúty vrstvyRoz_mery okrajov vrstvyTyp výplne vrstvyMasku vrstvy do výberuVýber vrstvyVeľkosÅ¥ vrstvy_Režim vrstvy_Názov vrstvy:Vrstvu nie je možné posunúť nižšie.Vrstvu nie je možné posunúť vyÅ¡Å¡ie.Vrstva je už celkom dole.Vrstva je už celkom hore.Vrstva do veľkosti obrázkaUmiestniÅ¥ vrstvu _doleVrstva do _veľkosti obrázkaUmiestniÅ¥ vrs_tvu hore_Alfa kanál vrstvyVrstvyPonuka vrstvyNastavenie splynutia vrstievFarba ľavého koncového boduZarovnané doľavaDĺžka:NechaÅ¥ GIMP pokúsiÅ¥ sa obnoviÅ¥ vaÅ¡e posledné uložené sedenie pri každom spustení.ÚrovneÚrovne nemôžu byÅ¥ upravované v indexovaných vrstvách.Farba svetlej Å¡achovniceLen zosvetlenieÄŒiaraRozostup -riadkovŠírka Äiary:Å _týl Äiary:Å týl Äiary použitý pre mriežku.LineárnaPrepojená položkaOtvoriÅ¥NaÄítaÅ¥ krivkyNaÄítaÅ¥ úrovneNaÄítaÅ¥ pravú far_bu zNaÄítaÅ¥ nastavenia kriviek zo súboruNaÄítaÅ¥ nastavenia úrovní zo súboruNaÄítaÅ¥ text zo súboruNaÄítavam náhľad...Umiestnenie:LogaritmickýDlhé ÄiarkyHľadajú sa dátové súboryZnížiÅ¥ kanálZnížiÅ¥ kanál naspodokZnížiÅ¥ kanál _naspodokZnížiÅ¥ vrstvuUmiestniÅ¥ vrstvu doleZnížiÅ¥ cestuPresunúť cestu naspodokPresunúť cestu naspo_dokZnížiÅ¥ kanálZnížiÅ¥ kanál naspodokZnížiÅ¥ vrstvuUmiestniÅ¥ vrstvu doleZnížiÅ¥ cestuPresunúť cestu naspodok_Lupa_HlavnýPresunúť d_o obrazovky...Ma_paPurpurováPurpurová:LupaU_robiÅ¥ priehľadnýmSpráva zásuvných modulovRýchlosÅ¥ behu Äi_ar:Krytie masky:Maska _zvolených oblastíMaska _nezvolených oblastíMatica:NajväÄÅ¡ia hĺbka:Maximálna v_eľkosÅ¥ miniatúr:Maximálna veľkosÅ¥ _nového obrázka:Maximálny farebný nesúlad_Maximum pamäte pre funkciu Späť:Priemer:MeradloMeranie vzdialenosti a uhlovMeranie vzdialenosti a uhlovOdmerajte pravítka a vložte dole ich dĺžky:Medián:StrednáStredné ÄiarkySply_núť doleSplynutie doleSplynutie vrstievPripojiÅ¥ paletuSplynutie viditeľných vrstievSplynutie viditeľných ciestSplynutie _viditeľných vrstiev...Splynutie _viditeľných vrstiev...Splynutie _viditeľných ciestSplynutie vrstievPripojiÅ¥ paletuSplynutie vektorovSprávy z procedúrSpráva %d krát zopakovanáSpráva raz zopakovanáSprávy sú presmerované do stderr.Stredné tónyMigrovaÅ¥ používateľské nastaveniaMinimálny poÄet _úrovní späť:RôzneOstráRežimRežim:UpraviÅ¥ zvolenú farbuUpraviÅ¥ zvolený rozsah farebných úrovníUpraviÅ¥ vÅ¡etky farbyUpraviÅ¥ medzery medzi riadkamiPrieÄinky modulovSprávca modulovCesta k moduluModulyKurzory myÅ¡iKoliesko myÅ¡iUdalosti kolieska myÅ¡iPresunPosunúť ukotveniaPosunúť kanálPresunúť plávajúci výberPresunúť vodítkoPresunúť vodítko: Presunúť vrstvuPresunúť vrstvu maskyPresunúť cestuPresunúť výberPresun textovej vrstvyNástroj presunuPresunúť položkuPresun vrstiev a výberovPresunúť výberPresunúť aktuálnu vrstvuPresunúť aktuálnu cestuPosunúť oznaÄený filter nižšiePosunúť oznaÄený filter vyÅ¡Å¡iePresunúť do obrazovky...Presun: NásobenieP_oÄet farieb:Na_vigáciaNa_vigaÄné oknoVeľkosÅ¥ na_vigaÄného náhľadu:NázovNázov:NavigáciaNový kanálNový farebný kanálVlastnosti nového kanáluNová farba z poza_diaNová _farba z poprediaNový obrázokNová vrstvaNová cestaNastavenie novej cestyNová Å¡ablónaNový Å¡tetecNový kanálNový kanál s poslednými hodnotamiNový kanál...Nová farba z pozadiaNová farba z poprediaNový prechodNový importNová vrstvaNová vrstva s poslednými hodnotamiNová vrstva...Nová paletaNová cesta s poslednými hodnotamiNová cesta...Nová vzorkaNové vektoryNie sú dostupné žiadne Å¡tetce pre použitie s týmto nástrojom.Žiadny filter nie je zvolenýNebol nájdený lineárny prechod v '%s'Už nie sú viac prístupnéV '%s' nebola nájdená žiadna cestaV buffery nebola nájdená žiadna cestaPre túto operáciu nie sú k dispozícii žiadne vzorky.Žiadny výberPre Å¥ah nie je niÄ zvolené.Bez miniatúrNezarovnanýŽiadneŽiadna (najrýchlejÅ¡ia)NormálneNormálne (128x128)Normálne bodkyBežné oknoNie je bežný súborMálo viditeľných vrstiev pre zlúÄenie. Musia byÅ¥ aspoň dve.Málo viditeľných ciest pre splynutie. Musia byÅ¥ najmenej dve.PoÄet _používaných procesorov:PoÄet Äiar mriežkyPoÄet vrstiev:_Iné...Posun:Posun kanálaPosun kresbyPosun vrstvyPosun masky vrstvyPosun o x/_2, y/2Posun:Na diskuNa viacprocerosových strojoch, ak bol GIMP preložený s voľbou --enable-mp, toto predstavuje, koľko procesorov by mal GIMP simultánne používaÅ¥.Iba v pamätiOtvor_iÅ¥ ako vrstvu...KrytieKrytie:OtvoriÅ¥OtvoriÅ¥ obrázokOtvoriÅ¥ obrázok ako vrstvuOtvoriÅ¥ umiestnenieOtvoriÅ¥ textový súbor (UTF-8)OtvoriÅ¥ _umiestnenie...OtvoriÅ¥ p_redoÅ¡léDialóg otvorenia obrázkaOtvoriÅ¥ dialóg výberu Å¡tetcaOtvorí dialóg výberu písmaOtvoriÅ¥ dialóg výberu prechoduOtvoriÅ¥ dialóg výberu paletyOtvoriÅ¥ dialóg výberu vzorkyOtvoriÅ¥ zvolenú položkuNepodarilo sa otvoriÅ¥ '%s': - -%sOtvorenie '%s' zlyhalo: %sMožnosti: -ZaÄiatok X:ZaÄiatok Y:Pôvodná šírka:Iné (%s) ...ObrysVýstupné úrovnePrekrytieChyba volania PDB pre procedúru '%s':: -Nesúhlasí typ argumentu #%d (oÄakávané je '%s', priÅ¡lo %s)Chyba volania PDB: -procedúra '%s' nenájdenáVz_orkyRýchla hnedá líška -skáÄe cez lenivého psa.KresliÅ¥Možnosti kreslenia zdielaného medzi nástrojmiProcedúry nástrojov kresleniaKresliaci nástroj:Reži_m kresleniaKreslenie neostrých Å¥ahov Å¡tetcomKresliÅ¥ s tvrdými hranami bodovKreslenie s použitím vzoriek alebo oblasti obrázkaÅ tetecPal_etyPaletaEditor paletyPonuka Editor paletyPrieÄinky paletyRozhranie paliet_Názov palety:_Súbor paletyPaletyPonuka PaletyParazitné procedúryParazityAnalyzuje sa '%s' -VložiÅ¥Vlož_iÅ¥ buffer doVložiÅ¥ buffer ako _nový_VložiÅ¥ cestuVlož_iÅ¥ doVložiÅ¥ ako _novýVložiÅ¥ zvolený bufferVložiÅ¥ zvolený buffer ako nový obrázokVložiÅ¥ zvolený buffer do výberuVložená vrstvaCestyAtribúty cestyNázov cesty:Nás_troj cestaCestu nie je možné umiestniÅ¥ nižšie.Cestu nie je možné umiestniÅ¥ vyÅ¡Å¡ie.Cesta je už celkom dole.Cesta je už celkom hore._Cesta do výberuCesta do výberuCesta do výberu -%s PridaÅ¥ -%s UbraÅ¥ -%s PrienikCesta do výberuCestyPonuka CestyVzorkaPrieÄinky vzoriekRozhranie vzoriekVzorka výplneZdroj vzorkyVzorkyPonuka Vzorky_CeruzkaCeruzkaPercento šírky Å¡tetcaPercento:Osobný GIMP prieÄinokPerspektívaInformácia o transformácii perspektívyPerspektíva...Režim zbierania %sVyberte vrstvu alebo vodítkoVyberte cestuVyberte Äierny bodVyberie farbu z obrázkaVyberte Å¡edý bodIba vybraÅ¥Vyberte biely bodVeľkosti v pixeloch:Hodnoty bodovBodovBodov:Prosím, uistite sa, že sú XML súbory menu správne nainÅ¡talované.ÄŒakajte prosím, pokiaľ sa vytvára váš osobný GIMP prieÄinok...ÄŒakajte prosím...Zásuvný modulProstredie zásuvných modulovPrieÄinky zásuvných modulovZásuvný modul nemôže otvoriÅ¥ obrázokZásuvný modul nemôže otvoriÅ¥ obrázokModul spadol: "%s" -(%s) - -UkonÄujúci zásuvný modul mohol naruÅ¡iÅ¥ vnútorný stav GIMPu. Mali by ste uložiÅ¥ svoje obrázky a reÅ¡tartovaÅ¥ GIMP, aby ste opäť dosiahli bezpeÄný stav.Zásuvný modul ohlásil ÚSPECH, ale neposlal obrázokZásuvné modulyZásuvný modulZásuvné moduly a rozšírenia sú externé programy s doplňujúcimi funkciami, spúšťané programom GIMP. Tieto programy sú vyhľadávané poÄas behu a informácie o ich funkcii a režimoch sú uložené do tohoto súboru. Tento súbor je navrhnutý výhradne pre použitie programom GIMP a nemal by byÅ¥ editovaný.MnohouholníkyNa výškuPozícia: %0.6fUmiestnenýPosterizáciaPosterizácia (Redukcia poÄtu farieb)_Úrovne posterizácie:Posterizácia nefunguje na indexovaných vrstvách.NastaveniaZachovaÅ¥ svet_losÅ¥CitlivosÅ¥ na tlakTlak:NáhľadNáhľad je starýNáhľad:NáhľadyVeľkosÅ¥ tlaÄe:VeľkosÅ¥ tlaÄe:Problémy pri spracovaní parazita textu pre vrstvu '%s': -%s - -Niektoré vlastnosti textu sú možno nesprávne. Pokiaľ nechcete upravovaÅ¥ vrstvu textu, nemusíte sa tým zaoberaÅ¥.Procedurálna databázaProcedúry databázyPriebehPseudo farbaÚÄel:KvalitaPožiadavkaPožiadavka na nový zásuvný modulPožiadavka zásuvného modulu: '%s' -Rýchle ÄítanieRýchla maskaAtribúty rýchlej maskyPonuka Rýchla maskaRýchle ukladanieRýchla maskaUkonÄiÅ¥ GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB farbaRGB-prázdnyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Sprava doľava_Znovu zobraziÅ¥ "%s"VymazaÅ¥ na_stavenia nástrojovO_bnoviÅ¥ kanálO_bnoviÅ¥ farbuO_bnoviÅ¥ rozsahFarba pravého koncového bod_u...RadiálnyPolomer:ZvýšiÅ¥ kanálPresunúť kanál na vrcholPresunúť kanál na _vrcholZvýšiÅ¥ vrstvuUmiestniÅ¥ vrstvu horeZvýšiÅ¥ cestuPresunúť cestu na vrchPresunúť ces_tu navrchZvýšiÅ¥ kanálPresunúť kanál na vrcholZvýšiÅ¥ vrstvuUmiestniÅ¥ vrstvu horeZvýšiÅ¥ cestuPresunúť cestu navrchZvýšiÅ¥ zobrazenie tohoto obrázkaZvýšiÅ¥ okno, ak je už otvorenéMieraFrekvencia:Znovu zobraziÅ¥ poslednýOpäť vy_centrovaÅ¥ riadiace body vo výbereOpäť vy_centrovaÅ¥ stredný bod segmentuOpäť rozložiÅ¥ riadiace _body v segmenteOpäť _rozložiÅ¥ riadiace body vo výberePreme_novaÅ¥ uložené nastaveniaO_pakovaÅ¥ "%s"V_rátiÅ¥...Čítanie súboru s paletou '%s': Chýba ZELENà komponent v riadku %d.Čítanie súboru s paletou '%s': Neplatný poÄet stĺpcov v riadku %d. Používam Å¡tandardnú hodnotu.Čítanie súboru s paletou '%s': Chýba MODRà komponent v riadku %d.Čítanie súboru s paletou '%s': Chýba ÄŒERVENà komponent v riadku %d.Čítanie súboru s paletou '%s': RGB hodnota v riadku %d je mimo rozsahu.PripravenýSkutoÄne vymazaÅ¥ históriu krokov späť?Zmena priradenia skratky spôsobí, že bude odobraná z "%s".Znovu vytvoriÅ¥ náh_ľadZnovu vytvoriÅ¥ náhľadObdĺžnikový výberÄŒervenáČervená:ZnovuZredukovaÅ¥ obrázok na poÄet fariebZredukovaÅ¥ na dve farby pomocou prahuObnoviÅ¥ Å¡tetceObnoviÅ¥ prechodyObnoviÅ¥ paletyObnoviÅ¥ vzorkyRegistrovanýZnovu naÄítanie akt_uálnej témyZnova n_aÄítaÅ¥ vÅ¡etky náhľadyZnova naÄítaÅ¥ vÅ¡etky náhľadyZapamätaÅ¥ si aktuálny nástroj, vzorku, farbu a Å¡tetec medzi sedeniami GIMP.Vzdialený obrázokOdstrániÅ¥ kanálOdstrá_niÅ¥ visiace položkyOdstrániÅ¥ plávajúci výberOdstrániÅ¥ vodítkoOdstrániÅ¥ vrstvuOdstrániÅ¥ parazita z obrázkaOdstrániÅ¥ parazita z položkyOdstrániÅ¥ cestu_OdstrániÅ¥ položkuOdstrániÅ¥ visiace položkyOdstrániÅ¥ plávajúci výberOdpojiÅ¥ parazitaOdstrániÅ¥ zvolenú položkuOdstrániÅ¥ oznaÄené filtre zo zoznamu aktívnych filtrov.Odstránenie klávesových skratiek zlyhalo.PremenovaÅ¥ kanálPremenovaÅ¥ vrstvuPremenovaÅ¥ cestuPremenovaÅ¥ uložené nastavenia nástrojovPremenovanie textovej vrstvyPremenovaÅ¥ položkuGenerovaÅ¥ vykresleniePreradiÅ¥ kanálPreradiÅ¥ vrstvuPreradiÅ¥ cestuOpakovaÅ¥ poslednýOpakovanie:NahradiÅ¥ aktuálny výberReplikovaÅ¥ReplikovaÅ¥ segment prechoduReplikovaÅ¥ výber prechoduReplikovaÅ¥ segmentReplikovaÅ¥ výberPremiestniÅ¥ kanálaPremiestnenie vrstvyPremiestnenie vektorovAktualizovaÅ¥ zoznam písmaVymazaÅ¥ nastavenia nástrojovVym_azaÅ¥ vÅ¡etky nastavenia nástrojov...PrenastaviÅ¥ vÅ¡etky FlorePrenastaviÅ¥ vÅ¡etky filtre...VymazaÅ¥ vÅ¡etky nastavenia nástrojovNastaviÅ¥ zvolený filter na Å¡tandardné hodnotyNastaviÅ¥ na Å¡tandardné hodnotyVynulovaÅ¥ poradie a viditeľnosÅ¥ nástrojovZmena rozmerovZmeniÅ¥ veľkosÅ¥ kanálaZmena veľkosti obrázkaZmeniÅ¥ veľkosti vrstvyZmeniÅ¥ veľkosÅ¥ cestyZmena veľkosti textovej vrstvyZmena veľkosti obrázkaZmena veľkosti položkaMeniÅ¥ veľkosÅ¥ okna podľa _zväÄÅ¡eniaZmeniÅ¥ veľkosÅ¥ okna pri zmene _veľkosti obrázkaZmena veľkosti...Zmena rozlíšeniaRozlíšenie:Spotreba zdrojovKonfigurácia zdrojovObnoviÅ¥ nastavenia z...Obnoví uložené klávesové skratky pri každom spustení GIMPu.ObmedziÅ¥ úpravy na mnohouholníkyOpaÄneNávratNávrat '%s' na '%s'?VrátiÅ¥ sa k obrázkuVrátenie zlyhalo. S týmto obrázkom nie je asociovaný žiadny názov súboru.Návrat k '%s' sa zlyhal: -%sFarba pravého koncového boduZarovnané dopravaOtoÄenieOtoÄiÅ¥ o 90 stupňov do_ľavaOtoÄiÅ¥ o 90 stupňov do_pravaOtoÄiÅ¥ kanálaOtoÄiÅ¥ vrstvuOtoÄiÅ¥ cestuOtoÄiÅ¥ textovú vrstvuOtoÄiÅ¥ o _180 stupňovOtoÄiÅ¥ obrázokOtoÄenie vrstvy alebo výberuOtáÄa sa...Informácie o otoÄeníOkrúhla_NakloniÅ¥ZobraziÅ¥ mriež_ku_ZmrÅ¡tenie_Hroty_ZameniÅ¥ farbyUl_ožiÅ¥ pravú farbu doPriemerná vzorkaVzorka zahrnutáSýt.:SýtosÅ¥UložiÅ¥UložiÅ¥ "%s" ako PovrayUložiÅ¥ krivkyUložiÅ¥ chybový protokol do súboruUložiÅ¥ obrázok_Teraz uložiÅ¥ nastavenia vstupného zariadenia_Teraz uložiÅ¥ klávesové skratkyUložiÅ¥ úrovneUložiÅ¥ nastavenia nástrojov_Teraz uložiÅ¥ pozície okienU_ložiÅ¥ vÅ¡etky chyby do súboru...UložiÅ¥ výber do _súboru...UložiÅ¥ _ako...Ulož_iÅ¥ kópiu...UložiÅ¥ kópiu obrázkaUložiÅ¥ vÅ¡etky chybyUložiÅ¥ ako _Povray...UložiÅ¥ ako Å¡a_blónu...Uloží zmenené klávesové skratky pri ukonÄení GIMPu.UložiÅ¥ nastavenia kriviek do súboruUložiÅ¥ stav zariadeniaUložiÅ¥ prechod ako POV-RayUložiÅ¥ nastavenia úrovní do súboruUložiÅ¥ nastavenia do...UložiÅ¥ výber UložiÅ¥ výber do kanálaUložiÅ¥ zmeny do obrázka '%s' pred zatvorením?UložiÅ¥ pozície a veľkosti hlavných dialógov pri ukonÄení GIMP.UložiÅ¥ do _kanálaUložené nastaveniaUkladanie '%s' -Ukladanie '%s' zlyhalo: - -%sUkladanie obrázkovPílová vlnaScalable SVG obrázok (*.svg)Zmena veľkostiÅ kálovaÅ¥ kanálVeľkosÅ¥ obrázkaVeľkosÅ¥ vrstvyZmeniÅ¥ Å¡kálu cestyZmena mierky textovej vrstvyVeľkosÅ¥ obrázkaVeľkosÅ¥ položkyKoeficient zmeny X:Koeficient zmeny Y:Koeficient zmeny:Zmena veľkosti vrstvy alebo výberuZväÄÅ¡ovanieInformácie o zmene veľkostiZmena mierky obrázka na zvolenú veľkosÅ¥ spôsobí, že sa bude používaÅ¥ viacej pamäte, než je nastavené ako "Maximálna veľkosÅ¥ obrázkov" v dialógu Nastavenia (momentálne %s).Zmena mierky obrázka na zvolenú veľkosÅ¥ zmenší niektoré vrstvy natoľko, že zmiznú.ZväÄÅ¡uje sa...NožniceObrazScript-Fu prieÄinkySkriptyPosun dolePosun dole (Alt)Posun dole (Control + Alt)Posun dole (Control)Posun dole (Shift + Alt)Posun dole (Shift + Control + Alt)Posun dole (Shift + Control)Posun dole (Shift)Posun doľavaPosun doľava (Alt)Posun doľava (Control + Alt)Posun doľava (Control)Posun doľava (Shift + Alt)Posun doľava (Shift + Control + Alt)Posun doľava (Shift + Control)Posun doľava (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 horePosun hore (Alt)Posun hore (Control + Alt)Posun hore (Control)Posun hore (Shift + Alt)Posun hore (Shift + Control + Alt)Posun hore (Shift + Control)Posun hore (Shift)VýberVybraÅ¥ vÅ¡etkoZvoľte prieÄinky Å¡tetcaVýber podľa farbyVýber farbyZvoľte akciu pre udalosti regulátoruZvoľte prieÄinky prostrediaVyberte _typ súboru %sZvoľte prieÄinky s písmomZvoľte prieÄinky prechoduZvoľte prieÄinky modulovŽiadny výberZvoľte prieÄinky paletyZvoľte prieÄinky vzoriekZvoľte prieÄinky zásuvných modulovVyberte primárnu farbu pre úpravuZvoliÅ¥ rozsah pre úpravuZvoľte Script-Fu prieÄinkyVybraÅ¥ zdrojVyberte prieÄinok pre odkladací súborVyberte prieÄinok pre doÄasné súboryZvoľte témuZvoľte prieÄinky témVýber koef. zväÄÅ¡enia:VybraÅ¥ na_jnižšiu vrstvuVybraÅ¥ _vlastnú farbu...VybraÅ¥ _nasledujúcu vrstvuVybraÅ¥ _predchádzajúcu vrstvuVybra_Å¥ najvyÅ¡Å¡iu vrstvuVybraÅ¥ vÅ¡etkoVýber podľa farbyVýber spojitých oblastíZvoľte vlastnú farbu výplne plátnaSelekcia eliptickej oblastiVoľný výber oblastiŽiadny výberVýber súboru paletyVýber obdĺžnikovej oblastiVýber oblastí podľa farbyVýber podľa obrysov na obrázkuVyberte odkladací prieÄinokZvoľte poÄet -replikácií zvoleného segmentu.Zvoľte poÄet -replikácií zvoleného výberu.Zvoľte poÄet jednotných Äastí -na ktoré sa rozdelia zvolené segmenty.Zvoľte poÄet jednotných Äastí -na ktoré sa rozdelí zvolený segment.VybraÅ¥ priesvitné oblastiVýber prehliadaÄa pre webVýber d_o cestyVýberEditor výberuEditor výberuMaska výberuProcedúry nástrojov VýberuMaska výberuVýber do cesta (_pokroÄilé)Výber do cestyVýber: Výber: PRIDAŤVýber: PRIENIKVýber: NAHRADENIEVýber: ODÄŒÃTAŤCitlivosÅ¥NastaviÅ¥ farbu doplnenia plátnaNastaviÅ¥ farbu kanálaNastaviÅ¥ krytie kanálaNastaviÅ¥ farebnú mapuZvoľte vlastnú farbu výplne plátnaNastaviÅ¥ veľkosÅ¥ plátna obrázkaNastaviÅ¥ rozlíšenie tlaÄe obrázkaNastaviÅ¥ položku exkluzívne pripojenúNastaviÅ¥ položku exkluzívne viditeľnúNastaviÅ¥ okraj vrstvyNastaviÅ¥ názov z _textuNastaviÅ¥ krytieNastaviÅ¥ farbu pozadiaNastaviÅ¥ farbu poprediaNastavenie prepojenia položkyNastaviÅ¥ režim vrstvyNastaviÅ¥ krytie vrstvyNastaviÅ¥ uchovaÅ¥ transNastavuje horný limit pamäte, ktorá sa použije pre obrázok na udržanie zásobníka spätných opráv. Bez ohľadu na toto nastavenie je možné vrátiÅ¥ späť aspoň toľko operácií ako je nastavené.Nastaví prehliadaÄ používaný v pomocníkovi.Nastavuje farbu vyplnenia plátna, ak je nastavený režim výplne na vlastnú farbu.Nastaví externý Web prehliadaÄ. Môže to byÅ¥ absolútna cesta alebo názov spustiteľného súboru hľadaného v PATH používateľa. Pokiaľ príkaz obsahuje '%s', bude nahradená s URL, inak bude URL pripojená k príkazu oddelená medzerou.Nastavuje úroveň interpolácie použitej pri zmene veľkosti a iných transformáciách.Nastavuje spôsob, akým sa v obrázkoch zobrazuje priesvitnosÅ¥.Nastavuje minimálny poÄet operácií, ktoré môžu byÅ¥ vrátené spaÅ¥. Viac dostupných úrovní 'kroku spaÅ¥' sa ukladá až pokiaľ nie je dosiahnutý tento limit.Nastavuje režim kurzoru, ktorý bude GIMP používaÅ¥.Nastaví vodorovné rozlíšenie monitoru v bodoch na palec. Ak je nastavené na 0, vynúti získanie informácií o vodorovnom a zvislom rozlíšení od X serveru.Nastaví zvislé rozlíšenie monitoru v bodoch na palec. Ak je nastavené na 0, vynúti získanie informácií o vodorovnom a zvislom rozlíšení od X serveru.Nastavuje formát kurzoru, ktorý bude GIMP používaÅ¥.Nastavuje veľkosÅ¥ náhľadu na vrstvy a kanály v novovytvorených dialógoch.Nastavuje veľkosÅ¥ Å¡achovnice používanej pre zobrazenie priesvitnosti.Nastavuje veľkosÅ¥ navigaÄného náhľadu dostupného v pravom dolnom rohu okna obrázka.Nastavuje veľkosÅ¥ náhľadu v histórii funkcie späť.Nastavuje veľkosÅ¥ miniatúr zobrazených v dialógu OtvoriÅ¥. VÅ¡imnite si, že GIMP nemôže vytváraÅ¥ miniatúry, ak nie sú zakázané náhľady na vrstvy.Nastavuje umiestnenie odkladacieho súboru. GIMP používa schému alokácie pamäte založenej na dlaždiciach. Odkladací súbor sa používa pre rýchle a ľahké odkladanie dlaždíc na disk a späť. Uvedomte si, že odkladací priestor sa rýchlo môže staÅ¥ veľmi veľkým, ak používate GIMP na veľké obrázky. ÄŽalej, ak je odkladací súbor vytvorený v prieÄinku pripojenom cez NFS, môže byÅ¥ vÅ¡etko straÅ¡ne pomalé. Z týchto dôvodov môže byÅ¥ vhodné umiestniÅ¥ váš odkladací súbor do "/tmp".Nastavuje prieÄinok pre doÄasný úložný priestor. Pre behu programu GIMP sa tu budú objavovaÅ¥ súbory. VäÄÅ¡ina súborov zmizne, keÄ GIMP skonÄí, ale niektoré súbory pravdepodobne zostanú, takže je dobré, keÄ tento prieÄinok nie je zdielaný s inými používateľmi.Nastaví text, ktorý sa objaví v stavových riadkoch okna obrázka.Nastaví text, ktorý sa objaví v titulkoch okna obrázka.Nastavuje, Äi GIMP bude vytváraÅ¥ náhľady vrstiev a kanálov. Náhľady v dialógu vrstiev a kanálov sú pekné, ale pri veľkých obrázkoch môžu spôsobovaÅ¥ spomalenie.Typ tieňaTieneTvarTvar:Prenikajúci (uhlový)Prenikajúci (jamkový)Prenikajúci (guľový)ZaostrenieZostriÅ¥ kanálZostriÅ¥ výberNakloniÅ¥VeľkosÅ¥ skosenia X:VeľkosÅ¥ skosenia Y:Naklonenie vrstvy alebo výberuInformácie o nakloneníNakláňanie...Krátke ÄiarkyKlávesová skratkaSkratku "%s" už používa "%s" zo skupiny "%s".ZobraziÅ¥ masku vrstvyZobraziÅ¥ p_ravítkaZobraziÅ¥ s_tavový riadokZobraziÅ¥ p_osuvníkyZobraziÅ¥ vo_dítkaZobraziÅ¥ o_hraniÄenie vrstvyZobraziÅ¥ _ponukuZobraziÅ¥ výb_erZobraziÅ¥ o_brys Å¡tetcaZobraziÅ¥ _farbu popredia a pozadiaZobraziÅ¥ vo_dítkaZobraziÅ¥ o_hraniÄenie vrstvyZobraziÅ¥ po_nukuZobraziÅ¥ _pravítkaZobraziÅ¥ aktívny _Å¡tetec, vzorku a prechodZobraziÅ¥ akt_ívny obrázokZobraziÅ¥ m_riežkuZobraziÅ¥ t_laÄítka pomocníkaZobraziÅ¥ veľkosÅ¥ obrázkaZobraziÅ¥ interaktívne hraniceZobraziÅ¥ použitie pamäteZobrazovaÅ¥ _mnemoniky menu (klávesové skratky)Z_obraziÅ¥ kurzor kresliaceho nástrojaZobraziÅ¥ výb_erZobraziÅ¥ s_tavový riadokZobraziÅ¥ p_osuvníkyUkázaÅ¥ tip aj nabudúceZobraziÅ¥ tipy pri _spusteníZobraziÅ¥ _tipy nástrojovZobraziÅ¥ percento zväÄÅ¡eniaZobraziÅ¥ pomer zväÄÅ¡eniaZmenÅ¡iÅ¥ kanálZmenÅ¡iÅ¥ výberZmenÅ¡iÅ¥ podľa _okrajovUbraÅ¥ z okrajov obrázkaZmenÅ¡iÅ¥ výber oZmenÅ¡iÅ¥ podľa okrajovVeľkosÅ¥VeľkosÅ¥ v pamäti:VeľkosÅ¥ minia_túr:VeľkosÅ¥:Preskakujem %s': zlá verzia protokolu GIMP.MaláMenÅ¡ie náhľadyHladkáVyhladzovanie hránRozmazanieRozmazanie obrázkaPri_tiahnuÅ¥ k vodítkam_PritiahnuÅ¥ k mriežkeMierne svetloPlnáZdrojMedzeraMedzera:Riedke bodkyÅ peciálny súborUrÄuje, ako sa má vykresliÅ¥ oblasÅ¥ okolo obrázka.RýchlosÅ¥ bežiacich Äiar v obvode výberu. Táto hodnota je v milisekundách (menší Äas znamená rýchlejší beh).RýchlosÅ¥:Sférická (z_ostupná)Sférická (v_zostupná)Hroty:Å pirála (proti smeru hod. ruÄ.)Å pirála (v smere hod. ruÄ.)RozdeliÅ¥Rovnomerne rozdeliÅ¥ segment prechoduRovnomerne rozdeliÅ¥ segmenty prechoduRovnomerne rozdeliÅ¥ segmentRovno_merne rozdeliÅ¥ segment...Rovnomerne rozdeliÅ¥ seg_ment...Rovnomerne rozdeliÅ¥ segmentyRo_vnomerne rozdeliÅ¥ segmenty...RozdeliÅ¥ seg_menty v stredných bodochÅ tvorcovýSt_av a text_ZásobníkÅ¡tandardSpúšťajú sa rozšíreniaSpúšťanie rozšírenia: '%s' -Stav:Statické farbyStatická Å¡edáStav a popisStav a textRozptyl:BodkovanieÅ tandardné IDOb_kresliÅ¥ cestuOb_kresliÅ¥ cestu...ObkresliÅ¥ kanálObkresliÅ¥ cestuObkresliÅ¥ výberNastavenia obkresleniaObkresliÅ¥ cestuObkresliÅ¥ cestu s poslednými hodnotamiObkresliÅ¥ cestu...ObkresliÅ¥ výber s poslednými hodnotamiObkresliÅ¥ výber...Obkreslenie pomocou kresliaceho nástrojaÅ týl okraja okolo textu v stavovom riadkuRozdielUbraÅ¥ z aktuálneho výberuPrevzorkovanieSwap prieÄinok:Nástr_ojeTe_xtTe_xtový nástrojTEMP prieÄinok:Å ablónyPonuka Å ablónyPomocná procedúraPreruÅ¡enie zásuvného modulu: '%s' -TextFarba textuTextový editorTextová vrstvaText je zmenenýProcedúry textovGIMPZdá sa, že prehliadaÄ pomocníka chýba vo vaÅ¡ej inÅ¡talácií.Aktívny Å¡tetec. -Kliknutím otvoríte dialóg Å¡tetca.Aktívny prechod. -Kliknutím otvoríte dialóg prechodu.Aktívny obrázok. -Kliknutím otvoríte dialóg obrázka.Aktívna vzorka. -Kliknutím otvoríte dialóg vzorky.Farba pozadia mriežky; použije si iba pri dvojÄiarkovom Å¡týle Äiary.Dávkový interpret '%s' nie je k dispozícií, dávkový režim je zakázaný.Nastavenia kódovania súborov nie je možné previesÅ¥ na UTF-8: %s - -Skontrolujte prosím hodnotu premenej prostredia G_FILENAME_ENCODING.Súbor '%s' nie je možné skonvertovaÅ¥ na platné URI: - -%sFarba popredia mriežky.Súbor gimprc sa používa na uloženie osobných nastavení, ktoré ovplyvňujú správanie sa programu GIMP.Tu sú tiež nastavené cesty pre hľadanie Å¡tetcov, paliet, prechodov, vzoriek, zásuvných modulov a modulov.Vodorovné rozlíšenie obrázka.Vrstva, ktorú ste vybrali, je vrstva textu, ale bola upravená inými nástrojmi. Úprava vrstvy s nástrojom text tieto zmeny zahodí. - -Môžete vrstvu upravovaÅ¥ alebo vytvoriÅ¥ novú vrstvu textu z atribútov jej textu.Názov prieÄinku s používateľským nastavením GIMP nie je možné previesÅ¥ na UTF-8: %s - -Pravdepodobne váš systém ukladá súbory v kódovaní inom ako je UTF-8 a nepovedali ste o tom GLib. Nastavte prosím hodnotu premenej prostredia G_FILENAME_ENCODING.Súbor sessionrc uchováva záznam o polohe okien v okamihu ukonÄenia programu. Môžete GIMP nastaviÅ¥ tak, aby boli tieto okná po spustení otvorené na týchto pozíciách.Miniatúra v dialógu OtvoriÅ¥ bude automaticky aktualizovaná, pokiaľ súbor, ktorého miniatúra sa tvorí, je menší ako je tu nastavená veľkosÅ¥.Vyrovnávacia pamäť dlaždíc sa používa pre zaistenie toho, že GIMP nebude neustále prehadzovaÅ¥ dlaždice medzi pamäťou a diskom. VyÅ¡Å¡ie nastavenie tejto hodnoty spôsobí, že GIMP bude používaÅ¥ menej odkladacieho priestoru, ale viac pamäte. Naopak, menÅ¡ia veľkosÅ¥ vyrovnávacej pamäte spôsobí, že GIMP bude používaÅ¥ viac odkladacieho priestoru a menej pamäte.Jednotka používaná pre zobrazovanie súradníc mimo režimu bod na bod.Súbor unitrc uchováva databázu používateľských jednotiek. Môžete definovaÅ¥ vlastné jednotky a používaÅ¥ ich rovnako ako zabudované palce, milimetre, body a piky. Tento súbor je prepísaný, pri každom ukonÄení GIMPu.Zvislé rozlíšenie obrázka.Návod typu okna, ktorý je nastavený na dokovacích oknách. Môže maÅ¥ naň vplyv to, ako váš správca okien dekoruje dokovacie okná a ako s nimi pracuje.Návod typu okna, ktorý je nastavený na nástrojoch. Môže maÅ¥ naň vplyv to, ako váš správca okien dekoruje dokovacie okná a ako s nimi pracuje.TémaPrieÄinky témTémyExistuje %d obrázkov s neuloženými zmenami:Málo viditeľných vrstiev pre splynutie.Vždy si musíte vybraÅ¥ medzi použitím pamäte a rýchlosÅ¥ou. GIMP väÄÅ¡inou dáva prednosÅ¥ rýchlosti pred pamäťou. Ak je pamäť veľký problém, tak skúste povoliÅ¥ toto nastavenie.Nie je aktívna vrstva alebo kanál na kopírovanie.Nie je aktívna vrstva alebo kanál na vystrihnutie.Neexistuje aktívna vrstva alebo kanál na obkreslenieNie je aktívna vrstva alebo kanál na obkreslenie.Jeden obrázok nemá uložené zmeny:Mal by existovaÅ¥ súbor '%s'. Skontrolujte svoju inÅ¡taláciu.Vyskytla sa chyba poÄas analyzovania vášho súboru '%s'. Použijú sa Å¡tandardné hodnoty. Bola vytvorená záloha vaÅ¡ej konfigurácie v '%s'.Tento súbor obsahuje zbierku médií Å¡tandardných veľkostí, ktoré slúžia ako Å¡ablóny obrázkov.V tomto prieÄinku sa hľadajú Å¡ablóny obrázkov.V tomto prieÄinku sa hľadajú používateľom nainÅ¡talované témy.Tento prieÄinok sa používa pre písma, ktoré chcete aby boli viditeľné v GIMPe. GIMP prehľadáva tento prieÄinok, keÄ hľadá písma. Použite tento prieÄinok pre písmo, ktoré chcete aby bolo iba pre GIMP. Inak umiestnite písmo do systémových prieÄinkov.Tento prieÄinok sa používa na ukladanie parametrických súborov pre nástroj Krivky.Tento prieÄinok sa používa na ukladanie parametrických súborov pre nástroj Úrovne.Tento prieÄinok sa používa na ukladanie nastavení nástrojov.Tento prieÄinok sa používa na ukladanie používateľom vytvorených a nainÅ¡talovaných skriptov. GIMP prehľadáva tento prieÄinok, keÄ hľadá skripty spolu so systémovým prieÄinkom GIMPu pre skripty.Tento prieÄinok sa používa na ukladanie používateľom vytvorených, doÄasných alebo iných nesystémových DLL modulov. GIMP prehľadáva tento prieÄinok spolu so systémovým prieÄinkom GIMPu, keÄ hľadá moduly pre naÄítanie poÄas inicializácie.Tento prieÄinok sa používa na ukladanie používateľom vytvorených, doÄasných alebo iných nesystémových pridaných rozšírenízásuvných modulov. GIMP prehľadáva tento prieÄinok, keÄ hľadá zásuvné moduly spolu so systémovým prieÄinkom GIMPu.Tento prieÄinok sa používa na ukladanie používateľom vytvorených, doÄasných alebo iných nesystémových zásuvných modulov. GIMP prehľadáva tento prieÄinok, keÄ hľadá zásuvné moduly spolu so systémovým prieÄinkom GIMPu.Tento prieÄinok sa používa na ukladanie používateľom definovaných Å¡tetcov. GIMP prehľadáva tento prieÄinok, keÄ hľadá Å¡tetce spolu so systémovým prieÄinkom GIMPu pre Å¡tetce.Tento prieÄinok sa používa na ukladanie používateľom definovaných prechodov. GIMP prehľadáva tento prieÄinok spolu so systémovým prieÄinkom GIMPu, keÄ hľadá prechody.Tento prieÄinok sa používa na ukladanie používateľom definovaných paliet. GIMP prehľadáva tento prieÄinok, keÄ hľadá palety spolu so systémovým prieÄinkom GIMPu pre palety.Tento prieÄinok sa používa na ukladanie používateľom definovaných vzoriek. GIMP prehľadáva tento prieÄinok, keÄ hľadá vzorky spolu so systémovým prieÄinkom GIMPu pre vzorky.Tento prieÄinok sa používa na doÄasné ukladanie buffera pre funkciu vrátiÅ¥ späť na redukovanie použitej pamäte. Pokiaľ je GIMP zabitý, súbory v tvare: gimp<#>.<#> môžu pretrvaÅ¥ v tomto prieÄinku. Tieto súbory nie je možné použiÅ¥ mimo sedenia relácie GIMP a preto ich pokojne môžete odstrániÅ¥.Tento prieÄinok bude obsahovaÅ¥ množstvo dôležitých súborov. Kliknite na jeden zo súborov alebo prieÄinkov v strome a získate viac informácií o zvolenej položke.Toto je vzdialenosÅ¥ v bodoch, kde sa aktivuje prichytávanie k vodítkam a mriežke.Tento program je šírený v nádeji, že bude užitoÄný, avÅ¡ak BEZ AKEJKOĽVEK ZÃRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URÄŒITà ÚČEL. ÄŽalÅ¡ie podrobnosti hľadajte vo VÅ¡eobecnej verejnej licencii GNU.Tento program je slobodný softvér; môžete ho nedistribuovaÅ¥ a/alebo meniÅ¥ v súlade so VÅ¡eobecnou verejnou licenciou GNU (GNU GPL) publikovanou vo Free Software Foundation; Äi už verzie 2 alebo (podľa vaÅ¡ej voľby) akoukoľvek novÅ¡ou.Toto textové políÄko je obmedzené na %d znakov.Tento nástroj nemá voľby.Toto okno má otvorené %d kariet. Zatvorením okna tiež zatvoríte vÅ¡etky jeho karty.PrahPrah nefunguje na indexovaných vrstvách.Prah:Miniatúra %d z %dVeľkosÅ¥ vyrovnávacej pamäte _dlaždíc:VeľkosÅ¥ vyrovnávacej pamäte dlaždíc:Sklon:DrobnáTitulok a stavDo c_estuAby ste upravili klávesovú skratku, kliknite na zodpovedajúci riadok a zadajte nový akcelerátor alebo ho vyÄistite stlaÄením backspace._HraÄkyPrepnúť Rýchlu maskuPrepnúť _rýchlu maskuPríliÅ¡ veľa chybových správ!Nastavenia nástrojovPonuka Nastavenia nástrojovPrepínanie nástrojov %sNastavenia nástr_ojovIkona nástrojaIkona nástroja s nitkovým krížom_NástrojeNástrojePonuka nástrojeNástrojePonuka nástrojovNástroje ako približný výber a plechovka hľadajú oblasti algoritmom semienkového vyplňovania. Semienkové vyplňovanie zaÄne na pôvodne vybranom pixely a pokraÄuje vo vÅ¡etkých smeroch, pokiaľ nie je rozdiel intenzity pixelov od originálu väÄší ako zadaný limit. Táto hodnota reprezentuje Å¡tandardný prah.Pr_iesvitnosÅ¥Presun alfy do maskyTransformáciaTransformovaÅ¥ kanálSmer transformácieTransformácia vrstvyTransformovaÅ¥ cestuTransformovanie textovej vrstvyProcedúry transformaÄného nástrojaTransformovaÅ¥ vrstvuTransformovaÅ¥ cestuTransformovaÅ¥ výberTransformáciaTransformaÄné procedúryTransformovanie...PrekladPriesvitnosÅ¥_Typ priesvitnosti:Trojuholníková vlnaSkutoÄná farbaTypTyp %sStlaÄte nový akcelerátorZadajte nový akcelerátor alebo ho vyÄistite stlaÄením BackspaceNie je možné pridaÅ¥ masku vrstvy pretože vrstva už masku má.Nie je možné vystrihnúť alebo kopírovaÅ¥, lebo zvolená oblasÅ¥ je prázdna.Nie je možné otvoriÅ¥ testovací odkladací súbor (swap). Aby sa prediÅ¡lo strate dát, skontrolujte prosím umiestnenie a oprávnenie odkladacieho prieÄinku definovaného vo vaÅ¡ich Nastaveniach (aktuálne "%s").Nie je možné otvoriÅ¥ odkladací súbor (swap). Programu GIMP sa minula pamäť a nemôže použiÅ¥ odkladací súbor. Niektoré Äasti vaÅ¡ich obrázok môžu byÅ¥ poÅ¡kodené. Skúste uložiÅ¥ svoju prácu s inými názvami súborov, spustiÅ¥ znovu GIMP a skontrolovaÅ¥ nastavenie odkladacieho prieÄinku vo vaÅ¡ich Nastaveniach.Nie je možné spustiÅ¥ spätné volanie %s. PrísluÅ¡ný zásuvný modul možno spadol.NedefinovanéSpäťVrátiÅ¥ späť históriuVrátiÅ¥ späť _históriuJednotkyNeznámyNeznámy typ súboruNeznámy typ súboru palety: -%sOdstrániÅ¥ (z pamäte)NepomenovanýNepomenovanýŠtandardne použiÅ¥ "_Bod na bod"PoužiÅ¥ _dynamické klávesové skratkyNamiesto neho použiÅ¥ _web prehliadaÄPoužiÅ¥ vÅ¡etky viditeľné vrstvy pri zmenÅ¡ení výberuPoužiÅ¥ Äiernobielu (1-Bit) paletuPoužiÅ¥ farbu z prechoduPoužiÅ¥ vlastnú paletuPoužiÅ¥ info oknoPoužiÅ¥ paletu optimalizovanú pre WWWProtokol o používateľskej inÅ¡taláciiPoužívateľské rozhranieNástrojové oknoJasHodnota:Režim vektorovVerziu %s Vám prinášajúVerzia:ZvisleZvislý posun prvej Äiary mriežky; môže to byÅ¥ aj záporné Äíslo.Zvislé medzery medzi Äiarami mriežky.Veľmi veľkáVeľmi maláZobrazenieZobraziÅ¥ ako mrie_žku_ZobraziÅ¥ ako zoznamZobraziÅ¥ ako mriežkuZobraziÅ¥ ako zoznamVizuálna trieda:Vizuálna hĺbka:Varovanie: Nepodarilo sa naÄítaÅ¥ dáta: - -%sVarovanie: Nepodarilo sa uložiÅ¥ dáta: - -%sWWW prehliadaÄWeb prehliadaÄVitajte -GIMP %d.%d používateľská inÅ¡taláciaKeÄ je povolené, dialóg automaticky sleduje obrázok, na ktorom pracujete.Ak je povolené, GIMP použije v ponuke mnemoniku.Ak je povolené, vÅ¡etky kresliace nástroje budú zobrazovaÅ¥ náhľad obrysu aktuálneho Å¡tetca.Ak je povolené, obrázok bude aktívny, keÄ okno obrázka získa fókus. Toto je užitoÄné, keÄ správca okien používa "fókus po kliknutí".Ak je povolené, dialógy budú zobrazovaÅ¥ tlaÄítko pomocníka, ktoré dáva prístup k zodpovedajúcej stránke pomocníka. Bez tohoto tlaÄítka sa dá stránka pomocníka otvoriÅ¥ stlaÄením F1.Ak je povolené, ponuku je možné odtrhnúť.Ak je povolené, stlaÄením F1 sa spustí prehliadaÄ pomocníka.Ak je povolené, GIMP neuloží obrázok, pokiaľ nedôjde k jeho zmene od jeho otvorenia.Ak je povolené, GIMP použije rôzne informaÄné okno pre každé zobrazenie obrázka.Ak je povolené, vysielajú sa požiadavky, aby X server poskytol informáciu o polohe a pohybe myÅ¡i, namiesto spoliehania sa na predpokladané údaje. To znamená, že kreslenie s veľkými Å¡tetcami bude nielen oveľa presnejÅ¡ie, ale aj pomalÅ¡ie. Prekvapivé je, že na niektorých X serveroch povolenie tejto voľby má za následok rýchlejÅ¡iu kresbu.Ak je povolené, bude nad obrázkom zobrazený kurzor pri používaní kresliaceho nástroja.Ak je povolené, mriežka je Å¡tandardne viditeľná. Toto môže byÅ¥ zmenené pomocou "Zobrazenie->ZobraziÅ¥ mriežku".Ak je povolené, vodítka sú Å¡tandardne viditeľné. Toto môže byÅ¥ zmenené pomocou "Zobrazenie->ZobraziÅ¥ vodítka".Ak je povolené, okno obrázka sa automaticky zmení, kedykoľvek príde k zväÄÅ¡eniu alebo zmenÅ¡eniu obrázka.Ak je povolené, okno obrázka automaticky zmení svoju veľkosÅ¥, kedykoľvek sa zmení fyzická veľkosÅ¥ obrázka.Ak je povolené, ohraniÄenie vrstvy je Å¡tandardne viditeľné. Toto môže byÅ¥ zmenené pomocou "Zobrazenie->ZobraziÅ¥ ohraniÄenie vrstvy".Ak je povolené, ponuka je Å¡tandardne viditeľná. Toto môže byÅ¥ zmenené pomocou príkazu "Zobrazenie->ZobraziÅ¥ ponuku".Ak je povolené, pravítka sú Å¡tandardne viditeľné. Toto môže byÅ¥ zmenené pomocou príkazu "Zobrazenie->ZobraziÅ¥ pravítka".Ak je povolené, posuvníky sú Å¡tandardne viditeľné. Toto môže byÅ¥ zmenené pomocou príkazu "Zobrazenie->ZobraziÅ¥ posuvníky".Ak je povolené, bude zvolený Å¡tetec použitý pre vÅ¡etky nástroje.Ak je povolené, bude zvolený prechod použitý pre vÅ¡etky nástroje.Ak je povolené, bude zvolená vzorka použitá pre vÅ¡etky nástroje.Ak je povolené, výber je Å¡tandardne viditeľný. Toto môže byÅ¥ zmenené pomocou "Zobrazenie->ZobraziÅ¥ výber".Ak je povolené, stavový riadok bude Å¡tandardne viditeľný. Toto môže byÅ¥ zmenené pomocou príkazu "Zobrazenie->ZobraziÅ¥ stavový riadok".Pri povolení, toto zabezpeÄí, aby každý pixel na obrázku bol namapovaný na pixel na obrazovke.Ak je povolené, toto zabezpeÄí, že celý obrázok bude viditeľný pri otvorení súbora, inak sa obrázok zobrazí v mierke 1:1.Ak je povolené, môžete meniÅ¥ klávesové skratky položiek ponuky stlaÄením kombinácie kláves, keÄ je položka v ponuke zvýraznená.BielyVyváženie bielej funguje iba na vrstvách s RGB farbami.ŠírkaŠírka:Správa okienTypu správcu okienPozície okienZapisovanie '%s' -XChyba XCF: nepodporovaná verzia %d XCF súboruVarovanie XCF: súbor formátu XCF verzie 0 -nezapísal korektne indexovanú farebnú mapu. -Bude nahradená farebnou mapou s odtieňmi Å¡edej.YŽltáŽltá:Snažíte sa vytvoriÅ¥ obrázok s veľkosÅ¥ou %s.Tu môžete pustiÅ¥ vkladateľný dialóg.S týmto programom by ste mali získaÅ¥ kópiu VÅ¡eobecnej verejnej licencie GNU (GNU GPL); ak tomu tak nie je, napíšte do Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Musíte reÅ¡tartovaÅ¥ GIMP, aby sa zmeny prejavili tieto zmeny:VaÅ¡a inÅ¡talácia GIMP je nekompletná:VaÅ¡e nastavenia vstupných zariadení budú nastavené na Å¡tandardné hodnoty po nasledujúcom spustení programu GIMP.VaÅ¡e klávesové skratky budú nastavené na Å¡tandardné hodnoty po nasledujúcom spustení programu GIMP.VaÅ¡e nastavenia okien budú nastavené na Å¡tandardné hodnoty po nasledujúcom spustení programu GIMP.Správanie sa zmeny veľkosti a zväÄÅ¡ovaniaVeľkosÅ¥ 1:1ZväÄÅ¡iÅ¥ vÅ¡etkoZväÄÅ¡iÅ¥ZmenÅ¡iÅ¥Koeficient zväÄÅ¡eniaKoeficient zväÄÅ¡enia:Zv_äÄÅ¡iÅ¥ vÅ¡etkoZväÄÅ¡_iÅ¥Z_menÅ¡iÅ¥ZväÄÅ¡iÅ¥ vÅ¡etkoFaktor zmeny: %d:1ZmeniÅ¥ veľkosÅ¥ obrázka pri zmene veľkosti oknaZväÄÅ¡iÅ¥ZväÄÅ¡enie a zmenÅ¡enieZmenÅ¡iÅ¥Lupa:[ základný obrázok ]_O programe_ZískaÅ¥Prid_aÅ¥ farbu z pozadiaPrid_aÅ¥ farbu z popredia_PridaÅ¥ kartuPrid_aÅ¥ do výberuPokroÄilé n_astaveniaRozpr_aÅ¡ovaÄ_VÅ¡etko_UkotviÅ¥ vrstvuVyhladzov_anie_Ľubovoľné otoÄenie..._Umelecké_Pomer strán_Automaticky_BFarba _pozadiaFar_ba pozadia:_ÄŒierna (úplne priesvitné)Funkcia prechodu pre se_gmentFunkcia prechodu pre vý_ber_Rozostrenie_Jas:Å _tetecÅ _tetce_Å tetce, vzorky a prechody_Plechovka_Buffer_Podľa farbyVýber pod_ľa farby_CÅ _týl zakonÄenia:_Kanály_VymazaÅ¥ chyby_VrátiÅ¥ späť históriu_KlonovaÅ¥_ZavrieÅ¥_ZatvoriÅ¥ kartu_OblakyNástroje _farieb_Farby_NastaviÅ¥ farby a krytie..._Kontext_Kontextový pomocník_KopírovaÅ¥_KopírovaÅ¥ pomenované..._VytvoriÅ¥ obrázok podľa Å¡ablóny..._Orezanie a rozmerovO_rezanie obrázka_Zakrivená_Krivky...Farba _tmavej Å¡achovniceÅ tan_dardné farbyO_dstrániÅ¥ Å¡tetecO_dstrániÅ¥ bufferO_dstrániÅ¥ kanál_OdstrániÅ¥ farbuOd_strániÅ¥ prechod..._OdstrániÅ¥ obrázokO_dstrániÅ¥ vrstvuO_dstrániÅ¥ paletu_ZmazaÅ¥ cestu_ZmazaÅ¥ vzorku...O_dstrániÅ¥ uložené nastavenia_ZmazaÅ¥ segment_ZmazaÅ¥ výberO_dstrániÅ¥ Å¡ablónu_OdfarbiÅ¥_OdpojiÅ¥ kartuStav zaria_denia_Dialógy_ZahodiÅ¥ zmeny_ZruÅ¡iÅ¥ textové informácieS_kreslenie_Bod na bod_DuplikovaÅ¥_UpraviÅ¥_UpraviÅ¥ Å¡tetec..._UpraviÅ¥ atribúty kanála..._UpraviÅ¥ farbu..._UpraviÅ¥ prechod..._UpraviÅ¥ atribúty vrstvy..._UpraviÅ¥ paletu..._UpraviÅ¥ atribúty cesty..._UpraviÅ¥ vzorku..._UpraviÅ¥ Å¡ablónu..._Eliptický výber_PovoliÅ¥ náhľad na vrstvy a kanály_Enormné_EkvalizovaÅ¥_GumaFarba popr_edia_Súbor_VyplniÅ¥ s:P_rispôsobiÅ¥ zobrazenie obrázka oknuDo jednej _vrstvy_PreklopiÅ¥Pre_klopiÅ¥ segment_PreklopiÅ¥ výber_Plávajúci_Písmo_Písma_Farba popredia:V_oľný výber_GVÅ¡eo_becné_Gigantické_Prechod_Prechody_Odtiene Å¡edejKópia vrstvy v o_dtieňoch Å¡ediNá_rast..._Vodítko_TvrdosÅ¥_Pomocník_Vodorovné:_Odtieň:O_brovské_Ikona_Ikona:_Obrázok_Obrázky_Import_ImportovaÅ¥ paletu..._Indexovaná..._InformaÄné oknoPr_ienik s výberom_InvertovaťŠ_týl spojenia:Ve_ľké_Vrstva_Vrstvy_Vrstvy, kanály a cesty_Ľavý koncový bodPravý koncový bod _ľavého suseda_Úrovne...Farba svet_lej Å¡achovnice_Svetelné efekty_SvetlosÅ¥:Å _týl Äiary:_Lineárna_SpojenéNaÄíta_Å¥ ľavú farbu zZ_nížiÅ¥ kanálZ_nížiÅ¥ vrstvuZ_nížiÅ¥ cestu_M_Manuálne_Mapa_MaskaMaska do výber_u_Maximálny poÄet farieb:_MeraÅ¥_Stredné_SpojiÅ¥ palety...Sp_lynutie importovaných ciest_MigrovaÅ¥ používateľské nastavenia GIMP 2.0_RôzneLimit _ostrosti:Reži_mSprávca _modulov_Presun_Názov:_Príroda_Nový Å¡tetec_Nový kanál_Nový kanál..._Nová položka..._Nový prechod_Nová vrstva_Nová vrstva..._Nová paleta_Nová cesta_Nová cesta..._Nová vzorka_Nová Å¡ablóna..._Nový pohľad_Nový_Nasledujúci tip_Å um_NiÄP_osun..._Krytie_OtvoriÅ¥ obrázok_OtvoriÅ¥..._Farba výplne_Kresliace nástroje_Å tetec_Paleta_VložiÅ¥_VložiÅ¥ buffer_VložiÅ¥ pomenované..._CestyÚs_ek_Perspektíva_Posterizácia..._Nastavenia_NáhľadVe_ľkosÅ¥ náhľadu_Predchádzajúci tipV_eľkosÅ¥ tlaÄe..._Vlastnosti_Aktívna rýchla maska_Koniec_R_RGB_Polomer_Zdvihnúť kanál_Zdvihnúť vrstvu_Zdvihnúť cestu_Zdvihnúť pohľadyZd_vihnúť alebo otvoriÅ¥ obrázok_ZmeniÅ¥ priradenie skratiek:_Obdĺžnikový výber_OpakovaÅ¥_Znovu %s_ObnoviÅ¥ Å¡tetceObnoviÅ¥ p_rechodyO_bnoviÅ¥ palety_ObnoviÅ¥ vzorkyOdst_rániÅ¥ nepoužité farby z finálnej palety_GenerovanieNah_radiÅ¥_ReplikovaÅ¥ segment..._ReplikovaÅ¥ výber..._AktualizovaÅ¥ zoznam písmaP_renastaviÅ¥ poradie a viditeľnosÅ¥Z_meniÅ¥ uložené nastavenia vstupného zariadenia na Å¡tandardné hodnotyObnoviÅ¥ uložené klávesové sk_ratky na Å¡tandardné hodnoty_ZmeniÅ¥ uložené pozície okien na Å¡tandardné hodnoty_ObnoviÅ¥ nastavenia zP_ravý koncový bodĽavý koncový bod p_ravého suseda_OtoÄenie_SýtosÅ¥:_UložiÅ¥_UložiÅ¥ ľavú farbu do_UložiÅ¥ nastavenia do_UložiÅ¥ nastavenia vstupného zariadenia pri ukonÄení_UložiÅ¥ klávesové skratky pri ukonÄení_UložiÅ¥ pozície okien pri ukonÄení_MierkaVeľko_sÅ¥ obrázka..._Rozmery vrstvy..._ZmeniÅ¥ mierku importovaných viest, aby sa voÅ¡li do obrázkaVý_ber_Výber_Editor výberuNástroje _výber_Tvar_ZaostrenieZobraziÅ¥ výb_er obrázka_ZobraziÅ¥ medzi nástrojmi_Sínusoidný_Malé_Å muhaV_zdialenosÅ¥ pritiahnutia:_ObkresliÅ¥ výber_ObkresliÅ¥ výber...Odob_raÅ¥ z výberuÅ týl kar_ty_Å ablóna:_Å ablóny_Text_Prah..._Drobné_Tip dňa_Nástroj_Nástroje_Presun alfa kanálu vrstvy_Transformácia_TransformaÄné nástroje_Späť_VrátiÅ¥ %s_Zvislé:_Zobrazenie_Viditeľné_WebPoužiÅ¥ prehliadaÄ pre _web:_Biela (úplné krytie)Vyváženie _bielejŠí_rka:PokraÄovaÅ¥ od _druhého konca_X rozlíšenie:_X:_RozÅ¡._Y_Y rozlíšenie:_Y:_Lupa_Mierka (%s)farbykópiadpipre logický výraz %s sa oÄakáva symbol 'yes' alebo 'no', prijaté je '%s'závažná chyba pre analýzeodtiene Å¡edejodtiene Å¡edej-prázdnypalecpalcovindexovanýindexovaný-prázdnynesprávny UTF-8 reÅ¥azecneplatná hodnota '%ld' pre typ ikonyneplatná hodnota '%ld' pre symbol %sneplatná hodnota '%s' pre typ ikonyneplatná hodnota '%s' pre symbol %smmmmminútanedostupné%picapicabodbodovbodov/%abodov/%sbodbodovsekundatips-locale:skZdenko Podobnýhodnota pre symbol %s nie je platným UTF-8 reÅ¥azcompoÄas analyzovania prvku '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/sr.gmo gimp-2.2.9/po/sr.gmo --- gimp-2.2.8/po/sr.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.9/po/sr.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,417 +0,0 @@ -Þ•K tJm Ì”€ÆÆ&—Æk¾ÆG*Ç9rÇG¬ÇAôÇN6Èi…È<ïÈk,É@˜É2ÙÉ; ÊPHÊO™Ê2éÊ9Ë-VË9„Ë;¾Ë7úË 2Ì<Ì -CÌ NÌ -XÌ -cÌ nÌzÌŠÌ -™Ì¤Ì§Ì·Ì -ÏÌÚÌâÌêÌÍ Í6Í0=ÍnÍÍ’Í›Í£Í -ºÍÅÍÌÍÔÍÜÍ ëÍ ùÍ Î -Î -Î )Î 6ÎBÎ RÎ ^ÎjÎ oÎ {ÎKˆÎ…ÔÎ.ZÏ1‰Ï!»ÏÝÏïÏöÏÐ Ð(Ð7ÐNÐRÐeÐ -wÐ ‚ÐŽÐ ¤Ð -°Ð»ÐÐÐ ãÐíÐüÐ -ÑÑÑ2ÑJÑ\ÑnÑ}Ñ*“Ñ6¾ÑõÑÒ%Ò=ÒFÒcÒ‚Ò—Ò«Ò¿ÒÞÒóÒÓ#Ó?ÓYÓ -uÓ€Ó‘Ó™Ó«Ó´ÓÔÓèÓ ðÓ úÓ ÔÔ!Ô16Õ3h՜հնÕÉÕ‹ÐÕ -\ÖgÖÖ—Ö±Ö¸Ö ÇÖ -ÔÖßÖðÖ××A#×Je×°×<Ã× Ø ØØ,ØEØ]ØmØuØzØ ”ؠضØÉØÒØéØûØ ÙÙ2Ù -;ÙFÙWÙpÙ‡Ù&Ù$ÄÙéÙðÙ öÙ ÚÚÚ.Ú5Ú;ÚUÚ"]Ú €ÚŒÚ‘Ú—ÚœÚ -¬Ú·ÚÆÚ×ÚëÚ7ÿÚ7Û =Û JÛXÛaÛhÛ pÛ }Û‰Û ‘ÛžÛ£Û ¨ÛmµÛ#Ü (Ü 6Ü DÜNÜWÜ tÜ‚Ü’Ü ™ÜC¦Ü7êÜ="Ý@`Ý6¡ÝdØÝ=Þ[Þ3qÞ¥Þ<¹Þ#öÞ!ß<ßYß sßß •ßŸß¨ßÀßÖßîßàà*àGàdàà,˜àÅàßàçà úàá (á Iá!Wáyá”áªá¿áÔáÝá æá ôáâââ#â )â7âJâ Yâfâ.|â5«â5áâ7ã8Oã)ˆã,²ãßãûãä20ä cä„äŸäO»äA å%Må&så4šå1Ïå#æ %æ3æ Oæ [æeæ}æŽæ”ææ -¬æ·æ¿æ ÅæÓæ éæöæç!ç03ç dç pç}ç „ç Žç ›ç¨çÃçàç+éçè(è;èDè Tèbè kèuè -}è ˆè’è$²è×èêèùèé +éLéfé„é—é§é"¼éßéõé êê"ê +ê7ê?êÁêÊêÛê ãêðê ë$ëDë Yë"gë"Šë­ëÆëÏë -áëìë - ì)ì@ì,Zì‡ì!¡ì#Ãì#çì! í%-íSí.rí¡í ¨í´íÅíÙíìíÿí#î-9îgî%}î£î¹îÏîêîÿîï ï*ï -Dï -Oï -Zïeï}ï„ï“ï ˜ï ¦ï³ïÃïÓïæïõïð ðð -,ð7ð->ðlð sð€ðð§ð «ðµðºðÀðÑðäðøð ññ,ñ?ñVñ gñsñ ƒñ ñ ñªñ±ñ·ñ%½ñ!ãñ òò%ò&=òdò xò†ò•ò¨ò ºòÈò×ò çòôò óó ó-ó?ó NóZóióóœó¹óËóÚó -óó -þó- ô 7ôCô JôXô`ô hôuô -}ô ˆô•ô¨ô»ôÔôÜôïôõ õ$õ>õ GõQõ aõkõrõ:õ?Ëõ8 ö DöPöYökö |ö†ö -•ö ö¦ö -¼ö Çö Õö áö -îö ùö ÷ -÷ ÷&÷ /÷<÷P÷ _÷>m÷ ¬÷Í÷Ý÷ï÷øø$ø3øEøeøuø …ø’ø ¡ø®ø³øËøÞø÷ø ù!ù 1ù;ùNùcù~ù ”ù -¢ù­ù -ÅùÐù èùöù úú .ú;úKúfú uú ƒú -úšú*«úÖúßú!ñúû.*ûYûuû#~û"¢ûÅûâû&ü(ü >üJü^ü,gü#”ü¸ü¿ü ÎüÜüïü' ý1ý'Nývý“ý©ýÅýFßýT&þ{þ‚þ ˆþ•þ«þ ¾þßþ öþÿ -ÿ "ÿ0ÿ Mÿnÿ}ÿŒÿžÿ°ÿ ¶ÿÂÿËÿ Ôÿàÿöÿ(ÿÿ$(M=S6‘<È?AE7‡9¿cù9]B—=Úf>C¾JgM µÁÑ ãñ  - 7C U b p~’©¾Ñåø 4DXt¬³¼Ûö !5 IW -j uƒ ˆ -•  ª ºÈÛ -ì÷ '7 GUm‰¥¹(Òû     % +  -1 O< Œ  -ž ”© > -O -h - - -• -   - ¬ -¸ - Á -.Í -ü - "  -1  <  J  V c h  w „  œ  © ¶ Ç Û ò u w ̉ ÅV c €zr‰¢¹ÂÔãìü&"'I q } ‡‘   ®º ¿ÉÏÖÛ íú !9JNh…š©²È ß -éô ý  (4Ofv -{†›²Hº - ( -0H;!„B¦éí1ü.AF KX_o -Š  ›`§™C¢1æ0I O \i -{ -†‘¨¸Éèû (! -J -UH` -© ´ -ÁÌ Óßî ý - 5 D Q_d l y…«² ºÈ€á bnƒ³Ï Óá ó  K3h6œÓâ"ø %=Q `$jª ¿ Í î(+8)d*Ž!¹Û/í$3*Do€'ÅÕåî - 1ASbkz“¦ ½Þù -";N e†¡ ²¼Ìæú! 4 P b  i v  ž ³ Ò ë -ú ("1"D"H" b"l"r"‚" ’"ž"3¤"Ø"é"## )# -6# A# M#Z#x#—#·#Ð#ä#õ# -$$/$ 6$B$W$k$z$@‚$Ã$-Ê$ø$ -%% % *% 6%C%a% h%t% y% …%‘%¨%Ç%æ%ú% & & $&0& G&U&m& †&’& -¨&³&È& Þ&ì& '' -&'1'F'O'W'j'o'w'€'ˆ'š'²' È'Ö'ë'( - -(#(9(R(k((‡((¬(+É(õ(ý( ) ) -) )) 6)D)Y)m)†)Ÿ) ´)Á) Ð)Þ)ñ) *"#*F*O*e* …*“*™*ž*¤*$º*ß*ñ*++ #+/+ 7+ E+Q+ V+ c+p+ -ˆ+ “+ - +«+ »+Å+Ô+ ä+ î+ø+, ,7,M,k,‡,™, ,©, ¼,È,Û,õ,ú, -- --)-=-P- c- m-w-€- ‘- ž- ¨-´-Ñ-à-ò- . -. .&. A. N.Z. t. €. Œ.,˜.Å.!Ø.ú./%/)B/ l/y/ ‘/ Ÿ/«/°/¿/Æ/ ×/ ã/ñ/B0AG0‰0§0¼0 Î0Ø0ß0î0 þ0 1121:1„B1Ç1Ö1è1ð1ù1 -þ1 2 2+2B2 T2a2s2“2"²2!Õ2!÷2313J3 b3 l3 v3€33Ÿ3 §3µ3V½3+4 @4(J4s4"y4œ4 ²4 ¾4Ê4ä4%ü4 -"5 -575?5N5b5 -r5}5 Œ5š5 £5±5 Å5 Ï5Ý5ã5ö5 6 6 #616&K6,r6 Ÿ6¬6±6 -Á6 -Ì6×6ô6717I7\74n7£7µ7 -»7Æ7Î7 -Þ7 é7ö78 88$8+8 H8T8 i8!u8—8 ¦8´8 Ê8Ö8ç89 99-9 ?9L9S9?[9›9ª9²9Æ9Ö9ó9¡:4²:ç:ð:-ø: &<0<9< -I< T<#^<‚<-•< Ã<Ï<ä< ù<= ="=+= -4= ?=¥K=ñ=>> ">/>8>@>F>\> -t> ->Š> > -°> »> Å>Ó>×>ñ> ? ?!?8? GRGeGvG‰GšG­GÈGÚGïG+H2HJHjHqH €H H šH¦H ¸H ÅHÑH#èH II *I6IKIbI6zI±IÎIÖIÝI òI7ÿI7JUJjJzJJ˜J®J ½J ÊJÖJèJ üJ K 'K3KHKNK -UK -`K kKxKK œKªK -°K»KÀK ÕKáK -øKL#L @LLL^LyL•L °L¼LÌLåLõL M4MSMpMƒMœM¹MÌMÛM.õME$NjN {N ‰N–N ®N ¼NÊNåN ëN ùN O -OO -O -9ODOSO bOoOŒO”Oœ¨ONEP -”PŸP¨P¯PÁP ÉPÕPçPQQ#3QWQuQ ‰Q•Q§QÃQÙQ#óQR5R IRVRiR†RR$¸RÝRüR SS+SESYS!qS“S¯SÁS -ÈSÓSèS øST$T?TVTjT‚T ˜T¤T»TÒTéTUU 8UFUYU lUyUŽU UµUÍUàU÷U - VV$V">VaV{V •V¡VµVÐVèVW=W6OWS†WJÚW%X>XQX dXnXX•X¤X¾XÍXëX ýX YY-Y@Y TY`YyY‹Y ŸY¬YÌYâYýYZ2ZJZ ^ZjZZ”Z¤Z³ZÅZ´ØZ)[N·[\K]=f]ƒ¤]*(^¤S^¢ø^3›_TÏ_?$``d`2Å`ø`¯za*c4-d/bdº’d MeYeaegeneee£e«e»eÍeÓeæeùef +f 7fDf;Mf‰f ™f¦f¶f ÇfÔf éf÷fg#g ?gLg ag og&|g£g -¶gÁgÔgägþg"h3hKh[hkh|h›h±hÁhÖhæhõh ii,i @iLiQiaivi+|i¨i®i¿i ÆiÓi Úiçi ÷i -jjjj%j .j :j8Gjv€j÷jþjk .k ;kGk Mk!nkk¨kÄkßkøkl2l9lHlOlXlll†l l šl ¦l ´lÂlËlÔl Ýlêlúl mm &m 2m>m[m!jmŒm m(¹mâm#ëm n n*n1n -7n Bn OnYnhn|n—n -œn §n -³n ¾nÌnÜnKån11o7co1›o5ÍoHpALpŠŽp;q!UqÁwq 9ræZr As¨Nt}÷t*uuB væãvÊwéw‚kxîx ôxy) y53y¯iy1z0Kz0|z1­z(ßzC{€L{SÍ{,!|2N| |A¢}Aä}*&~«Q~íý~ ëÎø€£Çªk‚§ƒ§¾ƒf„˜i…G†èJ†ï3‡2#ˆVˆ pˆ-zˆ -¨ˆ³ˆƈ؈éˆïˆôˆ‰ ‰‰$‰7‰ P‰]‰o‰ ‰ ‰—‰°‰¹‰ Á‰Ή -Ô‰<߉ ‹*‹ A‹K‹]‹q‹‹‹¥‹¿‹Ï‹Þ‹ò‹ŒŒ+Œ :ŒGŒ[Œ -kŒvŒ{Œ„Œ3›Œ;ÏŒ; ¡GéFðŽ 7A F Sago ¢©±ºØø3#Ei”¤¾Ôãòø ÿ ‘(‘1‘F:‘‘ -¡‘ -¬‘·‘ ¼‘ Ê‘ Ø‘ å‘ ò‘ ’!’!0’ R’ ^’+j’K–’0â’Q“˜e“¢þ“$¡”5Æ”Pü”GM•-••OÖj—o~—eî—jT˜~¿˜p>™o¯™wš<—š?Ôš>›tS›tÈ›`=œ‰žœ(¨0®ßåìþž $ž2ž64žokžÛžÝžäž4ìž#!ŸÈEŸG XV U¯ O¡U¡l¡u¡~¡†¡ -¡ š¡ ¦¡°¡ ¹¡áÌ¡#Þ¡¢ -¢¢!¢'¢6¢=¢F¢Y¢l¢u¢‡¢ ™¢£¢ ¨¢ ¶¢Ä¢ Û¢å¢í¢ó¢ ö¢££.£ M£n£ t££ˆ£‘£ °£½£ Å£Ï£à£ ã£ ï£ ù£¤¤"¤ -)¤4¤ <¤I¤Q¤q¤ z¤ˆ¤Ž¤¤¼¤ ˤפ -ߤê¤ü¤ ¥¥)¥ 9¥G¥ [¥ i¥w¥ ‡¥”¥§¥½¥Í¥ߥ ð¥ ü¥¦¦ ¦ :¦ D¦ -Q¦\¦b¦q¦¦œ¦®¦ȦÙ¦ò¦§§ %§ F§ P§Z§ b§l§ r§~§“§¢§ ¨§¶§ƧͧÓ§Ú§ í§ú§ý§ ¨ ¨ -¨ -%¨0¨I¨R¨ Z¨d¨ j¨w¨}¨ƒ¨‰¨¨—¨Ÿ¨§¨ º¨ ƨÓ¨í¨ õ¨© ©©©2©A© -a©l©© Ž© š©¦©®©¶©Ì© Û© è©ô© ÷©ªª ªª:ªCªKª^ªtª ”ª ¡ª¯ªµªŪ˪Òª -Úª åªòª « « -« )« 7« D« N« [«h« y«ƒ« ‹«•«œ« -¢«­« ¶««Ë« Ú« ç«ó«ü« ¬¬!¬(¬ 1¬ >¬ L¬Y¬ b¬ p¬~¬ ¬™¬¬¬²¬µ¬º¬¬ Ѭ Þ¬ ê¬÷¬ ­ ­,­2­;­L­_­q­(ƒ­¬­´­½­Ó­ë­ý­4®1L®/~®®®Ä®Ô®ô® ü® ¯¯#¯#4¯ X¯y¯˜¯Ÿ¯¯¯"¿¯â¯ -ê¯õ¯°°°(°>° O°[°b°j°z°Œ°¡° -º° -Å° -аÛ° á°ï°õ°± ±± -2±=±N±T± -]±h±n±w±|±‘±§±¶± ¾±˱Ú±Þ±ä±ç±ö±ú± -² ²²²5²Q² c²m²}²‚²‰² ‘²Ÿ²!´² Ö² ÷²³ -8³ C³O³V³Z³b³g³m³s³ z³ „³Ž³”³›³ ¢³°³.óò³Ð´+àµC ¶¦P¶…÷¶M}·|Ë·cH¸{¬¸…(¹W®¹—ºgžºG»_N»o®»i¼Aˆ¼NʼN½Rh½N»½T -¾_¾ r¾ |¾Š¾¾­¾¿¾ξá¾ -ö¾¿¿;!¿]¿m¿ ¿'¿9µ¿ï¿ ÀgÀ!zÀ%œÀÂÀ -ÙÀ$äÀ Á Á -'Á -2Á=Á SÁ aÁ mÁ -{Á -†Á ‘Á žÁ#ªÁ ÎÁ ÚÁæÁëÁΩÂa¿Ãf!Ä0ˆÄ¹Ä ÓÄÝÄ ìÄ3ùÄ-Å3KÅ -ŊŪÅÉÅÝÅ(óÅÆ5Æ*MÆ$xÆÆ)±ÆÛÆóÆ# Ç(-Ç VÇ)wÇ(¡Ç ÊÇ ëÇ? ÈWLȤÈ%ÃÈ&éÈÉ.É7NÉ(†É ¯É ÐÉ7ñÉ()Ê RÊ sÊC”Ê3ØÊ, Ë9ËNË lË#zË -žË9©ËãËûËÌ!Ì5ÌMÌkÌbÎLäÎ'1ÏYÏbÏ yÏóƒÏwÐ*‹Ð(¶Ð*ßÐ -ÑÑ)Ñ IÑ-VÑ%„Ñ#ªÑ$ÎÑvóуjÒ%îÒfÓ{Ó‹Ó›Ó*»Ó0æÓÔ 7ÔCÔ:LÔ‡Ô™Ô5¶Ô'ìÔ Õ5ÕUÕ0tÕ'¥Õ ÍÕÛÕìÕ0Ö7Ö'TÖ^|ÖIÛÖ%×,×=×R× d×0nןׯ×I¾×ØNØgØ -wØ ‚ØŽØ$—ؼØÏØëØ Ù#(ÙjLÙ -·Ù"ÂÙ.åÙ,Ú AÚ -MÚXÚqÚ ‰Ú–Ú -±Ú -¼ÚÇÚ¸áÚšÛŸÛ¶ÛËÛÚÛ@êÛ&+Ü!RÜ tÜÜ}›ÜZÝktÝràÝVSÞ—ªÞIBß2ŒßQ¿ß'ày9àS³àHá8Pá=‰áÇá.åáâ%â(:â/câ"“â.¶â*åâ,ã8=ã3vã"ªã2ÍãDä/Eä -uä€äžä8·ä4ðä%å#;å%_å+…å8±å8êå #æ /æ<æRæ0næŸæ ¨æ ¶æÃæ6Ûæç1ç9Kçk…çwñç|ièƒæè\jéTÇéPê?mê­ê0ÌêYýêIWë4¡ëWÖëŽ.ìu½ìL3íL€ímÍíg;îP£îôî< ïJïfï.‚ï"±ïÔïÝï ïïð +ð5ð>ð3Tðˆð"œð¿ðßðZ÷ðRñfñ }ñ‡ñšñ´ñ$Ãñ èñ - òGò\òròˆò"šò½ò Øòæòùò -óó@-ó?nó®óÊó"âó3ô79ô*qô.œô*Ëôöô.õDCõ!ˆõ'ªõ%Òõøõö'ö<ö -MöX÷g÷z÷‰÷2¥÷3Ø÷< ø+IøuøE‘øE×ø7ùUùdùƒù=£ùáù\þù0[úcŒú.ðúMûHmûD¶ûRûûONüBžücáü EýSý8hý$¡ý"Æý éý$ -þ;/þOkþ$»þOàþ)0ÿ-Zÿ+ˆÿ%´ÿ1Úÿ - -AE‡±<Ç  $!0'Rz“®Íå  %)Oi^x×ì! -A, -ny -— ¢®Êç!@_!~ ¿!Óõ '7 FR\rJÏ%0@7qb©1 >T#j-Ž¼Øô&>Tn"„§ÁÛ-õ(# *L w – 1² ä ú h -v -  -Œ -¦ -µ -"Ê -í -ü - $ "= /`  # !Á #ã  #"  -F Q e   • 7¢ Ú Šk Zö Qb&s%šÀ Óô +F^tŒ¤¾Ø ô -1<Tt"“b¶>Xs­Çå.!(Py—¬È ã*ð"+>+j(– ¿à"þ*!1L)~¨Â*Ú/N(f*§Ò'ê*=Yq‡%¡XÇ  21S&…U¬9!<@^4Ÿ.Ô*L.+{§0¸éeü<b Ÿ!¬ Î)ï9=S-‘I¿0 (:Ac.¥‰Ô–^ õ"*#M7q(©Ò.è.,\[d¸6 6T +‹ +· $ã !!+!C!8T!!H¤!Fí!4"C"†Ô"–[#ò#‘€$~%~‘%Ü&ˆí&Ÿv'v(¿(qM)¿)P*Îà*¯+Ä+Þ+ø+,1,8B,*{,¦,Â,&â, -!-<-"T-,w-$¤-(É-)ò-1.N.k.#‡."«.2Î.)/++/-W/…/–/A¦/@è/.)01X0'Š01²0ä01!!1>C1 ‚11§1½1*×120"2,S2€2'–2¾2Î2à2þ23"838[3)”3¾30Þ3F4 -V4a4|4.—4,Æ4 ó4 -ý45™ 5>º5ù5 67*&7Q7+q77°7Ì7è7878M8k8‰8›8¶8#Ñ8õ899694N9ƒ9™9$´9Ù96ö9-:¸E:2þ:…1;„·<½<>ú>Ø?é? -ò?Áý?*¿@2ê@A0AJA iA"vA*™A2ÄAM÷AOEB0•B ÆBÔBãB!C"C@CIC _C lC -zC…CŸC¹CÓC òC2ÿC2DRDVD>pD0¯DàDõD5E*:EeE{E‘E E °E ½E -ËEÖEöE8F3LF!€F ¢F¬FQ¿F:GLG~cGâGöG# H-H@H|SH8ÐHƒ II#”IZ¸I$J8JAJPJ jJvJ’J¯J -ÂJÍJäJÅýJÃK‡ÝLjeM`ÐM -1NW BW*OW!zWœW ¸W/ÅWõWX/XGMX@•XZÖX]1YRYZâY/=Z$mZk’ZþZ[+[UA[—[/­[GÝ[!%\#G\k\!}\Ÿ\³\Ñ\ï\! ]-]I]#g]5‹]'Á]+é]5^/K^%{^¡^»^1Û^# _'1_1Y_+‹_!·_Ù_!õ_3`%K`)q`3›`-Ï`#ý`!a#?a5ca'™a+Áa5ía/#b%Sbõybod&‚d©d-°dÞd ñdþde/eMeeVe¼e.Øe&f#.fRfjf†ff6´f2ëf!g#@g<dg¡g*·gâgøgh'h5?h)uhŸh ½h Êh -ki]vi Ôiõi j j&jAj7Yj‘j¢j ¼jÉjåj1ýjJ/kFzk-Ák#ïk ll8l3Nl‚l#šl$¾lãl!ùlm%5m&[m‚m#šm¾m!Ômöm%n 6n Dn"Rn unnŽn žn«n:Ên2o$8o1]o5oÅoÕoWòo5Jp)€p=ªp èp öp+q+/qJ[q¦q ¸qÅq(ßq&r/rIr(er&Žr,µr,âr's7sQsms,‡s-´s6âsOtit6ƒt=ºt -øt u -u u&'uBNu‘u®u,Èu#õuv 8vEv]vsv„vžv*¶vávûvw"0wSwmw.‰w"¸wÛw/ûw+x&Gx*nx7™x7Ñx! y+y =yJy^y$ty=™y×yÞyæyûy z$0z(Uz5~z´zÈzÚz'ðz{.{B{DV{›{'²{4Ú{|%|7|@I|Š|Ÿ|Fµ|ü|}+}MC}$‘}6¶}"í}.~2?~Hr~»~HÑ~&A -Xc¬Ä*Þz €x„€2ý€0F_ -ny« ¿àÿ‚ì#‚ƒ -ƒNƒgƒ ƒŽƒ'¦ƒ΃=èƒ&„D„1c„6•„6Ì„:…:>…8y…&²…/Ù…3 †=†L†_†q†Ž†¢†±†ˆ à†V‡ ؇wæ‡ -^ˆCiˆ1­ˆ߈ÿˆ9‰"R‰Eu‰ -»‰ Ɖ Ô‰ á‰(Š0+Š.\Š‹Š¥Š ÄŠÑŠ#슋!‹ ->‹I‹&c‹Š‹£‹²‹&Ê‹Añ‹43ŒhŒ „Œ‘Œ¯ŒÈŒ:èŒ6#%Z'€¨ÄKß+Ž FŽSŽ iŽ0vŽ.§Ž#ÖŽúŽ  5 C(Py,‹¸GÏ 1+R~"š'½"å‘"‘#?‘c‘ ƒ‘ ‘|ž‘’1’$@’0e’?–’?Ö’D“W[” ³” À” Í”×–ì–û–—,—&I—-p—Už—ô—$˜%*˜P˜b˜$r˜—˜§˜¸˜Ö˜ õ˜š!2šTš eš rš€š‘š0 š,Ñšþš›$.›S›p›ˆ›››¸›¼›Ö› ç›ô›!œ'œ$.œ#Sœ'wœŸœ´œ/Íœ ýœ -"%<&b‰#¡Å'á( ž2ž%Lžrž#Šž®ž'Êž/òž="Ÿ `Ÿ mŸ,{ŸG¨ŸHðŸ:9 6t 1« Ý ô m¡²u¡k(¢m”¢e£Zh£Tã+¤*D¤o¤ ¤ š¤ ¨¤;µ¤Tñ¤F¥^¥z¥”¥®¥'Ç¥2ï¥1"¦lT¦Á¦Û¦'ó¦*§F§`§-v§3¤§اò§& ¨*0¨![¨&}¨[¤¨3©&4©$[©&€©?§©;ç©!#ªEª(_ª$ˆª(­ªÖªôª$«-«0>«,o«œ«¼«Ø«ô«¬;.¬"j¬/¬ ½¬3Þ¬+­]>­8œ­>Õ­®,4®*a®*Œ®,·®Aä®*&¯0Q¯F‚¯bɯ,°#K°o°…°#¥°!É°xë°9d± -ž±©±"¸±6Û±—²2ª²+ݲ ³)³L:³>‡³Ƴà³ø³,´"A´d´)~´¨´ º´Û´ì´ü´µ&µ&=µdµ‚µ žµ«µÀµ&ϵöµC¶X¶Kr¶?¾¶þ¶&·8?·:x·1³·å·!ÿ·&!¸"H¸!k¸&¸\´¸F¹(X¹*¹B¬¹!ﹺ'+ºJSºtžº»1»O»0d»•»¯».Ï»þ»+¼+;¼)g¼,‘¼>¾¼ý¼½7½T½q½>½À½/Ͻÿ½ƒ¿¿ ¼¿ -É¿DÔ¿À(ÀBÀ)bÀ#ŒÀ'°À1ØÀ+ -Á!6ÁXÁnÁ%ŠÁ°Á#ÐÁ-ôÁ'"ÂJÂh€Â'žÂ!ÆÂ%èÂ/Ã)>ÃhÈâÃ)ÂÃ#ìÃ'Ä18Ä+jÄ!–ĸÄÇÄ=ÝÄÅ6ÅHNÅ?—Å4×ÅA ÆANÆ;ÆÌÆ?æÆ?&Ç?fÇ>¦Ç-åÇSÈgÈ6È<¸ÈõÈ7ÉIÉ#gÉ0‹É'¼É+äÉ%Ê6ÊLÊ.iÊK˜Ê.äÊ5ËIË3cË4—Ë+ÌË+øË;$ÌS`Ì<´Ì‘ñ̃Í.Î&BÎiÎ -…ÎÎ(®Î×Î/óÎ#Ï.;ÏjÏ …Ï‘Ï'¨ÏÐÏéÏÐ1Ð"IÐ2lÐ ŸÐ9ÀÐ*úÐ@%Ñ;fÑ=¢Ñ9àÑ(Ò%CÒ(iÒ"’Ò*µÒ$àÒ.Ó44ÓwiÓZáÔˆ<ÕáÅÕx§×b ؃Ø[–Ù)òÙ'ÛhDÜ™­Ü}GÝ›ÅÝ^aÞ&ÀÞnçßÜVã„3ås¸å@,æmç -ƒç -Žç ™ç#¥ç0Éç'úç"è5èOèiè$xè$è)Âè*ìèé)éCéPRé$£éÈé-åéê2ê'Mê%uê›ê'¶ê3Þêë'-ë%Uë{ëE˜ë'Þëì,!ì(Nì2wì8ªìRãì;6írí-í»íJÚí2%î,Xî5…î»î×îëîï)ïDï_ïwï%ˆï2®ïáï^óïRð[ðuðŠð¢ð«ðÃðàðýð -ñ - ñ +ñ 8ñFñ!\ñX~ñì×ñ Äò"ÒòõòAó;Vó ’ó?Ÿó?ßó.ô1Nô/€ô.°ô3ßô7õKõZõtõ…õ#šõ.¾õ íõùõö0öGö*`ö‹öœö¶öÓöóö ÷))÷S÷o÷R‹÷Þ÷aý÷-_ø8øOÆø ù-#ùQù(lù •ù ¡ù­ù.Ëùúù ú'*ú,Rú -úŠúžú¼úÕú'ïúûv û_—ûc÷ûc[üc¿üy#ýuýÕþnéþ!Xÿ^zÿ3Ùž ©¬2V̉ýVT—Ö1n -  -þ· ¶ (¿ è Bñ Y4 qŽ [Y\J¶SRU‚¨í+ŒI¦tðøey^ŒØEe5«sáÇUq(4¸.í0 ¹M! -#ˆ$q›$¿ &XÍ'*&(Q(Nf(µ(&Ë(1ò(0$)U)e)n)‹)œ)/¬)0Ü)0 *>*%V*+|*¨*Á*)×*++#-+ -Q+\+r+Ž-1¤-Ö-#ó-%.!=.%_.6….A¼.!þ.% /#F/j/-ƒ/±/Ï/â/#÷/0 -;0 -F0Q0&`0c‡0Rë0>1SÀ13‰5¡5¶5)Å5*ï56+6(>6?g6"§6Ê6á6J÷6IB7;Œ7dÈ7<-8+j80–81Ç8@ù8::9!u9—9³9Ä9Ö9<ð9-:=:zN:6É:;;(;&7;&^;…;œ;³;Ð;Oï;Q?<‘<¥<W¹<m=h=¦è=>•?P¨@kù@eAŽöA-…B—³DÇKEËF·ßFÜ—GétH÷^IËVJ"Kt'L|œLvMÅMúVN¦QOîøOäçPÌQ_ÕQ 5R BR%PR7vR®RÎRéRoëRÆ[S"T$T -TL7TO„T)ÔT{þU¬zV¢'WŸÊW1jXœX¯XÃXÝXõXYY )Y 7YCY#WYT{Y ÐYÝY -øYZZ1ZFZ*VZ)Z«ZÀZÚZ ùZ[ [ $[)E[o[ ƒ[ [™[œ[·[+Ó[4ÿ[/4\ d\r\ ‡\ “\+Ÿ\Ë\ ä\ð\ÿ\]"] :]H]7c]›]­]½] Ö]ä] þ]5^>^P^ m^#{^7Ÿ^.×^__-_@_$`_…_ž_·_Ð_ç_``5`P`k`+‰`µ`Ñ`é`aa/aJa0`a‘a§aÃaÕaéa.b4bNb,jb—b.³bâbþbcB9c"|cŸc ³cÁcÖcèc(d+d HdVdrdŠd  dªdºdÐdídðde e*e:e9Qe‹e œeªe ºeÆeÛeìe üe f f !f -f7fSf#nf!’f ´fÀf Öf äfîf-þf!,g;NgŠg!™g »gÜgïgh h/'hWhph‡h¢h ¥h ±h »hÇh"áh i i i'@iKhi´i*Íi øi$j)j;jDjTjij~j–j°jÇjÚjðjkk8kOkik €kk¨k °k¼kÏkékll2l Rl ^l llxl!l ±l ¿lÍl ålm m"&mIm!hmŠm#šm ¾mÊmÍmÒmêmnn;n.Zn‰n"¨n ËnÙnêno o;oNVo¥o»o"Íoðo)p29p‚lp\ïpoLq¼q#Üq;r2°ó¡—Vø8 ·=AKzI›ª3ì{9‚&]GÔp)±$lì¸ñüÏàéâ¼i º­¥=3w̲†c­Á±)»ˆšhYVük’O*ùr(.º´k#™ö½æý†º Éh3* ¨aåòé§Ô¶ddxåçbÌѪWQb–®¶mèžäÕGñ ¥ùZ¬Õ0 oÙgÚ£—îä&Xò“¼‹®æã4DZâ5Rßâ4u¦q!fV‰4ô+ô _¼—>nŠê× à Ï11sÿ)#70Leå zÆ`aÁTÞÜ‹Ô@ ñ}øÆ ÿ0*& Ýä$vŸ¿~/KÂDE¶‹¨u€?J­×[,ßõŽNezceFc @ oDûr¼ÚR–:ûøp­«<½D ˃ßã! EÀ¡œ¨Ò‚2Ȧϙ®sú¹ýá¹éP†Ìsï1D ?<i9sµUÞAÞ…Ýö4„êp1“L}ÂMÍ(¯Råár‡g¡`×2• ¤¶ì„ðpu× è½> ˆœ‡¬|kÙy¬ž3 d`œ¥ñÎí.ª:þ=BGgÂ"@jví}¦ ÍËeu Î òôõçyM«H _Œ±«ý†w„š ’ $a5 R&)! ™‘¿—þ"D1( èèi\šï²!ÈËPV_¸RØŸ[$Ñ»µd ð¯#¡Í‹SŸÛUÓ,¸ ÜÕ‡é>“ü‹‘ý¶/á[ƒ… Ð`mã ¼Š1ï” Ö¯Ê®VÍÓ-®‰CE ½Ñü¨°6•viT¿ž;‡Èó, vÉ.9 Œ6 Á[fƒ$>k~Å!›ÃPa›nð˜ŠÔµwŽ—Œ -å Ì-TDH5JQ¯Í]/ˆý] '„Ä3à?æ¿öEØÛ„˜Ã„]+)  ´©ÃÖ¾Pè8ïÈ# §ee -êÁ4 Í%X_ìjxL'" &þ…à’ •äŒ¨ð¤ŸÃ(  4M:°˜¹>ãª7ú_j"Bð*™(1 vgÏŒŒ| í*6Ö Êã´oÏhÛ4;]ûCÌT‘µŽ‰ P: üyÚ ·±«ÓŠ¢lë÷uË‹ 亩ª‚c8£ˆÉÐA6š²|3É §ÙAKíHß4¶:xz.u£ nÄò’Qg²¥½7,OšÊ(ÔÖìÒ)ÐÎVy#%–'èܳóIðŠcœ×>#®×@*§á€†MŽßÃz¦= ˆOÕ@1¯Ø¶XHã-Ý·ßÓ‰q®¯ëÅ»‘Gž<Dbë òs]¡Øzîz.ï1îD#3f–½EN¤B¬Ù‚:€ FÞóqu7{š8´"$ ·.L(Þ0ÐFs•<„ÄYùº/jà!,qÆ‘5ñÏyûPõæfþ'…r8*¿Ð÷%ÐNÀæÓ+¤ S{ù6…ˆ?Î~˜ÂGØ܈Oÿd¾<ðx™ÄÏBÛo‰’& -H“nè–,”™ýNÒøÄs7^Þu—bþç–tšhwÀ§©­,îLDÃeS¸ÆÌ×A^³ž¹†Z»ajÆ/ó0ÍXtÃ2´Qè?5¼´Å¹n& \ê+k-Aaô¤Yµã{I±|8.(C™F”MÓwúΤªúßÇŸò\x6 å'é@3ÄWÅ\=ÖÛ¢¸/Ág“Iö†ÈJ© -q4o‰>Sƒ¡}2I TœRÀç’`0:.UKÚßË 9Rÿ~÷ó35E­m' "ð7/ m<. tPô€Ü­bÚ;È´rHlÉÿõXä˜ì‰æL¢jipZ"ª\Mf8^#é|h`ÒÄç£E ^û>cž»vOtå\ãIQ[~‘þõEO -;gßC”£WWœ+åGñ Û% oéĈ¬ÿ'8G÷ »—hC¤”¥…´Ùw®Tì„ïýEÛ^Q‹ÂÅŽ-£²Âk]⌎‘É²È -ˆ¯›ÏJ YµŸ¡—I‚ëÐ*tVëù dBfSÕ[_léâU/X7B‡¦<7 :~±…ŽNàØÉuÒRi ª-9âCØ3¿”³ŸkCa ÿ< ÊQ'³_q+™ù7ÎÀ©â=Kq=iç!Z +%‚™¦ Ëb+ ¾C/ n@°‹y@~NÑŽ6‘’U'Hm$Mv~‚Áë-¼¡Wý‰:è§~Ҍ €ÒUG ÖÅÊ%wtŠø; “À³¸›1¥$†ÕFõÊÜLø¢–¦Â- º÷nIKn0Ž@ƒ ŒòJ-ž÷êÄá ØC )"/f¯…Ê22øÑñ`Fl«Î&À«›’9ÃÙpF[{ëÞчç§2 Óìþ8r ÅP(£Úoÿä¦Ö%Vy)ÜN+ÓT·¯ÿ vÁIö? ¬¸}  - ÉÝ;Ü‚Ú¾‡½ºYH°\ZÎcê¿tj¢Í×¥Þêzñ©ÔK€•2Xƒ‡â_ÛÇqà >ÔÐUh¨9?ù*âl”OŠ)xà·B]¸²±@¹Ñ,aQ˜rÔûûJASjÆBmöš¨bÉ -\6y8˜{mZ! ÔUÃOUÝæ¾bA°–X5ôL®ÞÀB ˜šWµ|q¹Ž«¶ÈÆó í p[!'¤Ë©ò¼jx§GæížJá¾Ï²­»Á`ö“æÙNt·`A àÇÇ°WïÆö Q£ãœê»0 µí= Ò¢0¾{³œgm›kŸµ|î}°H{±¿rþÇKK³Póø îŠ_Õ;†´Ðc!¿p#J?ô%±W­-|F}ÌúMí RF ˜Ýx°l–Swe¤;Id‡£TK nê&Õ[.ÌÀV¥7뢔ª œÍ¥)Y¢h³60ðfgF€îvJù…Z^¨õçiA"9ôìYŠxǸÚÊä‹Ì¡ü$ëC5ËÙmeS|9a”Ñ  O È{þY&ƒúÅ2,“·5(: •X½;^· ›4 ák<ØLú -l¦çsYÝ"•+ûÒ^í—fùr ¬T׺¹ÇEú‚%iÝ€oZt åÖü÷cóá¼õÙî* -ä\N,høÁ?§ËÎôs‰$•;BŸÆ“žºû¬•Ú ý -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundP_atternsPack my box with -five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path 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) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.Really clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%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' -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' -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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-11-18 20:06+0100 -Last-Translator: Бранко Ивановић -Language-Team: Serbian (sr) -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2; - -ÐеиÑправна опција„%s“ - -Употреба: %s [опција ... ] [датотека ... ] - - --batch-interpreter <процедура> - Процедура којом обрадити наредбе у пакетном режиму. - --debug-handlers Укључи нефаталне руковаоце Ñигнала за откривање грешака. - --display <екран> КориÑти наведени X екран. - --dump-gimprc ИÑпиши gimprc датотеку Ñа подразумеваним подешавањима. - --no-cpu-accel Ðе кориÑти нарочита убрзања процеÑора. - --no-shm Ðе кориÑти дељену меморију између ГИМП-а и додатака. - --pdb-compat-mode - СаглаÑни режим за процедуралну базу. - --sesion <име> КориÑти другу датотеку ÑеÑије. - --stack-trace-mode - Режим откривања грешака за кобне Ñигнале. - - --system-gimprc КориÑти наведену ÑиÑтемÑку gimprc датотеку. - --verbose Прикажи почетну поруку. - -b, --batch <наредбе> Обради наредбе у пакетном режиму. - -c, --console-messages Прикажи упозорења у конзоли умеÑто у прозору. - -d, --no-data Ðе учитавај четке, прелазе, палете, муÑтре. - -f, --no-fonts Ðе учитавај фонтове. - -g, --gimprc КориÑти другу gimprc датотеку. - -h, --help Прикажи овај помоћни текÑÑ‚. - -i, --no-interface Покрени без кориÑничке маÑке. - -s, --no-splash Ðе приказуј почетни прозор. - -v, --version Прикажи информације о верзији. -Слојева: %d%d тпи%d тпи, %sСлојева: %d%d минута%d Ñекунди%d x %d тпи%d x %d тпи, %s%d x %d тачака%g x %g %s%pКопија канала %sÐаправи избор на оÑнову %s канала%s порукаУмножак %s%s маÑка%s%sКлик: прошири избор%s%sПревуци: премеÑти & компреÑуј(%0.3f, %0.3f, %0.3f)(Ðишта)(Овај конзолни прозор ће бити затворен за деÑет Ñекунди) -(Ðеименован бафер)(Ðеименована муÑтра)(Ðемонотона)(чиÑÑ‚)(неиÑправна UTF-8 реч).(измењен)(ништа)1 Ñлој1 Ñлој15 Ñтепени %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2Д транÑформације...4:1 (400%)8:1 (800%)<%s><<неиÑправно>><нема модула>За најбоље ГИМП перформанÑе, нека подешавања ће можда требати променити.Гимп — Гнуов програм за обраду Ñлика (GNU Image Manipulation Program) -Сва права задржана ©1995–2004 -СпенÑер Кимбол (Spencer Kimball), Питер ÐœÐ°Ñ‚Ð¸Ñ (Peter Mattis) и Гимп развојни тим.ÐиÑам могао да обрадим датотеку Ñа ГИМП Ñаветима!Чини Ñе да недоÑтаје ваша датотека Ñа ГИМП Ñаветима!Датотека „%s“ већ поÑтоји.Додај у _изборУ_гаоО ГИМП-уÐкцијаÐктивирај _фокуÑирану ÑликуÐктивни филтериПрилагодљиво ÑуперодÑецањеДодајДодај алфа _каналДодај Ðлфа каналДодај везуДодај каналДодај боју у мапу бојаДодај вођицу:Додај вођицеДодај водоравне вођицеДодај м_аÑку Ñлоја...Додај ÑлојДодај маÑку за ÑлојевеДодај путањуДодај потеѕДодај Ñлој за текÑтДодај уÑправне вођицеДодај маÑку ÑлојуДодај боју Ñа позадинеДодај боју иÑцртавањаДодај маÑку ÑлојаДодај текÑÑ‚ ÑлициДодај текућу боју у иÑторијат бојаДодај изабрани филтер у лиÑту активних филтера.Додај у палету %sДодај у текући изборДодајем тему „%s“ (%s) -ДодатакДодатни улазни управљачиПодеÑите оÑветљење и контраÑтПодеÑи равнотежу бојаПодеÑи криве бојаПодеÑи нивое бојаПодеÑите оÑветљење и контраÑтПодеÑи равнотежу бојаПодеÑи криве бојаПодеÑи нивое бојаПодеÑи нијанÑу / оÑветљење / заÑићењеПодеÑи нијанÑу и заÑићеноÑтПодеÑи нивое аутоматÑкиПодешавањеÐапредне опцијеУтицај:Дотична површина %sСпрејСпреј Ñа променљивим притиÑкомÐл_фа у изборПоравнатоПоравнањеСви каналиСве датотекеСве датотеке (*.*)Све Ñлике и подаци о поништавању који не Ñтану у оÑтаву за делиће биће упиÑани у датотеку размене. Ова датотека треба бити на локалном ÑиÑтему датотека Ñа довољно Ñлободног проÑтора (неколико деÑетина МБ). Ðа UNIX ÑиÑтему, можете кориÑтити ÑиÑтемÑки привремени директоријум („/tmp“ или „/var/tmp“).Дозволи потпуно провидним регионима да буду попуњениДозволи бирање потпуно провидних регионаДозволи повећавање %sÐлфаÐлфа у изборÐлфа:Слика изабране величине захтева више меморије него што је подешено као „Ðајвећа величина Ñлика“ у прозорчету ПоÑтавке (тренутно %s).Ðн_имацијеУÑидри плутајући изборУÑидри плутајући ÑлојУÑидри плутајући изборУгао:ÐебриÑач %sУмекшавање ивицаИзгледПримени МаÑку за ÑлојевеПримени маÑку _ÑлојаПримени оÑетљивоÑтПримени маÑку ÑлојаДа ли Ñте Ñигурни да желите да уклоните „%s“ из ÑпиÑка и Ñа диÑка?Да ли Ñте Ñигурни да желите да уклоните шаблон „%s“ из ÑпиÑка и Ñа диÑка?Као међу _поÑтавкамаЗатражи потврду пре затварања Ñлике која није Ñачувана.Размера:Размера:Прикачи паразитаПрикачи паразита ÑлициПрикачи паразита предметуПрикачи паразитаÐутор:ÐутоÐутоматÑки прати _активну ÑликуСам ÑмањиСам Ñмањи изборСам промени величину прозораÐутоматÑко учитавањеСамопрепознавањеДоÑтупни филтериДоÑтупни типови:Попуњавање бојом позадине_ОÑветљење-контраÑÑ‚..._БафериПозадинаБоја позадинеБоја позадине подешена на:Позадина: %d, %d, %dУназад (иÑправљајуће)ОÑновно попуњени делови на Ñвим видљивим ÑлојевимаЗаÑнуј избор на Ñвим видљивим ÑлојевимаИзаУдубљењеБилинеарноЦрно-белоЦрна:С_топи боје крајњих тачакаСта_пањеСтапање_ÐепровидноÑÑ‚ крајњих тачка при ÑтапањуСтапање:Стапање: Ðепримењиво за индекÑиране Ñлике.Стапам...ПлаваПлава:МрљаЗамрљај или изоштри_Граница...Границе каналаОграничи изборОграничи избор ÑаОÑветљење-контраÑтОÑветљење-контраÑÑ‚ Ñе не подешава за индекÑиране Ñлојеве.ЧеткаУредник за четкицеДиректоријуми Ñа четкамаКориÑничко Ñучеље четкеЧетка:ЧеткеМени за четкеПопуни бојомБафериМени за бафереСпалиОштроПо екÑтензијиВраћањем Ñлике у облик Ñачуван на диÑку ћете изгубити Ñве измене, укључујући податке за поништавање.CMYKК_алибриши..._Бирач бојаК_олоне:С_јединиПрилагођавање резолуције монитораÐе могу да поништим %sВе_личина платна...ОткажиОткажи вођицуÐе могу да додам маÑку Ñа различитим димензијама од изабраног Ñлоја.Ðе могу да додам маÑку Ñлоју који нема алфа канал.Ðе могу да додам маÑку Ñлоју који очигледно није део Ñлике.Ðе могу да уÑидрим овај Ñлој јер није у питању плутајући избор.Ðе могу да претворим у палету Ñа више од 256 боја.Ðе могу да направим нови Ñлој од плутајућег избора јер он припада маÑки или каналу.Ðе могу да направим директоријум „%s“: %sÐе могу да направим прегледÐе могу да иÑечем јер је текући избор празан.Ðе могу да повећам ${%s}Ðе могу да поÑтавим плутајући избор јер је изабрана облаÑÑ‚ празна.Ðе могу да подигнем Ñлој који нема алфа канал.Ðе могу да Ñачувам. Ðије ништа изабрано.Ðе може да иÑцрта празан канал.Ðе може да црта по празној путањи.Величина платнаРежим _попуњавања платна:Центар Ð¥:ЦентрираноПромени боју позадинеПромени елемент мапе бојаПромени боју четкеПромени резолуцију ÑликеПромени јединицу ÑликеПромени величину штампеПромени текући Ñлој или путањуПромени боју позадине мрежеПромени боју мрежеПромена индекÑиране палетеПромени перÑпективу Ñлоја или избораÐеуÑпешна измена пречице.КаналСвојÑтва каналаÐазив канала:Канал Ñе не може ÑпуÑтити ниже.Канал Ñе не може подићи више.Боја каналаКанал је већ на дну.Канал је већ на врху.Ðаправи избор од каналаÐаправи избор на оÑнову каналаÐаправи избор на оÑнову каналаКанал:КаналиМени каналаВеличина _поља:Изаберите Ñтил иÑцртавањаКругОчиÑ_тиОчиÑтиОчиÑти каналОчиÑти иÑторијат поништавањаОчиÑти Ñав текÑтОчиÑти грешкеОчиÑти иÑторијат поништавања...Кликните на „ÐаÑтави“ да прихватите наведена подешавања.Кликните на „ÐаÑтави“ да направите ваш лични ГИМП директоријум.Кликните на „ÐаÑтави“ да биÑте ушли у Гимп кориÑничку инÑталацију.Кликните на „ÐаÑтави“ да биÑте наÑтавили Ñа кориÑничком инÑталацијом.Кликните да повежете ову везу Ñа изабраном тачком.Кликните да направите нову везу. (пробајте Shift)Кликните да направите нови ÑаÑтојак путање.Кликните да направите нову путању.Кликни за приказКликните да обришете везу.Кликните да убаците везу на путању. (пробајте Shift)Кликните да претворите овај чвор у угао.Кликните да отворите путању.Кликните да изаберете коју путању да уређујете.Кликните да ажурирате приказ -%s Кликните да ажурирате иако је приказ ажуриранКликните па превуците да измените изглед криве. (Shift: Ñиметрично)Кликните па превуците да премеÑтите везу.Кликните па превуците да премеÑтите везе.Кликните па превуците да премеÑтите ÑаÑтојак. (пробајте Shift)Кликните па превуците да премеÑтите ручку. (пробајте Shift)Кликните па превуците да премеÑтите путању.Клик: изабериКлик: изабери Превуци: премеÑтиИÑеци разултатСпиÑак иÑечакаУгради према Ñлоју на днуУгради према ÑлициКлонЗатвори %sЗатвори овај лиÑтУ_множи путању_Ð‘Ð¾Ñ˜ÐµÐ‘Ð¾Ñ˜Ð°Ð‘Ð°Ð»Ð°Ð½Ñ Ð±Ð¾Ñ˜Ð°Ð¤Ð¸Ð»Ñ‚ÐµÑ€Ð¸ за приказивање бојаБирач бојаПодаци бирача бојаРавнотежа _боја...Мешање _боја:БаланÑирање боја ради Ñамо за Ñлојеве у RGB бојама.Бриши Ð±Ð¾Ñ˜ÐµÐ˜Ð½Ð´ÐµÐºÑ Ð±Ð¾Ñ˜Ðµ:Боја:_Мапа бојаПро_Ñтор боја:О_боји...Тип бојења ÑегментаТип бојења избораОбојиБојење ради Ñамо за Ñлојеве у RGB бојама.Обоји ÑликуОбоји ÑликуМапа бојаУређивач мапа бојаМени мапе бојаКолоне:Пр_имедба:ПримедбаКон_траÑÑ‚:За_мотајПодеÑи филтере за приказивање бојаПодеÑи п_роширене улазне уређаје...ПодеÑи _мрежу...ПодеÑи мрежуПодеÑи мрежу ÑликеПодеÑи пречице Ñа таÑтатуреПодеÑи пречице Ñа _таÑтатуре...ПодеÑи изабрани филтерПодеÑи изабрани филтер: %sПотврди величину ÑликуПотврди размеруПотврди уређивање текÑтаПотврди затварање _неÑачуваних ÑликаСукобљене пречицеКонично (аÑиметрично)Конично (Ñиметрично)Повежи потезеКонÑтантноОграничењаКонтекÑтКурÑори који Ñе мењају у завиÑноÑти од контекÑта Ñу Ñтрава. Подразумевано Ñу укључени. Ипак, повећавају захтевноÑÑ‚ што вам можда неће одговарати.ÐаÑтавиДопринелиПребациПретвори ивицуПребаци Ñлику у Ñиве тоновеПребаци Ñлику у индекÑирануПребаци Ñлику у индекÑиране бојеПребаци Ñлику у RGB режимПретвори ÑликуПребаци Ñлику у индекÑирану (корак 2)...Пребаци Ñлику у индекÑирану (корак 3)...Претварам Ñлику у индекÑирануЗамотајТип замотавања %sУмножи именованоУмножавам датотеку „%s“ из „%s“...ÐуторÑка права:Корумпиран Ñегмент %d у датотеци Ñа преливима „%s“.Ðе могу да направим „%s“: %sÐиÑам уÑпео да направим привремену датотеку за „%s“: %sÐе могу да обришем „%s“: %sÐе могу да нађем разгледач Гимпове помоћи.ÐиÑам могао да отворим „%s“ за читање: %sÐиÑам могао да отворим „%s“ за упиÑ: %sÐиÑам могао да отворим умањени приказ „%s“: %sÐиÑам могао да прочитам %d бајтова из „%s“: %sÐе могу да претражујем XCF датотеку: %sÐе могу да покренем додатак за разгледање Гимп помоћи.Бројач:ИÑе_ци ÑлојÐаправи нови _прикачени прозорÐаправи нову муÑтруÐаправи нову ÑликуÐаправи нови ÑлојÐаправи нови шаблонÐаправи нови приказ за ову ÑликуÐаправи нову Ñлику према изабраном шаблонуÐаправи нови шаблонÐаправите и обрадите Ñлике или фотографијеÐаправи и уреди путањеÐаправи путању од текÑтаÐаправи избор из путањеОбразујем преглед ...Правим директоријум „%s“...ИÑециИÑеци и промени величинуПодаци о иÑецању и промени величинеИÑеци ÑликуИÑеци ÑлојИÑеци ÑликуИÑеци или промени величину ÑликеИÑеци:Само нишанИ_ÑециИÑеци _именовано...ЗапреминÑки (најбоље)_Текуће ÑтањеТекућа виÑина:Само текући ÑлојТекуће ÑтањеТекућа ширина:Курзор_Режим курÑора:_ИÑцртавање курÑора:Ð’Ñ€Ñта кривуљеКривуљеКривуље за индекÑиране Ñлојеве Ñе не могу подеÑити.ПроизвољноПроизвољна бојаПроизвољни преливПроизвољна боја попу_њавања платна:ИÑециИÑеци именованоЦијанЦијан:D_уплирај четку_Дуплирај каналД_уплирај преливД_уплирај Ñлој_Дуплирај палетуД_уплирај Путању_Дуплирај муÑтруД_уплирај шаблон...Боја тамних пољаСамо тамниЦрта тачка тачка...Црта тачка...Ðачин црткања:Црткање:ЦртканоДатум:Ðалажење грешакаПодразумевани изглед у приказу преко целог екранаПодразумевани изглед у нормалном режимуПодразумевана мрежаПодразумевана мрежа ÑликеПодразумевана _интерполација:Подразумевана _величина прегледа за Ñлојеве и канале:Подразумевана _оÑетљивоÑÑ‚:Обриши везуОбриши везеОбриши маÑку Ñло_јаИзбриши маÑку за ÑлојевеОбриши објекатОбриши ÑегментОбриши шаблонОбриши четкуОбриши каналОбриши бојуОбриши преливОбриши ÑлојУклони маÑку ÑлојаОбриши палетуОбриши путањуОбриши муÑтруУклони Ñачуване опције...Обриши изабрани баферОбриши изабрани шаблонОбриши ову ÑликуУклони вектореБриÑање „%s“ није уÑпело: %sГуÑте тачкеОÑиромашиСмањивање заÑићеноÑти боја ради Ñамо у Ñлојевима RGB боја.ОпиÑДизајнСтање уређајаУређајиПрозорчићиМени за прозорчићеРомбоидРазликаDirect ColorИÑкључи маÑку ÑлојаИÑкључи брзу маÑкуЗанемари податке о текÑтуПриказПрикажи навигацијуПрикажи _филтере...Приказне процедуреВрÑта приказа:Приказујем [%0.6f, %0.6f]УтопиРаÑтојање:Раздаљина: %0.6fМешање бојаПоделиСвежа _кориÑничка инÑталацијаДа ли заиÑта желите да вратите опције Ñвих филтера на подразумеване вредноÑти?Да ли заиÑта желите да вратите Ñве опције алата на подразумеване вредноÑти?Желите ли да је преÑнимите датотеком коју чувате?_Ðе чувајПрикачивИÑторија_Ñ‚ документаИÑторијат документаДокументаМени за документаСма_кни/ÑпалиСмакниСмакни или Ñпали потезеСмакни/ÑпалиДво-цртканоПревуци везуПревуци везеПревуци кривуПревуци ручкуПревуци путањуПревуци: премеÑтиЦртај маÑтиломЦртежРежим цртежаПроцедуре цртежаОдбаци нови ÑлојОдбаци нову путањуЗбог недоÑтатка фонтова, није могућа употреба текÑта.Одбаци догађаје Ñа овог управљачаDуплирај четкуДуплирај каналДуплирај преливДуплирај ÑлојДуплирај палетуДуплирај путањуДуплирај муÑтруДуплирај изабрани шаблонEEK: не могу да поништимИ_звези путању...Ð’_еома малоПонашање ивица_ИÑтакни ивицеИзмениИзмени ÑвојÑтва каналаИзмени боју каналаИзмени ÑƒÐ½Ð¾Ñ Ð±Ð¾Ñ˜Ðµ палетеИзмени ÑƒÐ½Ð¾Ñ Ð±Ð¾Ñ˜Ðµ палетеИзмени ÑвојÑтва ÑлојаУреди маÑку ÑлојаРежим уређивањаИзмени боју палетеИзмени ÑвојÑтва путањеИзмени ÑвојÑтва брзе маÑкеИзмени боју брзе маÑкеИзмени шаблонИзмени четкуИзмени ÑвојÑтва каналаИзмени боју...Измени ÑƒÐ½Ð¾Ñ #%d боје палетеУреди преливИзмени ÑвојÑтва ÑлојаУреди палетуИзмени ÑвојÑтва путањеУреди муÑтруУређивачке процедуреИзмени изабрани шаблонИзабери елипÑуПразан каналПразан ÑлојПразна путањаПразан Ñлој за текÑтИÑпразни назив променљиве у датотеци окружења %sПо_бољшајУкључи брзу маÑкуУкључи мешање _провидноÑтиУкључи овај управљачОмогући приказ згодног ГИМП Ñавета на почетку.Омогући приказ Ñавета за алате.Ðенормално великоУнеÑите назив за ÑаÑтављену палетуУнеÑи име за Ñачуване опцијеУнеÑи назив за овај баферУнеÑи име за ову муÑтруУнеÑите ново име за Ñачуване опције алатаУнеÑите путању (адреÑу):ОкружењеДиректоријуми за окружењеИзједначиИзједначавање тонова не ради код индекÑираних Ñлојева.Обриши у позадину или провидноÑтБриÑач_Конзола за грешкеКонзола за грешкеМени конзоле за грешкеГрешка при чувању XCF датотеке: %sГрешка при обради „%s“ у %d. реду: %sГрешка при читању „%s“: %sГрешка при читању датотеке четке „%s“: %sГрешка при пиÑању у „%s“: %sГрешка при пиÑању XCF: %sГрешка при пиÑању у датотеку „%s“: -%sГрешка при упиÑу у „%s“: %sГрешка при упиÑу у привремену датотеку за „%s“: %s -Датотека није направљена.Грешка при упиÑу у привремену датотеку за „%s“: %s -Оригинална датотека није дирана.ГрешкеДогађајВеом_а великоПовећај по потребиИзвези путању у СВГИзвези Ñве путање из ове ÑликеИзвези активну путањуИзложеноÑÑ‚:Проширени улазни уређајиЕкÑтензијеПопуњавање текућом бојомБоја четке у боју позадине (HSV Ñмер казаљки на Ñату)Боја четке у боју позадине (HSV Ñупротно казаљки на Ñату)Боја четке у боју позадине (HSV)Боја четке у боју позадине (RGB)Боја четке у провидноÑтБоја четке у провидноÑтБоја четке/позадинеFG/BG БојеFS опуштањеFS укрућеноÑÑ‚FS на ÑлојПо_деÑи платно према ÑлојевимаИзблеђивањеÐиÑам уÑпео да увезем преливе из „%s“: %sÐиÑам уÑпео да увезем путање из „%s“: %sКичерајКобна грешка при обради датотеке Ñа четкама „%s“: датотека изгледа недовршено.Кобна грешка при обради датотеке Ñа четкама „%s“: датотека је неиÑправна.Кобна грешка при обради датотеке Ñа четкама „%s“: није Гимпова датотека Ñа четком.Кобна грешка при обради датотеке Ñа четкама „%s“: непознат облик четке Гимпа.Кобна грешка при обради датотеке Ñа четкама „%s“: непознато издање четке Гимпа.Кобна грешка при обради датотеке Ñа четкама „%s“: непозната дубина %d.Кобна грешка при обради датотеке Ñа четкама „%s“: непознато издање %d.Кобна грешка при обради датотеке Ñа четкама „%s“: неподржана дубина четке %d. -Четке Гимпа морају бити СИВЕ или RGBA формата.Кобна грешка при обради датотеке Ñа преливом „%s“: датотека је неиÑправна.Кобна грешка при обради датотеке Ñа преливом „%s“: није ГИМП-ова датотека Ñа преливима.Кобна грешка у датотеци палете „%s“: недоÑтаје магично заглавље.Кобна грешка у датотеци палете „%s“: недоÑтаје магично заглавље. -Треба ли ову датотеку превеÑти Ñа ДОС-а?Кобна грешка у датотеци палете „%s“: грешка при читању %d. реда.Кобна грешка при обради датотеке Ñа муÑтром „%s“: не могу да учитам %d бајтова: %sКобна грешка при обради датотеке Ñа муÑтром „%s“: непознато издање одÑечака %d.Кобна грешка при обради датотеке Ñа муÑтром „%s“: неподржана дубина муÑтре %d. -ГИМП муÑтре морају бити СИВИ или RGB.Уме_кшано...Умекшај каналУмекшај изборОлакшај ивицеУмекшај избор заДатотекаПрозорче за отварање _датотекаОперације Ñа датотекомВрÑта датотекеДатотека поÑтојиДатотека је одÑеченаПопуни каналÐепровидноÑÑ‚: Тип попуне %sПопуни Ñличне бојеПопуни провидне облаÑтиПопуни Ñве изабраноПопуни бојом позадинеПопуни бојом _позадинеПопуни текућом бојом четкеПопуни _муÑтромПопуни муÑтромПопуни провидношћуПопуни белом бојомПопуни _текућом бојом четкеПопуни бојом _позадинеПопуни Ñа преливом бојеПопуни бојом или муÑтромПопуњено_ФилтериКоначни, Ñпојени Ñлој треба да буде:Проналажење наÑтављајућих облаÑтиПроналажење Ñличних бојаУклопи Ñлику према прозоруУклопи Ñлику у прозорУклопи Ñлику према прозоруПо мери прозораУтврђена размераУтврђена величинаУклони (Ñпоји у један) Ñве Ñлојеве.ОкрениОкрени каналОкрени ÑлојОкрени путањуОкрени текÑтуални ÑлојВрÑта извртања %sИзврни према _хоризонтали:Изврни према _вертикали:Обрни ÑликуИзврни Ñлој или изборОбрћем...Окрећем...Плутајући изборПлутајући изборПлутајући ÑлојПлутајући избор -(%s)Плутајући избор пребаци у ÑлојПлутајући избор у ÑлојПлутајући избориФлојд-Штајнберг (нормално)Флојд-Штајнберг (Ñмањено отицање боја)ФокуÑДиректоријумиДиректоријумиДиректоријуми за фонтовеКориÑничко Ñучеље пиÑмаФонт:ПиÑмаМени фонтоваЗа пропиÑну ГИМП инÑталацију, директоријум под именом „%s“ мора бити направљен.ПодÑтакни аутоматÑко наглашавањеБоја четкеБоје четке и позадине. Црни и бели квадрати поново поÑтављају боје. Стрелице међуÑобно замењују боје. Дупли клик отвара прозор за одабир боје.Боја четкеБоја четке подешена на:Боја четке: %d, %d, %dУнапред (традиционално)И_з путањеСлободан изборСлободан изборСлободном рукомИз _темеИз окружења (тренутно %d x %d тпи)Са лева на деÑноСа деÑна на левоИз избораÐа оÑнову темеÐе_јаÑан изборПреко _целог екранаСлободан изборГИМПГимп проширењаПорука ГимпаГИМП подешавање перформанÑиГИМП додациГИМП Ñе подижеГИМП уредник текÑтаГИМП Ñавет данаКориÑничка инÑталација ГимпаГимп XCF ÑликаГИМП није могао да покрене графичку маÑку. -Проверите да ли Ñу иÑправна подешавања екранÑког приказа.Претраживач Гимпове помоћиГИМП није ваљано инÑталиран за тренутног кориÑника. -ИнÑталација за кориÑника је преÑкочена јер је коришћена „--no-interface“ заÑтавица. -Да би обавили инÑталацију за кориÑника, покрените ГИМП без „--no-interface“ заÑтавице.Гимп кориÑти ограничену количину меморије за Ñкладиштење података о Ñликама, тзв. „оÑтаву за делиће“. ПодеÑите њену величину како би Ñтала у меморију. МиÑлите и на меморију потребну за оÑтале процеÑе на ÑиÑтему.ГИМП кориÑти додатну gtkrc датотеку тако да можете подеÑити да изгледа другачије од оÑталих ГТК програма.Гимп издањеГИМП ће упозорити кориÑника ако покуша да направи Ñлику која би узела више меморије од велишине која је одређена овде.ГамаОпштеУопштено Ñе одноÑи Ñамо на 8-битне приказе, ово подешава минимални борј ÑиÑтемÑких боја одређених за ГИМП.СаÑтави најбољу палетуУтврди резолуцију монитораГигантÑкоGimprc процедуре_Стаклени ефектиПреливУредник за преливеМени уређивача преливаДиректоријуми Ñа преливимаБоје крајње леве тачке преливног ÑегментаБоја крајње деÑне тачке преливног ÑегментаКОриÑничко Ñучеље преливаПрелив:ПреливиМени за преливеЗрнаÑто извлачењеЗрнаÑто ÑпајањеСиваСиви тоновиЗеленаЗелена:МрежаРазмак вођицаПрошири каналПовећај изборПовећај избор заВођицеПријањање уз вођице и мрежуПроцедуре вођицаHSVHSV (%0.3f, %0.3f, %0.3f)HSV (Ñупротно Ñмеру казаљке на Ñату)HSV (у Ñмеру казаљке на Ñату)ХТМЛ запиÑ:_ВиÑина:Који читач _помоћи кориÑтити:Руководи положајем: %0.6fТврда ивицаЈако ÑветлоТврдоћаТврдоћа:ВиÑинаВиÑина:ПомоћРазгледач помоћиСиÑтем за помоћРазгледач помоћи Ñе не покрећеРазгледач помоћи није нађенПомоћне процедуреХекÑ:ÐаглашеноОзнака врÑте прозора за _прилепљене прозоре:Ознака врÑте прозора за _алатке:ÐаглашавањеÐаговештавање мења границе пиÑма да би дало лепа Ñлова мале величине_ХиÑтограмХиÑтограмРазмера хиÑтограмаИÑторијатВодоравноВодоравни померај прве линије мреже; ово може бити и негативан број.Водоравни размак линија мреже.Колико назива датотека Ñкоро отвараних Ñлика ће бити у Датотека менију.ТипÐијанÑа-заÑићеноÑтТип-заÑићеноÑÑ‚ раде Ñамо на Ñлојевима у RGB бојама.ÐијанÑа-_заÑићеноÑÑ‚Ðиј.:Огромно_Иконе и текÑÑ‚_СликаУ_вези путању...И_нтерполација:И_нтервал:ИконаИкона и опиÑИкона и текÑÑ‚Ðко је доÑтупно, наговештавање пиÑма Ñе кориÑти, али можда ћете радије увеккориÑтити аутоматÑки наговештајУколико је укључено, алат за премештање мења активни Ñлој или путању када Ñе бира Ñлој или путања. Ово је било подразумевано понашање у Ñтаријим издањима.Уколико не Ñачувате Ñлику, измене учињене у поÑледњих %s ће бити изгубљене.Уколико Ñада затворите Гимп, ове измене ће бити изгубљене.ÐеиÑправан назив променљиве у датотеци окружења %s: %sСликаСлика + вођицеОбрада ÑликаИнформације о ÑлициМени ÑликеВеличина ÑликеФормат ÑтатуÑне линије ÑликеШаблони ÑликаСличице Ñа прегледомФормат наÑлова Ñлике и ÑтатуÑне линијеФормат наÑлова ÑликеИзглед прозора Ñа ÑликомПрозори за ÑликеСлика не Ñадржи ниједан видљиви ÑлојДатотека ÑликеМаÑка ÑликеРезолуција Ñлике је изван опÑега, кориÑтим подразумевану резолуцију.Величина ÑликеИзвор ÑликеВрÑта ÑликеСликеМени за ÑликеОпције увозаУвези палетуУвези путањеУвези путању из СВГ-аУвези нову палетуУвези палетуУвези путањеУвезена путањаМаÑти_лоИз_врниИнвертуј маÑкуРаÑтућеУвуци:Увлачење првог редаИндекÑ:ИндекÑиранаИндекÑиране бојеПребацивање индекÑиране бојеСлојеви индекÑираних боја Ñе увек увећавају без интерполације. Изабрана врÑта интерполације ће утицати једино на канале и маÑке.Прозор Ñа информацијамаПочетна _размера:Иницијализуј маÑку Ñлоја на:Покрећем додаткеПокрећем додатак: „%s“ -МаÑтилоУграђена ÑликаУлазни управљачиУлазни уређајиУлазни нивоиУбаци везуÐаправи личну мапу боја; може бити кориÑно код 8-битних (256 боја) приказа.ÐеуÑпешна инÑталација. Позовите ÑиÑтем админиÑтратора.УÑпешна инÑталација. Кликните на „ÐаÑтави“ за даљи рад.Брзо ажурирање_Паметне маказеИнтензитет: %0.3f ÐепровидноÑÑ‚: %0.3fСучељеИнтерна ГИМП процедураИнтерне процедуреИнтерполација:ПреÑекПреÑек Ñа текућим изборомПреÑеци (нишани)ПреÑеци (тачке)ÐеиÑправан УТФ-8ÐеиÑправни УТФ-8 подаци у датотеци „%s“ÐеиÑправна УТФ-8 ниÑка у XCF датотециÐеиÑправна УТФ-8 ниÑка у датотеци Ñа четкама „%s“.ÐеиÑправна УТФ-8 ниÑка у датотеци Ñа преливима „%s“ÐеиÑправна УТФ-8 ниÑка у датотеци палете „%s“ÐеиÑправна УТФ-8 ниÑка у датотеци Ñа муÑтром „%s“.ÐеиÑправан Ñловни део у URIÐеиÑправна пречица.ÐеиÑправна ширина или виÑина. Обоје морају бити позитивни.ИнвертујИнвертуј каналОбрни изборОбртање боја не ради код индекÑираних Ñлојева.Обрни изборДа ли је то оно што желите?Чини Ñе да Ñте раније кориÑтили Гимп 2.0.СвојÑтва предметаВидљивоÑÑ‚ предметаПоравнај:Задржи провидноÑтДржи изнадЧувај размеру %sЧувај размеру %sЧувај виÑину %sЗадржи провидноÑтЧувај ширину %sСтрелица надолеСтрелица надоле (Alt)Стрелица надоле (Shift + Control + Alt)Стрелица надоле (Control)Стрелица надоле (Shift + Alt)Стрелица надоле (Shift + Control + Alt)Стрелица надоле (Shift + Control)Стрелица надоле (Shift)Стрелица левоСтрелица лево (Alt)Стрелица лево (Shift + Control + Alt)Стрелица лево (Control)Стрелица лево (Shift + Alt)Стрелица лево (Shift + Control + Alt)Стрелица лево (Shift + Control)Стрелица лево (Shift)Стрелица деÑноСтрелица деÑно (Alt)Стрелица деÑно (Shift + Control + Alt)Стрелица деÑно (Control)Стрелица деÑно (Shift + Alt)Стрелица деÑно (Shift + Control + Alt)Стрелица деÑно (Shift + Control)Стрелица деÑно (Shift)Стрелица нагореСтрелица нагоре (Alt)Стрелица нагоре (Shift + Control + Alt)Стрелица нагоре (Control)Стрелица нагоре (Shift + Alt)Стрелица нагоре (Shift + Control + Alt)Стрелица нагоре (Shift + Control)Стрелица нагоре (Shift)Кључне пречице могу Ñе динамички подеÑити у ГИМПу. Датотека menurc је Ñкуп ваших подешавања, па Ñе може Ñачувати за Ñледећу ÑеÑију. Можете мењати ову датотеку по жељи, али је много лакше подеÑити пречице из ГИМПа. БриÑање ове датотеке ће вратити у употребу подразмеване пречице.ТаÑтатураПречице Ñа таÑтатуреЛÐДБоја _леве крајње тачке...ВодоравноВеликоВелико (256x256)Већи прегледиПоÑледња грешкаСлојСлој „%s“ нема алфа канал. Слој је поÑтављен изнад њега.СвојÑтва ÑлојаВеличина _граница Ñлоја...Тип попуњавања ÑлојаМаÑка Ñлоја у изборИзабери ÑлојВеличина Ñлоја_Режим ÑлојаÐазив Ñлоја:Слој Ñе не може ÑпуÑтити ниже.Слој Ñе не може подићи више.Слој је већ на дну.Слој је већ на врху.Изједначи величину Ñлоја и ÑликеСлој на _дноСлој на _величину ÑликеСлој на _врх_Ðлфа канал ÑлојаСлојевиМени ÑлојеваОпције за повезивање ÑлојеваБоја крајње леве тачкеПоравнато улевоДужинаДа ли ГИМП треба да приликом подизања покуша да опорави учита поÑледњу Ñнимљену ÑеÑију.ÐивоиÐе могу Ñе прилагодити нивои индекÑираних Ñлојева.Боја Ñветлих пољаСамо ÑветлиЛинијаПроред:Ширина линије:_Стил линије:Стил линија коришћен за мрежу.ЛинијÑкиВезан предметУчитајУчитај кривуљеУчитај нивоеУчитај боју _деÑне тачке изПрочитај подешавања кривуља из датотекеПрочитај подешавања нивоа из датотекеУчитај текÑÑ‚ из датотекеУчитавам преглед ...МеÑто:ЛогаритамÑкоДуге цртицеТражим датотеке Ñа подацимаСпуÑти каналСпуÑти канал на дноСпуÑти канал на _дноСпуÑти ÑлојСпуÑти Ñлој на дноСпуÑти путањуСпуÑти путању на дноСпуÑти путању на _дноСпуÑти каналСпуÑти канал на дноСпуÑти ÑлојСпуÑти Ñлој на дноСпуÑти путањуСпуÑти путању на дноУ_већај_ГлавниПребаци на _екран...Ма_паМагентаМагента:Увећај_Учини провиднимРуковање учитавајућим модулимаБрзина _марширајућих мрава:ÐепровидноÑÑ‚ маÑке:МаÑкирај _изабране облаÑтиМаÑкирај _неизабране облаÑтиМатрица:Ðајвећа дубина:Ðајвећа величина _датотека за прављење Ñличица:Ðајвећа величина _нове Ñлике:Ðајвећа разлика у бојиÐајвећи број _поништавања корака:Значај:МерењеМери раÑтојање и угловеМери раÑтојања и угловеИзмерите лењире и унеÑите њихове дужине:Медијана:СредњеСредње цртицеСпоји Ñа Ñлојем _иÑподСпоји Ñа Ñлојем ниже.Споји ÑлојевеСаÑтави палетеСпоји видљиве ÑлојевеСпоји видљиве путањеСпоји _видљиве Ñлојеве...Споји _видљиве Ñлојеве...Споји _видљиве путањеСпоји ÑлојевеСаÑтави палетеСпоји вектореПроцедуре за обавештењаПорука поновљена пута: %d.Порука поновљена Ñамо једном.Порука Ñе преуÑмеравају на излаз за грешке.Средњи тоновиПренеÑи подешавања кориÑникаÐајмањи број _поништавања корака:РазноУгаоноРежимРежим:Измени изабрану бојуИзмени нивое изабраног раÑпона бојаИзмени Ñве бојеИзмени проредДиректоријуми за модулеПретраживач модулаПутања до модулаМодулиКурзори мишаТочкић мишаПремеÑтиПремеÑти везеПомери каналУклони плутајући изборПомери вођицеПремеÑти вођицу:Помери ÑлојПомери маÑку ÑлојаПомери путањуПремеÑти изборПремеÑти текÑтуални ÑлојÐлат за премештањеПремеÑти предметПремеÑти Ñлојеве и избореПремеÑти изборПремеÑти текући ÑлојПремеÑти текућу путањуПомери изабрани филтер нанижеПомери изабрани филтер навишеПребаци на екран...ПремеÑти:УмножиБрој _боја:Ðа_вигација_Ðавигациони прозорВеличина прегледа за _навигацију:ИмеИме:ÐавигацијаÐови каналБоја новог каналаОпције новог каналаÐова боја Ñа по_задинеÐова боја из боје _иÑцртавањаÐова ÑликаÐови ÑлојÐова ПутањаОпције за нову путањуÐови шаблонÐова четкаÐови каналÐови канал Ñа претходним вредноÑтимаÐови канал...Ðова боја Ñа позадинеÐова боја из боје иÑцртавањаÐови преливÐови увозÐови ÑлојÐови Ñлој Ñа поÑледњим вредноÑтимаÐови Ñлој...Ðова палетаÐова путања Ñа претходним вредноÑтимаÐова путања...Ðова муÑтраÐови векториÐиједна четка није доÑтупна за ову алатку.Филтер није изабранÐема линијÑких прелива у „%s“Ðије више доÑтупноПутање ниÑу нађене у „%s“Путање ниÑу нађене у баферуÐема доÑтупних муÑтри за ову операцију.Ðема избораÐема избора који би био узет за контуру.Без умањеног приказаÐепоравнатоÐиштаÐишта (најбрже)ÐормалноÐормално (128Ñ…128)Обичне тачкеОбичан прозорÐије иÑправна датотекаÐема довољно видљивих Ñлојева за Ñпајање. Мора их бити најмање два.Ðема довољно видљивих путања за Ñпајање. Мора их бити најмање две.Број _коришћених процеÑора:Број вођицаБрој Ñлојева:_Друга...ОфÑетОфÑет КаналПомерај ЦртежаОфÑет ÑлојОфÑет маÑка ÑлојаПомерено за x/_2,y/2ОдÑтупање:Ðа диÑкуÐа вишепроцеÑорÑким машинама, ако је ГИМП преведен Ñа опциом --enable-mp ово одређује колико процеÑора ће ГИМП иÑтовремено кориÑтити.Само у меморијиО_твори као Ñлој...ÐепровидноÑÑ‚ÐепровидноÑÑ‚:ОтвориОтвори ÑликуОтвори Ñлику као ÑлојОтвори путањуОтвори текÑтуалну датотеку (УТФ-8)Отвори _путању...Отвори Ñко_рашњеПрозорче за отварање ÑликаОтвори прозор за одабир четкеОтвори прозор за одабир пиÑмаОтвори прозор за одабир преливаОтвори прозорче за избор палетеОтвори прозор за одабир муÑтреОтвори изабрани уноÑОтварање „%s“ неуÑпело: - -%sОтварање „%s“ није уÑпело: %sОпције: -Полазно Ð¥:Полазно Y:Изворна ширина:Друга (%s) ...ОквирноИзлазни нивоиПреклапањеPDB позивна грешка за процедуру „%s“: -Ðргумент #%d је погрешног типа (очекиван %s, добијен %s)PDB позвна грешка: -процедура „%s“ није пронађена_МуÑтреПтици у Хаџићима можда зафали -певушење најбољег ђачког оркеÑтра.ЦртајОпције за цртање заједничке за алатеПроцедуре алатки за цртањеÐлатка за цртање:Режим _цртањаСликај нејаÑним потезима четкеСликај оштре ивицеСликај кориÑтећи муÑтру или део ÑликеЧеткаПал_етеПалетаУредник за палетеМени уређивача палетеДиректоријуми Ñа палетамаКориÑничко Ñучеље палете_Ðазив палете:_Датотека палетеПалетеМени за палетеПроцедуре паразитаПаразитиОбрађујем „%s“ -УбациУбац_и бафер уУбаци бафер као _новоУ_баци путањуУба_ци уУбаци у _новуУбаци изабрани баферУбаци изабрани бафер као нову ÑликуУбаци изабрани бафер у изборПренеÑени ÑлојПутањаСвојÑтва путањеÐазив путање:Ðлатка за _путањеПутања Ñе не може ÑпуÑтити ниже.Путање Ñе не може подићи више.Путања је већ на дну.Путања је већ на врху.Путања у из_борПутања у изборПутања у избор -%s Додај -%s Избаци -%s ПреÑекПутања у изборПутањеМени путањаМуÑтраДиректоријуми Ñа муÑтрамаКориÑничко Ñучеље муÑтреПопуњавање муÑтромИзвор муÑтреМуÑтреМени муÑтриО_ловкаОловкаПоÑтотак ширине четкеПроценат:Лични ГИМП директоријумПерÑпективаПодаци о перÑпективној транÑформацијиПерÑпектива...Изаберите режим %sИзабери Ñлој или вођицуИзабери путањуИзабери црну тачкуИзабери боју Ñа ÑликеИзабери Ñиву тачкуСамо изборИзабери белу тачкуВеличина у тачкама:ВредноÑти тачакаТачакаТачака:Молим Ñачекајте док ваш лични ГИМП директоријум не буде направљен...Сачекајте...ДодатакОкружење за додаткеДиректоријуми Ñа додацимаДодатак није могао да отвори ÑликуДодатак није могао да Ñачува ÑликуДодатак је отказао: „%s“ -(%s) - -Умирући додатак је можда пореметио интерно Ñтање ГИМПа. Можда би требало да Ñачувате Ñлике и поново покренете ГИМП да будете Ñигурни да је Ñве у реду.Додатак је пријавио УСПЕХ али није вратио ÑликуДодациДодациДодаци и проширења Ñу Ñпољни програми које покреће ГИМП и који обезбеђују додатну функционалноÑÑ‚. Ови програми Ñе претражују по покретању и информације о њиховим функционалноÑтима и наÑтанку Ñе Ñкладиште у овој датотеци. Ова датотеку би требало да чита Ñамо ГИМП и не треба је мењати.ПолигонÑкиПортретПоложај: %0.6fПозиционираноСмањи број бојаСмањивање броја боја_Ðиво Ñмањења броја боја:Смањивање боја не ради за индекÑиране Ñлојеве.ПоÑтавкеО_чувај оÑветљеноÑтОÑетљивоÑÑ‚ притиÑкаПритиÑак:Преглед:Преглед је заÑтареоПреглед:ПрегледиВеличина штампеВеличина штампе:Проблеми при обради паразитног текÑта за Ñлој %s: -%s - -Ðеке оÑобине текÑта Ñу можда погрешне. ОÑим ако желите да измените Ñлој текÑта, не треба да бринете о овоме.База процедураПроцедурална базаÐапредакPseudo ColorÐамена:КвалитетУпитникИÑпитивање нових додатакаИÑпитујем додатак: „%s“ -Брзо учитавањеБрза маÑкаСвојÑтва брзе маÑкеМени брзе маÑкеБрзо ÑнимањеБрзаМаÑкаЗатворити Гимп?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB Бојепразно-RGBRGBA (%0.3f, %0.3f, %0.3f, %0.3f)ДÐЛПоново прикажи „%s“_Врати опције алатаПо_ново поÑтави каналВрати _бојуВрати _раÑпонБоја _деÑне крајње тачке...КружноПолупречник:Подигни каналПодигни канал на врхПодигни канал на _врхПодигни ÑлојПодигни Ñлој на врхПодигни путањуПодигни путању на врхПодигни путању на _врхПодигни каналПодигни канал на врхПодигни ÑлојПодигни Ñлој на врхПодигни путањуПодигни путању на врхПодигни приказе ове ÑликеПодигни прозор ако је већ отворенБрзинаБрзина:Поново прикажи поÑледњиПоново центрирај Ñредње тачке у изборуПоново центрирај Ñредњу тачку ÑегментаПоново поÑтави ручке у ÑегментуПоново поÑтави ручке у изборуПреи_менуј Ñачуване опцијеПо_нови „%s“По_врати...Учитавам палету „%s“: недоÑтаје ЗЕЛЕÐРкомпонента у %d. реду.Учитавам датотеку палете „%s“: неиÑправан број колона у %d. реду. КориÑтим подразумевану вредноÑÑ‚.Учитавам палету „%s“: недоÑтаје ПЛÐВРкомпонента у %d. реду.Учитавам палету „%s“: недоÑтаје ЦРВЕÐРкомпонента у %d. реду.Учитавам палету „%s“: RGB вредноÑÑ‚ изван опÑега у %d. реду.ЗаиÑта очиÑтити иÑторијат поништавања ове Ñлике?Промена пречице значи и њено уклањање из „%s“.Поново _направи прегледПоново направи прегледИзабери квадратЦрвенаЦрвена:ПоновиСведи Ñлику на одређен број бојаСведи Ñлику на две боје кориÑтећи толеранцијуОÑвежи четкеОÑвежи преливеОÑвежи палетеОÑвежи муÑтреРегиÑтрованоОÑвежите _текућу темуПоново учитај _Ñве прегледеПоново учитај Ñве прегледеЗапамти текућу алатку, муÑтру, боју и четку у ГИМП ÑеÑијама.Удаљена ÑликаУклони каналУклони Ñув_ишне уноÑеУклони плутајући изборСклони вођицеУклони ÑлојСклони паразита Ñа ÑликеСклони паразита Ñа предметаУклони путањуУклони у_ноÑУклони Ñувишне уноÑеУклони плутајући изборОдÑтрани паразитаУклони изабрани уноÑИзбаци изабрани филтер из лиÑте активних филтера.ÐеуÑпешно уклањање пречице.Промени назив каналаПромени назив ÑлојаПромени назив путањиПреименујте Ñачуване опције алатаПромени назив текÑтуалног ÑлојаПреименуј предметИÑцртај потеѕПоново поређај каналеПоново поређај ÑлојПоново поређај путањеПонови поÑледњиПонављање:Замени текући изборДуплирајДуплирај преливни ÑегментДуплирај преливни изборДуплирај ÑегментДуплирај изборПремеÑти каналПремеÑти ÑлојПремеÑти вектореПоново прегледај ÑпиÑак фонтоваВрати опције алатаВрати опције _Ñвих алата...Врати Ñве филтереВрати опције _Ñвих филтера...Врати опције Ñвих алатаПодеÑи изабрани филтер на подразумеване вредноÑтиВрати подразумеване вредноÑтиВрати редоÑлед и видљивоÑÑ‚ алаткиПромени величинуПромени величину каналаПромени величину ÑликеПромени величину ÑлојаПромени величину путањеПромени величину текÑтуалног ÑлојаПромени величину ÑликеПромени величину предметаВеличина прозора у Ñкладу Ñа ра_змеромВеличина прозора у Ñкладу Ñа променом _величине ÑликеМењам величину...Промена резолуцијеРезолуција:Потрошња реÑурÑаПодешавање реÑурÑаИзвуци опције из...Учитај Ñачуване пречице Ñа таÑтатуре при Ñваком покретању ГИМП-а.Ограничи уређивање на полигонеОбрниПовратиВрати „%s“ на „%s“?Врати Ñлику у првобитни обликВраћање у првобитан овлик неуÑпело. Ðиједна датотека није повезана Ñа овом Ñликом.Повратак на „%s“ неуÑпео: - -%sБоја крајње деÑне тачкеПоравнато удеÑноРотирањеРотирај 90 Ñтепени _Ñупротно Ñмеру казаљкеРотирај 90 Ñтепени _у Ñмеру казаљкеРотирај каналРотирај ÑлојРотирај путањуРотирај текÑтуални ÑлојРотирај _180 ÑтепениРотирај ÑликуРотирај Ñлој или изборРотирам...Подаци о ротацијиЗаобљеноОÑ_трижиПрикажи мр_ежуУ_мањи..._Замени бојеС_ачувај деÑну боју уПроÑечни узоракСпојени узоракЗаÑић.:ЗаÑићеноÑтСачувајСачувај „%s“ као POV-RayСачувај кривуљеСачувај дневник грешака у датотеку...Сачувај ÑликуСачувај _Ñада подешавања улазних уређајаСачувај пречице Ñа таÑтатуре Ñ_адаСачувај нивоеСачувај опције алата_Сада Ñачувај положаје прозора_Сачувај Ñве грешке у датотеку...Сачувај _избор у датотеку...Сачувај _као...Сачувај _умножак...Сачувај копију ÑликеСачувај Ñве грешкеСачувај као _POV-Ray...Сачувај као _муÑтру...Сачувај пречице Ñа таÑтатуре када Ñе ГИМП затвори.Сачувај подешавања кривуља у датотекуСачувај Ñтање уређајаСачувај прелив као POV-RayСачувај подешавања нивоа у датотекуСачувај опције у...Сачувај изборСачувај избор у каналСачувај измене Ñлике „%s“ пре затварања?Сачувај положај и величину главних прозора кад Ñе ГИМП затвори.Сачувај у _каналСачуване опцијеЧувам „%s“ -Чување „%s“ није уÑпело: - -%sСачувај ÑликеТеÑтераÑти талаÑСкалабилна СВГ Ñлика (*.svg)ВеличинаПовећај или Смањи каналПовећај или Ñмањи ÑликуПовећај или Ñмањи ÑлојПромени величину путањеПовећај или Ñмањи текÑтуални ÑлојРазмера ÑликеРазмера Ð¿Ñ€ÐµÐ´Ð¼ÐµÑ‚Ð°ÐžÐ´Ð½Ð¾Ñ X увећања:ÐžÐ´Ð½Ð¾Ñ Y увећања:Размера:Промени величину Ñлоја или избораУвећањеПодаци о промени величинеРазмера Ñлике на изабрану величину ће захтевати више меморије него што је Ñада подешено као „Ðајвећа величина Ñлике“ у прозорчету ПоÑтавки (тренутно %s).Размера на изабрану величину ће потпуно избацити неке Ñлојеве из Ñлике.Мењам величину...МаказеЕкранДиректоријуми Ñа Скрипт-Фу ÑкриптамаСкриптеКлизај нанижеКлизај наниже (Alt)Клизај наниже (Control + Alt)Клизај наниже (Control)Клизај наниже (Shift + Alt)Клизај наниже (Shift + Control + Alt)Клизај наниже (Shift + Control)Клизај наниже (Shift)Клизај левоКлизај лево (Alt)Клизај лево (Control + Alt)Клизај лево (Control)Клизај лево (Shift + Alt)Клизај лево (Shift + Control + Alt)Клизај лево (Shift + Control)Клизај лево (Shift)Клизај деÑноКлизај деÑно (Alt)Клизај деÑно (Control + Alt)Клизај деÑно (Control)Клизај деÑно (Shift + Alt)Клизај деÑно (Shift + Control + Alt)Клизај деÑно (Shift + Control)Клизај деÑно (Shift)Клизај навишеКлизај навише (Alt)Клизај навише (Control + Alt)Клизај навише (Control)Клизај навише (Shift + Alt)Клизај навише (Shift + Control + Alt)Клизај навише (Shift + Control)Клизај навише (Shift)ИзабериИзабери ÑвеИзабери директоријуме Ñа четкамаБирање по бојиИзабери бојуИзаберите догађај за дејÑтво управљачаИзабери директоријуме за окружењеИзаберите врÑту _датотеке (%s)Изабери директоријуме Ñа фонтовимаИзабери директоријуме Ñа преливимаИзабери директоријуме за модулеПоништи изборИзабери директоријуме Ñа палетамаИзабери директоријуме Ñа муÑтрамаИзабери директоријуме Ñа додацимаИзаберите примарну боју за изменуИзабери раÑпон за изменуИзабери директоријуме Ñа Скрипт-Фу ÑкриптамаИзабери изворИзабери директоријум разменеИзабери привремени директоријумИзаберите темуИзабери директоријуме за темеИзабери размеруИзабери Ñлој на днуИзабери п_роизвољну боју...Изабери _Ñледећи ÑлојИзабери _претходни ÑлојИзабери Ñлој на врхуИзабери ÑвеИзабери по бојиИзабери повезане облаÑтиИзабери произвољну боју за попуну платнаИзабери елиптичну облаÑтИзабери руком-цртане облаÑтиПоништи изборИзабери датотеку Ñа палетомИзабери правоугаоне облаÑтиИзабери облаÑти по бојиИзабери облике Ñа ÑликеИзабери директоријум за разменуИзаберите број дупликата -изабраног Ñегмента.Изаберите број дупликата -избора.Изаберите број иÑтоветних делова -на које желите да поделите изабране Ñегменте.Изаберите број иÑтоветних делова -на које желите да поделите изабрани Ñегмент.Изабери провидне облаÑтиИзаберите читач вебаИзб_ор у путањуИзборУређивач избораМени уређивача избораИзабрана МаÑкаПроцедуре алатке за изборМаÑка избораИзбор у путању (_напредно)Избор у путањуИзбор:Избор: ДОДÐЈИзбор: ÐÐПРÐВИ ПРЕСЕКИзбор: ЗÐМЕÐИИзбор: ОДУЗМИОÑетљивоÑтПодеÑи Боју Подлоге ПлатнаПодеÑи боју каналаПодеÑи непровидноÑÑ‚ каналаПоÑтави мапу бојаПоÑтави боју попуњавања платнаПодеÑи величину платнаПоÑтави резолуцију Ñлике за штампуУчини предмет иÑкључиво везанимУчини предмет иÑкључиво видљивимПодеÑи граничну величину ÑлојаПоÑтави име из _текÑтаПодеÑи непровидноÑтПоÑтави боју позадинеПоÑтави боју четкеПоÑтави везани предметПоÑтави режим ÑлојаПоÑтави провидноÑÑ‚ ÑлојаПоÑтави очување провидноÑтиПодешава горњу границу количине меморије која може бити коришћена за чување операција за поништавање по Ñлици. ÐезавиÑно од овог подешавања, може Ñе опозвати највише онолико операција колико је подешено.Одрећује читач који ће кориÑтити ÑиÑтем за помоћ.Подешава боју подлоге платна ако је омогућен режим за бирање боје подлоге.ПоÑтавља Ñпољашњи читач веба који да кориÑтим. Ово може бити потпуна путања или име извршног програма који ћу тражити у кориÑниковој путањи (PATH). Уколико наредба Ñадржи „%s“, оно ће бити замењено адреÑом, иначе ће адреÑа бити додата на наредбу раздвојена размаком.ПоÑтавља ниво интерполације код увећања и других транÑформација.Подешава начин приказивања транÑпаренције у Ñликама.Подешава минимални број операција које могу бити поништене. Више нивоа за поништавање Ñу доÑтупни Ñве док Ñе не доÑтигне граница за број поништавања.ПоÑтавља режим показивача који ће Гимп кориÑтити.ПоÑтавља водоравну резолуцију монитора, као број тачака по инчу. Ðко је поÑтављено на 0, од Ð˜ÐºÑ Ñервера Ñе захтевају подаци и о водоравној и о уÑправној резолуцији.ПоÑтавља уÑправну резолуцију монитора, као број тачака по инчу. Ðко је поÑтављено на 0, од Ð˜ÐºÑ Ñервера Ñе захтевају подаци и о водоравној и о уÑправној резолуцији.ПоÑтавља облик тачака показивача који ће Гимп кориÑтити.Подешава подразумевану величину прегледа за Ñлојеве и канале у новим прозорчићима.Подешава величину „шаховÑке табле“ која приказује транÑпаренцију.Подешава величину навигационог приказа доÑтупног у доњем деÑном углу прозора Ñлике.ПоÑтавља величину прегледа у иÑторијату операција.ПоÑтавља величину умањеног приказа који Ñе приказује у прозорчету за отварање. Знајте да Гимп не може да чува умањене приказе ако Ñу прегледи Ñлојева иÑкључени.Подешава локацију привремене датотеке. Гимп кориÑти на делићима заÑновану шему за руковање меморијом. Привремена датотека Ñе кориÑти за брзу и лаку размену делића на диÑк и назад. Будите ÑвеÑни да привремена датотека може лако поÑтати врло велика ако Ñе ГИМП кориÑти Ñа великим Ñликама. Такође, Ñтвари могу поÑтати ужаÑно Ñпоре ако је привремена датотека направљена у директоријуму који је монтиран преко мреже. Из тих разлога, пожељно је да привремену датотеку ÑмеÑтите у „/tmp“.Подешава директоријум за привремене датотеке. Датотеке ће Ñе појављивати ту током рада у ГИМП-у. Већина датотека ће неÑтати када Ñе ГИМП затвори, али неке датотеке ће вероватно оÑтати, па је најбоље да ово не буде директоријум који делите Ñа другим кориÑницима.Одређује текÑÑ‚ који ће Ñе појавити у ÑтатуÑној линији прозора Ñа Ñликом.Одређује текÑÑ‚ који ће Ñе појавити у наÑлову прозора Ñа Ñликом.Одређује да ли ГИМП треба да прави прегледе Ñлојева и канала. Прегледи упрозорима за Ñлојеве и канале Ñу фини за имати, али могу да уÑпоре Ñтвари кад Ñе ради Ñа великим Ñликама.Ð’Ñ€Ñта ÑенкеСенкеОбликОблик:Обликовано (угаоно)Обликовано (помоћу рупица)Обликовано (Ñферично)ИзоштреноИзоштри каналИзоштри изборОÑтрижиВеличина X Ñтрижања:Величина Y Ñтрижања:ОÑтрижи Ñлој или изборИнформација о одÑецањуОдÑецам...Кратке цртицеПречицаПречицу „%s“ већ кориÑти „%s“ из групе „%s“.Прикажи маÑку ÑлојаПрикажи _лењиреПрикажи _ÑтатуÑну линијуПрикажи _клизачеПокажи _вођицеПокажи _границе ÑлојаПрикажи главни _мениПрикажи _изборПокажи _контуру четкеПокажи _боју и боју позадинеПокажи _вођицеПокажи грани_це ÑлојаПрикажи _главни мениПрикажи _лењиреПокажи активну _четку, муÑтру и преливПокажи активну _ÑликуПрикажи _мрежуПокажи дугмиће за помо_ћПокажи величину ÑликеПрикажи интерактивне ивицеПокажи иÑкоришћеноÑÑ‚ меморијеПод_вуци пречице у менију (приÑтупни таÑтери)Прикажи курзор _алатке за цртањеПрикажи _изборПрикажи _ÑтатуÑну линијуПрикажи _клизачеПокажи Ñавет приÑледећем подизању ГИМПаПокажи Ñавете при по_дизањуПокажи _Ñавете за алаткеПокажи раzмеру (процентуално)Покажи размеруСузи каналСмањи изборСмањи _кружноСмањи од границе ÑликеСмањи избор заСмањи кружноВеличинаВеличина у меморији:Величина _умањених приказа:Величина:ПреÑкачем „%s“: неиÑправно издање протокола ГИМП-а.МалоМањи прегледиУмекшавањеУблажи ивицеМрљаУмрљај Ñлику_Према вођицамаПре_ма вођицамаСлабо ÑветлоЧиÑтоИзворРазмакРазмак:Ретке тачкеÐарочита датотекаОдређује како ће бити иÑцртана облаÑÑ‚ око Ñлике.Брзина марширајућих мрава у границама изабране површине. Ова вредноÑÑ‚ је у милиÑекундама (мање времена показује брже марширање).Брзина:Сферно (_опадајућа)Сферно (_раÑтућа)Спирала (обрнуто од казаљке на Ñату)Спирала (у Ñмеру казаљке на Ñату)ПоделиПодели преливни Ñегмент иÑтоветноПодели преливни Ñегмент иÑтоветноПодели Ñегмент иÑтоветноПодели Ñегмент иÑтоветно...Подели Ñегмент на ÑрединиПодели Ñегмент иÑтоветноПодели Ñегменте иÑтоветно...Подели Ñегменте на половинамаКвадрат_Стање и текÑтРедоÑледСтандардноПокрећем проширењаПокрећем проширење: „%s“ -Стање:Статично у бојиСтатично ÑивоСтање и опиÑСтање и текÑтСтандардна девијација:ТачкаÑтоИБ иÑпорученеИÑц_ртај путањуИÑ_цртај путању...ИÑцртај каналÐацртај путањуУзми избор као контуруИÑцртај линијуИÑцртај путањуИÑцртај путању према претходним вредноÑтимаИÑцртај путању...ИÑцртај контуру избора према претходним вредноÑтимаИÑцртај контуру избора...ИÑцртај помоћу алата за цртањеСтил удубљења око текÑта у линији Ñа ÑтањемИзбациИзбаци из текућег избораСуперодÑецањеДиректоријум размене:_ÐлатиТе_кÑÑ‚Ðлатка за _текÑтПривремени директоријум:ШаблониМени Ñа шаблонимаПривремена процедураОкончавам додатак: „%s“ -ТекÑтБоја ÑловаУређивач текÑтаСлој за текÑтТекÑÑ‚ измењенТекÑтуалне процедуреГимпРазгледач помоћи Гимпа вероватно недоÑтаје у вашој инÑталацији.Ðктивна четка. -Кликните да отворите прозор за четке.Ðктивни прелив. -Клкните да отворите прозор за преливе.Ðктивна Ñлика. -Кликните да отворите прозорче за Ñлике.Ðктивна муÑтра. -Кликните да отворите прозор за муÑтре.Боја позадине мреже; кориÑти Ñе једино за двотачкаÑти Ñтил линија.Пакетни режим је иÑкључен пошто није доÑтупан интерпретер „%s“.Подешено кодирање имена датотека Ñе не може претворити у УТФ-8: %s - -Проверите вредноÑÑ‚ променљиве окружења G_FILENAME_ENCODING.Име датотеке „%s“ Ñе не може претворити у иÑправну адреÑу: - -%sБоја линија мреже.Датотека gimprc Ñлужи за чување личних подешавања које Ñе тичу ГИМПовог подразумеваног понашања. Путање претраге за четке, палете, преливе, муÑтре, додатке и модуле Ñе такође могу подеÑити овде.Водоравна резолуција Ñлике.Слој који Ñте изабрали је текÑтуални, али је мењан помоћу других алата. Измена Ñлоја текÑтуалним алатом ће одбацити ове измене. - -Можете мењати овај Ñлој или направити нови текÑтуални Ñлој на оÑнову његових текÑтуалних оÑобина.Име директоријума који Ñадржи подешавања кориÑника Гимпа Ñе не може претворити у УТФ-8: %s - -Ðајвероватније ваш ÑиÑтем датотека чува датотеке Ñа кодирањем које није УТФ-8, а ниÑте то назначили. ПоÑтавите променљиву окружења G_FILENAME_ENCODING.Датотека sessionrc Ñе кориÑти за Ñмештање податка о томе који прозор је био отворен када Ñте поÑледњи пут затворили ГИМП. Можете подеÑити ГИМП да поново отвори ове прозоре.Умањени приказ у прозорчету за отварање ће бити увек приказан ако је датотека мања од овде поÑтављене величине.ОÑтава за делиће оÑигурава да ГИМП не изгуби делић између меморије и диÑка. ПоÑтављање више вредноÑти значи да ће ГИМП кориÑтити мању привремену датотеку, али ће више кориÑтити меморију. Обрнуто, мања вредноÑÑ‚ значи да ће ГИМП више кориÑтити привремену датотеку а мање меморију.Јединица координатног ÑиÑтема када Ñе не кориÑти режим тачка-за-тачку.Датотека unitrc Ñе кориÑти за чување базе кориÑничких јединица. Можете дефиниÑати додатне јединице и кориÑтити их иÑто као и уграђене инче, милиметре, штампарÑке тачке... Ова датотека Ñе препиÑује Ñваки пут кад напуÑтите ГИМП.УÑправна резолуција Ñлике.Ознака врÑте прозора која Ñе поÑтавља за прилепљене прозоре. Ово може утицати на то како ваш управљач прозорима иÑцртава и поÑтавља прилепљене прозоре.Ознака врÑте прозора која Ñе поÑтавља за алатке. Ово може утицати на то како ваш управљач прозорима иÑцртава и поÑтавља прозор Ñа алаткама.ТемаДиректоријуми за темеТемеИма %d Ñлика Ñа неÑачуваним изменама:Ðема довољно видљивих Ñлојева за Ñпајање наниже.Увек поÑтоји „размена“ између заузетоÑти меморије и брзине. У већини Ñлучајева, ГИМП бира брзину наÑупрот меморији. Ипак, ако је количина меморије велики проблем, покушајте да укључите ово подешавање.Ðема активног Ñлоја или канала Ñа којег да умножи.Ðема активног Ñлоја или канала Ñа којег да иÑече.Ðема активног Ñлоја или канала за цртањеÐема активног Ñлоја или канала за иÑцртавање.ПоÑтоји једна Ñлика Ñа неÑачуваним изменама:Требало би да поÑтоји датотека „%s“. Молим, проверите вашу инÑталацију.Дошло је до грешке при обради ваше датотеке „%s“. КориÑтићу подразумеване вредноÑти. Резерва ваших подешавања је Ñачињена у „%s“.Ова датотека чува Ñкуп Ñтандардних величина које Ñлуже као шаблони за Ñлике.Овај директоријум Ñадржи шаблоне Ñлика.Овај директоријум Ñадржи теме инÑталиране од Ñтране кориÑника.Овај директоријум чува фонтове које желите да видите Ñамо у ГИМП-у. ГИМП проверава овај директоријум уз ÑиÑтемÑке директоријуме ГИМП-а када тражи фонтове. Ово кориÑтите једино уколико желите да имате фонтове Ñамо за ГИМП, иначе Ñтавите Ñтвари у општи директоријум за фонтове.Овај директоријум чува датотеке Ñа параметрима за алатку Кривине.Овај директоријум Ñлужи за Ñмештање параметарÑких датотека алатке за нивое.Овај директоријум чува опције алатки.Овај директоријум чува Ñкрипте које је направио и инÑталирао кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП Ñкриптама када претражује Ñкрипте.Овај директоријум чува привремене, друге неÑиÑтемÑке или DLL модуле које је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП модулима када тражи модуле које треба учитати.Овај директоријум чува привремене, друге неÑиÑтемÑке или допуне окружења за додаткекоје је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП директоријуму окружења када тражи датотеке Ñа изменама окружења додатака.Овај директоријум чува привремене, друге неÑиÑтемÑке или додатке које је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП додацима када претражује инÑталиране додатке.Овај директоријум чува четке које је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП четкама када претражује инÑталиране четке.Овај директоријум чува преливе које је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП преливима када претражује инÑталиране преливе.Овај директоријум чува палете које је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП палетама када претражује инÑталиране палете.Овај директоријум чува муÑтре које је направио кориÑник. ГИМП проверава овај директоријум као додатак ÑиÑтемÑким ГИМП одÑечцима када претражује инÑталиране муÑтре.Овај директоријум Ñе кориÑти као привремена оÑтава бафера за поништавање, као би Ñе Ñмањило коришћење меморије. Ðко је ГИМП непропиÑно убијен, даототеке типа: gimp<#>.<#> могу оÑтати у њему. Ове датотеке Ñу беÑкориÑне и могу Ñе Ñлободно избриÑати.Овај директоријум ће Ñадржати више битних датотека. Кликните на датотеку или директоријум у Ñтаблу да добијете више података о изабраној Ñтавци.Ово је раÑтојање у тачкама на којем Ñе кориÑти пријањање уз вођице и мрежу.Овај програм је дат Ñа надом да ће бити кориÑтан, али БЕЗ ИКÐКВЕ ГÐРÐÐЦИЈЕ; чак и без наговештене гаранције ПРОДAВЦРили ПОДЕСÐОСТИ ЗРОДРЕЂЕÐУ УПОТРЕБУ. Погледати ГÐУ Општу Јавну Лиценцу за више детаља.Овај програм је Ñлободан Ñофтвер; можете га делити и/или мењати у Ñкладу Ñа уÑловима ГÐУ Опште Јавне Лиценце објављеном од Ñтране Задужбине за Ñлободни Ñофтвер (Free Software Foundation); или верзијом 2 Лиценце, или (по вашем избору) било које новије верзије.Ово поље за ÑƒÐ½Ð¾Ñ Ñ‚ÐµÐºÑта је ограничено на %d Ñлова.Ова алатка нема опције.ОÑетљивоÑтОÑетљивоÑÑ‚ не ради за индекÑиране Ñлојеве.ОÑетљивоÑÑ‚:Умањени приказ %d од %dВеличина _оÑтаве за делиће:Величина оÑтаве за делиће:ИÑкрени:МалоÐаÑлов и ÑтатуÑ_У путањуИ_грачкеУкључи-иÑкључи брзу маÑкуУкључи-иÑкључи _брзу маÑкуПревише порука о грешкама!Опције ÐлатаМени за опције алатаУкључи/иÑкљуши алатку %s_Опције алатаИкона алатаИкона алата Ñа нишаномПалета _алаткиÐлатницаМени за Ñкуп алаткиÐлатиМени алаткиÐлатке као што Ñу нејаÑно-означавање и попуњавање бојом траже целине према алгоритму попуњавања оÑнове. ОÑнова почиње од прве изабране тачке и наÑтавља даље у Ñвим правцима док разлика боје нове тачке у одноÑу на прву не буде већа од изабраног прага. Ова вредноÑÑ‚ предÑтавља подразумевани праг.Пр_овидноÑтПренеÑи провидноÑÑ‚ у маÑкуТранÑформацијаТранÑформиши каналТранÑформиши правацТранÑформиши ÑлојТранÑформиши путањуТранÑформиши текÑтуални ÑлојПроцедуре алатке за транÑформацијуТранÑформиши ÑлојТранÑформиши путањуТранÑформиши изборТранÑформишиПоÑтупци транÑформацијаТранÑформишем...ПреводилиПровидноÑÑ‚_Ð’Ñ€Ñта провидноÑти:ТроуглаÑти талаÑTrue ColorÐ’Ñ€ÑтаВрÑта %sУнеÑите нову пречицуУнеÑите нову пречицу, или приÑтините Backspace да обришетеÐе могу да додам маÑку јер Ñлој већ има једну.Ðе могу да иÑечем или копирам због тога што Ñу изабране облаÑти празне.Ðе могу да отворим пробну датотеку за размену. Да избегнете губитак података, проверите путању и овлашћења за директоријум размене који је одређен међу вашим поÑтавкама (тренутно „%s“).Ðе могу да отворим датотеку размене. Гимпу је понеÑтало меморије а не може да кориÑти датотеку размене. Ðеки делови ваших Ñлика могу бити оштећени. Покушајте да Ñачувате ваш рад под другим именима, поново покрените Гимп, и проверите путању директоријума размене у вашим поÑтавкама.Ðе могу да покренем опозив за %s. Могуће је да је одговарајући додатак пукао.ÐеодрећеноПоништиИÑторијат поништавањаИÑторијат _поништавањаЈединицеÐепознатоÐепознат тип датотекеÐепозната врÑта датотеке палете: -%sИзбаци из меморијеÐеименованоБез наÑловаПодразумевано кориÑти „тачка за тачку“КориÑти _динамичке пречице Ñа таÑтатуреКориÑтите читач _веба као заменуКориÑти Ñве видљиве Ñлојеве приликом Ñмаљивања избораКориÑти црно-белу (1-битну) палетуКориÑти боју из преливаКориÑти произвољну палетуКориÑти прозор Ñа подацимаКориÑти палету оптимизовану за вебДневник кориÑничке инÑталацијеКориÑничко ÑучељеПомоћни прозорВредноÑтВредноÑÑ‚:Режим вектораВерзију %s Ñте добили захваљујућиВерзија:УÑправноУÑправни померај прве линије мреже; ово може бити и негативан број.УÑправни размак линија мреже.Врло великоВрло малоПрегледПреглед у виду _мрежеПреглед у виду _лиÑтеУ виду мрежеУ виду лиÑтеВизуелна клаÑа:Визуелна дубина:Упозорење: ÐиÑам уÑпео да учитам податке: - -%sУпозорење: ÐиÑам уÑпео да Ñачувам податке: - -%sЧитач вебаЧитач вебаДобродошли у -кориÑничку инÑталацију за Гимп %d.%dКада је укључено, прозорче Ñамо прати Ñлику на којој радите.Када је укључено, Гимп ће приказивати пречице у менијима.Када је укључено, Ñве алатке за цртање ће показивати умањени приказ контуре тренутне четкеКада је укључено, Ñлика ће поÑтати активна када њен прозор буде фокуÑиран. Ово је кориÑно за управљаче прозорима који кориÑти „клик за фокуÑ“.Када је укључено, у прозорчићима Ñе приказује дугме за добијање одговарајуће Ñтранице помоћи. Без овог дугмета, до помоћи Ñе може доћи притиÑком на F1. Када је укључено, менији могу бити поцепани.Када је укључено, притиÑкањем на F1 отварате читач за помоћ.Када је укључено, ГИМП неће чувати ако Ñлика није мењана од поÑледњег отварања.Када је укључено, ГИМП ће кориÑтити различити инфо прозор по погледу на Ñлику.Када је укључено, X Ñервер ће на Ñваки покрет бити упитан за тренутни положај миша, радије него да Ñе оÑлањамо на наговештај положаја. Ово значи да ће цртање великим четкама бити прецизније, али могуће и Ñпорије. Да Ñтвар буде чуднија, на неким X Ñерверима укључивање ове опције ће резултирати бржим цртањем.Када је укључено, курзор ће бити приказан преко Ñлике при употреби алата за цртање.Када је укључено, мрежа је подразумевано видљива. Ово Ñе може мењати преко наредбе „Преглед->Прикажи мрежу“.Када је укључено, вођице Ñу подразумевано видљиве. Ово Ñе може мењати преко наредбе „Преглед->Прикажи вођице“.Када је укључено, прозор Ñа Ñликом ће аутоматÑки променити ÑопÑтвену величину, када Ñе зумира Ñлика.Када је укључено, прозор Ñа Ñликом ће аутоматÑки променити ÑопÑтвену величину кадгод Ñе физичка величина Ñлике промени.Када је укључено, границе Ñлоја Ñе подразумевано приказују. Ово Ñе може мењати преко наредбе „Преглед->Прикажи границе Ñлоја“.Када је укључено, линија Ñа менијима подразумевано је видљива. Ово Ñе може мењати преко „Преглед->Прикажи линију Ñа менијима“ наредбе.Када је укључено, лењири Ñу подразумевано видљиви. Ово Ñе може мењати преко „Преглед->Прикажи лењире“ наредбе.Када је укључено, линије Ñа клизачем Ñу подразумевано видљиве. Ово Ñе такође може мењати преко „Преглед->Прикажи линије Ñа клизачем“ наредбе.Када је укључено, изабрана четка ће Ñе кориÑтити у Ñвим алатима.Када је укључено, изабрано преливање ће Ñе кориÑтити у Ñвим алатима.Када је укључено, изабрана муÑтра ће Ñе кориÑтити у Ñвим алатима.Када је укључено, избор је подразумевано видљив. Ово Ñе може мењати преко „Преглед->Прикажи избор“ наредбе.Када је укључено, ÑтатуÑна линија је подразумевано видљива. Ово Ñе такође може мењати преко „Преглед->Прикажи ÑтатуÑну линију“ наредбе.Када је укључено, ово ће оÑигурати да Ñвака тачка на Ñлици буде мапирана на тачку на екрану.Када је укључено, ово оÑигурава да ће цела Ñлика бити видљива када Ñе отвори датотека, у Ñупротном ће бити приказано Ñа размером 1:1.Када је укључено, можете у лету мењати пречице Ñа таÑтатуре притиÑком на комбинацију таÑтера када је изабрана Ñтавка менија.БелаРавнотежа беле боје ради Ñамо за Ñлојеве у RGB бојама.ШиринаШирина:Управљање прозоримаОзнаке за управљање прозоримаПоложаји прозораУпиÑујем „%s“ -XXCF грешка: ÑуÑрео Ñам Ñе Ñа неподржаном XCF датотеком верзије %dXCF упозорење: верзија 0 XCF формата датотеке -није иÑправно чувала индекÑиране мапе боја. -Мењам мапу Ñивих боја.YЖутаЖута:Покушавате да направите Ñлику величине %s.Овде можете прикачити приÑтанишне прозоре.Требало би да Ñте добили и примерак ГÐУ Опште Јавне Лиценце заједно Ñа овим програмом; ако ниÑте, пишите на адреÑу: Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Мораћете поново да покренете ГИМП да би Ñледеће промене узеле маха:Ваша подешавања улазних уређај ће бити враћена на уобичајена када наредни пут покренете Гимп.Ваше пречице Ñа таÑтатуре ће бити враћене на уобичајене када наредни пут покренете Гимп.Ваша подешавања прозора ће бити враћена на уобичајена када наредни пут покренете Гимп.Понашање размере и увећањаРазмера 1:1Увећај ÑвеУвећај приказУмањи приказРазмераРазмера:Увећај _ÑвеУ_већајУ_мањиУвећај ÑвеРазмера приказа: %d:1Увећај Ñлику када Ñе промени величина прозораУвећајУвећај и умањиУмањиУвећање:[ ОÑновна Слика ]_О програмуПр_еузми_Додај боју Ñа позадине_Додај боју иÑцртавањаДодај _лиÑÑ‚_Додај у избор_Ðапредне опције_Спреј_Све_УÑидри ÑлојУ_мекшавање ивица_Произвољна ротација...У_метнички_ОдноÑ_Ðуто_BБоја _позадинеБоја _позадине:_Црна (потпуно провидна)_Функција Ñтапања за ÑегментФункције Ñтапања за избор_Мрљање_ОÑветљење:_Четка_Четке_Четке, муÑтре и преливи_Попуни бојом_Бафер_По бојиИзбор _према боји_C_Стил капице:_Канали_ОчиÑти грешкеО_чиÑти иÑторијат поништавања_Клонирај_Затвори_Затвори лиÑÑ‚_ОблациÐлати за _боје_Боје_ПодеÑи боју и непровидноÑÑ‚..._КонтекÑÑ‚_СмиÑаона помоћ_УмножиУмножи им_еновано..._Ðаправи Ñлику према шаблону..._ИÑеци и промени величинуИÑе_ци Ñлику_Кривуља_Кривуље...Боја _тамних пољаПодра_зумеване боје_Обриши четкуОб_риши бафер_Обриши каналО_бриши бојуО_бриши прелив...О_бриши ÑликуО_бриши Ñлој_Обриши палету_Обриши путању_Обриши муÑтру..._Уклони Ñачуване опцијеОбриши ÑегментОбриши изборО_бриши шаблон_ОÑиромашиОд_воји лиÑтСтање _уређаја_Прозорчићи_Занемари податке о текÑту_ДиÑторзије_Тачка за тачку_Дуплирај_УређивањеИз_мени четку...Измени _ÑвојÑтва канала...Из_мени боју..._Уреди прелив...Из_мени ÑвојÑтва Ñлоја..._Уреди палету..._Измени ÑвојÑтва путање..._Уреди муÑтру..._Измени шаблон...Изабери _елипÑуУ_кључи прегледе за Ñлојеве и канале_Ðенормално велико_Изједначи_БриÑач_Боја четке_Датотека_Попуни бојом:У_клопи Ñлику у прозор_Изравнај ÑликуИз_врниОкрени ÑегментОкрени избор_Пплутајуће_Фонт_Фонтови_Боја четке:_Слободан избор_G_ЈедноÑтавно_ГигантÑкоПре_лив_Преливи_Сиви тонови_Умножак Ñлоја у Ñивим тоновимаУ_већај..._Вођице_Тврдоћа_Помоћ_Водоравно:_ÐијанÑа:О_громно_Икона_Икона:_СликаСли_ке_Увоз_Увези палету..._ИндекÑирана..._Прозор Ñа подацима_ПреÑек Ñа избором_ОбрниСтил Ñ_поја:_ВеликоС_лојС_лојеви_Слојеви, канали и путање_Лева крајња тачкаДеÑна крајња тачка _левог ÑуÑеда_Ðивои...Боја _Ñветлих пољаС_ветлоÑни ефекти_Светлина:Стил _линије:_ЛинијÑки_ВезаноУчитај боју _леве тачке из_СпуÑти канал_СпуÑти Ñлој_СпуÑти путању_M_Ручно_Мапа_МаÑка_МаÑка у изборÐај_већи број боја:Мере_ње_Средње_СаÑтави палете..._Споји увежене путањеПре_неÑи подешавања кориÑника из Гимпа 2.0_Разне ÑтвариГраница _угаоног Ñпоја:_РежимПретраживач _модулаПре_меÑти_Име:_Природа_Ðова четка_Ðови канал_Ðови канал..._Ðова Ñтавка..._Ðови прелив_Ðови Ñлој_Ðови Ñлој..._Ðова палета_Ðова Путања_Ðова путања..._Ðова муÑтра_Ðови шаблон..._Ðови поглед_Ðова..._Следећи Ñавет_Шум_Ðишта_Померај..._ÐепровидноÑÑ‚_Отвори Ñлику_Отвори...Боја _попуњавањаÐлатке за _цртање_Четка_ПалетаУ_бациУ_баци баферУб_аци именовано..._Путање_МуÑтра_ПерÑпектива_Смањи број боја..._ПоÑтавке_ПриказВе_личина прегледа_Претходни Ñавет_Величина штампе...ОÑо_бине_Ðктивна брза маÑка_Изађи_R_RGBПолуп_речник_Подигни канал_Подигни Ñлој_Подигни путањуПо_дигни погледе_Подигни или отвори ÑликуПро_мени пречицу_Правоугаони изборПо_новиПо_нови %sО_Ñвежи четкеОÑ_вежи преливеОÑ_вежи палетеО_Ñвежи муÑтреУ_клони некоришћене боје из коначне палетеИÑ_цртавањеПре_ÑнимиДуплирај Ñегмент...Дуплирај избор...О_бнови ÑпиÑак фонтоваВрати _редоÑлед и видљивоÑÑ‚_Врати Ñачувана подешавања улазних уређаја на подразумеване вредноÑтиВрати Ñачуване пречице Ñа таÑтатуре на уобичајене_Врати Ñачуване положаје прозора на подразумеване вредноÑти_Извуци опције изДеÑна _крајња тачкеЛева крајња тачка _деÑног ÑуÑеда_Ротирај_ЗаÑићеноÑÑ‚:_Сачувај_Сачувај леву боју уСачувај опције _уСачувај подешавања улазних уређаја при _излазу_Сачувај пречице Ñа таÑтатуре при излаÑкуСачувај положаје прозора при _излаÑку_ВеличинаПовећај _или Ñмањи Ñлику..._Величина Ñлоја...У_већај увежене путање да Ñе уклопе у Ñлику_Изабери_ИзборУређивач _избораÐлатке за _избор_ОбликИ_зоштреноПрикажи _избор на Ñлици_Прикажи у палети алатки_СинуÑоида_Мало_РазмрљајРа_Ñтојање пријањања:_ИÑцртај контуру избора_ИÑцртај контуру избора..._Избаци из избораСтил _лиÑтова_Шаблон:_Шаблони_ТекÑÑ‚_ОÑетљивоÑÑ‚...Си_ћушноСавет _дана_Ðлат_Ðлати_ПренеÑи алфа канал Ñлоја_ТранÑформацијаÐлати за _транÑформације_Опозови_Опозови %s_УÑправно:П_реглед_Видљиво_ВебКоји читач _веба кориÑтити:_Бела (непровидна)Равнотежа _беле_Ширина:_Иди у круг_X резолуција:_X:П_роширења_Y_Y резолуција:_Y:У_већањеУ_већање (%s)бојеумножактпиочекиван одговор типа „да“ или „не“ zа логички израз %s, добијен „ %s“фатална грешка при раздвајањуÑиви тоновипразно-Ñиви тоновиинчинчииндекÑиранпразно-индекÑиранонеиÑправна UTF-8 речнеиÑправна вредноÑÑ‚ „%ld“ за врÑту иконенеиÑпрабна вредноÑÑ‚ „%ld“ за израз %sнеиÑправна вредноÑÑ‚ „%s“ за врÑту иконенеиÑправна вредноÑÑ‚ „%s“ за %sмилиметармилиметраминутн/додÑтоцицероцицератачкатачакатачака/%aтачака/%sштампарÑка тачкаштампарÑких тачакаÑекундаtips-locale:srБранко Ивановић -Данило Шеган - -Prevod.org — превод на ÑрпÑки језиквредноÑÑ‚ за израз %s није иÑправна UTF-8 речприликом обраде израза „%s“: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/sr@Latn.gmo gimp-2.2.9/po/sr@Latn.gmo --- gimp-2.2.8/po/sr@Latn.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.9/po/sr@Latn.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,444 +0,0 @@ -Þ•K tJm Ì”€ÆÆ&—Æk¾ÆG*Ç9rÇG¬ÇAôÇN6Èi…È<ïÈk,É@˜É2ÙÉ; ÊPHÊO™Ê2éÊ9Ë-VË9„Ë;¾Ë7úË 2Ì<Ì -CÌ NÌ -XÌ -cÌ nÌzÌŠÌ -™Ì¤Ì§Ì·Ì -ÏÌÚÌâÌêÌÍ Í6Í0=ÍnÍÍ’Í›Í£Í -ºÍÅÍÌÍÔÍÜÍ ëÍ ùÍ Î -Î -Î )Î 6ÎBÎ RÎ ^ÎjÎ oÎ {ÎKˆÎ…ÔÎ.ZÏ1‰Ï!»ÏÝÏïÏöÏÐ Ð(Ð7ÐNÐRÐeÐ -wÐ ‚ÐŽÐ ¤Ð -°Ð»ÐÐÐ ãÐíÐüÐ -ÑÑÑ2ÑJÑ\ÑnÑ}Ñ*“Ñ6¾ÑõÑÒ%Ò=ÒFÒcÒ‚Ò—Ò«Ò¿ÒÞÒóÒÓ#Ó?ÓYÓ -uÓ€Ó‘Ó™Ó«Ó´ÓÔÓèÓ ðÓ úÓ ÔÔ!Ô16Õ3h՜հնÕÉÕ‹ÐÕ -\ÖgÖÖ—Ö±Ö¸Ö ÇÖ -ÔÖßÖðÖ××A#×Je×°×<Ã× Ø ØØ,ØEØ]ØmØuØzØ ”ؠضØÉØÒØéØûØ ÙÙ2Ù -;ÙFÙWÙpÙ‡Ù&Ù$ÄÙéÙðÙ öÙ ÚÚÚ.Ú5Ú;ÚUÚ"]Ú €ÚŒÚ‘Ú—ÚœÚ -¬Ú·ÚÆÚ×ÚëÚ7ÿÚ7Û =Û JÛXÛaÛhÛ pÛ }Û‰Û ‘ÛžÛ£Û ¨ÛmµÛ#Ü (Ü 6Ü DÜNÜWÜ tÜ‚Ü’Ü ™ÜC¦Ü7êÜ="Ý@`Ý6¡ÝdØÝ=Þ[Þ3qÞ¥Þ<¹Þ#öÞ!ß<ßYß sßß •ßŸß¨ßÀßÖßîßàà*àGàdàà,˜àÅàßàçà úàá (á Iá!Wáyá”áªá¿áÔáÝá æá ôáâââ#â )â7âJâ Yâfâ.|â5«â5áâ7ã8Oã)ˆã,²ãßãûãä20ä cä„äŸäO»äA å%Må&så4šå1Ïå#æ %æ3æ Oæ [æeæ}æŽæ”ææ -¬æ·æ¿æ ÅæÓæ éæöæç!ç03ç dç pç}ç „ç Žç ›ç¨çÃçàç+éçè(è;èDè Tèbè kèuè -}è ˆè’è$²è×èêèùèé +éLéfé„é—é§é"¼éßéõé êê"ê +ê7ê?êÁêÊêÛê ãêðê ë$ëDë Yë"gë"Šë­ëÆëÏë -áëìë - ì)ì@ì,Zì‡ì!¡ì#Ãì#çì! í%-íSí.rí¡í ¨í´íÅíÙíìíÿí#î-9îgî%}î£î¹îÏîêîÿîï ï*ï -Dï -Oï -Zïeï}ï„ï“ï ˜ï ¦ï³ïÃïÓïæïõïð ðð -,ð7ð->ðlð sð€ðð§ð «ðµðºðÀðÑðäðøð ññ,ñ?ñVñ gñsñ ƒñ ñ ñªñ±ñ·ñ%½ñ!ãñ òò%ò&=òdò xò†ò•ò¨ò ºòÈò×ò çòôò óó ó-ó?ó NóZóióóœó¹óËóÚó -óó -þó- ô 7ôCô JôXô`ô hôuô -}ô ˆô•ô¨ô»ôÔôÜôïôõ õ$õ>õ GõQõ aõkõrõ:õ?Ëõ8 ö DöPöYökö |ö†ö -•ö ö¦ö -¼ö Çö Õö áö -îö ùö ÷ -÷ ÷&÷ /÷<÷P÷ _÷>m÷ ¬÷Í÷Ý÷ï÷øø$ø3øEøeøuø …ø’ø ¡ø®ø³øËøÞø÷ø ù!ù 1ù;ùNùcù~ù ”ù -¢ù­ù -ÅùÐù èùöù úú .ú;úKúfú uú ƒú -úšú*«úÖúßú!ñúû.*ûYûuû#~û"¢ûÅûâû&ü(ü >üJü^ü,gü#”ü¸ü¿ü ÎüÜüïü' ý1ý'Nývý“ý©ýÅýFßýT&þ{þ‚þ ˆþ•þ«þ ¾þßþ öþÿ -ÿ "ÿ0ÿ Mÿnÿ}ÿŒÿžÿ°ÿ ¶ÿÂÿËÿ Ôÿàÿöÿ(ÿÿ$(M=S6‘<È?AE7‡9¿cù9]B—=Úf>C¾JgM µÁÑ ãñ  - 7C U b p~’©¾Ñåø 4DXt¬³¼Ûö !5 IW -j uƒ ˆ -•  ª ºÈÛ -ì÷ '7 GUm‰¥¹(Òû     % +  -1 O< Œ  -ž ”© > -O -h - - -• -   - ¬ -¸ - Á -.Í -ü - "  -1  <  J  V c h  w „  œ  © ¶ Ç Û ò u w ̉ ÅV c €zr‰¢¹ÂÔãìü&"'I q } ‡‘   ®º ¿ÉÏÖÛ íú !9JNh…š©²È ß -éô ý  (4Ofv -{†›²Hº - ( -0H;!„B¦éí1ü.AF KX_o -Š  ›`§™C¢1æ0I O \i -{ -†‘¨¸Éèû (! -J -UH` -© ´ -ÁÌ Óßî ý - 5 D Q_d l y…«² ºÈ€á bnƒ³Ï Óá ó  K3h6œÓâ"ø %=Q `$jª ¿ Í î(+8)d*Ž!¹Û/í$3*Do€'ÅÕåî - 1ASbkz“¦ ½Þù -";N e†¡ ²¼Ìæú! 4 P b  i v  ž ³ Ò ë -ú ("1"D"H" b"l"r"‚" ’"ž"3¤"Ø"é"## )# -6# A# M#Z#x#—#·#Ð#ä#õ# -$$/$ 6$B$W$k$z$@‚$Ã$-Ê$ø$ -%% % *% 6%C%a% h%t% y% …%‘%¨%Ç%æ%ú% & & $&0& G&U&m& †&’& -¨&³&È& Þ&ì& '' -&'1'F'O'W'j'o'w'€'ˆ'š'²' È'Ö'ë'( - -(#(9(R(k((‡((¬(+É(õ(ý( ) ) -) )) 6)D)Y)m)†)Ÿ) ´)Á) Ð)Þ)ñ) *"#*F*O*e* …*“*™*ž*¤*$º*ß*ñ*++ #+/+ 7+ E+Q+ V+ c+p+ -ˆ+ “+ - +«+ »+Å+Ô+ ä+ î+ø+, ,7,M,k,‡,™, ,©, ¼,È,Û,õ,ú, -- --)-=-P- c- m-w-€- ‘- ž- ¨-´-Ñ-à-ò- . -. .&. A. N.Z. t. €. Œ.,˜.Å.!Ø.ú./%/)B/ l/y/ ‘/ Ÿ/«/°/¿/Æ/ ×/ ã/ñ/B0AG0‰0§0¼0 Î0Ø0ß0î0 þ0 1121:1„B1Ç1Ö1è1ð1ù1 -þ1 2 2+2B2 T2a2s2“2"²2!Õ2!÷2313J3 b3 l3 v3€33Ÿ3 §3µ3V½3+4 @4(J4s4"y4œ4 ²4 ¾4Ê4ä4%ü4 -"5 -575?5N5b5 -r5}5 Œ5š5 £5±5 Å5 Ï5Ý5ã5ö5 6 6 #616&K6,r6 Ÿ6¬6±6 -Á6 -Ì6×6ô6717I7\74n7£7µ7 -»7Æ7Î7 -Þ7 é7ö78 88$8+8 H8T8 i8!u8—8 ¦8´8 Ê8Ö8ç89 99-9 ?9L9S9?[9›9ª9²9Æ9Ö9ó9¡:4²:ç:ð:-ø: &<0<9< -I< T<#^<‚<-•< Ã<Ï<ä< ù<= ="=+= -4= ?=¥K=ñ=>> ">/>8>@>F>\> -t> ->Š> > -°> »> Å>Ó>×>ñ> ? ?!?8? GRGeGvG‰GšG­GÈGÚGïG+H2HJHjHqH €H H šH¦H ¸H ÅHÑH#èH II *I6IKIbI6zI±IÎIÖIÝI òI7ÿI7JUJjJzJJ˜J®J ½J ÊJÖJèJ üJ K 'K3KHKNK -UK -`K kKxKK œKªK -°K»KÀK ÕKáK -øKL#L @LLL^LyL•L °L¼LÌLåLõL M4MSMpMƒMœM¹MÌMÛM.õME$NjN {N ‰N–N ®N ¼NÊNåN ëN ùN O -OO -O -9ODOSO bOoOŒO”Oœ¨ONEP -”PŸP¨P¯PÁP ÉPÕPçPQQ#3QWQuQ ‰Q•Q§QÃQÙQ#óQR5R IRVRiR†RR$¸RÝRüR SS+SESYS!qS“S¯SÁS -ÈSÓSèS øST$T?TVTjT‚T ˜T¤T»TÒTéTUU 8UFUYU lUyUŽU UµUÍUàU÷U - VV$V">VaV{V •V¡VµVÐVèVW=W6OWS†WJÚW%X>XQX dXnXX•X¤X¾XÍXëX ýX YY-Y@Y TY`YyY‹Y ŸY¬YÌYâYýYZ2ZJZ ^ZjZZ”Z¤Z³ZÅZ´ØZ)[N·[\K]=f]ƒ¤]*(^¤S^¢ø^3›_TÏ_?$``d`2Å`ø`¯za*c4-d/bdº’d MeYeaegeneee£e«e»eÍeÓeæeùef +f 7fDf;Mf‰f ™f¦f¶f ÇfÔf éf÷fg#g ?gLg ag og&|g£g -¶gÁgÔgägþg"h3hKh[hkh|h›h±hÁhÖhæhõh ii,i @iLiQiaivi+|i¨i®i¿i ÆiÓi Úiçi ÷i -jjjj%j .j :j8Gjv€j÷jþjk .k ;kGk Mk!nkk¨kÄkßkøkl2l9lHlOlXlll†l l šl ¦l ´lÂlËlÔl Ýlêlúl mm &m 2m>m[m!jmŒm m(¹mâm#ëm n n*n1n -7n Bn OnYnhn|n—n -œn §n -³n ¾nÌnÜnKån11o7co1›o5ÍoHpALpŠŽp;q!UqÁwq 9ræZr As¨Nt}÷t*uuB væãvÊwéw‚kxîx ôxy) y53y¯iy1z0Kz0|z1­z(ßzC{€L{SÍ{,!|2N| |A¢}Aä}*&~«Q~íý~ ëÎø€£Çªk‚§ƒ§¾ƒf„˜i…G†èJ†ï3‡2#ˆVˆ pˆ-zˆ -¨ˆ³ˆƈ؈éˆïˆôˆ‰ ‰‰$‰7‰ P‰]‰o‰ ‰ ‰—‰°‰¹‰ Á‰Ή -Ô‰<߉ ‹*‹ A‹K‹]‹q‹‹‹¥‹¿‹Ï‹Þ‹ò‹ŒŒ+Œ :ŒGŒ[Œ -kŒvŒ{Œ„Œ3›Œ;ÏŒ; ¡GéFðŽ 7A F Sago ¢©±ºØø3#Ei”¤¾Ôãòø ÿ ‘(‘1‘F:‘‘ -¡‘ -¬‘·‘ ¼‘ Ê‘ Ø‘ å‘ ò‘ ’!’!0’ R’ ^’+j’K–’0â’Q“˜e“¢þ“$¡”5Æ”Pü”GM•-••OÖj—o~—eî—jT˜~¿˜p>™o¯™wš<—š?Ôš>›tS›tÈ›`=œ‰žœ(¨0®ßåìþž $ž2ž64žokžÛžÝžäž4ìž#!ŸÈEŸG XV U¯ O¡U¡l¡u¡~¡†¡ -¡ š¡ ¦¡°¡ ¹¡áÌ¡#Þ¡¢ -¢¢!¢'¢6¢=¢F¢Y¢l¢u¢‡¢ ™¢£¢ ¨¢ ¶¢Ä¢ Û¢å¢í¢ó¢ ö¢££.£ M£n£ t££ˆ£‘£ °£½£ Å£Ï£à£ ã£ ï£ ù£¤¤"¤ -)¤4¤ <¤I¤Q¤q¤ z¤ˆ¤Ž¤¤¼¤ ˤפ -ߤê¤ü¤ ¥¥)¥ 9¥G¥ [¥ i¥w¥ ‡¥”¥§¥½¥Í¥ߥ ð¥ ü¥¦¦ ¦ :¦ D¦ -Q¦\¦b¦q¦¦œ¦®¦ȦÙ¦ò¦§§ %§ F§ P§Z§ b§l§ r§~§“§¢§ ¨§¶§ƧͧÓ§Ú§ í§ú§ý§ ¨ ¨ -¨ -%¨0¨I¨R¨ Z¨d¨ j¨w¨}¨ƒ¨‰¨¨—¨Ÿ¨§¨ º¨ ƨÓ¨í¨ õ¨© ©©©2©A© -a©l©© Ž© š©¦©®©¶©Ì© Û© è©ô© ÷©ªª ªª:ªCªKª^ªtª ”ª ¡ª¯ªµªŪ˪Òª -Úª åªòª « « -« )« 7« D« N« [«h« y«ƒ« ‹«•«œ« -¢«­« ¶««Ë« Ú« ç«ó«ü« ¬¬!¬(¬ 1¬ >¬ L¬Y¬ b¬ p¬~¬ ¬™¬¬¬²¬µ¬º¬¬ Ѭ Þ¬ ê¬÷¬ ­ ­,­2­;­L­_­q­(ƒ­¬­´­½­Ó­ë­ý­4®1L®/~®®®Ä®Ô®ô® ü® ¯¯#¯#4¯ X¯y¯˜¯Ÿ¯¯¯"¿¯â¯ -ê¯õ¯°°°(°>° O°[°b°j°z°Œ°¡° -º° -Å° -аÛ° á°ï°õ°± ±± -2±=±N±T± -]±h±n±w±|±‘±§±¶± ¾±˱Ú±Þ±ä±ç±ö±ú± -² ²²²5²Q² c²m²}²‚²‰² ‘²Ÿ²!´² Ö² ÷²³ -8³ C³O³V³Z³b³g³m³s³ z³ „³Ž³”³›³ ¢³°³.óò³Ã´Óµ-ïµr¶X¶4é¶U·Dt·R¹·g ¸:t¸w¯¸G'¹5o¹=¥¹Kã¹I/º1yº:«º9æº: »8[»;”» лÜ» -ã» î» ú» -¼ ¼¼+¼ -;¼F¼I¼!Z¼ |¼ †¼’¼›¼!´¼Ö¼ì¼:õ¼0½C½ X½e½m½ -†½‘½š½¡½¨½ ·½ Ž ѽ -ß½ -ê½ õ½ ¾¾ #¾ /¾;¾@¾ O¾T]¾²¾8u¿=®¿ì¿ ÀÀ!À*À1ÀMÀ]ÀzÀ€À’À -£À ®ÀºÀÑÀ àÀîÀÁ -Á'Á >Á LÁYÁmÁ„Á–Á­ÁÄÁÖÁ#èÁ/ Â<ÂOÂe‰¤ÂÄÂÛÂíÂÿÂÃ6ÃHÃ)ZÄáà ¹ÃÆÃÖÃÞÃõÃûÃ Ä )Ä -3Ä ->Ä IÄVÄ8iÄ5¢Å)ØÅÆÆ Æ-Æ3Æ -ÃÆÎÆæÆýÆÇ Ç)Ç<ÇCÇ\ÇqÇ…ÇG™ÇOáÇ1È:GȂȋȔȦȾÈÙÈëÈòÈ÷È -É"É3ÉQÉhÉzɋɜɸÉÑÉÙÉ âÉðÉ Ê!Ê49Ê(nÊ—Ê -›Ê -¦Ê ±Ê»ÊÁÊ ÞÊèÊ*ñÊ Ë,&Ë SË]ËcËjËpË †Ë’ˡ˱ËÄË<ÙËÌÌ1ÌKÌgÌoÌvÌ …Ì’Ì™Ì¨Ì®Ì µÌmÃÌ1Í6Í EÍRÍ[Í#d͈͠͵ͽÍEÍÍ2Î<FÎAƒÎ3ÅÎTùÎ-NÏ|Ï/˜ÏÈÏCâÏ.&Ð*UÐ €Ð$¡ÐÆÐ×Ð ôÐ -þÐ ÑÑ9ÑMÑfÑ}Ñ —ѸÑÕÑéÑ$Ò)ÒEÒKÒ [Ò!iÒ ‹Ò ¬Ò¸ÒÎÒåÒýÒÓ;ÓBÓ IÓUÓgÓ‚Ó‡ÓÓ ˜Ó¦ÓÆÓØÓ"èÓ> ÔEJÔHÔJÙÔ4$Õ1YÕ,‹Õ#¸ÕÜÕíÕ5 Ö)?ÖiÖ1‡ÖQ¹ÖD ×)P×)z×>¤×<ã×, Ø MØ"[Ø~ØØØ·ØÊØ -ÏØÚØìØýØÙ ÙÙ 1Ù=ÙQÙeÙ4uÙ ªÙ ¶ÙÃÙ -ÉÙÔÙ ãÙíÙÚÚ*Ú FÚ RÚ ^ÚhÚ}ÚŒÚ -”ÚŸÚ -¨Ú³Ú#¼Ú%àÚÛ Û&Û:Û WÛxÛÛªÛÂÛÒÛ&íÛÜ(Ü@ÜWÜ -fÜ qÜ~ܘ‡Ü Ý (Ý2Ý:ÝIÝeÝ Ý¢Ý½Ý(ÌÝ(õÝÞ<ÞDÞWÞ+iÞ•Þ7¥Þ ÝÞ;þÞ :ß-[ß/‰ß+¹ß3åß3à(Mà8và¯à ¸àÄàäàøà áá 2á+Sáá*”á¿á×áñá -â â@âFâ%`â †â -’â â!©âËâ ÒâÞâåâùâã ã0ãBãQãbãiãzããŸã4¨ã Ýãéãúã& ä4ä:äJäPäWähäxä‰ä˜ä©ä»äÌäáä -óäþäå#å 4å>åFåMå1aå(“å¼åÑåìå6 -æAæ ]æ jæwæŒæ¦æ¶æÆæÖæ åæ óæç çç/ç>çNç]çxçç¨çºç!Éç ëç -øç=èAèFèMè]è fèsèˆèè ˜è¥è»èÐèêèñèéé-é<éVé \éhé zéˆééO¯éLÿé3Lê -€ê ‹ê•êªê ¾êÈê Úêèêïê ë ë ë -ë :ëHëWëgëyëˆëëžë°ëÁë6Õë$ ì1ìAìPì `ìnì~ììŸì¹ìÓì æìòìííí0íCí[ísí‰í›í®íÁíÙíôí î î(î?îNî jîwî îšî ²î¿îÖîîî ýî -ïï%ï3:ï nïzïŽï­ï0Æï ÷ïð#*ðNðlð†ð*žðÉð -ãðîð - -ñ8ñ!NñpñxñŒñŸñ%·ñ*Ýñ!ò1*ò"\òò+›ò ÇòRèòX;ó”óœó ¥ó³óÇóÜóüó ô ô -;ôFô7bô;šô!Öô!øôõ3õLõ -aõ lõzõ -‰õ”õ ³õ-Áõ-ïõöU&öO|öYÌöT&÷W{÷LÓ÷M ø…nøOôø\DùG¡ùpéùHZúX£úVüúzSû ÎûÜûëûúû üü $üEü\ükü|ü ’üŸü®ü½üÑüéüýüý*ýGýWýfý{ýŽý¬ýÃýÛý ôýþý%þ%-þSþoþŠþ þ»þËþÝþ#ñþÿ ÿ )ÿ5ÿDÿ[ÿoÿŠÿ £ÿ¯ÿ -Åÿ ÐÿÜÿíÿþÿ$D\n)Š´ º ÈÖï - [#" ¢“® BNh€ ˜¤³ÂÒ$Û ",;J^mr ƒ ®ºÊÞî gƒê¡ÞŒkk ×{ä`emlÚò (9@Sl+‡,³àý   1 B  G S Z b i x ‡ – ¨ ° Ð â æ % -& - E -Q - Z -{ - – - ¢ -® - · -Á -È -Ð -× -ê -!û - < O  -U -`  Ž  ¯ H½  -     .  8 FB ‰ H© ò ö 4 - ? T Z b q x Š  -š ¥  «  ¸ oÆ ¤6QÛ<-9j¤ª ºÇ -Ûæö"&8_t&žÅ ÔDà% 5 AM S a n {‰  ² ¿ÍÝæîý # +7H‚fé1C`hx‹ › -¨M³7=9wˆ(˜ÁÊáó $6G+X%„7ª7â16LƒŸ;´ðù / DP*n™« ¿É Üèû 3FV'l”®'Ì!ô .<%PvŽ%ªÐð&*Qj&‡ ®Ïæö' 4N'l!”¶)Î ø 9CJ[j|>ÀÏë # 3 A No¤"º Ýê " *7Un~\†ã2é  / ; B J  Z !h Š  “ ¡ ©  º È +æ (!;!U!k! r! !‹! ¨!µ!É! Þ!ê!ý! """ 9"F" Z"f"y"ˆ"ž"§"¯"Ä"Ê"Ò"Û"ã"!õ"#5#I#d##Š#4›#Ð#ð#$$-$6$>$W$+p$ œ$¦$®$½$Ô$ ë$ù$%%6%Q%l% „%’% ¡%¯%É%å%,&1&@&$_&„&Š&‘&˜& &#µ&Ù& é&÷&'$'6' ='K'Z' c' q'~'–'¥' ·'Ã'Ö'å'ô' ("(3(M(\(r(‹(ª(É( Ý(ç( ï( û()")>)B) -G) -R)])o)ƒ)š) -¹) Ä) Î)Û) ò) ÿ) - *$* ;*I*_* }* ‰* “*#* Á* Î*&Ú*+ + ++*+V+!j+Œ+ +À+'Þ+ ,(,;, Q,],d,v,,’,¡,°,GÇ,G-W- u- ‚- -š-  -¬- -¼-Ç-Ù- î-ú-‰... ±. ¾.Ì. Ó.à.ö."/(/;/N/k/Š/¨/ È/é/0 0">0a0 -j0 -u0€0‘0 0 ¨0 ¶0eÂ06(1_1Ig1±1&·1Þ1ú1 22=2&Q2x22‡2Ž2 2¸2Ò2î2ý233$373@3U3[3j3€33 ˜3¦3#»3ß3ü3 44$434#F4"j44¥4¾4Ï4/ß455 '545;5U5q5 †5“5 š5¦5®5µ5 Í5×5 ð5%ü5"616E6^6n6‚6˜6 -¬6·6Ë6á6ó6û6H7 M7[7c7y7"“7#¶7¾Ú7/™8É8Ð8'×8 -ÿ9 -:: ":0:A:X:0t:¥:®:Ä: Ù:ã:ì:; ;;$;¥7;Ý;ì;þ; <<<%<-<H<e< -v<<•< ¥< ³<½<Í<Ñ<ë<ü< -=!=2=6=O=c= y= …=“=±= ¹= Ç=Õ=ê= > >!>1>H> `>n> ƒ>>¤>´>Ë>"å>???(1?(Z? ƒ?¤?Ã?ß? ð?Bü?g?@A§@Bé@@,A3mA7¡AÙAñABBB'B!.B.PBBŽBžB­B ¼BÉBáBþB>CYC hCuCŒC¤C ³C¿CØCôC DD&D>DPD1eD—D·DÌDàD"öDE9EKEZEqE†EžE ¯E¼EÑEÚEôE FF,F ;FIFZFzFF©F»FÙF1ñF#G"AGdGvGG§G¿G#ÙGýGH'0H7XHH¤H ·HÃHÖHëHEÿH!EIgImIuI‘IT¯I!J&J@J QJ+[J$‡J ¬J ºJÇJ×JïJ KK -)K4K FK PKZK -kK vKƒKšK«KºK ÃKÏKØKöK'L0L,?L$lL‘L L ¶L#×LûLM*M@MVMkM„M4œM)ÑMûMN&0NWNlN{N.’NBÁNOO'O"8O[OjO{O ˜O¢O¼OÖOïO# P -P;PLP_PrP"{P žP¨P¥ÃPIiQ³QÇQÎQ$ÔQùQRR%RDR]R&zR ¡RÂR ÙRåR÷RS)S#CSgS…S ™S¦S¹SÖSíS$T-TLTaTpT…T¤T½T&ÚT U"U9U AU!MUoU U)ŒU#¶UÚU"ùU"V?V_V!nV!V!²V!ÔVöV,W ± G±U±e± h± -u±€±ˆ± ‘± ž± ¿±˱ Ô±Þ± æ± ò±ü±² ²²²"²(²9²I²]²p² w²„²Œ²’²›²¶²"˲ î²ø² ³ -³ )³ 7³A³I³ f³ t³³‘³”³œ³¢³©³¸³ͳֳ߳ò³, -´ 7´E´]´e´ {´…´‹´ ”´ ¡´­´¼´ Ì´ -Ù´ ä´ ò´ ÿ´ µ µ+µ <µIµRµbµhµ pµ |µ Šµ -˜µ£µ¶µɵѵÙµ àµíµ¶ -¶ ¶¶ 4¶>¶F¶Z¶k¶¶Š¶ž¶¦¶©¶ ®¶¼¶ ˶Ù¶ê¶û¶·'·:· -B·M·]·n·~·-Ž· ¼· É·Ó·ç·ù·¸I-¸4w¸=¬¸ê¸ü¸"¹5¹ >¹ L¹V¹l¹2¹+²¹'Þ¹ -ºº/º.Cºrº{º‚º•º¦º ­º¹ºÒº -ìº÷º -ýº»!»9»T» f» t» ~»ˆ»» -Ÿ» ª»¶»¼»ûÝ»í»¼ ¼ -¼&¼ /¼9¼>¼\¼o¼ €¼ Š¼–¼¥¼ ©¼¶¼¹¼ȼ -̼×¼ç¼ì¼õ¼Uù¼O½ o½{½Ž½“½ -™½¤½·½,ͽ)ú½+$¾#P¾ t¾ ~¾ˆ¾Ž¾’¾˜¾Ÿ¾¦¾­¾ -µ¾ -À¾˾Þ¾ó¾û¾E -¿-P¿#~¿oÊÇïdñ õ<}p’wl ¶ÕyƒböÜá]% ò³5Ûü¾Ñ©ÓǾ6²üƒ÷?Ö}‘¨›SM÷Hú €«é#Ý G«J9 =^¢¬¹ï =d»zW>2°ó¡—Vø8 ·=AKzI›ª3ì{9‚&]GÔp)±$lì¸ñüÏàéâ¼i º­¥=3w̲†c­Á±)»ˆšhYVük’O*ùr(.º´k#™ö½æý†º Éh3* ¨aåòé§Ô¶ddxåçbÌѪWQb–®¶mèžäÕGñ ¥ùZ¬Õ0 oÙgÚ£—îä&Xò“¼‹®æã4DZâ5Rßâ4u¦q!fV‰4ô+ô _¼—>nŠê× à Ï11sÿ)#70Leå zÆ`aÁTÞÜ‹Ô@ ñ}øÆ ÿ0*& Ýä$vŸ¿~/KÂDE¶‹¨u€?J­×[,ßõŽNezceFc @ oDûr¼ÚR–:ûøp­«<½D ˃ßã! EÀ¡œ¨Ò‚2Ȧϙ®sú¹ýá¹éP†Ìsï1D ?<i9sµUÞAÞ…Ýö4„êp1“L}ÂMÍ(¯Råár‡g¡`×2• ¤¶ì„ðpu× è½> ˆœ‡¬|kÙy¬ž3 d`œ¥ñÎí.ª:þ=BGgÂ"@jví}¦ ÍËeu Î òôõçyM«H _Œ±«ý†w„š ’ $a5 R&)! ™‘¿—þ"D1( èèi\šï²!ÈËPV_¸RØŸ[$Ñ»µd ð¯#¡Í‹SŸÛUÓ,¸ ÜÕ‡é>“ü‹‘ý¶/á[ƒ… Ð`mã ¼Š1ï” Ö¯Ê®VÍÓ-®‰CE ½Ñü¨°6•viT¿ž;‡Èó, vÉ.9 Œ6 Á[fƒ$>k~Å!›ÃPa›nð˜ŠÔµwŽ—Œ -å Ì-TDH5JQ¯Í]/ˆý] '„Ä3à?æ¿öEØÛ„˜Ã„]+)  ´©ÃÖ¾Pè8ïÈ# §ee -êÁ4 Í%X_ìjxL'" &þ…à’ •äŒ¨ð¤ŸÃ(  4M:°˜¹>ãª7ú_j"Bð*™(1 vgÏŒŒ| í*6Ö Êã´oÏhÛ4;]ûCÌT‘µŽ‰ P: üyÚ ·±«ÓŠ¢lë÷uË‹ 亩ª‚c8£ˆÉÐA6š²|3É §ÙAKíHß4¶:xz.u£ nÄò’Qg²¥½7,OšÊ(ÔÖìÒ)ÐÎVy#%–'èܳóIðŠcœ×>#®×@*§á€†MŽßÃz¦= ˆOÕ@1¯Ø¶XHã-Ý·ßÓ‰q®¯ëÅ»‘Gž<Dbë òs]¡Øzîz.ï1îD#3f–½EN¤B¬Ù‚:€ FÞóqu7{š8´"$ ·.L(Þ0ÐFs•<„ÄYùº/jà!,qÆ‘5ñÏyûPõæfþ'…r8*¿Ð÷%ÐNÀæÓ+¤ S{ù6…ˆ?Î~˜ÂGØ܈Oÿd¾<ðx™ÄÏBÛo‰’& -H“nè–,”™ýNÒøÄs7^Þu—bþç–tšhwÀ§©­,îLDÃeS¸ÆÌ×A^³ž¹†Z»ajÆ/ó0ÍXtÃ2´Qè?5¼´Å¹n& \ê+k-Aaô¤Yµã{I±|8.(C™F”MÓwúΤªúßÇŸò\x6 å'é@3ÄWÅ\=ÖÛ¢¸/Ág“Iö†ÈJ© -q4o‰>Sƒ¡}2I TœRÀç’`0:.UKÚßË 9Rÿ~÷ó35E­m' "ð7/ m<. tPô€Ü­bÚ;È´rHlÉÿõXä˜ì‰æL¢jipZ"ª\Mf8^#é|h`ÒÄç£E ^û>cž»vOtå\ãIQ[~‘þõEO -;gßC”£WWœ+åGñ Û% oéĈ¬ÿ'8G÷ »—hC¤”¥…´Ùw®Tì„ïýEÛ^Q‹ÂÅŽ-£²Âk]⌎‘É²È -ˆ¯›ÏJ YµŸ¡—I‚ëÐ*tVëù dBfSÕ[_léâU/X7B‡¦<7 :~±…ŽNàØÉuÒRi ª-9âCØ3¿”³ŸkCa ÿ< ÊQ'³_q+™ù7ÎÀ©â=Kq=iç!Z +%‚™¦ Ëb+ ¾C/ n@°‹y@~NÑŽ6‘’U'Hm$Mv~‚Áë-¼¡Wý‰:è§~Ҍ €ÒUG ÖÅÊ%wtŠø; “À³¸›1¥$†ÕFõÊÜLø¢–¦Â- º÷nIKn0Ž@ƒ ŒòJ-ž÷êÄá ØC )"/f¯…Ê22øÑñ`Fl«Î&À«›’9ÃÙpF[{ëÞчç§2 Óìþ8r ÅP(£Úoÿä¦Ö%Vy)ÜN+ÓT·¯ÿ vÁIö? ¬¸}  - ÉÝ;Ü‚Ú¾‡½ºYH°\ZÎcê¿tj¢Í×¥Þêzñ©ÔK€•2Xƒ‡â_ÛÇqà >ÔÐUh¨9?ù*âl”OŠ)xà·B]¸²±@¹Ñ,aQ˜rÔûûJASjÆBmöš¨bÉ -\6y8˜{mZ! ÔUÃOUÝæ¾bA°–X5ôL®ÞÀB ˜šWµ|q¹Ž«¶ÈÆó í p[!'¤Ë©ò¼jx§GæížJá¾Ï²­»Á`ö“æÙNt·`A àÇÇ°WïÆö Q£ãœê»0 µí= Ò¢0¾{³œgm›kŸµ|î}°H{±¿rþÇKK³Póø îŠ_Õ;†´Ðc!¿p#J?ô%±W­-|F}ÌúMí RF ˜Ýx°l–Swe¤;Id‡£TK nê&Õ[.ÌÀV¥7뢔ª œÍ¥)Y¢h³60ðfgF€îvJù…Z^¨õçiA"9ôìYŠxǸÚÊä‹Ì¡ü$ëC5ËÙmeS|9a”Ñ  O È{þY&ƒúÅ2,“·5(: •X½;^· ›4 ák<ØLú -l¦çsYÝ"•+ûÒ^í—fùr ¬T׺¹ÇEú‚%iÝ€oZt åÖü÷cóá¼õÙî* -ä\N,høÁ?§ËÎôs‰$•;BŸÆ“žºû¬•Ú ý -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -Argument #%d type mismatch (expected %s, got %s)PDB calling error: -procedure '%s' not foundP_atternsPack my box with -five dozen liquor jugs.PaintPaint Options Shared Between ToolsPaint Tool proceduresPaint Tool:Paint _ModePaint fuzzy brush strokesPaint hard edged pixelsPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalette UIPalette _Name:Palette _filePalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path 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) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.Really clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%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' -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' -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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: GIMP 2.2 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-11-18 20:06+0100 -Last-Translator: Branko Ivanović -Language-Team: Serbian (sr) -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2; - -Neispravna opcija„%s“ - -Upotreba: %s [opcija ... ] [datoteka ... ] - - --batch-interpreter - Procedura kojom obraditi naredbe u paketnom režimu. - --debug-handlers UkljuÄi nefatalne rukovaoce signala za otkrivanje greÅ¡aka. - --display Koristi navedeni X ekran. - --dump-gimprc IspiÅ¡i gimprc datoteku sa podrazumevanim podeÅ¡avanjima. - --no-cpu-accel Ne koristi naroÄita ubrzanja procesora. - --no-shm Ne koristi deljenu memoriju izmeÄ‘u GIMP-a i dodataka. - --pdb-compat-mode - Saglasni režim za proceduralnu bazu. - --sesion Koristi drugu datoteku sesije. - --stack-trace-mode - Režim otkrivanja greÅ¡aka za kobne signale. - - --system-gimprc Koristi navedenu sistemsku gimprc datoteku. - --verbose Prikaži poÄetnu poruku. - -b, --batch Obradi naredbe u paketnom režimu. - -c, --console-messages Prikaži upozorenja u konzoli umesto u prozoru. - -d, --no-data Ne uÄitavaj Äetke, prelaze, palete, mustre. - -f, --no-fonts Ne uÄitavaj fontove. - -g, --gimprc Koristi drugu gimprc datoteku. - -h, --help Prikaži ovaj pomoćni tekst. - -i, --no-interface Pokreni bez korisniÄke maske. - -s, --no-splash Ne prikazuj poÄetni prozor. - -v, --version Prikaži informacije o verziji. -Slojeva: %d%d tpi%d tpi, %sSlojeva: %d%d minuta%d sekundi%d x %d tpi%d x %d tpi, %s%d x %d taÄaka%g x %g %s%pKopija kanala %sNapravi izbor na osnovu %s kanala%s porukaUmnožak %s%s maska%s%sKlik: proÅ¡iri izbor%s%sPrevuci: premesti & kompresuj(%0.3f, %0.3f, %0.3f)(NiÅ¡ta)(Ovaj konzolni prozor će biti zatvoren za deset sekundi) -(Neimenovan bafer)(Neimenovana mustra)(Nemonotona)(Äist)(neispravna UTF-8 reÄ).(izmenjen)(niÅ¡ta)1 sloj1 sloj15 stepeni %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D transformacije...4:1 (400%)8:1 (800%)<%s><>Za najbolje GIMP performanse, neka podeÅ¡avanja će možda trebati promeniti.Gimp — Gnuov program za obradu slika (GNU Image Manipulation Program) -Sva prava zadržana ©1995–2004 -Spenser Kimbol (Spencer Kimball), Piter Matis (Peter Mattis) i Gimp razvojni tim.Nisam mogao da obradim datoteku sa GIMP savetima!ÄŒini se da nedostaje vaÅ¡a datoteka sa GIMP savetima!Datoteka „%s“ već postoji.Dodaj u _izborU_gaoO GIMP-uAkcijaAktiviraj _fokusiranu slikuAktivni filteriPrilagodljivo superodsecanjeDodajDodaj alfa _kanalDodaj Alfa kanalDodaj vezuDodaj kanalDodaj boju u mapu bojaDodaj voÄ‘icu:Dodaj voÄ‘iceDodaj vodoravne voÄ‘iceDodaj m_asku sloja...Dodaj slojDodaj masku za slojeveDodaj putanjuDodaj poteÑ•Dodaj sloj za tekstDodaj uspravne voÄ‘iceDodaj masku slojuDodaj boju sa pozadineDodaj boju iscrtavanjaDodaj masku slojaDodaj tekst sliciDodaj tekuću boju u istorijat bojaDodaj izabrani filter u listu aktivnih filtera.Dodaj u paletu %sDodaj u tekući izborDodajem temu „%s“ (%s) -DodatakDodatni ulazni upravljaÄiPodesite osvetljenje i kontrastPodesi ravnotežu bojaPodesi krive bojaPodesi nivoe bojaPodesite osvetljenje i kontrastPodesi ravnotežu bojaPodesi krive bojaPodesi nivoe bojaPodesi nijansu / osvetljenje / zasićenjePodesi nijansu i zasićenostPodesi nivoe automatskiPodeÅ¡avanjeNapredne opcijeUticaj:DotiÄna povrÅ¡ina %sSprejSprej sa promenljivim pritiskomAl_fa u izborPoravnatoPoravnanjeSvi kanaliSve datotekeSve datoteke (*.*)Sve slike i podaci o poniÅ¡tavanju koji ne stanu u ostavu za deliće biće upisani u datoteku razmene. Ova datoteka treba biti na lokalnom sistemu datoteka sa dovoljno slobodnog prostora (nekoliko desetina MB). Na UNIX sistemu, možete koristiti sistemski privremeni direktorijum („/tmp“ ili „/var/tmp“).Dozvoli potpuno providnim regionima da budu popunjeniDozvoli biranje potpuno providnih regionaDozvoli povećavanje %sAlfaAlfa u izborAlfa:Slika izabrane veliÄine zahteva viÅ¡e memorije nego Å¡to je podeÅ¡eno kao „Najveća veliÄina slika“ u prozorÄetu Postavke (trenutno %s).An_imacijeUsidri plutajući izborUsidri plutajući slojUsidri plutajući izborUgao:NebrisaÄ %sUmekÅ¡avanje ivicaIzgledPrimeni Masku za slojevePrimeni masku _slojaPrimeni osetljivostPrimeni masku slojaDa li ste sigurni da želite da uklonite „%s“ iz spiska i sa diska?Da li ste sigurni da želite da uklonite Å¡ablon „%s“ iz spiska i sa diska?Kao meÄ‘u _postavkamaZatraži potvrdu pre zatvaranja slike koja nije saÄuvana.Razmera:Razmera:PrikaÄi parazitaPrikaÄi parazita sliciPrikaÄi parazita predmetuPrikaÄi parazitaAutor:AutoAutomatski prati _aktivnu slikuSam smanjiSam smanji izborSam promeni veliÄinu prozoraAutomatsko uÄitavanjeSamoprepoznavanjeDostupni filteriDostupni tipovi:Popunjavanje bojom pozadine_Osvetljenje-kontrast..._BaferiPozadinaBoja pozadineBoja pozadine podeÅ¡ena na:Pozadina: %d, %d, %dUnazad (ispravljajuće)Osnovno popunjeni delovi na svim vidljivim slojevimaZasnuj izbor na svim vidljivim slojevimaIzaUdubljenjeBilinearnoCrno-beloCrna:S_topi boje krajnjih taÄakaSta_panjeStapanje_Neprovidnost krajnjih taÄka pri stapanjuStapanje:Stapanje: Neprimenjivo za indeksirane slike.Stapam...PlavaPlava:MrljaZamrljaj ili izoÅ¡tri_Granica...Granice kanalaOgraniÄi izborOgraniÄi izbor saOsvetljenje-kontrastOsvetljenje-kontrast se ne podeÅ¡ava za indeksirane slojeve.ÄŒetkaUrednik za ÄetkiceDirektorijumi sa ÄetkamaKorisniÄko suÄelje ÄetkeÄŒetka:ÄŒetkeMeni za ÄetkePopuni bojomBaferiMeni za bafereSpaliOÅ¡troPo ekstenzijiVraćanjem slike u oblik saÄuvan na disku ćete izgubiti sve izmene, ukljuÄujući podatke za poniÅ¡tavanje.CMYKK_alibriÅ¡i..._BiraÄ bojaK_olone:S_jediniPrilagoÄ‘avanje rezolucije monitoraNe mogu da poniÅ¡tim %sVe_liÄina platna...OtkažiOtkaži voÄ‘icuNe mogu da dodam masku sa razliÄitim dimenzijama od izabranog sloja.Ne mogu da dodam masku sloju koji nema alfa kanal.Ne mogu da dodam masku sloju koji oÄigledno nije deo slike.Ne mogu da usidrim ovaj sloj jer nije u pitanju plutajući izbor.Ne mogu da pretvorim u paletu sa viÅ¡e od 256 boja.Ne mogu da napravim novi sloj od plutajućeg izbora jer on pripada maski ili kanalu.Ne mogu da napravim direktorijum „%s“: %sNe mogu da napravim pregledNe mogu da iseÄem jer je tekući izbor prazan.Ne mogu da povećam ${%s}Ne mogu da postavim plutajući izbor jer je izabrana oblast prazna.Ne mogu da podignem sloj koji nema alfa kanal.Ne mogu da saÄuvam. Nije niÅ¡ta izabrano.Ne može da iscrta prazan kanal.Ne može da crta po praznoj putanji.VeliÄina platnaRežim _popunjavanja platna:Centar H:CentriranoPromeni boju pozadinePromeni element mape bojaPromeni boju ÄetkePromeni rezoluciju slikePromeni jedinicu slikePromeni veliÄinu Å¡tampePromeni tekući sloj ili putanjuPromeni boju pozadine mrežePromeni boju mrežePromena indeksirane paletePromeni perspektivu sloja ili izboraNeuspeÅ¡na izmena preÄice.KanalSvojstva kanalaNaziv kanala:Kanal se ne može spustiti niže.Kanal se ne može podići viÅ¡e.Boja kanalaKanal je već na dnu.Kanal je već na vrhu.Napravi izbor od kanalaNapravi izbor na osnovu kanalaNapravi izbor na osnovu kanalaKanal:KanaliMeni kanalaVeliÄina _polja:Izaberite stil iscrtavanjaKrugOÄis_tiOÄistiOÄisti kanalOÄisti istorijat poniÅ¡tavanjaOÄisti sav tekstOÄisti greÅ¡keOÄisti istorijat poniÅ¡tavanja...Kliknite na „Nastavi“ da prihvatite navedena podeÅ¡avanja.Kliknite na „Nastavi“ da napravite vaÅ¡ liÄni GIMP direktorijum.Kliknite na „Nastavi“ da biste uÅ¡li u Gimp korisniÄku instalaciju.Kliknite na „Nastavi“ da biste nastavili sa korisniÄkom instalacijom.Kliknite da povežete ovu vezu sa izabranom taÄkom.Kliknite da napravite novu vezu. (probajte Shift)Kliknite da napravite novi sastojak putanje.Kliknite da napravite novu putanju.Klikni za prikazKliknite da obriÅ¡ete vezu.Kliknite da ubacite vezu na putanju. (probajte Shift)Kliknite da pretvorite ovaj Ävor u ugao.Kliknite da otvorite putanju.Kliknite da izaberete koju putanju da ureÄ‘ujete.Kliknite da ažurirate prikaz -%s Kliknite da ažurirate iako je prikaz ažuriranKliknite pa prevucite da izmenite izgled krive. (Shift: simetriÄno)Kliknite pa prevucite da premestite vezu.Kliknite pa prevucite da premestite veze.Kliknite pa prevucite da premestite sastojak. (probajte Shift)Kliknite pa prevucite da premestite ruÄku. (probajte Shift)Kliknite pa prevucite da premestite putanju.Klik: izaberiKlik: izaberi Prevuci: premestiIseci razultatSpisak iseÄakaUgradi prema sloju na dnuUgradi prema sliciKlonZatvori %sZatvori ovaj listU_množi putanju_BojeBojaBalans bojaFilteri za prikazivanje bojaBiraÄ bojaPodaci biraÄa bojaRavnoteža _boja...MeÅ¡anje _boja:Balansiranje boja radi samo za slojeve u RGB bojama.BriÅ¡i bojeIndeks boje:Boja:_Mapa bojaPro_stor boja:O_boji...Tip bojenja segmentaTip bojenja izboraObojiBojenje radi samo za slojeve u RGB bojama.Oboji slikuOboji slikuMapa bojaUreÄ‘ivaÄ mapa bojaMeni mape bojaKolone:Pr_imedba:PrimedbaKon_trast:Za_motajPodesi filtere za prikazivanje bojaPodesi p_roÅ¡irene ulazne ureÄ‘aje...Podesi _mrežu...Podesi mrežuPodesi mrežu slikePodesi preÄice sa tastaturePodesi preÄice sa _tastature...Podesi izabrani filterPodesi izabrani filter: %sPotvrdi veliÄinu slikuPotvrdi razmeruPotvrdi ureÄ‘ivanje tekstaPotvrdi zatvaranje _nesaÄuvanih slikaSukobljene preÄiceKoniÄno (asimetriÄno)KoniÄno (simetriÄno)Poveži potezeKonstantnoOgraniÄenjaKontekstKursori koji se menjaju u zavisnosti od konteksta su strava. Podrazumevano su ukljuÄeni. Ipak, povećavaju zahtevnost Å¡to vam možda neće odgovarati.NastaviDoprineliPrebaciPretvori ivicuPrebaci sliku u sive tonovePrebaci sliku u indeksiranuPrebaci sliku u indeksirane bojePrebaci sliku u RGB režimPretvori slikuPrebaci sliku u indeksiranu (korak 2)...Prebaci sliku u indeksiranu (korak 3)...Pretvaram sliku u indeksiranuZamotajTip zamotavanja %sUmnoži imenovanoUmnožavam datoteku „%s“ iz „%s“...Autorska prava:Korumpiran segment %d u datoteci sa prelivima „%s“.Ne mogu da napravim „%s“: %sNisam uspeo da napravim privremenu datoteku za „%s“: %sNe mogu da obriÅ¡em „%s“: %sNe mogu da naÄ‘em razgledaÄ Gimpove pomoći.Nisam mogao da otvorim „%s“ za Äitanje: %sNisam mogao da otvorim „%s“ za upis: %sNisam mogao da otvorim umanjeni prikaz „%s“: %sNisam mogao da proÄitam %d bajtova iz „%s“: %sNe mogu da pretražujem XCF datoteku: %sNe mogu da pokrenem dodatak za razgledanje Gimp pomoći.BrojaÄ:Ise_ci slojNapravi novi _prikaÄeni prozorNapravi novu mustruNapravi novu slikuNapravi novi slojNapravi novi Å¡ablonNapravi novi prikaz za ovu slikuNapravi novu sliku prema izabranom Å¡ablonuNapravi novi Å¡ablonNapravite i obradite slike ili fotografijeNapravi i uredi putanjeNapravi putanju od tekstaNapravi izbor iz putanjeObrazujem pregled ...Pravim direktorijum „%s“...IseciIseci i promeni veliÄinuPodaci o isecanju i promeni veliÄineIseci slikuIseci slojIseci slikuIseci ili promeni veliÄinu slikeIseci:Samo niÅ¡anI_seciIseci _imenovano...Zapreminski (najbolje)_Tekuće stanjeTekuća visina:Samo tekući slojTekuće stanjeTekuća Å¡irina:Kurzor_Režim kursora:_Iscrtavanje kursora:Vrsta krivuljeKrivuljeKrivulje za indeksirane slojeve se ne mogu podesiti.ProizvoljnoProizvoljna bojaProizvoljni prelivProizvoljna boja popu_njavanja platna:IseciIseci imenovanoCijanCijan:D_upliraj Äetku_Dupliraj kanalD_upliraj prelivD_upliraj sloj_Dupliraj paletuD_upliraj Putanju_Dupliraj mustruD_upliraj Å¡ablon...Boja tamnih poljaSamo tamniCrta taÄka taÄka...Crta taÄka...NaÄin crtkanja:Crtkanje:CrtkanoDatum:Nalaženje greÅ¡akaPodrazumevani izgled u prikazu preko celog ekranaPodrazumevani izgled u normalnom režimuPodrazumevana mrežaPodrazumevana mreža slikePodrazumevana _interpolacija:Podrazumevana _veliÄina pregleda za slojeve i kanale:Podrazumevana _osetljivost:ObriÅ¡i vezuObriÅ¡i vezeObriÅ¡i masku slo_jaIzbriÅ¡i masku za slojeveObriÅ¡i objekatObriÅ¡i segmentObriÅ¡i Å¡ablonObriÅ¡i ÄetkuObriÅ¡i kanalObriÅ¡i bojuObriÅ¡i prelivObriÅ¡i slojUkloni masku slojaObriÅ¡i paletuObriÅ¡i putanjuObriÅ¡i mustruUkloni saÄuvane opcije...ObriÅ¡i izabrani baferObriÅ¡i izabrani Å¡ablonObriÅ¡i ovu slikuUkloni vektoreBrisanje „%s“ nije uspelo: %sGuste taÄkeOsiromaÅ¡iSmanjivanje zasićenosti boja radi samo u slojevima RGB boja.OpisDizajnStanje ureÄ‘ajaUreÄ‘ajiProzorÄićiMeni za prozorÄićeRomboidRazlikaDirect ColorIskljuÄi masku slojaIskljuÄi brzu maskuZanemari podatke o tekstuPrikazPrikaži navigacijuPrikaži _filtere...Prikazne procedureVrsta prikaza:Prikazujem [%0.6f, %0.6f]UtopiRastojanje:Razdaljina: %0.6fMeÅ¡anje bojaPodeliSveža _korisniÄka instalacijaDa li zaista želite da vratite opcije svih filtera na podrazumevane vrednosti?Da li zaista želite da vratite sve opcije alata na podrazumevane vrednosti?Želite li da je presnimite datotekom koju Äuvate?_Ne ÄuvajPrikaÄivIstorija_t dokumentaIstorijat dokumentaDokumentaMeni za dokumentaSma_kni/spaliSmakniSmakni ili spali potezeSmakni/spaliDvo-crtkanoPrevuci vezuPrevuci vezePrevuci krivuPrevuci ruÄkuPrevuci putanjuPrevuci: premestiCrtaj mastilomCrtežRežim crtežaProcedure crtežaOdbaci novi slojOdbaci novu putanjuZbog nedostatka fontova, nije moguća upotreba teksta.Odbaci dogaÄ‘aje sa ovog upravljaÄaDupliraj ÄetkuDupliraj kanalDupliraj prelivDupliraj slojDupliraj paletuDupliraj putanjuDupliraj mustruDupliraj izabrani Å¡ablonEEK: ne mogu da poniÅ¡timI_zvezi putanju...V_eoma maloPonaÅ¡anje ivica_Istakni iviceIzmeniIzmeni svojstva kanalaIzmeni boju kanalaIzmeni unos boje paleteIzmeni unos boje paleteIzmeni svojstva slojaUredi masku slojaRežim ureÄ‘ivanjaIzmeni boju paleteIzmeni svojstva putanjeIzmeni svojstva brze maskeIzmeni boju brze maskeIzmeni Å¡ablonIzmeni ÄetkuIzmeni svojstva kanalaIzmeni boju...Izmeni unos #%d boje paleteUredi prelivIzmeni svojstva slojaUredi paletuIzmeni svojstva putanjeUredi mustruUreÄ‘ivaÄke procedureIzmeni izabrani Å¡ablonIzaberi elipsuPrazan kanalPrazan slojPrazna putanjaPrazan sloj za tekstIsprazni naziv promenljive u datoteci okruženja %sPo_boljÅ¡ajUkljuÄi brzu maskuUkljuÄi meÅ¡anje _providnostiUkljuÄi ovaj upravljaÄOmogući prikaz zgodnog GIMP saveta na poÄetku.Omogući prikaz saveta za alate.Nenormalno velikoUnesite naziv za sastavljenu paletuUnesi ime za saÄuvane opcijeUnesi naziv za ovaj baferUnesi ime za ovu mustruUnesite novo ime za saÄuvane opcije alataUnesite putanju (adresu):OkruženjeDirektorijumi za okruženjeIzjednaÄiIzjednaÄavanje tonova ne radi kod indeksiranih slojeva.ObriÅ¡i u pozadinu ili providnostBrisaÄ_Konzola za greÅ¡keKonzola za greÅ¡keMeni konzole za greÅ¡keGreÅ¡ka pri Äuvanju XCF datoteke: %sGreÅ¡ka pri obradi „%s“ u %d. redu: %sGreÅ¡ka pri Äitanju „%s“: %sGreÅ¡ka pri Äitanju datoteke Äetke „%s“: %sGreÅ¡ka pri pisanju u „%s“: %sGreÅ¡ka pri pisanju XCF: %sGreÅ¡ka pri pisanju u datoteku „%s“: -%sGreÅ¡ka pri upisu u „%s“: %sGreÅ¡ka pri upisu u privremenu datoteku za „%s“: %s -Datoteka nije napravljena.GreÅ¡ka pri upisu u privremenu datoteku za „%s“: %s -Originalna datoteka nije dirana.GreÅ¡keDogaÄ‘ajVeom_a velikoPovećaj po potrebiIzvezi putanju u SVGIzvezi sve putanje iz ove slikeIzvezi aktivnu putanjuIzloženost:ProÅ¡ireni ulazni ureÄ‘ajiEkstenzijePopunjavanje tekućom bojomBoja Äetke u boju pozadine (HSV smer kazaljki na satu)Boja Äetke u boju pozadine (HSV suprotno kazaljki na satu)Boja Äetke u boju pozadine (HSV)Boja Äetke u boju pozadine (RGB)Boja Äetke u providnostBoja Äetke u providnostBoja Äetke/pozadineFG/BG BojeFS opuÅ¡tanjeFS ukrućenostFS na slojPo_desi platno prema slojevimaIzbleÄ‘ivanjeNisam uspeo da uvezem prelive iz „%s“: %sNisam uspeo da uvezem putanje iz „%s“: %sKiÄerajKobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: datoteka izgleda nedovrÅ¡eno.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: datoteka je neispravna.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: nije Gimpova datoteka sa Äetkom.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: nepoznat oblik Äetke Gimpa.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: nepoznato izdanje Äetke Gimpa.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: nepoznata dubina %d.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: nepoznato izdanje %d.Kobna greÅ¡ka pri obradi datoteke sa Äetkama „%s“: nepodržana dubina Äetke %d. -ÄŒetke Gimpa moraju biti SIVE ili RGBA formata.Kobna greÅ¡ka pri obradi datoteke sa prelivom „%s“: datoteka je neispravna.Kobna greÅ¡ka pri obradi datoteke sa prelivom „%s“: nije GIMP-ova datoteka sa prelivima.Kobna greÅ¡ka u datoteci palete „%s“: nedostaje magiÄno zaglavlje.Kobna greÅ¡ka u datoteci palete „%s“: nedostaje magiÄno zaglavlje. -Treba li ovu datoteku prevesti sa DOS-a?Kobna greÅ¡ka u datoteci palete „%s“: greÅ¡ka pri Äitanju %d. reda.Kobna greÅ¡ka pri obradi datoteke sa mustrom „%s“: ne mogu da uÄitam %d bajtova: %sKobna greÅ¡ka pri obradi datoteke sa mustrom „%s“: nepoznato izdanje odseÄaka %d.Kobna greÅ¡ka pri obradi datoteke sa mustrom „%s“: nepodržana dubina mustre %d. -GIMP mustre moraju biti SIVI ili RGB.Ume_kÅ¡ano...UmekÅ¡aj kanalUmekÅ¡aj izborOlakÅ¡aj iviceUmekÅ¡aj izbor zaDatotekaProzorÄe za otvaranje _datotekaOperacije sa datotekomVrsta datotekeDatoteka postojiDatoteka je odseÄenaPopuni kanalNeprovidnost: Tip popune %sPopuni sliÄne bojePopuni providne oblastiPopuni sve izabranoPopuni bojom pozadinePopuni bojom _pozadinePopuni tekućom bojom ÄetkePopuni _mustromPopuni mustromPopuni providnošćuPopuni belom bojomPopuni _tekućom bojom ÄetkePopuni bojom _pozadinePopuni sa prelivom bojePopuni bojom ili mustromPopunjeno_FilteriKonaÄni, spojeni sloj treba da bude:Pronalaženje nastavljajućih oblastiPronalaženje sliÄnih bojaUklopi sliku prema prozoruUklopi sliku u prozorUklopi sliku prema prozoruPo meri prozoraUtvrÄ‘ena razmeraUtvrÄ‘ena veliÄinaUkloni (spoji u jedan) sve slojeve.OkreniOkreni kanalOkreni slojOkreni putanjuOkreni tekstualni slojVrsta izvrtanja %sIzvrni prema _horizontali:Izvrni prema _vertikali:Obrni slikuIzvrni sloj ili izborObrćem...Okrećem...Plutajući izborPlutajući izborPlutajući slojPlutajući izbor -(%s)Plutajući izbor prebaci u slojPlutajući izbor u slojPlutajući izboriFlojd-Å tajnberg (normalno)Flojd-Å tajnberg (smanjeno oticanje boja)FokusDirektorijumiDirektorijumiDirektorijumi za fontoveKorisniÄko suÄelje pismaFont:PismaMeni fontovaZa propisnu GIMP instalaciju, direktorijum pod imenom „%s“ mora biti napravljen.Podstakni automatsko naglaÅ¡avanjeBoja ÄetkeBoje Äetke i pozadine. Crni i beli kvadrati ponovo postavljaju boje. Strelice meÄ‘usobno zamenjuju boje. Dupli klik otvara prozor za odabir boje.Boja ÄetkeBoja Äetke podeÅ¡ena na:Boja Äetke: %d, %d, %dUnapred (tradicionalno)I_z putanjeSlobodan izborSlobodan izborSlobodnom rukomIz _temeIz okruženja (trenutno %d x %d tpi)Sa leva na desnoSa desna na levoIz izboraNa osnovu temeNe_jasan izborPreko _celog ekranaSlobodan izborGIMPGimp proÅ¡irenjaPoruka GimpaGIMP podeÅ¡avanje performansiGIMP dodaciGIMP se podižeGIMP urednik tekstaGIMP savet danaKorisniÄka instalacija GimpaGimp XCF slikaGIMP nije mogao da pokrene grafiÄku masku. -Proverite da li su ispravna podeÅ¡avanja ekranskog prikaza.PretraživaÄ Gimpove pomoćiGIMP nije valjano instaliran za trenutnog korisnika. -Instalacija za korisnika je preskoÄena jer je korišćena „--no-interface“ zastavica. -Da bi obavili instalaciju za korisnika, pokrenite GIMP bez „--no-interface“ zastavice.Gimp koristi ograniÄenu koliÄinu memorije za skladiÅ¡tenje podataka o slikama, tzv. „ostavu za deliće“. Podesite njenu veliÄinu kako bi stala u memoriju. Mislite i na memoriju potrebnu za ostale procese na sistemu.GIMP koristi dodatnu gtkrc datoteku tako da možete podesiti da izgleda drugaÄije od ostalih GTK programa.Gimp izdanjeGIMP će upozoriti korisnika ako pokuÅ¡a da napravi sliku koja bi uzela viÅ¡e memorije od veliÅ¡ine koja je odreÄ‘ena ovde.GamaOpÅ¡teUopÅ¡teno se odnosi samo na 8-bitne prikaze, ovo podeÅ¡ava minimalni borj sistemskih boja odreÄ‘enih za GIMP.Sastavi najbolju paletuUtvrdi rezoluciju monitoraGigantskoGimprc procedure_Stakleni efektiPrelivUrednik za preliveMeni ureÄ‘ivaÄa prelivaDirektorijumi sa prelivimaBoje krajnje leve taÄke prelivnog segmentaBoja krajnje desne taÄke prelivnog segmentaKOrisniÄko suÄelje prelivaPreliv:PreliviMeni za preliveZrnasto izvlaÄenjeZrnasto spajanjeSivaSivi tonoviZelenaZelena:MrežaRazmak voÄ‘icaProÅ¡iri kanalPovećaj izborPovećaj izbor zaVoÄ‘icePrijanjanje uz voÄ‘ice i mrežuProcedure voÄ‘icaHSVHSV (%0.3f, %0.3f, %0.3f)HSV (suprotno smeru kazaljke na satu)HSV (u smeru kazaljke na satu)HTML zapis:_Visina:Koji ÄitaÄ _pomoći koristiti:Rukovodi položajem: %0.6fTvrda ivicaJako svetloTvrdoćaTvrdoća:VisinaVisina:PomoćRazgledaÄ pomoćiSistem za pomoćRazgledaÄ pomoći se ne pokrećeRazgledaÄ pomoći nije naÄ‘enPomoćne procedureHeks:NaglaÅ¡enoOznaka vrste prozora za _prilepljene prozore:Oznaka vrste prozora za _alatke:NaglaÅ¡avanjeNagoveÅ¡tavanje menja granice pisma da bi dalo lepa slova male veliÄine_HistogramHistogramRazmera histogramaIstorijatVodoravnoVodoravni pomeraj prve linije mreže; ovo može biti i negativan broj.Vodoravni razmak linija mreže.Koliko naziva datoteka skoro otvaranih slika će biti u Datoteka meniju.TipNijansa-zasićenostTip-zasićenost rade samo na slojevima u RGB bojama.Nijansa-_zasićenostNij.:Ogromno_Ikone i tekst_SlikaU_vezi putanju...I_nterpolacija:I_nterval:IkonaIkona i opisIkona i tekstAko je dostupno, nagoveÅ¡tavanje pisma se koristi, ali možda ćete radije uvekkoristiti automatski nagoveÅ¡tajUkoliko je ukljuÄeno, alat za premeÅ¡tanje menja aktivni sloj ili putanju kada se bira sloj ili putanja. Ovo je bilo podrazumevano ponaÅ¡anje u starijim izdanjima.Ukoliko ne saÄuvate sliku, izmene uÄinjene u poslednjih %s će biti izgubljene.Ukoliko sada zatvorite Gimp, ove izmene će biti izgubljene.Neispravan naziv promenljive u datoteci okruženja %s: %sSlikaSlika + voÄ‘iceObrada slikaInformacije o sliciMeni slikeVeliÄina slikeFormat statusne linije slikeÅ abloni slikaSliÄice sa pregledomFormat naslova slike i statusne linijeFormat naslova slikeIzgled prozora sa slikomProzori za slikeSlika ne sadrži nijedan vidljivi slojDatoteka slikeMaska slikeRezolucija slike je izvan opsega, koristim podrazumevanu rezoluciju.VeliÄina slikeIzvor slikeVrsta slikeSlikeMeni za slikeOpcije uvozaUvezi paletuUvezi putanjeUvezi putanju iz SVG-aUvezi novu paletuUvezi paletuUvezi putanjeUvezena putanjaMasti_loIz_vrniInvertuj maskuRastućeUvuci:UvlaÄenje prvog redaIndeks:IndeksiranaIndeksirane bojePrebacivanje indeksirane bojeSlojevi indeksiranih boja se uvek uvećavaju bez interpolacije. Izabrana vrsta interpolacije će uticati jedino na kanale i maske.Prozor sa informacijamaPoÄetna _razmera:Inicijalizuj masku sloja na:Pokrećem dodatkePokrećem dodatak: „%s“ -MastiloUgraÄ‘ena slikaUlazni upravljaÄiUlazni ureÄ‘ajiUlazni nivoiUbaci vezuNapravi liÄnu mapu boja; može biti korisno kod 8-bitnih (256 boja) prikaza.NeuspeÅ¡na instalacija. Pozovite sistem administratora.UspeÅ¡na instalacija. Kliknite na „Nastavi“ za dalji rad.Brzo ažuriranje_Pametne makazeIntenzitet: %0.3f Neprovidnost: %0.3fSuÄeljeInterna GIMP proceduraInterne procedureInterpolacija:PresekPresek sa tekućim izboromPreseci (niÅ¡ani)Preseci (taÄke)Neispravan UTF-8Neispravni UTF-8 podaci u datoteci „%s“Neispravna UTF-8 niska u XCF datoteciNeispravna UTF-8 niska u datoteci sa Äetkama „%s“.Neispravna UTF-8 niska u datoteci sa prelivima „%s“Neispravna UTF-8 niska u datoteci palete „%s“Neispravna UTF-8 niska u datoteci sa mustrom „%s“.Neispravan slovni deo u URINeispravna preÄica.Neispravna Å¡irina ili visina. Oboje moraju biti pozitivni.InvertujInvertuj kanalObrni izborObrtanje boja ne radi kod indeksiranih slojeva.Obrni izborDa li je to ono Å¡to želite?ÄŒini se da ste ranije koristili Gimp 2.0.Svojstva predmetaVidljivost predmetaPoravnaj:Zadrži providnostDrži iznadÄŒuvaj razmeru %sÄŒuvaj razmeru %sÄŒuvaj visinu %sZadrži providnostÄŒuvaj Å¡irinu %sStrelica nadoleStrelica nadole (Alt)Strelica nadole (Shift + Control + Alt)Strelica nadole (Control)Strelica nadole (Shift + Alt)Strelica nadole (Shift + Control + Alt)Strelica nadole (Shift + Control)Strelica nadole (Shift)Strelica levoStrelica levo (Alt)Strelica levo (Shift + Control + Alt)Strelica levo (Control)Strelica levo (Shift + Alt)Strelica levo (Shift + Control + Alt)Strelica levo (Shift + Control)Strelica levo (Shift)Strelica desnoStrelica desno (Alt)Strelica desno (Shift + Control + Alt)Strelica desno (Control)Strelica desno (Shift + Alt)Strelica desno (Shift + Control + Alt)Strelica desno (Shift + Control)Strelica desno (Shift)Strelica nagoreStrelica nagore (Alt)Strelica nagore (Shift + Control + Alt)Strelica nagore (Control)Strelica nagore (Shift + Alt)Strelica nagore (Shift + Control + Alt)Strelica nagore (Shift + Control)Strelica nagore (Shift)KljuÄne preÄice mogu se dinamiÄki podesiti u GIMPu. Datoteka menurc je skup vaÅ¡ih podeÅ¡avanja, pa se može saÄuvati za sledeću sesiju. Možete menjati ovu datoteku po želji, ali je mnogo lakÅ¡e podesiti preÄice iz GIMPa. Brisanje ove datoteke će vratiti u upotrebu podrazmevane preÄice.TastaturaPreÄice sa tastatureLNDBoja _leve krajnje taÄke...VodoravnoVelikoVeliko (256x256)Veći preglediPoslednja greÅ¡kaSlojSloj „%s“ nema alfa kanal. Sloj je postavljen iznad njega.Svojstva slojaVeliÄina _granica sloja...Tip popunjavanja slojaMaska sloja u izborIzaberi slojVeliÄina sloja_Režim slojaNaziv sloja:Sloj se ne može spustiti niže.Sloj se ne može podići viÅ¡e.Sloj je već na dnu.Sloj je već na vrhu.IzjednaÄi veliÄinu sloja i slikeSloj na _dnoSloj na _veliÄinu slikeSloj na _vrh_Alfa kanal slojaSlojeviMeni slojevaOpcije za povezivanje slojevaBoja krajnje leve taÄkePoravnato ulevoDužinaDa li GIMP treba da prilikom podizanja pokuÅ¡a da oporavi uÄita poslednju snimljenu sesiju.NivoiNe mogu se prilagoditi nivoi indeksiranih slojeva.Boja svetlih poljaSamo svetliLinijaProred:Å irina linije:_Stil linije:Stil linija korišćen za mrežu.LinijskiVezan predmetUÄitajUÄitaj krivuljeUÄitaj nivoeUÄitaj boju _desne taÄke izProÄitaj podeÅ¡avanja krivulja iz datotekeProÄitaj podeÅ¡avanja nivoa iz datotekeUÄitaj tekst iz datotekeUÄitavam pregled ...Mesto:LogaritamskoDuge crticeTražim datoteke sa podacimaSpusti kanalSpusti kanal na dnoSpusti kanal na _dnoSpusti slojSpusti sloj na dnoSpusti putanjuSpusti putanju na dnoSpusti putanju na _dnoSpusti kanalSpusti kanal na dnoSpusti slojSpusti sloj na dnoSpusti putanjuSpusti putanju na dnoU_većaj_GlavniPrebaci na _ekran...Ma_paMagentaMagenta:Uvećaj_UÄini providnimRukovanje uÄitavajućim modulimaBrzina _marÅ¡irajućih mrava:Neprovidnost maske:Maskiraj _izabrane oblastiMaskiraj _neizabrane oblastiMatrica:Najveća dubina:Najveća veliÄina _datoteka za pravljenje sliÄica:Najveća veliÄina _nove slike:Najveća razlika u bojiNajveći broj _poniÅ¡tavanja koraka:ZnaÄaj:MerenjeMeri rastojanje i ugloveMeri rastojanja i ugloveIzmerite lenjire i unesite njihove dužine:Medijana:SrednjeSrednje crticeSpoji sa slojem _ispodSpoji sa slojem niže.Spoji slojeveSastavi paleteSpoji vidljive slojeveSpoji vidljive putanjeSpoji _vidljive slojeve...Spoji _vidljive slojeve...Spoji _vidljive putanjeSpoji slojeveSastavi paleteSpoji vektoreProcedure za obaveÅ¡tenjaPoruka ponovljena puta: %d.Poruka ponovljena samo jednom.Poruka se preusmeravaju na izlaz za greÅ¡ke.Srednji tonoviPrenesi podeÅ¡avanja korisnikaNajmanji broj _poniÅ¡tavanja koraka:RaznoUgaonoRežimRežim:Izmeni izabranu bojuIzmeni nivoe izabranog raspona bojaIzmeni sve bojeIzmeni proredDirektorijumi za modulePretraživaÄ modulaPutanja do modulaModuliKurzori miÅ¡aToÄkić miÅ¡aPremestiPremesti vezePomeri kanalUkloni plutajući izborPomeri voÄ‘icePremesti voÄ‘icu:Pomeri slojPomeri masku slojaPomeri putanjuPremesti izborPremesti tekstualni slojAlat za premeÅ¡tanjePremesti predmetPremesti slojeve i izborePremesti izborPremesti tekući slojPremesti tekuću putanjuPomeri izabrani filter nanižePomeri izabrani filter naviÅ¡ePrebaci na ekran...Premesti:UmnožiBroj _boja:Na_vigacija_Navigacioni prozorVeliÄina pregleda za _navigaciju:ImeIme:NavigacijaNovi kanalBoja novog kanalaOpcije novog kanalaNova boja sa po_zadineNova boja iz boje _iscrtavanjaNova slikaNovi slojNova PutanjaOpcije za novu putanjuNovi Å¡ablonNova ÄetkaNovi kanalNovi kanal sa prethodnim vrednostimaNovi kanal...Nova boja sa pozadineNova boja iz boje iscrtavanjaNovi prelivNovi uvozNovi slojNovi sloj sa poslednjim vrednostimaNovi sloj...Nova paletaNova putanja sa prethodnim vrednostimaNova putanja...Nova mustraNovi vektoriNijedna Äetka nije dostupna za ovu alatku.Filter nije izabranNema linijskih preliva u „%s“Nije viÅ¡e dostupnoPutanje nisu naÄ‘ene u „%s“Putanje nisu naÄ‘ene u baferuNema dostupnih mustri za ovu operaciju.Nema izboraNema izbora koji bi bio uzet za konturu.Bez umanjenog prikazaNeporavnatoNiÅ¡taNiÅ¡ta (najbrže)NormalnoNormalno (128h128)ObiÄne taÄkeObiÄan prozorNije ispravna datotekaNema dovoljno vidljivih slojeva za spajanje. Mora ih biti najmanje dva.Nema dovoljno vidljivih putanja za spajanje. Mora ih biti najmanje dve.Broj _korišćenih procesora:Broj voÄ‘icaBroj slojeva:_Druga...OfsetOfset KanalPomeraj CrtežaOfset slojOfset maska slojaPomereno za x/_2,y/2Odstupanje:Na diskuNa viÅ¡eprocesorskim maÅ¡inama, ako je GIMP preveden sa opciom --enable-mp ovo odreÄ‘uje koliko procesora će GIMP istovremeno koristiti.Samo u memorijiO_tvori kao sloj...NeprovidnostNeprovidnost:OtvoriOtvori slikuOtvori sliku kao slojOtvori putanjuOtvori tekstualnu datoteku (UTF-8)Otvori _putanju...Otvori sko_raÅ¡njeProzorÄe za otvaranje slikaOtvori prozor za odabir ÄetkeOtvori prozor za odabir pismaOtvori prozor za odabir prelivaOtvori prozorÄe za izbor paleteOtvori prozor za odabir mustreOtvori izabrani unosOtvaranje „%s“ neuspelo: - -%sOtvaranje „%s“ nije uspelo: %sOpcije: -Polazno H:Polazno Y:Izvorna Å¡irina:Druga (%s) ...OkvirnoIzlazni nivoiPreklapanjePDB pozivna greÅ¡ka za proceduru „%s“: -Argument #%d je pogreÅ¡nog tipa (oÄekivan %s, dobijen %s)PDB pozvna greÅ¡ka: -procedura „%s“ nije pronaÄ‘ena_MustrePtici u Hadžićima možda zafali -pevuÅ¡enje najboljeg Ä‘aÄkog orkestra.CrtajOpcije za crtanje zajedniÄke za alateProcedure alatki za crtanjeAlatka za crtanje:Režim _crtanjaSlikaj nejasnim potezima ÄetkeSlikaj oÅ¡tre iviceSlikaj koristeći mustru ili deo slikeÄŒetkaPal_etePaletaUrednik za paleteMeni ureÄ‘ivaÄa paleteDirektorijumi sa paletamaKorisniÄko suÄelje palete_Naziv palete:_Datoteka paletePaleteMeni za paleteProcedure parazitaParazitiObraÄ‘ujem „%s“ -UbaciUbac_i bafer uUbaci bafer kao _novoU_baci putanjuUba_ci uUbaci u _novuUbaci izabrani baferUbaci izabrani bafer kao novu slikuUbaci izabrani bafer u izborPreneseni slojPutanjaSvojstva putanjeNaziv putanje:Alatka za _putanjePutanja se ne može spustiti niže.Putanje se ne može podići viÅ¡e.Putanja je već na dnu.Putanja je već na vrhu.Putanja u iz_borPutanja u izborPutanja u izbor -%s Dodaj -%s Izbaci -%s PresekPutanja u izborPutanjeMeni putanjaMustraDirektorijumi sa mustramaKorisniÄko suÄelje mustrePopunjavanje mustromIzvor mustreMustreMeni mustriO_lovkaOlovkaPostotak Å¡irine ÄetkeProcenat:LiÄni GIMP direktorijumPerspektivaPodaci o perspektivnoj transformacijiPerspektiva...Izaberite režim %sIzaberi sloj ili voÄ‘icuIzaberi putanjuIzaberi crnu taÄkuIzaberi boju sa slikeIzaberi sivu taÄkuSamo izborIzaberi belu taÄkuVeliÄina u taÄkama:Vrednosti taÄakaTaÄakaTaÄaka:Molim saÄekajte dok vaÅ¡ liÄni GIMP direktorijum ne bude napravljen...SaÄekajte...DodatakOkruženje za dodatkeDirektorijumi sa dodacimaDodatak nije mogao da otvori slikuDodatak nije mogao da saÄuva slikuDodatak je otkazao: „%s“ -(%s) - -Umirući dodatak je možda poremetio interno stanje GIMPa. Možda bi trebalo da saÄuvate slike i ponovo pokrenete GIMP da budete sigurni da je sve u redu.Dodatak je prijavio USPEH ali nije vratio slikuDodaciDodaciDodaci i proÅ¡irenja su spoljni programi koje pokreće GIMP i koji obezbeÄ‘uju dodatnu funkcionalnost. Ovi programi se pretražuju po pokretanju i informacije o njihovim funkcionalnostima i nastanku se skladiÅ¡te u ovoj datoteci. Ova datoteku bi trebalo da Äita samo GIMP i ne treba je menjati.PoligonskiPortretPoložaj: %0.6fPozicioniranoSmanji broj bojaSmanjivanje broja boja_Nivo smanjenja broja boja:Smanjivanje boja ne radi za indeksirane slojeve.PostavkeO_Äuvaj osvetljenostOsetljivost pritiskaPritisak:Pregled:Pregled je zastareoPregled:PreglediVeliÄina Å¡tampeVeliÄina Å¡tampe:Problemi pri obradi parazitnog teksta za sloj %s: -%s - -Neke osobine teksta su možda pogreÅ¡ne. Osim ako želite da izmenite sloj teksta, ne treba da brinete o ovome.Baza proceduraProceduralna bazaNapredakPseudo ColorNamena:KvalitetUpitnikIspitivanje novih dodatakaIspitujem dodatak: „%s“ -Brzo uÄitavanjeBrza maskaSvojstva brze maskeMeni brze maskeBrzo snimanjeBrzaMaskaZatvoriti Gimp?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB Bojeprazno-RGBRGBA (%0.3f, %0.3f, %0.3f, %0.3f)DNLPonovo prikaži „%s“_Vrati opcije alataPo_novo postavi kanalVrati _bojuVrati _rasponBoja _desne krajnje taÄke...KružnoPolupreÄnik:Podigni kanalPodigni kanal na vrhPodigni kanal na _vrhPodigni slojPodigni sloj na vrhPodigni putanjuPodigni putanju na vrhPodigni putanju na _vrhPodigni kanalPodigni kanal na vrhPodigni slojPodigni sloj na vrhPodigni putanjuPodigni putanju na vrhPodigni prikaze ove slikePodigni prozor ako je već otvorenBrzinaBrzina:Ponovo prikaži poslednjiPonovo centriraj srednje taÄke u izboruPonovo centriraj srednju taÄku segmentaPonovo postavi ruÄke u segmentuPonovo postavi ruÄke u izboruPrei_menuj saÄuvane opcijePo_novi „%s“Po_vrati...UÄitavam paletu „%s“: nedostaje ZELENA komponenta u %d. redu.UÄitavam datoteku palete „%s“: neispravan broj kolona u %d. redu. Koristim podrazumevanu vrednost.UÄitavam paletu „%s“: nedostaje PLAVA komponenta u %d. redu.UÄitavam paletu „%s“: nedostaje CRVENA komponenta u %d. redu.UÄitavam paletu „%s“: RGB vrednost izvan opsega u %d. redu.Zaista oÄistiti istorijat poniÅ¡tavanja ove slike?Promena preÄice znaÄi i njeno uklanjanje iz „%s“.Ponovo _napravi pregledPonovo napravi pregledIzaberi kvadratCrvenaCrvena:PonoviSvedi sliku na odreÄ‘en broj bojaSvedi sliku na dve boje koristeći tolerancijuOsveži ÄetkeOsveži preliveOsveži paleteOsveži mustreRegistrovanoOsvežite _tekuću temuPonovo uÄitaj _sve pregledePonovo uÄitaj sve pregledeZapamti tekuću alatku, mustru, boju i Äetku u GIMP sesijama.Udaljena slikaUkloni kanalUkloni suv_iÅ¡ne unoseUkloni plutajući izborSkloni voÄ‘iceUkloni slojSkloni parazita sa slikeSkloni parazita sa predmetaUkloni putanjuUkloni u_nosUkloni suviÅ¡ne unoseUkloni plutajući izborOdstrani parazitaUkloni izabrani unosIzbaci izabrani filter iz liste aktivnih filtera.NeuspeÅ¡no uklanjanje preÄice.Promeni naziv kanalaPromeni naziv slojaPromeni naziv putanjiPreimenujte saÄuvane opcije alataPromeni naziv tekstualnog slojaPreimenuj predmetIscrtaj poteÑ•Ponovo poreÄ‘aj kanalePonovo poreÄ‘aj slojPonovo poreÄ‘aj putanjePonovi poslednjiPonavljanje:Zameni tekući izborDuplirajDupliraj prelivni segmentDupliraj prelivni izborDupliraj segmentDupliraj izborPremesti kanalPremesti slojPremesti vektorePonovo pregledaj spisak fontovaVrati opcije alataVrati opcije _svih alata...Vrati sve filtereVrati opcije _svih filtera...Vrati opcije svih alataPodesi izabrani filter na podrazumevane vrednostiVrati podrazumevane vrednostiVrati redosled i vidljivost alatkiPromeni veliÄinuPromeni veliÄinu kanalaPromeni veliÄinu slikePromeni veliÄinu slojaPromeni veliÄinu putanjePromeni veliÄinu tekstualnog slojaPromeni veliÄinu slikePromeni veliÄinu predmetaVeliÄina prozora u skladu sa ra_zmeromVeliÄina prozora u skladu sa promenom _veliÄine slikeMenjam veliÄinu...Promena rezolucijeRezolucija:PotroÅ¡nja resursaPodeÅ¡avanje resursaIzvuci opcije iz...UÄitaj saÄuvane preÄice sa tastature pri svakom pokretanju GIMP-a.OgraniÄi ureÄ‘ivanje na poligoneObrniPovratiVrati „%s“ na „%s“?Vrati sliku u prvobitni oblikVraćanje u prvobitan ovlik neuspelo. Nijedna datoteka nije povezana sa ovom slikom.Povratak na „%s“ neuspeo: - -%sBoja krajnje desne taÄkePoravnato udesnoRotiranjeRotiraj 90 stepeni _suprotno smeru kazaljkeRotiraj 90 stepeni _u smeru kazaljkeRotiraj kanalRotiraj slojRotiraj putanjuRotiraj tekstualni slojRotiraj _180 stepeniRotiraj slikuRotiraj sloj ili izborRotiram...Podaci o rotacijiZaobljenoOs_trižiPrikaži mr_ežuU_manji..._Zameni bojeS_aÄuvaj desnu boju uProseÄni uzorakSpojeni uzorakZasić.:ZasićenostSaÄuvajSaÄuvaj „%s“ kao POV-RaySaÄuvaj krivuljeSaÄuvaj dnevnik greÅ¡aka u datoteku...SaÄuvaj slikuSaÄuvaj _sada podeÅ¡avanja ulaznih ureÄ‘ajaSaÄuvaj preÄice sa tastature s_adaSaÄuvaj nivoeSaÄuvaj opcije alata_Sada saÄuvaj položaje prozora_SaÄuvaj sve greÅ¡ke u datoteku...SaÄuvaj _izbor u datoteku...SaÄuvaj _kao...SaÄuvaj _umnožak...SaÄuvaj kopiju slikeSaÄuvaj sve greÅ¡keSaÄuvaj kao _POV-Ray...SaÄuvaj kao _mustru...SaÄuvaj preÄice sa tastature kada se GIMP zatvori.SaÄuvaj podeÅ¡avanja krivulja u datotekuSaÄuvaj stanje ureÄ‘ajaSaÄuvaj preliv kao POV-RaySaÄuvaj podeÅ¡avanja nivoa u datotekuSaÄuvaj opcije u...SaÄuvaj izborSaÄuvaj izbor u kanalSaÄuvaj izmene slike „%s“ pre zatvaranja?SaÄuvaj položaj i veliÄinu glavnih prozora kad se GIMP zatvori.SaÄuvaj u _kanalSaÄuvane opcijeÄŒuvam „%s“ -ÄŒuvanje „%s“ nije uspelo: - -%sSaÄuvaj slikeTesterasti talasSkalabilna SVG slika (*.svg)VeliÄinaPovećaj ili Smanji kanalPovećaj ili smanji slikuPovećaj ili smanji slojPromeni veliÄinu putanjePovećaj ili smanji tekstualni slojRazmera slikeRazmera predmetaOdnos X uvećanja:Odnos Y uvećanja:Razmera:Promeni veliÄinu sloja ili izboraUvećanjePodaci o promeni veliÄineRazmera slike na izabranu veliÄinu će zahtevati viÅ¡e memorije nego Å¡to je sada podeÅ¡eno kao „Najveća veliÄina slike“ u prozorÄetu Postavki (trenutno %s).Razmera na izabranu veliÄinu će potpuno izbaciti neke slojeve iz slike.Menjam veliÄinu...MakazeEkranDirektorijumi sa Skript-Fu skriptamaSkripteKlizaj nanižeKlizaj naniže (Alt)Klizaj naniže (Control + Alt)Klizaj naniže (Control)Klizaj naniže (Shift + Alt)Klizaj naniže (Shift + Control + Alt)Klizaj naniže (Shift + Control)Klizaj naniže (Shift)Klizaj levoKlizaj levo (Alt)Klizaj levo (Control + Alt)Klizaj levo (Control)Klizaj levo (Shift + Alt)Klizaj levo (Shift + Control + Alt)Klizaj levo (Shift + Control)Klizaj levo (Shift)Klizaj desnoKlizaj desno (Alt)Klizaj desno (Control + Alt)Klizaj desno (Control)Klizaj desno (Shift + Alt)Klizaj desno (Shift + Control + Alt)Klizaj desno (Shift + Control)Klizaj desno (Shift)Klizaj naviÅ¡eKlizaj naviÅ¡e (Alt)Klizaj naviÅ¡e (Control + Alt)Klizaj naviÅ¡e (Control)Klizaj naviÅ¡e (Shift + Alt)Klizaj naviÅ¡e (Shift + Control + Alt)Klizaj naviÅ¡e (Shift + Control)Klizaj naviÅ¡e (Shift)IzaberiIzaberi sveIzaberi direktorijume sa ÄetkamaBiranje po bojiIzaberi bojuIzaberite dogaÄ‘aj za dejstvo upravljaÄaIzaberi direktorijume za okruženjeIzaberite vrstu _datoteke (%s)Izaberi direktorijume sa fontovimaIzaberi direktorijume sa prelivimaIzaberi direktorijume za modulePoniÅ¡ti izborIzaberi direktorijume sa paletamaIzaberi direktorijume sa mustramaIzaberi direktorijume sa dodacimaIzaberite primarnu boju za izmenuIzaberi raspon za izmenuIzaberi direktorijume sa Skript-Fu skriptamaIzaberi izvorIzaberi direktorijum razmeneIzaberi privremeni direktorijumIzaberite temuIzaberi direktorijume za temeIzaberi razmeruIzaberi sloj na dnuIzaberi p_roizvoljnu boju...Izaberi _sledeći slojIzaberi _prethodni slojIzaberi sloj na vrhuIzaberi sveIzaberi po bojiIzaberi povezane oblastiIzaberi proizvoljnu boju za popunu platnaIzaberi eliptiÄnu oblastIzaberi rukom-crtane oblastiPoniÅ¡ti izborIzaberi datoteku sa paletomIzaberi pravougaone oblastiIzaberi oblasti po bojiIzaberi oblike sa slikeIzaberi direktorijum za razmenuIzaberite broj duplikata -izabranog segmenta.Izaberite broj duplikata -izbora.Izaberite broj istovetnih delova -na koje želite da podelite izabrane segmente.Izaberite broj istovetnih delova -na koje želite da podelite izabrani segment.Izaberi providne oblastiIzaberite ÄitaÄ vebaIzb_or u putanjuIzborUreÄ‘ivaÄ izboraMeni ureÄ‘ivaÄa izboraIzabrana MaskaProcedure alatke za izborMaska izboraIzbor u putanju (_napredno)Izbor u putanjuIzbor:Izbor: DODAJIzbor: NAPRAVI PRESEKIzbor: ZAMENIIzbor: ODUZMIOsetljivostPodesi Boju Podloge PlatnaPodesi boju kanalaPodesi neprovidnost kanalaPostavi mapu bojaPostavi boju popunjavanja platnaPodesi veliÄinu platnaPostavi rezoluciju slike za Å¡tampuUÄini predmet iskljuÄivo vezanimUÄini predmet iskljuÄivo vidljivimPodesi graniÄnu veliÄinu slojaPostavi ime iz _tekstaPodesi neprovidnostPostavi boju pozadinePostavi boju ÄetkePostavi vezani predmetPostavi režim slojaPostavi providnost slojaPostavi oÄuvanje providnostiPodeÅ¡ava gornju granicu koliÄine memorije koja može biti korišćena za Äuvanje operacija za poniÅ¡tavanje po slici. Nezavisno od ovog podeÅ¡avanja, može se opozvati najviÅ¡e onoliko operacija koliko je podeÅ¡eno.Odrećuje ÄitaÄ koji će koristiti sistem za pomoć.PodeÅ¡ava boju podloge platna ako je omogućen režim za biranje boje podloge.Postavlja spoljaÅ¡nji ÄitaÄ veba koji da koristim. Ovo može biti potpuna putanja ili ime izvrÅ¡nog programa koji ću tražiti u korisnikovoj putanji (PATH). Ukoliko naredba sadrži „%s“, ono će biti zamenjeno adresom, inaÄe će adresa biti dodata na naredbu razdvojena razmakom.Postavlja nivo interpolacije kod uvećanja i drugih transformacija.PodeÅ¡ava naÄin prikazivanja transparencije u slikama.PodeÅ¡ava minimalni broj operacija koje mogu biti poniÅ¡tene. ViÅ¡e nivoa za poniÅ¡tavanje su dostupni sve dok se ne dostigne granica za broj poniÅ¡tavanja.Postavlja režim pokazivaÄa koji će Gimp koristiti.Postavlja vodoravnu rezoluciju monitora, kao broj taÄaka po inÄu. Ako je postavljeno na 0, od Iks servera se zahtevaju podaci i o vodoravnoj i o uspravnoj rezoluciji.Postavlja uspravnu rezoluciju monitora, kao broj taÄaka po inÄu. Ako je postavljeno na 0, od Iks servera se zahtevaju podaci i o vodoravnoj i o uspravnoj rezoluciji.Postavlja oblik taÄaka pokazivaÄa koji će Gimp koristiti.PodeÅ¡ava podrazumevanu veliÄinu pregleda za slojeve i kanale u novim prozorÄićima.PodeÅ¡ava veliÄinu „šahovske table“ koja prikazuje transparenciju.PodeÅ¡ava veliÄinu navigacionog prikaza dostupnog u donjem desnom uglu prozora slike.Postavlja veliÄinu pregleda u istorijatu operacija.Postavlja veliÄinu umanjenog prikaza koji se prikazuje u prozorÄetu za otvaranje. Znajte da Gimp ne može da Äuva umanjene prikaze ako su pregledi slojeva iskljuÄeni.PodeÅ¡ava lokaciju privremene datoteke. Gimp koristi na delićima zasnovanu Å¡emu za rukovanje memorijom. Privremena datoteka se koristi za brzu i laku razmenu delića na disk i nazad. Budite svesni da privremena datoteka može lako postati vrlo velika ako se GIMP koristi sa velikim slikama. TakoÄ‘e, stvari mogu postati užasno spore ako je privremena datoteka napravljena u direktorijumu koji je montiran preko mreže. Iz tih razloga, poželjno je da privremenu datoteku smestite u „/tmp“.PodeÅ¡ava direktorijum za privremene datoteke. Datoteke će se pojavljivati tu tokom rada u GIMP-u. Većina datoteka će nestati kada se GIMP zatvori, ali neke datoteke će verovatno ostati, pa je najbolje da ovo ne bude direktorijum koji delite sa drugim korisnicima.OdreÄ‘uje tekst koji će se pojaviti u statusnoj liniji prozora sa slikom.OdreÄ‘uje tekst koji će se pojaviti u naslovu prozora sa slikom.OdreÄ‘uje da li GIMP treba da pravi preglede slojeva i kanala. Pregledi uprozorima za slojeve i kanale su fini za imati, ali mogu da uspore stvari kad se radi sa velikim slikama.Vrsta senkeSenkeOblikOblik:Oblikovano (ugaono)Oblikovano (pomoću rupica)Oblikovano (sferiÄno)IzoÅ¡trenoIzoÅ¡tri kanalIzoÅ¡tri izborOstrižiVeliÄina X strižanja:VeliÄina Y strižanja:Ostriži sloj ili izborInformacija o odsecanjuOdsecam...Kratke crticePreÄicaPreÄicu „%s“ već koristi „%s“ iz grupe „%s“.Prikaži masku slojaPrikaži _lenjirePrikaži _statusnu linijuPrikaži _klizaÄePokaži _voÄ‘icePokaži _granice slojaPrikaži glavni _meniPrikaži _izborPokaži _konturu ÄetkePokaži _boju i boju pozadinePokaži _voÄ‘icePokaži grani_ce slojaPrikaži _glavni meniPrikaži _lenjirePokaži aktivnu _Äetku, mustru i prelivPokaži aktivnu _slikuPrikaži _mrežuPokaži dugmiće za pomo_ćPokaži veliÄinu slikePrikaži interaktivne ivicePokaži iskorišćenost memorijePod_vuci preÄice u meniju (pristupni tasteri)Prikaži kurzor _alatke za crtanjePrikaži _izborPrikaži _statusnu linijuPrikaži _klizaÄePokaži savet prisledećem podizanju GIMPaPokaži savete pri po_dizanjuPokaži _savete za alatkePokaži razmeru (procentualno)Pokaži razmeruSuzi kanalSmanji izborSmanji _kružnoSmanji od granice slikeSmanji izbor zaSmanji kružnoVeliÄinaVeliÄina u memoriji:VeliÄina _umanjenih prikaza:VeliÄina:PreskaÄem „%s“: neispravno izdanje protokola GIMP-a.MaloManji preglediUmekÅ¡avanjeUblaži iviceMrljaUmrljaj sliku_Prema voÄ‘icamaPre_ma voÄ‘icamaSlabo svetloÄŒistoIzvorRazmakRazmak:Retke taÄkeNaroÄita datotekaOdreÄ‘uje kako će biti iscrtana oblast oko slike.Brzina marÅ¡irajućih mrava u granicama izabrane povrÅ¡ine. Ova vrednost je u milisekundama (manje vremena pokazuje brže marÅ¡iranje).Brzina:Sferno (_opadajuća)Sferno (_rastuća)Spirala (obrnuto od kazaljke na satu)Spirala (u smeru kazaljke na satu)PodeliPodeli prelivni segment istovetnoPodeli prelivni segment istovetnoPodeli segment istovetnoPodeli segment istovetno...Podeli segment na srediniPodeli segment istovetnoPodeli segmente istovetno...Podeli segmente na polovinamaKvadrat_Stanje i tekstRedosledStandardnoPokrećem proÅ¡irenjaPokrećem proÅ¡irenje: „%s“ -Stanje:StatiÄno u bojiStatiÄno sivoStanje i opisStanje i tekstStandardna devijacija:TaÄkastoIB isporuÄeneIsc_rtaj putanjuIs_crtaj putanju...Iscrtaj kanalNacrtaj putanjuUzmi izbor kao konturuIscrtaj linijuIscrtaj putanjuIscrtaj putanju prema prethodnim vrednostimaIscrtaj putanju...Iscrtaj konturu izbora prema prethodnim vrednostimaIscrtaj konturu izbora...Iscrtaj pomoću alata za crtanjeStil udubljenja oko teksta u liniji sa stanjemIzbaciIzbaci iz tekućeg izboraSuperodsecanjeDirektorijum razmene:_AlatiTe_kstAlatka za _tekstPrivremeni direktorijum:Å abloniMeni sa Å¡ablonimaPrivremena proceduraOkonÄavam dodatak: „%s“ -TekstBoja slovaUreÄ‘ivaÄ tekstaSloj za tekstTekst izmenjenTekstualne procedureGimpRazgledaÄ pomoći Gimpa verovatno nedostaje u vaÅ¡oj instalaciji.Aktivna Äetka. -Kliknite da otvorite prozor za Äetke.Aktivni preliv. -Klknite da otvorite prozor za prelive.Aktivna slika. -Kliknite da otvorite prozorÄe za slike.Aktivna mustra. -Kliknite da otvorite prozor za mustre.Boja pozadine mreže; koristi se jedino za dvotaÄkasti stil linija.Paketni režim je iskljuÄen poÅ¡to nije dostupan interpreter „%s“.PodeÅ¡eno kodiranje imena datoteka se ne može pretvoriti u UTF-8: %s - -Proverite vrednost promenljive okruženja G_FILENAME_ENCODING.Ime datoteke „%s“ se ne može pretvoriti u ispravnu adresu: - -%sBoja linija mreže.Datoteka gimprc služi za Äuvanje liÄnih podeÅ¡avanja koje se tiÄu GIMPovog podrazumevanog ponaÅ¡anja. Putanje pretrage za Äetke, palete, prelive, mustre, dodatke i module se takoÄ‘e mogu podesiti ovde.Vodoravna rezolucija slike.Sloj koji ste izabrali je tekstualni, ali je menjan pomoću drugih alata. Izmena sloja tekstualnim alatom će odbaciti ove izmene. - -Možete menjati ovaj sloj ili napraviti novi tekstualni sloj na osnovu njegovih tekstualnih osobina.Ime direktorijuma koji sadrži podeÅ¡avanja korisnika Gimpa se ne može pretvoriti u UTF-8: %s - -Najverovatnije vaÅ¡ sistem datoteka Äuva datoteke sa kodiranjem koje nije UTF-8, a niste to naznaÄili. Postavite promenljivu okruženja G_FILENAME_ENCODING.Datoteka sessionrc se koristi za smeÅ¡tanje podatka o tome koji prozor je bio otvoren kada ste poslednji put zatvorili GIMP. Možete podesiti GIMP da ponovo otvori ove prozore.Umanjeni prikaz u prozorÄetu za otvaranje će biti uvek prikazan ako je datoteka manja od ovde postavljene veliÄine.Ostava za deliće osigurava da GIMP ne izgubi delić izmeÄ‘u memorije i diska. Postavljanje viÅ¡e vrednosti znaÄi da će GIMP koristiti manju privremenu datoteku, ali će viÅ¡e koristiti memoriju. Obrnuto, manja vrednost znaÄi da će GIMP viÅ¡e koristiti privremenu datoteku a manje memoriju.Jedinica koordinatnog sistema kada se ne koristi režim taÄka-za-taÄku.Datoteka unitrc se koristi za Äuvanje baze korisniÄkih jedinica. Možete definisati dodatne jedinice i koristiti ih isto kao i ugraÄ‘ene inÄe, milimetre, Å¡tamparske taÄke... Ova datoteka se prepisuje svaki put kad napustite GIMP.Uspravna rezolucija slike.Oznaka vrste prozora koja se postavlja za prilepljene prozore. Ovo može uticati na to kako vaÅ¡ upravljaÄ prozorima iscrtava i postavlja prilepljene prozore.Oznaka vrste prozora koja se postavlja za alatke. Ovo može uticati na to kako vaÅ¡ upravljaÄ prozorima iscrtava i postavlja prozor sa alatkama.TemaDirektorijumi za temeTemeIma %d slika sa nesaÄuvanim izmenama:Nema dovoljno vidljivih slojeva za spajanje naniže.Uvek postoji „razmena“ izmeÄ‘u zauzetosti memorije i brzine. U većini sluÄajeva, GIMP bira brzinu nasuprot memoriji. Ipak, ako je koliÄina memorije veliki problem, pokuÅ¡ajte da ukljuÄite ovo podeÅ¡avanje.Nema aktivnog sloja ili kanala sa kojeg da umnoži.Nema aktivnog sloja ili kanala sa kojeg da iseÄe.Nema aktivnog sloja ili kanala za crtanjeNema aktivnog sloja ili kanala za iscrtavanje.Postoji jedna slika sa nesaÄuvanim izmenama:Trebalo bi da postoji datoteka „%s“. Molim, proverite vaÅ¡u instalaciju.DoÅ¡lo je do greÅ¡ke pri obradi vaÅ¡e datoteke „%s“. Koristiću podrazumevane vrednosti. Rezerva vaÅ¡ih podeÅ¡avanja je saÄinjena u „%s“.Ova datoteka Äuva skup standardnih veliÄina koje služe kao Å¡abloni za slike.Ovaj direktorijum sadrži Å¡ablone slika.Ovaj direktorijum sadrži teme instalirane od strane korisnika.Ovaj direktorijum Äuva fontove koje želite da vidite samo u GIMP-u. GIMP proverava ovaj direktorijum uz sistemske direktorijume GIMP-a kada traži fontove. Ovo koristite jedino ukoliko želite da imate fontove samo za GIMP, inaÄe stavite stvari u opÅ¡ti direktorijum za fontove.Ovaj direktorijum Äuva datoteke sa parametrima za alatku Krivine.Ovaj direktorijum služi za smeÅ¡tanje parametarskih datoteka alatke za nivoe.Ovaj direktorijum Äuva opcije alatki.Ovaj direktorijum Äuva skripte koje je napravio i instalirao korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP skriptama kada pretražuje skripte.Ovaj direktorijum Äuva privremene, druge nesistemske ili DLL module koje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP modulima kada traži module koje treba uÄitati.Ovaj direktorijum Äuva privremene, druge nesistemske ili dopune okruženja za dodatkekoje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP direktorijumu okruženja kada traži datoteke sa izmenama okruženja dodataka.Ovaj direktorijum Äuva privremene, druge nesistemske ili dodatke koje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP dodacima kada pretražuje instalirane dodatke.Ovaj direktorijum Äuva Äetke koje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP Äetkama kada pretražuje instalirane Äetke.Ovaj direktorijum Äuva prelive koje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP prelivima kada pretražuje instalirane prelive.Ovaj direktorijum Äuva palete koje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP paletama kada pretražuje instalirane palete.Ovaj direktorijum Äuva mustre koje je napravio korisnik. GIMP proverava ovaj direktorijum kao dodatak sistemskim GIMP odseÄcima kada pretražuje instalirane mustre.Ovaj direktorijum se koristi kao privremena ostava bafera za poniÅ¡tavanje, kao bi se smanjilo korišćenje memorije. Ako je GIMP nepropisno ubijen, daototeke tipa: gimp<#>.<#> mogu ostati u njemu. Ove datoteke su beskorisne i mogu se slobodno izbrisati.Ovaj direktorijum će sadržati viÅ¡e bitnih datoteka. Kliknite na datoteku ili direktorijum u stablu da dobijete viÅ¡e podataka o izabranoj stavci.Ovo je rastojanje u taÄkama na kojem se koristi prijanjanje uz voÄ‘ice i mrežu.Ovaj program je dat sa nadom da će biti koristan, ali BEZ IKAKVE GARANCIJE; Äak i bez nagoveÅ¡tene garancije PRODAVCA ili PODESNOSTI ZA ODREÄENU UPOTREBU. Pogledati GNU OpÅ¡tu Javnu Licencu za viÅ¡e detalja.Ovaj program je slobodan softver; možete ga deliti i/ili menjati u skladu sa uslovima GNU OpÅ¡te Javne Licence objavljenom od strane Zadužbine za slobodni softver (Free Software Foundation); ili verzijom 2 Licence, ili (po vaÅ¡em izboru) bilo koje novije verzije.Ovo polje za unos teksta je ograniÄeno na %d slova.Ova alatka nema opcije.OsetljivostOsetljivost ne radi za indeksirane slojeve.Osetljivost:Umanjeni prikaz %d od %dVeliÄina _ostave za deliće:VeliÄina ostave za deliće:Iskreni:MaloNaslov i status_U putanjuI_graÄkeUkljuÄi-iskljuÄi brzu maskuUkljuÄi-iskljuÄi _brzu maskuPreviÅ¡e poruka o greÅ¡kama!Opcije AlataMeni za opcije alataUkljuÄi/iskljuÅ¡i alatku %s_Opcije alataIkona alataIkona alata sa niÅ¡anomPaleta _alatkiAlatnicaMeni za skup alatkiAlatiMeni alatkiAlatke kao Å¡to su nejasno-oznaÄavanje i popunjavanje bojom traže celine prema algoritmu popunjavanja osnove. Osnova poÄinje od prve izabrane taÄke i nastavlja dalje u svim pravcima dok razlika boje nove taÄke u odnosu na prvu ne bude veća od izabranog praga. Ova vrednost predstavlja podrazumevani prag.Pr_ovidnostPrenesi providnost u maskuTransformacijaTransformiÅ¡i kanalTransformiÅ¡i pravacTransformiÅ¡i slojTransformiÅ¡i putanjuTransformiÅ¡i tekstualni slojProcedure alatke za transformacijuTransformiÅ¡i slojTransformiÅ¡i putanjuTransformiÅ¡i izborTransformiÅ¡iPostupci transformacijaTransformiÅ¡em...PrevodiliProvidnost_Vrsta providnosti:Trouglasti talasTrue ColorVrstaVrsta %sUnesite novu preÄicuUnesite novu preÄicu, ili pristinite Backspace da obriÅ¡eteNe mogu da dodam masku jer sloj već ima jednu.Ne mogu da iseÄem ili kopiram zbog toga Å¡to su izabrane oblasti prazne.Ne mogu da otvorim probnu datoteku za razmenu. Da izbegnete gubitak podataka, proverite putanju i ovlašćenja za direktorijum razmene koji je odreÄ‘en meÄ‘u vaÅ¡im postavkama (trenutno „%s“).Ne mogu da otvorim datoteku razmene. Gimpu je ponestalo memorije a ne može da koristi datoteku razmene. Neki delovi vaÅ¡ih slika mogu biti oÅ¡tećeni. PokuÅ¡ajte da saÄuvate vaÅ¡ rad pod drugim imenima, ponovo pokrenite Gimp, i proverite putanju direktorijuma razmene u vaÅ¡im postavkama.Ne mogu da pokrenem opoziv za %s. Moguće je da je odgovarajući dodatak pukao.NeodrećenoPoniÅ¡tiIstorijat poniÅ¡tavanjaIstorijat _poniÅ¡tavanjaJediniceNepoznatoNepoznat tip datotekeNepoznata vrsta datoteke palete: -%sIzbaci iz memorijeNeimenovanoBez naslovaPodrazumevano koristi „taÄka za taÄku“Koristi _dinamiÄke preÄice sa tastatureKoristite ÄitaÄ _veba kao zamenuKoristi sve vidljive slojeve prilikom smaljivanja izboraKoristi crno-belu (1-bitnu) paletuKoristi boju iz prelivaKoristi proizvoljnu paletuKoristi prozor sa podacimaKoristi paletu optimizovanu za vebDnevnik korisniÄke instalacijeKorisniÄko suÄeljePomoćni prozorVrednostVrednost:Režim vektoraVerziju %s ste dobili zahvaljujućiVerzija:UspravnoUspravni pomeraj prve linije mreže; ovo može biti i negativan broj.Uspravni razmak linija mreže.Vrlo velikoVrlo maloPregledPregled u vidu _mrežePregled u vidu _listeU vidu mrežeU vidu listeVizuelna klasa:Vizuelna dubina:Upozorenje: Nisam uspeo da uÄitam podatke: - -%sUpozorenje: Nisam uspeo da saÄuvam podatke: - -%sÄŒitaÄ vebaÄŒitaÄ vebaDobrodoÅ¡li u -korisniÄku instalaciju za Gimp %d.%dKada je ukljuÄeno, prozorÄe samo prati sliku na kojoj radite.Kada je ukljuÄeno, Gimp će prikazivati preÄice u menijima.Kada je ukljuÄeno, sve alatke za crtanje će pokazivati umanjeni prikaz konture trenutne ÄetkeKada je ukljuÄeno, slika će postati aktivna kada njen prozor bude fokusiran. Ovo je korisno za upravljaÄe prozorima koji koristi „klik za fokus“.Kada je ukljuÄeno, u prozorÄićima se prikazuje dugme za dobijanje odgovarajuće stranice pomoći. Bez ovog dugmeta, do pomoći se može doći pritiskom na F1. Kada je ukljuÄeno, meniji mogu biti pocepani.Kada je ukljuÄeno, pritiskanjem na F1 otvarate ÄitaÄ za pomoć.Kada je ukljuÄeno, GIMP neće Äuvati ako slika nije menjana od poslednjeg otvaranja.Kada je ukljuÄeno, GIMP će koristiti razliÄiti info prozor po pogledu na sliku.Kada je ukljuÄeno, X server će na svaki pokret biti upitan za trenutni položaj miÅ¡a, radije nego da se oslanjamo na nagoveÅ¡taj položaja. Ovo znaÄi da će crtanje velikim Äetkama biti preciznije, ali moguće i sporije. Da stvar bude Äudnija, na nekim X serverima ukljuÄivanje ove opcije će rezultirati bržim crtanjem.Kada je ukljuÄeno, kurzor će biti prikazan preko slike pri upotrebi alata za crtanje.Kada je ukljuÄeno, mreža je podrazumevano vidljiva. Ovo se može menjati preko naredbe „Pregled->Prikaži mrežu“.Kada je ukljuÄeno, voÄ‘ice su podrazumevano vidljive. Ovo se može menjati preko naredbe „Pregled->Prikaži voÄ‘ice“.Kada je ukljuÄeno, prozor sa slikom će automatski promeniti sopstvenu veliÄinu, kada se zumira slika.Kada je ukljuÄeno, prozor sa slikom će automatski promeniti sopstvenu veliÄinu kadgod se fiziÄka veliÄina slike promeni.Kada je ukljuÄeno, granice sloja se podrazumevano prikazuju. Ovo se može menjati preko naredbe „Pregled->Prikaži granice sloja“.Kada je ukljuÄeno, linija sa menijima podrazumevano je vidljiva. Ovo se može menjati preko „Pregled->Prikaži liniju sa menijima“ naredbe.Kada je ukljuÄeno, lenjiri su podrazumevano vidljivi. Ovo se može menjati preko „Pregled->Prikaži lenjire“ naredbe.Kada je ukljuÄeno, linije sa klizaÄem su podrazumevano vidljive. Ovo se takoÄ‘e može menjati preko „Pregled->Prikaži linije sa klizaÄem“ naredbe.Kada je ukljuÄeno, izabrana Äetka će se koristiti u svim alatima.Kada je ukljuÄeno, izabrano prelivanje će se koristiti u svim alatima.Kada je ukljuÄeno, izabrana mustra će se koristiti u svim alatima.Kada je ukljuÄeno, izbor je podrazumevano vidljiv. Ovo se može menjati preko „Pregled->Prikaži izbor“ naredbe.Kada je ukljuÄeno, statusna linija je podrazumevano vidljiva. Ovo se takoÄ‘e može menjati preko „Pregled->Prikaži statusnu liniju“ naredbe.Kada je ukljuÄeno, ovo će osigurati da svaka taÄka na slici bude mapirana na taÄku na ekranu.Kada je ukljuÄeno, ovo osigurava da će cela slika biti vidljiva kada se otvori datoteka, u suprotnom će biti prikazano sa razmerom 1:1.Kada je ukljuÄeno, možete u letu menjati preÄice sa tastature pritiskom na kombinaciju tastera kada je izabrana stavka menija.BelaRavnoteža bele boje radi samo za slojeve u RGB bojama.Å irinaÅ irina:Upravljanje prozorimaOznake za upravljanje prozorimaPoložaji prozoraUpisujem „%s“ -XXCF greÅ¡ka: susreo sam se sa nepodržanom XCF datotekom verzije %dXCF upozorenje: verzija 0 XCF formata datoteke -nije ispravno Äuvala indeksirane mape boja. -Menjam mapu sivih boja.YŽutaŽuta:PokuÅ¡avate da napravite sliku veliÄine %s.Ovde možete prikaÄiti pristaniÅ¡ne prozore.Trebalo bi da ste dobili i primerak GNU OpÅ¡te Javne Licence zajedno sa ovim programom; ako niste, piÅ¡ite na adresu: Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Moraćete ponovo da pokrenete GIMP da bi sledeće promene uzele maha:VaÅ¡a podeÅ¡avanja ulaznih ureÄ‘aj će biti vraćena na uobiÄajena kada naredni put pokrenete Gimp.VaÅ¡e preÄice sa tastature će biti vraćene na uobiÄajene kada naredni put pokrenete Gimp.VaÅ¡a podeÅ¡avanja prozora će biti vraćena na uobiÄajena kada naredni put pokrenete Gimp.PonaÅ¡anje razmere i uvećanjaRazmera 1:1Uvećaj sveUvećaj prikazUmanji prikazRazmeraRazmera:Uvećaj _sveU_većajU_manjiUvećaj sveRazmera prikaza: %d:1Uvećaj sliku kada se promeni veliÄina prozoraUvećajUvećaj i umanjiUmanjiUvećanje:[ Osnovna Slika ]_O programuPr_euzmi_Dodaj boju sa pozadine_Dodaj boju iscrtavanjaDodaj _list_Dodaj u izbor_Napredne opcije_Sprej_Sve_Usidri slojU_mekÅ¡avanje ivica_Proizvoljna rotacija...U_metniÄki_Odnos_Auto_BBoja _pozadineBoja _pozadine:_Crna (potpuno providna)_Funkcija stapanja za segmentFunkcije stapanja za izbor_Mrljanje_Osvetljenje:_ÄŒetka_ÄŒetke_ÄŒetke, mustre i prelivi_Popuni bojom_Bafer_Po bojiIzbor _prema boji_C_Stil kapice:_Kanali_OÄisti greÅ¡keO_Äisti istorijat poniÅ¡tavanja_Kloniraj_Zatvori_Zatvori list_OblaciAlati za _boje_Boje_Podesi boju i neprovidnost..._Kontekst_Smisaona pomoć_UmnožiUmnoži im_enovano..._Napravi sliku prema Å¡ablonu..._Iseci i promeni veliÄinuIse_ci sliku_Krivulja_Krivulje...Boja _tamnih poljaPodra_zumevane boje_ObriÅ¡i ÄetkuOb_riÅ¡i bafer_ObriÅ¡i kanalO_briÅ¡i bojuO_briÅ¡i preliv...O_briÅ¡i slikuO_briÅ¡i sloj_ObriÅ¡i paletu_ObriÅ¡i putanju_ObriÅ¡i mustru..._Ukloni saÄuvane opcijeObriÅ¡i segmentObriÅ¡i izborO_briÅ¡i Å¡ablon_OsiromaÅ¡iOd_voji listStanje _ureÄ‘aja_ProzorÄići_Zanemari podatke o tekstu_Distorzije_TaÄka za taÄku_Dupliraj_UreÄ‘ivanjeIz_meni Äetku...Izmeni _svojstva kanala...Iz_meni boju..._Uredi preliv...Iz_meni svojstva sloja..._Uredi paletu..._Izmeni svojstva putanje..._Uredi mustru..._Izmeni Å¡ablon...Izaberi _elipsuU_kljuÄi preglede za slojeve i kanale_Nenormalno veliko_IzjednaÄi_BrisaÄ_Boja Äetke_Datoteka_Popuni bojom:U_klopi sliku u prozor_Izravnaj slikuIz_vrniOkreni segmentOkreni izbor_Pplutajuće_Font_Fontovi_Boja Äetke:_Slobodan izbor_G_Jednostavno_GigantskoPre_liv_Prelivi_Sivi tonovi_Umnožak sloja u sivim tonovimaU_većaj..._VoÄ‘ice_Tvrdoća_Pomoć_Vodoravno:_Nijansa:O_gromno_Ikona_Ikona:_SlikaSli_ke_Uvoz_Uvezi paletu..._Indeksirana..._Prozor sa podacima_Presek sa izborom_ObrniStil s_poja:_VelikoS_lojS_lojevi_Slojevi, kanali i putanje_Leva krajnja taÄkaDesna krajnja taÄka _levog suseda_Nivoi...Boja _svetlih poljaS_vetlosni efekti_Svetlina:Stil _linije:_Linijski_VezanoUÄitaj boju _leve taÄke iz_Spusti kanal_Spusti sloj_Spusti putanju_M_RuÄno_Mapa_Maska_Maska u izborNaj_veći broj boja:Mere_nje_Srednje_Sastavi palete..._Spoji uvežene putanjePre_nesi podeÅ¡avanja korisnika iz Gimpa 2.0_Razne stvariGranica _ugaonog spoja:_RežimPretraživaÄ _modulaPre_mesti_Ime:_Priroda_Nova Äetka_Novi kanal_Novi kanal..._Nova stavka..._Novi preliv_Novi sloj_Novi sloj..._Nova paleta_Nova Putanja_Nova putanja..._Nova mustra_Novi Å¡ablon..._Novi pogled_Nova..._Sledeći savet_Å um_NiÅ¡ta_Pomeraj..._Neprovidnost_Otvori sliku_Otvori...Boja _popunjavanjaAlatke za _crtanje_ÄŒetka_PaletaU_baciU_baci baferUb_aci imenovano..._Putanje_Mustra_Perspektiva_Smanji broj boja..._Postavke_PrikazVe_liÄina pregleda_Prethodni savet_VeliÄina Å¡tampe...Oso_bine_Aktivna brza maska_IzaÄ‘i_R_RGBPolup_reÄnik_Podigni kanal_Podigni sloj_Podigni putanjuPo_digni poglede_Podigni ili otvori slikuPro_meni preÄicu_Pravougaoni izborPo_noviPo_novi %sO_sveži ÄetkeOs_veži preliveOs_veži paleteO_sveži mustreU_kloni nekorišćene boje iz konaÄne paleteIs_crtavanjePre_snimiDupliraj segment...Dupliraj izbor...O_bnovi spisak fontovaVrati _redosled i vidljivost_Vrati saÄuvana podeÅ¡avanja ulaznih ureÄ‘aja na podrazumevane vrednostiVrati saÄuvane preÄice sa tastature na uobiÄajene_Vrati saÄuvane položaje prozora na podrazumevane vrednosti_Izvuci opcije izDesna _krajnja taÄkeLeva krajnja taÄka _desnog suseda_Rotiraj_Zasićenost:_SaÄuvaj_SaÄuvaj levu boju uSaÄuvaj opcije _uSaÄuvaj podeÅ¡avanja ulaznih ureÄ‘aja pri _izlazu_SaÄuvaj preÄice sa tastature pri izlaskuSaÄuvaj položaje prozora pri _izlasku_VeliÄinaPovećaj _ili smanji sliku..._VeliÄina sloja...U_većaj uvežene putanje da se uklope u sliku_Izaberi_IzborUreÄ‘ivaÄ _izboraAlatke za _izbor_OblikI_zoÅ¡trenoPrikaži _izbor na slici_Prikaži u paleti alatki_Sinusoida_Malo_RazmrljajRa_stojanje prijanjanja:_Iscrtaj konturu izbora_Iscrtaj konturu izbora..._Izbaci iz izboraStil _listova_Å ablon:_Å abloni_Tekst_Osetljivost...Si_ćuÅ¡noSavet _dana_Alat_Alati_Prenesi alfa kanal sloja_TransformacijaAlati za _transformacije_Opozovi_Opozovi %s_Uspravno:P_regled_Vidljivo_VebKoji ÄitaÄ _veba koristiti:_Bela (neprovidna)Ravnoteža _bele_Å irina:_Idi u krug_X rezolucija:_X:P_roÅ¡irenja_Y_Y rezolucija:_Y:U_većanjeU_većanje (%s)bojeumnožaktpioÄekivan odgovor tipa „da“ ili „ne“ za logiÄki izraz %s, dobijen „ %s“fatalna greÅ¡ka pri razdvajanjusivi tonoviprazno-sivi tonoviinÄinÄiindeksiranprazno-indeksiranoneispravna UTF-8 reÄneispravna vrednost „%ld“ za vrstu ikoneneisprabna vrednost „%ld“ za izraz %sneispravna vrednost „%s“ za vrstu ikoneneispravna vrednost „%s“ za %smilimetarmilimetraminutn/dodstocicerocicerataÄkataÄakataÄaka/%ataÄaka/%sÅ¡tamparska taÄkaÅ¡tamparskih taÄakasekundatips-locale:srBranko Ivanović -Danilo Å egan - -Prevod.org — prevod na srpski jezikvrednost za izraz %s nije ispravna UTF-8 reÄprilikom obrade izraza „%s“: %s \ No newline at end of file diff -uraN gimp-2.2.8/po/sv.gmo gimp-2.2.9/po/sv.gmo --- gimp-2.2.8/po/sv.gmo 2005-02-12 14:38:00.000000000 +0100 +++ gimp-2.2.9/po/sv.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,464 +0,0 @@ -Þ•S ´Js L•ÇÇ&/ÇkVÇGÂÇ9 -ÈGDÈAŒÈNÎÈiÉ<‡ÉkÄÉ@0Ê2qÊ;¤ÊPàÊO1Ë2Ë9´Ë-îË9Ì;VÌ7’Ì ÊÌÔÌ -ÛÌ æÌ -ðÌ -ûÌ ÍÍ"Í -1Í<Í?ÍOÍ -gÍrÍz͂͞͸ÍÎÍ0ÕÍÎÎ*Î3Î;Î -RÎ]ÎdÎlÎtÎ ƒÎ ‘Î Î -«Î -¶Î ÁÎ ÎÎÚÎ êÎ öÎÏ Ï ÏK Ï…lÏ.òÏ1!Ð!SÐuЇЎÐФÐÀÐÏÐæÐêÐýÐ -Ñ Ñ&Ñ <Ñ -HÑSÑhÑ {Ñ…Ñ”Ñ -ѨѷÑÊÑâÑôÑÒÒ*+Ò6VÒÒ Ò½ÒÕÒÞÒûÒÓ/ÓCÓWÓvÓ‹ÓŸÓ#³Ó×ÓñÓ - ÔÔ)Ô1ÔCÔLÔlÔ€Ô ˆÔ ’Ô ŸÔ©Ô¹Ô1ÎÕ3Ö4ÖHÖNÖaÖ‹hÖ -ôÖÿÖ×/×I×P× _× -l×w׈ךת×A»×Jý×HØ<[Ø ˜Ø ¦Ø´ØÄØÝØõØÙ ÙÙ ,Ù8ÙNÙaÙjÙÙ“Ù ¤Ù²ÙÊÙ -ÓÙÞÙïÙÚÚ&5Ú$\ÚÚˆÚ ŽÚ ˜Ú¦Ú­ÚÆÚÍÚÓÚíÚ"õÚ Û$Û)Û/Û4Û -DÛOÛ^ÛoÛƒÛ7—ÛÏÛ ÕÛ âÛðÛùÛÜ Ü Ü!Ü )Ü6Ü;Ü @ÜmMÜ»Ü ÀÜ ÎÜ ÜÜæÜïÜ ÝÝ*Ý 1ÝC>Ý7‚Ý=ºÝ@øÝ69ÞdpÞÕÞóÞ3 ß=ß<Qß#Žß!²ßÔßñß àà -à7à@àXànà†àžà°àÂàßàüàá,0á]áwáá ’á á Àá áá!ïáâ,âBâWâlâuâ ~â Œâ™â­â´â»â ÁâÏâââ ñâþâ.ã5Cã5yã7¯ã8çã) ä,Jäwä“ä«ä2Èä ûäå7åOSåA£å%åå& æ42æ1gæ#™æ ½æËæ çæ óæýæç&ç,ç5ç -DçOçWç ]çkç çŽç§ç¹ç0Ëç üç èè è &è 3è@è[èxè+è­èÀèÓèÜè ìèúè é é -é é*é$Jéoé‚é‘é¦é Ãéäéþéê/ê?ê"Têwêê œêªêºê ÃêÏê×êYëbësë {ëˆë£ë¼ëÜë ñë"ÿë""ìEì^ìgì -yì„ì -£ì)®ìØì,òìí!9í#[í#í!£í%Åíëí. -î9î @îLî]îqî„î—î#­î-Ñîÿî%ï;ïQïgï‚ï—ï¯ï ´ïÂï -Üï -çï -òïýïðð+ð 0ð >ðKð[ðkð~ððœð £ð±ð -ÄðÏð-Öðñ ññ(ñ?ñ CñMñRñXñiñ|ññ¡ñ´ñÄñ×ñîñ ÿñ ò ò 'ò 5òBòIòOò%Uò!{ò òªò½ò&Õòüò óó-ó@ó Ró`óoó óŒó ›ó¨ó ¸óÅó×ó æóòóôô4ôQôcôrô -‹ô -–ô-¡ô ÏôÛô âôðôøô õ õ -õ õ-õ@õSõlõtõ‡õ›õ ®õ¼õÖõ ßõéõ ùõö -ö:(ö?cö8£ö Üöèöñö÷ ÷÷ --÷8÷>÷ -T÷ _÷ m÷ y÷ -†÷ ‘÷ ÷ -§÷ ²÷¾÷ Ç÷Ô÷è÷ ÷÷>ø Døeøuø‡øšøªø¼øËøÝøýø ù ù*ù 9ùFùKùcùvùù£ù¹ù ÉùÓùæùûùú ,ú -:úEú -]úhú €úŽú ¤ú±ú ÆúÓúãúþú û û -'û2û*Cûnûwû!‰û«û.Âûñû ü#ü":ü]üzü&™üÀü Öüâüöü,ÿü#,ýPýWý fýtý‡ý'¡ýÉý'æýþ+þAþ]þFwþT¾þÿÿ ÿ-ÿCÿ Vÿwÿ Žÿ˜ÿ -¯ÿ ºÿÈÿ åÿ$6H NZc lxŽ(—$Àå=ë6)<`?AÝ79Wc‘9õB/=rf°>CVJšgå MYi {‰ž£µ Å ÏÛ í ú *AVi}£µÌÜð 'DKTsŽ¥¹Í áï -   -- 8B R`s -„« ³¿Ï ßí ! = Q (j “ ™    ¨ µ ½ à  -É OÔ $ - -6 -”A -Ö -ç -   --  8  D P  Y .e ” § º  -É  Ô  â  î û      4  A N _ s Š u™  Ì! Åî c´ z% ¦r®!:QZl{„”©&º'á   ) 8 FR Wagns …’¡³¹Ñâæ2AJ` w -Œ •Ÿ¦® ³ ÀÌçþ -3JHR -› ¦°À -ÈHÓ!B>…1”ÆÙÞ ãð÷ -" ' 3`?™ C:1~0°á ç ô - -)@Pa€“ «(¹ -â -íHø -A L -Yd kw† •¢¸Í Ü é÷ü  %CJ R`€y ú5Kg ky ‹ ™ ¦K´364kz" ³½Õé ø$'B W e †(§+Ð)ü*&!Qs/…µ¼Ë*Ü'5]m}† -˜£³ÉÙëú+> Uv‘¢«ºÓæ ý 9  J T d ~ ’ !ª Ì è ú  !!%!6!K!j!ƒ!-’!À"É"Ù"ì"ð" -###*# :#F#3L#€#‘#©#¹# Ñ# -Þ# é# õ#$ $?$_$x$Œ$$ ²$À$×$ Þ$ê$ÿ$%"%@*%k%-r% % ²%¿% Ä% Ò% Þ%ë% & && !& -&9&P&o&Ž&¢& ¶& À& Ì&Ø& ï&ý&' .':' -P'['p' †'”' ¬'¸' -Î'Ù'î'÷'ÿ'(((((0(B(Z( p(~(“(ª( -²(#½(á(ú()))/)7)T)+q))¥) ¬) º) -Æ) Ñ) Þ)ì)**.*G* \*i* x*†*™*´*"Ë*î*÷* + -+;+A+F+L+$b+‡+™+­+¼+ Ë+×+ ß+ í+ù+ , , ,+, -C, N, -[,f, v,€,, Ÿ, ©,³,Ì,Û,ò,-&-B-T-[-d- w-ƒ-–-°-µ- -»- Æ-Ò-ä-ø- . . (.2.;. L. Y. c.o.Œ.›.­. ¿. -Ì. ×.á. ü. // // ;/ G/,S/€/!“/µ/É/à/)ý/ '040 L0 Z0f0k0z00 ’0 ž0¬0B¿0A1D1b1w1 ‰1“1š1©1 ¹1Æ1Ø1í1õ1„ý1‚2‘2£2«2´2 -¹2Ä2 Ø2æ2ý2 33.3N3"m3!3!²3Ô3ì34 4 '4 14;4K4Z4 b4p4Vx4+Ï4 û4(5.5"45W5 m5 y5…5Ÿ5%·5 -Ý5 è5ò5ú5 66 --686 G6U6 ^6l6 €6 Š6˜6ž6±6 Æ6 Ò6 Þ6ì6&7,-7 Z7g7l7 -|7 -‡7’7¯7Í7ì7884)8^8p8 -v88‰8 -™8 ¤8±8À8 É8×8ß8æ8 99 $9!09R9 a9o9 …9‘9¢9½9 Í9×9è9 ú9::;:?R:’:¡:©:½:Í:ê:¡;4©;Þ;ç;-ï; ='=0= -@= K=#U=y=-Œ= º=Æ=Û= ð=ú=>>"> -+> 6>¥B>è>ü>? ?&?/?7?=?S? -k? -v??—? -§? ²? ¼?Ê?Î?è? ù? @! @/@ 3@A@U@ d@ q@~@™@ @ ¨@¶@Ë@ á@í@ -A AA 0A>A SA_A -rA}AA«AÈAÍA ÓA!àAB! B#BBfB |B -‰B9”BUÎB=$C<bC=ŸCÝC"ãC?DFDXD iDuDyD~D(ƒD,¬DÙDéDûD E -E(E>ESEJgE ²E¿EÎEçE F FF6F PF \FjF‚FœF¬F;ÆFGG +G 8GDG^G pG |GŠG šG ¨G µGÁGÉG çGñG H)H;HOHbHsH†H—HªHÅH×HìH+I/IGIgInI }I ŠI —I£I µI ÂIÎI#åI JJ 'J3JHJ_J6wJ®JËJÓJÚJ ïJ7üJ4KRKgKwK~K•K«K ºK ÇKÓKåK ùKL $L0LELKL -RL -]LhL pL}L’L ¡L¯L -µLÀLÅL ÚLæL -ýLM(M EMQMcM~MšM µMÁMÑMêMúMN4#NXNuNˆN¡N¾NÑNàN.úNE)OoO €O ŽO›O ³O ÁOÏOêO ðO þO -P -P!P 2P ->PIPXP gPtP‘P™Pœ­PNJQ -™Q¤Q­Q´QÆQ ÎQÚQìQRR#8R\RzR ŽRšR¬RÈRÞR#øRS:S NS[SnS‹S¢S$½SâST T T0TJT^T!vT˜T´TÆT -ÍTØTíT ýT -U)UDU[UoU‡U U©UÀU×UîU V$V =VKV^V qV~V“V¥VºVÒVåVüV -WW)W"CWfW€W šW¦WºWÕWíWX=X6TXS‹XJßX*YCYVY iYsY„YšY©YÃYÒYðY ZZZ2ZEZ YZeZ~ZZ ¤Z±ZÑZçZ[[7[O[ c[o[„[™[©[¸[Ê[´Ý[)’\N¼\ ]K^=k^ƒ©^*-_¤X_¢ý_3 `TÔ`?)a`ia2Êaýa¯b/d42e/geº—e Rf^ffflfsf„f•f¨f°fÀfÒfØfëfþfg 0g o -Do Oo \ofouo‰o¤o -©o ´o -Ào ËoÙoéoKòo1>p7pp1¨p5ÚpHqAYqŠ›q;&r!brÁ„r Fsægs Nt¨[u}v*‚vB­wæðw×xöx‚xyûy zz)z5@z¯vz1&{0X{0‰{1º{(ì{C|€Y|SÚ|,.}2[} Ž}A¯~Añ~*3«^í -€ ø€Î‚£Ô‚ªxƒ§#„§Ë„s…˜v†G‡èW‡ï@ˆ20‰c‰ }‰-‡‰ -µ‰À‰Ó‰å‰ö‰ü‰ŠŠŠŠ1ŠDŠ ]ŠjŠ|Š ŒŠ šŠ¤Š½ŠÆŠ ΊÛŠ -áŠ<ìŠ )Œ7Œ NŒXŒjŒ~ŒŽŒŒ²ŒÌŒÜŒëŒÿŒ(8 GTh -xƒˆ‘3¨;Ü;Ž¡TŽöŽFý DN S `nt| Ž¯¶¾Çå‘3‘#R‘v‘Ž‘¡‘±‘Ë‘á‘ð‘ÿ‘’ ’’5’>’FG’Ž’ -®’ -¹’Ä’ É’ ×’ å’ ò’ ÿ’ “!“!=“ _“ k“+w“K£“0ï“Q ”˜r”¢ •$®•5Ó•P –GZ–-¢–OЗj ˜o‹˜eû˜ja™~Ì™pKšo¼šw,›<¤›?á›>!œt`œtÕœ`J‰«5žµž0»žìžòžùž Ÿ Ÿ 1Ÿ?Ÿ6AŸoxŸèŸêŸñŸ4ùŸ#. ÈR G¡%c¡X‰¡Uâ¡O8¢ˆ¢Ÿ¢¨¢±¢¹¢ -¢ Í¢ ٢㢠ì¢ö¢ÿ¢#£5£ =£K£T£Z£i£p£y£Œ£Ÿ£¨£º£ Ì£Ö£ Û£ é£÷£ ¤¤ ¤&¤ )¤3¤F¤a¤ €¤¡¤ §¤´¤»¤Ĥ ã¤ð¤ ø¤¥¥ ¥ "¥ ,¥:¥N¥U¥ -\¥g¥ o¥|¥„¥¤¥ ­¥»¥Á¥Ð¥ï¥ þ¥ -¦ -¦¦/¦ ?¦M¦\¦ l¦z¦ Ž¦ œ¦ª¦ º¦Ǧڦ𦧧 #§ /§;§J§S§d§ ~§ ˆ§ -•§ §¦§µ§ѧà§ò§ ¨¨6¨G¨Y¨ i¨ Š¨ ”¨ž¨ ¦¨°¨ ¶¨¨רæ¨ ì¨ú¨ -©©©© 1©>©A© J© T© -^© -i©t©©–© ž©¨© ®©»©Á©Ç©Í©Ô©Û©ã©ë© þ© -ªª1ª 9ªFªMªTª\ªvª…ª -¥ª°ªê Òª Þªêªòªúª« « ,«8« ;«E«J«P«c«~«‡««¢«¸« Ø« å«ó«ù« ¬¬¬ -¬ )¬6¬ F¬ T¬ -b¬ m¬ {¬ ˆ¬ ’¬ Ÿ¬¬¬ ½¬Ǭ Ϭ٬ଠ-æ¬ñ¬ ú¬­­ ­ +­7­@­ G­U­e­l­ u­ ‚­ ­­ ¦­ ´­­ Ñ­Ý­ð­ö­ù­þ­® ® "® .®;®P® c®p®v®®®£®µ®(Ç®ð®ø®¯¯/¯A¯4[¯1¯/¯ò¯°°8° @°M°S°g°#x° œ°½°Ü°ã°ó°"±&± -.±9±K±\±c±l±‚± “±Ÿ±¦±®±¾±бå± -þ± - ² -²² %²3²9²I²O²V² -v²²’²˜² -¡²¬²²²»²À²Õ²ë²ú² ³³³"³(³+³:³>³ -D³O³V³[³5_³•³ §³±³Á³Ƴͳ Õ³ã³!ø³ ´ ;´\´ -|´ ‡´“´š´ž´¦´«´±´·´ ¾´ È´Ò´Ø´ß´ æ´ô´.µ6µ1Sµ…¶)›¶iŶq/·:¡·JÜ·F'¸Nn¸h½¸@&¹vg¹DÞ¹2#º<Vºe“ºZùº9T»=Ž»6Ì»;¼5?¼9u¼¯¼¸¼ -¿¼ʼ -Ó¼ Þ¼ ê¼÷¼½ ½)½ ,½:½ R½`½i½q½Ž½­½ý<˽¾¾ -+¾6¾<¾ T¾^¾f¾n¾v¾ ~¾ Œ¾ ˜¾ -¦¾ -±¾ ¼¾ ɾÕ¾ å¾ ñ¾ý¾ ¿¿M¿|k¿(è¿&À8ÀUÀkÀsÀ{À„À ¤À²À -ÈÀÓÀéÀþÀÁ !ÁBÁ[Á"sÁ–Á¯ÁÀÁÕÁçÁ÷Á Â,ÂKÂe”Â-¨Â?ÖÂÃ+ÃHÃfÃoÇçûÃÏÃäÃÄÄ,ÄAÄYÄtÄ -Ä›Ä -±Ä¼ÄÒÄÛÄøÄ -Å Å +Å -8ÅCÅ)TÅ,~Æ3«ÆßÆöÆûÆÇŽÇ -©Ç´ÇÍÇâÇûÇ ÈÈÈ(È<ÈQÈjÈC~ÈHÂÈ É2#ÉVÉkÉ€ÉɨÉÃÉ ÒÉßÉäÉÊÊ0ÊKÊ_ÊvÊ‹Ê Ê¸Ê -ÏÊÚÊãÊòÊË&Ë-9Ë'gËË•Ë šË ¤Ë°Ë·Ë ÔË àËìË -Ì%Ì>ÌMÌRÌXÌgÌ…ÌŽÌ  Ì®ÌÀÌ@ÔÌÍÍ -Í:ÍUÍ]Í -eÍpÍ uÍ Í‹Í’Í ˜Íz¥Í Î %Î3Î -BÎ -MÎ XÎyΌ΢ΩÎU¼Î=ÏHPÏH™Ï8âÏcÐОÐ<¾ÐûÐLÑ$aÑ#†ÑªÑÅÑßÑòÑ -Ò Ò Ò6ÒOÒfÒ}ÒŽÒ"¦Ò ÉÒ!êÒ Ó0$Ó!UÓwÓ }Ó -‹Ó–Ó´Ó -ÑÓÜÓ÷ÓÔ(Ô=ÔRÔYÔ aÔ kÔxÔÔ”ÔšÔ ŸÔ«Ô ÂÔ ÐÔÚÔ?ôÔ>4ÕBsÕB¶Õ>ùÕ48Ö(mÖ#–Ö&ºÖ)áÖ= ×#I×#m×+‘׃½×@AØ+‚Ø+®Ø=ÚØ;Ù+TÙ€Ù٭ټÙÎÙëÙÿÙ -ÚÚ'Ú7Ú@Ú FÚRÚfÚuÚ’Ú¢Ú*²ÚÝÚ îÚúÚ Û - ÛÛ'ÛBÛ -`Û-kÛ™Û«Û -½ÛÈÛÝÛ ìÛ öÛ Ü - Ü Ü#Ü)CÜm܃ܕܱÜÉÜåÜ#ÿÜ#Ý9ÝLÝ(dÝݥݺÝÎÝßÝèÝ -÷ÝzÞ }Þ ‡Þ -”ÞŸÞ¯Þ$ÎÞóÞß,ß$<ß$aß†ß -£ß®ßÂß!Ôß -öß*à,à6Fà}à$™à(¾à)çà'á'9áaá3€á´á»áÊáÚáëáüáâ#"â'Fânâ+â«âÆâÜâùâã*ã2ã)Mã wã „ã ’ã(Ÿã ÈãÒã âãìãää$ä3äIäZäiäqä€ä“ä›ä/¢äÒä -×äâäòä åå)å.å4åFåWåmå~åå¢å¶åÉåØåíå ææ!#æEæNæUæ#\æ €æ¡æ±æÆæ<Þæç4çCçRçeçwç†ç –ç£ç ²ç ÀçÎç åçóçèè#è7èUèqèŠèè®è ÍèÛè,äè éé $é1é9é -BéMéRé [éhé}é’é¬é´éÆéÙé ìéøé êêê .ê8ê!Aê@cêL¤ê*ñê ë (ë5ëGëXë aë në{ë€ë ™ë¦ë -µë -Àë ËëÕë -Ýë èëôëì ìì'ì9ìFJì-‘ì¿ìÐìàìöìíí(í;íVíkí €í Œí ™í¦í¯íÆíÚíóí î$î 7îEîZîrîî ¥î³îÆîÝîìî ï!ï9ïIïaïvïï§ï ·ï -Áï -Ìï×ï"æï ðð!)ðKð;eð$¡ðÆð(Ìð&õðñ9ñ+Sññ‘ñ ˜ñ ¥ñ-¯ñ&Ýñò ò -ò#ò2ò'Ròzò&—ò¾òÜò#ùòóI=óQ‡óÙó Ýó çóôóô'(ôPô iôuôô™ô²ôÐôèôùô -õõ2õ 8õDõMõ Võdõ}õ9…õ4¿õôõAûõ<=öBzöB½öE÷:F÷=÷q¿÷@1øJrø@½øjþø>iùI¨ùMòùu@ú ¶ú ÂúÐúâúñúûû û*û1ûBû -Uû`ûrûû™û´ûÊûâûûûü'ü9ü Nü\üvüü¤üÂüÈü.Ðüÿüý0ýDý_ýsý‡ý  ý¬ý½ý Ãý Ïý Ûýçý ÷ýþþ -(þ3þRþ -[þfþyþŒþ›þ³þÑþïþÿ(ÿFÿLÿ Qÿ[ÿ kÿ xÿ‚ÿ ‹ÿG™ÿáÿ óÿ¬ýÿªºÚð   #1 9<E‚¸ -ÈÓ åñ %BUfz‹ ©ˆ·@ãSÎ7t {wˆ n— µ¿ Ñ -ßêÿ-(+V‚ ¡ ­¹ÈØê ïùÿ -.9H [$gŒ¢¦ÀÔè÷ÿ  -4  -? J  S ] c j  q   Œ © Æ ×  Ü è  -! -S) - -} - ˆ -’ -¡ - ª -@¶ -,÷ -<$ a g -v ¤ ·  -¾ É Ø Þ ó       ! o- £ @A 9‚ ,¼ é î  -ý  !- -BM\{‹  ­ Ë×Sà 4 -@KSZct…–±ÈÙêü -  ,9U \fwŽ—&;Pm‡¦ ­»ÍßñP;RDŽÓå$ö '?R am‰š ª ¸Ù)ù-#(Q+z¦Â6Ù *.<k4œÑâòû>]n‚ “Ÿ±Íã#þ"@Te |¸(×"#<K`˜&µ Üý  2Nd#~¢ÀÔ óÿ $(HQVf Ž@” Õãÿ, 5 B NZw“­Çßò 1 7"Ad€‘M™ç/ï -AG V bnˆŸ§¶Æ!â"'> -\ g s —£» ÑÝ õ   1 =  R ^  s €  -— ¢ © À Ç Ï  Ø â ô ! 1!?![!x! €!(Š!³!Ì!â!ù!"""*9"d"l" s"€"“"¥"¶"È"á"ü"#6#P#a#s#‡#œ#¼#$Ú# ÿ# $*$G$O$U$[$b$-{$©$À$ Ô$à$ ï$ý$ %%%-% 4% B%O%i%|% ‘%ž% ¯%½%Î% ß% í%û%&)&?& U&#v&š&°& ¹&Æ& Ö&â&*÷&"''' --'8' A'O'k'~'‘' -™' ¤'®'È' Ð'Ú'ã' ( (( 0( >( -H(S( s( (‹( ª( ·( Å(8Ò( )&!)H)b)|)0›)Ì)Ü)ø) **"*3*:*L*\*m*b€*dã*"H+k+ €+ +—+ ž+ ª+ ¸+Ä+Ô+é+ñ+ú+ˆ,˜,§, °,º, Á,Í, ã,ð,--(-:-T-q--§-Ã-#Û-"ÿ- "./.8.A.P._.d. v.Pƒ..Ô. /7 /E/(K/t/Š/™/©/#Æ/4ê/0 &00070H0 \0i0 „0 -‘0œ0 -¥0°0 Â0 Ì0 -Ù0ä0ú01 (161I1#c1!‡1©1º1 Á1 -Ï1 Ú1è12#2>2Y2p29†2À2Ö2 Þ2è2ñ23 3+3:3 C3P3W3]3 w3…3 -™3*¤3 Ï3 Ý3ë344(4E4 -U4`4o4†4 ˜4 ¤4=±48ï4(5 :5H5\5&v5%5¾Ã5‚6Ÿ6 ¯6(½6æ7î7÷78 8&$8K85a8—8¦8¸8É8Ð8"á899)9:9ªL9÷9 :: (:4:;:D:K: k:Œ: œ:¦: Á: Ï: Ý: ç:ô:ø:; #;-;!5;W;[;k;‹;ž;±;È;æ;î; -õ;<< --<8< O<[<r< -Š<•< -ª<µ< Ê<Ö<í<='=.=6=!H=j="‰=$¬=%Ñ= ÷= >9>TL>8¡>8Ú>G?[?+`?3Œ?À?Ý?ù? @@@+@GH@@¢@¹@Ì@ ß@ë@ A$ANDA -“A žA¬AÆAàA ôABB:B IBWBpBƒB“B=¬B)êBC'C:C,NC{C’C ¦C°CÉCâCüC DD /D9D!UDwD‰DD­D½DÐDçD'E.EGE#bE9†E ÀE)áE FF3FKFdF~F›F³F&ËF9òF,G?G WGdGvGŠG;ªG$æG HHHW\WnW …WW¤WÃWÒWïW"þW!X 7XCXUXjX}X “X#ŸXÃXÔXèX#ùX Y">YaYY! YÂYÙYíYZZ.Z=ZQZæiZ7P[Sˆ[Ü[Iô\9>]„x](ý]œ&^™Ã^<]_Jš_Eå_i+`;•`ŸÑ`Éqaö;c;2d;nd°ªd[edeleqewee£e »eÉeße÷eüef$fBf[f df qf;f»fÊfÙféfÿfg $g2gBg"Sgvg‰g ›g©g.¸gçg øghh2hIh,`hh£h³hÃh$Ùhþhi)i:i Qi^ini†ii±iÈiÐiáiþi-j5j;jUjZjjj pj}j–j -ªjµj»j Âj -Ìj ×j åj1ój{%k -¡k¬kÂkÖkÞkîkþkl!#lEl[lul‘l©lÅl ãlílþlmmm 7m Cm Qm^m mm {m -‡m ’mžm³m ÄmÐmämûmn("nKn+bnŽn¨nÄn ãnïn oo/o8o >oKo^oeonooŸo ¤o®o ½o ÇoÔoãoBèo:+pBfp7©p>ápI qGjq}²q>0rorËŽrZsïwsîgtµVu v'ŒvN´wõxùx‡y‰›y%z -*z5z,;zMhz¸¶z<o{;¬{8è{9!|*[|E†|“Ì|_`}#À}4ä}-~EGF:Ô¥€ãµ€™㢂«†ƒ²2„©å„©…9†£;‡Y߇9ˆè@‰8)Š'bŠŠŠ6™ŠЊàŠöŠ‹'‹ 0‹<‹ M‹ Z‹d‹s‹ƒ‹Ÿ‹²‹Ï‹á‹ õ‹Œ Œ *Œ8ŒJŒRŒ.dŒ “  ¹ÆÙñŽŽ!/ŽQŽdŽxŽ‹ŽšŽ´Ž ÅŽ ÒŽÞŽïŽ - :+<fK£Ðï ÀNÍ‘ -’'’.’@’S’[’ b’p’‰’’˜’(¡’ Ê’ë’7 -“B“b““•“²“ Гñ“””” &”2”L”U”=^”)œ” Æ” Ҕߔä”ö”••&•5•0D•-u• £• ¯•0»•Bì•2/–eb––È–š_—&ú—+!˜\M˜Bª˜8í˜S&šdzšnßš^N›^­›g œctœfØœt?F´IûHEž_ŽžgîžgVŸs¾Ÿ€2 ³ (· à æ í ÿ ¡ !¡/¡61¡nh¡סÙ¡Ý¡*â¡& ¢Ã4¢Eø¢>£r^£bÑ£b4¤"—¤ º¤ -ĤϤؤ -á¤ ì¤ ø¤ ¥ ¥ -¥#¥(4¥]¥f¥v¥¥ †¥”¥ ˜¥¢¥½¥Ø¥é¥ÿ¥ ¦ ¦ &¦3¦C¦ [¦g¦o¦u¦ x¦‚¦“¦­¦$˦𦠧 §§"§A§G§ -P§[§n§q§‚§ -‹§–§®§µ§ ½§ʧ ЧÞ§"ç§ -¨¨)¨2¨H¨e¨ ¨¨ -—¨¢¨²¨èÓ¨ä¨ó¨© ©'©6©F©V©k©‡©˜© «©¹© © Ω Ü©æ©ü© ª$ª -6ª AªKª_ªzªª¥ªÀªÔªïª««/(«X« -_«j«s«„« -‹«–«²«Ä«Ë«Þ«ï« õ« ÿ« ¬¬*¬ --¬ -8¬ C¬ O¬ -[¬f¬¬ ˆ¬ •¬Ÿ¬ §¬µ¬ ½¬ɬϬÖ¬ܬ -ä¬ï¬ ­­(­ -=­ H­R­X­_­f­‚­#•­ ¹­Å­ Ô­ â­ -ï­ú­® ® *® 7® D®R® U®_®f®l®®š® ®¨®¾®)Ý®¯ ¯*¯1¯A¯I¯P¯ -W¯ b¯ l¯y¯¯ œ¯¨¯ -·¯ -¯ ͯÛ¯ ê¯ö¯ý¯ °°° -° )° 3° -@°K°f°u°}° …°‘°¥°¾° Ç° Ñ°Ý°ï°ÿ°±.±A± V±b±s±|±±„± ‹± —± £±°±¹±ѱæ±÷± ² ²²6²J²9^²˜²¡²ª²À²ز ð²O³7a³<™³Ö³ô³#´*´ -2´=´D´_´;v´²´(Ò´û´µµ0!µRµ -Yµdµzµµ“µ¢µ¶µ ͵Úµáµèµýµ¶/¶ H¶R¶Y¶a¶g¶ z¶ ‡¶”¶¶¦¶ ƶÔ¶ì¶ -ô¶ -ÿ¶ -····9· -N·Y· -a·l·|·€·†·‰·™·· ¤·°·¸· ¾·BÊ· ¸ &¸ 0¸>¸B¸ F¸ P¸^¸"t¸%—¸!½¸$߸ -¹ -¹¹ ¹$¹-¹2¹ 8¹ B¹N¹]¹l¹r¹z¹¹&¹9·¹"ñ¹!ámô ¡©êö¨æ®°c²~Ýså g–]–/ üIc‡ bL ÿ]³Q ¥[cO†„& ¶+š ò½2  ¡Û¤àkƒÙí¨™ÔPcÊÏmm|L|R=Ì]hÚ¾[ ‘f°ô7 Ðo#ÄÛ“‡a¤Ûb*s£è¿ßG¶JЦ}Ò9J 2 ñ®d<"w¿ÏòÐzZùd/Ÿ€* (5rZO~$ SÛ%:qÞ‘v?îOÉ‹VuÙ’Iا8çŒqT: ¼t"À 6ë2é3Ø÷/ Wïh„Nî`:h̓›ê «è(ç4Q=ý•”ÌZ)M4TMK}8 ¤ÏR‚šçÌ›”ž ¸ÉEzo'ôñÙñ™aºº¡MšU1 ûù¼y{7IµsMu¶ÖÁ% ¿K§9^~zÔÃŒ1gÿ¨ÄçbϺr,*Yª{ª±}ˆ\¹%+‚˜ø2,8UÈá˜àQ#Sœù,‘Òt m#O öOß³0ËLñA½›}C8»Ç" ñHÊ»>æ΂zìlŠ4†¤´ó¥……”uNo> ŸF;ùKBÛÖïàKƉ ÎÃe§ut ‚«EžÔë)P„øÍXÞ¹Ôqç qÇB¾±ÿëüÁÂ# nB^ßO-7 ÑŸ d Õ­œ[±¹ ZA¥½@ק[CR L¾_þÔÓ«±“Õ\>Š‘ÝKx´pÛDIð1î‡"¼O®Ù1oæز*v0»41Cz„óð·tžßí ¿‚¾·$•K„ ;âm¨×ì”ÚCK²ö'! θ|Š–\µ Ÿa¥ò x©ÑêÑN'\Vs3ü½Þä€û_'|8 !«—Šðøàôæˆ!îpW&ùûŸþn¸e9Ê0ƃƖíãŒÔïJâš=!=XNÉd™/v4iâõy6 µ”ÅõmÂU“SÐ@ÍþZ´‡)³U¥}OäüMW©JfÈlmtN : e`-ÜU ÞâÎC ,y®Ä?ZákÆIõ"Òäw#ŽÉÅ^º9ifž˜Kƺ¶Þ²É¢{ãÿv\úSJÌÍè­p eåÈÁ5<hØ/Ç<Ò éóÔë+?Aƒ¤. È ä€NŒ ìò>^aÜ~ÞÇ#ùFY­Ö~Ãí8½œt´Þ­;È»bÖaá±dý Põ™$ÿ@ W“I -‹µ¯ÓÝÞ˜‘>:ÐD ž[¥¸§ú@xô¾l· -¬Ã›-ã¸+ ê@ ú -qа*£P–tuPÝõªË]‚ªÖ¹YÍ×@fÑîÅ9ªh¾9‰ >˜7ˆÛk£ 1ÉCܽß.ÙJHn ¬ê>Hù’A' <¨råD†{Ç ( i¶9TâèÅôªY f€nBWƒ ë…®õ -Ëáwèãþ{@HÖZ|Ã!Y¤ƒA'?üt! »XdD†`< ïi5[<ÿ¹9â¹ê4¹c× ŠuBð$ì­°}GH{â áDy©ïസÇ_nl¾äŽ•F ݇6ô,™.®= -»š6? GvÓYCB{«)€"ÊòpĦ%GóÏý±+Õìú2y†½7tÈFÕ-LÛwŸ›†’ -ËUü¼ýrz$­- Å”<œ½ƒÀýÛ‚¾ aJrs}ú®3Á³z§©0¥ý…—.•¨l_xwéÊ?EeÀŸkNþëÚº ŒxõE¬‡þáâŽ!ì”c-sMÌ‘ žú£H ¢‰, µ-–ÓG#þö7µ¢æO¸î%ÀÁóNuòºIÒ¬*¢•sòbqZÎÒE\Ø‹0ƒn ¯üd•—ªìgïàå¯)`Q›Á³«"ÅŠÃ4ÿj óó¶å (.ŒVL‘ðk°æÏfM*~R6éýÎÚÈ|vGI B & S†hs—m¤˜ãÒ¼ÎÚ0ˆë.dT$5·öš/!í˜"ö;&‚­ -( -žgä ¯ýoñ÷ÆEîôx¬—žéŽ9K •ùÍáj<4 j¢–·i[µœ~Š%&¿:ŸéîÝ+n†êhC?V ™RTÔM‰K(ãá°Ävð÷Vß5@¿FJ…xWã©Ôð¦¨jÜw.|¢5qüWÚ™èÀ’÷¶ÉNê1Þ04<ʤuˆ 3¿6ÙžÀ> 2jÄ6Ú,õ$æ¡ÀÓ6|øUØÏLÇ3Aγ+Tœ´:±Y„ˆ7êš)ªÖx›‘ ·k”ÕMQ¼F´÷Bµ ˆ¦Ap7Q™ݳ¯íŠ3¢/o’€b:éÄÃ! zWgvgŽï›aû‰^]€2¦/ës¿6Ëz9 j}:Ë,܉Ér\Ú™’IGåúrSL¿“ú.¡Yõ«û-ŸFÌ‹“`éøÓç  °o{? ÿ( £—¦Áj^Ê;ʉ)×;e“‰ókܵ73 0lP“Q‹?vÙ®åÈ¥úi`HXËÑ¡ù”ÙØ*E8è‰Ð¨«'‡§E%HC@0 ÍËTo±{ï§Y1 =A©'y²ß| ÜŽ¬óÚy ´ÄR5 Pg 8wŽ²Ü÷_jø3;ÓÐÑ4&_V¡ ~5 ä8M ]S]jS = ö¶P ¥WU L[¡2-½cà=غë0²[r‹íf' ¹lH–%cÆqéeä·æ¦Ïd£B±iwÌ*ÕÙÅ^ˆTÖp¼÷³èè]¾×OXÁJ^„öSÅÖ}†,i+ð‹V xGnˆòSû­çã?Ü &ÿøgoûgP(r`§CÆE>#a— ÷\å/u:kº; çîÌ3²š - 2 Éò’`R…aßûþ=•³¹ñ$¬2y" _D—F¦–âìÌ£ÕÂþJ€AF©QÒœñ¯›fŒ¨»@e;ÝX(Ñpœp‡"R×ñ‘…V£œZiÁ3Èôå¢Õ/ &…Âü)ÍÝb„+û“¼ÍI×7ðhG  -²) ‹¯·Â  篸‹ø’ŒŠbX¼f×Ñ«%TŽÇG÷´#¯®B\ %ï¬Ë5Ål°HŒæÐ<ª(_pšÆ 8Ø»ßÑ¢`$ÓǶ5€—„ -,• ì¡D6 øDmA '.*^ û‚F]©ãÓkP+Ê#ÇÄE 1 ’XÕÒ˜RýÎ¤Ï QàX­D·À>˜1äQR¸íLw ¦U¬c&…önŽ_yqàí£;Dehb=$)ƒl.N~°À&V -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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:CenteredChange Background ColorChange Colormap entryChange Foreground ColorChange Image ResolutionChange Image UnitChange Print SizeChange current layer or pathChange grid background colorChange grid foreground colorChange indexed paletteChange perspective of the layer or selectionChanging shortcut failed.ChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel colorChannel is already on the bottom.Channel is already on top.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuCheck _size:Choose Stroke StyleCircleCl_earClearClear ChannelClear Undo HistoryClear all textClear errorsClear undo history...Click "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click "Continue" to proceed with the user installation.Click to connect this anchor with the selected endpoint.Click to create a new anchor. (try SHIFT)Click to create a new component of the path.Click to create a new path.Click to create previewClick to delete this anchor.Click to insert an anchor on the path. (try SHIFT)Click to make this node angular.Click to open up the path.Click to pick path to edit.Click to update preview -%s Click to force update even if preview is up-to-dateClick-Drag to change the shape of the curve. (SHIFT: symmetrical)Click-Drag to move the anchor around.Click-Drag to move the anchors around.Click-Drag to move the component around. (try SHIFT)Click-Drag to move the handle around. (try SHIFT)Click-Drag to move the path around.Click: selectClick: select Drag: moveClip resultClipboardClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor _Balance...Color _dithering:Color balance operates only on RGB color layers.Color eraseColor index:Color:Color_mapColor_space:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormapColormap EditorColormap MenuColumns:Comme_nt:CommentCon_trast:Con_volveConfigure Color Display FiltersConfigure E_xtended Input Devices...Configure G_rid...Configure GridConfigure Image GridConfigure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConfirm ScalingConfirm Text EditingConfirm closing of unsa_ved imagesConflicting ShortcutsConical (asym)Conical (sym)Connect StrokesConstantConstraintsContextContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not find GIMP help browser.Could not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCould not start the GIMP help browser plug-in.Count:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating Preview ...Creating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:CursorCursor _mode:Cursor re_ndering:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCustom p_adding color:CutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDarken onlyDash dot dot...Dash dot...Dash pattern:Dash preset:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete AnchorsDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete TemplateDelete brushDelete channelDelete colorDelete gradientDelete layerDelete layer maskDelete paletteDelete pathDelete patternDelete saved options...Delete the selected bufferDelete the selected templateDelete this imageDelete vectorsDeleting "%s" failed: %sDense dotsDesaturateDesaturate operates only on RGB color layers.DescriptionDesignDevice StatusDevicesDialogsDialogs MenuDiamondDifferenceDirect ColorDisable Layer MaskDisable Quick MaskDiscard Text InformationDisplayDisplay NavigationDisplay _Filters...Display proceduresDisplay type:Displaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDitheringDivideDo a _fresh user installationDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Do you want to replace it with the image you are saving?Do_n't saveDockableDocument Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag AnchorDrag AnchorsDrag CurveDrag HandleDrag PathDrag: moveDraw in inkDrawableDrawable modDrawable proceduresDrop New LayerDrop New PathDue to lack of any fonts, text functionality is not available.Dump events from this controllerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge BehaviourEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Colormap EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit Quick Mask AttributesEdit Quick Mask ColorEdit TemplateEdit brushEdit channel attributesEdit colorEdit colormap entry #%dEdit gradientEdit layer attributesEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty PathEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable Quick MaskEnable dithering of _transparencyEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while reading brush file '%s': %sError while writing '%s': %sError writing XCF: %sError writing file '%s': -%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. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The name of the directory holding the GIMP user configuration cannot be converted to UTF-8: %s - -Most probably your filesystem stores files in an encoding different from UTF-8 and you didn't tell GLib about this. Please set the environment variable G_FILENAME_ENCODING.The sessionrc is used to store what dialog windows were open the last time you quit The GIMP. You can configure The GIMP to reopen these dialogs at the saved position.The thumbnail in the Open dialog will be automatically updated if the file being previewed is smaller than the size set here.The tile cache is used to make sure the GIMP doesn't thrash tiles between memory and disk. Setting this value higher will cause the GIMP to use less swap space, but will also cause the GIMP to use more memory. Conversely, a smaller cache size causes the GIMP to use more swap space and less memory.The unit used for coordinate display when not in dot-for-dot mode.The unitrc is used to store your user units database. You can define additional units and use them just like you use the built-in units inches, millimeters, points and picas. This file is overwritten each time you quit the GIMP.The vertical image resolution.The window type hint that is set on dock windows. This may affect the way your window manager decorates and handles dock windows.The window type hint that is set on the toolbox. This may affect how your window manager decorates and handles the toolbox window.ThemeTheme FoldersThemesThere are %d images with unsaved changes:There are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There is one image with unsaved changes:There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This is the distance in pixels where Guide and Grid snapping activates.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache _size:Tile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToggle Quick MaskToggle _Quick MaskToo many error messages!Tool OptionsTool Options MenuTool Toggle %sTool _OptionsTool iconTool icon with crosshairTool_boxToolboxToolbox MenuToolsTools MenuTools such as fuzzy-select and bucket fill find regions based on a seed-fill algorithm. The seed fill starts at the initially selected pixel and progresses in all directions until the difference of pixel intensity from the original is greater than a specified threshold. This value represents the default threshold.Tr_ansparencyTransfer Alpha to MaskTransformTransform ChannelTransform DirectionTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransformation proceduresTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sType a new acceleratorType a new accelerator, or press Backspace to clearUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").Unable to open swap file. The Gimp has run out of memory and cannot use the swap file. Some parts of your images may be corrupted. Try to save your work using different filenames, restart the Gimp and check the location of the swap directory in your Preferences.Unable to run %s callback. The corresponding plug-in may have crashed.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknownUnknown file typeUnknown type of palette file: -%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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-12-03 14:39+0900 -Last-Translator: Jan Morén -Language-Team: Swedish -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Ogiltig flagga "%s" - -Användning: %s [flagga ...] [fil ...] - - --batch-interpreter - Processen att köra flerjobbskommandon med. - --debug-handlers Aktivera icke ödesdiger signalhanterare för - felsökning. - --display Använd en speciell X-display. - --dump-gimprc Skriv ut en gimprs med standardinställningar. - --no-cpu-accel Använd inte särskilda CPU-fartökningar. - --no-shm Använd inte delat minne mellan GIMP och tillägg. - --pdb-compat-mode - Anpassat läge för proceduraldatabas. - --session Använd en alternativ sessionrc-fil. - --stack-trace-mode - Felsökningsläge för ödesdigra signaler. - - --system-gimprc Använd en alternativ system-gimprc-fil. - --verbose Visa startmeddelanden. - -b, --batch Kör kommandon i flerjobbsläge. - -c, --console-messages Visa varningsmeddelanden till konsollen, inte ett separat dialogfönster. - -d, --no-data Läs in inte in penslar, färgskalor, färgpaletter, mönster. - -s, --no-fonts Läs inte in nÃ¥gra typsnitt. - -g, --gimprc Använd en alternativ gimprc-fil. - -h, --help Skriv ut denna hjälptext. - -i, --no-interface Kör utan användargränssnitt. - -s, --no-splash Visa inte startfönstret. - -v, --version Skriv ut versionsinformation. -%d lager%d dpi%d dpi, %s%d lager%d minuter%d sekunder%d × %d dpi%d × %d bpi, %s%d × %d bildpunkter%g × %g %s%p%s kanalkopia%s Kanal till markering%s-meddelande%s-kopia%s-mask%s%sklicka: utöka markering%s%sdra: flytta och komprimera(%0.3f, %0.3f, %0.3f)(Ingen)(Detta konsollfönster kommer att stängas om tio sekunder) -(Namnlös buffert)(Namnlös mall)(Varierar)(ren)(ogiltig UTF-8-sträng)(ändrad)(ingen)1 lager1 lager15° %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><>För optimal prestanda i GIMP mÃ¥ste du kanske förändra vissa saker.GIMP - GNU Image Manipulation Program -Copyright © 1995-2004 -Spencer Kimball, Peter Mattis och GIMPs utvecklingsteam.GIMP-tipsfilen kunde inte tolkas!Din GIMP-tipsfil verkar saknas!En fil "%s" existerar redan._Lägg till markeringV_inkelOm GIMPÃ…tgärdAktivera den _fokuserade bildenAktiva filterAdaptiv supersamplingLägg tillLägg till al_fakanalLägg till alfakanalLägg till ankareLägg till kanalLägg till färg till färgkartaLägg till hjälplinje: Lägg till hjälplinjerLägg till horisontell hjälplinjeL_ägg till lagermask...Lägg till lagerLägg till lagermaskLägg till slingaLägg till dragLägg till textlagerLägg till vertikal hjälplinjeLägg till en mask till lagretLägg till färg frÃ¥n BGLägg till färg frÃ¥n FGlägg till lagermaskSkriv text i bildenLägg till aktuell färg till färghistorikenLägg till det markerade filtret till listan med aktiva filter.Lägg till palett %sLägg till aktuell markeringLägger till temat "%s" (%s) -AdditionExtra inmatningsenheterJustera ljusstyrka och kontrastJustera färgbalansJustera färgkurvorJustera färgnivÃ¥erJustera ljusstyrka och kontrastJustera färgbalansJustera färgkurvorJustera färgnivÃ¥erJustera nyans mättnadJustera nyans och mättnadJustera nivÃ¥er automatisktJustering:Avancerade alternativPÃ¥verkar:PÃ¥verkat omrÃ¥de %sAirbrushAirbrush med variabelt tryck_Alfakanal till markeringUppställdUppställningAlla kanalerAlla filerAlla filer (*.*)All bild- och Ã¥ngradata som inte ryms i bildblockscachen kommer att skrivas till en växlingsfil. Denna fil bör ligga pÃ¥ ett lokalt filsystem med tillräckligt mycket ledigt utrymme (flera 100 MB). PÃ¥ ett UNIX-system sÃ¥ kan du vilja ställa in systemets tempkatalog ("/tmp" eller "/var/tmp").TillÃ¥t att helt transparenta regioner fyllsTillÃ¥t att helt transparenta regioner kan markerasTillÃ¥t förstoring %sAlfaAlfakanal till markeringAlfa:En bild av den valda storleken kommer att använda mer minne än vad "Maximal bildstorlek" är satt till i inställningarna (nu satt till %s).An_imationAnkra flytande markeringAnkra flytande lagerAnkra flytande markeringVinkel:Antisudda %sKantutjämningUtseendeApplicera lagermask_Applicera lagermaskApplicera tröskelvärdeapplicera lagermaskÄr du säker att du vill ta bort "%s" frÃ¥n listan och frÃ¥n disk?Är du säker att du vill ta bort mall "%s" frÃ¥n listan och frÃ¥n disk?Som i _inställningarnaFrÃ¥ga innan en bild stängs utan att vara sparad.AspektförhÃ¥llande:AspektförhÃ¥llande:Koppla parasitKoppla parasit till bildKoppla parasit till objektKoppla parasitFörfattare:AutoFölj aktiv _bild automatisktKrymp automatisktKrymp markering automatisktAutoändra fönsterstorlekLäs in automatisktAutomatiskt detekteradTillgängliga filterTillgängliga typer:Fyll med bakgrundsfärgLjusstyrka-Kontrast...B_uffertarBakgrundBakgrundsfärgBakgrundsfärg inställd till:Bakgrund: %d, %d, %dBakÃ¥t (korrektiv)Basera fyllda omrÃ¥den pÃ¥ alla synliga lagerBasera markering pÃ¥ alla synliga lagerBakomKantBilinjärSvart & vitSvart:_Tona ändpunkternas färgerFärgtoningFärgtoningT_ona ändpunkternas opacitetFärgtoning: Tona: Ogiltig för indexerade bilder.Tonar färg...BlÃ¥BlÃ¥:Gör suddigareGör suddigare eller skarpareKan_t...Kantmarkera kanalKantmarkeringKantmarkering medLjusstyrka-KontrastLjusstyrka-Kontrast gÃ¥r inte att använda pÃ¥ indexerade lager.PenselPenselredigerarePenselmapparPenselanvändargränssnittPensel:PenslarPenselmenyFyllBuffertarBuffertmenyBrännÄndaVia ändelseGenom att Ã¥tergÃ¥ till den sparade versionen kommer du att förlora alla dina ändringar, inklusive all Ã¥ngrainformationCMYKK_alibrera...F_ärghämtareK_olumner:K_ombineraKalibrera bildskärmsupplösningKan inte Ã¥ngra %sStorlek pÃ¥ rityta...AvbrytAvbryt hjälplinjeKan inte lägga till lagermask som har andra dimensioner än det specifierade lagret.Kan inte lägga till lagermask till ett lager utan alfakanal.Kan inte lägga till lagermask till ett lager som inte tillhör en bild.Kan inte ankra det här lagret, för det är inte en flytande markering.Kan inte konvertera till palett med mer än 256 färger.Kan inte skapa nytt lager frÃ¥n den flytande markeringen dÃ¥ den tillhör en lagermask eller kanal.Kan inte skapa mappen "%s": %sKan inte skapa förhandsvisningKan inte beskära eftersom den aktuella markeringen är tom.Kan inte expandera ${%s}Kan inte göra markeringen flytande eftersom den markerade regionen är tom.Kan inte höja lager utan alfakanal.Kan inte spara. Inget är markerat.Kan inte stryka tom kanal.Kan inte stryka tom väg.Storlek pÃ¥ canvasRityte_utfyllnadsläge:Centrera X:CentreradÄndra bakgrundsfärgÄndra post i förgkartaÄndra förgrundsfärgÄndra bildupplösningÄndra bildenhetÄndra utskriftsstorlekÄndra aktuellt lager eller slingaÄndra rutnätets bakgrundsfärgÄndra rutnätets förgrundsfärgÄndra indexerad palettÄndra perspektivet pÃ¥ lagret eller markeringenÄndra kortkommando misslyckades.KanalKanalattributKanalnamn:Kanalen kan inte sänkas mer.Kanalen kan inte höjas mer.KanalfärgKanalen är redan underst.Kanalen är redan överst._Kanal till markeringKanal till markeringKanal till markeringKanal:KanalerKanalmenyRut_storlek:Välj strykningsstilCirkelT_ömTömRensa kanalTöm Ã¥ngringshistorikTöm all textRensa felTöm Ã¥ngringshistorik...Tryck pÃ¥ "Fortsätt" för att acceptera inställningarna ovan.Tryck pÃ¥ "Fortsätt" för att skapa din personliga GIMP-mapp.Tryck pÃ¥ "Fortsätt" för att starta GIMPs användarinstallation.Tryck pÃ¥ "Fortsätt" för att genomföra användarinstallationen.Klicka för att koppla ihop ankaret med den valda ändpunkten.Klicka för att skapa ett nytt ankare. (prova SHIFT)Klicka för att skapa ny slingkomponent.Klicka för att skapa en ny slinga.Klicka för att skapa förhandsvisningKlicka för att ta bort det här ankaret.Klicka för att lägga in ett ankare i slingan. (prova SHIFT)Klicka för att göra noden kantig.Klicka för att öppna upp slingan.Klicka för att välja slinga att redigera.Klicka för att uppdatera förhandsvisningen -%s Klicka för att tvinga fram en uppdatering även om förhandsvisningen är aktuellHÃ¥ll och dra för att ändra kurvans form. (SHIFT: symmetriskt)HÃ¥ll och dra för att flytta runt ankaret.HÃ¥ll och dra för att flytta runt ankarna.HÃ¥ll och dra för att flytta runt komponenten. (prova SHIFT)HÃ¥ll och dra för att flytta runt handtaget. (prova SHIFT)HÃ¥ll och dra för att flytta runt slingan.Klicka: markeraKlicka: markera Dra: flyttaKlipp resultatUrklippshanterareKlippt efter understa lagretKlippt efter bildenKlonaStänga %sStäng den här fliken_Kopiera slinga_FärgerFärgFärgbalansFärgvisningsfilterFärghämtarenInformation om färghämtareFärg_balans...Färg_ditheringFärgbalans fungerar endast pÃ¥ RGB-lager.FärgborttagningFärgindex:Färg:Färg_kartaFärg_rum:Färg_lägg...Färgningstyp för segmentFärgnings_typ för markeringFärgläggFärgläggning fungerar endast pÃ¥ RGB-lager.Färglägg bildenFärglägg bildenFärgkartaFärgkarteredigerareFärgkartemenyKolumner:Komme_ntar:KommentarKon_trast:Kon_volveraKonfigurera färgvisningsfilterKonfigurera utökade inmatningsenheter...Ställ in _rutnät...Ställ in rutnätStäll in rutnät för bildStäll in kortkommandonStäll in _Kortkommandon...Ställ in markerat filterStäll in det markerade filtret: %sBekräfta bildstorlekBekräfta skalningBekräfta textediteringBekräfta stängning av _osparade bilderKrockande kortkommandonKonisk (asymmetrisk)Konisk (symmetrisk)Koppla ihop dragKonstantBegränsningarSammanhangKontextberoende markörer är coola. Dom används normalt. Dom kräver dock resurser som du kan vilja använda till annat.FortsättBidrag frÃ¥nKonverteraKonvertera kantKonvertera bild till grÃ¥skalaKonvertera bild till indexerad färgKonvertera bild indexerad färgKonvertera bild till RGBKonvertera bildKonvertera till indexerad (fas 2)...Konvertera till indexerad (fas 3)...Konvertera till indexerad...KonvolveraKonvolveringstyp %sKopiera namngivenKopierar filen "%s" frÃ¥n "%s"...Copyright:Trasigt segment %d i färgskalefilen "%s".Kunde inte skapa "%s": %sMisslyckades med att skapa temporär fil för "%s": %sKunde inte ta bort "%s": %sKunde inte hitta GIMP-hjälpläsarenKunde inte öppna "%s" för läsning: %sKunde inte öppna "%s" för skrivning: %sKunde inte öppna miniatyrbild "%s": %sKunde inte läsa %d byte frÃ¥n "%s": %sKunde inte spola i XCF-fil: %sKunde inte starta GIMP-hjälpläsarinsticksmodulen.Antal:_Beskär lager_Skapa ny dockaSkapa en ny mallSkapa en ny bildSkapa ett nytt lagerSkapa en ny mallSkapa en ny display för denna bildSkapa en ny bild frÃ¥n den valda mallenSkapa en ny mallSkapa och redigera bilder eller fotografierSkapa och redigera slingorSkapa väg frÃ¥n textSkapa markering frÃ¥n slingaSkapar förhandsvisning...Skapar mappen "%s"...BeskärBeskär och Ändra storlekInformation om Beskär och ändra storlekBeskär bildBeskär lagerBeskär bildBeskär eller ändra storlek pÃ¥ en bildBeskär: Endast korshÃ¥rKlipp _utKli_pp ut namngiven...Kubisk (bäst)Nuvarande _statusAktuell höjd:Endast aktuellt lagerNuvarande statusAktuell bredd:markörMarkör_läge:Markör_utritning:KurvtypKurvorKurvor för indexerade lager kan inte justeras.EgenEgen färgEgen färgskalaAnpassad u_tfyllnadsfärg:Klipp utKlipp ut namngivenCyanCyan:Du_plicera pensel_Duplicera kanal_Duplicera färgskala_Duplicera lager_Duplicera palett_Duplicera slinga_Duplicera mönster_Duplicera mall...Mörk rutfärgGör endast mörkareLÃ¥ng kort kort...LÃ¥ng kort...Streckningsmönster:Förinställning för streckning:StreckadDatum:AvlusaStandardutseende i fullskärmslägeStandardutseende i normalt lägeStandardrutnätStandard bildrutnätStandard_interpolation:Standardstorlek för förhandsvisning av _lager och kanaler:Standard_tröskelvärde:Ta bort ankareTa bort ankare_Ta bort lagermaskTa bort lagermaskTa bort objektTa bort segmentTa bort mallTa bort penselTa bort kanalTa bort färg_Ta bort färgskala...ta bort lagerta bort lagermaskTa bort palettTa bort slingaTa bort mönster...Ta bort sparade alternativ...Ta bort den valda buffertenTa bort den valda mallenTa bort denna bildTa bort vektorerTa bort "%s" misslyckades: %sTäta prickarAvfärgaAvfärga fungerar endast pÃ¥ RGB-färglager.BeskrivningDesignEnhetsstatusEnheterDialogerDialogmenyRombSkillnadDirekt färgInaktivera lagermaskInaktivera snabbmaskFörkasta textinformationVisningDisplaynavigationVisnings_filter...VisningsprocedurerDisplaytyp:Visar [%0.6f, %0.6f]Lös uppDistans:Distans: %0.6fDitheringDivideraGör en _ny användarinstallationVill du verkligen Ã¥terställa alla filter till standardvärden?Vill du verkligen Ã¥terställa alla verktygsalternativ till standardvärden?Vill du ersätta den med bilden du sparar?Spara _inteDockningsbar_DokumenthistorikDokumenthistorikDokumentDokumentmenyBlek_BrännaBlekBlek eller bränn streckBlek/BrännaDubbelstreckadDra ankareDra ankareDra kurvaHandtagDra slingaDra: flyttaMÃ¥la med bläckRitytaRitytemodRityteprocedurerSläpp nytt lagerSläpp ny slingaPÃ¥ grund av brist pÃ¥ typsnitt är textfunktioner inte tillgängliga.Spara undan händelser frÃ¥n den här enhetenDuplicera penselDuplicera kanal_Duplicera färgskalaDuplicera lagerDuplicera palettDuplicera slingaDuplicera mönsterDuplicera den valda mallenIIK: kan inte Ã¥ngra_Exportera slinga...E_xtralitenKantbeteende_Leta kanterRedigeraRedigera kanalattributRedigera kanalfärgRedigera färgpalettpostRedigera färgpalettpostModifiera lagerattributRedigera lagermaskEditeringsmodRedigera palettfärgModifiera slingattributRedigera snabbmaskattributRedigera snabbmaskfärgRedigera mallRedigera pensel...Redigera kanalattributRedigera färgRedigera färgpalettpost #%d_Redigera färgskala...Modifiera lagerattributRedigera palettModifiera slingattributRedigera mönster...ModifieringsprocedurerRedigera den valda mallenEllipsmarkeringTom kanalTomt lagerTom slingaTomt textlagerTomt variabelnamn i miljöfilen %sFö_rbättraAktivera snabbmaskAnvänd dithering av _transparensAktivera den här enhetenAktivera för att visa ett händigt GIMP-tips vid uppstart.Aktivera för att visa verktygstips.EnormAnge namn för den sammanfogade palettenAnge namn för de sparade alternativenAnge namn för denna buffertAnge namn för denna mallAnge nytt namn för de sparade alternativenAnge plats (URI):MiljöMiljömapparJämna utJämna ut fungerar inte pÃ¥ indexerade lager.Sudda mot bakgrunden eller transparentSuddare_FelkonsollFelkonsollFelkonsollmenyFel vid sparande av XCF-fil: %sFel vid tolkning av "%s" pÃ¥ rad %d: %sFel vid läsning av "%s": %sFel vid läsning av penselfil "%s": %sFel vid skrivande av "%s": %sFel vid skrivande av XCF: %sFel vid skrivning av filen "%s": -%sFel vid skrivande till "%s": %sFel vid skrivning till temporär fil för "%s": %s -Ingen fil har skapats.Fel vid skrivande till temporär fil för "%s": %s -Originalfilen har inte rörts.FelHändelseM_ycket storExpanderad om sÃ¥ behövsExportera slinga till SVGExportera alla slingor frÃ¥n denna bildExportera aktuell slingaExponering:Utökade inmatningsenheterTilläggFyll med förgrundsfärgFG till BG (HSV medurs-nyans)FG till BG (HSV moturs)FG till BG (HSV)FG till BG (RGB)FG till TransparentFG till transparentFG/BGFG/BG-färgFS relaxFS rigorFS till lager_Passa rityta till lagerTona utMisslyckades med att importera färgskalor frÃ¥n "%s": %sMisslyckades med att importera slinga frÃ¥n "%s": %sTjusigÖdesdigert tolkningsfel i penselfil "%s": Filen verkar avhuggen.Ödesdigert tolkningsfel i penselfil "%s": Filen är trasig.Ödesdigert tolkningsfel i penselfil "%s": Inte en GIMP penselfil.Ödesdigert tolkningsfel i penselfil "%s": Okänd GIMP penselform.Ödesdigert tolkningsfel i penselfil "%s": Okänd GIMP penselversion.Ödesdigert tolkningsfel i penselfil "%s": Okänt djup %d.Ödesdigert tolkningsfel i penselfil "%s": Okänd version %d.Ödesdigert tolkningsfel i penselfil "%s": Penseldjupet %d stöds inte. -GIMP-penslar mÃ¥ste vara GRÃ… eller RGBA.Ödesdigert tolkningsfel i färgskalefil "%s": Filen är trasig.Ödesdigert tolkningsfel i färgskalefil "%s": Inte en GIMP-färgskalefil.Ödesdigert tolkningsfel i palettfil "%s": Magiskt huvud saknas.Ödesdigert tolkningsfel i palettfil "%s": Magiskt huvud saknas. -Behöver denna fil konverteras frÃ¥n DOS?Ödesdigert tolkningsfel i palettfil "%s": Läsfel pÃ¥ rad %d.Ödesdigert tolkningsfel i mönsterfil "%s": Kunde inte läsa %d byte: %sÖdesdigert tolkningsfel i mönsterfil "%s": Okänd mönsterformatversion %d.Ödesdigert tolkningsfel i mönsterfil "%s": Mönsterdjupet %d stöds inte. -GIMP-mönster mÃ¥ste vara GRÃ… eller RGB.Fj_äder...Fjädra kanalFjädra markeringFjädra kanterFjädermarkera medFilFilöppnande_dialogFilÃ¥tgärderFiltypFilen existerar!Filen är avkortadFyll kanalFyllnadsopacitet:Fyllnadstyp %sFyll i liknande färgerFyll transparenta omrÃ¥denFyll hela markeringenFyll med bakgrundsfärgFyll med _bakgrundsfärgFyll med förgrundsfärgFyll med möns_terFyll med mönsterFyll med transparentFyll med vittFyll med _förgrundsfärgFyll med _bakgrundsfärgFyll med färgtoningFyll med färg eller mönsterFylldFilte_rDet slutgiltiga, sammanfogade lagret ska vara:Hitta kontinuerliga ytorSöker liknande färgerPassa till fönsterPassa bilden till fönsterPassa till fönsterPassa till fönsterFixt aspektförhÃ¥llandeFix storlekPlatta ut bildenVändVänd kanalVänd lagerVänd slingVänd textlagerVändtyp %sVänd _horisontellt_Vänd vertikaltVänd bildVänd lagret eller markeringenVänd...Vänder...Flytande markeringFlytande markeringFlytande lagerFlytande markering -(%s)Flytande markering till lagerFlytande markering till lagerFlytande markeringarFloyd-Steinberg (normal)Floyd-Steinberg (minskad färgblödning)FokusMappKatalogerTypsnittsmapparTypsnitts-UITypsnitt:TypsnittTypsnittsmenyFör att kunna installera GIMP korrekt mÃ¥ste mappen"%s" skapas.Tvinga autohinterFörgrundFörgrunds- och bakgrundsfärger. De svarta och vita rutorna Ã¥terställer färgerna. Pilarna byter plats pÃ¥ färgerna. Dubbelklicka för att öppna färgväljardialogen.FörgrundsfärgFörgrundsfärg inställd till:Förgrund: %d, %d, %dFramÃ¥t (traditionell)Fr_Ã¥n slingaFri markeringFri markeringFrihandFrÃ¥n _temafrÃ¥n fönstersystem (För tillfället %d × %d punkter/tum)FrÃ¥n vänster till högerFrÃ¥n höger till vänsterFrÃ¥n markeringFrÃ¥n temaL_uddig markeringFullskär_mLuddig markeringGIMPGIMP-tilläggGIMP-meddelandePrestandaavstämning av GIMPGIMP-insticksmodulUppstart av GIMPGIMP-textredigerareDagens GIMP-tipsAnvändarinstallation av GIMPGIMP XCF-bildGIMP kunde inte initiera det grafiska användargränssnittet. -Kontrollera att det finns en korrekt konfiguration för din displaymiljö.GIMP hjälpläsareGIMP är inte korrekt installerat för den aktuella användaren. -Användarinstallationen hoppades över eftersom "--no-interface"-flaggan användes. -Kör GIMP med flaggan "--no-interface" för att utföra användarinstallation.GIMP använder en begränsad mängd minne för att lagra bilddata, sÃ¥ kallad "block-cache". Du bör justera det sÃ¥ det fÃ¥r plats i minnet. Tänk pÃ¥ mängden minne som används av andra körande program.GIMP använder ytterligare en gtkrc-fil sÃ¥ att du kan fÃ¥ den att se annorlunda ut jämfört med andra GTK-program.GIMP versionGIMP kommer varna användaren vid försök att skapa en bild som skulle kräva mer minne än det som specifierats här.GammaGenerelltDetta bestämmer minimalt antal systemfärger att allokera till GIMP; detta gäller endast 8-bitars displayer.Generera optimal palettHämta bildskärmsupplösningGigantiskGimprc-procedurer_GlaseffekterFärgskalaFärgskaleredigerareFärgskaleredigerarmenyFärgskalemapparFärgskalesegmentets vänstra ändpunktsfärgFärgskalesegmentets högra ändpunktsfärgFärgskaleanvändargränssnittFärgskala:FärgskalorFärgskalemenyGrynextraheringGrynsammanfogningGrÃ¥GrÃ¥skalaGrönGrön:RutnätMellanrum mellan rutnätslinjerÖka kanalÖka markeringÖka markering medHjälplinjeFästa till hjälplinjer och rutnätHjälplinjeprocedurerHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_moturs nyans)HSV (m_edurs-nyans)HTML-notation:H_öjd:Hjälp_läsare att använda:Handtagsposition: %0.6fHÃ¥rd kantHÃ¥rt ljusHÃ¥rdhetHÃ¥rdhet:HöjdHöjd:HjälpHjälpläsareHjälpsystemHjälp_läsaren startar inteHjälp_läsare hittades inteHjälpprocedurerHex:LjuspunkterHint för _dockningsfönster:Hint för _verktygslÃ¥dan:HintingHinting ändrar typsnittets kanter för att ge en tydlig bitmap för smÃ¥ storlekarHistogra_mHistogramHistogramskalaHistorikHorisontellHorisontell början pÃ¥ första linjen; detta kan vara negativt.Horisontellt avstÃ¥nd mellan rutnätslinjer.Hur mÃ¥nga nyligen använda filer som ska finnas i filmenyn.NyansNyans-MättnadNyans-Mättnad fungerar endast pÃ¥ RGB-lager.Nyans-_Mättnad...Nyans:JättestorI_kon och text_Bild_Importera slinga...I_nterpolation:I_ntervall:IkonIkon & besk.Ikon & textOm dom finns, används hints frÃ¥n typsnittet men du kan föredra att alltid använda den automatiska hintaren.Om aktiverat ändrar flyttningsverktyget det aktiva lagret eller slingan när ett lager eller en slinga väljs. Detta var det normala beteendet i äldre versioner.Sparar du inte bilden förlorar du ändringar frÃ¥n de sista %s.Om du avslutar GIMP nu kommer dessa ändringar förloras.OtillÃ¥tet variabelnamn i miljöfilen %s: %sBildBild + rutnätBildeditorBildinformationBildmenyBildstorlekBildstatusradsformatBildmallarMiniatyrbilderBildtitel och statusradsformatBildtitelformatBildfönsterutseendeBildfönsterBilden har inga synliga lagerBildstorlekBildmaskBildupplösningen är utanför omrÃ¥det, använder standardupplösningen istället.BildstorlekBildkällaBildtypBilderBildmenyImportalternativImportera palettImportera slingaImportera slinga frÃ¥n SVGImportera en ny palettImportera palettImportera slingaImporterad slingaBl_äckIn_verteraIn_vertera maskInkrementellIndentering:Indragning av första radenIndex:IndexeradIndexerad palettKonvertering av indexerad färgLager med indexerad färg skalas alltid utan interpolation. Den valda interpolationstypen kommer bara pÃ¥verka skalning av kanaler och masker.InformationsfönsterInitial zoom_faktor:Initialisera lagermask till:Initierar insticksmodulerInitierar insticksmodul: "%s" -BläckInline pixbufInmatningsenheterInmatningsenheterInmatningsnivÃ¥erLägg in ankareAnvänd egen färgkarta; kan vara användbart pÃ¥ 8-bits (256 färger) skärmar.Installationen misslyckades. Kontakta systemadministratör.Installationen lyckades. Klicka pÃ¥ "Fortsätt" för att fortsätta.Direktuppdatering_Intelligent saxIntensitet: %0.3f Opacitet: %0.3fGränssnittInterna GIMP-procedurerInterna procedurerInterpolation:GränssnittSnitt med aktuell markeringSnitt (hÃ¥rkors)Snitt (punkter)Ogiltig UTF-8Ogiltig UTF-8-data i filen "%s".Ogiltig UTF-8-sträng i XCF-filOgiltig UTF-8-sträng i penselfilen "%s".Ogiltig UTF-8-sträng i färgskalefilen "%s".Ogiltig UTF-8-sträng i palettfilen "%s"Ogiltig UTF_8-sträng i mönsterfilen "%s".Ogiltig teckensekvens i URIOgiltigt kortkommando.Ogiltig bredd eller höjd. BÃ¥da mÃ¥ste vara positiva.InverteraInvertera kanalOmvänd markeringKan inte använda invert pÃ¥ indexerade lager.Invertera markeringÄr detta vad du vill göra?Det verkar som att du har använt GIMP 2.0 tidigare.ObjektegenskaperObjektsynlighetJustera:BehÃ¥ll transparensBehÃ¥ll ovanpÃ¥BehÃ¥ll aspektförhÃ¥llande %sBehÃ¥ll aspektförhÃ¥llande %sBehÃ¥ll höjd %sBehÃ¥ll transparensBehÃ¥ll bredd %sTangent NerTangent Ner (Alt)Tangent Ner (Control + Alt)Tangent Ner (Control)Tangent Ner (Shift + Alt)Tangent Ner (Shift + Control + Alt)Tangent Ner (Shift + Control)Tangent Ner (Shift)Tangent VänsterTangent Vänster (Alt)Tangent Vänster (Control + Alt)Tangent Vänster (Control)Tangent Vänster (Shift + Alt)Tangent Vänster (Shift + Control + Alt)Tangent Vänster (Shift + Control)Tangent Vänster (Shift)Tangent HögerTangent Höger (Alt)Tangent Höger (Control + Alt)Tangent Höger (Control)Tangent Höger (Shift + Alt)Tangent Höger (Shift + Control + Alt)Tangent Höger (Shift + Control)Tangent Höger (Shift)Tangent UppTangent Upp (Alt)Tangent Upp (Control + Alt)Tangent Upp (Control)Tangent Upp (Shift + Alt)Tangent Upp (Shift + Control + Alt)Tangent Upp (Shift + Control)Tangent Upp (Shift)Snabbtangenter kan dynamiskt defineras om i GIMP. 'menurc' är en dump av dina inställningar sÃ¥ att de sparas till nästa session. Du kan editera denna fil om du vill, men det är mycket enklare att ändra det inifrÃ¥n GIMP. Om du tar bort denna fil sÃ¥ Ã¥terställs standardvärdena.TangentbordTangentbordshändelserKortkommandonVTH_Vänstra ändpunktens färg...LiggandeStorStor (256×256)Större förhandsvisningarSenaste fel:LagerLagret "%s" har ingen alfakanal. Lagret placerades ovanför det.LagerattributSt_orlek pÃ¥ lagergräns...Lagrets fyllnadstypLagermask till markeringLagervalLagerstorlekLager_lägeLager_namn:Lagret kan inte sänkas mer.Lagret kan inte höjas mer.Lagret är redan underst.Lagret är redan överst.Lagerstorlek som bildenLager till _bottenLagerstorlek som _bilden_Lager till toppenLagrets _alfakanalLagerLagermenyAlternativ för lagersammanfogningVänstra ändpunktens färgVänsterjusteradLängd:LÃ¥t GIMP försöka Ã¥terskapa din senast sparade session vid varje uppstart.NivÃ¥erKan inte justera nivÃ¥er för indexerade lager.Ljus rutfärgGör endast ljusareLinjeRad -Mellanrum:Linjebredd:Linje_stil:Linjestil för rutnätet.LinjärLänkat objektLäs inLäs in kurvorLäs in nivÃ¥er_Läs in höger färg frÃ¥nLäs kurvinställningar frÃ¥n filLäs nivÃ¥inställningar frÃ¥n filLäs in text frÃ¥n filLäser in förhandsvisning...Placering:LogaritmiskLÃ¥nga streckLetar efter datafilerSänk kanalSänk kanal till bottenFlytta kanal _understSänk lagerSänk lager till bottenSänk slingaFlytta slingan understFlytta slingan _understSänk kanalFlytta kanal understSänk lagerFlytta lager nederstSänk slingaFlytta slingan understF_örstora_HuvudFl_ytta till skärm..._MappaMagentaMagenta:FörstoraGör _transparentHantera inläsningsbara modulerVandrande _myrors hastighet:Maskopacitet:_Maskera markerade omrÃ¥denMaskera _omarkerade omrÃ¥denMatris:Max djup:Maximal _filstorlek för miniatyrbilder:Maximal _ny bildstorlek:Maximal färgskillnadMaximalt Ã¥ngra_minne:Medel:MätMät avstÃ¥nd och vinklarMät avstÃ¥nd och vinklarMät linjalerna och mata in dess längder:Median:MellanMellanstreckSammanfoga _nedÃ¥tSammanfoga nedÃ¥tSammanfoga lagerSammanfoga palettSammanfoga synliga lagerSammanfoga synliga slingorSammanfoga _synliga lager...Sammanfoga _synliga lager...Sammanfoga _synliga lagerSammanfoga lagerSammanfoga palettSammanfoga vektorerMeddelandeprocedurerMeddelande upprepat %d gÃ¥nger.Meddelande upprepat en gÃ¥ng.Meddelanden omdirigeras till stderr.MittentonerFlytta användarinställningarMinsta antal _Ã¥ngranivÃ¥er:DiverseHörnLägeLäge:Modifiera markerad färgModifiera markerade intervallets färgnivÃ¥erModifiera alla färgerÄndra radmellanrumModulmapparModulhanterareModulsökvägModulerMusmarkörerMushjulMushjulshändelserFlyttaFlytta ankareFlytta kanalFlytta flytande markeringFlytta hjälplinjeFlytta hjälplinje: Flytta lagerFlytta lagermaskFlytta slingaFlytta markeringFlytta textlagerFlyttaverktygFlytta objektFlytta lager och markeringarFlytta markeringFlytta aktuellt lagerFlytta aktuell slingaFlytta det markerade filtret nedFlytta det markerade filtret uppÃ¥tFlytta till skärm...Flytta: Multiplicera_Antal färger:Na_vigationNa_vigeringsfönsterFörhandsvisningsstorlek för _navigering:NamnNamn:NavigationNy kanalNy kanalfärgAlternativ för nya kanalerNy färg frÃ¥n _BGNy färg frÃ¥n _FGNy bildNytt lagerNy slingaAlternativ för ny slingaNy mallNy penselny kanalNy kanal med idigare värdenNy kanal...Ny färg frÃ¥n BGNy färg frÃ¥n FGNy färgskalaNy importnytt lagerNytt lager med tidigare värdenNytt lager...Ny palettNy slinga med tidigare värdenNy slinga...Nytt mönsterNya vektorerDet finns inga penslar tillgängliga för detta verktyg.Inget filter markeratInga linjära färgskalor funna i "%s"Inte längre tillgängligInga slingor funna i "%s"Inga slingor funna i buffertenInga mönster tillgängliga för denna Ã¥tgärd.Ingen markeringIngen markering att stryka.Inga miniatyrbilderInte uppställdIngenIngen (snabbast)NormalNormal (128×128)Normala prickarNormalt fönsterInte en vanlig filDet finns inte tillräckligt mÃ¥nga synliga lager för att sammanfoga. Det mÃ¥ste vara minst tvÃ¥.Det finns inte tillräckligt mÃ¥nga synliga slingor för att sammanfoga. Det mÃ¥ste vara minst tvÃ¥.Antalet _processorer att använda:Antal rutnätslinjerAntal lager:A_nnat...OffsetOffsetkanalOffset ritytaOffsetlagerOffsetlagermaskOffset med x/_2, y/2Offset:PÃ¥ diskPÃ¥ flerprocessormaskiner, om GIMP är kompilerad med --enable-mp, sÃ¥ bestämmer detta hur mÃ¥nga processorer GIMP skall använda samtidigt.Endast i minnet_Nytt lager...OpacitetOpacitet:ÖppnaÖppna bildÖppna bild som lagerÖppna platsÖppna textfil (UTF-8)Öppna _plats...Öppna _senasteÖppna bilddialogÖppna penselvalsdialogenÖppna typsnittsvalsdialogenÖppna gradientvalsdialogenÖppna palettvalsdialogenÖppna mönstervalsdialogenÖppna den valda postenÖppnande av "%s" misslyckades: - -%sÖppnande av "%s" misslyckades: %sAlternativ: -Start X:Start Y:Originalbredd:Annat (%s) ...FormUtmatningsnivÃ¥erÖverlagringPDB-anropsfel för procedur "%s": -Typfel för argument %d (väntade %s, fick %s)PDB-anropsfel: -procedur "%s" kunde inte hittasM_önsterFlygande bäckasiner söka -strax hwila pÃ¥ mjuka tuvor.MÃ¥laMÃ¥lningsalternativ som delas av verktygRitverktygsprocedurerMÃ¥larverktyg:MÃ¥lnings_lägeMÃ¥la med luddiga penseldragMÃ¥la bildpunkter med hÃ¥rda kanterMÃ¥la genom att använda mönster eller bildregionerPenselPa_letterPalettPalettredigerarePalettredigerarmenyPalettmapparPalettanvändargränssnittPalett_namn:Palett_filPaletterPalettmenyParasitprocedurerParasiterTolkar "%s" -Klistra inKlistra _in buffert iKlistra in buffert som _nyK_listra in slingaKlistra in _iKlistra in som _nyKlistra in i vald buffertKlistra in vald buffert som ny bildKlistra in vald buffert i urvaletInklistrat lagerSlingaSlingattributSlingnamn:_SlingverktygSlingan kan inte sänkas mer.Slingan kan inte höjas mer.Slingan är redan underst.Slingan är redan överst._Slinga till markeringSlinga till markeringKanal till markering -%s Lägg till -%s Ta bort -%s SnittSlinga till markeringSlingorSlingmenyMönsterMönstermapparMönsteranvändargränssnittFyll mönsterMönsterkällaMönsterMönstermenyPe_nnaPennaProcent av penselns breddProcentuellt:Personlig GIMP-mappPerspektivInformation över perspektivtransformationPerspektiv...Hämtläge %sVälj ett lager eller guideVälj en slingaVälj svartpunktHämta en färg frÃ¥n bildenVälj grÃ¥punktEndast valVälj vitpunktBildpunktsdimensioner:BildpunktsvärdenBildpunkterBildpunkter:Se till att XML-filerna för menyer är korrekt installerade.Var god vänta medans din personliga GIMP-mapp skapas...Var god vänta...InsticksmodulInsticksmodulmiljöMappar för insticksmodulInsticksmodulen kunde inte öppna bildInsticksmodulen kunde inte spara bildInsticksmodulen kraschade: "%s" -(%s) - -Insticksmodulen som dog kan ha rört till GIMPs interna tillstÃ¥nd. Du bör nog spara dina bilder och starta om GIMP för att vara pÃ¥ den säkra sidan.Insticksmodulen returnerade InsticksmodulerInsticksmodulInsticksmoduler och tillägg är externa program som körs av GIMP som bistÃ¥r med utökad funktionalitet. Dessa program söks efter under körning och informationen om deras funktionalitet och modifieringstider lagras i denna fil. Denna fil är endast avsedd för GIMP och bör inte modifieras.PolygonStÃ¥endePosition: %0.6fSatt pÃ¥ platsPosteriseringPosterisera (reducera antalet färger)Posterisera _nivÃ¥er:Kan inte använda posterisering pÃ¥ indexerade lager.InställningarBehÃ¥ll _luminansTryckkänslighetTryck:FörhandsvisningFörhandsvisningen är för gammalFörhandsvisning:FörhandsvisningarUtskriftsstorlekUtskriftsstorlek:Problem med att tolka textparasiten för lager "%s": -%s - -Vissa textegenskaper kan vara felaktiga. Om du inte vill editera textlagret behöver du inte oroa dig för detta.Procedurell databasProcedurell databasFörloppPseudofärgSyfte:KvalitetFrÃ¥gaUndersöker nya insticksmodulerUndersöker insticksmodul: "%s" -SnabbinläsningSnabbmaskRedigera snabbmaskattributSnabbmaskmenySnabbsparandeSnabbmaskAvsluta GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-färgRGB-tomRGBA (%0.3f, %0.3f, %0.3f, %0.3f)HTVÃ…_tervisa "%s"Ã…t_erställ verktygsalternativ_Ã…terställ kanal_Ã…terställ färg_Ã…terställ intervall_Högra ändpunktens färg...RadiellRadie:Höj kanalHöj kanal till toppenFlytta kanal _överstHöj lagerHöj lager till toppenHöj slingaFlytta slingan överstFlytta slingan _överstHöj kanalFlytta kanal överstHöj lagerFlytta lager överstHöj slingaFlytta slingan överstHöj denna bilds displayerHöj fönstret om redan öppetFlödeFlöde:Ã…tervisa senaste_Centrera mittpunkter i markering_Centrera segmentets mittpunkt_Ã…terfördela handtagen i segment_Ã…terfördela handtagen i markeringGe _nytt namn till sparade alternativU_pprepa "%s"Ã…_tergÃ¥...Läser palettfil "%s": Saknar GRÖN komponent pÃ¥ rad %d.Läser palettfil "%s": Ogiltigt antal kolumner pÃ¥ rad %d. Använder standardvärde.Läser palettfil "%s": Saknar BLÃ… komponent pÃ¥ rad %d.Läser palettfil "%s": Saknar RÖD komponent pÃ¥ rad %d.Läser palettfil "%s": RGB-värdet utanför giltigt omrÃ¥de pÃ¥ rad %d.KlarVerkligen tömma bildens Ã¥ngringshistorik?Ändra kortkommandot kommer ta bort det frÃ¥n "%s"._Ã…terskapa förhandsvisningÃ…terskapa förhandsvisningRekt. markeringRödRöd:Gör omReducera bilden till ett fixt antal färgerReducera bilden till tvÃ¥ färger genom att använda ett tröskelvärdeUppdatera penslar_Uppdatera färgskalorUppdatera paletterUppdatera mönsterRegistreradLäs om _nuvarande tema_Läs om alla förhandsvisningarLäs om alla förhandsvisningarKom ihÃ¥g nuvarande verktyg, mönster, färg och pensel mellan GIMP-sessioner.FjärrbildTa bort kanal_Ta bort hängande posterTa bort lytande markeringTa bort hjälplinjeTa bort lagerTa bort parasit frÃ¥n bildTa bort parasit frÃ¥n objektTa bort slinga_Ta bort postTa bort hängande posterFlytande markeringTa bort parasitTa bort den valda postenTa bort det markerade filtret frÃ¥n listan med aktiva filter.Borttagning av kortkommando misslyckades.Byt namn pÃ¥ kanalByt namn pÃ¥ lagerByt namn pÃ¥ slingaGe nytt namn till sparade verktygsalternativByt namn pÃ¥ textlagerByt namn pÃ¥ objektRita dragÄndra ordning pÃ¥ kanalÄndra ordning pÃ¥ lagerÄndra ordning pÃ¥ slingaUpprepa senasteUpprepa:Ersätt aktuell markeringReplikeraReplikera färgskalesegmentReplikera markering av färgskalaReplikera segmentReplikera markeringOmplacera kanalOmplacera lagerOmplacera vektorerLäs om typsnittslistaÃ…terställ verktygsalternativÃ…terställ _alla verktygsalternativ...Ã…terställ alla filterÃ…terställ alla filter...Ã…terställ alla verktygsalternativÃ…terställ det markerade filtret till standardalternativÃ…terställ till standardvärdenÃ…terställ verktygsordning och synlighetÄndra storlekÄndra storlek pÃ¥ kanalÄndra storlek pÃ¥ bildÄndra storlek pÃ¥ lagerÄndra storlek pÃ¥ slingaÄndra storlek pÃ¥ textlagerÄndra storlek pÃ¥ bildÄndra storlek pÃ¥ bildÄndra storlek pÃ¥ fönstret vid _zoomÄndra storlek pÃ¥ fönstret vid ändring av bild_storlekÄndrar storlek...Ändring av upplösningUpplösning:ResursanvändningResurskonfigurationÃ…terställ alternativ frÃ¥n...Ã…terställ sparade kortkommandon varje gÃ¥ng GIMP startar.Begränsa modifiering till polygonerÃ…tergåÅtergåÅtergÃ¥ frÃ¥n "%s" till "%s"?Ã…tergÃ¥ till gammal bildÃ…tergÃ¥ng misslyckades. Inget filnamn är associerat med den här bilden.Ã…tergÃ¥ng till "%s" misslyckades: - -%sHögra ändpunktens färgHögerjusteradRoteraRotera 90 grader m_otursRotera 90 grader m_edursRotera kanalRotera lagerRotera slingaRotera textlagerRotera _180 graderRotera bildRotera lagret eller markeringenRoterar...RotationsinformationRund_LutaVisa r_utnätK_rymp...S_pikar_Byt ut färger_Spara höger färg tillSampelmedelSampla sammanfogadeMättnad:MättnadSparaSpara "%s" som POV-RaySpara kurvorSpara fellogg till filSpara bildSpara inställningar för inmatningsenheter _nuSpara kortkommandon _nuSpara nivÃ¥erSpara verktygsalternativSpara fönsterpositioner _nu_Skriv alla fel till fil...Spara _markering till fil...Spara _som...Spara en _kopia...Spara en kopia av bildenSpara alla fel_Spara som POV-Ray...Spara som _mall...Spara ändrade kortkommandon när GIMP avslutar.Spara kurvinställningar till filSpara enhetsstatusSpara färgskala som POV-RaySpara nivÃ¥inställningar till filSpara alternativ till...Spara markeringSpara markering till kanalSpara ändringar till bild "%s" innan du avslutar?Spara positioner och storlekar pÃ¥ huvuddialogfönstren när GIMP avslutar.S_para till kanalSparade alternativSparar "%s" -Sparande av filen "%s" misslyckades: -%sSparar bilderSÃ¥gtandsvÃ¥gSkalbar SVG-bild (*.svg)SkalaSkala kanalSkala bildSkala om lagerSkala slingaSkala om textlagerSkala bildSkala bildX-skalningsförhÃ¥llande:Y-skalningsförhÃ¥llande:SkalningsförhÃ¥llande:Skala lagret eller markeringenSkalningSkalningsinformationSkalar du bilden till den valda storleken kommer den att använda mer minne än vad "Maximal bildstorlek" är satt till i inställningarna (nu satt till %s).Den valda bildstorleken kommer att krympa bort nÃ¥gra lager helt.Skalar...SaxarMaskMappar för Script-FuSkriptStega NerÃ¥tStega NerÃ¥t (Alt)Stega NerÃ¥t (Control + Alt)Stega NerÃ¥t (Control)Stega NerÃ¥t (Shift + Alt)Stega NerÃ¥t (Shift + Control + Alt)Stega NerÃ¥t (Shift + Control)Stega NerÃ¥t (Shift)Stega VänsterStega Vänster (Alt)Stega Vänster (Control + Alt)Stega Vänster (Control)Stega Vänster (Shift + Alt)Stega Vänster (Shift + Control + Alt)Stega Vänster (Shift + Control)Stega Vänster (Shift)Stega HögerStega Höger (Alt)Stega Höger (Control + Alt)Stega Höger (Control)Stega Höger (Shift + Alt)Stega Höger (Shift + Control + Alt)Stega Höger (Shift + Control)Stega Höger (Shift)Stega UppÃ¥tStega UppÃ¥t (Alt)Stega UppÃ¥t (Control + Alt)Stega UppÃ¥t (Control)Stega UppÃ¥t (Shift + Alt)Stega UppÃ¥tStega UppÃ¥t (Shift + Control)Stega UppÃ¥t (Shift)VäljMarkera alltVälj penselmapparMarkera via färgVälj färgVälj händelseÃ¥tgärdVälj miljömapparVälj fil_typ (%s)Välj typsnittsmapparVälj färgskalemapparVälj modulmapparMarkera ingetVälj palettmapparVälj mönstermapparVälj mappar för insticksmodulVälj primär färg att modifieraVälj intervall att modifieraVälj mappar för Script-FuVälj källaVälj växlingskatalogVälj temporär katalogVälj temaVälj temamapparVälj zoomfaktor:Välj _Understaa lagretVälj _egen färg...Välj _Nästa lagerVälj _föregÃ¥ende lagerVälj _översta lagretMarkera alltMarkera via färgMarkera kontinuerliga ytorVälj egen färg pÃ¥ rityteutfyllnadMarkera elliptisk regionMarkerar frihandMarkera ingetVälj palettfilMarkera rektangulära regionerMarkera regioner via färgMarkera former i bildenVälj växlingskatalogVälj antalet gÃ¥nger det -markerade segmentet ska replikeras.Välj antalet gÃ¥nger som -markeringen ska replikeras.Välj antalet uniforma delar som du -vill dela segmenten i markeringen i.Välj antalet uniforma delar som du -vill dela det markerade segmentet i.Markera transparenta omrÃ¥denVälj webbläsare_Markering till slingaMarkeringMarkeringsredigerareMeny för markeringsredigerareMarkeringsmaskMarkeringsverktygsprocedurerMarkeringsmaskMarkering till slinga (_avancerat)Markering till slingaMarkering: Markering: ADDERAMarkering: SKÄRNINGMarkering: ERSÄTTMarkering: SUBTRAHERAKänslighetStäll in färg pÃ¥ canvasutfyllnadSätt kanalfärgSätt kanalopacitetSätt färgkartaStäll in färg pÃ¥ rityteutfyllnadStäll in storlek pÃ¥ bildcanvasAnge bildupplösning för utskriftSätt objekt som ensamt länkadSätt objekt som ensamt synligStäll in storlek pÃ¥ lagergränsSätt namn frÃ¥n _textSätt lageropacitetSätt bakgrundsfärgSätt förgrundsfärgSätt objektlänkningSätt lagermodSätt lageropacitetSätt spara transparensBestämmer en övre gräns för mängden minne som används per bild för att spara operationer pÃ¥ Ã¥ngrastacken. Oberoende av denna inställning sparas Ã¥tminstone sÃ¥ mÃ¥nga Ã¥ngra-operationer som specificerats pÃ¥ annat hÃ¥ll.Bestämmer webbläsaren som används av hjälpsystemet.Ställer in färg pÃ¥ canvasutfyllnad om utfyllnadsläget är satt till egen färg.Anger den externa webbläsaren som skall användas. Detta kan vara en absolut sökväg eller namnet pÃ¥ en binärfil att leta efter i användarens PATH. Om kommandot innehÃ¥llet "%s" ersätts det med URL:en; annars läggs URL:en till efter kommandot separerat med ett mellanslag.Bestämmer interpolationsnivÃ¥n för skalning och andra transformationer.Bestämmer sättet pÃ¥ vilket transparens visas i bilder.Bestämmer det minsta antal operationer som kan Ã¥ngras. Fler Ã¥ngranivÃ¥er är tillgängliga tills Ã¥ngrastorlekgränsen är nÃ¥dd.Anger markörläget GIMP skall använda.Sätter skärmens horisontella upplösning i punkter per tum. Om det är satt till 0, frÃ¥gar vi X-servern efter bÃ¥de horisontell och vertikal upplösning.Sätter skärmens vertikala upplösning i punkter per tum. Om det är satt till 0, frÃ¥gar vi X-servern efter bÃ¥de horisontell och vertikal upplösning.Anger bildpunktsformatet för markörer GIMP skall använda.Bestämmer förhandsvisningsstorlek för lager och kanaler i nya dialoger.Bestämmer storleken pÃ¥ schackrutorna som används för transparens.Bestämmer storleken pÃ¥ förhandsvisningen som är tillgänglig i nedre högra hörnet av bildfönstret.Sätter storleken pÃ¥ förhandsgranskningarna i historiken.Anger storleken pÃ¥ miniatyrbilden som visas i öppna-dialogen. Observera att GIMP inte kan skapa miniatyrbilder om förhandsgranskning av lager är avstängt.Bestämmer platsen för swapfilen. Gimp använder en plattbaserad minnesallokeringsmetod. Swapfilen används för att snabbt och enkelt lägga ut plattor pÃ¥ hÃ¥rddisken och tillbaka igen. Var medveten om att swapfilen lätt kan bli mycket stor om GIMP används med stora bilder. Allt kan ocksÃ¥ bli mycket lÃ¥ngsamt om swapfilen är skapad i en katalog som är monterad via NFS. Av dessa anledningar kan det vara en bra idé att lägga din swapfil i "tmp".Bestämmer katalogen för tillfällig lagring. Filer dyker upp här medan man kör GIMP. De flesta filerna försvinner igen när GIMP avslutas, men nÃ¥gra kan komma att finnas kvar sÃ¥ det är bra om katalogen inte är delad med andra användare.Bestämmer texten som visas i statusraden pÃ¥ bildfönster.Bestämmer texten som vilsas i titelraden pÃ¥ bildfönster.Bestämmer om GIMP ska skapa förhandsvisningar av lager och kanaler. Förhandsvisningar av lager och kanaler är trevliga att ha men dom kan slöa ner saker för stora bilder.SkuggtypSkuggorFormForm:Formfyllning (vinkel)Formfyllning (gropig)Formfyllning (sfärisk)Gör skarpareGör kanalen skarpareGör markering skarpareLutaX-lutningsmagnitud:Y-lutningsmagnitud:Luta lagret eller markeringenInformation för lutningLutar...Korta streckKortkommandonKortkommande "%s" är redan taget av "%s" frÃ¥n grupp "%s".Visa lagermaskVisa _linjalerVisa s_tatusradVisa rullnings_listerVisa _hjälplinjerVisa _lagergränsVisa _menyradVisa m_arkeringVisa _penselformVisa _förgrunds- & bakgrundsfärgVisa _hjälplinjerVisa _lagergränsVisa _menyradVisa _linjalerVisa aktiva _Penslar, mönster och FärgskalorVisa aktiv _bildVisa r_utnätVisa hjälp_knapparändra storlek pÃ¥ bildVisa interaktiv gränsVisa minnesanvändningVisa snabbtangenter i meny (accesstangenter)Visa _verktygsmarkörVisa m_arkeringVisa s_tatusradVisa rullnings_listerVisa denna nästa gÃ¥ng GIMP startarVisa tips vid _uppstartVisa verktygs_tipsVisa zoomprocentVisa zoomförhÃ¥llandeMinska kanalKrymp markeringVisa _optimalt fönsterKrymp frÃ¥n bildkantenKrymp markering medVisa optimalt fönsterStorlekStorlek i minne:Storlek pÃ¥ _miniatyrbilder:Storlek:Hoppar över "%s": fel GIMP-protokollversion.LitenMindre förhandsvisningarMjukUtjämna kanterSmetaSmeta bildenSnä_pp mot hjälplinjerS_näpp mot rutnätMjukt ljusSolidKällaMellanrumMellanrum:Glesa prickarSärskild filSpecifierar hur omrÃ¥det runt bilden skall ritas.Hastigheten pÃ¥ marcherande myror i markeringskant. Detta värde är i millisekunder (mindre tid indikerar snabbare march).Hastighet:Sfärisk (_minskande)Sfärisk (_ökande)Spikar:Spiral (moturs)Spiral (medurs)DelaDela färgskalesegment uniformtDela färgskalesegmenten uniformtDela segment uniformtDela segment _uniformt..._Dela segment vid mittpunktDela segmenten uniformtDela segmenten _uniformt..._Dela segment vid mittpunkterFyrkantigSt_atus och textStac_kStandardStartar tilläggStartar tillägg: "%s" -TillstÃ¥nd:Statisk färgStatisk grÃ¥Status & besk.Status & textMed. avvik:StreckningStandard IDStry_k längs slingaStr_yk slinga...Stryk kanalStryk längs slingaStryk längs markeringStryk längs linjeStryk längs slingaStryk längs slinga med tidigare värdenStryk längs slinga...Stryk längs markering med tidigare värdenStryk längs markering...Stryk med ett mÃ¥larverktygHörntyp runt statusradstextenSubtraktionTa bort frÃ¥n aktuell markeringSupersamplingVäxlingskatalog:_VerktygTe_xtTe_xtverktygTemporär katalog:MallarMallmenyTemporär procedurAvslutar insticksmodul: "%s" -TextTextfärgTextredigerareTextlagerText ändradTextprocedurerGIMPGIMP hjälpläsarinsticksmodulen verkar saknas i din installation.Den aktiva penseln. -Klicka för att öppna penseldialogen.Den aktiva färgskalan. -Klicka för att öppna färgskaledialogen.Den aktiva bilden. -Klicka för att öppna bilddialogen.Det aktiva mönstret. -Klicka för att öppna mönsterdialogen.Bakgrundsfärgen pÃ¥ rutnätet; används endast för dubbelstreckad stil.Flerjobbstolkaren "%s" är inte tillgänglig, flerjobbsläge avstängt.Den valda filnamnskodningen kan inte konverteras till UTF-8: %s - -Kontrollera värdet pÃ¥ miljövariabeln G_FILENAME_ENCODING.Filnamnet "%s" kunde inte konverteras till en korrekt URI: - -%sFörgrundsfärg pÃ¥ rutnätet."gimprc" används för att lagra personliga inställningar sÃ¥som GIMPs standardbeteende. Även sökvägar till penslar, färgkartor, färgskalor, mönster, insticksmoduler och moduler konfigureras här.Horisontell bildupplösning.Lagret du har valt är ett textlager, men har blivit ändrat av andra verktyg. Om du ändrar lagret med textverktyget sÃ¥ slänger du bort dessa förändringar. - -Du kan editera lagret eller skapa ett nytt textlager frÃ¥n dess textattribut.Namnet pÃ¥ katalogen för GIMPs användarkonfiguration kan inte konverteras till UTF-8: %s - -Antagligen använder ditt filsystem en annan kodning än UTF-8, men du har inte talat om det för GLib. Sätt miljövariabeln G_FILENAME_ENCODING.'sessionrc' används för att spara var dialogfönstren var placerade pÃ¥ skärmen när du senast använde GIMP. Du kan konfigurera GIMP att öppna dessa dialoger pÃ¥ samma ställe.Miniatyrbilden i öppna-dialogen uppdateras automatiskt om filen som förhandsgranskas är minde än storleken som sätts här.Plattcachen används för att säkerställa att GIMP inte flyttar plattor mellan minne och hÃ¥rddisk i onödan. Ett högre värde lÃ¥ter GIMP använda mindre swaputrymme, men fÃ¥r GIMP att använda mer minne. Motsvarande sÃ¥ lÃ¥ter en mindre cache GIMP använda mer swaputrymme och mindre minne.Enheten som används för koordinatvisning när man inte har punkt till punkt.Filen "unitrc" används för att lagra dina egna enheter. Du kan definera ytterligare enheter och använda dem precis som du använder de inbyggda enheterna tum, millimeter, punkter och picas. Denna fil skrivs över varje gÃ¥ng du avslutar GIMP.Vertikal bildupplösning.Fönstertypen som sätts pÃ¥ dockningsfönster. Detta kan pÃ¥verka hur din fönsterhanterare dekorerar och handhaver dockningsfönster.Fönstertypen som sätts pÃ¥ verktygslÃ¥dan. Detta kan pÃ¥verka hur din fönsterhanterare dekorerar och handhaver verktygslÃ¥defönstret.TemaTemamapparTemanDet finns %d bilder med osparade ändringar:Det finns inte tillräckligt mÃ¥nga synliga lager för att sammanfoga nerÃ¥t.Man mÃ¥ste alltid kompromissa mellan hastighet och minnesÃ¥tgÃ¥ng. För det mesta väljer GIMP hastighet över minne. Om minne är viktigt, prova med att använda denna inställningen.Det finns inget aktivt lager eller kanal att kopiera ifrÃ¥n.Det finns inget aktivt lager eller kanal att klippa ifrÃ¥n.Det finns inget aktivt lager eller kanal att stryka tillDet finns inget aktivt lager eller kanal att stryka till.Det finns en bild med osparade ändringar:Det borde finnas en fil som heter "%s". Kontrollera din installation.Ett fel uppstod vid tolkningen av din fil "%s". Standardvärden kommer att användas. En säkerhetskopia av din konfiguration har skapats vid "%s".Den här filen innehÃ¥ller en samling standardstorlekar för media som fungerar som bildmallar.Denna mapp söks i för bildmallar.Denna mapp söks i för användarinstallerade teman.Denna mapp används för att lagra typsnitt du endast vill ha synliga i GIMP. GIMP söker i denna mapp utöver systemets installation av GIMP-typsnitt när den söker efter typsnitt. Använd denna mapp endast om du verkligen vill ha typsnitt enbart för GIMP; använd annars din normala typsnittsmapp.Denna mapp används för att lagra parameterfiler för kurvverktyget.Denna mapp används för att lagra parameterfiler för nivÃ¥verktyget.Denna mapp används för att lagra verktygsinställningar.Denna mapp används för att lagra användarskapade och installerade skript. GIMP söker i denna mapp utöver systemets GIMP-skriptmapp när den söker efter skript.Denna mapp används för att lagra användarskapade, temporära eller pÃ¥ annat sätt ej systemstödda DLL-moduler. GIMP söker i denna mapp utöver systemets GIMP-modulmapp när den söker efter moduler att läsa in vid start.Denna mapp används för att lagra användarskapade, temporära eller pÃ¥ annat sätt ej systemstödda tillägg till insticksmodulmiljön. GIMP söker i denna mapp utöver systemets GIMP-miljömapp när den söker efter modifieringsfiler till insticksmodulmiljön.Denna mapp används för att lagra användarskapade, temporära eller pÃ¥ annat sätt ej systemstödda insticksmoduler. GIMP söker i denna mapp utöver systemets mapp för insticksmoduler när den söker efter insticksmoduler.Denna mapp används för att spara användardefinierade penslar. GIMP kontrollerar denna mapp utöver systemets installation av GIMP-penslar när den söker efter penslar.Denna mapp används för att lagra användardefinerade färgskalor. GIMP söker i denna mapp utöver systemets installation av GIMP-färgskalor när den söker efter färgskalor.Denna mapp används för att lagra användardefinerade mönster. GIMP söker i denna mapp utöver systemets installation av GIMP-paletter när den söker efter paletter.Denna mapp används för att lagra användardefinerade mönster. GIMP söker i denna mapp utöver systemets installation av GIMP-mönster när den söker efter mönster.Denna mapp används för att temporärt lagra Ã¥ngrabuffertar för att minska minnesanvändningen. Om GIMP avslutas onormalt kan filer lämnas kvar i denna mapp i formen: gimp<#>.<#>. Dessa filer är värdelösa mellan olika GIMP-sessioner och kan tas bort.Denna mapp kommer att innehÃ¥lla ett antal viktiga filer. Klicka pÃ¥ nÃ¥gon av filerna eller mapparna i trädet för att fÃ¥ mer information om det valda objektet.Detta är avstÃ¥ndet i bildpunkter där fästning till hjälplinjer och rutnät aktiverasDetta program distribueras i hopp om att det ska vara användbart, men UTAN NÃ…GON SOM HELST GARANTI, även utan underförstÃ¥dd garanti om SÄLJBARHET eller LÄMPLIGHET FÖR NÃ…GOT SPECIELLT ÄNDAMÃ…L. Se GNU General Public License för ytterligare information.Detta program är fri programvara. Du kan distribuera det och/eller modifiera det under villkoren i GNU General Public License, publicerad av Free Software Foundation, antingen version 2 eller (om du sÃ¥ vill) nÃ¥gon senare version.Detta textinmatningsfält är begränsat till %d tecken.Det här verktyget har inga alternativ.TröskelvärdeKan inte använda tröskelvärde pÃ¥ indexerade lager.Tröskelvärde:Miniatyrbild %d av %dBildblockscache_storlek:Bildblockscachestorlek:Lutning:JättelitenTitel och statusTill _slingaLe_ksakerVisa snabbmaskVisa _snabbmaskFör mÃ¥nga felmeddelanden!VerktygsalternativMeny för verktygsalternativVerktygsväxel %sVerktygs_alternativVerktygsikonVerktygsikon med korshÃ¥rVerktygslÃ¥daVerktygslÃ¥daVerktygslÃ¥demenyVerktygVerktygslÃ¥demenyVerktyg som luddigt val och fyll hittar ytor med en sÃ¥ddfyllnadsalgoritm. SÃ¥ddfyllnaden börjar pÃ¥ det valda bildelementet och rör sig utÃ¥t i alla riktningar tills skillnaden i intensitet mot orginalet är större än ett specifierat tröskelvärde. Detta är standardvärdet för tröskelvärdet._TransparensÖverför alfa till maskTransformeraTransformera kanalTransformeringsriktningTransformera lagerTransformera slingaTransformera textlagerTransformeringsverktygsprocedurerTransformera lagerTransformera slingaTransformera urvalTransformationTransformeringsprocedurerTransformerar...Översatt avTransparensTransparens_typ:Triangulär vÃ¥gSann färgTypTyp %sSkriv ny acceleratorSkriv ny accelerator, eller tryck Backspace för att rensaKan inte lägga till lagermask eftersom lagret redan har en.Kunde inte kopiera eller klippa ut eftersom den markerade regionen är tom.Kan inte öppna en växlingsfil. För att undvika förlust av data, kontrollera platsen för och tillÃ¥tna filoperationer pÃ¥ katalogen för växlingsfiler som är definierad i dina alternativ (just nu "%s").Kan inte öppna växlingfilen. Gimp har slut pÃ¥ minne och kan inte använda växlingfilen. Delar av dina bilder kan vara förstörda. Försök spara ditt arbete under andra filnamn, starta om Gimp och kontrollera platsen för växlingskatalogen i dina inställningar.Kan inte köra %s Ã¥teranrop. Den motsvarande insticksmodulen kan ha kraschat.OdefineradÃ…ngraÃ…ngringshistorikÃ…ngrings_historikEnheterOkändOkänd filtypOkänd palettfilstyp: -%sGlömNamnlösNamnlösAnvänd "_punkt för punkt" som standardAnvänd dynamiska _kortkommandonAnvänd _webbläsare iställetAnvänd alla synliga lager vid krympning av markeringenAnvänd svartvit (1-bit) palettAnvänd färg frÃ¥n färgskalaAnvänd egen palettAnvänd informationsfönsterAnvänd nät-optimerad palettLogg över användarinstallationAnvändargränssnittVerktygsfönsterVärdeVärde:VektorlägeVersion %s presenteras avVersion:VertikalVertikal början pÃ¥ första linjen; detta kan vara negativt.Veritkalt avstÃ¥nd mellan rutnätslinjer.Mycket storMycket litenVisaVisa som _rutnätVisa som _listaVisa som rutnätVisa som listaVisuell klass:Visuellt djup:Varning: Misslyckades med att läsa in data: - -%sVarning: Misslyckades med att spara data: - -%sWebbläsareWebbläsareVälkommen till -GIMP %d.%d användarinstallationNär aktiverat följer dialogen automatiskt bilden du arbetar pÃ¥.När aktiverat visar GIMP snabbtangenter i menyer.När aktiverat kommer alla mÃ¥larverktyg att visa en förhandsvisning av den nuvarande penselns form.När aktiverat blir en bild den aktiva bilden när dess bildfönstar fÃ¥r fokus. Detta är användbart för fönsterhanterare med "klicka för fokus".När aktiverat kommer alla dialoger att visa en hjälpknapp som leder till relevant hjälp. Du kan se hjälpen även utan denna knapp genom att trycka F1.När aktiverad kan menyer ryckas loss.När aktiverad öppnar F1 hjälpläsasaren.När aktiverad kommer GIMP inte spara bilden om den inte blivit ändrad sedan den öppnades.När aktiverat använder GIMP ett informationsfönster per bildvy.När aktiverat frÃ¥gas X-servern om musens nuvarande position vid varje rörelse-event, snarare än att förlita sig pÃ¥ positionsuppskattning. Detta betyder att mÃ¥lning med stora penslar blir mer exakt, men kan vara lÃ¥ngsammare. Konstigt nog blir mÃ¥landet snabbare med denna inställning pÃ¥ vissa X-servrar.När aktiverad kommer markören visas över bilden när ett mÃ¥larverktyg används.När aktiverat är rutnätet synligt. Detta kan ocksÃ¥ ändras med "Visa -> Visa rutnät"-kommandot.När aktiverat är hjälplinjerna synliga. Detta kan ocksÃ¥ ändras med "Visa -> Visa hjälplinjer"-kommandot.När aktiverat ändrar bildfönstret automatiskt storlek när man zoomar in eller ut i bilden.När aktiverat ändrar bildfönstret automatiskt storlek när bildens fysiska storlek ändras.När aktiverat är lagerkanten synlig. Detta kan ocksÃ¥ ändras med "Visa -> Visa lagerkant"-kommandot.När aktiverat är menyraden synlig. Detta kan ocksÃ¥ ändras med "Visa -> Visa menyrad"-kommandot.När aktiverat är linjalerna synliga. Detta kan ocksÃ¥ ändras med "Visa -> Visa linjaler"-kommandot.När aktiverat är rullningslisterna synliga. Detta kan ocksÃ¥ ändras med "Visa -> Visa rullningslister"-kommandot.Om aktiverad kommer den valda penseln att användas för alla verktyg.Om aktiverad kommer den valda gradienten att användas för alla verktyg.Om aktiverad kommer det valda mönstret att användas för alla verktyg.När aktiverat är urvalet synlig. Detta kan ocksÃ¥ ändras med "Visa -> Visa urval"-kommandot.När aktiverat är statusraden synlig. Detta kan ocksÃ¥ ändras med "Visa -> Visa statusrad"-kommandot.När aktiverat ser detta till att varje bildelement i bilden motsvaras av ett bildelement pÃ¥ skärmen.När aktiverat säkerställer detta att hela bilden är synlig när filen öppnas, annars visas bilden i 1:1-skala.När aktiverad kan du ändra kortkommandon för menyval genom att trycka pÃ¥ en tangentkombination medan menyvalet är markerat.VitVitbalans fungerar endast pÃ¥ RGB-lager.BreddBredd:FönsterhanteringFönsterhintarFönsterpositionerSkriver "%s" -XXCF-fel: XCF-filversion %d som inte stöds pÃ¥träffadXCF-varning: version 0 av XCF-filformatet -sparade inte indexerade färgkartor rätt. -Byter ut grÃ¥skalekartan.YGulGul:Du försöker skapa en bild av storlek %s.Du kan släppa dockningsdialoger här.Du bör ha fÃ¥tt en kopia av GNU General Public License tillsammans med detta program. Om inte, skriv till Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Du mÃ¥ste starta om GIMP för att följande ändringar ska ha effekt:Din GIMP-installation är klar:Dina inställningar för inmatningsenheter kommer Ã¥terställas till standardvärden nästa gÃ¥ng du startar GIMP.Dina tangentbordsgenvägar kommer Ã¥terställas till standardvärden nästa gÃ¥ng du startar GIMP.Din förnsteruppställning kommer Ã¥terställas till standardvärden nästa gÃ¥ng du startar GIMP.Zoom- och storleksändringseteendeZooma 1:1Zooma alltZooma inZooma utZoomfaktorZoomfaktor:_Zooma alltZooma _inZooma _utZooma alltZoomfaktor: %d:1Zooma bild när förnsterstorlek ändrasZooma inZooma in och utZooma utZooma:[ Grundbild ]_Om_InhämtaLägg till färg frÃ¥n _BGLägg till färg frÃ¥n _FG_Lägg till flik_Lägg till markering_Avancerade alternativ_Airbrush_Allt_Ankra lager_Kantutjämning_Godtycklig rotation...Ar_tistiskt_Aspekt_Auto_B_BG-färg_Bakgrundsfärg:_Svart (Full transparens)_Färgtoningstyp för segment_Färgtoningsfunktion för markeringGör _suddigare_Ljusstyrka:_Pensel_Penslar_Penslar, mönster och Färgskalor_Fyll_Buffert_Med färgMarkera _per färg_C_Ändpunktsstil:_Kanaler_Rensa fel_Töm Ã¥ngringshistorik_Klona_Stäng_Stäng flik_Moln_Färgverktyg_Färger_Konfigurera färg och opacitet..._Sammanhang_Sammanhangshjälp_KopieraKopie_ra namngiven..._Skapa en bild frÃ¥n mall..._Beskär och Ändra storlek_Beskär bild_Kurvig_Kurvor..._Mörk rutfärg_Standardfärger_Ta bort pensel_Ta bort buffertT_a bort kanal_Ta bort färg_Ta bort färgskala..._Ta bort bild_Ta bort lager_Ta bort palett_Ta bort slinga_Ta bort mönster..._Ta bort sparade alternativ_Ta bort segment_Ta bort markering_Ta bort mallAvfärga_Lossa flik_Enhetsstatus_Fönster_Förkasta ändringar_Förkasta textinformation_Störningar_Punkt för punkt_Duplicera_Redigera_Redigera pensel..._Redigera kanalattribut..._Redigera färg..._Redigera färgskala..._Redigera lagerattribut..._Redigera palett..._Redigera slingattribut..._Redigera mönster..._Redigera mall..._Ellipsmarkering_Aktivera förhandsvisning av lager och kanaler_Enorm_Jämna ut_Suddare_Förgrundsfärg_Arkiv_Fyll med:_Passa bilden till fönster_Platta ut bilden_Vänd_Vänd pÃ¥ segment_Vänd markering_Flyt_Typsnitt_Typsnitt_Förgrundsfärg:_Fri markering_G_Generiska_Gigantisk_FärgskalaF_ärgskala_GrÃ¥skala_GrÃ¥skalekopia av lager_Öka..._Hjälplinje_HÃ¥rdhet_Hjälp_Horisontell:_Nyans:J_ättestor_Ikon_Ikon:_BildB_ilder_Importera_Importera palett..._Indexerad..._Informationsfönster_Snitt med markering_Invertera_Fogstil:_Stor_Lager_Lager_Lager, kanaler och slingorVänster ändpunkt_Vänstra grannens högra ändpunkt_NivÃ¥er..._Ljus rutfärg_Ljuseffekter_Ljusstyrka:Linje_stil_Linjär_Länkad_Läs in vänster färg frÃ¥n_Sänk kanal_Sänk lager_Sänk slinga_M_Manuellt_Mappa_Mask_Mask till markering_Maximalt antal färger:_Mät_Mellan_Sammanfoga palett..._SlÃ¥ ihop importerade slingor_Flytta GIMP 2.0 användarsinställningar_Allmänt och blandat_Kantgräns:_LägeMod_ulhanterare_Flytta_Namn:_Natur_Ny pensel_Ny kanal_Ny kanal..._Ny inställning..._Ny färgskala_Nytt lager_Nytt lager..._Ny palett_Ny slinga_Ny slinga..._Nytt mönster_Ny mall..._Ny vy_Ny..._Nästa tips_Brus_Inget_Offset..._Opacitet_Öppna bild_Öppna...Färg pÃ¥ rityte_utfyllnad_MÃ¥larverktyg_Pensel_PalettKli_stra in_Klistra in buffertKlistra in namngi_ven..._Slingor_Mönster_Perspektiv_Posterisering..._Inställningar_Förhandsgranskning_Förhandsvisningsstorlek_FöregÃ¥ende tips_Utskriftsstorlek..._Egenskaper_snabbmask aktiv_Avsluta_R_RGB_Radie_Höj kanal_Höj lager_Höj slinga_Höj vy_Höj eller öppna bild_Ändra kortkommando_Rekt. markering_Gör om_Gör om %s_Uppdatera penslar_Uppdatera färgskalor_Uppdatera paletter_Uppdatera mönster_Ta bort oanvända färger frÃ¥n den slutgiltiga paletten_Rendera_Ersätt_Replikera segment..._Replikera markering..._Läs om typsnittslista_Ã…terställ ordning & synlighet_Ã…terställ sparade inställningar för inmatningsenheter till standardvärden_Ã…terställ sparade kortkommandon till standardvärden_Ã…terställ sparade fönsterpositioner till standardvärden_Ã…terställ alternativ frÃ¥n_Höger ändpunkt_Högra grannens vänstra ändpunkt_Rotera_Mättnad:_Spara_Spara vänster färg till_Spara alternativ till_Spara inställningar för inmatningsenheter vid avslutning_Spara kortkommandon vid avslut_Spara fönsterpositioner vid avslutning_Skala_Skala bild...S_kala lager..._Skala importerade slingor för att passa bilden_Välj_Markering_Markeringsredigerare_MarkeringsverktygF_ormGör _skarpareVisa bildm_arkering_Visa i verktygslÃ¥dan_Sinusformad_Liten_Smeta_FästningsavstÃ¥nd:_Stryk längs markeringStryk längs markering..._Ta bort frÃ¥n markeringF_likstil_Mall:Ma_llar_Text_Tröskelvärde..._Jätteliten_Dagens tips_Verktyg_Verktyg_Överföringslagrets alfakanal_Transformera_Transformeringsverktyg_Ã…ngra_Ã…ngra %s_Vertikal:_Visa_Synlig_Nät_Webbläsare att använda:_Vit (Full opacitet)_Vitbalans_Bredd:_SlÃ¥ runt_X upplösning:_X:_Xtns_Y_Y upplösning:_Y:_Zooma_Zooma (%s)färgerkopiapunkter/tum"ja" eller "nej" för booleskt element %s förväntades, fick "%s"ödesdigert tolkningsfelgrÃ¥skalagrÃ¥skala-tomtumtumindexeradindexerad-tomogiltig UTF-8-strängogiltigt värde "%ld" för ikontypogiltigt värde "%ld" för element %sogiltigt värde "%s" för ikontypogiltigt värde "%s" för element %smillimetermillimeterminut---procent:picapicasbildpunktbildpunkterbildpunkter/%abildpunkter/%spunktpunktersekundtips-locale:svJan Morén -Christian Rose -Tomas Ögrenvärde för elementet %s är inte en giltig UTF-8-strängvid tolkning av elementet "%s": %s \ No newline at end of file diff -uraN gimp-2.2.8/po/tr.gmo gimp-2.2.9/po/tr.gmo --- gimp-2.2.8/po/tr.gmo 2005-01-22 17:33:17.000000000 +0100 +++ gimp-2.2.9/po/tr.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,203 +0,0 @@ -Þ•kt#çÌFh^i^&^G¦^9î^@(_2i_Pœ_Oí_9=`-w`9¥`;ß`7a Sa ]aga -vaa‘a -©a´a¼aÄaÚa0áab#b6bMbTb\b db pbK}b.Ébøb -cc c/cBc -Tc _c -kcvc‹c žc¨c·c -ÀcËcÚcícdd-dJdSdhd|dd¯dÄdØdìde -"e-e5eGePepe„e Œe –e£e©e¼e -ÃeÎeèeþe f -ff.f@fAPf ’f f°f¸f½fÆfØféf -òfýfg-g4g;gAg"Ig lgxg}gƒgˆg˜g§g¸gÌg7àg h %h3hh°§°¼°Ë°Ý° -æ°ñ° ± ±±0± 6±&B±i±±’± ™±º±.Ö±2²+8²5d² š² §² ±²&¾²å².ÿ².³4³ I³ U³ v³—³©³º³˳Ò³Û³í³´´´(´B´T´;t´@°´=ñ´ /µ<µ\µtµ|µµ–µ ›µ¨µ õеåµëµ -ûµ¶¶(¶7¶ -O¶ -Z¶e¶„¶Ÿ¶·¶Ѷ -׶â¶è¶ ÷¶··7· O·[·p· €·Ž·­·³·÷Ù·ñ·¸+ ¸L¸4b¸—¸µ¸Ó¸Ù¸#ï¸ ¹¹.¹L¹T¹k¹p¹€¹¹  ¹­¹,¶¹ã¹é¹ í¹ù¹º -ºº1ºEºXºiºzº$º¦º¼º Ùºçºýº » »+» :» F» P» ^» -k» -v» » Ž»œ»°»µ»Æ» -ã»î»¼¼ -4¼ ?¼I¼Y¼j¼z¼ƒ¼ •¼ Ÿ¼«¼¿¼Õ¼ç¼ö¼½½3½J½_½p½ƒ½•½¥½µ½н߽轾¾ <¾]¾w¾‡¾ž¾¼¾ξ㾿¿ %¿F¿V¿l¿{¿,¿/¼¿ì¿ À-À4À)GÀ*qÀœÀ ¢À°ÀÆÀ æÀôÀ Á Á>ÁYÁtÁˆÁ™Á°ÁÃÁÔÁçÁùÁÂ$Â9ÂLÂ`Ât†•¦»ÂÙ ö -ÃÃ'ÃGÃcÃuÃ|Ãà éÿÃÜÃíÃÄÄÄ#Ä,Ä@Ä TÄaÄwÄÄıÄÀÄÐÄÕÄ åÄóÄÅÅ1ÅIÅ]ÅwņŌŒűŠÃÅÑÅæÅÆÆ%Æ -.Æ9ÆMÆ QÆ^ÆeÆmÆ}ÆÆƦƿÆÓÆíÆÇ Ç -Ç Ç+Ç;ÇKÇ ^Ç jÇ xÇ -„ÇǥǮǴǹÇÈÇÐÇàÇ æÇôÇ ÈÈ.È+AÈmÈ…È¢È ´ÈÂÈËÈÝÈïÈ É ÉÉ&É >ÉHÉQÉXÉ aÉoÉ‹É›É±É ÑÉÛÉîÉÊÊ&Ê.ÊCÊVÊ eÊoÊ‹Ê4›Ê#ÐÊôÊËË-.Ë \ËfËzËË—Ë©ËÃËÊËàËûËÌ Ì ,Ì!:Ì!\Ì~Ì•Ì­ÌÆÌ âÌìÌ ÿÌ Í )Í-3ÍaÍ rÍ|͓̓ͥ;ÍÅÍàÍðÍÎÎ0Î HÎUÎeÎ|ÎΥΫνÎÃÎ -ÌÎ×ÎðÎøÎ ÏÏÏ7ÏSÏ\ÏaÏvÏŠÏ¡Ï ¶Ï ×Ï$øÏ$ÐBÐWÐ -hÐ sÐ}ÐІРР¹ÐÇÐ ÛÐåÐøÐÑÑ(Ñ @ÑLÑ[Ñ{Ñ„ÑŒÑ -“ÑžÑ¯Ñ -ÇÑ ÒÑÞÑçÑ ýÑ -Ò Ò %Ò2ÒNÒ -]Ò -hÒ(sҜҼÒÕÒÙÒàÒñÒQ ÓU[Ó±Ó·Ó¾ÓÅÓÕÓëÓúÓ -ÔÔ ,Ô:Ô QÔrÔ3†Ô*ºÔ åÔóÔüÔÕ -$Õ /Õ9Õ >Õ!LÕ(nÕ—Õ §Õ±Õ·ÕÊÕ æÕóÕüÕÖ -!Ö,Ö FÖRÖgրִָ֜Ö×ÖöÖ× × ×)×9×B×T×Z×b× -w×‚× ¢×°×È×Ù×à×è× -ü×ØØ -&Ø1Ø 9Ø CØPØ&`Ø0‡Ø ¸Ø ÂØ ÌØÖØ óØÙÙ.Ù 6ÙCÙJÙ dÙqÙuÙ †ÙÙ!™Ù!»ÙÝÙ -æÙñÙÚÚ9ÚKÚ fÚtÚ…Ú Ú²ÚÍÚÒÚ ØÚäÚ -ôÚ ÿÚ Û0ÛFÛZÛnÛ Û -‰Û ”Û žÛ ¬Û¹ÛÔÛ ÝÛêÛþÛÜ5ÜLÜeÜ~Ü ‘ÜܺÜÃÜ4àÜ Ý"Ý?ÝYÝt݆ݦݷÝÉÝÚÝßÝ çÝõÝÞÞ+Þ =ÞKÞkÞ|ÞÞ¤Þ «ÞµÞ¼Þ ÍÞÚÞìÞ ßß7ßNßhß‚ß™ß"¹ßÜßóßàà.+à Zàhà}àà à"³à Öàâàôàúà á ááá*á@á -Sá^áwá’á¨á½áÑáåáùáâ #â-âCâ\âvââ¤â ¿âÍâéâþâã3ãPãmãtãˆã—ã Ÿã¬ãÀãÕã äãñãä$äAä`ä uää†ä Žäœä²ä¸ä Óä áäîäå!å;?å{å“å®åÀå"Òåõåæ æææ:æCæWæ`ægæoæxæ~æ“æ§æ­æ²æÂæÉæÒæíæôæ çç !ç.ç>çFç aç kç -yç„ç”ç šç¦ç¹çÊçÏçïç÷çèBèQè kè5wè ­èºèÁèÊè Ûèåè÷èé 'é5éKé Té aénéƒé™é«éºéÒé Úéæéõéùé;ê ->êIêQêeêzê€ê˜ê ê¨ê±êÌêâêéê ñêëë -!ë,ëJë`ë“oëì ì -ìì0ìCìGUìˆì&í,í"3íVíeí -xíƒíŒí›í«í ¿í ËíÕíèí -ÿí -î$î-î -5î@îDî[î qî }î‹îžî ´î¾î ÑîÛî Þîèî úîï ïï ï)ï<ï[ï jïtï }ï‡ïï ¤ï ±ï»ïÑï áï -îïùï - ð ð $ð 0ð=ðPð_ð nðzðð ˜ð¢ð#ºðÞððð$ñ,ñ @ñ Mñ -Zñeñlñ -ñ Šñ˜ñ ›ñ¥ñ ®ñºñ ÉñÖñßñèñðñùñòò ò ò &ò 2ò?òSò\ò -dòoòŽò¢ò ³ò -ÁòÌòÕòæòøòûòó óó"ó(óAóFó[ócó jó xó„ó “ó ¡ó®ó ¾ó ÊóÖóçó ðó üóô -ô!ô)ô 0ô=ôRôZô -aô -lôwô†ô ™ô¦ô­ô°ô -µôÀôÒôåôþô õõ'õ<õNõVõ!kõ õ™õ¡õµõÐõØõíõ õõö ö ö +ö7ö>öEöUö \öjö sö€ö ˆö”ö™ö¨ö¬ö³ö¶ö»öÃöBÇö - -÷÷%÷*÷/÷ 7÷D÷$\÷ ÷ ‹÷•÷œ÷¡÷¦÷­÷ ´÷ ¾÷È÷Î÷Ô÷?ã÷‡>I°Ü ž&«Áöd}ÃÁ²YI *jó¯ö7ÍÜ"=Äç+ËyCOcDeH{îe;\Vºxß_ýÿ… -Šå(Òî~#ºRÓ hÓAÎàƒµúíƒ<`õ¾ÑÌ~U‰\¢ €5É4 ëA5GÀN³ÒŽŸSuKVÆHmk”÷ïwš NvŸ–!§`šMèÐ6£‡Š1yÖ Îgq_ýúÚ™:qA¤ÑE‘U åq.7(bH¦Ì‚÷Ô1Û&ê¹çk»œª!ˆñûÕ€ë«hî³=Ôí"_ᇔÀ­¯ñnÏðçJd0‰½XšESô„ ½%MÃhxÞ3÷Œ¡ri{iÄz#†/Ç $2ÅRcœ€'¬+´“6¬P¼“TÌ8GWøJaYE0¦j¨ÿúâù¸6µŽuu4Å7Á¥¶ð)rlùaôW¿íØX3€'¶­C&TŸÍ¸|`ã¹ÛE4…%/ŠÈ1 T,f] cÓ “YPaÎ1õ–UVã9@_ØÊ`DàåÛÒ.³ä9–öfØæ‚Àñ^­ÈÅXÊìÖM/Ç<{ž‘5éÖ -BpÆYd™-1f× É-ÙúN[°<¾%êì›8ªÍ —Úð?¹÷$]ìQÝ•žïÅä»;@zB®9 Æ^A…sSÙÓ-.'Ì3Vÿe6Òx©ûÇa}ÑL›]^óZ·ËÑèO„?üÄþ,È¢?#è•)`ï„o]¤×*b[g*b¿û‹´kôØr>' -m¾Ï!l ܱ‹¥‘ëið[\þŒR˜áiüâ,ºVlsGÚÕ‰´UÏò0ûC&ͼ tc£xMuŠ^2AÏ óËpéILrh’«Â£È[Œ—‹nwfìf¯5þç:«N¬y †q\"¹˜›õQ¦T¾é0©,C’ò|™6Y>+4ŽB)ÕkÝàÙ}vüÄßÖ*ß®7[~Ûš㨵²ä Kï‚z2—ÝHvòã°ƒÎL%½ò;µýø™oG}C¡†ÐÐ-˜>×g3‡Stô'ù îF¡FÿÇ"ævM(‚­Ë-Iów±¯kJw ø’sÙ¿Œ/$•OB¢á½»t!‹n—Ô_‰(.Õ…•!jS„Bä§ÔWF²²K¬ -þL<´ÐZ¸,ɱRc8X¼ Iº”ab$žjjàZ˜G@{ˆ¶0%~T -ßWˆZ·8t@L¸gQ;DFå›8Kœê”³= PÉP5)&±£Ý.Þ#>¥ ©øo(dý“e+ ¢üUg7Z:?DP=»Rá¤p)y®§Â< Â^eNÜÊ4ªÃʃ·:"ˆŽèñom¼Wù榮/ö°9s2æ¡]¨’$Ú‘*ªQœ=õ¤|·ëldêiÃzéJÞ Á#@mQíFn†©¨JXÞ¥âÀ9E|¿H×3–Æh§O¶2â?O\+K;Ÿb:pD -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -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(%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<>For optimal GIMP performance, some settings may have to be adjusted.The GIMP tips file could not be parsed!A_dd to SelectionA_ngleAbout The GIMPActive FiltersAdd Alpha C_hannelAdd Alpha ChannelAdd AnchorAdd ChannelAdd GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd StrokeAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd color from FGAdd text to the imageAdd to the current selectionAdditionAdjust Color BalanceAdjust Color CurvesAdjust Color LevelsAdjust brightness and contrastAdjust color balanceAdjust color curvesAdjust color levelsAdjust hue and saturationAdjust levels automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAlphaAlpha to SelectionAlpha:An_imationAnchor Floating SelectionAnchor floating layerAngle:AntialiasingAppearanceApply Layer MaskApply Layer _MaskApply ThresholdAre you sure you want to delete '%s' from the list and from disk?Aspect Ratio:Attach ParasiteAuthor:AutoAutoloadAvailable FiltersAvailable Types:B_uffersBackgroundBackground color set to:Background: %d, %d, %dBehindBlack: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 MenuBurnC_ombineCalibrate Monitor ResolutionCan't undo %sCan_vas Size...CancelCannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Canvas SizeCenter X:CenteredChange Image ResolutionChange Image UnitChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.Channel to Sele_ctionChannel to SelectionChannel to selectionChannel:ChannelsChannels MenuChoose Stroke StyleCl_earClearClear ChannelClear Undo HistoryClear 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: selectClipped to bottom layerClipped to imageCloneClose this TabColo_rsColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColor:Color_mapColorizeColorize the ImageColorize the imageColormapColormap MenuColumns:Con_trast:Configure G_rid...Configure GridConfirm Image SizeConfirm Text EditingConstantConstraintsContinueContributions byConvertConvert EdgeConvert Image to GrayscaleConvert Image to IndexedConvolveConvolve Type %sCopy NamedCopyright:Could not delete '%s': %sCount:Cr_op LayerCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new templateCreate and edit images or photographsCreate and edit pathsCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PatternDate:Default Appearance in Normal ModeDefault GridDefault Image GridDelete AnchorDelete Layer Mas_kDelete Layer MaskDelete ObjectDelete SegmentDelete brushDelete channelDelete colorDelete gradientDelete layerDelete paletteDelete patternDelete this imageDevice StatusDialogs MenuDifferenceDirect ColorDisable Layer MaskDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDocument Histor_yDocument HistoryDocumentsDocuments MenuDodgeDodge/BurnDrag AnchorDrag AnchorsDrag CurveDrag PathDrag: moveDraw in inkDrawable proceduresDrop New LayerDuplicate brushDuplicate channelDuplicate gradientDuplicate layerDuplicate paletteDuplicate patternEEK: can't undoE_xtra SmallEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit brushEdit channel attributesEdit colorEdit gradientEdit layer attributesEdit patternEdit proceduresEllipse SelectEmpty Text LayerEnable to display a handy GIMP tip on startup.Enter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnvironmentEnvironment FoldersEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError Console MenuError writing file '%s': -%sEx_tra LargeExpanded as necessaryExposure:Extended Input DevicesFG to BG (HSV)FG to BG (RGB)FG to TransparentFG/BGFG/BG ColorFeather ChannelFeather SelectionFeather selection byFile OperationsFill ChannelFill Opacity:Fill Type %sFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with TransparencyFill with WhiteFill with _FG ColorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Type %sFlip the layer or selectionFloat SelectionFloating Selection to LayerFloating selectionsFocusFolderFoldersFont FoldersFont UIFontsFonts MenuForegroundForeground color set to:Foreground: %d, %d, %dFree SelectFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP versionGammaGeneralGet Monitor ResolutionGimprc proceduresGla_ss EffectsGradient EditorGradient Editor MenuGradient FoldersGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:Grow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHex:HighlightsHistogra_mHistogramHistogram ScaleHistoryHorizontalHueHue-SaturationHugeI_con & TextImageImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage maskImagesImages MenuImport OptionsImport PaletteImport PathsImport paletteIn_vertIn_vert MaskIncrementalIndent:Index:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInkInput DevicesInput LevelsInsert AnchorInstant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionInvalid UTF-8Invalid UTF-8 string in gradient file '%s'.Invalid character sequence in URIInvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Justify:Keep TransparencyKeyboard ShortcutsLargeLarge (256x256)Larger PreviewsLayerLayer AttributesLayer B_oundary Size...Layer Fill TypeLayer SelectLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to _BottomLayer to _TopLayersLayers MenuLayers Merge OptionsLength:LevelsLevels for indexed layers cannot be adjusted.Line _Style:LinearLoadLoad CurvesLoad LevelsLoading preview ...Location:Looking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower channelLower channel to bottomLower layerLower layer to bottomM_asterM_ove to Screen...MagentaMagenta:MagnifyMask Opacity:Matrix:Max Depth:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMedian:MediumMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge palettesMessage proceduresMidtonesMiscellaneousModeMode:Modify Selected ColorModify all colorsModule FoldersModule ManagerModulesMove AnchorsMove ChannelMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove layers & selectionsMove: Na_vigationNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channel...New gradientNew layer with last valuesNew layer...New paletteNew patternNo brushes available for use with this tool.No patterns available for this operation.No selection to stroke.NoneNormalNormal (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:On diskOnly in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen _Location...Open _RecentOpen the font selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Original Width:Output LevelsOverlayP_atternsPaintPaint Tool:Paint fuzzy brush strokesPaint using Patterns or Image RegionsPaintbrushPal_ettesPalettePalette EditorPalette Editor MenuPalette FoldersPalettesPalettes MenuParasite proceduresParasitesParsing '%s' -PastePaste _IntoPaste as _NewPaste the selected bufferPasted LayerPathPath cannot be lowered more.Path cannot be raised higher.Path to SelectionPathsPaths MenuPattern FoldersPattern UIPatternsPatterns MenuPencilPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick colors from the imagePixelsPixels:Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-InsPlug-inPolygonalPosition: %0.6fPosterizePosterize (Reduce Number of Colors)Posterize does not operate on indexed layers.PreferencesPressure:PreviewPreview is out of datePreviewsProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:Querying new Plug-insQuickMaskRGBRGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)R_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise channelRaise channel to topRaise layerRaise layer to topRateRate:Re_vert...Rect SelectRedRed:RedoReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh patternsRegisteredRemote imageRemove ChannelRemove GuideRemove LayerRemove Parasite from ImageRemove PathRemove _EntryRemove the selected entryRename ChannelRename LayerRename PathReorder ChannelReorder LayerRepeat LastRepeat:Replace the current selectionReplicateReset all Filters...Reset the selected filter to default valuesResizeResize ChannelResize ImageResize LayerResize PathResizing...Resolution:Resource ConsumptionResource configurationReverseRevertRevert ImageRight Endpoint ColorRotateRotate ChannelRotate LayerRotate PathRotate the layer or selectionRotating...Rotation InformationS_wap ColorsSat.:SaturationSaveSave CurvesSave ImageSave LevelsSave Tool OptionsSave _as...Save a Cop_y...Save all errorsSave as _POV-Ray...Save as _Template...Save device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSaved OptionsSaving '%s' -Saving '%s' failed: - -%sScaleScale ChannelScale ImageScale LayerScale PathScale the layer or selectionScalingScaling...ScissorsScreenScript-Fu FoldersScriptsSelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Script-Fu FoldersSelect ThemeSelect Theme FoldersSelect Zoom RatioSelect _Bottom LayerSelect _Next LayerSelect _Previous LayerSelect _Top LayerSelect by ColorSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelectionSelection EditorSelection MaskSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Channel ColorSet Channel OpacitySet Image Canvas SizeSet Layer Boundary SizeSet OpacityShadowsShapeShape:SharpenSharpen ChannelShearShear the layer or selectionShearing InformationShearing...Show Layer MaskShow S_tatusbarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioShrink ChannelShrink SelectionShrink from image borderShrink selection bySizeSize:SmallSmaller PreviewsSmoothSmooth edgesSmudgeSourceSpacingSpacing:Speed:Spherical (_decreasing)Spherical (i_ncreasing)SplitSquareSt_atus & TextStac_kStandardStarting ExtensionsState:Static ColorStatic GrayStd Dev:Stroke PathStroke SelectionSubtractSubtract from the current selectionT_oolsTe_xt ToolTemplatesTemporary ProcedureTextText ColorText EditorText proceduresThe GIMPThe vertical image resolution.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Tilt:TinyTitle & StatusTo_ysTool OptionsTool Options MenuTool _OptionsTool_boxToolbox MenuToolsTr_ansparencyTransformTransform ChannelTransform LayerTransform PathTransformationTransforming...Translation byTransparencyTrue ColorTypeType %sUnable to cut or copy because the selected region is empty.UndefinedUndoUndo HistoryUndo _HistoryUnitsUnknown file typeUnloadUnnamedUntitledUser Installation LogUser InterfaceValueValue:Version %s brought to you byVersion:VerticalViewView as _GridView as _ListWeb BrowserWhen enabled, the grid is visible by default. This can also be toggled with the "View->Show Grid" command.WhiteWidthWidth:Window ManagementWindow PositionsWriting '%s' -XCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Anchor Layer_Antialiasing_Artistic_Aspect_Auto_B_BG Color_Blur_Brightness:_Brush_Brushes_C_Channels_Clear Errors_Clear Undo History_Close Tab_Clouds_Colors_Context_Copy_Copy Named..._Crop Image_Curved_Default Colors_Delete Brush_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Selection_Desaturate_Detach Tab_Device Status_Dialogs_Discard Text Information_Distorts_Duplicate_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Pattern..._Enormous_Equalize_FG Color_File_Flatten Image_Font_Fonts_G_Gigantic_Gradient_Gradients_Grayscale_Guides_Hardness_Help_Horizontal:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Intersect with Selection_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Light Effects_Lightness:_Linear_Linked_Lower Channel_Lower Layer_M_Manually_Map_Mask_Mask to Selection_Medium_Merge Palettes..._Mode_Module Manager_Name:_Nature_New Brush_New Channel_New Channel..._New Gradient_New Layer_New Layer..._New Palette_New Pattern_New View_New..._Noise_Offset..._Opacity_Open Image_Open..._Palette_Paste_Paste Buffer_Paths_Pattern_Preferences_Preview_Preview Size_Print Size..._Properties_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Views_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Patterns_Render_Right Endpoint_Right Neighbor's Left Endpoint_Saturation:_Save_Scale Image..._Scale Layer..._Selection_Selection Editor_Shape_Sinusoidal_Small_Subtract from Selection_Tab Style_Templates_Text_Tiny_Tip of the Day_Tool_Transform_Undo_Undo %s_Vertical:_Visible_Web_White Balance_X:_Xtns_Ycolorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'grayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%s' for token %smillimetermillimeterspercentpicapicaspixelpixelspixels/%apixels/%spointpointstranslator-creditsvalue for token %s is not a valid UTF-8 stringProject-Id-Version: gimp.gimp-2-0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-07-15 17:40+0300 -Last-Translator: Görkem Çetin -Language-Team: Türkçe -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -X-Generator: KBabel 1.3.1 - -Geçersiz seçenek: "%s" - -Kullanım: %s [seçenek ... ] [dosya ... ] - --debug-handlers Hayati olmayan hata ayıklama sinyali iÅŸleyicilerini kullan. - --display Belirtilen X göstericisini kullan. - --system-gimprc Alternatif sistem gimprc dosyasını kullan. - --verbose Açılış iletilerini göster. - -c, --console-messages Uyarıları pencere yerine konsolda göster. - -d, --no-data Fırçaları, gradyanları, paletleri, desenleri yükleme. - -g, --gimprc Alternatif gimprc dosyasını yükle. - -h, --help Bu yardımı göster. - -i, --no-interface Kullanıcı arayüzü olmadan çalış. - -s, --no-splash Açılış penceresini gösterme. - -v, --version Sürüm bilgilerini göster. -%d Katman%d Katman%d x %d piksel%g x %g %s%s Kanal Kopyası%s Kanalından Seçime%s Mesajı%s kopyası%s maskesi(%0.3f, %0.3f, %0.3f)(Hiçbiri)(Bu konsol penceresi on saniye içinde kapanacak) -(Isimli Tampon)(Ä°simsiz Åžablon)(geçersiz UTF-8 satırı)(hiçbiri)1 Katman1 Katman<>Optimum GIMP perfomansı için bazı ayarların deÄŸiÅŸtirilmesi gerekebilir.GIMP ipuçları dosyası okunamadı!Seçime _EkleAçıGIMP HakkındaEtkin FiltrelerAlfa Kan_alı EkleAlfa Kanalı EkleÇıpa EkleKanal EkleKılavuz EkleYatay Kılavuz EkleKatman Maske_si Ekle...Katman EkleKatman Maskesi EkleYol EkleDarbe EkleMetin Katmanı EkleDikey Kılavuz EkleKatmana Maske EkleÖnplandan Renk EkleResme metin ekleGeçerli seçime ekleToplamRenk Dengesini AyarlaRenk EÄŸrilerini AyarlaRenk Seviyelerini AyarlaParlaklık ve kontrastı ayarlaRenk dengesini ayarlaRenk eÄŸrilerini ayarlaRenk seviyelerini ayarlaRenk ve doygunluÄŸu ayarlamaSeviyeleri otomatik ayarlaAyarlamaEtki:Etkilenen Bölge %sSpreyDeÄŸiÅŸken basınçlı spreyAlfa_dan SeçimeHizalıHizalamaTüm KanallarAlfaAlfadan SeçimeAlfa:_CanlandırmaYüzen Seçimi ÇıpalaYüzen katmanı çıpalaAçı:Yazıtipi yumuÅŸatmaGörünümKatman Maskesini UygulaKatm_an Maskesini UygulaSınırı Uygula"%s"yi hem listeden, hem de diskten silmek istediÄŸinize emin misiniz?Görüntü Oranı:Parazit Ä°liÅŸkileYazar:OtomatikOtomatik YüklemeMevcut FiltrelerKullanılabilir Türler:_TamponlarArkaplanArkaplan rengi deÄŸiÅŸtirildi:Arkaplan: %d, %d, %dArkadaSiyah:HarmanlamaHarman:Harman: Ä°ndisli resimler için uygun deÄŸil.Harmanlanıyor...MaviMavi:BulanıklaÅŸtırBulanıklaÅŸtır veya KeskinleÅŸtirKanalın Kenarlarını TanımlaSınırdan SeçimKenarlık seçimiParlaklık-KontrastParlaklık-kontrast indisli katmanlar üzerinde kullanılamaz.Fırça DüzenleyiciFırça DiziniFırça ArabirimiFırça:FırçalarFırçalar MenüsüKovadan DolumTamponlarTamponlar MenüsüYakmaB_irleÅŸtirEkran Çözünürlüğünü Kalibre EtGeriye alınamıyor: %sTuval _Boyutu...Ä°ptal'%s' dizini oluÅŸturulamadı: %sÖnizleme oluÅŸturulamıyorKırpma yapılamaz çünkü seçili alan boÅŸ.Seçim yüzdürülemez çünkü seçili alan boÅŸ.Alfa kanalı olmadan katman yükseltilemez.Kaydedilemiyor, çünkü hiçbir ÅŸey seçili deÄŸil.Tuval BoyutuMerkez X:OrtalanmışResim Çözünürlüğünü DeÄŸiÅŸtirResim Birimini DeÄŸiÅŸtirKatman ya da seçimin perspektifini deÄŸiÅŸtirKanalKanal ÖznitelikleriKanal Adı:Kanal daha fazla alçaltılamaz.Kanal daha fazla yükseltilemez.Kanaldan Seçi_meKanaldan SeçimeKanaldan seçimeKanal:KanallarKanallar MenüsüDarbeleme Yöntemini Seç_TemizleTemizleKanalı TemizleGeri Alma GeçmiÅŸini SilHataları temizleGeri Alma GeçmiÅŸini Temizle..Yukarıdaki seçenekleri kabul etmek için "Devam"a basın.KiÅŸisel GIMP dizininizin oluÅŸturulması için "Devam"a basın.GIMP Kullanıcı Kurulumunu baÅŸlatmak için "Devam"a basın.Tıkla: seçEn alt katman boyunda kesilmeliResim boyunda kesilmeliKopyalaBu sekmeyi kapatRenk_lerRenkRenk DengesiRenk Görünüm FiltreleriRenk AlıcıRenk Alıcı BilgisiRenk:_Renk haritasıRenklendirResmi RenklendirResmi renklendirRenk haritasıRenk Haritası MenüsüSütunlar:_Kontrast:Kılavuzları _Yapılandır...Kılavuzları YapılandırResim Boyutunu DoÄŸrulaMetin Düzenlemeyi OnaylaSabitKısıtlarDevamDestekleyenlerDönüştürKenarları DönüştürResmi Gri ÖlçeÄŸe ÇevirResmi Ä°ndisliye ÇevirEvriÅŸtirmeEvriÅŸtime Türü %sÄ°simle KopyalaTelif hakkı:'%s' dosyası açılamadı: %sAdet:_Katmanı KırpYeni Åžablon OluÅŸturYeni Bir Resim OluÅŸturYeni Katman OluÅŸturYeni bir Åžablon OluÅŸturBu resim için yeni bir görünüm oluÅŸturYeni ÅŸablon oluÅŸturResim ya da fotoÄŸrafları oluÅŸturun ve düzenleyinYolları oluÅŸtur ve düzenle'%s' dizini oluÅŸturuluyor...KırpKırp ve BoyutlandırKırpma ve Boyutlandırma BilgileriResmi KırpKatmanı KırpResmi kırp veya boyutlandırKırp: Sadece KesiÅŸik Yollar_KesÄ°simle _Kes...Kübik (En iyi)Geçerli _DurumEÄŸri TürüEÄŸrilerÄ°ndisli katmanların eÄŸrileri ayarlanamaz.ÖzelKesÄ°simle KesTurkuazTurkuaz:Fırçayı Ç_oÄŸalt_Kanalı ÇoÄŸalt_Gradyanı ÇoÄŸaltKatmanı Ç_oÄŸalt_Paleti ÇoÄŸalt_Deseni ÇoÄŸaltTarih:Normal Kipte Öntanımlı GörünümÖntanımlı KılavuzÖntanımlı Resim KılavuzuÇıpayı SilK_atman Maskesini SilKatman Maskesini SilNesneyi SilSegmenti SilFırçayı silKanalı silRengi SilGradyanı silKatmanı silPaleti silDeseni silBu resmi silAygıt DurumuPencereler MenüsüFarkDoÄŸrudan RenkliKatman Maskesini Etkisiz YapGörünümGezgini GörüntüleGörüntü iÅŸlemleriGösterilen [%0.6f, %0.6f]ÇözülmeUzaklık:Uzaklık: %0.6f_Belge GeçmiÅŸiBelge GeçmiÅŸiBelgelerBelgeler MenüsüTemizlemeTemizle/YakÇıpayı SürükleÇıpaları SürükleEÄŸriyi SürükleYolu SürükleSürükle: taşıMürekkeple çizimÇizilebilir iÅŸlemleriYeni Katmanı DüşürFırçayı Ç_oÄŸaltKanalı çoÄŸaltGradyanı ÇoÄŸaltKatmanı ÇoÄŸaltPaleti çoÄŸaltDeseni çoÄŸaltEYVAH: Geriye alınamıyorÇ_ok KüçükDüzenleKanal Özniteliklerini DüzenleKanal Rengini DüzenlePalet Girdi Rengini DüzenleKatman Özniteliklerini DüzenleKatman Maskesini DüzenleDüzenleme KipiPalet Rengini DüzenleYol Özniteliklerini DüzenleÅžablonu Düzenle/Fırçayı düzenleKanal özniteliklerini düzenleRengi düzenleGradyanı düzenleKatman Özniteliklerini DüzenleDeseni düzenleDüzenleme iÅŸlemleriEliptik SeçimBoÅŸ Metin KatmanıBaÅŸlangıçta GIMP ipuçlarını gösterir.Kaydedilen seçenekler için bir yol adı girinBu bellek için bir isim yazınBu ÅŸablon için bir isim yazınÇevreÇevresel DizinlerEÅŸitleme indisli katmanlara uygulanamaz.Arkaplana ya da ÅŸeffaflığa yönelik silSilgiHata _KonsoluHata Konsolu Menüsü%s dosyasına kaydedilemedi: -%sÇo_k BüyükGerektiÄŸi gibi geniÅŸletilmeliBelirlilik:GeliÅŸmiÅŸ GiriÅŸ AygıtlarıÖnplandan Arkaplana (RDD)Önplandan Arkaplana (RGB)Önplandan ÅžeffafaÖnplan/ArkaplanÖnplan/Arkaplan RengiYumuÅŸatma KanalıSeçimi YumuÅŸatSeçimi yumuÅŸat: Dosya Ä°ÅŸlemleriKanalı DoldurDoldurma Saydamsızlığı:Doldurma Türü: %sAP rengiyle doldur_AP rengiyle doldurÖP rengiyle doldur_Desen ile DoldurÅžeffaf doldurBeyaz ile Doldur_ÖP rengiyle doldurBir renk gradyanı ile doldurBir renk veya desenle doldurDoldurulmuÅŸ_FiltrelerSon, BirleÅŸmiÅŸ katman:Devamlı Bölgelerin BulunmasıBenzer Renklerin BulunmasıResmi DüzleÅŸtirÇevirKanalı DöndürKatmanı ÇevirYolu ÇevirÇevirme Yöntemi %sKatmanı veya seçimi çevirSeçimi YüzdürKatmana Yüzen SeçimYüzen SeçimlerOdaklamaDizinDizinlerYazıtipi DizinleriYazıtipi ArayüzüYazıtipleriYazıtipleri MenüsüÖnplanÖnplan rengi deÄŸiÅŸtirildi:Önplan: %d, %d, %dSerbest SeçimBulanık SeçimGIMPGIMP UzantısıGIMP Ä°letisiGIMP Performans AyarlamasıGIMP EklentisiGIMP BaÅŸlangıcıGIMP Metin DüzenleyiciGünün GIMP Ä°pucuGIMP kullanıcı kurulumuGIMP sürümüGammaGenelEkran Çözünürlüğünü AlGimprc iÅŸlemleri_Cam EtkileriGradyan DüzenleyiciGradyan Düzenleyici MenüsüGradyan DiziniGradyan ArabirimiGradyan:GradyanlarGradyanlar MenüsüGriGriölçekliYeÅŸilYeÅŸil:Kanalı BüyütSeçimi BüyütSeçimi büyütKılavuzKılavuz ve YanaÅŸtırmaKılavuz iÅŸlemleriHSV (%0.3f, %0.3f, %0.3f)Tutacak konumu: %0.6fSertlikSertlik:YükseklikYükseklik:Yardım GezginiYardım SistemiYardım iÅŸlemleriOnaltılı:Yüksektonlar_HistorgramHistorgramHistogram ÖlçeklemeGeçmiÅŸYatayRenkRenk-DoygunlukBüyükSimg_e ve MetinResimResim BilgisiResim MenüsüResim BoyutuResim Durum ÇubuÄŸu FormatıResim ÅžablonlarıResim BaÅŸlığı ve Durum ÇubuÄŸu BiçimiResim BaÅŸlık FormatıResim Penceresi GörünümüResim PencereleriResim maskesiResimlerResimler MenüsüAlma Seçenekleriİçe Palet AktarYolları AlPalet Al_Tersine ÇevirMaskeyi _Tersine ÇevirArtımlıGirinti:Sıra:Ä°ndisliÄ°ndisli RenkÄ°ndisli Renk DönüşümüBilgi PenceresiÄ°lklendirilen Maske:Eklentiler ÇalıştırılıyorMürekkepGiriÅŸ AygıtlarıGiriÅŸ SeviyeleriÇıpayı Araya EkleAnında tazelemeArayüzİçsel GIMP iÅŸlemiİçsel Ä°ÅŸlemlerAradeÄŸerleme:KesiÅŸtirGeçerli seçimle kesiÅŸtirGeçersiz UTF-8'%s' GIMP gradyan dosyasında geçersiz UTF-8 dizge.Adreste geçersiz karakter sırasıTersine ÇevirKanalı Ters ÇevirSeçimi Tersine ÇevirTerse çevrim indisli katmanlara uygulanamaz.Hizalama:Åžeffaflığı KoruKlavye KısayollarıBüyükBüyük (256x256)Daha Büyük ÖnizlemelerKatmanKatman ÖznitelikleriKatman Sınır _BoyutlarıKatman Doldurma TipiKatman SeçimiKatman Ki_piKatman _Adı:Katman daha fazla alçaltılamaz.Katman daha fazla yükseltilemez.Katman zaten en altta.Katman zaten en üstte.Katmanı _En Alta Ä°ndir_Katmanı En Ãœste ÇıkartKatmanlarKatmanlar MenüsüKatman BirleÅŸtirme SeçenekleriUzunluk:SeviyelerÄ°ndisli katmanların seviyeleri ayarlanamaz.Çizgi _Biçemi:DoÄŸrusalYükleEÄŸriler YükleSeviyeleri YükleÖnizleme yükleniyor...Adres:Veri dosyaları taranıyorKanalı AlçaltKanalı En Alta Ä°ndirKanalı _En Alta Ä°ndirKatmanı AlçaltKatmanı En Alta Ä°ndirYolu AlçaltKanalı alçaltKanalı En Alta Ä°ndirKatmanı AlçaltKatmanı En Alta Ä°ndir_Ana:_Ekrana Taşı...PembeMagenta:BüyüteçMaske Saydamsızlığı:Matris:Azami Derinlik:Ortalama:ÖlçümAçı ve Uzunlukları ÖlçAçı ve uzunlukları ölçOrtanca:OrtaAÅŸağı _BirleÅŸtirAÅŸağı BirleÅŸtirKatmanları BirleÅŸtirPaletleri BirleÅŸtirGörünen Katmanları BirleÅŸtirGörünen Katmanları BirleÅŸtir_Görünen Katmanları BirleÅŸtir..._Görünen Katmanları BirleÅŸtir...Paletleri birleÅŸtirMesaj iÅŸlemleriOrtatonlarÇeÅŸitliKipKip:Seçilen Rengi DeÄŸiÅŸtirTüm renkleri deÄŸiÅŸtirModül DiziniModül DüzenleyiciModüllerÇıpaları TaşıKanalı TaşıKılavuzu TaşıKatmanı TaşıKatman Maskesini TaşıYolu TaşıSeçimi TaşıKatmanları & seçimleri taşıTaşı: _GezginGezginYeni KanalYeni Kanal RengiYeni Kanal SeçenekleriYeni ResimYeni KatmanYeni YolYeni Yol SeçenekleriYeni ÅžablonYeni FırçaYeni kanal...Yeni gradyanSon deÄŸerlerle yeni katmanYeni katman...Yeni paletYeni DesenBu aletle kullanılabilecek fırça yok.Bu iÅŸlem için hiç desen yok.Darbelenecek seçim yok.YokNormalNormal (128x128)Normal bir dosya deÄŸilBirleÅŸtirme için yeterli sayıda görünür katman yok. En az iki tane olmalı.BirleÅŸtirme için yeterli sayıda görünür katman yok. En az iki tane olmalıdır.OfsetOfset:DiskteSadece bellekteKatman _Olarak aç...SaydamsızlıkSaydamsızlık:Resim AçResmi Katman Olarak AçKonum _Aç...Son _Kullanılanı AçYazıtipi seçim penceresini açSeçili girdiyi aç%s dosyasını açma iÅŸlemi baÅŸarısız oldu: - -%s%s dosyasını açma baÅŸarısız oldu: %sSeçenekler: -Orjin X:Orjinal GeniÅŸlik:Çıkış SeviyeleriÃœstekoyum_DesenlerBoyaBoyama Aleti:Kötü fırça darbelerini boyamaDesenlerle ya da Resim Alanlarıyla BoyaBoya Fırçası_PaletlerPaletPalet DüzenleyiciPalet Düzenleyici MenüsüPalet DiziniPaletlerPaletler MenüsüParazit iÅŸlemleriParazitler"%s" ayrıştırılıyor -Yapıştırİçi_ne Yapıştır_Yeni Olarak YapıştırSeçili tamponu yapıştırYapıştırılan KatmanYolYol daha fazla alçaltılamaz.Yol daha fazla yükseltilemez.Yoldan SeçimeYollarYollar MenüsüDesen DiziniDesen ArabirimiDesenlerDesenler MenüsüKalemYüzde:KiÅŸisel GIMP DiziniPerspektifPerspective Dönüşüm BilgisiPerspektif...Rengi Alma Yöntemi %sResimden renk alPikselPiksel:Lütfen bekleyin...EklentilerEklenti SistemiEklenti DiziniEklentilerEklentiPoligonalKonum: %0.6fPosterleÅŸtirmePosterleÅŸtir (Renk Sayısını Azalt)PosterleÅŸtirme indisli katmanlarda çalışmaz.TercihlerBasınç:ÖnizlemeÖnizlemenin tarihi geçmişÖnizlemelerÄ°ÅŸlemsel Veritabanıİşlemsel VeritabanıİşlemYarı RenkliAmaç:Yeni eklentiler aranıyorHızlıMaskeRGBRGB (%d, %d, %d)RGB RengiRGB-boÅŸKYMA (%0.3f, %0.3f, %0.3f, %0.3f)S_aÄŸ Bitim Noktasının Rengi...DaireselYarıçap:Kanalı YükseltKanalı En Tepeye YükseltK_analı En Tepeye YükseltKatmanı YükseltKatmanı En Ãœste ÇıkartYolu YükseltKanalı YükseltKanalı En Tepeye YükseltKatmanı yükseltKatmanı En Ãœste ÇıkartOranOran:_Geri al...Dörtgen SeçimKırmızıKırmızı:Ä°leri alBir alt sınır kullanarak resmi iki renge indirFırçaları tazeleGradyanları tazeleDesenleri tazeleKayıtlıUzak resimKanal SilKılavuzu SilKatmanı SilResimdeki Paraziti KaldırYolu Sil_Girdiyi SilSeçili girdiyi silKanalı Yeniden AdlandırKatmanın Adını DeÄŸiÅŸtirYolu Yeniden AdlandırKanalı Yeniden DüzenleKatmanı Yeniden SıralaSonuncuyu TekrarlaTekrarlama:Geçerli seçimin yerine yazÇoÄŸaltTüm Filtreleri Sıfırla...Seçili filtreleri öntanımlı deÄŸerlerine geri alBoyutlandırKanalın Boyutunu DeÄŸiÅŸtirResim Boyutunu DeÄŸiÅŸtirKatman Boyutunu DeÄŸiÅŸtirYolu BoyutlandırYeniden boyutlandırılıyor...Çözünürlük:Kaynak HarcamasıKaynak ayarlarıTersGeri alResmi Geri AlSaÄŸ Bitim Noktasının RengiDöndürKanalı ÇevirKatmanı DöndürYolu DöndürKatmanı ya da seçimi döndürDöndürüyor...Döndürme BilgisiRenkleri _DeÄŸiÅŸtirDoyg.:DoygunlukKaydetEÄŸrileri KaydetResmi KaydetSeviyeleri KaydetKaydetme Aracı Seçenekleri_Farklı kaydet...Bir K_opyasını Kaydet...Tüm hataları temizle_POV-Ray olarak kaydet...Åž_ablon Olarak Kaydet...Aygıt durumunu kaydetGradyanı POV-Ray olarak kaydetSeviye ayarlarını dosyaya kaydetSeçenekleri kaydet...Seçimi kaydetKayıtlı Seçenekler'%s' kaydediliyor -%s dosyasını kaydetme baÅŸarısız oldu. - -%sÖlçeklendirKanalı BoyutlandırResmi ÖlçekleKatmanı ÖlçekleYolu ÖlçeklendirKatman ya da seçimi ölçeklendirÖlçeklemeÖlçekleniyor...MakasEkranBetik DiziniBetiklerSeçTümünü SeçFırça Dizinini SeçRenge Göre SeçimRengi SeçÇevresel Dizinleri SeçYazıtipi Dizinlerini SeçGradyan Dizinini SeçModül Dizinini SeçHiçbirisini SeçmePalet Dizinini SeçDesen Dizinini SeçEklenti Dizinini SeçBetik Dizinini SeçTema SeçTema Dizinlerini SeçÖlçek Oranını Seçin_En Alttaki Katmanı SeçSonraki _Katmanı SeçÖnceki Katmanı _SeçEn Ãœs_tteki Katmanı SeçRenk ile SeçDevamlı alanların seçimiEliptik alanlar seçEl çizimleriyle alan seçimiDörtgen seçimler yapBölümleri renge göre seçResimden ÅŸekillerin seçimiSeçimSeçim DüzenleyiciSeçim MaskesiSeçim:Seçim: EKLESeçim: KESÄ°ÅžTÄ°RSeçim: DEĞİŞTÄ°RSeçim: ÇIKARDuyarlılıkKanal Rengini BelirleKanal Opaklığını BelirleResim Tuval Boyutunu BelirleKatman Sınırlarını BelirleOpaklığı TanımlaGölgelerÅžekilÅžekil:KeskinleÅŸtirKanalı KeskinleÅŸtirEÄŸmeKatmanı ya da seçimi eÄŸEÄŸme BilgisiEÄŸiliyor...Katman Maskesini Göster_Durum ÇubuÄŸunu GösterBellek kullanımını gösterGIMP tekrar baÅŸlatıldığında yeni ipuçlarını gösterOdak yüzdesini gösterOdaklama oranını gösterKanalı KüçültSeçimi KüçültResim Sınırlarında da KüçültSeçimi küçültBoyutBüyüklük:UfakDaha Küçük ÖnizlemelerYumuÅŸakKenarları yumuÅŸatLekelemeKaynakBoÅŸlukBoÅŸluk:Hız:Küresel (_azalarak)Küresel (a_rtarak)AyırKare_Durum ve MetinKü_meStandartUzantılar baÅŸlatılıyorDurum:DuraÄŸan RenkliDuraÄŸan GriStandart Sapma:Yolu DarbeleSeçimi DarbeleÇıkarGeçerli seçimden çıkar_AraçlarMetin _AracıŞablonlarGeçici Ä°ÅŸlemMetinMetin RengiMetin DüzenleyiciMetin iÅŸlemleriGIMPDikey resim çözünürlüğü.TemalarTema DizinleriTemalarAÅŸağı birleÅŸtirme için yeterli sayıda görünür katman yok.Bu aletin seçeneÄŸi yok.Alt SınırAlt sınır iÅŸlemi indisli katmanlarda çalışamaz.Alt sınır:Yatma:KüçükBaÅŸlık & Durum_AraçlarAlet SeçenekleriAraç Seçenekleri MenüsüAraç _SeçenekleriAraç _kutusuAraç Kutusu MenüsüAraçlarÅž_effaflıkDönüştürKanalı DönüştürKatmanı DönüştürYolu DönüştürDönüştürmeDönüştürülüyor...ÇeviriÅžeffaflıkGerçek RenkliTipTür %sKesme veya kopyalama yapılamaz çünkü seçili alan boÅŸ.TanımsızGeri alGeri Alma GeçmiÅŸi_Geri Alma GeçmiÅŸiBirimBilinmeyen dosya türüBoÅŸaltIsimsizÄ°simsizKullanıcı Kurulum KaydıKullanıcı ArayüzüDeÄŸerDeÄŸer:%s sürümünü sizlere sunanlarSürüm:DikeyGörünümKılavuz _Olarak Görüntüle_Liste Olarak GösterWeb TarayıcıEÄŸer etkinleÅŸtirilirse kılavuz çizgileri görüntülenir. Bu iÅŸlem aynı zamanda "Görüntüle - Kılavuzu Göster" komutuyla da yapılabilir.BeyazGeniÅŸlikGeniÅŸlik:Pencere YönetimiPencere Boyutları"%s" yazılıyor -XCF hatası: desteklenmeyen %d XCF dosya sürümüyle karşılaşıldıXCF uyarısı: XCF dosya biçiminin 0. sürümü -indisli renk haritalarını düzgün saklamaz. -Griölçekli palet ile deÄŸiÅŸtiriliyor.SarıSarı:Odaklama ve Boyutlama Davranışı1:1 YakınlaÅŸHepsine YakınlaÅŸYakınlaÅŸUzaklaşÖlçek OranıÖlçek Oranı:_Tamamını Göster_YakınlaÅŸ_UzaklaÅŸHepsine yakınlaÅŸOdaklama oranı: %d: 1YakınlaÅŸYakınlaÅŸma & UzaklaÅŸmaUzaklaÅŸOdakla:_Hakkında_Al_Arkaplandan Renk Ekle_Önplandan Renk Ekle_Sekme EkleSeçime _EkleKat_manı Çıpala_Yazıtipi YumuÅŸatma_Sanatsal_Görüntü Oranı_Otomatik_B_AP RengiB_ulanıklaÅŸtır_Parlaklık:_Fırça_Fırçalar_C_KanallarHataları _Temizle_Geri Alma GeçmiÅŸini Temizle_Sekmeyi Kapat_Bulutlar_Renklerİçeri_k_KopyalaÄ°_simle Kopyala...R_esmi KırpEÄŸ_riselÖntanımlı _RenklerFı_rçayı SilKanalı _Sil_Rengi SilGradyanı _Sil..._Resmi SilKatma_nı SilP_aleti Sil_Seçimi sil_DoygunluÄŸu azalt_Sekmeyi Ayır_Aygıt Durumu_Pencereler_Metin Bilgisini Sil_BozulmaÇoÄŸal_tFırçayı _Düzenle...Kanal Öznitel_iklerini Düzenle..._Renk Düzenle...Gradyanı _Düzenle...Katma_n Özniteliklerini Düzenle..._Deseni Düzenle...Ä°_nanılmaz_EÅŸitlendirÖP _Rengi_Dosya_Resmi DüzleÅŸtir_Yazıtipi_Yazıtipleri_G_Dev gibi_Gradyan_Gradyanlar_Gri Ölçekli_Kılavuzlar_Sertlik_Yardım_Yatay:_Kocaman_Simge_Simge:_Resim_Resimlerİçe _AktarPalet Al...Ä°_ndisli...Seçimle Ke_siÅŸtir_Büyük_Katman_Katmanlar_Katmanlar, Kanallar ve Yollar_Sol Bitim Noktası_Işık Etkileri_Aydınlanma:_DoÄŸrusal_BaÄŸlıKan_alı AlçaltK_atmanı Alçalt_M_Elle_Harita_MaskeMaskeden _Seçime_Orta_Paletleri BirleÅŸtir..._KipModül _DüzenleyiciÄ°si_m:_DoÄŸaY_eni Fırça_Yeni KanalYeni Ka_nal..._Yeni Gradyan_Yeni KatmanY_eni Katman..._Yeni Palet_Yeni DesenYeni _Görünüm_Yeni..._Gürültü_Ofset..._SaydamsızlıkResim _Aç_Aç..._Palet_Yapıştır_Tamponu Yapıştır_Yollar_Desen_TercihlerÖniz_lemeÖnceki _Boyut_Yazdırma Boyutu:Ö_zelliklerÇı_k_R_RGB_YarıçapKa_nalı YükseltK_atmanı Yükselt_Görünümleri Yükselt_Yinele_Yinele: %s_Fırçaları Tazele_Gradyanları Tazele_Desenleri Tazele_TaramaS_aÄŸ Bitim NoktasıSaÄŸ KomÅŸunun Sol Bitim Noktası_Doygunluk:_Kaydet_Resmi Ölçekle...Katmanı Ölçe_klendir...S_eçim_Seçim DüzenleyiciÅž_ekil_SinüzoidalKüçükSeçimden Çık_arSekme _StiliÅž_ablonlar_Metin_Minik_Günün Ä°pucu_Araç_Dönüştür_Geri al_Geri al: %s_Dikey:_Görünür_Web_Beyaz Dengesi_X:/_Xtns_YrenkkopyalaDPIBoole anahtar %s için 'yes' veya 'no' bekleniyordu, '%s' alındıgriölçekgriölçek-boÅŸinçinçindisliindisli-boÅŸGeçersiz UTF-8 dizgesiGeçersiz seçenek '%s' (anahtar %s)milimetremilimetreyüzdepikapikapikselpikselpiksel/%apiksel/%spuntopuntoGörkem Çetin%s anahtarına verilen deÄŸer geçerli bir UTF-8 dizgesi deÄŸil \ No newline at end of file diff -uraN gimp-2.2.8/po/uk.gmo gimp-2.2.9/po/uk.gmo --- gimp-2.2.8/po/uk.gmo 2005-03-08 16:48:49.000000000 +0100 +++ gimp-2.2.9/po/uk.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,408 +0,0 @@ -Þ•] Kƒ ì•øÇùÇ&Èk6ÈG¢È9êÈG$ÉAlÉN®ÉiýÉ<gÊk¤Ê@Ë2QË;„ËPÀËOÌ2aÌ9”Ì-ÎÌ9üÌ;6Í7rÍ ªÍ´Í -»Í ÆÍ -ÐÍ -ÛÍ æÍòÍÎ -ÎÎÎ/Î -GÎRÎZÎbÎ~ΘήÎ0µÎæÎ÷Î -ÏÏÏ -2Ï=ÏDÏLÏTÏ cÏ qÏ }Ï -‹Ï -–Ï ¡Ï ®ÏºÏ ÊÏ ÖÏâÏ çÏ óÏKÐ…LÐ.ÒÐ1Ñ!3ÑUÑgÑnÑ}фѠѯÑÆÑÊÑÝÑ -ïÑ úÑÒ Ò -(Ò3ÒHÒ [ÒeÒtÒ -}ÒˆÒ—ÒªÒÂÒÔÒæÒõÒ* Ó66ÓmÓ€ÓÓµÓ¾ÓÛÓúÓÔ#Ô7ÔVÔkÔÔ#“Ô·ÔÑÔ -íÔøÔ ÕÕ#Õ,ÕLÕ`Õ hÕ rÕ Õ‰Õ™Õ1®Ö3àÖ×(×.×A׋H× -Ô×ß×ù×Ø)Ø0Ø ?Ø -LØWØhØzØŠØA›ØJÝØ(Ù<;Ù xÙ †Ù”٤ٽÙÕÙåÙíÙòÙ ÚÚ.ÚAÚJÚaÚsÚ „Ú’ÚªÚ -³Ú¾ÚÏÚèÚÿÚ&Û$<ÛaÛhÛ nÛ xÛ†ÛÛ¦Û­Û³ÛÍÛ"ÕÛ øÛÜ ÜÜÜ -$Ü/Ü>ÜOÜcÜ7wÜ¯Ü µÜ ÂÜÐÜÙÜàÜ èÜ õÜÝ ÝÝÝ Ým-Ý›Ý  Ý ®Ý ¼ÝÆÝÏÝ ìÝúÝ -Þ ÞCÞ7bÞ=šÞ@ØÞ6ßdPßµßÓß3éßà<1à#nà!’à´àÑà ëà÷à á á!á*áBáXápáˆášá¬áÉáæáâ,âGâaâiâ |âŠâ ªâ Ëâ!Ùâûâã,ãAãVã_ã hã vãƒã—ãžã¥ã «ã¹ãÌã Ûãèã.þã5-ä5cä7™ä8Ñä) -å,4åaå}å•å2²å ååæ!æO=æAæ%Ïæ&õæ4ç1Qç#ƒç §çµç Ñç Ýçççÿçèèè.è>è -MèXè`è fètè Šè—è°èÂè0Ôè é éé %é /é <éIédéé+Šé¶éÉéÜéåé õéê êê -ê )ê3ê$Sêxê‹êšê¯ê Ìêíêë%ë8ëHë"]ë€ë–ë ¥ë³ëÃë ÌëØëàëbìkì|ì „ì‘ì¬ìÅìåì úì"í"+íNígípí -‚í í›í -ºí)Åíïí, î6î!Pî#rî#–î!ºî%Üîï.!ïPï Wïcïtïˆï›ï®ï#Äï-èïð%,ðRðhð~ð™ð®ðÆð ËðÙð -óð -þð - ññ,ñ3ñBñ Gñ Uñbñrñ‚ñ•ñ¤ñ³ñ ºñÈñ -Ûñæñ-íñò "ò/ò?òVò Zòdòiòoò€ò“ò§ò¸òËòÛòîòó ó"ó 2ó >ó LóYó`ófó%ló!’ó ´óÁóÔó&ìóô 'ô5ôDôWô iôwô†ô –ô£ô ²ô¿ô ÏôÜôîô ýô õõ0õKõhõzõ‰õ -¢õ -­õ-¸õ æõòõ ùõöö ö$ö -,ö 7öDöWöjöƒö‹öžö²ö ÅöÓöíö öö÷ ÷÷!÷:?÷?z÷8º÷ ó÷ÿ÷øø +ø5ø -DøOøUø -kø vø „ø ø -ø ¨ø ´ø -¾ø ÉøÕø Þøëøÿø ù>ù [ù|ùŒùžù±ùÁùÓùâùôùú$ú 4úAú Pú]úbúzúú¦úºúÐú àúêúýúû-û Cû -Qû\û -tûû —û¥û »ûÈû Ýûêûúûü $ü 2ü ->üIü*Zü…üŽü! üÂü.Ùüý$ý#-ý"Qýtý‘ý&°ý×ý íýùý þ,þ#Cþgþnþ }þ‹þžþ'¸þàþ'ýþ%ÿBÿXÿtÿFŽÿTÕÿ*1 7DZ mŽ ¥¯ -Æ Ñß ü,;M_ eqz ƒ¥(®$×ü0=36q1¨<Ú?AW7™9Ñc 0o9 BÚ=f[>ÂCJEg ø &4IN` p z† ˜ ¥ ³ÁÕì(;N`w‡›·Òïöÿ 9 P d x  Œ š  -­  ¸ Æ  Ë  -Ø  ã í  ý  - - -/ -: -V - ^ -j -z - Š -˜ -° -Ì -è -ü -( > D K  S ` h n  -t O Ï  -á ”ì  ’ «   -Ø  ã  ï û   . ? R e  -t     ™ ¦ «  º Ç  ß  ì ù  -5uDºÌÌÅ™c_ ÃzÐKQrYÌåü&/?T&e'Œ ´BÀ   & 4@ EOU\a s€¡§¿ÐÔî  /8N e -oz ƒ”œ ¡ ®ºÕìü - !8H@ -‰ ”ž® -¶HÁ! -B,os1‚´ÇÌ ÑÞåõ -  !`-™ŽC(1l0žÏ Õ âï - - .>On ™(§ -Ð -ÛHæ -/ : -GR Yet ƒ¦» Ê ×åê ò ÿ 18 @N€g èô #9U Yg y ‡ ”K¢3î6"Yh"~ ¡«Ã× æ$ð0 E S t(•+¾)ê*!?a/s£ª¹*Êõ '# K [ k t  -† ‘ ¡ · Ç Ù è ñ !!,! C!d!!!™!¨!Á!Ô! ë! "'" 8"B"R"l"€"!˜"º"Ö"è" ï"ü"#$#9#X#q#-€#®$·$Ç$Ú$Þ$ ø$%%% (%4%3:%n%%—%§% ¿% -Ì% ×% ã%ð%&-&M&f&z&‹&  &®&Å& Ì&Ø&í&''@'Y'-`'Ž'  '­' ²' À' Ì'Ù'÷' þ' -( ( ('(>(](|(( ¤( ®( º(Æ( Ý(ë() )() ->)I)^) t)‚) š)¦) -¼)Ç)Ü)å)í)** ***0*H* ^*l**˜* - *#«*Ï*è*+++%+B++_+‹+“+ š+ ¨+ -´+ ¿+ Ì+Ú+ï+,,5, J,W, f,t,‡,¢,"¹,Ü,å,û, -)-/-4-:-$P-u-‡-›-ª- ¹-Å- Í- Û-ç-ú- ÿ- .. -1. <. -I.T. d.n.}. . —.¡.º.É.à.ö./0/B/I/R/ e/q/„/ž/£/ -©/ ´/À/Ò/æ/ù/ 0 0 0)0 :0 G0 Q0]0z0‰0›0 ­0 -º0 Å0Ï0 ê0 ÷01 1 )1 51,A1n1!1£1·1Î1)ë1 2"2 :2 H2T2Y2h2o2 €2 Œ2š2B­2Að223P3e3 w33ˆ3—3 §3´3Æ3Û3ã3„ë3p44‘4™4¢4 -§4²4 Æ4Ô4ë4 ý4 -55<5"[5!~5! 5Â5Ú5ó5 6 6 6)696H6 P6^6Vf6+½6 é6(ó67""7E7 [7 g7s77%¥7 -Ë7 Ö7à7è7÷7 8 -8&8 58C8 L8Z8 n8 x8†8Œ8Ÿ8 ´8 À8 Ì8Ú8&ô8,9 H9U9Z9 -j9 -u9€99»9Ú9ò9:4:L:^: -d:o:w: -‡: ’:Ÿ:®: ·:Å:Í:Ô: ñ:ý: ;!;@; O;]; s;;;«; »;Å;Ö; è;õ;ü;;<?@<€<<—<«<»<Ø<¡õ<4—=Ì=Õ=-Ý= ??? -.? 9?#C?g?-z? ¨?´?É? Þ?è?ð?@@ -@ $@¥0@Ö@ê@þ@ AAA%A+AAA -YA -dAoA…A -•A  A ªA¸A¼AÖA çA ñA!ûAB !B/BCB RB _BlB‡BŽB –B¤B¹B ÏBÛB -îBùB C C,C ACMC -`CkC}C™C¶C»C ÁC!ÎCðC!D#0DTD jD -wD9‚DU¼D=E<PE=EËE"ÑE?ôE4FFF WFcFgFlF(qF,šFÇF×FéFúF - GG,GAGJUG  G­G¼GÕG ïG üG H$H >H JHXHpHŠHšH;´HðH -I I &I2ILI ^I jIxI ˆI –I £I¯I·I ÕIßIúIJ)J=JPJaJtJ…J˜J³JÅJÚJ+ñJK5KUK\K kK xK …K‘K £K °K¼K#ÓK ÷KL L!L6LML6eLœL¹LÁLÈL ÝL7êL"M@MUMeMlMƒM™M ¨M µMÁMÓM çMôM NN3N9N -@N -KNVN ^NkN€N NN -£N®N³N ÈNÔN -ëNöNO 3O?OQOlOˆO £O¯O¿OØOèOüO4PFPcPvPP¬P¿PÎP.èPEQ]Q nQ |Q‰Q ¡Q ¯Q½QØQ ÞQ ìQ øQ -RR R -,R7RFR URbRR‡Rœ›RN8S -‡S’S›S¢S´S ¼SÈSÚSöS T#&TJThT |TˆTšT¶TÌT#æT -U(U kNk^kokŽk¤k´kÉkÙkèk ùkll 3l?lDlTlil+ol›l¡l²l ¹lÆl ÍlÚl êl -ølm mmm !m -m8:mvsmêmñm n!n )n 6nBn Hn!in‹n£n¿nÚnóno-o4oCoJoSogoo ˆo •o ¡o ¯o½oÆoÏo Øoåoõo pp !p -p9pVp!ep‡p›p(´pÝp#æp -q q%q,q -2q =q JqTqcqwq’q -—q ¢q -®q ¹qÇq×qKàq1,r7^r1–r5ÈrHþrAGsŠ‰s;t!PtÁrt 4uæUu ŒMŒoVŒÆŒÌŒÞŒñŒ -) 9 GQjs {ˆ -Ž<™ ÖŽäŽ ûŽ+;J_y‰˜¬»Õå ô -%05>3U;‰;Å¡‘£‘Fª’ ñ’û’ “ ““!“)“ ;“\“c“k“t“’“²“3Ë“#ÿ“#”;”N”^”x”Ž””¬”²” ¹”Å”â”ë”Fô”;• -[• -f•q• v• „• ’• Ÿ• ¬• º•!È•!ê• – –+$–KP–0œ–QÍ–˜—¢¸—$[˜5€˜P¶˜G™-O™O}šjÍšo8›e¨›jœ~yœpøœoiwÙ<Qž?Žž>Ξt Ÿt‚Ÿ`÷Ÿ‰X â b¡0h¡™¡Ÿ¡¦¡¸¡Í¡ Þ¡ì¡6î¡o%¢•¢—¢ž¢4¦¢#Û¢Èÿ¢GÈ£%¤X6¤U¤Oå¤5¥L¥U¥^¥f¥ -o¥ z¥ †¥¥ ™¥£¥¬¥#¾¥â¥ ê¥ø¥¦¦¦¦&¦9¦L¦U¦g¦ y¦ƒ¦ ˆ¦ –¦¤¦ »¦ŦͦÓ¦ Ö¦à¦ó¦§ -§N§ T§a§h§q§ §§ ¥§¯§À§ ç ϧ Ù§ç§û§¨ - ¨¨ ¨)¨1¨Q¨ Z¨h¨n¨}¨œ¨ «¨·¨ -¿¨ʨܨ ì¨ú¨ © ©'© ;© I©W© g©t©‡©©­©¿© Щ Ü©è©÷©ªª +ª 5ª -BªMªSªbª~ªªŸª¹ªʪãªôª« « 7« A«K« S«]« c«o«„«“« ™«§«·«¾«Ä«Ë« Þ«ë«î« ÷« ¬ - ¬ -¬!¬:¬C¬ K¬U¬ [¬h¬n¬t¬z¬¬ˆ¬¬˜¬ «¬ ·¬ĬÞ¬ æ¬ó¬ú¬­ ­#­2­ -R­]­p­ ­ ‹­—­Ÿ­§­½­ Ì­ Ù­å­ è­ò­÷­ý­®+®4®<®O®e® …® ’® ®¦®¶®¼®î -Ë® Ö®ã® ó® ¯ -¯ ¯ (¯ 5¯ ?¯ L¯Y¯ j¯t¯ |¯†¯¯ -“¯ž¯ §¯³¯¼¯ ˯ دä¯í¯ ô¯°°° "° /° =°J° S° a°o° ~°Š°°£°¦°«°³° ° Ï° Û°è°ý° ±±#±,±=±P±b±(t±±¥±®±ıܱî±4²1=²/o²Ÿ²µ²Ųå² í²ú²³³#%³ I³j³‰³³ ³"°³Ó³ -Û³æ³ø³ ´´´/´ @´L´S´[´k´}´’´ -«´ -¶´ -Á´Ì´ Ò´à´æ´ö´ü´µ -#µ.µ?µEµ -NµYµ_µhµmµ‚µ˜µ§µ ¯µ¼µ˵ϵÕµصçµëµ -ñµüµ¶¶5 ¶B¶ T¶^¶n¶s¶z¶ ‚¶¶!¥¶ Ƕ è¶ · -)· 4·@·G·K·S·X·^·d· k· u··…·Œ· “·¡·.´·ã·>¸0?¹Ep¹œ¶¹SºdñºhV»j¿»‡*¼Œ²¼k?½–«½{B¾`¾¾[¿{¿ ÀI‹ÀhÕÀ?>Áb~ÁPáÁT2 ‡Â•Â¤Â ·ÂÅÂÕÂåÂùÂà -$Ã/Ã2Ã0MÃ~à šÃ ¨Ã=¶ÃNôÃCÄ YÄefÄ!ÌÄ#îÄÅ'ÅG=Å…Å –ţŬŵŠÍÅ ÛÅ çÅ -õÅ -Æ Æ Æ$Æ CÆ OÆ[Æ`Æ{Æ‹—Æ‘#ÇiµÇLÈ0lÈ%ÈÃÈËÈèÈIïÈ9É+WÉ ƒÉ#É*´ÉßÉýÉBÊ%`Ê%†ÊB¬Ê$ïÊË&0Ë!WË!yË0›Ë>ÌË+ Ì!7Ì-YÌ&‡Ì9®ÌKèÌ_4Í#”Í7¸Í&ðÍÎ4*ÎK_Î6«Î2âÎ4ÏKJÏ6–Ï2ÍÏ4Ð]5ÐC“Ð2×Ð -Ñ%#Ñ IÑ+UÑÑ5’Ñ*ÈÑóÑÒ*Ò>ÒPÒ7hÒZ ÔXûÔ+TÕ -€Õ8‹ÕÄÕ×ÚÕ²Ö@ÄÖ.×@4×u×}ו׮×,Î×+û×#'Ø,KØlxØiåØOÙ‚mÙðÙÚÚ54Ú1jÚœÚ ¸ÚÄÚ@ÍÚÛ/)Û*YÛ „Û)¥ÛÏÛïÛ,Ü&3Ü ZÜhÜoÜ'ܩܼÜ{ÜÜUXÝ ®Ý -»ÝÆÝÙÝ ïÝ>ýÝ*<Þ)gÞH‘ÞÚÞ_íÞMß -cß nßzß*ß ºßÇßçßà%àc@à¤à³àÓàëàûà áá0á EáRájáá„áÚ á{â€â˜â¨â¿âQÔâ+&ãRãrã!…㎧ãh6ärŸävåi‰å³óå8§æ[àæg<ç,¤çzÑç\LèH©è=òè@0éqé7é Åé Óéáé óé7ê9Lê2†ê0¹ê7êêA"ë+dëDë2ÕëBìIKì -•ì ìºì<Óì8íIí'aí/‰í!¹íÛíúí î %î2îJî,fî“îœî®î½î9Ûî$ï:ï5Zïqïnðvqðwèðo`ñoÐñY@òDšòJßò<*ówgóIßó9)ôUcô ¹ô˜ZõYóõYMö‹§ö‰3÷[½÷$øY>ø5˜øÎø3æø.ù -IùTù$gù$Œù"±ù Ôùõù -úú0.ú_ú*nú!™ú'»úRãú6ûTû oû{û –û£û4·û>ìû+üG>ü'†ü'®üÖü*ðü"ý>ýRýeývý‰ýIŸýIéý%3þ'Yþ<þ!¾þ<àþ4ÿBRÿ>•ÿ5Ôÿ2 -]=%›'Á%é"2EXäiNcu!ŽN°GÿGG4-ÄBòB5JxÃØ4ê /@pO/ßM/][KéC5Ky@Å=aD¦º'Õ.ý4, (a .Š K¹ @ -(F -[o -?Ë -+ B7 Gz # æ 1û O- )} § )Å Hï 8 O m 2 !²  Ô Þ  û 6 S`~œ -°e»!4P"p“0¦×ê"þ!$@e"€ £&Ä#ë %0Voˆ› ª´LÍD_w'•@½þ8%V&|£#À!ä&B!^€&œ!Ãå%&),P.}*¬!×/ù)AMZ¨±ÄÞïþ!0"H,k:˜Óì! -+,X'u²Ä'Ü3{GgÃi+• ®$»#à(*@kA€)Â!ì%%4'Z'‚)ª2Ô%8!V(x.¡uÐF!d†#¤È#â'&0N(!¨Ê"ß   $* (O =x =¶ ô  ! 4!*B!&m!/”!3Ä!ø!"$1"V"Ar"´" Ô"õ"&#"8#)[#2…#!¸#Ú#ö#$*,$NW$¦$.¼$=ë$2)%A\%;ž%Ú%Cñ%J5&1€&3²&Sæ&":']'r''J©'6ô' -+(6(U(&s(6š(7Ñ(3 )K=)5‰)#¿)0ã)8*M*–Í*d+s+ˆ+4¡+$Ö+Nû+6J,,.—,Æ,Eâ,F(-Lo-+¼-+è-1.1F.x.#.2³.0æ./!6/#X/I|/8Æ/ÿ/^0zs0mî0^\1}»1}92}·2p53n¦3æ4^ü4s[5‰Ï5uY6ËÏ6~›7Ÿ8Šº8äE9*:!C:6e:œ:1¸:ê:/ó:#;C;U;i;!…;.§;Ö;,ö;0#<*T<,<-¬<EÚ<* =)K=%u=›=F»=+>>.>?m>)­>×>+ç>*?(>?1g?1™?1Ë?1ý?4/@!d@%†@¬@)½@%ç@+ A:9A'tA6œA2ÓA1BP8B‰B©B#ÉB#íBC(+C-TC-‚C#°CcÔCx8D±DÇDÐDÙD ñD ÿD EE{0EC¬EðE&F*7G@bG%£G#ÉGíGH H @H MH}ZHØHòH I "I4.IcI3}I±I¶IÐI*îIJ3J(EJnJ;‡JÃJÏÕJ$¥KEÊKœMÅ­NsO¾…O -DPOPÊ`P4+Q6`Q—Q®QÈQßQ%ðQ0RGRUeRW»RSg)S‘S£S¶S+ÔS0T -1Ta,sa aBÀab!b¨Ab!êb' c4cPcec!c£c'¿c"çc& -d1d'Md%ud ›d¥d"¿dâdùd2 e Fj…j*˜j%Ãjéjk;k)Nk#xk)œk=Æk;lJ@lP‹lKÜlP(mIym6Ãmxúmsn%Œn)²nJÜn)'o5QoE‡o'Ío#õop'3p[p8sp8¬p!åp'q!/qQqZqiq‚q•q ¬qÍqèqùqrr*r=r Trurr ¡r«r»rÕrér!s#s?sQs Xses|ss¢sÁsÚsTés>vSv!sv•v5™vÏvàvïv%w.wMwdTw¹w"Ïw$òw'x?x[xqx†x;œx7Øx'y/8y/hy#˜y0¼y%íyz3z=ƒ@|ƒ½ƒ̓9àƒ9„WT„¬„¼„Í„*ç„+…>… ]…-~…3¬…+à…+ †(8†a† €†#¡†)ņ:ï†;*‡@f‡§‡D¶‡Kû‡ -GˆRˆ -aˆ lˆ,xˆQ¥ˆ$÷ˆ&‰C‰![‰%}‰ £‰ °‰ ½‰ Þ‰ÿ‰!Š#8Š:\Š)—Š+ÁŠíŠ* ‹+8‹+d‹4‹+Å‹'ñ‹HŒ+bŒ.ŽŒ0½Œ=îŒ?,*l—°%Áçû,Ž -GŽ RŽ^ŽqŽ$‘Ž,¶Ž ãŽ9>\x.¿×÷BZy8™!Ò ô‘>‘\‘x‘>˜‘!ב%ù‘!’pA’"²’2Õ’$“.-“6\“T““"è“G ”S”k” -‹”–”°”Ô à”í”' •w1•©•P9– Š–«–Ê–Ù–â–ø–—&—E— ]—g—w—–˜ °˜јê˜™+™1E™#w™>›™!Ú™ ü™+š7Iš7š=¹š=÷š=5›0s›0¤›/Õ›œœ0œ$Fœkœ œŒœ©œ©ÂœPl½ÑQžTdž>¹žøžŸ:-Ÿ0hŸn™Ÿ  ' 6 *V  — © Å Þ í ¡¡+(¡T¡i¡?‰¡É¡è¡ý¡4¢QR¢D¤¢é¢ ££2£$M£>r£:±£'ì£/¤0D¤/u¤`¥¤/¥6¥E¥_¥r¥¥)¦¥!Ð¥ò¥¦#¦3¦,B¦o¦&¦¨¦K¿¦ §%§-6§9d§#ž§;§!þ§7 ¨!X¨z¨ -˜¨ -£¨ ®¨Zº¨h©*~©©©'¾©æ©PªPSª1¤ªxÖ«O¬d¬y¬}®˜®©®¿®ήQç®%9¯J_¯ª¯(½¯(æ¯ °%°EC°&‰°%°°)Ö°)±3*±$^²(ƒ²¬²»²Ú² ò² -ÿ²2 -³&=³#d³ˆ³& ³"dz!ê³ ´$´8´<´V´g´v´!‡´©´"­´?дµ/µ$Nµ7sµ«µ ¾µ!̵.îµ'¶E¶*c¶#Ž¶*²¶+ݶ ·&#·J·*h·#“·0··@è·A)¸k¸~¸-’¸JÀ¸F ¹DR¹H—¹Aà¹"º;ºwRºÁʺsŒ»y¼—z¼½G#½„k½&ð½%¾'=¾e¾v¾ˆ¾f›¾o¿r¿!Ž¿!°¿!Ò¿ô¿'À/6À.fÀŠ•À' ÁHÁ5hÁ:žÁ%ÙÁÿÁ5Â/QÂ! £Â4ÄÂ:ùÂ4Ã0PÃcÃVåÃ)<Ä%fÄ+ŒÄF¸Ä:ÿÄ-:Å!hÅ'ŠÅ#²Å)ÖÅ#Æ $Æ22ÆeÆAzÆR¼Æ'Ç+7ÇcÇ%yÇ'ŸÇ2ÇÇ%úÇK È4lÈC¡ÈKåÈ[1É2ÉNÀÉÊ&)Ê.PÊ"Ê(¢Ê7ËÊ.Ë2ËMLËašËüË2Ì&LÌ)sÌ-Ì+ËÌx÷Ì6pͧ͸Í"ËÍ'îÍ€Î:—Î3ÒÎ ÏÏ?&Ï9fÏ ÏÀÏ!ÜÏ0þÏ/Ð'LÐDtйÐ.ÏÐþÐÑ Ñ@Ñ WÑ/cÑ7“Ñ!ËÑ8íÑ&Ò>ÒUÒ&fÒ!ÒO¯Ò)ÿÒM)Ó>wÓ!¶Ó:ØÓ6Ô4JÔ1Ô±ÔËÔ4ëÔ& Õ!GÕ&iÕ`Õ:ñÕ*,Ö.WÖB†Ö&ÉÖ)ðÖ1×FL×b“×!ö×%Ø>Ø0YØ'ŠØ!²Ø+ÔØÙ'Ù/7Ù#gÙ)‹Ù6µÙ/ìÙ+ÚHÚ_Ú"vÚJ™ÚäÚ*ÿÚ *Û|6Ü³Ü ÑÜ -ÞÜéÜÝÝÝ.ÝGÝZÝ qÝ’Ý­Ý ¾ÝÊÝÜÝøÝÞ#(ÞLÞjÞ ~Þ‹ÞžÞ»ÞÒÞ$íÞß1ß -FßQßbß}ß’ß"«ßÎßëßþßà('à Pàqà‹à.à&Ìà(óà.á(Kátá&’á.¹á,èá<â+Râ,~â«â*Åâ ðâã %ãFã%bãˆã)¦ã-Ðã'þã&ä(>ä2gä5šä6Ðä4å<å$Rå8wå7°å3èå$ælAæh®æiçxç.úç8)è0bè“è2¦è2Ùè, é%9é,_éKŒé0Øé ê ê&?ê$fê"‹ê®êJÃê4ë>Cë2‚ëJµë6ì27ì<jì<§ì(äì0 í:>í&yí? í<àí.î:Lî-‡îwµîv-ðª¤ðOñ«`óZ ô:gô6¢õ-Ùõ)÷61øthørÝø­Pù~þùE}úÃûæÉþs°x$Vô -  $C"c†—2µè3ÿ337g2ŸÒì!i($’$·+Ü;&D'k+“(¿/è7&P)w+¡$Í9ò9,f3ƒ6·6î7% C] 9¡ (Û + -;0 -2l -8Ÿ -&Ø -9ÿ ->9 x )˜ 8 5û (1 7Z  ’ Ÿ ,¾  ë ]ù  -W #b † #™  ½ -Ê *ø "#F]n}Œž´GÐ "/61f˜2¨2ÛW!Yy8ÓD 4QF†FÍ8M` zˆŸ(¿ è#ò0G!`‚‘%¤(Êó(4< -q$|F¡'èJ7[;“OÏ;4p ‰ª  Î+Ú%/1U -‡’#ªÎè#&e+x‘€ -‚‹‚}‘†©–l@+­SÙA- o×{!NS# ¢$²¬%e_(ÊÅ(=*¯Î*ê~+i,r,‚,4‹,dÀ,)%-UO.S¥.Tù.SN//¢/PÒ/Í#0¯ñ0|¡1„2A£2‘å4‘w5y 6Mƒ6ÕÑ7ǧ9oo;%ß<0>6?7O@‡AêŒC¥wD©EsÇFS;HEH¤ÕH -zI<…I ÂIÎIêIJ J%J 8JYJñjJ\K.lK/›KEËK)L+;L-gL,•L#ÂL=æL&$M.KM.zM©M.ÀMCïM3P>IPˆP%¡P)ÇP!ñP'Q6;QDrQ!·Q'ÙQ-R/R+HRtRR¡R¶RÔRðR S -S4S\TS]±SzT<ŠTµÇU}W X$X(3X"\XXŽX$ŸX,ÄXñXYYK0Y7|YG´YnüYPkZ7¼Z:ôZB/[Qr[%Ä[)ê[\2\M\c\.\ ®\¼\{Ó\BO]’]ª]¾]8Ï]&^!/^Q^q^Œ^I«^@õ^'6_'^_F†_ØÍ_y¦`€ ax¡aCcv^dkÕd‹AeœÍeÀjfX+h±„h½6i{ôi|pj¾íj½¬k¹jl×$mƒüm‰€n‹ -oÞ–oÇup{=qȹqÇ‚rJsRSs ¦s ³sAÁsRtVtpttRƒtÖtÙu Ûu èuVöuVMv÷¤vaœw6þw 5xžÖxuyHzNz7az™z¬z½z"Ìz2ïz"{6{7H{€{d•{ú{, |:|K|'[|ƒ|œ|"®|.Ñ|}%}&C}j}|}„}¡}'»}ã}ó} ~~~+~3?~<s~M°~þ~+ ;9Iƒ ™¥)¼æé €@€3T€ ˆ€”€¤€ À&Ï€ ö€?B$Uz6Ž;Å2‚4‚ H‚T‚ c‚q‚ Ž‚¯‚Ì‚é‚%ƒ&,ƒSƒ lƒƒ'¬ƒ7Ôƒ „"-„P„o„$‰„®„É„Ù„7ø„0…H…f… z…ˆ…(¦…Ï…#ï…$†8†*X†#ƒ†§†"džEê†0‡H‡ b‡n‡ Œ‡–‡2Ÿ‡"Ò‡õ‡*ˆ,2ˆ_ˆ qˆ }ˆ,‹ˆ ¸ˆÙˆ܈‰,‰*K‰v‰‰¡‰·‰ljä‰÷‰ ŠŠ*Š@Š VŠ)dŠŽŠ$©Š+ΊúŠ‹(‹8‹ @‹+J‹2v‹L©‹ö‹ŒŒ4ŒOŒgŒwŒ;ŠŒÆŒãŒüŒ  , 6B<bŸ³$Å8êK#Ž"oŽ’Ž ²Ž"¾ŽáŽ ùŽ 7T!t"–¹Ò î!.$P!u—´ÉÛ ã ïü&‘=‘ R‘*s‘ž‘®‘¾‘Б4í‘"’2’F’^’{’&’ ¶’×’,ë’“+0“ \“h“k“ p“~“™“°“ Í“:î“)”(?”h”|”•”"²”Õ”"ô”b•z•”•'¦•)Ε3ø•1,–Q^–S°–?—-D—4r—L§—ô—˜!˜53˜)i˜X“˜Iì˜A6™x™3ˆ™#¼™Bà™#š7š/Iš*yš ¤š°š(š'ëš› '› 3›$A›/f›2–›)ɛ󛜜 /œ;œJœ^œsœ‰œ6¡œØœ0òœ#3H ao4‡5¼ò ž*ž.Gžvž -zž…ž.ˆž·ž»žËžàž -ñž üžkŸCtŸ¸Ÿ*ÖŸ  - -  #, )P Az D¼ @¡CB¡†¡—¡ª¡¹¡¿¡СÙ¡ -â¡ -í¡ ø¡ ¢ -¢ ¢,¢;¢LJ¢P—¢9è¢[®­š|røɪ1ç7<ù€-†~T³¹>7 W7WËòV·nÚ”€ê†Ã/ ŠežÜr;Ü3ûã™NÌ®š…§éÜ‹¯ S ß+#åc7ùt®ù§V•ròî¢lAýg[0'ÌG¨=b¼lŒº/¾w:‘Ö¥5 ÷\T\Öž«~Ã"ìüB-ÂLÝňSs‰ßïM1 Ï=°ÏMú‰ÚåHÔv;—í¦2%(ýŸÌºÅÜ—w$ €Y_vé!Reýö_Gxç*±¼ B†Z„³ ¢W‚ ¾+[¿!ƶ¤+)»hesªbw2 ‚ÅêÂã0ži‰ò" Ñô¦nêLóžšSÒÔK©Xg€_ ÙN:58 ^ÕÙÞ¥´õO Œzï}"„+±Úß+ •èêøn'ÿµÞµ1¦.Cõ.µ˜ð›†¬£VƒçùšF9×ó·ûEN<NÃv ú†ô1_æš>ö Ã>¯þoÜÕ®è^+Ë\ B ‹ë6_G{ {89ßÑ­áØuS¼šàüºXÕâœâÛ”'¥M ÉäT/ Mþ±XÓ½D 9 ¼2Òr“˜ÌHƒ³©Áaƒé‹ºð4oÇVhü­|?B @ &3³~ ´‘=LÚfÞË$®0èá»5Ÿ˜47yæ²–ç°|Ï -€]ÈO•ù ¸]E 2ð -•"w[§iƒ'Éø¬eãî%ð‘Ç›("ãqä>ŠU9Û…±m= t_,‘ÛqFä¿P¶v¸¨‰ & Ò³áÈù |’¾ç£Ð+NÍí34°â Cœn…Ež›2# i«œ·føëLÓéc=tùIÐB†·']û¨"Ú}@! ûÀŽ]ïX ìø ]èv7P-Ý—gÊ ”€h«©•U©Ë‡Aî -xJá„OxAjapmÐYû D¬Ùš j,º{Z…΋ol *#¨(¸S0 äWÇ·É@Ӊίzn*ŒVoDLUÔ›qF ¨JŸ: >=|Qí›Ë´ð àþ Ì–fJØY@0ª£b÷–ÔX$ =òuQHm/IÅjúE0Y&vÒÛWÙ$åôlŠYh4Ç TsG@è}*1þCåŽM¡îÜQjH±¢‘ñmŸ«!r£ükí¢‚EªÕß“†^Sl·ÄŽ A]¬M Y¾H½?3ZÍÖ& ~J1e,%n,wkɹóÏjc5êoI˜“Š¨›ƒ²ò—¦:Ç/•BåÖ Þ—§5?GuW ŒÄqÿÔSA  ï>I”ýÀîµ·ü ‘d†HÂÀa;Þu°d½ŸÐF²¢¤‹K×eèÞZBR¯¯Æ -zeþMñ¥\ÎZé)æòNž‡ÑñB½Ëøö øà]˜ÿ-Žíku•1ã9vJÁc@ás*4 Xºs¬C”H6vÈÖµTFb­w'^*ûe' ÷Ä–ŒGÑ)ÕNØñæ‘ JƒO ¨#QpAÌi™;9P Ì ×Õ…Ãü&(mBë±ôÛ÷ç -5‡¢uÎëÔ-õj.Ÿˆ’[s¬pµkÄÍüéb$Qý¡`沂yF£gœè0|ˆð8RqÓÞ wñ&!§F¢(}Oõá@ «œ´JœÈå`¥2Ò¤ÆxIvÉÄÏ<¤êFPúÏ¡Ðo¢"4o›5 ïpc(¹J“Ré&;«·ëÚ#þÓ&O/Î tx‚Ì; ŽK Í‘Èt£ëÎâkC´ôÛ$AÁ j¦Âi+™ +÷0¤l¶K@ f-< "ÿ% “Ð)s…ã×c+ñS !¿V¸¦<@ÏóÆ&sjíÐà­;›ýÏæH «ñ?‡óÔðCEO°Øª$À„ÑC„añU -%ìÝ’×êMÐóVI °`f‰—<÷~[ 6K - Ó> yAÞŠ®Dä!Ä/ÉÅq =óZ Z¬ØÚTïè„h, ¤;?ì\i lc dºÿ\ ‰IU9)ò¦pð3ß`U‡˜Œ¯Û}P’ku é U -¿ŽA>3 ^ÉEäPZ—ªCar‡»wó©x†}n„ÜD6.Ë[ô6 l£,1ÒnÚ‚³:î~ûC?Ûb¿ 12Üò³ž™Â¬Ý/¸Á×%…Öw:ÃÊ ;”#Wy(*ÜÙÂØ"擹MÙÊWUÅ“Ëy…äƒ- ²%°ÝõmœÑdñß´{ÕædÁƃåIy™±€¼¡g`h{ê N 6 ±?›g Ðçk =4 B‹ª@Ý9ÈVšXF€³=Ķ:k˜±øMÑ -{õp½•K÷ýaJ ¡ÀëÆö:àf¶ ³îÑ~sDR ÒG¾çm«!Gti€#ˆ2(þ<éKÝTýt*P8ì>lr¢Óß#5E¾9íX߇[ú$z¡“y[ÇGúdׯ’e iüDúL¸|¦…tôÍ,>½}c2xi8Ò•öIÌ7ò-‚ºz#ôžEÚPSA8©%‹0íÍ—©´ -Ÿ)Á.’z½Q»afÙ¸Á8(­bþ;oQ4¾Q²Šê\ä ¿¤Å˜"Ý:«L K”âOì,ÊÍõ»§¡ŠD¨Õ ²%Ï÷$à¸È¾}) š._{'-h À6Η%ö´8|‹¡ãáÄŒ§#( þ_Ò°) xˉ޵ãĈö]µûp^h¾ùU)øO¯ âzâ* ^²LY¶ÈHö n§àR ?? ÊY ÇL‡] hRŸÖ¼»IbüW ì‹Å6,¼E×™Q ^\<»{SDaŽ®\4Ãk¹ÔŠ['– yqÀVð3¹xP­¥ U–¿5.ÙWØYÿâªá`H 3P‚ú„²f ¬íåù£œÙÕúà©Ý–¤à4Ûpº7Rÿ|rª ïÊ~Ñ!á& ¥§3rÿ™¤ë¹Y ¯œZï®T ˜ìÆî<-‘Xë~ÖŒ¥Ž–<L*ìÎmÖ»Kˆq.à G dÀ¨» ! „Ø”–d°{Ê NV ¹÷ˆpŽ,äˆ:‰8ój\z`ˆÓèö£½Z/a¿_ÿcÀ0Ê ¸ `5R1¿¡gŠ ç6¶ã”^’TÆ’z¥½OD¼gC ™2ŒJbõ]Ÿ`‡¹9u×F?ô¶)ïÔ8Í'Q®¦RKéõØy7. µÎ¶­¼ÍâÁgÅÆ “ ÇoÁm$dÂt·q6 Nf}7å­.’Ó Ç´u‚™3/ûÈæTýÊXÉ -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d 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.ErrorsEventEx_tra LargeExpanded as necessaryExport Path to SVGExport all paths from this imageExport the active pathExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV clockwise hue)FG to BG (HSV counter-clockwise)FG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerF_it Canvas to LayersFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFancyFatal parse error in brush file '%s': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInline pixbufInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlineOutput LevelsOverlayPDB calling error for procedure '%s': -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:Plase make sure the menu XML files are correctly installed.Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size:Problems parsing the text parasite for layer '%s': -%s - -Some text properties may be wrong. Unless you want to edit the text layer, you don't need to worry about this.Procedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QualityQueryQuerying new Plug-insQuerying plug-in: '%s' -Quick LoadQuick MaskQuick Mask AttributesQuick Mask MenuQuick SaveQuickMaskQuit The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLR_e-show "%s"R_eset Tool OptionsR_eset channelR_eset colorR_eset rangeR_ight Endpoint's Color...RadialRadius:Raise ChannelRaise Channel to TopRaise Channel to _TopRaise LayerRaise Layer to TopRaise PathRaise Path to TopRaise Path to _TopRaise channelRaise channel to topRaise layerRaise layer to topRaise pathRaise path to topRaise this image's displaysRaise window if already openRateRate:Re-Show LastRe-_center Midpoints in SelectionRe-_center Segment's MidpointRe-distribute _Handles in SegmentRe-distribute _Handles in SelectionRe_name Saved OptionsRe_peat "%s"Re_vert...Reading palette '%s': Missing GREEN component in line %d.Reading palette file '%s': Invalid number of columns in line %d. Using default value.Reading palette file '%s': Missing BLUE component in line %d.Reading palette file '%s': Missing RED component in line %d.Reading palette file '%s': RGB value out of range in line %d.ReadyReally clear image's undo history?Reassigning the shortcut will cause it to be removed from "%s".Recreate _PreviewRecreate previewRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRefresh brushesRefresh gradientsRefresh palettesRefresh patternsRegisteredReload C_urrent ThemeReload _all PreviewsReload all previewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove Parasite from ItemRemove PathRemove _EntryRemove dangling entriesRemove floating selectionRemove parasiteRemove the selected entryRemove the selected filter from the list of active filters.Removing shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemRender StrokeReorder ChannelReorder LayerReorder pathRepeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReposition channelReposition layerReposition vectorsRescan font listReset Tool OptionsReset _all Tool Options...Reset all FiltersReset all Filters...Reset all tool optionsReset the selected filter to default valuesReset to default valuesReset tool order and visibilityResizeResize ChannelResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResizing...Resolution changeResolution:Resource ConsumptionResource configurationRestore options from...Restore saved keyboard shortcuts on each GIMP startup.Restrict editing to polygonsReverseRevertRevert '%s' to '%s'?Revert ImageRevert failed. No file name associated with this image.Reverting to '%s' failed: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate ChannelRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationRoundS_hearS_how GridS_hrink...S_pikesS_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaturationSaveSave '%s' as POV-RaySave CurvesSave Error Log to FileSave ImageSave Input Device Settings _NowSave Keyboard Shortcuts _NowSave LevelsSave Tool OptionsSave Window Positions _NowSave _All Errors to File...Save _Selection to File...Save _as...Save a Cop_y...Save a Copy of the ImageSave all errorsSave as _POV-Ray...Save as _Template...Save changed keyboard shortcuts when the GIMP exits.Save curves settings to fileSave device statusSave gradient as POV-RaySave levels settings to fileSave options to...Save selectionSave selection to channelSave the changes to image '%s' before closing?Save the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%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)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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your GIMP installation is incomplete:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.0.0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-02-24 17:36+0200 -PO-Revision-Date: 2005-02-23 17:59+0200 -Last-Translator: Maxim Dziumanenko -Language-Team: Ukrainian -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Ðеправильний параметр "%s" - -ВикориÑтаннÑ: %s [параметр ...] [файл ...] - - --batch-interpreter <процедура> - Процедура, що запуÑкаєтьÑÑ Ñƒ командному Ñ€Ñдку. - --debug-handlers Дозволити Ð½Ð°Ð»Ð°Ð³Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ð¾Ð±Ñ€Ð¾Ð±Ð½Ð¸ÐºÑ–Ð² Ñигналів Ð´Ð»Ñ Ð½ÐµÐºÑ€Ð¸Ñ‚Ð¸Ñ‡Ð½Ð¸Ñ… Ñигналів. - --display <диÑплей> ВикориÑтовувати вказаний X-диÑплей. - --dump-gimprc Показати файл gimprc з типовими параметрами. - --no-cpu-accel Ðе викориÑтовувати приÑкоренні команди CPU. - --no-shm Ðе викориÑтовувати Ñпільну пам'ÑÑ‚ÑŒ між GIMP та доповненнÑми. - --pdb-compat-mode - Режим ÑуміÑноÑÑ‚Ñ– з базою даних процедур. - --session ВикориÑтовувати альтернативний файл sessionrc. - --stack-trace-mode - Режим Ð½Ð°Ð»Ð°Ð³Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ð½ÐµÐºÑ€Ð¸Ñ‚Ð¸Ñ‡Ð½Ð¸Ñ… Ñигналів. - --system-gimprc ВикориÑтовувати альтернативний ÑиÑтемний файл gimprc. - --verbose Показувати Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¸ запуÑку. - -b, --batch <команди> ЗапуÑтити в командному режимі. - -c, --console-messages Показувати Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð¶ÐµÐ½Ð½Ñ Ð½Ð° конÑолі заміÑÑ‚ÑŒ діалогових вікон. - -d, --no-data Ðе завантажувати пензлі, градієнти, палітри, візерунки. - -f, --no-fonts Ðе завантажувати шрифти. - -g, --gimprc ВикориÑтовувати альтернативний файл gimprc. - -h, --help ВивеÑти цю довідку. - -i --no-interface ЗапуÑтити без інтерфейÑу кориÑтувача. - -s, --no-splash Ðе показувати вікно запуÑку. - -v, --version ВивеÑти інформацію про верÑÑ–ÑŽ. -%d шарів%d Ñ‚/дюйм%d Ñ‚/дюйм, %s%d шарів%d хвилин%d Ñекунд%d x %d Ñ‚/дюйм%d x %d Ñ‚/дюйм, %s%d x %d точок%g x %g %s%p%s ÐºÐ¾Ð¿Ñ–Ñ ÐºÐ°Ð½Ð°Ð»Ñƒ%s канал -> Виділену ділÑÐ½ÐºÑƒÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ %sÐºÐ¾Ð¿Ñ–Ñ %s%s маÑка%s%sКлацаннÑ: Ñ€Ð¾Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ%s%sПеретÑгуваннÑ: Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ‚Ð° ÑтиÑненнÑ(%0.3f, %0.3f, %0.3f)(Ðемає)(Це конÑольне вікно закриєтьÑÑ Ð¿Ñ€Ð¾Ñ‚Ñгом деÑÑти Ñекунд) -(Ðеназваний буфер)(Ðеназваний шаблон)(МінÑєтьÑÑ)(не змінено)(неправильна поÑлідовніÑÑ‚ÑŒ UTF-8 у Ñ€Ñдку)(змінено)(немає)1 шар1 шар15 градуÑів %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)2D перетвореннÑ...4:1 (400%)8:1 (800%)<%s><<неправильно>><Ðемає модулів>Ð”Ð»Ñ Ð¾Ð¿Ñ‚Ð¸Ð¼Ð°Ð»ÑŒÐ½Ð¾Ñ— продуктивноÑÑ‚Ñ– GIMP, деÑкі параметри можуть бути змінені.The GIMP - GNU Image Manipulation Program -Copyright (C) 1995-2004 -Spencer Kimball, Peter Mattis та команда розробки GIMP.Файл, що міÑтить підказки не вдаєтьÑÑ Ð¿Ñ€Ð¾Ð°Ð½Ð°Ð»Ñ–Ð·ÑƒÐ²Ð°Ñ‚Ð¸!Файл, що міÑтить підказки не знайдено!Вже Ñ–Ñнує файл з назвою '%s'._Додати до виділеннÑ_КутПро програму GIMPДіÑРобити активним Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ñ–Ð´ _фокуÑомÐктивні фільтриÐдаптивна інтерполÑціÑДодатиДодати альфа-_ÐºÐ°Ð½Ð°Ð»Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð°Ð»ÑŒÑ„Ð°-ÐºÐ°Ð½Ð°Ð»ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ до карти ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð½Ð°Ð¿Ñ€ÑÐ¼Ð½Ð¸Ñ…Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð½Ð°Ð¿Ñ€ÑÐ¼Ð½Ð¸Ñ…Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð¾Ñ— напрÑмноїДодати маÑку ша_ру...Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð¼Ð°Ñки ÑˆÐ°Ñ€ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑтового ÑˆÐ°Ñ€ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð²ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ð¾Ñ— напрÑÐ¼Ð½Ð¾Ñ—Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð¼Ð°Ñки до шаруДодати колір з тлаДодати колір з оÑÐ½Ð¾Ð²Ð½Ð¾Ð³Ð¾Ð”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ð¼Ð°Ñки ÑˆÐ°Ñ€ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту до зображеннÑДодати поточний колір в Ñ–Ñторію кольорівДодати вибраний фільтр до ÑпиÑку активних фільтрів.Додати до палітри %sДодати до поточного виділеннÑÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ Ñ‚ÐµÐ¼Ð¸ '%s' (%s) -ДодаваннÑДодаткові ÑпоÑоби керуваннÑÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑкравоÑÑ‚Ñ– та контраÑтноÑÑ‚Ñ–ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð±Ð°Ð»Ð°Ð½Ñу ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ… ÐºÐ¾Ð»ÑŒÐ¾Ñ€ÑƒÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ñ–Ð²Ð½Ñ–Ð² ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑкравоÑÑ‚Ñ– та контраÑтноÑÑ‚Ñ–ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð±Ð°Ð»Ð°Ð½Ñу ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ… ÐºÐ¾Ð»ÑŒÐ¾Ñ€ÑƒÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ñ–Ð²Ð½Ñ–Ð² ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð´Ñ‚Ñ–Ð½ÐºÑƒ, оÑвітленоÑÑ‚Ñ– та наÑиченоÑÑ‚Ñ–ÐšÐ¾Ñ€ÐµÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð´Ñ‚Ñ–Ð½ÐºÑƒ та наÑиченоÑÑ‚Ñ–Ðвтоматичний підбір рівнівВирівнюваннÑРозширені параметриВплив:ОблаÑÑ‚ÑŒ заÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ %sÐерографÐерограф із змінним натиÑком_Ðльфа-канал -> ВиділенеЗ вирівнюваннÑмВирівнюваннÑÐ’ÑÑ– каналиВÑÑ– файлиВÑÑ– файли (*.*)Ð’ÑÑ– Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ– дані Ð´Ð»Ñ ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ñ–Ð¹, котрі не поміÑÑ‚ÑÑ‚ÑŒÑÑ Ð² "Tile кеш", будуть запиÑані у файл підкачки. Цей файл повинен знаходитиÑÑŒ в локальній файловій ÑиÑтемі з доÑтатньою кількіÑÑ‚ÑŽ вільного міÑÑ†Ñ (кілька Ñот Мб). Ð’ ÑиÑтемах UNIX ви можете викориÑтовувати ÑиÑтемний каталог тимчаÑових файлів ("/tmp" чи "/var/tmp").Дозволити Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð°Ð±Ñолютно прозорих ділÑнокДозволити Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð°Ð±Ñолютно прозорих ділÑнокДозволити Ð·Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ %sÐльфаÐльфа-канал -> Виділену ділÑнкуПрозоріÑÑ‚ÑŒ:Ð—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð°ÐºÐ¾Ð³Ð¾ розміру займе більше пам'ÑÑ‚Ñ–, ніж вказано у розділі параметрів "МакÑимальний розмір зображеннÑ" (%s)._ÐнімаціÑÐŸÑ€Ð¸ÐºÑ€Ñ–Ð¿Ð»ÐµÐ½Ð½Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‡Ð¾Ð³Ð¾ виділеннÑПрикріпити плаваючий ÑˆÐ°Ñ€ÐŸÑ€Ð¸ÐºÑ€Ñ–Ð¿Ð»ÐµÐ½Ð½Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‡Ð¾Ð³Ð¾ виділеннÑКут:Ðнтигумка %sЗгладжуваннÑЗовнішній виглÑдЗаÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ð°Ñки шаруЗаÑтоÑувати _маÑку шаруЗаÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ€Ñ–Ð³Ð—Ð°ÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ð°Ñки шаруВи дійÑно бажаєте видалити "%s" зі ÑпиÑку зображень на диÑку?Ви дійÑно бажаєте видалити шаблон "%s" зі ÑпиÑку та з диÑку?Як у п_араметрахЗапитувати Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ´ закриваннÑм незбереженого зображеннÑ.Пропорції:Пропорції:Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÑˆÑƒÐ¼ÑƒÐ”Ð¾Ð´Ð°Ð²Ð°Ð½Ð½Ñ ÑˆÑƒÐ¼Ñƒ до зображеннÑÐ”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÑˆÑƒÐ¼Ñƒ до ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð°Ð”Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ñ ÑˆÑƒÐ¼ÑƒÐвтор:ÐвтоСлідувати за _активним зображеннÑмÐвтозменшеннÑÐвтоÑÐºÐ¾Ñ€Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½ÑЗмінювати розмір вікнаÐвтозавантаженнÑÐвтоматичне видаленнÑДоÑтупні фільтриÐаÑвні типи:Ð—Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ð¾Ð¼ тла_ЯÑкравіÑÑ‚ÑŒ-контраÑтБу_фериТлоКолір тлаВÑтановити колір тла:Тло: %d, %d, %dÐазад (коригуюче)ВикориÑтовувати Ð´Ð»Ñ Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ñ–Ð»Ñнок Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÑƒÑÑ– видимі шариВикориÑтовувати Ð´Ð»Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ ÑƒÑÑ– видимі шариПозадуРівніБілінійнаЧорна-білийЧорний:Кольори крайніх точок з_мішуваннÑГ_радієнтне заповненнÑГрадієнтне заповненнÑ_ÐепрозоріÑÑ‚ÑŒ крайніх точок змішуваннÑГрадієнт: Градієнт: не заÑтоÑовне Ð´Ð»Ñ Ñ–Ð½Ð´ÐµÐºÑованих зображень.ЗаливаннÑ...СинійСиній:РозмиваннÑРізкіÑÑ‚ÑŒ та розмитіÑтьМе_жа...ÐžÐ±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐœÐµÐ¶Ð° виділеннÑРозмір межі:ЯÑкравіÑÑ‚ÑŒ-контраÑтЯÑкравіÑÑ‚ÑŒ-контраÑÑ‚ не діє на індекÑовані зображеннÑ.ПензельРедактор пензлівТеки пензлівUI пензліПензель:ПензліМеню пензлівЗаповненнÑБуфериМеню буферівЗатемнювачButtЗа розширеннÑмВідновлюючи Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ð¾ його Ñтану на диÑку ви втратити уÑÑ– зміни, включаючи вÑÑŽ інформацію про ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ñ–Ð¹.CMYK_Калібрувати_Піпетка_Стовпчиків:_Об'єднаннÑÐšÐ°Ð»Ñ–Ð±Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð¾Ð·Ð´Ñ–Ð»ÑŒÐ½Ð¾Ñ— здатноÑÑ‚Ñ– монітораÐе вдаєтьÑÑ ÑкаÑувати %sРозмір п_олотна...СкаÑуватиПрибрати напрÑмнуÐе можна додавати маÑку шару, Ñка відрізнÑєтьÑÑ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ð°Ð¼Ð¸ від вказаного шару.Ðе можна додавати маÑку до шару, Ñкий не має альфа-каналу.Ðе можна додавати маÑку до шару, Ñкий не Ñ” чаÑтиною зображеннÑ.Ðе вдаєтьÑÑ Ð¿Ñ€Ð¸ÐºÑ€Ñ–Ð¿Ð¸Ñ‚Ð¸ цей шар, тому що це не плаваюче виділеннÑ.Ðе можна перетворювати у палітру з більш ніж 256 кольорами.Ðе вдаєтьÑÑ Ñтворити новий шар з плаваючого виділеннÑ, тому що воно належить маÑці шару чи каналу.Ðе вдаєтьÑÑ Ñтворити теку "%s": %sÐе вдаєтьÑÑ Ñтворити файл попереднього переглÑдуÐе вдаєтьÑÑ ÐºÐ°Ð´Ñ€ÑƒÐ²Ð°Ñ‚Ð¸, тому що виділена ділÑнка порожнÑ.Ðе вдаєтьÑÑ Ñ€Ð¾Ð·ÐºÑ€Ð¸Ñ‚Ð¸ ${%s}Ðе вдаєтьÑÑ Ð²Ð¸Ñ€Ñ–Ð·Ð°Ñ‚Ð¸/Ñкопіювати, тому що виділена ділÑнка порожнÑ.Ðе можна піднімати шар, у Ñкого немає альфа-каналу.Зберегти неможливо. Ðічого не виділено.Ðе можна обводити порожній канал.Ðеможливо обвеÑти порожній контур.Розмір полотнаКолір _тла навколо зображеннÑ:Центр X:Центр Y:По центруЗміна кольору тлаЗміна елементу карти кольорівЗміна кольору переднього плануЗміна роздільної здатноÑтіЗміна одиниць вимірюваннÑЗмінити розмір при друкуванніЗмінити лише поточний шар чи контурЗмінити колір тла ÑіткиЗмінити колір переднього плану ÑіткиЗміна індекÑованої палітриЗміна перÑпективи Ñлою чи виділеннÑÐе вдаєтьÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ комбінації клавіші.КаналОзнаки каналуÐазва каналу:Канал не можна опуÑтити ще нижче.Канал не можна піднÑти ще вище.Колір каналуШар вже у Ñамому низу.Шар вже на Ñамій верхівці.Канал -> Виді_леннÑКанал -> ВиділенеКанал -> ВиділенеКанал:КаналиМеню каналів_Розмір клітин:Стиль Ð¾Ð±Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð´Ñ–Ð»ÑнокКолоО_чиÑтитиОчиÑÑ‚ÐºÐ°ÐžÑ‡Ð¸Ñ‰ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐžÑ‡Ð¸Ñтити Ñ–Ñторію ÑкаÑувань дійВидалити веÑÑŒ текÑтОчиÑтити помилкиОчиÑтити Ñ–Ñторію ÑкаÑувань...Клацніть "Продовжити" щоб заÑтоÑувати вказані вище уÑтановки.Клацніть "Продовжити" щоб Ñтворити ваш оÑобиÑтий каталог GIMP.Клацніть "Продовжити" щоб перейти до вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñƒ кориÑтувача.Клацніть "Продовжити", щоб перейти до вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñƒ кориÑтувача.ÐатиÑніть, щоб об'єднати цю точку з вибраною кінцевою точкою.ÐатиÑніть, щоб Ñтворити нову точку. (Ñпробуйте натиÑнути SHIFT).ÐатиÑніть, щоб Ñтворити новий компонент контуру.ÐатиÑніть, щоб Ñтворити новий контур.ÐатиÑніть Ð´Ð»Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ переглÑдуÐатиÑніть, щоб видалити цю точку.ÐатиÑніть, щоб Ñтворити точку у контурі. (Ñпробуйте натиÑнути SHIFT)ÐатиÑніть, щоб зробити цю точку кутовою.ÐатиÑніть, щоб відкрити контур.ÐатиÑніть, щоб вибрати контур Ð´Ð»Ñ Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ.Клацніть щоб оновити попередній переглÑд -ÐатиÑніть з %s, щоб примуÑово оновити переглÑдÐатиÑніть та перетÑгніть, щоб змінити лінію. З SHIFT важелі переміщаютьÑÑ Ñиметрично.ÐатиÑніть та перетÑгніть, щоб переміÑтити точку.ÐатиÑніть та перетÑгніть, щоб переміÑтити точки.ÐатиÑніть та перетÑгніть, щоб переміÑтити елемент. (Ñпробуйте натиÑнути SHIFT)ÐатиÑніть та перетÑгніть, щоб переміÑтити важіль. (Ñпробуйте натиÑнути SHIFT)ÐатиÑніть та перетÑгніть, щоб переміÑтити контур.КлацаннÑ: виділеннÑКлацаннÑ: Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ ÐŸÐµÑ€ÐµÑ‚ÑгуваннÑ: переміщеннÑВідÑікати на межі зображеннÑБуфер обмінуВідÑічений по нижньому шаруВідÑічений по зображеннюШтампЗакрити %s?Закрити уÑÑ– вкладкиЗакрити уÑÑ– вкладкиЗакрити цей діалог_Копіювати контурКол_ÑŒÐ¾Ñ€Ð¸ÐšÐ¾Ð»Ñ–Ñ€Ð‘Ð°Ð»Ð°Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²ÐšÐ¾Ð»ÑŒÐ¾Ñ€Ð¾Ð²Ñ– екранні Ñ„Ñ–Ð»ÑŒÑ‚Ñ€Ð¸ÐŸÑ–Ð¿ÐµÑ‚ÐºÐ°Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ піпетку_Ð‘Ð°Ð»Ð°Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²...Змі_ÑˆÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð²:Ð‘Ð°Ð»Ð°Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð² діє лише на шари у форматі RGB.ОчиÑтка кольоруÐомер кольору:Колір:_Мапа кольорівРе_жим:_ТонуваннÑ_Тип Ñ„Ð°Ñ€Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ñегмента_Тип Ñ„Ð°Ñ€Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ñ— ділÑнкиТонуваннÑÐ¢Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ñ–Ñ” лише на шари у форматі RGB.Ð¢Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑÐ¢Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑМапа кольорівРедактор мапи кольорівМеню мапи кольорівСтовпчики:_Коментар:Коментар_КонтраÑÑ‚:_РозмиваннÑПараметри кольорових екранних фільтрівÐалаштувати _додаткові приÑтрої вводу...Ðалаштувати Ñ_ітку...ÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ ÑіткиÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ñітки зображеннÑКомбінації клавішÐалаштувати _комбінації клавіш...Параметри вибраного фільтраÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ð±Ñ€Ð°Ð½Ð¾Ð³Ð¾ фільтра: %sÐŸÑ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ñƒ зображеннÑÐŸÑ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð¼Ð°ÑштабуваннÑÐŸÑ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ð½Ð¸ текÑтуЗапитувані при закриванні н_езбережених зображеньВикориÑтані клавішіКонічна (аÑиметрична)Конічна (Ñиметрична)З'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ñ–Ð²ÐšÐ¾Ð½ÑтантаОбмеженнÑКонтекÑтВиглÑд вказівника змінюєтьÑÑ Ð² залежноÑÑ‚Ñ– від вибраного інÑтрументу. Ð¦Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ð¾ ввімкнена, але Ñ—Ñ— можна вимкнути.ПродовжитиЗа учаÑтюПеретвореннÑÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÑƒÑ‚Ð°ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñƒ відтінки ÑÑ–Ñ€Ð¾Ð³Ð¾ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñƒ індекÑÐ¾Ð²Ð°Ð½ÐµÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð² індекÑÐ¾Ð²Ð°Ð½ÐµÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñƒ RGBÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñƒ індекÑоване (2 етап)...ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñƒ індекÑоване (3 етап)...ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñƒ індекÑоване...РозмиваннÑТип дії %sÐšÐ¾Ð¿Ñ–ÑŽÐ²Ð°Ð½Ð½Ñ Ð· буфера з назвоюКопіювати ви_Ð´Ð¸Ð¼ÐµÐšÐ¾Ð¿Ñ–ÑŽÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ "%s" з "%s"...ÐвторÑькі права:Пошкоджений Ñегмент %d у файлі градієнту '%s'.Ðе вдаєтьÑÑ Ñтворити '%s': %sÐе вдаєтьÑÑ Ñтворити тимчаÑовий файл '%s': %sÐе вдаєтьÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ "%s": %sÐе вдаєтьÑÑ Ð·Ð½Ð°Ð¹Ñ‚Ð¸ програму переглÑду довідки GIMP.Ðе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ '%s' Ð´Ð»Ñ Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ: %sÐе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ '%s' Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñу: %sÐе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ файл мініатюри '%s': %sÐе вдаєтьÑÑ Ð¿Ñ€Ð¾Ñ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ %d байт з '%s': %sПомилка Ð¿Ð¾Ð·Ð¸Ñ†Ñ–ÑŽÐ²Ð°Ð½Ð½Ñ Ñƒ XCF-файлі: %sÐе вдаєтьÑÑ Ð·Ð°Ð¿ÑƒÑтити програму переглÑду довідки GIMP.КількіÑÑ‚ÑŒ:Ка_друвати шарС_творити нову Ð¿Ð°Ð½ÐµÐ»ÑŒÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ ÑˆÐ°Ð±Ð»Ð¾Ð½ÑƒÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ зображеннÑÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ ÑˆÐ°Ñ€ÑƒÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ шаблонуСтворити нове вікно Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ зображеннÑСтворити нове Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð· шаблонуСтворити новий ÑˆÐ°Ð±Ð»Ð¾Ð½Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ‚Ð° Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½ÑŒ чи Ñ„Ð¾Ñ‚Ð¾Ð³Ñ€Ð°Ñ„Ñ–Ð¹Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ‚Ð° Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ñ–Ð²Ð¡Ñ‚Ð²Ð¾Ñ€Ð¸Ñ‚Ð¸ криву з текÑтуСтворити виділену ділÑнку з ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð½ÑŒÐ¾Ð³Ð¾ переглÑду...Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÐ¸ "%s"...КадруваннÑÐšÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ– зміна Ñ€Ð¾Ð·Ð¼Ñ–Ñ€ÑƒÐ†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ ÐºÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° зміну Ñ€Ð¾Ð·Ð¼Ñ–Ñ€ÑƒÐšÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑÐšÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐšÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑÐšÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‡Ð¸ зміна розміру зображеннÑКадруваннÑ: Лише перехреÑÑ‚Ñ_Вирізати_Вирізати у буфер з назвою...Кубічна (ЯкіÑніше)_СтанПоточна ширина:Лише поточний шарПоточний ÑтанПоточна ширина:КурÑор_ВиглÑд курÑору:ВиглÑд _курÑору:Тип кривоїКривіКриві Ð´Ð»Ñ Ñ–Ð½Ð´ÐµÐºÑованих зображень не можна налаштувати.ÐетиповийВибраний колірВлаÑний градієнтВ_лаÑний колір тла:ВирізаннÑÐ’Ð¸Ñ€Ñ–Ð·Ð°Ð½Ð½Ñ Ð² буфер з назвоюБірюзовийБірюзовий:Д_ублювати пензельД_ублювати каналД_ублювати градієнтД_ублювати шарД_ублювати палітруД_ублювати контурД_ублювати візерунокД_ублювати шаблон...ТемнийЛише темнеТире-крапка-крапка...Тире-крапка...Шаблон лінії:Тип лінії:ПунктирДата:ÐалагодженнÑЗовнішній виглÑд у повноекранному режиміЗовнішній виглÑд з звичайному режиміТипова ÑіткаПараметри ÑіткиТипова _інтерполÑціÑ:Розмір переглÑду _шарів та каналів:_Типовий поріг:Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸Ð’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ ма_Ñку ÑˆÐ°Ñ€ÑƒÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¼Ð°Ñки шаруВидалити об'Ñ”ÐºÑ‚Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑÐµÐ³Ð¼ÐµÐ½Ñ‚ÑƒÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ð±Ð»Ð¾Ð½ÑƒÐ’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ пензельВидалити каналВидалити колірВидалити Ð³Ñ€Ð°Ð´Ñ–Ñ”Ð½Ñ‚Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¼Ð°Ñку ÑˆÐ°Ñ€ÑƒÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ð»Ñ–Ñ‚Ñ€Ð¸Ð’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð²Ñ–Ð·ÐµÑ€ÑƒÐ½ÐºÐ°Ð’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ параметри...Видалити вибраний буферВидалити вибраний шаблонВидалити це зображеннÑÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð²ÐµÐºÑ‚Ð¾Ñ€ÑƒÐе вдаєтьÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ "%s": %sЧаÑÑ‚Ñ– крапкиЗнебарвленнÑÐ—Ð½ÐµÐ±Ð°Ñ€Ð²Ð»ÐµÐ½Ð½Ñ Ð´Ñ–Ñ” лише на шари у форматі RGB.ОпиÑСтвореннÑСтан приÑтроюПриÑтроїДіалогиМеню діалогівРомбРізницÑЧиÑтий колірСховати маÑку ÑˆÐ°Ñ€ÑƒÐ’Ð¸Ð¼ÐºÐ½ÐµÐ½Ð½Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñ— маÑÐºÐ¸Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑтової інформаціїВідображеннÑВікно навігаціїЕкранні _фільтри...Процедури відображеннÑТип зображеннÑ:Ð’Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ [%0.6f, %0.6f]РозчиненнÑВідÑтань:ВідÑтань: %0.6fПараметри змішуваннÑДіленнÑВиконати _нове вÑтановленнÑВи дійÑно бажаєте повернутиÑÑŒ до типових параметрів уÑÑ–Ñ… фільтрів?Ви дійÑно бажаєте повернутиÑÑŒ до початкових параметрів?Бажаєте замінити це Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð¸Ð¼, Ñке зараз зберігаєте?_Ðе зберігатиПанельÐ_едавні зображеннÑÐедавні зображеннÑДокументиМеню ÑпиÑку зображеньО_ÑвітленнÑ/затемненнÑОÑвітлювачОÑÐ²Ñ–Ñ‚Ð»ÐµÐ½Ð½Ñ Ñ‡Ð¸ Ð·Ð°Ñ‚ÐµÐ¼Ð½ÐµÐ½Ð½Ñ Ð¾Ð±Ð²ÐµÐ´ÐµÐ½Ð½ÑОÑвітленнÑ/затемненнÑПодвійний пунктирПеретÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸ÐŸÐµÑ€ÐµÑ‚ÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð¾Ñ‡Ð¾ÐºÐŸÐµÑ€ÐµÑ‚ÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¾Ñ—ÐŸÐµÑ€ÐµÑ‚ÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð°Ð¶ÐµÐ»ÑПеретÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐŸÐµÑ€ÐµÑ‚ÑгуваннÑ: переміщеннÑÐœÐ°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð¿ÐµÑ€Ð¾Ð¼ÐœÐ°Ð»ÑŽÐ²Ð°Ð½Ð½ÑРежим малюваннÑПроцедури малюнкуОпуÑÐºÐ°Ð½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ шаруОпуÑÐºÐ°Ð½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ контуруЧерез брак шрифтів функціональні можливоÑÑ‚Ñ– текÑту недоÑтупні.Відображати діїДублювати пензельДублювати каналДублювати градієнтДублювати ÑˆÐ°Ñ€Ð”ÑƒÐ±Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð¿Ð°Ð»Ñ–Ñ‚Ñ€Ð¸Ð”ÑƒÐ±Ð»ÑŽÐ²Ð°Ñ‚Ð¸ ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ð”ÑƒÐ±Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð·ÐµÑ€ÑƒÐ½ÐºÑƒÐ”ÑƒÐ±Ð»ÑŽÐ²Ð°Ñ‚Ð¸ вибраний шаблонÐе вдаєтьÑÑ ÑкаÑувати_ЕкÑпорт контуру...Д_уже малийПоведінка Ð±Ñ–Ð»Ñ Ð¼ÐµÐ¶Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð¼Ðµ_жПравкаПравка ознак каналуПравка кольору каналуПравка елементу палітри кольорівПравка елементу палітри кольорівЗміна ознак шаруПравка маÑки шаруТип діїПравка кольору палітриПравка ознак контуруЗміна ознак швидкої маÑкиЗміна кольору швидкої маÑкиПравка шаблонуПравка пензлÑ...Правка ознак каналуПравка кольоруПравка елементу палітри кольорів #%dПравка градієнтаПравка ознак шаруПравка палітриПравка ознак контуруПравка візерунку...Процедури редагуваннÑРедагувати вибраний ÑˆÐ°Ð±Ð»Ð¾Ð½Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ ÐµÐ»Ñ–Ð¿ÑомПорожній каналПорожній шарПорожній контурПорожній текÑтовий ÑˆÐ°Ñ€ÐŸÐ¾Ñ€Ð¾Ð¶Ð½Ñ Ð½Ð°Ð·Ð²Ð° змінної у файлі Ñередовища %s_ПокращеннÑÐ£Ð²Ñ–Ð¼ÐºÐ½ÐµÐ½Ð½Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñ— маÑкиУвімкнути Ñ€Ð¾Ð·Ð¼Ð¸Ð²Ð°Ð½Ð½Ñ _прозороÑтіУвімкнути ÑпоÑіб керуваннÑПоказувати підказки при запуÑку GIMP.Показувати контекÑтні підказки.ГігантÑькийВведіть назву Ð´Ð»Ñ Ð¾Ð±'єднаної палітриВведіть назву Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð¸Ñ… параметрівВведіть назву цього буферуВведіть назву цього шаблонуВведіть нову назву Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð¸Ñ… параметрівВведіть адреÑу (URI):СередовищеТеки ÑередовищаВирівнюваннÑÐ’Ð¸Ñ€Ñ–Ð²Ð½ÑŽÐ²Ð°Ð½Ð½Ñ Ð½Ðµ діє на індекÑовані шари.Ð¡Ñ‚Ð¸Ñ€Ð°Ð½Ð½Ñ Ð´Ð¾ тла чи прозороÑтіГумкаКонÑоль пом_илокКонÑоль помилокМеню конÑолі помилокПомилка Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ XCF файлу: %sПомилка аналізу "%s" у Ñ€Ñдку %d: %sПомилка при зчитуванні '%s': %sПомилка при зчитуванні файлу Ð¿ÐµÐ½Ð·Ð»Ñ '%s': %sПомилка при запиÑуванні '%s': %sПомилка запиÑу XCF: %sПомилка запиÑу у файл "%s": -%sПомилка при запиÑуванні у '%s': %sПомилка при запиÑуванні у тимчаÑовий файл '%s': %s -Файл не був Ñтворений.Помилка при запиÑуванні у тимчаÑовий файл '%s': %s -Оригінальний файл не був змінений.ПомилкиСередовищеДу_же великийРозширений при необхідноÑтіЕкÑпорт контуру в SVGЕкÑпортувати уÑÑ– контури цього зображеннÑЕкÑпортувати поточний контурЕкÑпозиціÑ:Додаткові приÑтрої вводуЗа розширеннÑÐ¼Ð—Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ð¾Ð¼ переднього плануОÑновний у фоновий (HSV за годинниковою)ОÑновний у фоновий (HSV проти годинникової)Передній план до тла (HSV)Передній план до тла (RGB)Передній план до прозорогоПередній план до прозорогоПер.план/тлоКолір пер.плану/тлаВідпуÑÐºÐ°Ð½Ð½Ñ Ð¿Ð»Ð°Ð².виділеннÑÐ—Ð°Ñ…Ð¾Ð¿Ð»ÐµÐ½Ð½Ñ Ð¿Ð»Ð°Ð².виділеннÑПлав.виділ. у шар_До розмірів шарівПоÑтуповий перехідÐе вдаєтьÑÑ Ñ–Ð¼Ð¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ñ‚Ð¸ градієнт з '%s': %sÐе вдаєтьÑÑ Ñ–Ð¼Ð¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ñ‚Ð¸ з '%s': %sКольоровийКритична помилка аналізу файла Ð¿ÐµÐ½Ð·Ð»Ñ '%s': Байтів = 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Віддзеркалити _горизонтальноВіддзеркалити _Ð²ÐµÑ€Ñ‚Ð¸ÐºÐ°Ð»ÑŒÐ½Ð¾Ð’Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑÐ’Ñ–Ð´Ð´Ð·ÐµÑ€ÐºÐ°Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð² або виділених ділÑнокВіддзеркаленнÑ...ВіддзеркаленнÑ...Плаваюче виділеннÑПлаваюче виділеннÑПлаваючий шарПлаваюче Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ -(%s)Плаваюче Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñƒ шарПлаваюче Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñƒ шарПлаваючі виділеннÑÐ—Ð¼Ñ–ÑˆÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð² за Флойдом-Стейнбергом (звичайне)Ð—Ð¼Ñ–ÑˆÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð² за Флойдом-Стейнбергом (зменшене розтіканнÑ)Ð¤Ð¾ÐºÑƒÑ Ð²Ð²Ð¾Ð´ÑƒÐ¢ÐµÐºÐ°Ð¢ÐµÐºÐ¸Ð¢ÐµÐºÐ¸ шрифтівШрифт UIШрифт:ШрифтиМеню ÑˆÑ€Ð¸Ñ„Ñ‚Ñ–Ð²Ð”Ð»Ñ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð¾Ð³Ð¾ вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ GIMP, повинна бути Ñтворена тека '%s'.ВикориÑтовувати автоінÑтруктуваннÑПереднього плануКольори переднього плану та тла. Чорний Ñ– білий квадратики Ñкидають кольори. Стрілки мінÑÑŽÑ‚ÑŒ кольори міÑцÑми. Подвійне ÐºÐ»Ð°Ñ†Ð°Ð½Ð½Ñ Ð²Ð¸ÐºÐ»Ð¸ÐºÐ°Ñ” діалог вибору кольору.Колір переднього плануВÑтановити колір переднього плану:Передній план: %d, %d, %dВперед (традиційне)З конт_уруВильне виділеннÑВильне виділеннÑВільнаЗ Ñ‚_емиОтримувати роздільну здатніÑÑ‚ÑŒ від _віконної ÑиÑтеми (зараз %d x %d Ñ‚/д)Зліва направоСправа налівоЗ виділеннÑЗ темиВиді_Ð»ÐµÐ½Ð½Ñ Ð·Ð²'Ñзаної ділÑнкиÐа веÑÑŒ _ÐµÐºÑ€Ð°Ð½Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð·Ð²'Ñзаної ділÑнкиGIMPÐ Ð¾Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ GIMPÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ GIMPПараметри швидкодії GIMPÐ”Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ GIMPЗапуÑк GIMPТекÑтовий редактор GIMPПорада Ð´Ð½Ñ GIMPÐ’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ GIMP Ð´Ð»Ñ ÐºÐ¾Ñ€Ð¸ÑтувачаФайл XCF GIMPGIMP не може ініціалізувати графічний інтерфейÑ. -Перевірте правильніÑÑ‚ÑŒ параметрів вашого графічного Ñередовища.ПереглÑд довідки GIMPGIMP неправильно вÑтановлений Ð´Ð»Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ кориÑтувача, -тому що при вÑтановленні викориÑтовувавÑÑ ÐºÐ»ÑŽÑ‡ '--no-interface' -Ð”Ð»Ñ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñƒ кориÑтувача запуÑÑ‚Ñ–Ñ‚ÑŒ GIMP без ключа '--no-interface'.GIMP викориÑтовує обмежений об'єм пам'ÑÑ‚Ñ– Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ð´Ð°Ð½Ð¸Ñ… зображеннÑ, так званий "Tile кеш". Вам Ñлід підібрати відведений Ð´Ð»Ñ ÐºÐµÑˆÑƒ розмір пам'ÑÑ‚Ñ–. Зважте на кількіÑÑ‚ÑŒ пам'ÑÑ‚Ñ–, що викориÑтовуєтьÑÑ Ñ–Ð½ÑˆÐ¸Ð¼Ð¸ запущеними процеÑами.GIMP викориÑтовує додатковий файл gtkrc, то ж ви можете налаштувати його виглÑд не впливаючи на інші GTK-програми.ВерÑÑ–Ñ GIMPПри Ñпробі ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ, розмір Ñкого перевищує вказане тут значеннÑ, GIMP буде виводити попередженнÑ.ГаммаЗагальнеЦей параметр Ð´Ð»Ñ 8-бітних диÑплеїв. Він визначає мінімальну кількіÑÑ‚ÑŒ ÑиÑтемних кольорів, розподілених Ð´Ð»Ñ GIMP.Створити оптимальну палітруРоздільна здатніÑÑ‚ÑŒ монітораКолоÑальнийПроцедури GimprcЕфекти Ñк_лаГрадієнтРедактор градієнтівМеню редактора градієнтівТеки градієнтівКолір крайньої лівої точки Ñегменту градієнтаКолір крайньої правої точки Ñегменту градієнтаUI градієнтаФайл градієнту '%s' пошкоджений: Ñегмент не у діапазоні 0-1.Градієнт:ГрадієнтиМеню градієнтівКриÑÑ‚Ð°Ð»Ñ–Ð·Ð°Ñ†Ñ–Ñ Ð´Ñ–Ð»ÐµÐ½Ð½ÑмКриÑÑ‚Ð°Ð»Ñ–Ð·Ð°Ñ†Ñ–Ñ Ð¾Ð±'єднаннÑмСірийВідтінки ÑірогоЗеленийЗелений:СіткаВідÑтань між лініÑми ÑÑ–Ñ‚ÐºÐ¸Ð Ð¾Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ—Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾Ð—Ð±Ñ–Ð»ÑŒÑˆÐ¸Ñ‚Ð¸ виділене наÐапрÑмнаПрив'Ñзка до напрÑмних ÑіткиПроцедури напрÑмнихHSVHSV (%0.3f, %0.3f, %0.3f)HSV (відтінок _проти годинникової)HSV (відтінок _за годинниковою)ÐÐ¾Ñ‚Ð°Ñ†Ñ–Ñ HTML:_ВиÑота:П_рограма переглÑду довідки:ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ Ð¿Ð¾Ð·Ð½Ð°Ñ‡ÐºÐ¸: %0.6fЧіткі країЖорÑтке ÑвітлоТвердіÑтьТвердіÑÑ‚ÑŒ:ВиÑотаВиÑота:ДовідкаПереглÑд довідкиСиÑтема довідкиПрограма переглÑду довідки не запуÑкаєтьÑÑПрограма переглÑду довідки не Ñ–ÑнуєДовідкові процедуриШіÑтн:ВідблиÑкиСтиль вікон інших _панелей: Стиль вікна панелі _інÑтрументів:ІнÑтруктуваннÑІнÑÑ‚Ñ€ÑƒÐºÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¼Ñ–Ð½ÑŽÑ” кольори Ñимволу, щоб видати більш чіткі раÑтри при маленьких розмірах_ГіÑтограмаГіÑтограмаМаÑштаб гіÑтограмиІÑторіÑГоризонтальнеГоризонтальний зÑув першої лінії Ñітки. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð¾Ð¶Ðµ бути від'ємним.ВідÑтань між горизонтальними лініÑми.КількіÑÑ‚ÑŒ назв раніше відкритих файлів, що відображаютьÑÑ Ñƒ меню.ВідтінокВідтінок Ñ– наÑиченіÑтьВідтінок-наÑиченіÑÑ‚ÑŒ діє діє лише на шари у форматі RGB.Відтінок та _наÑиченіÑтьВідтінок:ВеличезнийЗ_начок та текÑÑ‚_ЗображеннÑ_Імпорт контуру..._ІнтерполÑціÑ:_Інтервал:ЗначокЗначок та опиÑЗначок та текÑтЯкщо доÑтупні, викориÑтовуютьÑÑ Ñ–Ð½Ñтрукції зі шрифту, але ви можете надати перевагу викориÑтанню автоінÑтруктуваннÑ.При включенні цього параметра інÑтрумент "ПереміщеннÑ" робить активним шар, що переміщуєтьÑÑ. У минулих верÑÑ–ÑÑ… це була типова поведінка.Якщо ви не збережете зображеннÑ, зміни у будуть %s втрачені.Ðезбережені зміни будуть втрачені.Ðеправильна назва змінної у файлі Ñередовища %s: %sЗображеннÑÐ—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ + ÑіткаРедактор Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½ÑŒÐ†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ зображеннÑМеню зображеннÑРозмір зображеннÑФормат Ñ€Ñдка ÑтануШаблониМініатюри зображеньФормат заголовку Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð° Ñ€Ñдок ÑануФормат заголовку зображеннÑВиглÑд вікна зображеннÑВікна зображеннÑÐ—Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð½Ðµ міÑтить видимих шарівФайл зображеннÑМаÑка зображеннÑРоздільна здатніÑÑ‚ÑŒ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð·Ð° допуÑтимими межами, викориÑтовуєтьÑÑ Ñ‚Ð¸Ð¿Ð¾Ð²Ðµ значеннÑ.Розмір зображеннÑПочаткове зображеннÑТип зображеннÑЗображеннÑМеню зображеньПараметри імпортуІмпорт Ð¿Ð°Ð»Ñ–Ñ‚Ñ€Ð¸Ð†Ð¼Ð¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ†Ð¼Ð¿Ð¾Ñ€Ñ‚ контуру з SVGІмпорт нової палітриІмпорт Ð¿Ð°Ð»Ñ–Ñ‚Ñ€Ð¸Ð†Ð¼Ð¿Ð¾Ñ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ†Ð¼Ð¿Ð¾Ñ€Ñ‚Ð¾Ð²Ð°Ð½Ð¸Ð¹ контур_Перо_ІнвертуваннÑ_Інвертувати маÑкуДоповнюватиВідÑтуп:Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ Ñ€ÑдкаÐомер:ІндекÑованийІндекÑований ÐºÐ¾Ð»Ñ–Ñ€ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð² індекÑованеІндекÑовані кольори маÑштабуютьÑÑ Ð±ÐµÐ· інтерполÑції. Вибраний тип інтерполÑції впливатиме лише на маÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ñ–Ð² та маÑок.Інформаційне вікноПочаткові пр_опорції маÑштабу:Ініціалізувати маÑку шару з:Ð†Ð½Ñ–Ñ†Ñ–Ð°Ð»Ñ–Ð·Ð°Ñ†Ñ–Ñ Ð´Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½ÑŒÐ†Ð½Ñ–Ñ†Ñ–Ð°Ð»Ñ–Ð·Ð°Ñ†Ñ–Ñ Ð´Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ: '%s' -ПероВбудований pixbufСпоÑоби керуваннÑПриÑтрої вводуРівні на входіВÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸Ð’Ñтановити влаÑну мапу кольорів; може бути кориÑно при роботі з 8-бітними (256 кольоровими) диÑплеÑми.Помилка вÑтановленнÑ. Зв'ÑжітьÑÑ Ð· ÑиÑтемним адмініÑтратором.Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾. ÐатиÑніть кнопку "Продовжить" Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð»ÑŒÑˆÐ¾Ñ— роботи.Швидке оновленнÑ_Розумні ножиціЯÑкравіÑÑ‚ÑŒ: %0.3f ÐепрозоріÑÑ‚ÑŒ: %0.3fІнтерфейÑÐ’Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð¿Ñ€Ð¾Ñ†ÐµÐ´ÑƒÑ€Ð° GIMPВнутрішні процедуриІнтерполÑціÑ:ПеретинПеретнути з поточним виділеннÑÐ¼ÐŸÐµÑ€ÐµÑ‚Ð¸Ð½Ð°Ð½Ð½Ñ (хреÑтики)ÐŸÐµÑ€ÐµÑ‚Ð¸Ð½Ð°Ð½Ð½Ñ (точки)неправильний Ñ€Ñдок UTF-8Ðеправильний Ñ€Ñдок UTF-8 у файлі "%s".Ðеправильний UTF-8 Ñ€Ñдок у XCF файліÐеправильний UTF-8 Ñ€Ñдок у файлі Ð¿ÐµÐ½Ð·Ð»Ñ '%s'.Ðеправильний Ñ€Ñдок UTF-8 у файлі градієнта '%s'.Ðеправильний Ñ€Ñдок UTF-8 у файлі палітри '%s'Ðеправильний UTF-8 Ñ€Ñдок у файлі візерунку '%s'.Ðеправильна поÑлідовніÑÑ‚ÑŒ Ñимволів у URLÐекоректна ÐºÐ¾Ð¼Ð±Ñ–Ð½Ð°Ñ†Ñ–Ñ ÐºÐ»Ð°Ð²Ñ–ÑˆÐеправильна ширина чи виÑота. Їх Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ñ– бути додатними.ІнвертуваннÑÐ†Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ†Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ñ‚Ð¸ виділеннÑÐ†Ð½Ð²ÐµÑ€Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ðµ діє на індекÑовані шари.Інвертувати виділеннÑВи дійÑно бажаєте це зробити?Схоже, ви раніше викориÑтовували GIMP 2.0ВлаÑтивоÑÑ‚Ñ– елементаВидиміÑÑ‚ÑŒ елементаВирівнюваннÑ:Зберігати прозоріÑтьЗавжди згориФікÑоване Ð²Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ñторін %sФікÑоване Ð²Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ñторін %sЗберегти виÑоту %sЗберігати прозоріÑтьЗберегти ширину %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Комбінації клавіш можуть бути динамічно перевизначені в GIMP. Ð’ menurc міÑтитьÑÑ ÐºÐ¾Ð¿Ñ–Ñ Ð²Ð°ÑˆÐ¾Ñ— конфігурації, тому Ñ—Ñ— можна зберегти Ð´Ð»Ñ Ð½Ð°Ñтупних ÑеанÑів. При бажанні, можете змінювати цей файл, але значно проÑтіше перевизначати комбінації клавіш з GIMP. Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ файлу призводить до Ð²Ñ–Ð´Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ð¸Ñ… комбінацій клавіш.КлавіатураПодії клавіатуриКомбінації клавішLTRКолір крайньої _лівої точки...ÐльбомнаВеликийВеликий (256x256)Збільшений переглÑдОÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°:ШарШар '%s' не має альфа-каналу. Цей шар буде розміщено вище.Ознаки шаруРозміри м_еж шару...Тип Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐœÐ°Ñка шару -> Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½ÐµÐ’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐ Ð¾Ð·Ð¼Ñ–Ñ€ шаруРежим _шару_Ðазва шару:Шар неможливо опуÑтити ще нижче.Шар неможливо піднÑти ще вище.Шар вже у Ñамому низу.Шар вже на Ñамій верхівці.Шар до розміру зображеннÑЗробити шар н_ижнімШар до розміру _зображеннÑЗробити шар в_ерхнім_Ðльфа-канал шаруШариМеню шарівПараметри об'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð²ÐšÐ¾Ð»Ñ–Ñ€ крайньої лівої точкиВлівоДовжина:Відновлювати позицію вікон від попереднього ÑеанÑу роботи.РівніРівні Ð´Ð»Ñ Ñ–Ð½Ð´ÐµÐºÑованих зображень не можуть бути Ñкореговані.СвітлийЛише ÑвітлеЛініÑМіжрÑдковий -інтервал:Ширина шару:Сти_ль лінії:Стиль ліній Ñітки.ЛінійнаПов'Ñзаний ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ…Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ñ€Ñ–Ð²Ð½Ñ–Ð²Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ колір правої точки _зЗавантажити Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ… з файлуЗавантажити параметри рівнів з файлуЗавантажити текÑÑ‚ з Ñ„Ð°Ð¹Ð»Ð°Ð—Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð½ÑŒÐ¾Ð³Ð¾ переглÑду...РозташуваннÑ:ЛогарифмічнаДовгі риÑкиПошук файлів данихОпуÑÐºÐ°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐžÐ¿ÑƒÑÐºÐ°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ñƒ додолуОпуÑтити канал _додолуОпуÑÐºÐ°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐžÐ¿ÑƒÑÐºÐ°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñƒ додолуОпуÑÐºÐ°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ—Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ контур нижнімЗробити контур _нижнімОпуÑтити каналОпуÑтити каналу додолуОпуÑÐºÐ°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐžÐ¿ÑƒÑÐºÐ°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñƒ додолуОпуÑÐºÐ°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐžÐ¿ÑƒÑÐºÐ°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ñƒ додолу_ЛупаПо_мічникПере_міÑтити по екрану..._МапаПурпурнийПурпурний:ЛупаЗробити _Ð¿Ñ€Ð¾Ð·Ð¾Ñ€Ð¸Ð¼ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÑƒÐ²Ð°Ð»ÑŒÐ½Ð¸Ð¼Ð¸ модулÑмиШвидкіÑÑ‚ÑŒ _мурашиної доріжки:ÐепрозоріÑÑ‚ÑŒ маÑки:Ðакладати маÑку на виді_лені ділÑнкиÐакладати маÑку на _невиділені ділÑнкиМатрицÑ:МакÑ. глибина:МакÑимальний розмір _файлу переглÑду:МакÑимальний розмір _нового зображеннÑ:МакÑимальна відмінніÑÑ‚ÑŒ кольорівМакÑимальна _пам'ÑÑ‚ÑŒ Ð´Ð»Ñ ÑкаÑувань:Середнє:Ð’Ð¸Ð¼Ñ–Ñ€ÑŽÐ²Ð°Ñ‡Ð’Ð¸Ð¼Ñ–Ñ€ÑŽÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð´Ñтаней та ÐºÑƒÑ‚Ñ–Ð²Ð’Ð¸Ð¼Ñ–Ñ€ÑŽÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð´Ñтаней та кутівВимірте лінійки та введіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ—Ñ… довжини:Медіана:СереднійСередні риÑкиОб'_єднати з попереднімОб'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· попереднімОб'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð²ÐžÐ±'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð¿Ð°Ð»Ñ–Ñ‚Ñ€ÐžÐ±'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð¸Ñ… шарівОб'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð¸Ñ… контурівО_б'єднати видимі шари...О_б'єднати видимі шари...Об'єднати _видимі шариОб'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð²ÐžÐ±'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð¿Ð°Ð»Ñ–Ñ‚Ñ€ÐŸÐ¾Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð²ÐµÐºÑ‚Ð¾Ñ€Ñ–Ð²ÐŸÑ€Ð¾Ñ†ÐµÐ´ÑƒÑ€Ð¸ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½ÑŒÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð¾ %d разів.ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÐµÐ½Ð¾ один Ñ€Ð°Ð·ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñ– у stderr.ПівтониПереміÑтити кориÑтувацькі параметриМінімальна кількіÑÑ‚ÑŒ рівнів по_верненнÑ:РізнеМайÑтерРежимРежим:Зміна вибраного кольоруЗміна рівнів кольорів Ð´Ð»Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ñ— ділÑнкиЗміна уÑÑ–Ñ… кольорівВідÑтань між Ñ€ÑдкамиТеки модулівДиÑпетчер Ð¼Ð¾Ð´ÑƒÐ»Ñ–Ð²Ð Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð¼Ð¾Ð´ÑƒÐ»ÑМодуліКурÑорПодії колеÑа мишіПодії колеÑа мишіПереміщеннÑÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ‚Ð¾Ñ‡Ð¾ÐºÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‡Ð¾Ð³Ð¾ виділеннÑÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð½Ð°Ð¿Ñ€ÑÐ¼Ð½Ð¾Ñ—ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð½Ð°Ð¿Ñ€Ñмної: ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð¼Ð°Ñки ÑˆÐ°Ñ€ÑƒÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑтового шаруІнÑтрумент переміщеннÑÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð°ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð² та виділених ділÑÐ½Ð¾ÐºÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾ÐŸÐµÑ€ÐµÐ¼Ñ–Ñтити поточний шарПереміÑти поточний контурПереміÑтити вибраний фільтр внизПереміÑтити вибрані фільтри вгоруПереміÑтити на _екран...ПереміщеннÑ: МноженнÑ_КількіÑÑ‚ÑŒ кольорів:_ÐавігаціÑВікно наві_гаціїРозмір вікна _навігації:ÐазваÐазва:ÐавігаціÑÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐšÐ¾Ð»Ñ–Ñ€ нового каналуПараметри нового каналуÐовий колір з _тлаÐовий колір з _переднього плануÐове зображеннÑÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐовий контурПараметри нового контуруÐовий шаблонСтворити Ð¿ÐµÐ½Ð·ÐµÐ»ÑŒÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐовий канал з оÑтанніми параметрамиСтворити канал...Ðовий колір з тлаÐовий колір з переднього плануСтворити Ð³Ñ€Ð°Ð´Ñ–Ñ”Ð½Ñ‚Ð†Ð¼Ð¿Ð¾Ñ€Ñ‚Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐовий шар з оÑтанніми параметрами_Створити шар...Створити палітруÐовий контур зі Ñтарими значеннÑм_Створити контур...Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð²Ñ–Ð·ÐµÑ€ÑƒÐ½ÐºÑƒÐ¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð²ÐµÐºÑ‚Ð¾Ñ€ÑƒÐемає пензлів доÑтупних Ð´Ð»Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð· цим інÑтрументом.Фільтр не вибранийУ "%s" не знайдено градієнтівБільше не доÑтупнийУ "%s" не знайдено контурівУ буфері не знайдено контурівÐемає доÑтупних візерунків Ð´Ð»Ñ Ñ†Ñ–Ñ”Ñ— операції.Ðічого не виділеноÐемає виділеної ділÑнки Ð´Ð»Ñ Ð¾Ð±Ð²ÐµÐ´ÐµÐ½Ð½Ñ.Без мініатюрБез вирівнюваннÑÐемаєÐемає (Швидше)ЗвичайнийЗвичайний (128x128)КрапкиЗвичайне вікноÐе Ñ” звичайним файломÐемає видимих шарів Ð´Ð»Ñ Ð¾Ð±'єднаннÑ. Ðеобхідно принаймні два шари.ÐедоÑтатньо видимих контурів Ð´Ð»Ñ Ð¾Ð±'єднаннÑ. Ðеобхідно принаймні два контури.КількіÑÑ‚ÑŒ п_роцеÑорів, що викориÑтовуютьÑÑ:ЧиÑло ліній ÑіткиКількіÑÑ‚ÑŒ шарів:_Інший...ЗÑувЗÑув каналуЗÑув малюваннÑЗÑув шаруМаÑка зÑуву шаруЗÑув на x/_2, y/2ЗÑув:Ðа диÑкуÐа багатопроцеÑорних ÑиÑтемах, Ñкщо GIMP був зібраний з параметром --enable-mp, цей параметр визначає кількіÑÑ‚ÑŒ процеÑорів, Ñкі GIMP може викориÑтовувати одночаÑно.Лише в пам'ÑтіВідкрити Ñк ша_Ñ€...ÐепрозоріÑÑ‚ÑŒÐепрозоріÑÑ‚ÑŒ:_Відкрити...Ð’Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑВідкрити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñк ÑˆÐ°Ñ€Ð’Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð°Ð´Ñ€ÐµÑÐ¸Ð’Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑтового файлу (UTF-8)Відкрити _адреÑу...Відкрити н_ÐµÐ´Ð°Ð²Ð½Ñ–Ð’Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑВідкрити діалог вибору пензлÑВідкрити діалог вибору шрифтуВідкрити діалог вибору градієнтаВідкрити діалог вибору візерункаВідкрити діалог вибору візерункаВидалити вибраний елементÐе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ '%s': - -%sÐе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ '%s': %sПараметри: -Початкове X:Початкове Y:Оригінальна ширина:Інший (%s) ...КонтурРівні на виходіПерекриваннÑПомилка виклику PDB Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñ†ÐµÐ´ÑƒÑ€Ð¸ '%s': -Ðеправильний тип аргументу â„–%d (очікувавÑÑ %s, отримано %s)помилка виклику PDB: -процедура "%s" не знайдена_ВізерункиЖебракують філоÑофи при ґанку церкви -в ГадÑчі; ще й шатро їхнє знаємо.МалюваннÑПараметри Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ñпільні Ð´Ð»Ñ Ñ–Ð½ÑтрументівПроцедури інÑтрументів малюваннÑІнÑтрумент:_Режим малюваннÑÐанеÑÐµÐ½Ð½Ñ Ð¼'Ñких мазків Ð¿ÐµÐ½Ð·Ð»ÐµÐ¼ÐœÐ°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ñ€Ñ–Ð·ÐºÐ¸Ð¼Ð¸ лініÑÐ¼Ð¸ÐœÐ°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð· викориÑтаннÑм візерунку або ділÑнки зображеннÑПензельПа_літриПалітраРедактор палітриМеню редактора палітриТеки палітрПалітра UI_Ðазва палітри:_Файл палітриПалітриМеню палітрПроцедури шумуШумиСинтакÑичний аналіз "%s" -Ð’ÑтавленнÑÐ’Ñтавити буфер _уВÑтавити буфер Ñк _нове зображеннÑÐ’ÑÑ‚_авити контурВÑтавити _уВÑтавити Ñк _новеПереміÑтити виділений буферВÑтавити виділений буфер Ñк нове зображеннÑÐ’Ñтавити виділений буфер у виділеннÑÐ’Ñтавлений шарКонтурÐтрибути контуруÐазва контуру:ІнÑÑ‚_румент "Контур"Контур не можна опуÑтити ще нижче.Контур не можна піднÑти ще вище.Шар вже у Ñамому низу.Шар вже на Ñамій верхівці.Контур -> Виді_лена ділÑнкаКонтур -> Виділену ділÑнкуКонтур у Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ -%s додати -%s віднÑти -%s перетнутиКонтур -> Виділену ділÑнкуКонтуриМеню контурівВізерунокТеки візерунківUI Ð’Ñ–Ð·ÐµÑ€ÑƒÐ½ÐºÑƒÐ—Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð²Ñ–Ð·ÐµÑ€ÑƒÐ½ÐºÐ¾Ð¼ÐŸÐ¾Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ð¸Ð¹ шаблонВізерункиМеню візерунків_ОлівецьОлівецьВідÑоток ширини пензлівВідÑоток:ОÑобиÑтий каталог GIMPПерÑÐ¿ÐµÐºÑ‚Ð¸Ð²Ð°Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ Ð¿ÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÑпективиПерÑпектива...Тип дії %sВибрати шар або напрÑмнуВибрати контур Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½ÑВибір _чорної Ñ‚Ð¾Ñ‡ÐºÐ¸ÐžÑ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ із зображеннÑВибір _Ñірої точкиПоказати інформацію про колірВибір _білої точкиРозмір у точках:ТочокТочокТочок:Перевірте, що XML-файли меню, коректно вÑтановлені.Зачекайте доки буде Ñтворений ваш оÑобиÑтий каталог GIMP...Будь лаÑка, зачекайте...ДоповненнÑСередовище доповненьТеки доповненьДоповненню не вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ зображеннÑДоповненню не вдаєтьÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ зображеннÑПомилка у доповненні: "%s" -(%s) - -ДоповненнÑ, що викликало помилку може зіпÑувати внутрішній Ñтан GIMP. -Можливо, Ð´Ð»Ñ Ð±ÐµÐ·Ð¿ÐµÐºÐ¸ вам Ñлід зберегти Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ‚Ð° перезапуÑтити GIMP.Ð”Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÑƒÑпішно завершило роботу але не повернуло зображеннÑ.ДоповненнÑДоповненнÑÐ”Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ñ‚Ð° Ñ€Ð¾Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ - це зовнішні програми, що запуÑкає GIMP, Ñкі надають додаткові можливоÑÑ‚Ñ–. Ці програми шукаютьÑÑ Ð½Ð° запуÑку й Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ їхні функції та Ñ‡Ð°Ñ Ð·Ð¼Ñ–Ð½Ð¸ кешуєтьÑÑ Ñƒ цьому файлі. Цей файл призначений лише Ð´Ð»Ñ Ð·Ñ‡Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¾ÑŽ GIMP, Ñ– не повинен редагуватиÑÑ.БагатокутникиКнижковаПозиціÑ: %0.6fПозиціÑПоÑтеризаціÑПоÑÑ‚ÐµÑ€Ð¸Ð·Ð°Ñ†Ñ–Ñ (Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ ÐºÑ–Ð»ÑŒÐºÐ¾ÑÑ‚Ñ– кольорів)_Рівні поÑтеризації:ПоÑÑ‚ÐµÑ€Ð¸Ð·Ð°Ñ†Ñ–Ñ Ð½Ðµ діє на індекÑовані шари.ПараметриЗберігати _ÑÑкравіÑтьЧутливіÑÑ‚ÑŒ до натиÑкуÐатиÑк:Попередній переглÑдФайл попереднього переглÑду заÑтарівПопередній переглÑд:Попередній переглÑдРозмір при друкуванні:Розмір при друкуванні:Помилка при аналізі текÑту шуму Ð´Ð»Ñ Ñ€Ñ–Ð²Ð½Ñ '%s': -%s - -ДеÑкі влаÑтивоÑÑ‚Ñ– текÑту будуть неправильні. Можете не перейматиÑÑŒ цим, Ñкщо ви не збираєтеÑÑŒ редагувати текÑтовий шар.База даних процедурПроцедурна база данихПеребігПÑевдокольоровеПризначеннÑ:ЯкіÑÑ‚ÑŒÐ—Ð°Ð¿Ð¸Ñ‚ÐžÐ¿Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð¾Ð²Ð¸Ñ… доповненьЗапит доповненнÑ: '%s' -Швидке завантажитиШвидка маÑкаОзнаки швидкої маÑкиМеню швидкої маÑкиШвидке збереженнÑШвидка маÑкаВийти з GIMP?RGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB-колірRGB - пуÑтоRGBA (%0.3f, %0.3f, %0.3f, %0.3f)RTLПоказати "%s" _ще раз_Відновити параметри інÑтрументівВ_ідновити канал_Відновити колір_Відновити значеннÑКолір крайньої _правої точки...РадіальнаРадіуÑ:ÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»Ñƒ догориПіднÑти канал до_Ð³Ð¾Ñ€Ð¸ÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñƒ Ð´Ð¾Ð³Ð¾Ñ€Ð¸ÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ—Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ контур верхнімЗробити контур _верхнімПіднÑти каналПіднÑти канал Ð´Ð¾Ð³Ð¾Ñ€Ð¸ÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñƒ Ð´Ð¾Ð³Ð¾Ñ€Ð¸ÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐŸÑ–Ð´Ð½Ñ–Ð¼Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ñƒ догориРозгорнути вікно з цим зображеннÑмЗробити активним, Ñкщо вже відкритоШвидкіÑтьШвидкіÑÑ‚ÑŒ:Показати оÑтанній ще разВід_центрувати Ñередні точки виділеногоВід_центрувати Ñередню точку ÑегментаПерерозподілити _напрÑмні в ÑегментіПерерозподілити _напрÑмні у виділеномуПерей_менувати збережені параметриПов_торити "%s"Від_новити...ЧитаєтьÑÑ Ñ„Ð°Ð¹Ð» палітри '%s': відÑутній ЗЕЛЕÐИЙ компонент у Ñ€Ñдку %d.ЧитаєтьÑÑ Ñ„Ð°Ð¹Ð» палітри '%s': неправильна кількіÑÑ‚ÑŒ Ñтовпчиків у Ñ€Ñдку %d. ВикориÑтовуєтьÑÑ Ñ‚Ð¸Ð¿Ð¾Ð²Ðµ значеннÑ.ЧитаєтьÑÑ Ñ„Ð°Ð¹Ð» палітри '%s': відÑутній СИÐІЙ компонент у Ñ€Ñдку %d.ЧитаєтьÑÑ Ñ„Ð°Ð¹Ð» палітри '%s': відÑутній ЧЕРВОÐИЙ компонент у Ñ€Ñдку %d.ЧитаєтьÑÑ Ñ„Ð°Ð¹Ð» палітри '%s': Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ RGB поза межами допуÑтимого діапазону у Ñ€Ñдку %d.ВиконаноДійÑно очиÑтити Ñ–Ñторію ÑкаÑувань дій?Призначаючи ці клавіші ви відмовлÑєтьÑÑ Ð²Ñ–Ð´ доÑтупу по ними до нього "%s".Перечитати _переглÑдПеречитати переглÑдПрÑмокутне виділеннÑЧервонийЧервоний:ÐŸÐ¾Ð²Ñ‚Ð¾Ñ€Ð¸Ñ‚Ð¸Ð¡ÐºÐ¾Ñ€Ð¾Ñ‡ÐµÐ½Ð½Ñ ÐºÑ–Ð»ÑŒÐºÑ–ÑÑ‚ÑŒ кольорів у зображенні до вказанихПеретворити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñƒ двокольорове викориÑтовуючи порігОновити пензліОновити Ð³Ñ€Ð°Ð´Ñ–Ñ”Ð½Ñ‚Ð¸ÐžÐ½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ð»Ñ–Ñ‚Ñ€Ð¸ÐžÐ½Ð¾Ð²Ð¸Ñ‚Ð¸ візерункиЗ реєÑтрацієюОновити поточну _темуПеречитати _уÑÑ– переглÑдиПеречитати уÑÑ– переглÑдиЗапам'Ñтовувати поточні інÑтрументи, візерунки, кольори та пензлі у ÑеанÑÑ–.Віддалене зображеннÑÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ заÑтарілі е_Ð»ÐµÐ¼ÐµÐ½Ñ‚Ð¸Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‡Ð¾Ð³Ð¾ виділеннÑÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð½Ð°Ð¿Ñ€ÑÐ¼Ð½Ð¾Ñ—Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑˆÑƒÐ¼Ñƒ із зображеннÑÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑˆÑƒÐ¼Ñƒ з ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð°Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ _елементВидалити заÑтарілі ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð¸Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‡Ð¾Ð³Ð¾ виділеннÑÐ’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ ÑˆÑƒÐ¼ÑƒÐ’Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ вибраний елементВилучити вибраний фільтр зі ÑпиÑку активних фільтрів.Ðе вдаєтьÑÑ Ð²Ð¸Ð´Ð°Ð»Ð¸Ñ‚Ð¸ клавіші швидкого доÑтупу.ÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð¸Ñ… Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð²ÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑтового ÑˆÐ°Ñ€ÑƒÐŸÐµÑ€ÐµÐ¹Ð¼ÐµÐ½ÑƒÐ²Ð°Ð½Ð½Ñ ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚ÑƒÐžÐ±Ð²ÐµÐ´ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐ ÐµÐ¾Ñ€Ð³Ð°Ð½Ñ–Ð·Ð°Ñ†Ñ–Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ ÐµÐ¾Ñ€Ð³Ð°Ð½Ñ–Ð·ÑƒÐ²Ð°Ñ‚Ð¸ шарРеорганізувати контурПовторити оÑтаннійПовтор:Замінити поточне виділеннÑÐ Ð¾Ð·Ð¼Ð½Ð¾Ð¶Ð¸Ñ‚Ð¸Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ¾Ð¿Ñ–Ñ— Ñегмента Ð³Ñ€Ð°Ð´Ñ–Ñ”Ð½Ñ‚Ð°Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ¾Ð¿Ñ–Ñ— виділеної ділÑнки Ð³Ñ€Ð°Ð´Ñ–Ñ”Ð½Ñ‚Ð°Ð Ð¾Ð·Ð¼Ð½Ð¾Ð¶ÐµÐ½Ð½Ñ ÑÐµÐ³Ð¼ÐµÐ½Ñ‚Ð°Ð Ð¾Ð·Ð¼Ð½Ð¾Ð¶ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾Ð—Ñув каналуПереÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð²ÐŸÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð²ÐµÐºÑ‚Ð¾Ñ€Ñ–Ð²ÐŸÐµÑ€ÐµÑ‡Ð¸Ñ‚Ð°Ñ‚Ð¸ перелік ÑˆÑ€Ð¸Ñ„Ñ‚Ñ–Ð²Ð¡ÐºÐ¸Ð´Ð°Ð½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð²Ð’Ñ–Ð´Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ параметри _уÑÑ–Ñ… інÑтрументів...Перезавантажити уÑÑ– фільтриВідновити параметри _уÑÑ–Ñ… фільтрів...Відновити параметри _уÑÑ–Ñ… інÑтрументів...Відновити типові параметри Ð´Ð»Ñ Ð²Ð¸Ð±Ñ€Ð°Ð½Ð¾Ð³Ð¾ фільтруВідновити типові параметриТиповий порÑдок та видиміÑÑ‚ÑŒ інÑтрументівЗміна розміруЗміна розміру каналуЗміна розміру зображеннÑЗміна розміру шаруЗміна розміру контуруЗміна розміру текÑтового шаруЗміна розміру зображеннÑЗміна розміруЗмінювати розмір вікна при маÑ_штабуванніЗмінювати розмір вікна при зміні _розміру зображеннÑЗміна розміру...Зміна роздільної здатноÑтіРоздільна здатніÑÑ‚ÑŒ:ВикориÑÑ‚Ð°Ð½Ð½Ñ Ñ€ÐµÑурÑівÐÐ°Ð»Ð°ÑˆÑ‚Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€ÐµÑурÑівВідновити параметри з...Відновлювати збережені комбінації клавіш при кожному запуÑку GIMP.Створювати лише прÑмі та кутиОбернутиВідновитиВідновити '%s' до '%s'?Відновити зображеннÑÐе вдаєтьÑÑ Ð²Ñ–Ð´Ð½Ð¾Ð²Ð¸Ñ‚Ð¸. Ðемає пов'Ñзаної з цим зображеннÑм назви файлу.Ðе вдаєтьÑÑ Ð²Ñ–Ð´Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ÑÑŒ до '%s'. -%sКолір крайньої правої точкиВправоОбертаннÑОбернути на 90° _проти годинниковоїОбернути на 90° _за Ð³Ð¾Ð´Ð¸Ð½Ð½Ð¸ÐºÐ¾Ð²Ð¾ÑŽÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑтового шаруОбернути на _180Â°ÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑÐžÐ±ÐµÑ€Ñ‚Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð² та виділених ділÑнокОбертаннÑ...Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ обертаннÑКоло_ВикривленнÑПоказувати Ñ_іткуЗ_меншеннÑ..._точок_ОбмінÑти міÑцÑми кольориЗб_ерегти колір правої точки уВибіркове ÑереднєОб'єднувати ділÑнки за зразкомÐаÑиченіÑÑ‚ÑŒ:ÐаÑиченіÑÑ‚ÑŒÐ—Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ '%s' Ñк POV-RayÐ—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ…Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½ÑŒ про помилки у Ñ„Ð°Ð¹Ð»Ñ–Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑЗберегти параметри приÑтроїв вводу _заразЗберегти комбінації клавіш _Ð·Ð°Ñ€Ð°Ð·Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ñ€Ñ–Ð²Ð½Ñ–Ð²Ð—Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ параметри інÑтрументуЗберегти позицію вікон _заразберегти _уÑÑ– помилки у файл...ЗапиÑати виді_лене у файл...Зберегти _Ñк...Зберегти _копію...Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÐ¾Ð¿Ñ–Ñ— зображеннÑЗберегти уÑÑ– помилкиЗберегти Ñк _POV-Ray...Зберегти Ñк _шаблон...Зберігати змінені комбінації клавіш при виході з GIMP.Зберегти Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÑ€Ð¸Ð²Ð¸Ñ… у файлЗберегти Ñтан приÑтроюЗберегти графієнт Ñк POV-RayÐ—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð² рівнів у файлЗберегти параметри...Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾Ð—Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ виділене в каналіЗберегти зміни у '%s' перед закриваннÑм?Зберігати позиції та розміри вікон при завершенні GIMP.Зберегти в к_аналіЗбережені Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¸Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ "%s" -Ðе вдаєтьÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ '%s': - -%sÐ—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½ÑŒÐŸÐ¸Ð»Ð¾Ð¿Ð¾Ð´Ñ–Ð±Ð½Ð° хвилÑВекторний формат SVG (*.svg)МаÑштабМаÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐœÐ°ÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑМаÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐœÐ°ÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐœÐ°ÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÑтового шаруМаÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑМаÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ ÐµÐ»ÐµÐ¼ÐµÐ½Ñ‚Ð°ÐœÐ°Ñштаб по X:МаÑштаб по Y:Ð’Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ñторін:МаÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñƒ чи виділеної ділÑнкиМаÑштабуваннÑÐ†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ маÑштабЯкщо змінити розмір Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð· такими параметрами, тоді воно займе більше міÑцÑ, ніж це вказано у параметрі "МакÑимальний розмір зображеннÑ" (%s).Вибраний вами розмір Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñкоротить деÑкі шари до зникненнÑ. МаÑштабуваннÑ...ÐожиціЕкранТеки ÑценаріївСценаріїВнизВниз (Alt)Вниз (Control + Alt)Вниз (Control)Вниз (Shift + Alt)Вниз (Shift + Control + Alt)Вниз (Shift + Control)Вниз (Shift)Вліво Вліво (Alt)Вліво (Control + Alt)Вліво (Control)Вліво (Shift + Alt)Вліво (Shift + Control + Alt)Вліво (Shift + Control)Вліво (Shift)ВправоВправо (Alt)Вправо (Control + Alt)Вправо (Control)Вправо (Shift + Alt)Вправо (Shift + Control + Alt)Вправо (Shift + Control)Вправо (Shift)ВверхВверх (Alt)Вверх (Control + Alt)Вверх (Control)Вверх (Shift + Alt)Вверх (Shift + Control + Alt)Вверх (Shift + Control)Вверх (Shift)ВиділенеВиділити вÑеВиберіть теку пензлівВибір за кольоромВибір кольоруВибір діїВиберіть теку ÑередовищаВибрати _тип файла (%s)Виберіть теку шрифтівВиберіть теку градієнтівВиберіть теку Ð¼Ð¾Ð´ÑƒÐ»Ñ–Ð²Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð·Ð½ÑтоВиберіть теку палітрВиберіть теку візерунківВиберіть теку доповненьВибір оÑновного кольору Ð´Ð»Ñ Ð·Ð¼Ñ–Ð½Ð’Ð¸Ð±Ñ–Ñ€ ділÑнки Ð´Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸Ð’Ð¸Ð±ÐµÑ€Ñ–Ñ‚ÑŒ теку ÑценаріївВибір джерелаВиберіть теку підкачкиВиберіть теку темВибір темиВиберіть теку темВибір маÑштабуВиділити _нижній шарВ_лаÑний колір...Вділити н_аÑтупний шарВиділити п_опередній шарВиділити _верхній шарВиділити вÑÐµÐ’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð·Ð° ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ð¾Ð¼Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñуміжних ділÑнокКолір тла навколо зображеннÑÐ’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ ÐµÐ»Ñ–Ð¿Ñ‚Ð¸Ñ‡Ð½Ð¸Ñ… ділÑÐ½Ð¾ÐºÐ’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð´Ð¾Ð²Ñ–Ð»ÑŒÐ½Ð¸Ñ… ділÑнокÐе виділеноВибір файлу Ð¿Ð°Ð»Ñ–Ñ‚Ñ€Ð¸Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ñмокутних ділÑÐ½Ð¾ÐºÐ’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð´Ñ–Ð»Ñнки за ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ð¾Ð¼Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñ„Ð¾Ñ€Ð¼ у зображенніВибір теки підкачкиВиберіть кількіÑÑ‚ÑŒ Ñтворюваних -копій виділеного Ñегмента.Виберіть кількіÑÑ‚ÑŒ Ñтворюваних -копій виділеної ділÑнки.Виберіть кількіÑÑ‚ÑŒ чаÑтин -на Ñку Ñлід розділити ÑегментиВиберіть кількіÑÑ‚ÑŒ чаÑтин -на Ñку Ñлід розділити вибраний ÑегментВиділÑти прозорі ділÑнкиВибір зовнішнього переглÑдачаВиділена ділÑнка -> Кон_турВиділеннÑРедактор виділеної ділÑнкиРедактор виділеної ділÑнкиМаÑка виділеної ділÑнкиПроцедури виділеннÑМаÑка виділеної ділÑÐ½ÐºÐ¸Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñƒ контур (_розширені параметри)Виділена ділÑнка -> Кон_турВиділеннÑ: ВиділеннÑ: ДОДÐТИВиділеннÑ: ПЕРЕТÐУТИВиділеннÑ: ЗÐМІÐИТИВиділеннÑ: ВІДÐЯТИЧутливіÑтьВÑтановити колір тла навколо зображеннÑÐ’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñƒ каналуВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð½ÐµÐ¿Ñ€Ð¾Ð·Ð¾Ñ€Ð¾ÑÑ‚Ñ– каналуВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¼Ð°Ð¿Ð¸ кольорівВÑтановити колір тла навколо зображеннÑÐ’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ñƒ полотнаЗміна роздільної здатноÑÑ‚Ñ–Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð²'Ñзку з елементомВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ð¸Ð¼Ð¾ÑÑ‚Ñ– елементуВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¼ÐµÐ¶ шаруВÑтановити назву з _текÑтуВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð½ÐµÐ¿Ñ€Ð¾Ð·Ð¾Ñ€Ð¾ÑÑ‚Ñ– шаруВÑтановити колір тлаВÑтановити колір переднього плануВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð²'Ñзку з елементомВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ñ€ÐµÐ¶Ð¸Ð¼Ñƒ шаруВÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð½ÐµÐ¿Ñ€Ð¾Ð·Ð¾Ñ€Ð¾ÑÑ‚Ñ– ÑˆÐ°Ñ€ÑƒÐ—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð½ÐµÐ¿Ñ€Ð¾Ð·Ð¾Ñ€Ð¾ÑÑ‚Ñ–Ð’Ñтановлює Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð°Ð¼'ÑÑ‚Ñ–, Ñке викориÑтовуєтьÑÑ Ð´Ð»Ñ ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ кожному зображенні. Ðезалежно від цього параметра, можна зробити принаймні Ñтільки ÑкаÑувань операцій, Ñкільки вказано у конфігурації.Визначає переглÑдач, Ñкий буде викориÑтовувати ÑиÑтема довідки.Визначає колір тла навколо зображеннÑ, Ñкщо в режимі Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ñ‚Ð»Ð° вказано "Вибраний колір".Вказує браузер, Ñкий буде викориÑтовувати ÑиÑтема довідки. Це може бути абÑолютний шлÑÑ…, чи назва виконуваної програми у одному з каталогів, що визначаютьÑÑ Ñƒ PATH. Якщо команда міÑтить '%s', заміÑÑ‚ÑŒ цього виразу буде підÑтавлений URL, Ñкщо ні - тоді URL буде доданий у кінець команди через пробіл.Визначає рівень інтерполÑції, що викориÑтовуєтьÑÑ Ð¿Ñ€Ð¸ маÑштабуванні та інших перетвореннÑÑ….Визначає Ñк відображати прозоріÑÑ‚ÑŒ у зображенні.Ð’Ñтановлює мінімальне чиÑло операцій, Ñкі можна ÑкаÑувати. Більша кількіÑÑ‚ÑŒ ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ñ–Ð¹ доÑтупна доки не вичерпаєтьÑÑ Ð¿Ð°Ð¼'ÑÑ‚ÑŒ, відведена Ð´Ð»Ñ ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ñ–Ð¹.Визначає режим вказівника GIMP.Ð’Ñтановлює горизонтальну роздільну здатніÑÑ‚ÑŒ монітора в точках на дюйм. При нульовому значенні, берутьÑÑ Ñк вертикальне так Ñ– горизонтальне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ X Ñервера.Ð’Ñтановлює вертикальну роздільну здатніÑÑ‚ÑŒ монітора в точках на дюйм. При нульовому значенні, берутьÑÑ Ñк вертикальне так Ñ– горизонтальне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ñ–Ð´ X Ñервера.Визначає режим вказівника GIMP.Ð’Ñтановлює розмір попереднього переглÑду Ð´Ð»Ñ Ñлоїв та каналів.Ð’Ñтановлює розмір шахових клітин, що відображають прозоріÑÑ‚ÑŒ.Ð’Ñтановлює розмір облаÑÑ‚Ñ– навігації, що знаходитьÑÑ Ñƒ правому нижньому куті вікна зображеннÑ.Ð’Ñтановлює розмір попереднього переглÑду у вікні Ñ–Ñторії ÑкаÑувань.Ð’Ñтановлює розмір файлів попереднього переглÑду у діалозі Ð²Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñ–Ð². Зауважте, GIMP не може Ñтворювати мініатюри при вимкненому параметрі попереднього переглÑду шарів.Вказує Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñƒ підкачки. GIMP викориÑтовує блочну Ñхему Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ð¼'ÑÑ‚Ñ–. Файл підкачки викориÑтовуєтьÑÑ Ð´Ð»Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñ— та проÑтої підкачки блоків з диÑку. Зауважте, файл підкачки може швидко доÑÑгнути великого розміру, Ñкщо GIMP оброблÑÑ” великі зображеннÑ. Крім того, робота значно ÑповільнюєтьÑÑ, Ñкщо файл підкачки Ñтворений у каталозі підключеному через NFS. У цьому випадку, бажано поміÑтити файл підкачки у "/tmp".Визначає тимчаÑовий каталог. Тут зберігатимутьÑÑ Ñ„Ð°Ð¹Ð»Ð¸, Ñкі GIMP оброблÑÑ” протÑгом ÑеанÑу. БільшіÑÑ‚ÑŒ з них будуть видалені одразу при завершенні роботи з GIMP, але деÑкі можуть залишатиÑÑŒ, тому бажано, щоб цей каталог не викориÑтовувавÑÑ Ñпільно з іншими кориÑтувачам. Визначає Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту, що відображаєтьÑÑ Ñƒ Ñ€Ñдку Ñтану.Визначає Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐºÑту, що відображаєтьÑÑ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÑƒ вікна.Вказує, чи потрібно Ñтворювати попередній переглÑд шарів та каналів. Попередній переглÑд шарів та каналів - кориÑна річ, але може Ñповільнювати роботу при роботі з великими зображеннÑми.Тип тініТініФормаФорма:По формі (кутова)По формі (з Ñмкою)По формі (Ñферична)РізкіÑтьРізкіÑÑ‚ÑŒ каналуРізкіÑÑ‚ÑŒ виділеної ділÑнкуВикривленнÑКоефіцієнт Ð²Ð¸ÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð¾ X:Коефіцієнт Ð²Ð¸ÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð¾ Y:Ð’Ð¸ÐºÑ€Ð¸Ð²Ð»ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€Ñ–Ð² та Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½ÑŒÐ†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ викривленнÑВикривленнÑ...Короткі риÑкиКомбінації клавішКлавіші швидкого "%s" вже викориÑтані у пункті "%s" з меню "%s".Показати маÑку шаруПоказувати _лінійкиПоказувати Ñ€Ñдок ÑÑ‚_ануПоказувати Ñмуги _прокручуваннÑПоказувати _напрÑмніПоказувати ме_жі шаруПоказувати панель _менюПоказувати ви_діленнÑПоказувати контур _пензлÑ_Колір переднього плану та тлаПоказувати _напрÑмніПоказувати ме_жі шарівПоказувати панель _менюПоказувати _лінійки_Пензлі, візерунки та градієнтиПоказувати _активне зображеннÑПоказати _ÑіткуПоказувати _кнопку "Довідка"Показувати розмір зображеннÑПоказувати інтерактивні межіПоказати викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð°Ð¼'ÑтіПоказувати у меню к_омбінації клавішПоказувати курÑор _інÑтрументуПоказувати _виділеннÑПоказувати Ñ€Ñдок ÑÑ‚_ануПоказувати Ñмуги _прокручуваннÑПоказувати наÑтупного разуПоказувати поради при _запуÑкуПоказувати п_ідказкиПоказувати маÑштаб у відÑоткахПоказувати маÑштабний коефіцієнтСтиÑÐ½ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐ¡ÐºÐ¾Ñ€Ð¾Ñ‡ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾Ð¡_коротити вікно по зображеннюСкоротити на межі зображеннÑСкоротити виділене наСкоротити вікно по зображеннюРозмірРозмір у пам'ÑÑ‚Ñ–:Розмір файлів _мініатюр:Розмір:ПропуÑкаєтьÑÑ "%s": неправильна верÑÑ–Ñ Ð¿Ñ€Ð¾Ñ‚Ð¾ÐºÐ¾Ð»Ñƒ GIMP.МалийЗменшений переглÑÐ´Ð“Ð»Ð°Ð´ÐµÐ½ÑŒÐºÐ°Ð—Ð³Ð»Ð°Ð´Ð¶ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÑ€Ð°Ñ—Ð²ÐŸÐ°Ð»ÐµÑ†ÑŒÐ Ð¾Ð·Ð¼Ð°Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½ÑП_рив'Ñзка до напрÑмнихПрив'_Ñзка до ÑіткиМ'Ñке ÑвітлоСуцільнаДжерелоКлітиниІнтервал:Рідкі риÑкиОÑобливий файлВизначає колір тла навколо зображеннÑ.ШвидкіÑÑ‚ÑŒ мурашиної доріжки навколо виділеної ділÑнки. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²ÐºÐ°Ð·ÑƒÑ”Ñ‚ÑŒÑÑ Ñƒ міліÑекундах (менші Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¾Ð·Ð½Ð°Ñ‡Ð°ÑŽÑ‚ÑŒ більшу швидкіÑÑ‚ÑŒ доріжки).ШвидкіÑÑ‚ÑŒ:Сферична (що з_меншуєтьÑÑ)Сферична (що з_більшуєтьÑÑ)Промені:Спіральна (за годинниковою)Спіральна (за годинниковою)Ð Ð¾Ð·Ð´Ñ–Ð»Ð¸Ñ‚Ð¸Ð Ð¾Ð·Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñегменту градієнта на рівні чаÑÑ‚Ð¸Ð½Ð¸Ð Ð¾Ð·Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñегментів градієнта на рівні чаÑтиниРівномірний розподіл ÑегментуРозділити Ñегмент на _рівні чаÑтини...Розділити Ñегмент по _Ñ†ÐµÐ½Ñ‚Ñ€ÑƒÐ Ð¾Ð·Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ñегментів на рівні чаÑтиниРозділити Ñегменти на _рівні чаÑтини...Розділити Ñегменти по _центрахКвадратнаС_тан на текÑÑ‚_РівеньСтандартнийЗапуÑк розширеньЗапуÑк розширеннÑ: "%s" -Стан:ПоÑтійне кольоровеПоÑтійне ÑіреСтан та опиÑСтан на текÑтСтанд. відхиленнÑ:ПунктирID з наборуОбвеÑти за конту_ромОбвеÑти за конту_ром...ÐžÐ±Ð²ÐµÐ´ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐžÐ±Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð·Ð° ÐºÐ¾Ð½Ñ‚ÑƒÑ€Ð¾Ð¼ÐžÐ±Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ñ— ділÑнкиШтрихОбвеÑти за контуромОбвеÑти контур з оÑтанніми значеннÑмиОбвеÑти за контуром...ОбвеÑти виділене з оÑтанніми значеннÑÐ¼Ð¸ÐžÐ±Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ñ— ділÑнки...ВикориÑтати один з інÑтрументівСтиль елементів навколо текÑту Ñ€Ñдка ÑтануВідніманнÑВіднÑти від поточного виділеннÑІнтерполÑціÑКаталог підкачки:ІнÑÑ‚Ñ€_ументи_ТекÑÑ‚_ТекÑтТека тимчаÑових файлів:ШаблониМеню шаблонівТимчаÑова Ð¿Ñ€Ð¾Ñ†ÐµÐ´ÑƒÑ€Ð°Ð”Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð·Ð° шаблоном: '%s' -ТекÑтКолір текÑтуТекÑтовий редакторТекÑтовий шарТекÑÑ‚ зміненоТекÑтові процедуриGIMPУ вашому вÑтановленні GIMP відÑутній переглÑдач довідки.Ðктивний пензель. -Клацніть, щоб відкрити діалогове вікно "Пензлі".Ðктивний градієнт. -Клацніть, щоб відкрити діалогове вікно "Градієнти".Ðктивний візерунок. -Клацніть, щоб відкрити діалогове вікно "Візерунки".Ðктивний візерунок. -Клацніть, щоб відкрити діалогове вікно "Візерунки".Колір тла Ñітки; викориÑтовуєтьÑÑ Ð»Ð¸ÑˆÐµ Ð´Ð»Ñ Ñтилю "Подвійний пунктир"Інтерпретатор '%s' недоÑтупний, викориÑÑ‚Ð°Ð½Ð½Ñ ÐºÐ¾Ð¼Ð°Ð½Ð´Ð½Ð¾Ð³Ð¾ режиму неможливе.Ðазву файлу неможливо перекодувати у UTF-8: %s - -Перевірте Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ð½Ð½Ð¾Ñ— Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ G_FILENAME_ENCODING.Ðазва файлу "%s" не може бути перетворене у коректний файл: - -%sКолір переднього плану.gimprc викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ð¾ÑобиÑтих уÑтановок, Ñкі впливають на поведінку GIMP. Тут також вказуютьÑÑ ÑˆÐ»Ñхи пошуку пензлів, палітр, градієнтів, візерунків, доповнень та модулів.Горизонтальна роздільна здатніÑÑ‚ÑŒ.Вибраний вами шар Ñ” текÑтовим шаром, але він був змінений з викориÑтаннÑм інших інÑтрументів. Ð ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ°Ñ€Ñƒ з викориÑтаннÑм інÑтрументу "текÑтовий редактор" призведе до ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ñ†Ð¸Ñ… змін. - -Ви можете відредагувати шар або Ñтворити новий текÑтовий шар з цими текÑтовими атрибутами.Ðазва каталогу, що міÑтить параметри кориÑтувача GIMP, не вдаєтьÑÑ Ð¿ÐµÑ€ÐµÐºÐ¾Ð´ÑƒÐ²Ð°Ñ‚Ð¸ у UTF-8: %s - -Швидше за вÑе, у вашій файловій ÑиÑтемі викориÑтовуєтьÑÑ ÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ, відмінне від UTF-8, та ви не вказали про це GLib. УÑтановите правильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð·Ð¼Ñ–Ð½Ð½Ð¾Ñ— Ð¾Ñ‚Ð¾Ñ‡ÐµÐ½Ð½Ñ G_FILENAME_ENCODING.sessionrc викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð»Ð¾Ð¶ÐµÐ½Ð½Ñ Ð´Ñ–Ð°Ð»Ð¾Ð³Ð¾Ð²Ð¸Ñ… вікон відкритих під Ñ‡Ð°Ñ Ð¾Ñтаннього виходу з GIMP. Можна налаштувати GIMP так, щоб вікна відкривалиÑÑŒ у Ñ—Ñ… попередніх позиціÑÑ….Якщо розмір файлу попереднього переглÑду буде менше вказаного тут значеннÑ, тоді переглÑд у діалозі Ð²Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð±ÑƒÐ´Ðµ оновлюватиÑÑŒ автоматично.Кеш блоків викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ñ‚Ð¾Ð³Ð¾, щоб GIMP не займавÑÑ Ñ–Ð½Ñ‚ÐµÐ½Ñивним копіюваннÑм між пам'ÑÑ‚Ñ‚ÑŽ та диÑком. Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð±Ñ–Ð»ÑŒÑˆÐ¸Ñ… значень цього параметра змушує GIMP менше викориÑтовувати підкачку, але призводить до Ð·Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð°Ð¼'ÑÑ‚Ñ–. Та навпаки, Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ñƒ кешу ÑприÑÑ” більшому викориÑтанню підкачки та зменшенню викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð°Ð¼'ÑÑ‚Ñ–.ВикориÑтовуєтьÑÑ, Ñкщо вимкнено режим "Точка за точкою"unitrc викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð²Ð°ÑˆÐ¾Ñ— бази даних одиниць виміру. Ви можете визначити додаткові одиниці та викориÑтовувати Ñ—Ñ… так Ñамо, Ñк Ñ– вбудовані одиниці: дюйми, міліметри, пункти Ñ– піки. Цей файл перезапиÑуєтьÑÑ Ñ‰Ð¾Ñ€Ð°Ð·Ñƒ, коли ви виходите з GIMP.Вертикальна роздільна здатніÑÑ‚ÑŒ.Тип вікна, що призначаєтьÑÑ Ð¿Ð°Ð½ÐµÐ»Ñм. Може впливати на ÑпоÑіб Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð½Ñ Ð²Ñ–ÐºÐ¾Ð½ менеджером вікон.Тип вікна, що призначаєтьÑÑ Ð¿Ð°Ð½ÐµÐ»Ñм інÑтрументів. Може впливати на ÑпоÑіб Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð½Ñ Ñ‚Ð° роботи з цими вікнами менеджером вікон.ТемаТеки темТемиЄ незбережені Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ (%d):ÐедоÑтатньо видимих шарів Ð´Ð»Ñ Ð¾Ð±'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ Ð· попереднім.Завжди Ñ” вибір між швидкодією та викориÑтаннÑм пам'ÑÑ‚Ñ–. У більшоÑÑ‚Ñ– випадків GIMP вибирає швидкодію. Проте Ñкщо пам'ÑÑ‚ÑŒ Ð´Ð»Ñ Ð²Ð°Ñ Ð¼Ð°Ñ” значеннÑ, увімкніть цей параметр.Ðемає активного шару чи каналу Ð´Ð»Ñ ÐºÐ¾Ð¿Ñ–ÑŽÐ²Ð°Ð½Ð½Ñ.Ðемає активного шару чи каналу Ð´Ð»Ñ Ð²Ð¸Ñ€Ñ–Ð·Ð°Ð½Ð½Ñ.Ðемає активного шару або каналу Ð´Ð»Ñ Ð¾Ð±Ð²ÐµÐ´ÐµÐ½Ð½ÑÐемає активного шару чи каналу Ð´Ð»Ñ Ð¾Ð±Ð²ÐµÐ´ÐµÐ½Ð½Ñ.Є незбережені зображеннÑ:Це має бути файл '%s'. Перевірте вÑтановленнÑ.Помилка при зчитуванні файлу '%s'. Будуть викориÑтані типові значеннÑ. Резервна ÐºÐ¾Ð¿Ñ–Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ— Ñтворена у '%s'.Цей файл міÑтить набір Ñтандартних розмірів зображень, Ñкі викориÑтовуютьÑÑ Ñƒ ÑкоÑÑ‚Ñ– шаблонів.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñ–Ð² шаблонів зображень.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ð²Ñтановлених кориÑтувачем тем.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ ÑˆÑ€Ð¸Ñ„Ñ‚Ñ–Ð², Ñкі повинні відображатиÑÑŒ у GIMP. При пошуку шрифтів GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом шрифтів.ВикориÑтовуйте цей каталог, Ñкщо ÑкіÑÑŒ шрифти будете викориÑтовувати лише у GIMP. У вÑÑ–Ñ… інших випадках, розміщайте шрифти у ÑиÑтемних каталогах шрифтів.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñ–Ð² параметрів інÑтрументу "Криві".Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ñ„Ð°Ð¹Ð»Ñ–Ð² параметрів інÑтрументу "Рівні".Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð² інÑтрументів.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñтворених Ñ– вÑтановлених кориÑтувачем Ñценаріїв. Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ Ñценаріїв, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом Ñценаріїв.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñ‚Ð¸Ð¼Ñ‡Ð°Ñових, Ñтворених кориÑтувачем та інших не підтримуваних ÑиÑтемою модулів динамічного завантаженнÑ. Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ модулі на етапі ініціалізації, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом модулів.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñ‚Ð¸Ð¼Ñ‡Ð°Ñових, Ñтворених кориÑтувачем та інших не ÑиÑтемних додатків до Ñередовища доповнень. Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ файлів змін Ñередовища додатків, GIMP перевірÑÑ” цей каталог разом із відповідним ÑиÑтемним каталогом.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñ‚Ð¸Ð¼Ñ‡Ð°Ñових, Ñтворених кориÑтувачем та інших не ÑиÑтемних доповнень. Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ доповнень, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом доповнень.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñтворених кориÑтувачем пензлів. Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ пензлів, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом пензлів.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñтворених кориÑтувачем градієнтів. При пошуку градієнтів, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом градієнтів.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñтворених кориÑтувачем палітр. При пошуку палітр, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом палітр.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ñтворених кориÑтувачем візерунків. Під Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ візерунків, GIMP перевірÑÑ” цей каталог разом із ÑиÑтемним каталогом візерунків.Ð¦Ñ Ñ‚ÐµÐºÐ° викориÑтовуєтьÑÑ Ð´Ð»Ñ Ñ‚Ð¸Ð¼Ñ‡Ð°Ñового Ð·Ð±ÐµÑ€Ñ–Ð³Ð°Ð½Ð½Ñ Ð±ÑƒÑ„ÐµÑ€Ñ–Ð² ÑкаÑÑƒÐ²Ð°Ð½Ð½Ñ Ð¾Ð¿ÐµÑ€Ð°Ñ†Ñ–Ð¹, Ð´Ð»Ñ Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð°Ð¼'ÑÑ‚Ñ–. При некоректному завершенні роботи GIMP, у цій теці можуть залишитиÑÑ Ñ„Ð°Ð¹Ð»Ð¸ з назвами gimp<#>.<#>. ПіÑÐ»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ ÑеанÑу, ці файли непотрібні GIMP, тому Ñ—Ñ… можна видалити.Ð¦Ñ Ñ‚ÐµÐºÐ° буде міÑтити Ñ€Ñд важливих файлів. Ð”Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ð´Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð¾Ñ— інформації про файл чи підтеку в дереві клацніть на Ñ—Ñ… назві.ВідÑтань у точках, при наближенні на Ñку відбуваєтьÑÑ Ð¿Ñ€Ð¸Ð²'ÑÐ·ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð¾ напрÑмних чи Ñітки.Ð¦Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð° розповÑюджуєтьÑÑ Ð² Ñподіванні на те, що вона буде кориÑною, але БЕЗ БУДЬ-ЯКИХ ГÐРÐÐТІЙ, в тому чиÑлі без неÑвної гарантії КОМЕРЦІЙÐОЇ ЦІÐÐОСТІ чи ПРИДÐТÐОСТІ ДЛЯ БУДЬ-ЯКИХ ЦІЛЕЙ. Докладніше про це дивітьÑÑ GNU General Public License.Це вільні програма; ви можете розповÑюджувати Ñ—Ñ— та/чи змінювати на умовах ліцензії GNU General Public License, що опублікована Free Software Foundation; верÑÑ–Ñ— 2 цієх ліцензії, чи (на вашу думку) будь-Ñкою більш пізнішої верÑÑ–Ñ—.Це текÑтове поле типово обмежено %d Ñимволами.У цього інÑтрументі немає параметрів.Вікно має %d відкритих вкладок. Ð—Ð°ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð²Ñ–ÐºÐ½Ð° призведе до Ð·Ð°ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ ÑƒÑÑ–Ñ… його вкладок.ПорігПоріг не діє на індекÑовані шари.Поріг:Мініатюра %d з %dРозмір _кешу:Розмір кешу:Ðахил:КрихітнийЗаголовок та ÑтанУ _контурЩоб змінити комбінацію клавіш, клацніть у відповідному Ñ€Ñдку та введіть нову комбінацію клавіш, або натиÑніть пробіл, щоб очиÑтити.Розва_гиПеремикнути швидку маÑкуПеремикнути _швидку маÑкуÐадто багато повідомлень про помилки!Параметри інÑтрументуПараметри інÑтрументівПеремикач інÑтрумента %sП_араметри інÑтрументівЗначок інÑтрументуЗначок інÑтрументу з перехреÑÑ‚ÑмПанель _інÑтрументівМеню панелі інÑтрументівМеню панелі інÑтрументівІнÑтрументиМеню панелі інÑтрументівТакі інÑтрументи Ñк "ЗаповненнÑ" та "Вільне виділеннÑ" при роботі кориÑтуютьÑÑ Ð°Ð»Ð³Ð¾Ñ€Ð¸Ñ‚Ð¼Ð¾Ð¼ зернового заповненнÑ. Ð—Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð¿Ð¾Ñ‡Ð¸Ð½Ð°Ñ”Ñ‚ÑŒÑÑ Ð· вибраної початкової точки та продовжуєтьÑÑ Ð´Ð¾Ñ‚Ð¸, поки Ñ€Ñ–Ð·Ð½Ð¸Ñ†Ñ Ñ–Ð½Ñ‚ÐµÐ½ÑивноÑÑ‚Ñ– між початковою точкою та поточною не перевищить певної межі. Тут вказано чиÑло, Ñке визначає цю межу.Про_зоріÑÑ‚ÑŒÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð°Ð»ÑŒÑ„Ð°-каналу у маÑкуПеретвореннÑÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ°Ð½Ð°Ð»ÑƒÐапрÑмок перетвореннÑÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ‚ÐµÐºÑтового шаруПроцедури інÑтрументів перетвореннÑÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÑˆÐ°Ñ€ÑƒÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ‚ÑƒÑ€ÑƒÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ð³Ð¾ÐŸÐµÑ€ÐµÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½ÑПроцедури перетвореннÑПеретвореннÑ...ПерекладПрозоріÑтьТип _прозороÑÑ‚Ñ–:Трикутна хвилÑПовнокольоровеТипТип: %sÐатиÑніть комбінацію клавішÐатиÑніть з'Ñ”Ð´Ð½Ð°Ð½Ð½Ñ ÐºÐ»Ð°Ð²Ñ–Ñˆ чи Backspace Ð´Ð»Ñ ÑкаÑуваннÑÐе вдаєтьÑÑ Ð´Ð¾Ð´Ð°Ñ‚Ð¸ маÑку шару, бо шар вже має маÑку.Ðе вдаєтьÑÑ Ð²Ð¸Ñ€Ñ–Ð·Ð°Ñ‚Ð¸/Ñкопіювати, тому що виділена ділÑнка порожнÑ.Ðе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ теÑтовий тимчаÑовий файл. Щоб уникнути вÑтати даних, перевірте Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° права тимчаÑового каталогу, Ñкий визначений у параметрах (наразі це "%s").Ðе вдаєтьÑÑ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¸ файл підкачки. GIMP викориÑтав уÑÑŽ доÑтупну оперативну пам'ÑÑ‚ÑŒ та не може викориÑтати файл підкачки. Ваше Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð¼Ð¾Ð¶Ðµ бути втрачене. Збережіть його, перезапуÑÑ‚Ñ–Ñ‚ÑŒ GIMP та перевірте шлÑÑ… до файлу підкачки в параметрах.Ðе вдаєтьÑÑ Ð²Ð¸ÐºÐ»Ð¸ÐºÐ°Ñ‚Ð¸ %s. Можливо, відповідне Ð´Ð¾Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐ¸Ð»Ð¾ÑÑŒ аварійно.ÐевизначеноВернутиІÑÑ‚Ð¾Ñ€Ñ–Ñ ÑкаÑувань дій_ІÑÑ‚Ð¾Ñ€Ñ–Ñ ÑкаÑуваньОдиниціÐевідомоÐевідомий тип файлаÐе Ñ” файлом палітри RIFF: -%sВивантажитиÐеназванийÐеназванеТипово викориÑтовувати "То_чка за точкою"_Динамічні комбінації клавішіВикориÑтовувати _зовнішній переглÑдачВикориÑтовувати уÑÑ– виділені шари при Ñкороченні виділеннÑВикориÑтовувати чорно-білу (1-бітну) палітруВикориÑтати колір з градієнтаВикориÑтовувати влаÑну палітруВикориÑтовувати інформаційне вікноВикориÑтовувати палітру оптимізовану Ð´Ð»Ñ WWWЖурнал вÑтановленнÑÐ†Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ ÐºÐ¾Ñ€Ð¸ÑтувачаДопоміжне вікноІнтенÑивніÑтьЯÑкравіÑÑ‚ÑŒ:Режим векторівВерÑÑ–ÑŽ %s Ñтворили Ð´Ð»Ñ Ð²Ð°ÑВерÑÑ–Ñ:ВертикальнеВертикальний зÑув першої лінії Ñітки. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð¾Ð¶Ðµ бути від'ємним.ВідÑтань між вертикальними лініÑми.Дуже великийДуже малийПереглÑдВідображати у виглÑді _таблиціВідображати _ÑпиÑкомПереглÑд таблицеюПереглÑд ÑпиÑкомОптичний клаÑ:Оптична глибина:Увага: не вдаєтьÑÑ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶Ð¸Ñ‚Ð¸ дані з: - -%sУвага: не вдаєтьÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸ дані: - -%sЗовнішній переглÑдачЗовнішній переглÑдачЛаÑкаво проÑимо до -вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ GIMP %d.%dПри ввімкненні цієї функції вміÑÑ‚ діалогу змінюєтьÑÑ Ñƒ відповідноÑÑ‚Ñ– з тим, Ñке Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ у поточний момент.Якщо ввімкнено, GIMP відображає мнемонічні правила про нього у меню.Ð’ÑÑ– інÑтрументи Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð±ÑƒÐ´ÑƒÑ‚ÑŒ показувати контур поточного пензлÑ.При ввімкненні цього параметра Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñтає активним, коли його вікно отримує Ñ„Ð¾ÐºÑƒÑ Ð²Ð²Ð¾Ð´Ñƒ. Це кориÑно при роботі з віконними менеджерами, у Ñких Ð¿ÐµÑ€ÐµÐ´Ð°Ð²Ð°Ð½Ð½Ñ Ñ„Ð¾ÐºÑƒÑу вводу виконуєтьÑÑ ÐºÐ»Ð°Ñ†Ð°Ð½Ð½Ñм по вікну.При включенні цього параметра в уÑÑ–Ñ… діалогах буде відображатиÑÑ ÐºÐ½Ð¾Ð¿ÐºÐ° "Довідка", що дозволÑÑ” звернутиÑÑŒ до ÑиÑтемі довідки. Без цієї кнопки довідку можна викликати кнопкою F1.Якщо ввімкнено, меню можна від'єднувати від панелі інÑтрументів.Якщо ввімкнено, при натиÑканні на F1 відкриваєтьÑÑ Ð´Ð¾Ð²Ñ–Ð´ÐºÐ°.Якщо ввімкнено, GIMP не буде зберігати не змінені з моменту Ð²Ñ–Ð´ÐºÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð¸.Якщо ввімкнено, GIMP буде Ñтворювати окреме інформаційне вікно Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ зображеннÑ.При ввімкненні цього параметра, X-Ñервер визначає позицію миші піÑÐ»Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ руху. Це означає, що Ð¼Ð°Ð»ÑŽÐ²Ð°Ð½Ð½Ñ Ð²ÐµÐ»Ð¸ÐºÐ¸Ð¼Ð¸ пензлÑми буде більш точним, але повільнішим. Ðле на деÑких X-Ñерверах Ð²Ð²Ñ–Ð¼ÐºÐ½ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ параметра забезпечує більш швидку роботу.Якщо ввімкнено, при малюванні буде видно курÑор.Якщо ввімкнено, відображаєтьÑÑ Ñітка. Це також можна зробити командою "ВиглÑд->Показувати Ñітку".Якщо ввімкнено, відображаютьÑÑ Ð½Ð°Ð¿Ñ€Ñмні. Це також можна зробити командою "ВиглÑд->Показувати напрÑмні".Розмір вікна автоматично змінюєтьÑÑ Ð¿Ñ€Ð¸ маÑштабуванні зображеннÑ.Розмір вікна автоматично змінюєтьÑÑ Ð¿Ñ€Ð¸ змінах розміру зображеннÑ.Якщо ввімкнено, ввімкнено показ меж шару. Це також можна зробити командою "ВиглÑд->Показувати межі шару".Якщо ввімкнено, ввімкнена панель меню. Це також можна зробити командою "ВиглÑд->Показувати панель меню".Якщо ввімкнено, відображаютьÑÑ Ð»Ñ–Ð½Ñ–Ð¹ÐºÐ¸. Це також можна зробити командою "ВиглÑд->Показувати лінійки".Якщо ввімкнено, відображаютьÑÑ Ñмуги прокрутки. Це також можна зробити командою "ВиглÑд->Показувати Ñмуги прокрутки".Якщо ввімкнено, вибраний пензель викориÑтовуєтьÑÑ Ð² уÑÑ–Ñ… інÑтрументах.Якщо ввімкнено, вибраний градієнт викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð²ÑÑ–Ñ… інÑтрументів.Якщо ввімкнено, вибраний візерунок викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð²ÑÑ–Ñ… інÑтрументів.Якщо ввімкнено, ввімкнено показ виділеної ділÑнки. Це також можна зробити командою "ВиглÑд->Показувати виділені ділÑнки".Якщо ввімкнено, відображаєтьÑÑ Ñ€Ñдок Ñтану. Це також можна зробити командою "ВиглÑд->Показувати Ñ€Ñдок Ñтану".Якщо ввімкнено, кожна точка Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð°Ñ‚Ð¸Ð¼Ðµ точці екрану.Якщо ввімкнено, то при відкриванні Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð¼Ð°ÑштабуєтьÑÑ Ð´Ð¾ розмірів вікна. У іншому випадку у маÑштабі 1:1Якщо ввімкнено, комбінації клавіш Ð´Ð»Ñ Ð²Ð¸Ð±Ð¾Ñ€Ñƒ підÑвіченого пункту меню можна змінювати безпоÑередньо у меню.Ð‘Ñ–Ð»ÐµÐ‘Ð°Ð»Ð°Ð½Ñ ÐºÐ¾Ð»ÑŒÐ¾Ñ€Ñ–Ð² діє лише на шари у форматі RGB.ШиринаШирина:ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð²Ð½Ñ–ÑˆÐ½Ñ–Ð¼ виглÑдом Ð²Ñ–ÐºÐ¾Ð½ÐšÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð²Ð½Ñ–ÑˆÐ½Ñ–Ð¼ виглÑдом виглÑдом Ð²Ñ–ÐºÐ¾Ð½ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ Ð²Ñ–ÐºÐ½Ð°Ð—Ð°Ð¿Ð¸Ñ '%s' -XПомилка XCF: верÑÑ–Ñ XCF-файла %d не підтримуєтьÑÑПопередженнÑ: формат файлу XCF верÑÑ–Ñ— 0 -неправильно зберігає індекÑовані мапи кольорів. -Поточна мапа буде замінена на мапу у градаціÑÑ… Ñірого.YЖовтийЖовтий:Ви намагаєтеÑÑŒ Ñтворити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ð¾Ð¼ %s.Сюди можна прикріпити панелі діалогових вікон.Ви мали отримати копію GNU General Public License разом з цією програмою; Ñкщо це не так, напишіть у Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.Щоб зміни вÑтупили в дію, необхідно перезапуÑтити GIMP.Вашу вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ GIMP неповне:При наÑтупному запуÑку GIMP Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð² приÑтрою вводу будуть Ñкинуті на типові.При наÑтупному запуÑку GIMP будуть викориÑтовуватиÑÑŒ клавіші типові комбінації клавіш.При наÑтупному запуÑку GIMP Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð² вікна будуть Ñкинуті на типові.Правила маÑÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° зміни розміруМаÑштаб 1:1МаÑштабувати до розміру вінкаЗбільшитиЗменшитиМаÑÑˆÑ‚Ð°Ð±Ð’Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ñторін:Збільшити до _розміру вінкаЗ_більшитиЗ_меншитиМаÑштабувати до розміру вінкаМаÑштаб: %d:1При зміні розмірів вікна змінювати розміри зображеннÑÐ—Ð±Ñ–Ð»ÑŒÑˆÐ¸Ñ‚Ð¸Ð—Ð±Ñ–Ð»ÑŒÑˆÐµÐ½Ð½Ñ Ñ‚Ð° зменшеннÑЗменшитиМаÑштаб:[ ОÑновне Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ ]_Про програму_Захопити_Додати колір з тла_Додати колір з оÑновного_Додати вкладку_Додати до виділеннÑ_Розширені параметри_Ðерограф_УÑе_Прикріпити шар_ЗгладжуваннÑ_Довільне обертаннÑ..._Художні_ПерÑпектива_Ðвто_BКолір _тлаКолір _тла:_Чорний (ÐбÑолютно прозорий)Ð¤ÑƒÐ½ÐºÑ†Ñ–Ñ _Ð·Ð¼Ñ–ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ ÑÐµÐ³Ð¼ÐµÐ½Ñ‚Ð°Ð¤ÑƒÐ½ÐºÑ†Ñ–Ñ _Ð·Ð¼Ñ–ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð¾Ñ— ділÑнки_РозмиваннÑ_ЯÑкравіÑÑ‚ÑŒ:_Пензель_Пензлі_Пензлі, візерунки та градієнти_ЗаповненнÑ_БуферЗа к_Ð¾Ð»ÑŒÐ¾Ñ€Ð¾Ð¼Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ Ð·Ð° _кольором_CСтиль _початку:_КаналиО_чиÑтити Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ помилкиО_чиÑтити Ñ–Ñторію ÑкаÑувань_Штамп_Закрити_Закрити вкладку_ХмариІнÑтрументи _кольору_КолірÐ_алаштувати колір та прозоріÑÑ‚ÑŒ.../_КонтекÑÑ‚_КонтекÑтна довідка_Копіювати_Копіювати з буфера з назвою...С_творити Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð· шаблону..._ÐšÐ°Ð´Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ– зміна розміру_Кадрувати_Криві_Криві..._ТемнийТ_ипові кольориВ_идалити пензельВ_идалити буферВ_идалити каналВ_идалити колірВ_идалити градієнт..._Видалити зображеннÑÐ’_идалити шарВ_идалити палітруВ_идалити контурВ_идалити візерунок...Ð’_идалити збережені параметриВ_идалити ÑегментВ_идалити виділенеВ_идалити шаблон_ЗнебарвленнÑ_Відкріпити вкладку_Стан приÑтрою_Діалоги_Відкинути зміниВи_далити текÑтову інформаціюВ_икривленнÑТо_чка за точкоюД_ублювати_Правка_Правка пензлÑ..._Правка ознак каналу..._Правка кольору..._Правка градієнта..._Правка ознак шару..._Правка палітри..._Правка ознак контуру..._Правка візерунку..._Правка шаблону...Ð’Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ _еліпÑом_Попередній переглÑд шарів та каналів_ГігантÑький_ВирівнюваннÑ_ГумкаКолір _пер.плану_Файл_Тло:_Підігнати до розміру вікна_ЗвеÑти зображеннÑ_Дзеркало_Віддзеркалити Ñегмент_Віддзеркалити виділенеП_лаваюче_ШрифтШ_рифтиКолір _переднього плану:_Вільне виділеннÑ_G_ЗагальніК_олоÑальний_ГрадієнтГра_дієнтиВідтінки _ÑÑ–Ñ€Ð¾Ð³Ð¾ÐšÐ¾Ð¿Ñ–Ñ ÑˆÐ°Ñ€Ñƒ у _відтінкахЗ_більшеннÑ..._ÐапрÑмні_ЖорÑткіÑÑ‚ÑŒ_Довідка_Горизонтальна:Від_тінок:Ð’_еличезний_Значок_Значок:_ЗображеннÑ_ЗображеннÑ_Імпорт_Імпортувати палітру..._ІндекÑоване..._Інформаційне вікно_Перетнути з виділеннÑм_ІнвертуватиСтиль к_ута:_Великий_Шар_Шари_Шари, канали та контуриКолір крайньої _лівої точкиСуÑідньої зл_іва до крайньої правої точки_Рівні..._Світлий_Світлові ефекти_ОÑвітленіÑÑ‚ÑŒ:Сти_ль лінії:_ЛінійнаЗв'_Ñзаний_Завантажити колір лівої точки з_ОпуÑтити канал_ОпуÑтити шар_ОпуÑтити контур_MÐ’Ñ€_учну_Мапа_МаÑкаМаÑка -> Виді_лене_МакÑимальна кількіÑÑ‚ÑŒ кольорів:_Вимірювач_СереднійОб'_єднати палітри..._Об'єднати імпортовані контури_Мігрувати ÑƒÐ¿Ð¾Ð´Ð¾Ð±Ð°Ð½Ð½Ñ ÐºÐ¾Ñ€Ð¸Ñтувача з GIMP 2.0_Різні інÑтрументиГ_оÑтрота ÑкоÑів:Ре_жимДиÑпетчер _модулівПере_міщеннÑ_Ðазва:П_рирода_Створити пензель_Створити канал_Створити канал..._Створити контур..._Створити градієнт_Створити шар_Створити шар..._Створити палітру_Створити контур_Створити контур..._Створити візерунок_Створити шаблон...С_творити вікно_Створити..._ÐаÑтупна_Шум_ÐемаєЗ_Ñув..._ÐепрозоріÑÑ‚ÑŒ_Відкрити зображеннÑ_Відкрити...Колір нап_овненнÑІнÑтрументи _малюваннÑПе_нзель_ПалітраВÑÑ‚_авитиВÑта_вити буферВÑÑ‚_авити з буфера з назвою...К_онтури_Візерунок_ПерÑпективаПо_ÑтеризаціÑ..._Параметри_Попередній переглÑд_Розмір переглÑду_ПопереднÑРозмір при д_рукуванні...Ð’_лаÑтивоÑтіУвімкнути _швидку маÑкуВи_йти_R_RGB_РадіуÑ_ПіднÑти каналП_іднÑти шарПі_днÑти контур_Розгорнути вікна_ПіднÑти чи відкрити зображеннÑ_ПризначитиПр_Ñмокутне виділеннÑПовт_оритиПовт_орити "%s"_Оновити пензлі_Оновити градієнти_Оновити палітри_Оновити візерункиВ_идалити невикориÑтані кольори з оÑтаточної палітриРаÑÑ‚_еризаціÑ_Замінити_Розмножити Ñегмент..._Розмножити виділене..._Перечитати перелік шрифтів_Типовий порÑдок/видиміÑÑ‚ÑŒ_Відновити типові параметри приÑтроїв вводу_Відновити комбінації клавіш приÑтроїв вводу_Відновити позиції вікон на типові_Завантажити параметри зКолір крайньої _правої точкиСуÑідньої Ñ_права до крайньої лівої точки_ОбертаннÑ_ÐаÑиченіÑÑ‚ÑŒ:З_берегтиЗ_берегти колір лівої точки уЗ_берегти параметри ÑкЗ_берігати параметри приÑтроїв вводу при виходіЗ_берігати комбінації клавіш при виходіЗ_берігати позиції вікон при виходіМаÑ_штабМаÑ_ÑˆÑ‚Ð°Ð±ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ...МаÑ_штабувати шар..._МаÑштабувати до розміру зображеннÑВиді_леннÑВиді_ленеПравка виділеної діл_ÑнкиІнÑтрументи ви_ділÑннÑ_ФормаРі_зкіÑтьПоказувати _виділеннÑ_Показувати на панелі_СинуÑоїда_МалийПале_цьВідÑтань прив'_Ñзки:_ОбвеÑти виділену ділÑнкуОбве_Ñти виділену ділÑнку..._ВіднÑти від виділеннÑ_Стиль вкладокШа_блони:Ша_блони_ТекÑÑ‚_Поріг...К_рихітнийПо_рада днÑ_ІнÑтрумент_ІнÑтрументи_Перетворити альфа-канал шаруПере_твореннÑІнÑтрументи п_еретвореннÑÐ’_ернутиВ_ернути "%s"_Вертикальна:_ВиглÑд_Видимий_Веб_Програма переглÑду довідки:_Білий (ÐбÑолютно непрозорий)_Ð‘Ð°Ð»Ð°Ð½Ñ Ð±Ñ–Ð»Ð¾Ð³Ð¾_Ширина:_Заповнити зображеннÑмРоздільна здатніÑÑ‚ÑŒ по _X:_X:_Розш._YРоздільна здатніÑÑ‚ÑŒ по _Y:_Y:МаÑ_штабМаÑ_штаб (%s)кольорівкопіÑÑ‚/Ð´ÑŽÐ¹Ð¼Ð´Ð»Ñ Ð»Ð¾Ð³Ñ–Ñ‡Ð½Ð¾Ð³Ð¾ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %s очікувалоÑÑŒ 'yes' чи 'no', отримано '%s'критична помилка лекÑичного аналізувідтінки Ñіроговідтінки Ñірого - пуÑтодюймдюймиіндекÑованеіндекÑоване - пуÑтонеправильний Ñ€Ñдок UTF-8неправильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ '%ld' Ð´Ð»Ñ Ð·Ð½Ð°Ñ‡ÐºÐ°Ð½ÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ðµ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ '%ld' Ð´Ð»Ñ Ð¾Ð·Ð½Ð°ÐºÐ¸ %sнеправильне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ '%s' Ð´Ð»Ñ Ð·Ð½Ð°Ñ‡ÐºÐ°Ð½ÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ðµ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ '%s' Ð´Ð»Ñ Ð¾Ð·Ð½Ð°ÐºÐ¸ %sміліметрміліметрихвилинан/двідÑотокпікапікиточкаточокточок/%aточок/%sпунктпунктиÑекундаtips-locale:ukЮрій Сирота -МакÑим Дзюманенко Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¾Ð·Ð½Ð°ÐºÐ¸ %s не Ñ” правильним Ñ€Ñдком UTF-8при ÑинтакÑичному аналізі '%s': %s \ No newline at end of file diff -uraN gimp-2.2.8/po/vi.gmo gimp-2.2.9/po/vi.gmo --- gimp-2.2.8/po/vi.gmo 2005-01-22 17:33:18.000000000 +0100 +++ gimp-2.2.9/po/vi.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,149 +0,0 @@ -Þ••Äql)0717&G7Gn79¶7Nð7@?82€8P³8O99T9-Ž99¼9;ö972: j:t:ƒ:‹:“:¯:É:ß:0æ:;(;?;G; L; X;e;t;ƒ;’;ª;*À;6ë;"<?<W<`<<”<¨<¼<Û<ð<==2= -N=Y=b=‚= Š= ”=1¡=3Ó=> >>.> 5> -B>M>^>n>~>†>‹>”>¦> -·>Â>Û>$ò>??$?",? O?[?`?f?k?{?Œ?  ? ­?»?Ä?Ë? Ó?ß? ç?ñ? @@#@A@3W@#‹@!¯@ Ñ@ Ý@ç@ÿ@,ADALA _AmA A®A.·A5æA5BORB ¢B°BÌBÒB ØBæB üB C"C+C -4C?C RC^CgCoCC -˜C -£C)®CØC%òCD7D>DQD#dD%ˆD®D ³DÁD -ÛDæDþD EEE E $E.E3E9EKE ]E -kE vEƒE‹EžE±EËE ÔEÞEîE õE -ÿE -FF*F/FGFZFsF‰FœF±FÁFÐFÙF öFG#G:G AGOGiG†G£G¹GÀG ÖG -àGëGúG HH +H 9HGHbHHžH¹HÐHìHüHI -I”#I¸IÑI èI ôIJ JJ 5J BJOJ`JtJu‹JÌK ÎKÛKáKéKL LL+L ZJZ_ZvZ }ZŠZ‘Z ¯Z»Z -ÐZÛZ àZ -ìZ ÷Z[[9[ V[c[ i[ u[[ž[ -¦[±[º[ -Á[Ì[á[ñ[ \$\ :\F\]\t\‹\ ª\¸\Í\ç\]]6]N] g]q]‚]‘] «]·]Æ]Û]î] ^^$^,^2^9^A^G^d^ y^…^•^§^Æ^Û^ë^ð^ö^ü^ __ _$_+_4_;_ A_!b_„_œ_µ_¼_Å_Ù_ à_ í_ù_#`&`:`?`O`1X`7Š`5Â` ø`a5 a2Cava a -ša¥a¸a½a ÌaÙa ßaéaýab&b 6b -CbNbSb \bfb kbxb~bb—bŸb3¨bÜbòbøbcc'c-c3c:c6Kco‚còcùcd ddd.d 6dDdMdSd Vdcdfd id sd€d†d Ždšd d§d°d ³d -ÀdËdÎdÒdÙdÞd5âde *e4eDeIePe Xefe {eœe -¼e ÇeÓeÛeàeæeìe óeýef -f.f`Gf$¨g6Íg^h>chV¢hKùhFEiZŒiPçi>8j7wjM¯jIýjCGk‹k ”k ¢k¯k-·kåkll3!lUl!jlŒl”l™l¯lÃlÒlîlmm/7mTgm&¼mãmúm.n 0n"Qntn.n ¼n'Ýn o.&o'Uo}o Žo%˜o ¾o -Ìo×o:ío1(pZp`pgp~p „p ‘pžpºpÏp äp ðpýpq(q;qAq_q?qq±q -µq Àq4Ìq rrr .r8rQrdrr˜r­r Ãr -ÏrÚrörþr*s0sKs&Ts"{s8žs4×s2 t?t Utctzt7‘tÉtÏt ãt$ït"u7uC=uCuKÅu”v¦v µv Övàvåvövw&wDwSwZw qw ’w œw©w-¹w çwôw x0xIx)dx#Žx ²x¿xÑx'ãx- y9y>y(\y -…y&y·y½yÓy âyîyôyz -zz'z7z -Rz]z pz}z’z«zÇzÐzàzöz ûz{{+{ B{ O{p{%ˆ{ ®{Ï{*è{|,|F|O|k|z|+”|À| Ð| Þ|ÿ|}0}F}L} d} p}|}}¢}¹}Ø}î}~~38~!l~Ž~$¥~Ê~Ý~ -ñ~ ü~£ -%®Ôî ý €€&0€ W€d€$w€œ€­€˜Í€òfY‚k‚q‚#w‚ ›‚¨‚»‚Û‚ò‚ -ƒ ƒ#ƒ(ƒ 9ƒGƒ Vƒbƒ}ƒ—ƒ ³ƒ ¿ƒ̃ЃÕƒðƒ „ !„-„ @„M„ -S„^„s„y„ €„Š„„ -¡„(¬„6Õ„ …-… ->…I…O…b…u… -Ž… ™…¦…µ… Æ…ç…ý…†+†1†E†W† q†}†™† -°†,»†9è†9"‡>\‡@›‡;܇)ˆBˆQˆoˆuˆ†ˆšˆ ˆ ´ˆ Áˆ-Έ*üˆ'‰!C‰e‰k‰ Š‰ ˜‰¤‰¬‰²‰ljÙ‰÷‰(Š 0Š=ŠMŠ -fŠqŠ Š ¢Š¯Š ÇŠÓŠåŠþŠ.‹1H‹z‹ ƒ‹ ‹ ™‹"¦‹É‹â‹û‹ ŒŒ!Œ#8Œ-\Œ+ŠŒ ¶ŒÃŒÉŒ ÑŒÝŒîŒ  !4BV™*°,ÛŽŽ%Ž5Ž"OŽrŽ yŽ †Ž“Ž ›Ž§Ž¾Ž ÐŽ -ÞŽ!éŽ "= MW\&x Ÿ ©µÕì #5:N^.|,«Øèù ‘ ‘‘ 5‘(C‘l‘}‘“‘š‘¢‘±‘¹‘Б$ê‘’’ ’1’+A’ m’ y’ …’’’ ª’ Ë’ ì’ -ú’ ““ *“4“8“I“ -R“!]“ “(‹“ ´“À“Ç“ç“û“” -”:”2N”” •”X¢”û” •%#•I•M•a• -|•‡•L™•æ•ü•–8–L–e– ~– Š–«–°–ЖØ– è–ò–÷– - ——'—0B—,s— — ±—¾—З$â— ˜˜ -*˜ -5˜@˜R˜n˜ ˜ ˜¾˜ Þ˜ì˜ -™ "™&C™j™y™˜™·™×™õ™š,šJš \š}š•š³ššךòš › %›!2›T› Z› f›s› -ƒ›"Ž›±› Ǜ՛#ñ›,œ*Bœmœ -‹œ –œ¢œ¨œ ®œ¼œ -ÁœÌœ Ôœ ᜠ-îœ"ùœ''D3l §¯Ï -Þ -éô)ú$ž=žBžYžH^žD§ž=ìž*ŸBŸ@IŸIŠŸ'ÔŸ üŸ -   -' 2 N  -e  p ~ &• ¼ Ï  è  õ ¡ -¡¡ -'¡2¡ -J¡$U¡ z¡†¡–¡7­¡$å¡ - -¢+¢ A¢O¢U¢]¢d¢l¢V¢–Ø¢o£ -u£€£ ’£ œ£¦£ ¾£È£ Ú£ ä£ñ£ ô£¤¤ ¤¤ ¤'¤ /¤<¤ ?¤ L¤Z¤]¤n¤v¤y¤}¤ ‚¤Œ¤K¤*ܤ¥¥0¥5¥ <¥H¥[¥6{¥5²¥ -è¥ ó¥ ÿ¥ ¦¦¦¦ $¦.¦4¦ ;¦II¦Ã,Zö<ÔØ1ÖIô;Å.\CM¦í -{k†r 8@o¹36#©ÿ~H~L¡:¸ÊA›©O'ÜP«ùl,0˜=‘!Ó»Äa&í+„óÚRÑIºr¹î(l!øÞxXN(0›mhã Qµ¤¬ß×V ¿Vê—ti­)Õ¼+’N8”D GyÎø~Z³H\½öüsãugv|õ´h_gQƒ?Oüt"^ÙzGÓ‹.é Ê'iMdÇXÅõx1 µ°þé;Y>!ìj­ê‹£ä·/jÀ¨Žn‰p°OeÇ1e‘-Q$Ù=îYs2ñï–[4-ë²]«Ìª³Š¥bRl ‰7këÒ¯<UC9¾v#ßo7óôE–3/¶%NñCc‡ ¢ú?HYS*£àRà?q@æèï_¶"TŒWJð}yåÆ“fÁ\I¨)B2-ÎGÔ[0"a ý‚{qg…>˜ž†ç%ù:U &ä‘ò—÷J¸p>“Dÿ*Ø®|4 -¾VzÝ‹5ÜšÆ&‡Ð aádF×násS{Z¦”§þÈ´L¼ÚÐwK¢ú¤ÏA}€PÛWÀ`€)u9§ËÂm:FÑ‚ÈAy’xeÍUK$Tœkû}M‡ªi[cÖ¬o.v`âBæ…ç•j3Ÿè“‰ ÄÁ¿L= -,ý¡w6Õm8n#…€;œt™»’w4Pz]@Þ'%š”T®5SXÛ(`+fqbƒKÝÍ E7ìhò<Šu*2rc|6É™±/¥^‚B„å9ŠâWdpŒ_·  ƒŽÃ•½±b†5]žDˆÏËfŒ²¯•÷JÉF ˆû ŸÌ$ºðE„^ŽÒˆ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --no-shm Do not use shared memory between GIMP and plugins. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -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 x %d pixels%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)(invalid UTF-8 string)1 Layer<%s><>About The GIMPActive FiltersAdd Layer MaskAdd 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 automaticallyAdjustmentAirbrushAirbrush with variable pressureAlignedAlignmentAll ChannelsAllow completely transparent regions to be filledAllow completely transparent regions to be selectedAlphaAlpha:Anchor Floating SelectionAngle:AntialiasingAppearanceApply Layer MaskApply ThresholdAttach ParasiteAuthor:AutoAutoloadAvailable FiltersAvailable Types:BackgroundBackground color set to:Background: %d, %d, %dBase selection on all visible layersBehindBlendBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBorder SelectionBrightness-ContrastBrush EditorBrush FoldersBrush UIBrush:BrushesBucket FillBuffersC_olumns:Calibrate Monitor ResolutionCan't undo %sCancelCannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Canvas SizeCenter X:Change Background ColorChange Foreground ColorChange perspective of the layer or selectionChannelChannel AttributesChannel Name:Channel cannot be lowered more.Channel cannot be raised higher.ChannelsClick "Continue" to accept the settings above.Click "Continue" to create your personal GIMP folder.Click "Continue" to enter the GIMP user installation.Click to update preview -%s Click to force update even if preview is up-to-dateClick: selectClick: select Drag: moveCloneColorColor BalanceColor Display FiltersColor PickerColor Picker InformationColormapColumns:Con_trast:Confirm Image SizeConstraintsContinueConvertConvert Image to Indexed ColorsConvolveCopy NamedCopyright:Corrupt segment %d in gradient file '%s'.Could not delete '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Create a New ImageCreate a New LayerCreate a new display for this imageCreate and edit images or photographsCropCrop & ResizeCrop & Resize InformationCrop ImageCrop or Resize an imageCrop: Cubic (Best)CurvesCustomCutCut NamedCyanDate:Delete Layer MaskDelete this imageDevice StatusDifferenceDirect ColorDisplayDisplay NavigationDisplay proceduresDisplaying [%0.6f, %0.6f]DissolveDistance:Distance: %0.6fDivideDocumentsDrag: moveDraw in inkDrawable proceduresEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit Palette ColorEdit Path AttributesEdit proceduresEllipse SelectEnormousEnter a name for this bufferEnvironmentEnvironment FoldersErase to background or transparencyEraserError ConsoleError saving XCF file: %sError while reading '%s': %sError while writing '%s': %sError writing XCF: %sErrorsExpanded as necessaryExposure:ExtensionsFG to BG (HSV)FG to BG (RGB)FG to TransparentFile OperationsFill Opacity:Fill Type %sFill with a color gradientFill with a color or patternFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFlip the layer or selectionFloat SelectionFloating selectionsFoldersForegroundForeground & 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 SelectFuzzy SelectGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP versionGammaGeneralGet Monitor ResolutionGiganticGimprc proceduresGradient EditorGradient FoldersGradient UIGradient:GradientsGrayGrayscaleGreenGreen:GuideGuide proceduresHSV (%0.3f, %0.3f, %0.3f)Handle position: %0.6fHardnessHardness:HeightHeight:Help BrowserHelp SystemHelp proceduresHighlightsHistogramHistoryHorizontalHueHue-SaturationHugeI_mageI_nterval:ImageImage InformationImage SizeImage Statusbar FormatImage Title & Statusbar FormatImage Title FormatImage WindowsImage maskImagesImport OptionsImport PaletteImport a New PaletteIncrementalIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInkInput DevicesInput LevelsInstant updateInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionInvalid UTF-8 data in file '%s'.Invalid 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 URIInvertInvert SelectionLargeLarge (256x256)Last Error:LayerLayer AttributesLayer SelectLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.LayersLayers Merge OptionsLength:LevelsLinearLoadLoad CurvesLoad LevelsLoading preview ...Location:Looking for data filesMagentaMagnifyMask Opacity:Matrix:Max Depth:Maximum color differenceMeasureMeasure Distances and AnglesMediumMerge LayersMerge PaletteMessage proceduresMessage repeated %d times.Message repeated once.MidtonesMiscellaneousModeMode:Modify Selected ColorModify all colorsModule FoldersModulesMoveMove LayerMove ToolMove layers & selectionsMove the selected filter downMove the selected filter upMove: MultiplyNavigationNew ChannelNew Channel ColorNew Channel OptionsNew ImageNew LayerNew PathNew Path OptionsNo brushes available for use with this tool.No longer availableNo patterns available for this operation.No selection to stroke.NoneNone (Fastest)NormalNormal (128x128)Not a regular fileOffsetOffset ChannelOffset LayerOffset:On diskOnly in memoryOpacityOpacity:Open ImageOpen Text File (UTF-8)Options: -Origin X:Original Width:Output LevelsOverlayPaintPaint Tool proceduresPaint using Patterns or Image RegionsPaintbrushPalettePalette EditorPalette FoldersPalette UIPalette _Name:PalettesParsing '%s' -PastePasted LayerPathPath AttributesPath cannot be lowered more.Path cannot be raised higher.PathsPattern FoldersPattern UIPatternsPencilPersonal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick colors from the imagePixelsPixels:Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-InsPlug-inPosition: %0.6fPosterizePosterize (Reduce Number of Colors)PreferencesPressure:PreviewPreview is out of dateProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:Querying new Plug-insQuickMaskRGBRGB (%d, %d, %d)RGB ColorRGB-emptyRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Radius:Raise this image's displaysRateRate:Re-Show LastRect SelectRedRed:RedoReduce image to a fixed number of colorsReduce image to two colors using a thresholdRegisteredRemote imageRemove the selected filter from the list of active filters.Repeat LastRepeat:Replace the current selectionReplicateReplicate Gradient SegmentReplicate Gradient SelectionReplicate SegmentReplicate SelectionReset the selected filter to default valuesResizeResize ImageResize LayerResolution:Resource ConsumptionResource configurationRevertRevert ImageRotateRotate the layer or selectionRotating...Rotation InformationSaturationSaveSave CurvesSave ImageSave LevelsSave a Copy of the ImageSave curves settings to fileSave levels settings to fileSaving '%s' -ScaleScale ImageScale LayerScale the layer or selectionScalingScaling...ScissorsScreenSelect AllSelect Brush FoldersSelect By ColorSelect Environment FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect Primary Color to ModifySelect SourceSelect Theme FoldersSelect contiguous regionsSelect elliptical regionsSelect hand-drawn regionsSelect rectangular regionsSelect regions by colorSelect shapes from imageSelectionSelection EditorSelection MaskSelection Tool proceduresSelection: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Image Canvas SizeShadowsShapeShape:SharpenShearShear the layer or selectionShearing InformationShearing...Show S_tatusbarShow memory usageShow tip next time GIMP startsShow zoom percentageShow zoom ratioSizeSize:SmallSmoothSmooth edgesSmudgeSmudge imageSourceSpacing:Speed:SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segments UniformlySquareStandardStarting ExtensionsState:Static ColorStatic GraySubtractSubtract from the current selectionTemporary ProcedureTextText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active pattern. -Click to open the Pattern Dialog.Theme FoldersThemesThere are not enough visible layers for a merge down.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold:Thumbnail %d of %dTinyTitle & StatusTool OptionsToolsTransformTransform DirectionTransform Tool proceduresTransformationTransforming...TransparencyTrue ColorTypeType %sUndefinedUndoUndo HistoryUnitsUnknown file typeUnloadUnnamedUntitledUse all visible layers when shrinking the selectionUser Installation LogValueVersion %s brought to you byVersion:VerticalWhiteWidthWidth:Window PositionsXCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YellowZoom 1:1Zoom AllZoom InZoom OutZoom factor: %d:1Zoom inZoom in & outZoom out_Auto_B_Brightness:_C_G_Gradient_Horizontal:_Hue:_Import_Lightness:_M_Manually_Preview_R_Saturation:_Vertical:_Y_Y:colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for token %sinvalid value '%s' for token %smillimetermillimeterspercentpicapicaspixelpixelspixels/%apointpointstips-locale:Cvalue for token %s is not a valid UTF-8 stringProject-Id-Version: GIMP for Gnome v.2.1.x -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2003-01-27 22:22+0700 -Last-Translator: Trinh Minh Thanh -Language-Team: Gnome-Vi -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Tùy chá»n không hợp lệ "%s" - -Cách dùng: %s [tùy chá»n ... ] [tập tin ... ] - - --debug-handlers Chạy trình xá»­ lý tín hiệu gỡ rối không quan trá»ng. - --display Dùng hiển thị X đã định. - --no-shm Không dùng bá»™ nhá»› chia sẻ giữa GIMP và plugins. - --system-gimprc Dùng tập tin gimprc hệ thống thay thế. - --verbose Hiển thị thông Ä‘iệp khởi chạy. - -c, --console-messages Hiển thị cảnh báo tá»›i console thay cho há»™p thoại. - -d, --no-data Không nạp brushes, gradients, palettes, patterns. - -g, --gimprc Dùng tập tin gimprc thay thế. - -h, --help Xuất ra trợ giúp này. - -i, --no-interface Chạy mà không có giao diện ngÆ°á»i dùng. - -s, --no-splash Không hiển thị cá»­a sổ khởi chạy. - -v, --version Xuất ra thông tin vá» phiên bản. -%d Lá»›p%d x %d pixelsao chép %s%s mask%s%sNhấn chuá»™t: mở rá»™ng phần chá»n%s%sKéo: di chuyển & nén(%0.3f, %0.3f, %0.3f)(không)(Cá»­a sổ console này sẽ đóng sau 10 giây) -(Buffer không tên)(chuá»—i UTF-8 không hợp lệ)1 Lá»›p<%s><>Nói vá» GIMPTrình lá»c hoạt Ä‘á»™ngThêm Mặt Nạ Lá»›pThêm mask vào lá»›pThêm văn bản vào ảnhThêm màu hiện thá»i vào lược sá»­ màuThêm trình lá»c được chá»n vào danh sách các trình lá»c hoạt Ä‘á»™ng.Cá»™ng vào lá»±a chá»n hiện thá»iThêm theme '%s' (%s) -Cá»™ngÄiá»u chỉnh Äá»™ sáng và TÆ°Æ¡ng phảnÄiá»u chỉnh cân bằng màuHiệu chỉnh Ä‘Æ°á»ng cong màuChỉnh mức Ä‘á»™ màuÄiá»u chỉnh Ä‘á»™ sáng và tÆ°Æ¡ng phảnÄiá»u chỉnh cân bằng màuHiệu chỉnh các Ä‘Æ°á»ng cong màuÄiá»u chỉnh mức Ä‘á»™ màuÄiá»u chỉnh màu sắc và Ä‘á»™ bão hòaTá»± Ä‘á»™ng hiệu chỉnh mức Ä‘á»™Sá»± chỉnh lýBút hÆ¡iBút hÆ¡i vá»›i áp suất khác nhauThẳng hàngCanh HàngToàn bá»™ các KênhHoàn toàn cho phép vùng trong suốt được tô màuCho phép các vùng trong suốt được chá»nAlphaAlpha:Neo Chá»n Lá»±a NổiGóc:AntialiasingDiệm mạoÃp dụng Mặt nạ Lá»›pÃp dụng NgưỡngÄính kèm ParasiteTác giả:Tá»± Ä‘á»™ngTá»± Ä‘á»™ng nạpTrình Lá»c Hiện CóKiểu Hiện Có:Ná»nThiết lập màu ná»n cho:Ná»n: %d, %d, %dLá»±a chá»n cÆ¡ bản trên toàn bá»™ các lá»›p nhìn thấySauPha trá»™nPha trá»™n:Pha trá»™n: không hợp lệ cho ảnh phụ lục.Pha trá»™n...Xanh da trá»iXanh da trá»i:Làm má»Làm Má» hay Sắc nétSá»± chá»n viá»nÄá»™ Sáng-TÆ°Æ¡ng PhảnTrình biên soạn VẽThÆ° mục Bút vẽGiao diện Bút vẽBút lông:Bút lôngÄổ xô Ä‘á»±ng màu lênBuffersCá»™t:Xác Äịnh Äá»™ Phân Giải Màn HìnhKhông thể hoàn tác %sBá» quaKhông thể tạo thÆ° mục '%s': %sKhông tạo được xem trÆ°á»›cKhông thể xén vì vùng chá»n hiện thá»i rá»—ng.Không thể nâng má»™t lá»›p mà không có alpha.Không thể lÆ°u. Không có gì được chá»n.Kích thÆ°á»›c CanvasTrung tâm X:Thay đổi Màu Ná»nThay đổi Màu Ná»nThay đổi phối cảnh của lá»›p hay phần chá»nKênhThuá»™c tính KênhTên Kênh:Kênh không thể hạ thấp hÆ¡n.Kênh không thể nâng cao hÆ¡n.KênhNhấp "Tiếp tục" để chấp nhận các thiết lập trên.Nhấp "Tiếp tục" để tạo thÆ° mục GIMP riêng cho bạn.Nhấp "Tiếp tục" để thá»±c hiện cài đặt ngÆ°á»i dùng GIMP. Hãy nhấn để cập nhật ảnh xem trÆ°á»›c -%s Nhấn để ép buá»™c cập nhật sá»± kiện nếu ảnh xem trÆ°á»›c được cập nhậtNhấp: chá»nNhấp: chá»n Kéo: chuyểnVô tínhMàuCân Bằng MàuTrình Lá»c Hiển Thị MàuTrình hút MàuThông tin Trình chá»n MàuSÆ¡ đồ MàuCá»™t:Äá»™ tÆ°Æ¡ng _phản:Khẳng định kích cỡ ảnhBắt épTiếp tụcChuyển đổiChuyển đổi ảnh thành màu phụ lụcCuá»™n lạiSao chép vá»›i tênBản quyá»n:Äoạn há»ng %d trong tập tin gradient '%s'.Không thể xóa '%s': %sKhông thể Ä‘á»c %d byte từ '%s': %sKhông thể tìm tập tin XCF: %sTổng số:Tạo Ảnh Má»›iTạo Lá»›p Má»›iTạo hiển thị má»›i cho ảnh nàyTạo và biên soạn ảnh hay ảnh chụpXénCắt xén & Thay đổi cỡThông tin Cắt xén & Thay đổi cỡXén ẢnhCắt xén hay Äổi cỡ má»™t ảnhXén:Khối (Tốt nhất)ÄÆ°á»ng CongTùy chá»nCắtCắt vá»›i tênXanhNgày:Xoá Mặt Nạ Lá»›pXoá ảnh nàyTrạng Thái Thiết BịKhác nhauMàu Trá»±c TiếpHiển thịDuyệt Hiển ThịThủ tục hiển thịHiển thị [%0.6f, %0.6f]Hoà tanKhoảng cách:Khoảng cách: %0.6fChiaTài liệuKéo: di chuyểnVẽ bằng má»±cThủ tục để VẽBiên SoạnBiên soạn thuá»™c tính KênhBiên soạn màu KênhBiên soạn mục nhập bảng màuBiên Soạn Thuá»™c Tính Lá»›pBiên soạn Màu riêngBiên soạn thuá»™c tính ÄÆ°á»ng dẫnThủ tục Biên soạnChá»n theo hình ê-lípTo lá»›nNhập tên cho buffer nàyMôi TrÆ°á»ngThÆ° Mục Môi TrÆ°á»ngXóa tá»›i ná»n hay tá»›i khi trong suốtCông cụ xóaLá»—i ConsoleLá»—i khi lÆ°u tập tin XCF: %sLá»—i khi Ä‘á»c '%s': %sLá»—i khi ghi '%s': %slá»—i khi ghi XCF: %sLá»—iTrải rá»™ng khi cầnBá»™c lá»™:Mở rá»™ngFG thành BG (HSV)FG thành BG (RGB)FG thành Trong SuốtHoạt Äá»™ng của Tập TinÄiá»n Tính Äục:Äiá»n Loại %sTô bằng má»™t gradient màuTo bằng màu hay mẫuCuối cùng, Lá»›p được hợp nhất nên là:Tìm các vùng tiếp giáp nhauTìm Màu TÆ°Æ¡ng Tá»±Phẩy nhẹ lá»›p hay phần chá»nChá»n Lá»±a NổiPhần chá»n NổiThÆ° MụcTiá»n cảnhMàu tiá»n cảnh và ná»n. Các ô vuông Ä‘en và trắng lập lại màu. MÅ©i tên hoán đổi màu. Nhấp đúp chuá»™t để mở thoại chá»n màu.Thiết lập màu tiá»n cảnh cho:Tiá»n cảnh: %d, %d, %dChá»n Tá»± DoChá» tù mùMở rá»™ng GIMPThông Ä‘iệp GIMPTinh chỉnh Hoạt Ä‘á»™ng của GIMPGIMP Plug-InKhởi chạy GIMPTrình soạn thảo văn bản GIMPMẹo Dùng GIMPCài đặt NgÆ°á»i Dùng GIMPGIMP không thể khởi tạo giao diện ngÆ°á»i dùng đồ há»a. -Hãy đảm bảo thiết lập đúng cho môi trÆ°á»ng hiển thị Ä‘ang có.GIMP không được cài đặt đúng cho ngÆ°á»i dùng này. -Cài đặt ngÆ°á»i dùng bị bá» qua vì đã dùng '--no-interface' flag. -Äể thá»±c hiện cài đặt ngÆ°á»i dùng, hãy chạy GIMP không có '--no-interface' flag.Phiên bản GIMPGammaChungLấy Äá»™ Phân Giải Màn HìnhKhổng lồThủ tục GimprcTrình biên soạn Äá»™ dốcThÆ° mục Äá»™ dốcGiao diện Äá»™ dốcÄá»™ dốc:Äá»™ dốcXámCân bằng xámXanh lá câyXanh lá cây:Chỉ dẫnThủ tục HÆ°á»›ng dẫnHSV (%0.3f, %0.3f, %0.3f)Quản lý vị trí: %0.6fÄá»™ rắnÄá»™ rắn:CaoCao:Trình Duyệt Trợ GiúpHệ Thống Trợ GiúpThủ tục Trợ giúpNổi bậtBảng thống kêLược sá»­NgangMàu sắcBão hòa Màu sắcLá»›nẢn_hKhoảng:ẢnhThông tin ảnhCỡ ẢnhÄịnh dạng thanh trạng thái ảnhÄịnh dạng Thanh Trạng Thái & Tiêu ÄỠẢnhÄịnh dạng Tiêu đỠẢnhCá»­a sổ ẢnhMask ảnhẢnhNhập Tùy Chá»nNhập Bảng màuNhập bảng màu má»›iLá»›n lênChỉ mục:Có chỉ sốMàu Chỉ ThịChuyển đổi Màu Phụ lụcCá»­a Sổ Thông TinSÆ¡ khởi Mask lá»›p cho:SÆ¡ khởi plug-inMá»±cThiết Bị NhậpMức Nhập Vàocập nhật tức thá»iGiao diệnThủ tục GIMP ná»™i bá»™Thủ tục Ná»™i bá»™Ná»™i suy:Cắt chéo vá»›i lá»±a chá»n hiện thá»iDữ liệu UTF-8 không hợp lệ trong tập tin '%s'.Chuá»—i UTF-8 không hợp lệ trong tập tin vẽ '%s'Chuá»—i UTF-8 không hợp lệ trong tập tin gradient '%s'.Chuá»—i UTF-8 không hợp lệ trong tập tin bảng màu '%s'Chuá»—i UTF-8 không hợp lệ trong tập tin mẫu '%s'.Dãy ký tá»± không hợp lệ trong URILá»™n ngượcÄảo ngược phần chá»nLá»›nRá»™ng (256x256)Lá»—i gần nhất:Lá»›pThuá»™c Tính Lá»›pChá»n Lá»›pTê_n Lá»›p:Không hạ thấp được lá»›p hÆ¡n nữa.Không nâng được lá»›p lên cao hÆ¡n.Lá»›p đã ở đáy rồi.Lá»›p đã ở trên cùng rồi.Lá»›pTùy Chá»n Hợp Nhất Lá»›pChiá»u dài:Mức Ä‘á»™TuyếnNạpNạp ÄÆ°á»ng CongNạp Mức Äá»™Äang nạp xem trÆ°á»›c ....Äịa Ä‘iểm:Tìm các tập tin cÆ¡ sở dữ liệuÄá» tÆ°Æ¡iPhóng to-nhá»Äá»™ đục của mask:Ma trận:Sâu tối Ä‘a:Sá»± khác biệt màu tối Ä‘aÄo LÆ°á»ngÄo góc và Ä‘á»™ dàiTrung bìnhNhập các Lá»›pHợp nhất Bảng màuThủ tục thông Ä‘iệpThông Ä‘iệp được nhắc lại %d lần.Thông Ä‘iệp được nhắc lại má»™t lần.MidtonesLinh tinhChế Ä‘á»™Chế Ä‘á»™:Biến đổi màu được chá»nBiến đổi má»i màuThÆ° Mục chứa ModuleModulesDi chuyểnDi chuyển Lá»›pCông cụ Di chuyểnDi chuyển lá»›p và phần chá»nChuyển trình lá»c được chá»n xuốngChuyển trình lá»c được chá»n lên.Di chuyển:NhânDuyệtKênh Má»›iMàu Kênh Má»›iTùy Chá»n Kênh Má»›iẢnh Má»›iLá»›p Má»›iÄÆ°á»ng dẫn Má»›iTùy chá»n ÄÆ°á»ng dẫn Má»›iKhông có sẵn bút vẽ nào để dùng vá»›i công cụ này.Không có sẵn nữaKhông có sẵn các mẫu cho thao tác.Không có lá»±a chá»n để thá»±c hiện.KhôngKhông (Nhanh nhất)Bình thÆ°á»ngBình thÆ°á»ng (128x128)Không phải tập tin chính quyOffsetKênh OffsetLá»›p OffsetOffset:Trên ÄÄ©aChỉ trong Bá»™ Nhá»›Tính Má» ÄụcÄá»™ đục:Mở ẢnhMở tập tin văn bản (UTF-8)Tùy chá»n: -Gốc X:Bá» rá»™ng Nguyên gốc:Mức xuất raChe phủVẽThủ tục Công cụ VẽVẽ sá»­ dụng Mẫu hay Vùng ẢnhBút vẽBảng MàuTrình biên soạn Bảng màuThÆ° mục Bảng màuGiao diện Bảng màuTê_n Bảng Màu:Bảng màuPhân tích '%s' -DánLá»›p được dánÄÆ°á»ng DẫnThuá»™c tính ÄÆ°á»ng dẫnÄÆ°á»ng dẫn không thể hạ thấp hÆ¡n.ÄÆ°á»ng dẫn không thể nâng cao hÆ¡n.ÄÆ°á»ng DẫnThÆ° mục MẫuGiao diện MẫuMẫuBút chìThÆ° mục GIMP cá nhânPhối cảnhThông tin Chuyển Dạng Phối CảnhPhối cảnh...Lấy màu từ ảnhPixelsPixels:Hãy đợi...Plug-InMôi TrÆ°á»ng plug-InThÆ° mục chứa Plug-inPlug-In đã không thể mở ảnhPlug-InsPlug-inVị trí: %0.6fLàm áp phíchÃp phích hoá (giảm số lượng màu)Tùy thíchÃp suất:Xem trÆ°á»›cXem trÆ°á»›c quá hạnCÆ¡ Sở Dữ Liệu Thủ TụcCÆ¡ sở dữ liệu Thủ tụcTiến trìnhMàu GiảMụcđích:Tra vấn plug-in má»›iQuickMaskRGBRGB (%d, %d, %d)Màu RGBRGB-rá»—ngRGBA (%0.3f, %0.3f, %0.3f, %0.3f)Bán kính:Nâng các hiển thị của ảnh nàyMức Ä‘á»™Mức:Hiển thị lại Lần cuốiChá»n chữ nhậtÄá»Äá»:Làm lạiGiảm thiểu ảnh tá»›i số lượng màu cố địnhGiảm thiểu ảnh thành 2 màu dùng ngưỡngÄược đăng kýẢnh ở xaBá» trình lá»c được chá»n ra khá»i danh sách các trình lá»c hoạt Ä‘á»™ng.Nhắc lại Lần cuốiNhắc lại:Thay thế lá»±a chá»n hiện thá»iSaoSao phần GradientSao phần chá»n GradientSao phầnSao Phần chá»nÄặt lại trình lá»c được chá»n vá» các giá trị mặc địnhÄổi kích thÆ°á»›cÄặt lại kích cỡ ẢnhÄặt lại kích cỡ Lá»›pÄá»™ phân giải:Tiêu thụ Tài nguyênCấu hình Tài nguyênTrở lạiCho ảnh vá» trạng thái cÅ©XoayXoay lá»›p hoặc phần chá»nXoay...Thông tin xoayBão HoàLÆ°uLÆ°u ÄÆ°á»ng CongLÆ°u ẢnhLÆ°u Mức Äá»™LÆ°u bản sao của ảnhLÆ°u thiết lập Ä‘Æ°á»ng cong vào tập tinLÆ°u thiết lập vá» mức vào tập tinÄang lÆ°u '%s' -Cân chỉnhCân đối ẢnhCân đối Lá»›pCân chỉnh lá»›p hay phần chá»nCân ChỉnhÄang cân chỉnh...Kéo cắtMàn hìnhChá»n Toàn bá»™Chá»n ThÆ° mục Bút vẽChá»n Theo MàuChá»n ThÆ° mục Môi TrÆ°á»ngChá»n ThÆ° mục Äá»™ dốcChá»n ThÆ° Mục chứa ModuleChá»n KhôngChá»n ThÆ° mục Bảng màuChá»n ThÆ° mục MẫuChá»n ThÆ° mục chứa Plug-inChá»n màu chính để biến đổiChá»n NguồnChá»n thÆ° mục chứa themeChá»n các vùng tiếp giápChá»n vùng theo hình ê-lípChá»n vùng vẽ thủ côngChá»n các phần chữ nhậtChá»n vùng theo màuChá»n hình thể từ ảnhSá»± chá»n lá»±aTrình biên tập Phần chá»nChá»n lá»±a mặt nạThủ tục công cụ chá»nPhần chá»n:Phần chá»n: ThêmPhần chá»n: Cắt ChéoPhần chá»n: THAY THẾPhần chá»n: Trừ ÄiÄá»™ NhạyLập kích thÆ°á»›c canvas ảnhBóngHình thểHình thể:Làm sắc nétCắt xénCắt xén lá»›p hay phần chá»nThông tin cắt xénCắt xén...Hiện thanh trạng th_áiHiển thị sá»­ dụng bá»™ nhá»›Hiển thị Mẹo khi chạy GIMP lần sauHiển thị tá»· lệ phần trăm PhóngHiển thị tá»· lệ PhóngKích cỡKích cỡ:Nhá»MịnCạnh nhẵnMá»áº¢nh má»NguồnÄể cách:Tốc Ä‘á»™:Chia táchTách phần gradient cùng kiểuTách các phần gradient cùng kiểuTách phần má»™t cách đồng dạngTách thành các phần má»™t cách đồng dạngVuôngChuẩnBắt đầu phần mở rá»™ngTrạng thái:Màu TÄ©nhXám TÄ©nhTrừTrừ Ä‘i từ lá»±a chá»n hiện thá»iThủ tục tạm thá»iTextThủ tục văn bảnGIMPBút lông hoạt Ä‘á»™ng. -Nhấn chuá»™t để mở Thoại Bút Lông.Gradient hoạt Ä‘á»™ng. -Nhấn chuá»™t để mở thoại Gradient.Mẫu hoạt Ä‘á»™ng. -Nhấn chuá»™t để mở thoại MẫuThÆ° mục chứa ThemeThemesKhông có đủ lá»›p nhìn thấy được để nhập lại.TrÆ°á»ng nhập văn bản này được giá»›i hạn trong %d ký tá»±.Công cụ này không có tùy chá»n.NgưỡngNgưỡng:Thumbnail %d của %dNhá» xíuTiêu Äá» & Trạng TháiTùy Chá»n Công CụCông CụBiến đổiBiến đổi HÆ°á»›ngThủ tục công cụ chuyển dạngSá»± biến đổiÄang chuyển dạng...Trong suốtMàu ThậtKiểuKiểu %sKhông xác địnhHoàn tácLược sá»­ hoàn tácÄÆ¡n vịLoại tập tin không xác địnhThôi NạpKhông có tênKhông có tiêu Ä‘á»Dùng toàn bá»™ các lá»›p khi co ngắn phần chá»nBản ghi Cài đặt NgÆ°á»i dùngGiá trịPhiên bản %s được phân phối bởiPhiên bản:Dá»cTrắngRá»™ngRá»™ng:Vị trí Cá»­a sổLá»—i XCF: gặp phải phiên bản %d của tập tin XCF không được há»— trợCảnh Báo XCF: phiên bản 0 của định dạng -tập tin XCF đã không lÆ°u đúng bản đồ màu. -Thay bằng bản đồ cân bằng xám.VàngPhóng 1:1Phóng toàn bá»™Phóng ToThu Nhá»Tác nhân phóng: %d:1Phóng toPhóng to & nhá»Thu nhá»Tá»± Ä‘á»™ng_BÄá»™ _sáng:_C_G_Gradient_Ngang:_Sắc màu:_NhậpÄá»™ sáng:_MTh_ủ CôngX_em trÆ°á»›c_RÄá»™ bão hoà:_Dá»c:_Y_Y:màusao chépdpiMong đợi 'có' hay 'không' cho for dấu hiệu boolean %s, nhận '%s'lá»—i phân tích cú pháp trầm trá»ngcân bằng xámcân bằng xám-rá»—nginchincheschỉ mụcchỉ mục-rá»—ngchuá»—i UTF-8 không hợp lệgiá trị không hợp lệ '%ld' cho dấu hiệu %sgiá trị không hợp lệ '%s' cho dấu hiệu %smillimetermillimetersphần trămpicapicaspixelpixelspixels/%apointpointstips-locale:Cgiá trị cho dấu hiệu %s không phải là chuá»—i UTF-8 hợp lệ \ No newline at end of file diff -uraN gimp-2.2.8/po/yi.gmo gimp-2.2.9/po/yi.gmo --- gimp-2.2.8/po/yi.gmo 2005-01-22 17:33:18.000000000 +0100 +++ gimp-2.2.9/po/yi.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,19 +0,0 @@ -Þ•.Œ=üðñ -ø   - '0HNT[_gm u†Ž”™ž¥ «·¿ÄÉ -Ð Û åñöü - ") /<AF0M~¤»ÄÛ(ë.C U bpwŠœ­ÌÓÜ -åðù - -.E b p}˜©¼ Å -ÏÚòû  $ . A P Y f '+ ( -#*%$&.! "-) , (none)AdjustmentAlignmentAuthor:BackgroundCancelCenteredChange Background ColorClearColorColor:CutFoldersGammaGeneralGrayscaleHeightHeight:ImageModeNoneNormalPastePreferencesPreviewRedoSaveScreenSelect AllSelectionSelection: SizeSize:TextText ColorTypeUndoValueWidthWidth:_Hue:_Saturation:inchpicapointsProject-Id-Version: 1.0 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2003-03-19 -Last-Translator: Raphael Finkel -Language-Team: Yiddish -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -(×’×ָרניט)צופּ×ַסונג×ױסגלײַכונגמחברהינטערגרונטרוף ×ָפּפֿ×ַרגליכן ×¦×•× ×¦×¢× ×˜×¢×¨×‘×²Ö·×˜ הינטער־פֿ×ַרב ×יבערזײַ מבֿטלפֿ×ַרבפֿ×ַרב:שערפּ×ַפּקעסγ (×’×ַמ×Ö·)×ַלגעמײןשװ×ַרץ־גרױ־װײַסהײךהײך: בילדמ×ָדעקײנענ×ָרמ×ַלקלעפּפּרעפֿערענצןפֿ×ָרױסװײַז×יבער־פֿ×ַרקערהיט ×ױףעקר×ַןקלײַב ×ַלץ ×ױססעלעקציעסעלעקציע: גרײסגרײס:טעקסטטעקסט פֿ×ַרבטיפּפֿ×ַרקערב×ַטרעףברײטברײט:ש×ַטירונגדורכװײק×ײנספּיק×ַפּונקטן \ No newline at end of file diff -uraN gimp-2.2.8/po/zh_CN.gmo gimp-2.2.9/po/zh_CN.gmo --- gimp-2.2.8/po/zh_CN.gmo 2005-04-09 21:48:07.000000000 +0200 +++ gimp-2.2.9/po/zh_CN.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,492 +0,0 @@ -Þ•L |Jm ܔƑÆ&§ÆkÎÆG:Ç9‚ÇG¼ÇAÈNFÈi•È<ÿÈk<É@¨É2éÉ;ÊPXÊO©Ê2ùÊ9,Ë-fË9”Ë;ÎË7 -Ì BÌLÌ -SÌ ^Ì -hÌ -sÌ ~ÌŠÌšÌ -©Ì´ÌÄÌ -ÜÌçÌïÌ÷ÌÍ-ÍCÍ0JÍ{ÍŒÍŸÍ¨Í°Í -ÇÍÒÍÙÍáÍéÍ øÍ Î Î - Î -+Î 6Î CÎOÎ _Î kÎwÎ |Î ˆÎK•Î…áÎ.gÏ1–Ï!ÈÏêÏüÏÐÐÐ5ÐDÐ[Ð_ÐrÐ -„РЛР±Ð -½ÐÈÐÝÐ ðÐúÐ Ñ -ÑÑ,Ñ?ÑWÑiÑ{ÑŠÑ* Ñ6ËÑÒÒ2ÒJÒSÒpÒÒ¤Ò¸ÒÌÒëÒÓÓ#(ÓLÓfÓ -‚ÓÓžÓ¦Ó¸ÓÁÓáÓõÓ ýÓ Ô ÔÔ.Ô1CÕ3uÕ©Õ½ÕÃÕÖÕ‹ÝÕ -iÖtÖŽÖ¤Ö¾ÖÅÖ ÔÖ -áÖìÖýÖ××A0×Jr×½×<Ð× Ø Ø)Ø1Ø6Ø PØ\ØrØ…ØŽØ¥Ø·Ø ÈØÖØîØ -÷ØÙÙ,ÙCÙ&YÙ$€Ù¥Ù¬Ù ²Ù ¼ÙÊÙÑÙêÙñÙ÷ÙÚ"Ú <ÚHÚMÚSÚXÚ -hÚsÚ‚Ú“Ú§Ú7»ÚóÚ ùÚ ÛÛÛ$Û ,Û 9ÛEÛ MÛZÛ_Û dÛmqÛßÛ äÛ òÛ Ü -ÜÜ 0Ü>ÜNÜ UÜCbÜ7¦Ü=ÞÜ@Ý6]Ýd”ÝùÝÞ3-ÞaÞ<uÞ#²Þ!ÖÞøÞß /ß;ß Qß [ßeßn߆ߜߴßÌßÞßðß à*àGà,^à‹à¥à­à ÀàÎà îà á!á?áZápá…ášá£á ¬á ºáÇáÛáâáéá ïáýáâ â,â.Bâ5qâ5§â7Ýâ8ã)Nã,xã¥ãÁãÙã2öã )äJäeäOäAÑä%å&9å4`å1•å#Çå ëåùå æ !æ+æCæTæZæcæræ‚æ -‘æœæ¤æ ªæ¸æ ÎæÛæôæç0ç Iç Uçbç iç sç €çç¨çÅç+Îçúç è è)è 9èGè PèZè -bè mèwè$—è¼èÏèÞèóè é1éKéié|éŒé"¡éÄéÚé éé÷éê êê$ê¦ê¯êÀê ÈêÕêðê ë)ë >ë"Lë"oë’ë«ë´ë -Æë Ñëßë -þë ì,#ìPì!jì#Œì#°ì!Ôì%öìí.;íjí qí}íŽí¢íµíÈí#Þí-î0î%Fîlî‚î˜î³îÈîàî åîóî - ï -ï -#ï.ïFïMï\ï aï oï|ïŒïœï¯ï¾ïÍï Ôïâï -õïð-ð5ð <ðIðYðpð tð~ðƒð‰ðšð­ðÁðÒðåðõðññ 0ñ<ñ Lñ Xñ fñsñzñ€ñ%†ñ!¬ñ ÎñÛñîñ&ò-ò AòOò^òqò ƒò‘ò ò °ò½ò ÌòÙò éòöòó ó#ó2óJóeó‚ó”ó£ó -¼ó -Çó-Òó ô ô ô!ô)ô 1ô>ô -Fô Qô^ôqô„ôô¥ô¸ôÌô ßôíôõ õõ *õ4õ;õ:Yõ?”õ8Ôõ öö"ö4ö EöOö -^öiöoö -…ö ö žö ªö -·ö Âö Îö -Øö ãöïö øö÷÷ (÷>6÷ u÷–÷¦÷¸÷Ë÷Û÷í÷ü÷ø.ø>ø Nø[ø jøwø|ø”ø§øÀøÔøêø úøùù,ùGù ]ù -kùvù -Žù™ù ±ù¿ù Õùâù ÷ùúú/ú >ú Lú -Xúcú*túŸú¨ú!ºúÜú.óú"û>û#Gû"kûŽû«û&Êûñû üü'ü,0ü#]üüˆü —ü¥ü¸ü'Òüúü'ý?ý\ýrýŽýF¨ýTïýDþKþ Qþ^þtþ ‡þ¨þ ¿þÉþ -àþ ëþùþ ÿ7ÿFÿUÿgÿyÿ ÿ‹ÿ”ÿ ÿ©ÿ¿ÿ(Èÿ$ñÿ0=M6‹1Â<ô?1Aq7³9ëc%0‰9ºBô=7fu>ÜCJ_gª . @Nchz Š ”  ² ¿ ÍÛï.BUhz‘¡µÑì 8Sj~’ ¦´ -Ç Òà å -ò ý %8 -ITp x„” ¤²Êæ  (/ X ^ e  m z ‚ ˆ  -Ž O™ é  -û ” -› -¬ -Å -Ü - -ò - ý -    .* Y l   -Ž  ™  §  ³ À Å  Ô á  ù    $ 8 O u^ Ô Ìæ ų cy Ýzêekrsæÿ1@IYn&'¦ ÎBÚ  '1 @ NZ _iov{ š©»ÁÙêî%:IRh  -‰” §®¶ » ÈÔï -&;RHZ -£ ®¸È -ÐHÛ!$BF‰1œÎáæ ëøÿ -* / ;`G™¨CB1†0¸é ï ü  - -&1HXiˆ› ³(Á -ê -õH -I T -al sŽ ªÀÕ ä ñÿ  %-KR Zh€ #=Sos … “  K®3ú6.et"Š ­·Ïã ò$ü!< Q _ €(¡+Ê)ö* !Km/¯¶Å*Ö'/Wgw€ -’­ÃÓåôý %8 Op‹œ¥´Íà ÷ 3  D N ^ x Œ !¤ Æ â ô  û !!0!E!d!}!-Œ!º"Ã"Ó"æ"ê" ###$# 4#@#3F#z#‹#£#³# Ë# -Ø# ã# ï#ü#$9$Y$r$†$—$ ¬$º$Ñ$ Ø$ä$ù$ %%@$%e%-l%š% ¬%¹% ¾% Ì% Ø%å%& -&& & '&3&J&i&ˆ&œ& °& º& Æ&Ò& é&÷&' ('4' -J'U'j' €'Ž' ¦'²' -È'Ó'è'ñ'ù' ((("(*(<(T( j(x((¤( -¬(#·(Û(ô( )#)))1)N)+k)—)Ÿ) ¦) ´) -À) Ë) Ø)æ)û)*(*A* V*c* r*€*“*®*"Å*è*ñ*+ '+5+;+@+F+$\++“+§+¶+ Å+Ñ+ Ù+ ç+ó+, , ,%, -=, H, -U,`, p,z,‰, ™, £,­,Æ,Õ,ì,- -<-N-U-^- q-}--ª-¯- -µ- À-Ì-Þ-ò-. . ".,.5. F. S. ].i.†.•.§. ¹. -Æ. Ñ.Û. ö. // )/ 5/ A/,M/z/!/¯/Ã/Ú/)÷/ !0.0 F0 T0`0e0t0{0 Œ0 ˜0¦0B¹0Aü0>1\1q1 ƒ11”1£1 ³1À1Ò1ç1ï1„÷1|2‹22¥2®2 -³2¾2 Ò2à2÷2 33(3H3"g3!Š3!¬3Î3æ3ÿ3 4 !4 +454E4T4 \4j4Vr4+É4 õ4(ÿ4(5".5Q5 g5 s55™5%±5 -×5 â5ì5ô566 -'626 A6O6 X6 f6t6z66 ¢6 ®6 º6È6&â6, 7 67C7H7 -X7 -c7n7‹7©7È7à7ó748:8L8 -R8]8e8 -u8 €88œ8 ¥8³8»8Â8 ß8ë8 9! 9.9 =9K9 a9m9~9™9 ©9³9Ä9 Ö9ã9ê9?ò92:A:I:]:m:Š:¡§:4I;~;‡;-; ½<Ç<Ð< -à< ë<#õ<=-,= Z=f={= =š=¢=¹=Â= -Ë= Ö=â=ö= -> > >)>1>7>M> -e> -p>{>‘> -¡> ¬> ¶>Ä>È>â> ó> ý>!?)? -?;?O? ^? k?x?“?š? ¢?°?Å? Û?ç? -ú?@@ *@8@ M@Y@ -l@w@‰@¥@Â@Ç@ Í@!Ú@ü@!A#c›t¢›tœ`Œœ‰íœw÷0ý.ž4ž;žMžbž sžž6ƒžoºž*Ÿ,Ÿ3Ÿ4;Ÿ#pŸÈ”ŸG] X¥ Uþ OT¡¤¡»¡Ä¡Í¡Õ¡ -Þ¡ é¡ õ¡ÿ¡ ¢¢¢#-¢Q¢ Y¢g¢p¢v¢…¢Œ¢•¢¨¢»¢Ä¢Ö¢ è¢ò¢ ÷¢ ££ *£4£<£B£ E£O£b£}£ œ£½£ ãУף࣠ÿ£ ¤ ¤¤/¤ 2¤ >¤ H¤V¤j¤q¤ -x¤ƒ¤ ‹¤˜¤ ¤À¤ ɤפݤì¤ ¥ ¥&¥ -.¥9¥K¥ [¥i¥x¥ ˆ¥–¥ ª¥ ¸¥Æ¥ Ö¥ã¥ö¥ ¦¦.¦ ?¦ K¦W¦f¦o¦€¦ š¦ ¤¦ -±¦¼¦¦Ѧí¦ü¦§(§9§R§c§u§ …§ ¦§ °§º§ §̧ Ò§Þ§ó§¨ ¨¨&¨-¨3¨:¨ M¨Z¨]¨ f¨ p¨ -z¨ -…¨¨©¨²¨ º¨Ĩ ʨרݨã¨é¨ð¨÷¨ÿ¨© © &©3©M© U©b©i©p©x©’©¡© -Á©Ì©ß© î© ú©ªªª,ª ;ª HªTª Wªaªfªlªªšª£ª«ª¾ªÔª ôª «««%«+«2« -:« E«R« b« p« -~« ‰« —« ¤« ®« »«È« Ù«ã« ë«õ«ü« -¬ ¬ ¬"¬+¬ :¬ G¬S¬\¬ c¬q¬¬ˆ¬ ‘¬ ž¬ ¬¬¹¬ ¬ ЬÞ¬ í¬ù¬ ­­­­"­ 1­ >­ J­W­l­ ­Œ­’­›­¬­¿­Ñ­(ã­ ®®®3®K®]®4w®1¬®/Þ®¯$¯4¯T¯ \¯i¯o¯ƒ¯#”¯ ¸¯Ù¯ø¯ÿ¯°"°B° -J°U°g°x°°ˆ°ž° ¯°»°°Ê°Ú°ì°± -± -%± -0±;± A±O±U±e±k±r± -’±±®±´± -½±ȱα×±ܱñ±²² ²+²:²>²D²G²V²Z² -`²k²r²w²5{²±² òͲݲâ²é² ñ²ÿ²!³ 6³ W³x³ -˜³ £³¯³¶³º³³dzͳÓ³ Ú³ ä³î³ô³û³ ´´.#´R´yo´éµ(¶_)¶F‰¶7жB·9K·L…·`Ò·<3¸hp¸?Ù¸1¹=K¹R‰¹Iܹ4&º9[º.•º=ĺ4»17» i»v» }» ‰» -–» -¡» ¬»¸»É» -Ø»ã»ó» ¼¼¼"¼<¼Y¼o¼-u¼£¼¸¼ʼÓ¼ܼ ø¼½ -½ ½ "½ ,½ -9½ D½ Q½ [½ e½ -q½ |½ -‰½ -”½Ÿ½ -¤½¯½F¾½{¾(¾.ª¾&Ù¾¿ -¿¿/¿6¿ V¿c¿y¿€¿˜¿ ¬¿ ¹¿Æ¿ß¿ò¿ÀÀ 2À?À RÀ _ÀlÀÀ•À«À»ÀËÀÞÀ$÷À0ÁMÁ`ÁvÁÁ—Á­ÁÆÁÙÁìÁÿÁÂ+Â>ÂQÂoˆ› ¢Â ¯Â¹ÂÉÂÐÂéÂýÂà à Ã%Ã7Ã!>Ä!`ĂĒĘĨÄw±Ä -)Å4ÅGÅZÅ mÅ wÅ „őŘūŠÂÅÏÅ8âÅ>ÆZÆ-tÆ ¢Æ ¯Æ ¼ÆÆÆÍÆ êÆ÷Æ -Ç #Ç 0Ç=ÇMÇ]ÇmÇ …Ç“Ç šÇ¤Ç·ÇËÇ'ÝÇ!È'È.È 5ÈBÈ IÈSÈmÈ ~È‹È«È'»ÈãÈùÈ É -ÉÉ !É/É?É OÉ\É4mɢɩɹÉÉÉ ÜÉæÉ íÉúÉ -ÊÊ$Ê+Ê 2Êr?Ê²Ê ·ÊÅÊ ÖÊ -äÊïÊËË,Ë3Ë9CË:}ËB¸Ë<ûË/8ÌThÌ"½ÌàÌ*óÌÍ01Í%bÍ*ˆÍ³ÍÌÍ åÍòÍ Î Î$Î+Î;ÎNÎ^Ît·ΚζÎÌÎâÎõÎÏ-Ï 4ÏAÏQÏjÏ ƒÏϬÏÈÏÜÏìÏ üÏÐ ÐÐ.ÐAÐ -EÐPÐ WÐdÐwÐ ŠÐ—Ð'­Ð6ÕÐ- Ñ':Ñ-bÑ,Ñ$½ÑâÑÒÒ80Ò$iÒŽÒ!§ÒFÉÒ:Ó!KÓ'mÓ/•Ó/ÅÓ!õÓÔ"'Ô JÔ WÔaÔzÔÔ ”ÔžÔ±ÔÇÔ×Ô -èÔóÔ úÔÕ Õ'Õ:ÕNÕ8bÕ ›Õ¨Õ ¸Õ ÂÕÐÕäÕõÕ Ö #Ö5-ÖcÖsÖ ƒÖÖ Ö °Ö ºÖÈÖÏÖ -àÖëÖ×$× 8×E×X×h××•×°× Ã×Ð×+ã×ØØ1Ø @ØMØTØ[ØbØäØ ëØõØ üØ Ù"ÙAÙ`Ù wÙ,„Ù,±ÙÞÙýÙÚ Ú!Ú22Ú eÚoÚ(‰Ú²ÚÌÚ"ëÚ"Û(1Û/ZÛ"ŠÛ*­Û ØÛâÛóÛ -ÜÜ0Ü@ÜSÜ$rܗܪÜÉÜßÜõÜ Ý#!ÝEÝLÝbÝ ~Ý ‹Ý ˜Ý¥Ý ÁÝ ËÝ -ØÝãÝ÷ÝÞÞ'Þ :ÞGÞWÞ^ÞrÞ †Þ“Þ$šÞ ¿ÞÉÞÙÞ"éÞ ß ß ß 'ß1ßBßSßdßuß†ß—ß¨ß¼ß Òß Üß éßóßàà à$à+àJà iàvà‰à(àÆà Úà çàôà á á +á 5á Bá Oá \á iá váƒá –á £á °á½áÙáòáâ â%â ?âIâ2PâƒâŠâ ‘âžâ ¥â¯â¿âÆâ Íâ×âêâýâã ã$ã 8ãEãUãkã rã|ã‹ã’ã™ã3¹ã9íã9'ä aä oäyä Šä—ä žä«ä¼äÃä Ùä çä ñäþä å å +å8å Hå Uåbå så€å“å-¦åÔå íå úå æ æ !æ .æ ;æHæ^æqæ -…æ ææ®æµæÈæÛæîæçç 'ç4çGçZçsç Œç ™ç¦ç ¹çÆç Ýçêç ýç -è è *è7è Mè Zè gè tèè%”è -ºèÅèØèòè-é3éIé'Pé'xé$ é!Åé*çéê'ê.ê>ê0Eêvêê–êªêºêÐê&ðêë(4ë]ëzë ‘ë²ë>ÌëG ìSìZì -aìlì|ì“ì²ì ÅìÒì åìïì$ÿì$$íIí^ísíƒí “í¡í¶íÉíÜíòí î"î"3îVî?]îJîAèî<*ïJgïJ²ïJýïAHðAŠðpÌð<=ñAzñJ¼ñBòrJòH½òJóMQórŸó ô ô -ô :ô GôTô[ô uô ‚ôôŸô ¯ô¼ôÒôâôøô õõ1õHõ[õoõõõŸõ¶õÍõãõö - ö$ö9öOöeö{ö‘ö §ö´ö Äö ÑöÞö åö òö ÿö ÷÷/÷@÷ Q÷^÷ t÷~÷ Ž÷ ›÷¨÷¸÷Ê÷à÷ ö÷ø$øAø Hø Rø\ølø ø‰ø øPøîøùù ™ù£ù¶ùÊù Üù êù ÷ùú ú*ú Gú Túaú qú~ú -ú šú§ú ¬ú ¸úÄú Öú âúîúûû'ûZ7û’û¸§û¹`üný ‰ýh•ýþýþW þcþvþþ –þ¤þµþ¼þÌþâþòþÿ0ÿ<Cÿ €ÿŠÿ ‘ÿ žÿ «ÿ¸ÿ¿ÿÆÿ Íÿ×ÿÞÿ îÿ ûÿ  8HLf€š ©"·Ú ïü - %, <Ie ~‹›%¢%ÈîEõ ; IScj6q¨BÁ ?\ t~… -™¤ ¸ ÆÔÛëcû_>í8,-e“šª º Ç Ôá ÷3F Y$f ‹ ˜?¥ å ò ü  # 0 =J_ r Œ -œ -§²Ã ÊÔ í÷ þ ] |‰£¿!Õ÷þ     ( ?5 -u 3£  × ä &õ  -# - 6 - C -M -T -j - | -ˆ -0˜ -,É -9ö -90 9j 9¤ Þ þ 3 H  O  \ *i  ” ¡ $½  â ï  ÿ   , ? R b u …  Œ ˜ ® ¾ Ò ð   )?Oc ™§ ®ºÐàô *8 ?Kaq…£ »ÉÒ Ù æ ðý " /<L9S š´Ç Ý ê÷5Nj†œ³Íäÿ & 9 C?M!”¶ ÌÖ Ú èò#3 : GTn¬Å Üæíô - DQ dq„ ›¨ »È Ûè û -  -+6 = G -Q\r‰Ÿ¶ ÐÚ"ê -@ Zgn„'š ÂÌÐ× è õ "5Oi €  š §´Î"ç -*DKR Yc!y› ±¾Î Þë ò ÿ & 9FYi |‰ œ ©¶ É Öã ù,BX ku| -›¬Æ Í× Þëþ% 9 F S` s € š¶ÆÖ æ ó  ) 9Fb r 'Œ´ Äåõ', T^ w „Ž ’ž¥ µ ¿Ì?ß?_|Œ œª ± ¾ ËØë þ  ‚  ˜ ¥  ¼ É Ù  à í  !!*!>!O!e!!!¹!Õ!ñ!" " -:" E" Q"]"m"}" „"‘"S˜".ì" -#(&#O#!V#x#‹#›#¬#¿#!Û#ý# -$$$&$<$L$_$s$„$ ‹$˜$®$µ$Ï$ï$%%(%'A%'i%‘%¤% «%¸%È%Ù%ò% &'&C&W&-g&•&¥& ¬&¹&À&Ð& ã& ð&ú& ' -'' ' 9'F'\'c' v'€'' ©' ¶'Ã' Ü' é' ó'( (( !(<+( h(u( |(‰(™(²(¥Ë(0q)¢)©)°) ³*½*Ä*Ó* Ú*#ç* +0%+ V+`+q+ +‹+’+ ¥+¯+ ¶+Ã+Ó+ã+ó+ ú+ ,,,,5, T, a,n,, ”, ¡,®,¾,Â,Ü, -í,ø,!- "-/-B-Y-j-{-Œ-¦- ­- ·-Ä-×- î-û- .... E.R. e.r. ….’.¥.¾.Ý. ä. î.û.///C/c/ƒ/ –/=¤/Nâ/<10;n0Aª0ì0*ó0;1Z1q1 „1‘1 ˜1¢1$©1$Î1 ó1 2 2 2'2.2K2h2A2 Ã2 Ð2Ý2ý23 3 -3:3K3g3z303¾3×3ç3÷3!4)4?4 O4 \4 i4 v4 ƒ4 4š4­4´4Ä4 à4ê4ý4 55-5F5Y5y5Œ5¢5$»5à5$ó5 6%686K6^6q6Š66°6+Ð6ü67 "7 /7 <7I7,\7‰7Ÿ7¦7­7 Í76Ú7808 C8M8T8o8 Š8 —8 ¤8±8Ä8 ×8ä8ú8 -99 -9)9 :9 -H9S9d9 ~9 ‹9 ˜9 ¥9¯9¶9 Ó9à9 ÿ9" :/: I:V:i:"†:©:Æ:×:ë:;;-;,D;!q;“;¦;!Á;ã; ö;<)<;F<‚<–<©<¿< Û< è<ò<= = "= /= <=I= \= i=v=…=”=¤=º= Á=‰Î=NX>§>·>¾>Å>Õ>Ü> ã>ï>??)?G? _?m? t?€?–?¦?º?Ø? ð?þ? @@'@7@K@i@ @@ –@¢@¸@È@Ü@ú@ A A'A.ADA TAaA}A“A®AÄAÚA ðAúAB&BFQFjF$zFŸF¸FÔFíFGG6GIGYGiG|GG¨G“»G*OHTzHîÏHB¾I*J,J'®J–ÖJ–mK-L?2L3rL6¦L$ÝLzMŸ}MãO0P-2P¨`P QQQ $Q.Q=QLQ[Q bQ oQ|QƒQ’Q¡Q ·QÄQÔQ ÛQ?åQ%R8RIR]RqR…RœR°RÁRØRøR S#S7S(HSqSˆS™S°SÃSÖS$ïST1TBTVT!jTŒT¦T½TÓT æT óT -U U !U.U5UWTWdW{W•W¥W¼WÖWÝW -ñWüWXX 5X ?X LXYXiXyX‰XX¡X µX ÂX ÏX ÜX éXöXY"Y>YNYmYtY YšY -­Y -¸YÃYÔYçY îY ûYZ'Z .Z;Z KZXZ hZuZ9~Z.¸Z.çZ.[.E[0t[G¥[jí[4X\\¸£\\]Úu]åP^š6_fÑ_8`3MaÙa[bxtblíbZcacqc(xc3¡c³Õc*‰d*´d'ßd*e'2eAZejœeEf*Mf3xf(¬f9Õg9h*IhžthâiéöiÂàj˜£k˜–L–]– n–|–– -ž– -©– -´–¿–Ó– -ç– -ò– -ý–— — -*—5—F—Z— -n—y— -—›—£— -«—¶—Ç—Ø—é—ú—˜.˜ -?˜ J˜X˜i˜z˜‹˜4œ˜ -ј -ܘç˜ø˜ ™)™4I™+~™.ª™Ù™ í™û™ -šš -.š9šSš%gššªš -ÊšÕšéš.ýš -,› -7›B›V› -g› -r›}›”› -®›¹› -Á›Ì›à›ñ›œœ -œ -;œ -Fœ Qœ -_œjœ -{œ -†œ ‘œ -²œ½œ -Îœ Ùœ çœ -õœ - - !8 Q _ -mx‹ -”Ÿ§º -ÃÎÞâé>í,ž?ž -FžQžXž_ž -fžqž‹ž§žÄžßžûžŸ ŸŸ Ÿ!Ÿ(Ÿ/Ÿ6Ÿ =Ÿ GŸQŸUŸ YŸcŸuŸ(”Ÿ½ŸpÊÆïeò -õ>|p“vŽk¹Ðxƒ`ôÝã_& ð´3Üý¿Ï¬Ôȹ8°`ý„ø>ÑŽ|’½šQKõFû €©é$Þ F«J; ;]£¯º›î ?c¹{U=1±óœ•Y÷9 ¸<AJyIšª2í{7…~([G€Óo*²#jì¸ðûÍÛèàºh ¹«¤ÿ;1vʳ†a¬žÀ´+¼‰˜kYXüiM)ùs)-½³m%™ö¾çý…» Êg2+ ©däô€ê¨Ô·bcwåæbÏÒ­VO`•©· lãœåÖEòÖ£õ \ÚÓ0œ o×jܤ–ïß([󓽊¯åä6FYã3PFá6s§o"eWˆ3õ)ö!^Œ¼˜<oëØß -Ð0/s ("5,Ndà }Ç_bÂTþßÜŽÕBó{ôÁ /*' Øä#wà ½+IÀBC´Œ¨t~?I®ÚY+á÷Md{adHc A nBüqºØR—‚9ûùq®¬;¾Bʃüàã! C»Ÿ£Ðƒ1Ȥʜ¬qûºýß·ëP†Íqê1E =;i9rŽ´TÜC…Þõ2Œ‚én-”N}ÃKË'°Sçâpˆi¤^Ò“§´ë…îrsÕžç ¸ý? ‹Ž›ˆ­zjÚw«Ÿ4 caš¨ñÏî,©8ÿ=AEeÁ¦?kxï{¤ÌÌÿcw Ì òõöèxMª!I ]‹±®ù„Åx‡›~ • "_6 Q%'" š‘˜ú"C/) æèh›ñ³ÆÌRT]¹PÙ Z$Ì»µb ëª" Ë ŒS¢ÛSÖ(¹ -ÛÕ‡è@’ý‰”þµ-ÜZ„†ÿ OÐcká »‘Š0î•Ö²É¯UÈÑ/ ®ŠCF ¼Ñø§¯}6”tkSºž;‡Çõ- uÉ/: }‹7 ¼[f‚&>j}À™¾O_œmñ—€‹Õ¶xŽ– ã Ë-UCG4LP­Ð\.‰ÿ^ &…Ç5Aä¿÷GÖÚ„™Â„`-*  -¯§ÁÔ¿Ré8ðË$ ¨he -êÁï5 Í%VaíjxJ -(# $þþ…â’ –ã©ñ¤VÄ'¡ 4K8k–¹>å¨9ø`i!@ò(˜$2 wfÒ‹Œ4 î+2× Ëâ·qÎgÙ0:[ùBÌR¸Š N; üzÙ¸²©Ñ oê÷uÎ浪¥d:£ˆÊÓ?4›µ|3Ê ªÛ@IèFÞ4¶:{|,x¤ mÅó‘Pe­ ½6-O™È*Ö×çÒ(ÎÏV{!#—)êÚ³ñIð‹e›Ù@#¬Õ?,Œ¨à‡OŒàÄz¦; ‘ˆNÓ@2°Ù·­Jä.ܵނӇt­¯+ƼIŸ<Daæ ñu]ŸÛyéx.ð3ðD%/h–»GPŸD¬×ƒ9~¡ßópt9z™6´$% º-K&Þ2ÏHt–>ƒ ÃXù»1há#.oÇ5ñÐzúŽNõådü#†p7)¾Ñ÷#ËNÃçÎ'¢ V}û8„‰>Ñ–ÀG×߇‹Nÿg¾:ðv—ÅØÍBÜmŠ“& -G–né•,”šû NÔö¿v7^Ýv˜dÿå—r˜fu¿¥ª¨.íJÍFÄfU¹ÄÇ×C\¶Ÿ¸Ž…[¶`„lÇ0ò.Î=VuÆ0µSéA5·²È´n% \ë)k,?aó¥Z³ÞzK°~6*&AšD’OÔyûð¥¨ößÇŸí[z5ä%ä>3ÂWÆ]<ØÖ¢¶/Äg‘Kö‡ÃL¨ s3nˆ<R¢€2J V>P¾â‘^/80UIØÚÆ ž7Qûùô57E°l( ‚$ï51 o</ sNï׫aÝ:ƉrFnÈ“ýôXâ›îŠæJ¡hhp] «^Me:\ê{j_ÓÄé¢CŸa‚÷<bœ¼tMræ[âHO\|’ÿöDQ ;hÝE“¡ZV+æIì Ù&oçņ§ %±!7Fó! º•fB£“¥„µÙz¯Wê…ðþ}EÝ]QŒÃÄ+ž°Âi[ãDZɇ®žÏK W¶¢šG‘éÑ(tTì÷¡dDeTÖY]jêÝT-Z6@…§:8 :} ¯†LÞÄvÕTl -«,;ãAÓ1À•² nE` = ÅS)±bp,—ú5ÏÁ¤á?Jq=gæY -«$˜¥Ée, ½A0 l3³Šy>|LÓƾ4’“S'Hn&Lu~ƒ¿ì+½¢Uþ‰<禀ӊ廙 ÑSH ÕÃË$uuˆø< ”¾´·œ3¦ ‰ÔDöÈÛKú ”©Å. ºöqHMp2@† òH -)ÑøåÂâ£ØD #.i­ƒË4.øÔï`Dl¬Ì"Á¬ U7ÁØnE^zêÙÒ†ç ½§ž3 Õí8t ÅO*Õrþå§Ô!U|'ÝM*ÒR·°ÿ"y¿Gò@ ª¶~  ÇÛ9Þ€Ú¼†»¸[H«_XÉbéÀvq Îœ£àëyòß©ÒK–0W‚ˆâ^ÞÅrá =ÒÒWh¦9=úŽ,äl’M‰%wá¶B\³²¯B·Ï*cR—q×üüI?QiÆAp÷¦€cÌ Z5w6™|mX!"ÏVÃPXÜè¿a@®™Y4ôL±ÝÀC ˜šU°{€rº‘¦±ÉÅî îoY &¢Ë§ó¿my¥EçìJà¼Ð³­¾Â^ø”áÜLs¸bB à°YíÉ÷ O¡äŸì›¹1 ³ì> У.Á|®fk›™l¶ì±J~¬ÀsþÈKM´Qôù - í‹_Ø9‡µÎb#½s!H?õ'²X®/²}F~ÊúLíTG ™ày®m”iRwg¥=GfŠ¤S’L lè$×]0ÍÁT¦7 í¥•« šÎ¦)W£i±61ñgfEîvHÚúˆX_©óèjA 8ôëX‰vÊ»ÛÍåZ‹Í¡þì%ëC1ÌÔmcQ8_—Ð Q Éyý\'„úÃ4*’µ7(< ˜WÀ9\² œ2žâj:ÚLù k¡ètWß“*ýÍ`ë—døu ­RÖ¸¼ÈD ü‚'g݃mZw æÙúøfôá‚ñï&ãZP+gùÂ=¢ÉÎòrŒ"”x@žÄ‘¡»ûª•Ûü -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. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -i, --no-interface Run without a user interface. - -s, --no-splash Do not show the startup window. - -v, --version Output version information. -%d Layers%d dpi%d dpi, %s%d layers%d minutes%d seconds%d x %d dpi%d x %d dpi, %s%d x %d pixels%g x %g %s%s Channel Copy%s Channel to Selection%s Message%s copy%s mask%s%sClick: extend selection%s%sDrag: move & compress(%0.3f, %0.3f, %0.3f)(None)(This console window will close in ten seconds) -(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:Author:AutoAuto _Follow Active ImageAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersAvailable Types:BG color fillB_rightness-Contrast...B_uffersBackgroundBackground colorBackground color set to:Background: %d, %d, %dBackward (corrective)Base filled area on all visible layersBase selection on all visible layersBehindBevelBi-linearBlack & whiteBlack: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: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': Bytes = 0.Fatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Height = 0.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in brush file '%s': Width = 0.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather ChannelFeather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile existsFile is truncatedFill ChannelFill Opacity:Fill Type %sFill similar colorsFill transparent areasFill whole selectionFill with BG ColorFill with B_G ColorFill with FG ColorFill with P_atternFill with PatternFill with TransparencyFill with WhiteFill with _FG ColorFill with _background colorFill with a color gradientFill with a color or patternFilledFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit image in windowFit image to windowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip ChannelFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlip...Flipping...Float SelectionFloat selectionFloated LayerFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFloyd-Steinberg (normal)Floyd-Steinberg (reduced color bleeding)FocusFolderFoldersFont FoldersFont UIFont:FontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.Force auto-hinterForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dForward (traditional)Fr_om PathFree SelectFree selectFreehandFrom _ThemeFrom _windowing system (currently %d x %d dpi)From left to rightFrom right to leftFrom selectionFrom themeFu_zzy SelectFullscr_eenFuzzy SelectGIMPGIMP ExtensionGIMP MessageGIMP Performance TuningGIMP Plug-InGIMP StartupGIMP Text EditorGIMP Tip of the DayGIMP User InstallationGIMP XCF imageGIMP could not initialize the graphical user interface. -Make sure a proper setup for your display environment exists.GIMP help browserGIMP is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Generate optimum paletteGet Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient file '%s' is corrupt: Segments do not span the range 0-1.Gradient:GradientsGradients MenuGrain extractGrain mergeGrayGrayscaleGreenGreen:GridGrid line spacingGrow ChannelGrow SelectionGrow selection byGuideGuide and Grid SnappingGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)HTML notation:H_eight:H_elp browser to use:Handle position: %0.6fHard edgeHard lightHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp browser doesn't startHelp browser not foundHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:HintingHinting alters the font outline to produce a crisp bitmap at small sizesHistogra_mHistogramHistogram ScaleHistoryHorizontalHorizontal offset of the first grid line; this may be a negative number.Horizontal spacing of grid lines.How many recently opened image filenames to keep on the File menu.HueHue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...I_nterpolation:I_nterval:IconIcon & descIcon & textIf available, hints from the font are used but you may prefer to always use the automatic hinterIf enabled, the move tool changes the active layer or path when a layer or path is being picked. This used to be the default behaviour in older versions.If you don't save the image, changes from the last %s will be lost.If you quit GIMP now, these changes will be lost.Illegal variable name in environment file %s: %sImageImage + GridImage EditorImage InformationImage MenuImage SizeImage Statusbar FormatImage TemplatesImage ThumbnailsImage Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage doesn't contain any visible layersImage fileImage maskImage resolution is out of bounds, using the default resolution instead.Image sizeImage sourceImage typeImagesImages MenuImport OptionsImport PaletteImport PathsImport Paths from SVGImport a New PaletteImport paletteImport pathsImported PathIn_kIn_vertIn_vert MaskIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionIndexed color layers are always scaled without interpolation. The chosen interpolation type will affect channels and masks only.Info WindowInitial zoom _ratio:Initialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInput LevelsInsert AnchorInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntelligent _ScissorsIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:IntersectIntersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert ChannelInvert SelectionInvert does not operate on indexed layers.Invert selectionIs this what you want to do?It seems you have used GIMP 2.0 before.Item propertiesItem visibilityJustify:Keep TransparencyKeep aboveKeep aspect %sKeep aspect ratio %sKeep height %sKeep transparencyKeep width %sKey DownKey Down (Alt)Key Down (Control + Alt)Key Down (Control)Key Down (Shift + Alt)Key Down (Shift + Control + Alt)Key Down (Shift + Control)Key Down (Shift)Key LeftKey Left (Alt)Key Left (Control + Alt)Key Left (Control)Key Left (Shift + Alt)Key Left (Shift + Control + Alt)Key Left (Shift + Control)Key Left (Shift)Key RightKey Right (Alt)Key Right (Control + Alt)Key Right (Control)Key Right (Shift + Alt)Key Right (Shift + Control + Alt)Key Right (Shift + Control)Key Right (Shift)Key UpKey Up (Alt)Key Up (Control + Alt)Key Up (Control)Key Up (Shift + Alt)Key Up (Shift + Control + Alt)Key Up (Shift + Control)Key Up (Shift)Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump of your configuration so it can. be remembered for the next session. You may edit this file if you wish, but it is much easier to define the keys from within The GIMP. Deleting this file will restore the default shortcuts.KeyboardKeyboard EventsKeyboard ShortcutsLTRL_eft Endpoint's Color...LandscapeLargeLarge (256x256)Larger PreviewsLast Error:LayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer SizeLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image SizeLayer to _BottomLayer to _Image SizeLayer to _TopLayer's _alpha channelLayersLayers MenuLayers Merge OptionsLeft Endpoint ColorLeft justifiedLength:Let GIMP try to restore your last saved session on each startup.LevelsLevels for indexed layers cannot be adjusted.Light check colorLighten onlyLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLinked itemLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad curves settings from fileLoad levels settings from fileLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to BottomLower Channel to _BottomLower LayerLower Layer to BottomLower PathLower Path to BottomLower Path to _BottomLower channelLower channel to bottomLower layerLower layer to bottomLower pathLower path to bottomM_agnifyM_asterM_ove to Screen...Ma_pMagentaMagenta:MagnifyMake _transparentManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth:Maximum _filesize for thumbnailing:Maximum _new image size:Maximum color differenceMaximum undo _memory:Mean:MeasureMeasure Distances and AnglesMeasure distances and anglesMeasure the rulers and enter their lengths:Median:MediumMedium dashesMerge Do_wnMerge DownMerge LayersMerge PaletteMerge Visible LayersMerge Visible PathsMerge Visible _Layers...Merge _Visible Layers...Merge _Visible PathsMerge layersMerge palettesMerge vectorsMessage proceduresMessage repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMigrate User SettingsMinimal number of _undo levels:MiscellaneousMiterModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse CursorsMouse WheelMouse Wheel EventsMoveMove AnchorsMove ChannelMove Floating SelectionMove GuideMove Guide: Move LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove ToolMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove the selected filter downMove the selected filter upMove to Screen...Move: MultiplyN_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel ColorNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew channel with last valuesNew channel...New color from BGNew color from FGNew gradientNew importNew layerNew layer with last valuesNew layer...New paletteNew path with last valuesNew path...New patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No longer availableNo paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)NormalNormal (128x128)Normal dotsNormal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of _processors to use:Number of grid linesNumber of layers:O_ther...OffsetOffset ChannelOffset DrawableOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:OpenOpen ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen image dialogOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpen the selected entryOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X: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 MenuParsing '%s' -PastePaste Buffer _IntoPaste Buffer as _NewPaste Pat_hPaste _IntoPaste as _NewPaste the selected bufferPaste the selected buffer as new imagePaste the selected buffer into the selectionPasted LayerPathPath AttributesPath Name:Path _ToolPath cannot be lowered more.Path cannot be raised higher.Path is already on the bottom.Path is already on top.Path to Sele_ctionPath to SelectionPath to Selection -%s Add -%s Subtract -%s IntersectPath to selectionPathsPaths MenuPatternPattern FoldersPattern UIPattern fillPattern sourcePatternsPatterns MenuPe_ncilPencilPercentage of width of brushPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick a layer or guidePick a pathPick black pointPick colors from the imagePick gray pointPick onlyPick white pointPixel dimensions:Pixel valuesPixelsPixels:Please wait while your personal GIMP folder is being created...Please wait...Plug-InPlug-In EnvironmentPlug-In FoldersPlug-In could not open imagePlug-In could not save imagePlug-In crashed: "%s" -(%s) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPositionedPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsPrint SizePrint size: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 PathRemove _EntryRemove dangling entriesRemove floating selectionRemove 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: - -%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)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 toolSubtractSubtract 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. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The batch interpreter '%s' is not available, batch mode disabled.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The layer you selected is a text layer but it has been modified using other tools. Editing the layer with the text tool will discard these modifications. - -You can edit the layer or create a new text layer from its text attributes.The 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.YYellowYellow:You are trying to create an image with a size of %s.You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Your window setup will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom image when window size changesZoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes_Brushes, Patterns & Gradients_Bucket Fill_Buffer_By Color_By Color Select_C_Cap style:_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context_Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fill with:_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Guides_Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Join style:_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Levels..._Light Check Color_Light Effects_Lightness:_Line Style_Linear_Linked_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Maximum number of colors:_Measure_Medium_Merge Palettes..._Merge imported paths_Migrate GIMP 2.0 user settings_Misc. Stuff_Miter limit:_Mode_Module Manager_Move_Name:_Nature_New Brush_New Channel_New Channel..._New Entry..._New Gradient_New Layer_New Layer..._New Palette_New Path_New Path..._New Pattern_New Template..._New View_New..._Next tip_Noise_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Preview Size_Previous tip_Print Size..._Properties_Quick Mask Active_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Reassign shortcut_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Remove unused colors from final palette_Render_Replace_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Order & Visibility_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Reset Saved Window Positions to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Scale imported paths to fit image_Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Show Image Selection_Show in Toolbox_Sinusoidal_Small_Smudge_Snap distance:_Stroke Selection_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tool_Tools_Transfer layer's alpha channel_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Visible_Web_Web browser to use:_White (full opacity)_White Balance_Width:_Wrap around_X resolution:_X:_Xtns_Y_Y resolution:_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersminuten/apercentpicapicaspixelpixelspixels/%apixels/%spointpointssecondtips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2005-01-30 14:37+0100 -Last-Translator: Yuheng Xie -Language-Team: zh_CN -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Translator: Yuheng Xie - -无效选项“%s†- -用法:%s [option ... ] [file ... ] - - --batch-interpreter - 执行批处ç†å‘½ä»¤çš„过程。 - --debug-handlers å¯ç”¨éžè‡´å‘½è°ƒè¯•ä¿¡å·å¤„ç†ç¨‹åºã€‚ - --display 使用指定的 X 显示。 - --dump-gimprc 输出默认设置的 gimprc 文件。 - --no-cpu-accel ä¸ä½¿ç”¨ç‰¹å®š CPU 加速。 - --no-shm ä¸åœ¨ GIMP å’Œæ’件之间使用共享内存。 - --pdb-compat-mode - 过程数æ®åº“兼容模å¼ã€‚ - --session 使用别的 sessionrc 文件。 - --stack-trace-mode - 致命信å·çš„调试模å¼ã€‚ - --system-gimprc 使用别的系统 gimprc 文件。 - --verbose 显示å¯åŠ¨ä¿¡æ¯ã€‚ - -b, --batch 以批处ç†æ¨¡å¼æ‰§è¡Œå‘½ä»¤ã€‚ - -c, --console-messages 在控制å°è€Œä¸æ˜¯å¯¹è¯æ¡†ä¸­æ˜¾ç¤ºè­¦å‘Šä¿¡æ¯ã€‚ - -d, --no-data ä¸åŠ è½½ç”»ç¬”ã€æ¸å˜ã€è‰²æ¿ã€å›¾æ¡ˆã€‚ - -f, --no-fonts ä¸åŠ è½½ä»»ä½•å­—体。 - -g, --gimprc 使用别的 gimprc 文件。 - -h, --help 输出此帮助。 - -i, --no-interface è¿è¡Œæ—¶ä¸æ供用户界é¢ã€‚ - -s, --no-splash ä¸æ˜¾ç¤ºå¯åŠ¨çª—å£ã€‚ - -v, --version 输出版本信æ¯ã€‚ -%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%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:2 (25%)1:1 (12.5%)2:1 (200%)2D å˜æ¢...4:1 (400%)8:1 (800%)<%s><<无效>><没有模å—>为了优化 GIMP 的性能,æŸäº›è®¾ç½®ä¹Ÿè®¸éœ€è¦è°ƒæ•´ã€‚The GIMP - GNU 图åƒå¤„ç†ç¨‹åº -版æƒæ‰€æœ‰ (C) 1995-2004 -Spencer Kimball,Peter Mattis å’Œ GIMP å¼€å‘å°ç»„ã€‚æ— æ³•è§£æž GIMP æ示文件ï¼æ‚¨çš„ GIMP æ示文件似乎丢了ï¼å·²å­˜åœ¨ä¸€ä¸ªå«â€œ%sâ€çš„文件。添加到选区(_D)角度(_N)关于 The GIMP动作激活获得焦点的图åƒ(_F)活动滤镜自适应超级采样添加添加 Alpha 通é“(_H)添加 Alpha 通é“添加锚点添加通é“添加颜色到颜色表添加å‚考线:添加å‚考线添加水平å‚考线添加图层蒙æ¿(_Y)...添加图层添加图层蒙æ¿æ·»åŠ è·¯å¾„添加笔划添加文字图层添加垂直å‚考线添加蒙æ¿åˆ°å›¾å±‚添加背景色添加å‰æ™¯è‰²æ·»åŠ å›¾å±‚è’™æ¿æ·»åŠ æ–‡å­—到图åƒä¸­å°†å½“å‰é¢œè‰²æ·»åŠ åˆ°é¢œè‰²åŽ†å²å°†é€‰ä¸­çš„æ»¤é•œæ·»åŠ åˆ°æ´»åŠ¨æ»¤é•œåˆ—è¡¨ã€‚æ·»åŠ åˆ°è‰²æ¿ %såˆå¹¶åˆ°å½“å‰é€‰åŒºæ·»åŠ ä¸»é¢˜â€œ%sâ€(%s) -相加附加输入控制器调整亮度和对比度调整色彩平衡调整颜色曲线调整颜色色阶调整亮度和对比度调整色彩平衡调整颜色曲线调整颜色色阶调整色调/亮度/饱和度调整色调和饱和度自动调整色阶调整高级选项影å“:影å“区域 %s喷枪带å„ç§åŽ‹åŠ›çš„喷枪Alpha 到选区(_P)对é½å¯¹é½æ‰€æœ‰é€šé“所有文件所有文件(*.*)所有平铺缓存无法容纳的图åƒå’Œæ’¤é”€çš„æ•°æ®å°†è¢«å†™åˆ°äº¤æ¢æ–‡ä»¶ã€‚这个文件应该ä½äºŽä¸€ä¸ªæœ‰è¶³å¤Ÿå‰©ä½™ç©ºé—´(几百兆字节)的本地文件系统。在 UNIX 系统中您也许会使用系统临时目录(“/tmpâ€æˆ–“/var/tmpâ€)。å…许填充完全é€æ˜Žçš„区域å…许选中完全é€æ˜Žçš„区域å…许放大 %sAlphaAlpha 到选区Alpha:所选的图åƒå¤§å°å°†å ç”¨æ¯”首选项对è¯æ¡†ä¸­â€œæœ€å¤§å›¾åƒå¤§å°â€æ‰€é…置的更多内存(当å‰ä¸º %s)。动画(_I)固定浮动选区固定浮动图层固定浮动选区角度:å擦除 %s边缘平滑外观应用图层蒙æ¿åº”用图层蒙æ¿(_M)阈值处ç†åº”用图层蒙æ¿æ‚¨ç¡®è®¤è¦ä»Žåˆ—表以åŠç£ç›˜ä¸­åˆ é™¤â€œ%sâ€å—?您确认è¦ä»Žåˆ—表以åŠç£ç›˜ä¸­åˆ é™¤æ¨¡æ¿â€œ%sâ€å—?按首选项中设定(_P)关闭未ä¿å­˜çš„图åƒå‰å…ˆè¿›è¡Œç¡®è®¤ã€‚宽高比:宽高比:作者:自动自动跟éšæ´»åŠ¨å›¾åƒ(_F)自动收缩自动收缩选区自动改å˜çª—å£å¤§å°è‡ªåŠ¨åŠ è½½è‡ªåŠ¨æ£€æµ‹å¯ç”¨çš„虑镜å¯ç”¨ç±»åž‹ï¼šèƒŒæ™¯è‰²å¡«å……亮度-对比度(_R)...缓冲区(_U)背景背景色背景色设为:背景:%d, %d, %dåå‘(纠正的)填充区域以所有å¯è§å›¾å±‚为准选区以所有å¯è§å›¾å±‚为准背åŽæ–œé¢å¯¹ç§°çº¿æ€§é»‘白黑色:混和端点的颜色(_N)æ··åˆå¡«å……(_D)æ··åˆå¡«å……混和端点的ä¸é€æ˜Žåº¦(_Y)æ··åˆå¡«å……:混åˆå¡«å……:对索引图åƒæ— æ•ˆã€‚正在混åˆå¡«å……...è“色è“色:模糊模糊或é”化边界(_R)...å–通é“边界å–选区边界边界åŠå¾„亮度-对比度ä¸èƒ½å¯¹ç´¢å¼•å›¾å±‚进行亮度-对比度æ“作。画笔画笔编辑器画笔文件夹画笔用户界é¢ç”»ç¬”:画笔画笔èœå•æ²¹æ¼†æ¡¶å¡«å……缓冲区缓冲区èœå•åŠ æ·±å¯¹æŽ¥æŒ‰æ‰©å±•å如果将图åƒæ¢å¤åˆ°ç£ç›˜ä¸Šä¿å­˜çš„状æ€ï¼Œæ‚¨å°†ä¼šä¸¢å¤±æ‰€æœ‰çš„改å˜ï¼ŒåŒ…括所有的撤销信æ¯ã€‚CMYK定调(_A)...颜色拾å–(_O)列数(_O):组åˆ(_O)监视器分辨率定调无法撤销 %s画布大å°(_V)...å–消å–消å‚考线无法添加跟指定图层尺寸ä¸åŒçš„图层蒙æ¿ã€‚无法给没有 alpha 通é“的图层添加图层蒙æ¿ã€‚无法给ä¸å±žäºŽå›¾åƒçš„一部分的图层添加图层蒙æ¿ã€‚无法固定此图层,因为它ä¸æ˜¯ä¸€ä¸ªæµ®åŠ¨é€‰åŒºã€‚无法转æ¢åˆ°å¤šäºŽ 256 ç§é¢œè‰²çš„色æ¿ã€‚无法从浮动选区创建新图层,因为它属于一个图层蒙æ¿æˆ–通é“。无法创建文件夹“%sâ€ï¼š%s无法生æˆé¢„览无法剪è£ï¼Œå› ä¸ºå½“å‰é€‰åŒºä¸ºç©ºã€‚无法扩展 ${%s}无法浮动选区,因为选择区域为空。无法å‡é«˜æ²¡æœ‰ alpha 的图层。无法ä¿å­˜ã€‚没有选中任何内容。无法勾画空通é“。无法勾画空路径。画布大å°ç”»å¸ƒè¡¬åž«æ¨¡å¼(_P):中心 X:中心 Y:居中改å˜èƒŒæ™¯è‰²æ”¹å˜é¢œè‰²è¡¨é¡¹æ”¹å˜å‰æ™¯è‰²æ”¹å˜å›¾åƒåˆ†è¾¨çŽ‡æ”¹å˜å›¾åƒå•ä½æ”¹å˜æ‰“å°å¤§å°æ”¹å˜å½“å‰å›¾å±‚或路径改å˜ç½‘格背景色改å˜ç½‘æ ¼å‰æ™¯è‰²æ”¹å˜ç´¢å¼•è‰²æ¿æ”¹å˜å›¾å±‚或选区的é€è§†æ”¹å˜å¿«æ·é”®å¤±è´¥ã€‚通é“通é“属性通é“å字:通é“无法å†é™ä½Žã€‚通é“无法å†å‡é«˜ã€‚通é“颜色通é“å·²ç»ä½äºŽåº•ç«¯ã€‚通é“å·²ç»ä½äºŽé¡¶ç«¯ã€‚通é“到选区(_C)通é“到选区通é“到选区通é“:通é“通é“èœå•æ–¹æ ¼å¤§å°(_S):选择勾画类型圆清除(_E)清除清除通é“清除撤销历å²æ¸…除所有文本清除错误清除撤销历å²...点击“继续â€æŽ¥å—以上设置。点击“继续â€åˆ›å»ºæ‚¨çš„个人 GIMP 文件夹。点击“继续â€è¿›å…¥ GIMP 用户安装。点击“继续â€è¿›è¡Œç”¨æˆ·å®‰è£…。点击å¯è¿žæŽ¥æ­¤é”šç‚¹ä¸Žé€‰ä¸­çš„端点。点击å¯åˆ›å»ºæ–°çš„锚点。(å°è¯• SHIFT)点击å¯åˆ›å»ºæ–°çš„路径组件。点击å¯åˆ›å»ºæ–°çš„路径。点击生æˆé¢„览点击å¯åˆ é™¤æ­¤é”šç‚¹ã€‚点击å¯åœ¨è·¯å¾„中æ’入新的锚点。(å°è¯• SHIFT)点击å¯ä½¿æ­¤èŠ‚点æˆä¸ºè§’点。点击å¯æ–­å¼€è·¯å¾„。点击å¯æ‹¾å–路径并编辑。点击更新预览 -%s 点击强制更新预览,å³ä½¿é¢„览已更新点击并拖动å¯æ”¹å˜æ›²çº¿çš„形状。(SHIFT:对称)点击并拖动å¯ç§»åŠ¨é”šç‚¹ã€‚点击并拖动å¯ç§»åŠ¨å¤šä¸ªé”šç‚¹ã€‚点击并拖动å¯ç§»åŠ¨ç»„件。(å°è¯• SHIFT)点击并拖动å¯ç§»åŠ¨è‡‚点。(å°è¯• SHIFT)点击并拖动å¯ç§»åŠ¨è·¯å¾„。点击:选择点击:选择 拖动:移动修剪结果剪贴æ¿å‰ªè´´æ¿åˆ°åº•ç«¯å›¾å±‚剪贴æ¿åˆ°å›¾åƒå…‹éš†å…³é—­ %s关闭全部页签关闭全部页签?关闭此页签å¤åˆ¶è·¯å¾„(_P)颜色(_R)颜色色彩平衡颜色显示滤镜颜色拾å–颜色拾å–ä¿¡æ¯è‰²å½©å¹³è¡¡(_B)...颜色抖动(_D):åªèƒ½å¯¹ RGB 颜色的图层进行色彩平衡æ“作。颜色擦除颜色索引:颜色:颜色表(_M)色彩空间(_S):å•è‰²åŒ–(_Z)...段ç€è‰²ç±»åž‹(_T)选区的ç€è‰²ç±»åž‹(_T)å•è‰²åŒ–åªèƒ½å¯¹ RGB 颜色的图层进行å•è‰²åŒ–æ“作。图åƒå•è‰²åŒ–图åƒå•è‰²åŒ–颜色表颜色表编辑器颜色表èœå•åˆ—数:注释(_N):注释对比度(_T):å·ç§¯(_V)é…置颜色显示滤镜é…置扩展输入设备(_X)...é…置网格(_R)...é…置网格é…置图åƒç½‘æ ¼é…置快æ·é”®é…置快æ·é”®(_K)...é…置选中的滤镜é…置选中的滤镜:%s确认图åƒå¤§å°ç¡®è®¤ç¼©æ”¾ç¡®è®¤ç¼–辑文字关闭未ä¿å­˜çš„图åƒæ—¶éœ€è¦ç¡®è®¤(_V)å¿«æ·é”®å†²çªåœ†é”¥(ä¸å¯¹ç§°)圆锥(对称)连接笔划常é‡é™åˆ¶çŽ¯å¢ƒçŽ¯å¢ƒç›¸å…³çš„光标很好。它们默认是å¯ç”¨çš„。但是,它们也需è¦ä¸€å®šçš„è´Ÿè·ï¼Œè¿™ç‚¹å¯èƒ½æ‚¨å¹¶ä¸æƒ³è¦ã€‚继续贡献者转æ¢è½¬æ¢è¾¹ç¼˜å°†å›¾åƒè½¬æ¢ä¸ºç°åº¦å°†å›¾åƒè½¬æ¢ä¸ºç´¢å¼•é¢œè‰²å°†å›¾åƒè½¬æ¢ä¸ºç´¢å¼•é¢œè‰²å°†å›¾åƒè½¬æ¢ä¸º RGB转æ¢å›¾åƒæ­£åœ¨è½¬æ¢ä¸ºç´¢å¼•é¢œè‰²(第 2 阶段)...正在转æ¢ä¸ºç´¢å¼•é¢œè‰²(第 3 阶段)...正在转æ¢ä¸ºç´¢å¼•é¢œè‰²...å·ç§¯å·ç§¯ç±»åž‹ %s命åå¤åˆ¶å¤åˆ¶å¯è§(_V)正在从“%2$sâ€å¤åˆ¶æ–‡ä»¶åˆ°â€œ%1$sâ€â€¦â€¦ç‰ˆæƒï¼šæ— æ³•åˆ›å»ºâ€œ%sâ€ï¼š%s无法为“%sâ€åˆ›å»ºä¸´æ—¶æ–‡ä»¶ï¼š%s无法删除“%sâ€ï¼š%s找ä¸åˆ° GIMP 帮助æµè§ˆå™¨æ— æ³•æ‰“开“%sâ€å¹¶è¯»å–:%s无法打开“%sâ€å¹¶å†™å…¥ï¼š%s无法打开缩略图文件“%sâ€ï¼š%s无法从“%2$sâ€ä¸­è¯»å– %1$d 字节:%3$s无法在 XCF 文件中æœç´¢ï¼š%s无法å¯åŠ¨ GIMP 帮助æµè§ˆå™¨æ’件。计数:剪è£å›¾å±‚(_O)创建新åœé æ (_K)创建新的模æ¿åˆ›å»ºæ–°çš„图åƒåˆ›å»ºæ–°å›¾å±‚创建新的模æ¿ä¸ºæ­¤å›¾åƒåˆ›å»ºæ–°çš„显示从选中的模æ¿åˆ›å»ºæ–°çš„图åƒåˆ›å»ºæ–°çš„模æ¿åˆ›å»ºå¹¶ç¼–辑图åƒæˆ–照片创建并编辑路径从文字创建路径从路径创建选区正在创建预览...正在创建文件夹“%sâ€â€¦â€¦å‰ªè£å‰ªè£å’Œæ”¹å˜å¤§å°å‰ªè£å’Œæ”¹å˜å¤§å°ä¿¡æ¯å‰ªè£å›¾åƒå‰ªè£å›¾å±‚剪è£å›¾åƒå‰ªè£å›¾åƒæˆ–改å˜å¤§å°å‰ªè£ï¼šä»…交å‰çº¿å‰ªåˆ‡(_T)命å剪切(_T)...ç«‹æ–¹(最好)当å‰çŠ¶æ€(_S)当å‰é«˜åº¦ï¼šä»…对当å‰å›¾å±‚当å‰çŠ¶æ€å½“å‰å®½åº¦ï¼šå…‰æ ‡å…‰æ ‡æ¨¡å¼(_M):光标绘制(_N):曲线类型曲线ä¸èƒ½è°ƒæ•´ç´¢å¼•å›¾å±‚的颜色。自定义自定义颜色自定义æ¸å˜è‡ªå®šä¹‰ç”»å¸ƒè¡¬åž«é¢œè‰²(_A):剪切命å剪切é’色é’色:å¤åˆ¶ç”»ç¬”(_U)å¤åˆ¶é€šé“(_U)å¤åˆ¶æ¸å˜(_U)å¤åˆ¶å›¾å±‚(_U)å¤åˆ¶è‰²æ¿(_U)å¤åˆ¶è·¯å¾„(_U)å¤åˆ¶å›¾æ¡ˆ(_U)å¤åˆ¶æ¨¡æ¿(_U)...深色方格的颜色仅å˜æš—划点点...划点...虚线模å¼ï¼šè™šçº¿é¢„设:虚线日期:调试全å±æ¨¡å¼ä¸‹çš„默认外观普通模å¼ä¸‹çš„默认外观默认网格默认图åƒç½‘格默认æ’值(_I):默认图层和通é“预览大å°(_L):默认阈值(_T):删除锚点删除锚点删除图层蒙æ¿(_K)删除图层蒙æ¿åˆ é™¤å¯¹è±¡åˆ é™¤æ®µåˆ é™¤æ¨¡æ¿åˆ é™¤ç”»ç¬”删除通é“删除颜色删除æ¸å˜åˆ é™¤å›¾å±‚删除图层蒙æ¿åˆ é™¤è‰²æ¿åˆ é™¤è·¯å¾„删除图案删除已ä¿å­˜çš„选项...删除选中的缓冲区删除选中的模æ¿åˆ é™¤æ­¤å›¾åƒåˆ é™¤å‘é‡åˆ é™¤â€œ%sâ€å¤±è´¥ï¼š%s密集点去色åªèƒ½å¯¹ RGB 颜色的图层进行去色æ“作。æ述设计设备状æ€è®¾å¤‡å¯¹è¯æ¡†å¯¹è¯æ¡†èœå•è±å½¢å·®å€¼ç›´æŽ¥è‰²ç¦ç”¨å›¾å±‚è’™æ¿ç¦ç”¨å¿«é€Ÿè’™æ¿æ”¾å¼ƒæ–‡å­—ä¿¡æ¯æ˜¾ç¤ºæ˜¾ç¤ºå¯¼èˆªæ˜¾ç¤ºæ»¤é•œ(_F)...显示过程显示类型:显示 [%0.6f, %0.6f]èžåŒ–è·ç¦»ï¼šè·ç¦»ï¼š%0.6f抖动相除进行全新的用户安装(_F)您真的è¦å°†æ‰€æœ‰æ»¤é•œé‡ç½®åˆ°é»˜è®¤å€¼å—?您真的è¦å°†æ‰€æœ‰å·¥å…·é€‰é¡¹é‡ç½®åˆ°é»˜è®¤å€¼å—?您真的è¦å°†å®ƒæ›¿æ¢ä¸ºæ‚¨æ­£åœ¨ä¿å­˜çš„图åƒå—?ä¸ä¿å­˜(_N)å¯åœé æ–‡æ¡£åŽ†å²(_Y)文档历å²æ–‡æ¡£æ–‡æ¡£èœå•å‡æ·¡åŠ æ·±(_G)å‡æ·¡å‡æ·¡æˆ–加深处ç†å‡æ·¡/加深åŒè™šçº¿æ‹–动锚点拖动多个锚点拖动曲线拖动臂点拖动路径拖动:移动用墨水画å¯ç»˜å¯¹è±¡å¯ç»˜å¯¹è±¡ mod图åƒè¿‡ç¨‹æ‹–放入新图层拖放入新路径由于缺少字体,文字功能ä¸å¯ç”¨ã€‚转储此控制器事件å¤åˆ¶ç”»ç¬”å¤åˆ¶é€šé“å¤åˆ¶æ¸å˜å¤åˆ¶å›¾å±‚å¤åˆ¶è‰²æ¿å¤åˆ¶è·¯å¾„å¤åˆ¶å›¾æ¡ˆå¤åˆ¶é€‰ä¸­çš„模æ¿EEK:无法撤销导出路径(_X)...加å°(_X)边缘行为边缘检测(_T)编辑编辑通é“属性编辑通é“颜色编辑色æ¿é¢œè‰²ç¼–辑颜色表项编辑图层属性编辑图层蒙æ¿ç¼–辑模å¼ç¼–辑色æ¿é¢œè‰²ç¼–辑路径属性编辑快速蒙æ¿å±žæ€§ç¼–辑快速蒙æ¿é¢œè‰²ç¼–辑模æ¿ç¼–辑画笔编辑通é“属性编辑颜色编辑颜色表项 #%d编辑æ¸å˜ç¼–辑图层属性编辑色æ¿ç¼–辑路径属性编辑图案编辑过程编辑选中的模æ¿æ¤­åœ†é€‰æ‹©ç©ºç™½é€šé“空白图层空白路径空白文字图层环境文件 %s 中å«æœ‰ç©ºå˜é‡å增强(_H)å¯ç”¨å¿«é€Ÿè’™æ¿å¯ç”¨é€æ˜Žåº¦æŠ–动(_T)å¯ç”¨æ­¤æŽ§åˆ¶å™¨å¯åŠ¨æ—¶æ˜¾ç¤ºä¸€ä¸ªæœ‰ç”¨çš„ GIMP æ示。显示工具æ示。巨大给已åˆå¹¶çš„色æ¿è¾“入一个å字给已ä¿å­˜çš„选项输入一个å字给这个缓冲区输入一个å字给这个模æ¿è¾“入一个å字给已ä¿å­˜çš„选项输入一个新å字输入ä½ç½®(URI):环境环境文件夹å‡åŒ–ä¸èƒ½å¯¹ç´¢å¼•å›¾å±‚进行色调å‡åŒ–æ“作。擦除至背景或é€æ˜Žæ©¡çš®é”™è¯¯æŽ§åˆ¶å°(_N)错误控制å°é”™è¯¯æŽ§åˆ¶å°èœå•ä¿å­˜ XCF 文件时出错:%s解æžâ€œ%sâ€ç¬¬ %d 行时出错:%s读å–“%sâ€æ—¶å‡ºé”™ï¼š%s读å–画笔文件“%sâ€æ—¶å‡ºé”™ï¼š%s写入“%sâ€æ—¶å‡ºé”™ï¼š%s写 XCF 时出错:%s写文件“%sâ€æ—¶å‡ºé”™ï¼š -%s写“%sâ€æ—¶å‡ºé”™ï¼š%s写“%sâ€çš„临时文件时出错:%s -没有创建文件。写“%sâ€çš„临时文件时出错:%s -原始文件没有被修改。错误事件加大(_T)å¿…è¦æ—¶æ‰©å±•å°†è·¯å¾„导出为 SVG导出此图åƒçš„所有路径导出活动路径æ›å…‰é‡ï¼šæ‰©å±•è¾“入设备扩展åå‰æ™¯è‰²å¡«å……å‰æ™¯åˆ°èƒŒæ™¯(HSV 顺时针色调)å‰æ™¯åˆ°èƒŒæ™¯(HSV 逆时针色调)å‰æ™¯åˆ°èƒŒæ™¯(HSV)å‰æ™¯åˆ°èƒŒæ™¯(RGB)å‰æ™¯åˆ°é€æ˜Žå‰æ™¯åˆ°é€æ˜Žå‰æ™¯/背景å‰æ™¯/背景 颜色释放浮动选区激活浮动选区浮动选区到图层画布适é…图层(_I)淡出无法从“%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â€å‡ºçŽ°ä¸¥é‡è§£æžé”™è¯¯ï¼šç¼ºå°‘ magic 头。色æ¿æ–‡ä»¶â€œ%sâ€å‡ºçŽ°ä¸¥é‡è§£æžé”™è¯¯ï¼šç¼ºå°‘ magic 头。 -这个文件是å¦éœ€è¦ä»Ž DOS 转æ¢è¿‡æ¥ï¼Ÿè‰²æ¿æ–‡ä»¶â€œ%sâ€å‡ºçŽ°ä¸¥é‡è§£æžé”™è¯¯ï¼šç¬¬ %d 行读入出错。图案文件“%sâ€å‡ºçŽ°ä¸¥é‡è§£æžé”™è¯¯ï¼šæ— æ³•è¯»å– %d 字节:%s图案文件“%sâ€å‡ºçŽ°ä¸¥é‡è§£æžé”™è¯¯ï¼šæœªçŸ¥å›¾æ¡ˆæ ¼å¼ç‰ˆæœ¬ %d。图案文件“%sâ€å‡ºçŽ°ä¸¥é‡è§£æžé”™è¯¯ï¼šä¸æ”¯æŒçš„图案深度 %d。 -GIMP 图案必须为ç°åº¦æˆ– RGB。羽化(_T)...羽化通é“羽化选区边缘羽化羽化åŠå¾„文件文件打开对è¯æ¡†(_D)文件æ“作文件类型文件已存在文件被截断填充通é“å¡«å……ä¸é€æ˜Žåº¦ï¼šå¡«å……类型 %s填充相近的颜色填充é€æ˜ŽåŒºåŸŸå¡«å……整个选区以背景色填充以背景色填充(_G)以å‰æ™¯è‰²å¡«å……以图案填充(_A)以图案填充以é€æ˜Žå¡«å……以白色填充以å‰æ™¯è‰²å¡«å……(_F)以背景色填充(_B)用颜色æ¸å˜å¡«å……用一ç§é¢œè‰²æˆ–图案填充填充滤镜(_R)最åŽï¼Œåˆå¹¶çš„图层应该是:寻找邻近的区域寻找相近的颜色图åƒé€‚é…至窗å£å›¾åƒé€‚é…于窗å£å›¾åƒé€‚é…至窗å£é€‚é…窗å£å›ºå®šå®½é«˜æ¯”固定大å°å¹³æ•´å›¾åƒç¿»è½¬ç¿»è½¬é€šé“翻转图层翻转路径翻转文字图层翻转类型 %s水平翻转(_H)垂直翻转(_V)翻转图åƒç¿»è½¬å›¾å±‚或选区翻转...正在翻转...浮动选区浮动选区浮动的图层浮动选区 -(%s)浮动选区到图层浮动选区到图层浮动选区Floyd-Steinberg (普通)Floyd-Steinberg (å‡å°‘颜色æŸå¤±)焦点文件夹文件夹字体文件夹字体用户界é¢å­—体:字体字体èœå•è¦æ­£ç¡®å®‰è£… GIMP,就需è¦åˆ›å»ºä¸€ä¸ªåå«â€œ%sâ€çš„文件夹。强制自动微调å‰æ™¯å‰æ™¯è‰²å’ŒèƒŒæ™¯è‰²ã€‚ 黑白å°æ–¹æ ¼å¯ä»¥é‡ç½®é¢œè‰²ã€‚ 箭头å¯ä»¥äº¤æ¢é¢œè‰²ã€‚ åŒå‡»å¯ä»¥ä»Žé¢œè‰²é€‰æ‹©å¯¹è¯æ¡†ä¸­é€‰æ‹©é¢œè‰²ã€‚å‰æ™¯è‰²å‰æ™¯è‰²è®¾ä¸ºï¼šå‰æ™¯ï¼š%d, %d, %dæ­£å‘(传统的)从路径(_O)自由选择自由选择手画å–自主题(_T)从窗å£ç³»ç»Ÿ(当å‰ä¸º %d x %d dpi)(_W)从左到å³ä»Žå³åˆ°å·¦ä»Žé€‰åŒºèŽ·å–å–自主题模糊选择(_Z)å…¨å±(_E)模糊选择GIMPGIMP 扩展GIMP 消æ¯GIMP 性能调节GIMP æ’件GIMP å¯åŠ¨GIMP 文本编辑器GIMP æ¯æ—¥æ示GIMP 用户安装GIMP XCF 图åƒGIMP 无法åˆå§‹åŒ–图形用户界é¢ã€‚ -请确定您的显示环境已ç»æ­£ç¡®å®‰è£…。GIMP 帮助æµè§ˆå™¨å½“å‰ç”¨æˆ·è¿˜æ²¡æœ‰æ­£ç¡®å®‰è£… GIMP。 -由于用了“--no-interfaceâ€æ ‡å¿—,用户安装被跳过。 -需è¦è¿›è¡Œç”¨æˆ·å®‰è£…,请去掉“--no-interfaceâ€æ ‡å¿—è¿è¡Œ GIMP。GIMP 使用有é™çš„内存空间æ¥å‚¨å­˜å›¾åƒæ•°æ®ï¼Œç§°ä¸ºâ€œå¹³é“ºç¼“å­˜â€ã€‚您å¯ä»¥è°ƒæ•´å®ƒçš„大å°ä½¿å†…存能够容纳。请考虑其它执行进程的内存å ç”¨æƒ…况。GIMP 使用附加的 gtkrc 文件,您å¯ä»¥é€šè¿‡é…置使它看起æ¥è·Ÿåˆ«çš„ GTK 应用程åºä¸ä¸€æ ·ã€‚GIMP 版本如果试图创建一幅所需内存比此处指定的大å°è¿˜è¦å¤§çš„图åƒï¼ŒGIMP 将警告用户。Gamma常规通常åªå¯¹ 8 ä½æ˜¾ç¤ºï¼Œæ­¤å¤„设置分é…ç»™ GIMP 的系统颜色的最å°æ•°é‡ã€‚生æˆä¼˜åŒ–色æ¿èŽ·å–监视器分辨率æžå¤§Gimprc 过程玻璃效果(_S)æ¸å˜æ¸å˜ç¼–辑器æ¸å˜ç¼–辑器èœå•æ¸å˜æ–‡ä»¶å¤¹æ¸å˜æ®µçš„左端点的颜色æ¸å˜æ®µçš„å³ç«¯ç‚¹çš„颜色æ¸å˜ç”¨æˆ·ç•Œé¢æ¸å˜æ–‡ä»¶ “%s†æŸå:段的范围ä¸åœ¨ 0-1 间。æ¸å˜ï¼šæ¸å˜æ¸å˜èœå•å¢žç›Šæå–增益åˆå¹¶ç°åº¦ç°åº¦ç»¿è‰²ç»¿è‰²ï¼šç½‘格网格线间è·é€šé“增长选区增长增长è·ç¦»å‚考线å‚考线和网格å¸é™„å‚考线过程HSVHSV (%0.3f, %0.3f, %0.3f)HSV (逆时针色调)(_C)HSV (顺时针色调)(_H)HTML æ ¼å¼ï¼šé«˜åº¦(_E):è¦ä½¿ç”¨çš„帮助æµè§ˆå™¨(_E):支点ä½ç½®ï¼š%0.6f硬质边界硬光硬度硬度:高度高度:帮助帮助æµè§ˆå™¨å¸®åŠ©ç³»ç»Ÿå¸®åŠ©æµè§ˆå™¨æ²¡æœ‰å¯åŠ¨æ‰¾ä¸åˆ°å¸®åŠ©æµè§ˆå™¨å¸®åŠ©è¿‡ç¨‹å六进制:明亮åœé æ çš„窗å£ç±»åž‹æ示(_D):工具箱的窗å£ç±»åž‹æ示(_T):微调微调将修改字体的轮廓,使之产生清晰的å°å°ºå¯¸ä½å›¾ç›´æ–¹å›¾(_M)直方图直方图尺度历å²æ°´å¹³ç¬¬ä¸€æ¡ç½‘格线的水平ä½ç§»ï¼›å¯ä»¥æ˜¯è´Ÿæ•°ã€‚网格的水平间è·ã€‚在文件èœå•ä¸­ä¿ç•™å¤šå°‘个最近打开图åƒçš„文件å。色调色调-饱和度åªæœ‰ RGB 颜色的图层å¯ä»¥è¿›è¡Œè‰²è°ƒ-饱和度æ“作。色调-饱和度(_S)...色调:庞大图标和文字(_C)图åƒ(_M)导入路径(_M)...æ’值(_N):间隔(_N):图标图标和æ述图标和文字一般åªåœ¨å­—体æ供微调时æ‰è¿›è¡Œå¾®è°ƒï¼Œä½†æ˜¯æ‚¨ä¹Ÿå¯ä»¥é¦–选总是使用自动微调如果å¯ç”¨ï¼Œå½“拾å–æŸä¸ªå›¾å±‚或路径时,移动工具将改å˜æ´»åŠ¨å›¾å±‚或路径。在旧的版本中,这是默认的行为。如果您ä¸ä¿å­˜å›¾åƒï¼Œ%så‰æ‰€ä½œçš„修改将会丢失。如果您现在退出 GIMP,这些修改将会丢失。环境文件 %s 中å«æœ‰éžæ³•å˜é‡å:%s图åƒå›¾åƒ + 网格图åƒç¼–辑器图åƒä¿¡æ¯å›¾åƒèœå•å›¾åƒå¤§å°å›¾åƒçŠ¶æ€æ æ ¼å¼å›¾åƒæ¨¡æ¿å›¾åƒç¼©ç•¥å›¾å›¾åƒæ ‡é¢˜å’ŒçŠ¶æ€æ æ ¼å¼å›¾åƒæ ‡é¢˜æ ¼å¼å›¾åƒçª—å£å¤–观图åƒçª—å£å›¾åƒæ²¡æœ‰åŒ…å«ä»»ä½•å¯è§å›¾å±‚图åƒæ–‡ä»¶å›¾åƒè’™æ¿å›¾åƒåˆ†è¾¨çŽ‡è¶…出范围,使用默认的分辨率替代。图åƒå¤§å°å›¾åƒæºå›¾åƒç±»åž‹å›¾åƒæ˜¾ç¤ºå›¾åƒèœå•å¯¼å…¥é€‰é¡¹å¯¼å…¥è‰²æ¿å¯¼å…¥è·¯å¾„从 SVG 导入路径导入新的色æ¿å¯¼å…¥è‰²æ¿å¯¼å…¥è·¯å¾„导入的路径墨水(_K)å相(_V)å转蒙æ¿(_V)增值缩进:第一行的缩进深度索引:索引索引颜色索引颜色转æ¢ç´¢å¼•é¢œè‰²å›¾å±‚缩放时总ä¸æ’值。所选的æ’值类型将åªå½±å“通é“和蒙æ¿ã€‚ä¿¡æ¯çª—å£åˆå§‹ç¼©æ”¾æ¯”率(_R):åˆå§‹åŒ–图层蒙æ¿ä¸ºï¼šæ­£åœ¨åˆå§‹åŒ–æ’件正在åˆå§‹åŒ–æ’件:“%s†-墨水输入控制器输入设备输入色阶æ’入锚点安装ç§ç”¨é¢œè‰²è¡¨ï¼›å¯¹ 8 ä½(256 色)显示å¯èƒ½æœ‰ç”¨ã€‚安装失败。请与系统管ç†å‘˜è”系。安装æˆåŠŸã€‚点击“继续â€è¿›å…¥ä¸‹ä¸€æ­¥ã€‚ç«‹å³æ›´æ–°æ™ºèƒ½å‰ªåˆ€(_S)强度:%0.3f ä¸é€æ˜Žåº¦ï¼š%0.3fç•Œé¢å†…部 GIMP 过程内部过程æ’值:相交与当å‰é€‰åŒºç›¸äº¤äº¤å‰(å字线)交å‰(点)无效的 UTF-8文件“%sâ€ä¸­å«æœ‰æ— æ•ˆçš„ UTF-8 æ•°æ®ã€‚XCF 文件中å«æœ‰æ— æ•ˆçš„ UTF-8 字符串画笔文件“%sâ€ä¸­å«æœ‰æ— æ•ˆçš„ UTF-8 字符串。æ¸å˜æ–‡ä»¶â€œ%sâ€ä¸­å«æœ‰æ— æ•ˆçš„ UTF-8 字符串。色æ¿æ–‡ä»¶â€œ%sâ€ä¸­å«æœ‰æ— æ•ˆçš„ UTF-8 字符串。图案文件“%sâ€ä¸­å«æœ‰æ— æ•ˆçš„ UTF-8 字符串。URI 中有无效的字符åºåˆ—无效的快æ·é”®ã€‚无效的宽度或高度。两者都必须为正。å转å转通é“å转选区ä¸èƒ½å¯¹ç´¢å¼•å›¾å±‚进行å相æ“作。å转选区这是您所希望的å—?您看æ¥æ›¾ç»ä½¿ç”¨è¿‡ GIMP 2.0。项目属性项目å¯è§æ€§å¯¹é½ï¼šä¿æŒé€æ˜Žéƒ¨åˆ†ä¿æŒåœ¨ä¸Šæ–¹ä¿æŒå®½é«˜æ¯” %sä¿æŒå®½é«˜æ¯” %sä¿æŒé«˜åº¦ %sä¿æŒé€æ˜Žéƒ¨åˆ†ä¿æŒå®½åº¦ %s下键下键(Alt)下键(Control + Alt)下键(Control)下键(Shift + Alt)下键(Shift + Control + Alt)下键(Shift + Control)下键(Shift)左键左键(Alt)左键(Control + Alt)左键(Control)左键(Shift + Alt)左键(Shift + Control + Alt)左键(Shift + Control)左键(Shift)å³é”®å³é”®(Alt)å³é”®(Control + Alt)å³é”®(Control)å³é”®(Shift + Alt)å³é”®(Shift + Control + Alt)å³é”®(Shift + Control)å³é”®(Shift)上键上键(Alt)上键(Control + Alt)上键(Control)上键(Shift + Alt)上键(Shift + Control + Alt)上键(Shift + Control)上键(Shift)GIMP 中的快æ·é”®å¯ä»¥åŠ¨æ€é‡å®šä¹‰ã€‚menurc 是您的当å‰è®¾ç½®çš„导出,以便下次会è¯æ—¶æ¢å¤ã€‚如果您愿æ„您也å¯ä»¥ç¼–辑这个文件,ä¸è¿‡åœ¨ GIMP 中定义快æ·é”®ä¼šæ›´å®¹æ˜“。删除这个文件将æ¢å¤é»˜è®¤çš„å¿«æ·é”®è®¾ç½®ã€‚键盘键盘事件快æ·é”®ä»Žå·¦åˆ°å³å·¦ç«¯ç‚¹çš„颜色(_E)...横å‘大大(256x256)增大预览上次出错:图层图层“%sâ€æ²¡æœ‰ alpha 。图层将放在它上é¢ã€‚图层属性图层边界大å°(_O)...图层填充类型图层蒙æ¿åˆ°é€‰åŒºå›¾å±‚选择图层大å°å›¾å±‚模å¼(_M)图层åå­—(_N):图层无法å†é™ä½Žã€‚图层无法å†å‡é«˜ã€‚图层已ç»ä½äºŽåº•ç«¯ã€‚图层已ç»ä½äºŽé¡¶ç«¯ã€‚图层到图åƒå¤§å°å›¾å±‚é™è‡³åº•ç«¯(_B)图层到图åƒå¤§å°(_I)图层å‡è‡³é¡¶ç«¯(_T)图层的 Alpha 通é“(_A)图层图层èœå•å›¾å±‚åˆå¹¶é€‰é¡¹å·¦ç«¯ç‚¹çš„颜色左对é½é•¿åº¦ï¼šæ¯æ¬¡å¯åŠ¨æ—¶è®© GIMP å°è¯•æ¢å¤æ‚¨ä¸Šæ¬¡ä¿å­˜çš„会è¯ã€‚色阶索引图层ä¸èƒ½è°ƒæ•´è‰²é˜¶ã€‚浅色方格的颜色仅å˜äº®çº¿è¡Œ -é—´è·ï¼šçº¿å®½ï¼šçº¿é£Žæ ¼(_S):网格使用的线型。线性链接的项目加载加载曲线加载色阶å³ç«¯é¢œè‰²åŠ è½½è‡ª(_O)从文件中加载曲线设置从文件中加载色阶设置从文件中加载文本正在加载预览 ...ä½ç½®ï¼šå¯¹æ•°é•¿åˆ’正在查找数æ®æ–‡ä»¶é™ä½Žé€šé“通é“移至底端通é“é™è‡³åº•ç«¯(_B)é™ä½Žå›¾å±‚图层移至底端é™ä½Žè·¯å¾„路径移至底端路径é™è‡³åº•ç«¯(_B)é™ä½Žé€šé“通é“é™è‡³åº•ç«¯é™ä½Žå›¾å±‚图层é™è‡³åº•ç«¯é™ä½Žè·¯å¾„路径é™è‡³åº•ç«¯æ”¾å¤§é•œ(_A)主值(_A)移动至å±å¹•(_O)...映射(_P)å“红å“红:放大镜é€æ˜Ž(_T)管ç†å¯åŠ è½½æ¨¡å—èš‚èšçº¿é€Ÿåº¦(_A):蒙æ¿ä¸é€æ˜Žåº¦ï¼šæŽ©è”½é€‰ä¸­åŒºåŸŸ(_S)掩蔽éžé€‰ä¸­åŒºåŸŸ(_U)矩阵:最大深度:缩略图最大文件大å°(_F):最大新建图åƒå¤§å°(_N):最大颜色差异最大撤销内存(_M):平å‡å€¼ï¼šæµ‹é‡æµ‹é‡è·ç¦»å’Œè§’度测é‡è·ç¦»å’Œè§’度测é‡å°ºå­å¹¶è¾“入它们的长度:中值:中中划å‘下åˆå¹¶(_W)å‘下åˆå¹¶åˆå¹¶å›¾å±‚åˆå¹¶è‰²æ¿åˆå¹¶å¯è§å›¾å±‚åˆå¹¶å¯è§è·¯å¾„åˆå¹¶å¯è§å›¾å±‚(_L)...åˆå¹¶å¯è§å›¾å±‚(_V)...åˆå¹¶å¯è§è·¯å¾„(_V)åˆå¹¶å›¾å±‚åˆå¹¶è‰²æ¿åˆå¹¶å‘é‡æ¶ˆæ¯è¿‡ç¨‹æ¶ˆæ¯é‡å¤äº† %d 次。消æ¯é‡å¤äº† 1 次。消æ¯å·²è¢«é‡å®šå‘到 stderr。中等深浅移æ¤ç”¨æˆ·è®¾ç½®æœ€å°æ’¤é”€æ¬¡æ•°(_U):æ‚项斜接模å¼æ¨¡å¼ï¼šä¿®æ”¹é€‰ä¸­çš„颜色修改选中范围的颜色色阶修改所有的颜色修改行è·æ¨¡å—文件夹模å—管ç†å™¨æ¨¡å—路径模å—鼠标光标鼠标滚轮鼠标滚轮事件移动移动多个锚点移动通é“移动浮动选区移动å‚考线移动å‚考线:移动图层移动图层蒙æ¿ç§»åŠ¨è·¯å¾„移动选区移动文字图层移动工具移动项目移动图层和选区移动选区移动当å‰å›¾å±‚移动当å‰è·¯å¾„选中的滤镜下移选中的滤镜上移移动至å±å¹•...移动:相乘颜色数é‡(_U):导航(_V)导航窗å£(_V)导航预览大å°(_V):åå­—å字:导航新建通é“新建通é“颜色新建通é“选项添加背景色(_B)添加å‰æ™¯è‰²(_F)新建图åƒæ–°å»ºå›¾å±‚新建路径新建路径选项新建模æ¿æ–°å»ºç”»ç¬”新建通é“按上次的值新建通é“新建通é“...添加背景色添加å‰æ™¯è‰²æ–°å»ºæ¸å˜æ–°çš„导入新建图层按上次的值新建图层新建图层...新建色æ¿æŒ‰ä¸Šæ¬¡çš„值新建路径新建路径...新建图案新建å‘é‡æ²¡æœ‰å¯ä¾›æ­¤å·¥å…·ä½¿ç”¨çš„画笔。未选择滤镜“%sâ€ä¸­æœªæ‰¾åˆ°çº¿æ€§æ¸å˜å·²ç»ä¸å¯ç”¨â€œ%sâ€ä¸­æœªæ‰¾åˆ°è·¯å¾„缓冲区中未找到路径没有å¯ä¾›æ­¤æ“作使用的图案。未选择没有选区å¯å‹¾ç”»ã€‚无缩略图ä¸å¯¹é½æ— æ— (最快)正常普通(128x128)正常点普通窗å£ä¸æ˜¯æ™®é€šæ–‡ä»¶æ²¡æœ‰è¶³å¤Ÿå¤šçš„å¯è§å›¾å±‚å¯åˆå¹¶ã€‚至少需è¦ä¸¤ä¸ªã€‚没有足够多的å¯è§è·¯å¾„å¯åˆå¹¶ã€‚至少需è¦ä¸¤ä¸ªã€‚处ç†å™¨ä½¿ç”¨æ•°é‡(_P):网格线数é‡å›¾å±‚æ•°é‡ï¼šå…¶å®ƒ(_T)...ä½ç§»é€šé“ä½ç§»ä½ç§»å¯ç»˜å›¾å±‚ä½ç§»å›¾å±‚è’™æ¿ä½ç§»ä½ç§» x/2,y/2(_2)ä½ç§»ï¼šåœ¨ç£ç›˜ä¸Šåœ¨å¤šå¤„ç†å™¨çš„机器上,如果 GIMP å·²ç»ä»¥ --enable-mp 编译,此处设置 GIMP 应该åŒæ—¶ä½¿ç”¨çš„处ç†å™¨æ•°ç›®ã€‚仅在内存打开为图层(_E)...ä¸é€æ˜Žåº¦ä¸é€æ˜Žåº¦ï¼šæ‰“开打开图åƒæ‰“开图åƒä¸ºå›¾å±‚打开ä½ç½®æ‰“开文本文件(UTF-8)打开ä½ç½®(_L)...最近打开(_R)打开图åƒå¯¹è¯æ¡†æ‰“开画笔选择对è¯æ¡†æ‰“开字体选择对è¯æ¡†æ‰“å¼€æ¸å˜é€‰æ‹©å¯¹è¯æ¡†æ‰“开色æ¿é€‰æ‹©å¯¹è¯æ¡†æ‰“开图案选择对è¯æ¡†æ‰“开选中的项打开“%sâ€å¤±è´¥ï¼š - -%s打开“%sâ€å¤±è´¥ï¼š%s选项: -原始 X:原始 Y:原始宽度:其它 (%s) ...轮廓输出色阶覆盖PDB 调用过程“%sâ€é”™è¯¯ï¼š -å‚æ•° #%d 类型ä¸åŒ¹é…(期望 %s,得到 %s)PDB 调用错误: -过程“%sâ€æ²¡æœ‰æ‰¾åˆ°å›¾æ¡ˆ(_A)Pack my box with -five dozen liquor jugs.涂画工具之间共享的涂画选项涂画工具过程涂画工具:涂画模å¼(_M)模糊涂画处ç†ç”»å‡ºå¸¦ç¡¬è´¨è¾¹ç•Œçš„点用图案或者图åƒåŒºåŸŸæ¶‚画画笔色æ¿(_E)色æ¿è‰²æ¿ç¼–辑器色æ¿ç¼–辑器èœå•è‰²æ¿æ–‡ä»¶å¤¹è‰²æ¿ç”¨æˆ·ç•Œé¢è‰²æ¿åå­—(_N):色æ¿æ–‡ä»¶(_F)色æ¿è‰²æ¿èœå•æ­£åœ¨è§£æžâ€œ%s†-粘贴粘贴缓冲区进入(_I)粘贴缓冲区为新图åƒ(_N)粘贴路径(_H)粘贴进入(_I)粘贴为新图åƒ(_N)粘贴选中的缓冲区将选中的缓冲区粘贴为新图åƒå°†é€‰ä¸­çš„缓冲区粘贴到选区中被粘贴的图层路径路径属性路径å字:路径工具(_T)路径无法å†é™ä½Žã€‚路径无法å†å‡é«˜ã€‚路径已ç»ä½äºŽåº•ç«¯ã€‚路径已ç»ä½äºŽé¡¶ç«¯ã€‚路径到选区(_C)路径到选区路径到选区 -%s 添加 -%s å‡åŽ» -%s 相交路径到选区路径路径èœå•å›¾æ¡ˆå›¾æ¡ˆæ–‡ä»¶å¤¹å›¾æ¡ˆç”¨æˆ·ç•Œé¢å›¾æ¡ˆå¡«å……图案æºå›¾æ¡ˆå›¾æ¡ˆèœå•é“…笔(_N)铅笔画笔宽度的百分比百分比:个人 GIMP 文件夹é€è§†é€è§†å˜æ¢ä¿¡æ¯é€è§†...拾å–æ¨¡å¼ %s拾å–图层或å‚考线拾å–路径拾å–黑点从图åƒä¸­æ‹¾å–颜色拾å–ç°ç‚¹ä»…拾å–拾å–白点åƒç´ å°ºå¯¸ï¼šåƒç´ å€¼åƒç´ åƒç´ ï¼šè¯·ç­‰å¾…,您的个人 GIMP 文件夹正在创建中……请等待...æ’件æ’件环境æ’件文件夹æ’件无法打开图åƒæ’件无法ä¿å­˜å›¾åƒæ’件崩溃:“%s†-(%s) - -已崩溃的æ’件å¯èƒ½å·²ç»ç ´å GIMP 的内部状æ€ã€‚您å¯èƒ½éœ€è¦ä¿å­˜æ‚¨çš„图片然åŽé‡æ–°å¯åŠ¨ GIMP 以确ä¿ç¨³å¦¥ã€‚æ’件æˆåŠŸè¿”回(SUCCESS)但没有返回图åƒæ’件æ’件æ’件和扩展是一些被 GIMP 调用并æ供附加功能的外部程åºã€‚这些程åºåœ¨è¿è¡Œæ—¶è¢«æœç´¢ï¼Œå®ƒä»¬çš„功能以åŠä¿®æ”¹æ—¶é—´ç­‰ä¿¡æ¯å°†è¢«æš‚æ—¶ä¿å­˜åœ¨è¿™ä¸ªæ–‡ä»¶é‡Œã€‚这个文件åªåº”ç”± GIMP æ¥è¯»å–,请您ä¸è¦ç¼–辑它。多边形纵å‘ä½ç½®ï¼š%0.6fä½ç½®æµ·æŠ¥æ•ˆæžœæµ·æŠ¥æ•ˆæžœ(å‡å°‘颜色的数é‡)海报效果级数(_L):ä¸èƒ½å¯¹ç´¢å¼•å›¾å±‚进行海报效果æ“作。首选项ä¿æŒäº®åº¦(_L)压力çµæ•åº¦åŽ‹åŠ›ï¼šé¢„览预览已ç»è¿‡æ—¶é¢„览:预览打å°å¤§å°æ‰“å°å¤§å°ï¼šè¿‡ç¨‹æ•°æ®åº“过程数æ®åº“进度伪彩色目的:质é‡æŸ¥è¯¢æ­£åœ¨æŸ¥è¯¢æ–°çš„æ’件正在查询æ’件:“%s†-快速加载快速蒙æ¿å¿«é€Ÿè’™æ¿å±žæ€§å¿«é€Ÿè’™æ¿èœå•å¿«é€Ÿä¿å­˜å¿«é€Ÿè’™æ¿é€€å‡º The GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d, %d, %d)RGB 颜色RGB-空RGBA (%0.3f, %0.3f, %0.3f, %0.3f)从å³åˆ°å·¦è°ƒå‡ºâ€œ%sâ€(_E)é‡ç½®å·¥å…·é€‰é¡¹(_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)é‡æ–°ç”Ÿæˆé¢„览矩形选择红色红色:é‡åšå°†å›¾åƒå‡è‡³å›ºå®šæ•°é‡çš„颜色以指定阈值将图åƒå‡è‡³ä¸¤è‰²åˆ·æ–°ç”»ç¬”刷新æ¸å˜åˆ·æ–°è‰²æ¿åˆ·æ–°å›¾æ¡ˆè®°å½•é‡æ–°åŠ è½½å½“å‰ä¸»é¢˜(_U)é‡æ–°åŠ è½½æ‰€æœ‰é¢„览(_A)é‡æ–°åŠ è½½æ‰€æœ‰é¢„览GIMP 会è¯ä¸­è®°ä½å½“å‰çš„工具ã€å›¾æ¡ˆã€é¢œè‰²å’Œç”»ç¬”。远程图åƒåˆ é™¤é€šé“删除已ä¸å­˜åœ¨çš„项目(_N)删除浮动选区删除å‚考线删除图层删除路径删除项目(_E)删除已ä¸å­˜åœ¨çš„项目删除浮动选区删除选中的项从活动滤镜列表中删除选中的滤镜。去掉快æ·é”®å¤±è´¥ã€‚é‡å‘½å通é“é‡å‘½å图层é‡å‘½å路径é‡å‘½åå·²ä¿å­˜çš„工具选项é‡å‘½å文字图层é‡å‘½å项目渲染勾画é‡æŽ’通é“é‡æŽ’图层é‡æŽ’路径é‡å¤ä¸Šæ¬¡é‡å¤ï¼šæ›¿æ¢å½“å‰é€‰åŒºå¤åˆ¶å¤åˆ¶æ¸å˜æ®µå¤åˆ¶æ¸å˜çš„选中区域å¤åˆ¶æ®µå¤åˆ¶é€‰ä¸­åŒºåŸŸé€šé“é‡å®šä½å›¾å±‚é‡å®šä½å‘é‡é‡å®šä½é‡æ–°æ‰«æ字体列表é‡ç½®å·¥å…·é€‰é¡¹é‡ç½®æ‰€æœ‰å·¥å…·é€‰é¡¹(_A)...é‡ç½®æ‰€æœ‰æ»¤é•œé‡ç½®æ‰€æœ‰æ»¤é•œ...é‡ç½®æ‰€æœ‰å·¥å…·é€‰é¡¹å°†é€‰ä¸­çš„滤镜é‡ç½®åˆ°é»˜è®¤å€¼é‡ç½®åˆ°é»˜è®¤å€¼é‡ç½®å·¥å…·çš„顺åºåŠå¯è§å±žæ€§æ”¹å˜å¤§å°é€šé“改å˜å¤§å°å›¾åƒæ”¹å˜å¤§å°å›¾å±‚改å˜å¤§å°è·¯å¾„改å˜å¤§å°æ”¹å˜æ–‡å­—图层大å°å›¾åƒæ”¹å˜å¤§å°æ›´æ”¹é¡¹ç›®å¤§å°ç¼©æ”¾æ—¶è°ƒæ•´çª—å£å¤§å°(_Z)图åƒå¤§å°æ”¹å˜æ—¶è°ƒæ•´çª—å£å¤§å°(_S)正在改å˜å¤§å°...改å˜åˆ†è¾¨çŽ‡åˆ†è¾¨çŽ‡ï¼šèµ„æºæ¶ˆè€—资æºé…置选项æ¢å¤è‡ª...GIMP å¯åŠ¨æ—¶æ¢å¤å·²ä¿å­˜çš„å¿«æ·é”®ã€‚编辑é™äºŽå¤šè¾¹å½¢åå‘æ¢å¤å°†â€œ%sâ€æ¢å¤åˆ°â€œ%sâ€ï¼Ÿæ¢å¤å›¾åƒæ¢å¤å¤±è´¥ã€‚没有文件å与此图åƒç›¸å…³è”。æ¢å¤åˆ°â€œ%sâ€å¤±è´¥ï¼š - -%så³ç«¯ç‚¹çš„颜色å³å¯¹é½æ—‹è½¬é€†æ—¶é’ˆæ—‹è½¬ 90 度(_W)顺时针旋转 90 度(_C)旋转通é“旋转图层旋转路径旋转文字图层旋转 180 度(_1)旋转图åƒæ—‹è½¬å›¾å±‚或选区正在旋转...旋转信æ¯åœ†è§’切å˜(_H)显示网格(_H)收缩(_H)...ç©—æ•°(_P)交æ¢é¢œè‰²(_W)ä¿å­˜å³ç«¯é¢œè‰²åˆ°(_V)ä½æ ·å¹³å‡ä½æ ·åˆå¹¶é¥±å’Œåº¦ï¼šé¥±å’Œåº¦ä¿å­˜å°†â€œ%sâ€ä¿å­˜ä¸º POV-Rayä¿å­˜æ›²çº¿å°†å‡ºé”™è®°å½•ä¿å­˜åˆ°æ–‡ä»¶ä¿å­˜å›¾åƒçŽ°åœ¨ä¿å­˜è¾“入设备设置(_N)现在ä¿å­˜å¿«æ·é”®(_N)ä¿å­˜è‰²é˜¶ä¿å­˜å·¥å…·é€‰é¡¹çŽ°åœ¨ä¿å­˜çª—å£ä½ç½®(_N)将所有错误写入文件(_A)...将选区写入文件(_S)...å¦å­˜ä¸º(_A)...ä¿å­˜å‰¯æœ¬(_Y)...ä¿å­˜å›¾åƒçš„副本ä¿å­˜æ‰€æœ‰é”™è¯¯ä¿å­˜ä¸º POV-Ray(_P)...å¦å­˜ä¸ºæ¨¡æ¿(_T)...GIMP 退出时ä¿å­˜å·²æ”¹å˜çš„å¿«æ·é”®ã€‚将曲线设置ä¿å­˜åˆ°æ–‡ä»¶ä¸­ä¿å­˜è®¾å¤‡çŠ¶æ€å°†æ¸å˜ä¿å­˜ä¸º POV-Ray将色阶设置ä¿å­˜åˆ°æ–‡ä»¶ä¸­é€‰é¡¹ä¿å­˜åˆ°...ä¿å­˜é€‰åŒºå°†é€‰åŒºä¿å­˜åˆ°é€šé“关闭图åƒâ€œ%sâ€å‰ä¿å­˜ä¿®æ”¹å—?GIMP 退出时ä¿å­˜ä¸»è¦çš„对è¯æ¡†çš„ä½ç½®å’Œå¤§å°ã€‚ä¿å­˜åˆ°é€šé“(_C)å·²ä¿å­˜çš„选项正在ä¿å­˜â€œ%s†-ä¿å­˜â€œ%sâ€å¤±è´¥ï¼š - -%sä¿å­˜å›¾åƒé”¯é½¿æ³¢å¯ç¼©æ”¾ SVG 图åƒ(*.svg)缩放缩放通é“缩放图åƒç¼©æ”¾å›¾å±‚缩放路径缩放文字图层缩放图åƒç¼©æ”¾é¡¹ç›®ç¼©æ”¾æ¯” X:缩放比 Y:缩放比率:缩放图层或选区缩放缩放信æ¯å°†å›¾åƒç¼©æ”¾åˆ°æ‰€é€‰çš„大å°å°†ä½¿å®ƒå ç”¨æ¯”首选项对è¯æ¡†ä¸­â€œæœ€å¤§å›¾åƒå¤§å°â€æ‰€é…置的更多内存(当å‰ä¸º %s)。将图åƒç¼©æ”¾è‡³æ‚¨é€‰æ‹©çš„大å°ä¼šä½¿ä¸€äº›å›¾å±‚收缩至完全消失。正在缩放...剪刀掩蔽脚本文件夹脚本下å·ä¸‹å·(Alt)下å·(Control + Alt)下å·(Control)下å·(Shift + Alt)下å·(Shift + Control + Alt)下å·(Shift + Control)下å·(Shift)å·¦å·å·¦å·(Alt)å·¦å·(Control + Alt)å·¦å·(Control)å·¦å·(Shift + Alt)å·¦å·(Shift + Control + Alt)å·¦å·(Shift + Control)å·¦å·(Shift)å³å·å³å·(Alt)å³å·(Control + Alt)å³å·(Control)å³å·(Shift + Alt)å³å·(Shift + Control + Alt)å³å·(Shift + Control)å³å·(Shift)上å·ä¸Šå·(Alt)上å·(Control + Alt)上å·(Control)上å·(Shift + Alt)上å·(Shift + Control + Alt)上å·(Shift + Control)上å·(Shift)选择全选选择画笔文件夹按颜色选择选择颜色选择控制器事件动作选择环境文件夹选择文件类型(%s)(_T)选择字体文件夹选择æ¸å˜æ–‡ä»¶å¤¹é€‰æ‹©æ¨¡å—文件夹全ä¸é€‰é€‰æ‹©è‰²æ¿æ–‡ä»¶å¤¹é€‰æ‹©å›¾æ¡ˆæ–‡ä»¶å¤¹é€‰æ‹©æ’件文件夹按选择è¦ä¿®æ”¹çš„色系选择è¦ä¿®æ”¹çš„范围选择脚本文件夹选择æ¥æºé€‰æ‹©äº¤æ¢æ–‡ä»¶å¤¹é€‰æ‹©ä¸»é¢˜æ–‡ä»¶å¤¹é€‰æ‹©ä¸»é¢˜é€‰æ‹©ä¸»é¢˜æ–‡ä»¶å¤¹é€‰æ‹©ç¼©æ”¾æ¯”率选择底端图层(_B)选择自定义颜色(_C)...选择åŽä¸€å›¾å±‚(_N)选择å‰ä¸€å›¾å±‚(_P)选择顶端图层(_T)全选按颜色选择选择邻近的区域选择自定义画布衬垫的颜色选择椭圆区域选择手画的区域全ä¸é€‰é€‰æ‹©è‰²æ¿æ–‡ä»¶é€‰æ‹©çŸ©å½¢åŒºåŸŸæŒ‰é¢œè‰²é€‰æ‹©åŒºåŸŸä»Žå›¾åƒä¸­é€‰æ‹©å½¢çŠ¶é€‰æ‹©äº¤æ¢ç›®å½•é€‰æ‹©å¤åˆ¶ -选中的段的次数。选择å¤åˆ¶æ‰€æœ‰ -选中的段的次数。选择等分切割所有 -选中的段的份数。选择等分切割 -选中的段的份数。选择é€æ˜ŽåŒºåŸŸé€‰æ‹© Web æµè§ˆå™¨é€‰åŒºåˆ°è·¯å¾„(_O)选区选区编辑器选区编辑器èœå•é€‰åŒºè’™æ¿é€‰æ‹©å·¥å…·è¿‡ç¨‹é€‰åŒºè’™æ¿é€‰åŒºåˆ°è·¯å¾„(高级)(_A)选区到路径选区:选区:åˆå¹¶é€‰åŒºï¼šç›¸äº¤é€‰åŒºï¼šæ›¿ä»£é€‰åŒºï¼šå‡åŽ»çµæ•åº¦è®¾ç½®ç”»å¸ƒè¡¬åž«çš„颜色设置通é“颜色设置通é“ä¸é€æ˜Žåº¦è®¾ç½®é¢œè‰²è¡¨è®¾ç½®è‡ªå®šä¹‰ç”»å¸ƒè¡¬åž«çš„颜色设置图åƒç”»å¸ƒå¤§å°è®¾ç½®å›¾åƒæ‰“å°åˆ†è¾¨çŽ‡è®¾ç½®é¡¹ç›®å”¯ä¸€é“¾æŽ¥è®¾ç½®é¡¹ç›®å”¯ä¸€å¯è§è®¾ç½®å›¾å±‚边界大å°ä»¥æ–‡å­—定åå­—(_T)设置ä¸é€æ˜Žåº¦è®¾ä¸ºèƒŒæ™¯è‰²è®¾ä¸ºå‰æ™¯è‰²è®¾ç½®é¡¹ç›®é“¾æŽ¥è®¾ç½®å›¾å±‚模å¼è®¾ç½®å›¾å±‚ä¸é€æ˜Žåº¦è®¾ç½®ä¿æŒé€æ˜Žè®¾ç½®æ¯å¹…图åƒç”¨äºŽä¿å­˜æ’¤é”€å †æ ˆä¸­çš„æ“作的内存上é™ã€‚与此设置无关,撤销æ“作至少å¯ä»¥è¾¾åˆ°æŒ‡å®šçš„撤销次数。设置帮助系统所使用的æµè§ˆå™¨ã€‚设置画布使用的衬垫颜色,如果衬垫模å¼è®¾ä¸ºè‡ªå®šä¹‰é¢œè‰²çš„è¯ã€‚设置è¦ä½¿ç”¨å¤–部 Web æµè§ˆå™¨ã€‚å¯ä»¥æ˜¯ç»å¯¹è·¯å¾„或者是从用户的 PATH 中æœç´¢çš„å¯æ‰§è¡Œç¨‹åºçš„å字。如果命令å«æœ‰â€œ%sâ€ï¼Œå®ƒå°†è¢«æ›¿æ¢ä¸º URL,å¦åˆ™ URL 将以空格分隔的形å¼æŽ¥åœ¨å‘½ä»¤ä¹‹åŽã€‚设置æ’值计算的等级,用于缩放和其它å˜æ¢æ“作。设置图åƒä¸­é€æ˜Žéƒ¨åˆ†çš„显示行为设置å…许撤销的æ“作的最å°æ•°ç›®ã€‚åªè¦è¿˜æ²¡æœ‰è¾¾åˆ°æ’¤é”€å¤§å°çš„é™åˆ¶ï¼Œå°±å¯å·²ä¿å­˜æ›´å¤šçš„撤销æ“作。设置 GIMP 将使用的光标模å¼ã€‚设置监视器的水平分辨率,以æ¯è‹±å¯¸çš„点数为å•ä½ã€‚如果设置为 0 åˆ™å¼ºåˆ¶å‘ X æœåŠ¡å™¨æŸ¥è¯¢æ°´å¹³å’Œåž‚直分辨率信æ¯ã€‚设置监视器的垂直分辨率,以æ¯è‹±å¯¸çš„点数为å•ä½ã€‚如果设置为 0 åˆ™å¼ºåˆ¶å‘ X æœåŠ¡å™¨æŸ¥è¯¢æ°´å¹³å’Œåž‚直分辨率信æ¯ã€‚设置 GIMP 将使用的光标åƒç´ æ ¼å¼ã€‚设置新创建的对è¯æ¡†ä¸­å›¾å±‚和通é“的预览大å°ã€‚设置用于表示é€æ˜Žçš„棋盘格å­çš„大å°ã€‚设置图åƒçª—å£å³ä¸‹è§’的导航预览的大å°ã€‚设置撤销历å²çš„预览大å°ã€‚设置打开对è¯æ¡†ä¸­æ˜¾ç¤ºçš„缩略图大å°ã€‚请注æ„如果图层预览已ç¦ç”¨ï¼ŒGIMP 将无法创建缩略图。设置交æ¢æ–‡ä»¶çš„ä½ç½®ã€‚GIMP 使用基于平铺的内存分é…机制。交æ¢æ–‡ä»¶ç”¨ä½œæ–¹ä¾¿å¿«æ·åœ°ç”¨å¹³é“ºç‰‡äº¤æ¢åˆ°ç£ç›˜ä¸­ç„¶åŽå›žæ”¶ã€‚需è¦æ³¨æ„的是当 GIMP 处ç†å¤§çš„图åƒæ—¶èƒ½å¾ˆå¿«åœ°ä½¿äº¤æ¢æ–‡ä»¶å˜å¾—很大,而且当交æ¢æ–‡ä»¶æ‰€åœ¨çš„目录是通过 NFS 加载时会使程åºå˜å¾—æžä¸ºç¼“慢。由于这些原因,也许最好是将您地交æ¢æ–‡ä»¶æ”¾åˆ°"/tmp"目录。设置临时存储目录。GIMP è¿è¡Œè¿‡ç¨‹ä¸­ç”Ÿæˆçš„文件将出现在这里。大多数文件在 GIMP 退出以åŽå°†æ¶ˆå¤±ï¼Œä½†æ˜¯ä¸ªåˆ«æ–‡ä»¶å¯èƒ½ä¼šç•™ä¸‹æ¥ï¼Œå› æ­¤æœ€å¥½ä¸è¦æŠŠè¿™ä¸ªç›®å½•ä¸Žåˆ«çš„用户共享。设置图åƒçª—å£çŠ¶æ€æ æ‰€æ˜¾ç¤ºçš„文字。设置图åƒçª—å£æ ‡é¢˜æ‰€æ˜¾ç¤ºçš„文字。指定 GIMP 是å¦åº”该创建图层和通é“的预览。在图层和通é“对è¯æ¡†ä¸­æ˜¾ç¤ºé¢„览是ä¸é”™çš„,但是当图åƒå¾ˆå¤§çš„时候将会使速度å˜æ…¢ã€‚阴影类型阴暗形状形状:形状(尖角)形状(涟漪)形状(çƒçŠ¶)é”化é”化通é“é”化选区切å˜åˆ‡å˜é‡ X:切å˜é‡ Y:切å˜å›¾å±‚或选区切å˜ä¿¡æ¯æ­£åœ¨åˆ‡å˜...短划快æ·é”®å¿«æ·é”®â€œ%1$sâ€å·²è¢«â€œ%3$sâ€ç¾¤ç»„的“%2$sâ€å ç”¨ã€‚显示图层蒙æ¿æ˜¾ç¤ºæ ‡å°º(_U)显示状æ€æ (_T)显示滚动æ¡(_B)显示å‚考线(_G)显示图层边界(_L)显示èœå•æ (_M)显示选区(_S)显示画笔轮廓(_B)显示背景色和背景色(_F)显示å‚考线(_G)显示图层边界(_L)显示èœå•æ (_M)显示标尺(_R)显示活动画笔ã€å›¾æ¡ˆå’Œæ¸å˜(_B)显示活动图åƒ(_I)显示网格(_D)显示帮助按钮(_B)显示图åƒå¤§å°æ˜¾ç¤ºäº’动边界显示内存使用状况显示èœå•åŠ©è®°ç¬¦(选择键)(_M)显示涂画工具光标(_T)显示选区(_E)显示状æ€æ (_T)显示滚动æ¡(_B)下次 GIMP å¯åŠ¨æ—¶æ˜¾ç¤ºæ示å¯åŠ¨æ—¶æ˜¾ç¤ºæ示(_S)显示工具æ示(_T)显示缩放百分比显示缩放比率通é“收缩选区收缩紧贴(_W)从图åƒè¾¹ç•Œæ”¶ç¼©æ”¶ç¼©è·ç¦»ç´§è´´å¤§å°å ç”¨å†…存大å°ï¼šç¼©ç•¥å›¾å¤§å°(_T):大å°ï¼šè·³è¿‡â€œ%sâ€ï¼šé”™è¯¯çš„ GIMP å议版本。å°å‡å°é¢„览光滑边缘平滑涂抹涂抹图åƒå¸é™„到å‚考线(_A)å¸é™„到网格(_P)柔光实线æºé—´è·é—´è·ï¼šç¨€ç–点特殊文件指定如何去画图åƒå››å‘¨çš„区域。选区轮廓蚂èšçº¿çš„速度。该值以毫秒(时间越短速度越快)为å•ä½ã€‚速度:çƒçŠ¶(下é™)(_D)çƒçŠ¶(上å‡)(_N)穗数:螺旋(逆时针)螺旋(顺时针)分割等分切割æ¸å˜æ®µç­‰åˆ†åˆ‡å‰²æ¸å˜æ®µç­‰åˆ†åˆ‡å‰²æ®µç­‰åˆ†åˆ‡å‰²æ®µ(_U)...在中点处分割段(_M)等分切割段等分切割段(_U)...在中点处分割段(_M)正方状æ€å’Œæ–‡å­—(_A)堆栈(_K)标准正在å¯åŠ¨æ‰©å±•æ­£åœ¨å¯åŠ¨æ‰©å±•ï¼šâ€œ%s†-状æ€ï¼šé™æ€å½©è‰²é™æ€ç°åº¦çŠ¶æ€å’Œæ述状æ€å’Œæ–‡å­—标准å差:点刻勾画路径(_K)勾画路径(_K)...勾画通é“勾画路径勾画选区勾画线æ¡å‹¾ç”»è·¯å¾„按上次的值勾画路径勾画路径...按上次的值勾画选区勾画选区...使用涂画工具进行勾画å‡åŽ»ä»Žå½“å‰é€‰åŒºä¸­å‡åŽ»è¶…级采样交æ¢æ–‡ä»¶å¤¹ï¼šå·¥å…·(_O)文字(_X)文字工具(_X)临时文件夹:模æ¿æ¨¡æ¿èœå•ä¸´æ—¶è¿‡ç¨‹æ­£åœ¨ç»“æŸæ’件:“%s†-文字文字颜色文本编辑器文字图层文字已修改文字过程The GIMP您的安装中似乎没有 GIMP 帮助æµè§ˆå™¨æ’件。活动画笔。 -点击打开画笔对è¯æ¡†ã€‚活动æ¸å˜ã€‚ -点击打开æ¸å˜å¯¹è¯æ¡†ã€‚活动图åƒã€‚ -点击打开图åƒå¯¹è¯æ¡†ã€‚活动图案。 -点击打开图案对è¯æ¡†ã€‚网格的背景色;åªç”¨äºŽåŒè™šçº¿çº¿åž‹ã€‚批处ç†è§£æžç¨‹åºâ€œ%sâ€ä¸å¯ç”¨ï¼Œæ‰¹å¤„ç†æ¨¡å¼å·²è¢«ç¦ç”¨ã€‚所é…置的文件åç¼–ç æ— æ³•è½¬æ¢åˆ° UTF-8:%s - -请检查环境å˜é‡ G_FILENAME_ENCODING 的值。文件å“%sâ€æ— æ³•è½¬æ¢ä¸ºåˆæ³•çš„ URI: - -%s网格的å‰æ™¯è‰²ã€‚gimprc 用于ä¿å­˜ä¸ªäººå好设置,这些设置将影å“到 GIMP 的默认行为。æœç´¢ç”»ç¬”ã€è‰²æ¿ã€æ¸å˜ã€å›¾æ¡ˆã€æ’件以åŠæ¨¡å—的路径也å¯ä»¥åœ¨è¿™é‡Œè®¾ç½®ã€‚水平图åƒåˆ†è¾¨çŽ‡ã€‚您所选的图层是一个文字图层,但是它已被其它工具修改过。使用文字工具编辑此图层将放弃这些修改。 - -您å¯ä»¥ç¼–辑此图层或者从它的文字属性创建新的文字图层。ä¿å­˜æœ‰ GIMP 用户é…置的目录的å字无法转æ¢åˆ° UTF-8:%s - -多数å¯èƒ½æ˜¯æ‚¨çš„文件系统储存文件所用的编ç ä¸æ˜¯ UTF-8 而您å´æ²¡æœ‰å‘ŠçŸ¥ GLib 这一点。请设置环境å˜é‡ G_FILENAME_ENCODING。sessionrc 用于记录上一次您退出 GIMP 时所打开的对è¯æ¡†ã€‚您å¯ä»¥è®¾ç½® GIMP ,让它在ä¿å­˜çš„ä½ç½®ä¸Šé‡æ–°æ‰“开这些对è¯æ¡†ã€‚如果预览的文件å°äºŽè¿™é‡Œè®¾ç½®çš„大å°ï¼Œæ‰“开对è¯æ¡†ä¸­çš„缩略图将会自动更新。平铺缓存用作ä¿è¯ GIMP ä¸ä¼šåœ¨å†…存和ç£ç›˜é—´é¢‘ç¹åœ°è¯»å…¥æ•°æ®ã€‚设置一个高值会导致 GIMP 使用较少的交æ¢ç©ºé—´ï¼Œä½†ä¹Ÿä½¿å¾— GIMP 使用更多内存。相å的,一个低的缓存值会使 GIMP 使用更多的交æ¢ç©ºé—´å’Œè¾ƒå°‘的内存。éžç‚¹å¯¹ç‚¹æ¨¡å¼ä¸‹å标显示使用的å•ä½ã€‚unitrc 用于储存您的用户å•ä½æ•°æ®åº“。您å¯ä»¥å®šä¹‰é™„加的å•ä½ç„¶åŽå°±åƒä½¿ç”¨å†…置的å•ä½è‹±å¯¸ã€æ¯«ç±³ã€ç‚¹ã€æ´¾å¡é‚£æ ·ä½¿ç”¨å®ƒä»¬ã€‚这个文件在æ¯æ¬¡é€€å‡º GIMP 时都会被é‡å†™ã€‚垂直图åƒåˆ†è¾¨çŽ‡ã€‚åœé å¼çª—å£çš„窗å£ç±»åž‹æ示设置。这将影å“您的窗å£ç®¡ç†å™¨è£…饰和处ç†åœé å¼çª—å£çš„行为。工具箱的窗å£ç±»åž‹æ示设置。这将影å“您的窗å£ç®¡ç†å™¨è£…饰和处ç†å·¥å…·ç®±çš„行为。主题主题文件夹主题有 %d 幅图åƒä¿®æ”¹åŽè¿˜æ²¡ä¿å­˜ï¼šæ²¡æœ‰è¶³å¤Ÿå¤šçš„å¯è§å›¾å±‚用于å‘下åˆå¹¶ã€‚内存使用和速度之间总是互相牵制。在大多数情况下,GIMP 更注é‡é€Ÿåº¦è€Œä¸æ˜¯å†…存。然而,如果内存大å°å¾ˆå—é™åˆ¶ï¼Œè¯·å°è¯•å¯ç”¨è¯¥é€‰é¡¹ã€‚没有活动图层或通é“å¯ä»¥å¤åˆ¶ã€‚没有活动图层或通é“å¯ä»¥å‰ªåˆ‡ã€‚没有活动图层或通é“å¯ä»¥å‹¾ç”»æ²¡æœ‰æ´»åŠ¨å›¾å±‚或通é“å¯ä»¥å‹¾ç”»ã€‚有 1 幅图åƒä¿®æ”¹åŽè¿˜æ²¡ä¿å­˜ï¼šåº”该存在一个å«â€œ%sâ€çš„文件。请检查您的安装。解æžæ‚¨çš„“%sâ€æ–‡ä»¶æ—¶å‡ºé”™ã€‚默认值将被使用。您的é…置文件已被备份在“%sâ€ã€‚该文件收录了一些用于图åƒæ¨¡æ¿çš„标准媒介的尺寸。在这个文件夹中æœç´¢å›¾åƒæ¨¡æ¿ã€‚在这个文件夹中æœç´¢ç”¨æˆ·å®‰è£…的主题。这个文件夹用于储存您希望åªåœ¨ GIMP 中使用的字体。GIMP 在æœç´¢å­—体时除了检查系统的 GIMP 字体安装以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚åªæœ‰å½“您真的打算åªåœ¨ GIMP 中使用这些字体时æ‰ä½¿ç”¨è¯¥é¡¹ï¼Œå¦åˆ™æœ€å¥½å°†å®ƒä»¬æ”¾åœ¨å…¨å±€å­—体目录中。这个文件夹用于储存曲线工具的å‚数文件。这个文件夹用于储存色阶工具的å‚数文件。这个文件夹用于储存工具选项。这个文件夹用于储存用户创建和安装的脚本。GIMP 在æœç´¢è„šæœ¬æ—¶é™¤äº†æ£€æŸ¥ç³»ç»Ÿçš„ GIMP 脚本安装以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户创建的ã€ä¸´æ—¶çš„ã€æˆ–者其它éžç³»ç»Ÿæ”¯æŒçš„ DLL 模å—。GIMP 在åˆå§‹åŒ–阶段æœç´¢åŠ è½½æ¨¡å—的时候除了检查系统的 GIMP 模å—安装以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户创建的ã€ä¸´æ—¶çš„ã€æˆ–者其它éžç³»ç»Ÿæ”¯æŒçš„æ’件环境附加文件。GIMP 在æœç´¢æ’件环境修改文件时除了检查系统的 GIMP 环境文件夹以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户创建的ã€ä¸´æ—¶çš„ã€æˆ–者其它éžç³»ç»Ÿæ”¯æŒçš„æ’件。GIMP 在æœç´¢æ’件时除了检查系统的 GIMP æ’件安装以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户自定义的画笔。GIMP 在æœç´¢ç”»ç¬”时除了检查系统的 GIMP 画笔安装以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户自定义的æ¸å˜ã€‚GIMP 在æœç´¢æ¸å˜æ—¶é™¤äº†æ£€æŸ¥ç³»ç»Ÿçš„ GIMP æ¸å˜å®‰è£…以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户自定义的色æ¿ã€‚GIMP 在æœç´¢è‰²æ¿æ—¶é™¤äº†æ£€æŸ¥ç³»ç»Ÿçš„ GIMP 色æ¿å®‰è£…以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于储存用户自定义的图案。GIMP 在æœç´¢å›¾æ¡ˆæ—¶é™¤äº†æ£€æŸ¥ç³»ç»Ÿçš„ GIMP 图案安装以外还将æœç´¢è¿™ä¸ªæ–‡ä»¶å¤¹ã€‚这个文件夹用于暂时储存撤销缓冲区,å‡å°‘内存的å ç”¨ã€‚如果 GIMP 被éžæ­£å¸¸ç»ˆæ­¢ï¼Œæ–‡ä»¶å°†ä»¥ gimp<#>.<#> çš„å½¢å¼æ°¸è¿œç•™åœ¨è¿™ä¸ªç›®å½•ä¸­ã€‚这些文件对以åŽçš„ GIMP 会è¯æ²¡æœ‰ä»»ä½•ä½œç”¨ï¼Œå¯ä»¥å®‰å…¨åœ°åˆ æŽ‰ã€‚这个文件夹将包å«è®¸å¤šé‡è¦çš„文件。点击树中的一个文件或文件夹æ¥èŽ·å–选中项目的更多信æ¯ã€‚这是å‚考线和网格产生å¸é™„作用的åƒç´ è·ç¦»ã€‚该程åºåˆ†å‘的目的是为了其他人å¯ä»¥ä½¿ç”¨å®ƒï¼Œä½†æ˜¯æ²¡æœ‰ä»»ä½•ä¿è¯ï¼›ç”šè‡³æ²¡æœ‰ä»»ä½•å«è“„çš„ä¿è¯å®ƒå¯ä»¥ä½œä¸ºå•†å“或适用于æŸä¸€ç‰¹å®šç›®çš„。请查阅 GNU 通用公共许å¯è¯æ¥èŽ·å–更多的信æ¯ã€‚该程åºæ˜¯è‡ªç”±è½¯ä»¶ï¼›æ‚¨å¯ä»¥åœ¨è‡ªç”±è½¯ä»¶åŸºé‡‘会 GNU 通用公共许å¯è¯ç‰ˆæœ¬ 2 (或其åŽç»§ç‰ˆæœ¬)çš„æ¡æ¬¾ä¸‹é‡æ–°åˆ†å‘或修改它。此文本输入框é™åˆ¶åœ¨ %d 个字符之内。这个工具没有选项。该窗å£æ‰“开了 %d 页签,关闭该窗å£ä¹Ÿå°†å…³é—­æ‰€æœ‰çš„页签。阈值索引图层ä¸èƒ½è¿›è¡Œé˜ˆå€¼æ“作。阈值:缩略图 %d / %d平铺缓存大å°(_S):平铺缓存大å°ï¼šå€¾æ–œï¼šç»†å°æ ‡é¢˜å’ŒçŠ¶æ€åˆ°è·¯å¾„(_P)è¦ç¼–辑一个快æ·é”®è¯·é€‰æ‹©ç›¸åº”的行并输入一个新的加速键,或按 Backspace 清除玩具(_Y)切æ¢å¿«é€Ÿè’™æ¿åˆ‡æ¢å¿«é€Ÿè’™æ¿(_Q)太多错误消æ¯ï¼å·¥å…·é€‰é¡¹å·¥å…·é€‰é¡¹èœå•å·¥å…·åˆ‡æ¢ %s工具选项(_O)工具图标带交å‰çº¿çš„工具图标工具箱(_B)工具箱工具箱èœå•å·¥å…·å·¥å…·èœå•åƒæ¨¡ç³Šé€‰æ‹©å’Œæ²¹æ¼†æ¡¶å¡«å……等工具是基于一个ç§å­å¡«å……算法æ¥å¯»æ‰¾åŒºåŸŸçš„。ç§å­å¡«å……从一个åˆå§‹é€‰ä¸­çš„åƒç´ å¼€å§‹å¹¶å‘å„个方å‘推进,直到与åƒç´ åŽŸå§‹çš„颜色差别大于一个指定的阈值。该值就是默认的阈值。é€æ˜Ž(_A)转移 Alpha 到蒙æ¿å˜æ¢å˜æ¢é€šé“å˜æ¢æ–¹å‘å˜æ¢å›¾å±‚å˜æ¢è·¯å¾„å˜æ¢æ–‡å­—图层å˜æ¢å·¥å…·è¿‡ç¨‹å˜æ¢å›¾å±‚å˜æ¢è·¯å¾„å˜æ¢é€‰åŒºå˜æ¢å˜æ¢è¿‡ç¨‹æ­£åœ¨å˜æ¢...翻译者é€æ˜Žé€æ˜Žç±»åž‹(_T):三角波真彩色类型类型 %s请按新的加速键请按新的加速键,或按 Backspace 清除无法添加图层蒙æ¿ï¼Œå› ä¸ºå·²æœ‰ä¸€ä¸ªã€‚无法剪切或å¤åˆ¶ï¼Œå› ä¸ºé€‰æ‹©åŒºåŸŸä¸ºç©ºã€‚无法打开测试交æ¢æ–‡ä»¶ã€‚为了é¿å…æ•°æ®ä¸¢å¤±ï¼Œè¯·æ£€æŸ¥æ‚¨åœ¨é¦–选项中定义的交æ¢ç›®å½•çš„ä½ç½®ä»¥åŠæƒé™(当å‰ä¸ºâ€œ%sâ€)。无法打开交æ¢æ–‡ä»¶ã€‚Gimp å·²ç»ç”¨å°½å†…存并且无法使用交æ¢æ–‡ä»¶ã€‚您的图åƒçš„æŸäº›éƒ¨åˆ†å¯èƒ½ä¼šè¢«æŸå。请å°è¯•ä½¿ç”¨ä¸åŒçš„文件åä¿å­˜æ‚¨çš„工作,é‡æ–°å¯åŠ¨ Gimp 并检查您的首选项中交æ¢ç›®å½•çš„ä½ç½®ã€‚无法执行%s回调。相应的æ’件å¯èƒ½å·²å´©æºƒã€‚未定义撤销撤销历å²æ’¤é”€åŽ†å²(_H)å•ä½æœªçŸ¥æœªçŸ¥æ–‡ä»¶ç±»åž‹æœªçŸ¥ç±»åž‹çš„色æ¿æ–‡ä»¶ï¼š -%så¸è½½æœªå‘½å无标题默认使用“点对点â€(_D)使用动æ€å¿«æ·é”®(_D)使用 Web æµè§ˆå™¨æ›¿ä»£(_W)收缩选区时使用所有的å¯è§å›¾å±‚使用黑白(1ä½)色æ¿ä½¿ç”¨æ¸å˜ä¸­çš„颜色使用自定义色æ¿ä½¿ç”¨ä¿¡æ¯çª—å£ä½¿ç”¨ç½‘页优化色æ¿ç”¨æˆ·å®‰è£…日志用户界é¢å·¥å…·çª—å£äº®åº¦äº®åº¦ï¼šå‘é‡ mod版本 %s 作者版本:垂直第一æ¡ç½‘格线的垂直ä½ç§»ï¼›å¯ä»¥æ˜¯è´Ÿæ•°ã€‚网格的垂直间è·ã€‚很大很å°æŸ¥çœ‹ä»¥é˜µåˆ—æ–¹å¼æŸ¥çœ‹(_G)以列表方å¼æŸ¥çœ‹(_L)以阵列方å¼æŸ¥çœ‹ä»¥åˆ—表方å¼æŸ¥çœ‹è§†è§‰ç­‰çº§ï¼šè§†è§‰æ·±åº¦ï¼šè­¦å‘Šï¼šæ— æ³•åŠ è½½æ•°æ®ï¼š - -%s警告:无法ä¿å­˜æ•°æ®ï¼š - -%sWeb æµè§ˆå™¨Web æµè§ˆå™¨æ¬¢è¿Žæ¥åˆ° -The GIMP %d.%d 用户安装如果å¯ç”¨ï¼Œå¯¹è¯æ¡†å°†è‡ªåŠ¨è·Ÿéšæ‚¨å·¥ä½œçš„图åƒã€‚如果å¯ç”¨ï¼ŒGIMP 将在èœå•ä¸­æ˜¾ç¤ºåŠ©è®°ç¬¦ã€‚如果å¯ç”¨ï¼Œæ‰€æœ‰æ¶‚画工具都将显示当å‰ç”»ç¬”的轮廓预览。如果å¯ç”¨ï¼Œå½“对应的图åƒçª—å£èŽ·å¾—焦点时,图åƒå°†æˆä¸ºæ´»åŠ¨å›¾åƒã€‚这对使用“点击获å–焦点â€çš„窗å£ç®¡ç†å™¨æœ‰ç”¨ã€‚如果å¯ç”¨ï¼Œå¯¹è¯æ¡†ä¸­å°†æ˜¾ç¤ºä¸€ä¸ªåˆ°è¾¾ç›¸å…³å¸®åŠ©é¡µé¢çš„按钮。如果没有这个按钮,ä»ç„¶å¯ä»¥æŒ‰ F1 打开帮助页é¢ã€‚如果å¯ç”¨ï¼Œèœå•å¯è¢«æ’•ä¸‹ã€‚如果å¯ç”¨ï¼ŒæŒ‰ F1 将打开帮助æµè§ˆå™¨ã€‚如果å¯ç”¨ï¼Œå¦‚果图åƒè‡ªæ‰“开以æ¥æ²¡æœ‰è¢«ä¿®æ”¹ï¼ŒGIMP å°†ä¸ä¼šä¿å­˜ã€‚如果å¯ç”¨ï¼ŒGIMP 将为æ¯ä¸ªå›¾åƒè§†å›¾ä½¿ç”¨ä¸åŒçš„ä¿¡æ¯çª—å£ã€‚如果å¯ç”¨ï¼Œæ¯æ¬¡ç§»åŠ¨é¼ æ ‡çš„æ—¶å€™éƒ½å°†å‘ X æœåŠ¡å™¨æŸ¥è¯¢å½“å‰çš„é¼ æ ‡ä½ç½®ï¼Œè€Œä¸æ˜¯ä¾èµ–于ä½ç½®æ示。这æ„味ç€ç”¨å¤§çš„画笔涂画的时候将更加精确,ä¸è¿‡å¯èƒ½ä¹Ÿæ›´æ…¢ã€‚å常的是,在æŸäº› X æœåŠ¡å™¨ä¸Šå¯ç”¨è¯¥é€‰é¡¹å°†ä¼šåŠ å¿«æ¶‚画速度。如果å¯ç”¨ï¼Œå½“使用涂画工具时,光标将显示在图åƒä¸Šæ–¹ã€‚如果å¯ç”¨ï¼Œç½‘格将默认å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示网格â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œå‚考线将默认å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示å‚考线â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œå½“放大或缩å°æŸ¥çœ‹å›¾åƒæ—¶ï¼Œå›¾åƒçª—å£å¤§å°å°†è‡ªåŠ¨é‡ç½®ã€‚如果å¯ç”¨ï¼Œå½“图åƒå®žé™…大å°å‘生å˜åŒ–时,图åƒçª—å£å¤§å°å°†è‡ªåŠ¨é‡ç½®ã€‚如果å¯ç”¨ï¼Œå›¾å±‚边界将默认å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示图层边界â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œèœå•æ å°†é»˜è®¤å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示èœå•æ â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œæ ‡å°ºå°†é»˜è®¤å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示标尺â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œæ»šåŠ¨æ¡å°†é»˜è®¤å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示滚动æ¡â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œæ‰€æœ‰çš„工具都将使用选中的画笔。如果å¯ç”¨ï¼Œæ‰€æœ‰çš„工具都将使用选中的æ¸å˜ã€‚如果å¯ç”¨ï¼Œæ‰€æœ‰çš„工具都将使用选中的图案。如果å¯ç”¨ï¼Œé€‰åŒºå°†é»˜è®¤å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示选区â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼ŒçŠ¶æ€æ å°†é»˜è®¤å¯è§ã€‚这也å¯ä»¥é€šè¿‡â€œæŸ¥çœ‹->显示状æ€æ â€å‘½ä»¤è¿›è¡Œåˆ‡æ¢ã€‚如果å¯ç”¨ï¼Œå°†ç¡®ä¿å›¾åƒçš„æ¯ä¸ªç‚¹éƒ½å¯¹åº”å±å¹•ä¸Šçš„一个åƒç´ ã€‚如果å¯ç”¨ï¼Œå°†ç¡®ä¿æ‰“开文件以åŽå›¾åƒå®Œæ•´å¯è§ï¼Œå¦åˆ™å°†æŒ‰ 1:1 的比例æ¥æ˜¾ç¤ºã€‚如果å¯ç”¨ï¼Œæ‚¨åªè¦æŒ‰ä¸€ä¸ªé”®ç›˜ç»„åˆå°±å¯ä»¥å³æ—¶æ”¹å˜çªå‡ºæ˜¾ç¤ºçš„èœå•é¡¹çš„å¿«æ·é”®ã€‚白色åªèƒ½å¯¹ RGB 颜色的图层进行白平衡æ“作。宽度宽度:窗å£ç®¡ç†çª—å£ç®¡ç†å™¨æ示窗å£ä½ç½®æ­£åœ¨å†™å…¥â€œ%s†-XXCF 错误:é‡åˆ°ä¸æ”¯æŒçš„ XCF 文件版本 %dXCF 警告:版本 0 çš„ XCF æ–‡ä»¶æ ¼å¼ -ä¸èƒ½æ­£ç¡®çš„ä¿å­˜ç´¢å¼•é¢œè‰²è¡¨ã€‚ -用ç°åº¦é¢œè‰²è¡¨å–代。Y黄色黄色:您正试图创建一幅大å°ä¸º %s 的图åƒã€‚您å¯ä»¥å°†å¯åœé çš„对è¯æ¡†æ”¾åœ¨è¿™é‡Œã€‚您应该已ç»è·Ÿæœ¬ç¨‹åºä¸€èµ·æ”¶åˆ°ä¸€ä»½ GNU 通用公共许å¯è¯ï¼›å¦‚果没有,请写信至:Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.您需è¦é‡æ–°å¯åŠ¨ GIMP 以使下列改å˜ç”Ÿæ•ˆï¼šæ‚¨çš„输入设备设置将在下次您å¯åŠ¨ GIMP 的时候é‡ç½®åˆ°é»˜è®¤å€¼ã€‚您的快æ·é”®å°†åœ¨ä¸‹æ¬¡æ‚¨å¯åŠ¨ GIMP 的时候é‡ç½®åˆ°é»˜è®¤å€¼ã€‚您的窗å£è®¾ç½®å°†åœ¨ä¸‹æ¬¡æ‚¨å¯åŠ¨ GIMP 的时候é‡ç½®åˆ°é»˜è®¤å€¼ã€‚缩放和改å˜å¤§å°è¡Œä¸ºç¼©æ”¾ 1:1完整显示放大缩å°ç¼©æ”¾æ¯”率缩放比率:完整显示(_A)放大(_I)缩å°(_O)完整显示缩放因å­ï¼š%d:1当窗å£å¤§å°æ”¹å˜æ—¶ç¼©æ”¾å›¾åƒæ”¾å¤§æ”¾å¤§å’Œç¼©å°ç¼©å°ç¼©æ”¾ï¼š[ åŽŸå§‹å›¾åƒ ]关于(_A)获å–(_A)添加背景色(_A)添加å‰æ™¯è‰²(_A)添加页签(_A)添加到选区(_A)高级选项(_A)喷枪(_A)全部(_A)固定图层(_A)边缘平滑(_A)ä»»æ„旋转(_A)...艺术(_A)宽高比(_A)自动(_A)è“(_B)背景色(_B)背景色(_B):黑色(å…¨é€æ˜Ž)(_B)段混和函数(_B)选区的混和函数(_B)模糊(_B)亮度(_B):画笔(_B)画笔(_B)画笔ã€å›¾æ¡ˆå’Œæ¸å˜(_B)油漆桶填充(_B)缓冲区(_B)按颜色(_B)按颜色选择(_B)é’(_C)帽盖风格(_C):通é“(_C)清除错误(_C)清除撤销历å²(_C)克隆(_C)关闭(_C)关闭页签(_C)云彩(_C)颜色工具(_C)颜色(_C)é…置颜色和ä¸é€æ˜Žåº¦(_C)...环境(_C)环境帮助(_C)å¤åˆ¶(_C)命åå¤åˆ¶(_C)...从模æ¿åˆ›å»ºå›¾åƒ(_C)...剪è£å’Œæ”¹å˜å¤§å°(_C)剪è£å›¾åƒ(_C)曲线(_C)曲线(_C)...深色方格的颜色(_D)默认颜色(_D)删除画笔(_D)删除缓冲区(_D)删除通é“(_D)删除颜色(_D)删除æ¸å˜(_D)...删除图åƒ(_D)删除图层(_D)删除色æ¿(_D)删除路径(_D)删除图案(_D)...删除已ä¿å­˜çš„选项(_D)删除段(_D)删除选中区域(_D)删除模æ¿(_D)去色(_D)漂移页签(_D)设备状æ€(_D)对è¯æ¡†(_D)放弃修改(_D)放弃文字信æ¯(_D)扭曲(_D)点对点(_D)å¤åˆ¶(_D)编辑(_E)编辑画笔(_E)...编辑通é“属性(_E)...编辑颜色(_E)...编辑æ¸å˜(_E)...编辑图层属性(_E)...编辑色æ¿(_E)...编辑路径属性(_E)...编辑图案(_E)...编辑模æ¿(_E)...椭圆选择(_E)å¯ç”¨å›¾å±‚和通é“预览(_E)巨大(_E)色调å‡åŒ–(_E)æ©¡çš®(_E)å‰æ™¯è‰²(_F)文件(_F)å¡«å……(_F):图åƒé€‚é…于窗å£(_F)平整图åƒ(_F)翻转(_F)翻转段(_F)翻转选区(_F)浮动(_F)字体(_F)字体(_F)å‰æ™¯è‰²(_F):自由选择(_F)绿(_G)通用(_G)æžå¤§(_G)æ¸å˜(_G)æ¸å˜(_G)ç°åº¦(_G)图层的ç°åº¦å‰¯æœ¬(_G)增长(_G)...å‚考线(_G)硬度(_H)帮助(_H)æ°´å¹³(_H):色调(_H):庞大(_H)图标(_I)图标(_I):图åƒ(_I)图åƒ(_I)导入(_I)导入色æ¿(_I)...索引(_I)...ä¿¡æ¯çª—å£(_I)与选区相交(_I)å转(_I)接åˆé£Žæ ¼(_J):大(_L)图层(_L)图层(_L)图层ã€é€šé“和路径(_L)左端点(_L)左邻的å³ç«¯ç‚¹(_L)色阶(_L)...浅色方格的颜色(_L)光线效果(_L)亮度(_L):线风格(_L)线性(_L)链接(_L)左端颜色加载自(_L)é™ä½Žé€šé“(_L)é™ä½Žå›¾å±‚(_L)é™ä½Žè·¯å¾„(_L)å“(_M)手工(_M)映射(_M)è’™æ¿(_M)è’™æ¿åˆ°é€‰åŒº(_M)最大颜色数é‡(_M):测é‡(_M)中(_M)åˆå¹¶è‰²æ¿(_M)...åˆå¹¶å¯¼å…¥çš„路径(_M)ç§»æ¤ GIMP 2.0 的用户设置(_M)æ‚项(_M)斜接é™åˆ¶(_M):模å¼(_M)模å—管ç†å™¨(_M)移动(_M)åå­—(_N):自然(_N)新建画笔(_N)新建通é“(_N)新建通é“(_N)...新建路径(_N)...新建æ¸å˜(_N)新建图层(_N)新建图层(_N)...新建色æ¿(_N)新建路径(_N)新建路径(_N)...新建图案(_N)新建模æ¿(_N)...新建视图(_N)新建(_N)...åŽä¸€æ¡æ示(_N)噪音(_N)æ— (_N)ä½ç§»(_O)...ä¸é€æ˜Žåº¦(_O)打开图åƒ(_O)打开(_O)...衬垫颜色(_P)涂画工具(_P)画笔(_P)色æ¿(_P)粘贴(_P)粘贴缓冲区(_P)命å粘贴(_P)...路径(_P)图案(_P)é€è§†(_P)海报效果(_P)...首选项(_P)预览(_P)预览大å°(_P)å‰ä¸€æ¡æ示(_P)打å°å¤§å°(_P)...é€è§†(_P)快速蒙æ¿æ¿€æ´»(_Q)退出(_Q)红(_R)RGB(_R)åŠå¾„(_R)å‡é«˜é€šé“(_R)å‡é«˜å›¾å±‚(_R)å‡é«˜è·¯å¾„(_R)å‡é«˜è§†å›¾(_R)å‡é«˜æˆ–打开图åƒ(_R)é‡æ–°åˆ†é…å¿«æ·é”®(_R)矩形选择(_R)é‡åš(_R)é‡åš %s(_R)刷新画笔(_R)刷新æ¸å˜(_R)刷新色æ¿(_R)刷新图案(_R)从最终色æ¿ä¸­åˆ é™¤æ²¡æœ‰è¢«ä½¿ç”¨çš„颜色(_R)绘制(_R)替æ¢(_R)å¤åˆ¶æ®µ(_R)...å¤åˆ¶é€‰åŒº(_R)...é‡æ–°æ‰«æ字体列表(_R)é‡ç½®é¡ºåºåŠå¯è§å±žæ€§(_R)é‡ç½®å·²ä¿å­˜çš„输入设备设置到默认值(_R)é‡ç½®å·²ä¿å­˜çš„å¿«æ·é”®åˆ°é»˜è®¤ç½®(_R)é‡ç½®å·²ä¿å­˜çš„窗å£ä½ç½®åˆ°é»˜è®¤å€¼(_R)选项æ¢å¤è‡ª(_R)å³ç«¯ç‚¹(_R)å³é‚»çš„左端点(_R)旋转(_R)饱和度(_S):ä¿å­˜(_S)ä¿å­˜å·¦ç«¯é¢œè‰²åˆ°(_S)选项ä¿å­˜åˆ°(_S)退出时ä¿å­˜è¾“入设备设置(_S)退出时ä¿å­˜å¿«æ·é”®(_S)退出时ä¿å­˜çª—å£ä½ç½®(_S)缩放(_S)缩放图åƒ(_S)...缩放图层(_S)...缩放导入的路径使之与图åƒåŒ¹é…(_S)选择(_S)选区(_S)选区编辑器(_S)选择工具(_S)形状(_S)é”化(_S)显示图åƒé€‰åŒº(_S)在工具箱中显示(_S)正弦(_S)å°(_S)涂抹(_S)å¸é™„è·ç¦»(_S):勾画选区(_S)勾画选区(_S)...从选区中å‡åŽ»(_S)页签风格(_T)模æ¿(_T):模æ¿(_T)文字(_T)阈值(_T)...细å°(_T)æ¯æ—¥æ示(_T)工具(_T)工具(_T)转移图层的 Alpha 通é“(_T)å˜æ¢(_T)å˜æ¢å·¥å…·(_T)撤销(_U)撤销 %s(_U)åž‚ç›´(_V):查看(_V)å¯è§(_V)网页(_W)è¦ä½¿ç”¨çš„ Web æµè§ˆå™¨(_W):白色(å…¨ä¸é€æ˜Ž)(_W)白平衡(_W)宽度(_W):环绕(_W)X 分辨率(_X):X(_X):扩展(_X)黄(_Y)Y 分辨率(_Y):Y(_Y):缩放(_Z)缩放(_Z) (%s)色副本dpi期待布尔值 %s 为“yesâ€æˆ–“noâ€ï¼Œä½†å¾—到“%sâ€ä¸¥é‡è§£æžé”™è¯¯ç°åº¦ç°åº¦-空英寸英寸索引索引-空无效的 UTF-8 字符串图标类型“%ldâ€æ— æ•ˆ%2$s 的值“%1$ldâ€æ— æ•ˆå›¾æ ‡ç±»åž‹â€œ%sâ€æ— æ•ˆ%2$s 的值“%1$sâ€æ— æ•ˆæ¯«ç±³æ¯«ç±³ 1 分钟n/a百分点派å¡æ´¾å¡åƒç´ åƒç´ åƒç´ /%aåƒç´ /%s点点 1 秒钟tips-locale:zh_CNYuheng Xie -Funda Wang -Cai Qian%s 的值ä¸æ˜¯æœ‰æ•ˆçš„ UTF-8 字符串解æžâ€œ%sâ€æ—¶ï¼š%s \ No newline at end of file diff -uraN gimp-2.2.8/po/zh_CN.po gimp-2.2.9/po/zh_CN.po --- gimp-2.2.8/po/zh_CN.po 2005-04-09 21:46:24.000000000 +0200 +++ gimp-2.2.9/po/zh_CN.po 2005-08-15 12:07:06.000000000 +0200 @@ -1,6 +1,6 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. -# Yuheng Xie , 2001-2004. +# Yuheng Xie , 2001-2005. # Funda Wang , 2003. # msgid "" @@ -8,7 +8,7 @@ "Project-Id-Version: gimp\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2005-01-30 14:37+0100\n" +"PO-Revision-Date: 2005-08-10 17:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" "MIME-Version: 1.0\n" @@ -4298,14 +4298,12 @@ msgstr "涂画" #: app/core/core-enums.c:1061 app/core/core-enums.c:1102 -#, fuzzy msgid "Attach parasite" -msgstr "æ¢å¤å›¾åƒ" +msgstr "添加寄生物" #: app/core/core-enums.c:1062 app/core/core-enums.c:1103 -#, fuzzy msgid "Remove parasite" -msgstr "删除路径" +msgstr "删除寄生物" #: app/core/core-enums.c:1063 msgid "Import paths" @@ -4476,7 +4474,7 @@ #: app/core/gimp.c:852 msgid "Parasites" -msgstr "" +msgstr "寄生物" #. initialize the document history #: app/core/gimp.c:876 @@ -4956,14 +4954,12 @@ msgstr "改å˜å›¾åƒå•ä½" #: app/core/gimpimage.c:2177 -#, fuzzy msgid "Attach Parasite to Image" -msgstr "æ¢å¤å›¾åƒ" +msgstr "添加寄生物到图åƒ" #: app/core/gimpimage.c:2210 -#, fuzzy msgid "Remove Parasite from Image" -msgstr "æ¢å¤å›¾åƒ" +msgstr "从图åƒåˆ é™¤å¯„生物" #: app/core/gimpimage.c:2678 msgid "Add Layer" @@ -5147,15 +5143,15 @@ #: app/core/gimpitem.c:1091 msgid "Attach Parasite" -msgstr "" +msgstr "添加寄生物" #: app/core/gimpitem.c:1101 msgid "Attach Parasite to Item" -msgstr "" +msgstr "添加寄生物到项目" #: app/core/gimpitem.c:1140 app/core/gimpitem.c:1147 msgid "Remove Parasite from Item" -msgstr "" +msgstr "从项目删除寄生物" #: app/core/gimplayer-floating-sel.c:98 msgid "Remove Floating Selection" @@ -5462,7 +5458,7 @@ #: app/dialogs/about-dialog.c:51 msgid "Translation by" -msgstr "翻译者" +msgstr "翻译人员" #. Translators: insert your names here, separated by newline #. we'd prefer just the names, please no email addresses. @@ -5475,7 +5471,7 @@ #: app/dialogs/about-dialog.c:59 msgid "Contributions by" -msgstr "贡献者" +msgstr "贡献人员" #: app/dialogs/about-dialog.c:153 msgid "About The GIMP" @@ -7372,7 +7368,7 @@ #: app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" -msgstr "" +msgstr "状æ€æ æ–‡å­—周围斜é¢çš„风格" #: app/display/gimpstatusbar.c:218 msgid "Cancel" @@ -7663,7 +7659,7 @@ #: app/pdb/internal_procs.c:173 msgid "Parasite procedures" -msgstr "" +msgstr "寄生物过程" #: app/pdb/internal_procs.c:182 msgid "Pattern UI" @@ -7888,6 +7884,10 @@ "Some text properties may be wrong. Unless you want to edit the text layer, " "you don't need to worry about this." msgstr "" +"解æžå›¾å±‚“%sâ€çš„文字寄生物时é‡åˆ°é—®é¢˜ï¼š\n" +"%s\n" +"\n" +"æŸäº›æ–‡å­—属性å¯èƒ½æœ‰é”™ã€‚除éžæ‚¨è¦ç¼–辑的是文字图层,å¦åˆ™ä¸å¿…担心。" #: app/tools/tools-enums.c:25 msgid "Pick only" @@ -10353,11 +10353,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 "请确认èœå• XML 文件已正确安装。" #: app/widgets/gimpundoeditor.c:255 msgid "[ Base Image ]" @@ -10634,1449 +10634,3 @@ #: data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "图åƒç¼–辑器" - -#~ msgid "Keep aspect ratio" -#~ msgstr "ä¿æŒå®½é«˜æ¯”" - -#~ msgid "Y:" -#~ msgstr "Y:" - -#~ msgid "Transformations do not work on layers that contain layer masks." -#~ msgstr "ä¸èƒ½å¯¹å¸¦æœ‰è’™æ¿çš„图层进行å˜æ¢æ“作。" - -#~ msgid "Main Keyboard" -#~ msgstr "主键盘" - -#~ msgid "Main Mouse Wheel" -#~ msgstr "主鼠标滚轮" - -#~ msgid "Resize Error: Both width and height must be greater than zero." -#~ msgstr "改å˜å¤§å°é”™è¯¯ï¼šå®½åº¦å’Œé«˜åº¦éƒ½å¿…须大于零。" - -#~ msgid "Scale Error: Both width and height must be greater than zero." -#~ msgstr "缩放错误:宽度和高度都必须大于零。" - -#~ msgid "C_enter" -#~ msgstr "中心(_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 "缩放比率:" - -#, fuzzy -#~ msgid "Y ratio:" -#~ msgstr "缩放比率:" - -#~ 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 "å六进制值(_X):" - -#, 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 "ä½ç½®é¢œè‰²æŠ–动" - -#~ 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 "" -#~ "您正试图将一幅带有 alpha 通é“的图åƒä»Ž RGB 或ç°åº¦è½¬æ¢åˆ°ç´¢å¼•ã€‚\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 "" -#~ "找ä¸åˆ° GIMP 帮助æµè§ˆå™¨è¿‡ç¨‹ã€‚å¯èƒ½ç”±äºŽæ‚¨æ²¡æœ‰å®‰è£… GtkHtml2 因而它没有被编译。" - -#~ msgid "Could not start GIMP Help Browser" -#~ msgstr "无法å¯åŠ¨ GIMP 帮助æµè§ˆå™¨" - -#~ msgid "Internal" -#~ msgstr "内置" - -#~ msgid "Black" -#~ msgstr "黑色" - -#~ msgid "Move Floating Layer" -#~ msgstr "移动浮动图层" - -#~ msgid "Changes were made to '%s'." -#~ msgstr "“%sâ€å·²ä¿®æ”¹ã€‚" - -#~ msgid "Unsaved changes will be lost." -#~ msgstr "未ä¿å­˜çš„修改将会丢失。" - -#~ msgid "Select Custom Palette" -#~ msgstr "选择自定义色æ¿" - -#~ msgid "Light Checks" -#~ msgstr "浅色方格" - -#~ msgid "Mid-Tone Checks" -#~ msgstr "中等深浅的方格" - -#~ msgid "Dark Checks" -#~ msgstr "深色方格" - -#~ msgid "White Only" -#~ msgstr "仅白色" - -#~ msgid "Gray Only" -#~ msgstr "ä»…ç°è‰²" - -#~ msgid "Black Only" -#~ msgstr "仅黑色" - -#~ msgid "Configure input devices" -#~ msgstr "é…置输入设备" - -#~ msgid "" -#~ "WARNING:\n" -#~ "Too many open message dialogs.\n" -#~ "Messages are redirected to stderr." -#~ msgstr "" -#~ "警告:\n" -#~ "太多打开的消æ¯å¯¹è¯æ¡†ã€‚\n" -#~ "消æ¯å·²è¢«é‡å®šå‘至标准出错输出。" - -#, fuzzy -#~ msgid "RGB color" -#~ msgstr "RGB 颜色" - -#, fuzzy -#~ msgid "Indexed color" -#~ msgstr "索引颜色" - -#, fuzzy -#~ msgid "RGB-alpha" -#~ msgstr "RGB-Alpha" - -#, fuzzy -#~ msgid "Grayscale-alpha" -#~ msgstr "ç°åº¦-Alpha" - -#, fuzzy -#~ msgid "Indexed-alpha" -#~ msgstr "索引-Alpha" - -#~ msgid "Clear Saved Keyboard Shortcuts Now" -#~ msgstr "现在清除已ä¿å­˜çš„å¿«æ·é”®" - -#~ msgid "Clear Saved Window Positions Now" -#~ msgstr "现在清除已ä¿å­˜çš„窗å£ä½ç½®" - -#, fuzzy -#~ msgid "Automatic" -#~ msgstr "/自动" - -#~ msgid "Transparent" -#~ msgstr "é€æ˜Ž" - -#~ msgid "Spiral (anticlockwise)" -#~ msgstr "螺旋(逆时针)" - -#~ msgid "Set canvas padding color" -#~ msgstr "设置画布衬垫的颜色" - -#~ msgid "Zoom to fit window" -#~ 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/_Fonts" -#~ msgstr "/添加页签(A)/字体(_F)" - -#~ msgid "/Add Tab/_Buffers" -#~ msgstr "/添加页签(A)/缓冲区(_B)" - -#~ msgid "/Add Tab/_Images" -#~ msgstr "/添加页签(A)/图åƒ(_I)" - -#~ 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 "" -#~ "File '%s' exists.\n" -#~ "Overwrite it?" -#~ msgstr "" -#~ "文件“%sâ€å·²å­˜åœ¨ã€‚\n" -#~ "覆盖å—?" - -#~ msgid "" -#~ "Unable to run font callback. The corresponding plug-in may have crashed." -#~ msgstr "无法执行字体回调。对应的æ’件å¯èƒ½å·²å´©æºƒã€‚" - -#~ 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/_Sinusoidal" -#~ msgstr "/混和函数/正弦(_S)" - -#~ msgid "/blendingfunction/(Varies)" -#~ msgstr "/混和函数/(多样)" - -#~ msgid "/coloringtype/_RGB" -#~ msgstr "/ç€è‰²ç±»åž‹/RGB(_R)" - -#~ msgid "/coloringtype/HSV (clockwise _hue)" -#~ msgstr "/ç€è‰²ç±»åž‹/HSV (顺时针色调)(_H)" - -#~ msgid "/coloringtype/(Varies)" -#~ msgstr "/ç€è‰²ç±»åž‹/(多样)" - -#~ msgid "" -#~ "Unable to run gradient callback. The corresponding plug-in may have " -#~ "crashed." -#~ msgstr "无法执行行æ¸å˜å›žè°ƒã€‚对应的æ’件å¯èƒ½å·²å´©æºƒã€‚" - -#~ msgid "" -#~ "Some files are unsaved.\n" -#~ "\n" -#~ "Really quit The GIMP?" -#~ msgstr "" -#~ "一些文件还没有ä¿å­˜ã€‚\n" -#~ "\n" -#~ "真的退出 The GIMP å—?" - -#~ 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)/ä¿¡æ¯çª—å£(_I)" - -#~ 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(_R)" - -#~ 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)/堆栈(K)/å‡é«˜å›¾å±‚(_R)" - -#~ msgid "/Layer/Stack/_Lower Layer" -#~ msgstr "/图层(L)/堆栈(K)/é™ä½Žå›¾å±‚(_L)" - -#~ msgid "/Layer/Stack/Layer to T_op" -#~ msgstr "/图层(L)/堆栈(K)/图层移至顶端(_O)" - -#~ msgid "/Layer/Stack/Layer to Botto_m" -#~ msgstr "/图层(L)/堆栈(K)/图层移至底端(_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 "/图层(L)/颜色(C)/å转(_V)" - -#~ msgid "/Layer/Colors/_Auto" -#~ msgstr "/图层(L)/颜色(C)/自动(_A)" - -#~ msgid "/Layer/Colors/Auto/_Equalize" -#~ msgstr "/图层(L)/颜色(C)/自动/色调å‡åŒ–(_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)/添加 Alpha 通é“(_A)" - -#~ msgid "/Layer/Transparency/Al_pha to Selection" -#~ msgstr "/图层(L)/é€æ˜Ž(A)/Alpha 到选区(_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 "/图åƒ/å˜æ¢(_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 度(_1)" - -#~ msgid "/Layer/Transform/_Offset..." -#~ msgstr "/图层(L)/å˜æ¢(T)/ä½ç§»(_O)..." - -#~ msgid "/Layer/Layer _Boundary Size..." -#~ msgstr "/图层(L)/图层边界大å°(_B)..." - -#~ msgid "/Layer/Layer to _Image Size" -#~ msgstr "/图层(L)/图层到图åƒå¤§å°(_I)" - -#~ 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)/图åƒ(_I)" - -#~ 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)/颜色(C)/映射(_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)/图案(_P)" - -#~ msgid "/Filters/_Web" -#~ msgstr "/滤镜(R)/网页(_W)" - -#~ msgid "/Filters/To_ys" -#~ msgstr "/滤镜(R)/玩具(_Y)" - -#~ msgid "Open Menu" -#~ msgstr "打开èœå•" - -#~ msgid "Save Menu" -#~ msgstr "ä¿å­˜èœå•" - -#~ msgid "Offset _X:" -#~ msgstr "ä½ç§» X(_X):" - -#~ msgid "_Wrap" -#~ msgstr "环绕(_W)" - -#~ 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 "_Undo History Preview Size:" -#~ msgstr "撤销历å²é¢„览大å°(_U):" - -#~ 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 "Pointer Movement Feedback" -#~ msgstr "指针è¿åŠ¨å馈" - -#~ msgid "Perfect-but-Slow _Pointer Tracking" -#~ msgstr "好但是慢的指针跟踪(_P)" - -#~ msgid "Enable Cursor _Updating" -#~ msgstr "å¯ç”¨å…‰æ ‡æ›´æ–°(_U)" - -#~ msgid "Show reversed zoom ratio" -#~ msgstr "显示颠倒的缩放比率" - -#~ msgid "8-Bit Displays" -#~ msgstr "8-ä½æ˜¾ç¤º" - -#~ msgid "Minimum Number of Colors:" -#~ msgstr "颜色的最少数é‡ï¼š" - -#~ msgid "Install Colormap" -#~ msgstr "安装颜色表" - -#~ msgid "Monitor Resolution" -#~ msgstr "监视器分辨率" - -#~ msgid "Monitor" -#~ msgstr "监视器" - -#~ msgid "(Currently %d x %d dpi)" -#~ msgstr "(å½“å‰ %d x %d dpi)" - -#~ msgid "From _Windowing System" -#~ msgstr "从窗å£ç³»ç»Ÿ(_W)" - -#~ msgid "Window Type Hints" -#~ msgstr "窗å£ç±»åž‹æ示" - -#~ msgid "Conservative Memory Usage" -#~ msgstr "节约内存使用" - -#~ msgid "Only when Modified" -#~ msgstr "åªå½“已修改时" - -#~ msgid "Always" -#~ msgstr "总是" - -#~ msgid "\"File -> Save\" Saves the Image:" -#~ msgstr "“文件->ä¿å­˜â€ä¿å­˜å›¾åƒï¼š" - -#~ msgid "Session Management" -#~ msgstr "会è¯ç®¡ç†" - -#~ msgid "Session" -#~ msgstr "会è¯" - -#~ msgid "Temp Dir:" -#~ msgstr "临时目录:" - -#~ msgid "Select Temp Dir" -#~ msgstr "选择临时目录" - -#~ msgid "Swap Dir:" -#~ msgstr "交æ¢ç›®å½•ï¼š" - -#~ msgid "Qmask Attributes" -#~ msgstr "快速蒙æ¿å±žæ€§" - -#~ msgid "Ratio X:" -#~ msgstr "比率 X:" - -#~ msgid "Resolution X:" -#~ msgstr "分辨率 X:" - -#~ msgid "Stroke" -#~ msgstr "勾画" - -#~ msgid "/Save Options to/_New Entry..." -#~ msgstr "/选项ä¿å­˜åˆ°(S)/新项(_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)/索引色æ¿(_X)" - -#~ 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)/图åƒ(_I)" - -#~ 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)/调试(_E)" - -#~ msgid "/Xtns/_Module Manager" -#~ msgstr "/扩展(X)/模å—管ç†å™¨(_M)" - -#~ msgid "/Help/_Help" -#~ msgstr "/帮助(H)/帮助(_H)" - -#~ msgid "/Help/_About" -#~ msgstr "/帮助(H)/关于(_A)" - -#~ msgid "Click \"Continue\" to start The GIMP." -#~ msgstr "点击“继续â€å¯åŠ¨ GIMP。" - -#~ msgid "" -#~ "To display images in their natural size, GIMP needs to know your " -#~ "monitor resolution." -#~ msgstr "è¦ä½¿å›¾åƒä»¥åŽŸæ¥çš„大å°æ˜¾ç¤ºï¼ŒGIMP 需è¦çŸ¥é“您的监视器分辨率。" - -#~ msgid "Aborting Installation..." -#~ msgstr "中止安装……" - -#~ msgid "" -#~ "GIMP can obtain this information from the windowing system. However, " -#~ "usually this does not give useful values." -#~ msgstr "GIMP å¯ä»¥ä»Žçª—å£ç³»ç»Ÿä¸­èŽ·å–这一信æ¯ã€‚ä¸è¿‡ï¼Œé€šå¸¸è¿™ä¸èƒ½ç»™å‡ºæœ‰ç”¨çš„值。" - -#~ msgid "Alternatively, you can set the monitor resolution manually." -#~ msgstr "å¦å¤–,您也å¯ä»¥æ‰‹å·¥è®¾ç½®ç›‘视器的分辨率。" - -#~ msgid "" -#~ "You can also press the \"Calibrate\" button to open a window which lets " -#~ "you determine your monitor resolution interactively." -#~ msgstr "" -#~ "您也å¯ä»¥æŒ‰â€œå®šè°ƒâ€æŒ‰é’®æ‰“开一个窗å£é€šè¿‡äº¤äº’çš„æ–¹å¼æ¥ç¡®å®šæ‚¨çš„监视器分辨率。" - -#~ msgid "Calibrate" -#~ msgstr "定调" - -#~ msgid "Don't Show Grid" -#~ 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/Selection Tools/Fu_zzy Select" -#~ msgstr "/工具(T)/选择工具(S)/模糊选择(_Z)" - -#~ 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 "/工具(T)/颜色工具(C)/海报效果(_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 "Threshold Range:" -#~ msgstr "阈值范围:" - -#~ msgid "" -#~ "Activate both the \"Keep Height\" and\n" -#~ "\"Keep Width\" toggles to constrain\n" -#~ "the aspect ratio" -#~ msgstr "" -#~ "åŒæ—¶é€‰ä¸­â€œä¿æŒé«˜åº¦â€è·Ÿ\n" -#~ "“ä¿æŒå®½åº¦â€å¯ä»¥ä¿æŒå®½\n" -#~ "高比。" - -#~ msgid "/Tools/_Paths" -#~ msgstr "/工具(T)/路径(_P)" - -#~ msgid "Delete" -#~ msgstr "删除" - -#~ msgid "FG" -#~ msgstr "å‰æ™¯" - -#~ msgid "BG" -#~ msgstr "背景" - -#~ msgid "Edit Foreground Color" -#~ msgstr "编辑å‰æ™¯è‰²" - -#~ msgid "New" -#~ msgstr "新建" - -#~ msgid "Refresh" -#~ msgstr "刷新" - -#~ msgid "Determine File _Type:" -#~ msgstr "确定文件类型(_T):" - -#~ msgid "Intensity Range:" -#~ msgstr "强度范围:" - -#~ msgid "Stroke _Width:" -#~ msgstr "笔划宽度(_W):" - -#~ msgid "Style" -#~ msgstr "风格" - -#~ msgid "Image Comment" -#~ msgstr "图åƒæ³¨é‡Š" - -#~ msgid "%s Options" -#~ msgstr "%s选项" diff -uraN gimp-2.2.8/po/zh_TW.gmo gimp-2.2.9/po/zh_TW.gmo --- gimp-2.2.8/po/zh_TW.gmo 2005-01-22 17:33:18.000000000 +0100 +++ gimp-2.2.9/po/zh_TW.gmo 1970-01-01 01:00:00.000000000 +0100 @@ -1,409 +0,0 @@ -Þ•¨\=9 -œz€££&—£G¾£9¤G@¤Aˆ¤Nʤi¥<ƒ¥kÀ¥@,¦2m¦; ¦PܦO-§2}§9°§-ê§9¨;R¨7Ž¨ ƨ ШÚ¨ -é¨ô¨÷¨© -©*©2©:©V©p©†©0©¾©Ï©â©ë© -ª ªªª$ª 3ª Aª Mª -[ª -fª qª ~ª Šª –ª¢ª §ª ³ªKÀª… «.’«1Á«ó«¬ ¬¬*¬=¬ O¬ -[¬f¬{¬ Ž¬˜¬§¬°¬¿¬Ò¬ê¬ù¬*­:­M­j­‚­Ÿ­¾­Ó­ç­û­®/®C®#W®{®•® -±®¼®Ä®Ö®ß®ÿ®¯ ¯ %¯2¯B¯1W°3‰°½°Ñ°×°ê° -ñ°ü°±,±F±M± \± -i±t±…±—±A¨±Jê±5²<H² …² “²¡²±²ʲڲⲠç²ó² ³³%³<³ N³\³ -t³³³©³À³ Ƴ гÞ³å³þ³´ ´%´"-´ P´\´a´g´l´ -|´‡´˜´7¬´ ä´ ñ´ÿ´µµ µ $µ0µ 8µEµ JµWµ \µ jµxµµ žµ¬µ¼µCõ7¶=?¶@}¶d¾¶#·A·3W·‹·<Ÿ·#Ü·!¸ "¸ .¸8¸A¸Y¸q¸‰¸›¸¸¸Õ¸,츹3¹;¹ N¹\¹ |¹ ¹!«¹͹è¹þ¹ºº %º 3º@ºGº Mº[ºnº }ºŠº. º5Ϻ5»;»W»Os»#û ç»õ» ¼¼5¼F¼L¼U¼ -d¼o¼w¼ }¼ ‹¼˜¼±¼0ü ô¼½ ½½0½M½+V½‚½•½¨½¸½Á½ -ɽ Ô½$Þ½¾¾ 3¾T¾n¾Œ¾Ÿ¾µ¾ ľÒ¾ Û¾ç¾i¿r¿ƒ¿‹¿¦¿¿¿ß¿ ô¿"À"%ÀHÀaÀjÀ -|À‡À -¦À)±ÀÛÀ,õÀ"Á#<Á#`Á!„Á%¦ÁÌÁëÁ òÁþÁÂ#Â6ÂIÂ#_Â-ƒÂ±Â%ÇÂíÂÃÃ4ÃLà QÃ_à -yà -„à -ÚòùÃÈà Íà ÛÃèÃøÃÄÄ*Ä -9ÄDÄ-KÄyÄ €ÄÄÄ ¡Ä«Ä°Ä¶ÄÇÄÚÄîÄÿÄÅ"Å5ÅLÅ]Å mÅ yŇŎŔÅ%šÅ!ÀÅ âÅïÅÆ&ÆAÆ UÆcÆvÆˆÆ—Æ §Æ´Æ ÃÆÐÆ àÆíÆÿÆ ÇÇ)ÇAÇ\ÇyÇ‹ÇšÇ -³Ç-¾Ç ìÇ øÇÈÈ È #È0ÈCÈKÈ^È rÈ€È šÈ¤È ´È:¾È?ùÈ9ÉKÉ \ÉfÉ -uÉ€É†É -œÉ §É µÉ -¿É ÊÉÖÉßÉ>óÉ2ÊBÊUÊgÊvÊˆÊ¨Ê¸Ê ÈÊ ÕÊâÊçÊÿÊË+ËAË QË[ËnË ƒË -‘Ë -œË §Ë µËÂË ×ËäËôËÌ Ì ,Ì8Ì*IÌtÌ}Ì.”ÌÃÌßÌ#èÌ" Í/ÍLÍ&kÍ’Í ¨Í´ÍÈÍ,ÑÍ#þÍ"Î)Î 8ÎFÎYÎ'sΛÎ'¸ÎàÎýÎÏ/ÏFIÏTÏåÏ ìÏùÏÐ "Ð,Ð -CÐ NÐ\ÐkÐzЌОР¤Ð°Ð¹Ð ÂÐÎÐ(×Ð$Ñ=%Ñ6cÑ<šÑ?×ÑAÒ7YÒ9‘ÒcËÒ9/ÓBiÓ=¬ÓfêÓ>QÔCÔJÔÔgÕ ‡Õ“Õ ¥Õ³ÕÈÕÍÕßÕ ïÕùÕ Ö Ö'Ö;ÖRÖgÖzÖŽÖ¡Ö´ÖÆÖÝÖíÖ××8×U×^×}×˜×¯× Ã×Ñ× -ä× ï×ý× -Ø ØØ 'Ø5ØHØ -YØdØ €ØŒØœØ¬ØÄØàØüØÙÙÙ %Ù2Ù -8ÙOCÙ -“Ù”žÙ3ÚDÚ]Ú -tÚ Ú ‹Ú—Ú  Ú.¬ÚÛÚîÚÛ -Û Û )Û 5ÛBÛGÛ VÛcÛ {Û ˆÛ•Û¦ÛºÛÑÛuàÛÌVÜÅ#ÝcéÝ MÞzZÞÕÞÛÞrãÞVßmßv߈ߗߠ߰ßÅß&Öß'ýß %à 1à ;àEàTà Yàcàiàpàuà‡à–à¨à®à¿àÃàÝàúàá &á0á 9áCáJáRá Wá dápá€á -…áá¥á -¼á ÇáÑááá -éáHôá!=âB_â¢â1±âãâöâûâ ã ãã$ã )ã 5ã1Aã0sã¤ã ªã ·ãÄã -Öã -áãìãää2äEä ]ä -kä -väHä -Êä Õä -âäíä ôäåå å+åAåVå eåråwå å‹å“å±å¸å ÀåÎå çåóå æ#æ?æCæ UæKcæ3¯æ6ãæç")ç LçVçnç‚ç$‘ç¶çÑç æç ôç è(6è+_è)‹è*µè!àèé/éDéKé*\é‡é˜é¨é±éÃéÓéééùé êê#ê2êKê^ê uê–ê±êÂêËêÚêóêë ë>ëYë jëtë„ëžë²ë!Êëìëìì !ì.ìEìVìkìŠì£ì-²ìàíéíüí î î&î6îFî3Lî€î‘î©î¹î Ñî Þî êî÷îï4ïTïmïï’ï §ïµïÌï Óïßïôïðð@ð`ð-gð•ð§ð ¬ð ºð ÆðÓðñðøð ýð ññ,ñ@ñ Tñ ^ñ jñvñ ñ›ñ ´ñÀñÖñ -ìñ÷ñ òòò%ò.ò6òNò dòrò‡òžò -¦ò±ò·ò¿òÜò+ùò%ó-ó 4ó Bó -Nó Yó fótó‰óó¶óÏó äóñó ôô)ô"@ôcô lôzôô…ô$›ôÀôÒôæôõô õõ õ$õ )õ6õ -Nõ -Yõdõ tõ~õõ õ§õÀõÏõæõüõöö (ö4öGöaöfö -lö wöƒö—öªö ½ö ÇöÑöÚö ëö øö ÷ ÷ ÷ %÷ 1÷ =÷,I÷v÷!‰÷«÷Â÷)ß÷ øø .ø <øHøMø\ø mø{øBŽøAÑøù(ù :ùDù KùXùjùù‡ù„ùú#ú5ú=ú -FúQú eúsúŠú œú©úÉú"èú! û!-ûOûhû €û Šû ”ûžû®û½ûVÅû+ü Hü(Rü{ü"ü¤ü ºü ÆüÒüìü%ý -*ý 5ý?ýNýbý -rý}ý Œýšý £ý±ý Åý ÏýÝýãýöý þ þ #þ1þ&Kþ,rþ Ÿþ¬þ±þ -Áþ -Ìþ×þôþÿ1ÿIÿ\ÿ4nÿ£ÿµÿ -»ÿÆÿÎÿ -Þÿ éÿöÿ $ +7 L!Xz ‰—¨Ã ÓÝî  ?\ks‡—´¡Ñ4s¨±-¹ çñú -#8-K y…š ¯¹ÁØáêþ (17M e o}› ¬ ¶!À âð  -HO We {‡š­¿Ûà æ!ó!3#Uy  -œ9§Uá=7<u=²"ð %  6 B F K (P ,y ¦ ¶ È Ù  -ê õ  -J - k -x -‡ -  - º - Ç -Ô - ï - û - # 3 M  \  i u   ¡ ­  ½  Ë  Ø ä ì  -  / L ^ r … – © º Í è ú     #  0 <  N  [ g #~ ¢  ´ À Õ ì 6;C J7W­ÂÒÙð  1 ER p|‘ -˜ -£ ®»Ð ßíóø  -0;[ x„–±Í èô14F{˜«ÄáôET e s€ ˜¦ ¬ ¸ -ÄÏ à -ì÷ "?G -[fo Ÿ»Ñ#ë- AM_{‘#«Ïí !>U$p•´ ÉÓãý!)Kgy -€‹  °½Øï 1=Tk‚™ ²ÀÓ æó/GZq -ƒŽž"¸Ûõ /Jb{=‹6ÉSJTŸ¸Ë Þèù8G eq€•¨ ¼ÈÞö -+@R)eNÞKò=>ƒ|*?+2k¯žN!4Q"/†"º¶" q#}#…#‹#’#£#´#Ç#Ï#á#ç#ú# $*$ ?$ K$X$a$ q$~$Ž$ Ÿ$¬$ Á$Ï$ß$ ó$% % #%&0%W% -j%u%…%Ÿ%±%É%Ù%é%ú%&/&?&T&d& u&‚&›&¯&´&Ä&Ê&Ð&á& è&õ& ü& ' '''-'4'<' E'8R'v‹'( (!( 9( F(R( X(!y(›(³(Ï(ê() )=)D)S)Z)c)w)‘) ˜) ¦)´)½) Í)Ù) ê)ö)#* 3* A*N*U* -[* f* s*}*Œ* * -¥* -°* »*É*Ù*1â*7+1L+5~+H´+Šý+;ˆ,!Ä,Áæ, ¨- É-¨Ö.*/æª0‘1°1 ¶1Ä15Ë1¯21±20ã2031E3Cw3€»3S<4,42½4 ð4A6AS6*•6«À6íl7 Z8Îg9£6:ªÚ:§…;§-<Õ<˜Ø=èq>ïZ?2J@}@ —@-¡@ -Ï@Ú@í@þ@A AA!A'A @AMA_A oA }A‡A A©A ±A¾A -ÄA<ÏA C C$C4CCCXCrC‚C‘C¥C´CÄC ÓCàCôC -DDD;D;YD¡•D7EF>F …FF ”F¡F§F¯FÁFÈFÐFÙF÷F#G;GSGcGyGˆG—GG¤GÁGÊGFÓGH -:H -EHPH UH cH qH ~H ‹H ™H!§H!ÉH ëH ÷HQI$UI5zIP°IGJjIJo´Je$KjŠK~õKptLoåLwUM<ÍM? -N>JNt‰NtþN`sO‰ÔO^PÞPäPêPñPQQ )Q67QonQÞQåQ#íQÈRGÚRX"SU{SÑSèSñSúST - T T "T,T 5T?THTZT bTpTyTTŽT•TžT±TÄTÍTßT ñTûT U UU 3U=UEUKU NUXUkU†U ¥UÆU ÌUÙUàU ÿU VV V #V1VEVLV -SV^V fVsV{V ›V©V¯V¾VÝV ìVøV -W WW -W;WJW ZWhW |W ŠW˜W ¨WµWÈWÞWîWX X X)X8XAXRX lX vX -ƒXŽX”X£X¿XÎXàXúX Y$Y5YGY WY xY ‚YŒY ”YžY¤Y¹YÈY ÎYÜYìYóYùYZ Z Z#Z ,Z 6Z -@Z -KZVZoZ xZ‚Z ˆZ•Z›Z¡Z§Z®ZµZ½ZÅZ ØZ äZñZ [[[![)[C[R[r[…[ ”[ [¨[¾[ Í[ Ú[æ[ é[ó[ø[þ[\\"\ 5\B\H\X\^\e\m\ }\ ‹\ ™\ ¦\ ³\À\ Ñ\Û\ ã\í\ -ó\þ\ ]]] +] 8]D]M] T]b]r]y] ‚] ] ]ª] ³] Á]Í]Ó]Ö]Û]ã] ò] ÿ] ^^ -^:^@^I^Z^m^^‘^™^¯^Ç^4Ù^1_@_V_f_†_ Ž_›_¡_µ_#Æ_ ê_ `*`1`A`Q` -Y`d`v`‡`Ž` —`£`ª`²`Ç` -à` -ë` -ö`a aaa+a -2a=aNaTa -]ahanasa‰aa“a–aša - a«a²a·a5»aña b bb"b)b 1b?b!Tb vb —b¸b -Øb ãbïbóbûbcc c c c'c-c 4cBc.Uc„cR¡côd* eL6eFƒeEÊe=fQNfo f?g}PgBÎg1hQChO•hIåh4/i<di4¡iLÖi4#j1Xj Šj —j ¤j ²j¼j¿jÒjîj þj k"k8kUkkk'qk™k±kÃkÌk åkñk ÷k l -l l (l 4l -Bl -Ml Xl el ql }l‰l -Žl™lR¨lûl1{m'­mÕm -ïm úmnn0n CnPn`nvn nn °n½nÐnænüno*(oSoco‚o¢oµoËoÞo ñoþop'p :pGpbpxp‹p ’pœp°p·p"Ðp óp ýp -qq*q$Crhr‡r˜rŸr ¾r -Èr$Ór!ør$s ?s Is Wsashs{s’s;¥sAás#tT:tt Ÿt¬t¿tÞt ñtût uu(u Au Nu[unuu ˜u ¥u²uËuçu îuøuÿuv - v+v(2v [v'evv£v§v ®v¸v ÎvÜvïv3ÿv3wFw Vw cwmwtw‡w Žw˜w®wµwÅw ÊwØw -ïwúwx x4xQ;x<x?ÊxB -y`My®yÎy0äyzE/z'uz-z ËzØzçzîz{{*{F{_{x{*Ž{¹{Ò{ Ù{æ{ö{|.|A|]|||™| ²|¼|Ã|Ö| -ê|õ| ü| }}/}B}*X}-ƒ}0±}'â}3 -~V>~$•~º~(Ð~ ù~%; BL_ -p{ ‚!¢Ä/Ø€ € "€0€(J€s€)z€¤€´€Ä€×€ç€ î€ü€"9Yi€–±Ä×ìþ‚Ì ‚Ù‚à‚ü‚ƒ!"ƒ!Dƒfƒƒƒ3–ƒ3ʃ$þƒ#„9„M„&]„ „„6Ž„Å„+ß„ …(%…(N…w…/—…(Ç… ð…ú…( †4†G† Z†g†!z†$œ†Á†Ô†ñ†‡#‡?‡W‡^‡$t‡ ™‡ ¦‡ ³‡!À‡ â‡ì‡ -ÿ‡ -ˆ!ˆ?ˆSˆfˆˆˆ ¢ˆ¯ˆ6¶ˆíˆ ôˆ ‰‰‰%‰ ,‰6‰G‰X‰i‰z‰‹‰œ‰­‰ Á‰ Ή Û‰å‰õ‰ ü‰Š! Š/Š NŠ[Š%nŠ.”ŠÊ ÚŠçŠþŠ ‹ ‹ +‹ 8‹ E‹ R‹ _‹l‹ ‹ Œ‹ ™‹¦‹‹Û‹ñ‹ ŒŒ (Œ,2Œ_Œ fŒsŒ zŒ‡Œ  Œ­ŒÃŒÊŒÝŒñŒ !0<B<¼ ÍÚáôŽ Ž #Ž 1Ž >ŽKŽ[Ž kŽxŽB‹Ž ÎŽ ÛŽ èŽ õŽ  %2 -FQbi|¢µ ÈÕè û   " /< O \i  Œ ™¦1¹ëü6‘'L‘t‘${‘! ‘‘Ø‘$î‘’ )’6’ L’-Y’‡’ ¦’°’Ç’Ú’%ù’5“"U“.x“"§“%Ê“8ð“")”JL”M—”å” -ì”÷”• •+•>•N•a•|•—•ª• ½•Ë•ß•þ•–<–"C–"f–P‰–PÚ–P+—L|—LÉ—T˜Hk˜ƒ´˜P8™V‰™Và™h7š] šVþš[U›±› 1œ?œ Rœ_œ{œ‚œ Ÿœ ¬œ¹œÉœÜœíœ 8Kbu † “  ­Ä Ûè -þ ž(ž;žQžmž€ž žž­ž ´ž ÁžΞážòžŸ Ÿ!Ÿ =ŸJŸ]ŸpŸ!ˆŸ!ªŸÌŸߟ æŸ ðŸúŸ -  ]$  ‚ ~  ¡¡4¡P¡d¡w¡ Š¡—¡5«¡ á¡ î¡û¡¢$¢;¢O¢b¢g¢ y¢…¢—¢ ©¢µ¢Ê¢Ù¢ñ¢T£éV£À@¤k¥ m¥wy¥ñ¥÷¥rþ¥q¦‡¦ Ž¦œ¦­¦´¦Ǧæ¦ö¦§ 4§ A§K§R§e§i§p§t§{§ ‚§§¢§ ¾§ȧاܧö§¨%¨=¨M¨ T¨^¨ e¨o¨v¨Œ¨ Ÿ¨ ¬¨¹¨+ɨõ¨©)©9©O©V©3]©'‘©6¹©ð©8ª9ª PªZªaª -uª€ª”ª›ª«ª;»ª9÷ª1«8«H« [«h« {«ˆ« ¤«$±«Ö«é« ü« ¬ ¬E ¬ f¬ s¬ €¬¬”¬ §¬ ´¬ Á¬ά㬠ö¬ ­ ­ -­ )­ 6­@­ Y­ c­ m­w­ ‡­”­³­!É­ ë­ õ­ ®J®*Z®$…® ª®+·®ã®ê® ü® ¯*¯A¯P¯_¯0v¯)§¯6ѯ6°3?°6s°"ª°Í°3ã°±±-1±_± r±±±Ÿ±³±DZرè± ù±²²6²M²$h²²¬² Á²βá²þ²³$0³U³t³ ‰³–³©³Ƴݳ$ø³´<´ Q´^´q´Ž´¥´$À´å´µµ(¶ /¶9¶S¶Z¶^¶p¶ƒ¶GŠ¶ Ò¶߶ù¶! · .·;·L·`·|·˜·´·!Ó·õ·¸/¸I¸c¸j¸}¸¸ £¸ °¸9º¸ô¸'û¸ #¹0¹ 7¹A¹Q¹e¹~¹…¹ Œ¹ ™¹¦¹À¹Ö¹ ï¹ù¹ º -º º-º GºTºjº „º‘º §º -µºÀº Ǻ ѺÛº3ôº(»>»[» x»‚» ’»Ÿ»¦»¼»'Ò» ú»¼ ¼¼ &¼ 3¼ @¼M¼`¼"s¼"–¼¹¼ Ù¼ æ¼ ó¼½½-3½a½q½x½ ½‰½Ÿ½»½ νÛ½ ë½ ø½¾ ¾¾ ¾-¾F¾ V¾c¾ v¾ƒ¾–¾ ©¾¶¾Ò¾å¾û¾¿ !¿+¿ -?¿J¿[¿x¿ ¿¿ ”¿¡¿´¿Ë¿ â¿ ì¿ ù¿À À &À 3À @À MÀ ZÀ gÀ tÀ'À©À,¹À#æÀ -Á')ÁQÁ*aÁŒÁ œÁ¦ÁªÁ¼Á ÎÁÛÁBîÁB1 t ‘Ÿ ¦Â³Â+Æ ò ÿ” áôà Îà Øà åÃòà ÄÄ0ÄDÄ!UÄ!wÄ!™Ä»Ä!ÚÄüÄÅ -2Å =Å IÅUÅeÅuÅh|Å6åÅ -Æ$'ÆLÆ'SÆ{ƎƞƯÆËÆ'çÆÇ -Ç!Ç4ÇSÇ cÇpÇ„Ç•ÇœÇ¯Ç ÂÇÏÇåÇ"ìÇ"È2ÈCÈZÈqÈ-ŠÈ-¸ÈæÈöÈ ýÈ -ÉÉ+ÉGÉcÉɞɻÉ9×ÉÊ-Ê4ÊGÊNÊ ^Ê kÊ xÊ…ÊŒÊ -ŸÊªÊ ±Ê¾Ê ÓÊÝÊ üÊ ËË-ËCËVËfËyË ‰Ë–ËË0­Ë ÞË ëËøË Ì!Ì@̪_Ì8 -Í CÍ PÍù]Í WÎaÎhÎ wÎ!„ΦÎ*ÀÎ ëÎøÎ Ï Ï#Ï*Ï =ÏGÏNÏ^ÏnÏ uÏ ‚ÏŒÏ“Ï¦Ï ÅÏ ÒÏÞÏâÏüÏ -Ð -Ð$%ÐJÐcÐzЋМгРÍÐ ×Ð áÐîÐ ÑÑ+ÑEÑ6[Ñ’Ñ ™Ñ£Ñ4¹Ñ"îÑ%Ò17ÒiÒ†Ò ™Ò?§ÒNçÒ?6Ó?vÓA¶Ó'øÓ Ô:Ô PÔ]ÔaÔ hÔ'uÔ9Ô×ÔêÔýÔÕ#Õ%3ÕYÕNyÕ ÈÕ ÕÕ"âÕÖÖ .Ö;Ö ZÖgÖxÖ‘Ö¤Ö½ÖÐÖãÖ!öÖ×1×D×]×v×‰× ™×£×¿×Æ×Ù× ò×ÿ×Ø%Ø8ØKØdØwØ—ØªØ ÀØÍØàØóØÙÙ2Ù%EÙ+kÙ—Ù §Ù ´Ù ÁÙÎÙ0íÙ Ú+Ú 2Ú-?Ú-mÚ›Ú «Ú¸Ú¿ÚØÚ ñÚ þÚ Û Û ,Û9Û UÛbÛ -xÛƒÛ ”Û¢Û¼Û ÜÛ éÛ öÛÜÜ $Ü$1Ü VÜ%cÜ‰Ü ©Ü¶ÜÉÜ+æÜ(Ý;ÝOÝfÝÝœÝ0³ÝäÝÞÞ(ÞGÞ]Þ?|Þ¼Þ ÐÞÝÞóÞß"ß )ß 6ßCßVß iß v߃ߙ߯߿ßÛßâß øßà à à-à@à]àtà$à´àÓà èàõàá%á<á$Wá|á›á °á½áÐáíáâ$âDâcâ xâ…â˜âµâÌâ$çâ ã+ã @ã MãZãpã €ãã©ãÆãÜãòã ää+äAä]äyä ”ä¡äºäÓäæäåå/åCå]åwå ‘åžå®å'Êåòåæ !æ.æAæTæjæ€æ'™æ'Áæ<éæ6&ç]çpç†ç £ç°çÉçèçûçè$'èLè\èrèˆèžè ´è¾èÚè%óèé/éBéUéké-éf¯éê9%ë0_ëŠë*ì6Fì'}욥ìð@î01ï-bïºïKð ^ðkð rð|ð”ð¬ð ÄðÎðáðèðþðñ0ñFñ \ñ fñpñƒñ”ñ¨ñ¼ñÐñçñûñò)ò=òTòhò.yò¨òÅòÖòéòüò+óDó[óoó!ƒó"¥óÈóßóõóô%ôAô]ôyô€ô –ô ô¤ô·ô¾ôÑô Øôåôùô -õõõ õ )õ06õfgõ ÎõØõñõ -öö.ö5ö!Qösö‰ö¦öÀö+Üö(÷1÷8÷ -L÷W÷^÷q÷ ÷š÷ª÷º÷Ê÷á÷ñ÷øø0øOøoø -…ø -ø›ø¬øÂøÉøÜøìø óø ù ù ù*ùF/ùFvùF½ùFúBKúqŽú:û;û©Tûþûùüšý7¬ýßäþÄÿ Ýÿêÿ 3 ÅA??GB‡EÊe|vNó*B?m­BµBø0;£lÐæáÎÈ—' · G -× -~Û ÖZ š1 7Ì  '* R_t ‰“š ª -·Â Øåþ &3 R `j €Š - ¨¶ ½ Ê×ê ý -*1G ]g”› -¢E­?ó·3 ëRø KU \ iv} — ¡%«"Ñô,? R _l s!} Ÿ©3°'ä !;Uk’"£"ÆéùW 0a=’>ÐJuZ{ÐZL`§{Šu{|BøB;B~Á{RQ΀ “¡59 @ JW p}*“p¾/ 3 9:  t 6!KL!?˜!$Ø! ý! -""" %"2"B" -S" -^" i"v"‹"’"¢" ©"³" -Ä" -Ï"Ú"ñ"##3# -D# -O#Z# k#y## ž# -¬#·#º#Ë#ß#%ù#1$ Q$ _$ -m$x$ -•$  $®$ -±$¼$Ó$ -ê$ -õ$% -%% --%8%X% -o%z%‘%®%È% -Ù% ä%ò%&&%&9&J&[&o&€&‘&¢&³&Ç&Þ&ï&' '.'?'P'a'r' -‰' ”' -¢' -­'¸'Ì'æ'ú'(((<(V(j(~(( -¬(·( È(Ö( -ç(ò() -&)1)B) -b) -m) -x)ƒ)—)®) ±) -¿) -Ê) -Õ) -à)ë) * -* -!* ,* :* -H* -S* ^* -l* -w* -‚**¡*²*(Ã* -ì*÷* -ÿ* - -++2+"I+l+}+ Ž+ -œ+§+Á+Ò+ã+ô+÷+ -, -,, -;,F,N, -b, -m,x, -‰, ”, ¢,°,Ä,Õ,é,ú,--3- J-X-l- t- ‚-- ¡-¯-Ï- -à- -ë- -ö-.. -5. -@. K.Y.m. -~.‰. -. -¨.³.¶. -».Æ.×.è.ù.+/E/V/g/€/—/®/Å/ -Ü/ç/"û/0.;0+j0–0­0Ä0 -á0 ì0 -ú01%1(<1"e1%ˆ1 -®1¹1Í1á1ò12 2 -72 B2P2a2 -i2t2‘2«2 Â2 -Ð2 -Û2æ2 -÷2 3 -3 -3&3 -73B3 U3 -c3 -n3y3–3 -œ3§3ª3 -°3»3Ì3 Ó3Ý3Fá3(4D4 K4Y4`4 g4q4‚4'™4Á4&Þ45!5(5/5 35 =5 J5W5^5 e5 o5y5}55G“5%Û5(6Îò*©Øüý4ã\ã%ý9x{| J2€wr<i&Zà*n­R‹ÏA'u -Ÿo1 œÁ„s4û#Ktèëþ1š•y³Üh6ì5îÇËý› ‰²iS‘Éùý¨Ð1Ǣ誵ßÀc‰¿Ô³ëgh•`!y¨B u;ŠÖRž8A±¾G:ø•– ͹}òñÿ„²”@bhé›È7fºÌ]“šzF¢~ÊuWW΀3g·j\(>Tk[ñë‚ê¿*ua.Y)§÷¸ƖÍî,6lDL–ð:?óµkÒBMSvÑ¥x#ôúæ,€üÊÄœ zç¿ž\gŽ¦?ÄJ lEÐ_·'”rZüO¼·pm |KFDPaƒÊTL¹ÿL…B¿\5aˆtö³QïŸmé=çwÚ@¡é³˜VŒ.LïŽG&þ|¶ ¸’S´}Ûs%{Åø…O£ 0ë~<v?¬é åfÂ3:±·´Ý ]5ƒìn†â$ã¤@’醠%W®ÀõQó.ø?­†‰@M™Ì†tEpx¤ŽÌ²BôI¥Ï!‚!ŠÕKÂfØ—  #Ùœ©ñįRþb±œY_'jøz RïP/8JÏ#Ù,j[]í±*8àgsŽ´ áÄF‡üA»§l‡¿w \-6hˆ½YŒˆ™ö•¥ÕWK‹÷”.8Ѿ ÈT0£çRÎlšG> !Ö]núWŸbÌ“ùëÏI•Ì!=»¯³n¬_2>°ù|«ZD[ñ]jV°o꽜™Ë&Û-y{1JX 3<»`’\äÉ¡SxÆIÝEÑ_„j~"¯Ï^¡N( ìJæ¦ -ú¶ìúZ¢"cNîv€¥bm,Ã8"&;‹ÒQqwÊ`º›Yíäæ%ËÈZ^ÍH™fNžƒ©AÖ ‘âÝÞQt²ùSŒÓI›˜Xòò#dÉv¿£…ÎüÐÒHÙRX˜†ºGûs57U’˜§k s®‹jâáßðor-Ž÷hÒ–7}ÊÎÔûÉŠÔm覑‹qž¸Càç {'z5šl÷:v–:Hmo«ÖÜÆvšÌ¶Ì"ÆÓ•)±ÙŸ„<CœY¢.ÁàT™?턬J‰öê8òÒó|=÷±WáH¸’ÖŽÏÆ):ï‚Fy/hëزVQDú‹}2e²×"‡|;Lã¥}ðO°¼Ž+¸íDÁ˜é}”꯸°9n$cm~º0®ðnÞÚ-Ux˜ªØ xp=»> -'¬øÜã½fÝ 2ˆìO.ÆÁê6w0Eš†¸_Mÿ C?+*~{ŒuKPÞéÔ®'d‹zöÕõæ,kõÞô¡_9FîôË3¼1yˆ[7Û\IQ£ž -îàá Ðk—@¤ VŠ¤Å‡§/f–ßÝ—/£H‡1 ý—€ËÜí‡î»þÊ÷·lÅsJÙý:=q>[õÅcâeY–oä ¤Ô‚d^õ{ýBp×­7ìM¡$¶]Úd7/©WœƒÔ¿ƒ¹§ %sBë­u("•ûa4ú™…ËòË;Œßi™ä¬¨6óf+ôï cG1§s—«aTeDÉBl‰ˆŸÒ“¯G¡RÆ›‰rV¨Þ_†°Iw‚µHÇÚÈ ujî6‘«Œ‰Š¢”Vteö¼Zžù4O¦Â¦}¥õ+±×¡ÕC5ªCª´æWèÇ0°¯” -£ª à:½¬DMå|Ÿ‚K2U˜íâð& ud3oUeSPÀå*ºi4-05I[€)âdbz'i¾9 F‡/`.Éq´eûÀ!TÑ òÅ>4ŸCÚÁ.—hNê ïgc<Ûó>¹ÍйÃ%O¤ÃÕ(ºN¯‘š„_¥†·Aà×¹ÿzæŽfž7ñÛˆmµ®LAÈNúAå·Nù)¾À‘Edð+Œ3„<zx½xnZªáßia^©E#(%ÓI)µÅ#Lr'Ñ?½|P=ûÇ1ð¢6Ü#qpÔ=’õÀü­§œƒ…ÞƒqÓy“ñã­¤o0¢SGT•÷ûYó/ÿ£2¨<~Ç5^ 93¾þÈßÑePÏ-ñŒ©³XÇ´yªº›-ÑQ¾³r—ÀL$ä«Û×Øôá¬&?” FŠr’Mþ„;(ÿZt%ÿ™B]4»Pè§bVø,~,ÂØt9Ó*…pÅ«Úç*¡“˜2¼îü‚-Þ¨XUpgUlK>øæŠgš¼ôpOÄ -¶¼¥`Èä¦rÖ›!ó<qnbÒV­çC&å=iÍ ®¨ã´bÕv$\&–8E;»ÚíaHY$NwÐÃ$`k+¦¨9‹/@Üd@};+yùAˆØ7g¾,jö€×°¶çE Î€ -oè`UX]Êcw¢ÁÓÖƒS‡ßïH"Í8^ìJÍ+õmiµ^^Õ¶4cK…è6‘‘MOäC~â(ÜX“FTöŠ¦)Ý -q2”@0¹¤;’ŸM$‰½PkaþÐå3(—Ä9G›kvž² … {ÉÙÁÝÛ×h`[‚!Ó£©R"[ÙÎ)QtU{“«“êáåÃD XeÄ -Invalid option "%s" - -Usage: %s [option ... ] [file ... ] - - --debug-handlers Enable non-fatal debugging signal handlers. - --display Use the designated X display. - --dump-gimprc Output a gimprc file with default settings. - --no-cpu-accel Do not use special CPU accelerations. - --no-shm Do not use shared memory between GIMP and plugins. - --pdb-compat-mode - Procedural Database compatibility mode. - --session Use an alternate sessionrc file. - --stack-trace-mode - Debugging mode for fatal signals. - --system-gimprc Use an alternate system gimprc file. - --verbose Show startup messages. - -b, --batch Process commands in batch mode. - -c, --console-messages Display warnings to console instead of a dialog box. - -d, --no-data Do not load brushes, gradients, palettes, patterns. - -f, --no-fonts Do not load any fonts. - -g, --gimprc Use an alternate gimprc file. - -h, --help Output this help. - -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%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)(invalid UTF-8 string)(modified)(none)1 Layer1 layer15 degrees %s16:1 (1600%)1:1 (100%)1:16 (6.25%)1:2 (50%)1:4 (25%)1:8 (12.5%)2:1 (200%)4:1 (400%)8:1 (800%)<%s><>For optimal GIMP performance, some settings may have to be adjusted.The GIMP - GNU Image Manipulation Program -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_dd to SelectionA_ngleAbout The GIMPActive FiltersAdd Alpha C_hannelAdd Alpha ChannelAdd ChannelAdd GuidesAdd Horizontal GuideAdd La_yer Mask...Add LayerAdd Layer MaskAdd PathAdd Text LayerAdd Vertical GuideAdd a Mask to the LayerAdd layer maskAdd text to the imageAdd the current color to the color historyAdd to palette %sAdd to the current selectionAdding theme '%s' (%s) -Additional 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 automaticallyAdjustmentAffect:Affected Area %sAirbrushAirbrush with variable pressureAl_pha to SelectionAlignedAlignmentAll ChannelsAll 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_imationAnchor Floating SelectionAnchor floating layerAnchor floating selectionAngle:Anti erase %sAntialiasingAppearanceApply Layer MaskApply Layer _MaskApply 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 parasiteAuthor:AutoAuto shrinkAuto shrink selectionAuto-resize windowAutoloadAutomatically DetectedAvailable FiltersBG color fillB_rightness-Contrast...BackgroundBackground colorBackground color set to:Background: %d, %d, %dBevelBi-linearBlack & whiteBlack:Ble_nd Endpoints' ColorsBlen_dBlendBlend Endpoints' Opacit_yBlend: Blend: Invalid for indexed images.Blending...BlueBlue:BlurBlur or SharpenBo_rder...Border SelectionBrightness-ContrastBrightness-Contrast does not operate on indexed layers.Brush EditorBrush FoldersBrush UIBrush:BrushesBrushes MenuBucket FillBuffersBuffers MenuBurnBy ExtensionCMYKC_alibrate...C_olor PickerC_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 create a new layer from the floating selection because it belongs to a layer mask or channel.Cannot create folder '%s': %sCannot create previewCannot crop because the current selection is empty.Cannot expand ${%s}Cannot float selection because the selected region is empty.Cannot raise a layer without alpha.Cannot save. Nothing is selected.Canvas SizeCenter X:CenteredChange Background ColorChange Foreground ColorChange Image ResolutionChange Image UnitChange 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:ChannelsChannels MenuCheck _size:Cl_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 to create a new 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 move the path around.Click: selectClick: select Drag: moveClip resultClipped to bottom layerClipped to imageCloneClose %sClose this TabCo_py PathColo_rsColorColor BalanceColor PickerColor Picker InformationColor _Balance...Color balance operates only on RGB color layers.Color index:Color:Colori_ze...Coloring _Type for SegmentColoring _Type for SelectionColorizeColorize operates only on RGB color layers.Colorize the ImageColorize the imageColormap EditorColumns:CommentCon_trast:Con_volveConfigure E_xtended Input Devices...Configure G_rid...Configure Keyboard ShortcutsConfigure _Keyboard Shortcuts...Configure selected filterConfigure selected filter: %sConfirm Image SizeConflicting ShortcutsConical (asym)Conical (sym)ConstantConstraintsContext-dependent cursors are cool. They are enabled by default. However, they require overhead that you may want to do without.ContinueContributions byConvertConvert Image to GrayscaleConvert Image to IndexedConvert Image to Indexed ColorsConvert Image to RGBConvert imageConverting to indexed (stage 2)...Converting to indexed (stage 3)...Converting to indexed...ConvolveConvolve Type %sCopy NamedCopying file '%s' from '%s'...Copyright:Corrupt segment %d in gradient file '%s'.Could not create '%s': %sCould not create temporary file for '%s': %sCould not delete '%s': %sCould not open '%s' for reading: %sCould not open '%s' for writing: %sCould not open thumbnail '%s': %sCould not read %d bytes from '%s': %sCould not seek in XCF file: %sCount:Cr_op LayerCreate New Doc_kCreate New TemplateCreate a New ImageCreate a New LayerCreate a New TemplateCreate a new display for this imageCreate a new image from the selected templateCreate a new templateCreate and edit images or photographsCreate and edit pathsCreate path from textCreate selection from pathCreating folder '%s'...CropCrop & ResizeCrop & Resize InformationCrop ImageCrop LayerCrop imageCrop or Resize an imageCrop: Crosshair onlyCu_tCu_t Named...Cubic (Best)Current _StatusCurrent height:Current layer onlyCurrent statusCurrent width:Curve TypeCurvesCurves for indexed layers cannot be adjusted.CustomCustom colorCustom gradientCutCut NamedCyanCyan:D_uplicate BrushD_uplicate ChannelD_uplicate GradientD_uplicate LayerD_uplicate PaletteD_uplicate PathD_uplicate PatternD_uplicate Template...Dark check colorDash dot dot...Dash dot...Dash pattern:DashedDate:DebugDefault Appearance in Fullscreen ModeDefault Appearance in Normal ModeDefault GridDefault Image GridDefault _interpolation:Default _layer & channel preview size:Default _threshold:Delete AnchorDelete Layer Mas_kDelete Layer MaskDelete 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: %sDesaturateDesaturate operates only on RGB color layers.DescriptionDevice StatusDevicesDialogsDialogs MenuDirect ColorDisable Layer MaskDisplayDisplay NavigationDisplay _Filters...Display type:Displaying [%0.6f, %0.6f]Distance:Distance: %0.6fDitheringDo you really want to reset all filters to default values?Do you really want to reset all tool options to default values?Document Histor_yDocument HistoryDocumentsDocuments MenuDod_geBurnDodgeDodge or Burn strokesDodge/BurnDouble dashedDrag PathDrag: moveDraw in inkDrawableDrawable proceduresDue to lack of any fonts, text functionality is not available.Duplicate brushDuplicate gradientDuplicate paletteDuplicate pathDuplicate patternDuplicate the selected templateEEK: can't undoE_xport Path...E_xtra SmallEdge-De_tectEditEdit Channel AttributesEdit Channel ColorEdit Color Palette EntryEdit Layer AttributesEdit Layer MaskEdit ModeEdit Palette ColorEdit Path AttributesEdit TemplateEdit brushEdit colorEdit gradientEdit paletteEdit path attributesEdit patternEdit proceduresEdit the selected templateEllipse SelectEmpty ChannelEmpty LayerEmpty Text LayerEmpty variable name in environment file %sEn_hanceEnable this controllerEnable to display a handy GIMP tip on startup.Enable to display tooltips.EnormousEnter a name for the merged paletteEnter a name for the saved optionsEnter a name for this bufferEnter a name for this templateEnter a new name for the saved optionsEnter location (URI):EnvironmentEnvironment FoldersEqualizeEqualize does not operate on indexed layers.Erase to background or transparencyEraserError Co_nsoleError ConsoleError Console MenuError saving XCF file: %sError while parsing '%s' in line %d: %sError while reading '%s': %sError while 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.ErrorsEx_tra LargeExpanded as necessaryExport Path to SVGExposure:Extended Input DevicesExtensionsFG color fillFG to BG (HSV)FG to BG (RGB)FG to TransparentFG to transparentFG/BGFG/BG ColorFS relaxFS rigorFS to layerFade outFailed to import gradients from '%s': %sFailed to import paths from '%s': %sFatal parse error in brush file '%s': File appears truncated.Fatal parse error in brush file '%s': File is corrupt.Fatal parse error in brush file '%s': Not a GIMP brush file.Fatal parse error in brush file '%s': Unknown GIMP brush shape.Fatal parse error in brush file '%s': Unknown GIMP brush version.Fatal parse error in brush file '%s': Unknown depth %d.Fatal parse error in brush file '%s': Unknown version %d.Fatal parse error in brush file '%s': Unsupported brush depth %d -GIMP brushes must be GRAY or RGBA.Fatal parse error in gradient file '%s': File is corrupt.Fatal parse error in gradient file '%s': Not a GIMP gradient file.Fatal parse error in palette file '%s': Missing magic header.Fatal parse error in palette file '%s': Missing magic header. -Does this file need converting from DOS?Fatal parse error in palette file '%s': Read error in line %d.Fatal parse error in pattern file '%s': Could not read %d bytes: %sFatal parse error in pattern file '%s': Unknown pattern format version %d.Fatal parse error in pattern file '%s: Unsupported pattern depth %d. -GIMP Patterns must be GRAY or RGB.Fea_ther...Feather SelectionFeather edgesFeather selection byFileFile Open _DialogFile OperationsFile TypeFile is truncatedFill 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 patternFilte_rsFinal, Merged Layer should be:Finding Contiguous RegionsFinding Similar ColorsFit Image to WindowFit to windowFixed aspect ratioFixed sizeFlatten ImageFlipFlip LayerFlip PathFlip Text LayerFlip Type %sFlip _HorizontallyFlip _VerticallyFlip imageFlip the layer or selectionFlipping...Float SelectionFloat selectionFloating Selection -(%s)Floating Selection to LayerFloating selection to layerFloating selectionsFocusFolderFoldersFont FoldersFontsFonts MenuFor a proper GIMP installation, a folder named '%s' needs to be created.ForegroundForeground & background colors. The black and white squares reset colors. The arrows swap colors. Double click to open the color selection dialog.Foreground colorForeground color set to:Foreground: %d, %d, %dFr_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 is not properly installed for the current user. -User installation was skipped because the '--no-interface' flag was used. -To perform user installation, run the GIMP without the '--no-interface' flag.GIMP uses a limited amount of memory to store image data, the so-called "Tile Cache". You should adjust its size to fit into memory. Consider the amount of memory used by other running processes.GIMP uses an additional gtkrc file so you can configure it to look differently than other GTK apps.GIMP versionGIMP will warn the user if an attempt is made to create an image that would take more memory than the size specified here.GammaGeneralGenerally only a concern for 8-bit displays, this sets the minimum number of system colors allocated for the GIMP.Get Monitor ResolutionGiganticGimprc proceduresGla_ss EffectsGradientGradient EditorGradient Editor MenuGradient FoldersGradient Segment's Left Endpoint ColorGradient Segment's Right Endpoint ColorGradient UIGradient:GradientsGradients MenuGrayGrayscaleGreenGreen:GridGrid line spacingGrow SelectionGrow selection byGuideGuide proceduresHSVHSV (%0.3f, %0.3f, %0.3f)HSV (_counter-clockwise hue)HSV (clockwise _hue)Handle position: %0.6fHard edgeHardnessHardness:HeightHeight:HelpHelp BrowserHelp SystemHelp proceduresHex:HighlightsHint for the _docks:Hint for the _toolbox:Histogra_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.Hue-SaturationHue-Saturation operates only on RGB color layers.Hue-_Saturation...Hue:HugeI_con & TextI_mageI_mport Path...IconIcon & descIcon & textIf 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 Title & Statusbar FormatImage Title FormatImage Window AppearanceImage WindowsImage 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 pathsIn_kIn_vertIncrementalIndent:Indentation of the first lineIndex:IndexedIndexed ColorIndexed Color ConversionInfo WindowInitialize Layer Mask to:Initializing Plug-insInitializing plug-in: '%s' -InkInput ControllersInput DevicesInstall a private colormap; might be useful on 8-bit (256 colors) displays.Installation failed. Contact system administrator.Installation successful. Click "Continue" to proceed.Instant updateIntensity: %0.3f Opacity: %0.3fInterfaceInternal GIMP procedureInternal ProceduresInterpolation:Intersect with the current selectionIntersections (crosshairs)Intersections (dots)Invalid UTF-8Invalid UTF-8 data in file '%s'.Invalid UTF-8 string in XCF fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in gradient file '%s'.Invalid UTF-8 string in palette file '%s'Invalid UTF-8 string in pattern file '%s'.Invalid character sequence in URIInvalid shortcut.Invalid width or height. Both must be positive.InvertInvert SelectionInvert does not operate on indexed layers.Invert selectionItem propertiesJustify:Keep TransparencyKeep 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 PreviewsLayerLayer '%s' has no alpha. Layer was placed above it.Layer AttributesLayer B_oundary Size...Layer Fill TypeLayer Mask to SelectionLayer SelectLayer _ModeLayer _Name:Layer cannot be lowered more.Layer cannot be raised higher.Layer is already on the bottom.Layer is already on top.Layer to Image 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 colorLineLine -spacing:Line Width:Line _Style:Line style used for the grid.LinearLoadLoad CurvesLoad LevelsLoad Right Color Fr_omLoad text from fileLoading preview ...Location:LogarithmicLong dashesLooking for data filesLower ChannelLower Channel to _BottomLower LayerLower Layer to BottomLower Path to _BottomLower pathLower path to bottomM_agnifyM_asterMagentaMagenta:MagnifyManage Loadable ModulesMarching _ants speed:Mask Opacity:Mask _Selected AreasMask _Unselected AreasMatrix:Max Depth: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 repeated %d times.Message repeated once.Messages are redirected to stderr.MidtonesMiscellaneousModeMode:Modify Selected ColorModify Selected Range's Color LevelsModify all colorsModify line spacingModule FoldersModule ManagerModule pathModulesMouse WheelMoveMove ChannelMove Floating SelectionMove GuideMove LayerMove Layer MaskMove PathMove SelectionMove Text LayerMove itemMove layers & selectionsMove selectionMove the current layerMove the current pathMove to Screen...Move: N_umber of colors:Na_vigationNa_vigation WindowNa_vigation preview size:NameName:NavigationNew ChannelNew Channel OptionsNew Color from _BGNew Color from _FGNew ImageNew LayerNew PathNew Path OptionsNew TemplateNew brushNew channelNew gradientNew layerNew paletteNew patternNew vectorsNo brushes available for use with this tool.No filter selectedNo linear gradients found in '%s'No paths found in '%s'No paths found in the bufferNo patterns available for this operation.No selectionNo selection to stroke.No thumbnailsNon-alignedNoneNone (Fastest)Normal (128x128)Normal windowNot a regular fileNot enough visible layers for a merge. There must be at least two.Not enough visible paths for a merge. There must be at least two.Number of grid linesNumber of layers:O_ther...OffsetOffset LayerOffset Layer MaskOffset by x/_2, y/2Offset:On diskOn multiprocessor machines, if GIMP has been compiled with --enable-mp this sets how many processors GIMP should use simultaneously.Only in memoryOp_en as Layer...OpacityOpacity:Open ImageOpen Image as LayerOpen LocationOpen Text File (UTF-8)Open _Location...Open _RecentOpen the brush selection dialogOpen the font selection dialogOpen the gradient selection dialogOpen the palette selection dialogOpen the pattern selection dialogOpening '%s' failed: - -%sOpening '%s' failed: %sOptions: -Origin X:Origin Y:Original Width:Other (%s) ...OutlinePDB 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_ettesPalette 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_ncilPencilPercentile:Personal GIMP FolderPerspectivePerspective Transform InformationPerspective...Pick Mode %sPick 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) - -The dying Plug-In may have messed up GIMP's internal state. You may want to save your images and restart GIMP to be on the safe side.Plug-In returned SUCCESS but did not return an imagePlug-InsPlug-inPlug-ins and extensions are external programs run by the GIMP which provide additional functionality. These programs are searched for at run-time and information about their functionality and mod-times is cached in this file. This file is intended to be GIMP-readable only, and should not be edited.PolygonalPortraitPosition: %0.6fPosterizePosterize (Reduce Number of Colors)Posterize _levels:Posterize does not operate on indexed layers.PreferencesPreserve _luminosityPressure sensitivityPressure:PreviewPreview is out of datePreview:PreviewsProcedural DatabaseProcedural databaseProgressPseudo ColorPurpose:QueryQuerying new Plug-insQuerying plug-in: '%s' -QuickMaskQuit 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 LayerRaise Layer to TopRaise Path to _TopRaise 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_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?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 PreviewsRemember the current tool, pattern, color, and brush across GIMP sessions.Remote imageRemove ChannelRemove Dangling E_ntriesRemove Floating SelectionRemove GuideRemove LayerRemove Parasite from ImageRemove PathRemove _EntryRemove floating selectionRemove parasiteRemoving shortcut failed.Rename ChannelRename LayerRename PathRename Saved Tool OptionsRename Text LayerRename itemReorder 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...ResizeResize ImageResize LayerResize PathResize Text LayerResize imageResize itemResize window on _zoomResize window on image _size changeResolution changeResolution: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: - -%sRight Endpoint ColorRight justifiedRotateRotate 90 degrees CC_WRotate 90 degrees _CWRotate LayerRotate PathRotate Text LayerRotate _180 degreesRotate imageRotate the layer or selectionRotating...Rotation InformationS_hearS_how GridS_hrink...S_wap ColorsSa_ve Right Color ToSample averageSample mergedSat.:SaveSave '%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 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 selection to channelSave the positions and sizes of the main dialogs when the GIMP exits.Save to _ChannelSaved OptionsSaving '%s' -Saving '%s' failed: - -%sSawtooth waveScaleScale ImageScale LayerScale PathScale Text LayerScale imageScale itemScale ratio X:Scale ratio Y:Scale ratio:Scale the layer or selectionScalingScaling informationScaling...ScissorsScript-Fu FoldersScroll DownScroll Down (Alt)Scroll Down (Control + Alt)Scroll Down (Control)Scroll Down (Shift + Alt)Scroll Down (Shift + Control + Alt)Scroll Down (Shift + Control)Scroll Down (Shift)Scroll LeftScroll Left (Alt)Scroll Left (Control + Alt)Scroll Left (Control)Scroll Left (Shift + Alt)Scroll Left (Shift + Control + Alt)Scroll Left (Shift + Control)Scroll Left (Shift)Scroll RightScroll Right (Alt)Scroll Right (Control + Alt)Scroll Right (Control)Scroll Right (Shift + Alt)Scroll Right (Shift + Control + Alt)Scroll Right (Shift + Control)Scroll Right (Shift)Scroll UpScroll Up (Alt)Scroll Up (Control + Alt)Scroll Up (Control)Scroll Up (Shift + Alt)Scroll Up (Shift + Control + Alt)Scroll Up (Shift + Control)Scroll Up (Shift)SelectSelect AllSelect Brush FoldersSelect By ColorSelect ColorSelect Environment FoldersSelect File _Type (%s)Select Font FoldersSelect Gradient FoldersSelect Module FoldersSelect NoneSelect Palette FoldersSelect Pattern FoldersSelect Plug-In FoldersSelect 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: Selection: ADDSelection: INTERSECTSelection: REPLACESelection: SUBTRACTSensitivitySet Image Canvas SizeSet Layer Boundary SizeSet Name from _TextSet OpacitySet background colorSet foreground colorSet layer opacitySet preserve transSets 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 previews in the Undo History.Sets the swap file location. The gimp uses a tile based memory allocation scheme. The swap file is used to quickly and easily swap tiles out to disk and back in. Be aware that the swap file can easily get very large if the GIMP is used with large images. Also, things can get horribly slow if the swap file is created on a directory that is mounted over NFS. For these reasons, it may be desirable to put your swap file in "/tmp".Sets the temporary storage directory. Files will appear here during the course of running the GIMP. Most files will disappear when the GIMP exits, but some files are likely to remain, so it is best if this directory not be one that is shared by other users.Sets the text to appear in image window status bars.Sets the text to appear in image window titles.Sets whether GIMP should create previews of layers and channels. Previews in the layers and channels dialog are nice to have but they can slow things down when working with large images.Shadow typeShadowsShapeShape:Shaped (angular)Shaped (dimpled)Shaped (spherical)SharpenSharpen 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 _guidesShow _layer boundaryShow _menubarShow _rulersShow active _brush, pattern & gradientShow active _imageShow gri_dShow image sizeShow interactive boundaryShow memory usageShow paint _tool cursorShow s_electionShow s_tatusbarShow scroll_barsShow tip next time GIMP startsShow tips on _startupShow tool _tipsShow zoom percentageShow zoom ratioShrink SelectionShrink _WrapShrink from image borderShrink selection bySizeSize in memory:Size:SmallSmaller PreviewsSmoothSmooth edgesSmudgeSmudge imageSn_ap to GuidesSna_p to GridSolidSourceSpacingSpacing: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:Spherical (_decreasing)Spherical (i_ncreasing)Spiral (ccw)Spiral (cw)SplitSplit Gradient Segment UniformlySplit Gradient Segments UniformlySplit Segment UniformlySplit Segment _Uniformly...Split Segment at _MidpointSplit Segments UniformlySplit Segments _Uniformly...Split Segments at _MidpointsSquareSt_atus & TextStac_kStandardStarting ExtensionsStarting extension: '%s' -State:Status & descStatus & textStd Dev:Stro_ke Path...Stroke PathStroke SelectionStroke pathStroke with a paint toolSubtract from the current selectionSupersamplingSwap folder:T_oolsTe_xtTe_xt ToolTemp folder:TemplatesTemplates MenuTemporary ProcedureTextText ColorText LayerText modifiedText proceduresThe GIMPThe active brush. -Click to open the Brush Dialog.The active gradient. -Click to open the Gradient Dialog.The active image. -Click to open the Image Dialog.The active pattern. -Click to open the Pattern Dialog.The background color of the grid; only used in double dashed line style.The configured filename encoding cannot be converted to UTF-8: %s - -Please check the value of the environment variable G_FILENAME_ENCODING.The filename '%s' couldn't be converted to a valid URI: - -%sThe foreground color of the grid.The gimprc is used to store personal preferences that affect GIMP's default behavior. Paths to search for brushes, palettes, gradients, patterns, plug-ins and modules can also configured here.The horizontal image resolution.The 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 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 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.ThemeTheme FoldersThemesThere are not enough visible layers for a merge down.There is always a tradeoff between memory usage and speed. In most cases, the GIMP opts for speed over memory. However, if memory is a big issue, try to enable this setting.There is no active layer or channel to copy from.There is no active layer or channel to cut from.There is no active layer or channel to stroke toThere is no active layer or channel to stroke to.There should be a file called '%s'. Please check your installation.There was an error parsing your '%s' file. Default values will be used. A backup of your configuration has been created at '%s'.This file holds a collection of standard media sizes that serve as image templates.This folder is searched for image templates.This folder is searched for user-installed themes.This folder is used to store fonts you only want visible in the GIMP. The GIMP checks this folder in addition to the system-wide GIMP fonts installation when searching for fonts. Use this only if you really want to have GIMP-only fonts, otherwise put things in your global font directory.This folder is used to store parameter files for the Curves tool.This folder is used to store parameter files for the Levels tool.This folder is used to store tool options.This folder is used to store user created and installed scripts. The GIMP checks this folder in addition to the systemwide GIMP scripts folder when searching for scripts.This folder is used to store user created, temporary, or otherwise non-system-supported DLL modules. The GIMP checks this folder in addition to the system-wide GIMP module folder when searching for modules to load during initialization.This folder is used to store user created, temporary, or otherwise non-system-supported additions to the plug-in environment. The GIMP checks this folder in addition to the system-wide GIMP environment folder when searching for plug-in environment modification files.This folder is used to store user created, temporary, or otherwise non-system-supported plug-ins. The GIMP checks this folder in addition to the system-wide GIMP plug-in folder when searching for plug-ins.This folder is used to store user defined brushes. The GIMP checks this folder in addition to the system-wide GIMP brushes installation when searching for brushes.This folder is used to store user defined gradients. The GIMP checks this folder in addition to the system-wide GIMP gradients installation when searching for gradients.This folder is used to store user defined palettes. The GIMP checks this folder in addition to the system-wide GIMP palettes installation when searching for palettes.This folder is used to store user defined patterns. The GIMP checks this folder in addition to the system-wide GIMP patterns installation when searching for patterns.This folder is used to temporarily store undo buffers to reduce memory usage. If The GIMP is unceremoniously killed, files of the form: gimp<#>.<#> may persist in this folder. These files are useless across GIMP sessions and can be destroyed with impunity.This folder will contain a number of important files. Click on one of the files or folders in the tree to get more information about the selected item.This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.This text input field is limited to %d characters.This tool has no options.ThresholdThreshold does not operate on indexed layers.Threshold:Thumbnail %d of %dTile cache size:Tilt:TinyTitle & StatusTo _PathTo_ysToo 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_ansparencyTransformTransform LayerTransform PathTransform Text LayerTransform Tool proceduresTransform layerTransform pathTransform selectionTransformationTransforming...Translation byTransparencyTransparency _type:Triangular waveTrue ColorTypeType %sUnable to add a layer mask since the layer already has one.Unable to cut or copy because the selected region is empty.Unable to open a test swap file. To avoid data loss please check the location and permissions of the swap directory defined in your Preferences (currently "%s").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 HistoryUnitsUnknownUnknown file typeUnloadUnnamedUntitledUse "_Dot for dot" by defaultUse _dynamic keyboard shortcutsUse black and white (1-bit) paletteUse color from gradientUse info windowUser Installation LogUser InterfaceUtility windowValueValue:Version %s brought to you byVersion:VerticalVertical offset of the first grid line; this may be a negative number.Vertical spacing of grid lines.Very largeVery smallViewView as _GridView as _ListView as gridView as listVisual class:Visual depth:Warning: Failed to load data: - -%sWarning: Failed to save data: - -%sWeb BrowserWeb browserWhen enabled, all paint tools will show a preview of the current brush's outline.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 grid is visible by default. This can also be toggled with the "View->Show Grid" command.When enabled, the guides are visible by default. This can also be toggled with the "View->Show Guides" command.When enabled, the image window will automatically resize itself, when zooming into and out of images.When enabled, the image window will automatically resize itself, whenever the physical image size changes.When enabled, the layer boundary is visible by default. This can also be toggled with the "View->Show Layer Boundary" command.When enabled, the menubar is visible by default. This can also be toggled with the "View->Show Menubar" command.When enabled, the rulers are visible by default. This can also be toggled with the "View->Show Rulers" command.When enabled, the scrollbars are visible by default. This can also be toggled with the "View->Show Scrollbars" command.When enabled, the selected brush will be used for all tools.When enabled, the selected gradient will be used for all tools.When enabled, the selected pattern will be used for all tools.When enabled, the selection is visible by default. This can also be toggled with the "View->Show Selection" command.When enabled, the statusbar is visible by default. This can also be toggled with the "View->Show Statusbar" command.When enabled, this will ensure that each pixel of an image gets mapped to a pixel on the screen.When enabled, this will ensure that the full image is visible after a file is opened, otherwise it will be displayed with a scale of 1:1.When enabled, you can change keyboard shortcuts for menu items by hitting a key combination while the menu item is highlighted.WhiteWidthWidth:Window ManagementWindow Manager HintsWindow PositionsWriting '%s' -XCF error: unsupported XCF file version %d encounteredXCF warning: version 0 of XCF file format -did not save indexed colormaps correctly. -Substituting grayscale map.YellowYellow:You can drop dockable dialogs here.You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.You will have to restart GIMP for the following changes to take effect:Your input device settings will be reset to default values the next time you start GIMP.Your keyboard shortcuts will be reset to default values the next time you start GIMP.Zoom & Resize BehaviorZoom 1:1Zoom AllZoom InZoom OutZoom RatioZoom Ratio:Zoom _AllZoom _InZoom _OutZoom allZoom factor: %d:1Zoom inZoom in & outZoom outZoom:[ Base Image ]_About_Acquire_Add Color from BG_Add Color from FG_Add Tab_Add to Selection_Advanced Options_Airbrush_All_Anchor Layer_Antialiasing_Arbitrary Rotation..._Artistic_Aspect_Auto_B_BG Color_Background color:_Black (full transparency)_Blending Function for Segment_Blending Function for Selection_Blur_Brightness:_Brush_Brushes, Patterns & Gradients_Bucket Fill_By Color_C_Channels_Clear Errors_Clear Undo History_Clone_Close_Close Tab_Clouds_Color Tools_Colors_Configure Color and Opacity..._Context Help_Copy_Copy Named..._Create Image from Template..._Crop & Resize_Crop Image_Curved_Curves..._Dark Check Color_Default Colors_Delete Brush_Delete Buffer_Delete Channel_Delete Color_Delete Gradient..._Delete Image_Delete Layer_Delete Palette_Delete Path_Delete Pattern..._Delete Saved Options_Delete Segment_Delete Selection_Delete Template_Desaturate_Detach Tab_Device Status_Dialogs_Discard Changes_Discard Text Information_Distorts_Dot for Dot_Duplicate_Edit_Edit Brush..._Edit Channel Attributes..._Edit Color..._Edit Gradient..._Edit Layer Attributes..._Edit Palette..._Edit Path Attributes..._Edit Pattern..._Edit Template..._Ellipse Select_Enable layer & channel previews_Enormous_Equalize_Eraser_FG Color_File_Fit Image in Window_Flatten Image_Flip_Flip Segment_Flip Selection_Float_Font_Fonts_Foreground color:_Free Select_G_Generic_Gigantic_Gradient_Gradients_Grayscale_Grayscale copy of layer_Grow..._Hardness_Help_Horizontal:_Hue:_Huge_Icon_Icon:_Image_Images_Import_Import Palette..._Indexed..._Info Window_Intersect with Selection_Invert_Large_Layer_Layers_Layers, Channels & Paths_Left Endpoint_Left Neighbor's Right Endpoint_Light Check Color_Light Effects_Lightness:_Linear_Load Left Color From_Lower Channel_Lower Layer_Lower Path_M_Manually_Map_Mask_Mask to Selection_Measure_Medium_Merge Palettes..._Misc. Stuff_Mode_Module Manager_Move_Name:_Nature_New Channel..._New Gradient_New Layer..._New Palette_New Path..._New Pattern_New Template..._New View_New..._Next tip_None_Offset..._Opacity_Open Image_Open..._Padding Color_Paint Tools_Paintbrush_Palette_Paste_Paste Buffer_Paste Named..._Paths_Pattern_Perspective_Posterize..._Preferences_Preview_Previous tip_Properties_Quit_R_RGB_Radius_Raise Channel_Raise Layer_Raise Path_Raise Views_Raise or Open Image_Rect Select_Redo_Redo %s_Refresh Brushes_Refresh Gradients_Refresh Palettes_Refresh Patterns_Render_Replicate Segment..._Replicate Selection..._Rescan Font List_Reset Saved Input Device Settings to Default Values_Reset Saved Keyboard Shortcuts to Default Values_Restore Options from_Right Endpoint_Right Neighbor's Left Endpoint_Rotate_Saturation:_Save_Save Left Color To_Save Options to_Save input device settings on exit_Save keyboard shortcuts on exit_Save window positions on exit_Scale_Scale Image..._Scale Layer..._Select_Selection_Selection Editor_Selection Tools_Shape_Sharpen_Sinusoidal_Small_Smudge_Stroke Selection..._Subtract from Selection_Tab Style_Template:_Templates_Text_Threshold..._Tiny_Tip of the Day_Tools_Transform_Transform Tools_Undo_Undo %s_Vertical:_View_Web_White (full opacity)_X:_Xtns_Y_Y:_Zoom_Zoom (%s)colorscopydpiexpected 'yes' or 'no' for boolean token %s, got '%s'fatal parse errorgrayscalegrayscale-emptyinchinchesindexedindexed-emptyinvalid UTF-8 stringinvalid value '%ld' for icon typeinvalid value '%ld' for token %sinvalid value '%s' for icon typeinvalid value '%s' for token %smillimetermillimetersn/apercentpicapicaspixelpixelspixels/%apixels/%spointpointstips-locale:Ctranslator-creditsvalue for token %s is not a valid UTF-8 stringwhile parsing token '%s': %sProject-Id-Version: gimp 2.1.6 -Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-01-22 17:32+0100 -PO-Revision-Date: 2004-09-27 02:33+0800 -Last-Translator: Abel Cheung -Language-Team: Chinese (traditional) -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8-bit - -“%sâ€é¸é …無效 - -用法:%s [é¸é … ... ] [檔案 ... ] - - --debug-handlers 啟用éžå¼·åˆ¶æ€§çš„åµéŒ¯è¨Šè™Ÿè™•ç†ç¨‹åºã€‚ - --display 使用指定的 X ç•«é¢ä¾†é¡¯ç¤ºç¨‹å¼ã€‚ - --dump-gimprc å°‡é è¨­çš„設定寫入 gimprc 檔案。 - --no-cpu-accel ä¸é€²è¡Œç‰¹åˆ¥çš„ CPU 優化。 - --no-shm GIMP 和增效模組之間ä¸ä½¿ç”¨å…±äº«è¨˜æ†¶é«”。 - --pdb-compat-mode - 是å¦å•Ÿç”¨ç¨‹åºè³‡æ–™åº«çš„兼容模å¼ã€‚ - --session 使用å¦ä¸€å€‹ sessionrc 檔案。 - --stack-trace-mode - 出ç¾å¼·åˆ¶æ€§è¨Šè™Ÿæ™‚是å¦é€²å…¥åµéŒ¯æ¨¡å¼ã€‚ - --system-gimprc 使用指定的系統 gimprc 檔案。 - --verbose 顯示啟動訊æ¯ã€‚ - -b, --batch <指令> 在ä¸é–‹å•Ÿåœ–形介é¢çš„模å¼ä¸‹åŸ·è¡Œå‘½ä»¤ã€‚ - -c, --console-messages 在 console 而éžå°è©±æ–¹å¡Šé¡¯ç¤ºè­¦å‘Šè¨Šæ¯ã€‚ - -d, --no-data ä¸è¼‰å…¥ç­†åˆ·ã€æ¼¸å±¤ã€è‰²ç›¤åŠåœ–樣。 - -f, --no-fonts ä¸è¼‰å…¥ä»»ä½•å­—型。 - -g, --gimprc 使用指定的 gimprc 檔案。 - -h, --help 顯示本說明文字。 - -i, --no-interface 在ä¸é¡¯ç¤ºä½¿ç”¨è€…介é¢çš„模å¼ä¸‹åŸ·è¡Œã€‚ - -s, --no-splash ä¸é¡¯ç¤ºå•Ÿå‹•ç•«é¢ã€‚ - -v, --version 顯示版本資訊。 -%d 個圖層%d 個圖層%d×%d åƒç´ %g×%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%)4:1 (400%)8:1 (800%)<%s><<無效>><沒有模組>為了使 GIMP 發æ®æœ€ä½³çš„效能,å¯èƒ½éœ€è¦èª¿æ•´æŸéƒ¨ä»½è¨­å®šã€‚The GIMP ─ GNU å½±åƒè™•ç†ç¨‹å¼ -版權所有 ©1995-2004 -Spencer Kimballã€Peter Mattis åŠ the GIMP é–‹ç™¼åœ˜éšŠã€‚ç„¡æ³•æ­£ç¢ºåˆ†æž GIMP æ示檔內容ï¼GIMP æ示檔似乎ä¸å­˜åœ¨ï¼åŠ å…¥è‡³é¸æ“‡å€åŸŸ(_A)角度(_N)關於 GIMP使用中的濾é¡æ–°å¢žé€æ˜Žè‰²ç‰ˆ(_H)新增é€æ˜Žè‰²ç‰ˆæ–°å¢žè‰²ç‰ˆæ–°å¢žåƒè€ƒç·šæ–°å¢žæ°´å¹³åƒè€ƒç·šæ–°å¢žåœ–層é®ç½©(_Y)...新增圖層新增圖層é®ç½©æ–°å¢žè·¯å¾‘新增文字圖層新增垂直åƒè€ƒç·šç‚ºåœ–層加上é®ç½©æ–°å¢žåœ–層é®ç½©å°‡æ–‡å­—加進影åƒä¸­å°‡ç›®å‰çš„é¡è‰²åŠ å…¥è‰²å½©ä½¿ç”¨ç´€éŒ„加入色盤 %s加入至目å‰çš„é¸æ“‡å€åŸŸåŠ å…¥ä½ˆæ™¯ä¸»é¡Œâ€˜%s’(%s) -é¡å¤–輸入è£ç½®èª¿æ•´äº®åº¦åŠå°æ¯”調整色彩平衡調整色彩曲線調整色階調整亮度åŠå°æ¯”調整色彩平衡調整色彩曲線調整色階調整色相/亮度/彩度調整色相åŠå½©åº¦è‡ªå‹•èª¿æ•´è‰²éšŽèª¿æ•´æ•ˆæžœï¼šå—影響å€åŸŸ %så™´æ§ä½¿ç”¨å¯è®Šå£“çš„å™´æ§é€æ˜Žå€åŸŸè½‰ç‚ºé¸æ“‡å€åŸŸ(_P)è¦å°é½Šå°é½Šæ–¹å¼æ‰€æœ‰è‰²ç‰ˆæ‰€æœ‰æª”案 (*.*)所有影åƒå’Œå¾©åŽŸçš„資料如果無法寫進 Tile Cache 裡,就會寫入一個交æ›æª”中。這個檔案應該放在一個有足夠空間 (例如數百 MB) 的本機檔案系統中。在 UNIX 的系統中,建議使用系統的暫存目錄 (“/tmpâ€æˆ–“/var/tmpâ€)。å…許將完全é€æ˜Žçš„å€åŸŸå¡«è‰²å¯é¸å–完全é€æ˜Žçš„å€åŸŸå…許放大 %sé€æ˜Žé€æ˜Žå€åŸŸè½‰ç‚ºé¸æ“‡å€åŸŸé€æ˜Žï¼šå‹•ç•«(_I)將浮動é¸æ“‡å€åŸŸçš„ä½ç½®å›ºå®šå°‡æµ®å‹•é¸æ“‡å€åŸŸå›ºå®šä½ç½®å°‡æµ®å‹•é¸æ“‡å€åŸŸçš„ä½ç½®å›ºå®šè§’度:å擦拭 %s平滑化外觀套用圖層é®ç½©å¥—用圖層é®ç½©(_M)套用圖層é®ç½©æ˜¯å¦ç¢ºå®šè¦åŒæ™‚在清單åŠç£ç¢Ÿè£¡åˆªé™¤â€œ%sâ€ï¼Ÿæ˜¯å¦ç¢ºå®šè¦åŒæ™‚在清單åŠç£ç¢Ÿè£¡åˆªé™¤ç¯„本“%sâ€ï¼Ÿè·Ÿéš¨å好設定(_P)如果在未儲存影åƒçš„情æ³ä¸‹é—œé–‰è¦–窗,必須先得到使用者åŒæ„。長寬比例:長寬比:連上附帶物件在影åƒä¸­åŠ å…¥é™„帶物件連上附帶資訊作者:自動自動收縮自動收縮é¸æ“‡ç¯„åœè‡ªå‹•èª¿æ•´è¦–窗尺寸自動載入自動åµæ¸¬å¯ä½¿ç”¨çš„濾é¡å¡«ä¸ŠèƒŒæ™¯é¡è‰²äº®åº¦åŠå°æ¯”(_R)...背景é¡è‰²èƒŒæ™¯é¡è‰²èƒŒæ™¯é¡è‰²è¨­å®šç‚ºï¼šèƒŒæ™¯é¡è‰²ï¼š%d,%d,%d斜邊雙線性黑白黑:混åˆç«¯é»žçš„é¡è‰²(_N)混色(_D)混色混åˆç«¯é»žæ™‚åŒæ™‚拉勻é€æ˜Žåº¦(_Y)混色:混色:ä¸é©ç”¨æ–¼ç´¢å¼•è‰²å½±åƒã€‚正在進行混色...è—è—:模糊化模糊化或清晰化邊界(_R)...é¸æ“‡é‚Šç·£ç¯„åœäº®åº¦åŠå°æ¯”「亮度åŠå°æ¯”ã€ä¸é©ç”¨æ–¼ç´¢å¼•è‰²åœ–層。筆刷編輯程åºç­†åˆ·è³‡æ–™å¤¾ç­†åˆ·ä»‹é¢ç­†åˆ·ï¼šç­†åˆ·ã€Œç­†åˆ·ã€é¸å–®å¡«è‰²ç·©è¡å€ã€Œç·©è¡å€ã€é¸å–®ç‡»é»‘ä¾å»¶ä¼¸æª”åCMYK微調(_A)...é¡è‰²é¸æ“‡ç¨‹åº(_O)åˆä½µ(_O)調校螢幕解æžåº¦ç„¡æ³•å¾©åŽŸ %s畫布尺寸(_V)...å–消無法新增圖層é®ç½©ï¼Œå› ç‚ºé®ç½©çš„尺寸和指定圖層的尺寸ä¸åŒã€‚無法在沒有é€æ˜Žè‰²ç‰ˆçš„圖層中加上圖層é®ç½©ã€‚無法在ä¸å±¬æ–¼ä»»ä½•å½±åƒçš„圖層中加上圖層é®ç½©ã€‚無法固定這個圖層,因為它ä¸æ˜¯æµ®å‹•çš„é¸æ“‡å€åŸŸã€‚無法從浮動é¸æ“‡å€åŸŸç”¢ç”Ÿæ–°çš„圖層,因為它屬於å¦ä¸€å€‹åœ–層é®ç½©æˆ–色版。無法建立目錄‘%s’:%s無法產生é è¦½åœ–無法è£å‰ªï¼Œå› ç‚ºé¸æ“‡å€åŸŸæ˜¯ç©ºç™½çš„。無法展開 ${%s} 變數因為é¸æ“‡å€åŸŸæ˜¯ç©ºç™½çš„,所以無法令é¸æ“‡å€åŸŸæµ®å‹•ã€‚ä¸å¯æå‡æ²’有é€æ˜Žåº¦çš„圖層。無法儲存,因為未é¸å–任何部份。畫布尺寸中心點 X:置中更改背景é¡è‰²æ›´æ”¹å‰æ™¯é¡è‰²æ›´æ”¹å½±åƒè§£æžåº¦æ›´æ”¹å½±åƒçš„é‡åº¦å–®ä½æ›´æ”¹æ ¼ç·šèƒŒæ™¯é¡è‰²æ›´æ”¹æ ¼ç·šå‰æ™¯é¡è‰²æ›´æ”¹ç´¢å¼•è‰²è‰²ç›¤æ›´æ”¹åœ–層或é¸æ“‡å€åŸŸçš„é€è¦–模å¼ç„¡æ³•æ›´æ”¹æ·å¾‘éµã€‚色版色版屬性色版å稱:色版無法å†å‘下移。色版無法å†å‘上移。修改色版é¡è‰²è‰²ç‰ˆå·²ç¶“在最底層。色版已經到é”最頂層。色版轉為é¸æ“‡å€åŸŸ(_C)色版轉為é¸æ“‡å€åŸŸè‰²ç‰ˆï¼šè‰²ç‰ˆã€Œè‰²ç‰ˆã€é¸å–®æ–¹æ ¼å¤§å°(_S):清除(_E)清除清除色版清除復原紀錄清除所有文字清除錯誤訊æ¯æ¸…除復原紀錄...請按「繼續ã€æŽ¥å—以上的設定。請按「繼續ã€å»ºç«‹ GIMP 個人資料夾請按「繼續ã€é€²å…¥ GIMP 用戶安è£ç¨‹åºæŒ‰ä¸‹é€™è£¡å¯ä»¥è£½ä½œæ–°çš„路徑。按下這裡å¯ä»¥é¸æ“‡æ‚¨æº–備編輯的路徑。按下這裡更新é è¦½åœ– -%s å³ä½¿é è¦½åœ–是最新的,ä»ç„¶å¼·åˆ¶æ›´æ–°å…§å®¹æŒ‰ä¸‹å¾Œæ‹–曳å¯ä»¥ç§»å‹•è·¯å¾‘。按下按鈕:é¸å–按下按鈕:é¸å– 拖曳:移動è£å‰ªçµæžœè£å‰ªæˆæœ€åº•åœ–層的尺寸è£å‰ªæˆå½±åƒå°ºå¯¸æ¨¡ä»¿é—œé–‰ %s關閉這個分é è¤‡è£½è·¯å¾‘(_P)色彩(_R)é¡è‰²è‰²å½©å¹³è¡¡é¡è‰²é¸æ“‡ç¨‹åºæœ‰é—œé¡è‰²é¸æ“‡ç¨‹åºçš„資訊色彩平衡(_B)...色彩平衡åªé©ç”¨æ–¼ RGB 色系的圖層。色彩索引:é¡è‰²ï¼šè‘—色(_Z)...å€æ®µçš„著色方å¼(_T)所有é¸å®šçš„å€æ®µçš„著色方å¼(_T)著色著色åªé©ç”¨æ–¼ RGB 色系的圖層。將影åƒè‘—色為影åƒè‘—色Colormap 編輯器直行行數:備註å°æ¯”(_T):模糊化或清晰化(_V)設定é¡å¤–的輸入è£ç½®(_X)...設定網格顯示方å¼(_R)...設定æ·å¾‘éµè¨­å®šæ·å¾‘éµ(_K)...設定指定的濾é¡è¨­å®šæŒ‡å®šçš„濾é¡ï¼š%s確èªå½±åƒå°ºå¯¸æ·å¾‘éµæœ‰è¡çªåœ“éŒå½¢(ä¸å°ç¨±)圓éŒå½¢(å°ç¨±)常數é™åˆ¶åœ¨ä¸åŒçš„情æ³ä¸‹ä½¿ç”¨ä¸åŒçš„滑鼠指標是很棒的,é è¨­æœƒä½¿ç”¨é€™ç¨®æ–¹å¼é¡¯ç¤ºæ»‘鼠指標。但是,它也會消耗一些資æºï¼ŒæŸäº›æƒ…æ³ä¸‹æ‚¨å¯èƒ½ä¸å¸Œæœ›ä½¿ç”¨é€™ç¨®è¨­å®šã€‚繼續由以下人仕å”助開發轉æ›å°‡å½±åƒè‰²ç³»è½‰æ›ç‚ºç°éšŽå°‡å½±åƒè‰²ç³»è½‰æ›ç‚ºç´¢å¼•è‰²å°‡å½±åƒè‰²ç³»æ›´æ”¹ç‚ºç´¢å¼•è‰²å°‡å½±åƒè‰²ç³»è½‰æ›ç‚º RGB轉æ›å½±åƒæ ¼å¼å°‡å½±åƒè‰²ç³»è½‰æ›ç‚ºç´¢å¼•è‰² (第 2 步驟)...將影åƒè‰²ç³»è½‰æ›ç‚ºç´¢å¼•è‰² (第 3 步驟)...將影åƒè‰²ç³»è½‰æ›ç‚ºç´¢å¼•è‰²...模糊化或清晰化Convolve æ–¹å¼ %s複製並命å從‘%2$s’複製檔案‘%1$s’...版權:漸層檔案 %2$s 中的第 %1$d 個å€æ®µå·²æ壞。無法製作‘%s’:%s無法產生‘%s’所需的暫存檔:%s無法刪除‘%s’:%s無法開啟‘%s’來讀å–資料:%s無法開啟‘%s’來寫入資料:%s無法開啟縮圖‘%s’:%s無法從‘%2$sâ€™è®€å– %1$d ä½å…ƒçµ„:%3$s無法在 XCF 檔案中æœå°‹è³‡æ–™ï¼š%s數目:è£å‰ªåœ–層(_O)新增å¯åµŒå…¥å°è©±æ–¹å¡Šçš„視窗(_K)製作新的範本製作新的影åƒæ–°å¢žåœ–層製作新的範本用新的視窗來顯示該影åƒä¾æŒ‡å®šçš„範本製作新的影åƒè£½ä½œæ–°çš„範本製作/修改影åƒæˆ–相片製作和修改路徑ä¾æ–‡å­—輪廓製作路徑由路徑產生é¸æ“‡å€åŸŸå»ºç«‹ç›®éŒ„‘%s’...è£å‰ªè£å‰ªåŠèª¿æ•´å°ºå¯¸æœ‰é—œè£å‰ªåŠèª¿æ•´å°ºå¯¸çš„資訊è£å‰ªå½±åƒè£å‰ªåœ–層è£å‰ªå½±åƒè£å‰ªå½±åƒæˆ–調整影åƒå°ºå¯¸è£å‰ªï¼šåªæœ‰å字記號剪下(_T)剪下並命å(_T)...立方內æ’法(å“質最高)ç›®å‰çš„狀態(_S)ç›®å‰çš„高度:僅é©ç”¨æ–¼ç›®å‰åœ–層目å‰çš„狀態目å‰çš„寬度:曲線類型曲線在索引色色系的圖層中ä¸å¯ä»¥èª¿æ•´æ›²ç·šã€‚自é¸è‡ªé¸é¡è‰²è‡ªé¸æ¼¸å±¤å‰ªä¸‹å‰ªä¸‹ä¸¦å‘½åæ°°è—æ°°è—:複製筆刷(_U)複製色版(_U)複製漸層(_U)複製圖層(_U)複製色盤(_U)複製路徑(_U)複製圖樣(_U)複製範本(_U)...深色方格線點點...線點...虛線樣å¼ï¼šè™›ç·šæ—¥æœŸï¼šåµéŒ¯å…¨èž¢å¹•æ¨¡å¼ä¸­çš„é è¨­å¤–觀在正常模å¼çš„é è¨­å¤–觀é è¨­æ ¼ç·šé è¨­å½±åƒæ ¼ç·šé è¨­ä½¿ç”¨çš„å½±åƒå…§æ’法(_I):圖層åŠè‰²ç‰ˆçš„é è¨­é è¦½åœ–尺寸(_L):é è¨­ç•Œé™å€¼(_T):刪除å‘é‡åˆªé™¤åœ–層é®ç½©(_K)刪除圖層é®ç½©åˆªé™¤å€æ®µåˆªé™¤ç¯„本刪除筆刷刪除色版刪除é¡è‰²åˆªé™¤æ¼¸å±¤åˆªé™¤åœ–層刪除圖層é®ç½©åˆªé™¤è‰²ç›¤åˆªé™¤è·¯å¾‘刪除圖樣刪除已儲存的設定...刪除é¸å®šçš„ç·©è¡å€åˆªé™¤æŒ‡å®šçš„範本刪除該影åƒåˆªé™¤å‘é‡åˆªé™¤â€˜%s’失敗:%s去彩度去彩度åªé©ç”¨æ–¼ RGB 色彩的圖層。æè¿°è£ç½®ç‹€æ…‹è£ç½®å°è©±æ–¹å¡Šã€Œå°è©±æ–¹å¡Šã€é¸å–®Direct Colorä¸ä½¿ç”¨åœ–層é®ç½©é¡¯ç¤ºé¡¯ç¤ºå°Žè¦½è¦–窗顯示濾é¡(_F)...顯示類型:顯示 [%0.6f, %0.6f]è·é›¢ï¼šè·é›¢ï¼š%0.6f擬色(Dithering)您是å¦ç¢ºå®šè¦å°‡æ‰€æœ‰æ¿¾é¡åƒæ•¸é‚„原為é è¨­å€¼ï¼Ÿæ‚¨æ˜¯å¦ç¢ºå®šè¦å°‡æ‰€æœ‰å·¥å…·é¸é …還原為é è¨­å€¼ï¼Ÿæ–‡ä»¶ç´€éŒ„(_Y)文件紀錄文件「文件ã€é¸å–®æ¼‚白/燻黑(_G)漂白漂白或燻黑影åƒæ¼‚白/燻黑雙é‡è™›ç·šæ‹–曳路徑拖曳:移動用墨水繪畫å¯ç¹ªç‰©ä»¶å¯ç¹ªç‰©ä»¶ç¨‹åºå› ç‚ºç¼ºä¹å¯ä½¿ç”¨çš„字型,所以無法æ供文字功能。複製筆刷複製漸層複製色盤複製路徑複製圖樣複製指定的範本無法復原匯出路徑(_X)...很å°(_X)é‚Šç·£åµæ¸¬(_T)編輯修改色版屬性修改色版é¡è‰²ä¿®æ”¹è‰²ç›¤é …目修改圖層屬性新增圖層é®ç½©ç·¨è¼¯æ¨¡å¼ä¿®æ”¹è‰²ç›¤é¡è‰²ä¿®æ”¹è·¯å¾‘屬性修改範本修改筆刷修改é¡è‰²ä¿®æ”¹æ¼¸å±¤ä¿®æ”¹è‰²ç›¤ä¿®æ”¹è·¯å¾‘屬性修改圖樣編輯程åºä¿®æ”¹æŒ‡å®šçš„範本é¸æ“‡æ©¢åœ“空白色版空白圖層空白文字圖層環境變數檔 %s 中出ç¾ç©ºç™½çš„變數å稱加強å“質(_H)啟用這個輸入è£ç½®é¸ç”¨æœ¬é¸é …å¯åœ¨å•Ÿå‹•ç¨‹å¼æ™‚顯示å°æ示。é¸ç”¨æœ¬é¸é …å¯é¡¯ç¤ºå·¥å…·æ示。極大請輸入åˆä½µå¾Œçš„色盤的å稱輸入這個設定組åˆçš„å稱為此緩è¡å€å‘½å請為該範本命å輸入這個設定組åˆçš„æ–°å稱輸入ä½ç½® (URI):系統環境環境變數資料夾亮度等化亮度等化ä¸é©ç”¨æ–¼ç´¢å¼•è‰²çš„圖層。將影åƒæ“¦æˆåº•è‰²æˆ–é€æ˜Žæ©¡çš®æ“¦éŒ¯èª¤è¨Šæ¯è¦–窗(_N)錯誤訊æ¯è¦–窗「錯誤訊æ¯è¦–窗ã€é¸å–®å„²å­˜ XCF 檔案時發生錯誤:%s分æžç¬¬ %2$d 行的‘%1$s’時發生錯誤:%3$s讀å–‘%s’時發生錯誤:%s讀å–筆刷檔案‘%s’時發生錯誤:%s寫入‘%s’時發生錯誤:%s寫入 XCF 檔案時發生錯誤:%s開啟檔案‘%s’來寫入資料時發生錯誤: -%s寫入‘%s’時發生錯誤:%s寫入‘%s’的暫存檔時發生錯誤:%s -根本沒有產生檔案。寫入‘%s’的暫存檔時發生錯誤:%s -沒有更改原來的檔案。錯誤很大(_T)å¿…è¦æ™‚擴大將路徑匯出為 SVGæ›å…‰åº¦ï¼šé¡å¤–輸入è£ç½®ä¾å»¶ä¼¸æª”å填上å‰æ™¯é¡è‰²å‰æ™¯è‰²è‡³èƒŒæ™¯è‰²(HSV)å‰æ™¯è‰²è‡³èƒŒæ™¯è‰²(RGB)å‰æ™¯è‰²è‡³é€æ˜Žå‰æ™¯è‰²è‡³é€æ˜Žå‰æ™¯/背景å‰æ™¯/背景色彩浮動é¸æ“‡å€åŸŸè„«é›¢åœ–層浮動é¸æ“‡å€åŸŸé™„上圖層浮動é¸æ“‡å€åŸŸè½‰ç‚ºåœ–層淡出無法從‘%s’匯入路徑:%s無法從‘%s’匯入路徑:%såˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šæª”æ¡ˆä¼¼ä¹Žè¢«æˆªçŸ­äº†ã€‚åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šæª”案內容已經æå£žã€‚åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šå®ƒä¸æ˜¯ GIMP ç­†åˆ·æª”æ¡ˆåˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šGIMP 筆刷版本ä¸æ˜Žåˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šGIMP 筆刷版本ä¸æ˜Žåˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šè‰²å½©æ·±åº¦æ•¸ç›® %d ä¸æ˜Žã€‚åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šç‰ˆæœ¬ %d ä¸æ˜Žã€‚åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šä¸æ”¯æ´ç­†åˆ·è‰²å½©æ·±åº¦ %d -GIMP 筆刷必須使用 GRAY 或 RGBA è‰²ç³»ã€‚åˆ†æž GIMP 漸層檔案‘%s'時出ç¾åš´é‡éŒ¯èª¤ï¼šæª”案內容已æå£žã€‚åˆ†æž GIMP 漸層檔案‘%s'時出ç¾åš´é‡éŒ¯èª¤ï¼šå®ƒä¸æ˜¯ GIMP 漸層檔案。分æžåœ–樣檔案‘%s’的內容時出ç¾åš´é‡éŒ¯èª¤ï¼šç¼ºå°‘了正確的檔頭。載入色盤‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šç¼ºå°‘了正確的檔頭。 -å®ƒæ˜¯å¦ DOS æ ¼å¼çš„檔案?分æžè‰²ç›¤æª”案‘%s’的內容時出ç¾åš´é‡éŒ¯èª¤ï¼šè®€å…¥ç¬¬ %d 行時發生錯誤。分æžåœ–樣檔案‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šæœ‰ %d ä½å…ƒçµ„無法讀入:%s。分æžåœ–樣檔案‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šç„¡æ³•ç†è§£åœ–樣格å¼ç‰ˆæœ¬â€˜%d’。分æžåœ–樣檔案‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šä¸æ”¯æ´è‰²å½©æ·±åº¦ %d。 -GIMP 的圖樣必須使用ç°éšŽæˆ– RGB 色系。羽化(_T)...羽化é¸æ“‡ç¯„åœç¾½åŒ–é‚Šç·£é¸æ“‡ç¯„åœç¾½åŒ–程度:檔案開啟檔案å°è©±æ–¹å¡Š(_D)檔案æ“作檔案格å¼æª”案被截短填色é€æ˜Žåº¦ï¼šå¡«è‰²æ–¹å¼ %såªå°‡è¿‘似的é¡è‰²å¡«è‰²å°‡é€æ˜Žå€åŸŸå¡«è‰²å¡«æ»¿æ•´å€‹é¸æ“‡å€åŸŸå¡«ä¸ŠèƒŒæ™¯é¡è‰²å¡«ä¸ŠèƒŒæ™¯é¡è‰²(_G)填上å‰æ™¯é¡è‰²å¡«ä¸Šåœ–樣(_A)填上圖樣填上é€æ˜Žå¡«ä¸Šç™½è‰²å¡«ä¸Šå‰æ™¯é¡è‰²(_F)填上背景é¡è‰²(_B)填上漸層填上é¡è‰²æˆ–圖樣濾é¡(_R)最後åˆä½µçš„圖層應該:尋找連續å€åŸŸå°‹æ‰¾ç›¸è¿‘çš„é¡è‰²ä»¤å½±åƒç¬¦åˆè¦–窗尺寸符åˆè¦–窗尺寸固定長寬比固定尺寸影åƒå¹³é¢åŒ–ç¿»è½‰ç¿»è½‰åœ–å±¤ç¿»è½‰è·¯å¾‘ç¿»è½‰æ–‡å­—åœ–å±¤ç¿»è½‰æ–¹å¼ %sæ°´å¹³é¡å°„(_H)åž‚ç›´é¡å°„(_V)å½±åƒé¡å°„翻轉圖層或é¸æ“‡å€åŸŸç¿»è½‰ä¸­...浮動é¸æ“‡å€åŸŸæµ®å‹•é¸æ“‡å€åŸŸæµ®å‹•é¸æ“‡å€åŸŸ -(%s)浮動é¸æ“‡å€åŸŸè½‰æ›ç‚ºåœ–層浮動é¸æ“‡å€åŸŸè½‰æ›ç‚ºåœ–層浮動é¸æ“‡å€åŸŸç„¦é»žè³‡æ–™å¤¾è³‡æ–™å¤¾å­—型資料夾字型「字型ã€é¸å–®ç‚ºäº†ä¿è­‰ GIMP 能夠正確安è£ï¼Œç¾åœ¨éœ€è¦å»ºç«‹å為‘%s’的資料夾。å‰æ™¯é¡è‰²é€™æ˜¯å‰æ™¯åŠèƒŒæ™¯é¡è‰²ã€‚ -黑白方塊會é‡è¨­é¡è‰²ã€‚ -箭號å¯äº’æ›é¡è‰²ã€‚ -點兩下則會開啟é¡è‰²é¸æ“‡çª—。å‰æ™¯é¡è‰²å‰æ™¯é¡è‰²è¨­å®šç‚ºï¼šå‰æ™¯é¡è‰²ï¼š%d,%d,%d由路徑轉æ›(_O)自由é¸æ“‡å€åŸŸè‡ªç”±é¸æ“‡å€åŸŸè‡ªç”±ç¹ªç•«å¾žä½ˆæ™¯ä¸»é¡Œ(_T)從視窗系統ç²å–解æžåº¦(ç›®å‰ç‚º %d×%d _dpi)由左至å³ç”±å³è‡³å·¦ä½¿ç”¨é¸æ“‡å€åŸŸç”±ä½ˆæ™¯ä¸»é¡ŒæŒ‡å®šé¸æ“‡æ¨¡ç³Šå€åŸŸ(_Z)全螢幕模å¼(_E)é¸æ“‡æ¨¡ç³Šå€åŸŸGIMPGIMP 擴展功能GIMP 訊æ¯GIMP 效能調整GIMP 增效模組啟動 GIMPGIMP 文字編輯器GIMP å°æ示GIMP 用戶安è£ç¨‹åºGIMP XCF å½±åƒGIMP 無法åˆå§‹åŒ–圖形介é¢ã€‚ -請確定您的圖形顯示環境設定無誤。GIMP 未能在目å‰ä½¿ç”¨è€…的環境下正確地安è£ã€‚ -因為使用‘--no-interface’é¸é …,所以çœç•¥äº†ç”¨æˆ¶å®‰è£çš„步驟。 -如果è¦é€²è¡Œç”¨æˆ¶å®‰è£ç¨‹åºï¼ŒåŸ·è¡Œ GIMP 時請勿加上‘--no-interface’é¸é …。GIMP 使用有é™åº¦çš„記憶體來儲存影åƒè³‡æ–™ï¼Œå³æ‰€è¬‚的‘Tile Cache’。請調整它的大å°ä»¥ç¬¦åˆçœŸæ­£è¨˜æ†¶é«”數é‡ï¼ŒåŒæ™‚也è¦è€ƒæ…®å…¶å®ƒç¨‹åºä½”用的記憶體。GIMP 使用é¡å¤–çš„ gtkrc 檔案,所以您å¯ä»¥å°‡ GIMP 的外觀修改至和其它 GTK 程å¼ä¸åŒã€‚GIMP 版本如果用戶嘗試產生一個使用多於指定記憶體數é‡çš„å½±åƒæ™‚,GIMP 會發出警告訊æ¯æ示用戶。Gamma一般一般上åªæœƒå°ä½¿ç”¨ 8 ä½å…ƒè‰²å½©çš„ç•«é¢æ¯”較é‡è¦ï¼šå®ƒæŒ‡å®šæœƒåˆ†é…給 GIMP çš„é¡è‰²æ•¸ç›®ä¸‹é™ã€‚ç²å–螢幕解æžåº¦éŽå¤§Gimprc 程åºçŽ»ç’ƒæ•ˆæžœ(_S)漸層漸層編輯程åºã€Œæ¼¸å±¤ç·¨è¼¯ç¨‹åºã€é¸å–®æ¼¸å±¤è³‡æ–™å¤¾æ¼¸å±¤å€æ®µçš„左端點é¡è‰²æ¼¸å±¤å€æ®µçš„å³ç«¯é»žé¡è‰²æ¼¸å±¤ä»‹é¢æ¼¸å±¤ï¼šæ¼¸å±¤ã€Œæ¼¸å±¤ã€é¸å–®ç°ç°éšŽç¶ ç¶ ï¼šæ ¼ç·šæ ¼ç·šè·é›¢æ“´å¼µé¸æ“‡ç¯„åœé¸æ“‡ç¯„åœæ“´å¼µç¨‹åº¦ï¼šåƒè€ƒç·šåƒè€ƒç·šç¨‹åºHSVHSV (%0.3f, %0.3f, %0.3f)HSV[逆時é‡è‰²ç›¸](_C)_HSV(順時é‡è‰²ç›¸)控制點ä½ç½®ï¼š%0.6f邊界較分明硬度硬度:高度高度:求助說明文件ç€è¦½å™¨èªªæ˜Žæ–‡ä»¶ç³»çµ±èªªæ˜Žç¨‹åº16 進制:高亮度å€åŸŸåµŒå…¥å¼å°è©±æ–¹å¡Šçš„視窗類型(_D):工具箱的視窗類型(_T):色彩統計圖(_M)色彩統計圖色彩統計圖比例紀錄水平第一æ¢æ°´å¹³æ ¼ç·šçš„ä½ç½®ï¼Œå¯ä»¥æ˜¯è² æ•¸ã€‚æ¯å…©æ¢æ ¼ç·šä¹‹é–“çš„æ°´å¹³è·é›¢ã€‚檔案é¸å–®æœƒä¿ç•™å¤šå°‘個最近開啟的檔案。色相åŠå½©åº¦ã€Œè‰²ç›¸åŠå½©åº¦ã€åªé©ç”¨æ–¼ RGB 色系的圖層。色相åŠå½©åº¦(_S)...色相:巨大圖示åŠæ–‡å­—(_C)å½±åƒ(_M)匯入路徑(_M)...圖示圖示åŠæ述圖示åŠæ–‡å­—如果ç¾åœ¨çµæŸ GIMP,未儲存的部份將會失去。環境變數檔 %s 中出ç¾ä¸åˆæ³•çš„變數å稱:%så½±åƒå½±åƒå’Œæ ¼ç·šè‰²ç›¤ç·¨è¼¯ç¨‹åºå½±åƒè³‡è¨Šã€Œå½±åƒã€é¸å–®å½±åƒå°ºå¯¸å½±åƒç‹€æ…‹åˆ—顯示格å¼å½±åƒç¯„本影åƒæ¨™é¡ŒåŠç‹€æ…‹åˆ—顯示格å¼å½±åƒæ¨™é¡Œæ ¼å¼å½±åƒè¦–窗外觀影åƒè¦–窗影åƒæª”å½±åƒé®ç½©å½±åƒçš„解æžåº¦è¶…出範åœï¼Œæœƒä½¿ç”¨é è¨­çš„解æžåº¦å–代。影åƒå°ºå¯¸å½±åƒä¾†æºå½±åƒé¡žåž‹å½±åƒã€Œå½±åƒã€é¸å–®åŒ¯å…¥é¸é …匯入色盤匯入路徑由 SVG 匯入路徑匯入新的色盤匯入色盤匯入路徑墨水筆(_K)å相(_V)éžå¢žæ¨¡å¼ç¸®æŽ’:第一行縮排的è·é›¢ç´¢å¼•ï¼šç´¢å¼•è‰²ç´¢å¼•è‰²ç´¢å¼•è‰²è½‰æ›è³‡è¨Šè¦–窗將圖層é®ç½©åˆå§‹åŒ–為:åˆå§‹åŒ–增效模組åˆå§‹åŒ–增效模組:‘%s’ -墨水筆輸入è£ç½®è¼¸å…¥è£ç½®ç¨‹å¼æœƒä½¿ç”¨è‡ªå·±çš„色盤;在 8 bit (256 色) ç•«é¢ä¸­æœƒæœ‰ç”¨ã€‚安è£å¤±æ•—。請è¯çµ¡ç³»çµ±ç®¡ç†å“¡ã€‚安è£æˆåŠŸã€‚請按「繼續ã€ã€‚å³æ™‚更新亮度:%0.3f é€æ˜Žåº¦(é€æ˜Ž=0):%0.3f介é¢GIMP 內部程åºå…§éƒ¨ç¨‹åºå…§æ’法:計算和目å‰é¸æ“‡å€åŸŸçš„交集å€åŸŸäº¤é»ž(åå­—)交點(圓點)無效的 UTF-8 字串檔案‘%s’中å«æœ‰ç„¡æ•ˆçš„ UTF-8 文字。XCF 檔案中å«æœ‰ç„¡æ•ˆçš„ UTF-8 字串筆刷檔案‘%s’中å«æœ‰ç„¡æ•ˆçš„ UTF-8 字串。漸層檔案‘%s’中å«æœ‰ç„¡æ•ˆçš„ UTF-8 字串。色盤檔案‘%s’中å«æœ‰ç„¡æ•ˆçš„ UTF-8 字串色盤檔案‘%s’中å«æœ‰ç„¡æ•ˆçš„ UTF-8 字串。URI 中出ç¾ç„¡æ•ˆçš„字符次åºæ·å¾‘éµä¸åˆæ³•ã€‚寬度或高度無效。兩者皆必須為正數。å相é¸å–相åå€åŸŸå相色彩ä¸é©ç”¨æ–¼ç´¢å¼•è‰²çš„圖層。é¸å–相åå€åŸŸç‰©ä»¶å±¬æ€§å°é½Šæ–¹å¼ï¼šä¿ç•™é€æ˜Žåº¦ä¿æŒé•·å¯¬æ¯” %s固定長寬比 %sä¿æŒé«˜åº¦ %sä¿ç•™é€æ˜Žåº¦ä¿æŒå¯¬åº¦ %s下箭咀éµä¸‹ç®­å’€éµ (Alt)ä¸‹ç®­å’€éµ (Control + Alt)ä¸‹ç®­å’€éµ (Control)ä¸‹ç®­å’€éµ (Shift + Alt)ä¸‹ç®­å’€éµ (Shift + Control + Alt)ä¸‹ç®­å’€éµ (Shift + Control)ä¸‹ç®­å’€éµ (Shift)左箭咀éµå·¦ç®­å’€éµ (Alt)å·¦ç®­å’€éµ (Control + Alt)å·¦ç®­å’€éµ (Control)å·¦ç®­å’€éµ (Shift + Alt)å·¦ç®­å’€éµ (Shift + Control + Alt)å·¦ç®­å’€éµ (Shift + Control)å·¦ç®­å’€éµ (Shift)å³ç®­å’€éµå³ç®­å’€éµ (Alt)å³ç®­å’€éµ (Control + Alt)å³ç®­å’€éµ (Control)å³ç®­å’€éµ (Shift + Alt)å³ç®­å’€éµ (Shift + Control + Alt)å³ç®­å’€éµ (Shift + Control)å³ç®­å’€éµ (Shift)上箭咀éµä¸Šç®­å’€éµ (Alt)ä¸Šç®­å’€éµ (Control + Alt)ä¸Šç®­å’€éµ (Control)ä¸Šç®­å’€éµ (Shift + Alt)ä¸Šç®­å’€éµ (Shift + Control + Alt)ä¸Šç®­å’€éµ (Shift + Control)ä¸Šç®­å’€éµ (Shift)GIMP 裡é¢å¯ä»¥éš¨æ™‚é‡æ–°å®šç¾©æ·å¾‘éµã€‚menurc 檔案就是記錄這些設定,令下次啟動 GIMP 時å¯ä»¥é‡æ–°ä½¿ç”¨ã€‚您å¯ä»¥è‡ªè¡Œç·¨è¼¯é€™å€‹æª”案,但在 GIMP 裡定義按éµæœƒæ–¹ä¾¿å¾—多。若刪除這個檔案就會使用 GIMP é è¨­çš„按éµã€‚éµç›¤æ·å¾‘éµå·¦ç«¯é»žçš„é¡è‰²(_E)...æ©«å‘大大型 (256×256)å°‡é è¦½åœ–放大圖層圖層‘%s’沒有é€æ˜Žåº¦ã€‚其它圖層會放在該圖層之上。圖層屬性圖層邊界尺寸(_O)...圖層填色方å¼åœ–層é®ç½©è½‰æ›ç‚ºé¸æ“‡å€åŸŸåœ–層é¸æ“‡åœ–層模å¼(_M)圖層å稱(_N):圖層無法å†å‘下移。圖層無法å†å‘上移。圖層已經在最底層。圖層已經到é”最頂層。令圖層尺寸符åˆå½±åƒå°ºå¯¸åœ–層下é™è‡³åº•å±¤(_B)令圖層符åˆå½±åƒå°ºå¯¸(_I)圖層æå‡è‡³é ‚層(_T)圖層的é€æ˜Žè‰²ç‰ˆ(_A)圖層「圖層ã€é¸å–®åœ–層åˆä½µé¸é …左端點的é¡è‰²é å·¦å°é½Šé•·åº¦ï¼šè®“ GIMP 在æ¯æ¬¡å•Ÿå‹•æ™‚回復上次執行的情æ³ã€‚色階無法調整索引色圖層的色階。淺色方格直線行è·ï¼šç·šæ¢ç²—幼:線æ¢æ¬¾å¼(_S):格線的線æ¢æ¬¾å¼ã€‚線性載入載入曲線載入色階å³ç«¯é»žçš„é¡è‰²æ˜¯(_O)從檔案載入文字正在載入é è¦½åœ–...ä½ç½®ï¼šå°æ•¸é•·è™›ç·šæ­£åœ¨å°‹æ‰¾è³‡æ–™æª”下移色版圖層下é™è‡³åº•å±¤(_B)下移圖層圖層下é™è‡³åº•å±¤è·¯å¾‘下é™è‡³åº•å±¤(_B)下移圖層路徑下é™è‡³åº•å±¤æ”¾å¤§é¡(_A)主è¦(_A)洋紅洋紅:放大é¡ç®¡ç†å¯è¼‰å…¥çš„模組é¸æ“‡å€åŸŸè™›ç·š (Marching _Ants) 移動速度:é®ç½©çš„é€æ˜Žåº¦ï¼šé®è”½å·²é¸å–çš„å€åŸŸ(_S)é®è”½æœªé¸å–çš„å€åŸŸ(_U)矩陣:最大深度:平å‡å€¼ï¼šæ¸¬é‡æ¸¬é‡è·é›¢åŠè§’度測é‡è·é›¢å’Œè§’度測é‡å°ºè¦ä¸¦å¡«ä¸Šå®ƒå€‘的長度:中ä½æ•¸ï¼šä¸­ä¸­è™›ç·šå‘下åˆä½µ(_W)å‘下åˆä½µåˆä½µåœ–層åˆä½µè‰²ç›¤åˆä½µå¯è¦‹åœ–層åˆä½µå¯è¦‹è·¯å¾‘åˆä½µæ­£åœ¨é¡¯ç¤ºçš„圖層(_V)...åˆä½µæ­£åœ¨é¡¯ç¤ºçš„圖層(_V)...åˆä½µæ­£åœ¨é¡¯ç¤ºçš„路徑(_V)åˆä½µåœ–層åˆä½µè‰²ç›¤åˆä½µå‘é‡è¨Šæ¯å·²é‡è¤‡ %d 次。訊æ¯å·²é‡è¤‡ 1 次。訊æ¯æœƒé‡æ–°å°Žå‘至標準錯誤輸出。åŠèª¿è‰²å€åŸŸå…¶å®ƒæ¨¡å¼æ¨¡å¼ï¼šä¿®æ”¹æŒ‡å®šçš„é¡è‰²ä¿®æ”¹æŒ‡å®šç¯„åœçš„色階修改所有é¡è‰²æ›´æ”¹è¡Œè·æ¨¡çµ„資料夾模組總管模組路徑模組滑鼠滾輪移動移動色版移動浮動é¸æ“‡å€åŸŸç§»å‹•åƒè€ƒç·šç§»å‹•åœ–層移動圖層é®ç½©ç§»å‹•è·¯å¾‘移動é¸æ“‡å€åŸŸç§»å‹•æ–‡å­—圖層移動物件移動圖層åŠé¸æ“‡å€åŸŸç§»å‹•é¸æ“‡å€åŸŸç§»å‹•ç›®å‰çš„圖層移動目å‰çš„路徑移至畫é¢...移動:é¡è‰²æ•¸ç›®(_U):導覽(_V)導覽視窗(_V)導覽é è¦½åœ–尺寸(_N):å稱å稱(_N):導覽新增色版新增色版é¸é …加入背景é¡è‰²(_B)加入å‰æ™¯é¡è‰²(_F)æ–°å½±åƒæ–°å¢žåœ–層新增路徑新增路徑é¸é …新增範本新增筆刷新增色版新增漸層新增圖層新增色盤新增圖樣新增å‘é‡æ²’有筆刷å¯é…åˆæ­¤å·¥å…·ä½¿ç”¨ã€‚未é¸å®šæ¿¾é¡åœ¨â€˜%s’中找ä¸åˆ°ä»»ä½•ç·šæ€§çš„漸層在‘%s’中找ä¸åˆ°ä»»ä½•è·¯å¾‘ç·©è¡å€ä¸­æ²’有任何路徑沒有å¯ä¾›æœ¬ç¨‹åºä½¿ç”¨çš„圖樣。未é¸æ“‡æª”案沒有å¯ä»¥ç”¨ä¾†æé‚Šçš„é¸æ“‡å€åŸŸã€‚ä¸æ供縮圖ä¸å°é½Šç„¡ç„¡(速度最快)正常 (128×128)普通視窗ä¸æ˜¯æ™®é€šæª”案å¯è¦‹åœ–層的數目ä¸è¶³ï¼Œç„¡æ³•åˆä½µã€‚最少需è¦å…©å±¤ã€‚å¯è¦‹è·¯å¾‘的數目ä¸è¶³ï¼Œç„¡æ³•åˆä½µã€‚最少需è¦å…©æ¢ã€‚格線數目圖層數目:其它(_T)...移ä½åœ–層移ä½åœ–層é®ç½©ç§»ä½ç§»å‹•è‡³ä¸€åŠå¯¬åº¦åŠé«˜åº¦çš„ä½ç½®(_2)å移é‡ï¼šåœ¨ç£ç¢Ÿä¸­åœ¨æœ‰å¤šå€‹è™•ç†å™¨çš„電腦中,如果編譯 GIMP 時有加入 --enable-mp é¸é …,本數值表示 GIMP 應該åŒæ™‚使用多少個處ç†å™¨ã€‚åªåœ¨è¨˜æ†¶é«”中開啟æˆç‚ºåœ–層(_E)...é€æ˜Žåº¦é€æ˜Žåº¦ï¼šé–‹å•Ÿå½±åƒé–‹å•Ÿå½±åƒæˆç‚ºåœ–層開啟ä½ç½®é–‹å•Ÿæ–‡å­—檔 (UTF-8)é–‹å•Ÿä½ç½®(_L)...常用檔案(_R)開啟筆刷é¸æ“‡å°è©±æ–¹å¡Šã€‚é–‹å•Ÿé¸å–å­—åž‹çš„å°è©±æ–¹å¡Šé–‹å•Ÿæ¼¸å±¤é¸æ“‡å°è©±æ–¹å¡Šã€‚開啟色盤é¸æ“‡å°è©±æ–¹å¡Šé–‹å•Ÿåœ–樣é¸æ“‡å°è©±æ–¹å¡Šã€‚無法開啟‘%s’: - -%s開啟‘%s’失敗:%sé¸é …: -原點 X:原點 Y:原來寬度:其它 (%s) ...輪廓調用程åºâ€˜%s’時出ç¾éŒ¯èª¤ï¼š -第 %d 個åƒæ•¸çš„é¡žåž‹ä¸ç¬¦ (應該是 %s 但實際上是 %s)程åºè³‡æ–™åº«èª¿ç”¨éŒ¯èª¤ï¼š -找ä¸åˆ°â€˜%s’程åºåœ–樣(_A)This is Chinese test: '中文測試'繪圖所有工具å¯ä»¥å…±ç”¨çš„繪圖é¸é …繪畫工具程åºç¹ªç•«å·¥å…·ï¼šç¹ªç•«æ¨¡å¼(_M)掃出模糊的畫筆筆觸繪出邊界分明的筆觸使用圖樣或影åƒæŸå€åŸŸä¾†ç¹ªç•«ç•«ç­†è‰²ç›¤(_E)色盤編輯程åºã€Œè‰²ç›¤ç·¨è¼¯ç¨‹åºã€é¸å–®è‰²ç›¤è³‡æ–™å¤¾è‰²ç›¤ä»‹é¢è‰²ç›¤å稱(_N):色盤檔案(_F)色盤「色盤ã€é¸å–®é™„帶物件程åºé™„帶物件正在分æžâ€˜%s’ -貼上貼上緩è¡å€æˆç‚ºæ–°åœ–層(_I)貼上緩è¡å€æˆç‚ºæ–°å½±åƒ(_N)貼上路徑(_H)貼上至新圖層(_I)貼上至新影åƒ(_N)貼上é¸å®šçš„ç·©è¡å€å°‡é¸å®šçš„ç·©è¡å€è²¼ä¸Šæˆç‚ºæ–°çš„å½±åƒå°‡é¸å®šçš„ç·©è¡å€è²¼ä¸Šæˆç‚ºæ–°çš„圖層貼上的圖層路徑路徑屬性路徑å稱:路徑工具(_T)路徑無法å†å‘下移。路徑無法å†å‘上移。路徑已經在最底層。路徑已經到é”最頂層。路徑轉為é¸æ“‡å€åŸŸ(_C)路徑轉æ›ç‚ºé¸æ“‡å€åŸŸè·¯å¾‘轉為é¸æ“‡å€åŸŸ -%s 增加 -%s 刪減 -%s 交集路徑轉æ›ç‚ºé¸æ“‡å€åŸŸè·¯å¾‘「路徑ã€é¸å–®åœ–樣圖樣資料夾圖樣介é¢å¡«ä¸Šåœ–樣圖樣來æºåœ–樣「圖樣ã€é¸å–®é‰›ç­†(_N)鉛筆百分值:GIMP 個人資料夾é€è¦–法有關é€è¦–法變æ›çš„資訊é€è¦–法...é¸æ“‡æ¨¡å¼ %sé¸å–黑色ä½ç½®å¾žå½±åƒé¸å–é¡è‰²é¸å–ç°è‰²ä½ç½®åªé¸æ“‡é¡è‰²é¸å–白色ä½ç½®åƒç´ å°ºå¯¸ï¼šåƒç´ æ•¸å€¼åƒç´ åƒç´ ç¸½æ•¸ï¼šè«‹ç¨å€™ï¼Œæ­£åœ¨å»ºç«‹ GIMP 個人資料夾...è«‹ç¨å€™...增效模組增效模組環境增效模組資料夾增效模組無法開啟影åƒå¢žæ•ˆæ¨¡çµ„無法儲存影åƒå¢žæ•ˆæ¨¡çµ„異常終止:“%s†-(%s) - -已終止的增效模組å¯èƒ½æœƒæ“¾äº‚ GIMP 的內部狀態。為安全計,您或許應該儲存影åƒä¸¦é‡æ–°å•Ÿå‹• GIMP。增效模組回傳值為 SUCCESS,但沒有產生影åƒå¢žæ•ˆæ¨¡çµ„增效模組增效模組åŠæ“´å±•åŠŸèƒ½æ˜¯ç‚º GIMP æä¾›é¡å¤–功能的外部程å¼ã€‚這些程å¼æ˜¯åœ¨ GIMP 執行時æœå°‹çš„,而它們的功能åŠä¿®æ”¹æ™‚間就暫時儲存在這個檔案。此檔案應該åªç”± GIMP 讀入,而且ä¸æ‡‰è‡ªè¡Œä¿®æ”¹ã€‚多邊形直å‘ä½ç½®ï¼š%0.6f色調分離色調分離 (減少é¡è‰²æ•¸ç›®)色調分離程度(_L):色調分離ä¸é©ç”¨æ–¼ç´¢å¼•è‰²åœ–層。å好設定ä¿ç•™äº®åº¦(_L)壓力會影響壓力:é è¦½é è¦½åœ–å·²éŽæ™‚é è¦½ï¼šé è¦½ç¨‹åºè³‡æ–™åº«ç¨‹åºè³‡æ–™åº«é€²åº¦Pseudo Color用途:查詢查詢增效模組查詢增效模組:‘%s’ -快速é®ç½©çµæŸ GIMPRGBRGB (%0.3f, %0.3f, %0.3f)RGB (%d,%d,%d)RGB 色彩RGB-空白RGBA (%0.3f,%0.3f,%0.3f,%0.3f)é‡æ–°é¡¯ç¤ºâ€œ%sâ€(_E)é‡è¨­å·¥å…·é¸é …(_E)é‡è¨­è‰²ç‰ˆ(_E)é‡è¨­é¡è‰²(_E)é‡æ–°è¨­å®šç¯„åœ(_E)å³ç«¯é»žçš„é¡è‰²(_I)...放射狀åŠå¾‘:上移色版圖層æå‡è‡³é ‚層(_T)上移圖層圖層æå‡è‡³é ‚層路徑æå‡è‡³é ‚層(_T)路徑æå‡è‡³é ‚層令顯示這幅影åƒçš„視窗ä¸è¢«å…¶å®ƒè¦–窗é®è”½é€ŸçŽ‡å¼·åº¦ï¼šé‡æ–°é¡¯ç¤ºä¸Šä¸€æ­¥é‡æ–°å°‡æ‰€æœ‰é¸å®šçš„å€æ®µçš„中心點置中(_C)é‡æ–°å°‡å€æ®µä¸­å¿ƒé»žç½®ä¸­(_C)é‡æ–°åˆ†é…å€æ®µä¸­çš„控制點(_H)é‡æ–°åˆ†é…所有é¸å®šçš„å€æ®µçš„控制點(_H)更改設定組åˆå稱(_N)é‡è¤‡â€œ%sâ€(_P)還原(_V)...讀å–色盤檔案‘%s’:第 %d è¡Œéºæ¼äº†ç¶ è‰²éƒ¨ä»½ã€‚載入色盤‘%s’:第 %d 行的欄ä½æ•¸ç›®ä¸æ­£ç¢ºï¼Œæ”¹ç”¨é è¨­å€¼ã€‚讀å–色盤檔案‘%s’:第 %d è¡Œéºæ¼äº†è—色部份。讀å–色盤檔案‘%s’:第 %d è¡Œéºæ¼äº†ç´…色部份。載入色盤檔案‘%s’:第 %d 行的 RGB 值超出範åœã€‚是å¦æ¸…除這幅圖的復原紀錄?é‡æ–°ç”¢ç”Ÿé è¦½åœ–(_P)é‡æ–°ç”¢ç”Ÿé è¦½åœ–é¸æ“‡çŸ©å½¢ç´…紅:å–消復原將影åƒé¡è‰²æ¸›å°‘至固定的數目將影åƒçš„é¡è‰²æ¸›ç‚ºå…©ç¨®ï¼Œç”±æŸå€‹ç•Œé™å€¼æ±ºå®šé‡æ–°æ•´ç†ç­†åˆ·é‡æ–°æ•´ç†æ¼¸å±¤é‡æ–°æ•´ç†è‰²ç›¤é‡æ–°æ•´ç†åœ–樣å°é½Šå·¦ä¸Šè§’é‡æ–°è¼‰å…¥ç›®å‰çš„佈景主題(_U)é‡æ–°è¼‰å…¥æ‰€æœ‰é è¦½åœ–(_A)在 GIMP çµæŸå‰ï¼Œè¨˜éŒ„ç›®å‰ä½¿ç”¨çš„工具ã€åœ–樣ã€è‰²å½©åŠç­†åˆ·ã€‚é ç«¯å½±åƒç§»é™¤è‰²ç‰ˆç§»é™¤å·²ç¶“ä¸å­˜åœ¨çš„é …ç›®(_N)移除浮動é¸æ“‡å€åŸŸç§»é™¤åƒè€ƒç·šç§»é™¤åœ–層從影åƒä¸­ç§»é™¤é™„帶物件移除路徑移除項目(_E)移除浮動é¸æ“‡å€åŸŸç§»é™¤é™„帶資訊無法移除æ·å¾‘éµã€‚更改色版å稱更改圖層å稱更改路徑å稱更改工具設定組åˆçš„å稱更改文字圖層å稱更改項目å稱é‡æ–°ç·¨æŽ’色版次åºé‡æ–°ç·¨æŽ’圖層次åºé‡æ–°æŽ’列路徑é‡è¤‡ä¸Šä¸€æ­¥é‡è¤‡ï¼šå–代目å‰çš„é¸æ“‡å€åŸŸè¤‡è£½è¤‡è£½æ¼¸å±¤å€æ®µè¤‡è£½æ¼¸å±¤é¸æ“‡å€åŸŸè¤‡è£½å€æ®µè¤‡è£½é¸æ“‡å€åŸŸé‡æ–°æ”¾ç½®è‰²ç‰ˆé‡æ–°æ”¾ç½®åœ–層é‡æ–°æ”¾ç½®å‘é‡é‡æ–°æ•´ç†å­—型清單é‡è¨­å·¥å…·é¸é …é‡è¨­æ‰€æœ‰å·¥å…·é¸é …(_A)...é‡è¨­æ‰€æœ‰æ¿¾é¡é‡è¨­æ‰€æœ‰æ¿¾é¡...調整尺寸調整影åƒå°ºå¯¸èª¿æ•´åœ–層尺寸更改路徑尺寸調整文字圖層尺寸調整影åƒå°ºå¯¸èª¿æ•´ç‰©ä»¶å°ºå¯¸ç¸®æ”¾å½±åƒæ™‚調整視窗尺寸(_Z)å½±åƒå°ºå¯¸æ›´æ”¹æ™‚調整視窗尺寸(_S)更改解æžåº¦è§£æžåº¦ï¼šè³‡æºæ¶ˆè€—資æºè¨­å®šå¾žå…¶å®ƒåœ°æ–¹è¼‰å…¥è¨­å®š...當 GIMP 啟動時載入己修改的æ·å¾‘éµã€‚相åæ–¹å‘還原還原影åƒé‚„原失敗。本影åƒæ²’有檔案å稱。還原影åƒç‚ºâ€˜%s’時出ç¾éŒ¯èª¤ï¼š - -%så³ç«¯é»žé¡è‰²é å³å°é½Šæ—‹è½‰é€†æ™‚é‡æ—‹è½‰ 90°(_W)順時é‡æ—‹è½‰ 90°(_C)旋轉圖層旋轉路徑旋轉文字圖層旋轉 _180°旋轉影åƒæ—‹è½‰åœ–層或é¸æ“‡å€åŸŸæ—‹è½‰ä¸­...有關旋轉的資訊推移(_H)顯示格線(_H)縮å°(_H)...交æ›å‰æ™¯èƒŒæ™¯è‰²(_W)å°‡å³ç«¯é»žé¡è‰²å„²å­˜è‡³(_V)å¹³å‡å–樣åˆä½µæ¨£æœ¬å½©åº¦ï¼šå„²å­˜å°‡â€˜%s’å¦å­˜ç‚º POV-Ray儲存曲線將錯誤訊æ¯ç´€éŒ„儲存至檔案儲存影åƒç«‹åˆ»å„²å­˜è¼¸å…¥è£ç½®çš„設定(_N)立刻儲存æ·å¾‘éµè¨­å®š(_N)儲存色階儲存設定組åˆç«‹åˆ»å„²å­˜è¦–窗ä½ç½®(_N)將所有錯誤訊æ¯å„²å­˜è‡³æª”案(_A)...å°‡é¸å®šçš„內容儲存至檔案(_S)...å¦å­˜æ–°æª”(_A)...儲存複製本(_Y)...儲存影åƒçš„複製本å¦å­˜ç‚º _POV-Ray æ ¼å¼...å¦å­˜ç‚ºç¯„本(_T)...當 GIMP çµæŸæ™‚儲存己修改的æ·å¾‘éµã€‚將曲線設定儲存至檔案儲存è£ç½®ç‹€æ…‹å¦å­˜ç‚º POV-Ray將色階設定儲存至檔案將設定儲存至...å°‡é¸æ“‡å€åŸŸå„²å­˜ç‚ºè‰²ç‰ˆç•¶ GIMP çµæŸæ™‚儲存主è¦å°è©±æ–¹å¡Šçš„ä½ç½®åŠå°ºå¯¸ã€‚儲存至色版(_C)設定組åˆæ­£åœ¨å„²å­˜â€˜%s’ -儲存‘%s’失敗: - -%s鋸齒形波浪紋縮放縮放影åƒåœ–層尺寸縮放路徑尺寸縮放文字圖層縮放影åƒç¸®æ”¾ç‰©ä»¶æ°´å¹³ç¸®æ”¾æ¯”例:垂直縮放比例:縮放比例:縮放圖層或é¸æ“‡å€åŸŸç¸®æ”¾æœ‰é—œç¸®æ”¾çš„資訊縮放中...剪刀Script-Fu 資料夾å‘下滾動å‘下滾動 (Alt)å‘下滾動 (Control + Alt)å‘下滾動 (Control)å‘下滾動 (Shift + Alt)å‘下滾動 (Shift + Control + Alt)å‘下滾動 (Shift + Control)å‘下滾動 (Shift)å‘左滾動å‘左滾動 (Alt)å‘左滾動 (Control + Alt)å‘左滾動 (Control)å‘左滾動 (Shift + Alt)å‘左滾動 (Shift + Control + Alt)å‘左滾動 (Shift + Control)å‘左滾動 (Shift)å‘å³æ»¾å‹•å‘å³æ»¾å‹• (Alt)å‘å³æ»¾å‹• (Control + Alt)å‘å³æ»¾å‹• (Control)å‘å³æ»¾å‹• (Shift + Alt)å‘å³æ»¾å‹• (Shift + Control + Alt)å‘å³æ»¾å‹• (Shift + Control)å‘å³æ»¾å‹• (Shift)å‘上滾動å‘上滾動 (Alt)å‘上滾動 (Control + Alt)å‘上滾動 (Control)å‘上滾動 (Shift + Alt)å‘上滾動 (Shift + Control + Alt)å‘上滾動 (Shift + Control)å‘上滾動 (Shift)é¸æ“‡å€åŸŸå…¨éƒ¨é¸å–é¸å–筆刷資料夾ä¾é¡è‰²é¸æ“‡é¸å–é¡è‰²é¸å–環境變數資料夾é¸æ“‡æª”æ¡ˆæ ¼å¼ [%s] (_T)é¸å–字型資料夾é¸å–漸層資料夾é¸å–模組資料夾全部ä¸é¸é¸å–色盤資料夾é¸å–圖樣資料夾é¸å–增效模組資料夾指定修改色彩的範åœé¸å– Script-Fu 資料夾é¸å–來æºé¸å–交æ›æª”資料夾é¸å–暫存檔資料夾é¸å–佈景主題é¸å–佈景主題資料夾é¸å–縮放比例é¸å–最底的圖層(_B)自é¸é¡è‰²(_C)...é¸å–下一個圖層(_N)é¸å–上一個圖層(_P)é¸å–最頂的圖層(_T)全部é¸å–ä¾é¡è‰²é¸æ“‡é¸æ“‡é€£çºŒé¡è‰²çš„å€åŸŸæŒ‡å®šå½±åƒå¤–åœè£œç™½æ‰€ç”¨çš„é¡è‰²é¸æ“‡æ©¢åœ“å€åŸŸé¸æ“‡äººæ‰‹ç¹ªç•«çš„å€åŸŸå…¨éƒ¨ä¸é¸é¸å–色盤檔案é¸æ“‡çŸ©å½¢å€åŸŸä¾é¡è‰²é¸æ“‡å€åŸŸå¾žå½±åƒé¸å–形狀é¸å–交æ›æª”資料夾請指定複製é¸å®šå€æ®µçš„次數。請指定複製é¸æ“‡å€åŸŸçš„次數。請指定您é¸å®šçš„所有å€æ®µæ‡‰è©²åˆ†ç‚ºå¤šå°‘等份。請指定您é¸å®šçš„å€æ®µæ‡‰è©²åˆ†ç‚ºå¤šå°‘等份。é¸å–é€æ˜Žå€åŸŸé¸å–網é ç€è¦½å™¨é¸æ“‡å€åŸŸè½‰ç‚ºè·¯å¾‘(_O)é¸æ“‡å€åŸŸé¸æ“‡å€åŸŸç·¨è¼¯è¦–窗é¸æ“‡å€åŸŸç·¨è¼¯è¦–窗é¸å–®é¸æ“‡å€åŸŸé®ç½©é¸æ“‡å€åŸŸå·¥å…·ç¨‹åºé¸æ“‡å€åŸŸé®ç½©é¸æ“‡å€åŸŸè½‰ç‚ºè·¯å¾‘[進階](_A)é¸æ“‡å€åŸŸï¼šé¸æ“‡å€åŸŸï¼šå¢žåŠ é¸æ“‡å€åŸŸï¼šäº¤é›†é¸æ“‡å€åŸŸï¼šå–代é¸æ“‡å€åŸŸï¼šåˆªæ¸›éˆæ•åº¦è¨­å®šå½±åƒçš„畫布尺寸設定圖層邊界尺寸使用其中的文字作為å稱(_T)指定圖層é€æ˜Žåº¦è¨­å®šèƒŒæ™¯é¡è‰²è¨­å®šå‰æ™¯é¡è‰²æŒ‡å®šåœ–層é€æ˜Žåº¦æŒ‡å®šä¿ç•™é€æ˜Žåº¦æŒ‡å®šèªªæ˜Žæ–‡ä»¶ç³»çµ±ä½¿ç”¨çš„ç€è¦½å™¨ã€‚如果決定了使用自é¸çš„é¡è‰²ä¾†å¡«è£œå½±åƒå‘¨åœçš„空白å€åŸŸï¼Œå‰‡åœ¨é€™è£¡æŒ‡å®šé¡è‰²ã€‚指定會使用的網é ç€è¦½å™¨ã€‚它å¯ä»¥ç”¨çµ•å°è·¯å¾‘表示,或者å¯ä»¥åªæ供程å¼å稱,在後者的情æ³ä¸‹æœƒåœ¨ç”¨æˆ¶çš„ PATH 下æœå°‹ã€‚如果指令中出ç¾â€˜%s’會以 URL å–代,å¦å‰‡ URL 會附加在指令之後,中間以空格隔開。設定縮放åŠè®Šæ›å½±åƒæ™‚é¸ç”¨çš„å…§æ’法å“質。指定顯示影åƒæ™‚é€æ˜Žåº¦çš„表示方å¼ã€‚指定å¯ä»¥é‚„原的æ“作程åºæ¬¡æ•¸ä¸‹é™ã€‚至於é¡å¤–å¯é‚„原的æ“作程åºï¼Œæœƒä¿ç•™è‡³ç”¨ç›¡æŒ‡å®šçš„記憶體數目為止。指定 GIMP 使用滑鼠指標的模å¼ã€‚以方格代表é€æ˜Žåº¦æ™‚,指定方格的尺寸。還原紀錄之中é è¦½åœ–的尺寸。指定交æ›æª”çš„ä½ç½®ã€‚GIMP 會使用平é¢å€å¡Šçš„æ–¹å¼åˆ†é…記憶體。交æ›æª”的用途是將這些å€å¡Šå¿«é€Ÿåœ°å¯«å…¥ç£ç¢Ÿæˆ–者讀入記憶體。但是è¦æ³¨æ„,如果 GIMP 開啟了較大的影åƒï¼Œé€™äº›äº¤æ›æª”å¯ä»¥è®Šå¾—很大。å¦å¤–,如果交æ›æª”目錄是在 NFS 伺æœå™¨ä¸­ï¼Œé€Ÿåº¦å¯ä»¥è®Šå¾—很慢。基於以上的原因,最好將交æ›æª”案目錄設定為“/tmpâ€ã€‚指定存放暫存檔的目錄。當執行 GIMP 的時候,該目錄會出ç¾ä¸€äº›æª”案,其中大部份都會在 GIMP çµæŸå¾Œæ¶ˆå¤±ï¼Œä½†æœ‰å¯èƒ½æœ‰ä¸€äº›æª”案會留下,因此該目錄最好是ä¸å¯ä»¥åˆ†äº«çµ¦å…¶å®ƒä½¿ç”¨è€…。指定影åƒè¦–窗狀態列中顯示的文字。指定影åƒè¦–窗標題中顯示的文字。指定 GIMP 應å¦ç”¢ç”Ÿåœ–層åŠè‰²ç‰ˆçš„é è¦½åœ–。在圖層åŠè‰²ç‰ˆå°è©±æ–¹å¡Šä¸­é¡¯ç¤ºé è¦½åœ–是一件好事,但如果開啟較大的影åƒï¼Œæœƒæ‹–慢整體的é‹è¡Œé€Ÿåº¦ã€‚陰影表示方å¼é™°å½±å€åŸŸå½¢ç‹€å½¢ç‹€ï¼šä¾å½¢ç‹€æ“´å±•(è±è§’)ä¾å½¢ç‹€æ“´å±•(酒渦)ä¾å½¢ç‹€æ“´å±•(çƒç‹€)清晰化銳化é¸æ“‡ç¯„åœæŽ¨ç§»æ°´å¹³æŽ¨ç§»å¹…度:垂直推移幅度:推移圖層或é¸æ“‡å€åŸŸæœ‰é—œæŽ¨ç§»çš„資訊正在進行推移...短虛線æ·å¾‘éµé¡¯ç¤ºåœ–層é®ç½©é¡¯ç¤ºå°ºè¦(_U)顯示狀態列(_T)顯示æ²å‹•åˆ—(_B)顯示åƒè€ƒç·š(_G)顯示圖層邊界(_L)顯示é¸å–®åˆ—(_M)顯示é¸æ“‡å€åŸŸ(_S)顯示筆刷輪廓(_B)顯示åƒè€ƒç·š(_G)顯示圖層邊界(_L)顯示é¸å–®åˆ—(_M)顯示尺è¦(_R)顯示使用中的筆刷ã€åœ–樣åŠæ¼¸å±¤(_B)顯示使用中的影åƒ(_I)顯示格線(_D)顯示影åƒå°ºå¯¸å³æ™‚顯示邊界顯示記憶體使用情æ³é¡¯ç¤ºåŠ ä¸Šç¹ªç•«å·¥å…·çš„滑鼠指標(_T)顯示é¸æ“‡å€åŸŸ(_E)顯示狀態列(_T)顯示æ²å‹•åˆ—(_B)下次啟動 GIMP 時顯示æ示啟動程å¼æ™‚顯示å°æ示(_S)顯示工具æ示(_T)顯示縮放百分比顯示縮放比例收縮é¸æ“‡ç¯„åœè¦–窗縮放至符åˆå½±åƒå°ºå¯¸(_W)從影åƒé‚Šç·£é–‹å§‹æ”¶ç¸®é¸æ“‡ç¯„åœæ”¶ç¸®ç¨‹åº¦ï¼šå°ºå¯¸ä½”用記憶數目:尺寸:å°å°‡é è¦½åœ–縮å°å¹³æ»‘將邊緣平滑化塗污塗污影åƒé é½Šåƒè€ƒç·š(_A)é é½Šæ ¼ç·š(_P)實線來æºé–“隔間隔:特殊檔案指定如何顯示影åƒå‘¨åœçš„空白å€åŸŸã€‚é¸æ“‡å€åŸŸå‘¨åœçš„虛線移動速度。本數值以亳秒表示 (時間較少表示速度較快)。速度:çƒç‹€æ›²ç·š[éžæ¸›](_D)çƒç‹€æ›²ç·š[éžå¢ž](_N)螺旋(順時é‡)螺旋(順時é‡)分割å‡å‹»åœ°åˆ†å‰²æ¼¸å±¤å€æ®µå‡å‹»åœ°åˆ†å‰²æ‰€æœ‰æ¼¸å±¤å€æ®µå‡å‹»åœ°åˆ†å‰²å€æ®µå‡å‹»åœ°åˆ†å‰²å€æ®µ(_U)...在中點分割å€æ®µ(_M)å‡å‹»åœ°åˆ†å‰²æ‰€æœ‰å€æ®µå‡å‹»åœ°åˆ†å‰²æ‰€æœ‰é¸å®šçš„å€æ®µ(_U)...在中點分割所有é¸å®šçš„å€æ®µ(_M)方形狀態åŠæ–‡å­—(_A)堆疊(_K)標準啟動擴展功能啟動擴展功能:‘%s’ -狀態:狀態åŠæ述狀態åŠæ–‡å­—標準å差:ä¾è·¯å¾‘æé‚Š(_K)...ä¾è·¯å¾‘æé‚Šä¾é¸æ“‡å€åŸŸæé‚Šä¾è·¯å¾‘æ邊使用繪畫工具æ邊從目å‰çš„é¸æ“‡å€åŸŸåˆªæ¸›è¶…å€çŽ‡å–樣 (Supersampling)交æ›æª”資料夾:工具(_O)文字(_X)文字工具(_X)暫存檔資料夾:範本「範本ã€é¸å–®æš«æ™‚性程åºæ–‡å­—文字é¡è‰²æ–‡å­—圖層åªåœ¨ä¿®æ”¹å¾Œæ–‡å­—程åºGIMP這是使用中的筆刷。 -按下後å¯ä»¥é–‹å•Ÿç­†åˆ·å°è©±æ–¹å¡Šã€‚這是使用中的漸層。 -按下後å¯ä»¥é–‹å•Ÿæ¼¸å±¤å°è©±æ–¹å¡Šã€‚這是使用中的影åƒã€‚ -按下後å¯ä»¥é–‹å•Ÿå½±åƒå°è©±æ–¹å¡Šã€‚這是使用中的圖樣。 -按下後å¯ä»¥é–‹å•Ÿåœ–樣å°è©±æ–¹å¡Šã€‚格線的背景é¡è‰²ï¼›æœ¬è¨­å®šåªæœƒåœ¨é›™é‡è™›ç·šä¸­ä½¿ç”¨ã€‚無法將您指定的檔案å稱編碼轉æ›ç‚º UTF-8:%s - -請檢查環境變數 G_FILE_NAME_ENCODING 的值。無法將檔案å稱‘%s’轉æ›ç‚ºæœ‰æ•ˆçš„ URI: - -%s格線的線æ¢é¡è‰²ã€‚gimprc 檔案是用來儲存影響 GIMP é‹ä½œæ–¹å¼çš„個人設定。筆刷ã€è‰²ç›¤ã€æ¼¸å±¤ã€åœ–樣ã€å¢žæ•ˆæ¨¡çµ„åŠæ¨¡çµ„çš„æœå°‹è·¯å¾‘也是在這裡設定的。影åƒæ°´å¹³è§£æžåº¦ã€‚å«æœ‰ GIMP 個人組態檔的目錄的å稱無法轉æ›è‡³ UTF-8:%s - -最å¯èƒ½çš„原因是,檔案系統使用了 UTF-8 以外的編碼作為檔案å稱,而且您沒有正確設定來通知 Glib。請設定環境變數 G_FILENAME_ENCODING。sessionrc 檔是用來紀錄上次çµæŸ GIMP 時開啟了哪些å°è©±æ–¹å¡Šçš„。您å¯ä»¥æŒ‡å®š GIMP 在上次的ä½ç½®é‡æ–°é–‹å•Ÿé€™äº›å°è©±æ–¹å¡Šã€‚Tile cache æ˜¯ç”¨ä¾†ç¢ºä¿ GIMP ä¸æœƒå°‡æš«å­˜è¨˜æ†¶åœ¨è¨˜æ†¶é«”å’Œç£ç¢Ÿä¹‹é–“æ¬ä¾†æ¬åŽ»ã€‚如果設定為較高的數字,GIMP 會較少將暫存記憶寫進ç£ç¢Ÿï¼Œä½†æœƒä½”用較多記憶體。相å地,如果 cache 數字較低,會令 GIMP 使用較多的交æ›è¨˜æ†¶ç©ºé–“和較少的記憶體。unitrc 檔是用來儲存自é¸çš„長度單ä½çš„。您å¯ä»¥åƒä½¿ç”¨å…§ç½®çš„é•·åº¦å–®ä½ (例如英å‹ã€æ¯«ç±³ã€é»žåŠ pica) 一樣地使用自行定義的單ä½ã€‚這個檔案在æ¯æ¬¡çµæŸ GIMP 時都會被覆寫。影åƒåž‚直解æžåº¦ã€‚佈景主題佈景主題資料夾佈景主題å¯è¦‹åœ–層的數目ä¸è¶³ï¼Œç„¡æ³•å‘下åˆä½µã€‚記憶體使用é‡åŠé€Ÿåº¦å¾€å¾€ç„¡æ³•å…©è€…兼得。在大多數的情æ³ä¸‹ï¼ŒGIMP 會é¸æ“‡é€Ÿåº¦è€ŒçŠ§ç‰²è¨˜æ†¶é«”使用é‡ã€‚但是,如果記憶體較為é‡è¦ï¼Œå¯å˜—試啟用本é¸é …。目å‰æ²’有任何使用中的圖層或者色版å¯ä»¥è¤‡è£½ã€‚ç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥å‰ªä¸‹ã€‚ç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥ç”¨ä¾†æé‚Šç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥ç”¨ä¾†æ邊。系統中應該有一個å稱為‘%s’的檔案存在。請檢查安è£ç¨‹åºæ˜¯å¦æ­£ç¢ºç„¡èª¤ã€‚分æžâ€˜%s’檔案的內容時出ç¾éŒ¯èª¤ï¼Œæœƒæ”¹ç‚ºä½¿ç”¨é è¨­çš„組態。您的組態檔案已被備份為‘%s’。這個檔案儲存了一些標準的尺寸,å¯ä»¥ä½œç‚ºå½±åƒç¯„本使用。本資料夾是用來儲存影åƒç¯„本。本資料夾是用來儲存用戶自行安è£çš„佈景主題。該資料夾是用來儲存 GIMP 專用的字型。當æœå°‹å­—型時,GIMP 除了會檢查系統已安è£çš„字型外,也會檢查該資料夾。除éžæ‚¨ç¢ºå®šåªæƒ³åœ¨ GIMP 中使用該字型,å¦å‰‡æ‡‰è©²å°‡å­—型放在系統共享的字型資料夾中。本資料夾是用來儲存曲線工具所使用的åƒæ•¸æª”案。本資料夾是用來儲存色階工具所使用的åƒæ•¸æª”案。本資料夾用來儲存å„種工具的é¸é …。該資料夾是用來儲存使用者建立和安è£çš„ script。當æœå°‹ script 時,GIMP 除了會檢查系統的 script 目錄外,也會檢查該資料夾。該資料夾是用來儲存使用者建立的ã€æš«æ™‚性的或éžé è¨­æ”¯æ´çš„ DLL 模組。當æœå°‹å•Ÿå‹•æ™‚載入的模組,GIMP 除了會檢查系統已安è£çš„模組外,也會檢查該資料夾。該資料夾是用來儲存使用者建立的ã€æš«æ™‚性的或éžé è¨­æ”¯æ´çš„增效模組。當æœå°‹å¢žæ•ˆæ¨¡çµ„環境變數檔案時,GIMP 除了會檢查系統é è¨­çš„環境變數資料夾外,也會檢查該資料夾。該資料夾是用來儲存使用者建立的ã€æš«æ™‚性的或éžé è¨­æ”¯æ´çš„增效模組。當æœå°‹å¢žæ•ˆæ¨¡çµ„時,GIMP 除了會檢查系統已安è£çš„增效模組外,也會檢查該資料夾。該資料夾是用來儲存自製的筆刷。當æœå°‹ç­†åˆ·æ™‚,GIMP 除了會檢查系統已安è£çš„筆刷外,也會檢查該資料夾。該資料夾是用來儲存自製的漸層。當æœå°‹æ¼¸å±¤æ™‚,GIMP 除了會檢查系統已安è£çš„漸層外,也會檢查該資料夾。該資料夾是用來儲存自製的色盤。當æœå°‹åœ–樣時,GIMP 除了會檢查系統已安è£çš„色盤外,也會檢查該資料夾。該資料夾是用來儲存自製的圖樣。當æœå°‹åœ–樣時,GIMP 除了會檢查系統已安è£çš„圖樣外,也會檢查該資料夾。本資料夾是暫時用來讓 GIMP 存放復原緩è¡å€ä¾†é™ä½Žè¨˜æ†¶é«”的使用é‡ã€‚如果 GIMP ä¸æ­£å¸¸åœ°çµ‚止,檔案會以 gimp<#>.<#> çš„å½¢å¼æ®˜ç•™åœ¨æœ¬è³‡æ–™å¤¾ã€‚這些檔案在下次啟動程å¼æ™‚是沒有用途的,å¯ä»¥éš¨æ™‚刪除。本資料夾å«æœ‰ä¸€äº›é‡è¦çš„檔案。按下目錄樹中的檔案或資料夾å¯ç²å–更多有關指定項目的資訊。散佈這個程å¼çš„目的是希望它會有用,但沒有任何使用ä¿è­‰ï¼›ç”šè‡³ä¸æœƒæš—示地ä¿è­‰å¯å”®æ€§æˆ–é©ç”¨æ–¼ä»»ä½•ç‰¹å®šç›®çš„。請åƒé–± GNU General Public License ç²å–更多æ¢æ¬¾ç´°ç¯€ã€‚本程å¼æ˜¯è‡ªç”±è»Ÿé«”;您å¯ä»¥æ ¹æ“šè‡ªç”±è»Ÿé«”基金會發表的 GPL 第二版或(自由é¸æ“‡)更新的版本來é‡æ–°æ•£ä½ˆæˆ–修改此軟體。本文字輸入欄ä½çš„長度é™åˆ¶ç‚º %d 個字符。本工具並沒有é¸é …。界é™å€¼ç•Œé™å€¼ä¸é©ç”¨æ–¼ç´¢å¼•è‰²å½±åƒã€‚ç•Œé™å€¼ï¼šç¸®åœ– %2$d 之 %1$dTile Cache 大å°ï¼šå‚¾æ–œï¼šæ¥µå°æ¨™é¡ŒåŠç‹€æ…‹ç§»å‹•è·¯å¾‘玩具(_Y)錯誤訊æ¯å¤ªå¤šï¼å·¥å…·é¸é …「工具é¸é …ã€é¸å–®å·¥å…·é‹ä½œæ–¹å¼ %s工具é¸é …(_O)工具圖示工具圖示é…åˆå字記號工具箱(_B)工具箱「工具箱ã€é¸å–®å·¥å…·ç®±ã€Œå·¥å…·ã€é¸å–®ä¸€äº›å·¥å…·ï¼Œåƒæ¨¡ç³Šé¸æ“‡å€åŸŸæˆ–者填色,會以 seed-fill é‹ç®—法來尋找å€åŸŸã€‚開始的時候,會é¸å®šä¸€å€‹åƒç´ ï¼Œç„¶å¾Œå‘所有方å‘延伸,直至兩個相鄰åƒç´ ä¹‹é–“的亮度的差大於æŸå€‹ç•Œé™ã€‚本數值就是é è¨­çš„ç•Œé™ã€‚é€æ˜Žåº¦(_A)變æ›è®Šæ›åœ–層變æ›è·¯å¾‘變æ›æ–‡å­—圖層變æ›å·¥å…·ç¨‹åºè®Šæ›åœ–層變æ›è·¯å¾‘變æ›é¸æ“‡å€åŸŸè®Šæ›æ­£åœ¨é€²è¡Œè®Šæ›...由以下人仕翻譯é€æ˜Žåº¦é€æ˜Žè¡¨ç¤ºæ–¹å¼(_T):三角形波浪紋全彩類型類型 %s無法新增圖層é®ç½©ï¼Œå› ç‚ºè©²åœ–層已經有一個é®ç½©äº†ã€‚因為é¸æ“‡å€åŸŸæ˜¯ç©ºç™½çš„,所以無法剪下或複製。無法開啟測試用的交æ›è¨˜æ†¶æª”案。為了é¿å…æ失資料,請檢查您在å好設定中所指定的交æ›æª”目錄 (ç›®å‰ç‚ºâ€œ%sâ€) çš„ä½ç½®å’Œæ¬Šé™æ˜¯å¦æ­£ç¢ºã€‚無法開啟交æ›æª”。GIMP 已耗盡記憶體,而且無法使用交æ›æª”,這樣å¯èƒ½å¼•è‡´æŸéƒ¨ä»½å½±åƒå…§å®¹æ壞。請您嘗試使用å¦ä¸€å€‹æª”案å稱儲存影åƒï¼Œç„¶å¾Œé‡æ–°å•Ÿå‹• GIMP,在å好設定中檢查有關交æ›æª”資料夾的ä½ç½®ã€‚無法執行 %s çš„ callback。相應的增效模組å¯èƒ½å·²ç¶“ä¸æ­£å¸¸çµæŸã€‚未指定復原復原紀錄長度單ä½ä¸æ˜Žæª”案類型ä¸è©³å¸è¼‰æœªå‘½å未命åé è¨­ä½¿ç”¨â€œé»žå°é»žâ€æ¨¡å¼(_D)å¯å³æ™‚更改æ·å¾‘éµè¨­å®š(_D)使用黑白 (1 ä½å…ƒ) 色盤使用漸層中的é¡è‰²ä½¿ç”¨è³‡è¨Šè¦–窗用戶安è£ç´€éŒ„用戶介é¢å·¥å…·è¦–窗亮度亮度:%s 版本由以下人仕編寫:版本:垂直第一æ¢åž‚直格線的ä½ç½®ï¼Œå¯ä»¥æ˜¯è² æ•¸ã€‚æ¯å…©æ¢æ ¼ç·šä¹‹é–“çš„åž‚ç›´è·é›¢ã€‚很大很å°é¡¯ç¤ºä»¥ç¶²æ ¼æ–¹å¼é¡¯ç¤º(_G)以清單方å¼é¡¯ç¤º(_L)以格陣方å¼é¡¯ç¤ºä»¥æ¸…單方å¼é¡¯ç¤ºVisual 類別:Visual 深度:警告:無法載入資料: - -%s警告:無法儲存資料: - -%s網é ç€è¦½å™¨ç¶²é ç€è¦½å™¨å¦‚啟用本é¸é …,使用任何繪畫工具時都會顯示目å‰çš„筆刷的形狀。如啟用本é¸é …,å¯ä»¤é¸å–®è„«é›¢è¦–窗。如啟用本é¸é …,按 F1 會顯示說明文件ç€è¦½å™¨ã€‚如啟用本é¸é …,GIMP ä¸æœƒå„²å­˜æ²’有修改的影åƒã€‚如啟用本é¸é …,GIMP 會為æ¯å¹…å½±åƒåˆ†é…ç¨ç«‹çš„資訊視窗。如啟用本é¸é …,é è¨­æœƒå°‡æ ¼ç·šé¡¯ç¤ºå‡ºä¾†ã€‚您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示格線ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,é è¨­æœƒå°‡åƒè€ƒç·šé¡¯ç¤ºå‡ºä¾†ã€‚您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示åƒè€ƒç·šã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,當拉近或者拉é å½±åƒæ™‚,影åƒè¦–窗會自動調整尺寸。如啟用本é¸é …,當影åƒçš„實際尺寸有變動時,影åƒè¦–窗會自動調整尺寸。如啟用本é¸é …,é è¨­æœƒå°‡åœ–層邊界顯示出來。您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示圖層邊界ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,é è¨­æœƒå°‡é¸å–®åˆ—顯示出來。您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示é¸å–®åˆ—ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,é è¨­æœƒå°‡å°ºè¦é¡¯ç¤ºå‡ºä¾†ã€‚您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示尺è¦ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,é è¨­æœƒå°‡æ²å‹•åˆ—顯示出來。您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示æ²å‹•åˆ—ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,所有工具都會使用您é¸å®šçš„筆刷。如啟用本é¸é …,所有工具都會使用您é¸å®šçš„漸層。如啟用本é¸é …,所有工具都會使用您é¸å®šçš„圖樣。如啟用本é¸é …,é è¨­æœƒå°‡é¸æ“‡å€åŸŸå‘¨åœçš„虛線顯示出來。您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示é¸æ“‡å€åŸŸã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,é è¨­æœƒå°‡ç‹€æ…‹åˆ—顯示出來。您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示狀態列ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚如啟用本é¸é …,影åƒçš„æ¯ä¸€å€‹åƒç´ ç›¸ç­‰æ–¼ç•«é¢çš„æ¯ä¸€å€‹åƒç´ ã€‚如啟用本é¸é …,GIMP 會確ä¿é–‹å•Ÿå½±åƒå¾Œï¼Œç•«é¢ä¸­æœƒå®Œå…¨é¡¯ç¤ºæ•´å¹…å½±åƒï¼Œå¦å‰‡å®ƒæœƒä»¥åŽŸä¾†å°ºå¯¸é¡¯ç¤ºã€‚如啟用本é¸é …,當æŸå€‹é¸å–®é …目被é¸ä¸­æ™‚,您å¯å³æ™‚按下é©ç•¶çš„按éµçµ„åˆï¼Œä¾†æ›´æ”¹ä»£è¡¨é€™å€‹é¸å–®é …目的æ·å¾‘éµã€‚白寬度寬度:視窗管ç†çµ¦è¦–窗總管的æ示視窗ä½ç½®æ­£åœ¨å¯«å…¥â€˜%s’ -XCF 錯誤:ä¸æ”¯æ´ XCF 檔案版本 %dXCF 警告。版本 0 çš„ XCF 檔案格å¼ç„¡æ³• -正確地儲存索引色系的色盤。以ç°éšŽè‰²å½©ä»£æ›¿ã€‚黃黃:您å¯ä»¥æ‹–曳å°è©±æ–¹å¡Šï¼Œæ”¾åˆ°é€™è£¡æˆç‚ºåˆ†é ã€‚您應該已經隨軟體收到一份 GPL;若沒有,請寫信到自由軟體基金會,地å€æ˜¯ï¼š -59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.您必須é‡æ–°å•Ÿå‹• GIMP 令以下的設定生效:下次啟動 GIMP 時會將所有輸入è£ç½®çš„設定還原為é è¨­å€¼ã€‚下次啟動 GIMP 時會將所有æ·å¾‘éµé‚„原為é è¨­å€¼ã€‚縮放åŠèª¿æ•´å°ºå¯¸çš„é‹ä½œæ–¹å¼åŽŸä¾†å°ºå¯¸å…¨éƒ¨é¡¯ç¤ºæ‹‰è¿‘拉é ç¸®æ”¾æ¯”例縮放比例:全部顯示(_A)拉近(_I)拉é (_O)全部顯示縮放å€çŽ‡ï¼š %d:1拉近拉近åŠæ‹‰é æ‹‰é ç¸®æ”¾ï¼š[ åŸºæœ¬å½±åƒ ]關於(_A)æ“·å–(_A)加入背景é¡è‰²(_A)加入å‰æ™¯é¡è‰²(_A)加入分é (_A)加入至é¸æ“‡å€åŸŸ(_A)進階é¸é …(_A)å™´æ§(_A)全部(_A)固定圖層(_A)平滑化(_A)ä»»æ„旋轉(_A)...è—術效果(_A)長寬比(_A)自動(_A)_B背景é¡è‰²(_B)背景é¡è‰²(_B):黑色[完全é€æ˜Ž] (_B)該å€æ®µä¸­æ··è‰²æ‰€ç”¨çš„函å¼(_B)所有é¸å®šçš„å€æ®µä¸­æ··è‰²æ‰€ç”¨çš„函å¼(_B)模糊化(_B)亮度(_B):筆刷(_B)筆刷ã€åœ–樣åŠæ¼¸å±¤(_B)填色(_B)ä¾é¡è‰²(_B)_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)_G一般性(_G)éŽå¤§(_G)漸層(_G)漸層(_G)ç°éšŽ(_G)圖層的ç°éšŽè¤‡è£½æœ¬(_G)æ“´å¼µ(_G)...硬度(_H)求助(_H)æ°´å¹³(_H):色相(_H):巨大(_H)圖示(_I)圖示(_I):影åƒ(_I)å½±åƒ(_I)匯入(_I)匯入色盤(_I)...索引色(_I)...資訊視窗(_I)計算和é¸æ“‡å€åŸŸçš„交集å€åŸŸ(_I)相å(_I)大(_L)圖層(_L)圖層(_L)圖層ã€è‰²ç‰ˆåŠè·¯å¾‘(_L)左端點的é¡è‰²(_L)左鄰å€æ®µçš„å³ç«¯é»žé¡è‰²(_L)淺色方格(_L)光線效果(_L)亮度(_L):線性(_L)左端點的é¡è‰²æ˜¯(_L)下移色版(_L)下移圖層(_L)é™ä½Žè·¯å¾‘(_L)_M人手輸入(_M)映射(_M)é®ç½©(_M)é®ç½©è½‰ç‚ºé¸æ“‡å€åŸŸ(_C)測é‡(_M)中(_M)åˆä½µè‰²ç›¤(_M)...其它(_M)模å¼(_M)模組總管(_M)移動(_M)å稱(_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)çµæŸ(_Q)_R_RGBåŠå¾‘(_R)上移色版(_R)上移圖層(_R)æå‡è·¯å¾‘(_R)令檢視視窗完全顯示(_R)令影åƒå®Œå…¨é¡¯ç¤ºæˆ–者開啟影åƒ(_R)é¸æ“‡çŸ©å½¢(_R)å–消復原(_R)å–消復原「%sã€(_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)分é é¡¯ç¤ºæ–¹å¼(_T)範本(_T):範本(_T)文字(_T)ç•Œé™å€¼(_T)...極å°(_T)å°æ示(_T)工具(_T)變æ›(_T)變æ›å·¥å…·(_T)復原(_U)復原「%sã€(_U)åž‚ç›´(_V):顯示(_V)網é (_W)白色[完全ä¸é€æ˜Ž] (_W)_X:擴展(_X)_Y_Y:縮放(_Z)縮放 [%s] (_Z)é¡è‰²è¤‡è£½æœ¬dpi%s 布林值應該是‘yes’或者‘no’,但實際上是‘%s’分æžæ™‚出ç¾åš´é‡éŒ¯èª¤ç°éšŽç°éšŽ-空白英å‹è‹±å‹ç´¢å¼•è‰²ç´¢å¼•è‰²-空白無效的 UTF-8 字串指定圖示類型的值‘%ld’無效%2$s 的值‘%1$ld’無效指定圖示類型的值‘%s’無效%2$s 的值‘%1$s’無效毫米毫米無百分比pica(鉛點)pica(鉛點)åƒç´ åƒç´ åƒç´ /%aåƒç´ /%s點點tips-locale:zh_TWAbel Cheung (張國冠) -Chun-Chung Chen (陳俊仲) -æž—ä½³å® -陳英傑%s 的值ä¸æ˜¯æœ‰æ•ˆçš„ UTF-8 字串分æžâ€˜%s’的值時發生錯誤:%s \ No newline at end of file diff -uraN gimp-2.2.8/po/zh_TW.po gimp-2.2.9/po/zh_TW.po --- gimp-2.2.8/po/zh_TW.po 2005-01-22 17:33:13.000000000 +0100 +++ gimp-2.2.9/po/zh_TW.po 2005-08-15 12:07:07.000000000 +0200 @@ -3,25 +3,25 @@ # 陳英傑 , 2001. # æž—ä½³å® , 2001. # Chun-Chung Chen (陳俊仲) , 2001. -# Abel Cheung , 2001, 03, 04. +# Abel Cheung , 2001, 03-05. # msgid "" msgstr "" -"Project-Id-Version: gimp 2.1.6\n" +"Project-Id-Version: gimp 2.2.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-01-22 17:32+0100\n" -"PO-Revision-Date: 2004-09-27 02:33+0800\n" -"Last-Translator: Abel Cheung \n" -"Language-Team: Chinese (traditional) \n" +"POT-Creation-Date: 2005-07-07 10:24+0800\n" +"PO-Revision-Date: 2005-07-07 19:32+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" -#: app/app_procs.c:144 +#: ../app/app_procs.c:144 msgid "(This console window will close in ten seconds)\n" msgstr "(本訊æ¯è¦–窗將在å秒後關閉)\n" -#: app/app_procs.c:238 +#: ../app/app_procs.c:239 msgid "" "GIMP is not properly installed for the current user.\n" "User installation was skipped because the '--no-interface' flag was used.\n" @@ -31,7 +31,7 @@ "因為使用‘--no-interface’é¸é …,所以çœç•¥äº†ç”¨æˆ¶å®‰è£çš„步驟。\n" "如果è¦é€²è¡Œç”¨æˆ¶å®‰è£ç¨‹åºï¼ŒåŸ·è¡Œ GIMP 時請勿加上‘--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 " @@ -41,17 +41,17 @@ "無法開啟測試用的交æ›è¨˜æ†¶æª”案。為了é¿å…æ失資料,請檢查您在å好設定中所指定的" "交æ›æª”目錄 (ç›®å‰ç‚ºâ€œ%sâ€) çš„ä½ç½®å’Œæ¬Šé™æ˜¯å¦æ­£ç¢ºã€‚" -#: app/app_procs.c:348 app/core/gimppalette-import.c:441 +#: ../app/app_procs.c:349 ../app/core/gimppalette-import.c:441 #, c-format msgid "Opening '%s' failed: %s" msgstr "開啟‘%s’失敗:%s" -#: app/batch.c:84 app/batch.c:101 +#: ../app/batch.c:84 ../app/batch.c:101 #, c-format msgid "The batch interpreter '%s' is not available, batch mode disabled." msgstr "" -#: app/main.c:211 +#: ../app/main.c:211 msgid "" "GIMP could not initialize the graphical user interface.\n" "Make sure a proper setup for your display environment exists." @@ -59,15 +59,15 @@ "GIMP 無法åˆå§‹åŒ–圖形介é¢ã€‚\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 "GIMP" #. #. * anything else starting with a '-' is an error. #. -#: app/main.c:422 +#: ../app/main.c:422 #, c-format msgid "" "\n" @@ -76,11 +76,11 @@ "\n" "“%sâ€é¸é …無效\n" -#: app/main.c:501 +#: ../app/main.c:501 msgid "GIMP version" msgstr "GIMP 版本" -#: app/main.c:509 +#: ../app/main.c:509 #, c-format msgid "" "\n" @@ -91,83 +91,83 @@ "用法:%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" +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" msgstr " --no-shm GIMP 和增效模組之間ä¸ä½¿ç”¨å…±äº«è¨˜æ†¶é«”。\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" msgstr " -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 ç•«é¢ä¾†é¡¯ç¤ºç¨‹å¼ã€‚\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 在 console 而éžå°è©±æ–¹å¡Šé¡¯ç¤ºè­¦å‘Šè¨Šæ¯ã€‚\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,17 +183,17 @@ " --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 "" -#: 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" @@ -204,7 +204,7 @@ "\n" "請檢查環境變數 G_FILE_NAME_ENCODING 的值。" -#: app/sanity.c:213 +#: ../app/sanity.c:213 #, c-format msgid "" "The name of the directory holding the GIMP user configuration cannot be " @@ -220,837 +220,820 @@ "定來通知 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 +#: ../app/actions/actions.c:103 msgid "Colormap Editor" -msgstr "Colormap 編輯器" +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 "å¯ç¹ªç‰©ä»¶" -#: 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/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 +#: ../app/actions/actions.c:142 msgid "Help" 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 +#: ../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/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 +#: ../app/actions/actions.c:187 msgid "View" msgstr "顯示" -#: app/actions/brushes-actions.c:43 +#: ../app/actions/brushes-actions.c:43 msgid "Brushes Menu" msgstr "「筆刷ã€é¸å–®" -#: app/actions/brushes-actions.c:47 -#, fuzzy +#: ../app/actions/brushes-actions.c:47 msgid "_New Brush" -msgstr "新增筆刷" +msgstr "新增筆刷(_N)" -#: app/actions/brushes-actions.c:48 +#: ../app/actions/brushes-actions.c:48 msgid "New brush" msgstr "新增筆刷" -#: app/actions/brushes-actions.c:53 +#: ../app/actions/brushes-actions.c:53 msgid "D_uplicate Brush" msgstr "複製筆刷(_U)" -#: app/actions/brushes-actions.c:54 +#: ../app/actions/brushes-actions.c:54 msgid "Duplicate brush" msgstr "複製筆刷" -#: app/actions/brushes-actions.c:59 +#: ../app/actions/brushes-actions.c:59 msgid "_Delete Brush" msgstr "刪除筆刷(_D)" -#: app/actions/brushes-actions.c:60 +#: ../app/actions/brushes-actions.c:60 msgid "Delete brush" msgstr "刪除筆刷" -#: app/actions/brushes-actions.c:65 +#: ../app/actions/brushes-actions.c:65 msgid "_Refresh Brushes" msgstr "é‡æ–°æ•´ç†ç­†åˆ·(_R)" -#: app/actions/brushes-actions.c:66 +#: ../app/actions/brushes-actions.c:66 msgid "Refresh brushes" msgstr "é‡æ–°æ•´ç†ç­†åˆ·" -#: app/actions/brushes-actions.c:74 +#: ../app/actions/brushes-actions.c:74 msgid "_Edit Brush..." msgstr "修改筆刷(_E)..." -#: app/actions/brushes-actions.c:75 +#: ../app/actions/brushes-actions.c:75 msgid "Edit brush" msgstr "修改筆刷" -#: app/actions/buffers-actions.c:42 +#: ../app/actions/buffers-actions.c:42 msgid "Buffers Menu" msgstr "「緩è¡å€ã€é¸å–®" -#: app/actions/buffers-actions.c:46 +#: ../app/actions/buffers-actions.c:46 msgid "_Paste Buffer" msgstr "貼上緩è¡å€(_P)" -#: app/actions/buffers-actions.c:47 +#: ../app/actions/buffers-actions.c:47 msgid "Paste the selected buffer" msgstr "貼上é¸å®šçš„ç·©è¡å€" -#: app/actions/buffers-actions.c:52 +#: ../app/actions/buffers-actions.c:52 msgid "Paste Buffer _Into" msgstr "貼上緩è¡å€æˆç‚ºæ–°åœ–層(_I)" # FIXME: A little bit distorted, but easier to understand -- Abel -#: app/actions/buffers-actions.c:53 +#: ../app/actions/buffers-actions.c:53 msgid "Paste the selected buffer into the selection" msgstr "å°‡é¸å®šçš„ç·©è¡å€è²¼ä¸Šæˆç‚ºæ–°çš„圖層" -#: app/actions/buffers-actions.c:58 +#: ../app/actions/buffers-actions.c:58 msgid "Paste Buffer as _New" msgstr "貼上緩è¡å€æˆç‚ºæ–°å½±åƒ(_N)" -#: app/actions/buffers-actions.c:59 +#: ../app/actions/buffers-actions.c:59 msgid "Paste the selected buffer as new image" msgstr "å°‡é¸å®šçš„ç·©è¡å€è²¼ä¸Šæˆç‚ºæ–°çš„å½±åƒ" -#: app/actions/buffers-actions.c:64 +#: ../app/actions/buffers-actions.c:64 msgid "_Delete Buffer" msgstr "刪除緩è¡å€(_D)" -#: app/actions/buffers-actions.c:65 +#: ../app/actions/buffers-actions.c:65 msgid "Delete the selected buffer" msgstr "刪除é¸å®šçš„ç·©è¡å€" -#: app/actions/channels-actions.c:44 +#: ../app/actions/channels-actions.c:44 msgid "Channels Menu" msgstr "「色版ã€é¸å–®" -#: app/actions/channels-actions.c:48 +#: ../app/actions/channels-actions.c:48 msgid "_Edit Channel Attributes..." msgstr "修改色版屬性(_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 +#: ../app/actions/channels-actions.c:54 msgid "_New Channel..." 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 "" -#: app/actions/channels-actions.c:66 +#: ../app/actions/channels-actions.c:66 msgid "D_uplicate Channel" 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 +#: ../app/actions/channels-actions.c:72 msgid "_Delete Channel" msgstr "刪除色版(_D)" -#: 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 "刪除色版" -#: app/actions/channels-actions.c:78 +#: ../app/actions/channels-actions.c:78 msgid "_Raise Channel" 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 +#: ../app/actions/channels-actions.c:84 msgid "Raise Channel to _Top" msgstr "圖層æå‡è‡³é ‚層(_T)" -#: app/actions/channels-actions.c:85 -#, fuzzy +#: ../app/actions/channels-actions.c:85 msgid "Raise channel to top" -msgstr "圖層æå‡è‡³é ‚層(_T)" +msgstr "色版æå‡è‡³é ‚層" -#: app/actions/channels-actions.c:90 +#: ../app/actions/channels-actions.c:90 msgid "_Lower Channel" 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 +#: ../app/actions/channels-actions.c:96 msgid "Lower Channel to _Bottom" msgstr "圖層下é™è‡³åº•å±¤(_B)" -#: app/actions/channels-actions.c:97 -#, fuzzy +#: ../app/actions/channels-actions.c:97 msgid "Lower channel to bottom" -msgstr "圖層下é™è‡³åº•å±¤(_B)" +msgstr "色版下é™è‡³åº•å±¤" -#: app/actions/channels-actions.c:105 +#: ../app/actions/channels-actions.c:105 msgid "Channel to Sele_ction" 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 +#: ../app/actions/channels-actions.c:111 ../app/actions/layers-actions.c:226 +#: ../app/actions/vectors-actions.c:173 msgid "_Add to Selection" 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 "" -#: app/actions/channels-actions.c:117 app/actions/layers-actions.c:231 -#: app/actions/layers-actions.c:254 app/actions/vectors-actions.c:179 +#: ../app/actions/channels-actions.c:117 ../app/actions/layers-actions.c:231 +#: ../app/actions/layers-actions.c:254 ../app/actions/vectors-actions.c:179 msgid "_Subtract from Selection" msgstr "從é¸æ“‡å€åŸŸåˆªæ¸›(_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 +#: ../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)" -#: 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 +#: ../app/actions/colormap-editor-actions.c:47 +#: ../app/actions/palette-editor-actions.c:47 msgid "_Edit Color..." msgstr "修改é¡è‰²(_E)..." -#: app/actions/colormap-editor-actions.c:48 -#: app/actions/palette-editor-actions.c:48 +#: ../app/actions/colormap-editor-actions.c:48 +#: ../app/actions/palette-editor-actions.c:48 msgid "Edit color" msgstr "修改é¡è‰²" -#: app/actions/colormap-editor-actions.c:56 +#: ../app/actions/colormap-editor-actions.c:56 msgid "_Add Color from FG" msgstr "加入å‰æ™¯é¡è‰²(_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 +#: ../app/actions/colormap-editor-actions.c:62 msgid "_Add Color from BG" 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 "修改色盤項目" +msgstr "修改色票項目" -#: app/actions/context-actions.c:46 +#: ../app/actions/context-actions.c:46 msgid "_Context" msgstr "" -#: app/actions/context-actions.c:47 app/actions/layers-actions.c:53 -#: app/actions/plug-in-actions.c:64 +#: ../app/actions/context-actions.c:47 ../app/actions/layers-actions.c:53 +#: ../app/actions/plug-in-actions.c:64 msgid "_Colors" msgstr "色彩(_C)" # 中文本來沒有「ä¸é€æ˜Žåº¦ã€é€™å€‹è©žï¼Œåªæ˜¯äººå€‘為了翻譯æ‰ã€Œåˆæˆã€å‡ºä¾†çš„。 -- Abel -#: app/actions/context-actions.c:48 app/actions/layers-actions.c:59 +#: ../app/actions/context-actions.c:48 ../app/actions/layers-actions.c:59 msgid "_Opacity" msgstr "é€æ˜Žåº¦(_O)" -#: app/actions/context-actions.c:49 +#: ../app/actions/context-actions.c:49 msgid "Paint _Mode" msgstr "繪畫模å¼(_M)" -#: app/actions/context-actions.c:50 -#, fuzzy +#: ../app/actions/context-actions.c:50 msgid "_Tool" 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 +#: ../app/actions/context-actions.c:53 msgid "_Palette" 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 +#: ../app/actions/context-actions.c:55 msgid "_Font" msgstr "å­—åž‹(_F)" -#: app/actions/context-actions.c:57 +#: ../app/actions/context-actions.c:57 msgid "_Shape" msgstr "形狀(_S)" -#: app/actions/context-actions.c:58 +#: ../app/actions/context-actions.c:58 msgid "_Radius" msgstr "åŠå¾‘(_R)" -#: app/actions/context-actions.c:59 +#: ../app/actions/context-actions.c:59 msgid "S_pikes" msgstr "" -#: app/actions/context-actions.c:60 +#: ../app/actions/context-actions.c:60 msgid "_Hardness" msgstr "硬度(_H)" -#: app/actions/context-actions.c:61 +#: ../app/actions/context-actions.c:61 msgid "_Aspect" msgstr "長寬比(_A)" -#: app/actions/context-actions.c:62 +#: ../app/actions/context-actions.c:62 msgid "A_ngle" msgstr "角度(_N)" -#: app/actions/context-actions.c:65 +#: ../app/actions/context-actions.c:65 msgid "_Default Colors" msgstr "é è¨­è‰²å½©(_D)" -#: app/actions/context-actions.c:70 +#: ../app/actions/context-actions.c:70 msgid "S_wap Colors" 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:1285 +#: ../app/core/gimppalette-import.c:219 ../app/core/gimppalette.c:523 +#: ../app/core/gimppalette.c:634 ../app/dialogs/palette-import-dialog.c:684 +#: ../app/pdb/image_cmds.c:3762 msgid "Untitled" msgstr "未命å" -#: 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 +#: ../app/actions/dialogs-actions.c:38 msgid "_Dialogs" msgstr "å°è©±æ–¹å¡Š(_D)" -#: app/actions/dialogs-actions.c:39 +#: ../app/actions/dialogs-actions.c:39 msgid "Create New Doc_k" msgstr "新增å¯åµŒå…¥å°è©±æ–¹å¡Šçš„視窗(_K)" -#: app/actions/dialogs-actions.c:42 +#: ../app/actions/dialogs-actions.c:42 msgid "_Layers, Channels & Paths" msgstr "圖層ã€è‰²ç‰ˆåŠè·¯å¾‘(_L)" -#: app/actions/dialogs-actions.c:47 +#: ../app/actions/dialogs-actions.c:47 msgid "_Brushes, Patterns & Gradients" msgstr "筆刷ã€åœ–樣åŠæ¼¸å±¤(_B)" -#: app/actions/dialogs-actions.c:52 +#: ../app/actions/dialogs-actions.c:52 msgid "_Misc. Stuff" msgstr "其它(_M)" -#: app/actions/dialogs-actions.c:57 +#: ../app/actions/dialogs-actions.c:57 msgid "Tool_box" msgstr "工具箱(_B)" -#: app/actions/dialogs-actions.c:65 +#: ../app/actions/dialogs-actions.c:65 msgid "Tool _Options" msgstr "工具é¸é …(_O)" -#: app/actions/dialogs-actions.c:70 +#: ../app/actions/dialogs-actions.c:70 msgid "_Device Status" msgstr "è£ç½®ç‹€æ…‹(_D)" -#: app/actions/dialogs-actions.c:75 +#: ../app/actions/dialogs-actions.c:75 msgid "_Layers" msgstr "圖層(_L)" -#: app/actions/dialogs-actions.c:80 +#: ../app/actions/dialogs-actions.c:80 msgid "_Channels" msgstr "色版(_C)" -#: app/actions/dialogs-actions.c:85 app/tools/gimpvectortool.c:162 +#: ../app/actions/dialogs-actions.c:85 ../app/tools/gimpvectortool.c:162 msgid "_Paths" msgstr "路徑(_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 +#: ../app/actions/dialogs-actions.c:95 msgid "Histogra_m" msgstr "色彩統計圖(_M)" -#: app/actions/dialogs-actions.c:100 +#: ../app/actions/dialogs-actions.c:100 msgid "_Selection Editor" msgstr "é¸æ“‡å€åŸŸç·¨è¼¯è¦–窗(_S)" -#: app/actions/dialogs-actions.c:105 +#: ../app/actions/dialogs-actions.c:105 msgid "Na_vigation" 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 +#: ../app/actions/dialogs-actions.c:115 msgid "Colo_rs" 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 +#: ../app/actions/dialogs-actions.c:125 msgid "P_atterns" msgstr "圖樣(_A)" -#: app/actions/dialogs-actions.c:130 +#: ../app/actions/dialogs-actions.c:130 msgid "_Gradients" msgstr "漸層(_G)" -#: app/actions/dialogs-actions.c:135 +#: ../app/actions/dialogs-actions.c:135 msgid "Pal_ettes" msgstr "色盤(_E)" -#: app/actions/dialogs-actions.c:140 +#: ../app/actions/dialogs-actions.c:140 msgid "_Fonts" 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 +#: ../app/actions/dialogs-actions.c:150 msgid "_Images" msgstr "å½±åƒ(_I)" -#: app/actions/dialogs-actions.c:155 +#: ../app/actions/dialogs-actions.c:155 msgid "Document Histor_y" msgstr "文件紀錄(_Y)" -#: app/actions/dialogs-actions.c:160 +#: ../app/actions/dialogs-actions.c:160 msgid "_Templates" msgstr "範本(_T)" -#: app/actions/dialogs-actions.c:165 +#: ../app/actions/dialogs-actions.c:165 msgid "T_ools" msgstr "工具(_O)" -#: app/actions/dialogs-actions.c:170 +#: ../app/actions/dialogs-actions.c:170 msgid "Error Co_nsole" msgstr "錯誤訊æ¯è¦–窗(_N)" -#: app/actions/dialogs-actions.c:180 +#: ../app/actions/dialogs-actions.c:180 msgid "_Preferences" msgstr "å好設定(_P)" -#: app/actions/dialogs-actions.c:185 +#: ../app/actions/dialogs-actions.c:185 msgid "_Module Manager" msgstr "模組總管(_M)" -#: app/actions/dialogs-actions.c:190 +#: ../app/actions/dialogs-actions.c:190 msgid "_Tip of the Day" msgstr "å°æ示(_T)" -#: app/actions/dialogs-actions.c:195 +#: ../app/actions/dialogs-actions.c:195 msgid "_About" msgstr "關於(_A)" -#: app/actions/dockable-actions.c:49 +#: ../app/actions/dockable-actions.c:49 msgid "Dialogs Menu" msgstr "「å°è©±æ–¹å¡Šã€é¸å–®" -#: app/actions/dockable-actions.c:53 +#: ../app/actions/dockable-actions.c:53 msgid "_Add Tab" msgstr "加入分é (_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 +#: ../app/actions/dockable-actions.c:55 msgid "_Tab Style" msgstr "分é é¡¯ç¤ºæ–¹å¼(_T)" -#: app/actions/dockable-actions.c:58 +#: ../app/actions/dockable-actions.c:58 msgid "_Close Tab" msgstr "關閉分é (_C)" -#: app/actions/dockable-actions.c:63 +#: ../app/actions/dockable-actions.c:63 msgid "_Detach Tab" 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 "顯示é¸æ“‡å€åŸŸ(_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 +#: ../app/actions/dockable-actions.c:101 msgid "_Tiny" msgstr "極å°(_T)" -#: app/actions/dockable-actions.c:102 +#: ../app/actions/dockable-actions.c:102 msgid "E_xtra Small" msgstr "很å°(_X)" -#: app/actions/dockable-actions.c:103 +#: ../app/actions/dockable-actions.c:103 msgid "_Small" msgstr "å°(_S)" -#: app/actions/dockable-actions.c:104 +#: ../app/actions/dockable-actions.c:104 msgid "_Medium" msgstr "中(_M)" -#: app/actions/dockable-actions.c:105 +#: ../app/actions/dockable-actions.c:105 msgid "_Large" msgstr "大(_L)" -#: app/actions/dockable-actions.c:106 +#: ../app/actions/dockable-actions.c:106 msgid "Ex_tra Large" msgstr "很大(_T)" -#: app/actions/dockable-actions.c:107 +#: ../app/actions/dockable-actions.c:107 msgid "_Huge" msgstr "巨大(_H)" -#: app/actions/dockable-actions.c:108 +#: ../app/actions/dockable-actions.c:108 msgid "_Enormous" msgstr "極大(_E)" -#: app/actions/dockable-actions.c:109 +#: ../app/actions/dockable-actions.c:109 msgid "_Gigantic" msgstr "éŽå¤§(_G)" -#: app/actions/dockable-actions.c:114 +#: ../app/actions/dockable-actions.c:114 msgid "_Icon" msgstr "圖示(_I)" -#: app/actions/dockable-actions.c:115 +#: ../app/actions/dockable-actions.c:115 msgid "Current _Status" msgstr "ç›®å‰çš„狀態(_S)" -#: app/actions/dockable-actions.c:116 +#: ../app/actions/dockable-actions.c:116 msgid "_Text" msgstr "文字(_T)" -#: app/actions/dockable-actions.c:117 +#: ../app/actions/dockable-actions.c:117 msgid "I_con & Text" msgstr "圖示åŠæ–‡å­—(_C)" -#: app/actions/dockable-actions.c:118 +#: ../app/actions/dockable-actions.c:118 msgid "St_atus & Text" msgstr "狀態åŠæ–‡å­—(_A)" -#: app/actions/dockable-actions.c:127 +#: ../app/actions/dockable-actions.c:127 msgid "View as _List" msgstr "以清單方å¼é¡¯ç¤º(_L)" -#: app/actions/dockable-actions.c:132 +#: ../app/actions/dockable-actions.c:132 msgid "View as _Grid" msgstr "以網格方å¼é¡¯ç¤º(_G)" -#: app/actions/documents-actions.c:42 +#: ../app/actions/documents-actions.c:42 msgid "Documents Menu" msgstr "「文件ã€é¸å–®" -#: app/actions/documents-actions.c:46 +#: ../app/actions/documents-actions.c:46 msgid "_Open Image" msgstr "é–‹å•Ÿå½±åƒ(_O)" -#: app/actions/documents-actions.c:47 +#: ../app/actions/documents-actions.c:47 msgid "Open the selected entry" msgstr "" -#: app/actions/documents-actions.c:52 +#: ../app/actions/documents-actions.c:52 msgid "_Raise or Open Image" msgstr "令影åƒå®Œå…¨é¡¯ç¤ºæˆ–者開啟影åƒ(_R)" -#: app/actions/documents-actions.c:53 +#: ../app/actions/documents-actions.c:53 msgid "Raise window if already open" msgstr "" -#: app/actions/documents-actions.c:58 +#: ../app/actions/documents-actions.c:58 msgid "File Open _Dialog" msgstr "開啟檔案å°è©±æ–¹å¡Š(_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 +#: ../app/actions/documents-actions.c:64 msgid "Remove _Entry" msgstr "移除項目(_E)" -#: app/actions/documents-actions.c:65 +#: ../app/actions/documents-actions.c:65 msgid "Remove the selected entry" msgstr "" -#: app/actions/documents-actions.c:70 +#: ../app/actions/documents-actions.c:70 msgid "Recreate _Preview" msgstr "é‡æ–°ç”¢ç”Ÿé è¦½åœ–(_P)" -#: app/actions/documents-actions.c:71 +#: ../app/actions/documents-actions.c:71 msgid "Recreate preview" msgstr "é‡æ–°ç”¢ç”Ÿé è¦½åœ–" -#: app/actions/documents-actions.c:76 +#: ../app/actions/documents-actions.c:76 msgid "Reload _all Previews" msgstr "é‡æ–°è¼‰å…¥æ‰€æœ‰é è¦½åœ–(_A)" -#: app/actions/documents-actions.c:77 -#, fuzzy +#: ../app/actions/documents-actions.c:77 msgid "Reload all previews" -msgstr "é‡æ–°è¼‰å…¥æ‰€æœ‰é è¦½åœ–(_A)" +msgstr "é‡æ–°è¼‰å…¥æ‰€æœ‰é è¦½åœ–" -#: app/actions/documents-actions.c:82 +#: ../app/actions/documents-actions.c:82 msgid "Remove Dangling E_ntries" 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" @@ -1061,240 +1044,236 @@ "\n" "%s" -#: app/actions/drawable-actions.c:45 +#: ../app/actions/drawable-actions.c:45 msgid "_Desaturate" msgstr "去彩度(_D)" -#: app/actions/drawable-actions.c:50 +#: ../app/actions/drawable-actions.c:50 msgid "_Equalize" msgstr "亮度等化(_E)" -#: app/actions/drawable-actions.c:55 +#: ../app/actions/drawable-actions.c:55 msgid "In_vert" msgstr "å相(_V)" -#: app/actions/drawable-actions.c:60 +#: ../app/actions/drawable-actions.c:60 msgid "_White Balance" msgstr "" -#: app/actions/drawable-actions.c:65 +#: ../app/actions/drawable-actions.c:65 msgid "_Offset..." msgstr "移ä½(_O)..." -#: app/actions/drawable-actions.c:73 app/actions/vectors-actions.c:153 +#: ../app/actions/drawable-actions.c:73 ../app/actions/vectors-actions.c:153 msgid "_Linked" msgstr "" -#: app/actions/drawable-actions.c:79 app/actions/vectors-actions.c:147 +#: ../app/actions/drawable-actions.c:79 ../app/actions/vectors-actions.c:147 msgid "_Visible" msgstr "" -#: app/actions/drawable-actions.c:88 app/actions/image-actions.c:141 +#: ../app/actions/drawable-actions.c:88 ../app/actions/image-actions.c:141 msgid "Flip _Horizontally" msgstr "æ°´å¹³é¡å°„(_H)" -#: app/actions/drawable-actions.c:93 app/actions/image-actions.c:146 +#: ../app/actions/drawable-actions.c:93 ../app/actions/image-actions.c:146 msgid "Flip _Vertically" msgstr "åž‚ç›´é¡å°„(_V)" #. please use the degree symbol in the translation -#: app/actions/drawable-actions.c:101 app/actions/image-actions.c:155 +#: ../app/actions/drawable-actions.c:101 ../app/actions/image-actions.c:155 msgid "Rotate 90 degrees _CW" msgstr "順時é‡æ—‹è½‰ 90°(_C)" -#: app/actions/drawable-actions.c:106 app/actions/image-actions.c:160 +#: ../app/actions/drawable-actions.c:106 ../app/actions/image-actions.c:160 msgid "Rotate _180 degrees" msgstr "旋轉 _180°" -#: app/actions/drawable-actions.c:111 app/actions/image-actions.c:165 +#: ../app/actions/drawable-actions.c:111 ../app/actions/image-actions.c:165 msgid "Rotate 90 degrees CC_W" msgstr "逆時é‡æ—‹è½‰ 90°(_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 +#: ../app/actions/edit-actions.c:61 msgid "_Edit" msgstr "編輯(_E)" -#: app/actions/edit-actions.c:62 -#, fuzzy +#: ../app/actions/edit-actions.c:62 msgid "_Buffer" 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 +#: ../app/actions/edit-actions.c:77 msgid "_Clear Undo History" msgstr "清除復原紀錄(_C)" -#: app/actions/edit-actions.c:78 +#: ../app/actions/edit-actions.c:78 msgid "Clear undo history..." msgstr "清除復原紀錄..." -#: app/actions/edit-actions.c:83 +#: ../app/actions/edit-actions.c:83 msgid "Cu_t" msgstr "剪下(_T)" -#: app/actions/edit-actions.c:88 +#: ../app/actions/edit-actions.c:88 msgid "_Copy" msgstr "複製(_C)" #. GIMP_STOCK_COPY_VISIBLE, -#: app/actions/edit-actions.c:93 +#: ../app/actions/edit-actions.c:93 msgid "Copy _Visible" msgstr "" -#: app/actions/edit-actions.c:98 +#: ../app/actions/edit-actions.c:98 msgid "_Paste" msgstr "貼上(_P)" -#: app/actions/edit-actions.c:103 +#: ../app/actions/edit-actions.c:103 msgid "Paste _Into" msgstr "貼上至新圖層(_I)" -#: app/actions/edit-actions.c:108 +#: ../app/actions/edit-actions.c:108 msgid "Paste as _New" msgstr "貼上至新影åƒ(_N)" -#: app/actions/edit-actions.c:113 +#: ../app/actions/edit-actions.c:113 msgid "Cu_t Named..." msgstr "剪下並命å(_T)..." -#: app/actions/edit-actions.c:118 +#: ../app/actions/edit-actions.c:118 msgid "_Copy Named..." msgstr "複製並命å(_C)..." -#: app/actions/edit-actions.c:123 +#: ../app/actions/edit-actions.c:123 msgid "_Paste Named..." msgstr "貼上已命åç·©è¡å€(_P)..." -#: app/actions/edit-actions.c:128 +#: ../app/actions/edit-actions.c:128 msgid "Cl_ear" msgstr "清除(_E)" -#: app/actions/edit-actions.c:136 +#: ../app/actions/edit-actions.c:136 msgid "Fill with _FG Color" msgstr "填上å‰æ™¯é¡è‰²(_F)" -#: app/actions/edit-actions.c:141 +#: ../app/actions/edit-actions.c:141 msgid "Fill with B_G Color" msgstr "填上背景é¡è‰²(_G)" -#: app/actions/edit-actions.c:146 +#: ../app/actions/edit-actions.c:146 msgid "Fill with P_attern" 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 +#: ../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 "是å¦æ¸…除這幅圖的復原紀錄?" -#: app/actions/edit-commands.c:210 +#: ../app/actions/edit-commands.c:210 msgid "Cut Named" msgstr "剪下並命å" -#: app/actions/edit-commands.c:213 app/actions/edit-commands.c:233 +#: ../app/actions/edit-commands.c:213 ../app/actions/edit-commands.c:233 msgid "Enter a name for this buffer" msgstr "為此緩è¡å€å‘½å" -#: app/actions/edit-commands.c:230 +#: ../app/actions/edit-commands.c:230 msgid "Copy Named" msgstr "複製並命å" -#: app/actions/edit-commands.c:337 +#: ../app/actions/edit-commands.c:337 msgid "There is no active layer or channel to cut from." msgstr "ç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥å‰ªä¸‹ã€‚" -#: app/actions/edit-commands.c:349 app/actions/edit-commands.c:386 +#: ../app/actions/edit-commands.c:349 ../app/actions/edit-commands.c:386 msgid "(Unnamed Buffer)" msgstr "(未命åçš„ç·©è¡å€)" -#: app/actions/edit-commands.c:374 +#: ../app/actions/edit-commands.c:374 msgid "There is no active layer or channel to copy from." msgstr "ç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥è¤‡è£½ã€‚" -#: app/actions/error-console-actions.c:40 +#: ../app/actions/error-console-actions.c:40 msgid "Error Console Menu" msgstr "「錯誤訊æ¯è¦–窗ã€é¸å–®" -#: app/actions/error-console-actions.c:44 +#: ../app/actions/error-console-actions.c:44 msgid "_Clear Errors" msgstr "清除錯誤訊æ¯(_C)" -#: app/actions/error-console-actions.c:45 +#: ../app/actions/error-console-actions.c:45 msgid "Clear errors" msgstr "清除錯誤訊æ¯" -#: app/actions/error-console-actions.c:53 +#: ../app/actions/error-console-actions.c:53 msgid "Save _All Errors to File..." msgstr "將所有錯誤訊æ¯å„²å­˜è‡³æª”案(_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 +#: ../app/actions/error-console-actions.c:59 msgid "Save _Selection to File..." 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" @@ -1303,55 +1282,55 @@ "開啟檔案‘%s’來寫入資料時發生錯誤:\n" "%s" -#: app/actions/file-actions.c:61 +#: ../app/actions/file-actions.c:61 msgid "_File" msgstr "檔案(_F)" -#: app/actions/file-actions.c:62 +#: ../app/actions/file-actions.c:62 msgid "Open _Recent" msgstr "常用檔案(_R)" -#: app/actions/file-actions.c:63 +#: ../app/actions/file-actions.c:63 msgid "_Acquire" msgstr "æ“·å–(_A)" -#: app/actions/file-actions.c:66 app/actions/file-actions.c:71 +#: ../app/actions/file-actions.c:66 ../app/actions/file-actions.c:71 msgid "_Open..." msgstr "é–‹å•Ÿ(_O)..." -#: app/actions/file-actions.c:76 +#: ../app/actions/file-actions.c:76 msgid "Op_en as Layer..." msgstr "é–‹å•Ÿæˆç‚ºåœ–層(_E)..." -#: app/actions/file-actions.c:81 +#: ../app/actions/file-actions.c:81 msgid "Open _Location..." msgstr "é–‹å•Ÿä½ç½®(_L)..." -#: app/actions/file-actions.c:86 +#: ../app/actions/file-actions.c:86 msgid "_Save" msgstr "儲存(_S)" -#: app/actions/file-actions.c:91 +#: ../app/actions/file-actions.c:91 msgid "Save _as..." msgstr "å¦å­˜æ–°æª”(_A)..." -#: app/actions/file-actions.c:96 +#: ../app/actions/file-actions.c:96 msgid "Save a Cop_y..." msgstr "儲存複製本(_Y)..." -#: app/actions/file-actions.c:101 +#: ../app/actions/file-actions.c:101 msgid "Save as _Template..." msgstr "å¦å­˜ç‚ºç¯„本(_T)..." -#: app/actions/file-actions.c:106 +#: ../app/actions/file-actions.c:106 msgid "Re_vert..." msgstr "還原(_V)..." -#: app/actions/file-actions.c:111 +#: ../app/actions/file-actions.c:111 msgid "_Quit" msgstr "çµæŸ(_Q)" -#: app/actions/file-commands.c:215 app/dialogs/file-save-dialog.c:281 +#: ../app/actions/file-commands.c:215 ../app/dialogs/file-save-dialog.c:282 #, c-format msgid "" "Saving '%s' failed:\n" @@ -1362,59 +1341,54 @@ "\n" "%s" -#: app/actions/file-commands.c:238 app/dialogs/file-save-dialog.c:78 +#: ../app/actions/file-commands.c:238 ../app/dialogs/file-save-dialog.c:78 msgid "Save Image" msgstr "儲存影åƒ" -#: app/actions/file-commands.c:254 +#: ../app/actions/file-commands.c:254 msgid "Save a Copy of the Image" msgstr "儲存影åƒçš„複製本" -#: app/actions/file-commands.c:265 +#: ../app/actions/file-commands.c:265 msgid "Create New Template" msgstr "製作新的範本" -#: app/actions/file-commands.c:269 +#: ../app/actions/file-commands.c:269 msgid "Enter a name for this template" msgstr "請為該範本命å" -#: app/actions/file-commands.c:291 +#: ../app/actions/file-commands.c:291 msgid "Revert failed. No file name associated with this image." msgstr "還原失敗。本影åƒæ²’有檔案å稱。" -#: app/actions/file-commands.c:303 +#: ../app/actions/file-commands.c:303 msgid "Revert Image" msgstr "還原影åƒ" -#: app/actions/file-commands.c:324 +#: ../app/actions/file-commands.c:324 #, c-format msgid "Revert '%s' to '%s'?" -msgstr "" +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" -"\n" -"這樣將會失去所有已更改的資料,包括所有將影åƒå¾©åŽŸçš„資訊。" +msgstr "將影åƒé‚„原的話,會失去所有已更改的資料,包括所有影åƒçš„更改紀錄。" -#: app/actions/file-commands.c:380 +#: ../app/actions/file-commands.c:380 msgid "Open Image as Layer" msgstr "é–‹å•Ÿå½±åƒæˆç‚ºåœ–層" -#: app/actions/file-commands.c:385 app/dialogs/file-open-dialog.c:74 +#: ../app/actions/file-commands.c:385 ../app/dialogs/file-open-dialog.c:74 msgid "Open Image" msgstr "é–‹å•Ÿå½±åƒ" -#: app/actions/file-commands.c:451 +#: ../app/actions/file-commands.c:451 msgid "(Unnamed Template)" msgstr "(未命å範本)" -#: app/actions/file-commands.c:500 +#: ../app/actions/file-commands.c:500 #, c-format msgid "" "Reverting to '%s' failed:\n" @@ -1425,1883 +1399,1847 @@ "\n" "%s" -#: app/actions/fonts-actions.c:44 +#: ../app/actions/fonts-actions.c:44 msgid "Fonts Menu" msgstr "「字型ã€é¸å–®" -#: app/actions/fonts-actions.c:48 +#: ../app/actions/fonts-actions.c:48 msgid "_Rescan Font List" msgstr "é‡æ–°æ•´ç†å­—型清單(_R)" -#: app/actions/fonts-actions.c:49 +#: ../app/actions/fonts-actions.c:49 msgid "Rescan font list" msgstr "é‡æ–°æ•´ç†å­—型清單" -#: app/actions/gradient-editor-actions.c:46 +#: ../app/actions/gradient-editor-actions.c:46 msgid "Gradient Editor Menu" msgstr "「漸層編輯程åºã€é¸å–®" -#: app/actions/gradient-editor-actions.c:50 +#: ../app/actions/gradient-editor-actions.c:50 msgid "_Load Left Color From" msgstr "左端點的é¡è‰²æ˜¯(_L)" -#: app/actions/gradient-editor-actions.c:52 +#: ../app/actions/gradient-editor-actions.c:52 msgid "_Save Left Color To" msgstr "將左端點é¡è‰²å„²å­˜è‡³(_S)" -#: app/actions/gradient-editor-actions.c:55 +#: ../app/actions/gradient-editor-actions.c:55 msgid "Load Right Color Fr_om" msgstr "å³ç«¯é»žçš„é¡è‰²æ˜¯(_O)" -#: app/actions/gradient-editor-actions.c:57 +#: ../app/actions/gradient-editor-actions.c:57 msgid "Sa_ve Right Color To" msgstr "å°‡å³ç«¯é»žé¡è‰²å„²å­˜è‡³(_V)" -#: app/actions/gradient-editor-actions.c:63 +#: ../app/actions/gradient-editor-actions.c:63 msgid "L_eft Endpoint's Color..." msgstr "左端點的é¡è‰²(_E)..." -#: app/actions/gradient-editor-actions.c:68 +#: ../app/actions/gradient-editor-actions.c:68 msgid "R_ight Endpoint's Color..." msgstr "å³ç«¯é»žçš„é¡è‰²(_I)..." -#: app/actions/gradient-editor-actions.c:108 +#: ../app/actions/gradient-editor-actions.c:108 msgid "Ble_nd Endpoints' Colors" msgstr "æ··åˆç«¯é»žçš„é¡è‰²(_N)" -#: app/actions/gradient-editor-actions.c:113 +#: ../app/actions/gradient-editor-actions.c:113 msgid "Blend Endpoints' Opacit_y" msgstr "æ··åˆç«¯é»žæ™‚åŒæ™‚拉勻é€æ˜Žåº¦(_Y)" -#: app/actions/gradient-editor-actions.c:143 +#: ../app/actions/gradient-editor-actions.c:143 msgid "_Left Neighbor's Right Endpoint" msgstr "左鄰å€æ®µçš„å³ç«¯é»žé¡è‰²(_L)" -#: app/actions/gradient-editor-actions.c:148 +#: ../app/actions/gradient-editor-actions.c:148 msgid "_Right Endpoint" msgstr "å³ç«¯é»žçš„é¡è‰²(_R)" -#: app/actions/gradient-editor-actions.c:153 -#: app/actions/gradient-editor-actions.c:201 +#: ../app/actions/gradient-editor-actions.c:153 +#: ../app/actions/gradient-editor-actions.c:201 msgid "_FG Color" msgstr "å‰æ™¯é¡è‰²(_F)" -#: app/actions/gradient-editor-actions.c:158 -#: app/actions/gradient-editor-actions.c:206 +#: ../app/actions/gradient-editor-actions.c:158 +#: ../app/actions/gradient-editor-actions.c:206 msgid "_BG Color" msgstr "背景é¡è‰²(_B)" -#: app/actions/gradient-editor-actions.c:191 +#: ../app/actions/gradient-editor-actions.c:191 msgid "_Right Neighbor's Left Endpoint" msgstr "å³é„°å€æ®µçš„左端點(_R)" -#: app/actions/gradient-editor-actions.c:196 +#: ../app/actions/gradient-editor-actions.c:196 msgid "_Left Endpoint" msgstr "左端點的é¡è‰²(_L)" -#: app/actions/gradient-editor-actions.c:245 +#: ../app/actions/gradient-editor-actions.c:245 msgid "_Linear" msgstr "線性(_L)" -#: app/actions/gradient-editor-actions.c:250 +#: ../app/actions/gradient-editor-actions.c:250 msgid "_Curved" msgstr "曲線(_C)" -#: app/actions/gradient-editor-actions.c:255 +#: ../app/actions/gradient-editor-actions.c:255 msgid "_Sinusoidal" msgstr "弦波曲線(_S)" -#: app/actions/gradient-editor-actions.c:260 +#: ../app/actions/gradient-editor-actions.c:260 msgid "Spherical (i_ncreasing)" -msgstr "çƒç‹€æ›²ç·š[éžå¢ž](_N)" +msgstr "圓弧[éžå¢ž](_N)" -#: app/actions/gradient-editor-actions.c:265 +#: ../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 "(å¯è®Š)" -#: app/actions/gradient-editor-actions.c:278 app/actions/image-actions.c:123 +#: ../app/actions/gradient-editor-actions.c:278 +#: ../app/actions/image-actions.c:123 msgid "_RGB" msgstr "_RGB" -#: app/actions/gradient-editor-actions.c:283 +#: ../app/actions/gradient-editor-actions.c:283 msgid "HSV (_counter-clockwise hue)" -msgstr "HSV[逆時é‡è‰²ç›¸](_C)" +msgstr "H_SV(逆時é‡è‰²ç›¸)" -#: app/actions/gradient-editor-actions.c:288 +#: ../app/actions/gradient-editor-actions.c:288 msgid "HSV (clockwise _hue)" msgstr "_HSV(順時é‡è‰²ç›¸)" -#: app/actions/gradient-editor-actions.c:301 +#: ../app/actions/gradient-editor-actions.c:301 msgid "Zoom In" msgstr "拉近" -#: app/actions/gradient-editor-actions.c:302 -#: app/actions/palette-editor-actions.c:78 app/actions/view-actions.c:216 -#: app/widgets/widgets-enums.c:353 +#: ../app/actions/gradient-editor-actions.c:302 +#: ../app/actions/palette-editor-actions.c:78 +#: ../app/actions/view-actions.c:216 ../app/widgets/widgets-enums.c:353 msgid "Zoom in" msgstr "拉近" -#: app/actions/gradient-editor-actions.c:307 +#: ../app/actions/gradient-editor-actions.c:307 msgid "Zoom Out" msgstr "拉é " -#: app/actions/gradient-editor-actions.c:308 -#: app/actions/palette-editor-actions.c:84 app/actions/view-actions.c:210 -#: app/widgets/widgets-enums.c:354 +#: ../app/actions/gradient-editor-actions.c:308 +#: ../app/actions/palette-editor-actions.c:84 +#: ../app/actions/view-actions.c:210 ../app/widgets/widgets-enums.c:354 msgid "Zoom out" msgstr "拉é " -#: app/actions/gradient-editor-actions.c:313 +#: ../app/actions/gradient-editor-actions.c:313 msgid "Zoom All" msgstr "全部顯示" -#: app/actions/gradient-editor-actions.c:314 -#: app/actions/palette-editor-actions.c:90 +#: ../app/actions/gradient-editor-actions.c:314 +#: ../app/actions/palette-editor-actions.c:90 msgid "Zoom all" msgstr "全部顯示" -#: app/actions/gradient-editor-actions.c:589 +#: ../app/actions/gradient-editor-actions.c:589 msgid "_Blending Function for Segment" msgstr "該å€æ®µä¸­æ··è‰²æ‰€ç”¨çš„函å¼(_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." msgstr "請指定複製é¸å®šå€æ®µçš„次數。" -#: app/actions/gradient-editor-commands.c:394 +#: ../app/actions/gradient-editor-commands.c:394 msgid "" "Select the number of times\n" "to replicate the selection." msgstr "請指定複製é¸æ“‡å€åŸŸçš„次數。" -#: app/actions/gradient-editor-commands.c:452 +#: ../app/actions/gradient-editor-commands.c:452 msgid "Split Segment Uniformly" msgstr "å‡å‹»åœ°åˆ†å‰²å€æ®µ" -#: app/actions/gradient-editor-commands.c:453 +#: ../app/actions/gradient-editor-commands.c:453 msgid "Split Gradient Segment Uniformly" msgstr "å‡å‹»åœ°åˆ†å‰²æ¼¸å±¤å€æ®µ" -#: app/actions/gradient-editor-commands.c:457 +#: ../app/actions/gradient-editor-commands.c:457 msgid "Split Segments Uniformly" msgstr "å‡å‹»åœ°åˆ†å‰²æ‰€æœ‰å€æ®µ" -#: app/actions/gradient-editor-commands.c:458 +#: ../app/actions/gradient-editor-commands.c:458 msgid "Split Gradient Segments Uniformly" msgstr "å‡å‹»åœ°åˆ†å‰²æ‰€æœ‰æ¼¸å±¤å€æ®µ" -#: app/actions/gradient-editor-commands.c:470 +#: ../app/actions/gradient-editor-commands.c:470 msgid "Split" msgstr "分割" -#: app/actions/gradient-editor-commands.c:486 +#: ../app/actions/gradient-editor-commands.c:486 msgid "" "Select the number of uniform parts\n" "in which to split the selected segment." msgstr "請指定您é¸å®šçš„å€æ®µæ‡‰è©²åˆ†ç‚ºå¤šå°‘等份。" -#: app/actions/gradient-editor-commands.c:489 +#: ../app/actions/gradient-editor-commands.c:489 msgid "" "Select the number of uniform parts\n" "in which to split the segments in the selection." msgstr "請指定您é¸å®šçš„所有å€æ®µæ‡‰è©²åˆ†ç‚ºå¤šå°‘等份。" -#: app/actions/gradients-actions.c:44 +#: ../app/actions/gradients-actions.c:44 msgid "Gradients Menu" msgstr "「漸層ã€é¸å–®" -#: app/actions/gradients-actions.c:48 +#: ../app/actions/gradients-actions.c:48 msgid "_New Gradient" msgstr "新增漸層(_N)" -#: app/actions/gradients-actions.c:49 +#: ../app/actions/gradients-actions.c:49 msgid "New gradient" msgstr "新增漸層" -#: app/actions/gradients-actions.c:54 +#: ../app/actions/gradients-actions.c:54 msgid "D_uplicate Gradient" msgstr "複製漸層(_U)" -#: app/actions/gradients-actions.c:55 +#: ../app/actions/gradients-actions.c:55 msgid "Duplicate gradient" msgstr "複製漸層" -#: app/actions/gradients-actions.c:60 +#: ../app/actions/gradients-actions.c:60 msgid "Save as _POV-Ray..." msgstr "å¦å­˜ç‚º _POV-Ray æ ¼å¼..." -#: app/actions/gradients-actions.c:61 +#: ../app/actions/gradients-actions.c:61 msgid "Save gradient as POV-Ray" msgstr "å¦å­˜ç‚º POV-Ray" -#: app/actions/gradients-actions.c:66 +#: ../app/actions/gradients-actions.c:66 msgid "_Delete Gradient..." msgstr "刪除漸層(_D)..." -#: app/actions/gradients-actions.c:67 +#: ../app/actions/gradients-actions.c:67 msgid "Delete gradient" msgstr "刪除漸層" -#: app/actions/gradients-actions.c:72 +#: ../app/actions/gradients-actions.c:72 msgid "_Refresh Gradients" msgstr "é‡æ–°æ•´ç†æ¼¸å±¤(_R)" -#: app/actions/gradients-actions.c:73 +#: ../app/actions/gradients-actions.c:73 msgid "Refresh gradients" msgstr "é‡æ–°æ•´ç†æ¼¸å±¤" -#: app/actions/gradients-actions.c:81 +#: ../app/actions/gradients-actions.c:81 msgid "_Edit Gradient..." msgstr "修改漸層(_E)..." -#: app/actions/gradients-actions.c:82 +#: ../app/actions/gradients-actions.c:82 msgid "Edit gradient" msgstr "修改漸層" -#: app/actions/gradients-commands.c:65 +#: ../app/actions/gradients-commands.c:65 #, c-format msgid "Save '%s' as POV-Ray" -msgstr "將‘%s’å¦å­˜ç‚º POV-Ray" +msgstr "å°‡ ‘%s’ å¦å­˜ç‚º POV-Ray" -#: app/actions/help-actions.c:38 app/actions/help-actions.c:41 +#: ../app/actions/help-actions.c:38 ../app/actions/help-actions.c:41 msgid "_Help" msgstr "求助(_H)" -#: app/actions/help-actions.c:46 +#: ../app/actions/help-actions.c:46 msgid "_Context Help" 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 +#: ../app/actions/image-actions.c:58 msgid "_Xtns" msgstr "擴展(_X)" -#: app/actions/image-actions.c:59 +#: ../app/actions/image-actions.c:59 msgid "_Image" msgstr "å½±åƒ(_I)" -#: app/actions/image-actions.c:60 +#: ../app/actions/image-actions.c:60 msgid "_Mode" msgstr "模å¼(_M)" -#: app/actions/image-actions.c:61 app/actions/layers-actions.c:57 +#: ../app/actions/image-actions.c:61 ../app/actions/layers-actions.c:57 msgid "_Transform" msgstr "變æ›(_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 +#: ../app/actions/image-actions.c:65 ../app/actions/image-actions.c:70 msgid "_New..." msgstr "新增(_N)..." -#: app/actions/image-actions.c:75 +#: ../app/actions/image-actions.c:75 msgid "Can_vas Size..." 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 "色調分離(_P)..." +msgstr "" -#: app/actions/image-actions.c:90 +#: ../app/actions/image-actions.c:90 msgid "_Scale Image..." msgstr "縮放影åƒ(_S)..." -#: app/actions/image-actions.c:95 +#: ../app/actions/image-actions.c:95 msgid "_Crop Image" msgstr "è£å‰ªå½±åƒ(_C)" -#: app/actions/image-actions.c:100 +#: ../app/actions/image-actions.c:100 msgid "_Duplicate" msgstr "複製(_D)" -#: app/actions/image-actions.c:105 +#: ../app/actions/image-actions.c:105 msgid "Merge Visible _Layers..." msgstr "åˆä½µæ­£åœ¨é¡¯ç¤ºçš„圖層(_V)..." -#: app/actions/image-actions.c:110 app/actions/layers-actions.c:138 +#: ../app/actions/image-actions.c:110 ../app/actions/layers-actions.c:138 msgid "_Flatten Image" msgstr "å½±åƒå¹³é¢åŒ–(_F)" -#: app/actions/image-actions.c:115 +#: ../app/actions/image-actions.c:115 msgid "Configure G_rid..." msgstr "設定網格顯示方å¼(_R)..." -#: app/actions/image-actions.c:128 +#: ../app/actions/image-actions.c:128 msgid "_Grayscale" msgstr "ç°éšŽ(_G)" -#: app/actions/image-actions.c:133 +#: ../app/actions/image-actions.c:133 msgid "_Indexed..." 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 "" +msgstr "縮放中..." -#: app/actions/image-commands.c:242 -#, fuzzy +#: ../app/actions/image-commands.c:242 msgid "Set Image Print Resolution" msgstr "更改影åƒè§£æžåº¦" -#: app/actions/image-commands.c:289 +#: ../app/actions/image-commands.c:289 msgid "Flipping..." msgstr "翻轉中..." -#: app/actions/image-commands.c:310 app/pdb/drawable_transform_cmds.c:1035 -#: app/pdb/drawable_transform_cmds.c:1193 app/pdb/transform_tools_cmds.c:339 -#: app/tools/gimprotatetool.c:159 +#: ../app/actions/image-commands.c:310 +#: ../app/pdb/drawable_transform_cmds.c:1035 +#: ../app/pdb/drawable_transform_cmds.c:1193 +#: ../app/pdb/transform_tools_cmds.c:339 ../app/tools/gimprotatetool.c:159 msgid "Rotating..." msgstr "旋轉中..." -#: app/actions/image-commands.c:332 app/actions/layers-commands.c:535 +#: ../app/actions/image-commands.c:332 ../app/actions/layers-commands.c:535 msgid "Cannot crop because the current selection is empty." msgstr "無法è£å‰ªï¼Œå› ç‚ºé¸æ“‡å€åŸŸæ˜¯ç©ºç™½çš„。" -#: app/actions/image-commands.c:484 +#: ../app/actions/image-commands.c:484 msgid "Change Print Size" msgstr "" -#: app/actions/image-commands.c:508 app/core/gimpimage-scale.c:71 -#: app/dialogs/image-scale-dialog.c:91 +#: ../app/actions/image-commands.c:508 ../app/core/gimpimage-scale.c:71 +#: ../app/dialogs/image-scale-dialog.c:91 msgid "Scale Image" msgstr "縮放影åƒ" -#: app/actions/image-commands.c:521 app/actions/layers-commands.c:959 -#: app/pdb/drawable_transform_cmds.c:1346 -#: app/pdb/drawable_transform_cmds.c:1503 app/pdb/transform_tools_cmds.c:458 -#: app/tools/gimpscaletool.c:153 +#: ../app/actions/image-commands.c:521 ../app/actions/layers-commands.c:959 +#: ../app/pdb/drawable_transform_cmds.c:1346 +#: ../app/pdb/drawable_transform_cmds.c:1503 +#: ../app/pdb/transform_tools_cmds.c:458 ../app/tools/gimpscaletool.c:153 msgid "Scaling..." msgstr "縮放中..." -#: app/actions/images-actions.c:43 +#: ../app/actions/images-actions.c:43 msgid "Images Menu" msgstr "「影åƒã€é¸å–®" -#: app/actions/images-actions.c:47 +#: ../app/actions/images-actions.c:47 msgid "_Raise Views" msgstr "令檢視視窗完全顯示(_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 +#: ../app/actions/images-actions.c:53 ../app/actions/view-actions.c:68 msgid "_New View" 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 +#: ../app/actions/images-actions.c:59 msgid "_Delete Image" 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 +#: ../app/actions/layers-actions.c:51 msgid "_Layer" msgstr "圖層(_L)" -#: app/actions/layers-actions.c:52 +#: ../app/actions/layers-actions.c:52 msgid "Stac_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 +#: ../app/actions/layers-actions.c:55 msgid "_Mask" msgstr "é®ç½©(_M)" -#: app/actions/layers-actions.c:56 +#: ../app/actions/layers-actions.c:56 msgid "Tr_ansparency" msgstr "é€æ˜Žåº¦(_A)" -#: app/actions/layers-actions.c:58 +#: ../app/actions/layers-actions.c:58 msgid "_Properties" msgstr "屬性(_P)" -#: app/actions/layers-actions.c:60 +#: ../app/actions/layers-actions.c:60 msgid "Layer _Mode" msgstr "圖層模å¼(_M)" -#: app/actions/layers-actions.c:63 +#: ../app/actions/layers-actions.c:63 msgid "Te_xt Tool" msgstr "文字工具(_X)" -#: app/actions/layers-actions.c:68 +#: ../app/actions/layers-actions.c:68 msgid "_Edit Layer Attributes..." 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 +#: ../app/actions/layers-actions.c:74 msgid "_New Layer..." 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 "" -#: app/actions/layers-actions.c:86 +#: ../app/actions/layers-actions.c:86 msgid "D_uplicate Layer" 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 +#: ../app/actions/layers-actions.c:92 msgid "_Delete Layer" msgstr "刪除圖層(_D)" -#: app/actions/layers-actions.c:93 app/core/core-enums.c:1079 +#: ../app/actions/layers-actions.c:93 ../app/core/core-enums.c:1081 msgid "Delete layer" msgstr "刪除圖層" -#: app/actions/layers-actions.c:98 +#: ../app/actions/layers-actions.c:98 msgid "_Raise Layer" 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 +#: ../app/actions/layers-actions.c:104 msgid "Layer to _Top" 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 +#: ../app/actions/layers-actions.c:110 msgid "_Lower Layer" 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 +#: ../app/actions/layers-actions.c:116 msgid "Layer to _Bottom" 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 +#: ../app/actions/layers-actions.c:122 msgid "_Anchor Layer" msgstr "固定圖層(_A)" -#: app/actions/layers-actions.c:123 +#: ../app/actions/layers-actions.c:123 msgid "Anchor floating layer" msgstr "將浮動é¸æ“‡å€åŸŸå›ºå®šä½ç½®" -#: app/actions/layers-actions.c:128 +#: ../app/actions/layers-actions.c:128 msgid "Merge Do_wn" msgstr "å‘下åˆä½µ(_W)" -#: app/actions/layers-actions.c:133 +#: ../app/actions/layers-actions.c:133 msgid "Merge _Visible Layers..." msgstr "åˆä½µæ­£åœ¨é¡¯ç¤ºçš„圖層(_V)..." -#: app/actions/layers-actions.c:143 +#: ../app/actions/layers-actions.c:143 msgid "_Discard Text Information" msgstr "æ¨æ£„文字資訊(_D)" -#: app/actions/layers-actions.c:148 +#: ../app/actions/layers-actions.c:148 msgid "Layer B_oundary Size..." msgstr "圖層邊界尺寸(_O)..." -#: app/actions/layers-actions.c:153 +#: ../app/actions/layers-actions.c:153 msgid "Layer to _Image Size" msgstr "令圖層符åˆå½±åƒå°ºå¯¸(_I)" -#: app/actions/layers-actions.c:158 +#: ../app/actions/layers-actions.c:158 msgid "_Scale Layer..." msgstr "縮放圖層(_S)..." -#: app/actions/layers-actions.c:163 +#: ../app/actions/layers-actions.c:163 msgid "Cr_op Layer" msgstr "è£å‰ªåœ–層(_O)" -#: app/actions/layers-actions.c:168 +#: ../app/actions/layers-actions.c:168 msgid "Add La_yer Mask..." msgstr "新增圖層é®ç½©(_Y)..." -#: app/actions/layers-actions.c:173 +#: ../app/actions/layers-actions.c:173 msgid "Add Alpha C_hannel" msgstr "新增é€æ˜Žè‰²ç‰ˆ(_H)" -#: app/actions/layers-actions.c:181 +#: ../app/actions/layers-actions.c:181 msgid "Keep Transparency" msgstr "ä¿ç•™é€æ˜Žåº¦" -#: app/actions/layers-actions.c:187 +#: ../app/actions/layers-actions.c:187 msgid "Edit Layer Mask" msgstr "新增圖層é®ç½©" -#: app/actions/layers-actions.c:193 +#: ../app/actions/layers-actions.c:193 msgid "Show Layer Mask" msgstr "顯示圖層é®ç½©" -#: app/actions/layers-actions.c:199 +#: ../app/actions/layers-actions.c:199 msgid "Disable Layer Mask" msgstr "ä¸ä½¿ç”¨åœ–層é®ç½©" -#: app/actions/layers-actions.c:208 +#: ../app/actions/layers-actions.c:208 msgid "Apply Layer _Mask" msgstr "套用圖層é®ç½©(_M)" -#: app/actions/layers-actions.c:213 +#: ../app/actions/layers-actions.c:213 msgid "Delete Layer Mas_k" msgstr "刪除圖層é®ç½©(_K)" -#: app/actions/layers-actions.c:221 +#: ../app/actions/layers-actions.c:221 msgid "_Mask to Selection" msgstr "é®ç½©è½‰ç‚ºé¸æ“‡å€åŸŸ(_C)" -#: app/actions/layers-actions.c:244 +#: ../app/actions/layers-actions.c:244 msgid "Al_pha to Selection" msgstr "é€æ˜Žå€åŸŸè½‰ç‚ºé¸æ“‡å€åŸŸ(_P)" -#: app/actions/layers-actions.c:249 +#: ../app/actions/layers-actions.c:249 msgid "A_dd to Selection" msgstr "加入至é¸æ“‡å€åŸŸ(_A)" -#: app/actions/layers-actions.c:267 +#: ../app/actions/layers-actions.c:267 msgid "Select _Top Layer" msgstr "é¸å–最頂的圖層(_T)" -#: app/actions/layers-actions.c:272 +#: ../app/actions/layers-actions.c:272 msgid "Select _Bottom Layer" msgstr "é¸å–最底的圖層(_B)" -#: app/actions/layers-actions.c:277 +#: ../app/actions/layers-actions.c:277 msgid "Select _Previous Layer" msgstr "é¸å–上一個圖層(_P)" -#: app/actions/layers-actions.c:282 +#: ../app/actions/layers-actions.c:282 msgid "Select _Next Layer" msgstr "é¸å–下一個圖層(_N)" -#: app/actions/layers-actions.c:290 +#: ../app/actions/layers-actions.c:290 msgid "Set Opacity" msgstr "指定圖層é€æ˜Žåº¦" -#: app/actions/layers-commands.c:196 +#: ../app/actions/layers-commands.c:196 msgid "Layer Attributes" msgstr "圖層屬性" -#: app/actions/layers-commands.c:199 +#: ../app/actions/layers-commands.c:199 msgid "Edit Layer Attributes" msgstr "修改圖層屬性" -#: app/actions/layers-commands.c:232 app/actions/layers-commands.c:234 -#: app/actions/layers-commands.c:291 app/actions/layers-commands.c:295 -#: app/widgets/gimpdrawabletreeview.c:238 app/widgets/gimplayertreeview.c:842 +#: ../app/actions/layers-commands.c:232 ../app/actions/layers-commands.c:234 +#: ../app/actions/layers-commands.c:291 ../app/actions/layers-commands.c:295 +#: ../app/widgets/gimpdrawabletreeview.c:238 +#: ../app/widgets/gimplayertreeview.c:842 msgid "New Layer" msgstr "新增圖層" -#: app/actions/layers-commands.c:237 +#: ../app/actions/layers-commands.c:237 msgid "Create a New Layer" msgstr "新增圖層" -#: app/actions/layers-commands.c:470 +#: ../app/actions/layers-commands.c:470 msgid "Set Layer Boundary Size" msgstr "設定圖層邊界尺寸" -#: app/actions/layers-commands.c:512 app/core/gimplayer.c:253 +#: ../app/actions/layers-commands.c:512 ../app/core/gimplayer.c:253 msgid "Scale Layer" msgstr "圖層尺寸" -#: app/actions/layers-commands.c:545 +#: ../app/actions/layers-commands.c:545 msgid "Crop Layer" msgstr "è£å‰ªåœ–層" -#: app/actions/layers-commands.c:683 +#: ../app/actions/layers-commands.c:683 msgid "Layer Mask to Selection" msgstr "圖層é®ç½©è½‰æ›ç‚ºé¸æ“‡å€åŸŸ" -#: app/actions/layers-commands.c:904 app/core/gimplayer.c:1065 -#: app/dialogs/layer-add-mask-dialog.c:62 +#: ../app/actions/layers-commands.c:904 ../app/core/gimplayer.c:1065 +#: ../app/dialogs/layer-add-mask-dialog.c:62 msgid "Add Layer Mask" msgstr "新增圖層é®ç½©" -#: app/actions/layers-commands.c:975 app/actions/layers-commands.c:1007 +#: ../app/actions/layers-commands.c:975 ../app/actions/layers-commands.c:1007 msgid "Invalid width or height. Both must be positive." msgstr "寬度或高度無效。兩者皆必須為正數。" -#: app/actions/palette-editor-actions.c:43 +#: ../app/actions/palette-editor-actions.c:43 msgid "Palette Editor Menu" msgstr "「色盤編輯程åºã€é¸å–®" -#: app/actions/palette-editor-actions.c:53 +#: ../app/actions/palette-editor-actions.c:53 msgid "_Delete Color" msgstr "刪除é¡è‰²(_D)" -#: app/actions/palette-editor-actions.c:54 +#: ../app/actions/palette-editor-actions.c:54 msgid "Delete color" msgstr "刪除é¡è‰²" -#: app/actions/palette-editor-actions.c:62 +#: ../app/actions/palette-editor-actions.c:62 msgid "New Color from _FG" msgstr "加入å‰æ™¯é¡è‰²(_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 +#: ../app/actions/palette-editor-actions.c:68 msgid "New Color from _BG" 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 +#: ../app/actions/palette-editor-actions.c:77 +#: ../app/actions/view-actions.c:215 msgid "Zoom _In" msgstr "拉近(_I)" -#: app/actions/palette-editor-actions.c:83 app/actions/view-actions.c:209 +#: ../app/actions/palette-editor-actions.c:83 +#: ../app/actions/view-actions.c:209 msgid "Zoom _Out" msgstr "拉é (_O)" -#: app/actions/palette-editor-actions.c:89 +#: ../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 +#: ../app/actions/palettes-actions.c:48 msgid "_New Palette" msgstr "新增色盤(_N)" -#: app/actions/palettes-actions.c:49 +#: ../app/actions/palettes-actions.c:49 msgid "New palette" msgstr "新增色盤" -#: app/actions/palettes-actions.c:54 +#: ../app/actions/palettes-actions.c:54 msgid "_Import Palette..." msgstr "匯入色盤(_I)..." -#: app/actions/palettes-actions.c:55 +#: ../app/actions/palettes-actions.c:55 msgid "Import palette" msgstr "匯入色盤" -#: app/actions/palettes-actions.c:60 +#: ../app/actions/palettes-actions.c:60 msgid "D_uplicate Palette" msgstr "複製色盤(_U)" -#: app/actions/palettes-actions.c:61 +#: ../app/actions/palettes-actions.c:61 msgid "Duplicate palette" msgstr "複製色盤" -#: app/actions/palettes-actions.c:66 +#: ../app/actions/palettes-actions.c:66 msgid "_Merge Palettes..." msgstr "åˆä½µè‰²ç›¤(_M)..." -#: app/actions/palettes-actions.c:67 +#: ../app/actions/palettes-actions.c:67 msgid "Merge palettes" msgstr "åˆä½µè‰²ç›¤" -#: app/actions/palettes-actions.c:72 +#: ../app/actions/palettes-actions.c:72 msgid "_Delete Palette" msgstr "刪除色盤(_D)" -#: app/actions/palettes-actions.c:73 +#: ../app/actions/palettes-actions.c:73 msgid "Delete palette" msgstr "刪除色盤" -#: app/actions/palettes-actions.c:78 +#: ../app/actions/palettes-actions.c:78 msgid "_Refresh Palettes" msgstr "é‡æ–°æ•´ç†è‰²ç›¤(_R)" -#: app/actions/palettes-actions.c:79 +#: ../app/actions/palettes-actions.c:79 msgid "Refresh palettes" msgstr "é‡æ–°æ•´ç†è‰²ç›¤" -#: app/actions/palettes-actions.c:87 +#: ../app/actions/palettes-actions.c:87 msgid "_Edit Palette..." msgstr "修改色盤(_E)..." -#: app/actions/palettes-actions.c:88 +#: ../app/actions/palettes-actions.c:88 msgid "Edit palette" msgstr "修改色盤" -#: app/actions/palettes-commands.c:72 +#: ../app/actions/palettes-commands.c:72 msgid "Merge Palette" msgstr "åˆä½µè‰²ç›¤" -#: app/actions/palettes-commands.c:76 +#: ../app/actions/palettes-commands.c:76 msgid "Enter a name for the merged palette" msgstr "請輸入åˆä½µå¾Œçš„色盤的å稱" -#: app/actions/patterns-actions.c:43 +#: ../app/actions/patterns-actions.c:43 msgid "Patterns Menu" msgstr "「圖樣ã€é¸å–®" -#: app/actions/patterns-actions.c:47 +#: ../app/actions/patterns-actions.c:47 msgid "_New Pattern" msgstr "新增圖樣(_N)" -#: app/actions/patterns-actions.c:48 +#: ../app/actions/patterns-actions.c:48 msgid "New pattern" msgstr "新增圖樣" -#: app/actions/patterns-actions.c:53 +#: ../app/actions/patterns-actions.c:53 msgid "D_uplicate Pattern" msgstr "複製圖樣(_U)" -#: app/actions/patterns-actions.c:54 +#: ../app/actions/patterns-actions.c:54 msgid "Duplicate pattern" msgstr "複製圖樣" -#: app/actions/patterns-actions.c:59 +#: ../app/actions/patterns-actions.c:59 msgid "_Delete Pattern..." msgstr "刪除圖樣(_D)..." -#: app/actions/patterns-actions.c:60 +#: ../app/actions/patterns-actions.c:60 msgid "Delete pattern" msgstr "刪除圖樣" -#: app/actions/patterns-actions.c:65 +#: ../app/actions/patterns-actions.c:65 msgid "_Refresh Patterns" msgstr "é‡æ–°æ•´ç†åœ–樣(_R)" -#: app/actions/patterns-actions.c:66 +#: ../app/actions/patterns-actions.c:66 msgid "Refresh patterns" msgstr "é‡æ–°æ•´ç†åœ–樣" -#: app/actions/patterns-actions.c:74 +#: ../app/actions/patterns-actions.c:74 msgid "_Edit Pattern..." msgstr "修改圖樣(_E)..." -#: app/actions/patterns-actions.c:75 +#: ../app/actions/patterns-actions.c:75 msgid "Edit pattern" msgstr "修改圖樣" -#: app/actions/plug-in-actions.c:62 +#: ../app/actions/plug-in-actions.c:62 msgid "Filte_rs" msgstr "濾é¡(_R)" -#: app/actions/plug-in-actions.c:63 +#: ../app/actions/plug-in-actions.c:63 msgid "_Blur" 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 +#: ../app/actions/plug-in-actions.c:66 msgid "_Noise" -msgstr "" +msgstr "雜色(_N)" -#: app/actions/plug-in-actions.c:67 +#: ../app/actions/plug-in-actions.c:67 msgid "Edge-De_tect" msgstr "é‚Šç·£åµæ¸¬(_T)" -#: app/actions/plug-in-actions.c:68 +#: ../app/actions/plug-in-actions.c:68 msgid "En_hance" msgstr "加強å“質(_H)" -#: app/actions/plug-in-actions.c:69 +#: ../app/actions/plug-in-actions.c:69 msgid "_Generic" msgstr "一般性(_G)" -#: app/actions/plug-in-actions.c:70 +#: ../app/actions/plug-in-actions.c:70 msgid "Gla_ss Effects" msgstr "玻璃效果(_S)" -#: app/actions/plug-in-actions.c:71 +#: ../app/actions/plug-in-actions.c:71 msgid "_Light Effects" msgstr "光線效果(_L)" -#: app/actions/plug-in-actions.c:72 +#: ../app/actions/plug-in-actions.c:72 msgid "_Distorts" msgstr "扭曲(_D)" -#: app/actions/plug-in-actions.c:73 +#: ../app/actions/plug-in-actions.c:73 msgid "_Artistic" msgstr "è—術效果(_A)" -#: app/actions/plug-in-actions.c:74 +#: ../app/actions/plug-in-actions.c:74 msgid "_Map" msgstr "映射(_M)" -#: app/actions/plug-in-actions.c:75 +#: ../app/actions/plug-in-actions.c:75 msgid "_Render" msgstr "æ繪(_R)" -#: app/actions/plug-in-actions.c:76 +#: ../app/actions/plug-in-actions.c:76 msgid "_Clouds" msgstr "雲狀(_C)" -#: app/actions/plug-in-actions.c:77 +#: ../app/actions/plug-in-actions.c:77 msgid "_Nature" msgstr "大自然(_N)" -#: app/actions/plug-in-actions.c:79 +#: ../app/actions/plug-in-actions.c:79 msgid "_Web" msgstr "網é (_W)" -#: app/actions/plug-in-actions.c:80 +#: ../app/actions/plug-in-actions.c:80 msgid "An_imation" msgstr "å‹•ç•«(_I)" -#: app/actions/plug-in-actions.c:81 +#: ../app/actions/plug-in-actions.c:81 msgid "C_ombine" msgstr "åˆä½µ(_O)" -#: app/actions/plug-in-actions.c:82 +#: ../app/actions/plug-in-actions.c:82 msgid "To_ys" msgstr "玩具(_Y)" -#: app/actions/plug-in-actions.c:85 +#: ../app/actions/plug-in-actions.c:85 msgid "Reset all Filters..." msgstr "é‡è¨­æ‰€æœ‰æ¿¾é¡..." -#: app/actions/plug-in-actions.c:93 app/actions/plug-in-actions.c:363 +#: ../app/actions/plug-in-actions.c:93 ../app/actions/plug-in-actions.c:363 msgid "Repeat Last" msgstr "é‡è¤‡ä¸Šä¸€æ­¥" -#: 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â€(_E)" -#: app/actions/plug-in-commands.c:193 +#: ../app/actions/plug-in-commands.c:193 msgid "Reset all Filters" msgstr "é‡è¨­æ‰€æœ‰æ¿¾é¡" -#: app/actions/plug-in-commands.c:207 +#: ../app/actions/plug-in-commands.c:207 msgid "Do you really want to reset all filters to default values?" msgstr "您是å¦ç¢ºå®šè¦å°‡æ‰€æœ‰æ¿¾é¡åƒæ•¸é‚„原為é è¨­å€¼ï¼Ÿ" -#: app/actions/qmask-actions.c:42 -#, fuzzy +#: ../app/actions/qmask-actions.c:42 msgid "Quick Mask Menu" msgstr "「快速é®ç½©ã€é¸å–®" -#: app/actions/qmask-actions.c:46 +#: ../app/actions/qmask-actions.c:46 msgid "_Configure Color and Opacity..." msgstr "設定色彩åŠé€æ˜Žåº¦(_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 "切æ›ã€Œå¿«é€Ÿé®ç½©ã€(_Q)" -#: app/actions/qmask-actions.c:70 +#: ../app/actions/qmask-actions.c:70 msgid "Mask _Selected Areas" msgstr "é®è”½å·²é¸å–çš„å€åŸŸ(_S)" -#: app/actions/qmask-actions.c:75 +#: ../app/actions/qmask-actions.c:75 msgid "Mask _Unselected Areas" msgstr "é®è”½æœªé¸å–çš„å€åŸŸ(_U)" -#: app/actions/qmask-commands.c:106 -#, fuzzy +#: ../app/actions/qmask-commands.c:106 msgid "Quick Mask Attributes" 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 "é®ç½©çš„é€æ˜Žåº¦ï¼š" +msgstr "é®ç½©çš„é€æ˜Žåº¦:" -#: app/actions/select-actions.c:44 +#: ../app/actions/select-actions.c:44 msgid "Selection Editor Menu" msgstr "é¸æ“‡å€åŸŸç·¨è¼¯è¦–窗é¸å–®" -#: app/actions/select-actions.c:47 +#: ../app/actions/select-actions.c:47 msgid "_Select" -msgstr "é¸æ“‡å€åŸŸ(_S)" +msgstr "é¸æ“‡(_S)" -#: app/actions/select-actions.c:50 +#: ../app/actions/select-actions.c:50 msgid "_All" msgstr "全部(_A)" -#: app/actions/select-actions.c:51 +#: ../app/actions/select-actions.c:51 msgid "Select all" msgstr "全部é¸å–" -#: app/actions/select-actions.c:56 +#: ../app/actions/select-actions.c:56 msgid "_None" msgstr "ç„¡(_N)" -#: app/actions/select-actions.c:57 +#: ../app/actions/select-actions.c:57 msgid "Select none" msgstr "全部ä¸é¸" -#: app/actions/select-actions.c:62 +#: ../app/actions/select-actions.c:62 msgid "_Invert" msgstr "相å(_I)" -#: app/actions/select-actions.c:63 +#: ../app/actions/select-actions.c:63 msgid "Invert selection" msgstr "é¸å–相åå€åŸŸ" -#: app/actions/select-actions.c:68 +#: ../app/actions/select-actions.c:68 msgid "_Float" msgstr "浮動(_F)" -#: app/actions/select-actions.c:73 +#: ../app/actions/select-actions.c:73 msgid "Fea_ther..." msgstr "羽化(_T)..." -#: app/actions/select-actions.c:78 +#: ../app/actions/select-actions.c:78 msgid "_Sharpen" msgstr "清晰化(_S)" -#: app/actions/select-actions.c:83 +#: ../app/actions/select-actions.c:83 msgid "S_hrink..." msgstr "縮å°(_H)..." -#: app/actions/select-actions.c:88 +#: ../app/actions/select-actions.c:88 msgid "_Grow..." msgstr "æ“´å¼µ(_G)..." -#: app/actions/select-actions.c:93 +#: ../app/actions/select-actions.c:93 msgid "Bo_rder..." msgstr "é‚Šç•Œ(_R)..." -#: app/actions/select-actions.c:98 +#: ../app/actions/select-actions.c:98 msgid "Save to _Channel" msgstr "儲存至色版(_C)" -#: app/actions/select-actions.c:99 +#: ../app/actions/select-actions.c:99 msgid "Save selection to channel" msgstr "å°‡é¸æ“‡å€åŸŸå„²å­˜ç‚ºè‰²ç‰ˆ" -#: app/actions/select-actions.c:104 +#: ../app/actions/select-actions.c:104 msgid "_Stroke Selection..." msgstr "ä¾é¸æ“‡å€åŸŸæé‚Š(_S)..." -#: app/actions/select-actions.c:105 -#, fuzzy +#: ../app/actions/select-actions.c:105 msgid "Stroke selection..." -msgstr "ä¾é¸æ“‡å€åŸŸæé‚Š(_S)..." +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 "é¸æ“‡ç¯„åœç¾½åŒ–程度:" +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 "é¸æ“‡ç¯„åœæ”¶ç¸®ç¨‹åº¦ï¼š" +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 "é¸æ“‡ç¯„åœæ“´å¼µç¨‹åº¦ï¼š" +msgstr "é¸æ“‡ç¯„åœæ“´å¼µç¨‹åº¦:" -#: app/actions/select-commands.c:228 app/core/gimpselection.c:206 +#: ../app/actions/select-commands.c:228 ../app/core/gimpselection.c:206 msgid "Border Selection" msgstr "é¸æ“‡é‚Šç·£ç¯„åœ" -#: app/actions/select-commands.c:232 +#: ../app/actions/select-commands.c:232 msgid "Border selection by" msgstr "" -#: app/actions/select-commands.c:275 app/actions/select-commands.c:301 -#: app/actions/vectors-commands.c:365 app/actions/vectors-commands.c:392 -#: app/dialogs/stroke-dialog.c:275 +#: ../app/actions/select-commands.c:275 ../app/actions/select-commands.c:301 +#: ../app/actions/vectors-commands.c:365 ../app/actions/vectors-commands.c:392 +#: ../app/dialogs/stroke-dialog.c:275 msgid "There is no active layer or channel to stroke to." msgstr "ç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥ç”¨ä¾†æ邊。" -#: app/actions/select-commands.c:280 app/core/gimpselection.c:184 +#: ../app/actions/select-commands.c:280 ../app/core/gimpselection.c:184 msgid "Stroke Selection" msgstr "ä¾é¸æ“‡å€åŸŸæé‚Š" -#: app/actions/templates-actions.c:42 +#: ../app/actions/templates-actions.c:42 msgid "Templates Menu" msgstr "「範本ã€é¸å–®" -#: app/actions/templates-actions.c:46 +#: ../app/actions/templates-actions.c:46 msgid "_Create Image from Template..." msgstr "ä¾ç¯„本産生影åƒ(_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 +#: ../app/actions/templates-actions.c:52 msgid "_New Template..." 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 +#: ../app/actions/templates-actions.c:58 msgid "D_uplicate Template..." 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 +#: ../app/actions/templates-actions.c:64 msgid "_Edit Template..." 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 +#: ../app/actions/templates-actions.c:70 msgid "_Delete Template" 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 "é–‹å•Ÿ(_O)..." +msgstr "é–‹å•Ÿ" -#: app/actions/text-editor-actions.c:45 +#: ../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 "清除" -#: app/actions/text-editor-actions.c:51 +#: ../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 +#: ../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 +#: ../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" +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 +#: ../app/actions/tool-options-actions.c:60 msgid "_Save Options to" msgstr "將設定儲存至(_S)" -#: app/actions/tool-options-actions.c:64 +#: ../app/actions/tool-options-actions.c:64 msgid "_Restore Options from" msgstr "載入設定組åˆ(_R)" -#: app/actions/tool-options-actions.c:68 +#: ../app/actions/tool-options-actions.c:68 msgid "Re_name Saved Options" msgstr "更改設定組åˆå稱(_N)" -#: app/actions/tool-options-actions.c:72 +#: ../app/actions/tool-options-actions.c:72 msgid "_Delete Saved Options" msgstr "刪除設定組åˆ(_D)" -#: app/actions/tool-options-actions.c:76 +#: ../app/actions/tool-options-actions.c:76 msgid "_New Entry..." msgstr "" -#: app/actions/tool-options-actions.c:81 +#: ../app/actions/tool-options-actions.c:81 msgid "R_eset Tool Options" msgstr "é‡è¨­å·¥å…·é¸é …(_E)" -#: app/actions/tool-options-actions.c:82 -#, fuzzy +#: ../app/actions/tool-options-actions.c:82 msgid "Reset to default values" -msgstr "" -"é‡è¨­ç‚ºé è¨­å€¼\n" -"%s é‡è¨­æ‰€æœ‰å·¥å…·é¸é …" +msgstr "還原為é è¨­å€¼" -#: app/actions/tool-options-actions.c:87 +#: ../app/actions/tool-options-actions.c:87 msgid "Reset _all Tool Options..." 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 +#: ../app/actions/tools-actions.c:47 msgid "Tools Menu" msgstr "「工具ã€é¸å–®" -#: app/actions/tools-actions.c:50 +#: ../app/actions/tools-actions.c:50 msgid "_Tools" msgstr "工具(_T)" -#: app/actions/tools-actions.c:51 +#: ../app/actions/tools-actions.c:51 msgid "_Selection Tools" msgstr "é¸æ“‡å€åŸŸå·¥å…·(_S)" -#: app/actions/tools-actions.c:52 +#: ../app/actions/tools-actions.c:52 msgid "_Paint Tools" msgstr "繪畫工具(_P)" -#: app/actions/tools-actions.c:53 +#: ../app/actions/tools-actions.c:53 msgid "_Transform Tools" msgstr "變æ›å·¥å…·(_T)" -#: app/actions/tools-actions.c:54 +#: ../app/actions/tools-actions.c:54 msgid "_Color Tools" msgstr "色彩工具(_C)" -#: app/actions/tools-actions.c:57 +#: ../app/actions/tools-actions.c:57 msgid "_Reset Order & Visibility" msgstr "" -#: app/actions/tools-actions.c:58 +#: ../app/actions/tools-actions.c:58 msgid "Reset tool order and visibility" msgstr "" -#: app/actions/tools-actions.c:66 -#, fuzzy +#: ../app/actions/tools-actions.c:66 msgid "_Show in Toolbox" -msgstr "顯示加上繪畫工具的滑鼠指標(_T)" +msgstr "在工具箱中顯示(_S)" -#: app/actions/tools-actions.c:75 +#: ../app/actions/tools-actions.c:75 msgid "_By Color" msgstr "ä¾é¡è‰²(_B)" -#: app/actions/tools-actions.c:80 +#: ../app/actions/tools-actions.c:80 msgid "_Arbitrary Rotation..." msgstr "ä»»æ„旋轉(_A)..." -#: app/actions/vectors-actions.c:44 +#: ../app/actions/vectors-actions.c:44 msgid "Paths Menu" msgstr "「路徑ã€é¸å–®" -#: app/actions/vectors-actions.c:48 +#: ../app/actions/vectors-actions.c:48 msgid "Path _Tool" msgstr "路徑工具(_T)" -#: app/actions/vectors-actions.c:53 +#: ../app/actions/vectors-actions.c:53 msgid "_Edit Path Attributes..." msgstr "修改路徑屬性(_E)..." -#: app/actions/vectors-actions.c:54 +#: ../app/actions/vectors-actions.c:54 msgid "Edit path attributes" msgstr "修改路徑屬性" -#: app/actions/vectors-actions.c:59 +#: ../app/actions/vectors-actions.c:59 msgid "_New Path..." msgstr "新增路徑(_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 +#: ../app/actions/vectors-actions.c:71 msgid "D_uplicate Path" msgstr "複製路徑(_U)" -#: app/actions/vectors-actions.c:72 +#: ../app/actions/vectors-actions.c:72 msgid "Duplicate path" msgstr "複製路徑" -#: app/actions/vectors-actions.c:77 +#: ../app/actions/vectors-actions.c:77 msgid "_Delete Path" msgstr "刪除路徑(_D)" -#: app/actions/vectors-actions.c:78 +#: ../app/actions/vectors-actions.c:78 msgid "Delete path" msgstr "刪除路徑" -#: app/actions/vectors-actions.c:83 +#: ../app/actions/vectors-actions.c:83 msgid "Merge _Visible Paths" msgstr "åˆä½µæ­£åœ¨é¡¯ç¤ºçš„路徑(_V)" -#: app/actions/vectors-actions.c:88 +#: ../app/actions/vectors-actions.c:88 msgid "_Raise Path" msgstr "æå‡è·¯å¾‘(_R)" -#: app/actions/vectors-actions.c:89 +#: ../app/actions/vectors-actions.c:89 msgid "Raise path" msgstr "" -#: app/actions/vectors-actions.c:94 +#: ../app/actions/vectors-actions.c:94 msgid "Raise Path to _Top" msgstr "路徑æå‡è‡³é ‚層(_T)" -#: app/actions/vectors-actions.c:95 +#: ../app/actions/vectors-actions.c:95 msgid "Raise path to top" msgstr "路徑æå‡è‡³é ‚層" -#: app/actions/vectors-actions.c:100 +#: ../app/actions/vectors-actions.c:100 msgid "_Lower Path" msgstr "é™ä½Žè·¯å¾‘(_L)" -#: app/actions/vectors-actions.c:101 +#: ../app/actions/vectors-actions.c:101 msgid "Lower path" msgstr "下移圖層" -#: app/actions/vectors-actions.c:106 +#: ../app/actions/vectors-actions.c:106 msgid "Lower Path to _Bottom" msgstr "路徑下é™è‡³åº•å±¤(_B)" -#: app/actions/vectors-actions.c:107 +#: ../app/actions/vectors-actions.c:107 msgid "Lower path to bottom" msgstr "路徑下é™è‡³åº•å±¤" -#: app/actions/vectors-actions.c:112 +#: ../app/actions/vectors-actions.c:112 msgid "Stro_ke Path..." msgstr "ä¾è·¯å¾‘æé‚Š(_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 +#: ../app/actions/vectors-actions.c:124 msgid "Co_py Path" msgstr "複製路徑(_P)" -#: app/actions/vectors-actions.c:129 +#: ../app/actions/vectors-actions.c:129 msgid "Paste Pat_h" msgstr "貼上路徑(_H)" -#: app/actions/vectors-actions.c:134 +#: ../app/actions/vectors-actions.c:134 msgid "I_mport Path..." msgstr "匯入路徑(_M)..." -#: app/actions/vectors-actions.c:139 +#: ../app/actions/vectors-actions.c:139 msgid "E_xport Path..." msgstr "匯出路徑(_X)..." -#: app/actions/vectors-actions.c:162 +#: ../app/actions/vectors-actions.c:162 msgid "Path to Sele_ction" msgstr "路徑轉為é¸æ“‡å€åŸŸ(_C)" -#: 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 "路徑轉æ›ç‚ºé¸æ“‡å€åŸŸ" -#: app/actions/vectors-actions.c:168 +#: ../app/actions/vectors-actions.c:168 msgid "Fr_om Path" msgstr "由路徑轉æ›(_O)" -#: app/actions/vectors-actions.c:194 +#: ../app/actions/vectors-actions.c:194 msgid "Selecti_on to Path" 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 +#: ../app/actions/vectors-actions.c:200 msgid "To _Path" msgstr "移動路徑" -#: app/actions/vectors-actions.c:205 +#: ../app/actions/vectors-actions.c:205 msgid "Selection to Path (_Advanced)" msgstr "é¸æ“‡å€åŸŸè½‰ç‚ºè·¯å¾‘[進階](_A)" -#: app/actions/vectors-actions.c:206 -#, fuzzy +#: ../app/actions/vectors-actions.c:206 msgid "Advanced options" -msgstr "進階é¸é …(_A)" +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 +#: ../app/actions/view-actions.c:63 msgid "_View" msgstr "顯示(_V)" -#: app/actions/view-actions.c:64 +#: ../app/actions/view-actions.c:64 msgid "_Zoom" msgstr "縮放(_Z)" -#: app/actions/view-actions.c:65 +#: ../app/actions/view-actions.c:65 msgid "_Padding Color" msgstr "å½±åƒå¤–åœè£œç™½çš„é¡è‰²(_P)" -#: app/actions/view-actions.c:73 +#: ../app/actions/view-actions.c:73 msgid "_Close" msgstr "關閉(_C)" -#: app/actions/view-actions.c:78 +#: ../app/actions/view-actions.c:78 msgid "_Fit Image in Window" -msgstr "令影åƒç¬¦åˆè¦–窗尺寸(_F)" +msgstr "å½±åƒç¸®æ”¾è‡³èƒ½å¤ å®Œå…¨é¡¯ç¤º(_F)" -#: app/actions/view-actions.c:79 -#, fuzzy +#: ../app/actions/view-actions.c:79 msgid "Fit image in window" -msgstr "令影åƒç¬¦åˆè¦–窗尺寸(_F)" +msgstr "å½±åƒç¸®æ”¾è‡³èƒ½å¤ å®Œå…¨é¡¯ç¤º" -#: app/actions/view-actions.c:84 +#: ../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 +#: ../app/actions/view-actions.c:90 msgid "_Info Window" msgstr "資訊視窗(_I)" -#: app/actions/view-actions.c:95 +#: ../app/actions/view-actions.c:95 msgid "Na_vigation Window" msgstr "導覽視窗(_V)" -#: app/actions/view-actions.c:100 +#: ../app/actions/view-actions.c:100 msgid "Display _Filters..." -msgstr "顯示濾é¡(_F)..." +msgstr "濾色片(_F)..." -#: app/actions/view-actions.c:105 +#: ../app/actions/view-actions.c:105 msgid "Shrink _Wrap" msgstr "視窗縮放至符åˆå½±åƒå°ºå¯¸(_W)" -#: app/actions/view-actions.c:106 -#, fuzzy +#: ../app/actions/view-actions.c:106 msgid "Shrink wrap" msgstr "視窗縮放至符åˆå½±åƒå°ºå¯¸" -#: app/actions/view-actions.c:111 +#: ../app/actions/view-actions.c:111 msgid "Move to Screen..." msgstr "移至畫é¢..." -#: app/actions/view-actions.c:119 +#: ../app/actions/view-actions.c:119 msgid "_Dot for Dot" msgstr "點å°é»ž(_D)" -#: app/actions/view-actions.c:125 +#: ../app/actions/view-actions.c:125 msgid "Show _Selection" 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 +#: ../app/actions/view-actions.c:143 msgid "Sn_ap to Guides" msgstr "é é½Šåƒè€ƒç·š(_A)" -#: app/actions/view-actions.c:149 +#: ../app/actions/view-actions.c:149 msgid "S_how Grid" msgstr "顯示格線(_H)" -#: app/actions/view-actions.c:155 +#: ../app/actions/view-actions.c:155 msgid "Sna_p to Grid" 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 +#: ../app/actions/view-actions.c:167 msgid "Show R_ulers" 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 +#: ../app/actions/view-actions.c:185 msgid "Fullscr_een" msgstr "全螢幕模å¼(_E)" -#: app/actions/view-actions.c:234 +#: ../app/actions/view-actions.c:234 msgid "16:1 (1600%)" msgstr "16:1 (1600%)" -#: app/actions/view-actions.c:239 +#: ../app/actions/view-actions.c:239 msgid "8:1 (800%)" msgstr "8:1 (800%)" -#: app/actions/view-actions.c:244 +#: ../app/actions/view-actions.c:244 msgid "4:1 (400%)" msgstr "4:1 (400%)" -#: app/actions/view-actions.c:249 +#: ../app/actions/view-actions.c:249 msgid "2:1 (200%)" msgstr "2:1 (200%)" -#: app/actions/view-actions.c:254 +#: ../app/actions/view-actions.c:254 msgid "1:1 (100%)" msgstr "1:1 (100%)" -#: app/actions/view-actions.c:255 +#: ../app/actions/view-actions.c:255 msgid "Zoom 1:1" msgstr "原來尺寸" -#: app/actions/view-actions.c:260 +#: ../app/actions/view-actions.c:260 msgid "1:2 (50%)" msgstr "1:2 (50%)" -#: app/actions/view-actions.c:265 +#: ../app/actions/view-actions.c:265 msgid "1:4 (25%)" msgstr "1:4 (25%)" -#: app/actions/view-actions.c:270 +#: ../app/actions/view-actions.c:270 msgid "1:8 (12.5%)" msgstr "1:8 (12.5%)" -#: app/actions/view-actions.c:275 +#: ../app/actions/view-actions.c:275 msgid "1:16 (6.25%)" msgstr "1:16 (6.25%)" -#: app/actions/view-actions.c:280 +#: ../app/actions/view-actions.c:280 msgid "O_ther..." msgstr "其它(_T)..." -#: app/actions/view-actions.c:288 +#: ../app/actions/view-actions.c:288 msgid "From _Theme" msgstr "從佈景主題(_T)" -#: app/actions/view-actions.c:293 +#: ../app/actions/view-actions.c:293 msgid "_Light Check Color" -msgstr "淺色方格(_L)" +msgstr "æ·ºç°(_L)" -#: app/actions/view-actions.c:298 +#: ../app/actions/view-actions.c:298 msgid "_Dark Check Color" -msgstr "深色方格(_D)" +msgstr "æ·±ç°(_D)" -#: app/actions/view-actions.c:303 +#: ../app/actions/view-actions.c:303 msgid "Select _Custom Color..." msgstr "自é¸é¡è‰²(_C)..." -#: app/actions/view-actions.c:308 +#: ../app/actions/view-actions.c:308 msgid "As in _Preferences" 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 "縮放 [%s] (_Z)" -#: app/actions/view-commands.c:572 +#: ../app/actions/view-commands.c:572 msgid "Set Canvas Padding Color" -msgstr "" +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 "立方內æ’法(å“質最高)" -#: 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 " @@ -3312,66 +3250,66 @@ "內容æ壞。請您嘗試使用å¦ä¸€å€‹æª”案å稱儲存影åƒï¼Œç„¶å¾Œé‡æ–°å•Ÿå‹• GIMP,在å好設定中" "檢查有關交æ›æª”資料夾的ä½ç½®ã€‚" -#: 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 "%s 的值ä¸æ˜¯æœ‰æ•ˆçš„ UTF-8 字串" -#: 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 布林值應該是‘yes’或者‘no’,但實際上是‘%s’" -#: app/config/gimpconfig-deserialize.c:541 +#: ../app/config/gimpconfig-deserialize.c:541 #, c-format msgid "invalid value '%s' for token %s" msgstr "%2$s 的值‘%1$s’無效" -#: app/config/gimpconfig-deserialize.c:556 +#: ../app/config/gimpconfig-deserialize.c:556 #, c-format msgid "invalid value '%ld' for token %s" msgstr "%2$s 的值‘%1$ld’無效" -#: 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 " @@ -3380,12 +3318,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" @@ -3394,7 +3332,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" @@ -3403,22 +3341,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" @@ -3427,36 +3365,36 @@ #. * (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 "指定如何顯示影åƒå‘¨åœçš„空白å€åŸŸã€‚" +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 "如果決定了使用自é¸çš„é¡è‰²ä¾†å¡«è£œå½±åƒå‘¨åœçš„空白å€åŸŸï¼Œå‰‡åœ¨é€™è£¡æŒ‡å®šé¡è‰²ã€‚" +msgstr "如果決定了使用自é¸çš„é¡è‰²ä¾†å¡«è£œå½±åƒå¤–åœçš„空白å€åŸŸï¼Œå‰‡åœ¨é€™è£¡æŒ‡å®šé¡è‰²ã€‚" -#: app/config/gimprc-blurbs.h:30 +#: ../app/config/gimprc-blurbs.h:30 msgid "Ask for confirmation before closing an image without saving." msgstr "如果在未儲存影åƒçš„情æ³ä¸‹é—œé–‰è¦–窗,必須先得到使用者åŒæ„。" -#: app/config/gimprc-blurbs.h:33 +#: ../app/config/gimprc-blurbs.h:33 msgid "Sets the pixel format of cursors the GIMP will use." -msgstr "" +msgstr "指定 GIMP 顯示滑鼠指標時使用的圖形。" -#: app/config/gimprc-blurbs.h:36 +#: ../app/config/gimprc-blurbs.h:36 msgid "Sets the mode of cursor the GIMP will use." -msgstr "指定 GIMP 使用滑鼠指標的模å¼ã€‚" +msgstr "指定 GIMP 以哪種方å¼é¡¯ç¤ºæ»‘鼠指標。" -#: app/config/gimprc-blurbs.h:39 +#: ../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." @@ -3464,17 +3402,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 "" +msgstr "令物件自動貼齊åƒè€ƒç·šå’Œæ ¼ç·šé€™å€‹åŠŸèƒ½ç”Ÿæ•ˆæ‰€éœ€çš„è·é›¢ (åƒç´ )。" -#: app/config/gimprc-blurbs.h:77 +#: ../app/config/gimprc-blurbs.h:77 msgid "" "Tools such as fuzzy-select and bucket fill find regions based on a seed-fill " "algorithm. The seed fill starts at the initially selected pixel and " @@ -3486,41 +3424,41 @@ "候,會é¸å®šä¸€å€‹åƒç´ ï¼Œç„¶å¾Œå‘所有方å‘延伸,直至兩個相鄰åƒç´ ä¹‹é–“的亮度的差大於æŸ" "個界é™ã€‚本數值就是é è¨­çš„ç•Œé™ã€‚" -#: app/config/gimprc-blurbs.h:90 +#: ../app/config/gimprc-blurbs.h:90 msgid "" "The window type hint that is set on dock windows. This may affect the way " "your window manager decorates and handles dock windows." msgstr "" -#: app/config/gimprc-blurbs.h:121 +#: ../app/config/gimprc-blurbs.h:121 msgid "When enabled, the selected brush will be used for all tools." msgstr "如啟用本é¸é …,所有工具都會使用您é¸å®šçš„筆刷。" -#: app/config/gimprc-blurbs.h:127 +#: ../app/config/gimprc-blurbs.h:127 msgid "When enabled, the selected gradient will be used for all tools." msgstr "如啟用本é¸é …,所有工具都會使用您é¸å®šçš„漸層。" -#: app/config/gimprc-blurbs.h:130 +#: ../app/config/gimprc-blurbs.h:130 msgid "When enabled, the selected pattern will be used for all tools." msgstr "如啟用本é¸é …,所有工具都會使用您é¸å®šçš„圖樣。" -#: app/config/gimprc-blurbs.h:146 +#: ../app/config/gimprc-blurbs.h:146 msgid "Sets the browser used by the help system." msgstr "指定說明文件系統使用的ç€è¦½å™¨ã€‚" -#: app/config/gimprc-blurbs.h:154 +#: ../app/config/gimprc-blurbs.h:154 msgid "Sets the text to appear in image window status bars." msgstr "指定影åƒè¦–窗狀態列中顯示的文字。" -#: app/config/gimprc-blurbs.h:157 +#: ../app/config/gimprc-blurbs.h:157 msgid "Sets the text to appear in image window titles." msgstr "指定影åƒè¦–窗標題中顯示的文字。" -#: app/config/gimprc-blurbs.h:160 +#: ../app/config/gimprc-blurbs.h:160 msgid "When enabled, the GIMP will use a different info window per image view." msgstr "如啟用本é¸é …,GIMP 會為æ¯å¹…å½±åƒåˆ†é…ç¨ç«‹çš„資訊視窗。" -#: 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." @@ -3528,27 +3466,28 @@ "如啟用本é¸é …,GIMP 會確ä¿é–‹å•Ÿå½±åƒå¾Œï¼Œç•«é¢ä¸­æœƒå®Œå…¨é¡¯ç¤ºæ•´å¹…å½±åƒï¼Œå¦å‰‡å®ƒæœƒä»¥åŽŸä¾†" "尺寸顯示。" -#: app/config/gimprc-blurbs.h:167 +#: ../app/config/gimprc-blurbs.h:167 msgid "" "Install a private colormap; might be useful on 8-bit (256 colors) displays." -msgstr "程å¼æœƒä½¿ç”¨è‡ªå·±çš„色盤;在 8 bit (256 色) ç•«é¢ä¸­æœƒæœ‰ç”¨ã€‚" +msgstr "" +"程å¼æœƒä½¿ç”¨è‡ªå·±çš„色彩而ä¸ç”¨ç³»çµ±åˆ†é…的色彩;在 8 bit (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)." msgstr "é¸æ“‡å€åŸŸå‘¨åœçš„虛線移動速度。本數值以亳秒表示 (時間較少表示速度較快)。" -#: app/config/gimprc-blurbs.h:181 +#: ../app/config/gimprc-blurbs.h:181 msgid "" "GIMP will warn the user if an attempt is made to create an image that would " "take more memory than the size specified here." @@ -3556,11 +3495,11 @@ "如果用戶嘗試產生一個使用多於指定記憶體數é‡çš„å½±åƒæ™‚,GIMP 會發出警告訊æ¯æ示用" "戶。" -#: app/config/gimprc-blurbs.h:185 +#: ../app/config/gimprc-blurbs.h:185 msgid "When enabled, GIMP will show mnemonics in menus." msgstr "" -#: app/config/gimprc-blurbs.h:188 +#: ../app/config/gimprc-blurbs.h:188 msgid "" "Generally only a concern for 8-bit displays, this sets the minimum number of " "system colors allocated for the GIMP." @@ -3568,34 +3507,41 @@ "一般上åªæœƒå°ä½¿ç”¨ 8 ä½å…ƒè‰²å½©çš„ç•«é¢æ¯”較é‡è¦ï¼šå®ƒæŒ‡å®šæœƒåˆ†é…給 GIMP çš„é¡è‰²æ•¸ç›®ä¸‹" "é™ã€‚" -#: 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 "" +"設定螢幕的水平解æžåº¦ (å–®ä½ç‚º dpi)。如果設定為 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 "" +"設定螢幕的垂直解æžåº¦ (å–®ä½ç‚º dpi)。如果設定為 0 çš„è©±ï¼Œæœƒå‘ X 伺æœå™¨æŸ¥è©¢æ°´å¹³å’Œ" +"垂直的解æžåº¦ã€‚" -#: app/config/gimprc-blurbs.h:209 +# (Abel) 姑且用 input focus 的概念, 希望解釋會清楚一點 +#: ../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 "" +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." @@ -3603,7 +3549,7 @@ "在有多個處ç†å™¨çš„電腦中,如果編譯 GIMP 時有加入 --enable-mp é¸é …,本數值表示 " "GIMP 應該åŒæ™‚使用多少個處ç†å™¨ã€‚" -#: 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 " @@ -3612,7 +3558,7 @@ "painting." msgstr "" -#: app/config/gimprc-blurbs.h:245 +#: ../app/config/gimprc-blurbs.h:245 msgid "" "Sets whether GIMP should create previews of layers and channels. Previews in " "the layers and channels dialog are nice to have but they can slow things " @@ -3621,58 +3567,60 @@ "指定 GIMP 應å¦ç”¢ç”Ÿåœ–層åŠè‰²ç‰ˆçš„é è¦½åœ–。在圖層åŠè‰²ç‰ˆå°è©±æ–¹å¡Šä¸­é¡¯ç¤ºé è¦½åœ–是一件" "好事,但如果開啟較大的影åƒï¼Œæœƒæ‹–慢整體的é‹è¡Œé€Ÿåº¦ã€‚" -#: app/config/gimprc-blurbs.h:250 +#: ../app/config/gimprc-blurbs.h:250 #, fuzzy msgid "" "Sets the preview size used for layers and channel previews in newly created " "dialogs." msgstr "為圖層åŠè‰²ç‰ˆæŒ‡å®šé è¦½åœ–çš„é è¨­å°ºå¯¸ã€‚" -#: app/config/gimprc-blurbs.h:254 +#: ../app/config/gimprc-blurbs.h:254 msgid "" "When enabled, the image window will automatically resize itself, whenever " "the physical image size changes." -msgstr "如啟用本é¸é …,當影åƒçš„實際尺寸有變動時,影åƒè¦–窗會自動調整尺寸。" +msgstr "如啟用本é¸é …,當影åƒçš„實際尺寸有變動時,視窗會自動調整尺寸。" -#: app/config/gimprc-blurbs.h:258 +#: ../app/config/gimprc-blurbs.h:258 msgid "" "When enabled, the image window will automatically resize itself, when " "zooming into and out of images." msgstr "如啟用本é¸é …,當拉近或者拉é å½±åƒæ™‚,影åƒè¦–窗會自動調整尺寸。" -#: app/config/gimprc-blurbs.h:262 +#: ../app/config/gimprc-blurbs.h:262 msgid "Let GIMP try to restore your last saved session on each startup." msgstr "讓 GIMP 在æ¯æ¬¡å•Ÿå‹•æ™‚回復上次執行的情æ³ã€‚" -#: app/config/gimprc-blurbs.h:265 +#: ../app/config/gimprc-blurbs.h:265 msgid "" "Remember the current tool, pattern, color, and brush across GIMP sessions." msgstr "在 GIMP çµæŸå‰ï¼Œè¨˜éŒ„ç›®å‰ä½¿ç”¨çš„工具ã€åœ–樣ã€è‰²å½©åŠç­†åˆ·ã€‚" -#: app/config/gimprc-blurbs.h:269 +#: ../app/config/gimprc-blurbs.h:269 msgid "Save the positions and sizes of the main dialogs when the GIMP exits." msgstr "當 GIMP çµæŸæ™‚儲存主è¦å°è©±æ–¹å¡Šçš„ä½ç½®åŠå°ºå¯¸ã€‚" -#: app/config/gimprc-blurbs.h:275 +#: ../app/config/gimprc-blurbs.h:275 msgid "" "When enabled, all paint tools will show a preview of the current brush's " "outline." msgstr "如啟用本é¸é …,使用任何繪畫工具時都會顯示目å‰çš„筆刷的形狀。" -#: app/config/gimprc-blurbs.h:279 +#: ../app/config/gimprc-blurbs.h:279 msgid "" "When enabled, dialogs will show a help button that gives access to the " "related help page. Without this button, the help page can still be reached " "by pressing F1." msgstr "" +"如啟用本é¸é …,所有å°è©±æ–¹å¡Šéƒ½æœƒé¡¯ç¤ºã€Œæ±‚助ã€æŒ‰éˆ•ï¼Œè®“您ç€è¦½ç›¸é—œçš„說明文件。ä¸éŽ" +"å³ä½¿æ²’有這個按鈕,ä»ç„¶å¯ä»¥æŒ‰éµç›¤çš„ F1 代替。" -#: app/config/gimprc-blurbs.h:284 +#: ../app/config/gimprc-blurbs.h:284 msgid "" "When enabled, the cursor will be shown over the image while using a paint " "tool." -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." @@ -3680,14 +3628,14 @@ "如啟用本é¸é …,é è¨­æœƒå°‡é¸å–®åˆ—顯示出來。您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示é¸å–®åˆ—ã€ä¸­æ›´æ”¹æœ¬è¨­" "定。" -#: app/config/gimprc-blurbs.h:292 +#: ../app/config/gimprc-blurbs.h:292 msgid "" "When enabled, the rulers are visible by default. This can also be toggled " "with the \"View->Show Rulers\" command." msgstr "" "如啟用本é¸é …,é è¨­æœƒå°‡å°ºè¦é¡¯ç¤ºå‡ºä¾†ã€‚您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示尺è¦ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚" -#: app/config/gimprc-blurbs.h:296 +#: ../app/config/gimprc-blurbs.h:296 msgid "" "When enabled, the scrollbars are visible by default. This can also be " "toggled with the \"View->Show Scrollbars\" command." @@ -3695,7 +3643,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." @@ -3703,7 +3651,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." @@ -3711,7 +3659,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." @@ -3719,7 +3667,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." @@ -3727,22 +3675,22 @@ "如啟用本é¸é …,é è¨­æœƒå°‡åƒè€ƒç·šé¡¯ç¤ºå‡ºä¾†ã€‚您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示åƒè€ƒç·šã€ä¸­æ›´æ”¹æœ¬è¨­" "定。" -#: app/config/gimprc-blurbs.h:316 +#: ../app/config/gimprc-blurbs.h:316 msgid "" "When enabled, the grid is visible by default. This can also be toggled with " "the \"View->Show Grid\" command." msgstr "" "如啟用本é¸é …,é è¨­æœƒå°‡æ ¼ç·šé¡¯ç¤ºå‡ºä¾†ã€‚您也å¯ä»¥åœ¨ã€Œé¡¯ç¤ºâ†’顯示格線ã€ä¸­æ›´æ”¹æœ¬è¨­å®šã€‚" -#: app/config/gimprc-blurbs.h:320 +#: ../app/config/gimprc-blurbs.h:320 msgid "Enable to display a handy GIMP tip on startup." msgstr "é¸ç”¨æœ¬é¸é …å¯åœ¨å•Ÿå‹•ç¨‹å¼æ™‚顯示å°æ示。" -#: app/config/gimprc-blurbs.h:323 +#: ../app/config/gimprc-blurbs.h:323 msgid "Enable to display tooltips." msgstr "é¸ç”¨æœ¬é¸é …å¯é¡¯ç¤ºå·¥å…·æ示。" -#: 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 " @@ -3751,7 +3699,7 @@ "記憶體使用é‡åŠé€Ÿåº¦å¾€å¾€ç„¡æ³•å…©è€…兼得。在大多數的情æ³ä¸‹ï¼ŒGIMP 會é¸æ“‡é€Ÿåº¦è€ŒçŠ§ç‰²è¨˜" "憶體使用é‡ã€‚但是,如果記憶體較為é‡è¦ï¼Œå¯å˜—試啟用本é¸é …。" -#: 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 " @@ -3765,11 +3713,11 @@ "交æ›æª”å¯ä»¥è®Šå¾—很大。å¦å¤–,如果交æ›æª”目錄是在 NFS 伺æœå™¨ä¸­ï¼Œé€Ÿåº¦å¯ä»¥è®Šå¾—很慢。" "基於以上的原因,最好將交æ›æª”案目錄設定為“/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." @@ -3777,15 +3725,15 @@ "如啟用本é¸é …,當æŸå€‹é¸å–®é …目被é¸ä¸­æ™‚,您å¯å³æ™‚按下é©ç•¶çš„按éµçµ„åˆï¼Œä¾†æ›´æ”¹ä»£è¡¨" "這個é¸å–®é …目的æ·å¾‘éµã€‚" -#: app/config/gimprc-blurbs.h:347 +#: ../app/config/gimprc-blurbs.h:347 msgid "Save changed keyboard shortcuts when the GIMP exits." msgstr "當 GIMP çµæŸæ™‚儲存己修改的æ·å¾‘éµã€‚" -#: app/config/gimprc-blurbs.h:350 +#: ../app/config/gimprc-blurbs.h:350 msgid "Restore saved keyboard shortcuts on each GIMP startup." msgstr "當 GIMP 啟動時載入己修改的æ·å¾‘éµã€‚" -#: 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, " @@ -3796,21 +3744,21 @@ "會在 GIMP çµæŸå¾Œæ¶ˆå¤±ï¼Œä½†æœ‰å¯èƒ½æœ‰ä¸€äº›æª”案會留下,因此該目錄最好是ä¸å¯ä»¥åˆ†äº«çµ¦" "其它使用者。" -#: 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 "" -"指定æ¯å¹…å½±åƒçš„縮圖大å°ã€‚請注æ„,如果ä¸é–‹å•Ÿåœ–層é è¦½åŠŸèƒ½ï¼ŒGIMP ä¸å¯ä»¥å„²å­˜ç¸®åœ–。" +"指定æ¯å¹…å½±åƒçš„縮圖大å°ã€‚請注æ„:如果ä¸é–‹å•Ÿåœ–層é è¦½åŠŸèƒ½ï¼ŒGIMP 無法產生縮圖。" -#: app/config/gimprc-blurbs.h:369 +#: ../app/config/gimprc-blurbs.h:369 msgid "" "The thumbnail in the Open dialog will be automatically updated if the file " "being previewed is smaller than the size set here." msgstr "" +"如果準備é è¦½çš„圖片大å°ä½Žæ–¼æœ¬è¨­å®šï¼Œã€Œé–‹å•Ÿå½±åƒã€å°è©±æ–¹å¡Šä¸­çš„縮圖會自動更新。" -#: app/config/gimprc-blurbs.h:373 +#: ../app/config/gimprc-blurbs.h:373 msgid "" "The tile cache is used to make sure the GIMP doesn't thrash tiles between " "memory and disk. Setting this value higher will cause the GIMP to use less " @@ -3821,27 +3769,27 @@ "為較高的數字,GIMP 會較少將暫存記憶寫進ç£ç¢Ÿï¼Œä½†æœƒä½”用較多記憶體。相å地,如" "æžœ cache 數字較低,會令 GIMP 使用較多的交æ›è¨˜æ†¶ç©ºé–“和較少的記憶體。" -#: app/config/gimprc-blurbs.h:384 +#: ../app/config/gimprc-blurbs.h:384 msgid "" "The window type hint that is set on the toolbox. This may affect how your " "window manager decorates and handles the toolbox window." msgstr "" -#: app/config/gimprc-blurbs.h:388 +#: ../app/config/gimprc-blurbs.h:388 msgid "Sets the manner in which transparency is displayed in images." msgstr "指定顯示影åƒæ™‚é€æ˜Žåº¦çš„表示方å¼ã€‚" -#: app/config/gimprc-blurbs.h:391 +#: ../app/config/gimprc-blurbs.h:391 msgid "Sets the size of the checkerboard used to display transparency." msgstr "以方格代表é€æ˜Žåº¦æ™‚,指定方格的尺寸。" -#: app/config/gimprc-blurbs.h:394 +#: ../app/config/gimprc-blurbs.h:394 msgid "" "When enabled, the GIMP will not save if the image is unchanged since opening " "it." msgstr "如啟用本é¸é …,GIMP ä¸æœƒå„²å­˜æ²’有修改的影åƒã€‚" -#: 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." @@ -3849,25 +3797,24 @@ "指定å¯ä»¥é‚„原的æ“作程åºæ¬¡æ•¸ä¸‹é™ã€‚至於é¡å¤–å¯é‚„原的æ“作程åºï¼Œæœƒä¿ç•™è‡³ç”¨ç›¡æŒ‡å®šçš„" "記憶體數目為止。" -#: app/config/gimprc-blurbs.h:402 -#, fuzzy +#: ../app/config/gimprc-blurbs.h:402 msgid "" "Sets an upper limit to the memory that is used per image to keep operations " "on the undo stack. Regardless of this setting, at least as many undo-levels " "as configured can be undone." msgstr "" "æ¯å¹…å½±åƒéƒ½æœƒå°‡æ›¾ç¶“使用æ“作程åºä¿ç•™åœ¨è¨˜æ†¶ä¸­ï¼Œä»¥å‚™å°‡ä¾†å¾©åŽŸæ™‚使用;這裡指定æ¯å¹…" -"å½±åƒå€‹åˆ¥ä½”用的記憶體上é™ã€‚" +"å½±åƒå€‹åˆ¥ä½”用的記憶體上é™ã€‚但無論本設定為何值,復原次數的設定會優先考慮。" -#: app/config/gimprc-blurbs.h:407 +#: ../app/config/gimprc-blurbs.h:407 msgid "Sets the size of the previews in the Undo History." msgstr "還原紀錄之中é è¦½åœ–的尺寸。" -#: 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 " @@ -3876,901 +3823,899 @@ "appended to the command with a space separating the two." msgstr "" "指定會使用的網é ç€è¦½å™¨ã€‚它å¯ä»¥ç”¨çµ•å°è·¯å¾‘表示,或者å¯ä»¥åªæ供程å¼å稱,在後者" -"的情æ³ä¸‹æœƒåœ¨ç”¨æˆ¶çš„ PATH 下æœå°‹ã€‚如果指令中出ç¾â€˜%s’會以 URL å–代,å¦å‰‡ URL 會" +"的情æ³ä¸‹æœƒåœ¨ç”¨æˆ¶çš„ PATH 下æœå°‹ã€‚å¦‚æžœæŒ‡ä»¤ä¸­å‡ºç¾ â€˜%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 "分æžç¬¬ %2$d 行的‘%1$s’時發生錯誤:%3$s" -#: app/core/core-enums.c:27 +#: ../app/core/core-enums.c:27 msgid "_White (full opacity)" msgstr "白色[完全ä¸é€æ˜Ž] (_W)" -#: app/core/core-enums.c:28 +#: ../app/core/core-enums.c:28 msgid "_Black (full transparency)" msgstr "黑色[完全é€æ˜Ž] (_B)" -#: app/core/core-enums.c:29 +#: ../app/core/core-enums.c:29 msgid "Layer's _alpha channel" msgstr "圖層的é€æ˜Žè‰²ç‰ˆ(_A)" -#: app/core/core-enums.c:30 +#: ../app/core/core-enums.c:30 msgid "_Transfer layer's alpha channel" msgstr "" -#: app/core/core-enums.c:31 +#: ../app/core/core-enums.c:31 msgid "_Selection" msgstr "é¸æ“‡å€åŸŸ(_S)" -#: app/core/core-enums.c:32 +#: ../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 +#: ../app/core/core-enums.c:63 msgid "FG to transparent" msgstr "å‰æ™¯è‰²è‡³é€æ˜Ž" -#: app/core/core-enums.c:64 +#: ../app/core/core-enums.c:64 msgid "Custom gradient" msgstr "自é¸æ¼¸å±¤" -#: app/core/core-enums.c:92 +#: ../app/core/core-enums.c:92 msgid "FG color fill" msgstr "填上å‰æ™¯é¡è‰²" -#: app/core/core-enums.c:93 +#: ../app/core/core-enums.c:93 msgid "BG color fill" msgstr "填上背景é¡è‰²" -#: app/core/core-enums.c:94 +#: ../app/core/core-enums.c:94 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 "Floyd-Steinberg æ–¹å¼æ“¬è‰² (正常)" +msgstr "Floyd-Steinberg (正常)" -#: app/core/core-enums.c:221 -#, fuzzy +#: ../app/core/core-enums.c:221 msgid "Floyd-Steinberg (reduced color bleeding)" -msgstr "Floyd-Steinberg æ–¹å¼æ“¬è‰² (減少化開色彩)" +msgstr "Floyd-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 "使用最é©åˆç¶²é çš„色盤" -#: app/core/core-enums.c:253 +#: ../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 +#: ../app/core/core-enums.c:329 msgid "Foreground color" msgstr "å‰æ™¯é¡è‰²" -#: app/core/core-enums.c:330 +#: ../app/core/core-enums.c:330 msgid "Background color" msgstr "背景é¡è‰²" -#: app/core/core-enums.c:331 +#: ../app/core/core-enums.c:331 msgid "White" -msgstr "白" +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 "é€æ˜Žåº¦" +msgstr "é€æ˜Ž" -#: app/core/core-enums.c:333 app/core/core-enums.c:470 -#: app/pdb/internal_procs.c:179 +#: ../app/core/core-enums.c:333 ../app/core/core-enums.c:470 +#: ../app/pdb/internal_procs.c:179 msgid "Pattern" msgstr "圖樣" -#: app/core/core-enums.c:371 +#: ../app/core/core-enums.c:371 msgid "Bi-linear" msgstr "雙線性" -#: app/core/core-enums.c:372 +#: ../app/core/core-enums.c:372 msgid "Radial" msgstr "放射狀" -#: app/core/core-enums.c:373 app/core/core-enums.c:530 -#: app/core/core-enums.c:635 +#: ../app/core/core-enums.c:373 ../app/core/core-enums.c:530 +#: ../app/core/core-enums.c:635 msgid "Square" msgstr "方形" -#: app/core/core-enums.c:374 +#: ../app/core/core-enums.c:374 msgid "Conical (sym)" msgstr "圓éŒå½¢(å°ç¨±)" -#: app/core/core-enums.c:375 +#: ../app/core/core-enums.c:375 msgid "Conical (asym)" msgstr "圓éŒå½¢(ä¸å°ç¨±)" -#: app/core/core-enums.c:376 +#: ../app/core/core-enums.c:376 msgid "Shaped (angular)" msgstr "ä¾å½¢ç‹€æ“´å±•(è±è§’)" -#: app/core/core-enums.c:377 +#: ../app/core/core-enums.c:377 msgid "Shaped (spherical)" msgstr "ä¾å½¢ç‹€æ“´å±•(çƒç‹€)" -#: app/core/core-enums.c:378 +#: ../app/core/core-enums.c:378 msgid "Shaped (dimpled)" msgstr "ä¾å½¢ç‹€æ“´å±•(酒渦)" -#: app/core/core-enums.c:379 +#: ../app/core/core-enums.c:379 msgid "Spiral (cw)" msgstr "螺旋(順時é‡)" -#: app/core/core-enums.c:380 +#: ../app/core/core-enums.c:380 msgid "Spiral (ccw)" msgstr "螺旋(順時é‡)" -#: app/core/core-enums.c:410 +#: ../app/core/core-enums.c:410 msgid "Intersections (dots)" msgstr "交點(圓點)" -#: app/core/core-enums.c:411 +#: ../app/core/core-enums.c:411 msgid "Intersections (crosshairs)" msgstr "交點(åå­—)" -#: app/core/core-enums.c:412 +#: ../app/core/core-enums.c:412 msgid "Dashed" msgstr "虛線" -#: app/core/core-enums.c:413 +#: ../app/core/core-enums.c:413 msgid "Double dashed" msgstr "é›™é‡è™›ç·š" -#: app/core/core-enums.c:414 app/core/core-enums.c:469 +#: ../app/core/core-enums.c:414 ../app/core/core-enums.c:469 msgid "Solid" msgstr "實線" -#: app/core/core-enums.c:441 +#: ../app/core/core-enums.c:441 msgid "Stroke line" -msgstr "" +msgstr "æé‚Šç·šæ¢" -#: app/core/core-enums.c:442 +#: ../app/core/core-enums.c:442 msgid "Stroke with a paint tool" msgstr "使用繪畫工具æé‚Š" -#: app/core/core-enums.c:498 +#: ../app/core/core-enums.c:498 msgid "Miter" -msgstr "" +msgstr "方角" -#: app/core/core-enums.c:499 app/core/core-enums.c:529 +#: ../app/core/core-enums.c:499 ../app/core/core-enums.c:529 msgid "Round" -msgstr "" +msgstr "圓形" -#: app/core/core-enums.c:500 +#: ../app/core/core-enums.c:500 msgid "Bevel" msgstr "斜邊" -#: app/core/core-enums.c:528 +#: ../app/core/core-enums.c:528 msgid "Butt" -msgstr "" +msgstr "ç„¡é ­" -#: app/core/core-enums.c:566 app/dialogs/preferences-dialog.c:1804 +#: ../app/core/core-enums.c:566 ../app/dialogs/preferences-dialog.c:1804 msgid "Custom" msgstr "自é¸" -#: app/core/core-enums.c:567 +#: ../app/core/core-enums.c:567 msgid "Line" msgstr "ç›´ç·š" -#: app/core/core-enums.c:568 +#: ../app/core/core-enums.c:568 msgid "Long dashes" msgstr "長虛線" -#: app/core/core-enums.c:569 +#: ../app/core/core-enums.c:569 msgid "Medium dashes" msgstr "中虛線" -#: app/core/core-enums.c:570 +#: ../app/core/core-enums.c:570 msgid "Short dashes" msgstr "短虛線" -#: app/core/core-enums.c:571 +#: ../app/core/core-enums.c:571 msgid "Sparse dots" -msgstr "" +msgstr "稀ç–點線" -#: app/core/core-enums.c:572 +#: ../app/core/core-enums.c:572 msgid "Normal dots" -msgstr "" +msgstr "一般密度點線" -#: app/core/core-enums.c:573 +#: ../app/core/core-enums.c:573 msgid "Dense dots" -msgstr "" +msgstr "密集點線" -#: app/core/core-enums.c:574 +#: ../app/core/core-enums.c:574 msgid "Stipples" -msgstr "" +msgstr "點畫" -#: app/core/core-enums.c:575 +#: ../app/core/core-enums.c:575 msgid "Dash dot..." msgstr "線點..." -#: app/core/core-enums.c:576 +#: ../app/core/core-enums.c:576 msgid "Dash dot dot..." msgstr "線點點..." -#: app/core/core-enums.c:604 +#: ../app/core/core-enums.c:604 msgid "Stock ID" msgstr "" -#: app/core/core-enums.c:605 +#: ../app/core/core-enums.c:605 msgid "Inline pixbuf" msgstr "" -#: app/core/core-enums.c:606 +#: ../app/core/core-enums.c:606 msgid "Image file" msgstr "å½±åƒæª”" -#: app/core/core-enums.c:634 +#: ../app/core/core-enums.c:634 msgid "Circle" msgstr "" -#: app/core/core-enums.c:636 +#: ../app/core/core-enums.c:636 msgid "Diamond" -msgstr "" +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 +#: ../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 +#: ../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 +#: ../app/core/core-enums.c:767 msgid "Sawtooth wave" msgstr "鋸齒形波浪紋" -#: app/core/core-enums.c:768 +#: ../app/core/core-enums.c:768 msgid "Triangular wave" msgstr "三角形波浪紋" -#: app/core/core-enums.c:830 +#: ../app/core/core-enums.c:830 msgid "No thumbnails" msgstr "ä¸æ供縮圖" -#: app/core/core-enums.c:831 +#: ../app/core/core-enums.c:831 msgid "Normal (128x128)" msgstr "正常 (128×128)" -#: app/core/core-enums.c:832 +#: ../app/core/core-enums.c:832 msgid "Large (256x256)" msgstr "大型 (256×256)" -#: app/core/core-enums.c:859 +#: ../app/core/core-enums.c:859 msgid "Forward (traditional)" msgstr "" -#: app/core/core-enums.c:860 +#: ../app/core/core-enums.c:860 msgid "Backward (corrective)" msgstr "" -#: app/core/core-enums.c:1029 +#: ../app/core/core-enums.c: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 -#, 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 "å¯ç¹ªç‰©ä»¶ç¨‹åº" +msgstr "" -#: app/core/core-enums.c:1043 app/core/core-enums.c:1073 +#: ../app/core/core-enums.c:1045 ../app/core/core-enums.c:1075 msgid "Selection mask" msgstr "é¸æ“‡å€åŸŸé®ç½©" -#: app/core/core-enums.c:1044 app/core/core-enums.c:1076 +#: ../app/core/core-enums.c:1046 ../app/core/core-enums.c:1078 msgid "Item visibility" msgstr "" -#: app/core/core-enums.c:1045 +#: ../app/core/core-enums.c:1047 msgid "Linked item" msgstr "" -#: app/core/core-enums.c:1046 +#: ../app/core/core-enums.c:1048 msgid "Item properties" msgstr "物件屬性" -#: app/core/core-enums.c:1047 app/core/core-enums.c:1075 +#: ../app/core/core-enums.c:1049 ../app/core/core-enums.c:1077 msgid "Move item" msgstr "移動物件" -#: app/core/core-enums.c:1048 +#: ../app/core/core-enums.c:1050 msgid "Scale item" msgstr "縮放物件" -#: app/core/core-enums.c:1049 +#: ../app/core/core-enums.c:1051 msgid "Resize item" msgstr "調整物件尺寸" -#: app/core/core-enums.c:1050 app/core/core-enums.c:1080 +#: ../app/core/core-enums.c:1052 ../app/core/core-enums.c:1082 msgid "Add layer mask" msgstr "新增圖層é®ç½©" -#: app/core/core-enums.c:1051 +#: ../app/core/core-enums.c:1053 msgid "Apply layer mask" msgstr "套用圖層é®ç½©" -#: app/core/core-enums.c:1052 +#: ../app/core/core-enums.c:1054 msgid "Floating selection to layer" msgstr "浮動é¸æ“‡å€åŸŸè½‰æ›ç‚ºåœ–層" -#: app/core/core-enums.c:1053 +#: ../app/core/core-enums.c:1055 msgid "Float selection" msgstr "浮動é¸æ“‡å€åŸŸ" -#: app/core/core-enums.c:1054 +#: ../app/core/core-enums.c:1056 msgid "Anchor floating selection" msgstr "將浮動é¸æ“‡å€åŸŸçš„ä½ç½®å›ºå®š" -#: app/core/core-enums.c:1055 +#: ../app/core/core-enums.c:1057 msgid "Remove floating selection" msgstr "移除浮動é¸æ“‡å€åŸŸ" -#: app/core/core-enums.c:1056 app/core/gimp-edit.c:267 +#: ../app/core/core-enums.c:1058 ../app/core/gimp-edit.c:267 msgid "Paste" msgstr "貼上" -#: app/core/core-enums.c:1057 app/core/gimp-edit.c:418 +#: ../app/core/core-enums.c:1059 ../app/core/gimp-edit.c:418 msgid "Cut" msgstr "剪下" -#: app/core/core-enums.c:1058 app/core/core-enums.c:1086 -#: app/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 +#: ../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 "" +msgstr "設定圖層模å¼" -#: app/core/core-enums.c:1084 +#: ../app/core/core-enums.c:1086 msgid "Set layer opacity" msgstr "指定圖層é€æ˜Žåº¦" -#: app/core/core-enums.c:1085 +#: ../app/core/core-enums.c:1087 msgid "Set preserve trans" msgstr "指定ä¿ç•™é€æ˜Žåº¦" -#: app/core/core-enums.c:1087 +#: ../app/core/core-enums.c:1089 msgid "Text modified" msgstr "åªåœ¨ä¿®æ”¹å¾Œ" -#: app/core/core-enums.c:1088 +#: ../app/core/core-enums.c:1090 msgid "New channel" msgstr "新增色版" -#: app/core/core-enums.c:1090 +#: ../app/core/core-enums.c:1092 msgid "Reposition channel" msgstr "é‡æ–°æ”¾ç½®è‰²ç‰ˆ" -#: app/core/core-enums.c:1091 +#: ../app/core/core-enums.c:1093 msgid "Channel color" msgstr "修改色版é¡è‰²" -#: app/core/core-enums.c:1092 +#: ../app/core/core-enums.c:1094 msgid "New vectors" msgstr "新增å‘é‡" -#: app/core/core-enums.c:1093 +#: ../app/core/core-enums.c:1095 msgid "Delete vectors" msgstr "刪除å‘é‡" -#: app/core/core-enums.c:1094 +#: ../app/core/core-enums.c:1096 msgid "Vectors mod" msgstr "" -#: app/core/core-enums.c:1095 +#: ../app/core/core-enums.c:1097 msgid "Reposition vectors" msgstr "é‡æ–°æ”¾ç½®å‘é‡" -#: app/core/core-enums.c:1096 +#: ../app/core/core-enums.c:1098 msgid "FS to layer" msgstr "浮動é¸æ“‡å€åŸŸè½‰ç‚ºåœ–層" -#: app/core/core-enums.c:1097 +#: ../app/core/core-enums.c:1099 msgid "FS rigor" msgstr "浮動é¸æ“‡å€åŸŸé™„上圖層" -#: app/core/core-enums.c:1098 +#: ../app/core/core-enums.c:1100 msgid "FS relax" msgstr "浮動é¸æ“‡å€åŸŸè„«é›¢åœ–層" -#: app/core/core-enums.c:1101 app/paint/gimpink.c:102 -#: app/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 "" -#: app/core/gimp-gradients.c:80 +#: ../app/core/gimp-gradients.c:80 msgid "FG to BG (HSV clockwise hue)" msgstr "" -#: app/core/gimp-gradients.c:85 +#: ../app/core/gimp-gradients.c:85 msgid "FG to Transparent" msgstr "å‰æ™¯è‰²è‡³é€æ˜Ž" -#: app/core/gimp-gui.c:153 +#: ../app/core/gimp-gui.c:153 msgid "GIMP" msgstr "GIMP" #. register all internal procedures -#: app/core/gimp.c:638 +#: ../app/core/gimp.c:638 msgid "Procedural Database" msgstr "程åºè³‡æ–™åº«" -#: app/core/gimp.c:641 +#: ../app/core/gimp.c:641 msgid "Plug-In Environment" msgstr "增效模組環境" #. initialize the global parasite table -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Looking for data files" msgstr "正在尋找資料檔" -#: app/core/gimp.c:852 +#: ../app/core/gimp.c:852 msgid "Parasites" -msgstr "附帶物件" +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 "無法從‘%2$sâ€™è®€å– %1$d ä½å…ƒçµ„:%3$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 "åˆ†æž GIMP 筆刷檔‘%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 "åˆ†æž GIMP 筆刷檔‘%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 "åˆ†æž GIMP 筆刷檔‘%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 "åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šè‰²å½©æ·±åº¦æ•¸ç›® %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 "åˆ†æž GIMP 筆刷檔‘%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 "åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šæª”案似乎被截短了。" +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 字串。" +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" "GIMP brushes must be GRAY or RGBA." msgstr "" -"åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šä¸æ”¯æ´ç­†åˆ·è‰²å½©æ·±åº¦ %d\n" +"分æžç­†åˆ·æª” ‘%s’ 時出ç¾åš´é‡éŒ¯èª¤ï¼šä¸æ”¯æ´ç­†åˆ·è‰²å½©æ·±åº¦ %d\n" "GIMP 筆刷必須使用 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 "åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šå®ƒä¸æ˜¯ GIMP 筆刷檔案" +msgstr "分æžç­†åˆ·æª” ‘%s’ 時出ç¾åš´é‡éŒ¯èª¤ï¼šå®ƒä¸æ˜¯ GIMP 筆刷檔案" -#: 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 "åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šGIMP 筆刷版本ä¸æ˜Ž" +msgstr "分æžç­†åˆ·æª” ‘%s’ 時出ç¾åš´é‡éŒ¯èª¤ï¼šGIMP 筆刷版本ä¸æ˜Ž" -#: app/core/gimpbrushgenerated.c:669 +#: ../app/core/gimpbrushgenerated.c:669 #, c-format msgid "Fatal parse error in brush file '%s': Unknown GIMP brush shape." -msgstr "åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šGIMP 筆刷版本ä¸æ˜Ž" +msgstr "分æžç­†åˆ·æª” ‘%s’ 時出ç¾åš´é‡éŒ¯èª¤ï¼šGIMP 筆刷版本ä¸æ˜Ž" -#: app/core/gimpbrushgenerated.c:750 +#: ../app/core/gimpbrushgenerated.c:750 #, c-format msgid "Error while reading brush file '%s': %s" msgstr "讀å–筆刷檔案‘%s’時發生錯誤:%s" -#: app/core/gimpbrushgenerated.c:752 +#: ../app/core/gimpbrushgenerated.c:752 msgid "File is truncated" msgstr "檔案被截短" -#: app/core/gimpbrushpipe.c:369 app/core/gimpbrushpipe.c:389 -#: app/core/gimpbrushpipe.c:479 +#: ../app/core/gimpbrushpipe.c:369 ../app/core/gimpbrushpipe.c:389 +#: ../app/core/gimpbrushpipe.c:479 #, c-format msgid "Fatal parse error in brush file '%s': File is corrupt." -msgstr "åˆ†æž GIMP 筆刷檔‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šæª”案內容已經æ壞。" +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 +#: ../app/core/gimpchannel.c:288 msgid "Stroke Channel" msgstr "" -#: app/core/gimpchannel.c:310 +#: ../app/core/gimpchannel.c:310 msgid "Feather Channel" msgstr "" -#: app/core/gimpchannel.c:311 +#: ../app/core/gimpchannel.c:311 msgid "Sharpen Channel" msgstr "" -#: app/core/gimpchannel.c:312 +#: ../app/core/gimpchannel.c:312 msgid "Clear Channel" msgstr "清除色版" -#: app/core/gimpchannel.c:313 +#: ../app/core/gimpchannel.c:313 msgid "Fill Channel" msgstr "" -#: app/core/gimpchannel.c:314 +#: ../app/core/gimpchannel.c:314 msgid "Invert Channel" msgstr "" -#: app/core/gimpchannel.c:315 +#: ../app/core/gimpchannel.c:315 msgid "Border Channel" msgstr "" -#: app/core/gimpchannel.c:316 +#: ../app/core/gimpchannel.c:316 msgid "Grow Channel" msgstr "" -#: app/core/gimpchannel.c:317 +#: ../app/core/gimpchannel.c:317 msgid "Shrink Channel" msgstr "" -#: app/core/gimpchannel.c:631 +#: ../app/core/gimpchannel.c:631 msgid "Cannot stroke empty channel." msgstr "" -#: app/core/gimpchannel.c:1527 +#: ../app/core/gimpchannel.c:1527 msgid "Set Channel Color" msgstr "" -#: app/core/gimpchannel.c:1575 +#: ../app/core/gimpchannel.c:1575 msgid "Set Channel Opacity" msgstr "" -#: app/core/gimpchannel.c:1644 app/core/gimpselection.c:563 +#: ../app/core/gimpchannel.c:1644 ../app/core/gimpselection.c:563 msgid "Selection Mask" msgstr "é¸æ“‡å€åŸŸé®ç½©" -#: app/core/gimpchannel-select.c:56 app/tools/gimprectselecttool.c:96 +#: ../app/core/gimpchannel-select.c:56 ../app/tools/gimprectselecttool.c:96 msgid "Rect Select" msgstr "é¸æ“‡çŸ©å½¢" -#: app/core/gimpchannel-select.c:107 app/tools/gimpellipseselecttool.c:71 +#: ../app/core/gimpchannel-select.c:107 +#: ../app/tools/gimpellipseselecttool.c:71 msgid "Ellipse Select" msgstr "é¸æ“‡æ©¢åœ“" -#: app/core/gimpchannel-select.c:373 +#: ../app/core/gimpchannel-select.c:373 msgid "Alpha to Selection" msgstr "é€æ˜Žå€åŸŸè½‰ç‚ºé¸æ“‡å€åŸŸ" -#: app/core/gimpchannel-select.c:414 +#: ../app/core/gimpchannel-select.c:414 #, c-format msgid "%s Channel to Selection" msgstr "%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 +#: ../app/core/gimpdatafactory.c:291 ../app/core/gimpdatafactory.c:511 #, c-format msgid "" "Warning: Failed to save data:\n" @@ -4781,17 +4726,17 @@ "\n" "%s" -#: app/core/gimpdatafactory.c:411 app/core/gimpdatafactory.c:414 -#: app/core/gimpitem.c:272 app/core/gimpitem.c:275 +#: ../app/core/gimpdatafactory.c:411 ../app/core/gimpdatafactory.c:414 +#: ../app/core/gimpitem.c:272 ../app/core/gimpitem.c:275 msgid "copy" msgstr "複製本" -#: app/core/gimpdatafactory.c:423 app/core/gimpitem.c:284 +#: ../app/core/gimpdatafactory.c:423 ../app/core/gimpitem.c:284 #, c-format msgid "%s copy" msgstr "%s 複製本" -#: app/core/gimpdatafactory.c:614 +#: ../app/core/gimpdatafactory.c:614 #, c-format msgid "" "Warning: Failed to load data:\n" @@ -4802,499 +4747,495 @@ "\n" "%s" -#: app/core/gimpdrawable-blend.c:238 app/tools/gimpblendtool.c:101 +#: ../app/core/gimpdrawable-blend.c:238 ../app/tools/gimpblendtool.c:101 msgid "Blend" msgstr "混色" -#: app/core/gimpdrawable-bucket-fill.c:85 app/paint/gimpclone.c:183 +#: ../app/core/gimpdrawable-bucket-fill.c:85 ../app/paint/gimpclone.c:183 msgid "No patterns available for this operation." msgstr "沒有å¯ä¾›æœ¬ç¨‹åºä½¿ç”¨çš„圖樣。" -#: app/core/gimpdrawable-bucket-fill.c:272 app/tools/gimpbucketfilltool.c:91 +#: ../app/core/gimpdrawable-bucket-fill.c:272 +#: ../app/tools/gimpbucketfilltool.c:91 msgid "Bucket Fill" msgstr "填色" -#: app/core/gimpdrawable-desaturate.c:98 +#: ../app/core/gimpdrawable-desaturate.c:98 msgid "Desaturate" msgstr "去彩度" -#: app/core/gimpdrawable-equalize.c:80 +#: ../app/core/gimpdrawable-equalize.c:80 msgid "Equalize" msgstr "亮度等化" -#: app/core/gimpdrawable-invert.c:61 +#: ../app/core/gimpdrawable-invert.c:61 msgid "Invert" msgstr "å相" -#: app/core/gimpdrawable-levels.c:112 app/core/gimpdrawable-levels.c:162 -#: app/tools/gimplevelstool.c:160 +#: ../app/core/gimpdrawable-levels.c:112 ../app/core/gimpdrawable-levels.c:162 +#: ../app/tools/gimplevelstool.c:160 msgid "Levels" msgstr "色階" -#: app/core/gimpdrawable-offset.c:316 +#: ../app/core/gimpdrawable-offset.c:316 msgid "Offset Drawable" msgstr "" -#: app/core/gimpdrawable-stroke.c:319 +#: ../app/core/gimpdrawable-stroke.c:319 msgid "Render Stroke" msgstr "" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:928 app/tools/gimpfliptool.c:82 +#: ../app/core/gimpdrawable-transform.c:928 ../app/tools/gimpfliptool.c:82 msgid "Flip" msgstr "翻轉" #. Start a transform undo group -#: app/core/gimpdrawable-transform.c:1009 app/tools/gimprotatetool.c:97 +#: ../app/core/gimpdrawable-transform.c:1009 ../app/tools/gimprotatetool.c:97 msgid "Rotate" msgstr "旋轉" -#: app/core/gimpdrawable-transform.c:1119 app/core/gimplayer.c:257 +#: ../app/core/gimpdrawable-transform.c:1119 ../app/core/gimplayer.c:257 msgid "Transform Layer" msgstr "變æ›åœ–層" -#: app/core/gimpdrawable-transform.c:1134 +#: ../app/core/gimpdrawable-transform.c:1134 msgid "Transformation" msgstr "變æ›" -#: app/core/gimpenvirontable.c:285 +#: ../app/core/gimpenvirontable.c:285 #, c-format msgid "Empty variable name in environment file %s" msgstr "環境變數檔 %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 "åˆ†æž GIMP 漸層檔案‘%s'時出ç¾åš´é‡éŒ¯èª¤ï¼šå®ƒä¸æ˜¯ GIMP 漸層檔案。" +msgstr "分æžæ¼¸å±¤æª”案 ‘%s’ 時出ç¾åš´é‡éŒ¯èª¤ï¼šå®ƒä¸æ˜¯ GIMP 漸層檔案。" -#: 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 "åˆ†æž GIMP 漸層檔案‘%s'時出ç¾åš´é‡éŒ¯èª¤ï¼šæª”案內容已æ壞。" +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 "" -#: app/core/gimpgradient-load.c:281 +#: ../app/core/gimpgradient-load.c:281 #, c-format msgid "No linear gradients found in '%s'" msgstr "在‘%s’中找ä¸åˆ°ä»»ä½•ç·šæ€§çš„漸層" -#: app/core/gimpgradient-load.c:291 +#: ../app/core/gimpgradient-load.c:291 #, c-format msgid "Failed to import gradients from '%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 "å°‡é¡è‰²åŠ å…¥è‰²ç¥¨" -#: 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 步驟)..." -#: app/core/gimpimage-crop.c:123 +#: ../app/core/gimpimage-crop.c:123 msgid "Crop Image" msgstr "è£å‰ªå½±åƒ" -#: app/core/gimpimage-crop.c:126 app/core/gimpimage-resize.c:67 +#: ../app/core/gimpimage-crop.c:126 ../app/core/gimpimage-resize.c:67 msgid "Resize Image" msgstr "調整影åƒå°ºå¯¸" -#: app/core/gimpimage-guides.c:53 +#: ../app/core/gimpimage-guides.c:53 msgid "Add Horizontal Guide" msgstr "新增水平åƒè€ƒç·š" -#: app/core/gimpimage-guides.c:80 +#: ../app/core/gimpimage-guides.c:80 msgid "Add Vertical Guide" msgstr "新增垂直åƒè€ƒç·š" -#: app/core/gimpimage-guides.c:143 app/tools/gimpmovetool.c:570 +#: ../app/core/gimpimage-guides.c:143 ../app/tools/gimpmovetool.c:570 msgid "Remove Guide" msgstr "移除åƒè€ƒç·š" -#: app/core/gimpimage-guides.c:167 +#: ../app/core/gimpimage-guides.c:167 msgid "Move Guide" msgstr "移動åƒè€ƒç·š" -#: app/core/gimpimage-merge.c:91 +#: ../app/core/gimpimage-merge.c:91 msgid "Merge Visible Layers" msgstr "åˆä½µå¯è¦‹åœ–層" -#: app/core/gimpimage-merge.c:107 +#: ../app/core/gimpimage-merge.c:107 msgid "Not enough visible layers for a merge. There must be at least two." msgstr "å¯è¦‹åœ–層的數目ä¸è¶³ï¼Œç„¡æ³•åˆä½µã€‚最少需è¦å…©å±¤ã€‚" -#: app/core/gimpimage-merge.c:142 +#: ../app/core/gimpimage-merge.c:142 msgid "Flatten Image" msgstr "å½±åƒå¹³é¢åŒ–" -#: app/core/gimpimage-merge.c:193 +#: ../app/core/gimpimage-merge.c:193 msgid "Merge Down" msgstr "å‘下åˆä½µ" -#: app/core/gimpimage-merge.c:202 +#: ../app/core/gimpimage-merge.c:202 msgid "There are not enough visible layers for a merge down." msgstr "å¯è¦‹åœ–層的數目ä¸è¶³ï¼Œç„¡æ³•å‘下åˆä½µã€‚" -#: app/core/gimpimage-merge.c:543 +#: ../app/core/gimpimage-merge.c:543 msgid "Merge Visible Paths" msgstr "åˆä½µå¯è¦‹è·¯å¾‘" -#: app/core/gimpimage-merge.c:580 +#: ../app/core/gimpimage-merge.c:580 msgid "Not enough visible paths for a merge. There must be at least two." msgstr "å¯è¦‹è·¯å¾‘的數目ä¸è¶³ï¼Œç„¡æ³•åˆä½µã€‚最少需è¦å…©æ¢ã€‚" -#: app/core/gimpimage-qmask.c:67 -#, 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:1359 msgid "Change Image Resolution" msgstr "更改影åƒè§£æžåº¦" -#: app/core/gimpimage.c:1397 +#: ../app/core/gimpimage.c:1399 msgid "Change Image Unit" msgstr "更改影åƒçš„é‡åº¦å–®ä½" -#: app/core/gimpimage.c:2177 +#: ../app/core/gimpimage.c:2179 msgid "Attach Parasite to Image" -msgstr "在影åƒä¸­åŠ å…¥é™„帶物件" +msgstr "在影åƒä¸­åŠ å…¥é™„帶資訊" -#: app/core/gimpimage.c:2210 +#: ../app/core/gimpimage.c:2212 msgid "Remove Parasite from Image" -msgstr "從影åƒä¸­ç§»é™¤é™„帶物件" +msgstr "從影åƒä¸­ç§»é™¤é™„帶資訊" -#: app/core/gimpimage.c:2678 +#: ../app/core/gimpimage.c:2680 msgid "Add Layer" msgstr "新增圖層" -#: app/core/gimpimage.c:2745 +#: ../app/core/gimpimage.c:2744 ../app/core/gimpimage.c:2757 msgid "Remove Layer" msgstr "移除圖層" -#: app/core/gimpimage.c:2816 +#: ../app/core/gimpimage.c:2831 msgid "Layer cannot be raised higher." msgstr "圖層無法å†å‘上移。" -#: app/core/gimpimage.c:2822 app/core/gimpimage.c:2872 +#: ../app/core/gimpimage.c:2837 ../app/core/gimpimage.c:2887 msgid "Cannot raise a layer without alpha." msgstr "ä¸å¯æå‡æ²’有é€æ˜Žåº¦çš„圖層。" -#: app/core/gimpimage.c:2827 +#: ../app/core/gimpimage.c:2842 msgid "Raise Layer" msgstr "上移圖層" -#: app/core/gimpimage.c:2844 +#: ../app/core/gimpimage.c:2859 msgid "Layer cannot be lowered more." msgstr "圖層無法å†å‘下移。" -#: app/core/gimpimage.c:2849 +#: ../app/core/gimpimage.c:2864 msgid "Lower Layer" msgstr "下移圖層" -#: app/core/gimpimage.c:2866 +#: ../app/core/gimpimage.c:2881 msgid "Layer is already on top." msgstr "圖層已經到é”最頂層。" -#: app/core/gimpimage.c:2877 +#: ../app/core/gimpimage.c:2892 msgid "Raise Layer to Top" msgstr "圖層æå‡è‡³é ‚層" -#: app/core/gimpimage.c:2897 +#: ../app/core/gimpimage.c:2912 msgid "Layer is already on the bottom." msgstr "圖層已經在最底層。" -#: app/core/gimpimage.c:2902 +#: ../app/core/gimpimage.c:2917 msgid "Lower Layer to Bottom" msgstr "圖層下é™è‡³åº•å±¤" -#: app/core/gimpimage.c:2941 +#: ../app/core/gimpimage.c:2956 #, c-format msgid "Layer '%s' has no alpha. Layer was placed above it." -msgstr "圖層‘%s’沒有é€æ˜Žåº¦ã€‚其它圖層會放在該圖層之上。" +msgstr "圖層 ‘%s’ 沒有é€æ˜Žåº¦ã€‚其它圖層會放在該圖層之上。" -#: app/core/gimpimage.c:2993 +#: ../app/core/gimpimage.c:3008 msgid "Add Channel" msgstr "新增色版" -#: app/core/gimpimage.c:3038 +#: ../app/core/gimpimage.c:3052 ../app/core/gimpimage.c:3063 msgid "Remove Channel" msgstr "移除色版" -#: app/core/gimpimage.c:3082 +#: ../app/core/gimpimage.c:3110 msgid "Channel cannot be raised higher." msgstr "色版無法å†å‘上移。" -#: app/core/gimpimage.c:3087 +#: ../app/core/gimpimage.c:3115 msgid "Raise Channel" msgstr "上移色版" -#: app/core/gimpimage.c:3104 +#: ../app/core/gimpimage.c:3132 msgid "Channel is already on top." msgstr "色版已經到é”最頂層。" -#: app/core/gimpimage.c:3109 +#: ../app/core/gimpimage.c:3137 msgid "Raise Channel to Top" msgstr "" -#: app/core/gimpimage.c:3126 +#: ../app/core/gimpimage.c:3154 msgid "Channel cannot be lowered more." msgstr "色版無法å†å‘下移。" -#: app/core/gimpimage.c:3131 +#: ../app/core/gimpimage.c:3159 msgid "Lower Channel" msgstr "下移色版" -#: app/core/gimpimage.c:3151 +#: ../app/core/gimpimage.c:3179 msgid "Channel is already on the bottom." msgstr "色版已經在最底層。" -#: app/core/gimpimage.c:3156 +#: ../app/core/gimpimage.c:3184 msgid "Lower Channel to Bottom" msgstr "" -#: app/core/gimpimage.c:3231 +#: ../app/core/gimpimage.c:3259 msgid "Add Path" msgstr "新增路徑" -#: app/core/gimpimage.c:3276 +#: ../app/core/gimpimage.c:3304 msgid "Remove Path" msgstr "移除路徑" -#: app/core/gimpimage.c:3320 +#: ../app/core/gimpimage.c:3348 msgid "Path cannot be raised higher." msgstr "路徑無法å†å‘上移。" -#: app/core/gimpimage.c:3325 +#: ../app/core/gimpimage.c:3353 msgid "Raise Path" msgstr "" -#: app/core/gimpimage.c:3342 +#: ../app/core/gimpimage.c:3370 msgid "Path is already on top." msgstr "路徑已經到é”最頂層。" -#: app/core/gimpimage.c:3347 +#: ../app/core/gimpimage.c:3375 msgid "Raise Path to Top" msgstr "" -#: app/core/gimpimage.c:3364 +#: ../app/core/gimpimage.c:3392 msgid "Path cannot be lowered more." msgstr "路徑無法å†å‘下移。" -#: app/core/gimpimage.c:3369 +#: ../app/core/gimpimage.c:3397 msgid "Lower Path" msgstr "" -#: app/core/gimpimage.c:3389 +#: ../app/core/gimpimage.c:3417 msgid "Path is already on the bottom." msgstr "路徑已經在最底層。" -#: app/core/gimpimage.c:3394 +#: ../app/core/gimpimage.c:3422 msgid "Lower Path to Bottom" msgstr "" -#: 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×%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:685 #, 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 "連上附帶物件" +msgstr "連上附帶資訊" -#: app/core/gimpitem.c:1101 +#: ../app/core/gimpitem.c:1101 msgid "Attach Parasite to Item" msgstr "" -#: app/core/gimpitem.c:1140 app/core/gimpitem.c:1147 +#: ../app/core/gimpitem.c:1140 ../app/core/gimpitem.c:1147 msgid "Remove Parasite from Item" msgstr "" -#: app/core/gimplayer-floating-sel.c:98 +#: ../app/core/gimplayer-floating-sel.c:98 msgid "Remove Floating Selection" msgstr "移除浮動é¸æ“‡å€åŸŸ" -#: app/core/gimplayer-floating-sel.c:129 +#: ../app/core/gimplayer-floating-sel.c:129 msgid "Cannot anchor this layer because it is not a floating selection." msgstr "無法固定這個圖層,因為它ä¸æ˜¯æµ®å‹•çš„é¸æ“‡å€åŸŸã€‚" -#: app/core/gimplayer-floating-sel.c:136 +#: ../app/core/gimplayer-floating-sel.c:136 msgid "Anchor Floating Selection" msgstr "將浮動é¸æ“‡å€åŸŸçš„ä½ç½®å›ºå®š" -#: app/core/gimplayer-floating-sel.c:209 +#: ../app/core/gimplayer-floating-sel.c:209 msgid "" "Cannot create a new layer from the floating selection because it belongs to " "a layer mask or channel." msgstr "無法從浮動é¸æ“‡å€åŸŸç”¢ç”Ÿæ–°çš„圖層,因為它屬於å¦ä¸€å€‹åœ–層é®ç½©æˆ–色版。" -#: app/core/gimplayer-floating-sel.c:215 +#: ../app/core/gimplayer-floating-sel.c:215 msgid "Floating Selection to Layer" msgstr "浮動é¸æ“‡å€åŸŸè½‰æ›ç‚ºåœ–層" -#: app/core/gimplayer.c:250 app/pdb/internal_procs.c:152 +#: ../app/core/gimplayer.c:250 ../app/pdb/internal_procs.c:152 msgid "Layer" msgstr "圖層" -#: app/core/gimplayer.c:251 +#: ../app/core/gimplayer.c:251 msgid "Rename Layer" msgstr "更改圖層å稱" -#: app/core/gimplayer.c:252 app/pdb/layer_cmds.c:669 app/pdb/layer_cmds.c:742 +#: ../app/core/gimplayer.c:252 ../app/pdb/layer_cmds.c:669 +#: ../app/pdb/layer_cmds.c:742 msgid "Move Layer" msgstr "移動圖層" -#: app/core/gimplayer.c:254 +#: ../app/core/gimplayer.c:254 msgid "Resize Layer" msgstr "調整圖層尺寸" -#: app/core/gimplayer.c:255 +#: ../app/core/gimplayer.c:255 msgid "Flip Layer" msgstr "翻轉圖層" -#: app/core/gimplayer.c:256 +#: ../app/core/gimplayer.c:256 msgid "Rotate Layer" msgstr "旋轉圖層" -#: app/core/gimplayer.c:339 app/core/gimplayer.c:1109 -#: app/core/gimplayermask.c:236 +#: ../app/core/gimplayer.c:339 ../app/core/gimplayer.c:1109 +#: ../app/core/gimplayermask.c:236 #, c-format msgid "%s mask" msgstr "%s é®ç½©" -#: app/core/gimplayer.c:385 +#: ../app/core/gimplayer.c:385 #, c-format msgid "" "Floating Selection\n" @@ -5303,54 +5244,54 @@ "浮動é¸æ“‡å€åŸŸ\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 "" -#: app/core/gimppalette.c:375 +#: ../app/core/gimppalette.c:375 #, c-format msgid "" "Fatal parse error in palette file '%s': Missing magic header.\n" @@ -5359,23 +5300,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 " @@ -5383,39 +5324,39 @@ msgstr "載入色盤‘%s’:第 %d 行的欄ä½æ•¸ç›®ä¸æ­£ç¢ºï¼Œæ”¹ç”¨é è¨­å€¼ã€‚" #. 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 è¡Œéºæ¼äº†ç´…色部份。" -#: 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 è¡Œéºæ¼äº†ç¶ è‰²éƒ¨ä»½ã€‚" -#: 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 è¡Œéºæ¼äº†è—色部份。" -#: 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" @@ -5424,132 +5365,132 @@ "分æžåœ–樣檔案‘%s’時出ç¾åš´é‡éŒ¯èª¤ï¼šä¸æ”¯æ´è‰²å½©æ·±åº¦ %d。\n" "GIMP 的圖樣必須使用ç°éšŽæˆ– 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 +#: ../app/core/gimppdbprogress.c:260 ../app/widgets/gimppdbdialog.c:320 #, c-format msgid "Unable to run %s callback. The corresponding plug-in may have crashed." msgstr "無法執行 %s çš„ callback。相應的增效模組å¯èƒ½å·²ç¶“ä¸æ­£å¸¸çµæŸã€‚" -#: 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 +#: ../app/core/gimpselection.c:839 msgid "Floated Layer" msgstr "" -#: app/core/gimptemplate.c:158 +#: ../app/core/gimptemplate.c:158 msgid "The unit used for coordinate display when not in dot-for-dot mode." msgstr "" -#: app/core/gimptemplate.c:165 +#: ../app/core/gimptemplate.c:165 msgid "The horizontal image resolution." msgstr "å½±åƒæ°´å¹³è§£æžåº¦ã€‚" -#: app/core/gimptemplate.c:170 +#: ../app/core/gimptemplate.c:170 msgid "The vertical image resolution." msgstr "å½±åƒåž‚直解æžåº¦ã€‚" -#: app/core/gimptemplate.c:450 app/widgets/widgets-enums.c:24 +#: ../app/core/gimptemplate.c:450 ../app/widgets/widgets-enums.c:24 msgid "Background" msgstr "背景é¡è‰²" #. pseudo unit -#: app/core/gimpunit.c:55 +#: ../app/core/gimpunit.c:55 msgid "pixel" msgstr "åƒç´ " -#: app/core/gimpunit.c:55 app/tools/gimpmeasuretool.c:787 -#: app/tools/gimpmeasuretool.c:875 app/tools/gimppainttool.c:681 +#: ../app/core/gimpunit.c:55 ../app/tools/gimpmeasuretool.c:787 +#: ../app/tools/gimpmeasuretool.c:875 ../app/tools/gimppainttool.c:681 msgid "pixels" msgstr "åƒç´ " #. standard units -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inch" msgstr "英å‹" -#: app/core/gimpunit.c:58 +#: ../app/core/gimpunit.c:58 msgid "inches" msgstr "英å‹" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeter" msgstr "毫米" -#: app/core/gimpunit.c:59 +#: ../app/core/gimpunit.c:59 msgid "millimeters" msgstr "毫米" #. professional units -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "point" msgstr "點" -#: app/core/gimpunit.c:62 +#: ../app/core/gimpunit.c:62 msgid "points" msgstr "點" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "pica" msgstr "pica(鉛點)" -#: app/core/gimpunit.c:63 +#: ../app/core/gimpunit.c:63 msgid "picas" msgstr "pica(鉛點)" -#: app/core/gimpunit.c:70 +#: ../app/core/gimpunit.c:70 msgid "percent" msgstr "百分比" -#: 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 "" "Abel Cheung (張國冠)\n" @@ -5557,1380 +5498,1355 @@ "æž—ä½³å®\n" "陳英傑" -#: app/dialogs/about-dialog.c:59 +#: ../app/dialogs/about-dialog.c:59 msgid "Contributions by" msgstr "由以下人仕å”助開發" -#: app/dialogs/about-dialog.c:153 +#: ../app/dialogs/about-dialog.c:153 msgid "About The GIMP" msgstr "關於 GIMP" -#: app/dialogs/channel-options-dialog.c:138 +#: ../app/dialogs/channel-options-dialog.c:138 msgid "Channel Name:" -msgstr "色版å稱:" +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 -#, fuzzy +#: ../app/dialogs/convert-dialog.c:165 ../app/dialogs/dialogs.c:171 msgid "Colormap" -msgstr "é¡è‰²" +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 "擬色(Dithering)" -#: 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 +#: ../app/dialogs/convert-dialog.c:274 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 "" +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 "GIMP 訊æ¯" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Devices" msgstr "è£ç½®" -#: app/dialogs/dialogs.c:127 +#: ../app/dialogs/dialogs.c:127 msgid "Device Status" msgstr "è£ç½®ç‹€æ…‹" -#: app/dialogs/dialogs.c:131 +#: ../app/dialogs/dialogs.c:131 msgid "Errors" msgstr "錯誤" -#: app/dialogs/dialogs.c:152 +#: ../app/dialogs/dialogs.c:152 msgid "History" msgstr "紀錄" -#: app/dialogs/dialogs.c:154 +#: ../app/dialogs/dialogs.c:154 msgid "Image Templates" msgstr "å½±åƒç¯„本" -#: app/dialogs/dialogs.c:175 +#: ../app/dialogs/dialogs.c:175 msgid "Histogram" msgstr "色彩統計圖" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection" msgstr "é¸æ“‡å€åŸŸ" -#: app/dialogs/dialogs.c:179 +#: ../app/dialogs/dialogs.c:179 msgid "Selection Editor" msgstr "é¸æ“‡å€åŸŸç·¨è¼¯è¦–窗" -#: app/dialogs/dialogs.c:183 +#: ../app/dialogs/dialogs.c:183 msgid "Undo History" msgstr "復原紀錄" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Navigation" msgstr "導覽" -#: app/dialogs/dialogs.c:189 +#: ../app/dialogs/dialogs.c:189 msgid "Display Navigation" msgstr "顯示導覽視窗" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG" msgstr "å‰æ™¯/背景" -#: app/dialogs/dialogs.c:195 +#: ../app/dialogs/dialogs.c:195 msgid "FG/BG Color" msgstr "å‰æ™¯/背景色彩" -#: app/dialogs/dialogs.c:201 +#: ../app/dialogs/dialogs.c:201 msgid "Brush Editor" msgstr "筆刷編輯程åº" -#: app/dialogs/file-open-location-dialog.c:71 +#: ../app/dialogs/file-open-location-dialog.c:71 msgid "Open Location" msgstr "é–‹å•Ÿä½ç½®" -#: app/dialogs/file-open-location-dialog.c:104 +#: ../app/dialogs/file-open-location-dialog.c:104 msgid "Enter location (URI):" -msgstr "輸入ä½ç½® (URI):" +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 "" +msgstr "設定網格" -#: app/dialogs/grid-dialog.c:82 +#: ../app/dialogs/grid-dialog.c:82 msgid "Configure Image Grid" -msgstr "" +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 "最後åˆä½µçš„圖層應該:" +msgstr "最後åˆä½µçš„圖層應該:" -#: app/dialogs/image-merge-layers-dialog.c:81 +#: ../app/dialogs/image-merge-layers-dialog.c:81 msgid "Expanded as necessary" msgstr "å¿…è¦æ™‚擴大" -#: app/dialogs/image-merge-layers-dialog.c:84 +#: ../app/dialogs/image-merge-layers-dialog.c:84 msgid "Clipped to image" msgstr "è£å‰ªæˆå½±åƒå°ºå¯¸" -#: app/dialogs/image-merge-layers-dialog.c:87 +#: ../app/dialogs/image-merge-layers-dialog.c:87 msgid "Clipped to bottom layer" msgstr "è£å‰ªæˆæœ€åº•åœ–層的尺寸" -#: app/dialogs/image-new-dialog.c:95 +#: ../app/dialogs/image-new-dialog.c:95 msgid "Create a New Image" msgstr "製作新的影åƒ" -#: app/dialogs/image-new-dialog.c:130 app/dialogs/preferences-dialog.c:1313 +#: ../app/dialogs/image-new-dialog.c:130 +#: ../app/dialogs/preferences-dialog.c:1313 msgid "_Template:" -msgstr "範本(_T):" +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 "所é¸æ“‡çš„å½±åƒå°‡è¦ç¸®å°ï¼Œè‡´ä½¿æŸäº›åœ–層完全消失。這是å¦æ‚¨æƒ³è¦çš„çµæžœï¼Ÿ" +msgstr "å½±åƒç¸®å°è‡³æŒ‡å®šå°ºå¯¸çš„話,會令æŸäº›åœ–層完全消失。" -#: 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 "Pseudo Color" -#: 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 "Direct Color" -#: 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 "ç„¡" -#: 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 +#: ../app/dialogs/info-window.c:228 msgid "Comment" msgstr "備註" -#: app/dialogs/info-window.c:248 app/dialogs/info-window.c:634 -#: app/display/gimpdisplayshell-title.c:337 -#: app/display/gimpdisplayshell-title.c:349 app/widgets/gimpactiongroup.c:806 +#: ../app/dialogs/info-window.c:248 ../app/dialogs/info-window.c:634 +#: ../app/display/gimpdisplayshell-title.c:337 +#: ../app/display/gimpdisplayshell-title.c:349 +#: ../app/widgets/gimpactiongroup.c:806 msgid "(none)" msgstr "(ç„¡)" -#: app/dialogs/info-window.c:275 +#: ../app/dialogs/info-window.c:275 msgid "Info Window" msgstr "資訊視窗" -#: app/dialogs/info-window.c:277 +#: ../app/dialogs/info-window.c:277 msgid "Image Information" msgstr "å½±åƒè³‡è¨Š" #. add the information fields -#: app/dialogs/info-window.c:294 +#: ../app/dialogs/info-window.c:294 msgid "Pixel dimensions:" -msgstr "åƒç´ å°ºå¯¸ï¼š" +msgstr "åƒç´ å°ºå¯¸:" -#: app/dialogs/info-window.c:296 +#: ../app/dialogs/info-window.c:296 msgid "Print size:" -msgstr "" +msgstr "列å°å°ºå¯¸:" -#: app/dialogs/info-window.c:298 +#: ../app/dialogs/info-window.c:298 msgid "Resolution:" -msgstr "解æžåº¦ï¼š" +msgstr "解æžåº¦:" -#: app/dialogs/info-window.c:300 +#: ../app/dialogs/info-window.c:300 msgid "Scale ratio:" -msgstr "縮放比例:" +msgstr "縮放比例:" -#: app/dialogs/info-window.c:302 +#: ../app/dialogs/info-window.c:302 msgid "Number of layers:" -msgstr "圖層數目:" +msgstr "圖層數目:" -#: app/dialogs/info-window.c:304 +#: ../app/dialogs/info-window.c:304 msgid "Size in memory:" -msgstr "佔用記憶數目:" +msgstr "佔用記憶數目:" -#: app/dialogs/info-window.c:306 +#: ../app/dialogs/info-window.c:306 msgid "Display type:" -msgstr "顯示類型:" +msgstr "顯示類型:" -#: app/dialogs/info-window.c:308 +#: ../app/dialogs/info-window.c:308 msgid "Visual class:" -msgstr "Visual 類別:" +msgstr "色彩類別:" -#: app/dialogs/info-window.c:310 +#: ../app/dialogs/info-window.c:310 msgid "Visual depth:" -msgstr "Visual 深度:" +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×%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 "將圖層é®ç½©åˆå§‹åŒ–為:" +msgstr "將圖層é®ç½©åˆå§‹åŒ–為:" -#: app/dialogs/layer-add-mask-dialog.c:96 +#: ../app/dialogs/layer-add-mask-dialog.c:96 msgid "In_vert Mask" msgstr "" -#: app/dialogs/layer-options-dialog.c:116 +#: ../app/dialogs/layer-options-dialog.c:116 msgid "Layer _Name:" -msgstr "圖層å稱(_N):" +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 "寬度:" +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 "高度:" +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 +#: ../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 "" +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 "用途:" +msgstr "用途:" -#: app/dialogs/module-dialog.c:500 +#: ../app/dialogs/module-dialog.c:500 msgid "Author:" -msgstr "作者:" +msgstr "作者:" -#: app/dialogs/module-dialog.c:501 +#: ../app/dialogs/module-dialog.c:501 msgid "Version:" -msgstr "版本:" +msgstr "版本:" -#: app/dialogs/module-dialog.c:502 +#: ../app/dialogs/module-dialog.c:502 msgid "Copyright:" -msgstr "版權:" +msgstr "版權:" -#: app/dialogs/module-dialog.c:503 +#: ../app/dialogs/module-dialog.c:503 msgid "Date:" -msgstr "日期:" +msgstr "日期:" -#: app/dialogs/module-dialog.c:504 +#: ../app/dialogs/module-dialog.c:504 msgid "Location:" -msgstr "ä½ç½®ï¼š" +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 "狀態:" +msgstr "狀態:" -#: app/dialogs/module-dialog.c:506 +#: ../app/dialogs/module-dialog.c:506 msgid "Last Error:" -msgstr "" +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:" +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:" +msgstr "_Y:" -#: app/dialogs/offset-dialog.c:197 +#: ../app/dialogs/offset-dialog.c:197 msgid "Offset by x/_2, y/2" msgstr "移動至一åŠå¯¬åº¦åŠé«˜åº¦çš„ä½ç½®(_2)" #. The edge behaviour frame -#: app/dialogs/offset-dialog.c:206 +#: ../app/dialogs/offset-dialog.c:206 msgid "Edge Behaviour" msgstr "" -#: app/dialogs/offset-dialog.c:210 +#: ../app/dialogs/offset-dialog.c:210 msgid "_Wrap around" msgstr "" -#: app/dialogs/offset-dialog.c:213 +#: ../app/dialogs/offset-dialog.c:213 msgid "Fill with _background color" msgstr "填上背景é¡è‰²(_B)" -#: app/dialogs/offset-dialog.c:216 +#: ../app/dialogs/offset-dialog.c:216 msgid "Make _transparent" msgstr "" -#: app/dialogs/palette-import-dialog.c:171 +#: ../app/dialogs/palette-import-dialog.c:171 msgid "Import Palette" msgstr "匯入色盤" -#: app/dialogs/palette-import-dialog.c:173 +#: ../app/dialogs/palette-import-dialog.c:173 msgid "Import a New Palette" msgstr "匯入新的色盤" -#: app/dialogs/palette-import-dialog.c:179 +#: ../app/dialogs/palette-import-dialog.c:179 msgid "_Import" msgstr "匯入(_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 +#: ../app/dialogs/palette-import-dialog.c:246 msgid "Palette _file" msgstr "色盤檔案(_F)" -#: app/dialogs/palette-import-dialog.c:273 +#: ../app/dialogs/palette-import-dialog.c:273 msgid "Select palette file" msgstr "é¸å–色盤檔案" #. The "Import" frame -#: app/dialogs/palette-import-dialog.c:304 +#: ../app/dialogs/palette-import-dialog.c:304 msgid "Import Options" msgstr "匯入é¸é …" -#: app/dialogs/palette-import-dialog.c:317 +#: ../app/dialogs/palette-import-dialog.c:317 msgid "New import" msgstr "" -#: app/dialogs/palette-import-dialog.c:319 +#: ../app/dialogs/palette-import-dialog.c:319 msgid "Palette _Name:" -msgstr "色盤å稱(_N):" +msgstr "色盤å稱(_N):" -#: app/dialogs/palette-import-dialog.c:325 +#: ../app/dialogs/palette-import-dialog.c:325 msgid "N_umber of colors:" -msgstr "é¡è‰²æ•¸ç›®(_U):" +msgstr "é¡è‰²æ•¸ç›®(_U):" -#: app/dialogs/palette-import-dialog.c:338 +#: ../app/dialogs/palette-import-dialog.c:338 msgid "C_olumns:" msgstr "" -#: app/dialogs/palette-import-dialog.c:350 +#: ../app/dialogs/palette-import-dialog.c:350 msgid "I_nterval:" msgstr "" #. The "Preview" frame -#: app/dialogs/palette-import-dialog.c:362 +#: ../app/dialogs/palette-import-dialog.c:362 msgid "Preview" msgstr "é è¦½" -#: app/dialogs/preferences-dialog.c:294 +#: ../app/dialogs/preferences-dialog.c:294 msgid "You will have to restart GIMP for the following changes to take effect:" msgstr "您必須é‡æ–°å•Ÿå‹• GIMP 令以下的設定生效:" -#: app/dialogs/preferences-dialog.c:501 +#: ../app/dialogs/preferences-dialog.c:501 msgid "Configure Keyboard Shortcuts" msgstr "設定æ·å¾‘éµ" -#: app/dialogs/preferences-dialog.c:551 +#: ../app/dialogs/preferences-dialog.c:551 msgid "" "To edit a shortcut key, click on the corresponding row and type a new " "accelerator, or press backspace to clear." msgstr "" -#: app/dialogs/preferences-dialog.c:595 +#: ../app/dialogs/preferences-dialog.c:595 msgid "" "Your keyboard shortcuts will be reset to default values the next time you " "start GIMP." msgstr "下次啟動 GIMP 時會將所有æ·å¾‘éµé‚„原為é è¨­å€¼ã€‚" -#: app/dialogs/preferences-dialog.c:629 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:629 msgid "" "Your window setup will be reset to default values the next time you start " "GIMP." msgstr "下次啟動 GIMP 時會將所有視窗組態還原為é è¨­å€¼ã€‚" -#: app/dialogs/preferences-dialog.c:663 +#: ../app/dialogs/preferences-dialog.c:663 msgid "" "Your input device settings will be reset to default values the next time you " "start GIMP." msgstr "下次啟動 GIMP 時會將所有輸入è£ç½®çš„設定還原為é è¨­å€¼ã€‚" -#: app/dialogs/preferences-dialog.c:1082 +#: ../app/dialogs/preferences-dialog.c:1082 msgid "Show _menubar" msgstr "顯示é¸å–®åˆ—(_M)" -#: app/dialogs/preferences-dialog.c:1085 +#: ../app/dialogs/preferences-dialog.c:1085 msgid "Show _rulers" msgstr "顯示尺è¦(_R)" -#: app/dialogs/preferences-dialog.c:1088 +#: ../app/dialogs/preferences-dialog.c:1088 msgid "Show scroll_bars" msgstr "顯示æ²å‹•åˆ—(_B)" -#: app/dialogs/preferences-dialog.c:1091 +#: ../app/dialogs/preferences-dialog.c:1091 msgid "Show s_tatusbar" msgstr "顯示狀態列(_T)" -#: app/dialogs/preferences-dialog.c:1099 +#: ../app/dialogs/preferences-dialog.c:1099 msgid "Show s_election" msgstr "顯示é¸æ“‡å€åŸŸ(_E)" -#: app/dialogs/preferences-dialog.c:1102 +#: ../app/dialogs/preferences-dialog.c:1102 msgid "Show _layer boundary" msgstr "顯示圖層邊界(_L)" -#: app/dialogs/preferences-dialog.c:1105 +#: ../app/dialogs/preferences-dialog.c:1105 msgid "Show _guides" msgstr "顯示åƒè€ƒç·š(_G)" -#: app/dialogs/preferences-dialog.c:1108 +#: ../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 +#: ../app/dialogs/preferences-dialog.c:1120 msgid "Select custom canvas padding color" msgstr "指定影åƒå¤–åœè£œç™½æ‰€ç”¨çš„é¡è‰²" -#: app/dialogs/preferences-dialog.c:1191 +#: ../app/dialogs/preferences-dialog.c:1191 msgid "Preferences" msgstr "å好設定" -#: app/dialogs/preferences-dialog.c:1294 app/dialogs/preferences-dialog.c:1297 +#: ../app/dialogs/preferences-dialog.c:1294 +#: ../app/dialogs/preferences-dialog.c:1297 msgid "New Image" msgstr "æ–°å½±åƒ" -#: app/dialogs/preferences-dialog.c:1335 +#: ../app/dialogs/preferences-dialog.c:1335 msgid "Default Image Grid" msgstr "é è¨­å½±åƒæ ¼ç·š" -#: app/dialogs/preferences-dialog.c:1338 +#: ../app/dialogs/preferences-dialog.c:1338 msgid "Default Grid" msgstr "é è¨­æ ¼ç·š" -#: app/dialogs/preferences-dialog.c:1358 +#: ../app/dialogs/preferences-dialog.c:1358 msgid "User Interface" msgstr "用戶介é¢" -#: app/dialogs/preferences-dialog.c:1361 +#: ../app/dialogs/preferences-dialog.c:1361 msgid "Interface" msgstr "介é¢" #. Previews -#: app/dialogs/preferences-dialog.c:1368 +#: ../app/dialogs/preferences-dialog.c:1368 msgid "Previews" msgstr "é è¦½" -#: app/dialogs/preferences-dialog.c:1371 +#: ../app/dialogs/preferences-dialog.c:1371 msgid "_Enable layer & channel previews" msgstr "å¯é è¦½åœ–層åŠè‰²ç‰ˆ(_E)" -#: app/dialogs/preferences-dialog.c:1377 +#: ../app/dialogs/preferences-dialog.c:1377 msgid "Default _layer & channel preview size:" -msgstr "圖層åŠè‰²ç‰ˆçš„é è¨­é è¦½åœ–尺寸(_L):" +msgstr "圖層åŠè‰²ç‰ˆçš„é è¨­é è¦½åœ–尺寸(_L):" -#: app/dialogs/preferences-dialog.c:1380 +#: ../app/dialogs/preferences-dialog.c:1380 msgid "Na_vigation preview size:" -msgstr "導覽é è¦½åœ–尺寸(_N):" +msgstr "導覽圖尺寸(_N):" #. Keyboard Shortcuts -#: app/dialogs/preferences-dialog.c:1384 +#: ../app/dialogs/preferences-dialog.c:1384 msgid "Keyboard Shortcuts" msgstr "æ·å¾‘éµ" -#: app/dialogs/preferences-dialog.c:1388 +#: ../app/dialogs/preferences-dialog.c:1388 msgid "Show menu _mnemonics (access keys)" msgstr "" -#: app/dialogs/preferences-dialog.c:1391 +#: ../app/dialogs/preferences-dialog.c:1391 msgid "Use _dynamic keyboard shortcuts" msgstr "å¯å³æ™‚更改æ·å¾‘éµè¨­å®š(_D)" -#: app/dialogs/preferences-dialog.c:1395 +#: ../app/dialogs/preferences-dialog.c:1395 msgid "Configure _Keyboard Shortcuts..." msgstr "設定æ·å¾‘éµ(_K)..." -#: app/dialogs/preferences-dialog.c:1402 +#: ../app/dialogs/preferences-dialog.c:1402 msgid "_Save keyboard shortcuts on exit" msgstr "çµæŸæ™‚儲存æ·å¾‘éµè¨­å®š(_S)" -#: app/dialogs/preferences-dialog.c:1406 +#: ../app/dialogs/preferences-dialog.c:1406 msgid "Save Keyboard Shortcuts _Now" msgstr "立刻儲存æ·å¾‘éµè¨­å®š(_N)" -#: app/dialogs/preferences-dialog.c:1413 +#: ../app/dialogs/preferences-dialog.c:1413 msgid "_Reset Saved Keyboard Shortcuts to Default Values" 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 +#: ../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 "顯示é¸æ“‡å€åŸŸ(_S)" +msgstr "顯示「求助ã€æŒ‰éˆ•(_S)" -#: app/dialogs/preferences-dialog.c:1552 +#: ../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 +#: ../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 "" +msgstr "自動貼齊åƒè€ƒç·šå’Œæ ¼ç·š" -#: app/dialogs/preferences-dialog.c:1602 +#: ../app/dialogs/preferences-dialog.c:1602 msgid "_Snap distance:" -msgstr "" +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 +#: ../app/dialogs/preferences-dialog.c:1611 msgid "Default _threshold:" -msgstr "é è¨­ç•Œé™å€¼(_T):" +msgstr "é è¨­ç•Œé™å€¼(_T):" #. Scaling -#: app/dialogs/preferences-dialog.c:1615 +#: ../app/dialogs/preferences-dialog.c:1615 msgid "Scaling" msgstr "縮放" -#: app/dialogs/preferences-dialog.c:1619 +#: ../app/dialogs/preferences-dialog.c:1619 msgid "Default _interpolation:" -msgstr "é è¨­ä½¿ç”¨çš„å½±åƒå…§æ’法(_I):" +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 +#: ../app/dialogs/preferences-dialog.c:1653 +#: ../app/dialogs/preferences-dialog.c:1656 msgid "Toolbox" msgstr "工具箱" #. Appearance -#: app/dialogs/preferences-dialog.c:1663 app/dialogs/preferences-dialog.c:1760 -#: app/widgets/gimpgrideditor.c:206 +#: ../app/dialogs/preferences-dialog.c:1663 +#: ../app/dialogs/preferences-dialog.c:1760 +#: ../app/widgets/gimpgrideditor.c:206 msgid "Appearance" msgstr "外觀" -#: app/dialogs/preferences-dialog.c:1667 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:1667 msgid "Show _foreground & background color" -msgstr "顯示å‰æ™¯åŠèƒŒæ™¯é¡è‰²(_C)" +msgstr "顯示å‰æ™¯åŠèƒŒæ™¯é¡è‰²(_F)" -#: app/dialogs/preferences-dialog.c:1671 +#: ../app/dialogs/preferences-dialog.c:1671 msgid "Show active _brush, pattern & gradient" msgstr "顯示使用中的筆刷ã€åœ–樣åŠæ¼¸å±¤(_B)" -#: app/dialogs/preferences-dialog.c:1675 +#: ../app/dialogs/preferences-dialog.c:1675 msgid "Show active _image" 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 +#: ../app/dialogs/preferences-dialog.c:1700 msgid "Use \"_Dot for dot\" by default" -msgstr "é è¨­ä½¿ç”¨â€œé»žå°é»žâ€æ¨¡å¼(_D)" +msgstr "é è¨­ä½¿ç”¨ã€Œé»žå°é»žã€æ¨¡å¼(_D)" -#: app/dialogs/preferences-dialog.c:1706 +#: ../app/dialogs/preferences-dialog.c:1706 msgid "Marching _ants speed:" -msgstr "é¸æ“‡å€åŸŸè™›ç·š (Marching _Ants) 移動速度:" +msgstr "é¸æ“‡å€åŸŸè™›ç·š (Marching _Ants) 移動速度:" #. Zoom & Resize Behavior -#: app/dialogs/preferences-dialog.c:1710 +#: ../app/dialogs/preferences-dialog.c:1710 msgid "Zoom & Resize Behavior" msgstr "縮放åŠèª¿æ•´å°ºå¯¸çš„é‹ä½œæ–¹å¼" -#: app/dialogs/preferences-dialog.c:1714 +#: ../app/dialogs/preferences-dialog.c:1714 msgid "Resize window on _zoom" msgstr "縮放影åƒæ™‚調整視窗尺寸(_Z)" -#: app/dialogs/preferences-dialog.c:1717 +#: ../app/dialogs/preferences-dialog.c:1717 msgid "Resize window on image _size change" msgstr "å½±åƒå°ºå¯¸æ›´æ”¹æ™‚調整視窗尺寸(_S)" -#: app/dialogs/preferences-dialog.c:1723 +#: ../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 +#: ../app/dialogs/preferences-dialog.c:1733 msgid "Show _brush outline" msgstr "顯示筆刷輪廓(_B)" -#: app/dialogs/preferences-dialog.c:1736 +#: ../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 +#: ../app/dialogs/preferences-dialog.c:1745 msgid "Cursor re_ndering:" -msgstr "" +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 +#: ../app/dialogs/preferences-dialog.c:1808 msgid "Show image size" 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 +#: ../app/dialogs/preferences-dialog.c:1922 msgid "Transparency _type:" -msgstr "é€æ˜Žè¡¨ç¤ºæ–¹å¼(_T):" +msgstr "é€æ˜Žè¡¨ç¤ºæ–¹å¼(_T):" -#: app/dialogs/preferences-dialog.c:1925 +#: ../app/dialogs/preferences-dialog.c:1925 msgid "Check _size:" -msgstr "方格大å°(_S):" +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 +#: ../app/dialogs/preferences-dialog.c:1970 #, c-format msgid "From _windowing system (currently %d x %d dpi)" msgstr "從視窗系統ç²å–解æžåº¦(ç›®å‰ç‚º %d×%d _dpi)" -#: app/dialogs/preferences-dialog.c:1993 +#: ../app/dialogs/preferences-dialog.c:1993 msgid "_Manually" msgstr "人手輸入(_M)" -#: app/dialogs/preferences-dialog.c:2008 +#: ../app/dialogs/preferences-dialog.c:2008 msgid "C_alibrate..." 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 +#: ../app/dialogs/preferences-dialog.c:2042 msgid "Configure E_xtended Input Devices..." msgstr "設定é¡å¤–的輸入è£ç½®(_X)..." -#: app/dialogs/preferences-dialog.c:2049 +#: ../app/dialogs/preferences-dialog.c:2049 msgid "_Save input device settings on exit" msgstr "çµæŸæ™‚儲存輸入è£ç½®çš„設定(_S)" -#: app/dialogs/preferences-dialog.c:2053 +#: ../app/dialogs/preferences-dialog.c:2053 msgid "Save Input Device Settings _Now" msgstr "立刻儲存輸入è£ç½®çš„設定(_N)" -#: app/dialogs/preferences-dialog.c:2060 +#: ../app/dialogs/preferences-dialog.c:2060 msgid "_Reset Saved Input Device Settings to Default Values" msgstr "é‡æ–°è¼‰å…¥å·²å„²å­˜çš„輸入è£ç½®è¨­å®š(_R)" -#: app/dialogs/preferences-dialog.c:2075 +#: ../app/dialogs/preferences-dialog.c:2075 msgid "Additional Input Controllers" msgstr "é¡å¤–輸入è£ç½®" -#: app/dialogs/preferences-dialog.c:2078 +#: ../app/dialogs/preferences-dialog.c:2078 msgid "Input Controllers" msgstr "輸入è£ç½®" -#: app/dialogs/preferences-dialog.c:2119 app/dialogs/preferences-dialog.c:2122 +#: ../app/dialogs/preferences-dialog.c:2119 +#: ../app/dialogs/preferences-dialog.c:2122 msgid "Window Management" msgstr "視窗管ç†" -#: app/dialogs/preferences-dialog.c:2128 +#: ../app/dialogs/preferences-dialog.c:2128 msgid "Window Manager Hints" msgstr "給視窗總管的æ示" -#: app/dialogs/preferences-dialog.c:2134 +#: ../app/dialogs/preferences-dialog.c:2134 msgid "Hint for the _toolbox:" -msgstr "工具箱的視窗類型(_T):" +msgstr "工具箱的視窗類型(_T):" -#: app/dialogs/preferences-dialog.c:2138 +#: ../app/dialogs/preferences-dialog.c:2138 msgid "Hint for the _docks:" -msgstr "嵌入å¼å°è©±æ–¹å¡Šçš„視窗類型(_D):" +msgstr "嵌入å¼å°è©±æ–¹å¡Šçš„視窗類型(_D):" -#: app/dialogs/preferences-dialog.c:2141 +#: ../app/dialogs/preferences-dialog.c:2141 msgid "Focus" msgstr "焦點" -# FIXME: This is not ideal translation! -- Abel -#: app/dialogs/preferences-dialog.c:2145 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2145 msgid "Activate the _focused image" -msgstr "顯示有輸入焦點的影åƒ(_F)" +msgstr "" #. Window Positions -#: app/dialogs/preferences-dialog.c:2149 +#: ../app/dialogs/preferences-dialog.c:2149 msgid "Window Positions" msgstr "視窗ä½ç½®" -#: app/dialogs/preferences-dialog.c:2152 +#: ../app/dialogs/preferences-dialog.c:2152 msgid "_Save window positions on exit" msgstr "çµæŸç¨‹å¼æ™‚儲存視窗ä½ç½®(_S)" -#: app/dialogs/preferences-dialog.c:2156 +#: ../app/dialogs/preferences-dialog.c:2156 msgid "Save Window Positions _Now" 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 "Tile Cache 大å°ï¼š" +msgstr "Tile _cache 大å°:" -#: 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 "會使用的 CPU 數目:" +msgstr "會使用的 C_PU 數目:" #. Image Thumbnails -#: app/dialogs/preferences-dialog.c:2218 -#, fuzzy +#: ../app/dialogs/preferences-dialog.c:2218 msgid "Image Thumbnails" -msgstr "å½±åƒé®ç½©" +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 +# (Abel) thumbnailing 是指自動化的 thumbnailing! +#: ../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 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Temp folder:" -msgstr "暫存檔資料夾:" +msgstr "暫存檔資料夾:" -#: app/dialogs/preferences-dialog.c:2263 +#: ../app/dialogs/preferences-dialog.c:2263 msgid "Select Temp Folder" msgstr "é¸å–暫存檔資料夾" -#: app/dialogs/preferences-dialog.c:2264 -#: app/dialogs/user-install-dialog.c:1403 +#: ../app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/user-install-dialog.c:1403 msgid "Swap folder:" -msgstr "交æ›æª”資料夾:" +msgstr "交æ›è¨˜æ†¶æª”資料夾:" -#: app/dialogs/preferences-dialog.c:2264 +#: ../app/dialogs/preferences-dialog.c:2264 msgid "Select Swap Folder" msgstr "é¸å–交æ›æª”資料夾" -#: app/dialogs/preferences-dialog.c:2297 +#: ../app/dialogs/preferences-dialog.c:2297 msgid "Brush Folders" msgstr "筆刷資料夾" -#: app/dialogs/preferences-dialog.c:2299 +#: ../app/dialogs/preferences-dialog.c:2299 msgid "Select Brush Folders" msgstr "é¸å–筆刷資料夾" -#: app/dialogs/preferences-dialog.c:2301 +#: ../app/dialogs/preferences-dialog.c:2301 msgid "Pattern Folders" msgstr "圖樣資料夾" -#: app/dialogs/preferences-dialog.c:2303 +#: ../app/dialogs/preferences-dialog.c:2303 msgid "Select Pattern Folders" msgstr "é¸å–圖樣資料夾" -#: app/dialogs/preferences-dialog.c:2305 +#: ../app/dialogs/preferences-dialog.c:2305 msgid "Palette Folders" msgstr "色盤資料夾" -#: app/dialogs/preferences-dialog.c:2307 +#: ../app/dialogs/preferences-dialog.c:2307 msgid "Select Palette Folders" msgstr "é¸å–色盤資料夾" -#: app/dialogs/preferences-dialog.c:2309 +#: ../app/dialogs/preferences-dialog.c:2309 msgid "Gradient Folders" msgstr "漸層資料夾" -#: app/dialogs/preferences-dialog.c:2311 +#: ../app/dialogs/preferences-dialog.c:2311 msgid "Select Gradient Folders" msgstr "é¸å–漸層資料夾" -#: app/dialogs/preferences-dialog.c:2313 +#: ../app/dialogs/preferences-dialog.c:2313 msgid "Font Folders" msgstr "字型資料夾" -#: app/dialogs/preferences-dialog.c:2315 +#: ../app/dialogs/preferences-dialog.c:2315 msgid "Select Font Folders" msgstr "é¸å–字型資料夾" -#: app/dialogs/preferences-dialog.c:2317 +#: ../app/dialogs/preferences-dialog.c:2317 msgid "Plug-In Folders" msgstr "增效模組資料夾" -#: app/dialogs/preferences-dialog.c:2319 +#: ../app/dialogs/preferences-dialog.c:2319 msgid "Select Plug-In Folders" msgstr "é¸å–增效模組資料夾" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Scripts" msgstr "" -#: app/dialogs/preferences-dialog.c:2321 +#: ../app/dialogs/preferences-dialog.c:2321 msgid "Script-Fu Folders" msgstr "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 "é è¦½åœ–尺寸(_Z)" +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 +#: ../app/dialogs/quit-dialog.c:84 msgid "Quit The GIMP" msgstr "çµæŸ GIMP" -#: app/dialogs/quit-dialog.c:126 +#: ../app/dialogs/quit-dialog.c:126 msgid "If you quit GIMP now, these changes will be lost." msgstr "如果ç¾åœ¨çµæŸ GIMP,未儲存的部份將會失去。" -#: app/dialogs/quit-dialog.c:164 +#: ../app/dialogs/quit-dialog.c:164 msgid "There is one image with unsaved changes:" -msgstr "" +msgstr "有 1 幅圖更改後未儲存:" -#: 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 +#: ../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 +#: ../app/dialogs/resolution-calibrate-dialog.c:120 msgid "Measure the rulers and enter their lengths:" msgstr "測é‡å°ºè¦ä¸¦å¡«ä¸Šå®ƒå€‘的長度:" -#: app/dialogs/resolution-calibrate-dialog.c:145 +#: ../app/dialogs/resolution-calibrate-dialog.c:145 msgid "_Horizontal:" -msgstr "æ°´å¹³(_H):" +msgstr "æ°´å¹³(_H):" -#: app/dialogs/resolution-calibrate-dialog.c:150 +#: ../app/dialogs/resolution-calibrate-dialog.c:150 msgid "_Vertical:" -msgstr "åž‚ç›´(_V):" +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 "çµæŸ(_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 +#: ../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 "繪畫工具:" +msgstr "繪畫工具:" -#: app/dialogs/tips-dialog.c:90 +#: ../app/dialogs/tips-dialog.c:90 msgid "Your GIMP tips file appears to be missing!" msgstr "GIMP æ示檔似乎ä¸å­˜åœ¨ï¼" -#: 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 "ç„¡æ³•æ­£ç¢ºåˆ†æž GIMP æ示檔內容ï¼" -#: app/dialogs/tips-dialog.c:131 +#: ../app/dialogs/tips-dialog.c:131 msgid "GIMP Tip of the Day" msgstr "GIMP å°æ示" -#: app/dialogs/tips-dialog.c:195 +#: ../app/dialogs/tips-dialog.c:195 msgid "Show tip next time GIMP starts" msgstr "下次啟動 GIMP 時顯示æ示" -#: app/dialogs/tips-dialog.c:219 +#: ../app/dialogs/tips-dialog.c:219 msgid "_Previous tip" msgstr "上一個æ示(_P)" -#: app/dialogs/tips-dialog.c:228 +#: ../app/dialogs/tips-dialog.c:228 msgid "_Next tip" msgstr "下一個æ示(_N)" @@ -6939,11 +6855,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:zh_TW" -#: 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-" @@ -6952,7 +6868,7 @@ "gimprc 檔案是用來儲存影響 GIMP é‹ä½œæ–¹å¼çš„個人設定。筆刷ã€è‰²ç›¤ã€æ¼¸å±¤ã€åœ–樣ã€å¢ž" "效模組åŠæ¨¡çµ„çš„æœå°‹è·¯å¾‘也是在這裡設定的。" -#: 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." @@ -6960,7 +6876,7 @@ "GIMP 使用é¡å¤–çš„ gtkrc 檔案,所以您å¯ä»¥å°‡ GIMP 的外觀修改至和其它 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 " @@ -6971,7 +6887,7 @@ "æœå°‹çš„,而它們的功能åŠä¿®æ”¹æ™‚間就暫時儲存在這個檔案。此檔案應該åªç”± GIMP 讀" "入,而且ä¸æ‡‰è‡ªè¡Œä¿®æ”¹ã€‚" -#: app/dialogs/user-install-dialog.c:159 +#: ../app/dialogs/user-install-dialog.c:159 msgid "" "Key shortcuts can be dynamically redefined in The GIMP. The menurc is a dump " "of your configuration so it can. be remembered for the next session. You " @@ -6982,7 +6898,7 @@ "GIMP 時å¯ä»¥é‡æ–°ä½¿ç”¨ã€‚您å¯ä»¥è‡ªè¡Œç·¨è¼¯é€™å€‹æª”案,但在 GIMP 裡定義按éµæœƒæ–¹ä¾¿å¾—多。" "若刪除這個檔案就會使用 GIMP é è¨­çš„按éµã€‚" -#: 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 " @@ -6991,13 +6907,13 @@ "sessionrc 檔是用來紀錄上次çµæŸ GIMP 時開啟了哪些å°è©±æ–¹å¡Šçš„。您å¯ä»¥æŒ‡å®š GIMP " "在上次的ä½ç½®é‡æ–°é–‹å•Ÿé€™äº›å°è©±æ–¹å¡Šã€‚" -#: 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, " @@ -7008,7 +6924,7 @@ "ç±³ã€é»žåŠ pica) 一樣地使用自行定義的單ä½ã€‚這個檔案在æ¯æ¬¡çµæŸ GIMP 時都會被覆" "寫。" -#: 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 " @@ -7017,7 +6933,7 @@ "該資料夾是用來儲存自製的筆刷。當æœå°‹ç­†åˆ·æ™‚,GIMP 除了會檢查系統已安è£çš„筆刷" "外,也會檢查該資料夾。" -#: 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 " @@ -7028,7 +6944,7 @@ "字型外,也會檢查該資料夾。除éžæ‚¨ç¢ºå®šåªæƒ³åœ¨ GIMP 中使用該字型,å¦å‰‡æ‡‰è©²å°‡å­—åž‹" "放在系統共享的字型資料夾中。" -#: 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 " @@ -7037,7 +6953,7 @@ "該資料夾是用來儲存自製的漸層。當æœå°‹æ¼¸å±¤æ™‚,GIMP 除了會檢查系統已安è£çš„漸層" "外,也會檢查該資料夾。" -#: 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 " @@ -7046,7 +6962,7 @@ "該資料夾是用來儲存自製的色盤。當æœå°‹åœ–樣時,GIMP 除了會檢查系統已安è£çš„色盤" "外,也會檢查該資料夾。" -#: 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 " @@ -7055,7 +6971,7 @@ "該資料夾是用來儲存自製的圖樣。當æœå°‹åœ–樣時,GIMP 除了會檢查系統已安è£çš„圖樣" "外,也會檢查該資料夾。" -#: 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 " @@ -7064,7 +6980,7 @@ "該資料夾是用來儲存使用者建立的ã€æš«æ™‚性的或éžé è¨­æ”¯æ´çš„增效模組。當æœå°‹å¢žæ•ˆæ¨¡" "組時,GIMP 除了會檢查系統已安è£çš„增效模組外,也會檢查該資料夾。" -#: 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 " @@ -7074,7 +6990,7 @@ "該資料夾是用來儲存使用者建立的ã€æš«æ™‚性的或éžé è¨­æ”¯æ´çš„ DLL 模組。當æœå°‹å•Ÿå‹•æ™‚" "載入的模組,GIMP 除了會檢查系統已安è£çš„模組外,也會檢查該資料夾。" -#: 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 " @@ -7085,7 +7001,7 @@ "組環境變數檔案時,GIMP 除了會檢查系統é è¨­çš„環境變數資料夾外,也會檢查該資料" "夾。" -#: 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 " @@ -7094,15 +7010,15 @@ "該資料夾是用來儲存使用者建立和安è£çš„ script。當æœå°‹ script 時,GIMP 除了會檢" "查系統的 script 目錄外,也會檢查該資料夾。" -#: 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<#>." @@ -7113,50 +7029,50 @@ "常地終止,檔案會以 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 "GIMP 用戶安è£ç¨‹åº" -#: 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" -"GIMP 用戶安è£ç¨‹åº" +"GIMP %d.%d 用戶安è£ç¨‹åº" -#: app/dialogs/user-install-dialog.c:771 +#: ../app/dialogs/user-install-dialog.c:771 msgid "Click \"Continue\" to enter the GIMP user installation." msgstr "請按「繼續ã€é€²å…¥ GIMP 用戶安è£ç¨‹åº" -#: 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" @@ -7166,7 +7082,7 @@ "版權所有 ©1995-2004\n" "Spencer Kimballã€Peter Mattis åŠ the GIMP 開發團隊。" -#: app/dialogs/user-install-dialog.c:788 +#: ../app/dialogs/user-install-dialog.c:788 msgid "" "This program is free software; you can redistribute it and/or modify it " "under the terms of the GNU General Public License as published by the Free " @@ -7176,7 +7092,7 @@ "本程å¼æ˜¯è‡ªç”±è»Ÿé«”;您å¯ä»¥æ ¹æ“šè‡ªç”±è»Ÿé«”基金會發表的 GPL 第二版或(自由é¸æ“‡)æ›´æ–°çš„" "版本來é‡æ–°æ•£ä½ˆæˆ–修改此軟體。" -#: 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 " @@ -7186,7 +7102,7 @@ "散佈這個程å¼çš„目的是希望它會有用,但沒有任何使用ä¿è­‰ï¼›ç”šè‡³ä¸æœƒæš—示地ä¿è­‰å¯å”®" "性或é©ç”¨æ–¼ä»»ä½•ç‰¹å®šç›®çš„。請åƒé–± GNU General Public License ç²å–更多æ¢æ¬¾ç´°ç¯€ã€‚" -#: app/dialogs/user-install-dialog.c:800 +#: ../app/dialogs/user-install-dialog.c:800 msgid "" "You should have received a copy of the GNU General Public License along with " "this program; if not, write to the Free Software Foundation, Inc., 59 Temple " @@ -7195,44 +7111,43 @@ "您應該已經隨軟體收到一份 GPL;若沒有,請寫信到自由軟體基金會,地å€æ˜¯ï¼š\n" "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 "" -#: 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 "請按「繼續ã€é€²å…¥ GIMP 用戶安è£ç¨‹åº" +msgstr "請按「繼續ã€é€²å…¥ GIMP 用戶安è£ç¨‹åºã€‚" -#: 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 "ä¼¼ä¹Žæ‚¨å·²ç¶“ç”¨éŽ GIMP 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 "匯入 GI_MP 2.0 設定" -#: app/dialogs/user-install-dialog.c:823 -#, fuzzy +# (Abel) å­—é¢ä¸åŒ, ä¸éŽæˆ‘覺得這樣寫更能令用戶瞭解發生甚麼事 +#: ../app/dialogs/user-install-dialog.c:823 msgid "Do a _fresh user installation" -msgstr "GIMP 用戶安è£ç¨‹åº" +msgstr "æ¨æ£„舊版本 _GIMP 設定" -#: app/dialogs/user-install-dialog.c:851 +#: ../app/dialogs/user-install-dialog.c:851 msgid "Personal GIMP Folder" msgstr "GIMP 個人資料夾" -#: app/dialogs/user-install-dialog.c:852 +#: ../app/dialogs/user-install-dialog.c:852 msgid "Click \"Continue\" to create your personal GIMP folder." msgstr "請按「繼續ã€å»ºç«‹ GIMP 個人資料夾" -#: 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 "為了ä¿è­‰ GIMP 能夠正確安è£ï¼Œç¾åœ¨éœ€è¦å»ºç«‹å為‘%s’的資料夾。" +msgstr "為了ä¿è­‰ GIMP 能夠正確安è£ï¼Œç¾åœ¨éœ€è¦å»ºç«‹å為 ‘%s’ 的資料夾。" -#: app/dialogs/user-install-dialog.c:903 +#: ../app/dialogs/user-install-dialog.c:903 msgid "" "This folder will contain a number of important files. Click on one of the " "files or folders in the tree to get more information about the selected item." @@ -7240,43 +7155,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 "è«‹ç¨å€™ï¼Œæ­£åœ¨å»ºç«‹ GIMP 個人資料夾..." -#: app/dialogs/user-install-dialog.c:999 +#: ../app/dialogs/user-install-dialog.c:999 msgid "GIMP Performance Tuning" msgstr "GIMP 效能調整" -#: 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 "為了使 GIMP 發æ®æœ€ä½³çš„效能,å¯èƒ½éœ€è¦èª¿æ•´æŸéƒ¨ä»½è¨­å®šã€‚" -#: app/dialogs/user-install-dialog.c:1065 +#: ../app/dialogs/user-install-dialog.c:1065 #, c-format msgid "Copying file '%s' from '%s'..." msgstr "從‘%2$s’複製檔案‘%1$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 " @@ -7285,11 +7200,11 @@ "GIMP 使用有é™åº¦çš„記憶體來儲存影åƒè³‡æ–™ï¼Œå³æ‰€è¬‚的‘Tile Cache’。請調整它的大å°ä»¥" "符åˆçœŸæ­£è¨˜æ†¶é«”數é‡ï¼ŒåŒæ™‚也è¦è€ƒæ…®å…¶å®ƒç¨‹åºä½”用的記憶體。" -#: app/dialogs/user-install-dialog.c:1375 +#: ../app/dialogs/user-install-dialog.c:1375 msgid "Tile cache size:" -msgstr "Tile Cache 大å°ï¼š" +msgstr "Tile Cache 大å°:" -#: 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 " @@ -7300,537 +7215,531 @@ "案應該放在一個有足夠空間 (例如數百 MB) 的本機檔案系統中。在 UNIX 的系統中,建" "議使用系統的暫存目錄 (“/tmpâ€æˆ–“/var/tmpâ€)。" -#: app/dialogs/user-install-dialog.c:1398 +#: ../app/dialogs/user-install-dialog.c:1398 msgid "Select swap dir" msgstr "é¸å–交æ›æª”資料夾" -#: app/dialogs/vectors-export-dialog.c:53 +#: ../app/dialogs/vectors-export-dialog.c:53 msgid "Export Path to SVG" msgstr "將路徑匯出為 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 +#: ../app/dialogs/vectors-import-dialog.c:83 msgid "All Files (*.*)" msgstr "所有檔案 (*.*)" -#: app/dialogs/vectors-import-dialog.c:88 +#: ../app/dialogs/vectors-import-dialog.c:88 msgid "Scalable SVG image (*.svg)" msgstr "" -#: app/dialogs/vectors-import-dialog.c:99 -#, 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 "" -#: app/dialogs/vectors-options-dialog.c:113 +#: ../app/dialogs/vectors-options-dialog.c:113 msgid "Path Name:" -msgstr "路徑å稱:" +msgstr "路徑å稱:" -#: app/display/display-enums.c:24 +#: ../app/display/display-enums.c:24 msgid "Tool icon" msgstr "工具圖示" -#: app/display/display-enums.c:25 +#: ../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 +#: ../app/display/display-enums.c:55 msgid "From theme" msgstr "由佈景主題指定" -#: app/display/display-enums.c:56 +#: ../app/display/display-enums.c:56 msgid "Light check color" -msgstr "淺色方格" +msgstr "æ·ºç°" -#: app/display/display-enums.c:57 +#: ../app/display/display-enums.c:57 msgid "Dark check color" -msgstr "深色方格" +msgstr "æ·±ç°" -#: app/display/display-enums.c:58 +#: ../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 +#: ../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 "" +msgstr "濾色片" -#: app/display/gimpdisplayshell-filter-dialog.c:76 +#: ../app/display/gimpdisplayshell-filter-dialog.c:76 msgid "Configure Color Display Filters" -msgstr "" +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:541 msgid "Zoom Ratio" msgstr "縮放比例" -#: app/display/gimpdisplayshell-scale.c:539 +#: ../app/display/gimpdisplayshell-scale.c:543 msgid "Select Zoom Ratio" msgstr "é¸å–縮放比例" -#: app/display/gimpdisplayshell-scale.c:574 +#: ../app/display/gimpdisplayshell-scale.c:578 msgid "Zoom Ratio:" -msgstr "縮放比例:" +msgstr "縮放比例:" -#: app/display/gimpdisplayshell-scale.c:601 +#: ../app/display/gimpdisplayshell-scale.c:605 msgid "Zoom:" -msgstr "縮放:" +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 +#: ../app/display/gimpdisplayshell-title.c:292 msgid "(modified)" msgstr "(已修改)" -#: app/display/gimpdisplayshell-title.c:298 +#: ../app/display/gimpdisplayshell-title.c:298 msgid "(clean)" msgstr "" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 msgid "1 layer" msgstr "1 個圖層" -#: app/display/gimpdisplayshell-title.c:325 +#: ../app/display/gimpdisplayshell-title.c:325 #, c-format msgid "%d layers" msgstr "%d 個圖層" -#: app/display/gimpstatusbar.c:142 +#: ../app/display/gimpstatusbar.c:142 msgid "Shadow type" msgstr "陰影表示方å¼" -#: app/display/gimpstatusbar.c:143 +#: ../app/display/gimpstatusbar.c:143 msgid "Style of bevel around the statusbar text" msgstr "" -#: app/display/gimpstatusbar.c:218 +#: ../app/display/gimpstatusbar.c: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 +#: ../app/file/file-open.c:417 msgid "Image doesn't contain any visible layers" msgstr "" -#: app/file/file-save.c:220 +#: ../app/file/file-save.c:220 msgid "Plug-In could not save image" msgstr "增效模組無法儲存影åƒ" -#: app/file/file-utils.c:107 +#: ../app/file/file-utils.c:107 msgid "Invalid character sequence in URI" msgstr "URI 中出ç¾ç„¡æ•ˆçš„字符次åº" -#: app/gui/session.c:247 app/menus/menus.c:351 app/widgets/gimpdevices.c:218 +#: ../app/gui/session.c:247 ../app/menus/menus.c:351 +#: ../app/widgets/gimpdevices.c:218 #, c-format msgid "Deleting \"%s\" failed: %s" msgstr "刪除‘%s’失敗:%s" -#: app/gui/splash.c:118 +#: ../app/gui/splash.c:118 msgid "GIMP Startup" msgstr "å•Ÿå‹• GIMP" -#: 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 "塗污" +msgstr "塗抹" -#: app/paint/paint-enums.c:23 +#: ../app/paint/paint-enums.c:23 msgid "Image source" msgstr "å½±åƒä¾†æº" -#: app/paint/paint-enums.c:24 +#: ../app/paint/paint-enums.c:24 msgid "Pattern source" msgstr "圖樣來æº" -#: app/paint/paint-enums.c:52 +#: ../app/paint/paint-enums.c:52 msgid "Non-aligned" msgstr "ä¸å°é½Š" -#: app/paint/paint-enums.c:53 +#: ../app/paint/paint-enums.c:53 msgid "Aligned" msgstr "è¦å°é½Š" -#: app/paint/paint-enums.c:54 +#: ../app/paint/paint-enums.c:54 msgid "Registered" msgstr "å°é½Šå·¦ä¸Šè§’" -#: app/paint/paint-enums.c:81 app/widgets/gimpwidgets-constructors.c:60 -#: app/widgets/gimpwidgets-constructors.c:93 +#: ../app/paint/paint-enums.c:81 ../app/widgets/gimpwidgets-constructors.c:60 +#: ../app/widgets/gimpwidgets-constructors.c:93 msgid "Dodge" msgstr "漂白" -#: app/paint/paint-enums.c:82 app/widgets/gimpwidgets-constructors.c:61 -#: app/widgets/gimpwidgets-constructors.c:94 +#: ../app/paint/paint-enums.c:82 ../app/widgets/gimpwidgets-constructors.c:61 +#: ../app/widgets/gimpwidgets-constructors.c:94 msgid "Burn" msgstr "燻黑" -#: app/paint/paint-enums.c:109 +#: ../app/paint/paint-enums.c:109 msgid "Blur" msgstr "模糊化" -#: app/paint/paint-enums.c:110 +#: ../app/paint/paint-enums.c:110 msgid "Sharpen" msgstr "清晰化" -#: app/paint/paint-enums.c:167 +#: ../app/paint/paint-enums.c:167 msgid "Constant" msgstr "常數" -#: app/paint/paint-enums.c:168 app/tools/gimppaintoptions-gui.c:163 +#: ../app/paint/paint-enums.c:168 ../app/tools/gimppaintoptions-gui.c:163 msgid "Incremental" msgstr "éžå¢žæ¨¡å¼" -#: app/pdb/color_cmds.c:140 app/tools/gimpbrightnesscontrasttool.c:85 +#: ../app/pdb/color_cmds.c:140 ../app/tools/gimpbrightnesscontrasttool.c:85 msgid "Brightness-Contrast" msgstr "亮度åŠå°æ¯”" -#: app/pdb/color_cmds.c:457 app/tools/gimpposterizetool.c:78 +#: ../app/pdb/color_cmds.c:457 ../app/tools/gimpposterizetool.c:78 msgid "Posterize" msgstr "色調分離" -#: app/pdb/color_cmds.c:745 app/pdb/color_cmds.c:870 -#: app/tools/gimpcurvestool.c:141 +#: ../app/pdb/color_cmds.c:745 ../app/pdb/color_cmds.c:870 +#: ../app/tools/gimpcurvestool.c:141 msgid "Curves" msgstr "曲線" -#: app/pdb/color_cmds.c:995 app/tools/gimpcolorbalancetool.c:96 +#: ../app/pdb/color_cmds.c:995 ../app/tools/gimpcolorbalancetool.c:96 msgid "Color Balance" msgstr "色彩平衡" -#: app/pdb/color_cmds.c:1120 app/tools/gimpcolorizetool.c:96 +#: ../app/pdb/color_cmds.c:1120 ../app/tools/gimpcolorizetool.c:96 msgid "Colorize" msgstr "著色" -#: app/pdb/color_cmds.c:1399 app/tools/gimphuesaturationtool.c:110 +#: ../app/pdb/color_cmds.c:1399 ../app/tools/gimphuesaturationtool.c:110 msgid "Hue-Saturation" msgstr "色相åŠå½©åº¦" -#: app/pdb/color_cmds.c:1506 app/tools/gimpthresholdtool.c:92 +#: ../app/pdb/color_cmds.c:1506 ../app/tools/gimpthresholdtool.c:92 msgid "Threshold" msgstr "ç•Œé™å€¼" -#: app/pdb/drawable_transform_cmds.c:249 app/pdb/drawable_transform_cmds.c:404 -#, fuzzy +#: ../app/pdb/drawable_transform_cmds.c:249 +#: ../app/pdb/drawable_transform_cmds.c:404 msgid "Flip..." -msgstr "翻轉中..." +msgstr "" -#: app/pdb/drawable_transform_cmds.c:563 app/pdb/drawable_transform_cmds.c:746 -#: app/pdb/transform_tools_cmds.c:197 app/tools/gimpperspectivetool.c:141 +#: ../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 "正在進行推移..." +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 "正在進行混色..." +msgstr "進行混色..." -#: app/pdb/image_cmds.c:3756 app/text/gimptext-parasite.c:168 +#: ../app/pdb/image_cmds.c:3758 ../app/text/gimptext-parasite.c:168 msgid "(invalid UTF-8 string)" msgstr "(無效的 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 "å½±åƒçš„解æžåº¦è¶…出範åœï¼Œæœƒä½¿ç”¨é è¨­çš„解æžåº¦å–代。" +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 "筆刷介é¢" -#: 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 "" +msgstr "顯示程åº" -#: app/pdb/internal_procs.c:110 +#: ../app/pdb/internal_procs.c:110 msgid "Drawable procedures" msgstr "å¯ç¹ªç‰©ä»¶ç¨‹åº" -#: 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 "" -#: app/pdb/internal_procs.c:131 +#: ../app/pdb/internal_procs.c:131 msgid "Gimprc procedures" msgstr "Gimprc 程åº" -#: app/pdb/internal_procs.c:134 +#: ../app/pdb/internal_procs.c:134 msgid "Gradient" msgstr "漸層" -#: app/pdb/internal_procs.c:137 +#: ../app/pdb/internal_procs.c:137 msgid "Gradient UI" msgstr "漸層介é¢" -#: app/pdb/internal_procs.c:143 +#: ../app/pdb/internal_procs.c:143 msgid "Guide procedures" msgstr "åƒè€ƒç·šç¨‹åº" -#: app/pdb/internal_procs.c:146 +#: ../app/pdb/internal_procs.c:146 msgid "Help procedures" msgstr "說明程åº" -#: app/pdb/internal_procs.c:155 +#: ../app/pdb/internal_procs.c:155 msgid "Message procedures" msgstr "" -#: app/pdb/internal_procs.c:158 +#: ../app/pdb/internal_procs.c:158 msgid "Miscellaneous" msgstr "其它" -#: app/pdb/internal_procs.c:161 +#: ../app/pdb/internal_procs.c:161 msgid "Paint Tool procedures" msgstr "繪畫工具程åº" -#: app/pdb/internal_procs.c:164 -#, fuzzy +#: ../app/pdb/internal_procs.c:164 msgid "Palette" msgstr "色盤" -#: app/pdb/internal_procs.c:167 +#: ../app/pdb/internal_procs.c:167 msgid "Palette UI" msgstr "色盤介é¢" -#: app/pdb/internal_procs.c:173 +#: ../app/pdb/internal_procs.c:173 msgid "Parasite procedures" -msgstr "附帶物件程åº" +msgstr "附帶程åº" -#: app/pdb/internal_procs.c:182 +#: ../app/pdb/internal_procs.c:182 msgid "Pattern UI" msgstr "圖樣介é¢" -#: app/pdb/internal_procs.c:188 +#: ../app/pdb/internal_procs.c:188 msgid "Plug-in" msgstr "增效模組" -#: app/pdb/internal_procs.c:191 +#: ../app/pdb/internal_procs.c:191 msgid "Procedural database" msgstr "程åºè³‡æ–™åº«" -#: app/pdb/internal_procs.c:194 app/widgets/gimpprogressdialog.c:239 +#: ../app/pdb/internal_procs.c:194 ../app/widgets/gimpprogressdialog.c:239 msgid "Progress" msgstr "進度" -#: app/pdb/internal_procs.c:197 +#: ../app/pdb/internal_procs.c:197 msgid "Image mask" msgstr "å½±åƒé®ç½©" -#: app/pdb/internal_procs.c:200 +#: ../app/pdb/internal_procs.c:200 msgid "Selection Tool procedures" msgstr "é¸æ“‡å€åŸŸå·¥å…·ç¨‹åº" -#: app/pdb/internal_procs.c:203 +#: ../app/pdb/internal_procs.c:203 msgid "Text procedures" msgstr "文字程åº" -#: app/pdb/internal_procs.c:206 +#: ../app/pdb/internal_procs.c:206 msgid "Transform Tool procedures" msgstr "變æ›å·¥å…·ç¨‹åº" -#: app/pdb/procedural_db.c:254 +#: ../app/pdb/procedural_db.c:254 #, c-format msgid "" "PDB calling error:\n" @@ -7839,7 +7748,7 @@ "程åºè³‡æ–™åº«èª¿ç”¨éŒ¯èª¤ï¼š\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:392 #, c-format msgid "" "PDB calling error for procedure '%s':\n" @@ -7848,32 +7757,32 @@ "調用程åºâ€˜%s’時出ç¾éŒ¯èª¤ï¼š\n" "第 %d 個åƒæ•¸çš„é¡žåž‹ä¸ç¬¦ (應該是 %s 但實際上是 %s)" -#: app/pdb/procedural_db_cmds.c:80 +#: ../app/pdb/procedural_db_cmds.c:80 msgid "Internal GIMP procedure" msgstr "GIMP 內部程åº" -#: app/pdb/procedural_db_cmds.c:81 +#: ../app/pdb/procedural_db_cmds.c:81 msgid "GIMP Plug-In" msgstr "GIMP 增效模組" -#: app/pdb/procedural_db_cmds.c:82 +#: ../app/pdb/procedural_db_cmds.c:82 msgid "GIMP Extension" msgstr "GIMP 擴展功能" -#: app/pdb/procedural_db_cmds.c:83 +#: ../app/pdb/procedural_db_cmds.c:83 msgid "Temporary Procedure" msgstr "暫時性程åº" -#: app/pdb/selection_tools_cmds.c:332 app/tools/gimpfreeselecttool.c:96 +#: ../app/pdb/selection_tools_cmds.c:332 ../app/tools/gimpfreeselecttool.c:96 msgid "Free Select" msgstr "自由é¸æ“‡å€åŸŸ" -#: app/plug-in/plug-in.c:544 app/plug-in/plug-in.c:574 -#, 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" @@ -7888,129 +7797,129 @@ "已終止的增效模組å¯èƒ½æœƒæ“¾äº‚ GIMP 的內部狀態。為安全計,您或許應該儲存影åƒä¸¦é‡" "æ–°å•Ÿå‹• GIMP。" -#: 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 "" +msgstr "ç•¥éŽ â€˜%s’:GIMP 通訊å”定版本錯誤。" -#: app/plug-in/plug-in-rc.c:432 +#: ../app/plug-in/plug-in-rc.c:432 #, c-format msgid "invalid value '%s' for icon type" -msgstr "指定圖示類型的值‘%s’無效" +msgstr "指定圖示類型的值 ‘%s’ 無效" -#: app/plug-in/plug-in-rc.c:447 +#: ../app/plug-in/plug-in-rc.c:447 #, c-format msgid "invalid value '%ld' for icon type" -msgstr "指定圖示類型的值‘%ld’無效" +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 +#: ../app/text/text-enums.c:81 msgid "Left justified" msgstr "é å·¦å°é½Š" -#: app/text/text-enums.c:82 +#: ../app/text/text-enums.c:82 msgid "Right justified" msgstr "é å³å°é½Š" -#: app/text/text-enums.c:83 +#: ../app/text/text-enums.c:83 msgid "Centered" msgstr "置中" -#: app/text/text-enums.c:84 +#: ../app/text/text-enums.c:84 msgid "Filled" -msgstr "" +msgstr "å…©é‚Šå°é½Š" #. This is a so-called pangram; it's supposed to #. contain all characters found in the alphabet. -#: app/text/gimpfont.c:39 +#: ../app/text/gimpfont.c:39 msgid "" "Pack my box with\n" "five dozen liquor jugs." msgstr "This is Chinese test: '中文測試'" -#: 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 +#: ../app/text/gimptextlayer.c:171 msgid "Rename Text Layer" msgstr "更改文字圖層å稱" -#: app/text/gimptextlayer.c:172 +#: ../app/text/gimptextlayer.c:172 msgid "Move Text Layer" msgstr "移動文字圖層" -#: app/text/gimptextlayer.c:173 +#: ../app/text/gimptextlayer.c:173 msgid "Scale Text Layer" msgstr "縮放文字圖層" -#: app/text/gimptextlayer.c:174 +#: ../app/text/gimptextlayer.c:174 msgid "Resize Text Layer" msgstr "調整文字圖層尺寸" -#: app/text/gimptextlayer.c:175 +#: ../app/text/gimptextlayer.c:175 msgid "Flip Text Layer" msgstr "翻轉文字圖層" -#: app/text/gimptextlayer.c:176 +#: ../app/text/gimptextlayer.c:176 msgid "Rotate Text Layer" msgstr "旋轉文字圖層" -#: app/text/gimptextlayer.c:177 +#: ../app/text/gimptextlayer.c:177 msgid "Transform Text Layer" msgstr "變æ›æ–‡å­—圖層" -#: app/text/gimptextlayer.c:531 +#: ../app/text/gimptextlayer.c:531 msgid "Discard Text Information" msgstr "" -#: app/text/gimptextlayer.c:581 +#: ../app/text/gimptextlayer.c:581 msgid "Due to lack of any fonts, text functionality is not available." msgstr "因為缺ä¹å¯ä½¿ç”¨çš„字型,所以無法æ供文字功能。" -#: app/text/gimptextlayer.c:616 +#: ../app/text/gimptextlayer.c:616 msgid "Empty Text Layer" msgstr "空白文字圖層" -#: app/text/gimptextlayer-xcf.c:73 +#: ../app/text/gimptextlayer-xcf.c:73 #, c-format msgid "" "Problems parsing the text parasite for layer '%s':\n" @@ -8020,1209 +7929,1209 @@ "you don't need to worry about this." msgstr "" -#: app/tools/tools-enums.c:25 +#: ../app/tools/tools-enums.c:25 msgid "Pick only" msgstr "åªé¸æ“‡é¡è‰²" -#: app/tools/tools-enums.c:26 +#: ../app/tools/tools-enums.c:26 msgid "Set foreground color" msgstr "設定å‰æ™¯é¡è‰²" -#: app/tools/tools-enums.c:27 +#: ../app/tools/tools-enums.c:27 msgid "Set background color" msgstr "設定背景é¡è‰²" -#: app/tools/tools-enums.c:54 +#: ../app/tools/tools-enums.c:54 msgid "Crop" msgstr "è£å‰ª" -#: app/tools/tools-enums.c:55 +#: ../app/tools/tools-enums.c:55 msgid "Resize" msgstr "調整尺寸" -#: app/tools/tools-enums.c:83 +#: ../app/tools/tools-enums.c:83 msgid "Free select" msgstr "自由é¸æ“‡å€åŸŸ" -#: app/tools/tools-enums.c:84 +#: ../app/tools/tools-enums.c:84 msgid "Fixed size" msgstr "固定尺寸" -#: app/tools/tools-enums.c:85 +#: ../app/tools/tools-enums.c:85 msgid "Fixed aspect ratio" msgstr "固定長寬比" -#: app/tools/tools-enums.c:113 +#: ../app/tools/tools-enums.c:113 msgid "Transform layer" msgstr "變æ›åœ–層" -#: app/tools/tools-enums.c:114 +#: ../app/tools/tools-enums.c:114 msgid "Transform selection" msgstr "變æ›é¸æ“‡å€åŸŸ" -#: app/tools/tools-enums.c:115 +#: ../app/tools/tools-enums.c:115 msgid "Transform path" msgstr "變æ›è·¯å¾‘" -#: app/tools/tools-enums.c:143 +# (Abel) Design Path points +#: ../app/tools/tools-enums.c:143 msgid "Design" -msgstr "" +msgstr "åˆæ­¥è¨­è¨ˆ" -#: app/tools/tools-enums.c:145 app/tools/gimpmovetool.c:116 +#: ../app/tools/tools-enums.c:145 ../app/tools/gimpmovetool.c:116 msgid "Move" msgstr "移動" -#: app/tools/tools-enums.c:174 +#: ../app/tools/tools-enums.c:174 msgid "Outline" msgstr "輪廓" -#: app/tools/tools-enums.c:177 +#: ../app/tools/tools-enums.c:177 msgid "Image + Grid" msgstr "å½±åƒå’Œæ ¼ç·š" -#: app/tools/tools-enums.c:204 +#: ../app/tools/tools-enums.c:204 msgid "Number of grid lines" msgstr "格線數目" -#: app/tools/tools-enums.c:205 +#: ../app/tools/tools-enums.c:205 msgid "Grid line spacing" msgstr "格線è·é›¢" -#: app/tools/gimp-tools.c:283 +#: ../app/tools/gimp-tools.c: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 +#: ../app/tools/gimpairbrushtool.c:57 msgid "_Airbrush" 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 "強度:" +msgstr "強度:" -#: app/tools/gimpairbrushtool.c:129 +#: ../app/tools/gimpairbrushtool.c:129 msgid "Pressure:" -msgstr "壓力:" +msgstr "壓力:" -#: app/tools/gimpblendoptions.c:246 +#: ../app/tools/gimpblendoptions.c:246 msgid "Offset:" -msgstr "å移é‡ï¼š" +msgstr "å移ä½ç½®:" -#: app/tools/gimpblendoptions.c:255 app/widgets/gimpbrusheditor.c:145 +#: ../app/tools/gimpblendoptions.c:255 ../app/widgets/gimpbrusheditor.c:145 msgid "Shape:" -msgstr "形狀:" +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 "é‡è¤‡ï¼š" +msgstr "é‡è¤‡:" -#: app/tools/gimpblendoptions.c:279 +#: ../app/tools/gimpblendoptions.c:279 #, fuzzy msgid "Adaptive supersampling" msgstr "最é©æ€§è¶…å€çŽ‡å–樣 (Adaptive Supersampling)" -#: app/tools/gimpblendoptions.c:297 +#: ../app/tools/gimpblendoptions.c:297 msgid "Max Depth:" -msgstr "最大深度:" +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 "ç•Œé™å€¼ï¼š" +msgstr "ç•Œé™å€¼:" -#: app/tools/gimpblendtool.c:102 +#: ../app/tools/gimpblendtool.c:102 msgid "Fill with a color gradient" msgstr "填上漸層" -#: app/tools/gimpblendtool.c:103 +#: ../app/tools/gimpblendtool.c:103 msgid "Blen_d" msgstr "混色(_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 +#: ../app/tools/gimpbrightnesscontrasttool.c:87 msgid "B_rightness-Contrast..." 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):" +msgstr "亮度(_B):" -#: app/tools/gimpbrightnesscontrasttool.c:251 +#: ../app/tools/gimpbrightnesscontrasttool.c:251 msgid "Con_trast:" -msgstr "å°æ¯”(_T):" +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 +#: ../app/tools/gimpbucketfilloptions.c:254 msgid "Fill whole selection" msgstr "填滿整個é¸æ“‡å€åŸŸ" -#: app/tools/gimpbucketfilloptions.c:255 +#: ../app/tools/gimpbucketfilloptions.c:255 msgid "Fill similar colors" msgstr "åªå°‡è¿‘似的é¡è‰²å¡«è‰²" -#: app/tools/gimpbucketfilloptions.c:261 app/tools/gimpselectionoptions.c:438 +#: ../app/tools/gimpbucketfilloptions.c:261 +#: ../app/tools/gimpselectionoptions.c:438 msgid "Finding Similar Colors" msgstr "尋找相近的é¡è‰²" -#: app/tools/gimpbucketfilloptions.c:277 +#: ../app/tools/gimpbucketfilloptions.c:277 msgid "Fill transparent areas" msgstr "å°‡é€æ˜Žå€åŸŸå¡«è‰²" -#: app/tools/gimpbucketfilloptions.c:283 -#: app/tools/gimpcolorpickeroptions.c:179 app/tools/gimpselectionoptions.c:454 -#: app/tools/gimpselectionoptions.c:502 +#: ../app/tools/gimpbucketfilloptions.c:283 +#: ../app/tools/gimpcolorpickeroptions.c:179 +#: ../app/tools/gimpselectionoptions.c:454 +#: ../app/tools/gimpselectionoptions.c:502 msgid "Sample merged" msgstr "åˆä½µæ¨£æœ¬" -#: app/tools/gimpbucketfilltool.c:92 +#: ../app/tools/gimpbucketfilltool.c:92 msgid "Fill with a color or pattern" msgstr "填上é¡è‰²æˆ–圖樣" -#: app/tools/gimpbucketfilltool.c:93 +#: ../app/tools/gimpbucketfilltool.c:93 msgid "_Bucket Fill" msgstr "填色(_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 +#: ../app/tools/gimpbycolorselecttool.c:84 msgid "_By Color Select" msgstr "" -#: app/tools/gimpclonetool.c:90 +#: ../app/tools/gimpclonetool.c:90 msgid "Paint using Patterns or Image Regions" msgstr "使用圖樣或影åƒæŸå€åŸŸä¾†ç¹ªç•«" -#: app/tools/gimpclonetool.c:91 +#: ../app/tools/gimpclonetool.c:91 msgid "_Clone" msgstr "模仿(_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 +#: ../app/tools/gimpcolorbalancetool.c:98 msgid "Color _Balance..." 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 +#: ../app/tools/gimpcolorbalancetool.c:325 msgid "R_eset range" msgstr "é‡æ–°è¨­å®šç¯„åœ(_E)" -#: app/tools/gimpcolorbalancetool.c:334 +#: ../app/tools/gimpcolorbalancetool.c:334 msgid "Preserve _luminosity" msgstr "ä¿ç•™äº®åº¦(_L)" -#: app/tools/gimpcolorizetool.c:97 +#: ../app/tools/gimpcolorizetool.c:97 msgid "Colorize the image" msgstr "為影åƒè‘—色" -#: app/tools/gimpcolorizetool.c:98 +#: ../app/tools/gimpcolorizetool.c:98 msgid "Colori_ze..." msgstr "著色(_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):" +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):" +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):" +msgstr "亮度(_L):" -#: app/tools/gimpcoloroptions.c:184 +#: ../app/tools/gimpcoloroptions.c:184 msgid "Sample average" msgstr "å¹³å‡å–樣" -#: app/tools/gimpcoloroptions.c:194 app/tools/gimpselectionoptions.c:416 -#: app/widgets/gimpbrusheditor.c:153 +#: ../app/tools/gimpcoloroptions.c:194 ../app/tools/gimpselectionoptions.c:416 +#: ../app/widgets/gimpbrusheditor.c:153 msgid "Radius:" -msgstr "åŠå¾‘:" +msgstr "åŠå¾‘:" #. the pick FG/BG frame -#: app/tools/gimpcolorpickeroptions.c:184 +#: ../app/tools/gimpcolorpickeroptions.c:184 #, c-format msgid "Pick Mode %s" msgstr "é¸æ“‡æ¨¡å¼ %s" #. the add to palette toggle -#: app/tools/gimpcolorpickeroptions.c:193 +#: ../app/tools/gimpcolorpickeroptions.c:193 #, c-format msgid "Add to palette %s" 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 +#: ../app/tools/gimpcolorpickertool.c:101 msgid "C_olor Picker" 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 +#: ../app/tools/gimpconvolvetool.c:72 msgid "Con_volve" msgstr "模糊化或清晰化(_V)" #. the type radio box -#: app/tools/gimpconvolvetool.c:193 +#: ../app/tools/gimpconvolvetool.c:193 #, c-format msgid "Convolve Type %s" msgstr "Convolve æ–¹å¼ %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 +#: ../app/tools/gimpcropoptions.c:200 msgid "Current layer only" msgstr "僅é©ç”¨æ–¼ç›®å‰åœ–層" #. enlarge toggle -#: app/tools/gimpcropoptions.c:205 +#: ../app/tools/gimpcropoptions.c:205 #, c-format msgid "Allow enlarging %s" msgstr "å…許放大 %s" #. layer toggle -#: app/tools/gimpcropoptions.c:215 +#: ../app/tools/gimpcropoptions.c:215 #, c-format msgid "Keep aspect ratio %s" msgstr "固定長寬比 %s" -#: app/tools/gimpcroptool.c:164 +#: ../app/tools/gimpcroptool.c:164 msgid "Crop & Resize" msgstr "è£å‰ªåŠèª¿æ•´å°ºå¯¸" -#: app/tools/gimpcroptool.c:165 +#: ../app/tools/gimpcroptool.c:165 msgid "Crop or Resize an image" msgstr "è£å‰ªå½±åƒæˆ–調整影åƒå°ºå¯¸" -#: app/tools/gimpcroptool.c:166 +#: ../app/tools/gimpcroptool.c:166 msgid "_Crop & Resize" msgstr "è£å‰ªåŠèª¿æ•´å°ºå¯¸(_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 "è£å‰ªï¼š" +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:" +msgstr "原點 X:" -#: app/tools/gimpcroptool.c:1033 +#: ../app/tools/gimpcroptool.c:1033 msgid "Origin Y:" -msgstr "原點 Y:" +msgstr "原點 Y:" -#: app/tools/gimpcroptool.c:1071 app/widgets/gimpbrusheditor.c:194 +#: ../app/tools/gimpcroptool.c:1071 ../app/widgets/gimpbrusheditor.c:194 msgid "Aspect ratio:" -msgstr "長寬比:" +msgstr "長寬比:" -#: app/tools/gimpcroptool.c:1082 +#: ../app/tools/gimpcroptool.c:1082 msgid "From selection" msgstr "使用é¸æ“‡å€åŸŸ" -#: app/tools/gimpcroptool.c:1090 +#: ../app/tools/gimpcroptool.c:1090 msgid "Auto shrink" msgstr "自動收縮" -#: app/tools/gimpcurvestool.c:142 +#: ../app/tools/gimpcurvestool.c:142 msgid "Adjust color curves" msgstr "調整色彩曲線" -#: app/tools/gimpcurvestool.c:143 +#: ../app/tools/gimpcurvestool.c:143 msgid "_Curves..." msgstr "曲線(_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 "從檔案讀入曲線設定" +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 "色版:" +msgstr "色版:" -#: app/tools/gimpcurvestool.c:494 app/tools/gimplevelstool.c:430 +#: ../app/tools/gimpcurvestool.c:494 ../app/tools/gimplevelstool.c:430 msgid "R_eset channel" msgstr "é‡è¨­è‰²ç‰ˆ(_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 "曲線類型" -#: app/tools/gimpdodgeburntool.c:71 +#: ../app/tools/gimpdodgeburntool.c:71 msgid "Dodge or Burn strokes" msgstr "漂白或燻黑影åƒ" -#: app/tools/gimpdodgeburntool.c:72 +#: ../app/tools/gimpdodgeburntool.c:72 msgid "Dod_geBurn" msgstr "漂白/燻黑(_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 "æ›å…‰åº¦ï¼š" +msgstr "æ›å…‰åº¦:" -#: app/tools/gimpeditselectiontool.c:262 -#: app/tools/gimpeditselectiontool.c:1203 +#: ../app/tools/gimpeditselectiontool.c:262 +#: ../app/tools/gimpeditselectiontool.c:1203 msgid "Move Floating Selection" msgstr "移動浮動é¸æ“‡å€åŸŸ" -#: app/tools/gimpeditselectiontool.c:464 app/tools/gimpeditselectiontool.c:732 +#: ../app/tools/gimpeditselectiontool.c:464 +#: ../app/tools/gimpeditselectiontool.c:732 msgid "Move: " msgstr "移動:" -#: app/tools/gimpellipseselecttool.c:72 +#: ../app/tools/gimpellipseselecttool.c:72 msgid "Select elliptical regions" msgstr "é¸æ“‡æ©¢åœ“å€åŸŸ" -#: app/tools/gimpellipseselecttool.c:73 +#: ../app/tools/gimpellipseselecttool.c:73 msgid "_Ellipse Select" msgstr "é¸æ“‡æ©¢åœ“(_E)" -#: app/tools/gimperasertool.c:71 +#: ../app/tools/gimperasertool.c:71 msgid "Erase to background or transparency" msgstr "將影åƒæ“¦æˆåº•è‰²æˆ–é€æ˜Ž" -#: app/tools/gimperasertool.c:72 +#: ../app/tools/gimperasertool.c:72 msgid "_Eraser" msgstr "橡皮擦(_E)" #. the anti_erase toggle -#: app/tools/gimperasertool.c:185 +#: ../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 +#: ../app/tools/gimpfliptool.c:84 msgid "_Flip" msgstr "翻轉(_F)" -#: app/tools/gimpfreeselecttool.c:97 +#: ../app/tools/gimpfreeselecttool.c:97 msgid "Select hand-drawn regions" msgstr "é¸æ“‡äººæ‰‹ç¹ªç•«çš„å€åŸŸ" -#: app/tools/gimpfreeselecttool.c:98 +#: ../app/tools/gimpfreeselecttool.c:98 msgid "_Free Select" msgstr "自由é¸æ“‡å€åŸŸ(_F)" -#: app/tools/gimpfuzzyselecttool.c:98 +#: ../app/tools/gimpfuzzyselecttool.c:98 msgid "Select contiguous regions" msgstr "é¸æ“‡é€£çºŒé¡è‰²çš„å€åŸŸ" -#: app/tools/gimpfuzzyselecttool.c:99 +#: ../app/tools/gimpfuzzyselecttool.c:99 msgid "Fu_zzy Select" msgstr "é¸æ“‡æ¨¡ç³Šå€åŸŸ(_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 "調整色相åŠå½©åº¦" -#: app/tools/gimphuesaturationtool.c:112 +#: ../app/tools/gimphuesaturationtool.c:112 msgid "Hue-_Saturation..." msgstr "色相åŠå½©åº¦(_S)..." -#: app/tools/gimphuesaturationtool.c:166 +#: ../app/tools/gimphuesaturationtool.c:166 msgid "Adjust hue / lightness / saturation" msgstr "調整色相/亮度/彩度" -#: app/tools/gimphuesaturationtool.c:210 +#: ../app/tools/gimphuesaturationtool.c:210 msgid "Hue-Saturation operates only on RGB color layers." msgstr "「色相åŠå½©åº¦ã€åªé©ç”¨æ–¼ RGB 色系的圖層。" -#: app/tools/gimphuesaturationtool.c:263 +#: ../app/tools/gimphuesaturationtool.c:263 msgid "M_aster" 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 +#: ../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 "尺寸:" +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 "角度:" +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 "傾斜:" +msgstr "傾斜:" -#: app/tools/gimpinkoptions-gui.c:110 +#: ../app/tools/gimpinkoptions-gui.c:110 msgid "Speed:" -msgstr "速度:" +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 +#: ../app/tools/gimpinktool.c:64 msgid "In_k" 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 "智慧型剪刀(_I)" +msgstr "智慧型剪刀(_S)" -#: app/tools/gimplevelstool.c:161 +#: ../app/tools/gimplevelstool.c:161 msgid "Adjust color levels" msgstr "調整色階" -#: app/tools/gimplevelstool.c:162 +#: ../app/tools/gimplevelstool.c:162 msgid "_Levels..." -msgstr "" +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 "從檔案讀å–色階設定" +msgstr "由檔案讀å–色階設定" -#: app/tools/gimplevelstool.c:224 +#: ../app/tools/gimplevelstool.c:224 msgid "Save Levels" msgstr "儲存色階" -#: app/tools/gimplevelstool.c:225 +#: ../app/tools/gimplevelstool.c:225 msgid "Save levels settings to file" msgstr "將色階設定儲存至檔案" -#: app/tools/gimplevelstool.c:285 +#: ../app/tools/gimplevelstool.c:285 msgid "Levels for indexed layers cannot be adjusted." msgstr "無法調整索引色圖層的色階。" -#: app/tools/gimplevelstool.c:355 +#: ../app/tools/gimplevelstool.c:355 msgid "Pick black point" msgstr "é¸å–黑色ä½ç½®" -#: app/tools/gimplevelstool.c:359 +#: ../app/tools/gimplevelstool.c:359 msgid "Pick gray point" msgstr "é¸å–ç°è‰²ä½ç½®" -#: app/tools/gimplevelstool.c:363 +#: ../app/tools/gimplevelstool.c:363 msgid "Pick white point" msgstr "é¸å–白色ä½ç½®" #. Input levels frame -#: app/tools/gimplevelstool.c:445 +#: ../app/tools/gimplevelstool.c:445 msgid "Input Levels" msgstr "" -#: app/tools/gimplevelstool.c:539 +#: ../app/tools/gimplevelstool.c:539 msgid "Gamma" msgstr "Gamma" #. Output levels frame -#: app/tools/gimplevelstool.c:569 +#: ../app/tools/gimplevelstool.c:569 msgid "Output Levels" msgstr "" -#: app/tools/gimplevelstool.c:667 +#: ../app/tools/gimplevelstool.c:667 msgid "Adjust levels automatically" msgstr "自動調整色階" -#: app/tools/gimpmagnifyoptions.c:203 +#: ../app/tools/gimpmagnifyoptions.c:203 msgid "Auto-resize window" msgstr "自動調整視窗尺寸" -#: app/tools/gimpmagnifytool.c:95 +#: ../app/tools/gimpmagnifytool.c:95 msgid "Magnify" msgstr "放大é¡" -#: app/tools/gimpmagnifytool.c:96 +#: ../app/tools/gimpmagnifytool.c:96 msgid "Zoom in & out" msgstr "拉近åŠæ‹‰é " -#: app/tools/gimpmagnifytool.c:97 +#: ../app/tools/gimpmagnifytool.c:97 msgid "M_agnify" msgstr "放大é¡(_A)" -#: app/tools/gimpmeasureoptions.c:157 +#: ../app/tools/gimpmeasureoptions.c:157 msgid "Use info window" msgstr "使用資訊視窗" -#: app/tools/gimpmeasuretool.c:118 +#: ../app/tools/gimpmeasuretool.c:118 msgid "Measure" msgstr "測é‡" -#: app/tools/gimpmeasuretool.c:119 +#: ../app/tools/gimpmeasuretool.c:119 msgid "Measure distances and angles" msgstr "測é‡è·é›¢å’Œè§’度" -#: app/tools/gimpmeasuretool.c:120 +#: ../app/tools/gimpmeasuretool.c:120 msgid "_Measure" 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 "è·é›¢ï¼š" +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 +#: ../app/tools/gimpmoveoptions.c:172 msgid "Move the current layer" msgstr "移動目å‰çš„圖層" -#: app/tools/gimpmoveoptions.c:176 +#: ../app/tools/gimpmoveoptions.c:176 msgid "Move selection" msgstr "移動é¸æ“‡å€åŸŸ" -#: app/tools/gimpmoveoptions.c:180 -#, fuzzy +#: ../app/tools/gimpmoveoptions.c:180 msgid "Pick a path" -msgstr "é¸æ“‡æº–備移動的路徑" +msgstr "é¸æ“‡è·¯å¾‘" -#: app/tools/gimpmoveoptions.c:181 +#: ../app/tools/gimpmoveoptions.c:181 msgid "Move the current path" msgstr "移動目å‰çš„路徑" -#: app/tools/gimpmovetool.c:117 +#: ../app/tools/gimpmovetool.c:117 msgid "Move layers & selections" msgstr "移動圖層åŠé¸æ“‡å€åŸŸ" -#: app/tools/gimpmovetool.c:118 +#: ../app/tools/gimpmovetool.c:118 msgid "_Move" 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 "移動åƒè€ƒç·š" +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 "新增åƒè€ƒç·š" +msgstr "加入åƒè€ƒç·šï¼š" -#: app/tools/gimppaintbrushtool.c:52 +#: ../app/tools/gimppaintbrushtool.c:52 msgid "Paint fuzzy brush strokes" msgstr "掃出模糊的畫筆筆觸" -#: app/tools/gimppaintbrushtool.c:53 +#: ../app/tools/gimppaintbrushtool.c:53 msgid "_Paintbrush" msgstr "ç•«ç­†(_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 "é€æ˜Žåº¦ï¼š" +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 "模å¼ï¼š" +msgstr "模å¼:" -#: app/tools/gimppaintoptions-gui.c:126 +#: ../app/tools/gimppaintoptions-gui.c:126 msgid "Brush:" -msgstr "筆刷:" +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 "漸層:" +msgstr "漸層:" -#: app/tools/gimppaintoptions-gui.c:177 +#: ../app/tools/gimppaintoptions-gui.c:177 msgid "Hard edge" msgstr "邊界較分明" -#: app/tools/gimppaintoptions-gui.c:216 +#: ../app/tools/gimppaintoptions-gui.c:216 msgid "Pressure sensitivity" msgstr "壓力會影響" -#: app/tools/gimppaintoptions-gui.c:236 +#: ../app/tools/gimppaintoptions-gui.c:236 msgid "Opacity" msgstr "é€æ˜Žåº¦" -#: app/tools/gimppaintoptions-gui.c:250 +#: ../app/tools/gimppaintoptions-gui.c:250 msgid "Hardness" msgstr "硬度" -#: app/tools/gimppaintoptions-gui.c:261 +#: ../app/tools/gimppaintoptions-gui.c:261 msgid "Rate" msgstr "速率" -#: app/tools/gimppaintoptions-gui.c:274 +#: ../app/tools/gimppaintoptions-gui.c:274 msgid "Size" msgstr "尺寸" -#: app/tools/gimppaintoptions-gui.c:313 +#: ../app/tools/gimppaintoptions-gui.c:313 msgid "Fade out" msgstr "淡出" -#: app/tools/gimppaintoptions-gui.c:333 app/tools/gimppaintoptions-gui.c:403 +#: ../app/tools/gimppaintoptions-gui.c:333 +#: ../app/tools/gimppaintoptions-gui.c:404 msgid "Length:" -msgstr "長度:" +msgstr "長度:" -#: app/tools/gimppaintoptions-gui.c:367 +#: ../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 +#: ../app/tools/gimppenciltool.c:53 msgid "Pe_ncil" 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 +#: ../app/tools/gimpperspectivetool.c:83 msgid "_Perspective" 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 "矩陣:" +msgstr "矩陣:" -#: app/tools/gimpposterizetool.c:79 +#: ../app/tools/gimpposterizetool.c:79 msgid "Reduce image to a fixed number of colors" msgstr "將影åƒé¡è‰²æ¸›å°‘至固定的數目" -#: app/tools/gimpposterizetool.c:80 +#: ../app/tools/gimpposterizetool.c:80 msgid "_Posterize..." msgstr "色調分離(_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 +#: ../app/tools/gimpposterizetool.c:223 msgid "Posterize _levels:" -msgstr "色調分離程度(_L):" +msgstr "色調分離程度(_L):" -#: app/tools/gimprectselecttool.c:97 +#: ../app/tools/gimprectselecttool.c:97 msgid "Select rectangular regions" msgstr "é¸æ“‡çŸ©å½¢å€åŸŸ" -#: app/tools/gimprectselecttool.c:98 +#: ../app/tools/gimprectselecttool.c:98 msgid "_Rect Select" 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 +#: ../app/tools/gimprotatetool.c:99 msgid "_Rotate" 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:" +msgstr "中心點 X 座標:" -#: app/tools/gimprotatetool.c:190 -#, fuzzy +#: ../app/tools/gimprotatetool.c:190 msgid "Center Y:" -msgstr "中心點 X:" +msgstr "中心點 Y 座標:" -#: app/tools/gimpscaletool.c:91 +#: ../app/tools/gimpscaletool.c:91 msgid "Scale" msgstr "縮放" -#: app/tools/gimpscaletool.c:92 +#: ../app/tools/gimpscaletool.c:92 msgid "Scale the layer or selection" msgstr "縮放圖層或é¸æ“‡å€åŸŸ" -#: app/tools/gimpscaletool.c:93 +#: ../app/tools/gimpscaletool.c:93 msgid "_Scale" msgstr "縮放(_S)" -#: app/tools/gimpscaletool.c:152 +#: ../app/tools/gimpscaletool.c:152 msgid "Scaling information" msgstr "有關縮放的資訊" -#: app/tools/gimpscaletool.c:163 +#: ../app/tools/gimpscaletool.c:163 msgid "Original Width:" -msgstr "原來寬度:" +msgstr "原來寬度:" -#: app/tools/gimpscaletool.c:170 +#: ../app/tools/gimpscaletool.c:170 msgid "Current width:" -msgstr "ç›®å‰çš„寬度:" +msgstr "ç›®å‰çš„寬度:" -#: app/tools/gimpscaletool.c:174 +#: ../app/tools/gimpscaletool.c:174 msgid "Current height:" -msgstr "ç›®å‰çš„高度:" +msgstr "ç›®å‰çš„高度:" -#: app/tools/gimpscaletool.c:189 +#: ../app/tools/gimpscaletool.c:189 msgid "Scale ratio X:" -msgstr "水平縮放比例:" +msgstr "水平縮放比例:" -#: app/tools/gimpscaletool.c:192 +#: ../app/tools/gimpscaletool.c:192 msgid "Scale ratio Y:" -msgstr "垂直縮放比例:" +msgstr "垂直縮放比例:" -#: app/tools/gimpscaletool.c:196 +#: ../app/tools/gimpscaletool.c:196 msgid "Aspect Ratio:" -msgstr "長寬比例:" +msgstr "長寬比例:" -#: app/tools/gimpselectionoptions.c:136 +#: ../app/tools/gimpselectionoptions.c:136 msgid "Smooth edges" msgstr "將邊緣平滑化" -#: app/tools/gimpselectionoptions.c:150 +#: ../app/tools/gimpselectionoptions.c:150 msgid "Allow completely transparent regions to be selected" msgstr "å¯é¸å–完全é€æ˜Žçš„å€åŸŸ" -#: app/tools/gimpselectionoptions.c:156 +#: ../app/tools/gimpselectionoptions.c:156 msgid "Base selection on all visible layers" msgstr "" -#: app/tools/gimpselectionoptions.c:171 +#: ../app/tools/gimpselectionoptions.c:171 msgid "Use all visible layers when shrinking the selection" msgstr "" -#: app/tools/gimpselectionoptions.c:382 app/tools/gimptextoptions.c:447 +#: ../app/tools/gimpselectionoptions.c:382 ../app/tools/gimptextoptions.c:447 msgid "Antialiasing" msgstr "平滑化" -#: app/tools/gimpselectionoptions.c:399 +#: ../app/tools/gimpselectionoptions.c:399 msgid "Feather edges" msgstr "羽化邊緣" -#: app/tools/gimpselectionoptions.c:425 +#: ../app/tools/gimpselectionoptions.c:425 msgid "Show interactive boundary" msgstr "å³æ™‚顯示邊界" -#: app/tools/gimpselectionoptions.c:448 +#: ../app/tools/gimpselectionoptions.c:448 msgid "Select transparent areas" msgstr "é¸å–é€æ˜Žå€åŸŸ" -#: app/tools/gimpselectionoptions.c:488 +#: ../app/tools/gimpselectionoptions.c:488 msgid "Auto shrink selection" msgstr "自動收縮é¸æ“‡ç¯„åœ" -#: app/tools/gimpsheartool.c:98 +#: ../app/tools/gimpsheartool.c:98 msgid "Shear" msgstr "推移" -#: app/tools/gimpsheartool.c:99 +#: ../app/tools/gimpsheartool.c:99 msgid "Shear the layer or selection" msgstr "推移圖層或é¸æ“‡å€åŸŸ" -#: app/tools/gimpsheartool.c:100 +#: ../app/tools/gimpsheartool.c:100 msgid "S_hear" msgstr "推移(_H)" -#: app/tools/gimpsheartool.c:157 +#: ../app/tools/gimpsheartool.c:157 msgid "Shearing Information" msgstr "有關推移的資訊" -#: app/tools/gimpsheartool.c:167 +#: ../app/tools/gimpsheartool.c:167 msgid "Shear magnitude X:" -msgstr "水平推移幅度:" +msgstr "水平推移幅度:" -#: app/tools/gimpsheartool.c:174 +#: ../app/tools/gimpsheartool.c:174 msgid "Shear magnitude Y:" -msgstr "垂直推移幅度:" +msgstr "垂直推移幅度:" -#: app/tools/gimpsmudgetool.c:55 +#: ../app/tools/gimpsmudgetool.c:55 msgid "Smudge image" -msgstr "塗污影åƒ" +msgstr "塗抹影åƒ" -#: app/tools/gimpsmudgetool.c:56 +#: ../app/tools/gimpsmudgetool.c:56 msgid "_Smudge" -msgstr "塗污(_S)" +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 "_Hinting" +msgstr "Hinting" -#: app/tools/gimptextoptions.c:438 +#: ../app/tools/gimptextoptions.c:438 msgid "Force auto-hinter" -msgstr "" +msgstr "強制使用 auto-hinter" -#: 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 "é¡è‰²ï¼š" +msgstr "é¡è‰²:" -#: app/tools/gimptextoptions.c:463 +#: ../app/tools/gimptextoptions.c:463 msgid "Justify:" -msgstr "å°é½Šæ–¹å¼ï¼š" +msgstr "å°é½Šæ–¹å¼:" -#: app/tools/gimptextoptions.c:469 +#: ../app/tools/gimptextoptions.c:469 msgid "Indent:" -msgstr "縮排:" +msgstr "縮排:" -#: app/tools/gimptextoptions.c:475 +#: ../app/tools/gimptextoptions.c:475 msgid "" "Line\n" "spacing:" -msgstr "è¡Œè·ï¼š" +msgstr "è¡Œè·:" # More detail explanation then original english -- Abel -#: app/tools/gimptextoptions.c:478 +#: ../app/tools/gimptextoptions.c:478 msgid "Create path from text" msgstr "ä¾æ–‡å­—輪廓製作路徑" -#: app/tools/gimptexttool.c:143 +#: ../app/tools/gimptexttool.c:145 msgid "Add text to the image" msgstr "將文字加進影åƒä¸­" -#: app/tools/gimptexttool.c:144 +#: ../app/tools/gimptexttool.c:146 msgid "Te_xt" msgstr "文字(_X)" -#: 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 " @@ -9231,85 +9140,85 @@ "You can edit the layer or create a new text layer from its text attributes." msgstr "" -#: app/tools/gimpthresholdtool.c:93 +#: ../app/tools/gimpthresholdtool.c:93 msgid "Reduce image to two colors using a threshold" msgstr "將影åƒçš„é¡è‰²æ¸›ç‚ºå…©ç¨®ï¼Œç”±æŸå€‹ç•Œé™å€¼æ±ºå®š" -#: app/tools/gimpthresholdtool.c:94 +#: ../app/tools/gimpthresholdtool.c:94 msgid "_Threshold..." msgstr "ç•Œé™å€¼(_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 "å…§æ’法:" +msgstr "å…§æ’法:" -#: app/tools/gimptransformoptions.c:348 +#: ../app/tools/gimptransformoptions.c:348 msgid "Supersampling" msgstr "超å€çŽ‡å–樣 (Supersampling)" #. the clip resulting image toggle button -#: app/tools/gimptransformoptions.c:353 +#: ../app/tools/gimptransformoptions.c:353 msgid "Clip result" msgstr "è£å‰ªçµæžœ" -#: app/tools/gimptransformoptions.c:367 +#: ../app/tools/gimptransformoptions.c:367 msgid "Preview:" -msgstr "é è¦½ï¼š" +msgstr "é è¦½:" #. the constraints frame -#: app/tools/gimptransformoptions.c:413 +#: ../app/tools/gimptransformoptions.c:413 msgid "Constraints" msgstr "é™åˆ¶" -#: app/tools/gimptransformoptions.c:425 +#: ../app/tools/gimptransformoptions.c:425 #, c-format msgid "15 degrees %s" msgstr "15 度 %s" -#: app/tools/gimptransformoptions.c:445 +#: ../app/tools/gimptransformoptions.c:445 #, c-format msgid "Keep height %s" msgstr "ä¿æŒé«˜åº¦ %s" -#: app/tools/gimptransformoptions.c:447 +#: ../app/tools/gimptransformoptions.c:447 #, c-format msgid "Keep width %s" msgstr "ä¿æŒå¯¬åº¦ %s" -#: app/tools/gimptransformoptions.c:449 +#: ../app/tools/gimptransformoptions.c:449 #, c-format msgid "Keep aspect %s" msgstr "ä¿æŒé•·å¯¬æ¯” %s" -#: app/tools/gimptransformtool.c:253 +#: ../app/tools/gimptransformtool.c:253 msgid "Transforming..." msgstr "正在進行變æ›..." -#: app/tools/gimpvectoroptions.c:113 +#: ../app/tools/gimpvectoroptions.c:113 msgid "Restrict editing to polygons" msgstr "" -#: app/tools/gimpvectoroptions.c:177 +#: ../app/tools/gimpvectoroptions.c:177 msgid "Edit Mode" msgstr "編輯模å¼" -#: app/tools/gimpvectoroptions.c:182 +#: ../app/tools/gimpvectoroptions.c:182 msgid "Polygonal" msgstr "多邊形" -#: app/tools/gimpvectoroptions.c:186 +#: ../app/tools/gimpvectoroptions.c:186 #, c-format msgid "" "Path to Selection\n" @@ -9322,1011 +9231,1015 @@ "%s 刪減\n" "%s 交集" -#: app/tools/gimpvectoroptions.c:196 +#: ../app/tools/gimpvectoroptions.c:196 msgid "Create selection from path" msgstr "由路徑產生é¸æ“‡å€åŸŸ" -#: app/tools/gimpvectoroptions.c:207 +#: ../app/tools/gimpvectoroptions.c:207 msgid "Stroke path" msgstr "ä¾è·¯å¾‘æé‚Š" -#: app/tools/gimpvectortool.c:161 +#: ../app/tools/gimpvectortool.c:161 msgid "Create and edit paths" msgstr "製作和修改路徑" -#: app/tools/gimpvectortool.c:363 +#: ../app/tools/gimpvectortool.c:363 msgid "Add Stroke" msgstr "" -#: app/tools/gimpvectortool.c:381 +#: ../app/tools/gimpvectortool.c:381 msgid "Add Anchor" msgstr "" -#: app/tools/gimpvectortool.c:404 +#: ../app/tools/gimpvectortool.c:404 msgid "Insert Anchor" msgstr "" -#: app/tools/gimpvectortool.c:433 +#: ../app/tools/gimpvectortool.c:433 msgid "Drag Handle" msgstr "" -#: app/tools/gimpvectortool.c:462 +#: ../app/tools/gimpvectortool.c:462 msgid "Drag Anchor" msgstr "" -#: app/tools/gimpvectortool.c:479 +#: ../app/tools/gimpvectortool.c:479 msgid "Drag Anchors" msgstr "" -#: app/tools/gimpvectortool.c:499 +#: ../app/tools/gimpvectortool.c:499 msgid "Drag Curve" msgstr "" -#: app/tools/gimpvectortool.c:527 +#: ../app/tools/gimpvectortool.c:527 msgid "Connect Strokes" msgstr "" -#: app/tools/gimpvectortool.c:557 +#: ../app/tools/gimpvectortool.c:557 msgid "Drag Path" msgstr "拖曳路徑" -#: app/tools/gimpvectortool.c:567 +#: ../app/tools/gimpvectortool.c:567 msgid "Convert Edge" msgstr "" -#: app/tools/gimpvectortool.c:597 +#: ../app/tools/gimpvectortool.c:597 msgid "Delete Anchor" msgstr "刪除å‘é‡" -#: app/tools/gimpvectortool.c:619 +#: ../app/tools/gimpvectortool.c:619 msgid "Delete Segment" msgstr "刪除å€æ®µ" -#: app/tools/gimpvectortool.c:831 +#: ../app/tools/gimpvectortool.c:831 msgid "Move Anchors" msgstr "" -#: app/tools/gimpvectortool.c:1196 +#: ../app/tools/gimpvectortool.c:1196 msgid "Click to pick path to edit." msgstr "按下這裡å¯ä»¥é¸æ“‡æ‚¨æº–備編輯的路徑。" -#: app/tools/gimpvectortool.c:1199 +#: ../app/tools/gimpvectortool.c:1199 msgid "Click to create a new path." msgstr "按下這裡å¯ä»¥è£½ä½œæ–°çš„路徑。" -#: app/tools/gimpvectortool.c:1202 +#: ../app/tools/gimpvectortool.c:1202 msgid "Click to create a new component of the path." msgstr "" -#: app/tools/gimpvectortool.c:1205 +#: ../app/tools/gimpvectortool.c:1205 msgid "Click to create a new anchor. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1208 +#: ../app/tools/gimpvectortool.c:1208 msgid "Click-Drag to move the anchor around." msgstr "" -#: app/tools/gimpvectortool.c:1211 +#: ../app/tools/gimpvectortool.c:1211 ../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 "" -#: app/tools/gimpvectortool.c:1217 +#: ../app/tools/gimpvectortool.c:1220 msgid "Click-Drag to change the shape of the curve. (SHIFT: symmetrical)" msgstr "" -#: app/tools/gimpvectortool.c:1221 +#: ../app/tools/gimpvectortool.c:1224 msgid "Click-Drag to move the component around. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1225 +#: ../app/tools/gimpvectortool.c:1228 msgid "Click-Drag to move the path around." msgstr "按下後拖曳å¯ä»¥ç§»å‹•è·¯å¾‘。" -#: app/tools/gimpvectortool.c:1228 +#: ../app/tools/gimpvectortool.c:1231 msgid "Click to insert an anchor on the path. (try SHIFT)" msgstr "" -#: app/tools/gimpvectortool.c:1231 +#: ../app/tools/gimpvectortool.c:1234 msgid "Click to delete this anchor." msgstr "" -#: app/tools/gimpvectortool.c:1234 +#: ../app/tools/gimpvectortool.c:1237 msgid "Click to connect this anchor with the selected endpoint." msgstr "" -#: app/tools/gimpvectortool.c:1238 +#: ../app/tools/gimpvectortool.c:1241 msgid "Click to open up the path." msgstr "" -#: app/tools/gimpvectortool.c:1241 +#: ../app/tools/gimpvectortool.c:1244 msgid "Click to make this node angular." msgstr "" -#: app/tools/gimpvectortool.c:1751 +#: ../app/tools/gimpvectortool.c:1761 msgid "Delete Anchors" msgstr "" -#: app/tools/gimpvectortool.c:1918 +#: ../app/tools/gimpvectortool.c:1928 msgid "There is no active layer or channel to stroke to" msgstr "ç›®å‰æ²’有任何使用中的圖層或者色版å¯ä»¥ç”¨ä¾†æé‚Š" -#: 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 +#: ../app/widgets/gimpactionview.c:354 +#: ../app/widgets/gimpcontrollereditor.c:374 msgid "Action" msgstr "" -#: app/widgets/gimpactionview.c:383 +#: ../app/widgets/gimpactionview.c:383 msgid "Shortcut" msgstr "æ·å¾‘éµ" -#: app/widgets/gimpactionview.c:405 +#: ../app/widgets/gimpactionview.c:405 msgid "Name" msgstr "å稱" -#: app/widgets/gimpactionview.c:545 app/widgets/gimpactionview.c:738 +#: ../app/widgets/gimpactionview.c:545 ../app/widgets/gimpactionview.c:738 msgid "Changing shortcut failed." msgstr "無法更改æ·å¾‘éµã€‚" -#: app/widgets/gimpactionview.c:585 +#: ../app/widgets/gimpactionview.c:585 msgid "Conflicting Shortcuts" msgstr "æ·å¾‘éµæœ‰è¡çª" -#: app/widgets/gimpactionview.c:591 -#, fuzzy +#: ../app/widgets/gimpactionview.c:591 msgid "_Reassign shortcut" -msgstr "é‡æ–°è¨­å®šæ·å¾‘éµ(_R)" +msgstr "é‡æ–°å®‰æŽ’æ·å¾‘éµ(_R)" -#: app/widgets/gimpactionview.c:602 +#: ../app/widgets/gimpactionview.c:602 #, c-format msgid "Shortcut \"%s\" is already taken by \"%s\" from the \"%s\" group." -msgstr "" +msgstr "‘%3$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 "" -#: app/widgets/gimpactionview.c:673 +#: ../app/widgets/gimpactionview.c:673 msgid "Removing shortcut failed." msgstr "無法移除æ·å¾‘éµã€‚" -#: app/widgets/gimpactionview.c:678 +#: ../app/widgets/gimpactionview.c:678 msgid "Invalid shortcut." msgstr "æ·å¾‘éµä¸åˆæ³•ã€‚" -#: app/widgets/gimpbrusheditor.c:168 +#: ../app/widgets/gimpbrusheditor.c:168 msgid "Spikes:" msgstr "" -#: app/widgets/gimpbrusheditor.c:181 +#: ../app/widgets/gimpbrusheditor.c:181 msgid "Hardness:" -msgstr "硬度:" +msgstr "硬度:" -#: app/widgets/gimpbrusheditor.c:220 app/widgets/gimpbrushfactoryview.c:114 +#: ../app/widgets/gimpbrusheditor.c:220 +#: ../app/widgets/gimpbrushfactoryview.c:114 msgid "Spacing:" -msgstr "間隔:" +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 "å¯ä½¿ç”¨çš„濾é¡" +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 "使用中的濾é¡" +msgstr "使用中的濾色片" -#: app/widgets/gimpcolordisplayeditor.c:322 +#: ../app/widgets/gimpcolordisplayeditor.c:322 msgid "Reset the selected filter to default values" msgstr "" -#: app/widgets/gimpcolordisplayeditor.c:543 +#: ../app/widgets/gimpcolordisplayeditor.c:543 #, c-format msgid "Configure selected filter: %s" -msgstr "設定指定的濾é¡ï¼š%s" +msgstr "設定指定的濾色片:%s" -#: app/widgets/gimpcolordisplayeditor.c:550 +#: ../app/widgets/gimpcolordisplayeditor.c:550 msgid "No filter selected" -msgstr "未é¸å®šæ¿¾é¡" +msgstr "未é¸å®šæ¿¾è‰²ç‰‡" -#: app/widgets/gimpcolordisplayeditor.c:554 +#: ../app/widgets/gimpcolordisplayeditor.c:554 msgid "Configure selected filter" -msgstr "設定指定的濾é¡" +msgstr "設定指定的濾色片" -#: app/widgets/gimpcolorframe.c:240 +#: ../app/widgets/gimpcolorframe.c:240 msgid "Index:" -msgstr "索引:" +msgstr "索引:" -#: app/widgets/gimpcolorframe.c:244 app/widgets/gimpcolorframe.c:265 +#: ../app/widgets/gimpcolorframe.c:244 ../app/widgets/gimpcolorframe.c:265 msgid "Red:" -msgstr "紅:" +msgstr "ç´…:" -#: app/widgets/gimpcolorframe.c:245 app/widgets/gimpcolorframe.c:266 +#: ../app/widgets/gimpcolorframe.c:245 ../app/widgets/gimpcolorframe.c:266 msgid "Green:" -msgstr "綠:" +msgstr "綠:" -#: app/widgets/gimpcolorframe.c:246 app/widgets/gimpcolorframe.c:267 +#: ../app/widgets/gimpcolorframe.c:246 ../app/widgets/gimpcolorframe.c:267 msgid "Blue:" -msgstr "è—:" +msgstr "è—:" -#: app/widgets/gimpcolorframe.c:256 app/widgets/gimpcolorframe.c:287 +#: ../app/widgets/gimpcolorframe.c:256 ../app/widgets/gimpcolorframe.c:287 msgid "Value:" -msgstr "亮度:" +msgstr "亮度:" -#: app/widgets/gimpcolorframe.c:275 +#: ../app/widgets/gimpcolorframe.c:275 msgid "Hex:" -msgstr "16 進制:" +msgstr "16 進制:" -#: app/widgets/gimpcolorframe.c:285 +#: ../app/widgets/gimpcolorframe.c:285 msgid "Hue:" -msgstr "色相:" +msgstr "色相:" -#: app/widgets/gimpcolorframe.c:286 +#: ../app/widgets/gimpcolorframe.c:286 msgid "Sat.:" -msgstr "彩度:" +msgstr "彩度:" -#: app/widgets/gimpcolorframe.c:303 +#: ../app/widgets/gimpcolorframe.c:303 msgid "Cyan:" -msgstr "æ°°è—:" +msgstr "æ°°è—:" -#: app/widgets/gimpcolorframe.c:304 +#: ../app/widgets/gimpcolorframe.c:304 msgid "Magenta:" -msgstr "洋紅:" +msgstr "æ´‹ç´…:" -#: app/widgets/gimpcolorframe.c:305 +#: ../app/widgets/gimpcolorframe.c:305 msgid "Yellow:" -msgstr "黃:" +msgstr "黃:" -#: app/widgets/gimpcolorframe.c:306 +#: ../app/widgets/gimpcolorframe.c:306 msgid "Black:" -msgstr "黑:" +msgstr "黑:" -#: app/widgets/gimpcolorframe.c:320 +#: ../app/widgets/gimpcolorframe.c:320 msgid "Alpha:" -msgstr "é€æ˜Žï¼š" +msgstr "é€æ˜Ž:" -#: app/widgets/gimpcolormapeditor.c:247 +#: ../app/widgets/gimpcolormapeditor.c:247 msgid "Color index:" -msgstr "色彩索引:" +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 +# FIXME (Abel) event 有沒有比較好的翻譯? +#: ../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 "啟用這個輸入è£ç½®" -#: app/widgets/gimpcontrollereditor.c:236 +#: ../app/widgets/gimpcontrollereditor.c:236 msgid "Name:" -msgstr "å稱(_N):" +msgstr "å稱(_N):" -#: app/widgets/gimpcontrollereditor.c:369 +# FIXME (Abel) event 有沒有比較好的翻譯? +#: ../app/widgets/gimpcontrollereditor.c:369 msgid "Event" -msgstr "" +msgstr "事件" -#: app/widgets/gimpcontrollereditor.c:550 +# FIXME (Abel) event 有沒有比較好的翻譯? +#: ../app/widgets/gimpcontrollereditor.c:550 msgid "Select Controller Event Action" msgstr "" -#: app/widgets/gimpcontrollerkeyboard.c:69 +#: ../app/widgets/gimpcontrollerkeyboard.c:69 msgid "Key Up (Shift + Control + Alt)" msgstr "ä¸Šç®­å’€éµ (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:72 +#: ../app/widgets/gimpcontrollerkeyboard.c:72 msgid "Key Up (Control + Alt)" msgstr "ä¸Šç®­å’€éµ (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:75 +#: ../app/widgets/gimpcontrollerkeyboard.c:75 msgid "Key Up (Shift + Alt)" msgstr "ä¸Šç®­å’€éµ (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:78 +#: ../app/widgets/gimpcontrollerkeyboard.c:78 msgid "Key Up (Shift + Control)" msgstr "ä¸Šç®­å’€éµ (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:81 +#: ../app/widgets/gimpcontrollerkeyboard.c:81 msgid "Key Up (Alt)" msgstr "ä¸Šç®­å’€éµ (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:84 +#: ../app/widgets/gimpcontrollerkeyboard.c:84 msgid "Key Up (Control)" msgstr "ä¸Šç®­å’€éµ (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:87 +#: ../app/widgets/gimpcontrollerkeyboard.c:87 msgid "Key Up (Shift)" msgstr "ä¸Šç®­å’€éµ (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:90 +#: ../app/widgets/gimpcontrollerkeyboard.c:90 msgid "Key Up" msgstr "上箭咀éµ" -#: app/widgets/gimpcontrollerkeyboard.c:94 +#: ../app/widgets/gimpcontrollerkeyboard.c:94 msgid "Key Down (Shift + Control + Alt)" msgstr "ä¸‹ç®­å’€éµ (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:97 +#: ../app/widgets/gimpcontrollerkeyboard.c:97 msgid "Key Down (Control + Alt)" msgstr "ä¸‹ç®­å’€éµ (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:100 +#: ../app/widgets/gimpcontrollerkeyboard.c:100 msgid "Key Down (Shift + Alt)" msgstr "ä¸‹ç®­å’€éµ (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:103 +#: ../app/widgets/gimpcontrollerkeyboard.c:103 msgid "Key Down (Shift + Control)" msgstr "ä¸‹ç®­å’€éµ (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:106 +#: ../app/widgets/gimpcontrollerkeyboard.c:106 msgid "Key Down (Alt)" msgstr "ä¸‹ç®­å’€éµ (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:109 +#: ../app/widgets/gimpcontrollerkeyboard.c:109 msgid "Key Down (Control)" msgstr "ä¸‹ç®­å’€éµ (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:112 +#: ../app/widgets/gimpcontrollerkeyboard.c:112 msgid "Key Down (Shift)" msgstr "ä¸‹ç®­å’€éµ (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:115 +#: ../app/widgets/gimpcontrollerkeyboard.c:115 msgid "Key Down" msgstr "下箭咀éµ" -#: app/widgets/gimpcontrollerkeyboard.c:119 +#: ../app/widgets/gimpcontrollerkeyboard.c:119 msgid "Key Left (Shift + Control + Alt)" msgstr "å·¦ç®­å’€éµ (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:122 +#: ../app/widgets/gimpcontrollerkeyboard.c:122 msgid "Key Left (Control + Alt)" msgstr "å·¦ç®­å’€éµ (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:125 +#: ../app/widgets/gimpcontrollerkeyboard.c:125 msgid "Key Left (Shift + Alt)" msgstr "å·¦ç®­å’€éµ (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:128 +#: ../app/widgets/gimpcontrollerkeyboard.c:128 msgid "Key Left (Shift + Control)" msgstr "å·¦ç®­å’€éµ (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:131 +#: ../app/widgets/gimpcontrollerkeyboard.c:131 msgid "Key Left (Alt)" msgstr "å·¦ç®­å’€éµ (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:134 +#: ../app/widgets/gimpcontrollerkeyboard.c:134 msgid "Key Left (Control)" msgstr "å·¦ç®­å’€éµ (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:137 +#: ../app/widgets/gimpcontrollerkeyboard.c:137 msgid "Key Left (Shift)" msgstr "å·¦ç®­å’€éµ (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:140 +#: ../app/widgets/gimpcontrollerkeyboard.c:140 msgid "Key Left" msgstr "左箭咀éµ" -#: app/widgets/gimpcontrollerkeyboard.c:144 +#: ../app/widgets/gimpcontrollerkeyboard.c:144 msgid "Key Right (Shift + Control + Alt)" msgstr "å³ç®­å’€éµ (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:147 +#: ../app/widgets/gimpcontrollerkeyboard.c:147 msgid "Key Right (Control + Alt)" msgstr "å³ç®­å’€éµ (Control + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:150 +#: ../app/widgets/gimpcontrollerkeyboard.c:150 msgid "Key Right (Shift + Alt)" msgstr "å³ç®­å’€éµ (Shift + Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:153 +#: ../app/widgets/gimpcontrollerkeyboard.c:153 msgid "Key Right (Shift + Control)" msgstr "å³ç®­å’€éµ (Shift + Control)" -#: app/widgets/gimpcontrollerkeyboard.c:156 +#: ../app/widgets/gimpcontrollerkeyboard.c:156 msgid "Key Right (Alt)" msgstr "å³ç®­å’€éµ (Alt)" -#: app/widgets/gimpcontrollerkeyboard.c:159 +#: ../app/widgets/gimpcontrollerkeyboard.c:159 msgid "Key Right (Control)" msgstr "å³ç®­å’€éµ (Control)" -#: app/widgets/gimpcontrollerkeyboard.c:162 +#: ../app/widgets/gimpcontrollerkeyboard.c:162 msgid "Key Right (Shift)" msgstr "å³ç®­å’€éµ (Shift)" -#: app/widgets/gimpcontrollerkeyboard.c:165 +#: ../app/widgets/gimpcontrollerkeyboard.c:165 msgid "Key Right" msgstr "å³ç®­å’€éµ" -#: app/widgets/gimpcontrollerkeyboard.c:207 +#: ../app/widgets/gimpcontrollerkeyboard.c:207 msgid "Keyboard" msgstr "éµç›¤" -#: app/widgets/gimpcontrollerkeyboard.c:230 -#, fuzzy +# FIXME (Abel) event 有沒有比較好的翻譯? +#: ../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 "å‘上滾動 (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:71 +#: ../app/widgets/gimpcontrollerwheel.c:71 msgid "Scroll Up (Control + Alt)" msgstr "å‘上滾動 (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:74 +#: ../app/widgets/gimpcontrollerwheel.c:74 msgid "Scroll Up (Shift + Alt)" msgstr "å‘上滾動 (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:77 +#: ../app/widgets/gimpcontrollerwheel.c:77 msgid "Scroll Up (Shift + Control)" msgstr "å‘上滾動 (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:80 +#: ../app/widgets/gimpcontrollerwheel.c:80 msgid "Scroll Up (Alt)" msgstr "å‘上滾動 (Alt)" -#: app/widgets/gimpcontrollerwheel.c:83 +#: ../app/widgets/gimpcontrollerwheel.c:83 msgid "Scroll Up (Control)" msgstr "å‘上滾動 (Control)" -#: app/widgets/gimpcontrollerwheel.c:86 +#: ../app/widgets/gimpcontrollerwheel.c:86 msgid "Scroll Up (Shift)" msgstr "å‘上滾動 (Shift)" -#: app/widgets/gimpcontrollerwheel.c:89 +#: ../app/widgets/gimpcontrollerwheel.c:89 msgid "Scroll Up" msgstr "å‘上滾動" -#: app/widgets/gimpcontrollerwheel.c:93 +#: ../app/widgets/gimpcontrollerwheel.c:93 msgid "Scroll Down (Shift + Control + Alt)" msgstr "å‘下滾動 (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:96 +#: ../app/widgets/gimpcontrollerwheel.c:96 msgid "Scroll Down (Control + Alt)" msgstr "å‘下滾動 (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:99 +#: ../app/widgets/gimpcontrollerwheel.c:99 msgid "Scroll Down (Shift + Alt)" msgstr "å‘下滾動 (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:102 +#: ../app/widgets/gimpcontrollerwheel.c:102 msgid "Scroll Down (Shift + Control)" msgstr "å‘下滾動 (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:105 +#: ../app/widgets/gimpcontrollerwheel.c:105 msgid "Scroll Down (Alt)" msgstr "å‘下滾動 (Alt)" -#: app/widgets/gimpcontrollerwheel.c:108 +#: ../app/widgets/gimpcontrollerwheel.c:108 msgid "Scroll Down (Control)" msgstr "å‘下滾動 (Control)" -#: app/widgets/gimpcontrollerwheel.c:111 +#: ../app/widgets/gimpcontrollerwheel.c:111 msgid "Scroll Down (Shift)" msgstr "å‘下滾動 (Shift)" -#: app/widgets/gimpcontrollerwheel.c:114 +#: ../app/widgets/gimpcontrollerwheel.c:114 msgid "Scroll Down" msgstr "å‘下滾動" -#: app/widgets/gimpcontrollerwheel.c:118 +#: ../app/widgets/gimpcontrollerwheel.c:118 msgid "Scroll Left (Shift + Control + Alt)" msgstr "å‘左滾動 (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:121 +#: ../app/widgets/gimpcontrollerwheel.c:121 msgid "Scroll Left (Control + Alt)" msgstr "å‘左滾動 (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:124 +#: ../app/widgets/gimpcontrollerwheel.c:124 msgid "Scroll Left (Shift + Alt)" msgstr "å‘左滾動 (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:127 +#: ../app/widgets/gimpcontrollerwheel.c:127 msgid "Scroll Left (Shift + Control)" msgstr "å‘左滾動 (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:130 +#: ../app/widgets/gimpcontrollerwheel.c:130 msgid "Scroll Left (Alt)" msgstr "å‘左滾動 (Alt)" -#: app/widgets/gimpcontrollerwheel.c:133 +#: ../app/widgets/gimpcontrollerwheel.c:133 msgid "Scroll Left (Control)" msgstr "å‘左滾動 (Control)" -#: app/widgets/gimpcontrollerwheel.c:136 +#: ../app/widgets/gimpcontrollerwheel.c:136 msgid "Scroll Left (Shift)" msgstr "å‘左滾動 (Shift)" -#: app/widgets/gimpcontrollerwheel.c:139 +#: ../app/widgets/gimpcontrollerwheel.c:139 msgid "Scroll Left" msgstr "å‘左滾動" -#: app/widgets/gimpcontrollerwheel.c:143 +#: ../app/widgets/gimpcontrollerwheel.c:143 msgid "Scroll Right (Shift + Control + Alt)" msgstr "å‘å³æ»¾å‹• (Shift + Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:146 +#: ../app/widgets/gimpcontrollerwheel.c:146 msgid "Scroll Right (Control + Alt)" msgstr "å‘å³æ»¾å‹• (Control + Alt)" -#: app/widgets/gimpcontrollerwheel.c:149 +#: ../app/widgets/gimpcontrollerwheel.c:149 msgid "Scroll Right (Shift + Alt)" msgstr "å‘å³æ»¾å‹• (Shift + Alt)" -#: app/widgets/gimpcontrollerwheel.c:152 +#: ../app/widgets/gimpcontrollerwheel.c:152 msgid "Scroll Right (Shift + Control)" msgstr "å‘å³æ»¾å‹• (Shift + Control)" -#: app/widgets/gimpcontrollerwheel.c:155 +#: ../app/widgets/gimpcontrollerwheel.c:155 msgid "Scroll Right (Alt)" msgstr "å‘å³æ»¾å‹• (Alt)" -#: app/widgets/gimpcontrollerwheel.c:158 +#: ../app/widgets/gimpcontrollerwheel.c:158 msgid "Scroll Right (Control)" msgstr "å‘å³æ»¾å‹• (Control)" -#: app/widgets/gimpcontrollerwheel.c:161 +#: ../app/widgets/gimpcontrollerwheel.c:161 msgid "Scroll Right (Shift)" msgstr "å‘å³æ»¾å‹• (Shift)" -#: app/widgets/gimpcontrollerwheel.c:164 +#: ../app/widgets/gimpcontrollerwheel.c:164 msgid "Scroll Right" msgstr "å‘å³æ»¾å‹•" -#: app/widgets/gimpcontrollerwheel.c:206 +#: ../app/widgets/gimpcontrollerwheel.c:206 msgid "Mouse Wheel" msgstr "滑鼠滾輪" -#: app/widgets/gimpcontrollerwheel.c:229 -#, fuzzy +# FIXME (Abel) event 有沒有比較好的翻譯? +#: ../app/widgets/gimpcontrollerwheel.c:229 msgid "Mouse Wheel Events" -msgstr "滑鼠滾輪" +msgstr "滑鼠滾輪事件" -#: app/widgets/gimpdataeditor.c:205 +#: ../app/widgets/gimpdataeditor.c:205 msgid "Save" msgstr "儲存" -#: app/widgets/gimpdataeditor.c:213 +#: ../app/widgets/gimpdataeditor.c:213 msgid "Revert" msgstr "還原" -#: app/widgets/gimpdevicestatus.c:281 +#: ../app/widgets/gimpdevicestatus.c:281 msgid "Save device status" msgstr "儲存è£ç½®ç‹€æ…‹" -#: app/widgets/gimpdevicestatus.c:385 +#: ../app/widgets/gimpdevicestatus.c:385 #, c-format msgid "Foreground: %d, %d, %d" msgstr "å‰æ™¯é¡è‰²ï¼š%d,%d,%d" -#: app/widgets/gimpdevicestatus.c:390 +#: ../app/widgets/gimpdevicestatus.c:390 #, c-format msgid "Background: %d, %d, %d" msgstr "背景é¡è‰²ï¼š%d,%d,%d" -#: app/widgets/gimpdock.c:348 app/widgets/gimpdock.c:359 -#, 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 "" +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 "錯誤訊æ¯å¤ªå¤šï¼" -#: app/widgets/gimperrordialog.c:230 +#: ../app/widgets/gimperrordialog.c:230 msgid "Messages are redirected to stderr." msgstr "訊æ¯æœƒé‡æ–°å°Žå‘至標準錯誤輸出。" -#: app/widgets/gimpfiledialog.c:304 +#: ../app/widgets/gimpfiledialog.c:304 msgid "Automatically Detected" msgstr "自動åµæ¸¬" -#: app/widgets/gimpfiledialog.c:310 +#: ../app/widgets/gimpfiledialog.c:310 msgid "By Extension" msgstr "ä¾å»¶ä¼¸æª”å" -#: app/widgets/gimpfiledialog.c:469 -#, fuzzy +#: ../app/widgets/gimpfiledialog.c:469 msgid "All Files" -msgstr "所有檔案 (*.*)" +msgstr "所有檔案" -#: app/widgets/gimpfiledialog.c:608 +#: ../app/widgets/gimpfiledialog.c:608 #, c-format msgid "Select File _Type (%s)" msgstr "é¸æ“‡æª”æ¡ˆæ ¼å¼ [%s] (_T)" -#: app/widgets/gimpfileprocview.c:234 +#: ../app/widgets/gimpfileprocview.c:234 msgid "File Type" msgstr "檔案格å¼" -#: app/widgets/gimpfileprocview.c:253 +#: ../app/widgets/gimpfileprocview.c:253 msgid "Extensions" msgstr "ä¾å»¶ä¼¸æª”å" -#: app/widgets/gimpgradienteditor.c:362 +#: ../app/widgets/gimpgradienteditor.c:362 msgid "Instant update" msgstr "å³æ™‚æ›´æ–°" -#: app/widgets/gimpgradienteditor.c:619 +#: ../app/widgets/gimpgradienteditor.c:619 #, c-format msgid "Zoom factor: %d:1" msgstr "縮放å€çŽ‡ï¼š %d:1" -#: app/widgets/gimpgradienteditor.c:622 +#: ../app/widgets/gimpgradienteditor.c:622 #, c-format msgid "Displaying [%0.6f, %0.6f]" msgstr "顯示 [%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 +#: ../app/widgets/gimpgradienteditor.c:816 #, c-format msgid "RGB (%0.3f, %0.3f, %0.3f)" msgstr "RGB (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:819 +#: ../app/widgets/gimpgradienteditor.c:819 #, c-format msgid "HSV (%0.3f, %0.3f, %0.3f)" msgstr "HSV (%0.3f, %0.3f, %0.3f)" -#: app/widgets/gimpgradienteditor.c:821 +#: ../app/widgets/gimpgradienteditor.c:821 #, c-format msgid "Intensity: %0.3f Opacity: %0.3f" msgstr "亮度:%0.3f é€æ˜Žåº¦(é€æ˜Ž=0):%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 "å‰æ™¯é¡è‰²è¨­å®šç‚ºï¼š" +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 "背景é¡è‰²è¨­å®šç‚ºï¼š" +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):" +msgstr "ç·šæ¢æ¬¾å¼(_S):" -#: app/widgets/gimpgrideditor.c:223 +#: ../app/widgets/gimpgrideditor.c:223 msgid "Change grid foreground color" msgstr "更改格線å‰æ™¯é¡è‰²" -#: app/widgets/gimpgrideditor.c:228 +#: ../app/widgets/gimpgrideditor.c:228 msgid "_Foreground color:" -msgstr "å‰æ™¯é¡è‰²(_F):" +msgstr "å‰æ™¯é¡è‰²(_F):" -#: app/widgets/gimpgrideditor.c:232 +#: ../app/widgets/gimpgrideditor.c:232 msgid "Change grid background color" msgstr "更改格線背景é¡è‰²" -#: app/widgets/gimpgrideditor.c:237 +#: ../app/widgets/gimpgrideditor.c:237 msgid "_Background color:" -msgstr "背景é¡è‰²(_B):" +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 "找ä¸åˆ° GIMP 說明文件ç€è¦½å™¨" -#: app/widgets/gimphelp.c:189 +#: ../app/widgets/gimphelp.c:189 msgid "" "The GIMP help browser plug-in appears to be missing from your installation." -msgstr "" +msgstr "å®‰è£ GIMP 時似乎沒有åŒæ™‚安è£æœ‰é—œèªªæ˜Žæ–‡ä»¶ç€è¦½å™¨çš„增效模組。" -#: 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 "無法啟動 GIMP 說明文件ç€è¦½å™¨ã€‚" +msgstr "無法啟動 GIMP 說明文件ç€è¦½å™¨å¢žæ•ˆæ¨¡çµ„。" -#: 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 "å¹³å‡å€¼ï¼š" +msgstr "å¹³å‡å€¼:" -#: app/widgets/gimphistogrameditor.c:135 +#: ../app/widgets/gimphistogrameditor.c:135 msgid "Std Dev:" -msgstr "標準å差:" +msgstr "標準åå·®:" -#: app/widgets/gimphistogrameditor.c:136 +#: ../app/widgets/gimphistogrameditor.c:136 msgid "Median:" -msgstr "中ä½æ•¸ï¼š" +msgstr "中ä½æ•¸:" -#: app/widgets/gimphistogrameditor.c:137 +#: ../app/widgets/gimphistogrameditor.c:137 msgid "Pixels:" -msgstr "åƒç´ ç¸½æ•¸ï¼š" +msgstr "åƒç´ ç¸½æ•¸:" -#: app/widgets/gimphistogrameditor.c:138 +#: ../app/widgets/gimphistogrameditor.c:138 msgid "Count:" -msgstr "數目:" +msgstr "數目:" -#: app/widgets/gimphistogrameditor.c:139 +#: ../app/widgets/gimphistogrameditor.c:139 msgid "Percentile:" -msgstr "百分值:" +msgstr "百分值:" -#: app/widgets/gimpimagedock.c:203 +#: ../app/widgets/gimpimagedock.c:203 msgid "Auto" msgstr "自動" -#: app/widgets/gimpimagedock.c:214 +#: ../app/widgets/gimpimagedock.c:214 msgid "" "When enabled the dialog automatically follows the image you are working on." msgstr "" -#: app/widgets/gimpitemtreeview.c:996 +#: ../app/widgets/gimpitemtreeview.c:996 msgid "Set Item Exclusive Visible" msgstr "" -#: app/widgets/gimpitemtreeview.c:1004 +#: ../app/widgets/gimpitemtreeview.c:1004 msgid "Set Item Exclusive Linked" msgstr "" -#: app/widgets/gimplayertreeview.c:252 +#: ../app/widgets/gimplayertreeview.c:252 msgid "Reorder Layer" msgstr "é‡æ–°ç·¨æŽ’圖層次åº" -#: app/widgets/gimplayertreeview.c:313 +#: ../app/widgets/gimplayertreeview.c:313 msgid "Keep transparency" msgstr "ä¿ç•™é€æ˜Žåº¦" -#: app/widgets/gimplayertreeview.c:848 +#: ../app/widgets/gimplayertreeview.c:848 msgid "Empty Layer" msgstr "空白圖層" -#: app/widgets/gimpmessagebox.c:460 +#: ../app/widgets/gimpmessagebox.c:462 #, c-format msgid "Message repeated %d times." msgstr "訊æ¯å·²é‡è¤‡ %d 次。" -#: app/widgets/gimpmessagebox.c:462 +#: ../app/widgets/gimpmessagebox.c:464 msgid "Message repeated once." msgstr "訊æ¯å·²é‡è¤‡ 1 次。" -#: 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 "直行行數:" +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" @@ -10337,94 +10250,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×%d åƒç´ " +msgstr "%d×%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 +#: ../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 +#: ../app/widgets/gimpstrokeeditor.c:228 msgid "_Cap style:" -msgstr "" +msgstr "端點樣å¼(_C):" -#: app/widgets/gimpstrokeeditor.c:234 +#: ../app/widgets/gimpstrokeeditor.c:234 msgid "_Join style:" -msgstr "" +msgstr "連接點樣å¼(_J):" -#: app/widgets/gimpstrokeeditor.c:239 +#: ../app/widgets/gimpstrokeeditor.c:239 msgid "_Miter limit:" msgstr "" -#: app/widgets/gimpstrokeeditor.c:246 +#: ../app/widgets/gimpstrokeeditor.c:246 msgid "Dash pattern:" -msgstr "虛線樣å¼ï¼š" +msgstr "虛線樣å¼:" -#: app/widgets/gimpstrokeeditor.c:288 +#: ../app/widgets/gimpstrokeeditor.c:288 msgid "Dash preset:" -msgstr "" +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 "%p" -#: app/widgets/gimptemplateeditor.c:330 +#: ../app/widgets/gimptemplateeditor.c:330 msgid "_Advanced Options" msgstr "進階é¸é …(_A)" -#: app/widgets/gimptemplateeditor.c:437 +#: ../app/widgets/gimptemplateeditor.c:437 msgid "Color_space:" -msgstr "" +msgstr "色系(_S):" -#: app/widgets/gimptemplateeditor.c:445 +#: ../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):" +msgstr "å稱(_N):" -#: app/widgets/gimptemplateeditor.c:576 +#: ../app/widgets/gimptemplateeditor.c:576 msgid "_Icon:" -msgstr "圖示(_I):" +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×%d åƒç´ " +msgstr "%d×%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" @@ -10434,29 +10345,28 @@ "%s å³ä½¿é è¦½åœ–是最新的,ä»ç„¶å¼·åˆ¶æ›´æ–°å…§å®¹" # 這個是 file selection dialog 裡未é¸æ“‡ä»»ä½•åœ–片時顯示的字 -- Abel -#: app/widgets/gimpthumbbox.c:407 app/widgets/gimpthumbbox.c:477 +#: ../app/widgets/gimpthumbbox.c:407 ../app/widgets/gimpthumbbox.c:477 msgid "No selection" msgstr "未é¸æ“‡æª”案" -#: app/widgets/gimpthumbbox.c:602 app/widgets/gimpthumbbox.c:626 +#: ../app/widgets/gimpthumbbox.c:602 ../app/widgets/gimpthumbbox.c:626 #, c-format msgid "Thumbnail %d of %d" msgstr "縮圖 %2$d 之 %1$d" -#: app/widgets/gimpthumbbox.c:730 app/widgets/gimpthumbbox.c:740 -#, fuzzy +#: ../app/widgets/gimpthumbbox.c:733 ../app/widgets/gimpthumbbox.c:743 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 +#: ../app/widgets/gimptoolbox-image-area.c:90 msgid "" "The active image.\n" "Click to open the Image Dialog." @@ -10464,7 +10374,7 @@ "這是使用中的影åƒã€‚\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." @@ -10472,7 +10382,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." @@ -10480,7 +10390,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." @@ -10488,7 +10398,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." @@ -10498,258 +10408,258 @@ "箭號å¯äº’æ›é¡è‰²ã€‚\n" "點兩下則會開啟é¡è‰²é¸æ“‡çª—。" -#: 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 "GIMP 安è£æœªå®Œæ•´ï¸°" -#: 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 +#: ../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 "開啟漸層é¸æ“‡å°è©±æ–¹å¡Šã€‚" # a gradient in reverse direction, used in "blend" tool options -#: app/widgets/gimpviewablebox.c:167 +#: ../app/widgets/gimpviewablebox.c:167 msgid "Reverse" msgstr "相åæ–¹å‘" -#: app/widgets/gimpviewablebox.c:210 +#: ../app/widgets/gimpviewablebox.c:210 msgid "Open the palette selection dialog" msgstr "開啟色盤é¸æ“‡å°è©±æ–¹å¡Š" -#: app/widgets/gimpviewablebox.c:250 +#: ../app/widgets/gimpviewablebox.c:250 msgid "Open the font selection dialog" msgstr "é–‹å•Ÿé¸å–å­—åž‹çš„å°è©±æ–¹å¡Š" -#: app/widgets/gimpwidgets-constructors.c:50 -#: app/widgets/gimpwidgets-constructors.c:85 +#: ../app/widgets/gimpwidgets-constructors.c:50 +#: ../app/widgets/gimpwidgets-constructors.c:85 msgid "Normal" -msgstr "" +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 "" +msgstr "溶解" -#: app/widgets/gimpwidgets-constructors.c:52 +#: ../app/widgets/gimpwidgets-constructors.c:52 msgid "Behind" -msgstr "" +msgstr "背後" -#: app/widgets/gimpwidgets-constructors.c:53 +#: ../app/widgets/gimpwidgets-constructors.c:53 msgid "Color erase" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:55 -#: app/widgets/gimpwidgets-constructors.c:88 +#: ../app/widgets/gimpwidgets-constructors.c:55 +#: ../app/widgets/gimpwidgets-constructors.c:88 msgid "Multiply" -msgstr "" +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 "" +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 "" +msgstr "å åŠ " -#: app/widgets/gimpwidgets-constructors.c:62 -#: app/widgets/gimpwidgets-constructors.c:95 +#: ../app/widgets/gimpwidgets-constructors.c:62 +#: ../app/widgets/gimpwidgets-constructors.c:95 msgid "Hard light" -msgstr "" +msgstr "å¼·å…‰" -#: app/widgets/gimpwidgets-constructors.c:63 -#: app/widgets/gimpwidgets-constructors.c:96 +#: ../app/widgets/gimpwidgets-constructors.c:63 +#: ../app/widgets/gimpwidgets-constructors.c:96 msgid "Soft light" -msgstr "" +msgstr "柔光" -#: app/widgets/gimpwidgets-constructors.c:64 -#: app/widgets/gimpwidgets-constructors.c:97 +#: ../app/widgets/gimpwidgets-constructors.c:64 +#: ../app/widgets/gimpwidgets-constructors.c:97 msgid "Grain extract" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:65 -#: app/widgets/gimpwidgets-constructors.c:98 +#: ../app/widgets/gimpwidgets-constructors.c:65 +#: ../app/widgets/gimpwidgets-constructors.c:98 msgid "Grain merge" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:67 -#: app/widgets/gimpwidgets-constructors.c:100 +#: ../app/widgets/gimpwidgets-constructors.c:67 +#: ../app/widgets/gimpwidgets-constructors.c:100 msgid "Difference" -msgstr "" +msgstr "差值" -#: app/widgets/gimpwidgets-constructors.c:68 -#: app/widgets/gimpwidgets-constructors.c:101 +#: ../app/widgets/gimpwidgets-constructors.c:68 +#: ../app/widgets/gimpwidgets-constructors.c:101 msgid "Addition" msgstr "" -#: app/widgets/gimpwidgets-constructors.c:70 -#: app/widgets/gimpwidgets-constructors.c:103 +#: ../app/widgets/gimpwidgets-constructors.c:70 +#: ../app/widgets/gimpwidgets-constructors.c:103 msgid "Darken only" -msgstr "" +msgstr "變暗" -#: app/widgets/gimpwidgets-constructors.c:71 -#: app/widgets/gimpwidgets-constructors.c:104 +#: ../app/widgets/gimpwidgets-constructors.c:71 +#: ../app/widgets/gimpwidgets-constructors.c:104 msgid "Lighten only" -msgstr "" +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 "" +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 "" +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:796 #, c-format msgid "Invalid UTF-8 data in file '%s'." -msgstr "檔案‘%s’中å«æœ‰ç„¡æ•ˆçš„ UTF-8 文字。" +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 +#: ../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 "黑白" -#: app/widgets/widgets-enums.c:172 +# (Abel) 表示使用彩色顯示 mouse cursor 中的工具標誌 +#: ../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 "GIMP 說明文件ç€è¦½å™¨" -#: app/widgets/widgets-enums.c:200 +#: ../app/widgets/widgets-enums.c:200 msgid "Web browser" msgstr "網é ç€è¦½å™¨" -#: app/widgets/widgets-enums.c:228 +#: ../app/widgets/widgets-enums.c:228 msgid "Logarithmic" msgstr "å°æ•¸" -#: app/widgets/widgets-enums.c:261 +#: ../app/widgets/widgets-enums.c:261 msgid "Icon" msgstr "圖示" -#: app/widgets/widgets-enums.c:262 +#: ../app/widgets/widgets-enums.c:262 msgid "Current status" msgstr "ç›®å‰çš„狀態" -#: app/widgets/widgets-enums.c:264 +#: ../app/widgets/widgets-enums.c:264 msgid "Description" msgstr "æè¿°" -#: app/widgets/widgets-enums.c:265 +#: ../app/widgets/widgets-enums.c:265 msgid "Icon & text" msgstr "圖示åŠæ–‡å­—" -#: app/widgets/widgets-enums.c:266 +#: ../app/widgets/widgets-enums.c:266 msgid "Icon & desc" msgstr "圖示åŠæè¿°" -#: app/widgets/widgets-enums.c:267 +#: ../app/widgets/widgets-enums.c:267 msgid "Status & text" msgstr "狀態åŠæ–‡å­—" -#: app/widgets/widgets-enums.c:268 +#: ../app/widgets/widgets-enums.c:268 msgid "Status & desc" msgstr "狀態åŠæè¿°" -#: app/widgets/widgets-enums.c:295 +#: ../app/widgets/widgets-enums.c:295 msgid "View as list" msgstr "以清單方å¼é¡¯ç¤º" -#: app/widgets/widgets-enums.c:296 +#: ../app/widgets/widgets-enums.c:296 msgid "View as grid" msgstr "以格陣方å¼é¡¯ç¤º" -#: app/widgets/widgets-enums.c:324 +#: ../app/widgets/widgets-enums.c:324 msgid "Normal window" msgstr "普通視窗" -#: app/widgets/widgets-enums.c:325 +#: ../app/widgets/widgets-enums.c:325 msgid "Utility window" msgstr "工具視窗" -#: app/widgets/widgets-enums.c:326 +#: ../app/widgets/widgets-enums.c:326 msgid "Keep above" -msgstr "" +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" @@ -10758,50 +10668,44 @@ "XCF 警告。版本 0 çš„ XCF 檔案格å¼ç„¡æ³•\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 +#: ../app/xcf/xcf.c:86 ../app/xcf/xcf.c:143 msgid "GIMP XCF image" msgstr "GIMP XCF å½±åƒ" -#: app/xcf/xcf.c:282 +#: ../app/xcf/xcf.c:282 #, c-format msgid "XCF error: unsupported XCF file version %d encountered" msgstr "XCF 錯誤:ä¸æ”¯æ´ 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 +#: ../data/misc/gimp.desktop.in.in.h:2 msgid "Image Editor" msgstr "色盤編輯程åº" -#, fuzzy -#~ msgid "Keep aspect ratio" -#~ msgstr "固定長寬比 %s" - -#~ msgid "Y:" -#~ msgstr "Y:" - #~ msgid "Transformations do not work on layers that contain layer masks." #~ msgstr "å½±åƒè®Šæ›ä¸é©ç”¨æ–¼æœ‰åœ–層é®ç½©çš„圖層上。" @@ -10863,16 +10767,16 @@ #~ msgstr "圖層邊界尺寸" #~ msgid "New width:" -#~ msgstr "新的寬度:" +#~ msgstr "新的寬度:" #~ msgid "New height:" -#~ msgstr "新的高度:" +#~ msgstr "新的高度:" #~ msgid "X ratio:" -#~ msgstr "水平比例:" +#~ msgstr "水平比例:" #~ msgid "Y ratio:" -#~ msgstr "垂直比例:" +#~ msgstr "垂直比例:" #~ msgid "Constrain aspect ratio" #~ msgstr "ä¿æŒé•·å¯¬æ¯”" @@ -10881,16 +10785,16 @@ #~ msgstr "列å°å°ºå¯¸åŠé¡¯ç¤ºå–®ä½" #~ msgid "X resolution:" -#~ msgstr "水平解æžåº¦ï¼š" +#~ msgstr "水平解æžåº¦:" #~ msgid "Y resolution:" -#~ msgstr "垂直解æžåº¦ï¼š" +#~ msgstr "垂直解æžåº¦:" #~ msgid "Stroke Options" #~ msgstr "æé‚Šé¸é …" #~ msgid "_Size:" -#~ msgstr "大å°(_S):" +#~ msgstr "大å°(_S):" #~ msgid "" #~ "New Channel\n" @@ -10915,7 +10819,7 @@ # ç›´è­¯ hex triplet 甚為困難,效果也ä¸å¥½ï¼Œæ‰€ä»¥æ”¹ç”¨è¼ƒæ˜“懂的中文 -- Abel #~ msgid "He_x triplet:" -#~ msgstr "16 進ä½è¡¨ç¤º(_X):" +#~ msgstr "16 進ä½è¡¨ç¤º(_X):" #~ msgid "" #~ "Add color from FG\n" @@ -11058,10 +10962,10 @@ #~ msgstr "檔案儲存" #~ msgid "Pattern:" -#~ msgstr "圖樣:" +#~ msgstr "圖樣:" #~ msgid "Density:" -#~ msgstr "密度:" +#~ msgstr "密度:" #~ msgid "" #~ "Could not find the GIMP Help Browser procedure. It probably was not " @@ -11227,7 +11131,7 @@ #~ msgstr "/分é é¡¯ç¤ºæ–¹å¼/狀態加文字(_A)" #~ msgid "From _Template:" -#~ msgstr "ä¾ç¯„本(_T):" +#~ msgstr "ä¾ç¯„本(_T):" #~ msgid "/Automatic" #~ msgstr "/自動" @@ -11296,7 +11200,7 @@ #~ "確定è¦çµæŸ GIMP?" #~ msgid "Final, Anchored Layer should be:" -#~ msgstr "最後固定的圖層應該:" +#~ msgstr "最後固定的圖層應該:" #~ msgid "/File/_New..." #~ msgstr "/檔案/新增(_N)..." @@ -11741,7 +11645,7 @@ #~ msgstr "「儲存ã€é¸å–®" #~ msgid "Offset _X:" -#~ msgstr "_X ä½ç§»é‡ï¼š" +#~ msgstr "_X ä½ç§»é‡:" #~ msgid "_Wrap" #~ msgstr "繞到影åƒå¦ä¸€é‚Š(_W)" @@ -11757,7 +11661,7 @@ #~ msgstr "無法執行圖樣的 callback。相應的增效模組å¯èƒ½å·²ç¶“ä¸æ­£å¸¸çµæŸã€‚" #~ msgid "_Undo History Preview Size:" -#~ msgstr "復原紀錄的é è¦½åœ–尺寸(_U):" +#~ msgstr "復原紀錄的é è¦½åœ–尺寸(_U):" #~ msgid "_Info Window Per Display" #~ msgstr "æ¯å¹…å½±åƒæœ‰ç¨ç«‹çš„資訊視窗(_I)" @@ -11769,7 +11673,7 @@ #~ msgstr "å¯ä»¤é¸å–®è„«é›¢é¸å–®åˆ—(_T)" #~ msgid "Open _Recent Menu Size:" -#~ msgstr "常用檔案清單ä¿ç•™çš„檔案數目(_R):" +#~ msgstr "常用檔案清單ä¿ç•™çš„檔案數目(_R):" #~ msgid "Context Sensitive _Help with \"F1\"" #~ msgstr "按「F1ã€é¡¯ç¤ºæœ‰é—œå…§å®¹çš„說明(_H)" @@ -11791,7 +11695,7 @@ #~ msgstr "8 ä½å…ƒè‰²å½©ç•«é¢" #~ msgid "Minimum Number of Colors:" -#~ msgstr "é¡è‰²æ•¸ç›®ä¸‹é™ï¼š" +#~ msgstr "é¡è‰²æ•¸ç›®ä¸‹é™:" # FIXME: Any good word for Colormap? -- Abel #~ msgid "Install Colormap" @@ -11822,7 +11726,7 @@ #~ msgstr "一定" #~ msgid "\"File -> Save\" Saves the Image:" -#~ msgstr "「檔案→儲存ã€æœƒå¦å„²å­˜å½±åƒï¼š" +#~ msgstr "「檔案→儲存ã€æœƒå¦å„²å­˜å½±åƒ:" #~ msgid "Session Management" #~ msgstr "作業階段管ç†" @@ -11840,22 +11744,22 @@ #~ msgstr "立刻儲存輸入è£ç½®çš„組態" #~ msgid "Temp Dir:" -#~ msgstr "暫存目錄:" +#~ msgstr "暫存目錄:" #~ msgid "Select Temp Dir" #~ msgstr "é¸å–暫存目錄" #~ msgid "Swap Dir:" -#~ msgstr "交æ›æª”目錄:" +#~ msgstr "交æ›æª”目錄:" #~ msgid "Qmask Attributes" #~ msgstr "快速é®ç½©å±¬æ€§" #~ msgid "Ratio X:" -#~ msgstr "比例 X:" +#~ msgstr "比例 X:" #~ msgid "Resolution X:" -#~ msgstr "解æžåº¦ X:" +#~ msgstr "解æžåº¦ X:" #~ msgid "Stroke" #~ msgstr "æé‚Š" @@ -12104,7 +12008,7 @@ #~ msgstr "/工具/變æ›å·¥å…·/推移(_H)" #~ msgid "/Tools/Paint Tools/_Smudge" -#~ msgstr "/工具/繪畫工具/塗污(_S)" +#~ msgstr "/工具/繪畫工具/塗抹(_S)" #~ msgid "/Tools/Te_xt" #~ msgstr "/工具/文字(_X)" @@ -12113,7 +12017,7 @@ #~ msgstr "/工具/色彩工具/ç•Œé™å€¼(_T)..." #~ msgid "Threshold Range:" -#~ msgstr "ç•Œé™å€¼ç¯„åœï¼š" +#~ msgstr "ç•Œé™å€¼ç¯„åœ:" #~ msgid "" #~ "Activate both the \"Keep Height\" and\n" @@ -12137,13 +12041,13 @@ #~ msgstr "é‡æ–°æ•´ç†" #~ msgid "Determine File _Type:" -#~ msgstr "決定檔案類型(_T):" +#~ msgstr "決定檔案類型(_T):" #~ msgid "Intensity Range:" -#~ msgstr "亮度範åœï¼š" +#~ msgstr "亮度範åœ:" #~ msgid "Stroke _Width:" -#~ msgstr "æé‚Šç·šæ¢å¯¬åº¦(_W):" +#~ msgstr "æé‚Šç·šæ¢å¯¬åº¦(_W):" #~ msgid "Style" #~ msgstr "樣å¼" diff -uraN gimp-2.2.8/po-libgimp/ca.gmo gimp-2.2.9/po-libgimp/ca.gmo --- gimp-2.2.8/po-libgimp/ca.gmo 2005-05-08 23:42:01.000000000 +0200 +++ gimp-2.2.9/po-libgimp/ca.gmo 2005-08-15 12:09:22.000000000 +0200 @@ -1,39 +1,41 @@ Þ•¯”é °±¹ÁÉÑÙáêðöü*(E4n#£.Ç!ö-F.b‘¨Åßçþ&,3EL -R]mr‚‡› -£ ®ºVÖ- DPAh*ªÕ ÝêóTMo½%Ìò÷ % 7C'J r€‡–œ ·Á Ô Þèøþ2"Adh p ~ Œ– ¦´ ºÇ ÎÚá÷ÿ %5 P] -ep%u› -­ ¸Å -×â!ë   %) -?J\;c Ÿ «¹Ð7Ö8G"Psxf‡îô -ü -'2;_BP¢UóILOa -{† -‰”š¢´·¿ÂÊÓÖ Ùã ìö -ù %, -4?BILHT¥­µ½ÅÍÖÜâ#è8 7EN}2ÌFÿ)F9p%ª;Ð #&Je(l•°ÆËÓð÷ ý -  % : ? V ^ o € V  ÷ !#!N@!7! Ç!Ñ!ë!ô! "e'"g"õ"(#/#8#@#E#"T#w#‰#2#Ã#Ô#Ü#ù#-ÿ# -$7$ M$Y$j$€$…$2•$0È$ù$ü$ % % %)%A%Y% ^% l%"v% ™%"§%Ê%Ò% Ú%ä%ÿ%5&#F&j&r&ƒ&.Š&¹&Í&ß&÷& - ''#'C' G'Q'Z'b' -}'ˆ'§'J¯'ú'(((B(AI(9‹(Å( Î(ï(ö(z )ˆ)Ž) –)'¢) Ê)×)ß)Sä)L8*Q…*×*Ú*Ý*ì* -++++&+/+E+H+P+S+ [+g+j+ m+z+‰+’+•+ ¤+°+À+Æ+É+Ñ+Ú+ â+î+ñ+ø+ û+2‡¡Œqƒ:iaT€Ÿn[`œe¨%*{;v­=„I}W’_\ !5 †('wux—#R.pª+V$sHP‚? §£8Z¤o•˜Cž…YXUrM -g‘]/bQzk0›,™K”ˆŽ~ N Š)y@<DšJ¬9SO4mc >f|“th"1&¦®E¢BjFL-¥l^3–7‹‰d¯©GA«6%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +R]mr‚‡›r£ + !-VI  ·ÃAÛ*H P]fxTMâ0%?ejs x%„ ª¶'½ åóú  *4 G Q[kq2"´×Û ã ñ ÿ  ' -: AMTjr yƒ˜¨ ÃÐ +Øã%è +  +8 +JU^ b lvz +›­;´ ð ü +!7'8_˜"¡ÄÉfØ?E +MX +xƒŒ_“PóUDš ² +Ì× +Úåëó$' *4 =G +JU\dlov} +…“šI¥ï÷ÿ(.4#:8^7—NÏ2FQ)˜9Â%ü;"^#xœ·(¾ç   % B I O \ r w  ’ © }± /!@!Q!Yq!Ë!è!÷!N"7c" ›"¥"¿"È"Ý"gû"ic#Í#*Þ# $$$$".$Q$c$2j$$®$¶$Ó$-Ù$ %% '%3%D%Z%_%2o%0¢%Ó%Ö% Þ% ì% ù%&&3& 8& F&"P& s&"&¤&¬& ´&¾&Ù&5ê&# 'D'L']'.d'“'§'¹'Ñ' +å'ð'ù' ý'((( +3(>(](Je(°(Æ(Þ(ø(Aÿ(:A)|) …)¦)­)zÄ)?*E* M*'Y* *Ž*–*S›*Lï*Q<+Ž+‘+”+£+ +¿+Ê+Í+Ö+Ý+æ+û+þ+, , ,, , #,0,?,H, K, X,d,t,z,},…,Ž, –,¢,¥,¬, ¯,3‡¡Œqƒ;jbU€Ÿo\af¨%+{<v­>„J}X’`] !6 œ('wux—#S/pª,W$sŽIQ‚@ §£9[¤†•˜Dž…ZYVrN +h‘^0cRzl1›-™L”ˆ)~ O Š*yA=EšK¬:TP5nd ?g|“ti"2&¦®F¢CkGM.¥m_4–8‹‰e¯©HB«7%.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' +MagentaMediumMegabytesMerge Visible LayersMid-Tone ChecksModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPerceptualPressureRGBRGB colorRGB-alphaRedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' SmallThe export conversion won't modify your original image.The percentage of black to pull out of the colored inks.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYou are about to save a channel (saved selection) as %s. This will not save the visible layers.You are about to save a layer mask as %s. This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-05-08 12:28+0200 -PO-Revision-Date: 2004-12-29 17:42+0100 +POT-Creation-Date: 2005-08-07 11:48+0200 +PO-Revision-Date: 2005-05-15 17:33+0200 Last-Translator: Xavier Beà -Language-Team: softcatala +Language-Team: Softcatalà 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 bytes%d GB%d KB%d MB%s només pot gestionar imatges RGB%s només pot gestionar imatges RGB o d'escala de grisos%s només pot gestionar les imatges RGB o les indexades%s només pot gestionar els mapes de bits (dos colors) o les imatges indexades%s només pot gestionar imatges d'escala de grisos%s només pot gestionar les imatges d'escala de grisos o les indexades%s només pot gestionar imatges indexades%s només pot gestionar les capes com a marcs d'animació%s no pot gestionar màscares de capa%s no pot gestionar desplaçaments de capa, mida o opacitat%s no pot gestionar capes%s no pot gestionar transparències%s necessita un canal alfa(Buit)(la cadena de text UTF-8 no és vàlida)Mètrica de color absolutaAfegeix un canal alfaAlfaÀncoraAplica les màscares de capa_NegreNegreNomés negre_Extracció de negre:BlauSelecció de pinzellCMYKSelector de color CMYKC_entreComprova la midaComprova l'estilEscolliu un perfil de color ICCCliqueu el comptagotes, després cliqueu en un color a la pantalla per seleccionar-lo.Visió amb dèficit de colorProva de colorTipus _de dèficit de color:Filtre de simulació de dèficit de color (algorisme de Brettel-Vienot-Mollon)Filtre de prova de color que usa un perfil de color ICCConfirmeuComfirmeu que voleu desarContrastC_icles de contrast:Converteix a escala de grisosConverteix a indexat amb els paràmetres per defecte -(feu-ho de forma manual per ajustar el resultat)Converteix a indexades amb els paràmetres per defecte -(Feu-ho de forma manual per ajustar el resultat)Converteix a RGBNo s'ha pogut crear miniatura per %s: %sEscapçaActual:CianQuadres foscosDeuteranòpia (insensible al verd)Exporta un fitxerFactorNo s'ha pogut crear la carpeta de miniatures '%s'.Aplana la imatgeCarpetaSelecció de tipus de lletraGammaFiltre de visualització de la gamma de colorGigaBytesSelecció de gradientNomés grisEscala de grisosEscala de grisos-alfaVerd_Notació HTML:Notació de color hexadecimal, com en l'HTML i CSSFiltre de visualització de color d'alt contrastToIndexatColor indexatIndexat-alfaKiloBytes_Espaiat de les lletresEspa_iat de les líniesGranQuadres clarsEnllaçatS'ha produït un error en carregarS'ha carregatS'està carregant el mòdul: '%s' -MagentaMitjanaMegaBytesFusiona les capes visiblesQuadres a mig toS'ha produït un error en carregar el mòdul '%s': %sS'ha produït un error en el mòdulMés...No s'ha carregatAntic:Triangle selector de color amb estil de pintorSelecció de paletaEnganxa-hi a dinsEnganxa com a un de nouSelecció de patróPerceptualPressióProtanòpia (insensible al vermell)RGBColor RGBRGB-alfaVermellMètrica de color relativaSaturacióAnomena i desa com a animacióEscalesConfigura el generador de nombres aleatoris amb el nombre aleatori generatSeleccioneu un fitxerSeleccioneu una carpetaS'ignora el mòdul: '%s' -PetitaLa conversió de l'exportació no modificarà la imatge original.El percentatge de negre a treure de les tintes acoloridesTriangleTritanòpia (insensible al blau)UnitatSelecció de la unitatUtilitzeu aquest valor com a generador de nombres aleatoris. Això us permetrà repetir una operació "aleatòria" ja fetaValorVisibleAquarel·laSelector de color amb estil aquarel·laNomés blancDesableGrocAra desareu un canal (selecció desada) com a %s. +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d bytes%d GB%d KB%d MB%s només pot gestionar imatges RGB%s només pot gestionar imatges RGB o d'escala de grisos%s només pot gestionar les imatges RGB o les indexades%s només pot gestionar els mapes de bits (dos colors) o les imatges indexades%s només pot gestionar imatges d'escala de grisos%s només pot gestionar les imatges d'escala de grisos o les indexades%s només pot gestionar imatges indexades%s només pot gestionar les capes com a marcs d'animació%s no pot gestionar màscares de capa%s no pot gestionar desplaçaments de capa, mida o opacitat%s no pot gestionar capes%s no pot gestionar transparències%s necessita un canal alfa(Buit)(la cadena de text UTF-8 no és vàlida)Mètrica de color absolutaAfegeix un canal alfaAlfaÀncoraAplica les màscares de capa_NegreNegreNomés negre_Extracció de negre:BlauSelecció del pinzellCMYKSelector de color CMYKC_entreNo es pot determinar un directori d'inici vàlid. +Les miniatures s'emmagatzemaran en la carpeta per a fitxers temporals (%s).Comprova la midaComprova l'estilEscolliu un perfil de color ICCCliqueu en el comptagotes, després cliqueu en un color a la pantalla per seleccionar-lo.Visió amb dèficit de colorProva de colorTipus _de dèficit de color:Filtre de simulació de dèficit de color (algorisme de Brettel-Vienot-Mollon)Filtre de prova de color que usa un perfil de color ICCConfirmeuComfirmeu que voleu desarContrastC_icles de contrast:Converteix a escala de grisosConverteix a indexat amb els paràmetres per defecte +(feu-ho de forma manual per a ajustar el resultat)Converteix a indexades amb els paràmetres per defecte +(Feu-ho de forma manual per a ajustar el resultat)Converteix a RGBNo s'ha pogut crear la miniatura de %s: %sEscapçaActual:CianQuadres foscosDeuteranòpia (insensible al verd)Exporta un fitxerFactorNo s'ha pogut crear la carpeta de miniatures '%s'.Aplana la imatgeCarpetaSelecció de tipus de lletraGammaFiltre de visualització de la gamma de colorGigaBytesSelecció de gradientNomés grisEscala de grisosEscala de grisos-alfaVerd_Notació HTML:Notació de color hexadecimal, com en l'HTML i CSSFiltre de visualització de color d'alt contrastToIndexatColor indexatIndexat-alfaKiloBytes_Espaiat de les lletresEspa_iat de les líniesGranQuadres clarsEnllaçatS'ha produït un error en carregarS'ha carregatS'està carregant el mòdul: '%s' +MagentaMitjanaMegaBytesFusiona les capes visiblesQuadres a mig toS'ha produït un error en carregar el mòdul '%s': %sS'ha produït un error en el mòdulMés...No s'ha carregatAntic:Triangle selector de color amb estil de pintorSelecció de paletaEnganxa-ho a dinsEnganxa com a un de nouSelecció de patróPerceptualPressióRGBColor RGBRGB-alfaVermellMètrica de color relativaSaturacióAnomena i desa com a animacióEscalesConfigura el generador de nombres aleatoris amb el nombre aleatori generatSeleccioneu un fitxerSeleccioneu una carpetaS'ignora el mòdul: '%s' +PetitaLa conversió de l'exportació no modificarà la imatge original.El percentatge de negre a treure de les tintes acolorides.TriangleTritanòpia (insensible al blau)UnitatSelecció de la unitatUtilitzeu aquest valor com a generador de nombres aleatoris. Això us permetrà repetir una operació "aleatòria" ja fetaValorVisibleAquarel·laSelector de color amb estil aquarel·laNomés blancDesableGrocAra desareu un canal (selecció desada) com a %s. No es desaran les capes visibles.Ara desareu una màscara de capa com a %s. -No es desaran les capes visibles.Pels motius següents, heu d'exportar la imatge abans de poder-la desar com a %s:_A_BColor de _fonsCo_mpensació de punt negre_Navega..._C_Duplica_Edita_ExportaColor del _primer pla_G_Gamma:_H_Ignora_Propòsit:_K_M_Nova llavor_Previsualitza_Perfil:_RFes a l'atza_r_RedefineixCanvia la _midaGi_ra_SE_scalaRe_talla_Traça_Transforma_V_Blanc_Ypercentatge \ No newline at end of file +No es desaran les capes visibles.Pels motius següents, heu d'exportar la imatge abans de poder-la desar com a %s:_A_BColor de _fonsCo_mpensació de punt negre_Navega..._C_Duplica_Edita_ExportaColor de _primer pla_G_Gamma:_H_Ignora_Propòsit:_K_M_Nova llavor_Previsualitza_Perfil:_RAleato_ritza_RedefineixCanvia la _midaGi_ra_SE_scalaRe_talla_Traça_Transforma_V_Blanc_Ypercentatge \ No newline at end of file diff -uraN gimp-2.2.8/po-libgimp/ca.po gimp-2.2.9/po-libgimp/ca.po --- gimp-2.2.8/po-libgimp/ca.po 2005-05-08 23:41:57.000000000 +0200 +++ gimp-2.2.9/po-libgimp/ca.po 2005-08-15 12:07:07.000000000 +0200 @@ -1,23 +1,24 @@ # gimp-libgimp translation to Catalan # Softcatala , 2000-2002 # Jordi Jover, jordijn@softcatala.org, 2002. -# Xavier Conde Rueda , 2004. +# Xavier Conde Rueda , 2004, 2005. +# Quim Perez i Noguer , 2005. # msgid "" msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-05-08 12:28+0200\n" -"PO-Revision-Date: 2004-12-29 17:42+0100\n" +"POT-Creation-Date: 2005-08-07 11:48+0200\n" +"PO-Revision-Date: 2005-05-15 17:33+0200\n" "Last-Translator: Xavier Beà \n" -"Language-Team: softcatala \n" +"Language-Team: Softcatalà \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../libgimp/gimpbrushmenu.c:129 msgid "Brush Selection" -msgstr "Selecció de pinzell" +msgstr "Selecció del pinzell" #: ../libgimp/gimpbrushmenu.c:158 ../libgimp/gimppatternmenu.c:142 msgid "_Browse..." @@ -98,7 +99,7 @@ "(Do it manually to tune the result)" msgstr "" "Converteix a indexades amb els paràmetres per defecte\n" -"(Feu-ho de forma manual per ajustar el resultat)" +"(Feu-ho de forma manual per a ajustar el resultat)" #: ../libgimp/gimpexport.c:306 #, c-format @@ -112,7 +113,7 @@ "(Do it manually to tune the result)" msgstr "" "Converteix a indexat amb els paràmetres per defecte\n" -"(feu-ho de forma manual per ajustar el resultat)" +"(feu-ho de forma manual per a ajustar el resultat)" #: ../libgimp/gimpexport.c:316 #, c-format @@ -158,7 +159,6 @@ msgid "_Export" msgstr "_Exporta" -# the headline #. the headline #: ../libgimp/gimpexport.c:482 #, c-format @@ -350,6 +350,7 @@ msgid "Module '%s' load error: %s" msgstr "S'ha produït un error en carregar el mòdul '%s': %s" +# FIXME: skip, to --> "ometre" #: ../libgimpmodule/gimpmodule.c:282 #, c-format msgid "Skipping module: '%s'\n" @@ -377,6 +378,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"No es pot determinar un directori d'inici vàlid.\n" +"Les miniatures s'emmagatzemaran en la carpeta per a fitxers temporals (%s)." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -386,11 +389,11 @@ #: ../libgimpthumb/gimpthumbnail.c:919 #, c-format msgid "Could not create thumbnail for %s: %s" -msgstr "No s'ha pogut crear miniatura per %s: %s" +msgstr "No s'ha pogut crear la miniatura de %s: %s" #: ../libgimpwidgets/gimpcolorbutton.c:99 msgid "_Foreground Color" -msgstr "Color del _primer pla" +msgstr "Color de _primer pla" #: ../libgimpwidgets/gimpcolorbutton.c:103 msgid "_Background Color" @@ -518,7 +521,6 @@ msgid "Writable" msgstr "Desable" -# era: msgstr "Grabable" #: ../libgimpwidgets/gimppatheditor.c:252 msgid "Folder" msgstr "Carpeta" @@ -528,7 +530,7 @@ "Click the eyedropper, then click a color anywhere on your screen to select " "that color." msgstr "" -"Cliqueu el comptagotes, després cliqueu en un color a la pantalla per " +"Cliqueu en el comptagotes, després cliqueu en un color a la pantalla per " "seleccionar-lo." #: ../libgimpwidgets/gimppreviewarea.c:126 @@ -571,7 +573,7 @@ #: ../libgimpwidgets/gimpstock.c:119 msgid "Paste Into" -msgstr "Enganxa-hi a dins" +msgstr "Enganxa-ho a dins" #: ../libgimpwidgets/gimpstock.c:120 msgid "_Reset" @@ -652,9 +654,10 @@ #: ../libgimpwidgets/gimpwidgets.c:1022 msgid "_Randomize" -msgstr "Fes a l'atza_r" +msgstr "Aleato_ritza" #: ../modules/cdisplay_colorblind.c:57 ../modules/cdisplay_colorblind.c:545 +#, fuzzy msgid "Protanopia (insensitivity to red)" msgstr "Protanòpia (insensible al vermell)" @@ -785,7 +788,7 @@ #: ../modules/colorsel_cmyk.c:208 msgid "The percentage of black to pull out of the colored inks." -msgstr "El percentatge de negre a treure de les tintes acolorides" +msgstr "El percentatge de negre a treure de les tintes acolorides." #: ../modules/colorsel_triangle.c:104 msgid "Painter-style triangle color selector" @@ -806,3 +809,283 @@ #: ../modules/colorsel_water.c:220 msgid "Pressure" msgstr "Pressió" + +#~ msgid "_White (full opacity)" +#~ msgstr "_Blanc (opac del tot)" + +#~ msgid "_Black (full transparency)" +#~ msgstr "_Negre (transparent del tot)" + +#~ msgid "Layer's _alpha channel" +#~ msgstr "Canal _alfa de la capa" + +#~ msgid "_Transfer layer's alpha channel" +#~ msgstr "_Tranfereix canal alfa de la capa" + +#~ msgid "_Selection" +#~ msgstr "_Selecció" + +#~ msgid "_Grayscale copy of layer" +#~ msgstr "Còpia de capa en escala de _grisos" + +#~ msgid "FG to BG (RGB)" +#~ msgstr "De primer pla a fons (RGB)" + +#~ msgid "FG to BG (HSV)" +#~ msgstr "De primer pla a fons (HSV)" + +#~ msgid "FG to transparent" +#~ msgstr "De primer pla a transparent" + +#~ msgid "Custom gradient" +#~ msgstr "Degradat personalitzat" + +#~ msgid "FG color fill" +#~ msgstr "Omple amb el color del primer pla" + +#~ msgid "BG color fill" +#~ msgstr "Omple amb el color de fons" + +#~ msgid "Pattern fill" +#~ msgstr "Omple amb el patró" + +#~ msgid "Add to the current selection" +#~ msgstr "Afegeix a la selecció actual" + +#~ msgid "Subtract from the current selection" +#~ msgstr "Sostreu de la selecció actual" + +#~ msgid "Replace the current selection" +#~ msgstr "Canvia la selecció actual" + +#~ msgid "Intersect with the current selection" +#~ msgstr "Creua amb la selecció" + +#~ msgid "Gray" +#~ msgstr "Gris" + +#~ msgid "Image source" +#~ msgstr "Copia d'una altra imatge" + +#~ msgid "Pattern source" +#~ msgstr "Un patró de la llista" + +#~ msgid "Dodge" +#~ msgstr "Esvaeix" + +#~ msgid "Burn" +#~ msgstr "Crema" + +#~ msgid "Linear" +#~ msgstr "Lineal" + +#~ msgid "Bi-linear" +#~ msgstr "Bilineal" + +#~ msgid "Radial" +#~ msgstr "Radial" + +#~ msgid "Square" +#~ msgstr "Quadrat" + +#~ msgid "Conical (sym)" +#~ msgstr "Cònic (simètric)" + +#~ msgid "Conical (asym)" +#~ msgstr "Cònic (asimètric)" + +#~ msgid "Shaped (angular)" +#~ msgstr "Adaptació angular" + +#~ msgid "Shaped (spherical)" +#~ msgstr "Adaptació esfèrica" + +#~ msgid "Shaped (dimpled)" +#~ msgstr "Adaptació foradada" + +#~ msgid "Spiral (cw)" +#~ msgstr "Espiral (horari)" + +#~ msgid "Spiral (ccw)" +#~ msgstr "Espiral (antihorari)" + +#~ msgid "Stock ID" +#~ msgstr "ID d'element" + +#~ msgid "Inline pixbuf" +#~ msgstr "Pixbuf en línia" + +#~ msgid "Image file" +#~ msgstr "Fitxer d'imatge" + +#~ msgid "None (Fastest)" +#~ msgstr "Cap (el més ràpid)" + +#~ msgid "Cubic" +#~ msgstr "Cúbic" + +#~ msgid "Lanczos (Best)" +#~ msgstr "Lanczos (millor)" + +#~ msgid "Constant" +#~ msgstr "Constant" + +#~ msgid "Incremental" +#~ msgstr "Incremental" + +#~ msgid "None" +#~ msgstr "Cap" + +#~ msgid "Sawtooth wave" +#~ msgstr "Ona de dents de serra" + +#~ msgid "Triangular wave" +#~ msgstr "Ona triangular" + +#~ msgid "Pixels" +#~ msgstr "Píxels" + +#~ msgid "Points" +#~ msgstr "Punts" + +#~ msgid "Shadows" +#~ msgstr "Ombres" + +#~ msgid "Midtones" +#~ msgstr "Tons mitjans" + +#~ msgid "Highlights" +#~ msgstr "Ressaltats" + +#~ msgid "Forward (traditional)" +#~ msgstr "Endavant (tradicional)" + +#~ msgid "Backward (corrective)" +#~ msgstr "Endarrere (corregeix)" + +#~ msgid "value for token %s is not a valid UTF-8 string" +#~ msgstr "el valor per a l'element %s no és una cadena de text UTF-8 vàlida" + +#~ msgid "expected 'yes' or 'no' for boolean token %s, got '%s'" +#~ msgstr "S'esperava 'yes' o 'no' per a l'element booleà %s. S'obtingué '%s'" + +#~ msgid "invalid value '%s' for token %s" +#~ msgstr "El valor '%s' no és vàlid per a l'element %s" + +#~ msgid "invalid value '%ld' for token %s" +#~ msgstr "El valor '%ld' no és vàlid per a l'element %s" + +#~ msgid "while parsing token '%s': %s" +#~ msgstr "en analitzar l'element '%s': %s" + +#~ msgid "fatal parse error" +#~ msgstr "s'ha produït un error fatal d'anàlisi" + +#~ msgid "Cannot expand ${%s}" +#~ msgstr "No es pot expandir ${%s}" + +#~ msgid "Could not create temporary file for '%s': %s" +#~ msgstr "No s'ha pogut crear el fitxer temporal per a '%s': %s" + +#~ msgid "Could not open '%s' for writing: %s" +#~ msgstr "No s'ha pogut obrir '%s' per a l'escriptura: %s" + +#~ msgid "" +#~ "Error writing to temporary file for '%s': %s\n" +#~ "The original file has not been touched." +#~ msgstr "" +#~ "S'ha produït un error en escriure el fitxer temporal per a '%s': %s\n" +#~ "No s'ha tocat el fitxer original." + +#~ msgid "" +#~ "Error writing to temporary file for '%s': %s\n" +#~ "No file has been created." +#~ msgstr "" +#~ "S'ha produït un error en escriure el fitxer temporal per a '%s': %s\n" +#~ "No s'ha creat cap fitxer" + +#~ msgid "Error writing to '%s': %s" +#~ msgstr "S'ha produït un error en escriure '%s': %s" + +#~ msgid "Could not create '%s': %s" +#~ msgstr "No s'ha pogut crear '%s': %s" + +#~ msgid "Could not open '%s' for reading: %s" +#~ msgstr "No s'ha pogut obrir '%s' per a la lectura: %s" + +#~ msgid "invalid UTF-8 string" +#~ msgstr "cadena de text UTF-8 invàlida" + +#~ msgid "Error while parsing '%s' in line %d: %s" +#~ msgstr "S'ha produït un error en analitzar '%s' a la línia %d: %s" + +# ##################################################### +# EN DESUS A PARTIR DE GIMP 2.2.7 +# ##################################################### +#~ msgid "Lightness" +#~ msgstr "Claredat" + +#~ msgid "Luminosity" +#~ msgstr "Lluminositat" + +#~ msgid "Average" +#~ msgstr "Mitja" + +#~ msgid "Forward" +#~ msgstr "Endavant" + +#~ msgid "Backward" +#~ msgstr "Endarrere" + +#~ msgid "Mode of operation for color management." +#~ msgstr "Mode d'operació per a la gestió del color." + +#~ msgid "Sets the color profile for the display." +#~ msgstr "Estableix el perfil de color per a la pantalla." + +#~ msgid "Sets default RGB workspace color profile." +#~ msgstr "" +#~ "Estableix el perfil de color predeterminat de l'espai de treball RGB" + +#~ msgid "Sets the CMYK color profile used to convert between RGB and CMYK." +#~ msgstr "" +#~ "Estableix el perfil de color CMYK usat per convertir entre RGB i CMYK." + +#~ msgid "Sets the color profile used when printing." +#~ msgstr "Estableix el perfil de color per a la impressió." + +#~ msgid "Sets how colors are mapped for your display." +#~ msgstr "Estableix com estan mapejats els colors en la vostra pantalla." + +#~ msgid "Sets how colors are converted from workspace to simulation device." +#~ msgstr "" +#~ "Estableix com es converteixen els colors de l'espai de treball al " +#~ "dispositiu de simulació." + +#~ msgid "No color management" +#~ msgstr "Sense gestió del color" + +#~ msgid "Color managed display" +#~ msgstr "Pantalla amb colors gestionats" + +#~ msgid "Print simulation" +#~ msgstr "Simulació d'impressió" + +#~ msgid "Ask" +#~ msgstr "Demana-ho" + +#~ msgid "Use embedded profile" +#~ msgstr "Usa el perfil inclòs" + +#~ msgid "Convert to RGB workspace" +#~ msgstr "Converteix a espai de treball RGB" + +#~ msgid "This text input field is limited to %d characters." +#~ msgstr "Aquest camp d'entrada de text està limitat a %d caràcters." + +#~ msgid "Color management display filter using ICC color profiles" +#~ msgstr "" +#~ "Filtre de gestió de color de pantalles que fa serivr perfils de color ICC" + +#~ msgid "Color Management" +#~ msgstr "Gestió del color" diff -uraN gimp-2.2.8/po-libgimp/ChangeLog gimp-2.2.9/po-libgimp/ChangeLog --- gimp-2.2.8/po-libgimp/ChangeLog 2005-04-27 16:53:05.000000000 +0200 +++ gimp-2.2.9/po-libgimp/ChangeLog 2005-09-20 18:24:05.000000000 +0200 @@ -1,3 +1,24 @@ +2005-09-17 Takeshi AIHANA + + * ja.po: Updated Japanese translation by + kano@na.rim.or.jp. + +2005-08-11 Funda Wang + + * zh_CN.po: Updated Simplified Chinese translation. + +2005-08-07 Josep Puigdemont + + * ca.po: Updated Catalan translation by Quim Perez et al. + +2005-07-20 Sven Neumann + + * de.po: update and spelling fix. + +2005-07-07 Abel Cheung + + * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team + 2005-04-27 Jakub Friedl * cs.po: updated Czech translation, fixed some problems. diff -uraN gimp-2.2.8/po-libgimp/de.gmo gimp-2.2.9/po-libgimp/de.gmo --- gimp-2.2.8/po-libgimp/de.gmo 2005-05-08 23:42:02.000000000 +0200 +++ gimp-2.2.9/po-libgimp/de.gmo 2005-08-15 12:09:22.000000000 +0200 @@ -1,26 +1,27 @@ -Þ•¯”é °±¹ÁÉÑÙáêðöü*(E4n#£.Ç!ö-F.b‘¨Åßçþ&,3EL -R]mr‚‡› -£ ®ºVÖ- DPAh*ªÕ ÝêóTMo½%Ìò÷ % 7C'J r€‡–œ ·Á Ô Þèøþ2"Adh p ~ Œ– ¦´ ºÇ ÎÚá÷ÿ %5 P] -ep%u› -­ ¸Å -×â!ë   %) -?J\;c Ÿ «¹Ð7Ö8G"Psxf‡îô -ü -'2;_BP¢UóILOa -{† -‰”š¢´·¿ÂÊÓÖ Ùã ìö -ù %, -4?BIL8T•¥­µ½ÅËÑ×è(61h/€ °,ÑþGbx“±¸Ñê  + 4 BN] bpu †’¦¹dÏ4 D Q Jh ,³ à ì ! ! !w8!w°!("<9" v"‚"‹"" "¾"Ð"=×"# )#5#F#L#e#n#€# -‰#”#¥# «#-·#å#$ $$)$9$ -B$M$\$b$ -q$|$‘$™$«$³$º$Ã$Ý$$ð$ %"% *%8%(@%i%}%’% ¤% ²%¾%Ä%Þ% -â% í%÷%û% -&& 7&8E&~&&¦&½&6Ã&Lú&G'O'j'r'k…'ñ'ö' ÿ' ( $( -.( 9(jG(X²(C )O)R)U)g)})) ) ) ©)¶)È)Ë)Ó) Ö) â)ì)ï) ò) * -** -* !*.* ?*I* -L*W* `*l*|**†*‰*2‡¡Œqƒ:iaT€Ÿn[`œe¨%*{;v­=„I}W’_\ !5 †('wux—#R.pª+V$sHP‚? §£8Z¤o•˜Cž…YXUrM -g‘]/bQzk0›,™K”ˆŽ~ N Š)y@<DšJ¬9SO4mc >f|“th"1&¦®E¢BjFL-¥l^3–7‹‰d¯©GA«6%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +Þ•°œï ØÙáéñù $*B(m4–#Ë.ï!-@n.Š¹Ðí&<NT[mt +z…•šª¯ÃrË +> IUVqÈ ßëA*Ep x…Ž TµM +X%g’›  %¬ ÒÞ'å "17 R\ o yƒ“™2©"Üÿ   '1 AO Ub iu|’š ¡«ÀÐ ëø + %6 +H S` +r}!†¨ ¬ ¶ÀÄ +Úå÷;þ : FTk7q8©â"ëf"‰ +—¢ +ÂÍÖ_ÝP=UŽäçêü +! +$/5=ORZ]enq t~ ‡‘ +”Ÿ¦®¶¹ÀÇ +ÏÚÝäç8ï(08@HPX`flrƒ(£6Ì/ K,l™Gµý.LSl… œ ¦°Æ Ï Ýéø ý  ! •- à × ê d!e! u!‚!J™!,ä! ""1":"Q"wi"wá"Y#<j# §#³#¼#Á#Ñ#ï#$=$F$ Z$f$w$}$–$Ÿ$±$ +º$Å$Ö$ Ü$-è$%6% >%H%Z%j% +s%~%%“% +¢%­%Â%Ê%Ü%ä%ë%ô%&$!& F&S& [&i&(q&š&®&Ã& Õ& ã&ï&õ&' +' '(',' +E'P' h'8v'¯'À'×'î'6ô'L+(x(€(›(£(k¶(")') 0)<) U) +_) j)jx)Xã)C<*€*ƒ*†*˜*®*¾* Á* Î* Ú*ç*ù*ü*+ + ++ + #+ 1+;+D+ +G+ R+_+ p+z+ +}+ˆ+ ‘++­+°+·+º+ +4I”\^­$-Fl/ªŽH= +¤ž3V?v«b0Z(®£d¨]‡ <y){6©†…„"[o5‚,™iRC m¬Y°B`&˜Pf§S•phŒ@1# ¡a8;W2e%K’T—.c‹X‘›~Ÿ!9JA'¯¦‰N u*œr¥GLEšs>tˆ–wDQ Mqx7_|ŠU€¢:Onzjgƒk“}%.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' @@ -29,16 +30,17 @@ 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-05-08 12:28+0200 -PO-Revision-Date: 2004-11-17 11:42+0100 +PO-Revision-Date: 2005-07-20 16:44+0200 Last-Translator: Sven Neumann Language-Team: German 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 Byte%d GB%d KB%d MB%s kennt nur RGB%s kennt nur RGB und Graustufen%s kennt nur RGB und indizierte Paletten%s kennt nur Bitmaps (indizierte Palette mit 2 Farben)%s kennt nur Graustufen%s kennt nur Graustufen und indizierte Paletten%s kennt nur indizierte Paletten%s kann Ebenen nur als Animation abspeichern%s kennt keine Ebenenmasken%s kennt keine Ebeneneigenschaften wie Versatz, Größe und Transparenz%s kennt keine Ebenen%s kennt keine Transparenz%s benötigt einen Alphakanal(Leer)(Ungültiger UTF-8 Text)Kolorimetrisch (absolut)Alphakanal hinzufügenDeckkraftVerankernEbenenmasken anwenden_SchwarzSchwarz (Key)Nur SchwarzSchwarzauszug:BlauPinselauswahlCMYKCMYK Farbmischer_ZentrierenSchachbrett GrößeSchachbrett MusterFarbprofil auswählenKlicken Sie die Pipette und dann einen beliebigen Punkt auf dem Schirm um dessen Farbe auszuwählen.FarbenblindheitFarb AndruckArt der _Sehschwäche:Farbenblindheit Anzeigenfarbfilter (Algorithmus von Brettel-Vienot-Mollon)Farb Andruck Filter mittels ICC FarbprofilenBestätigenSichern bestätigenKontrastKontrast_verstärkung:In Graustufen umwandelnMit Standardeinstellungen in indiziertes Format umwandeln +%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Byte%d GB%d KB%d MB%s kennt nur RGB%s kennt nur RGB und Graustufen%s kennt nur RGB und indizierte Paletten%s kennt nur Bitmaps (indizierte Palette mit 2 Farben)%s kennt nur Graustufen%s kennt nur Graustufen und indizierte Paletten%s kennt nur indizierte Paletten%s kann Ebenen nur als Animation abspeichern%s kennt keine Ebenenmasken%s kennt keine Ebeneneigenschaften wie Versatz, Größe und Transparenz%s kennt keine Ebenen%s kennt keine Transparenz%s benötigt einen Alphakanal(Leer)(Ungültiger UTF-8 Text)Kolorimetrisch (absolut)Alphakanal hinzufügenDeckkraftVerankernEbenenmasken anwenden_SchwarzSchwarz (Key)Nur SchwarzSchwarzauszug:BlauPinselauswahlCMYKCMYK Farbmischer_ZentrierenEs konnte kein gültiger Persönlicher Ordner gefunden werden. +Vorschaubilder werden stattdessen in den Ordner für temporäre Dateien (%s) abgelegt.Schachbrett GrößeSchachbrett MusterFarbprofil auswählenKlicken Sie die Pipette und dann einen beliebigen Punkt auf dem Schirm um dessen Farbe auszuwählen.FarbenblindheitFarb AndruckArt der _Sehschwäche:Farbenblindheit Anzeigenfarbfilter (Algorithmus von Brettel-Vienot-Mollon)Farb Andruck Filter mittels ICC FarbprofilenBestätigenSichern bestätigenKontrastKontrast_verstärkung:In Graustufen umwandelnMit Standardeinstellungen in indiziertes Format umwandeln (Für bessere Resultate, diesen Schritt manuell durchführen)Mit Standardeinstellungen in indiziertes Format umwandeln (Für bessere Resultate, diesen Schritt manuell durchführen)In RGB umwandelnDas Vorschaubild für %s köonnte nicht erstellt werden: %sZuschneidenAktuell:CyanDunkle QuadrateDeuteranopia (Grünschwäche)Datei exportierenFaktorFehler beim Anlegen des Verzeichnis für Vorschaubilder '%s'.Bild zusammenfügenVerzeichnisSchriftenauswahlGammaGamma AnzeigenfarbfilterGigabyteGradientenauswahlNur GrauGraustufenGraustufen-AlphaGrünHTML _Form:Hexadezimale Schreibweise wie in HTML und CSSHochkontrast AnzeigenfarbfilterFarbtonIndiziertIndizierte FarbenIndiziert-AlphaKilobyteL_aufweiteZ_eilenabstandGroßHelle QuadrateVerknüpftLaden fehlgeschlagenGeladenLade Modul: '%s' MagentaMittelMegabyteSichtbare Ebenen vereinenHalbhelle QuadrateFehler beim Laden von Modul '%s': %sModul FehlerMehr...Nicht geladenVorher:Dreiecks-Farbauswahl im Stil von PainterFarbpalettenauswahlEinfügen in AuswahlEinfügen als NeuMusterauswahlWahrnehmungDruckProtanopia (Rotschwäche)RGBRGB FarbenRGB-AlphaRotKolorimetrisch (relativ)SättigungAls Animation speichernSchiebereglerInitialisiere den Zufallsgenerator mit einer ZufallszahlDatei auswählenVerzeichnis auswählenIgnoriere Modul: '%s' KleinDieser Vorgang wird das Originalbild nicht verändern.Der Prozentsatz an Schwarz, der aus den farbigen Tinten gezogen werden soll.DreieckTritanopia (Blauschwäche)EinheitEinheit auswählenBenutze diesen Wert für den Zufallsgenerator - dies ermgöglicht es "zufällige" Funktionen zu wiederholenWertSichtbarWasserfarbeWasserfarben FarbmischerNur WeißSchreibbarGelb (Yellow)Sie sichern einen Kanal (gesicherte Selektion) als %s. Die sichtbaren Ebenen werden dabei nicht gesichert.Sie sichern eine Ebenenmaske als %s. -Die sichtbaren Ebenen werden dabei nicht gesichert.Das Bild sollte vor dem Abspeichern als %s exportiert werden, denn:_A_B_HintergrundfarbeSchwarzpunkt-Abgleich_Durchsuchen..._C_Duplizieren_Bearbeiten_Exportieren_Vordergrundfarbe_G_Gamma:_H_Ignorieren_Absicht:_K_M_Neu Würfeln_Vorschau_Profil:_R_Zufällig_Rücksetzen_Größe ändern_Rotieren_S_Skalieren_Scheren_Nachziehen_Transformation_V_Weiss_YProzent \ No newline at end of file +Die sichtbaren Ebenen werden dabei nicht gesichert.Das Bild sollte vor dem Abspeichern als %s exportiert werden, denn:_A_B_HintergrundfarbeSchwarzpunkt-Abgleich_Durchsuchen..._C_Duplizieren_Bearbeiten_Exportieren_Vordergrundfarbe_G_Gamma:_H_Ignorieren_Absicht:_K_M_Neu Würfeln_Vorschau_Profil:_R_Zufällig_Rücksetzen_Größe ändern_Rotieren_S_Skalieren_Scheren_Nachziehen_Transformation_V_Weiß_YProzent \ No newline at end of file diff -uraN gimp-2.2.8/po-libgimp/de.po gimp-2.2.9/po-libgimp/de.po --- gimp-2.2.8/po-libgimp/de.po 2005-05-08 23:41:58.000000000 +0200 +++ gimp-2.2.9/po-libgimp/de.po 2005-08-15 12:07:07.000000000 +0200 @@ -12,7 +12,7 @@ "Project-Id-Version: GIMP 2.2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-05-08 12:28+0200\n" -"PO-Revision-Date: 2004-11-17 11:42+0100\n" +"PO-Revision-Date: 2005-07-20 16:44+0200\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -377,6 +377,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"Es konnte kein gültiger Persönlicher Ordner gefunden werden.\n" +"Vorschaubilder werden stattdessen in den Ordner für temporäre Dateien (%s) abgelegt." #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -402,7 +404,7 @@ #: ../libgimpwidgets/gimpcolorbutton.c:111 msgid "_White" -msgstr "_Weiss" +msgstr "_Weiß" #: ../libgimpwidgets/gimpcolorscales.c:133 msgid "Scales" diff -uraN gimp-2.2.8/po-libgimp/ja.gmo gimp-2.2.9/po-libgimp/ja.gmo --- gimp-2.2.8/po-libgimp/ja.gmo 2005-05-08 23:42:02.000000000 +0200 +++ gimp-2.2.9/po-libgimp/ja.gmo 2005-10-20 12:46:53.000000000 +0200 @@ -1,23 +1,25 @@ -Þ•¯”é °±¹ÁÉÑÙáêðöü*(E4n#£.Ç!ö-F.b‘¨Åßçþ&,3EL -R]mr‚‡› -£ ®ºVÖ- DPAh*ªÕ ÝêóTMo½%Ìò÷ % 7C'J r€‡–œ ·Á Ô Þèøþ2"Adh p ~ Œ– ¦´ ºÇ ÎÚá÷ÿ %5 P] -ep%u› -­ ¸Å -×â!ë   %) -?J\;c Ÿ «¹Ð7Ö8G"Psxf‡îô -ü -'2;_BP¢UóILOa -{† -‰”š¢´·¿ÂÊÓÖ Ùã ìö -ù %, -4?BILVT«³»ÃËÓ Ûèîô)úJ$GoZ·9WL6¤WÛ33Lg*´*ß0 - ; A ] $| ¡ ± ¸ Ô Ü à í !!!! -1!% N%[% n%"{%ž%®% Ê%×%"í%&&8$&4]&’&™&¬&È&è&ø& ' '!'7'G'Z'%m' “' '§'·'Ó'.ì'(4(D(T(\(t(‡(¦(¼(Ï(ß($æ( ) )).)2)Q)$X) })?Š)Ê)Ý)7ð) (*C2*6v* ­*$·*Ü* ã*~ð*o+v+ }+‡+ £+°+Ã+ Ê+‡k,qó,e-h- k-y-Š-ž- -¡- -¬-·- Î-Ü-ß-ñ- -ô- ÿ- ...".6.N. Q._.p. -„..’.£.·.Ë.Ò.Õ.Ý.à.2‡¡Œqƒ:iaT€Ÿn[`œe¨%*{;v­=„I}W’_\ !5 †('wux—#R.pª+V$sHP‚? §£8Z¤o•˜Cž…YXUrM -g‘]/bQzk0›,™K”ˆŽ~ N Š)y@<DšJ¬9SO4mc >f|“th"1&¦®E¢BjFL-¥l^3–7‹‰d¯©GA«6%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +Þ•°œï ØÙáéñù $*B(m4–#Ë.ï!-@n.Š¹Ðí&<NT[mt +z…•šª¯ÃrË +> IUVqÈ ßëA*Ep x…Ž TµM +X%g’›  %¬ ÒÞ'å "17 R\ o yƒ“™2©"Üÿ   '1 AO Ub iu|’š ¡«ÀÐ ëø + %6 +H S` +r}!†¨ ¬ ¶ÀÄ +Úå÷;þ : FTk7q8©â"ëf"‰ +—¢ +ÂÍÖ_ÝP=UŽäçêü +! +$/5=ORZ]enq t~ ‡‘ +”Ÿ¦®¶¹ÀÇ +ÏÚÝäç;ï+3;CKS [hnt)zJ¤GïZ79’WÌ6$W[3³Nç*6 *a 0Œ ½ à ß $þ #!3!:!V!^! b!o!‚!†!–!›! +³!—¾!V"o"'‹"z³".# D#N#[l#3È#ü#$$#&$J$i$~ú$ y%(‡% °%½% Å%Ï%$â%!&)&00&a& q&~& ‘&"ž&Á&Ñ& í&ú&"'3'7'8G'4€'µ'¼'Ï'ë' (( ,( :(D(Z(j(}(%( ¶(Ã(Ê(Ú(ö(.)>)W)g)w))—)ª)É)ß)ò)*$ *.* 2*@*Q*U*t*${*  *?­*í*+7+ K+EU+6›+ Ò+$Ü+, ,,•,œ, £,­, É,Ö,é,¥ð,Œ–-q#.•.˜. ›.©.º.Î. +Ñ. +Ü.ç. þ. //!/ +$/ //;/>/A/R/f/~/ // / +´/¿/Â/Ó/ç/ +û/0 000 +4I”\^­$-Fl/ªŽH= +¤ž3V?v«b0Z(®£d¨]‡ <y){6©†…„"[o5‚,™iRC m¬Y°B`&˜Pf§S•phŒ@1# ¡a8;W2e%K’T—.c‹X‘›~Ÿ!9JA'¯¦‰N u*œr¥GLEšs>tˆ–wDQ Mqx7_|ŠU€¢:Onzjgƒk“}%.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' @@ -25,17 +27,18 @@ 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-05-08 12:28+0200 -PO-Revision-Date: 2005-02-17 12:25+0900 -Last-Translator: Tadashi Jokagi +POT-Creation-Date: 2005-09-17 19:54+0900 +PO-Revision-Date: 2005-09-10 19:00+0900 +Last-Translator: Language-Team: Japanese 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 文字列)絶対カラーメトリックアルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加アルファ値固定レイヤーマスクé©ç”¨é»’(_K)黒黒色ã®ã¿é»’ã®æŠ˜è¾¼ (_P):é’ブラシé¸æŠžCMYKCMYK å½¢å¼ã®è‰²é¸æŠžä¸­å¤®(_E)市æ¾æ¨¡æ§˜ã®å¤§ãã•å¸‚æ¾æ¨¡æ§˜ã®ã‚¹ã‚¿ã‚¤ãƒ«ICCカラープロファイルをé¸æŠžeyedropper をクリックã—, スクリーン上ã®ã©ã“ã‹ã‚’クリックã—ã¦ãã®å ´æ‰€ã®è‰²ã‚’é¸æŠžã—ã¾ã™.色覚障害ã®è¦–覚色åˆã›è‰²è¦šéšœå®³ã®ã‚¿ã‚¤ãƒ—:色覚障害シミュレーションフィルタ (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カラープロファイルをé¸æŠžeyedropper をクリックã—ã€ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ä¸Šã®ã©ã“ã‹ã‚’クリックã—ã¦ãã®å ´æ‰€ã®è‰²ã‚’é¸æŠžã—ã¾ã™ã€‚色覚障害ã®è¦–覚色åˆã›è‰²è¦šéšœå®³ã®ã‚¿ã‚¤ãƒ—(_D):色覚障害シミュレーションフィルタ (Brettel-Vienot-Mollon アルゴリズム)ICCカラープロファイルを用ã„る色åˆã›ç¢ºèªä¿å­˜ã®ç¢ºèªã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã‚µã‚¤ã‚¯ãƒ«(_y):グレースケールã«å¤‰æ›ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹ç”»åƒã«ãƒ“ットマップ標準設定ã§è‡ªå‹•å¤‰æ›ã™ã‚‹ (良ã„çµæžœã‚’å¾—ãŸã„å ´åˆã«ã¯æ‰‹å‹•ã§è¡Œã£ã¦ä¸‹ã•ã„)インデックス画åƒã«æ¨™æº–設定ã§è‡ªå‹•å¤‰æ›ã™ã‚‹ -(良ã„çµæžœã‚’å¾—ãŸã„å ´åˆã«ã¯æ‰‹å‹•ã§è¡Œã£ã¦ä¸‹ã•ã„)RGB ã«å¤‰æ›%s ã®ã‚µãƒ ãƒã‚¤ãƒ«ã‚’作æˆå¤±æ•—: %s切り抜ãç¾åœ¨:シアン暗ã„市æ¾æ¨¡æ§˜ç¬¬äºŒè‰²è¦šéšœå®³ (ç·‘ã«ç„¡æ„Ÿè¦š)ファイルã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆå€çŽ‡ã‚µãƒ ãƒã‚¤ãƒ«ãƒ•ã‚©ãƒ«ãƒ€ '%s' 作æˆå¤±æ•—.ç”»åƒã®çµ±åˆãƒ•ã‚©ãƒ«ãƒ€ãƒ•ã‚©ãƒ³ãƒˆé¸æŠžã‚¬ãƒ³ãƒžå€¤ã‚¬ãƒ³ãƒžå€¤ 色表示フィルタギガãƒã‚¤ãƒˆã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³é¸æŠžç°è‰²ã®ã¿ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã‚°ãƒ¬ã‚¤ã‚¹ã‚±ãƒ¼ãƒ«-アルファ緑HTML 表記(_N)HTML 㨠CSS ã§ä½¿ã‚れるよã†ãªè‰²ã® 16 進表記ãƒã‚¤ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆ カラー表示フィルタ色相インデックスインデックスカラーインデックス-アルファキロãƒã‚¤ãƒˆæ–‡å­—é–“éš”(_E)行間隔(_I)大ãã„明るã„市æ¾æ¨¡æ§˜ãƒªãƒ³ã‚¯æ¸ˆã¿èª­ã¿è¾¼ã¿å¤±æ•—読ã¿è¾¼ã¿æ¸ˆã¿ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã®èª­ã¿è¾¼ã¿: '%s' +(良ã„çµæžœã‚’å¾—ãŸã„å ´åˆã«ã¯æ‰‹å‹•ã§è¡Œã£ã¦ä¸‹ã•ã„)RGB ã«å¤‰æ›%s ã®ã‚µãƒ ãƒã‚¤ãƒ«ã‚’作æˆå¤±æ•—: %s切り抜ãç¾åœ¨:シアン暗ã„市æ¾æ¨¡æ§˜ç¬¬äºŒè‰²è¦šéšœå®³ (ç·‘ã«ç„¡æ„Ÿè¦š)ファイルã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆå€çŽ‡ã‚µãƒ ãƒã‚¤ãƒ«ãƒ•ã‚©ãƒ«ãƒ€ '%s' 作æˆå¤±æ•—。画åƒã®çµ±åˆãƒ•ã‚©ãƒ«ãƒ€ãƒ•ã‚©ãƒ³ãƒˆé¸æŠžã‚¬ãƒ³ãƒžå€¤ã‚¬ãƒ³ãƒžå€¤ 色表示フィルタギガãƒã‚¤ãƒˆã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³é¸æŠžç°è‰²ã®ã¿ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã‚°ãƒ¬ã‚¤ã‚¹ã‚±ãƒ¼ãƒ«-アルファ緑HTML 表記(_N)HTML 㨠CSS ã§ä½¿ã‚れるよã†ãªè‰²ã® 16 進表記ãƒã‚¤ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆ カラー表示フィルタ色相インデックスインデックスカラーインデックス-アルファキロãƒã‚¤ãƒˆæ–‡å­—é–“éš”(_E)行間隔(_I)大ãã„明るã„市æ¾æ¨¡æ§˜ãƒªãƒ³ã‚¯æ¸ˆã¿èª­ã¿è¾¼ã¿å¤±æ•—読ã¿è¾¼ã¿æ¸ˆã¿ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã®èª­ã¿è¾¼ã¿: '%s' マゼンタ中間メガãƒã‚¤ãƒˆå¯è¦–レイヤーã®çµåˆä¸­é–“調ã®å¸‚æ¾æ¨¡æ§˜ãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ« '%s' 読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼: %sモジュールエラー詳細設定...未読ã¿è¾¼ã¿ä»¥å‰:Painter å¼ã®è‰²é¸æŠžãƒ‘レットé¸æŠžé¸æŠžé ˜åŸŸå†…ã«ãƒšãƒ¼ã‚¹ãƒˆæ–°è¦ã«ãƒšãƒ¼ã‚¹ãƒˆãƒ‘ターンé¸æŠžé®®ã‹ã•é‡è¦–圧力第一色覚障害 (赤ã«ç„¡æ„Ÿè¦š)RGBRGB カラーRGB-アルファ赤相対カラーメトリック彩度アニメーションã¨ã—ã¦ä¿å­˜ã‚¹ã‚±ãƒ¼ãƒ«ç”Ÿæˆã•ã‚ŒãŸä¹±æ•°ã§ã€ä¹±æ•°ç”Ÿæˆã®ç¨®ã‚’å–å¾—ã—ã¾ã™ãƒ•ã‚¡ã‚¤ãƒ«é¸æŠžãƒ•ã‚©ãƒ«ãƒ€é¸æŠžãƒ¢ã‚¸ãƒ¥ãƒ¼ãƒ«ã®èª­ã¿è¾¼ã¿ã‚’飛ã°ã—ã¾ã™: '%s' -å°ã•ã„エクスãƒãƒ¼ãƒˆå¤‰æ›ã¯å…ƒç”»åƒã«ã¯å½±éŸ¿ã‚’与ãˆã¾ã›ã‚“.é»’ã®ãƒ‘ーセンテージをç€è‰²ã®æŠ˜è¾¼ã—ã¾ã™ä¸‰è§’形第三色覚障害 (é’ã«ç„¡æ„Ÿè¦š)å˜ä½å˜ä½é¸æŠžã“ã®å€¤ã‚’乱数ã®ç¨®ã¨ã—ã¦ç”¨ã„ã¾ã™ - ãã†ã™ã‚‹ã“ã¨ã§, 特定㮠"乱数" æ“作を行ã†ã“ã¨ãŒã§ãã¾ã™æ˜Žåº¦å¯è¦–水彩色水彩色形å¼ã®è‰²é¸æŠžç™½è‰²ã®ã¿æ›¸ãã“ã¿å¯èƒ½é»„色ãƒãƒ£ãƒ³ãƒãƒ« (ä¿å­˜æ¸ˆã¿ã®é¸æŠžé ˜åŸŸ) ã‚’ %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™. -ã“ã®æ“作ã§ã¯, å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“.レイヤーマスクを %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™. -ã“ã®æ“作ã§ã¯, å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“.以下ã®ç†ç”±ã®ãŸã‚ %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)変æ›_V白(_W)_Yパーセント \ No newline at end of file +å°ã•ã„エクスãƒãƒ¼ãƒˆå¤‰æ›ã¯å…ƒç”»åƒã«ã¯å½±éŸ¿ã‚’与ãˆã¾ã›ã‚“。黒ã®ãƒ‘ーセンテージをç€è‰²ã®æŠ˜è¾¼ã—ã¾ã™ä¸‰è§’形第三色覚障害 (é’ã«ç„¡æ„Ÿè¦š)å˜ä½å˜ä½é¸æŠžã“ã®å€¤ã‚’乱数ã®ç¨®ã¨ã—ã¦ç”¨ã„ã¾ã™ - ãã†ã™ã‚‹ã“ã¨ã§ã€ç‰¹å®šã® "乱数" æ“作を行ã†ã“ã¨ãŒã§ãã¾ã™æ˜Žåº¦å¯è¦–水彩色水彩色形å¼ã®è‰²é¸æŠžç™½è‰²ã®ã¿æ›¸ãã“ã¿å¯èƒ½é»„色ãƒãƒ£ãƒ³ãƒãƒ« (ä¿å­˜æ¸ˆã¿ã®é¸æŠžé ˜åŸŸ) ã‚’ %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +ã“ã®æ“作ã§ã¯ã€å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“。レイヤーマスクを %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚ +ã“ã®æ“作ã§ã¯ã€å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“。以下ã®ç†ç”±ã®ãŸã‚ %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.8/po-libgimp/ja.po gimp-2.2.9/po-libgimp/ja.po --- gimp-2.2.8/po-libgimp/ja.po 2005-05-08 23:41:59.000000000 +0200 +++ gimp-2.2.9/po-libgimp/ja.po 2005-09-20 18:24:05.000000000 +0200 @@ -9,9 +9,9 @@ msgstr "" "Project-Id-Version: gimp gimp-2-2\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2005-09-17 19:54+0900\n" +"PO-Revision-Date: 2005-09-10 19:00+0900\n" +"Last-Translator: \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +38,7 @@ #: ../libgimp/gimpexport.c:224 #, c-format msgid "%s can't handle layer offsets, size or opacity" -msgstr "%s ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ã‚ªãƒ•ã‚»ãƒƒãƒˆ, サイズ, é€æ˜Žåº¦ã‚’扱ãˆã¾ã›ã‚“" +msgstr "%s ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ã‚ªãƒ•ã‚»ãƒƒãƒˆã€ã‚µã‚¤ã‚ºã€é€æ˜Žåº¦ã‚’扱ãˆã¾ã›ã‚“" #: ../libgimp/gimpexport.c:233 ../libgimp/gimpexport.c:242 #, c-format @@ -171,7 +171,7 @@ #. the footline #: ../libgimp/gimpexport.c:553 msgid "The export conversion won't modify your original image." -msgstr "エクスãƒãƒ¼ãƒˆå¤‰æ›ã¯å…ƒç”»åƒã«ã¯å½±éŸ¿ã‚’与ãˆã¾ã›ã‚“." +msgstr "エクスãƒãƒ¼ãƒˆå¤‰æ›ã¯å…ƒç”»åƒã«ã¯å½±éŸ¿ã‚’与ãˆã¾ã›ã‚“。" #: ../libgimp/gimpexport.c:653 #, c-format @@ -179,8 +179,8 @@ "You are about to save a layer mask as %s.\n" "This will not save the visible layers." msgstr "" -"レイヤーマスクを %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™.\n" -"ã“ã®æ“作ã§ã¯, å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“." +"レイヤーマスクを %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚\n" +"ã“ã®æ“作ã§ã¯ã€å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“。" #: ../libgimp/gimpexport.c:659 #, c-format @@ -188,8 +188,8 @@ "You are about to save a channel (saved selection) as %s.\n" "This will not save the visible layers." msgstr "" -"ãƒãƒ£ãƒ³ãƒãƒ« (ä¿å­˜æ¸ˆã¿ã®é¸æŠžé ˜åŸŸ) ã‚’ %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™.\n" -"ã“ã®æ“作ã§ã¯, å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“." +"ãƒãƒ£ãƒ³ãƒãƒ« (ä¿å­˜æ¸ˆã¿ã®é¸æŠžé ˜åŸŸ) ã‚’ %s ã¨ã—ã¦ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚\n" +"ã“ã®æ“作ã§ã¯ã€å¯è¦–レイヤーã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“。" #: ../libgimp/gimpfontmenu.c:89 msgid "Font Selection" @@ -376,11 +376,13 @@ "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 msgid "Failed to create thumbnail folder '%s'." -msgstr "サムãƒã‚¤ãƒ«ãƒ•ã‚©ãƒ«ãƒ€ '%s' 作æˆå¤±æ•—." +msgstr "サムãƒã‚¤ãƒ«ãƒ•ã‚©ãƒ«ãƒ€ '%s' 作æˆå¤±æ•—。" #: ../libgimpthumb/gimpthumbnail.c:919 #, c-format @@ -526,8 +528,8 @@ "Click the eyedropper, then click a color anywhere on your screen to select " "that color." msgstr "" -"eyedropper をクリックã—, スクリーン上ã®ã©ã“ã‹ã‚’クリックã—ã¦ãã®å ´æ‰€ã®è‰²ã‚’é¸æŠž" -"ã—ã¾ã™." +"eyedropper をクリックã—ã€ã‚¹ã‚¯ãƒªãƒ¼ãƒ³ä¸Šã®ã©ã“ã‹ã‚’クリックã—ã¦ãã®å ´æ‰€ã®è‰²ã‚’é¸æŠž" +"ã—ã¾ã™ã€‚" #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" @@ -604,7 +606,7 @@ #: ../libgimpwidgets/gimpstock.c:288 msgid "_Transform" -msgstr "変æ›" +msgstr "変æ›(_T)" #: ../libgimpwidgets/gimpstock.c:291 msgid "_Rotate" @@ -635,7 +637,7 @@ "Use this value for random number generator seed - this allows you to repeat " "a given \"random\" operation" msgstr "" -"ã“ã®å€¤ã‚’乱数ã®ç¨®ã¨ã—ã¦ç”¨ã„ã¾ã™ - ãã†ã™ã‚‹ã“ã¨ã§, 特定㮠\"乱数\" æ“作を行ã†ã“" +"ã“ã®å€¤ã‚’乱数ã®ç¨®ã¨ã—ã¦ç”¨ã„ã¾ã™ - ãã†ã™ã‚‹ã“ã¨ã§ã€ç‰¹å®šã® \"乱数\" æ“作を行ã†ã“" "ã¨ãŒã§ãã¾ã™" #: ../libgimpwidgets/gimpwidgets.c:1005 @@ -672,7 +674,7 @@ #: ../modules/cdisplay_colorblind.c:540 msgid "Color _Deficiency Type:" -msgstr "色覚障害ã®ã‚¿ã‚¤ãƒ—:" +msgstr "色覚障害ã®ã‚¿ã‚¤ãƒ—(_D):" #: ../modules/cdisplay_gamma.c:105 msgid "Gamma color display filter" diff -uraN gimp-2.2.8/po-libgimp/mk.gmo gimp-2.2.9/po-libgimp/mk.gmo --- gimp-2.2.8/po-libgimp/mk.gmo 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po-libgimp/mk.gmo 2005-10-20 12:46:53.000000000 +0200 @@ -0,0 +1,43 @@ +Þ•¯”é °±¹ÁÉÑÙáêðöü*(E4n#£.Ç!ö-F.b‘¨Åßçþ&,3EL +R]mr‚‡› +£ ®ºVÖ- DPAh*ªÕ ÝêóTMo½%Ìò÷ % 7C'J r€‡–œ ·Á Ô Þèøþ2"Adh p ~ Œ– ¦´ ºÇ ÎÚá÷ÿ %5 P] +ep%u› +­ ¸Å +×â!ë   %) +?J\;c Ÿ «¹Ð7Ö8G"Psxf‡îô +ü +'2;_BP¢UóILOa +{† +‰”š¢´·¿ÂÊÓÖ Ùã ìö +ù %, +4?BIL-T‚Š’š¢ª²ÄÊÐ:ÖaXsdÌV1tˆMýjKG¶}þ5| =² &ð !'&!/N!~!! +¦!+±! Ý!ç!ð!&")""2"U"Z" x"†"¦"/¾"³î"'¢#Ê#4ã#i$e‚$è$#÷$%*,%3W%æ‹%Ør&K'Kc' +¯'º' +Ê'-Õ'G(K( i(_v(Ö(ô( )$)4-)b)u))¢)(Â) ë)ø)v*L*Ú*é*+ +@+)S+#}+ +¡+/¬+Ü+%í+ ,& ,G, V,c,+v,/¢,GÒ, - ;-G- ^-Yj-$Ä-é-)û-&%. +L.W.Ah.ª. ®. ». È./Õ./*/E/vT/!Ë/'í/)0?0uF0x¼051;J1†1•1ñ´1¦2·2Æ2CÜ2 323 +E3¾P3•4—¥4=5@5#C5&g5Ž5£5¦5 ¸5 Ä5#Ò5ö5 +ù5666*6-606C6S6b6e6 w6 ˜6¹6É6Ì6 Þ6è6ø67 7!7$72‡¡Œqƒ:iaT€Ÿn[`œe¨%*{;v­=„I}W’_\ !5 †('wux—#R.pª+V$sHP‚? §£8Z¤o•˜Cž…YXUrM +g‘]/bQzk0›,™K”ˆŽ~ N Š)y@<DšJ¬9SO4mc >f|“th"1&¦®E¢BjFL-¥l^3–7‹‰d¯©GA«6%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +(Do it manually to tune the result)Convert to Indexed using default settings +(Do it manually to tune the result)Convert to RGBCould not create thumbnail for %s: %sCropCurrent:CyanDark ChecksDeuteranopia (insensitivity to green)Export FileFactorFailed to create thumbnail folder '%s'.Flatten ImageFolderFont SelectionGammaGamma color display filterGigabytesGradient SelectionGray OnlyGrayscaleGrayscale-alphaGreenHTML _Notation:Hexadecimal color notation as used in HTML and CSSHigh Contrast color display filterHueIndexedIndexed colorIndexed-alphaKilobytesL_etter SpacingL_ine SpacingLargeLight ChecksLinkedLoad failedLoadedLoading module: '%s' +MagentaMediumMegabytesMerge Visible LayersMid-Tone ChecksModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPalette SelectionPaste IntoPaste as NewPattern SelectionPerceptualPressureProtanopia (insensitivity to red)RGBRGB colorRGB-alphaRedRelative ColorimetricSaturationSave as AnimationScalesSeed random number generator with a generated random numberSelect FileSelect FolderSkipping module: '%s' +SmallThe export conversion won't modify your original image.The percentage of black to pull out of the colored inks.TriangleTritanopia (insensitivity to blue)UnitUnit SelectionUse this value for random number generator seed - this allows you to repeat a given "random" operationValueVisibleWatercolorWatercolor style color selectorWhite OnlyWritableYellowYou are about to save a channel (saved selection) as %s. +This will not save the visible layers.You are about to save a layer mask as %s. +This will not save the visible layers.Your image should be exported before it can be saved as %s for the following reasons:_A_B_Background Color_Black Point Compensation_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_Intent:_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp.new +Report-Msgid-Bugs-To: +POT-Creation-Date: 2004-12-08 11:06+0100 +PO-Revision-Date: 2004-12-12 21:35+0100 +Last-Translator: +Language-Team: +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +X-Generator: KBabel 1.9 +%.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 може да работи Ñамо Ñо bitmap (две бои) индекÑирани Ñлики%s може да ракува Ñамо Ñо Ñиво нијанÑирани Ñлики%s може да ракува Ñамо Ñо Ñиво нијанÑирани или индекÑирани Ñлики%s може да ракува Ñамо Ñо индекÑирани Ñлики%s може да ракува Ñо нивоата Ñамо како Ñо анимациони оквири%s неможе да работи Ñо маÑки на Ñлоевите%s Ðеможе да ракува Ñо офÑетот на нивото, големината или затемнетоÑта%s Ðеможе да ракува Ñо нивоата%s неможе да ракува Ñо провидноÑта%s му треба алфа канал(Празно)(неиÑправна UTF-8 нишка)ÐпÑолутно колориметриÑкиДодај алфа каналÐлфаВрÑкаПримени маÑка на нивото_ЦрнаЦрнаСамо црноИз_влекување на црна:СинаСелекција на четкаCMYKИзбор на CMYK боја_ЦентарПровери големинаПровери ÑтилИзберете ICC профил на бојаКликнете на капалката, потоа кликнете на боја било каде на вашиот екран за да ја одберете таа боја.Поглед Ñо оÑкудни боиПроба во бојаТип на _оштетеноÑÑ‚ на бојата:Филтер за Ñимулирање на оÑкудноÑÑ‚ (Brettel-Vienot-Mollon алгоритам)Филтер на пробата во боји која кориÑти ICC профил на бојаПотврдиПотврди зачувувањеКонтраÑÑ‚_ЦиклуÑи на контраÑтот:Префрли во Ñиво нијанÑираноПретвори ги во индекÑирани Ñо кориÑтење на Ñтандардните bitmap подеÑувања +(Ðаправете го тоа рачно за да го наштимате резултатот)Префрлете во индекÑирани Ñо кориÑтење на Ñтандардните подеÑувања +(Сторете го тоа рачно за да го наштимате резултатот)Префрли во RGBÐе можев да Ñоздадам Ñмален приказ за %s: %sИÑечиТековно:ЦијанПроверка на темни тоновиДеутеранопија (неоÑетливоÑÑ‚ на зелено)Извези датотекаФакторÐеуÑпешно креирање на директориумот Ñо Ñликички '%s'.Израмнета ÑликаДиректориумИзбор на фонтГамаЕкранÑки филтер на гама бојаГигабајтиИзбор на нагибСамо ÑивоСиво нијанÑираноСиво нијанÑирано-алфаЗеленаHTML _обележување:ХекÑадецимално обележување на боја како што Ñе кориÑти во HTML и CSSЕкранÑки филтер на боја Ñо виÑок контраÑÑ‚ÐијанÑаИндекÑираноИндекÑирана бојаИндекÑирано-алфаКилобајтиРазмак помеѓу _буквитеРазмак на _редовитеГолемПроверка на Ñветли тоновиПоврзаноÐеуÑпешно вчитувањеВчитанВчитувам модул: „%s“ +МагентаСреденМегабајтиСпој ги видливите нивоаПроверка на Ñредни тоновиГрешка при вчитувањето на модулот '%s': %sГрешка на модулотУште...Ðе е вчитаноСтаро:Одбирач на триаголникот Ñо бои во ÑликарÑки ÑтилСелекција на палетаВметни воВметни како нова ÑликаСелекција на образецЧулноПритиÑокПротанопиа (неоÑетливоÑÑ‚ на црвено)RGBRGB бојаRGB-алфаЦрвенаРелативно колориметриÑкиЗаÑитеноÑтЗачувај како анимацијаРазмериСеме на Ñлучајно генерираниот број Ñо генерираниот Ñлучаен бројИзберете датотекаОдберете директориумПреÑкoкнувам модул: '%s' +МалИзвозното претварање нема да ја измени вашата оригинална Ñлика.Процент на црна боја која треба да Ñе извлече од обоените маÑтила.ТриаголникТиранопиа (неоÑетливоÑÑ‚ на Ñино)ЕдиницаИзбор на единицаУпотребете ја оваа вредноÑÑ‚ за Ñеме за Ñлучајно генериран број - ова виовозможува да ја повторувате зададената "Ñлучајна" операцијаВредноÑтВидливоВодена бојаИзбирач на боја во Ñтил на водени боиСамо белоЗапиÑливоЖолтаВи Ñте во тек да го зачувате каналот (зачуваната Ñелекција) како %s. +Ова нема да ги зачува видливите нивоа.Вие ќе ја зачувате маÑката на нивото како %s. +Ова нема да ги зачува видливите нивоа.Вашата Ñлика треба да ја извезете пред да биде зачувана како %s од Ñледниве причини:_A_BБоја на _позадинатаЗамена за _црну точка_Пребарај..._C_Дупликат_Уреди_ИзвезиБоја на иÑ_цртување_G_Гама:_H_Игнорирај_Ðамера:_K_M_Ðово ÑемеПре_глед_Профил:_R_Случајно_Повторно поÑтави_Промени големина_Ротирај_S_Скалирај_Дели_ИÑцртај_ТранÑформирај_VБ_ела_Yпроцент \ No newline at end of file diff -uraN gimp-2.2.8/po-libgimp/mk.po gimp-2.2.9/po-libgimp/mk.po --- gimp-2.2.8/po-libgimp/mk.po 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po-libgimp/mk.po 2005-01-08 02:31:58.000000000 +0100 @@ -0,0 +1,788 @@ +# translation of gimp-libgimp.new.po to +# translation of mk.po to Macedonian +# Macedonian translation of gimp-libgimp +# Courtesy of mkde team (http://mkde.sourceforge.net/) -- 2004. +# +# This file is distributed under the same license as the gimp-libgimp package. +# +# Maintainer: Владимир Стефанов +# , 2004. +# +# +msgid "" +msgstr "" +"Project-Id-Version: gimp-libgimp.new\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-12-08 11:06+0100\n" +"PO-Revision-Date: 2004-12-12 21:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9\n" + +#: libgimp/gimpbrushmenu.c:129 +msgid "Brush Selection" +msgstr "Селекција на четка" + +#: libgimp/gimpbrushmenu.c:158 libgimp/gimppatternmenu.c:142 +msgid "_Browse..." +msgstr "_Пребарај..." + +#: libgimp/gimpexport.c:215 libgimp/gimpexport.c:251 +#, c-format +msgid "%s can't handle layers" +msgstr "%s Ðеможе да ракува Ñо нивоата" + +#: libgimp/gimpexport.c:216 libgimp/gimpexport.c:225 libgimp/gimpexport.c:234 +msgid "Merge Visible Layers" +msgstr "Спој ги видливите нивоа" + +#: libgimp/gimpexport.c:224 +#, c-format +msgid "%s can't handle layer offsets, size or opacity" +msgstr "%s Ðеможе да ракува Ñо офÑетот на нивото, големината или затемнетоÑта" + +#: libgimp/gimpexport.c:233 libgimp/gimpexport.c:242 +#, c-format +msgid "%s can only handle layers as animation frames" +msgstr "%s може да ракува Ñо нивоата Ñамо како Ñо анимациони оквири" + +#: libgimp/gimpexport.c:234 libgimp/gimpexport.c:243 +msgid "Save as Animation" +msgstr "Зачувај како анимација" + +#: libgimp/gimpexport.c:243 libgimp/gimpexport.c:252 libgimp/gimpexport.c:261 +msgid "Flatten Image" +msgstr "Израмнета Ñлика" + +#: libgimp/gimpexport.c:260 +#, c-format +msgid "%s can't handle transparency" +msgstr "%s неможе да ракува Ñо провидноÑта" + +#: libgimp/gimpexport.c:269 +#, c-format +msgid "%s can't handle layer masks" +msgstr "%s неможе да работи Ñо маÑки на Ñлоевите" + +#: libgimp/gimpexport.c:270 +msgid "Apply Layer Masks" +msgstr "Примени маÑка на нивото" + +#: libgimp/gimpexport.c:278 +#, c-format +msgid "%s can only handle RGB images" +msgstr "%s може да ракува Ñамо Ñо RGB Ñлики" + +#: libgimp/gimpexport.c:279 libgimp/gimpexport.c:317 libgimp/gimpexport.c:326 +msgid "Convert to RGB" +msgstr "Префрли во RGB" + +#: libgimp/gimpexport.c:287 +#, c-format +msgid "%s can only handle grayscale images" +msgstr "%s може да ракува Ñамо Ñо Ñиво нијанÑирани Ñлики" + +#: libgimp/gimpexport.c:288 libgimp/gimpexport.c:317 libgimp/gimpexport.c:338 +msgid "Convert to Grayscale" +msgstr "Префрли во Ñиво нијанÑирано" + +#: libgimp/gimpexport.c:296 +#, c-format +msgid "%s can only handle indexed images" +msgstr "%s може да ракува Ñамо Ñо индекÑирани Ñлики" + +#: libgimp/gimpexport.c:297 libgimp/gimpexport.c:326 libgimp/gimpexport.c:336 +msgid "" +"Convert to Indexed using default settings\n" +"(Do it manually to tune the result)" +msgstr "" +"Префрлете во индекÑирани Ñо кориÑтење на Ñтандардните подеÑувања\n" +"(Сторете го тоа рачно за да го наштимате резултатот)" + +#: libgimp/gimpexport.c:306 +#, c-format +msgid "%s can only handle bitmap (two color) indexed images" +msgstr "%s може да работи Ñамо Ñо bitmap (две бои) индекÑирани Ñлики" + +#: libgimp/gimpexport.c:307 +msgid "" +"Convert to Indexed using bitmap default settings\n" +"(Do it manually to tune the result)" +msgstr "" +"Претвори ги во индекÑирани Ñо кориÑтење на Ñтандардните bitmap подеÑувања\n" +"(Ðаправете го тоа рачно за да го наштимате резултатот)" + +#: libgimp/gimpexport.c:316 +#, c-format +msgid "%s can only handle RGB or grayscale images" +msgstr "%s можа да ракува Ñамо Ñо RGB или Ñиво нијанÑирани Ñлики" + +#: libgimp/gimpexport.c:325 +#, c-format +msgid "%s can only handle RGB or indexed images" +msgstr "%s може да ракува Ñамо Ñо RGB или индекÑирани Ñлики" + +#: libgimp/gimpexport.c:335 +#, c-format +msgid "%s can only handle grayscale or indexed images" +msgstr "%s може да ракува Ñамо Ñо Ñиво нијанÑирани или индекÑирани Ñлики" + +#: libgimp/gimpexport.c:346 +#, c-format +msgid "%s needs an alpha channel" +msgstr "%s му треба алфа канал" + +#: libgimp/gimpexport.c:347 +msgid "Add Alpha Channel" +msgstr "Додај алфа канал" + +#: libgimp/gimpexport.c:381 +msgid "Confirm Save" +msgstr "Потврди зачувување" + +#: libgimp/gimpexport.c:387 +msgid "Confirm" +msgstr "Потврди" + +#: libgimp/gimpexport.c:454 +msgid "Export File" +msgstr "Извези датотека" + +#: libgimp/gimpexport.c:458 +msgid "_Ignore" +msgstr "_Игнорирај" + +#: libgimp/gimpexport.c:460 +msgid "_Export" +msgstr "_Извези" + +#. the headline +#: libgimp/gimpexport.c:482 +#, c-format +msgid "" +"Your image should be exported before it can be saved as %s for the following " +"reasons:" +msgstr "" +"Вашата Ñлика треба да ја извезете пред да биде зачувана како %s од Ñледниве " +"причини:" + +#. the footline +#: libgimp/gimpexport.c:553 +msgid "The export conversion won't modify your original image." +msgstr "Извозното претварање нема да ја измени вашата оригинална Ñлика." + +#: libgimp/gimpexport.c:653 +#, c-format +msgid "" +"You are about to save a layer mask as %s.\n" +"This will not save the visible layers." +msgstr "" +"Вие ќе ја зачувате маÑката на нивото како %s.\n" +"Ова нема да ги зачува видливите нивоа." + +#: libgimp/gimpexport.c:659 +#, c-format +msgid "" +"You are about to save a channel (saved selection) as %s.\n" +"This will not save the visible layers." +msgstr "" +"Ви Ñте во тек да го зачувате каналот (зачуваната Ñелекција) како %s.\n" +"Ова нема да ги зачува видливите нивоа." + +#: libgimp/gimpfontmenu.c:89 +msgid "Font Selection" +msgstr "Избор на фонт" + +#: libgimp/gimpgradientmenu.c:104 +msgid "Gradient Selection" +msgstr "Избор на нагиб" + +#: libgimp/gimpmenu.c:406 libgimpwidgets/gimpintstore.c:181 +msgid "(Empty)" +msgstr "(Празно)" + +#: libgimp/gimppalettemenu.c:91 +msgid "Palette Selection" +msgstr "Селекција на палета" + +#: libgimp/gimppatternmenu.c:113 +msgid "Pattern Selection" +msgstr "Селекција на образец" + +#: libgimp/gimpunitcache.c:57 +msgid "percent" +msgstr "процент" + +#: libgimpbase/gimpbaseenums.c:23 +msgid "Small" +msgstr "Мал" + +#: libgimpbase/gimpbaseenums.c:24 +msgid "Medium" +msgstr "Среден" + +#: libgimpbase/gimpbaseenums.c:25 +msgid "Large" +msgstr "Голем" + +#: libgimpbase/gimpbaseenums.c:57 +msgid "Light Checks" +msgstr "Проверка на Ñветли тонови" + +#: libgimpbase/gimpbaseenums.c:58 +msgid "Mid-Tone Checks" +msgstr "Проверка на Ñредни тонови" + +#: libgimpbase/gimpbaseenums.c:59 +msgid "Dark Checks" +msgstr "Проверка на темни тонови" + +#: libgimpbase/gimpbaseenums.c:60 +msgid "White Only" +msgstr "Само бело" + +#: libgimpbase/gimpbaseenums.c:61 +msgid "Gray Only" +msgstr "Само Ñиво" + +#: libgimpbase/gimpbaseenums.c:62 +msgid "Black Only" +msgstr "Само црно" + +#: libgimpbase/gimpbaseenums.c:91 +msgid "RGB color" +msgstr "RGB боја" + +#: libgimpbase/gimpbaseenums.c:92 libgimpbase/gimpbaseenums.c:127 +msgid "Grayscale" +msgstr "Сиво нијанÑирано" + +#: libgimpbase/gimpbaseenums.c:93 +msgid "Indexed color" +msgstr "ИндекÑирана боја" + +#: libgimpbase/gimpbaseenums.c:125 +msgid "RGB" +msgstr "RGB" + +#: libgimpbase/gimpbaseenums.c:126 +msgid "RGB-alpha" +msgstr "RGB-алфа" + +#: libgimpbase/gimpbaseenums.c:128 +msgid "Grayscale-alpha" +msgstr "Сиво нијанÑирано-алфа" + +#: libgimpbase/gimpbaseenums.c:129 +msgid "Indexed" +msgstr "ИндекÑирано" + +#: libgimpbase/gimpbaseenums.c:130 +msgid "Indexed-alpha" +msgstr "ИндекÑирано-алфа" + +# bug: plural-forms +#: libgimpbase/gimpmemsize.c:177 +#, c-format +msgid "%d Bytes" +msgstr "%d Бајтови" + +#: libgimpbase/gimpmemsize.c:182 +#, c-format +msgid "%.2f KB" +msgstr "%.2f KB" + +#: libgimpbase/gimpmemsize.c:186 +#, c-format +msgid "%.1f KB" +msgstr "%.1f KB" + +#: libgimpbase/gimpmemsize.c:190 +#, c-format +msgid "%d KB" +msgstr "%d KB" + +#: libgimpbase/gimpmemsize.c:197 +#, c-format +msgid "%.2f MB" +msgstr "%.2f MB" + +#: libgimpbase/gimpmemsize.c:201 +#, c-format +msgid "%.1f MB" +msgstr "%.1f MB" + +#: libgimpbase/gimpmemsize.c:205 +#, c-format +msgid "%d MB" +msgstr "%d MB" + +#: libgimpbase/gimpmemsize.c:212 +#, c-format +msgid "%.2f GB" +msgstr "%.2f GB" + +#: libgimpbase/gimpmemsize.c:216 +#, c-format +msgid "%.1f GB" +msgstr "%.1f GB" + +#: libgimpbase/gimpmemsize.c:220 +#, c-format +msgid "%d GB" +msgstr "%d GB" + +#: libgimpbase/gimputils.c:169 libgimpbase/gimputils.c:174 +msgid "(invalid UTF-8 string)" +msgstr "(неиÑправна UTF-8 нишка)" + +#: libgimpmodule/gimpmodule.c:177 +#, c-format +msgid "Loading module: '%s'\n" +msgstr "Вчитувам модул: „%s“\n" + +#: libgimpmodule/gimpmodule.c:193 libgimpmodule/gimpmodule.c:212 +#: libgimpmodule/gimpmodule.c:326 libgimpmodule/gimpmodule.c:354 +#: libgimpmodule/gimpmodule.c:478 +#, c-format +msgid "Module '%s' load error: %s" +msgstr "Грешка при вчитувањето на модулот '%s': %s" + +#: libgimpmodule/gimpmodule.c:282 +#, c-format +msgid "Skipping module: '%s'\n" +msgstr "ПреÑкoкнувам модул: '%s'\n" + +#: libgimpmodule/gimpmodule.c:422 +msgid "Module error" +msgstr "Грешка на модулот" + +#: libgimpmodule/gimpmodule.c:423 +msgid "Loaded" +msgstr "Вчитан" + +#: libgimpmodule/gimpmodule.c:424 +msgid "Load failed" +msgstr "ÐеуÑпешно вчитување" + +#: libgimpmodule/gimpmodule.c:425 +msgid "Not loaded" +msgstr "Ðе е вчитано" + +#: libgimpthumb/gimpthumb-utils.c:227 libgimpthumb/gimpthumb-utils.c:295 +#, c-format +msgid "Failed to create thumbnail folder '%s'." +msgstr "ÐеуÑпешно креирање на директориумот Ñо Ñликички '%s'." + +#: libgimpthumb/gimpthumbnail.c:919 +#, c-format +msgid "Could not create thumbnail for %s: %s" +msgstr "Ðе можев да Ñоздадам Ñмален приказ за %s: %s" + +#: libgimpwidgets/gimpcolorbutton.c:99 +msgid "_Foreground Color" +msgstr "Боја на иÑ_цртување" + +#: libgimpwidgets/gimpcolorbutton.c:103 +msgid "_Background Color" +msgstr "Боја на _позадината" + +#: libgimpwidgets/gimpcolorbutton.c:107 +msgid "Blac_k" +msgstr "_Црна" + +#: libgimpwidgets/gimpcolorbutton.c:111 +msgid "_White" +msgstr "Б_ела" + +#: libgimpwidgets/gimpcolorscales.c:133 +msgid "Scales" +msgstr "Размери" + +#: libgimpwidgets/gimpcolorscales.c:155 libgimpwidgets/gimpcolorselect.c:343 +msgid "_H" +msgstr "_H" + +#: libgimpwidgets/gimpcolorscales.c:156 libgimpwidgets/gimpcolorselect.c:343 +msgid "_S" +msgstr "_S" + +#: libgimpwidgets/gimpcolorscales.c:157 libgimpwidgets/gimpcolorselect.c:343 +msgid "_V" +msgstr "_V" + +#: libgimpwidgets/gimpcolorscales.c:158 libgimpwidgets/gimpcolorselect.c:343 +msgid "_R" +msgstr "_R" + +#: libgimpwidgets/gimpcolorscales.c:159 libgimpwidgets/gimpcolorselect.c:343 +msgid "_G" +msgstr "_G" + +#: libgimpwidgets/gimpcolorscales.c:160 libgimpwidgets/gimpcolorselect.c:343 +msgid "_B" +msgstr "_B" + +#: libgimpwidgets/gimpcolorscales.c:161 +msgid "_A" +msgstr "_A" + +#: libgimpwidgets/gimpcolorscales.c:165 libgimpwidgets/gimpcolorselect.c:347 +msgid "Hue" +msgstr "ÐијанÑа" + +#: libgimpwidgets/gimpcolorscales.c:166 libgimpwidgets/gimpcolorselect.c:348 +#: modules/cdisplay_proof.c:49 modules/cdisplay_proof.c:444 +msgid "Saturation" +msgstr "ЗаÑитеноÑÑ‚" + +#: libgimpwidgets/gimpcolorscales.c:167 libgimpwidgets/gimpcolorselect.c:349 +msgid "Value" +msgstr "ВредноÑÑ‚" + +#: libgimpwidgets/gimpcolorscales.c:168 libgimpwidgets/gimpcolorselect.c:350 +msgid "Red" +msgstr "Црвена" + +#: libgimpwidgets/gimpcolorscales.c:169 libgimpwidgets/gimpcolorselect.c:351 +msgid "Green" +msgstr "Зелена" + +#: libgimpwidgets/gimpcolorscales.c:170 libgimpwidgets/gimpcolorselect.c:352 +msgid "Blue" +msgstr "Сина" + +#: libgimpwidgets/gimpcolorscales.c:171 libgimpwidgets/gimpcolorselect.c:353 +msgid "Alpha" +msgstr "Ðлфа" + +#: libgimpwidgets/gimpcolorscales.c:243 +msgid "Hexadecimal color notation as used in HTML and CSS" +msgstr "ХекÑадецимално обележување на боја како што Ñе кориÑти во HTML и CSS" + +#: libgimpwidgets/gimpcolorscales.c:248 +msgid "HTML _Notation:" +msgstr "HTML _обележување:" + +#: libgimpwidgets/gimpcolorselection.c:203 +msgid "Current:" +msgstr "Тековно:" + +#: libgimpwidgets/gimpcolorselection.c:225 +msgid "Old:" +msgstr "Старо:" + +#: libgimpwidgets/gimpfileentry.c:351 +msgid "Select Folder" +msgstr "Одберете директориум" + +#: libgimpwidgets/gimpfileentry.c:353 +msgid "Select File" +msgstr "Изберете датотека" + +#: libgimpwidgets/gimpmemsizeentry.c:232 +msgid "Kilobytes" +msgstr "Килобајти" + +#: libgimpwidgets/gimpmemsizeentry.c:233 +msgid "Megabytes" +msgstr "Мегабајти" + +#: libgimpwidgets/gimpmemsizeentry.c:234 +msgid "Gigabytes" +msgstr "Гигабајти" + +#: libgimpwidgets/gimppatheditor.c:243 +msgid "Writable" +msgstr "ЗапиÑливо" + +#: libgimpwidgets/gimppatheditor.c:252 +msgid "Folder" +msgstr "Директориум" + +#: libgimpwidgets/gimppickbutton.c:138 +msgid "" +"Click the eyedropper, then click a color anywhere on your screen to select " +"that color." +msgstr "" +"Кликнете на капалката, потоа кликнете на боја било каде на вашиот екран за " +"да ја одберете таа боја." + +#: libgimpwidgets/gimppreviewarea.c:126 +msgid "Check Size" +msgstr "Провери големина" + +#: libgimpwidgets/gimppreviewarea.c:133 +msgid "Check Style" +msgstr "Провери Ñтил" + +#. toggle button to (des)activate the instant preview +#: libgimpwidgets/gimppreview.c:240 +msgid "_Preview" +msgstr "Пре_глед" + +#: libgimpwidgets/gimpstock.c:113 +msgid "Anchor" +msgstr "Ð’Ñ€Ñка" + +#: libgimpwidgets/gimpstock.c:114 +msgid "C_enter" +msgstr "_Центар" + +#: libgimpwidgets/gimpstock.c:115 +msgid "_Duplicate" +msgstr "_Дупликат" + +#: libgimpwidgets/gimpstock.c:116 +msgid "_Edit" +msgstr "_Уреди" + +#: libgimpwidgets/gimpstock.c:117 +msgid "Linked" +msgstr "Поврзано" + +#: libgimpwidgets/gimpstock.c:118 +msgid "Paste as New" +msgstr "Вметни како нова Ñлика" + +#: libgimpwidgets/gimpstock.c:119 +msgid "Paste Into" +msgstr "Вметни во" + +#: libgimpwidgets/gimpstock.c:120 +msgid "_Reset" +msgstr "_Повторно поÑтави" + +#: libgimpwidgets/gimpstock.c:121 +msgid "Visible" +msgstr "Видливо" + +#: libgimpwidgets/gimpstock.c:154 libgimpwidgets/gimpstock.c:158 +msgid "_Stroke" +msgstr "_ИÑцртај" + +#: libgimpwidgets/gimpstock.c:170 +msgid "L_etter Spacing" +msgstr "Размак помеѓу _буквите" + +#: libgimpwidgets/gimpstock.c:171 +msgid "L_ine Spacing" +msgstr "Размак на _редовите" + +#: libgimpwidgets/gimpstock.c:187 +msgid "_Resize" +msgstr "_Промени големина" + +#: libgimpwidgets/gimpstock.c:188 libgimpwidgets/gimpstock.c:292 +msgid "_Scale" +msgstr "_Скалирај" + +#: libgimpwidgets/gimpstock.c:271 +msgid "Crop" +msgstr "ИÑечи" + +#: libgimpwidgets/gimpstock.c:288 +msgid "_Transform" +msgstr "_ТранÑформирај" + +#: libgimpwidgets/gimpstock.c:291 +msgid "_Rotate" +msgstr "_Ротирај" + +#: libgimpwidgets/gimpstock.c:293 +msgid "_Shear" +msgstr "_Дели" + +#: libgimpwidgets/gimpunitmenu.c:302 +msgid "More..." +msgstr "Уште..." + +#: libgimpwidgets/gimpunitmenu.c:612 +msgid "Unit Selection" +msgstr "Избор на единица" + +#: libgimpwidgets/gimpunitmenu.c:655 +msgid "Unit" +msgstr "Единица" + +#: libgimpwidgets/gimpunitmenu.c:659 +msgid "Factor" +msgstr "Фактор" + +#: libgimpwidgets/gimpwidgets.c:1001 +msgid "" +"Use this value for random number generator seed - this allows you to repeat " +"a given \"random\" operation" +msgstr "" +"Употребете ја оваа вредноÑÑ‚ за Ñеме за Ñлучајно генериран број - ова " +"виовозможува да ја повторувате зададената \"Ñлучајна\" операција" + +#: libgimpwidgets/gimpwidgets.c:1005 +msgid "_New Seed" +msgstr "_Ðово Ñеме" + +#: libgimpwidgets/gimpwidgets.c:1018 +msgid "Seed random number generator with a generated random number" +msgstr "Семе на Ñлучајно генерираниот број Ñо генерираниот Ñлучаен број" + +#: libgimpwidgets/gimpwidgets.c:1022 +msgid "_Randomize" +msgstr "_Случајно" + +#: modules/cdisplay_colorblind.c:57 modules/cdisplay_colorblind.c:545 +msgid "Protanopia (insensitivity to red)" +msgstr "Протанопиа (неоÑетливоÑÑ‚ на црвено)" + +#: modules/cdisplay_colorblind.c:59 modules/cdisplay_colorblind.c:547 +msgid "Deuteranopia (insensitivity to green)" +msgstr "Деутеранопија (неоÑетливоÑÑ‚ на зелено)" + +#: modules/cdisplay_colorblind.c:61 modules/cdisplay_colorblind.c:549 +msgid "Tritanopia (insensitivity to blue)" +msgstr "Тиранопиа (неоÑетливоÑÑ‚ на Ñино)" + +#: modules/cdisplay_colorblind.c:153 +msgid "Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)" +msgstr "Филтер за Ñимулирање на оÑкудноÑÑ‚ (Brettel-Vienot-Mollon алгоритам)" + +#: modules/cdisplay_colorblind.c:242 +msgid "Color Deficient Vision" +msgstr "Поглед Ñо оÑкудни бои" + +#: modules/cdisplay_colorblind.c:540 +msgid "Color _Deficiency Type:" +msgstr "Тип на _оштетеноÑÑ‚ на бојата:" + +#: modules/cdisplay_gamma.c:105 +msgid "Gamma color display filter" +msgstr "ЕкранÑки филтер на гама боја" + +#: modules/cdisplay_gamma.c:178 +msgid "Gamma" +msgstr "Гама" + +#: modules/cdisplay_gamma.c:352 +msgid "_Gamma:" +msgstr "_Гама:" + +#: modules/cdisplay_highcontrast.c:105 +msgid "High Contrast color display filter" +msgstr "ЕкранÑки филтер на боја Ñо виÑок контраÑÑ‚" + +#: modules/cdisplay_highcontrast.c:178 +msgid "Contrast" +msgstr "КонтраÑÑ‚" + +#: modules/cdisplay_highcontrast.c:352 +msgid "Contrast C_ycles:" +msgstr "_ЦиклуÑи на контраÑтот:" + +#: modules/cdisplay_proof.c:45 modules/cdisplay_proof.c:440 +msgid "Perceptual" +msgstr "Чулно" + +# лоше +#: modules/cdisplay_proof.c:47 modules/cdisplay_proof.c:442 +msgid "Relative Colorimetric" +msgstr "Релативно колориметриÑки" + +# гадно +#: modules/cdisplay_proof.c:51 modules/cdisplay_proof.c:446 +msgid "Absolute Colorimetric" +msgstr "ÐпÑолутно колориметриÑки" + +#: modules/cdisplay_proof.c:138 +msgid "Color proof filter using ICC color profile" +msgstr "Филтер на пробата во боји која кориÑти ICC профил на боја" + +#: modules/cdisplay_proof.c:238 +msgid "Color Proof" +msgstr "Проба во боја" + +#: modules/cdisplay_proof.c:457 +msgid "_Intent:" +msgstr "_Ðамера:" + +#: modules/cdisplay_proof.c:460 +msgid "Choose an ICC Color Profile" +msgstr "Изберете ICC профил на боја" + +#: modules/cdisplay_proof.c:463 +msgid "_Profile:" +msgstr "_Профил:" + +#: modules/cdisplay_proof.c:471 +msgid "_Black Point Compensation" +msgstr "Замена за _црну точка" + +#: modules/colorsel_cmyk.c:73 +msgid "CMYK color selector" +msgstr "Избор на CMYK боја" + +#: modules/colorsel_cmyk.c:130 +msgid "CMYK" +msgstr "CMYK" + +#: modules/colorsel_cmyk.c:147 +msgid "_C" +msgstr "_C" + +#: modules/colorsel_cmyk.c:148 +msgid "_M" +msgstr "_M" + +#: modules/colorsel_cmyk.c:149 +msgid "_Y" +msgstr "_Y" + +#: modules/colorsel_cmyk.c:150 +msgid "_K" +msgstr "_K" + +#: modules/colorsel_cmyk.c:154 +msgid "Cyan" +msgstr "Цијан" + +#: modules/colorsel_cmyk.c:155 +msgid "Magenta" +msgstr "Магента" + +#: modules/colorsel_cmyk.c:156 +msgid "Yellow" +msgstr "Жолта" + +#: modules/colorsel_cmyk.c:157 +msgid "Black" +msgstr "Црна" + +#: modules/colorsel_cmyk.c:191 +msgid "Black _Pullout:" +msgstr "Из_влекување на црна:" + +#: modules/colorsel_cmyk.c:208 +msgid "The percentage of black to pull out of the colored inks." +msgstr "Процент на црна боја која треба да Ñе извлече од обоените маÑтила." + +#: modules/colorsel_triangle.c:104 +msgid "Painter-style triangle color selector" +msgstr "Одбирач на триаголникот Ñо бои во ÑликарÑки Ñтил" + +#: modules/colorsel_triangle.c:170 +msgid "Triangle" +msgstr "Триаголник" + +#: modules/colorsel_water.c:88 +msgid "Watercolor style color selector" +msgstr "Избирач на боја во Ñтил на водени бои" + +#: modules/colorsel_water.c:154 +msgid "Watercolor" +msgstr "Водена боја" + +#: modules/colorsel_water.c:220 +msgid "Pressure" +msgstr "ПритиÑок" + diff -uraN gimp-2.2.8/po-libgimp/zh_CN.gmo gimp-2.2.9/po-libgimp/zh_CN.gmo --- gimp-2.2.8/po-libgimp/zh_CN.gmo 2005-05-08 23:42:02.000000000 +0200 +++ gimp-2.2.9/po-libgimp/zh_CN.gmo 2005-08-15 12:09:23.000000000 +0200 @@ -1,32 +1,35 @@ -Þ•¯”é °±¹ÁÉÑÙáêðöü*(E4n#£.Ç!ö-F.b‘¨Åßçþ&,3EL -R]mr‚‡› -£ ®ºVÖ- DPAh*ªÕ ÝêóTMo½%Ìò÷ % 7C'J r€‡–œ ·Á Ô Þèøþ2"Adh p ~ Œ– ¦´ ºÇ ÎÚá÷ÿ %5 P] -ep%u› -­ ¸Å -×â!ë   %) -?J\;c Ÿ «¹Ð7Ö8G"Psxf‡îô -ü -'2;_BP¢UóILOa -{† -‰”š¢´·¿ÂÊÓÖ Ùã ìö -ù %, -4?BILTÖÞæîöþ "#=#a)…¯$Ëð- :3VŠ ¹ÖÜ ø&9A HRc jw| -‘ œ ©¶WÔ, ? L 6f 2 Ð × ä î !H!B[! ž!%¬!Ò! Ù!ã! ê!÷! """))" S" `" j"w"}"–" Ÿ" ¬"¶" ½"Ê"Ñ"4ä"#8#?# F# S# `#j# -{#†# Š# —# ¡# ®#¸#×#Þ# â#ì#ÿ#$ 2$ ?$ I$ S$$]$ ‚$ $œ$ ¯$¼$Ã$Ê$è$ -ì$ ÷$% % %%/%66% m%z%Š%©%-­%*Û%& &+& 2&c?&£&ª&±&¸& ×&á&è&Zï&LJ'C—'Û'á' é'÷' (( -( -)( -4( ?(M( U(b( -j( u(ƒ(‹( “( -¡(¬(À( -È( -Ó(Þ( -ï(ú( -) - ) -) -#).)6)>) F)2‡¡Œqƒ:iaT€Ÿn[`œe¨%*{;v­=„I}W’_\ !5 †('wux—#R.pª+V$sHP‚? §£8Z¤o•˜Cž…YXUrM -g‘]/bQzk0›,™K”ˆŽ~ N Š)y@<DšJ¬9SO4mc >f|“th"1&¦®E¢BjFL-¥l^3–7‹‰d¯©GA«6%.1f GB%.1f KB%.1f MB%.2f GB%.2f KB%.2f MB%d Bytes%d GB%d KB%d MB%s can only handle RGB images%s can only handle RGB or grayscale images%s can only handle RGB or indexed images%s can only handle bitmap (two color) indexed images%s can only handle grayscale images%s can only handle grayscale or indexed images%s can only handle indexed images%s can only handle layers as animation frames%s can't handle layer masks%s can't handle layer offsets, size or opacity%s can't handle layers%s can't handle transparency%s needs an alpha channel(Empty)(invalid UTF-8 string)Absolute ColorimetricAdd Alpha ChannelAlphaAnchorApply Layer MasksBlac_kBlackBlack OnlyBlack _Pullout:BlueBrush SelectionCMYKCMYK color selectorC_enterCheck SizeCheck StyleChoose an ICC Color ProfileClick the eyedropper, then click a color anywhere on your screen to select that color.Color Deficient VisionColor ProofColor _Deficiency Type:Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)Color proof filter using ICC color profileConfirmConfirm SaveContrastContrast C_ycles:Convert to GrayscaleConvert to Indexed using bitmap default settings +Þ•°œï ØÙáéñù $*B(m4–#Ë.ï!-@n.Š¹Ðí&<NT[mt +z…•šª¯ÃrË +> IUVqÈ ßëA*Ep x…Ž TµM +X%g’›  %¬ ÒÞ'å "17 R\ o yƒ“™2©"Üÿ   '1 AO Ub iu|’š ¡«ÀÐ ëø + %6 +H S` +r}!†¨ ¬ ¶ÀÄ +Úå÷;þ : FTk7q8©â"ëf"‰ +—¢ +ÂÍÖ_ÝP=UŽäçêü +! +$/5=ORZ]enq t~ ‡‘ +”Ÿ¦®¶¹ÀÇ +ÏÚÝäçïqy‰‘™ ¡«±·½#Ø#ü) J$f‹-§Õ3ñ%;Tqw “ ´ºÁÔÜ ãíþ    +, V7 Ž › ¨ WÆ ! 1!>!6X!2!Â! É! Ö!à!ô!H"BM" "%ž"Ä" Ë"Õ" Ü"é" ##)# E# R# \#i#o#ˆ# ‘# ž#¨# ¯#¼#Ã#4Ö# $*$1$ 8$ E$ R$\$ +m$x$ |$ ‰$ “$  $ª$É$Ð$ Ô$Þ$ñ$% $% 1% ;% E%$O% t% %Ž% ¡%®%µ%¼%Ú% +Þ% é%ó% ú% &&!&6(& _&l&|&›&-Ÿ&*Í&ø&ÿ&' $'c1'•'œ'£'ª' É'Ó'Ú'Zá'L<(C‰(Í(Ó( Û(é( ú() +) +) +&) 1)?) G)T) +\) g)u)}) …) +“)ž)²) +º) +Å)Ð) +á)ì) +ô) +ÿ) + +* +* *(*0* 8* +4I”\^­$-Fl/ªŽH= +¤ž3V?v«b0Z(®£d¨]‡ <y){6©†…„"[o5‚,™iRC m¬Y°B`&˜Pf§S•phŒ@1# ¡a8;W2e%K’T—.c‹X‘›~Ÿ!9JA'¯¦‰N u*œr¥GLEšs>tˆ–wDQ Mqx7_|ŠU€¢:Onzjgƒk“}%.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' @@ -35,14 +38,15 @@ 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-05-08 12:28+0200 -PO-Revision-Date: 2004-11-24 19:30+0800 +PO-Revision-Date: 2005-08-10 17:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Translator: Yuheng Xie -%.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 需è¦ä¸€ä¸ª alpha 通é“(空)(无效的 UTF-8 字符串)ç»å¯¹è‰²åº¦æ·»åŠ  Alpha 通é“Alpha固定应用图层蒙æ¿é»‘(_K)黑色仅黑色黑色é‡(_P):è“色画笔选择CMYKCMYK 颜色选择器居中(_E)方格大å°æ–¹æ ¼é£Žæ ¼é€‰æ‹© 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 需è¦ä¸€ä¸ª alpha 通é“(空)(无效的 UTF-8 字符串)ç»å¯¹è‰²åº¦æ·»åŠ  Alpha 通é“Alpha固定应用图层蒙æ¿é»‘(_K)黑色仅黑色黑色é‡(_P):è“色画笔选择CMYKCMYK 颜色选择器居中(_E)无法确定有效的主目录。 +将缩略图改放在临时文件的目录(%s)中。方格大å°æ–¹æ ¼é£Žæ ¼é€‰æ‹© ICC 颜色é…置文件点击滴管,然åŽç‚¹å‡»æ‚¨çš„å±å¹•ä¸Šä»»ä½•ä½ç½®çš„颜色å³å¯é€‰å–该颜色。视觉色彩缺失颜色校对色彩缺失类型(_D):色彩缺失模拟滤镜(Brettel-Vienot-Mollon 算法)使用 ICC 颜色é…置文件的颜色校对滤镜确认确认ä¿å­˜å¯¹æ¯”度对比循环(_Y):转æ¢åˆ°ç°åº¦ä½¿ç”¨é»˜è®¤çš„ä½å›¾è®¾ç½®è½¬æ¢åˆ°ç´¢å¼• (如需调节请手动转æ¢)使用默认的设置转æ¢åˆ°ç´¢å¼• (如需调节请手动转æ¢)转æ¢åˆ° RGB无法为“%sâ€åˆ›å»ºç¼©ç•¥å›¾ï¼š%s剪è£å½“å‰ï¼šé’色深色方格绿色盲(对绿色ä¸æ•æ„Ÿ)导出文件因å­æ— æ³•åˆ›å»ºç¼©ç•¥å›¾æ–‡ä»¶å¤¹â€œ%sâ€ã€‚平整图åƒæ–‡ä»¶å¤¹å­—体选择GammaGamma 颜色显示滤镜G 字节æ¸å˜é€‰æ‹©ä»…ç°è‰²ç°åº¦ç°åº¦-alpha绿色HTML æ ¼å¼(_N):HTML å’Œ CSS 中所使用的å六进制颜色格å¼é«˜å¯¹æ¯”度颜色显示滤镜色调索引索引颜色索引-alphaåƒå­—节字æ¯é—´è·(_E)è¡Œè·(_I)大浅色方格已链接加载失败已加载正在加载模å—:“%s†å“红中兆字节åˆå¹¶å¯è§å›¾å±‚中等色调方格模å—“%sâ€åŠ è½½é”™è¯¯ï¼š%s模å—错误更多...未加载旧的:画家风格的三角颜色选择器色æ¿é€‰æ‹©ç²˜è´´è¿›å…¥ç²˜è´´ä¸ºæ–°å›¾åƒå›¾æ¡ˆé€‰æ‹©æ„Ÿå®˜åŽ‹åŠ›çº¢è‰²ç›²(对红色ä¸æ•æ„Ÿ)RGBRGB 颜色RGB-alpha红色相对色度饱和度以动画储存缩放以生æˆçš„éšæœºæ•°ä½œä¸ºéšæœºæ•°ç”Ÿæˆå™¨çš„ç§å­é€‰æ‹©æ–‡ä»¶é€‰æ‹©æ–‡ä»¶å¤¹æ­£åœ¨è·³è¿‡æ¨¡å—:“%s†diff -uraN gimp-2.2.8/po-libgimp/zh_CN.po gimp-2.2.9/po-libgimp/zh_CN.po --- gimp-2.2.8/po-libgimp/zh_CN.po 2005-05-08 23:42:01.000000000 +0200 +++ gimp-2.2.9/po-libgimp/zh_CN.po 2005-08-15 12:07:07.000000000 +0200 @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. -# Yuheng Xie , 2001-2004. +# Yuheng Xie , 2001-2005. # msgid "" msgstr "" "Project-Id-Version: gimp-libgimp\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-05-08 12:28+0200\n" -"PO-Revision-Date: 2004-11-24 19:30+0800\n" +"PO-Revision-Date: 2005-08-10 17:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" "MIME-Version: 1.0\n" @@ -373,6 +373,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 @@ -795,8 +797,3 @@ msgid "Pressure" msgstr "压力" -#~ msgid "He_x Triplet:" -#~ msgstr "å六进制值(_X):" - -#~ msgid "None" -#~ msgstr "æ— " diff -uraN gimp-2.2.8/po-libgimp/zh_TW.gmo gimp-2.2.9/po-libgimp/zh_TW.gmo --- gimp-2.2.8/po-libgimp/zh_TW.gmo 2005-05-08 23:42:02.000000000 +0200 +++ gimp-2.2.9/po-libgimp/zh_TW.gmo 2005-08-15 12:09:23.000000000 +0200 @@ -1,57 +1,58 @@ -Þ•|ü§Üx -y - -‰ -‘ -™ -¡ -© -² -¸ -¾ -Ä -*â -( #6 .Z !‰ -« Ù .õ $ ; X r ‰ › ¡ ¨ º À Å Õ Ú Vî E \ At ¶ ¾ Ë Ô Mé 7FKT%Y ‹'’ ºÈÏÞäÿ";? O ]ip†Ž£ ¾Ë -ÓÞ%ã -  !3!<^ -bm; » ÇÕ7ì$"-PUfdËÑ -Ùä _PtÅÈ -ËÖ -Ùäêòõý   -&-5=@G -NY\_XgÀÈÐØàè ðý #*&Nu'‘¹-Ø3"Vl…›³ÆÍÔçë ïü?Yu4‰¾ ÅÒÙBé ,:AQ X bo&v ­ ·ÄÊ ãðô - -" - :D]d(w  ³ ½Ç*× +8 ?IMTHd ­ºÊ<ã  '1 8tEºÁÈÏ îø`üL] -ªµ ½Ë -Î -Ù -äï ÷ - - 1 9 -GR -c -n -y -„ - -š¥ ¨!5Fvs%p=\8(G-W ren|ot<E -4$9 S]Hz1',0{#xIRAKj`O UMf;Db3[^PLN)Q2h+m7Vci@*_.gJ>Xka?Zlq6"uCT:/ &YdBy w%.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 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)Add Alpha ChannelAlphaAnchorApply Layer MasksBlackBlueBrush SelectionCMYKCMYK color selectorClick 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 SaveContrastConvert to GrayscaleConvert 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 SpacingLoad failedLoadedLoading module: '%s' -MagentaMerge Visible LayersModule '%s' load error: %sModule errorMore...Not loadedOld:Painter-style triangle color selectorPaste IntoPaste as NewPattern SelectionPressureProtanopia (insensitivity to red)RedSaturationSave as AnimationSeed 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. +Þ•ªlã¼ +HIQYaiqy‚ˆŽ”*²(Ý4#;._!Ž-°Þ.ú)@]w–¬¾ÄËÝä +êõú +#r+ +ž ©µVÑ( ?KAc*¥Ð ØåîTMX¦%µÛàé î%ú ,'3 [ip…  ª ½ ÇÑáç2÷"*MQ Y g u  £° ·ÃÊàè ïù 9F +NY%^„ +– ¡®À!Éë ï ù +(:;A } ‰—®7´ì"õf,“™ +¡¬ +Ì×à_çPGU˜îñô + +%-?BJMUX [e nx +{†• §® +¶ÁÄËÎUÖ,4<DLT \iou{#–&ºá'D-c‘3­á÷&/ GTgnuˆ”› Ÿ¬± +ÉfÔ ; HU?s³ ÆÓ7å8 V ] j q N BÐ !!!?! F!T! [!h! !Ž!&•!¼! Ì! Ö!ã!é!" """ #"1"5"9I"ƒ"œ" £" ­"·"È" +Ë" +Ö"á" å"ò" ù" ##)#0#4#7#J#(]#†# ™# £# ­#*»# æ#ó#$ $)$0$G$ +K$ +V$a$ e$r$y$‰$H$ Ù$æ$ö$%<%P%W%n% u%t‚%÷%þ%& &+& 2&<&`@&L¡&7î& +&'1'9' J'X' +[' +f' +q'|''•' +' +¨'³'¶'¹' +Í'Ø'ç' ï' +ý'( +( +$( +/( +:( +E( +P( +[(f(n( q(M”GZA…‹);U‰"§O©Œz^c!r6™¥ +y(Y¢w›˜&>o— p+@|{lƒ b„8D2t’m%#9XI0š¡3K NŸe,V17u¨Hˆ-–LS_¦ž€ª‡ŽjE=]kŠ£œ4R•~s<$?¤hn*x5i Cv:“ BT q'JP`†gF\‘WQ[d‚af}/.%.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 OnlyBlueBrush 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 SaveContrastConvert 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 SelectionPressureProtanopia (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.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._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 +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_Browse..._C_Duplicate_Edit_Export_Foreground Color_G_Gamma:_H_Ignore_K_M_New Seed_Preview_Profile:_R_Randomize_Reset_Resize_Rotate_S_Scale_Shear_Stroke_Transform_V_White_YpercentProject-Id-Version: gimp-libgimp 2.2.9 Report-Msgid-Bugs-To: -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) +POT-Creation-Date: 2005-07-07 10:24+0800 +PO-Revision-Date: 2005-07-07 20:00+0800 +Last-Translator: Abel Cheung +Language-Team: Chinese (traditional) 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 需è¦é€æ˜Žè‰²ç‰ˆç„¡æ•ˆçš„ UTF-8 文字)新增é€æ˜Žè‰²ç‰ˆé€æ˜Žå›ºå®šå¥—用圖層é®ç½©é»‘è—筆刷é¸æ“‡CMYKCMYK 色彩é¸æ“‡ç¨‹åºæŒ‰ä¸‹æ»´ç®¡ï¼Œç„¶å¾Œåœ¨ç•«é¢ä¸­é¸å–任何想è¦çš„é¡è‰²ã€‚模擬色盲人士的視覺色盲類型(_D)ï¼šè‰²ç›²æ¨¡æ“¬æ¿¾é¡ (Brettel-Vienot-Mollon 演算法)確èªç¢ºèªå„²å­˜å°æ¯”轉æ›æˆç°éšŽæ ¹æ“šé è¨­è¨­å®šè½‰æ›æˆç´¢å¼•è‰²å½±åƒ -(請自行調整çµæžœ)轉æ›æˆ RGBè£å‰ªç›®å‰é¡è‰²ï¼šæ°°è—綠色盲匯出檔案比例無法建立縮圖資料夾‘%s’。影åƒå¹³é¢åŒ–資料夾字型é¸æ“‡GammaGamma 色彩顯示濾é¡æ¼¸å±¤é¸æ“‡ç¶ é«˜å°æ¯”色彩顯示濾é¡è‰²ç›¸å­—è·(_E)è¡Œè·(_I)載入失敗已載入載入模組:‘%s’ -æ´‹ç´…åˆä½µå¯è¦‹åœ–層載入模組‘%s’時出ç¾éŒ¯èª¤ï¼š%s模組發生錯誤其它...未載入原有é¡è‰²ï¼šç•«å®¶æ–¹å¼çš„三角形色彩é¸æ“‡ç¨‹åºè²¼ä¸Šæˆç‚ºåœ–層貼上æˆç‚ºæ–°å½±åƒåœ–樣é¸æ“‡å£“力紅色盲紅彩度儲存為動畫使用產生出來的隨機數作為隨機數產生程åºçš„來æºæ•¸å­—é¸å–檔案é¸å–資料夾忽略模組:‘%s’ -匯出時的影åƒè½‰æ›ç¨‹åºä¸æœƒæ›´æ”¹åŽŸæœ‰çš„å½±åƒã€‚三角è—色盲單ä½é¸æ“‡å–®ä½ä½¿ç”¨æœ¬æ•¸å€¼ä½œç‚ºéš¨æ©Ÿæ•¸ç”¢ç”Ÿç¨‹åºçš„來æºæ•¸å­— ─ 這樣å¯é‡è¤‡åœ°ç”¢ç”ŸåŒä¸€ç³»åˆ—的「隨機ã€æ•¸æ˜Žåº¦å¯è¦‹æ°´å½©æ°´å½©æ–¹å¼è‰²å½©é¸æ“‡ç¨‹åºå¯å¯«å…¥é»ƒæº–備將色版(已儲存的é¸æ“‡å€åŸŸ)儲存為 %s。 +%.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)黑全黑è—筆刷é¸æ“‡CMYKCMYK 色彩é¸æ“‡ç¨‹åºä¸­å¤®(_E)找ä¸åˆ°æ­£ç¢ºçš„個人資料夾。 +縮圖會改為儲存至存放暫時性檔案的資料夾 (%s)。方格大å°æ–¹æ ¼æ¨£å¼è«‹é¸æ“‡ ICC 色彩æ述檔按下滴管,然後在畫é¢ä¸­é¸å–任何想è¦çš„é¡è‰²ã€‚模擬色盲視覺色彩打樣色盲類型(_D):模擬色盲濾色片 (Brettel-Vienot-Mollon 演算法)應用 ICC 色彩æ述檔作為色彩打樣的濾色片確èªç¢ºèªå„²å­˜å°æ¯”轉æ›æˆç°éšŽæ ¹æ“šé è¨­çš„點陣圖設定轉æ›æˆç´¢å¼•è‰²å½±åƒ +(請自行調整çµæžœ)根據é è¨­è¨­å®šè½‰æ›æˆç´¢å¼•è‰²å½±åƒ +(請自行調整çµæžœ)轉æ›æˆ RGB無法產生 %s 的縮圖: %sè£å‰ªç›®å‰é¡è‰²:æ°°è—深色方格綠色盲 (Deuteranopia)匯出檔案比例無法建立縮圖資料夾‘%s’。影åƒå¹³é¢åŒ–資料夾字型é¸æ“‡GammaGamma 色彩顯示濾色片GB漸層é¸æ“‡å…¨ç°ç°éšŽç°éšŽ-é€æ˜Žç¶ _HTML 表示方å¼:é¡žä¼¼ HTML å’Œ CSS 所用的 16 進ä½è‰²å½©è¡¨ç¤ºæ–¹å¼é«˜å°æ¯”色彩濾色片色相索引色索引色索引色-é€æ˜ŽKBå­—è·(_E)è¡Œè·(_I)大淺色方格連çµè¼‰å…¥å¤±æ•—已載入載入模組:‘%s’ +洋紅中MBåˆä½µå¯è¦‹åœ–層中度ç°è‰²æ–¹æ ¼è¼‰å…¥æ¨¡çµ„‘%s’時出ç¾éŒ¯èª¤ï¼š%s模組發生錯誤其它...未載入原有é¡è‰²:畫家方å¼çš„三角形色彩é¸æ“‡ç¨‹åºè‰²ç›¤é¸æ“‡è²¼ä¸Šæˆç‚ºåœ–層貼上æˆç‚ºæ–°å½±åƒåœ–樣é¸æ“‡å£“力紅色盲 (Protanopia)RGBRGB 色彩RGB-é€æ˜Žç´…相å°è‰²åº¦å½©åº¦å„²å­˜ç‚ºå‹•ç•«æŽ¨æ¡¿ä½¿ç”¨ç”¢ç”Ÿå‡ºä¾†çš„隨機數作為隨機數產生程åºçš„來æºæ•¸å­—é¸å–檔案é¸å–資料夾忽略模組:‘%s’ +å°åŒ¯å‡ºæ™‚çš„å½±åƒè½‰æ›ç¨‹åºä¸æœƒæ›´æ”¹åŽŸæœ‰çš„å½±åƒã€‚三角è—色盲 (Tritanopia)å–®ä½é¸æ“‡å–®ä½ä½¿ç”¨æœ¬æ•¸å€¼ä½œç‚ºéš¨æ©Ÿæ•¸ç”¢ç”Ÿç¨‹åºçš„來æºæ•¸å­— ─ 這樣å¯é‡è¤‡åœ°ç”¢ç”ŸåŒä¸€ç³»åˆ—的「隨機ã€æ•¸æ˜Žåº¦å¯è¦‹æ°´å½©æ°´å½©æ–¹å¼è‰²å½©é¸æ“‡ç¨‹åºå…¨ç™½å¯å¯«å…¥é»ƒæº–備將色版(已儲存的é¸æ“‡å€åŸŸ)儲存為 %s。 本程åºä¸æœƒå„²å­˜å¯è¦‹çš„圖層。準備將圖層é®ç½©å„²å­˜ç‚º %s。 -本程åºä¸æœƒå„²å­˜å¯è¦‹çš„圖層。é€æ˜Ž(_A)è—(_B)ç€è¦½(_B)..._C複製(_D)編輯(_E)匯出(_E)綠(_G)_Gamma:色相(_H)忽略(_I)_K_M產生隨機數(_N)ç´…(_R)隨機化(_R)é‡è¨­(_R)調整尺寸(_R)旋轉(_R)彩度(_S)縮放(_S)推移(_S)變æ›(_T)明度(_V)_Y百分比 \ No newline at end of file +本程åºä¸æœƒå„²å­˜å¯è¦‹çš„圖層。影åƒåœ¨å„²å­˜è‡³ %s å‰å¿…須匯出,原因如下:é€æ˜Ž(_A)è—(_B)背景é¡è‰²(_B)ç€è¦½(_B)..._C複製(_D)編輯(_E)匯出(_E)å‰æ™¯é¡è‰²(_F)綠(_G)_Gamma:色相(_H)忽略(_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.8/po-libgimp/zh_TW.po gimp-2.2.9/po-libgimp/zh_TW.po --- gimp-2.2.8/po-libgimp/zh_TW.po 2005-05-08 23:42:01.000000000 +0200 +++ gimp-2.2.9/po-libgimp/zh_TW.po 2005-08-15 12:07:07.000000000 +0200 @@ -1,17 +1,17 @@ # traditional Chinese translation of gimp-libgimp. -# Copyright (C) 2001, 03, 04 Free Software Foundation, Inc. +# Copyright (C) 2001, 03, 04, 05 Free Software Foundation, Inc. # Chun-Chung Chen , 2001. # æž—ä½³å® , 2001. -# Abel Cheung , 2001, 2003-04. +# Abel Cheung , 2001, 2003-04. # msgid "" msgstr "" -"Project-Id-Version: gimp-libgimp 2.0.0\n" +"Project-Id-Version: gimp-libgimp 2.2.9\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2005-07-07 10:24+0800\n" +"PO-Revision-Date: 2005-07-07 20:00+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -102,17 +102,16 @@ "(請自行調整çµæžœ)" #: ../libgimp/gimpexport.c:306 -#, fuzzy, c-format +#, c-format msgid "%s can only handle bitmap (two color) indexed images" -msgstr "%s åªèƒ½è™•ç† RGB 或索引色影åƒ" +msgstr "%s åªèƒ½è™•ç†é»‘白點陣圖" #: ../libgimp/gimpexport.c:307 -#, fuzzy msgid "" "Convert to Indexed using bitmap default settings\n" "(Do it manually to tune the result)" msgstr "" -"根據é è¨­è¨­å®šè½‰æ›æˆç´¢å¼•è‰²å½±åƒ\n" +"根據é è¨­çš„點陣圖設定轉æ›æˆç´¢å¼•è‰²å½±åƒ\n" "(請自行調整çµæžœ)" #: ../libgimp/gimpexport.c:316 @@ -161,11 +160,11 @@ #. the headline #: ../libgimp/gimpexport.c:482 -#, fuzzy, c-format +#, c-format msgid "" "Your image should be exported before it can be saved as %s for the following " "reasons:" -msgstr "å½±åƒåœ¨å„²å­˜å‰å¿…須匯出,原因如下:" +msgstr "å½±åƒåœ¨å„²å­˜è‡³ %s å‰å¿…須匯出,原因如下:" #. the footline #: ../libgimp/gimpexport.c:553 @@ -200,12 +199,11 @@ #: ../libgimp/gimpmenu.c:406 ../libgimpwidgets/gimpintstore.c:167 msgid "(Empty)" -msgstr "" +msgstr "(空白)" #: ../libgimp/gimppalettemenu.c:91 -#, fuzzy msgid "Palette Selection" -msgstr "圖樣é¸æ“‡" +msgstr "色盤é¸æ“‡" #: ../libgimp/gimppatternmenu.c:113 msgid "Pattern Selection" @@ -217,73 +215,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 @@ -378,6 +374,8 @@ "Cannot determine a valid home directory.\n" "Thumbnails will be stored in the folder for temporary files (%s) instead." msgstr "" +"找ä¸åˆ°æ­£ç¢ºçš„個人資料夾。\n" +"縮圖會改為儲存至存放暫時性檔案的資料夾 (%s)。" #: ../libgimpthumb/gimpthumb-utils.c:249 ../libgimpthumb/gimpthumb-utils.c:317 #, c-format @@ -385,33 +383,29 @@ 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" -msgstr "" +msgstr "推桿" #: ../libgimpwidgets/gimpcolorscales.c:155 #: ../libgimpwidgets/gimpcolorselect.c:343 @@ -484,21 +478,20 @@ 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 表示方å¼:" #: ../libgimpwidgets/gimpcolorselection.c:203 msgid "Current:" -msgstr "ç›®å‰é¡è‰²ï¼š" +msgstr "ç›®å‰é¡è‰²:" #: ../libgimpwidgets/gimpcolorselection.c:225 msgid "Old:" -msgstr "原有é¡è‰²ï¼š" +msgstr "原有é¡è‰²:" #: ../libgimpwidgets/gimpfileentry.c:351 msgid "Select Folder" @@ -509,17 +502,14 @@ msgstr "é¸å–檔案" #: ../libgimpwidgets/gimpmemsizeentry.c:232 -#, fuzzy msgid "Kilobytes" msgstr "KB" #: ../libgimpwidgets/gimpmemsizeentry.c:233 -#, fuzzy msgid "Megabytes" msgstr "MB" #: ../libgimpwidgets/gimpmemsizeentry.c:234 -#, fuzzy msgid "Gigabytes" msgstr "GB" @@ -539,16 +529,16 @@ #: ../libgimpwidgets/gimppreviewarea.c:126 msgid "Check Size" -msgstr "" +msgstr "方格大å°" #: ../libgimpwidgets/gimppreviewarea.c:133 msgid "Check Style" -msgstr "" +msgstr "方格樣å¼" #. toggle button to (des)activate the instant preview #: ../libgimpwidgets/gimppreview.c:240 msgid "_Preview" -msgstr "" +msgstr "é è¦½(_P)" #: ../libgimpwidgets/gimpstock.c:113 msgid "Anchor" @@ -556,7 +546,7 @@ #: ../libgimpwidgets/gimpstock.c:114 msgid "C_enter" -msgstr "" +msgstr "中央(_E)" #: ../libgimpwidgets/gimpstock.c:115 msgid "_Duplicate" @@ -568,7 +558,7 @@ #: ../libgimpwidgets/gimpstock.c:117 msgid "Linked" -msgstr "" +msgstr "連çµ" #: ../libgimpwidgets/gimpstock.c:118 msgid "Paste as New" @@ -588,7 +578,7 @@ #: ../libgimpwidgets/gimpstock.c:154 ../libgimpwidgets/gimpstock.c:158 msgid "_Stroke" -msgstr "" +msgstr "æé‚Š(_S)" #: ../libgimpwidgets/gimpstock.c:170 msgid "L_etter Spacing" @@ -659,31 +649,31 @@ #: ../modules/cdisplay_colorblind.c:57 ../modules/cdisplay_colorblind.c:545 msgid "Protanopia (insensitivity to red)" -msgstr "紅色盲" +msgstr "紅色盲 (Protanopia)" #: ../modules/cdisplay_colorblind.c:59 ../modules/cdisplay_colorblind.c:547 msgid "Deuteranopia (insensitivity to green)" -msgstr "綠色盲" +msgstr "綠色盲 (Deuteranopia)" #: ../modules/cdisplay_colorblind.c:61 ../modules/cdisplay_colorblind.c:549 msgid "Tritanopia (insensitivity to blue)" -msgstr "è—色盲" +msgstr "è—色盲 (Tritanopia)" #: ../modules/cdisplay_colorblind.c:153 msgid "Color deficit simulation filter (Brettel-Vienot-Mollon algorithm)" -msgstr "è‰²ç›²æ¨¡æ“¬æ¿¾é¡ (Brettel-Vienot-Mollon 演算法)" +msgstr "模擬色盲濾色片 (Brettel-Vienot-Mollon 演算法)" #: ../modules/cdisplay_colorblind.c:242 msgid "Color Deficient Vision" -msgstr "模擬色盲人士的視覺" +msgstr "模擬色盲視覺" #: ../modules/cdisplay_colorblind.c:540 msgid "Color _Deficiency Type:" -msgstr "色盲類型(_D):" +msgstr "色盲類型(_D):" #: ../modules/cdisplay_gamma.c:105 msgid "Gamma color display filter" -msgstr "Gamma 色彩顯示濾é¡" +msgstr "Gamma 色彩顯示濾色片" #: ../modules/cdisplay_gamma.c:178 msgid "Gamma" @@ -691,11 +681,11 @@ #: ../modules/cdisplay_gamma.c:352 msgid "_Gamma:" -msgstr "_Gamma:" +msgstr "_Gamma:" #: ../modules/cdisplay_highcontrast.c:105 msgid "High Contrast color display filter" -msgstr "高å°æ¯”色彩顯示濾é¡" +msgstr "高å°æ¯”色彩濾色片" #: ../modules/cdisplay_highcontrast.c:178 msgid "Contrast" @@ -711,19 +701,19 @@ #: ../modules/cdisplay_proof.c:47 ../modules/cdisplay_proof.c:442 msgid "Relative Colorimetric" -msgstr "" +msgstr "相å°è‰²åº¦" #: ../modules/cdisplay_proof.c:51 ../modules/cdisplay_proof.c:446 msgid "Absolute Colorimetric" -msgstr "" +msgstr "絕å°è‰²åº¦" #: ../modules/cdisplay_proof.c:138 msgid "Color proof filter using ICC color profile" -msgstr "" +msgstr "應用 ICC 色彩æ述檔作為色彩打樣的濾色片" #: ../modules/cdisplay_proof.c:238 msgid "Color Proof" -msgstr "" +msgstr "色彩打樣" #: ../modules/cdisplay_proof.c:457 msgid "_Intent:" @@ -731,11 +721,11 @@ #: ../modules/cdisplay_proof.c:460 msgid "Choose an ICC Color Profile" -msgstr "" +msgstr "è«‹é¸æ“‡ ICC 色彩æ述檔" #: ../modules/cdisplay_proof.c:463 msgid "_Profile:" -msgstr "" +msgstr "æ述檔(_P):" #: ../modules/cdisplay_proof.c:471 msgid "_Black Point Compensation" @@ -809,8 +799,3 @@ msgid "Pressure" msgstr "壓力" -#~ msgid "He_x Triplet:" -#~ msgstr "16 進ä½æ•¸å­—(_X):" - -#~ msgid "None" -#~ msgstr "ç„¡" diff -uraN gimp-2.2.8/po-plug-ins/ca.gmo gimp-2.2.9/po-plug-ins/ca.gmo --- gimp-2.2.8/po-plug-ins/ca.gmo 2005-06-06 19:07:35.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/ca.gmo 2005-08-15 12:09:23.000000000 +0200 @@ -1,367 +1,379 @@ -Þ•6 -ÌQ£ |£ÚP ÚZÝoÝƒÝ šÝà¤Ý…Þ ‡Þ”Þ¤Þ ºÞÈÞÐÞ1àÞß",ßOßfßß žß*¿ß"êß à-àLàSà gà"sà–à#¶à$Úà -ÿà' -áV2áQ‰áÛáäá úáâ â#â (â 4â>â -CâNâ_â gâqâ zâ†âŽâ—âŸâ -´â¿â Ôâáâçâùâ ã -ãã)ã?ãXãiãxã‰ã ã°ã¹ã)Ðãúã äL'ätä…ä äÀä Üä:ýä8åQå<iåC¦å$êå§æÞ·æ'–ç¾ç}Þç&\è"ƒè¦èÃèÔè%ãè - éé%é?é OéYété‰é¢éªé+²é Þéèé%ñé ê!ê7ê=êLêSê<\ê™êR¡êôê ëëë(ë?ëTëië }ë2Šë1½ëïë õëì$ì6ìIì^ìoìA‹ìÍì ßì íì÷ìýìíí í*í -?í -JíUí]ífínísíí¦í ¾íÈíÛíííîî$î8îIî[î -aîlî~îî Ÿî «î -¸î -Ãî -Îî -Ùî äîòî3÷î +ï 7ïAïPïVïfïmï|ïƒïˆï™ï«ï±ïÁïÒïâï óï ÿï ð ð 'ð 1ð=ðDð Vð bðpðvð{ð Šð –ð¤ð¬ð °ð¼ðÃðÈðØðèððð ññ&ñDñUñpñtñyñ}ññ‡ññ˜ñ §ñ³ñ -Äñ ÏñÝñ åñññò òò ò$ò"9ò\ò?uòµòÎò$èò ó2&ó#Yó/}ó'­ó$Õó&úó!ôAôJ^ô&©ô'Ðôøô -õ õõ)õ -0õ -;õFõ]õ*qõœõ(ºõãõ ëõõõöhöh†ö)ïö'÷#A÷4e÷4š÷(Ï÷)ø÷'"ølJø*·ø5âø5ù,Nù*{ù¦ù4µù êù÷ùú (ú$6ú[úsú4|ú±ú ¹úÆú'dûŒû3œû$Ðû7õûU-ýƒýŠý -¤ý¯ýµýÇýáýèýïýþþ þþ 4þAþSþgþ -zþ…þŽþ–þ œþªþ»þÊþÜþ÷þÿ -ÿ*ÿBÿYÿ nÿ|ÿ -Žÿ@™ÿ Úÿçÿöÿ% -,7Naw€–¥®ÀÖÝå í÷* > KX l$x®+Å4ñ&.G[m v€+‰µÕAè*3 8 DRa)q6›Òä -& -6A(H+q!¿Ø&ô #< `#1¥#×&û"B/[>‹ÊÞò8Hew ~Œž<°|í'j’?² -ò9ý 7 E T  e q ‚  •  £ ¯ Ç Ý ý   - - - -9 +Þ•: +ìQ£ ¼£HÚPIښݯÝÃÝ ÚÝàäÝÅÞ ÇÞÔÞäÞ úÞßß1 ßRß"lßߦßÁß Þß*ÿß"*àMàmàŒà“à §à"³àÖà#öà$á +?á'JáVráQÉáâ$â :âDâKâcâ hâ tâ~â +ƒâŽâŸâ §â±â ºâÆâÎâ×âßâ +ôâÿâ ã!ã'ã9ã @ãJãSãiãã˜ã©ã¸ãÉãàãðãùã)ä:ä YäLgä´äÅäàäå å:=åxå‘å<©åCæå$*æ§OæÞ÷æ'Öçþç}è&œè"Ãèæèéé%#é +IéTéeéé é™é´éÉéâéêé+òé ê(ê%1ê Wêaêwê}êŒê“ê<œêÙêRáê4ë CëOëVëhëë”ë©ë ½ë2Êë1ýë/ì 5ìBì$Qìvì‰ìžìA¯ìñì í íí!í'í:í @íNí +cí +níyííŠí’í—í³íÊí âíìíÿíî(î,îHî\îmîî +…îî¢î³î Ãî Ïî +Üî +çî +òî +ýî ïï3ï Oï [ïeïtïzïŠï‘ï ï§ï¬ï½ïÏïÕïåïöïð ð #ð/ð ?ð Kð Uðaðhð zð †ð”ðšðŸð ®ð ºðÈðÐð Ôðàðçðìðõðñññ 0ñ>ñSñqñ‚ññ¡ñ¦ñªñ®ñ´ñ¼ñÅñ Ôñàñ +ññ üñ +ò òò0ò9òAò Gò Qò]ò"rò•ò?®òîòó$!óFó2_ó#’ó/¶ó'æó$ô&3ôZôzôJ—ô&âô' õ1õ +9õDõSõbõ +iõ +tõõ–õ*ªõÕõ(óõö $ö.ö?öhVöh¿ö)(÷'R÷#z÷4ž÷4Ó÷(ø)1ø'[ølƒø*ðø5ù5Qù,‡ù*´ùßù4îù #ú0úOú aú$oú”ú¬ú4µúêú òúÿú'ûÅû3Õû$ ü7.üUfý¼ýÃý +Ýýèýîýþþ!þ(þ9þAþ IþSþ mþzþŒþ þ +³þ¾þÐþÙþáþ çþõþÿÿ'ÿBÿ[ÿ +jÿuÿÿ¤ÿ ¹ÿÇÿ +Ùÿ@äÿ %2A]p +w‚™¬ÂËáðù !(0 8BKS\du ‰ –£ ·$Ãèù+4<qy’¦¸ ÁË+Ô A3u~ ƒ ¬)¼6æ/ +O +Ze(l+•!Áãü& ?#` „#¥1É#û&Ff/>¯î83l‰› ¢°Â<Ô|'Ž¶?Ö + ! 95  o } Œ  © º  Í  Û ç ÿ  +5 + ; +G +O +V +q  -U - ` -n - - -¬ + + ˜ +¦ +· +È +ä  -µ - À +í + ø  -Î -Ù - ê -ø -     ' 7  G  S _  o y € ˆ ™ © ¹  ¿ É Þ í õ    ) > V n  • y«  % $1 V  ^ j 0y ª  ± ½  Ì  Ú ç !ø /H_{Š¡ ª ¶ -ÂÍÞ ù   ! /9N fs |ŠŸ§ ÂÏäí4þ3 -: -E P \f wƒ -•  ¬µ Ç Õ2á0=E1ƒ=µ/ó# 5B K+W ƒ¤´(Çð/?BP “Ÿº Õáö!= [ix Š—¢ -´¿ ÐÜî :&ap€ ‡“§)¼/æ#2:+m™·ÆÕ Ý"ê '-“U4é +=V'u¼×õ/K^'vž±Ñ9ðN*)y.£Ò-í' C#dˆ›¡°Á%Ê2ð# )7I#P t$• º1Çù1I6i' ÈÜü % /<AVk€•«°·Îîÿ -.9 LX)a‹"‘´¼Üáð  6 Q  -e p   ¢  °  ½ Ë ä ö ÿ ! -!")! L!X!j!o! -~! ‰! -—!¢!¸!¾!Å!Ê!Ó! â!ï! ÷! """2"M"ŸT" ô" # # #g$#Œ#›# ­#º#Ë# -ä#ï#($).$X$ r$$…$—$ ž$¬$ -½$ È$Ò$Ú$ê$þ$% %%%9% -H% S%a%t%z% %‹% %¶%¿%Ñ% á%ï% & &%&C&X& ]& g&t& ƒ&&“&¥&¸&¿&Ä&É& Ú& æ&ô&' '*' ;' -I'T'ý[' Y( c(q(u( -‡( ’( ž(ª(¯( µ(¿(-Ð(þ());)2Q)/„)B´)=÷) -5* @*L* g*t* †*”*£* -²*½* Î* Û*å* é* ö*+ -+$*+3O+ ƒ+¤+ ¨+¶+Å+Õ+æ+ ë+ø+ û+,",5,G,Z,k,,…, -‹, –,£,³,Ã,Ì, Õ,nâ,‡Q-YÙ-v3.ƒª.\./C‹/Ï/ Ø/ä/ë/ñ/ 00 -)0 40 @0M0\0"v0 ™0¥0½0 Í0Ù0î01 "1K01|11™1ž1²1º1Ï1 Þ1 è1 ö122 2$2652 l2v2 Ž2›2 ®2(Ï2*ø2 #3-3 H3]R3 °3¼3À3Ð3 -ê3 õ34404 74D4J4\4p4 44¤4¨4­4 ¶4Ã4Ì4Ô4 Û4å4 -í4 -ø4/5`35”5 ™5£5 ©5 µ5G¿5B6NJ6I™6ã6é6ï6÷6ÿ67777.7@7%P7$v7%›7$Á7%æ7$ 81898B8S8g8x8‹88¢8«8 ²8 ¼8Æ8Í8 Ý8ë89#9 -29=9U9 q99‘9¦9»9 Ë9Ù9ò9:%: 6:B: -G: R:^:t:”: -¦: ±: -½: È:Ô:ë:; ; &;4; D;P;a;j;r; {;…; ”;<¡;%Þ; < -<</<'6< ^<<<§<¶< Æ< Ô<â< õ<==$=,=>= E=O=c= j=w== -§= ²=¿=×=ï= -÷= > >> 2>@> E> Q> _>k>r> w>>> -¥>°>Ã>0Ú> ? ?"?:? -R? ]?j?‚? š?+¨? Ô?â?ø? -@@3@N@S@[@ c@ q@~@ ”@ž@¹@Õ@ç@ î@ú@ A A A&A B -JBUB^BmB vB „B ŽBI›B åBïBþBCC - C+C:CC0~C -¯CºC.ÀCïCôCûCDD#D 4DUDhDxD ‹D¬D½D*ÏDúDE4ETE pEzEƒE ”EžE §E´E ¼EÉE ÚEäE íEúE F(FGFfFzF ƒFF%žFÄFÌF -ÜFçF îFøF G G)G:G PGZGnGwG€G …GG ¥G ±G½GÍG#ëGH,H5H7IHH™H ¡H®H ÅHÑH èHõHþH II "I0I7I FI SI`IhI xI …II“I£I ºI ÄI ÎI2ØI J$J?JZJmJ‰J ¥J¯J ³J -½JÈJâJéJúJK K -K#K;KKK RK^K sK K‹KšK -¢K ­K »K -ÈKÓKñK LL$L -+L 6LCLKL[L#kLL¨L ®L -¸LÃLÓL ÛLåL ôLMM M-M -4M'?M gMqM -†M‘M—M žM ¨M ²M¼MÜMùM NNN %N1N7N @NNNVN_N hN tN €NŒN£P8·PðP ùPQ+QFQ NQ[QjQ~Q†Q—QªQ:ÂQ'ýQ %R3RGRVRgR‡R –R ¤R°RÆRØR ëR ÷RSS 6S@SISZS ^SlS$qS–SšS -ªSµS ¾S ËSÙS -íSøSýS TTT&T7T -?TJTQTYToTŒT T§T·T ÇTÔT äT òT þT U$U-U?U ZU -fUqUxU|U‹UœU«U ¾UÈU%ÍUóUVV -V7V;VKV\VaVpV€VVŸV¤V³VºVÉVÛV îVûVW6WEW-[W‰W‘W¤W ¬WÍWßWïWX'X 6X CX PXZXmX‚X›X¬XÀX×XêXüXY!Y2Y"FYiY€Y -Y#šY ¾Y1ÊY,üY)ZCZ -]ZhZ ~ZŒZ©Z°Z ¶Z -ÄZÏZÖZ ÝZ -éZôZúZ[ [[ ![ +[ 5[?[G[ `[l[u[‘[­[É[ Ù[ ã[í[ó[\4\!O\q\\\ ¥\ ³\ ½\Ê\Ò\Ø\ -è\ó\ ü\] - ]]6];]M]]]n];v] ²] ¾] -Ê]Õ]ë]^ ^&^ +^#9^ -]^h^ „^‘^«^ º^ -Ä^Ï^ç^ ù^__/_*F_ q_}_Ž_ ª_ ¶_Ä_×_ è_ô_ ` ` &` 2` >`J`Z` m`y` ˆ` ”` ¡` ®` º` Æ`Ò`*è` a!a5aHa Xa -daoa‚a/’aÂaÜaëaña b -b b !b+b >bLb\bebnb wb.b'°bØbßb èb ôbcc c%c5cFcVc ncc¯c¸cÑcíc d d d+*dVd\drd -yd „d‘d£d´d ÆdÒdædee #e 1e =e -IeTeee~e˜e#­eÑeêeÿef+f0Bfsf]’f]ðffNgµgÏg ×g ág#ëg?hOhdh|h—h¯h)Ãh%íh<iEPi–i ©i ¶i ÃiÐiãi/úi**jCUj™j·j+Ój!ÿj!k'v -KvVv mv {v‡vŽv –v v´vÆvÎvávùvw wR'w&zw¡w´wZÐwS+xxšx5µx+ëxFy^y0~yM¯yEýyPCzK”zàz>ûz<:{7w{ú¯{œª|G}!c}…}¤}.Ã})ò}%~QB~)”~&¾~å~„/‡3·&ë€2€0Q€4‚€·€Ï€pé€~Z=Ù%‚,=‚Íj‚!8ƒZƒJqƒ¼ƒ Õƒáƒ)ñƒ -„&„5„ :„ H„U„-g„•„¦„­„¶„¿„ Ñ„Û„Þ„ -ç„ ò„ ü„……… …(….… 7…A… F…P…k… }…‰…  … ®…¸… É…Õ…Ú…ù…† 2†S†l†r†v†~† ˜†o¹†{)‡¥‡»‡À‡χ Ô‡à‡û‡ˆ%ˆ.ˆ=ˆ/Eˆuˆ ~ˆ ‹ˆ˜ˆ´ˆ&͈ôˆýˆ‰#‰ -3‰>‰M‰ \‰ h‰t‰’‰¥‰µ‰͉Fí‰4Š,FŠsŠQ„Š:ÖŠ‹&‹8‹L‹*^‹ ‰‹—‹°‹Ë‹ä‹ë‹ñ‹ŒŒ&Œ7Œ>ŒMŒ_ŒnŒ ~ŒŠŒ’Œ¢Œ«Œ -ºŒ ÅŒ όٌ ߌ íŒ úŒRPYª²»Ä!Ê쎎*Ž­2ŽjàŽAK$=².ð--M{€ -˜ £­ ³½UÂn‘‡‘—‘°‘¶‘¿‘,Ï‘ü‘’’’8"’[’u’’¥’¾’ Ã’Ñ’Ö’ë’ú’ “ “&“ )“&5“%\“%‚“¨“®“´“[Å“ !”.”3”8”G”J”P”V”[”`”g”o”Sx”CÌ”:•FK•’•¡•¤•´•Ë•ЕØ•ô•ý• –'–/–4–C– S– ]– g–q– ƒ––––¨–¼–Ä– Í–Ù–á– ê–ø– ——)— @— J—V— -h— s— —‹— ’— —©—°— -·——È—Ï— Õ—ã—ö— ÿ— ˜˜˜ #˜ /˜<˜ C˜ Q˜ [˜h˜q˜‚˜‰˜˜˜ «˜ ¸˜˜Ù˜ -ߘê˜ ù˜™™ ™(0™Y™i™ q™ }™‹™”™­™¶™ ¾™Ë™ -Ú™ å™ñ™ ÷™ššš"š 1š=š -EšPš išwšˆš -—š¢š²š»šÍš -ÓšÞšçš÷š›› ,› 6›B›I›P›_›x›Š›Ÿ›¨›½› ϛٛ ß› -é› ô›œœœ/œ8œUœ^œ mœ {œ…œ œ —œ¥œ¬œ³œ»œÁœ ǜӜܜ âœîœÿœ#) -D O ]i |‰™¡¦µ¾ÃÓ Øâéý(ž .ž ;žHžNž _žkž sž -žŠžŸž§ž ­ž -¹žÄžÜžïž) Ÿ5Ÿ;Ÿ@ŸIŸZŸ`ŸpŸˆŸŸ¤Ÿ¶Ÿ¾ŸÅŸËŸÚŸ éŸ÷ŸüŸ    7  -F Q Z  p  ~  Š  ”  ž  ª  ¶ à Ì Ö  í  ÷ ¡¡ -¡&¡:¡ N¡ -Z¡e¡u¡ {¡‰¡˜¡ ¡¡®¡À¡Æ¡ -ΡÙ¡é¡ þ¡¢ -¢ *¢7¢F¢ U¢a¢q¢z¢ ‚¢¢™¢ -¨¢³¢ Ä¢ -Ñ¢ Ü¢é¢ú¢ -£££+£;£P£Y£ b£ p£z£ £‹£¡£ ´£ Á£ Ë£Õ£Ú£ë£ð£ ¤¤ -¤!¤ *¤ 7¤ -E¤P¤ V¤ -b¤m¤s¤ |¤ˆ¤¤ -¡¤¬¤Á¤ Ô¤à¤ ç¤ -õ¤¥ ¥ ¥ )¥6¥L¥[¥l¥t¥„¥”¥£¥¬¥»¥ ×¥å¥% 1¦;¦ M¦ Y¦ e¦o¦ w¦ „¦Ž¦”¦›¦«¦ ²¦¾¦ Ô¦ Þ¦ë¦ û¦§§§'§7§?§ -H§ -S§^§p§x§ §8‹§ ħ -ЧÛ§ ï§ û§ ¨¨¨&¨-¨ -<¨G¨ M¨6Z¨ ‘¨¨£¨¬¨ µ¨¨Ó¨Û¨ â¨ð¨©© 2©@©_©-x© ¦©°© ·©Å©Ù©á© ô©ª ªª -+ª6ª<ªEªKª Tª aª nª xª ‚ªª —ª ¥ª³ªºªªȪÚª àªíª «« -« *«4«=«P« T«^« -o« z«„««‘«™« «««±«¸«Ϋß«å«-뫬¬$¬3¬C¬R¬ b¬(o¬˜¬›¬ ¬§¬¯¬ µ¬¬"Ƭé¬ò¬­ ­ ­!­ 5­ -?­ J­ -T­_­ g­ q­~­›­¢­³­ Å­Ï­ Ó­á­ ð­þ­ - ®®'®:<®w®‰®’® -˜® -£®®®µ®?¾®bþ¯a³}³™³ -°³»³Ö´Ø´ê´µµ.µ6µFJµ‘µ/¯µßµúµ ¶$9¶7^¶8–¶/϶/ÿ¶/·5· P·#^· ‚·$£·&È·ï·0þ·Y/¸_‰¸é¸ù¸ ¹ ¹)¹B¹K¹ ]¹g¹l¹~¹¹ —¹ ¡¹ -­¹¸¹À¹ǹй ï¹û¹ º º(º<º Cº MºWºnº'ˆº°ºȺݺ%ýº#»=»B»0Y»&Š»±»]É»'¼=¼![¼}¼ ˜¼9¹¼ó¼ ½32½=f½(¤½µÍ½üƒ¾+€¿2¬¿§ß¿(‡À+°À*ÜÀÁ Á (ÁIÁRÁgÁ„Á •Á%¢ÁÈÁâÁ  Â> YÂcÂ0l Â!§ÂÉ ÎÂÚÂàÂ@é -*ÃR5ÈàòùÃËÃåÃüÃÄ 0ÄI:Ä,„ıĸÄÉÄ+ÜÄÅ"&ÅIÅ*eÅ<ÅÍÅëÅÆÆÆ"Æ;ÆAÆUÆ -qÆ|ÆƤƬƳÆ/¸Æ)èÆÇ -,Ç7ÇVÇkÇ‚Ç!†Ç¨Ç»ÇÊÇ -ÚÇåÇ êÇöÇ ÈÈÈ -.È -9È -DÈ -OÈZÈ lÈ=vÈ´È ÉÈÓÈâÈ èÈöÈýÈ É#É(É?ÉTÉ ZÉhÉ wɅɔɧɼÉØÉíÉÊÊÊ.Ê >ÊKÊTÊ\Ê lÊzÊ‰Ê˜Ê ŸÊ «ÊµÊºÊÚÊëÊóÊ ËË..Ë]Ë&p˗˛ˠˤ˨ˮ˷ËÀËÚËïËÌ ÌÌ %Ì1Ì GÌSÌ[Ì aÌkÌ(‚Ì!«ÌFÍÌÍ,4Í.aÍ(Í;¹Í&õÍ7Î.TÎ(ƒÎ0¬Î$ÝÎ)Ïf,Ï)“Ï*½ÏèÏðÏÐÐ9Ð -@Ð -KÐVÐsÐ,ŠÐ·Ð)ÔÐþÐÑ Ñ%ÑrCÑr¶Ñ()Ò%RÒ"xÒ;›Ò;×Ò#Ó#7Ó&[Ó]‚Ó(àÓ: Ô:DÔ.Ô+®ÔÚÔ,êÔ Õ"%ÕHÕ_Õ5rÕ¨ÕÄÕ,ËÕøÕ Ö³Ö.ÍÖüÖC×8T×K×mÙØGÙ%NÙtلً٤ÙÀÙÇÙ ÎÙÜÙäÙ ìÙøÙ Ú$ÚAÚYÚ -kÚ vÚ€Ú‡ÚÚ ÚµÚÄÚÖÚôÚ Û Û%-Û!SÛuÛÛ Û¶ÛOÊÛÜ +Ü$8Ü]ÜnÜuÜ…Ü£Ü½Ü ÚÜ$äÜ Ý Ý*ÝFÝfÝmÝuÝ }Ý‰Ý Ý -šÝ¥Ý­Ý ÀÝáÝ öÝÞ Þ(#ÞLÞ#aÞ9…Þ@¿Þßß'ß:ßSß \ßfß'oß'—ß¿ßKØß$à,à2àBàXàià$à1¤àÖà+íàá*,á -Wábá2já+á/Éáùá=â0Vâ)‡â'±â3Ùâ* ã58ã.nã3ã*Ñãüã<äMYä§äÇä-æäQåfå…å›å å¯åÃåF×å—æ-¶æäæKúæ FçJRçç¬ç ¿çÍçÝçòç èè.,è[è)rè œè¦è¼èÄèÌèæèéé*éBéRémé -ué €éŽéé±éÆéÝéåéêéðé÷éêê (ê 5êBê Wê aê -kêvê‹ê§êÃê -ÉêÔêèê ë ë&ë8ëTë!që“ë°ëÌëæëìƒì+’ì¾ìÄìÓì6åì í&í8íMíaísí+ˆí´í"Óíöí*î AîOî iîsîƒî™î±î"Äîçîüî ïï1ïBïXï sï€ïï®ïÅïÍï êïöï ðð,.ð[ð -cð -nð yð …ðð £ð¯ð -Àð Ëð ×ðáðøð ñ,ñ2Jñ>}ñ0¼ñ7íñ/%òUòlò~ò‡ò*–ò'Áòéòÿò2ó0Mó~óœó ¼ó!ÝóEÿóEô%Môsô ô›ô ²ô ÓôÝô"åô!õ *õ8õJõ_õpõvõ"|õŸõ ®õÏõ"ßõöö,9ö@fö §ö´öÄö ËöÕöêö: -÷6E÷8|÷@µ÷4ö÷+øIøXøjøpø&ƒø#ªø:Îø¢ ù>¬ù ëùøù ú.3úAbú0¤ú,Õú<ûB?û,‚û8¯û)èû.üIAü*‹ü5¶ü5ìü["ýt~ýHóýD<þ8þ=ºþ1øþ<*ÿ4gÿœÿµÿ»ÿØÿêÿ1ÿÿ?1qyˆ¡1¨*Ú06<J‡–.±3àP6eœ(²Û÷#6<SnŠ¡ ¾Ë Ò)ó!:\ x„ – £9¯é+ï&, S ]j|„AšÜ -÷3FW$h¡© ¸ Æ3Ð (/ AO aoˆ˜Ÿ§¹ÊÒ ãí#ö ;²Bõ    -! ”, Á Ð î  -& -? -P -/j -5š -Ð -ï - ÿ -   6  -P  [ e m ~ • ¦ ½  Ù è ÷  )  / ; M i „  § » $Ú ÿ   ! @ `  e o   Œ  ¢ ¹ Î Ô Ù á ó )!Fh}š±ÃÉà é÷û -!0?C -HS#fŠ+“¿"Õ8øG1]yG× -<Zn”¥ ¹Å× çñø  "#C<g¤ÄÇáõ - ! / =%Io‚”¦»ÏÕ Û çó  #-‚A–ÄX[‚´‡7v¿Q6 -ˆ “¡©°Ðâù + B*cŽ  ÁØè'ÿ#'K\[¸Ï×ßöþ&6IZ k -xƒ@˜ Ùå 2'4ZE Õß -þb  lx|Œ ª¶ Íî%"Ad‘ª® ³Á -ÑÜäëô -ü ,]>œ ¥ ³½ÌGÛB# Pf K· ! -!!!!$!+!2!9!P!g!-z!,¨!-Õ!,"-0",^" ‹" -•" "°"Ã"Ý"÷"##(#/#?# [#g#v#.†#(µ#Þ#õ# $''$O$l$&ƒ$ª$É$ß$!õ$%+5%a% u%%‡% ™%§%(Ã%ì% -& & -& "&.&H&g&…& •&£&²&È&Ú&ã&ë& ô&þ&'C#'5g'' -¥'°'Ê'4Ñ')(0('H(p(…(ž(²(Å(Ú(ë(ÿ( ));)B)R)j) q))˜) ±) ½)Ë)ä) -ý) **)*9* T*b*k*z*‰*˜* *¦*µ*É*æ*û*+P.+ + +›+´+ Í+ Ù+ç+, ,&',N,e,},›,¶,Î,î,ó,û,- --"- :-H-e-ƒ-•--¶-Ò- Ö-ä-ó-.".1.D.S.\.l."…."¨.Ë.ã.ú. / /'/+/=/ E/ -Q/ \/h/ {/‡/ ™/§/W¸/ 00/0H0 -Z0e0$w0Lœ0Bé0 ,1815?1u1y1€1ˆ1 1±1'Â1ê1ý12'"2J2^2.p2Ÿ2º2+Ô233-3=3 -S3^3 g3t3 |3Š3 3 -©3 ´3Â3&×3&þ3&%4L4b4r4„444Ò4á4 ô45 55 )565U5e5 -{5†5š5 £5­5²5Á5Ü5ð5ÿ5&6$=6b6 ‚6Œ6;£6"ß67 -77 37?7 ]7j7s7 ‡7‘7™7¨7°7Ä7Ö7 å7ï7 8 -88!818 -L8 -W8 -b8?m80­8$Þ8$9(9#F9j9 Š9–9 -š9 -¥9°9Ì9Ó9ê9 -ù9::*3:^: m:w:ˆ:¢:²:Å:Ø:ß:ñ: ; ;" ;,C;p;x;’;›;°; Ä;Ð;ç;'þ;&<B< -H< -S<^<s< z<„<™<®< Í<×<î< ö<9= >=K= -`=k=s= z=„= •=#£=$Ç=ì=> >> >-> 3>=>T> ]>i> r> ~> Š>K–>â@Kö@BA UAcA&}A ¤A²AÈAäA BB&B BB9cB5BÓB.éBC,C*ICtCˆCžC³CÐCêC -DD$D =D ^D hDrDƒD‡DšD-ŸDÍDÑDáDêD ñDÿDE &E0E9E -KE -VEaEhEyE -EŒE‘E—E'²EÚEòEûE FF.F>FRFdFyF”F£F#»F ßF ìFøFÿFG!#GEG^G|GG9–GÐGðG8 H DHNHVHpHˆH‘H¢H´HÅH×H!ÞH I -I)IBI YI.cI!’I´IÅI1ÜIJJ -6J+AJmJ‹J0£J!ÔJöJ K K'KBKbK"‚K¥KÁK ßK!L"L >L(JLsL‰L*¨LÓLìL - M&M ;M4GM/|M¬MÊM -çMòMN N;NDN JN -VNaN hN rN -NŠN‘N™N N ¥N³NÂNÑNàN#æN -OO!%O!GO!iO‹O žO¨O¯OµOÌO@ëO$,PQP bP pP‘P ¤P®P -ÀPËPÒP ãPðP -ùP Q Q2QQQWQmQQ™Q7¡Q ÙQ åQ -ñQüQR3R NRZR_R.sR¢R+²R ÞR$ìRS!S 0S">SaSuS#S³SÊS4áST%T9TYThT|T˜T¯TÂTàTðTÿTUU,U>UTUcUuU„U”U¤U³UÂUÑU3çUV.VJVeVvV ŠV!˜VºV2ÍVWW,W2WIW -XW cW -pW{WW¢W ·W ÁW ËW ÕW3áW,XBX -JX UX bXoX‰X’X¥XºXÎXÝX)úX$$Y IYVY1qY£Y ´YÀYÑY;âYZ&Z -jFjNj ejqj…jj £j¯jÆjÝjæjïjkk'6kP^k/¯kHßk -(l3l:lPljl$sl˜lŸl´lÉlÑlîlþlm mm1m -ImTmgm€m’m¡mºm×m ÛmIém3n :n]Fn¤n¹n¾n Än Òn -ßn -ên õn ÿn o=oYo.bo‘o®oÇo -Ïo Úoæoøo p$p=pPpbp -qp|pœp °p½pÆpÎp×pìpqq)qDqMqVq`qq2Òqr&rc>rf¢r* s'4s'\s.„sU³s! t7+tTctP¸tJ uETušuJ·u<v7?vwvœwx#;x_x}x3—x+Ëx%÷xiy-‡y'µyÝy¦ýy*¤zAÏz+{={&W{3~{7²{ ê{" ||.|¹«|Je} °}3Ñ}ù~-ÿ~-cI­ É Ó4à€€4€<€R€h€A€€€á€ -ó€þ€+FHQY bn v„‡– œª½Ì&Ôû ‚‚*‚>‚U‚ q‚‚*…‚°‚ Ђñ‚ƒ/ƒ6ƒ:ƒ%Bƒ$hƒrƒ|„}„”„œ„º„Á„ Ñ„ò„ú„3…7… H…2R………”…§…)¿…é…(† 0†8=† -v††”†¦†¼† Ò† à†&톇3‡&O‡v‡Gˆ‡Ї9ë‡%ˆ`?ˆG ˆèˆ‰%‰<‰7W‰‰¢‰½‰ ܉ý‰Š -Š Š1ŠOŠcŠjŠyŠ‹ŠžŠ´ŠÉŠÑŠáŠêŠ ùŠ ‹ -‹‹"‹ 3‹A‹bP‹[³‹Œ Œ "Œ,Œ$2ŒWŒjŒ#~Œ¢Œ¨Œukiá*KŽ5vŽ>¬Ž@ëŽ@,m#u™ ®¼ÁÖ`Ür=°¿Þåî#‘%‘.‘ 3‘=‘FT‘›‘·‘בõ‘’’2’#9’]’m’’‘’©’¬’:¼’<÷’=4“r“x“~“fš“ ””””(”+”1”7”<”A”F”L”sS”AÇ”9 •MC•‘•¡•¤•'¸• -à•ë•ó• -–"–A–Y–b– g–u– -‘–œ– ¥–¯– ÖÏ–Õ–ä–ü– — -——"—)—=—#R—!v—˜—´—½—× -Ó—Þ— ô—þ—˜ -˜˜(˜1˜B˜H˜ O˜Y˜m˜~˜…˜˜˜¨˜ -°˜ »˜ ǘÔ˜ݘ ï˜ ù˜™™#™+™>™ Q™ _™k™ˆ™ ™›™ª™ ¹™ÙÓ™0晚 +š -9š DšRš[š ušš ‡š•š ¥š ³š¿š -ƚњçšðš÷š ›› -›&›=›M›_› -q›|›š›£›»›ÛÓ›ä›ú›œ%œ EœOœeœwœœšœ­œÃœÖœßœúœ  # --8Lbj…Ž®·Ê -àë óýžžž#ž)ž2ž GžSž Zžfžzž ƒžž”ž™ž¡ž¦ž Ğў ëžøž ŸŸ -0Ÿ;Ÿ?Ÿ QŸ]ŸbŸrŸ wŸŸˆŸ¤Ÿ2¬Ÿߟ     (  2  ? L  -b m  s  - Š ¥ Å 9å  -¡*¡/¡ 8¡ F¡P¡!c¡…¡‹¡Ÿ¡¼¡Ä¡Í¡Ö¡ò¡¢¢ ¢#¢)¢>¢[¢m¢}¢…¢¥¢¸¢ ΢ Ø¢å¢û¢ -£ £ &£0£ E£S£b£q£z£Œ£¢£ ½£ Ç£Ó£ð£ õ£¤¤¤/¤E¤J¤ R¤^¤t¤ -‰¤”¤­¤½¤Ô¤å¤ û¤¥ -¥*¥1¥@¥I¥ -e¥p¥ †¥ -”¥Ÿ¥®¥Ç¥Ð¥ Ø¥â¥÷¥¦ ¦-¦<¦Y¦ -h¦ s¦¦ ¦ -º¦ Ŧ -ϦÚ¦ߦó¦ø¦ §§#§,§ 3§A§U§e§ l§ -z§ …§§ Ÿ§ -©§´§ͧÖ§ô§ ¨¨ ¨ %¨3¨:¨ R¨ ^¨k¨ˆ¨¡¨¸¨Á¨Ò¨ê¨© ©"© B© -N©&Y© €© ¡©®© Å© Ï© Û© -é©ô© ªªªª1ª 7ªCª bªlª~ª ª ª©ªÀªȪÚª ãªíª öª«« « )«D3«x«€«‰« š«¤«¿« Ò«Þ«ç«î«¬¬ ¬:-¬ h¬v¬ ¬ ‹¬•¬§¬ ì ϬÙ¬é¬"ü¬­ ;­\­"{­1ž­ ЭÜ­ä­û­®® (®4® H®R® -c® n®z®ƒ® Œ®˜®¬®½® Æ®Юß®æ®õ®¯ ¯¯¯/¯7¯%G¯ -m¯x¯¯ -¢¯­¯¶¯Ó¯ -ׯâ¯÷¯ - °° °$°*°.° A° M°Z°t°‡°°>•°Ô°Ú° ß° ì° ú° ± ±9!±[±^±c±j±~± ƒ±±.’±Á±ʱޱ㱠ó±ÿ± ² -!² ,² -6²A² I² S² a²‚²Š²Ÿ² -º²ŲͲݲî²þ² -³³1³NI³˜³­³¶³ ¼³ ȳÔ³Ù³}òï© ü–Áý]SCèë$ -džåØ;'r: }­UL B%äD cß -Ëä= U ¿[E}ê>ÇNË3Û‰Oˆ‡³áú ZÝ‹è" xA ŸڜTãúÈ#)ö …Z~ƒíìC =© Œ$È$ úÌåøa -Ê€7ñ d{ls?ÆòKË ?݇„Ä÷kÇùÓBâȸ—°„(k—û¼Ü³ˆ ¿¨  ¦Pˆ–äÄ¥6s”ròúÏÑ} s“"% -—µ?Í;;,9ƒ¦£¤x  Ø* r¦ æ¿1 +kOðJ»¬È)Ϫüþv¥¿ÿ8¡j ìr -€Sw"¾O¯1ä:¯2¼¦­ ‘dŒ 5 )± ×˼®êæÙà¨ås¶ :$‰ökjK ÃjžBj+Þ˜ þºV í— /$L„Gr¡GUEÞD&Ì 5ýÑ$ÈYÝãÓF‰A/9kW; & -º°*Á󣀄 .H‘ŸZÔ—Ö Å|⃫ëo•ÝQ[;%š¸|YÓ - -/iq û ùý€dÊ "Ô|ÿY—1bG8gA§¬þͶì¬Üu´+i3n/NMb¹º”¦l{íJ -ý2“'ÎlÁ•×i¸rBŠgs<½êÛâ¡Ý .% vÿ ªÍ5(6ôb)C6 -P˾Ä>¡úï ª! p_–­àéPX» ‹¾Mç4 -ǧÊ4ÖS“yzÜÔ›EmÝKpp¡gêZ ³ÓèE^Ó#“Ï2~ÁÊ.„Ct è»J»# ÅæMÆzÕ² ¡¡`¥bÚQžÞ \3N¼ ~jÒo † ܹÕ&q«W3 \©˜< c…§®ç¼Éä5×1ð- ŽAƒè,5 -Òñ«t™íq`©éâñ*ßØöì +½ä? ŽIß_ vè‡:Ž -'  -wë™æùÜy É^ · ÷*™øØ: gö= ¬ßfb«áIN]6 -§ ý<„ú]U²Ú Ä Š£™ ‹î y¾O%ÊôÐ;é éA«þú7ž/g3O¢ !# 0 -È µÀîÇøÏ å•q h Ö7w D¾æ矀D¿õ ÄS #後˜æ ÓÔÕU×Ø -‚žž ~´Ž eš -… ®øD> 4cMéõóó ”L†óÝoe7JW›6h"K_œ ©È¸ cœÚ @‚ -‚ù  ©¨Îuü*N ZYéΨ” æ»H:ù!KG -{ _]ÀJŽÙé|‹ ×+ îçtßÙ -Š…Á|ßÌè“, -¸va8EáK‘ Õ2xgƒ¿šÌáy_ yº0(iìµÙ²¤². öÙc*c¢Ô "×Þ®šVò|èXmié Ÿ u§¹=ºÂ Ù´ “࣠E÷…1 ›! -'Ä­IJç]2 XVÌ ¼q¿Ä¬1<á ?5 -)ĆFÁLÚã Af¶ x³Øð'#)@5‹¥Ñt†€ - £Š NÊú uÏp@ -^)ÛžãјÏ[awª R2@þ¢²êqÇcQé -C2TÇÍ<†[ÞD¯© uso÷BlßäNf]ü–!ö¾\ì… ç z&Ç 2¯œðœõˆè -›ÒÆÖ x8?À ŽËM 8£HLb!MÅ¿ Å dì -TC¶òº   -°¾ ŸÞñè P D,¨Ü › 8rúfÒïм  ÙëÉÀ. -ãn yÇSKÆt “ Ú±&`Ó ¬ -)H š§A«õãÜüåçä”6† -¥=‡û´Ãg7 °N) -\‘î0¤ - oä š• Mnví8 E¶8â] Œ±+R_%î’í xÓn0 4Õ øÜËÑ nê$¹ -…&£]™°Ü" -j>2 -lôŠ‚±²³hÎãu·©V%T[µ % Á fÍ1îºÆ1Ô9–ÖÃ*ï›UØx<4ˆÑ®÷I  già¥ÀaÂàF8Ú0/L ÷Iê”Û MÆ¿_.H«Ê°>Gî Å'ïãð™R?e‰Š šü¹ A´PÇ$1þ´Q¹.a ½l2WÈ® -‰° Rªÿň) _Ò}Ðà <jØŒ‘ dH4¤VvÛhò\Ì€˜^¸ƒWshB  ‚×·b ‡'Fõ¤Z„„¡ TJ Œ’' -ÄC å ™™K>9â   áçIøˆÍ,½r á’¹ek Þ R3× €äýÙ ²nÚÉ -Y {ƪƒ‰æ¢Œ”prÓ-Õüž¨ë.©öë Ûë¤ |jÊ -¯  -QmÞ‡Àw â«GûQ° /óv†?‡hûŒÒ§ ±<õ=;<âSÿÿ=#S„f - õð ”ÏΖ ~ , `õþ ?QB‹­t@Hv é7JŽ'm[ Ÿ@ÿ³Í`k3q¶Ñ]^Q " -ôκÌÛÕD/ - Åæô¦0–Ÿ0 -79báhŒ*‘T½ 9DúŠ4 »XÙ§åßE\Ò 9 ø RùÿðJ6 ¤¹½¸ø *UÃ}‹~:oW¹—¥¬c ~Ëñ®x:8"7t…tÉ 'fVÓ—[X¾9Ø Fz|ˆß € ¦ÌíFê E ª‚ÇõÐ £Æ=¼ý qæ‰ ß}!}B„>[¦Y-ô\ -±—×óø•¨÷³ ˜~ ûù–&À OC’ Ew\ýrWP‹d O VCÁ6Fs¿Ž…à q_®íóYA~o ðÎ.ÛÉ=*gbL”¥ þ¡±$vµ@Ú·?ôÏôŽ²öiˆöPqÖm[±‰† ­f -ÅQîŸ^F Iÿe|%dðõwx -(%‡`ò øH)ƒ f7Àd˜­Ú‡ hM&ô( -ɻ٠y¾Ñ‹IU#•¯U›Ï-i ‚$ºp+š{P Öa 6z` +é³´Q¢÷ªV@sÈ ý…´ 5ZðB •l0´* -ê³ô VïËîÏHÁyü››R5çdâGœO˜#! ÍFai’¯ÖÆ .]\ k·%ü †¥‘þ¬ ½;5 -£jWÉÉn¬¢XÄØ-ìY ( {7ÛTÿ“NîmûËóû>¤# +   " 0 @ D I O V _ o    ‹ —  § ± ¸ À Ñ á ñ  ÷   % -  > L a v Ž ¦ ¹ Í yã  ] $i Ž  – ¢ 0± â  é õ   !0Rg€—³ÂÙ â î +ú 1 ? L Y gq† ž« ´Â×ß ú%46k +r +} ˆ ”ž ¯» +Í Øäí ÿ 20L=}1»=í/+[ mz ƒ+ »Üì(ÿ(FWgwBˆ Ë×ò .JQYu “¡° ÂÏÕÚ +ì÷ & 8F:^™¨¸ ¿Ëß)ô/#N2r+¥Ñïþ  ""E'e“4! VcuŽ'­Õô-Lgz'’ºÍíA )N.x§-Â'ð #9]pv…–%Ÿ2Åø þ #% I$j 1œÎÖÛ1ì6>'u±Ñç ú +@Uj€…Œ£ÃÔë + !-)6`"f‰‘±¶ÅÕÝ6ï&  +: E d  w  …  ’   ¹ Ë Ô ä  +ó "þ  !!-!?!D! +S! ^! +l!w!!“!š!Ÿ!¨! ·!Ä! Ì! Ù!ã!ì!"""Ÿ)" É" ×" ã" ï"gù"a#p# ‚## # +¹#Ä#(Ú#)$-$ G$T$Z$l$ s$$ +’$ $§$¯$¿$Ó$ã$õ$ú$% +% (%6%I%O% T%`%u%‹%”%¦% ¶%Ä%à% ð%ú%&-& 2& <&I& X&b&h&z&&”&™&ž& ¯& »&É&Ú& ó&ÿ& ' +')'ý0' .( 8(F(J( +\( g( s((„( Š(”(-¥(Ó(Û(ð()2&)/Y)B‰)=Ì) + +* *!* <*I* [*i*x* +‡*’* £* °*º* ¾* Ë*Ø*ß*$ÿ*3$+ X+y+ }+‹+š+ª+»+ À+Í+ Ð+Ü+÷+ +,,/,@,T,Z, +`, k,x,ˆ,˜,¡, ª,n·,‡&-Y®-v.ƒ.\/C`/¤/ ­/¹/À/Æ/Þ/î/ +þ/ 0 0"010"K0 n0z0’0 ¢0®0Ç0 â0Kð0<1P1Y1^1r1z11 ž1 ¨1 ¶1Ã1Ò1 Ú1ä16õ1 ,262 N2[2 n2(2*¸2 ã2í2 3]3 p3|3€33 +ª3 µ3Â3Ù3ð3 ÷34 +44%494 J4X4m4q4v4 4Œ4•44 ¤4®4 +¶4 +Á4/Ì4`ü4]5 b5l5 r5 ~5Gˆ5BÐ5N6Ib6¬6²6¸6À6È6Ð6Ø6à6è6÷6 7%7$?7%d7$Š7%¯7$Õ7ú78 8808A8T8f8k8t8 {8 …88–8 ¦8´8Ð8ì8 +û899 :9H9Z9o9„9 ”9¢9»9×9î9 ÿ9 : +: :':=:]: +o: z: +†: ‘::´:Ë: ã: ï:ý: ;;*;3;;; D;N; ];<j;%§; Í; +×;â;ø;'ÿ; '<H<X<p<< < <«< ¾<Ì<Ü<í<õ<= ==,= 3=@=X= +p= {=ˆ= =¸= +À= Ë= Õ=â= û= > > > (>4>;> @>J>Y> +n>y>Œ>0£> Ô> Þ>ë>? +? &?3?K? c?+q? ?«?Á? +Ü?ç?ü?@@$@ ,@ :@G@ ]@g@‚@ž@°@ ·@Ã@Ö@ Û@ å@ï@ AAA/A>AGAVAnA‰A¤A´AÃA ÔA ÞAëAðAÿA B +BB'B6B ?B MB WBIdB ®B¸BÇBØBàB +éBôB: C0GC +xCƒC.‰C¸C½CÄCÌCÛCìC ýCD1DAD TDuD†D*˜DÃDáDýDE 9ECELE ]EgE pE}E …E’E £E­E ¶EÃEÒEñEF/FCF LFXF%gFF•F +¥F°F ·FÁF ÊFÔFòFG G#G7G@GIG NGXG nG zG†G–G#´GØGõGþG7HJHbH jHwH ŽHšH ±H¾HÇH ÚHäH ëHùHI I I)I1I AI NIXI\IlI ƒI I —I2¡IÔIíIJ#J6JRJ nJxJ |J +†J‘J«J²JÃJÌJ ÔJ +áJìJK$K9K @KLK aK mKyKˆK +K ›K ©K +¶KÁKßK÷KýKL +L $L1L9LIL#YL}L–L œL +¦L±LÁL ÉLÓL âLðLM MM +"M'-M UM_M +tMM…M ŒM –M  MªMÊMçM÷MþM N NN%N .NXHX[XpX‰XšX®XÅXØXêXòXY Y"4YWYnY +}Y#ˆY ¬Y1¸Y,êYZ1Z +KZVZ lZzZ—ZžZ ¤Z +²Z½ZÄZ ËZ +×ZâZèZðZùZ[ [ [ #[-[5[ N[Z[c[[›[·[ Ç[ Ñ[Û[á[ó[4\!=\_\o\~\ “\ ¡\ «\¸\À\Æ\ +Ö\á\ ê\ô\ +ú\]$])];]K]\];d]  ] ¬] +¸]Ã]Ù]ð] ^^ ^#'^ +K^V^ r^^™^ ¨^ +²^½^Õ^ ç^õ^ +__*4_ __k_|_ ˜_ ¤_²_Å_ Ö_â_ û_ ` ` ` ,`8`H` [`g` v` ‚` ` œ` ¨` ´`À`*Ö` aa#a6a Fa +Ra]apa/€a°aÊaÙaßa îa øa b bb ,b:bJbSb\b eb.ob'žbÆbÍb Öb âbîbc cc#c4cDc \c}cc¦c¿cÛc ïc üc +d+dDdJd`d +gd rdd‘d¢d ´dÀdÔdðde e e +e +7eBeSele†e#›e¿eØeíeff00faf]€f]Þffi„i —i ¤i ±i¾iÑi/èi*jCCj‡j¥j+Áj!íjk'*kRk[k ukƒk”k kªk ¹kÇkÐk çkók ûk lll%l9l Kl!Wl#yll¢l²lÐlálôl +mm &m +0m;m LmZmrm‡m–m +²m½m +ÄmÏmëm òmþmn nn +&n1n 6n@nVn'fnŽn”nY›nõnûn +oo!o0o?oWooo +„oo ¦o °o½oÃoÛoðoppp %p1p@p Ypfp/‚p-²p/àp q q$qéz<({7e{ú{œ˜|5}!Q}s}’}.±})à}% +~Q0~)‚~&¬~Ó~„ð~/u3¥&Ù€ €0?€4p€¥€½€p×€~H=Ç%‚,+‚ÍX‚!&ƒHƒJ_ƒªƒ Ãσ)߃ + „„#„ („6„ F„S„-e„“„¤„«„´„½„ Ï„Ù„Ü„ +å„ ð„ ú„… …… …&…,… 5…?… D…N…i… {…‡… ž… ¬…¶… Ç…Ó…Ø…÷…† 0†Q†j†p†t†|† –†o·†{'‡£‡¹‡¾‡͇ Ò‡Þ‡ù‡ÿ‡%ˆ,ˆ;ˆ/Cˆsˆ |ˆ ‰ˆ–ˆ²ˆ&ˈòˆûˆ‰!‰ +1‰<‰K‰ Z‰ f‰r‰‰£‰³‰ˉFë‰2Š,DŠqŠQ‚Š:ÔŠ‹$‹6‹J‹*\‹ ‡‹•‹®‹É‹â‹é‹ï‹ÿ‹Œ$Œ5Œ<ŒKŒ]ŒlŒ |ŒˆŒŒ Œ©Œ +¸Œ ÃŒ ÍŒ׌ ÝŒ ëŒ øŒRPW¨°¹Â!ÈêþŽ(Ž­0ŽjÞŽAI$‹=°.î--Ky~ +– ¡« ±»UÀn‘…‘•‘®‘´‘½‘,Í‘ú‘’’’8 ’Y’s’‹’£’¼’ Á’Ï’Ô’é’ø’“ “$“ '“&3“%Z“%€“¦“¬“²“ ÓГÕ“Ú“é“ì“ò“ø“ý“” ””S”Cn”:²”Fí”4•C•F•V•m•r•z•–•Ÿ• ½•É•Ñ•Ö•å• õ• ÿ• –– %–1–8–J–^–f– o–{–ƒ– Œ–š–«–»–Ë– â– ì–ø– + +— — #—-— 4—B—K—R— +Y—d—j—q— w—…—˜— ¡—®—·—¼— Å— Ñ—Þ— å— ó— ý— + +˜˜˜/˜6˜E˜ X˜ e˜o˜†˜ +Œ˜—˜ ¦˜´˜½˜͘(ݘ™™ ™ *™8™A™Z™c™ k™x™ +‡™ ’™ž™ ¤™®™À™É™Ï™ Þ™ê™ +ò™ý™ š$š5š +DšOš_šhšzš +€š‹š”š¤š´šÚ Ùš ãšïšöšýš ›%›7›L›U›j› |›†› Œ› +–› ¡›¯››Ê›Ü›å›œ œ œ (œ2œ :œ DœRœYœ`œhœnœ tœ€œ‰œ œ›œ¬œ´œ½œÃœÈœÐœÖœ +ñœ üœ + )6FNSbkp€ …–ª(² Û èõû žž ž +,ž7žLžTž Zž +fžqž‰žœž)¸žâžèžížöžŸ ŸŸ5Ÿ<ŸQŸcŸkŸrŸxŸ‡Ÿ –Ÿ¤Ÿ©Ÿ°Ÿ¶ŸÅŸÔŸóŸ +     ,  :  F  P  Z  f  r   ˆ ’  ©  ³ ¿ Ï  +× â ö  +¡ +¡!¡1¡ 7¡E¡T¡ ]¡j¡|¡‚¡ +Š¡•¡¥¡ º¡Ä¡ +Û¡ æ¡ó¡¢ ¢¢-¢6¢ >¢L¢U¢ +d¢o¢ €¢ +¢ ˜¢¥¢¶¢ +¿¢Ê¢Ó¢ç¢÷¢ ££ £ ,£6£ =£G£]£ p£ }£ ‡£‘£–£§£¬£ ½£Ê£ +ңݣ æ£ ó£ +¤ ¤ ¤ +¤)¤/¤ 8¤D¤L¤ +]¤h¤}¤ ¤œ¤ £¤ +±¤¼¤Ť Ù¤ å¤ò¤¥¥(¥0¥@¥P¥_¥h¥w¥ “¥¡¥%ª¥Ð¥ í¥÷¥ ¦ ¦ !¦+¦ 3¦ @¦J¦P¦W¦`¦p¦ w¦ƒ¦ ™¦ £¦°¦ À¦̦Ô¦ã¦ì¦ü¦§ + § +§#§5§=§ F§8P§ ‰§ +•§ § ´§ À§ ΧÚ§ã§ë§ò§ +¨ ¨ ¨6¨ V¨b¨h¨q¨ z¨‡¨˜¨ ¨ §¨µ¨Ǩᨠ÷¨©$©-=© k©u© |©Š©ž©¦© ¹©Å© Õ©ß© +ð©û©ª +ªª ª &ª 3ª =ª GªUª \ª jªxªª‡ªªŸª ¥ª²ª ɪÓª +äª ïªùª«« «#« +4« ?«I«R«V«^« b«p«v«}«“«¤«ª«-°«Þ«ä«é«ø«¬¬ '¬(4¬]¬`¬e¬l¬t¬ z¬‡¬"‹¬®¬·¬Ȭ ͬ Ú¬æ¬ ú¬ +­ ­ +­$­ ,­ 6­C­`­g­x­ Š­”­ ˜­¦­ µ­í +Ò­Ý­ì­:®<®N®W® +]® +h®s®z®lƒ®bð¯S³o³‹³ +¢³­³È´Ê´Ü´ò´µ µ(µF<µƒµ/¡µѵìµ +¶$+¶7P¶8ˆ¶/Á¶/ñ¶!·%· @·#N· r·$“·&¸·ß·0î·Y¸_y¸Ù¸é¸ ¹¹¹2¹;¹ M¹W¹\¹n¹€¹ ‡¹ ‘¹ +¹¨¹°¹·¹À¹ ß¹ë¹ ººº,º 3º =ºGº^º'xº º¸ºͺ%íº»-»2»0I»&z»¡»\»»¼-¼!K¼m¼ˆ¼9¨¼â¼ ÿ¼3 ½=T½%’½¸½ö{¾ r¿1“¿sÅ¿'9À+aÀ*À¸À ËÀ ÙÀúÀÁÁ 5ÁVÁ:sÁ®ÁÈÁ æÁ óÁ> ?ÂIÂ0R ƒÂ ® ³Â¿ÂÅÂ@Π+ÃRÃmÅ×ÞðÃÊÃáÃøà ÄIÄ,iÄ–ÄIJÄ+ÅÄ#ñÄÅ0Å<LʼnŧžÅÐÅ×ÅÞÅ÷ÅýÅÆ +.Æ9ÆMÆaÆiÆpÆ/uÆ)¥ÆÏÆ +éÆôÆÇ(Ç?Ç!CÇeÇxÇ‡Ç +—Ç¢Ç §Ç³Ç ÂÇÐÇÖÇ +ëÇ +öÇ +È + ÈÈ )È=3ÈqÈ ‚ÈŒÈ›È ¡È¯È¶È ÏÈÜÈáÈøÈ É É!É 0É>ÉMÉbÉwɑɤɷÉÍÉÒÉéÉùÉ ÊÊÊ .Ê<ÊKÊZÊ aÊmÊsÊyÊ&ʦʷÊÆÊ ÚÊæÊ.Ë0Ë&CËjËnËsËwË{ËËŠË“Ë­ËÂËÖËßËðË øËÌ Ì&Ì.Ì 4Ì>ÌWÌ(nÌ!—ÌF¹ÌÍ, Í.MÍ(|Í;¥Í&áÍ7Î.@Î(oÎ0˜Î$ÉÎ)îÎfÏ)Ï*©ÏÔÏéÏýÏÐ2Ð +9Ð +DÐ OÐ\Ð,sРÐ)½ÐçÐïÐöÐÑr,ÑrŸÑ(Ò%;Ò"aÒ;„Ò;ÀÒ#üÒ# Ó&DÓ]kÓ(ÉÓ:òÓ:-Ô.hÔ+—ÔÃÔ,ÓÔ Õ"Õ1ÕHÕ5[Õ‘Õ­Õ,´ÕáÕòÕ³Ö.¶ÖåÖCùÖ8=×Sv×mÊØ8Ù%?ÙeÙuÙ|ٕٱٸ٠¿ÙÍÙÕÙ ÝÙéÙ ÚÚ2ÚJÚ +\ÚgÚ nÚxÚÚ…Ú˜Ú­ÚÂÚÚÚøÚÛ #Û!1Û!SÛuÛÛ Û¶ÛOÊÛÜ +Ü$8Ü]ÜnÜuÜ…Ü£Ü½Ü ÚÜ$äÜ Ý Ý*ÝFÝfÝmÝuÝ }Ý‰Ý Ý +šÝ¥Ý­Ý ÀÝáÝ öÝÞ Þ(#ÞLÞ#aÞ9…Þ@¿Þßß'ß:ßSß \ßfß'oß'—ß¿ß>Ñßààà.àDàUà$kà1àÂà+Ùàá +á#á2+á+^á/Šáºá=Ùá0â)Hâ'râ3šâ*Îâ5ùâ./ã3^ã*’ã½ã<ÝãMähäˆä-§äQÕä'åFå\åaåpå„åF˜å—ßå.wæ¦æK¼æ ççJ*çuç„ç —ç¥çµçÊçãçóç.è3è)Jè tè~è”èœè¤è¾èÛèìèéé*éEéMé iéwé†éšé¯éÆéÎéÓéÙéàéééÿé ê ê+ê @ê Jê +Tê_êtêê¬ê +²ê½êÑê éêõêë!ë=ë!Zë|ë™ëµëÏëêëlì+{ì§ì­ì¼ì6Îì íí!í6íJí\í+qíí"¼íßí*ÿí *î8î Rî\îmîƒî›î"¯îÒî çî óîïï%ï;ï Vïcïkï€ï—ïŸï ¼ïÈï Þïèï,ð-ð +5ð +@ð Kð Wðað uðð +’ð ð ©ð³ðÊð áð,ïð2ñ>Oñ0Žñ7¿ñ/÷ñ'ò>òPòYò*hò'“ò»òÑò2ìò0óPónó Žó!¯óEÑóô%ôEô aô#mô ‘ô ²ô¼ô"Äô!çô õõ)õ>õOõUõ"[õ~õ õ®õ"¾õáõúõ,ö@Eö †ö“ö£ö¬ö¿öÔöMôö6B÷8y÷@²÷4ó÷(øFøUøgø,vø&£ø#Êø:îø¢)ù>Ìù úú 2ú.SúA‚ú0Äú,õú<"ûB_û,¢û)Ïû.ùûI(ü*rü5ü5Óü` ýHjýD³ý8øý=1þ1oþ<¡þ4Þþÿ,ÿ2ÿOÿaÿ1vÿ?¨ÿèÿðÿÿÿ1*Q0|­<Áþ .(3WP‹6Ü()Rn‹š­³Êå 5B I)j”!±Ó ïû  9&`+f ’&Ÿ Æ ÐÝï÷A O +ju‘©±Â$Óø  # 13; o}“š ¬º ÌÚóû +$5= NX#a …¦²½p‚ ’ +œ”§< K i | &“ º Ë /å 5 +K +j + z +„ +“ +š +­ + +à + Î +Ø +à +ñ +  0 ? V  f t … ¥  « · É å    1 $P u  Š !” ¶ Ö  Û å  õ    / D J O W i … Ÿ !¼ Þ ó '9?V _mq +Œ—¦µ¹ +¾É#Ü+ 5"K8nG§]ïGM •£²Ðä÷ + /;M ]gn~ Ž ˜#¹<Ý:=Wk€“ — ¥ ³&¿æù 2FL _ kw–¨ °º‚ΖQXè‚A‡ÄvLQÃ(>FMm–¨·È ß*+ =^u'…#­Ñ\á>U]e|„¬¼Ïà ñ +þ @ _k ‡”2­4àE [e +„b òþ 0< StŽ•¥«´"Ðó 9= BP +`kszƒ +‹ –, ]Í+ 4 BL[GjB²PõKF ’ ™ ž ¥ ¬ ³ º Á È ß ö - !,:!-g!,•!-Â!,ð! " +'" 2"@"Q"k"…"œ"£"¶"½"Í" é"õ"#.#(C#l#ƒ##”#'¸#à#ý#&$;$Z$p$!†$¨$+Æ$ò$ %%% *%8%(T%}% +‘% œ% +¨% ³%¿%Ù%ø%& &&4&C&Y&k&t&|& …&&¡&@´&5õ&+' +3'>'X'4_')”'¾''Ü' (()(=(P(e(v(Š( (!§(É(Ð(à(ø( ÿ( )&) ?) K)Y)r) +‹) –)¤)·)%Ç) í)û)**"*1*9*?*N*b**•*­*PÈ* + '+5+N+ g+ s++š+ ³+&Á+è+ÿ+,5,P,h,ˆ,,•,, +±,¼, Ô,â,ÿ,-/-6-M-g- k-y-ˆ-¦-·-Æ-Ù-è-ñ-."."=.`.x.. ¥. ¯.¼.À.Ò. Ú. +æ. ñ.ý. // ./5 G5Q5V5e5€5”5£5&º5$á56 &606;G6"ƒ6¦6 ®6»6 ×6ã6 777 +757=7L7T7h7z7 ‰7“7 ©7 +¶7Á7Å7Õ7 +ð7 +û7 +8?80Q8$‚8$§8Ì8#ê89 .9:9 +>9 +I9T9p9w9Ž9 +9¨9¾9*×9:(: ::D:U:o::’:¥:¬:½: Ñ: ß:"ë:,;;;C;];f;{; ;›;²;'É;ñ; < +< +<)<>< E<O<d<y< ˜<¢<¹< Á<9Ï< == ++=6=>= E=O= `=#n=$’=·=Ì=Ó=ã= è=õ= û=>> %>1> :> F> R>K^>ª@K¾@ +A A+A&EA lAzAA¬A ËA×AîA +B9+B5eB›B.±BàBôB*Cp +MpXpxp Œp™p¢pªp³pÈpäpìpq q)q2q`Mq2®qáq&ñqcrf|r*ãr's'6s.^sUs!ãs7tT=tP’tJãtE.utuJ‘u<Üu7vQvœYwöw#x9xWx3qx+¥x%Ñxi÷x-ay'y·y¦×y*~zA©z+ëz{&1{3X{7Œ{ Ä{"å{||¹…|J?} Š}3«}ùß}-Ù~c#‡ £ ­4ºïø €€)€2€G€@^€Ÿ€½€ +΀Ù€ó€ (*3; DP Xfix ~ŒŸ®&¶Ý ïû ‚ ‚7‚ S‚a‚*g‚’‚ ²‚ӂ󂃃ƒ%!ƒ$Gƒrlƒ|߃\„s„{„™„ „±„É„Ñ„3Ú„… …2)…\…k…~…)’…¼…(Ú… †8† +I†T†g†y†† ¥† ³†&À†ç†‡&"‡I‡G[‡£‡9¾‡ø‡`ˆGsˆ»ˆÛˆøˆ‰7*‰b‰u‰‰ ¯‰Љ׉݉ó‰'Š9ŠMŠTŠcŠuŠˆŠžŠ³Š»ŠËŠÔŠ ㊠ðŠúŠ‹.‹ ?‹M‹b\‹[¿‹Œ $Œ .Œ8Œ$>ŒcŒvŒ#ŠŒ®Œ´Œuwií*WŽ5‚Ž>¸Ž@÷Ž@8y#¥ ºÈßô`úr[ÎÝü‘ ‘#‘C‘L‘ Q‘[‘Fr‘¹‘Õ‘õ‘’2’8’P’#W’{’‹’Ÿ’¯’Ç’Ê’:Ú’<“=R““–“œ“ ¸“Å“Ê“Ï“ß“â“è“î“ó“ø“ý“”s +”A~”9À”Mú”H•X•[•'o• +—•¢•ª• +Ê•"Õ•ø•–– –,– +H–S– \–f– z–†–Œ–›–³– º– +Æ–Ñ–Ù–à–ô–# —!1—S—o—x—~— +Ž—™— ®—¸—¿— +Ñ—Ü—å—î—ÿ—˜ ˜˜*˜A˜H˜[˜k˜ +s˜ ~˜ Š˜—˜ ˜²˜ ¹˜Ø˘Û˜ï˜÷˜ +™ #™ 1™=™S™ Z™f™†™ •™Ÿ™¯™0™ó™ š +š !š/š8š Rš\š dšrš ‚š šœš +£š®šÄšÍšÔš äš ðš úš››.›@› +R›]›{›„›œ›¤›´›Å›Û›ñ›œ &œ0œAœSœ[œuœˆœžœ±œºœ Õœ áœëœ óœýœ(<D[d„—© +¿Ê Ò!Üþž žžž!ž 6žBž IžUžiž rž|žƒžˆžž•ž ³žÀž Úžçž ûž Ÿ +Ÿ*Ÿ.Ÿ @ŸLŸQŸaŸfŸ}Ÿ„Ÿ Ÿ2¨ŸÛŸòŸ      ,  6  C P  +f q  w  +ƒ Ž © É 9é  +#¡.¡3¡ <¡ J¡T¡!g¡‰¡¡¡¡¾¡Æ¡Ï¡Ø¡ô¡¢¢ ¢%¢+¢@¢_¢|¢Ž¢ž¢¦¢Æ¢Ù¢ ï¢ ù¢££+£ :£ G£Q£ f£t£ƒ£’£›£­£ã Þ£ +è£ó£¤ ¤!¤0¤9¤M¤c¤h¤ p¤|¤’¤ +§¤²¤ˤÛ¤ò¤¥ ¥%¥ +<¥G¥N¥]¥f¥ +‚¥¥ £¥ +±¥¼¥Ë¥â¥ë¥ ó¥ý¥¦!¦ ;¦H¦W¦t¦ +ƒ¦ Ž¦œ¦»¦ +Õ¦ ঠ+ê¦õ¦ú¦§§$§6§>§G§ N§\§p§€§ ‡§ +•§  §ª§ º§ +ħϧè§ñ§¨ ¨,¨ 3¨?¨R¨Y¨ q¨ }¨Š¨§¨À¨רà¨ñ¨ © ©(©A© a© +m©&x© Ÿ© À©Í© ä© î© ú© +ªª %ª/ª5ª <ª Hªiª oª{ª šª¤ª¶ª Ȫ Õªáªøª«« «%« .«;«O« W« a«Dk«°«¸«Á« Ò«!Ü«þ« +¬¬$¬+¬>¬M¬ ]¬:j¬ ¥¬³¬ ¼¬ ȬÒ¬ä¬ ü¬ ­­"­"5­X­ t­•­"´­1×­ ®®®!4®V®^® q®}® ‘®›® +¬® ·®îÌ® Õ®á®õ®¯ !¯+¯:¯A¯S¯b¯ k¯u¯{¯¯•¯%¥¯ +˯Ö¯ë¯ +° °°1° +5°@°U° +j°u°~°‚°ˆ°Œ° Ÿ° «°¸°Ò°å°î°>ó°2±8± =± J± X± e± s±9±¹±¼±Á±ȱܱ á±í±.ð±²(²<²A² Q²]² u² +² Š² +”²Ÿ² §² ±² ¿²à²è²ý² +³#³+³;³L³\³ +m³x³³N§³ö³ ´´ ´ &´2´7´}óñ© ý–Âÿ_SDèì( +fçØ;(r; ®VM C%äG cß +Íå> X Á\E}ì?ÉOË4ÛŠQˆ‡³áú [Ý‹é% xD ßÚUäúÊ#)ú †\ƒíìD +>­ $È' üÌçù8aˆ +Éõ d|ms?ÈóLÏ @݈…Æ÷mÉùJœÕBäøº™¯„)l™ü½Ü´‹ Á©  ¨QŠ—åŤ6t“sôüÏÓ€ s•#) +˜´?Î<=,9„¨¢¦{  Ú- sª è¿4 ,lOòJ¼®È+Ѫþ w¤¿‘: m îr +Uy#ÀP°1ä;°3¼¥­ “eƒ 6 *µ Ùʾ°êèÛá§åuº :&‹÷kkN ÄlŸBk,Þ› ÿ»¿îš 1%L„Gr£HUFàE(Ð 5ýÑ%Ê[ÝåÔG‰B/9lX> & +º°+Ãõ£‡ 0H“ ZÔ™× +Ç|⃪ìo–ßR\<'œ¹~YÒ +0it ÿ ûý€fÌ"Õ}Z˜2cG8iA¨­ÿÍ¶í® Þwµ,j3p/POd¸º“¦l{ïK +ÿ2”'ÐlÀ•Ùi¸t!BŒgt<¼êÛã£á ¡ .% x +©Ï7(8öb)D7 +RÌ¿Å?¡ +úó «$ q_–¯àéQX¿ ‹ÀNé8 +ǦÊ5ÖT“z|ÞÖEoÞLpq¢gìZ¡³ÕêF`Ó%’Ñ4€ÂÌ.†Dt é¼J½& ÇæNÇ{Ô¶  ¢a¦cÛSžâ ^3OÀ ~jÑo ‡„ ݹÖ(à r¬W6 \©—? d‡©­è¼Éæ6Ù2ñ0 B„ê-9 +Òó¬v›írbªëâó*áÙøð +½æB ŽIá_ wèˆ< +*  +xë›æûÜ| Ëa » ù+˜úÚ= iö@ ­ßgb­âKO^: +« þ>„û]U²Þ È Š¢œ Œð¡{¾O%ÊöÒ;ê ëB«þûT 8 0g5P¦ ##4 +Ê ¶ÁðÈ!øÓ æ—q + k Ö8w EÀç矂D¿ù ÆV ï後šê ÓÔÕW×Ø +ƒŸ¢ ~ ³‘ f›" +… ’¯ùEA 5dMêõõ÷ –L‡óßpf7KWœ7j$L`Ÿ ¨È¼ džÚ A‚ +ƒú" ª¨Ðwþ+Q \[éЩ— æºIú"KH +ž} +_^ÂKŽÛé}Ž ×. ïçußÝ +Š†Á|áÍè” +0 +·3vb9FáL“ ×2yhƒ¾œÎázb yŽ¼1*jî¶Ù²£³1 øÛc,e¢Ø "×ß ®šXô}èZmkí £ u¨º>%¡ظ •â§ G÷…3¢œ% +)Ä®JKè]5 XW΂ »qÀÆ­2=ãŸ@5! +*‘ĆFÃMÜç Bgµ xµ×ð(#+@6§Ñu†‚ + ¤ NËþ uÏrA +_)ÜäÓ—Î]cw® T2Bþ¡´ësÉcRé  E3UÆÎ=œ‡[ßD±ª!vtq÷CnàäOf_ý˜#ö½]îˆ ë {'Ë 4®žðœö‰ê +œÔÆÚ z9@Ä ËP 8¤IMd"MÅÃ É dì TD¶ò¾  +± ¡àñ€ñì P F.§½ ž 8süfÓðÒ½  ÚëÈÀ2 +åq {ÇTMÆw – ܲ&a× ¬ +*K ¨Bª÷ãÜþåçä”6‡ +¥>ˆü´Ãh: ¯N- + ^‘î1¥ + +!pè ™•Nowî;  F·9ä` Œ±+Ta'î”ñ zÕn2# 4Ù øÞËÕ pê$¹ +†&£^™²Ü& +k?6 +mõ‹ƒ°±²iÍãv¸¨V&U[µ ( Å fÌ1î»Ç3Õ:—ØÅ*ïšVÙy=5ˆÑ¯÷‘L   hjà¦ÀcÂ! á G:Ú01O øIì”ß NÈÀ`0H«Ê°?Gò Ä(ñãð™R@f‹Š ›üÉC³QÇ&2¶Q¹.a ¿l3Xɯ Š±"S«Æ», `Ô~ÐÇ =‘jØŽ” eH6¤VxÚjò]Ì™`¹„YuhC¤ ƒØ·c ˆ(H÷¤[……¥ VM Ž’+ +ÄF é ˜›K>9æ  ¢ãçÛø‰Í-¾u á”»em“ à R4Û €æýÚ ´oÜÉ +\ |ÈŽ©„‰è£Œ–qsÓ/ÕüŸª‚ë/«öï Ýí¨ }kÎ ³  +RmÞ‡Âz â¬IýR´ /õvˆA‰µûÓ§!²<õ=<<äSÿ =$T…g õô •ÐÏ™ Ç +/ aö +?SCŒ¬v@Iy Å«Œ9K'o^ ¡AµÏ`k3q·Ò]^‰$ ôμÎÛ×D3 +Åçõ§2˜ 0 9:bãh+TÁ ;EûŒ7 ½YÙ©æàF]Ö < ü SùÿðJ6 ¦º½¸ú ,WÃ~Œ:qXº—¥«f €Íò°x;9"7t†uÍ )hWÔ–\ŽX¿:Ü Fz|ˆã ƒ §ÍíGî H «ƒÈõÔ ¤Æ?Ÿ¾ +sæŠ ß~!}C…>]¥Z-ô\ +³–Öôù”©ù· ™ ûù˜'ÂPC• Ex]ÿtYP‹g R €WCÁ‚8GtÁ†ä r`®íôZAr òÎ/ÝÉ=*hcN–© ¡’²$v·AÛ¸@ôÏö±öi‰øRrØn\±‰‰ ¯i .ÅQîž_I Iÿe~&eñ÷wy /)&‰`ö ŹJ*† g8Àeš¬ÙŠ hN'ô, +ʻ٠z¾ÐJU$—®V›Ñ-l !‚%ºp-š{S Ød 7z‚c -낲´Q£ùªWAsÌ þ…µ 7ZòE —‘n1¶. +ë´ø VïÍðÐIÃyýÄ›S5¦dãHœP˜$"Æ ÍGaj“°ÕÊ /^ _ l¹& +‡§’þ° ¿<8 .¥jWÊËn«¤ZÃÚ-ìZ + }7ÜT•NïnüÌóý@¥' Ò -‚ ù 2±6 ¼g Nƒ3A>nÂƯš ^ TÅñ{WZç$‚mÖ¢ãÔLŠP_Î nmÞz k L y(& žh³ŒF1 - j“¥’>ö,^ -Å»p0=w3 -& -à  3-;4™D½ eåou ‘ÊY@ŠàŠ -’Ð,­ G:Îu ’6òÕppaÕn Oñ °ÃXÜ(ò/,¼£S{ëCi¶}zK `o#a0µŸýa tXí.Ý‹w·¯Ð -zp B¸4m§Ò–»,–œ­ -š0 ˆï“­ µÍ/cY÷ ^"ll fKe ëó´‰ RìL^s ½@ ¦ãlŽ-ëù !àÂó˜S9ê<+ÊGàÐ 4| å¶Î’®ñu篃µï·~b Àm ÐT ‚ù® (;Sü ¶ -¤ -ÂÐz¬µx‘°R•ÝUX 5øe že3 JÔ½"² (ÔÌ+ -Ãœ†¨ Õ• W ¹ñ·/ `¦Tc¢G ›'¡”Í 9z‡¢µ ¶Ý²¤Ì¨ò÷}:+ -â·‘—H»!tI` -±Ô\Þk’ZoZ ñ•MV˜«ŸwÉЪûÈ&í{ ¸ -!« [uR {‰¢Ûá X- -14ÑOyPh,Iïûe¨Ñ·º(œ×ÒÀ™áÁÖþ ªvì +… û Q°9 ¼j O…4A>oÃű ^Ä VŽò|X[é%„nÖ¤åÔM‹PaÒ žnmÞ} n Ly*) ži´F5 + l“¦”?÷-_ +Ƽr1>€x7 +* +â  4. <4šE¾ gåpv ’ŸËY@Šà‹ +‘Ð-± H:Ïx ‘7òÖqpb×o" Oñ Y ±ÄYÝ(ò0,½¥U|ëCk¸{L bp$b0µžþb uYi/Þ‹y¹¯Ñ +{s Dº6n§Ô•».•›­ +™3 Šï’®´Ï0eYû _#mo hKe +íóµŒ SìM^v ¾C ¦ãm.íý "âÁóšT;ê=+ÌHàÐ 5 ç·Î’­óv鯄·ð·~e ¿p ÒW ‚ú² );SüŸ¸# +¥ +ÄÏz¬¶y²R”ÝV[ 6úh  f5 LÖ½#³€(ÓÌ/ +Û†¬ Õ˜ Z »ñ’·2 a§Ud£ J š'¢•Ñ :|‡¡Ž¹ ¶ß³£Ë€¨ôø~;, +⸑—I ž»!tJ`  ³Ö\Þk“[o] ñ–MX˜­  xËѬýÇ'ï~ ¸$ +!¯ [uU {¢Ýå Y1 +14ÓPzQi,JïûgªÒ¶¹)ØÒÁšâÁ×ÿ’ ¬wí Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, and the rest of the Gimp-Print Development Team. @@ -388,24 +400,22 @@ No image height specified'%s': No image width specified(None)1 Plug-In Interface1 Procedure1 bpp, 1-bit alpha, 2-slot palette32 bpp, 8-bit alpha, no palette4 bpp, 1-bit alpha, 16-slot palette8 bpp, 1-bit alpha, 256-slot paletteA bailout-value for adaptive selectionsA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT TextALT te_xt: (optional)ASCII artA_boutA_daptive supersamplingA_ddA_dd borderA_dvancedA_llA_ll tilesA_lpha-weightingA_lpha:A_mbient:A_mount:A_mplitude:A_ngle:A_nimateA_ppendA_uto update previewA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdaptive s_upersampleAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdditional InformationAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust _FG-BGAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust output...Adjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike Angle (-1 means a Random Angle is chosen)Adjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAdvanced OptionsAffected RangeAggressive RLE -(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCalculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. +(not supported by SGI)Al_ternateAl_ternate tilesAlias|Wavefront PIX imageAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplies the paper as it is (without embossing it)ApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. Adaptive Hybrid usually produces the best all-around quality. Ordered is faster and produces almost as good quality on photographs. Fast and Very Fast are considerably faster, and work well for text and line art. -Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Col_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: +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:CosineCould not create working folder '%s': %sCould not execute specified web browser: %sCould not get layers for image %dCould not interpret '%s'Could not load PNG defaultsCould not open '%s' as SUN-raster-fileCould not open '%s' for reading.Could not open '%s' for reading: %sCould not open '%s' for writing.Could not open '%s' for writing: %sCould not parse specified web browser command: -%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Coupled-Map-Lattice ExplorerCre_ate new imageCreateCreate GuidesCreate _New layerCreate _histogramCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create arcCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDefine a new logical printer. This can be used to name a collection of settings that you wish to remember for future use.Deform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:Diffusion dist.:Digital Imaging and Communications in Medicine imageDigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacement map:Displacing...Display as:Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_grave...En_vironment image:Enable _antialiasingEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulated PostScript imageEncapsulation:EndPage failedEngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the PPD filename for your printerEnter the command to print to your printer. Note: Please do not remove the `-l' or `-oraw' from the command string, or printing will probably fail!Enter the name you wish to give this logical printerEntire LayerEnv. sensitivity:Environment image to useError during open of FITS fileError during writing indexed/gray imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error starting ghostscript: %sError trying to open temp file '%s'for parasite loading. -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. +%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 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 temporary file '%s' for parasite loading: %sError while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: Could not read XJT property file '%s'.Error: XJT property file '%s' is empty.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:F_lare intensity:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast 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 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 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 +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:Images 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 StyleJuliaKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_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: +(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:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': +to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset (1):Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimize the output for the type of image being printedOptimizing Animation...OptionsOr_ientationOr_igin at bottom leftOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPageSetupDlg failed: %dPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': %sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhongPhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanar (RRR,GGG,BBB)Planar RGBPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:Position the image on the page. Click and drag with the primary button to position the image. Click and drag with the second button to move the image with finer precision; each unit of motion moves the image one point (1/72") @@ -425,29 +435,28 @@ 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 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 _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. +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...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 +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 invalidXY 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..._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 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:_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... +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 2 +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.po-plugins.HEAD Report-Msgid-Bugs-To: -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 +POT-Creation-Date: 2005-08-07 11:53+0200 +PO-Revision-Date: 2005-06-04 20:15+0200 +Last-Translator: Quim Perez Noguer +Language-Team: Català MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit +X-Generator: KBabel 1.0 Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, @@ -473,37 +482,35 @@ No s'ha pogut llegir la capçalera (ftell == %ld)'%s': No s'ha especificat el tipus de dades de la imatge'%s' No s'ha especificat l'alçada de la imatge'%s' -No s'ha especificat l'amplada de la imatge(Cap)1 Interfície de connector1 procediment1 bpp, alfa 1-bit, paleta 2-safates32 bpp, 8-bit alfa, sense paleta4 bpp, alfa 1-bit, paleta 16-safates8 bpp, alpha 1-bit, paleta 256-safatesUn valor de seguretat per seleccions adaptativesUna creació no tan obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Una definició d'unitat només es desarà abans de sortir del GIMP si s'activa aquesta columna.Text alternatiuTe_xt alternatiu: (opcional)Art ASCII_Quant aSupermostreig a_daptableA_fegeixAfegeix una _voraAva_nçatT_otTots e_ls mosaicsPonderació a_lfaA_lfa:A_mbient:_Quantitat:A_mplitud:A_ngle:A_nimaAfe_geixPrevis_ualització automàticaA_utomàticMitjana sota el pin_zellAbreviaturaQuant aQuant al Gimp-PrintAccióA_vançatAdaptableS_upermostra adaptableAfegeix guies addicionalsAfegeix el camí explorador de fractalsAfegiu un vector sm nouAfegiu un vector nouS'estan afegint angles morts...S'està afegint un tauler d'escacs...S'està afegint soroll...SumaInformació addicionalAfegeix un efecte d'ombra a cada traç de pizellAfegeix aleatòriament soroll al colorAjusta _primer pla-fonsAjusteu el balanç de color, la brillantor, el contrast, la saturació i l'algorisme de tramaAjusteu la sortida...Ajusta la intensitat de flamaAjusta el llindar de lluminositatAjusta el nombre de puntesAjusteu l'opacitat de les puntesAjusta l'angle de les puntes (-1 per a un angle aleatori)Ajusteu la densitat de puntesAjusta la longitut de les puntesAjusta com d'aleatori ha de canviar el valor del toAjusta com d'aleatori ha de canviar el valor de la saturacióAjusteu el balanç cian de la impressióAjusteu la densitat (quantitat de tinta) de la impressió. Reduïu la densitat si la tinta traspassa el paper o taca. Incrementeu la densitat si les regions negres no són sòlides.Ajusteu la gamma de la impressió. Valors més grans produiran una impressió en general més brillant, mentre que valors més petits produiran una impressió més fosca. Blancs i negres permaneixeran igual, a diferència de l'ajustament de brillantor.Ajusteu el balanç magenta de la impressióAjusteu la brillantor de la visualització prèviaAjusteu la saturació (balanç de color) de la impressió. -Utilitzeu la saturació a zero per produir sortida en escala de grisos fent servir tintes negra i de colors.Ajusteu el balanç groc de la impressióS'està ajustant el primer pla i el fons...Opcions avançades del paquet de filtratgeOpcions avançadesAbast afectatRLE agressiu -(SGI no ho suporta)Al_ternaAl_terna els mosaicsImatge PIX d'Alias|WavefrontMapa alié _2...Mapa alié 2Mapa alié 2: s'està transformant...Alinea les capes visiblesAlinea les capes _visibles...Tots els JNGTots els PNGTots els valors són fraccions de l'alçada de la pel·lículaTot negreTot grisTots els camps de text han de contenir un valor.Tot blancPer_met la divisió dels mosàicsAlfaCanals alfaAlfa:Ambient:Quantitat de color original per mostrar on no hi ha llum directaQuantitat:Una creació obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Desplaçament d'ang_le:Obertura d'angle:Angle:Degradat angular:Degradat de mida angular:Opcions del GIF animatOpcions del MNG animatReproducció de l'animació:SuavitzatQualitat de suavitzat de vores. Com més alta millor, però va més lentaAplica el paper com és (sense difuminar-lo)AplicaAplica el llençAplica la _lent...Aplica el degradat actual a la imatge finalS'està aplicant el llenç...S'està aplicant la circumvolucióS'està aplicant la lent...S'està aplicant el paquet de filtratge...Esteu segur que voleu suprimir "%s" de la llista i del disc?Paràmetres de l'àrea nº %dParàmetres de l'àreaLlista de l'àreaÀrea:FletxaCom s'especifica a sobreAsciiRàtio de l'aspecteS'està muntant l'encaix...Asimetria:A la part _inferiorA la part _superiorAut_or:Autor:AutoS'està ampliant el contrast automàticament...S'està ampliant automàticament l'HSV...Animació FLIC d'AutodeskAutomàticPre_visualització automàticaImatges disponibles:B, G, R, X (estil bmp)B/NSubstitució de píxels BLANK/NaNT_reure negre (%):Llindar b_lau:Co_lor del fonsEndarrere:FonsFons (%d%s)Color del fonsTipus de fonsFons:Mapa de color erroniBarnsley 1Barnsley 2Barnsley 3_URL base:Opcions bàsiquesCorbaturaMillor per a imatges on dominen les regions de colors sòlidsBiselat de les voresBili_nealBl_anc i negreNegreBlanc i negreNegre:Paràmetres de la mesclaAngles mortsBlauFreqüència de bla_u:Canvi de fa_se blau:Blau:Blavor_cb470:Blavor_cb470f:Blavor_cb709:Blavor_cb709f:Difumina el centreMètode de difuminatParàmetres de difuminacióRadi de difuminacióTipus de difuminacióS'està difuminant...VoraVora mitjana...Mida de la voraVora mitjanaAmb_dòsAmbdósMarge superior:Vora inferiorInferior _dretPart inferior:QuadreBrillantor:NavegadorBumpS'està fent el mapatge bump...Imatge bumpm_ap:BumpmapPer DATAMIN/DATAMAXCodi font CCapçalera del codi font CExplorador CML: voleu sobreescriure el fitxer?_Explorador CML...CML_explorer: s'està desenvolupant...CMYCMYKCX:CY:C_MYKCàmer_aC_apturaContingut de la c_el·la:Mida de la c_el·la:C_entre del pinzellC_entratEsco_lliu aquí:C_ercleC_omposa...C_rea una imatge novaC_reuamentsC_orbatC_ianC_ilindreParàmetres de càlculNomés es pot operar en dibuixables RGB.Només es poden desar dibuixablesNomés es pot operar en les capes (però es feia en canal o màscara).No es pot crear una imatge novaNo es poden obtenir dades del porta-retalls.No es pot operar en tipus d'imatge desconegutsNo es poden llegir les entrades de colorNo es pot suprimir. Cal que hi hagi un GFlare com a mínim.No es pot operar en seleccions buides.No es pot operar amb imatges grises o de color indexat.No es pot operar amb imatges de color indexat.No es pot operar en capes amb màscares.No es pot operar en tipus d'imatges desconeguts.No es pot llegir l'extensió de '%s'No es pot llegir el peu de pàgina de '%sNo es poden desar les imatges de color RGB. Convertiu-les primer a color indexat o a escala de grisos.No es poden desar imatges amb canal alfa.No es poden desar imatges amb canals alfa.VinyetaMida de la cel·la:_Emplenat de les cel·les:_Espaiat de les cel·les:CentreCentre _x:Centre _y:Centre de l'efecte flamaradaCentre de la supernovaCentra la imatge horitzontalment en el paperCentra la imatge en el paperCentra la imatge verticalment en el paperCentre:CentraSensibilitat del canal:Canvia l'ordre de les fletxesCanvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i el Sierpinski)Canvia el valor CY (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i el Sierpinski)Canvia l'angle del vector sm seleccionatCanvia l'angle del vector seleccionatCanvia l'exponent de la intensitatCanvia la primera (mínima) delimitació de la coordenada xCanvia la primera (mínima) delimitació de la coordenada yCanvia la intensitat del canal blauCanvia la intensitat del canal verdCanvia la intensitat del canal vermellCanvia el valor de la iteració. Com més alt sigui, calcularà més detalls i trigarà més.Canvia el nombre de colors en el mapatgeCanvia la segona (màxima) delimitació de la coordenada xCanvia la segona (màxima) delimitació de la coordenada yCanvia la intensitat del vector sm seleccionatCanvia la intensitat del vector seleccionatCanvia a aquestCanvia la brillantor del pinzell seleccionatCanal nº %d:Paràmetres independents del canalMe_sclador de canal...Mesclador de canalAvís de l'operació amb el fitxer mesclador de canalRepresentacions dels canalsCanalsHabiliteu-ho si voleu tenir un peu de taula.Taulell d'escacsTauler d'escacsSi ho habiliteu, el GTM no deixarà espais en blanc entre els marcadors TD i el contingut de la cel·la. Només és necessari per al control de posicionament de nivell de píxels.Trieu el fractal fent-hi un doble clic a sobreTrieu el fitxer PPDEscull un nivell de compressió alt per a una mida de fitxer petitaEscolliu el nom de fitxer PPD per a la vostra impressoraEscolliu l'algorisme de tramatge a utilitzar. +No s'ha especificat l'amplada de la imatgeCap1 Interfície de connector1 procediment1 bpp, alfa 1-bit, paleta 2-safates32 bpp, 8-bit alfa, sense paleta4 bpp, alfa 1-bit, paleta 16-safates8 bpp, alpha 1-bit, paleta 256-safatesUn valor de seguretat per seleccions adaptativesUna creació no tan obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Una definició d'unitat només es desarà abans de sortir del GIMP si s'activa aquesta columna.Text alternatiuTe_xt alternatiu: (opcional)Art ASCII_Quant aSupermostreig a_daptableA_fegeixAfegeix una _voraAva_nçatT_otTots e_ls mosaicsPonderació a_lfaA_lfa:A_mbient:_Quantitat:A_mplitud:A_ngle:A_nimaAfe_geixPrevis_ualització automàticaA_utomàticMitjana sota el pin_zellAbreviaturaQuant aQuant al Gimp-PrintAccióA_vançatAdaptableS_upermostra adaptableAfegeix guies addicionalsAfegeix el camí explorador de fractalsAfegiu un vector sm nouAfegiu un vector nouS'estan afegint angles morts...S'està afegint un tauler d'escacs...S'està afegint soroll...SumaInformació addicionalAfegeix un efecte d'ombra a cada traç de pizellAfegeix aleatòriament soroll al color_Colors primer pla i fonsAjusta el balanç de color, la brillantor, el contrast, la saturació i l'algorisme de tramaAjusta la sortida...Ajusta la intensitat de flamaAjusta el llindar de lluminositatAjusta el nombre de puntesAjusta l'opacitat de les puntesAjusta l'angle de les puntes (-1 per a un angle aleatori)Ajusta la densitat de puntesAjusta la longitut de les puntesAjusta com d'aleatori ha de canviar el valor del toAjusta com d'aleatori ha de canviar el valor de la saturacióAjusta el balanç del blau cel (cian)Ajusta la densitat (quantitat de tinta) de la impressió. Quan la tinta traspassa el paper o taca massa, reduïu la densitat. Quan les regions negres són discontínues, incrementeu la densitat.Ajusta la gamma de la impressió. Un valors gran produeix una impressió més brillant, mentre que un valor petit produeix una impressió més fosca. Tot i així, a diferència de l'ajustament de brillantor, el blanc i el negre es quedarà igual.Ajusta el balanç rosa (magenta)Ajusta la brillantor de la visualització prèviaAjusta la saturació (balanç de color) de la impressió. +Poseu la saturació a zero per imprimir en blanc i negre.Ajusta el balanç groc de la impressióS'està ajustant el primer pla i el fons...Opcions avançades del paquet de filtratgeOpcions avançadesAbast afectatRLE agressiu +(SGI no ho suporta)Al_ternaAl_terna els mosaicsImatge PIX d'Alias|WavefrontCanvia _fases i freqüències...Canvia fases i freqüènciesS'estan canviant les fases i freqüències dels colors...Alinea les capes visiblesAlinea les capes _visibles...Tots els JNGTots els PNGTots els valors són fraccions de l'alçada de la pel·lículaTot negreTot grisTots els camps de text han de contenir un valor.Tot blancPer_met la divisió dels mosaicsAlfaCanals alfaAlfa:Ambient:Quantitat de color original per mostrar on no hi ha llum directaQuantitat:Una creació obsoleta d'Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Desplaçament d'ang_le:Obertura d'angle:Angle:Degradat angular:Degradat de mida angular:Opcions del GIF animatOpcions del MNG animatReproducció de l'animació:SuavitzatQualitat de suavitzat de vores. Com més alta millor, però va més lentaAplica el paper com és (sense difuminar-lo)AplicaPintura sobre tapísAplica la _lent...Aplica el degradat actual a la imatge finalS'està aplicant l'efecte tapís...S'està aplicant la matriuS'està aplicant la lent...Esteu segur que voleu suprimir "%s" de la llista i del disc?Paràmetres de l'àrea nº %dParàmetres de l'àreaLlista de l'àreaÀrea:FletxaCom s'especifica a sobreAsciiRàtio de l'aspecteS'està muntant el puzzle...Asimetria:A la part _inferiorA la part _superiorAut_or:Autor:AutoS'està ampliant el contrast automàticament...S'està ampliant automàticament l'HSV...Animació FLIC d'AutodeskAutomàticPre_visualització automàticaImatges disponibles:B, G, R, X (estil bmp)B/NSubstitució de píxels BLANK/NaNT_reure negre (%):Llindar b_lau:Co_lor del fonsEndarrere:FonsFons (%d%s)Color del fonsTipus de fonsFons:Mapa de color erroniBarnsley 1Barnsley 2Barnsley 3_URL base:Opcions bàsiquesCorbaturaMillor per a imatges on dominen les regions de colors sòlidsVores amb bisellBili_nealBl_anc i negreNegreBlanc i negreNegre:Paràmetres de la mesclaAngles mortsBlauFreqüència de bla_u:Canvi de fa_se blau:Blau:Blavor_cb470:Blavor_cb470f:Blavor_cb709:Blavor_cb709f:Centre del difuminatMètode de difuminatParàmetres del difuminatRadi del difuminatTipus de difuminatS'està difuminant...VoraMitjana del contorn...Mida de la voraMitjana del contornAmb_dòsAmbdósMarge superior:Vora inferiorInferior _dretPart inferior:QuadreBrillantor:CercaElevaElevaS'estan elevant les zones mapajades...Mapa de _relleu:Mapa de relleuPer DATAMIN/DATAMAXCodi font CCapçalera del codi font CExplorador CML: voleu sobreescriure el fitxer?_Explorador CML...CML_explorer: s'està desenvolupant...CMYCMYKCX:CY:C_MYKCàmer_aC_apturaContingut de la c_el·la:Mida de la c_el·la:C_entre del pinzellC_entratEsco_lliu aquí:C_ercleC_omposa...C_rea una imatge novaC_reuamentsC_orbatC_ianC_ilindre_Ressegueix les vores...Paràmetres de càlculNomés es pot operar en dibuixables RGB.Només es poden desar dibuixablesNomés es pot operar en les capes (però es feia en canal o màscara).No es pot crear una imatge novaNo es poden obtenir dades del porta-retalls.No es pot operar en tipus d'imatge desconegutsNo es poden llegir les entrades de colorNo es pot suprimir. Cal que hi hagi un GFlare com a mínim.No es pot operar en seleccions buides.No es pot operar amb imatges grises o de color indexat.No es pot operar amb imatges de color indexat.No es pot operar en capes amb màscares.No es pot operar en tipus d'imatges desconeguts.No es pot llegir l'extensió de '%s'No es pot llegir el peu de pàgina de '%sNo es poden desar les imatges de color RGB. Convertiu-les primer a color indexat o a escala de grisos.No es poden desar imatges amb canal alfa.No es poden desar imatges amb canals alfa.Ressegueix les voresMida de la cel·la:_Emplenat de les cel·les:_Espaiat de les cel·les:CentreCentre _x:Centre _y:Punt de llumCentre de la supernovaCentra la imatge horitzontalment en el paperCentra la imatge en el paperCentra la imatge verticalment en el paperCentre:CentraSensibilitat del canal:Canvia l'ordre de les fletxesCanvia el valor CX (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i el Sierpinski)Canvia el valor CY (canvia l'aspecte del fractal, actiu amb tots els fractals tret del Mandelbrot i el Sierpinski)Canvia l'angle del vector sm seleccionatCanvia l'angle del vector seleccionatCanvia l'exponent de la intensitatCanvia la primera (mínima) delimitació de la coordenada xCanvia la primera (mínima) delimitació de la coordenada yCanvia la intensitat del canal blauCanvia la intensitat del canal verdCanvia la intensitat del canal vermellCanvia el valor de la iteració. Com més alt sigui, calcularà més detalls i trigarà més.Canvia el nombre de colors en el mapatgeCanvia la segona (màxima) delimitació de la coordenada xCanvia la segona (màxima) delimitació de la coordenada yCanvia la intensitat del vector sm seleccionatCanvia la intensitat del vector seleccionatCanvia a aquestCanvia la brillantor del pinzell seleccionatCanal nº %d:Paràmetres independents del canal_Mesclador de canal...Mesclador de canalAvís de l'operació amb el fitxer mesclador de canalRepresentacions dels canalsCanalsHabiliteu-ho si voleu tenir un peu de taula.Taulell d'escacsTauler d'escacsSi ho habiliteu, el GTM no deixarà espais en blanc entre els marcadors TD i el contingut de la cel·la. Només és necessari per al control de posicionament de nivell de píxels.Trieu el fractal fent-hi un doble clic a sobreTrieu el fitxer PPDEscull un nivell de compressió alt per a una mida de fitxer petitaEscolliu el nom de fitxer PPD per a la vostra impressoraEscolliu l'algorisme per crear la tramat a utilitzar. Adaptive Hybrid dóna normalment la millor qualitat. Ordenat és més ràpid i dóna quasi la millor qualitat en fotografies. Ràpid i molt ràpid són considerablament més ràpids, i va bé per a text i imatges lineals. -Floyd-Steinberg híbrid generalment dóna una sortida inferior.Escolliu el model d'impressora, fitxer PPD i l'ordre que s'ha de fer servir per imprimir a aquesta impressoraCercleProfun_ditat circular en percentatge:Recuperació...NetejaNeteja la transparènciaTanca la corba en completarTancatCo_lorCo_lor promigCo_lor:Co_lorsCo_mentari:Co_mpensa-ho per enfosquir-hoCo_mplexitat:Co_mprimeix les etiquetes TDNivell de co_mpressió:Regió co_ntíguaCo_ntrast:Col_umna:RecullColorDensitat del colorMillora del color...Canvi de colorCanvi de color...Canvi de color: des del colorCanvi de color: al colorFunció del colorMode de colorS'està _mapejant el rang de color...Diàleg de la selecció del colorTransformació de colorSo_roll del color:_Variació del color:Color d'emplenamentEl color es calcula amb la mitja de tots els píxels que hi han sota el pinzellSortida de colorColor a alfaColor al seleccionador de color alfaColor a _alfa...Color:_Mapa de color:A_nàlisi del cub de color...Anàlisi del cub de colorAnàlisi del cub de color...AcoloreixAcoloreix amb el color personalitzatS'està acolorint...AcolorimentRotació del mapa de colors_Rotació del mapa de colors...ColorsColors:CombinaCom_entari:Ordre:ComentariComentari:ComposaComposa els canalsS'estan composant les imatges...S'està composant...Composició:Mida comprimida: %sCompressióRelació de compressió (aprox.): %d a 1Tipus de compressióRestringeix la proporció d'aspecteS'està construint un laberint amb l'algorisme de Prim...S'està construint el mosaic laberint amb l'algorisme de Prim...ContextDegradat continuat sense buitsDegradat continuatActualització contínuaContornsContrast:ControlsControla la intensitat del ressaltamentAbans, convertiu la imatge a format RGBMatriu de circumvolucióLa matriu de circumvolució no funciona en capes més petites de 3 píxels.TorsióCopiaCopia el GFlareCopia els paràmetresCopia un objecteCopia els paràmetresCopia la corba activa a l'altra voraCopia la textura del paper seleccionat com a fonsCopia al porta-retallsS'esta copiant l'IFS a la imatge (%d/%d)...S'està copiant...Copyright(c) 1999-2003 per en Maurits RikjCopyright:CosinusNo s'ha pogut crear la carpeta de treball '%s': %sNo s'ha pogut executar el navegador web: +Floyd-Steinberg híbrid generalment dóna una sortida inferior.Escolliu el model d'impressora, fitxer PPD i l'ordre que s'ha de fer servir per imprimir a aquesta impressoraCercleProfun_ditat circular en percentatge:Recuperació...NetejaNeteja la transparènciaTanca la corba en completarTancatCo_lorCo_lor promigCo_lor:Co_lorsCo_mentari:Co_mpensa-ho per enfosquir-hoCo_mplexitat:Co_mprimeix les etiquetes TDNivell de co_mpressió:Regió co_ntíguaCo_ntrast:SorollCol_umna:RecullColorDensitat del colorMillora del color...Substitueix un colorSubstitueix un color...Canvi de color: des del colorCanvi de color: al colorFunció del colorMode de color_Substitueix un grup de colors...Diàleg de la selecció del colorTransformació de colorSo_roll del color:_Variació del color:Color d'emplenamentEl color es calcula amb la mitja de tots els píxels que hi han sota el pinzellSortida de colorColor a alfaColor al seleccionador de color alfaCo_lor a alfa...Color:_Mapa de color:A_nàlisi del cub de color...Anàlisi del cub de colorAnàlisi del cub de color...AcoloreixAcoloreix amb el color personalitzatS'està acolorint...AcolorimentRotació del mapa de colors_Rotació del mapa de colors...ColorsColors:CombinaCom_entari:Ordre:ComentariComentari:ComposaComposa els canalsS'estan composant les imatges...S'està composant...Composició:Mida comprimida: %sCompressióRelació de compressió (aprox.): %d a 1Tipus de compressióRestringeix la proporció d'aspecteS'està construint un laberint amb l'algorisme de Prim...S'està construint el mosaic laberint amb l'algorisme de Prim...ContextDegradat continuat sense buitsDegradat continuatActualització contínuaContornsContrast:ControlsControla la intensitat del ressaltamentAbans, convertiu la imatge a format RGBAplica una matriuLa matriu no pot funcionar en capes més petites de 3 píxels.TorsióCopiaCopia el GFlareCopia els paràmetresCopia un objecteCopia els paràmetresCopia la corba activa a l'altra voraCopia la textura del paper seleccionat com a fonsCopia al porta-retallsS'esta copiant l'IFS a la imatge (%d/%d)...S'està copiant...Copyright:CosinusNo s'ha pogut crear la carpeta de treball '%s': %sNo s'ha pogut executar el navegador web: %sNo s'han pogut obtenir capes per a la imatge %dNo s'ha pogut interpretar '%s'No s'ha pogut carregar la configuració predeterminada de PNGNo s'ha pogut obrir '%s' com a fitxer SUN-rasterNo s'ha pogut obrir '%s' per escriure-hi.No s'ha pogut obrir '%s' en lectura: %sNo s'ha pogut obrir el fitxer '%s' per escriure-hi.No s'ha pogut obrir '%s' en escriptura: %sNo s'ha pogut analitzar l'ordre del navegador web: -%sNo s'ha pogut llegir la capçalera XWD de '%s'No s'han pogut llegir les entrades de color de '%s'No s'ha pogut llegir la capçalera de '%s'No s'ha pogut escriure '%s': %sNo s'ha pogut carregar un pinzell al conducte, renuncieu-hi.No s'ha pogut desar la transparència sense pèrdues. Es desarà la opacitat.No s'ha pogut llegir el fitxer:No s'ha pogut desar el fitxer:No s'han pogut desar els fitxers de recursos:No s'ha pogut reduir els colors de manera més simple. S'està desant com a opac.Explorador Coupled-Map-LatticeCre_a una imatge novaCreaCrea les guiesCrea una _nova capaCrea un _histogramaCrea un mapa de color fent servir un degradat de l'editor de degradatsCrea un mapa de color amb les opcions que heu especificat abans (densitat/funció del color). El resultat es pot veure en la previsualització d'imatgeCrea una imatge nova quant s'aplica el filtreCrea una unitat nova.Crea una unitat nova amb la unitat actualment seleccionada com a plantilla.Crea un arcCrea una corba de Bezier. Maj + botó per acabar la creació de l'objecte.Crea un cercleCrea una el·lipsiCrea guies...Crea una líniaCrea una imatge novaCrea un polígon regularCrea un espiralCrea un estrellaS'ha produït un error en crear la secció DIBS'ha creat amb el GIMPS'està creant un patró de difracció...Esca_pçaS'està escapçant...Cor_ba:CubismeTransformació cubista...Capes acumulatives (combina)Capa del rínxolUbicació del rínxolOrientació del rínxolDegradat actualDegradat actual (invertit)Actual:Corba BendCorba Bend...Tipus de corbaCorba per a la voraColor personalitzat:Degradat personalitzatRetallaCianCian:Cian_KCilindreLongitud del cilindreRadi del cilindreMètode DCT:Imatge DICOMVaria la _quantitat:D_ivisor:Més foscMés fosc:Compressió de dadesS'estan formatant les dadesS'estan formatant les dadesData:DescomposaDescomposa a _capesS'està descomposant...Per defecteTipus de mapa per defecte_URL per defecte:Tipus de bocí per defecte:Retard del marc per defecte:Disposició del marc per defecte:Defineix l'àrea cercle/ovalDefiniu una nova impressoraDefineix l'àrea polígonDefineix l'àrea rectangleDefiniu una nova impressora lògica. S'usa per donar nom a una col·lecció de configuracions que voleu recordar per a ús futur.Canvia el modeGrau d'inclinació de la vora de cada peçaGrausDesentrellaçaDesentrellaça...Retard inserit per prevenir sobresaturacions a la CPU.SuprimeixSuprimeix l'àreaSuprimeix el fractalSuprimeix el GFlareSuprimeix el puntSuprimeix un objecteSuprimeix el fractal seleccionat actualmentSuprimeix l'àrea seleccionadaSuprimeix el vector sm seleccionatSuprimeix el vector seleccionatSuprimeix la preconfiguració seleccionadaFunció deltaFunció delta desplaçadaDensitat:Fusió profundaPrimer en profunditatMapa de la profunditat:Fusió profunda...S'està derivant la paleta suau...Elimina els _pics..._Treu les bandes...Descripció:N_o seleccionis resElimina els picsCanal de destinació:Rang del color destinacióDestinació:Treu les bandesS'estan treient les bandes...Llindar de desviació:DiamantDiferència de gaussinans...DiferencialPatrons de difraccióDifusió:Distància de difusió:Imatges digitals i comunicacions en medicinaDígitsDimensió:DimensionsDimensions:DireccióVector de direccióDireccionalLlum direccionalDireccionsDireccions:DesplaçaMapa de desplaçament:S'està desplaçant...Mostra com a:Distància des d'abaix del paper a la imatgeDistància des de l'esquerra del paper a la imatgeDistància des de l'esquerra del paper a la dreta de la imatgeDistància des de la dreta del paper a la imatgeDistància des del damunt del paper a sota de la imatgeDistància des del damunt del paper a la imatgeAlgorisme de la trama:Mida de la trama:Divisió_PrevisualitzaEsteu segur de voler descartar els canvis?Esteu segur que voleu sobreescriure-la?Detecció de vora DoGNo s'ha trobat el documentDibuixa una vora de puntes al voltant de la imatgeEls elements dibuixables tenen una mida diferentS'està dibuixant la flama...S'està dibuixant la graella...S'està dibuixant el laberint...S'estan dibuixant els paràmetresDibuixa línies entre els punts de control. Només durant la creacióOmbrejaS'ha trobat un fi de fitxer en llegirS'ignoraran les dades EXIF.E_levació:_Habilita mapatge bumpHabilita el mapatge de l'e_ntornE_rosionaE_sténCada peça té els costats corbatsCada peça té els costats rectesVora afectadaDetecció de voraDetecció de vora...Vora enfosquida:VoresEditaEdita la informació de l'àrea...Edita la flamaEdita la informació del mapa...Edita l'objecteEdita la informació de l'àrea...Edita el nom del fractalEdita la informació del mapaEdita la informació de l'àrea seleccionadaS'està editant un objecte de només lectura. No podreu desar-loEfecte canalEfecte operadorRelleu_Grava...Imatge de l'e_ntorn:Habilita el su_avitzat de voresHabilita/inhabilita el mapatge bump (profunditat d'imatge)Habilita/inhabilita el mapatge de l'entorn (reflexió)Habilita/inhabilita la previsualització d'alta qualitatHabilita/inhabilita la supressió de vores irregulars(suavitzat)Habilita/inhabilita la previsualització dels canvisImatge Postscript encapsuladaEncapsulació:Ha fallat EndPageGravaS'està gravant...Introduïu un nom per al GFlare copiatIntroduïu un nom per al GFlare nouIntroduïu el nom de fitxer PPD per a la vostra impressoraIntroduïu l'ordre per imprimir a la vostra impressora. Nota: no suprimiu les opcions '-l' o '-oraw' de la línia d'ordres, o probablement la impressió fallarà.Introduïu el nom que voleu donar a aquesta impressora lògicaCapa senceraSensibilitat de l'entorn:Imatge de l'entorn per utilitzarS'ha produït un error en obrir el fitxer FITSS'ha produït un error mentre s'escrivia la imatge indexada/grisaS'ha produït un error en escriure la imatge rgbS'ha produït un error en capturar el punterS'ha produït un error en el fitxer de pinzell del GIMP '%s'S'ha produït un error en el fitxer conducte del pinzell del GIMP.S'ha produït un error en obtenir ID de capaS'ha produït un error en obtenir la captura de pantallaS'ha produït un error en obrir el fitxerS'ha produït un error en obrir el fitxer '%s'S'ha produït un error en llegir la capçalera del fitxer BMP des de '%s'S'ha produït un error en llegir el fitxerS'ha produït un error en iniciar el ghostscript (%s)S'ha produït un error en iniciar el ghostscript (%s)S'ha produït un error en intentar obrir el fitxer temporal '%s' per carregar el paràsit. -S'ha produït un error en intentar desar la figura com un paràsit: no es pot adjuntar un paràsit a un dibuixable. -S'ha produït un error en llegir '%s'. Potser el fitxer està corromput.S'ha produït un error en desar '%s'. No s'ha pogut desar la imatge.S'ha produït un error en escriure el fitxer de sortida.Error: no s'ha pogut llegir el fitxer de propietats XJT '%s'.Error: el fitxer de propietats XJT '%s' és buit.S'ha produït un error: no es poden carregar els paràmetresS'ha produït un error: aquest no és un fitxer CML.Distribuït uniformementExp.:Exporta la previsualitzacióExtreu els canalsColor del primer plaEl fitxer FITS conserva imatges no visualitzablesEn desar en FITS, no es poden gestionar imatges amb canals alfaF_itxerPr_imer color:Intensitat de la f_lama:FactorNo s'ha pogut obrir el fitxer del Gflare '%s': %sNo s'ha pogut desar el fitxer PPM '%s': %sNo s'ha pogut escriure el fitxer GFlare '%s': %sNombre enter ràpidMés ràpid, amb colors més brillants, per a text i líniesPlomallFitxerS'ha desat el fitxer "%s".El fitxer '%s' no sembla un fitxer fractal IFSEl fitxer '%s' ja existeix. +%sNo s'ha pogut llegir la capçalera XWD de '%s'No s'han pogut llegir les entrades de color de '%s'No s'ha pogut llegir la capçalera de '%s'No s'ha pogut escriure '%s': %sNo s'ha pogut carregar un pinzell al conducte, renuncieu-hi.No s'ha pogut desar la transparència sense pèrdues. Es desarà la opacitat.No s'ha pogut llegir el fitxer:No s'ha pogut desar el fitxer:No s'han pogut desar els fitxers de recursos:No s'ha pogut reduir els colors de manera més simple. S'està desant com a opac.Explorador Coupled-Map-LatticeCre_a una imatge novaCreaCrea les guiesCrea una _nova capaCrea un _histogramaCrea un mapa de color fent servir un degradat de l'editor de degradatsCrea un mapa de color amb les opcions que heu especificat abans (densitat/funció del color). El resultat es pot veure en la previsualització d'imatgeCrea una imatge nova quant s'apliqui el filtreCrea una unitat nova.Crea una unitat nova amb la unitat actualment seleccionada com a plantilla.Crea un arcCrea una corba BezierCrea una corba de Bezier. Maj + botó per acabar la creació de l'objecte.Crea un cercleCrea una el·lipsiCrea guies...Crea una líniaCrea una imatge novaCrea un polígon regularCrea un espiralCrea un estrellaS'ha produït un error en crear la secció DIBS'ha creat amb el GIMPS'està creant un patró de difracció...Esca_pçaS'està escapçant...Cor_ba:CubismeTransformació cubista...Capes acumulatives (combina)Capa del rínxolUbicació del rínxolOrientació del rínxolDegradat actualDegradat actual (invertit)Actual:Distorsiona segons la corbaCorba Bend...Tipus de corbaCorba per a la voraColor personalitzat:Degradat personalitzatRetallaCianCian:Cian_KCilindreLongitud del cilindreRadi del cilindreMètode DCT:Imatge DICOMVaria la _quantitat:D_ivisor:Més foscMés fosc:Compressió de dadesS'estan formatant les dadesS'estan formatant les dadesData:DescomposaDescomposa a _capesS'està descomposant...Per defecteTipus de mapa per defecte_URL per defecte:Tipus de bocí per defecte:Retard del marc per defecte:Disposició del marc per defecte:Defineix l'àrea cercle/ovalDefiniu una nova impressoraDefineix l'àrea polígonDefineix l'àrea rectangleDefiniu una nova impressora lògica. S'usa per donar nom a una col·lecció de configuracions que voleu recordar per a ús futur.Canvia el modeGrau d'inclinació de la vora de cada peçaGrausDesentrellaçaDesentrellaça...Retard inserit per prevenir sobresaturacions a la CPU.SuprimeixSuprimeix l'àreaSuprimeix el fractalSuprimeix el GFlareSuprimeix el puntSuprimeix un objecteSuprimeix el fractal seleccionat actualmentSuprimeix l'àrea seleccionadaSuprimeix el vector sm seleccionatSuprimeix el vector seleccionatSuprimeix la preconfiguració seleccionadaFunció deltaFunció delta desplaçadaDensitat:Fusió d'imatgesPrimer en profunditatMapa de la profunditat:Fusió d'imatges...S'està derivant la paleta suau..._Elimina els pics..._Estripa...Descripció:N_o seleccionis resElimina els picsCanal de destinació:Rang del color destinacióDestinació:EstripaS'estan estripant...Llindar de desviació:DiamantDiferència de gaussinans...DiferencialPatrons de difraccióDifusió:Distància de difusió:Imatges digitals i comunicacions en medicinaDígitsDimensió:DimensionsDimensions:DireccióVector de direccióDireccionalLlum direccionalDireccionsDireccions:DesplaçaMapa de desplaçament:S'està desplaçant...Mostra com a:Distància des d'abaix del paper a la imatgeDistància des de l'esquerra del paper a la imatgeDistància des de l'esquerra del paper a la dreta de la imatgeDistància des de la dreta del paper a la imatgeDistància des del damunt del paper a sota de la imatgeDistància des del damunt del paper a la imatgeAlgorisme de la trama:Mida de la trama:Divisió_PrevisualitzaEsteu segur de voler descartar els canvis?Esteu segur que voleu sobreescriure-la?Detecció de vora DoGNo s'ha trobat el documentDibuixa una vora de puntes al voltant de la imatgeEls elements dibuixables tenen una mida diferentS'està dibuixant la flama...S'està dibuixant la graella...S'està dibuixant el laberint...S'estan dibuixant els paràmetresDibuixa línies entre els punts de control. Només durant la creacióOmbrejaS'ha trobat un fi de fitxer en llegirS'ignoraran les dades EXIF.E_levació:Eleva a partir d'un mapa de relleu.Habilita el mapatge de l'e_ntorn_ErosionaE_sténCada peça té els costats corbatsCada peça té els costats rectesVora afectadaDetecció de voraDetecció de vora...Vora enfosquida:VoresEditaEdita la informació de l'àrea...Edita la flamaEdita la informació del mapa...Edita l'objecteEdita la informació de l'àrea...Edita el nom del fractalEdita la informació del mapaEdita la informació de l'àrea seleccionadaS'està editant un objecte de només lectura. No podreu desar-loEfecte canalEfecte operadorRessaltaFranges _negres...Imatge de l'e_ntorn:Habilita el su_avitzat de voresHabilita/inhabilita l'efecte d'elevar la imatge a partir d'un mapa de relleu.Habilita/inhabilita el mapatge de l'entorn (reflexió)Habilita/inhabilita la previsualització d'alta qualitatHabilita/inhabilita la supressió de vores irregulars(suavitzat)Habilita/inhabilita la previsualització dels canvisImatge Postscript encapsuladaEncapsulació:Ha fallat EndPageFranges negresS'està aplicant el filtre franges negres...Introduïu un nom per al GFlare copiatIntroduïu un nom per al GFlare nouIntroduïu el nom de fitxer PPD per a la vostra impressoraIntroduïu l'ordre per imprimir a la vostra impressora. Nota: no suprimiu les opcions '-l' o '-oraw' de la línia d'ordres, o probablement la impressió fallarà.Introduïu el nom que voleu donar a aquesta impressora lògicaCapa senceraSensibilitat de l'entorn:Imatge de l'entorn per utilitzarS'ha produït un error en obrir el fitxer FITSS'ha produït un error mentre s'escrivia la imatge indexada/grisaS'ha produït un error en escriure la imatge rgbS'ha produït un error en capturar el punterS'ha produït un error en el fitxer de pinzell del GIMP '%s'S'ha produït un error en el fitxer conducte del pinzell del GIMP.S'ha produït un error en obtenir ID de capaS'ha produït un error en obrir el fitxerS'ha produït un error en obrir el fitxer '%s'S'ha produït un error en llegir la capçalera del fitxer BMP des de '%s'S'ha produït un error en llegir el fitxerS'ha produït un error en iniciar el ghostscript (%s)S'ha produït un error en iniciar el ghostscript (%s)S'ha produït un error quan s'estava obrint el fitxer temporal '%s' per carregar el paràsit: %sS'ha produït un error en llegir '%s'. Potser el fitxer està corromput.S'ha produït un error en desar '%s'. No s'ha pogut desar la imatge.S'ha produït un error en escriure el fitxer de sortida.Error: no s'ha pogut llegir el fitxer de propietats XJT '%s'.Error: el fitxer de propietats XJT '%s' és buit.S'ha produït un error: no es poden carregar els paràmetresS'ha produït un error: aquest no és un fitxer CML.Distribuït uniformementExp.:Exporta la previsualitzacióExtreu els canalsColor del primer plaEl fitxer FITS conserva imatges no visualitzablesEn desar en FITS, no es poden gestionar imatges amb canals alfaF_itxerPr_imer color:Intensitat de la f_lama:FactorNo s'ha pogut obrir el fitxer del Gflare '%s': %sNo s'ha pogut desar el fitxer PPM '%s': %sNo s'ha pogut escriure el fitxer GFlare '%s': %sNombre enter ràpidMés ràpid, amb colors més brillants, per a text i líniesPlomallFitxerS'ha desat el fitxer "%s".El fitxer '%s' no sembla un fitxer fractal IFSEl fitxer '%s' ja existeix. El voleu sobreescriure?El fitxer '%s' és corrupte. -L'opció de la línia %d és una secció incorrectaEl fitxer '%s' no és un fitxer explorador de fractalsEl fitxer ja existeixEl fitxer està en un format no permès.Mida del fitxer: %02.01f kBMida del fitxer: desconegudaNom de fitxer:Nom del fitxer: %sOmpleOmple (de baix a dalt)Omple (d'esquerra a dreta)Omple (de dreta a esquerra)Omple (de dalt a baix)Omple-ho amb el paràmetre kPel·lículaFiltreSimulació del paquet de filtresS'està cercant el fons de l'animació...S'estan trobant les vores...S'està cercant el gradient XY...Primer color de destinacióPrimer GfigPrimer color fontPrimer colorLlavor fixaMenú de selecció del mapa de vector de direcció fixadaFlamaLa flama només funciona amb el format RGB.Efectes de flamaSistema de transport d'imatge flexibleInverteixPunt flotantFlux de pas %d...FlotantColo_r del primer plaEnfoca els traços del pinzell al voltant del centre de la imatgeForça JPEG de línia basePrimer plaColors de fons i primer plaParàmetres fractalsTraça del fractalTipus de fractalNom del fractal:Degradat de l'explorador de fractalsPíxels fraccionalsMarc %dMarc %d (%d%s)Marc %d de %dMarc (%i)Disposició del marc quan no estigui especificada: FreqüènciesFreqüència (files):Des deDel porta-retallsDes del colorDes d'un degradatDes del paperDes d'un degradat inversDes de:Davant:SencerFuncióTipus de funció:Selecció difosaG-QbistImatge de fax G3GEE-SLIMEGEE-ZOOMGFLI 1.3 - carrega la pila de marcsGFLI 1.3 - desa la pila de marcsGFlareEl GFlare '%s' no s'ha desat. Si afegiu una nova entrada a '%s', com ara: +L'opció de la línia %d és una secció incorrectaEl fitxer '%s' no és un fitxer explorador de fractalsEl fitxer ja existeixEl fitxer està en un format no permès.Mida del fitxer: %02.01f kBMida del fitxer: desconegudaNom de fitxer:Nom del fitxer: %sOmpleOmple (de baix a dalt)Omple (d'esquerra a dreta)Omple (de dreta a esquerra)Omple (de dalt a baix)Omple-ho amb el paràmetre kPel·lículaFiltreSimulació del paquet de filtresS'està cercant el fons de l'animació...S'estan trobant les vores...S'està cercant el gradient XY...Primer color de destinacióPrimer GfigPrimer color fontPrimer colorLlavor fixaMenú de selecció del mapa de vector de direcció fixadaFlamaLa flama només funciona amb el format RGB.Punt de llumSistema de transport d'imatge flexibleInverteixPunt flotantFlux de pas %d...FlotantColo_r del primer plaEnfoca els traços del pinzell al voltant del centre de la imatgeForça JPEG de línia basePrimer plaColors de fons i primer plaParàmetres del fractalFractalTipus de fractalNom del fractal:Degradat de l'explorador de fractalsPíxels fraccionalsMarc %dMarc %d (%d%s)Marc %d de %dMarc (%i)Disposició del marc quan no estigui especificada: FreqüènciesFreqüència (files):Des deDel porta-retallsDes del colorDes d'un degradatDes del paperDes d'un degradat inversDes de:Davant:SencerFuncióTipus de funció:Selecció difosaG-QbistImatge de fax G3GEE-SLIMEGEE-ZOOMGFLI 1.3 - carrega la pila de marcsGFLI 1.3 - desa la pila de marcs_Enlluerna (GFlare)...El GFlare '%s' no s'ha desat. Si afegiu una nova entrada a '%s', com ara: (gflare-path "%s") -i creeu una carpeta '%s', podeu desar els vostres propis GFlare's en aquesta carpeta.Editor del GFlareOpcions del GIFAvís GIFImatge GIFGIF: No es pot gestionar el tipus de composició GIF %d no documentat. Pot ser que l'animació no es reprodueixi o no es torni a desar perfectament.Extensió GIMPNavegador de l'ajuda del GIMPConnector del GIMPTaula màgica del GIMPConnector d'icones de Windows del GIMPPinzell del GIMPPinzell del GIMP (animat)Sembla ser corrupte el fitxer pinzell del GIMP.Els pinzells GIMP són en escala de grisos o bé RGBAImatge XJT comprimida del GIMPPatró del GIMP_LluentorLlindar ve_rd:Gamma:Difuminació gaussianaDifuminació gaussiana...Gee-_SlimeGee-_ZoomGeneralOpcions generalsPreferències generalsOpcions generalsObté colors de mostraGfigVersió del Gimp-PrintGimpressionistMosàic òpticMosàic òptic...Opcions de pintura fosforescent_GrisAdquisicióC_aptura desprésCaptura una única finestraCapturala pantalla senceraDegradatFlamarada del degradat...Mapa de degradat...Omple amb un degradat de colorMenú de selecció del mapa degradatEscala del degradat:DegradatsGràfica dels paràmteres actualsSuavitza les vores de la imatgeGrisMode grisOpcions de grisLlindar grisEscala de grisosVerdFreqüència de v_erd:Canvi de f_ase verd:Verd:GrisGraellaGraella granulosaDesplaçament de la graellaParàmetres de la graellaParàmetres de la graella...Tipus i visibilitat de la graellaColor de la graella:Paràmetres de la graella...Espaiat de la graella:Tipus de graella:GuiesLes guies són rectangles predefinits que cobreixen la imatge. Podeu definir-les per la seva amplada, alçada i espaiat d'una a l'altre. Això us permet crear ràpidament el tipus d'imatge més comú - col·lecció d'imatges de "miniatures", habilitada amb barres de navegació.Guies...Guillotina...HSVOpcions de la pàgina HTMLTaula HTML_Ressaltament:Re_ssaltaments_To_To:He_xàgonsAlçada (píxels):Alçada del paper on voleu imprimirAlçada:L'identificador d'ajuda '%s' és desconegutOn ha anat l'objecte?Previsualització d'alta _qualitatEls valors més alts incrementen la magnitud de l'efecteUns valors més alts fan que el que es ressalta estigui més focalitzatUns valors més alts fan que l'objecte es reflecteixi de manera més clara (sembla més clar)Els valors més alts restringeixen l'efecte a menys àrees de la imatgeRessaltament:Ressaltaments:Ret_ingueu els canals mínimsAmp_lada del forat:Base ho_ritzontal:Alçada d_el foratReté intensitatEspai_at del forat:HoritzontalColor horitzontalHoritzontalmentFerraduraCàlidPunt calent _X:Punt calent _X:Càlid...Quantes unitats fan una polzada.Quant s'ha d'"enfosquir" l'ombrejatQuant s'han d'"enfosquir" les vores de cada traç de pinzellQuant s'ha de difuminar l'ombraToRotació del to de color:Variacions de tinta_Freqüència de to:Canvi de _fase to:To:Tant s'hi valIdentificadorFractal IFSOpcions de composició de fractal IFSFractal IFS: negreFractal IFS: blauFractal IFS: verdFractal IFS: vermellFractal IFS: destíITER:IWarpI_ntensitatI_nteractiuI_nverteix el bumpmapImatge i_nvertidaAï_llaIcona #%iDetalls de la iconaSi ho habiliteu, el GTM generarà un sols document HTML sencer amb els marcadors , , etc. en comptes de la taula html.Si ho habiliteu, el GTM remplaçarà les seccions rectangulars de blocs de color idèntic per una cel·la gran amb els valors de ROWSPAN i el COLSPAN.Si està habilitat, el mapatge començarà a la banda dreta, en comptes de a l'esquerra.Si no està habilitat, la imatge es mapejarà circularment dins d'un rectangle. Si s'habilita, el mapatge es farà dins un cercle.Si no està habilitat, el mapatge posarà la fila inferior al mig i la superior fora dels límits. Si s'habilita passarà a l'inrevés.Si habiliteu aquesta opció, els colors de valors més alts s'intercanviaran amb els de valors més baixos i viceversaSi habiliteu aquesta opció, la previsualització es redibuixarà automàticamentIl·lusióIl·lusió...Im_atgeImatgeImatge / paràmetres de sortidaComposa la imatgeSelecció de la imatgeMida de la imatgeTipus d'imatge_Tipus d'imatge:A_lçada de la imatge:Dimensions de la imatge: %d x %dLa imatge no és una imatge grisa (bpp=%d)Nom de la imatge:Ha canviat la mida de la imatge.Espa_iat de la imatge:Tipus d'imatge:Connector Imagemap 2.0Imatges de la part de dalt de les caresLes imatges tenen una mida diferentIm_porta caminsImporta els elements de camins SVG perquè es puguin fer servir amb l'eina de camí del GIMPPassos d'in_tegració:In_versPolzadaInclou les decoracionsIndexatTipus de paleta indexadaValor inicial:Tipus de tinta:Nivells d'entrada:Insereix un puntData d'insercióNombre enterIntensitatNivells d'intensitatIntensitat del color original quan l'il·lumina una font de llumEntrellaçaProcediment intern del GIMPInterseccióColor de la interseccióHi ha una cadena UTF-8 no vàlida en el fitxer PSDCadena UTF-8 invàlida en el fitxer de pinzell '%s'.Hi ha una cadena de text UTF-8 invàlida en el fitxer de patró '%s'.InversióInverteix la textura del paperIsomètricÉs altament recomenable afegir +i creeu una carpeta '%s', podeu desar els vostres propis GFlare's en aquesta carpeta.Editor del GFlareOpcions del GIFAvís GIFImatge GIFGIF: No es pot gestionar el tipus de composició GIF %d no documentat. Pot ser que l'animació no es reprodueixi o no es torni a desar perfectament.Extensió GIMPNavegador de l'ajuda del GIMPConnector del GIMPTaula màgica del GIMPConnector d'icones de Windows del GIMPPinzell del GIMPPinzell del GIMP (animat)Sembla ser corrupte el fitxer pinzell del GIMP.Els pinzells GIMP són en escala de grisos o bé RGBAImatge XJT comprimida del GIMPPatró del GIMP_LluentorLlindar ve_rd:Gamma:Difuminat gaussiàDifuminat gaussià...Gee-_SlimeGee-_ZoomGeneralOpcions generalsPreferències generalsOpcions generalsObté colors de mostraFigures (Gfig)Versió del Gimp-PrintGIMPressionismeMosaic òpticMosaic òptic...Opcions de pintura fosforescent_GrisAdquisicióC_aptura desprésCaptura una única finestraCapturala pantalla senceraDegradatDegradat GFlare...Mapa del degradat...Omple amb un degradat de colorMenú de selecció del mapa degradatEscala del degradat:DegradatsGràfica dels paràmteres actualsSuavitza les vores de la imatgeGrisMode grisOpcions de grisLlindar grisEscala de grisosVerdFreqüència de v_erd:Canvi de f_ase verd:Verd:GrisGraellaGraella granulosaDesplaçament de la graellaParàmetres de la graellaParàmetres de la graella...Tipus i visibilitat de la graellaColor de la graella:Paràmetres de la graella...Espaiat de la graella:Tipus de graella:GuiesLes guies són rectangles predefinits que cobreixen la imatge. Podeu definir-les per la seva amplada, alçada i espaiat d'una a l'altre. Això us permet crear ràpidament el tipus d'imatge més comú - col·lecció d'imatges de "miniatures", habilitada amb barres de navegació.Guies...Guillotina...HSVOpcions de la pàgina HTMLTaula HTML_Ressaltament:Re_ssaltaments_To_To:He_xàgonsAlçada (píxels):Alçada del paper on voleu imprimirAlçada:L'identificador d'ajuda '%s' és desconegutOn ha anat l'objecte?Previsualització d'alta _qualitatEls valors més alts incrementen la magnitud de l'efecteUns valors més alts fan que el que es ressalta estigui més focalitzatUns valors més alts fan que l'objecte es reflecteixi de manera més clara (sembla més clar)Els valors més alts restringeixen l'efecte a menys àrees de la imatgeRessaltament:Ressaltaments:Ret_ingueu els canals mínimsAmp_lada del forat:Base ho_ritzontal:Alçada d_el foratReté intensitatEspai_at del forat:HoritzontalColor horitzontalHoritzontalmentFerraduraCàlidPunt calent _X:Punt calent _X:Càlid...Quantes unitats fan una polzada.Quant s'ha d'"enfosquir" l'ombrejatQuant s'han d'"enfosquir" les vores de cada traç de pinzellQuant s'ha de difuminar l'ombraToRotació del to de color:Variacions de tinta_Freqüència de to:Canvi de _fase to:To:Tant s'hi valIdentificadorFractal IFSOpcions de composició del fractal IFSFractal IFS: negreFractal IFS: blauFractal IFS: verdFractal IFS: vermellFractal IFS: destíITER:Manualment (IWarp)I_ntensitatI_nteractiuI_nvertint les zones elevadesImatge i_nvertidaAï_llaIcona #%iDetalls de la iconaSi ho habiliteu, el GTM generarà un sols document HTML sencer amb els marcadors , , etc. en comptes de la taula html.Si ho habiliteu, el GTM remplaçarà les seccions rectangulars de blocs de color idèntic per una cel·la gran amb els valors de ROWSPAN i el COLSPAN.Si està habilitat, el mapatge començarà a la banda dreta, en comptes de a l'esquerra.Si no està habilitat, la imatge es mapejarà circularment dins d'un rectangle. Si s'habilita, el mapatge es farà dins un cercle.Si no està habilitat, el mapatge posarà la fila inferior al mig i la superior fora dels límits. Si s'habilita passarà a l'inrevés.Si habiliteu aquesta opció, els colors de valors més alts s'intercanviaran amb els de valors més baixos i viceversaSi habiliteu aquesta opció, la previsualització es redibuixarà automàticamentIl·lusió espiralIl·lusió espiral...Im_atgeImatgeImatge / paràmetres de sortidaComposa la imatgeSelecció de la imatgeMida de la imatgeTipus d'imatge_Tipus d'imatge:A_lçada de la imatge:Dimensions de la imatge: %d x %dLa imatge no és una imatge grisa (bpp=%d)Nom de la imatge:Ha canviat la mida de la imatge.Espa_iat de la imatge:Tipus d'imatge:Imatges de la part de dalt de les caresLes imatges tenen una mida diferentIm_porta caminsImporta els elements de camins SVG perquè es puguin fer servir amb l'eina de camí del GIMPPassos d'in_tegració:In_versPolzadaInclou les decoracionsIndexatTipus de paleta indexadaValor inicial:Tipus de tinta:Nivells d'entrada:Insereix un puntData d'insercióNombre enterIntensitatNivells d'intensitatIntensitat del color original quan l'il·lumina una font de llumEntrellaçaProcediment intern del GIMPInterseccióColor de la interseccióHi ha una cadena UTF-8 no vàlida en el fitxer PSDCadena UTF-8 invàlida en el fitxer de pinzell '%s'.Hi ha una cadena de text UTF-8 invàlida en el fitxer de patró '%s'.InversióInverteix la textura del paperIsomètricÉs altament recomenable afegir (gimpressionist-path "%s") -(o semblant) al vostre fitxer gimprc.Iteracions:JNGJNG + Delta PNGQualitat de compressió JPEG:Imatge JPEGPrevisualització JPEGParàmetres de qualitat del JPEGFactor de suavitzat JPEG:EncaixEstil d'enllaçJuliaConserva els camps _parellsConserva els valors de les imatgesConserva els camps _senarsManté l'originalConserva el primer valorLABLZ77Com_ençamentMarge _esquerreLong_itud:L_inealLambdaVerticalLaplaceLaplace...3x3 _granLa capa %s no té un canal alfa, s'han omèsTipus de capa de fons. En copiar la capa anterior es copia abans que el dibuix estigui acabatEsquerraVora esquerraEsquerra:Efecte de lentMenys estable:Permet que la direcció des del centre determini la direcció del traçPermet que la direcció des del centre determini la mida del traçPermet que el valor (lluminositat) de la regió determini la direcció del traçPermet que el valor (lluminositat) de la regió determini la mida del traçNivellLlumLlum 1Llum 2Llum 3Llum 4Llum 5Llum 6Paràmetres de la llum_Direcció de la llum:Intensitat de llumDirecció de la font de llum X en l'espai XYZPosició de la font de llum X en l'espai XYZDirecció de la font de llum Y en l'espai XYZPosició de la font de llum Y en l'espai XYZDirecció de la font de llum Z en l'espai XYZPosició de la font de llum Z en l'espai XYZMés clarMés clar:Efectes de llumEfectes de llum...Preconfiguració de llum:Color de la font de llum:Tipus de font de llum:LíniaForma de la líniaLinealTipus d'enllaçVisualització de la llistaLlangardaixGraons lla_rgsMarge _inferiorCarrega els paràmetres del mesclador de canalCarrega els punts de la corba del fitxerCarrega un fitxer FITSCarrega la flamaCarrega els paràmetres fractalsCarrega la col·lecció d'objectes GfigCarrega el mapa de la imatgeCarrega la paleta KissCarrega la preconfiguració de la llumCarrega els paràmetres des deCarrega el PostScriptCarrega el fitxer QBECarrega un fractal des del fitxerCarrega les corbes del fitxerS'està carregant la captura de pantalla...Bloca els _llindarsLogarítmicBucleInferior esquerraInferior dretBaixa l'objecte seleccionatBaixa l'objecte seleccionat al capdavallL_lindar més baix:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Llindar de lluminosi_tat:Freqüència de ll_uminositat:Canvi de fa_se lluminositat::Opcions del MNGAnimació MNGValor m_àxim:Profunditat mà_xima:Alçada mà_xima:Magen_taMagentaMagenta:Magenta_KMapa de magnitud:Opcions principalsFes transparent la imatge de destinació on l'alçada bump és zeroFes que la imatge sigui transparent tret de l'objecteGuerrerMandelbrotParàmetres de MandelbrotManualS'especifica l'orientació del traç de forma manualS'especifica manualment la mida del traçRang del mapa de colorsImatges del mapa a les cares del quadreMapeja l'_objecte...Format de fitxer de mapa_Mapeja des d'amuntMapeja a quadre...Mapeja a cilindre...Mapa a l'objecteMapeja a plànol...Mapeja a esfera...Mapeja a:S'estan mapejant els colors...MarbreFitxer màscaraPropietats del materialMatriuMàx (x+d, -)Màx (x+d, -), (0.5 < x)Màx (x+d, -), (x < 0.5)Màx (x, -)Màx (x-d, -)Màx (x-d, -), (0.5 < x)Màx (x-d, -), (x < 0.5)RGB màximRGB màxim...Desfés al màxim:Memòria màx.:Alçada màxima dels bumpsMida màxima:LaberintMida del medi:Font del medi:Tipus de medi:MedianaMenúCamí de menúCamí/nom del menúFusiona els camins importatsS'està combinant...Fitxer WMF de MicrosoftIcona de Microsoft WindowsCliqueu amb el botó del mig dins la previsualització per triar "Des del color"Tons mitjans:Mín (x+d, -)Mín (x+d, -), (0.5 < x)Mín (x+d, -), (x < 0.5)Mín (x, -)Mín (x-d, -)Mín (x-d, -), (0.5 < x)Mín (x-d, -), (x < 0.5)Mida mínima:Reflexa la corba activa a l'altra voraDisposicions diverses:Mo_difica el canal verdMo_difica el canal saturacióVelocitat de modificació:Mod_ifica el canal blauMod_ifica el canal lluminositatModeMode _1Mode _2Modifica les corbesMés opa_cMés opcions avançadesMés estable:Més _blanc (valor més alt)Més negre (valor més bai_x)Més t_ransparentMosàicDifuminació de movimentDifuminació de moviment...MouMou cap avallMou a la bandaMou els objectes seleccionatsMou cap endavantMou cap a daltMou només un puntMou un objecteMovimentMúltiple (57):Multiplica el grau (0,1)Multiplica el valor aleatori (0,1)Multiplica el valor aleatori (0,2)Distància de mutació:Velocitat de mutació:El meu primer fractalFiltre NLFiltre NL...NomDetecció de neóNeó...Nou fractalNou GFlareUnitat novaNova impressora...Nova llavor_Foto de diari...Foto de diariFoto de diari...No hi ha cap %s al gimprc: +(o semblant) al vostre fitxer gimprc.Iteracions:JNGJNG + Delta PNGQualitat de compressió JPEG:Imatge JPEGPrevisualització JPEGParàmetres de qualitat del JPEGFactor de suavitzat JPEG:PuzzleEstil d'enllaçJuliaKISS CELConserva els camps _parellsConserva els valors de les imatgesConserva els camps _senarsManté l'originalConserva el primer valorLABLZ77Com_ençamentMarge _esquerreLong_itud:L_inealLambdaVerticalLaplaceLaplace...3x3 _granLa capa %s no té un canal alfa, s'han omèsTipus de capa de fons. En copiar la capa anterior es copia abans que el dibuix estigui acabatEsquerraVora esquerraEsquerra:Efecte de lentMenys estable:Permet que la direcció des del centre determini la direcció del traçPermet que la direcció des del centre determini la mida del traçPermet que el valor (lluminositat) de la regió determini la direcció del traçPermet que el valor (lluminositat) de la regió determini la mida del traçNivellLlumLlum 1Llum 2Llum 3Llum 4Llum 5Llum 6Paràmetres de la llum_Direcció de la llum:Intensitat de la llumDirecció de la font de llum X en l'espai XYZPosició de la font de llum X en l'espai XYZDirecció de la font de llum Y en l'espai XYZPosició de la font de llum Y en l'espai XYZDirecció de la font de llum Z en l'espai XYZPosició de la font de llum Z en l'espai XYZMés clarMés clar:Afegeix llumsAfegeix llums...Preconfiguració de llum:Color de la font de llum:Tipus de font de llum:LíniaForma de la líniaLinealTipus d'enllaçVisualització de la llistaLlangardaixGraons lla_rgsMarge _inferiorCarrega els paràmetres del mesclador de canalCarrega els punts de la corba del fitxerCarrega un fitxer FITSCarrega la flamaCarrega els paràmetres del fractalCarrega la col·lecció d'objectes GfigCarrega el mapa de la imatgeCarrega la paleta KissCarrega la preconfiguració de la llumCarrega els paràmetres des deCarrega el PostScriptCarrega el fitxer QBECarrega un fractal des del fitxerCarrega les corbes del fitxerS'està carregant la captura de pantalla...Bloca els _llindarsLogarítmicBucleInferior esquerraInferior dretBaixa l'objecte seleccionatBaixa l'objecte seleccionat al capdavallL_lindar més baix:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Llindar de lluminosi_tat:Freqüència de ll_uminositat:Canvi de fa_se lluminositat::Opcions del MNGAnimació MNGValor m_àxim:Profunditat mà_xima:Alçada mà_xima:Magen_taMagentaMagenta:Magenta_KMapa de magnitud:Opcions principalsFes transparent la imatge de destinació on l'alçada sigui zeroFes que la imatge sigui transparent tret de l'objecteGuerrerMandelbrotParàmetres de MandelbrotManualS'especifica l'orientació del traç de forma manualS'especifica manualment la mida del traçSubstitueix un grup de colorsImatges del mapa a les cares del quadreMapa _3D...Format de fitxer de mapa_Mapeja des d'amuntMapeja a quadre...Mapeja a cilindre...Mapeja l'objecteMapeja a plànol...Mapeja a esfera...Mapeja a:Substitueix un _grup de colors...MarbreFitxer màscaraPropietats del materialMatriuMàx (x+d, -)Màx (x+d, -), (0.5 < x)Màx (x+d, -), (x < 0.5)Màx (x, -)Màx (x-d, -)Màx (x-d, -), (0.5 < x)Màx (x-d, -), (x < 0.5)RGB màximRGB màxim...Desfés al màxim:Memòria màx.:Alçada màxima de les zones elevadesMida màxima:LaberintMida del medi:Font del medi:Tipus de medi:MedianaMenúCamí de menúCamí/nom del menúFusiona els camins importatsS'està suavitzant...Fitxer WMF de MicrosoftIcona de Microsoft WindowsCliqueu amb el botó del mig dins la previsualització per triar "Des del color"Tons mitjans:Mín (x+d, -)Mín (x+d, -), (0.5 < x)Mín (x+d, -), (x < 0.5)Mín (x, -)Mín (x-d, -)Mín (x-d, -), (0.5 < x)Mín (x-d, -), (x < 0.5)Mida mínima:Reflexa la corba activa a l'altra voraDisposicions diverses:Mo_difica el canal verdMo_difica el canal saturacióVelocitat de modificació:Mod_ifica el canal blauMod_ifica el canal lluminositatModeMode _1Mode _2Modifica les corbesMés opa_cMés opcions avançadesMés estable:Més _blanc (valor més alt)Més negre (valor més bai_x)Més t_ransparentMosaicDifuminat per movimentDifuminat per moviment...MouMou cap avallMou a la bandaMou els objectes seleccionatsMou cap endavantMou cap a daltMou només un puntMou un objecteMovimentMúltiple (57):Multiplica el grau (0,1)Multiplica el valor aleatori (0,1)Multiplica el valor aleatori (0,2)Distància de mutació:Velocitat de mutació:El meu primer fractalFiltre NLFiltre NL...NomDetecció de neóNeó...Nou fractalNou GFlareUnitat novaNova impressora...Nova llavor_Foto de diari...Foto de diariFoto de diari...No hi ha cap %s al gimprc: Us cal afegir una entrada com (%s "%s") -al vostre fitxer %s.Sense colorsSense compressióNo s'a capturat cap dadaSense emplenamentSense llumCap coincidènciaNo hi ha cap selecció per convertirNo hi ha cap extensió reconeguda; s'intentarà esbrinar el tipus de fitxer.No hi ha cap extensió reconeguda; es desarà com a XCF comprimit.Nº abai_x:SorollPíxels no quadrats. La imatge pot semblar aplastada.CapNormalNormal:S'està normalitzant...Res a escapçar.Nombre de colorsNombre d'entrades més _recents (1-16):Nombre de segmentsNombre de mosàicsNombre de _marcs:N_ombre de nivells per desfer (1 - 99):Nombre de cel·les:Nombre de colors:Nombre de cicles cobrint tot l'abast de valorsNombre de peces que passenNombre de peces que cauenNombre de vegades que cal aplicar el filtreNombre de colors únics: %dS'està numerant_Desplaçament:_Només el primer plaO_pacitat:O_pcionsO_rientacióAl_tresS_ortida LPI:Canal de s_ortida:Su_perposa:Su_perposaSo_bremostra:Detalls de l'objectePosició de l'objecte X en l'espai XYZPosició de l'objecte Y en l'espai XYZPosició de l'objecte Z en l'espai XYZOc_tàgons i quadratsDe_splaçament:Desplaçament (1)_Angle de desplaçament:Desplaçament de tots els vectors amb un angle donatDesplaçament:Pintura a l'oli...Oli_fica...OlificaA les vores:En la pel·lícula:A les vores:Un marc per capa (substitueix)Només _el fonsNomés un únic colorOp_acitat:Estimació òp_timaOp_cionsOpacitat:ObreObre el fitxerObre el fitxer fractal IFSNo s'ha pogut obrirObre el recentS'està obrint '%s'...S'està obrint miniatura per a '%s'...Obre l'editor de mapes d'orientacióObre l'editor del mapa de midesOptimitzaOptimitza (per a _GIF)Optimitza la sortida per al tipus d'imatge que s'imprimiràS'està optimitzant l'animació...OpcionsOr_ientacióOr_igen a baix a l'esquerraOrientacióEditor de mapes d'orientacióOrientació:OriginalIntensitat originalOriginal:Al_tresAltres opcionsSortidaNivells de sortida:Tipus de sortida:Tipus exteriorSuperposaI(ntensitat, factor):Document PDFImatge PGMPNGPNG + Delta PNGNivell de compressió PNG:Imatge PNGImatge PNMImatge PNMEn desar amb PNM no es poden gestionar imatges amb canals alfa.PNM: S'ha produït un error en llegir el fitxer.PNM: la resolució X no és vàlida.PNM: la resolució Y no és vàlida.PNM: el fitxer no és vàlid.PNM: el valor màxim no és vàlid.PNM: final prematur del fitxer.Fitxer PPD:PPPImatge PPMPS diamantPS quadrat (punt euclidià)P_aperCoordenades p_olars...P_revisualitzaPàgina %dRínxol de pàgina...Configuració de pàginaS'ha produït un error en PageSetupDlg: %dEfecte rínxolPàgines:Mode de pintura:Imatge del Paint Shop ProPinta les voresS'està pintant...Fitxer de pal_eta:PaletaMosàic del paperMosàic del paper...Paràmetre k:ParàmetresEls paràmetres s'han desat a '%s'S'ha produït un error en analitzar '%s': -%sEnganxaEnganxa del porta-retallsEnganxatS'està enganxant...Omple amb el patróPercentatgePercentatge de _negre:Percentatge de _blanc:Percentatge de píxels que es filtraranAngle de fase. Abast: 0-360PhongFotocòpiaFotografiaImatge del PhotoshopPeces:Ping-pongAlçada del pí_xel:Am_plada del píxel:Escalat del valor dels píxelsPixelitzaS'està pixelitzant...PíxelsEmpl_açamentSitúa els traços aleatòriament al voltant de la imatgeEmplaçamentPlanar (RRR,GGG,BBB)RGB planarPlànolPlasmaPlasma...Reprodueix/aturaReproducció:Comproveu la vostra instal·lació.Traça una gràfica dels paràmetresNavegador del connectorPluralPo_larització:PuntPunt de llumPolarPolaritzaS'està polaritzant...PolígonHoritzontalPosicióPosició X:Posició Y:Posició Z:Posició de la imatge en la pàgina. +al vostre fitxer %s.Sense colorsSense compressióNo s'a capturat cap dadaSense emplenamentSense llumCap coincidènciaNo hi ha cap selecció per convertirNo hi ha cap extensió reconeguda; s'intentarà esbrinar el tipus de fitxer.No hi ha cap extensió reconeguda; es desarà com a XCF comprimit.Nº abai_x:SorollPíxels no quadrats. La imatge pot semblar aplastada.CapNormalNormal:S'està normalitzant...Res a escapçar.Nombre de colorsNombre d'entrades més _recents (1-16):Nombre de segmentsNombre de mosaicsNombre de _marcs:N_ombre de nivells per desfer (1 - 99):Nombre de cel·les:Nombre de colors:Nombre de cicles cobrint tot l'abast de valorsNombre de peces que passenNombre de peces que cauenNombre de vegades que cal aplicar el filtreNombre de colors únics: %dS'està numerant_Desplaçament:_Només el primer plaO_pacitat:O_pcionsO_rientacióAl_tresS_ortida LPI:Canal de s_ortida:Su_perposa:Su_perposaSo_bremostra:Detalls de l'objectePosició de l'objecte X en l'espai XYZPosició de l'objecte Y en l'espai XYZPosició de l'objecte Z en l'espai XYZOc_tàgons i quadratsDe_splaçament:Desplaçament (1)_Angle de desplaçament:Desplaçament de tots els vectors amb un angle donatDesplaçament:Pintura a l'oli...Pintura a l'_oli...Pintura a l'oliA les vores:En la pel·lícula:A les vores:Un marc per capa (substitueix)Només _el fonsNomés un únic colorOp_acitat:Estimació òp_timaOp_cionsOpacitat:ObreObre el fitxerObre el fitxer fractal IFSNo s'ha pogut obrirObre el recentS'està obrint '%s'...S'està obrint miniatura per a '%s'...Obre l'editor de mapes d'orientacióObre l'editor del mapa de midesOptimitzaOptimitza (per a _GIF)Optimitza la sortida per al tipus d'imatge que s'imprimiràS'està optimitzant l'animació...OpcionsOr_ientacióOr_igen a baix a l'esquerraOrientacióEditor de mapes d'orientacióOrientació:OriginalIntensitat originalOriginal:Al_tresAltres opcionsSortidaNivells de sortida:Tipus de sortida:Tipus exteriorSuperposaI(ntensitat, factor):Document PDFImatge PGMPNGPNG + Delta PNGNivell de compressió PNG:Imatge PNGImatge PNMImatge PNMEn desar amb PNM no es poden gestionar imatges amb canals alfa.PNM: S'ha produït un error en llegir el fitxer.PNM: la resolució X no és vàlida.PNM: la resolució Y no és vàlida.PNM: el fitxer no és vàlid.PNM: el valor màxim no és vàlid.PNM: final prematur del fitxer.Fitxer PPD:PPPImatge PPMPS diamantPS quadrat (punt euclidià)P_aperCoordenades _polars...P_revisualitzaPàgina %dRínxol de pàgina...Configuració de pàginaS'ha produït un error en PageSetupDlg: %dEfecte rínxolPàgines a carregar (p.e. 1-4 o 1,3,5-7)Pàgines:Mode de pintura:Imatge del Paint Shop ProPinta les voresS'està pintant...Fitxer de pal_eta:PaletaRetalls de paperRetalls de paper...Paràmetre k:ParàmetresEls paràmetres s'han desat a '%s'S'ha produït un error en analitzar '%s': +%sEnganxaEnganxa del porta-retallsEnganxatS'està enganxant...Omple amb el patróPercentatgePercentatge de _negre:Percentatge de _blanc:Percentatge de píxels que es filtraranAngle de fase. Abast: 0-360PhongFotocòpiaFotografiaImatge del PhotoshopPeces:Ping-pongAlçada del pí_xel:Am_plada del píxel:Escalat del valor dels píxelsPixelitzaS'està pixelitzant...PíxelsEmpl_açamentSitúa els traços aleatòriament al voltant de la imatgeEmplaçamentPlanar (RRR,GGG,BBB)RGB planarPlànolPlasmaPlasma...Reprodueix/aturaReproducció:Comproveu la vostra instal·lació.Traça una gràfica dels paràmetresGestor de connectorsPluralPo_larització:PuntPunt de llumPolarPolaritzaS'està polaritzant...PolígonHoritzontalPosicióPosició X:Posició Y:Posició Z:Posició de la imatge en la pàgina. Cliqueu i arrosegueu amb el botó primari per posicionar la imatge. Cliqueu i arrosegueu amb el botó secundari per moure la imatge amb precissió fina; cada unitat de moviment mou un punt (1/72") la imatge. Cliqueu i arrosegueu amb el botó terciari (el del mig) per moure la imate en unitats de la mida de la imatge. Mantenir premuda la tecla Maj mentre cliqueu i arrossegueu, restricciona la imatge a només moviment horitzontal o vertical. Si cliqueu qualsevol botó mentre arrossegueu el ratolí, la imatge tornarà a la seva posició original.Document PostscriptLa funció de desar del PostScript no pot gestionar imatges amb canals alfaPre_visualitzacióPreferènciesPreserva la _lluminositatPreserva la imatge original com a fonsPrevisualitzaPrevisualitza la midaMida de previ_sualització:Previsualitza metre arroseguesPredefineixAlgorisme de la trama:Imprimeix l'ajust del colorImprimeix i -desa els paràmetresImprimeix en blanc i negre (sense color ni ombres grises)Imprimeix en ombres de gris fent servir tintes negresImprimeix a un fitxerS'ha produit un error un error en PrintDlg: %dModel d'impressora:Paràmetres de la impressoraLa impressora no accepta els mapes de bitsModel d'impressora:Nom de la impressora:S'està imprimint...Degradat de la probabilitat:Navegador de procediments_Navegador de procedimentsProgressiuPropagaS'està propagant el canal del valorS'està propagant el canal _alfaQbist ...Qualitat:R, G, B (normal)RGBTipus de desat RGBRGBAL'RGBA/GRAYA dibuixable no està seleccionat.RLECompressió RLER_adi 2:R_adi:To _aleatori:Llavor _aleatòria:_Aleatorietat (%):R_ecursiuV_ermellLlindar v_ermell:R_epeteix:Invert_eixRadialDegradat radial:RadiansRadians/PiRadiRadi:Puja l'objecte seleccionatPuja l'objecte seleccionat al capdamuntSaturació a_leatòria:AleatoriRandom Hurl 1.7Random Pick 1.7Llavor aleatòria:Random Slur 1.7_Llavor aleatòria:LLavor aleatòriaAleatoris compartitsAleatori, indep. del canalAleatòriamentAleatoris des de llavorAleatoris des de llavor (compartit)Abast llarg:Abast curt:Rangs:En brutDades d'imatge sense formatCarregador d'imatges sense formatDesa imatge sense formatOpcions de pintura dels raigsTorna a _centrar_VermellLlegeix la preconfiguració seleccionada dins la memòriaPrevisualització en temps realTorna a calcular el centreTornar a calcular la imatge de la visualització prèviaRectangleVermell_Freqüència de vermell:Canvi de _fase vermell:Vermell:Vermellor_cr470:Vermellor_cr470f:Vermellor_cr709:Vermellor_cr709f:RefésTorna a fer la darrera ampliacióRedibuixaRedibuixa la previsualitzacióRedueix la _lluminositatRedueix la _saturacióReflexióRefresca la finestra de visualització prèviaPolígon regular, nombre de caresEnllaç relati_uProbabilitat relativa:Alliberat sota la llicència pública general GNURelleu:Torna a fer el mapa acolorit..._SuprimeixS'està suprimint el fons de l'animació...S'està suprimint el color...Composa la flamarada...Composa els gràfics de vectors escalables (SVG)Composa un metafitxer del WindowsOpcions de composicióSVG composatWMF composatS'està generant la imatgeS'està generant una ventada...S'està composant el fractal...S'està composant l'IFS (%d/%d)...S'està composant un SVG...S'està composant l'esfera...S'està generant la Supernova...S'estan executant els mosàics...S'està generant el vent...SubstitueixTorna a llegir la carpeta de predefinitsExplora els degradatsTorna a escanejar els fractalsReestableix els paràmetres predeterminatsReinicia la corba activaVoleu redimensionar l'àrea?ResolucióResolució i qualitat de la impressióResolució:Límit de guies resultant: %d,%d a %d,%d (%d àrees)Límit de guies resultant: 0,0 a 0,0 (0 àrees)Retinex (4/4): actualitzat...Millora de la imatge RetinexRetinex...Retinex: s'està filtrant...Torna els valorsTorna a la imatge originalRebobinaDretaMarge dret:Vora dretaDreta:So de marSo de mar...Ro_tació:_Fila:Roberts_Gira:GiraGira / escalaRotació en X:Rotació en Y:Rotació en Z:RotatS'està rotant el mapa de colors...S'està rotant...RotacióRotació de l'angle sobre l'eix XRotació de l'angle sobre l'eix YRotació de l'angle sobre l'eix ZAngle de rotació:Rotació:AsprorRodóCodificació RunLenghtImatge de fitxer raster de SUNEn desar, el SUNRAS no pot gestionar les imatges amb canals alfaEl fitxer SVG no -especifica una midaDis_persa HSV...S_egon color:S_elecciona la finestra desprésS_elecciona aquí:S_elector_Mostra el cursor_EncongeixS_inusE_xp. de força:In_tensitat:Ra_tllatAss_umpte:Interca_nviaArremolina en sentit anti_horariDesa el canal _alfa (RGBA/RGB)IgualAnalitza la mostra...Acoloreix la mostra_Densitat de la mostra:Mostra:Exemples de color des del píxel del centre del pinzellSat_uracióSatu_racióSaturacióVariacions de saturació Fr_eqüència de saturació:Canvi de f_ase saturació:Saturació:DesaDesa -els paràmtresDesa (transformació mitjana) com a fitxer QBEDesa el pinzellDesa els paràmetres del mesclador de canalDesa l'actualDesa els punts de la corba al fitxerDesa dades EXIFDesa el fitxerDesa la flamaDesa els paràmetres dels fractalsDesa el dibuix GfigDesa el mapa de la imatgeDesa la preconfiguració de la llumDesa els paràmetres aDesa el color de _fonsDesa el valor dels _colors dels píxels transparentsDesa la _gammaDesa la _resolucióDesa el fractal actiu al fitxerDesa com a BMPDesa com a escombraDesa com a conducte pinzellDesa com a codi font CDesa en format GIFDesa com a fitxer fractal IFSDesa com a JPEGDesa com a MNGDesa com a PNGDesa com a PNMDesa com a PSPDesa com a patróDesa com a PostScriptDesa com a SGIDesa com a SUNRASDesa com a TGADesa com a TIFFDesa com a textDesa com a XBMDesa com a XJTDesa com a XPMDesa el color de fonsDesa els _valors de color dels píxels transparentsDesa el come_ntariDesa el momen_t de creacióDesa el moment de creacióDesa l'actual...No s'ha pogut desarDesa la gammaDesa el des_plaçament de la capaDesa la resolucióDesa la configuració actual al fitxer especificatDesa les corbes al fitxerDesa la miniaturaDesatS'està desant '%s'...Den_t de serraEsc_ala 1:Dis_persió:Esca_la 2:Imatge SVG escalableEscala el to per:Escala el valor per:Escala X:Escala Y:Escala Z:Escala per:Escala la impressió al nombre de punts per polzadaEscala la impressió a la mida de la pàginaEscala:Escalatge:Dispersa HSVDispersa RGBS'està dispersant HSV...PantallaMostra la pantallaNomés la se_leccióCerca per _ressenyaCerca per _nomS'està cercant. Espereu-vosS'està cercant per ressenya. Espereu-vosS'està cercant per nom. Espereu-vosVista marinaSegon color de destinacióOpcions de pintura de les flamarades secundàriesSegon color fontSegon colorSegons de retardSegons de retardLlavor del aleatòri (només per als modes "Des de llavor")Llavor:Selecció en con_textSeleccionaSelecciona totSelecciona el colorTria el color de la pel·lículaSelecciona el fitxer htmlSelecciona el fitxer imatgeSelecciona la següentTria el color del nombreSeleccioneu el fitxer de paleta a carregarSeleccioneu els píxels perSelecciona l'anteriorSelecciona la regióSeleccion_a-ho totSeleccion_a-ho totSelecciona-ho totSeleccioneu un objecteSelecciona la regió contíguaSelecciona les regions contígüesSelecciona l'àrea existentSeleccioneu una carpeta i torneu a escanejar la col·leccióSeleccioneu el color de la font de llumSeleccioneu el vector sm següentSeleccioneu el vector següentSeleccioneu el vector sm anteriorSeleccioneu el vector anteriorSeleccioneu la unitat bàsica de mesura per a la impressióSeleccioneu el tipus de sortida desitjadaSeleccioneu el nom de la impressora (no el tipus ni el model) on voleu imprimirSeleccioneu l'orientació: vertical, horitzontal, invertit en vertical o invertit en horitzontalSeleccioneu si l'escalat es mesura com a percentatge de la mida de pàgina disponible o el nombre de punts per polzadaSeleccioneu el vostre model d'impressoraSeleccioneu:Seleccionat:SeleccióParàmetres avançats de la selecció a camíNo s'ha donat la mida de la selecció. +desa els paràmetresImprimeix en blanc i negre (sense color ni ombres grises)Imprimeix en ombres de gris fent servir tintes negresImprimeix a un fitxerS'ha produit un error un error en PrintDlg: %dModel d'impressora:Paràmetres de la impressoraLa impressora no accepta els mapes de bitsModel d'impressora:Nom de la impressora:S'està imprimint...Degradat de la probabilitat:Gestor de funcionsGestor de _funcionsProgressiuPropagaS'està propagant el canal del valorS'està propagant el canal _alfaQbist ...Qualitat:R, G, B (normal)RGBTipus de desat RGBRGBAL'RGBA/GRAYA dibuixable no està seleccionat.RLECompressió RLER_adi 2:R_adi:To _aleatori:Llavor _aleatòria:_Aleatorietat (%):R_ecursiuV_ermellLlindar v_ermell:R_epeteix:Invert_eixRadialDegradat radial:RadiansRadians/PiRadiRadi:Puja l'objecte seleccionatPuja l'objecte seleccionat al capdamuntSaturació a_leatòria:AleatoriRandom Hurl 1.7Random Pick 1.7Llavor aleatòria:Random Slur 1.7_Llavor aleatòria:LLavor aleatòriaAleatoris compartitsAleatori, indep. del canalAleatòriamentAleatoris des de llavorAleatoris des de llavor (compartit)Abast llarg:Abast curt:Rangs:En brutDades d'imatge sense formatCarregador d'imatges sense formatDesa imatge sense formatOpcions de pintura dels raigsTorna a _centrar_VermellLlegeix la preconfiguració seleccionada dins la memòriaPrevisualització en temps realTorna a calcular el centreTornar a calcular la imatge de la visualització prèviaRectangleVermell_Freqüència de vermell:Canvi de _fase vermell:Vermell:Vermellor_cr470:Vermellor_cr470f:Vermellor_cr709:Vermellor_cr709f:RefésTorna a fer la darrera ampliacióRedibuixaRedibuixa la previsualitzacióRedueix la _lluminositatRedueix la _saturacióReflexióRefresca la finestra de visualització prèviaPolígon regular, nombre de caresEnllaç relati_uProbabilitat relativa:Alliberat sota la llicència pública general GNURelleu:Torna a fer el mapa acolorit..._SuprimeixS'està suprimint el fons de l'animació...S'està suprimint el color...Crea el punt de llum...Composa els gràfics de vectors escalables (SVG)Composa un metafitxer del WindowsOpcions de composicióSVG composatWMF composatS'està generant la imatgeS'està generant una ventada...S'està composant el fractal...S'està composant l'IFS (%d/%d)...S'està composant un SVG...S'està composant l'esfera...S'està generant la Supernova...S'estan composant els mosiacs...S'està generant el vent...SubstitueixTorna a llegir la carpeta de predefinitsExplora els degradatsTorna a escanejar els fractalsReestableix els paràmetres predeterminatsReinicia la corba activaVoleu redimensionar l'àrea?ResolucióResolució i qualitat de la impressióResolució:Límit de guies resultant: %d,%d a %d,%d (%d àrees)Límit de guies resultant: 0,0 a 0,0 (0 àrees)Retinex (4/4): actualitzat...Millora de la imatge RetinexRetinex...Retinex: s'està filtrant...Torna els valorsTorna a la imatge originalRebobinaDretaMarge dret:Vora dretaDreta:Onades del marS'estan fent les onades de mar...Ro_tació:_Fila:Roberts_Gira:GiraGira / escalaRotació en X:Rotació en Y:Rotació en Z:RotatS'està rotant el mapa de colors...S'està rotant...RotacióRotació de l'angle sobre l'eix XRotació de l'angle sobre l'eix YRotació de l'angle sobre l'eix ZAngle de rotació:Rotació:AsprorRodóCodificació RunLenghtImatge de fitxer raster de SUNEn desar, el SUNRAS no pot gestionar les imatges amb canals alfaEl fitxer SVG no +especifica una midaDispersa _HSV...S_egon color:S_elecciona la finestra desprésS_elecciona aquí:S_elector_Mostra el cursor_EncongeixS_inusE_xp. de força:In_tensitat:Ra_tllatAss_umpte:Interca_nviaArremolina en sentit anti_horariDesa el canal _alfa (RGBA/RGB)IgualAnalitza la mostra...Acoloreix la mostra_Densitat de la mostra:Mostra:Exemples de color des del píxel del centre del pinzellSat_uracióSatu_racióSaturacióVariacions de saturació Fr_eqüència de saturació:Canvi de f_ase saturació:Saturació:DesaDesa +els paràmtresDesa (transformació mitjana) com a fitxer QBEDesa el pinzellDesa els paràmetres del mesclador de canalDesa l'actualDesa els punts de la corba al fitxerDesa dades EXIFDesa el fitxerDesa la flamaDesa els paràmetres dels fractalsDesa el dibuix GfigDesa el mapa de la imatgeDesa la preconfiguració de la llumDesa els paràmetres aDesa el color de _fonsDesa el valor dels _colors dels píxels transparentsDesa la _gammaDesa la _resolucióDesa el fractal actiu al fitxerDesa com a BMPDesa com a escombraDesa com a conducte pinzellDesa com a codi font CDesa en format GIFDesa com a fitxer fractal IFSDesa com a JPEGDesa com a MNGDesa com a PNGDesa com a PNMDesa com a PSPDesa com a patróDesa com a PostScriptDesa com a SGIDesa com a SUNRASDesa com a TGADesa com a TIFFDesa com a textDesa com a XBMDesa com a XJTDesa com a XPMDesa el color de fonsDesa els _valors de color dels píxels transparentsDesa el come_ntariDesa el momen_t de creacióDesa el moment de creacióDesa l'actual...No s'ha pogut desarDesa la gammaDesa el des_plaçament de la capaDesa la resolucióDesa la configuració actual al fitxer especificatDesa les corbes al fitxerDesa la miniaturaDesatS'està desant '%s'...Den_t de serraEsc_ala 1:Dis_persió:Esca_la 2:Imatge SVG escalableEscala el to per:Escala el valor per:Escala X:Escala Y:Escala Z:Escala per:Escala la impressió al nombre de punts per polzadaEscala la impressió a la mida de la pàginaEscala:Escalatge:Dispersa HSVDispersa RGBS'està dispersant HSV...PantallaMostra la pantallaNomés la se_leccióCerca per _ressenyaCerca per _nomEspereu mentres s'està cercantEspereu mentres s'està cercant per ressenyaEspereu mentres s'està cercant per nomVista marinaSegon color de destinacióOpcions de pintura de les flamarades secundàriesSegon color fontSegon colorSegons de retardSegons de retardLlavor del aleatòri (només per als modes "Des de llavor")Llavor:Selecció en con_textSeleccionaSelecciona totSelecciona el colorTria el color de la pel·lículaSelecciona el fitxer htmlSelecciona el fitxer imatgeSelecciona la següentTria el color del nombreSeleccioneu el fitxer de paleta a carregarSeleccioneu els píxels perSelecciona l'anteriorSelecciona la regióSeleccion_a-ho totSeleccion_a-ho totSelecciona-ho totSeleccioneu un objecteSelecciona la regió contíguaSelecciona les regions contígüesSelecciona l'àrea existentSeleccioneu una carpeta i torneu a escanejar la col·leccióSeleccioneu el color de la font de llumSeleccioneu el vector sm següentSeleccioneu el vector següentSeleccioneu el vector sm anteriorSeleccioneu el vector anteriorSeleccioneu la unitat bàsica de mesura per a la impressióSeleccioneu el tipus de sortida desitjadaSeleccioneu el nom de la impressora (no el tipus ni el model) on voleu imprimirSeleccioneu l'orientació: vertical, horitzontal, invertit en vertical o invertit en horitzontalSeleccioneu si l'escalat es mesura com a percentatge de la mida de pàgina disponible o el nombre de punts per polzadaSeleccioneu el vostre model d'impressoraSeleccioneu:Seleccionat:SeleccióParàmetres avançats de la selecció a camíNo s'ha donat la mida de la selecció. El laberint de mosaic no s'executarà perfectament.Selecció a camí...Difuminat gaussià selectiuDifuminat gaussià selectiu...Paràmetres de càrrega selectivaCarrega selectivament des deSelecciona aleatòriament una direcció de cada traçSelecciona una mida aleatòria per cada traçSeleccioneu-lo si la imatge resultant hauria de semblar-se a un mosaicSeleccioneu-lo per situar tots els traços a l'exterior de les vores de la imatgeS'està semiaplanant...Envia cap endarrereEnvia com a correuSepara a:31 de setembre de 1999Definiu la font de color de la llumDefiniu els centímetres com a unitat de mesuraDefiniu les polzades com a unitat de mesuraDefiniu la brillantor de la impressió. -El 0 és negre sòlid, el 2 és blanc sòlid.Definiu el contrast de la impressióDefiniu l'alçada de la impressióDefiniu la mida de la impressió a la mida de la imatgeDefiniu l'escala (mida) de la imatgeDefiniu l'amplada de la impressióS'ha produït un error en establir el mode d'ampliació Blt (només és un avís)ParàmetresParàmetres d'aquest fitxer de mapesConfigura la impressoraConfigura la impressora...Om_bresDifumina l'ombra:Foscor de l'ombra:Profunditat de l'ombra:Ombres:Forma de les flamarades secundàriesAfila les voresAfilaS'està afilant...Desproveir:DecalatgeQu_antitat de decalatge:Decala _horitzontalmentDecala _verticalmentS'està decalant...Si voleu fer un efecte inversSi voleu preservar la lluminositatMostraMostra el marc de líniaMostra la _previsualització en una finestra d'imatgeMostra tots els objectesMos_tra el consell de la URL de l'àreaMo_stra les nanses de l'àreaMostra el colorMostra els punts de controlMostrar la graellaMostra la imatgeMostra l'objecte següentMostra la posicióMostra previsualització _wireframeMostra l'objecte anteriorMostra la seleccióMostra/amaga la visualització prèvia del WireframeSi_ngular:Cares:SierpinskiImatge IRIS de Silicon GraphicsSenzillSin_usoïdalSinusSingularSinusSinus: s'està generant...SinusoïdalMidaMida (%):Degradat del factor de mida:Editor del mapa de midesMida del paper on voleu imprimirMida:Mides:Més lent però amb més precissió i amb colors més suaus. Per a imatges de to continu i fotografiesTacaPale_ta suau...Suavi_tzaS_uauPaleta suauSuavitza les mostresGradient X suau...Gradient Y suau...Paràmetres de suavitzatSuavitzat:Intentsitat del suavitzatVectors smForça a la graellaSobelDetecció de vores Sobel...Detecció de vores SobelSobel _horitzontalSobel _verticalLluentor suauSòlidSoroll sòlidSoroll sòlid...Fons acolorit com a sòlidColors sòlidsAlgunes dades han canviatNomés es poden desar imatges indexades i grises.Els canals i les màscares no es poden fer rotar.Font (safata d'entrada) del medi on voleu imprimirFont 1:Font 2:Canal font del fitxer:Canal font:Rang del color fontFont...Punts de les p_untes:_Escampa...Sobremos_tra espacial:Espaiat (percentatge):Espaiat:LlampadaS'està llampant...Transformació espacialRadi del _filtre espacial:No s'ha trobat la finestra especificadaEspecifica la quantitat de difuminació a aplicar a la imatge (en tant per cent)Especifica la relació de l'aspecte del pinzellEspecifica l'escala de la textura (en tant per cent del fitxer original)Especular:EsferaDissenyador d'esferes_Dissenyador d'esferes...EsfèricAngle de les puntes (-1: aleator_i):AranyaD_ensitat de puntes:Gruix de les punxes:EspiralNombre de punts de l'espiralRadi del focus:TaquesEscampaVolum escampatS'està escampant...Exp. de la int_ensitat:EstàndardEstàndard (R,G,B)Estrella Nombre de puntsInicia l'_índex:Angle inicial:Inicia el desplaçament:Ha fallat la pàgina inicialPasMida del pas:Atura't quan les diferències de píxels són més altes que aquest valorAmpliaAmplia _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) ha fallat, error = %d, y = %d_Densitat del traç:FortEstilSu_pernova...Subdivideix:Submostra:Subpassos:SupernovaSeleccionador de color supernovaArremol_ina en sentit horariIntercanvia les dues corbesMovimentCommuta a "Des de llavor" amb l'última llavorCommuta al sentit antihorariCommuta al sentit horariSímbolCanal TIFFImatge TIFFTWAIN (volcat)...TWAIN (lectura)...Se'n pot fer un mosà_icSaturació del mosà_ic:M_ida del mosàic:Fons t_ransparentT_urbulència:T_urbulentOpcions de creació d'una taulaOpcions de la taulaImatge TargaObjectiuTel_netTemporalProcediment temporalSuavitza les vores del textTexturaPropietats de la texturaTransformacions de texturaTextura:TexturesGràcies per triar el GIMPEl format GIF només suporta comentaris codificats en ASCII 7 bits. No s'ha desat cap comentari.No s'han instal·lat els fitxers d'ajuda del GIMP.El GIMPressionistOpcions per defecte del GimpressionistEl fitxer PNG especifica un desplaçament que ha causat que la capa es posicioni fora de la imatge.El format TIFF només suporta comentaris en +El 0 és negre sòlid, el 2 és blanc sòlid.Definiu el contrast de la impressióDefiniu l'alçada de la impressióDefiniu la mida de la impressió a la mida de la imatgeDefiniu l'escala (mida) de la imatgeDefiniu l'amplada de la impressióS'ha produït un error en establir el mode d'ampliació Blt (només és un avís)ParàmetresParàmetres d'aquest fitxer de mapesConfigura la impressoraConfigura la impressora...Om_bresDifumina l'ombra:Foscor de l'ombra:Profunditat de l'ombra:Ombres:Forma de les flamarades secundàriesAfila les voresAfilaS'està afilant...Desproveir:DecalatgeQu_antitat de decalatge:Decala _horitzontalmentDecala _verticalmentS'està decalant...Si voleu fer un efecte inversSi voleu preservar la lluminositatMostraMostra el marc de líniaMostra la _previsualització en una finestra d'imatgeMostra tots els objectesMos_tra el consell de la URL de l'àreaMo_stra les nanses de l'àreaMostra el colorMostra els punts de controlMostrar la graellaMostra la imatgeMostra l'objecte següentMostra la posicióMostra previsualització _wireframeMostra l'objecte anteriorMostra la seleccióMostra/amaga la visualització prèvia del WireframeSi_ngular:Cares:SierpinskiImatge IRIS de Silicon GraphicsSenzillSin_usoïdalSinusSingularSinusSinus: s'està generant...SinusoïdalMidaMida (%):Degradat del factor de mida:Editor del mapa de midesMida del paper on voleu imprimirMida:Mides:Més lent però amb més precissió i amb colors més suaus. Per a imatges de to continu i fotografiesTaca_Paleta suau...Suavi_tzaS_uauPaleta suauSuavitza les mostresGradient X suau...Gradient Y suau...Paràmetres de suavitzatSuavitzat:Intentsitat del suavitzatVectors smForça a la graellaSobelDetecció de vores Sobel...Detecció de vores SobelSobel _horitzontalSobel _verticalLluentor suauSòlidSoroll sòlidSoroll sòlid...Fons acolorit com a sòlidColors sòlidsAlgunes dades han canviatNomés es poden desar imatges indexades i grises.Els canals i les màscares no es poden fer rotar.Font (safata d'entrada) del medi on voleu imprimirImatge 1:Imatge 2:Canal font del fitxer:Canal font:Rang del color fontFont...Punts de les p_untes:_Escampa...Sobremos_tra espacial:Espaiat (percentatge):Espaiat:LàmpadaS'està fent l'efecte làmpada...Transformació espacialRadi del _filtre espacial:No s'ha trobat la finestra especificadaEspecifica el tant per cent del difuminat a aplicar a la imatgeEspecifica la relació de l'aspecte del pinzellEspecifica l'escala de la textura (en tant per cent del fitxer original)Especular:EsferaDissenyador d'esferes_Dissenyador d'esferes...EsfèricAngle de les puntes (-1: aleator_i):AranyaD_ensitat de puntes:Gruix de les punxes:EspiralNombre de punts de l'espiralRadi del focus:TaquesEscampaVolum escampatS'està escampant...Exp. de la int_ensitat:EstàndardEstàndard (R,G,B)Estrella Nombre de puntsInicia l'_índex:Angle inicial:Inicia el desplaçament:Ha fallat la pàgina inicialPasMida del pas:Atura't quan les diferències de píxels són més altes que aquest valorAmpliaAmplia _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) ha fallat, error = %d, y = %d_Densitat del traç:FortEstil_Supernova...Subdivideix:Submostra:Subpassos:SupernovaSeleccionador de color supernovaArremol_ina en sentit horariIntercanvia les dues corbesMovimentCommuta a "Des de llavor" amb l'última llavorCommuta al sentit antihorariCommuta al sentit horariSímbolCanal TIFFImatge TIFFTWAIN (volcat)...TWAIN (lectura)...Se'n pot fer un mosà_icSaturació del mosà_ic:M_ida del mosaic:Fons t_ransparentT_urbulència:T_urbulentOpcions de creació d'una taulaOpcions de la taulaImatge TargaObjectiuTel_netTemporalProcediment temporalSuavitza les vores del textTexturaPropietats de la texturaTransformacions de texturaTextura:TexturesGràcies per triar el GIMPEl format GIF només suporta comentaris codificats en ASCII 7 bits. No s'ha desat cap comentari.No s'han instal·lat els fitxers d'ajuda del GIMP.GIMPressionismeOpcions per defecte del GimpressionistEl fitxer PNG especifica un desplaçament que ha causat que la capa es posicioni fora de la imatge.El format TIFF només suporta comentaris en codificació ASCII de 7 bits. No es desarà cap comentari.La quantitat de farciment de les cel·les.La quantitat d'espaiat de les cel·les.Ressaltament de les vores de cada peçaObertura de l'angle del primer pinzell a crearSe selecciona la mida del pinzell que coincideixi amb la imatge original més properaEls colors són en blanc i negre.El comentari per defecte està limitat a %d caràcters.La profunditat de l'ombrejat, p.e. quina distància s'hauria d'allunyar de l'objecteLa direcció que coincideix amb la imatge original es selecciona la més properaLa distància des del centre de la imatge determina la direcció del traçLa distància des del centre de la imatge determina la mida del traçLa primera fila de la imatgeL'alçada de cada cel·la de la taula. Pot ser un nombre o un percentatge.El to de color de la regió determina la direcció del traçEl to de color de la regió determina la mida del traçLa imatge que esteu intentant desar en format GIF conté capes que s'estenen més enllà de les vores actuals de la imatge. Això no està permès en les imatges GIF. @@ -511,18 +518,16 @@ Podeu escollir entre escapçar totes les capes d'acord amb les vores de les imatges o no desar.La imatge que esteu intentant desar com a XBM conté més de dos colors. -Convertiu-la en una imatge indexada en blanc i negre (1-bit) i torneu-ho a provar.El pinzell més gran per crearLa capa preserva la transparència.El nom '%s' ja s'ha utilitzatEl nom '%s' ja s'utilitzaEl nombre de direccions (p.e. pinzells) a utilitzarEl nombre de píxels a la vora de la taula.El nombre de mides de pinzells a usarEl desplaçament es pot ajustar arrossegant la previsualització utilitzant el botó central del ratolí.La densitat relativa dels traços del pinzellNo s'ha pogut carregar la URL demanada:El pinzell més petit per crearEl camp vector sm. Feu un clic al botó esquerre del ratolí per moure el vector sm, el botó dret per apuntar cap al ratolí i el botó del mig per afegir un de nou.L'angle inicial del primer pinzell a crearEls traços són distribuïts uniformement a través de la imatgeEls traços segueixen a un patró "flotant"El text del peu de taula.El text que ha d'anar en cada cel·la.El tipus d'aquest fitxer-trama SUN no està permèsL'abreviatura de la unitat (p.e. "cm" per centímetres.La forma en plural de la unitat.La forma en singular de la unitat.El símbol de la unitat si en té (p.e. "'" per a les polzades). Feu servir l'abreviatura de la unitat si no té un símbol.El camp vector. Feu un clic al botó esquerre del ratolí per moure el vector seleccionat, el botó dret per apuntar segons moveu el ratolí i el botó del mig per afegir un vector nou.L'amplada de cada cel·la de la taula. Pot ser un nombre o un percentatge.No hi han prou capes per alinearHi ha un problema amb els fitxers d'ajuda del GIMP.Aquest camp és un suggeriment per a les entrades de camps numèrics. Especifica quants dígits decimals hauria de proveir el camp d'entrada per obtenir aproximadament la mateixa precisió que una entrada del camp "polzada" amb dos dígits decimals.Aquesta profunditat d'imatge no està permesaAquest no és un fitxer GIFAquesta cadena es farà servir per identificar una unitat en els fitxers de configuració del GIMP.Aquesta eina no té opcions_Llindar:Llindar alfaLlindar alfa: s'està acolorint la transparència...Llindar:_Espaiat del mosàic:MosàicA_lçada del mosàic:Am_plada del mosàic:Imatge font del mosàicMosàic de la imatge font: útil per a un nombre de plans infinitFes el mosàic d'una nova midaFes-ne un mosàicFer mosaicConstructor de mosaics...Mosàics primitiusS'està fent el mosàic...aAl colorA _baixA _polarA la d_retaA dal_tA l'_esquerraA:Opcions d'einaEinesVora superiorSuperior _esquerrePart superior:Penj_atS'estan transferint dades del TWAIN...Transformació %sTransparentFons transparentTracta'l com aquestVisualització d'arbreIntenta delimitar el quadreTurbulència:TipusEl tipus de mapa de color no està permèsTipus de tinta de la impressoraFont del tipus de llum a aplicarTipus de medi on voleu imprimirTipus d'objecte per mapejar aTipus:URLURL: %sS'està desoptimitzant l'animació...No es pot afegir punts addicionals. -No s'ha pogut desar '%s'. El format de fitxer psd no suporta imatges de més de 30000 píxels d'amplada o alçada.No s'ha pogut desar '%s'. El format de fitxer psd no suporta imatges amb capes de més de 30000 píxels d'amplada o alçada.Mida descomprimida: %sDesfésDesfés la darrera ampliacióUnitatEditor d'unitatEl factor d'unitat no pot ser 0.UnitatsUnitats:No es coneix el model de color del fitxer PNG '%s'.Raó desconegudaSense nomFormat de compressió BMP no reconegut o invàlid.No seleccionisNo seleccionis resFes la màscara borrosaNo se suporta la profunditat de bits (%d)Format de pinzell no suportatFormat no suportat, o porta-retalls buitSense títolEl tipus de fitxer PCX no és el normal. No se seguirà.Actualitza_PrevisualitzacióSuperior esquerraSuperior esquerra _x:Superior esquerra _y:Superior dretCap per vallUtilitza macros en lloc d'_estructuresUtilitza les guies del GIMP...Utilitza les guies del GimpUtilitza la mida -original de la imatgeUsa RLE d'_1 byteUtilitza un fons transparent. Només els traços pintats seran visiblesFes servir el valor mitjàFes servir la funció cosinus en l'element d'aquest colorUtilitza un abast cíclicFes servir un mapatge lineal en comptes d'una funció trigonomètrica en el canal d'aquest colorUtilitza la suavització 'log log' per eliminar les bandes del resultatUtilitza la suavització loglogUtilitza el mapa de magnitutReinicia els marcadorsFes servir el valor inversFes servir la funció sinus en l'element d'aquest colorUtilitza subcolorsUtilitza el color del fonsUtilitza el color de la imatgeUtilitza el color del primer plaV_alorValorInversió de valor...Propaga el valorS'està propagant el valor...Variacions de valorValor:Van Gogh (LIC)Van Gogh (LIC)..._Angle del vector:_Longitud del vector:Magnitut del vector:VectorsBase ver_tical:VerticalColor verticalVerticalmentMolt foscVí_deo...VídeoPatró de vídeoVídeo/RGB...Mostra la fontEl mode Voronoi farà que només el vector sm més proper al punt donat tingui alguna influència.El mode Voronoi fa que només el vector més proper al punt donat tingui alguna influènciaVòrte_xVòrtex_2Vòrtex_3WAI_SEl fitxer WMF no +Convertiu-la en una imatge indexada en blanc i negre (1-bit) i torneu-ho a provar.El pinzell més gran per crearLa capa preserva la transparència.El nom '%s' ja s'ha utilitzatEl nom '%s' ja s'utilitzaEl nombre de direccions (p.e. pinzells) a utilitzarEl nombre de píxels a la vora de la taula.El nombre de mides de pinzells a usarEl desplaçament es pot ajustar arrossegant la previsualització utilitzant el botó central del ratolí.La densitat relativa dels traços del pinzellNo s'ha pogut carregar la URL demanada:El pinzell més petit per crearEl camp vector sm. Feu un clic al botó esquerre del ratolí per moure el vector sm, el botó dret per apuntar cap al ratolí i el botó del mig per afegir un de nou.L'angle inicial del primer pinzell a crearEls traços són distribuïts uniformement a través de la imatgeEls traços segueixen a un patró "flotant"El text del peu de taula.El text que ha d'anar en cada cel·la.El tipus d'aquest fitxer-trama SUN no està permèsL'abreviatura de la unitat (p.e. "cm" per centímetres.La forma en plural de la unitat.La forma en singular de la unitat.El símbol de la unitat si en té (p.e. "'" per a les polzades). Feu servir l'abreviatura de la unitat si no té un símbol.El camp vector. Feu un clic al botó esquerre del ratolí per moure el vector seleccionat, el botó dret per apuntar segons moveu el ratolí i el botó del mig per afegir un vector nou.L'amplada de cada cel·la de la taula. Pot ser un nombre o un percentatge.No hi han prou capes per alinearHi ha un problema amb els fitxers d'ajuda del GIMP.Aquest camp és un suggeriment per a les entrades de camps numèrics. Especifica quants dígits decimals hauria de proveir el camp d'entrada per obtenir aproximadament la mateixa precisió que una entrada del camp "polzada" amb dos dígits decimals.Aquesta profunditat d'imatge no està permesaAquest no és un fitxer GIFAquesta cadena es farà servir per identificar una unitat en els fitxers de configuració del GIMP.Aquesta eina no té opcions_Llindar:Llindar alfaLlindar alfa: s'està acolorint la transparència...Llindar:_Espaiat del mosaic:MosaicA_lçada del mosaic:Netedat:Am_plada del mosaic:Imatge font del mosaicMosaic de la imatge font: útil per a un nombre de plans infinitFes el mosaic d'una nova midaFes-ne un mosaicFer mosaicConstructor de mosaics...Primitives del mosaicS'està composant el mosaic...aAl colorA _baixA _polarA la d_retaA dal_tA l'_esquerraA:Opcions d'einaEinesVora superiorSuperior _esquerrePart superior:Penj_atS'estan transferint dades del TWAIN...Transformació %sTransparentFons transparentTracta'l com aquestVisualització d'arbreIntenta delimitar el quadreTurbulència:TipusEl tipus de mapa de color no està permèsTipus de tinta de la impressoraFont del tipus de llum a aplicarTipus de medi on voleu imprimirObjecte que es vol mapejarTipus:URLURL: %sS'està desoptimitzant l'animació...No es pot afegir punts addicionals. +No s'ha pogut desar '%s'. El format de fitxer psd no suporta imatges de més de 30000 píxels d'amplada o alçada.No s'ha pogut desar '%s'. El format de fitxer psd no suporta imatges amb capes de més de 30000 píxels d'amplada o alçada.Mida descomprimida: %sDesfésDesfés la darrera ampliacióUnitatGestor d'unitatsEl factor no pot ser 0.UnitatsUnitats:No es coneix el model de color del fitxer PNG '%s'.Raó desconegudaSense nomFormat de compressió BMP no reconegut o invàlid.No seleccionisNo seleccionis resMàscara suavitzantNo se suporta la profunditat de bits (%d)Format de pinzell no suportatFormat no suportat, o porta-retalls buitSense títolEl tipus de fitxer PCX no és el normal. No se seguirà.Actualitza_PrevisualitzacióSuperior esquerraSuperior esquerra _x:Superior esquerra _y:Superior dretCap per vallUtilitza macros en lloc d'_estructuresUtilitza les guies del GIMP...Utilitza les guies del GimpUtilitza la mida +original de la imatgeUsa RLE d'_1 byteUtilitza un fons transparent. Només els traços pintats seran visiblesFes servir el valor mitjàFes servir la funció cosinus en l'element d'aquest colorUtilitza un abast cíclicFes servir un mapatge lineal en comptes d'una funció trigonomètrica en el canal d'aquest colorUtilitza la suavització 'log log' per eliminar les bandes del resultatUtilitza la suavització loglogUtilitza el mapa de magnitutReinicia els marcadorsFes servir el valor inversFes servir la funció sinus en l'element d'aquest colorUtilitza subcolorsUtilitza el color del fonsUtilitza el color de la imatgeUtilitza el color del primer plaV_alorValorInversió de valor...Filtra el llindar dels colorsS'està filtrant el llindar dels colorsVariacions de valorValor:Van Gogh (LIC)Van Gogh (LIC)..._Angle del vector:_Longitud del vector:Magnitut del vector:VectorsBase ver_tical:VerticalColor verticalVerticalmentMolt fosc_Simula imatge de vídeo...Simula imatge de vídeoPatró de vídeoVídeo/RGB...Mostra la fontEl mode Voronoi farà que només el vector sm més proper al punt donat tingui alguna influència.El mode Voronoi fa que només el vector més proper al punt donat tingui alguna influènciaVòrte_xVòrtex_2Vòrtex_3WAI_SEl fitxer WMF no especifica una mida_Gira i contrau...Amb la _imatge fontEsc_riu el fitxer de màscara extraAvísAvís: la imatge que esteu carregant té 16 bits per canal. El GIMP només pot gestionar-ne de 8 bits, per tant es convertirà automàticament. Es perdrà informació degut a aquesta conversió.Avís: -El color transparent en el fitxer escrit pot ser incorrecte en visualitzadors que no suportin transparències.Avís: '%s' és un fitxer de paràmetres per a un CML_explorer més modern que el que esteu fent servir.Avís: '%s' és un fitxer en format antic.Avís: la font i la destinació són el mateix canal.Avís: s'ha desat a XJT un mode de capa %d que no és suportatAvís: s'ha desat a XJT un tipus de camí %d que no és suportatAvís: s'ha desat a XJT un tipus d'unitat %d que no és suportatDeformaS'està deformant el marc nº %d...S'està deformant...Tipus d'onadaOnesS'estan fent ones...FebleNo s'ha especificat cap navegador. -Especifiqueu un navegador web en el diàleg de preferències.Si es commuta, la imatge resultant es reduirà per encaixar en la mida donada sense canviar la relació d'aspecte.Gira i contrauS'està girant i contraient...BlancaVe_nt...Amplada (píxels):Amplada del paper on voleu imprimirAmplada:VentFinestresImatge BMP del WindowsLes icones de Windows no poden ser més altes o amples de 255 píxels.D'intensitat graduada (0,1)Amb intensitat i aleatori (0,1)D'intensitat aleatòria (0,1)D'intensitat aleatòria (0,10)FustaTreballa amb la còp_iaAjustaS'ha produït un error d'escripturaImatge Bitmap XMapa de píxels d'XEscala X (mida)Volcat de la finestra XX:Opcions del XBMEl fitxer XJT conté un mode de capa %d que és desconegutEl fitxer XJT conté un tipus de camí %d que és desconegutEl fitxer XJT conté un tipus d'unitat %d que no és suportatXMAX:XMIN:El fitxer XPM no és vàlidEl fitxer XWD %s té el format %d, profunditat %d -i %d bits per píxel. -Aquests valors no se suporten.Posició XY:X_1:X_2:Escala Y (mida)Y:YMAX:YMIN:Y_1:Y_2:GrocGroc:Groc_KEsteu a punt de crear un enorme +El color transparent en el fitxer escrit pot ser incorrecte en visualitzadors que no suportin transparències.Avís: '%s' és un fitxer de paràmetres per a un CML_explorer més modern que el que esteu fent servir.Avís: '%s' és un fitxer en format antic.Avís: la font i la destinació són el mateix canal.Avís: s'ha desat a XJT un mode de capa %d que no és suportatAvís: s'ha desat a XJT un tipus de camí %d que no és suportatAvís: s'ha desat a XJT un tipus d'unitat %d que no és suportatDeformaS'està deformant el marc nº %d...S'està deformant...Tipus d'onadaOnes circumcèntriquesS'estan fent ones...FebleNo s'ha especificat cap navegador. +Especifiqueu un navegador web en el diàleg de preferències.Si es commuta, la imatge resultant es reduirà per encaixar en la mida donada sense canviar la relació d'aspecte.Gira i contrauS'està girant i contraient...BlancaVe_nt...Amplada (píxels):Amplada del paper on voleu imprimirAmplada:VentFinestresImatge BMP del WindowsLes icones de Windows no poden ser més altes o amples de 255 píxels.D'intensitat graduada (0,1)Amb intensitat i aleatori (0,1)D'intensitat aleatòria (0,1)D'intensitat aleatòria (0,10)FustaTreballa amb la còp_iaAjustaS'ha produït un error d'escripturaImatge Bitmap XMapa de píxels d'XEscala X (mida)Volcat de la finestra XX:Opcions del XBMEl fitxer XJT conté un mode de capa %d que és desconegutEl fitxer XJT conté un tipus de camí %d que és desconegutEl fitxer XJT conté un tipus d'unitat %d que no és suportatXMAX:XMIN:El fitxer XPM no és vàlidPosició XY:X_1:X_2:Escala Y (mida)Y:YMAX:YMIN:Y_1:Y_2:GrocGroc:Groc_KEsteu a punt de crear un enorme fitxer HTML que molt probablement farà que el vostre navegador deixi de funcionar.No es pot rotar la imatge sencera si hi ha una selecció flotant.No es pot rotar la imatge sencera si hi ha una selecció.No podeu desar una màscara del cursor d'una imatge -que no té un canal alfa.Escala Z (mida)Z:Imatge PCX de ZSoftS'està aplicant el ZealousCrop (tm)...AmpliacióAumentaApropa (fa la imatge més gran)DisminueixAllunya (fa la imatge més petita)Escala de l'ampliació:Amplia a_3x3_Abreviatura:Qu_ant al mapa d'imatges..._Adaptable_Additiu_AvançatOpcions _avançades_Algorisme:_AlfaLlindar _alfa:Mitja retallada d'_alfa_Alfa:Qu_antitat:_Amplitud:_Angle:_AnimaSu_avitza les vores_Aplica el llenç...Escapça _automàticament la imatgeEscapça _automàticament la capaConverteix _automàticament_Azimut:_FonsColor del _fonsURL _base:Amplada del _biselat:_Bilineal_NegreNivell _negre:En_negreix_Ventada_BarrejaAn_gles morts..._Blau_Blau:_DifuminaRadi de _difuminat:_Vora mitjana..._Vora:_Inferior esquerraPart in_ferior:_Quadre_Lluentor:_Brillantor_Brillantor:_PinzellMida del cu_bell:_Bump Map_Bump Map..._BumpmapTauler d'es_cacs..._NetejaMillora del _colorCanvi de _color...A_coloreix..._ContingutsMatriu de _circumvolució..._Copia_Cubisme..._Corba Bend..._Descomposa..._DesinflaVaria el ra_di:_Desentrellaça...Retar_d entre marcs quan no estigui especificat:Fusió _profunda...Profun_ditat:_Derivatiu_Descripció:_Detall:Patrons de _difracció..._Dígits:_Dilata_Desplaça..._Desplaçament:_Distorsionat_Divisions:_Punts_Dinàmic:Millora de les vor_es_Vora..._Edita_Efecte imatge:_Elevació:R_elleuR_elleu...Postscript _encapsulatImatg_e senceraMapa de l'e_ntornMosaic _explícit_Exponent:Lluminositat _primer pla/fons_Factor:Con_figuració original_FitxerNom de _fitxer:_Pel·lícula...Paquet de _filtres...Longitud del _filtre:_Troba teló de fons_Ajusta l'alçada a les imatges_Flama...E_fectes de flames..._Tipus de lletra:_ForçaVoleu _forçar un mosàic?Primer pla i _fonsColor del _primer pla_Primer pla a pics_Format:Explorador del _fractal...Traça del _fractal..._Fractals_LliureLloc _ftp_GFlare...Comentari del _GIF:El _GIMPressionist..._Gamma:Difuminació _gaussiana..._General_Genera un document HTML sencer_Gfig...Mosàic _òptic...Radi de la _lluentor:_Lluentor:_GopherDe_gradatMapa de de_gradat_Gris:V_erd_Verd:_Gris_GraellaMida de la _graella:_Graella..._Creix_GuillotinaModel de color _HSLA_lçadaA_lçada:_Ajuda_Hex_Amagat_AltRetingueu els c_anals màxims_Contenció:Desplaçament del _forat:_HoritzontalEstil _horitzontal:_Horitzontal:Espaiat _horitzontal:_Càlid..._ToRotació del _to:_Llança..._ID:Fractal _IFS..._IIR_IWarp..._IdealPrefix de l'_identificador:_Ignora_Ignora la capa inferior fins i tot si és visible_Il·lusió...Mapa d'_imatge..._PolzadaRGB _independentEntrada SP_I:_Insereix_Intensitat:_Entrellaça_Entrellaçat (Adam7)_Inverteix_JPEG_JavaScript_Encaix..._Conserva els cercles NCSA_Conserva la relació d'aspecte_Conserva els límits originals_Conserva el signe del resultat (només en una direcció)_Finalitza_LZW_LaplaceGraons gra_nsEs_querraInici es_querre a:Ãndex de refracció de la _lent:_LlumEfectes de _llum...Amplada de la línia _límit_Lineal_LíniesEn_llaçCarrega e_ls predeterminatsB_loca els canalsBuc_le infinit_Baix_Inferior_MIMEImatge de _correu..._Fes transparent els límits_Mapeja endarrereTipus de _mapa:_MapejaExtensió del fitxer _màscara:Radi de _màscara:Mida de la _màscara:_Material_Màxim (%):Profunditat _màxima:RGB _màxim...Delta _màxim:_Laberint..._MetàlicValor _mitjà a picsTons _mitjans_Mil·límetreValor _mínim:Re_flexa_Opcions diverses_Modifica el canal to_Modifica el canal vermell_Monocrom_Mosàic...Difuminació de _moviment..._MouFiltre _NL...Color _natural_Neó..._Nº de creuaments:Magnitud del _soroll:_Cap_Normal_NormalitzaAlçada del _número:_Nombre de segments:_Opacitat:_Optimitza (Diferència)_Paquet de bitsRínxol de _pàgina...Tipus de _paletaMosàic del _paper..._Paràmetres_Percentatge de negre:_Període:_Fase:_Fotocòpia..._Tria..._Quantitat de contraccions:_Ping-pongSuperfícies _picades_Pixelitza..._Plasma...Re_produeix...Navegador del _connector_Plural:_Polit:_Polígon_Postscript nivell 2Nom _prefixat:_Preserva la lluminositat_Predefinits_Previsualitza_Previsualitza-ho una vegada_Previsualitza_Imprimeix_Imprimeix...Demana in_formació de l'àreaRelació de _propagació:_Psicòtic_Qbist..._Qualitat:_RGBModel de color _RGB_RLECompressió _RLECodificat en _RLE_Radial_Radi 1:_Radi:To aleato_ri:Llavo_r aleatòria:Aleatò_riament_RaigsDestinata_ri:_RectangleVe_rmell:To_rna a fer %s_ReflexiuSu_primeixSup_rimeix teló de fons_ComposaNecessita la U_RL per defecte_Reté el mosàic_Retinex...D_retaMarge d_ret_So de mar..._GiratAcoloreix la mo_stra..._Saturació_Saturació:De_sa el comentari al fitxerDe_sa els predeterminatsDivisió de l'e_scala:E_scala:Disper_sa RGB...Captura de _pantalla...Profundi_tat de cerca:_Cerca:Flamarades _secundàriesDifuminat gaussià _selectiu..._SemiaplanaR_emitent:_Defineix els límits a color del fons_Defineix els límits a índex 0_ParàmetresOmbra _sota el rínxolA_fila...Afila_ment:De_calatge..._Brillant:_Mostra el cursor_Sinus..._Mida_Mida:Mosàics petit_s..._Taca_Suavitzat:Habilita l'aju_st a la graella_Sobel...Lluentor _suau...Soroll _sòlid..._Llampada..._Velocitat:Longitut de la _punta:Rajo_s:Fun_ció de punt:_Quadrat_Quadrats_GraonatInten_sitat:Amplia el contra_st_Traça_Símbol:_TWAIN...Nom del marc objec_tiu/ID: (opcional - utilitzat només per a marcs)_Gruix:_LlindarLlindar _alfa..._Llindar:_Fes un mosaic del bumpmapMida del _mosàic:_Mosàic..._Títol:_EinesInici supe_rior a:Superior dre_tPar_t superior:_Transparent_URL per activar quan es cliqui aquesta àrea: (necessari)_Desoptimitza_Desfés_Desfés %s_UniformeEditor d'_unitatsFes la màscara _borrosa...Act_ualitzaS_uperiorMarge s_uperiorLlindar més al_t:_Utilitza els tipus GLib (guint8*)_Utilitza el color del fons_Utilitza atributs de la cel·la_Utilitza nanses de mida doble_Utilitza l'algorisme d'intensitat_Utilitza la capa (invisible) inferior com a base_Decodifica_Valor:Inversió de _valor...Propaga el _valor..._Valor:_Van Gogh (LIC)_Variació:Espaciat _vertical:_VerticalEstil _vertical:_Vertical:_Visualitza_Voronoi_Deforma_Deforma..._Nivell de l'aigua:Lon_gitud d'ona:_Ones...Lloc _webAn_gle de gir:_BlancNivell _blanc:Ratllat am_pleAm_pladaAm_plada:_VentAmb soroll _blanc_AjustaDóna la _voltaEscriu els _valors dels punts calentsEscala _X:Desplaçament en _X:Desplaçament en _X:Ràtio _X:Mida _X:Format del mapa de bits _X10_X:Escala _Y:Desplaçament en _Y:Desplaçament en _Y:Ràtio _Y:Mida _Y:_Y:Gr_oc_Z:Escapçat _Zealous_AmpliacióA_mpliació:S'ha creat `Per defecte'.una _sola finestradesprésalfaautostretch_hsv: el mapa de color era nul. S'està sortint... +que no té un canal alfa.Escala Z (mida)Z:Imatge PCX de ZSoftS'està aplicant el ZealousCrop (tm)...AmpliacióAumentaApropa (fa la imatge més gran)DisminueixAllunya (fa la imatge més petita)Escala de l'ampliació:Amplia a_3x3_Abreviatura:Qu_ant al mapa d'imatges..._Adaptable_Additiu_AvançatOpcions _avançades_Algorisme:_AlfaLlindar _alfa:Mitja retallada d'_alfa_Alfa:Qu_antitat:_Amplitud:_Angle:_AnimaSu_avitza les voresPintura sobre _tapís...Escapça _automàticament la imatgeEscapça _automàticament la capaConverteix _automàticament_Azimut:_FonsColor del _fonsURL _base:Amplada del _bisell:_Bilineal_NegreNivell de _negre:En_negreix_Ventada_Barreja_Angles morts..._Blau_Blau:_DifuminaRadi de _difuminat:Mitjana del contorn..._Vora:_Inferior esquerraPart in_ferior:_Quadre_Lluentor:_Brillantor_Brillantor:_PinzellMida del cu_bell:_Eleva_Eleva..._Eleva:_Mapa de relleu_Tauler d'escacs..._NetejaMillora del _color_Substitueix un color...A_coloreix..._Continguts_Aplica una matriu..._Copia_Cubisme...Distorsiona segons la _corba..._Descomposa..._DesinflaVaria el _radi:_Desentrellaça...Retar_d entre marcs quan no estigui especificat:_Fusió d'imatges...Profun_ditat:_Derivatiu_Descripció:_Detall:Patrons de _difracció..._Dígits:_DilataDe_splaça..._Desplaçament:_Distorsionat_Divisions:_Punts_Dinàmic:Millora de les vor_es_Vora..._Edita_Efecte imatge:_Elevació:_RessaltaRessal_ta...Postscript _encapsulatImatg_e senceraMapa de l'e_ntornMosaic _explícit_Exponent:Lluminositat _primer pla/fons_Factor:Con_figuració original_FitxerNom de _fitxer:_Pel·lícula...Paquet de _filtres...Longitud del _filtre:_Troba teló de fons_Ajusta l'alçada a les imatges_Flama..._Punt de llum..._Tipus de lletra:_ForçaVoleu _forçar un mosaic?Primer pla i _fonsColor del _primer pla_Primer pla a pics_Format:_Explorador de fractals..._Fractal..._Fractals_LliureLloc _ftpEnlluerna (_GFlare)...Comentari del _GIF:_GIMPressionisme..._Gamma:Difuminat _gaussià..._General_Genera un document HTML sencer_Figures (Gfig)..._Mosaic òptic...Radi de la _lluentor:_Lluentor:_GopherDe_gradatNomés colors del _degradat actiu_Gris:V_erd_Verd:_Gris_GraellaMida de la _graella:_Graella..._Creix_GuillotinaModel de color _HSLA_lçadaA_lçada:_Ajuda_Hex_Amagat_AltRetingueu els c_anals màxims_Contenció:Desplaçament del _forat:_HoritzontalEstil _horitzontal:_Horitzontal:Espaiat _horitzontal:_Càlid..._ToRotació del _to:_Llança..._ID:Fractal _IFS..._IIRManualment (_IWarp)..._IdealPrefix de l'_identificador:_Ignora_Ignora la capa inferior fins i tot si és visible_Il·lusió espiral...Mapa d'_imatge..._PolzadaRGB _independentEntrada SP_I:_Insereix_Intensitat:_Entrellaça_Entrellaçat (Adam7)_Inverteix_JPEG_JavaScript_Puzzle..._Conserva els cercles NCSA_Conserva la relació d'aspecte_Conserva els límits originals_Conserva el signe del resultat (només en una direcció)_Finalitza_LZW_LaplaceGraons gra_nsEs_querraInici es_querre a:Ãndex de refracció de la _lent:_Llum_Afegeix llums...Amplada de la línia _límit_Lineal_LíniesEn_llaçCarrega e_ls predeterminatsB_loca els canalsBuc_le infinit_Baix_Inferior_MIMEImatge de _correu..._Quadruplica per fer un mosaic_Fes transparent els límits_Mapeja endarrereTipus de _mapa:_MapejaExtensió del fitxer _màscara:Radi de _màscara:Mida de la _màscara:_Material_Màxim (%):Profunditat _màxima:RGB mà_xim...Delta _màxim:_Laberint..._MetàlicValor _mitjà a picsTons _mitjans_Mil·límetreValor _mínim:Re_flexa_Opcions diverses_Modifica el canal to_Modifica el canal vermell_Monocrom_Mosaic...Difuminat per _moviment..._Mou_Filtre NL...Color _natural_Neó..._Nº de creuaments:Magnitud del _soroll:_Cap_Normal_NormalitzaAlçada del _número:_Nombre de segments:_Opacitat:_Optimitza (Diferència)_Paquet de bitsRín_xol de pàgina...Tipus de _paletaRetalls de _paper..._Paràmetres_Percentatge de negre:_Període:_Fase:_Fotocòpia..._Tria..._Quantitat de contraccions:_Ping-pongSuperfícies _picades_Pixelitza..._Plasma...Re_produeix...Gestor de _connectors_Plural:_Polit:_Polígon_Postscript nivell 2Nom _prefixat:_Preserva la lluminositat_Predefinits_Previsualitza_Previsualitza-ho una vegada_Previsualitza_Imprimeix_Imprimeix...Demana in_formació de l'àreaRelació de _propagació:_Psicòtic_Qbist..._Qualitat:_RGBModel de color _RGB_RLECompressió _RLECodificat en _RLE_Radial_Radi 1:_Radi:To aleato_ri:Llavo_r aleatòria:Aleatò_riament_RaigsDestinata_ri:_RectangleVe_rmell:To_rna a fer %s_ReflexiuSu_primeixSup_rimeix teló de fons_ComposaNecessita la U_RL per defecte_Reté el mosaic_Retinex...D_retaMarge d_ret_Onades del mar..._Girat_Acoloreix la mostra..._Saturació_Saturació:De_sa el comentari al fitxerDe_sa els predeterminatsDivisió de l'e_scala:E_scala:Dispersa _RGB...Captura de _pantalla...Profundi_tat de cerca:_Cerca:Flamarades _secundàriesDifuminat gaussià _selectiu..._SemiaplanaR_emitent:_Defineix els límits a color del fons_Defineix els límits a índex 0_ParàmetresOmbra _sota el rínxol_Afila...Afila_ment:_Decalatge..._Brillant:_Mostra el cursor_Sinus..._Mida_Mida:_Barreja..._Redueix i composa un mosaic ..._Taca_Suavitzat:Habilita l'aju_st a la graella_Sobel..._Lluentor suau..._Soroll sòlid..._Làmpada..._Velocitat:Longitut de la _punta:Rajo_s:Fun_ció de punt:_Quadrat_Quadrats_GraonatInten_sitat:Amplia el contra_st_Traça_Símbol:_TWAIN...Nom del marc objec_tiu/ID: (opcional - utilitzat només per a marcs)_Gruix:_LlindarLlindar _alfa..._Llindar:_Fes un mosaic del mapa de relleuMida del _mosaic:_Mosaic..._Títol:_EinesInici supe_rior a:Superior dre_tPar_t superior:_Transparent_URL per activar quan es cliqui aquesta àrea: (necessari)_Desoptimitza_Desfés_Desfés %s_Uniforme_Gestor d'unitats_Màscara suavitzant...Act_ualitzaS_uperiorMarge s_uperiorLlindar més al_t:_Utilitza els tipus GLib (guint8*)_Utilitza el color del fons_Utilitza atributs de la cel·la_Utilitza nanses de mida doble_Utilitza l'algorisme d'intensitat_Utilitza la capa (invisible) inferior com a base_Decodifica_Valor:_Inversió de valor...Filtra el _llindar dels colors..._Valor:_Van Gogh (LIC)..._Variació:Espaciat _vertical:_VerticalEstil _vertical:_Vertical:_Visualitza_Voronoi_Deforma_Deforma..._Nivell de l'aigua:Lon_gitud d'ona:On_es circumcèntriques...Lloc _webAn_gle de gir:_BlancNivell de _blanc:Ratllat am_pleAm_pladaAm_plada:_VentAmb soroll _blanc_AjustaDóna la _voltaEscriu els _valors dels punts calentsEscala _X:Desplaçament en _X:Desplaçament en _X:Ràtio _X:Mida _X:Format del mapa de bits _X10_X:Escala _Y:Desplaçament en _Y:Desplaçament en _Y:Ràtio _Y:Mida _Y:_Y:Gr_oc_Z:Escapçat _Zealous_AmpliacióA_mpliació:S'ha creat `Per defecte'.una _sola finestradesprésalfaautostretch_hsv: el mapa de color era nul. S'està sortint... negreblaublavor_cb470blavor_cb470fblavor_cb709blavor_cb709ffitxer bzipc_astretch: el mapa de color era nul. S'està sortint... cmciancian_k_correu electrònicverdfitxer gziptofitxer del Gflare amb un format no válid: %s k(1-x^p)k(1-x^p) desplaçatkx^pkx^p desplaçatk{x(1-x)}^pk{x(1-x)}^p desplaçadaluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmil·lisegonsno s'ha trobat %s a gflares_listpíxelspíxels des de dal_tpíxels des de l'_esquerrapíxels/%avermellvermellor_cr470vermellor_cr470fvermellor_cr709vermellor_cr709fsaturacióSinus de ^p desplaçatfunció basada en sin^pHi ha algun tipus d'error amb l'extensió dels fitxers o l'absència d'aquestsla pa_ntalla senceraa l'alfavalorx (píxels)y (píxels)grocgroc_k \ No newline at end of file diff -uraN gimp-2.2.8/po-plug-ins/ca.po gimp-2.2.9/po-plug-ins/ca.po --- gimp-2.2.8/po-plug-ins/ca.po 2005-05-08 23:45:22.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/ca.po 2005-08-15 12:07:07.000000000 +0200 @@ -1,18 +1,22 @@ -# Copyright (C) 2000 Free Software Foundation, Inc. +# translation of gimp.po-plugins.HEAD.po to Català +# translation of plugins-ca.po to Català +# Copyright (C) 2000,2005 Free Software Foundation, Inc. +# Jordi Jover, jordijn@softcatala.org # Softcatala , 2000-2002 -# Jordi Jover, jordijn@softcatala.org +# Quim Perez i Noguer , 2005 # msgid "" msgstr "" -"Project-Id-Version: GIMP 2\n" +"Project-Id-Version: gimp.po-plugins.HEAD\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2005-08-07 11:53+0200\n" +"PO-Revision-Date: 2005-06-04 20:15+0200\n" +"Last-Translator: Quim Perez Noguer \n" +"Language-Team: Català \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.0\n" #: ../plug-ins/FractalExplorer/Dialogs.c:523 #: ../plug-ins/gfig/gfig-dialog.c:283 ../plug-ins/gflare/gflare.c:891 @@ -74,7 +78,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:683 msgid "Fractal Parameters" -msgstr "Paràmetres fractals" +msgstr "Paràmetres del fractal" #: ../plug-ins/FractalExplorer/Dialogs.c:696 msgid "XMIN:" @@ -159,6 +163,7 @@ msgid "Save active fractal to file" msgstr "Desa el fractal actiu al fitxer" +# Fractal type toggle box #. Fractal type toggle box #: ../plug-ins/FractalExplorer/Dialogs.c:804 msgid "Fractal Type" @@ -408,7 +413,7 @@ #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1825 ../plug-ins/common/xbm.c:996 #: ../plug-ins/common/xwd.c:577 ../plug-ins/fits/fits.c:450 -#: ../plug-ins/flame/flame.c:443 ../plug-ins/gfig/gfig.c:783 +#: ../plug-ins/flame/flame.c:443 ../plug-ins/gfig/gfig.c:788 #: ../plug-ins/gfli/gfli.c:715 ../plug-ins/ifscompose/ifscompose.c:2395 #: ../plug-ins/winicon/icosave.c:243 ../plug-ins/xjt/xjt.c:1263 #: ../plug-ins/xjt/xjt.c:1702 @@ -424,7 +429,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:1863 msgid "Load Fractal Parameters" -msgstr "Carrega els paràmetres fractals" +msgstr "Carrega els paràmetres del fractal" #: ../plug-ins/FractalExplorer/Dialogs.c:1894 msgid "Save Fractal Parameters" @@ -440,7 +445,7 @@ #: ../plug-ins/common/channel_mixer.c:966 ../plug-ins/common/curve_bend.c:913 #: ../plug-ins/common/dicom.c:290 ../plug-ins/common/gbr.c:327 #: ../plug-ins/common/gifload.c:296 ../plug-ins/common/gih.c:648 -#: ../plug-ins/common/jpeg.c:946 ../plug-ins/common/jpeg.c:2607 +#: ../plug-ins/common/jpeg.c:946 ../plug-ins/common/jpeg.c:2609 #: ../plug-ins/common/mng.c:1117 ../plug-ins/common/pat.c:300 #: ../plug-ins/common/pcx.c:302 ../plug-ins/common/pix.c:332 #: ../plug-ins/common/png.c:674 ../plug-ins/common/pnm.c:432 @@ -472,7 +477,7 @@ #: ../plug-ins/FractalExplorer/FractalExplorer.c:269 msgid "_Fractal Explorer..." -msgstr "Explorador del _fractal..." +msgstr "_Explorador de fractals..." #: ../plug-ins/FractalExplorer/FractalExplorer.c:400 msgid "Rendering Fractal..." @@ -489,6 +494,7 @@ msgstr "Suprimeix el fractal" # the dialog +# the dialog #. the dialog #: ../plug-ins/FractalExplorer/FractalExplorer.c:853 msgid "Edit fractal name" @@ -542,11 +548,11 @@ #: ../plug-ins/Lighting/lighting_apply.c:103 msgid "Lighting Effects..." -msgstr "Efectes de llum..." +msgstr "Afegeix llums..." #: ../plug-ins/Lighting/lighting_main.c:197 msgid "_Lighting Effects..." -msgstr "Efectes de _llum..." +msgstr "_Afegeix llums..." # General options #. General options @@ -560,7 +566,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:279 msgid "Make destination image transparent where bump height is zero" -msgstr "Fes transparent la imatge de destinació on l'alçada bump és zero" +msgstr "Fes transparent la imatge de destinació on l'alçada sigui zero" #: ../plug-ins/Lighting/lighting_ui.c:282 msgid "Cre_ate new image" @@ -569,7 +575,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:292 #: ../plug-ins/MapObject/mapobject_ui.c:570 msgid "Create a new image when applying filter" -msgstr "Crea una imatge nova quant s'aplica el filtre" +msgstr "Crea una imatge nova quant s'apliqui el filtre" #: ../plug-ins/Lighting/lighting_ui.c:294 msgid "High _Quality preview" @@ -649,7 +655,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:414 msgid "Light intensity" -msgstr "Intensitat de llum" +msgstr "Intensitat de la llum" #: ../plug-ins/Lighting/lighting_ui.c:417 #: ../plug-ins/MapObject/mapobject_ui.c:694 @@ -811,15 +817,16 @@ # era: msgstr "_Metalic" #: ../plug-ins/Lighting/lighting_ui.c:723 msgid "E_nable bump mapping" -msgstr "_Habilita mapatge bump" +msgstr "Eleva a partir d'un mapa de relleu." #: ../plug-ins/Lighting/lighting_ui.c:737 msgid "Enable/disable bump-mapping (image depth)" -msgstr "Habilita/inhabilita el mapatge bump (profunditat d'imatge)" +msgstr "" +"Habilita/inhabilita l'efecte d'elevar la imatge a partir d'un mapa de relleu." #: ../plug-ins/Lighting/lighting_ui.c:755 msgid "Bumpm_ap image:" -msgstr "Imatge bumpm_ap:" +msgstr "Mapa de _relleu:" # Map type menu #. Map type menu @@ -852,7 +859,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:786 msgid "Maximum height for bumps" -msgstr "Alçada màxima dels bumps" +msgstr "Alçada màxima de les zones elevades" #: ../plug-ins/Lighting/lighting_ui.c:811 msgid "E_nable environment mapping" @@ -886,7 +893,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:883 msgid "_Bump Map" -msgstr "_Bump Map" +msgstr "_Eleva" #: ../plug-ins/Lighting/lighting_ui.c:887 msgid "_Environment Map" @@ -894,7 +901,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:933 msgid "Lighting Effects" -msgstr "Efectes de llum" +msgstr "Afegeix llums" #: ../plug-ins/Lighting/lighting_ui.c:982 #: ../plug-ins/gimpressionist/preview.c:181 @@ -945,7 +952,7 @@ # era: msgstr "Mapa a cilindre..." #: ../plug-ins/MapObject/mapobject_main.c:199 msgid "Map _Object..." -msgstr "Mapeja l'_objecte..." +msgstr "Mapa _3D..." #: ../plug-ins/MapObject/mapobject_ui.c:248 #: ../plug-ins/MapObject/mapobject_ui.c:1340 @@ -986,7 +993,7 @@ #: ../plug-ins/MapObject/mapobject_ui.c:530 msgid "Type of object to map to" -msgstr "Tipus d'objecte per mapejar a" +msgstr "Objecte que es vol mapejar" # era: msgstr "Tipus d'objecte per fer un mapa a" #: ../plug-ins/MapObject/mapobject_ui.c:532 @@ -999,12 +1006,12 @@ #: ../plug-ins/MapObject/mapobject_ui.c:545 msgid "Tile source image" -msgstr "Imatge font del mosàic" +msgstr "Imatge font del mosaic" # era: msgstr "Imatge font del mosaic" #: ../plug-ins/MapObject/mapobject_ui.c:556 msgid "Tile source image: useful for infinite planes" -msgstr "Mosàic de la imatge font: útil per a un nombre de plans infinit" +msgstr "Mosaic de la imatge font: útil per a un nombre de plans infinit" # era: msgstr "Mosaic de la imatge font: útil per a un nombre de plans infinit" #: ../plug-ins/MapObject/mapobject_ui.c:559 @@ -1216,7 +1223,7 @@ #: ../plug-ins/MapObject/mapobject_ui.c:1370 msgid "Map to Object" -msgstr "Mapa a l'objecte" +msgstr "Mapeja l'objecte" #: ../plug-ins/MapObject/mapobject_ui.c:1416 #: ../plug-ins/common/diffraction.c:474 @@ -1253,6 +1260,12 @@ # column, highest column ever used # -1 assume fsel is not available (and not attached to any drawable) # -1 assume there is no floating selection +# Set up progress display +# put up a progress bar +# max. rows allocated +# column, highest column ever used +# -1 assume fsel is not available (and not attached to any drawable) +# -1 assume there is no floating selection #. Set up progress display #. put up a progress bar #. max. rows allocated @@ -1307,7 +1320,7 @@ #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 #: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 -#: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 +#: ../plug-ins/common/jpeg.c:2476 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 #: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 @@ -1437,15 +1450,15 @@ #: ../plug-ins/common/AlienMap2.c:193 msgid "Alien Map _2..." -msgstr "Mapa alié _2..." +msgstr "Canvia _fases i freqüències..." #: ../plug-ins/common/AlienMap2.c:325 msgid "AlienMap2: Transforming..." -msgstr "Mapa alié 2: s'està transformant..." +msgstr "S'estan canviant les fases i freqüències dels colors..." #: ../plug-ins/common/AlienMap2.c:398 msgid "AlienMap2" -msgstr "Mapa alié 2" +msgstr "Canvia fases i freqüències" #: ../plug-ins/common/AlienMap2.c:438 ../plug-ins/common/AlienMap2.c:462 #: ../plug-ins/common/AlienMap2.c:486 @@ -1474,7 +1487,7 @@ #: ../plug-ins/common/CEL.c:112 ../plug-ins/common/CEL.c:130 msgid "KISS CEL" -msgstr "" +msgstr "KISS CEL" # era: msgstr "Cel·la Kiss" # No estic segur que CEL = CELL @@ -1713,7 +1726,7 @@ #: ../plug-ins/common/CML_explorer.c:309 msgid "(None)" -msgstr "(Cap)" +msgstr "Cap" #: ../plug-ins/common/CML_explorer.c:470 msgid "CML _Explorer..." @@ -2197,7 +2210,7 @@ # el guió no és un accelerador #: ../plug-ins/common/blinds.c:124 msgid "_Blinds..." -msgstr "An_gles morts..." +msgstr "_Angles morts..." # era: msgstr "_Persianes..." #: ../plug-ins/common/blinds.c:191 @@ -2247,15 +2260,15 @@ #: ../plug-ins/common/borderaverage.c:101 msgid "_Border Average..." -msgstr "_Vora mitjana..." +msgstr "Mitjana del contorn..." #: ../plug-ins/common/borderaverage.c:168 msgid "Border Average..." -msgstr "Vora mitjana..." +msgstr "Mitjana del contorn..." #: ../plug-ins/common/borderaverage.c:348 msgid "Borderaverage" -msgstr "Vora mitjana" +msgstr "Mitjana del contorn" #: ../plug-ins/common/borderaverage.c:362 msgid "Border Size" @@ -2271,20 +2284,20 @@ #: ../plug-ins/common/bumpmap.c:343 msgid "_Bump Map..." -msgstr "_Bump Map..." +msgstr "_Eleva..." #: ../plug-ins/common/bumpmap.c:492 msgid "Bump-mapping..." -msgstr "S'està fent el mapatge bump..." +msgstr "S'estan elevant les zones mapajades..." #: ../plug-ins/common/bumpmap.c:836 msgid "Bump Map" -msgstr "" +msgstr "Eleva" # era: msgstr "Bump Map" #: ../plug-ins/common/bumpmap.c:895 msgid "_Bump map:" -msgstr "" +msgstr "_Eleva:" # era: msgstr "_Bump map:" #: ../plug-ins/common/bumpmap.c:907 @@ -2298,17 +2311,19 @@ msgstr "Co_mpensa-ho per enfosquir-ho" # Invert bumpmap +# Invert bumpmap #. Invert bumpmap #: ../plug-ins/common/bumpmap.c:926 msgid "I_nvert bumpmap" -msgstr "I_nverteix el bumpmap" +msgstr "I_nvertint les zones elevades" # era: msgstr "I_nverteix el Bumpmap" # Tile bumpmap +# Tile bumpmap #. Tile bumpmap #: ../plug-ins/common/bumpmap.c:940 msgid "_Tile bumpmap" -msgstr "_Fes un mosaic del bumpmap" +msgstr "_Fes un mosaic del mapa de relleu" #: ../plug-ins/common/bumpmap.c:955 ../plug-ins/common/emboss.c:485 msgid "_Azimuth:" @@ -2355,9 +2370,8 @@ msgstr "c_astretch: el mapa de color era nul. S'està sortint...\n" #: ../plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "Vinyeta" +msgstr "_Ressegueix les vores..." #: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 #: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 @@ -2369,7 +2383,7 @@ #: ../plug-ins/common/cartoon.c:808 msgid "Cartoon" -msgstr "Vinyeta" +msgstr "Ressegueix les vores" #: ../plug-ins/common/cartoon.c:838 ../plug-ins/common/photocopy.c:867 msgid "_Mask radius:" @@ -2434,7 +2448,7 @@ #: ../plug-ins/common/channel_mixer.c:197 msgid "Channel Mi_xer..." -msgstr "Me_sclador de canal..." +msgstr "_Mesclador de canal..." #: ../plug-ins/common/channel_mixer.c:485 msgid "Channel Mixer" @@ -2490,7 +2504,7 @@ #: ../plug-ins/common/checkerboard.c:93 msgid "_Checkerboard..." -msgstr "Tauler d'es_cacs..." +msgstr "_Tauler d'escacs..." # era: msgstr "Tauler d'escacs" #: ../plug-ins/common/checkerboard.c:161 @@ -2540,7 +2554,7 @@ #: ../plug-ins/common/colortoalpha.c:104 msgid "Color to _Alpha..." -msgstr "Color a _alfa..." +msgstr "Co_lor a alfa..." # era: msgstr "Color a _Alfa" #: ../plug-ins/common/colortoalpha.c:187 @@ -2784,20 +2798,19 @@ #: ../plug-ins/common/convmatrix.c:195 msgid "_Convolution Matrix..." -msgstr "Matriu de _circumvolució..." +msgstr "_Aplica una matriu..." #: ../plug-ins/common/convmatrix.c:229 msgid "Convolution Matrix does not work on layers smaller than 3 pixels." -msgstr "" -"La matriu de circumvolució no funciona en capes més petites de 3 píxels." +msgstr "La matriu no pot funcionar en capes més petites de 3 píxels." #: ../plug-ins/common/convmatrix.c:302 msgid "Applying convolution" -msgstr "S'està aplicant la circumvolució" +msgstr "S'està aplicant la matriu" #: ../plug-ins/common/convmatrix.c:877 msgid "Convolution Matrix" -msgstr "Matriu de circumvolució" +msgstr "Aplica una matriu" #: ../plug-ins/common/convmatrix.c:902 msgid "Matrix" @@ -2896,7 +2909,7 @@ #: ../plug-ins/common/cubism.c:298 msgid "_Tile size:" -msgstr "Mida del _mosàic:" +msgstr "Mida del _mosaic:" # era msgstr "Mida del _mosaic:" #: ../plug-ins/common/cubism.c:311 @@ -2915,7 +2928,7 @@ # era: msgstr "Transformació cubísta..." #: ../plug-ins/common/curve_bend.c:567 msgid "_Curve Bend..." -msgstr "_Corba Bend..." +msgstr "Distorsiona segons la _corba..." #: ../plug-ins/common/curve_bend.c:703 msgid "Can operate on layers only (but was called on channel or mask)." @@ -2931,11 +2944,13 @@ # Possibly retrieve data from a previous run # The shell and main vbox +# Possibly retrieve data from a previous run +# The shell and main vbox #. Possibly retrieve data from a previous run #. The shell and main vbox #: ../plug-ins/common/curve_bend.c:1239 msgid "Curve Bend" -msgstr "Corba Bend" +msgstr "Distorsiona segons la corba" # Preview area, top of column #. Preview area, top of column @@ -3258,20 +3273,20 @@ #: ../plug-ins/common/depthmerge.c:192 msgid "_Depth Merge..." -msgstr "Fusió _profunda..." +msgstr "_Fusió d'imatges..." # era: msgstr "Fusió _profunda" #: ../plug-ins/common/depthmerge.c:382 msgid "Depth-merging..." -msgstr "Fusió profunda..." +msgstr "Fusió d'imatges..." #: ../plug-ins/common/depthmerge.c:631 msgid "Depth Merge" -msgstr "Fusió profunda" +msgstr "Fusió d'imatges" #: ../plug-ins/common/depthmerge.c:676 msgid "Source 1:" -msgstr "Font 1:" +msgstr "Imatge 1:" #: ../plug-ins/common/depthmerge.c:691 ../plug-ins/common/depthmerge.c:721 msgid "Depth map:" @@ -3279,7 +3294,7 @@ #: ../plug-ins/common/depthmerge.c:706 msgid "Source 2:" -msgstr "Font 2:" +msgstr "Imatge 2:" #: ../plug-ins/common/depthmerge.c:738 msgid "O_verlap:" @@ -3296,7 +3311,7 @@ #: ../plug-ins/common/despeckle.c:177 msgid "Des_peckle..." -msgstr "Elimina els _pics..." +msgstr "_Elimina els pics..." #: ../plug-ins/common/despeckle.c:418 ../plug-ins/common/despeckle.c:640 msgid "Despeckle" @@ -3335,23 +3350,23 @@ #: ../plug-ins/common/despeckle.c:510 msgid "_Black level:" -msgstr "Nivell _negre:" +msgstr "Nivell de _negre:" #: ../plug-ins/common/despeckle.c:526 msgid "_White level:" -msgstr "Nivell _blanc:" +msgstr "Nivell de _blanc:" #: ../plug-ins/common/destripe.c:113 msgid "Des_tripe..." -msgstr "_Treu les bandes..." +msgstr "_Estripa..." #: ../plug-ins/common/destripe.c:276 msgid "Destriping..." -msgstr "S'estan treient les bandes..." +msgstr "S'estan estripant..." #: ../plug-ins/common/destripe.c:442 msgid "Destripe" -msgstr "Treu les bandes" +msgstr "Estripa" #: ../plug-ins/common/destripe.c:469 ../plug-ins/common/gtm.c:578 #: ../plug-ins/common/postscript.c:2967 ../plug-ins/common/postscript.c:3128 @@ -3422,7 +3437,7 @@ #: ../plug-ins/common/displace.c:154 msgid "_Displace..." -msgstr "_Desplaça..." +msgstr "De_splaça..." #: ../plug-ins/common/displace.c:231 msgid "Displacing..." @@ -3459,6 +3474,9 @@ msgid "_Black" msgstr "_Negre" +# #################################### +# EN DESUS DES DEL GIMP 2.2.7 +# #################################### #: ../plug-ins/common/dog.c:139 msgid "Difference of Gaussians..." msgstr "Diferència de gaussinans..." @@ -3538,11 +3556,11 @@ #: ../plug-ins/common/emboss.c:133 msgid "_Emboss..." -msgstr "R_elleu..." +msgstr "Ressal_ta..." #: ../plug-ins/common/emboss.c:376 ../plug-ins/common/emboss.c:439 msgid "Emboss" -msgstr "Relleu" +msgstr "Ressalta" #: ../plug-ins/common/emboss.c:460 msgid "Function" @@ -3550,11 +3568,11 @@ #: ../plug-ins/common/emboss.c:464 msgid "_Bumpmap" -msgstr "_Bumpmap" +msgstr "_Mapa de relleu" #: ../plug-ins/common/emboss.c:465 msgid "_Emboss" -msgstr "R_elleu" +msgstr "_Ressalta" #: ../plug-ins/common/emboss.c:497 msgid "E_levation:" @@ -3562,16 +3580,15 @@ #: ../plug-ins/common/engrave.c:108 msgid "En_grave..." -msgstr "_Grava..." +msgstr "Franges _negres..." #: ../plug-ins/common/engrave.c:182 msgid "Engraving..." -msgstr "S'està gravant..." +msgstr "S'està aplicant el filtre franges negres..." -# era: msgstr "S'està gravant" #: ../plug-ins/common/engrave.c:211 msgid "Engrave" -msgstr "Grava" +msgstr "Franges negres" #: ../plug-ins/common/engrave.c:238 ../plug-ins/common/film.c:1203 #: ../plug-ins/common/gtm.c:594 ../plug-ins/common/postscript.c:2976 @@ -3590,16 +3607,17 @@ #: ../plug-ins/common/exchange.c:133 msgid "_Color Exchange..." -msgstr "Canvi de _color..." +msgstr "_Substitueix un color..." #: ../plug-ins/common/exchange.c:218 msgid "Color Exchange..." -msgstr "Canvi de color..." +msgstr "Substitueix un color..." +# set up the dialog #. set up the dialog #: ../plug-ins/common/exchange.c:293 msgid "Color Exchange" -msgstr "Canvi de color" +msgstr "Substitueix un color" #: ../plug-ins/common/exchange.c:308 msgid "Middle-click inside preview to pick \"From Color\"" @@ -3763,21 +3781,19 @@ #: ../plug-ins/common/flarefx.c:196 msgid "_FlareFX..." -msgstr "E_fectes de flames..." +msgstr "_Punt de llum..." -# era: msgstr "_FlareFX..." #: ../plug-ins/common/flarefx.c:271 msgid "Render Flare..." -msgstr "Composa la flamarada..." +msgstr "Crea el punt de llum..." #: ../plug-ins/common/flarefx.c:308 msgid "FlareFX" -msgstr "Efectes de flama" +msgstr "Punt de llum" -# era: msgstr "FlareFX" #: ../plug-ins/common/flarefx.c:741 msgid "Center of Flare Effect" -msgstr "Centre de l'efecte flamarada" +msgstr "Punt de llum" #: ../plug-ins/common/flarefx.c:777 msgid "_Show cursor" @@ -3814,6 +3830,7 @@ # era: msgstr "Abans, convertiu la imatge a format RGB!" #: ../plug-ins/common/fp.c:366 +#, fuzzy msgid "Applying the Filter Pack..." msgstr "S'està aplicant el paquet de filtratge..." @@ -3935,13 +3952,14 @@ #: ../plug-ins/common/fractaltrace.c:126 msgid "_Fractal Trace..." -msgstr "Traça del _fractal..." +msgstr "_Fractal..." # era: msgstr "Traç del _fractal..." #: ../plug-ins/common/fractaltrace.c:466 ../plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" -msgstr "Traça del fractal" +msgstr "Fractal" +# Settings #. Settings #: ../plug-ins/common/fractaltrace.c:726 msgid "Outside Type" @@ -3977,20 +3995,20 @@ #: ../plug-ins/common/gauss.c:157 msgid "_Gaussian Blur..." -msgstr "Difuminació _gaussiana..." +msgstr "Difuminat _gaussià..." #: ../plug-ins/common/gauss.c:413 msgid "Gaussian Blur..." -msgstr "Difuminació gaussiana..." +msgstr "Difuminat gaussià..." #: ../plug-ins/common/gauss.c:461 msgid "Gaussian Blur" -msgstr "Difuminació gaussiana" +msgstr "Difuminat gaussià" #. parameter settings #: ../plug-ins/common/gauss.c:484 msgid "Blur Radius" -msgstr "Radi de difuminació" +msgstr "Radi del difuminat" #: ../plug-ins/common/gauss.c:498 ../plug-ins/common/jigsaw.c:2456 #: ../plug-ins/common/spread.c:379 @@ -4046,7 +4064,7 @@ msgstr "Desa com a escombra" #. attach labels -#: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:769 +#: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:783 msgid "Spacing:" msgstr "Espaiat:" @@ -4318,27 +4336,27 @@ #: ../plug-ins/common/glasstile.c:129 msgid "_Glass Tile..." -msgstr "Mosàic _òptic..." +msgstr "_Mosaic òptic..." # era: msgstr "Mosaic _òptic..." #: ../plug-ins/common/glasstile.c:209 msgid "Glass Tile..." -msgstr "Mosàic òptic..." +msgstr "Mosaic òptic..." # era: msgstr "Mosaic òptic..." #: ../plug-ins/common/glasstile.c:250 msgid "Glass Tile" -msgstr "Mosàic òptic" +msgstr "Mosaic òptic" # era: msgstr "Mosaic òptic" #: ../plug-ins/common/glasstile.c:281 msgid "Tile _width:" -msgstr "Am_plada del mosàic:" +msgstr "Am_plada del mosaic:" # era: msgstr "Am_plada del mosaic:" #: ../plug-ins/common/glasstile.c:295 ../plug-ins/common/mosaic.c:621 msgid "Tile _height:" -msgstr "A_lçada del mosàic:" +msgstr "A_lçada del mosaic:" # era: msgstr "Al_çada del mosaic:" #: ../plug-ins/common/gqbist.c:415 @@ -4363,11 +4381,11 @@ #: ../plug-ins/common/gradmap.c:86 msgid "_Gradient Map" -msgstr "Mapa de de_gradat" +msgstr "Només colors del _degradat actiu" #: ../plug-ins/common/gradmap.c:124 msgid "Gradient Map..." -msgstr "Mapa de degradat..." +msgstr "Mapa del degradat..." #: ../plug-ins/common/grid.c:149 msgid "_Grid..." @@ -4377,47 +4395,47 @@ msgid "Drawing Grid..." msgstr "S'està dibuixant la graella..." -#: ../plug-ins/common/grid.c:621 ../plug-ins/gfig/gfig-dialog.c:1355 +#: ../plug-ins/common/grid.c:635 ../plug-ins/gfig/gfig-dialog.c:1355 #: ../plug-ins/imagemap/imap_menu.c:385 ../plug-ins/imagemap/imap_popup.c:153 #: ../plug-ins/imagemap/imap_toolbar.c:163 msgid "Grid" msgstr "Graella" #. attach labels -#: ../plug-ins/common/grid.c:696 +#: ../plug-ins/common/grid.c:710 msgid "Horizontal" msgstr "Horitzontal" -#: ../plug-ins/common/grid.c:698 +#: ../plug-ins/common/grid.c:712 msgid "Vertical" msgstr "Vertical" -#: ../plug-ins/common/grid.c:700 +#: ../plug-ins/common/grid.c:714 msgid "Intersection" msgstr "Intersecció" #. Width and Height -#: ../plug-ins/common/grid.c:703 ../plug-ins/common/svg.c:761 +#: ../plug-ins/common/grid.c:717 ../plug-ins/common/svg.c:761 #: ../plug-ins/common/wmf.c:548 ../plug-ins/print/gimp_main_window.c:992 #: ../plug-ins/print/gimp_main_window.c:1199 msgid "Width:" msgstr "Amplada:" #. attach labels -#: ../plug-ins/common/grid.c:836 +#: ../plug-ins/common/grid.c:850 msgid "Offset:" msgstr "Desplaçament:" #. attach color selectors -#: ../plug-ins/common/grid.c:875 +#: ../plug-ins/common/grid.c:889 msgid "Horizontal Color" msgstr "Color horitzontal" -#: ../plug-ins/common/grid.c:893 +#: ../plug-ins/common/grid.c:907 msgid "Vertical Color" msgstr "Color vertical" -#: ../plug-ins/common/grid.c:911 +#: ../plug-ins/common/grid.c:925 msgid "Intersection Color" msgstr "Color de la intersecció" @@ -4603,15 +4621,15 @@ #: ../plug-ins/common/illusion.c:101 msgid "_Illusion..." -msgstr "_Il·lusió..." +msgstr "_Il·lusió espiral..." #: ../plug-ins/common/illusion.c:173 msgid "Illusion..." -msgstr "Il·lusió..." +msgstr "Il·lusió espiral..." #: ../plug-ins/common/illusion.c:394 msgid "Illusion" -msgstr "Il·lusió" +msgstr "Il·lusió espiral" #: ../plug-ins/common/illusion.c:423 msgid "_Divisions:" @@ -4627,7 +4645,7 @@ #: ../plug-ins/common/iwarp.c:254 msgid "_IWarp..." -msgstr "_IWarp..." +msgstr "Manualment (_IWarp)..." #: ../plug-ins/common/iwarp.c:688 msgid "Warping..." @@ -4694,7 +4712,7 @@ # era: msgstr "Arremolina en sentit horari" #: ../plug-ins/common/iwarp.c:1059 msgid "_Deform radius:" -msgstr "Varia el ra_di:" +msgstr "Varia el _radi:" #: ../plug-ins/common/iwarp.c:1069 msgid "D_eform amount:" @@ -4723,23 +4741,23 @@ #: ../plug-ins/common/iwarp.c:1151 msgid "IWarp" -msgstr "IWarp" +msgstr "Manualment (IWarp)" #: ../plug-ins/common/jigsaw.c:364 msgid "_Jigsaw..." -msgstr "_Encaix..." +msgstr "_Puzzle..." #: ../plug-ins/common/jigsaw.c:418 msgid "Assembling Jigsaw..." -msgstr "S'està muntant l'encaix..." +msgstr "S'està muntant el puzzle..." #: ../plug-ins/common/jigsaw.c:2423 msgid "Jigsaw" -msgstr "Encaix" +msgstr "Puzzle" #: ../plug-ins/common/jigsaw.c:2444 msgid "Number of Tiles" -msgstr "Nombre de mosàics" +msgstr "Nombre de mosaics" # era: msgstr "Nombre de mosaics" #: ../plug-ins/common/jigsaw.c:2459 @@ -4752,11 +4770,11 @@ #: ../plug-ins/common/jigsaw.c:2490 msgid "Bevel Edges" -msgstr "Biselat de les vores" +msgstr "Vores amb bisell" #: ../plug-ins/common/jigsaw.c:2500 msgid "_Bevel width:" -msgstr "Amplada del _biselat:" +msgstr "Amplada del _bisell:" #: ../plug-ins/common/jigsaw.c:2504 msgid "Degree of slope of each piece's edge" @@ -4848,54 +4866,54 @@ msgid "Use restart markers" msgstr "Reinicia els marcadors" -#: ../plug-ins/common/jpeg.c:2053 ../plug-ins/xjt/xjt.c:860 +#: ../plug-ins/common/jpeg.c:2055 ../plug-ins/xjt/xjt.c:860 msgid "Optimize" msgstr "Optimitza" -#: ../plug-ins/common/jpeg.c:2067 +#: ../plug-ins/common/jpeg.c:2069 msgid "Progressive" msgstr "Progressiu" -#: ../plug-ins/common/jpeg.c:2086 +#: ../plug-ins/common/jpeg.c:2088 msgid "Force baseline JPEG" msgstr "Força JPEG de línia base" -#: ../plug-ins/common/jpeg.c:2102 +#: ../plug-ins/common/jpeg.c:2104 msgid "Save EXIF data" msgstr "Desa dades EXIF" -#: ../plug-ins/common/jpeg.c:2119 +#: ../plug-ins/common/jpeg.c:2121 msgid "Save thumbnail" msgstr "Desa la miniatura" #. Subsampling -#: ../plug-ins/common/jpeg.c:2136 +#: ../plug-ins/common/jpeg.c:2138 msgid "Subsampling:" msgstr "Submostra:" # DCT method #. DCT method -#: ../plug-ins/common/jpeg.c:2163 +#: ../plug-ins/common/jpeg.c:2165 msgid "DCT method:" msgstr "Mètode DCT:" -#: ../plug-ins/common/jpeg.c:2169 +#: ../plug-ins/common/jpeg.c:2171 msgid "Fast Integer" msgstr "Nombre enter ràpid" -#: ../plug-ins/common/jpeg.c:2170 +#: ../plug-ins/common/jpeg.c:2172 msgid "Integer" msgstr "Nombre enter" -#: ../plug-ins/common/jpeg.c:2171 +#: ../plug-ins/common/jpeg.c:2173 msgid "Floating-Point" msgstr "Punt flotant" -#: ../plug-ins/common/jpeg.c:2185 +#: ../plug-ins/common/jpeg.c:2187 msgid "Comment" msgstr "Comentari" -#: ../plug-ins/common/jpeg.c:2338 +#: ../plug-ins/common/jpeg.c:2340 #, c-format msgid "Opening thumbnail for '%s'..." msgstr "S'està obrint miniatura per a '%s'..." @@ -4978,7 +4996,7 @@ #: ../plug-ins/common/lic.c:812 msgid "_Van Gogh (LIC)..." -msgstr "_Van Gogh (LIC)" +msgstr "_Van Gogh (LIC)..." #: ../plug-ins/common/mail.c:253 msgid "_Mail Image..." @@ -5009,6 +5027,7 @@ msgid "_Filename:" msgstr "Nom de _fitxer:" +# Encapsulation label #. Encapsulation label #: ../plug-ins/common/mail.c:580 msgid "Encapsulation:" @@ -5045,11 +5064,11 @@ #: ../plug-ins/common/mapcolor.c:154 msgid "Adjust _FG-BG" -msgstr "Ajusta _primer pla-fons" +msgstr "_Colors primer pla i fons" #: ../plug-ins/common/mapcolor.c:172 msgid "Color Range _Mapping..." -msgstr "S'està _mapejant el rang de color..." +msgstr "_Substitueix un grup de colors..." #: ../plug-ins/common/mapcolor.c:219 ../plug-ins/common/mapcolor.c:507 msgid "Cannot operate on gray or indexed color images." @@ -5061,12 +5080,12 @@ #: ../plug-ins/common/mapcolor.c:282 msgid "Mapping colors..." -msgstr "S'estan mapejant els colors..." +msgstr "Substitueix un _grup de colors..." # era: msgstr "S'estan mapant els colors..." #: ../plug-ins/common/mapcolor.c:359 msgid "Map Color Range" -msgstr "Rang del mapa de colors" +msgstr "Substitueix un grup de colors" # era: msgstr "Abast del mapa de colors" #: ../plug-ins/common/mapcolor.c:383 @@ -5086,7 +5105,7 @@ #: ../plug-ins/common/max_rgb.c:106 msgid "_Max RGB..." -msgstr "RGB _màxim..." +msgstr "RGB mà_xim..." #: ../plug-ins/common/max_rgb.c:145 msgid "Can only operate on RGB drawables." @@ -5112,20 +5131,19 @@ # era: msgstr "Retingueu els canals m_ínims" #: ../plug-ins/common/mblur.c:176 msgid "_Motion Blur..." -msgstr "Difuminació de _moviment..." +msgstr "Difuminat per _moviment..." #: ../plug-ins/common/mblur.c:796 msgid "Motion Blurring..." -msgstr "Difuminació de moviment..." +msgstr "Difuminat per moviment..." #: ../plug-ins/common/mblur.c:893 msgid "Motion Blur" -msgstr "Difuminació de moviment" +msgstr "Difuminat per moviment" -# era: msgstr "Moviment de difuminació" #: ../plug-ins/common/mblur.c:915 msgid "Blur Type" -msgstr "Tipus de difuminació" +msgstr "Tipus de difuminat" #: ../plug-ins/common/mblur.c:919 msgid "_Linear" @@ -5141,7 +5159,7 @@ #: ../plug-ins/common/mblur.c:930 msgid "Blur Parameters" -msgstr "Paràmetres de difuminació" +msgstr "Paràmetres del difuminat" #: ../plug-ins/common/mblur.c:956 ../plug-ins/common/newsprint.c:1009 msgid "_Angle:" @@ -5149,7 +5167,7 @@ #: ../plug-ins/common/mblur.c:969 msgid "Blur Center" -msgstr "Difumina el centre" +msgstr "Centre del difuminat" # Inform the user that we couldn't losslessly save the # * transparency & just use the full palette @@ -5262,7 +5280,7 @@ #: ../plug-ins/common/mosaic.c:309 msgid "_Mosaic..." -msgstr "_Mosàic..." +msgstr "_Mosaic..." # progress bar for gradient finding #. progress bar for gradient finding @@ -5270,14 +5288,15 @@ msgid "Finding Edges..." msgstr "S'estan trobant les vores..." +# Progress bar for rendering tiles #. Progress bar for rendering tiles #: ../plug-ins/common/mosaic.c:483 msgid "Rendering Tiles..." -msgstr "S'estan executant els mosàics..." +msgstr "S'estan composant els mosiacs..." #: ../plug-ins/common/mosaic.c:509 msgid "Mosaic" -msgstr "Mosàic" +msgstr "Mosaic" #: ../plug-ins/common/mosaic.c:544 msgid "Co_lor averaging" @@ -5285,7 +5304,7 @@ #: ../plug-ins/common/mosaic.c:554 msgid "Allo_w tile splitting" -msgstr "Per_met la divisió dels mosàics" +msgstr "Per_met la divisió dels mosaics" #: ../plug-ins/common/mosaic.c:564 msgid "_Pitted surfaces" @@ -5295,10 +5314,11 @@ msgid "_FG/BG lighting" msgstr "Lluminositat _primer pla/fons" +# tiling primitive #. tiling primitive #: ../plug-ins/common/mosaic.c:588 msgid "Tiling Primitives" -msgstr "Mosàics primitius" +msgstr "Primitives del mosaic" #: ../plug-ins/common/mosaic.c:592 msgid "_Squares" @@ -5319,15 +5339,15 @@ #: ../plug-ins/common/mosaic.c:612 msgid "T_ile size:" -msgstr "M_ida del mosàic:" +msgstr "M_ida del mosaic:" #: ../plug-ins/common/mosaic.c:630 msgid "Til_e spacing:" -msgstr "_Espaiat del mosàic:" +msgstr "_Espaiat del mosaic:" #: ../plug-ins/common/mosaic.c:639 msgid "Tile _neatness:" -msgstr "" +msgstr "Netedat:" #: ../plug-ins/common/mosaic.c:649 msgid "Light _direction:" @@ -5483,7 +5503,7 @@ #: ../plug-ins/common/nlfilt.c:126 msgid "_NL Filter..." -msgstr "Filtre _NL..." +msgstr "_Filtre NL..." #: ../plug-ins/common/nlfilt.c:954 msgid "NL Filter..." @@ -5516,7 +5536,7 @@ #: ../plug-ins/common/noisify.c:157 msgid "_Scatter RGB..." -msgstr "Disper_sa RGB..." +msgstr "Dispersa _RGB..." #: ../plug-ins/common/noisify.c:285 msgid "Adding Noise..." @@ -5527,9 +5547,8 @@ msgstr "Dispersa RGB" #: ../plug-ins/common/noisify.c:477 -#, fuzzy msgid "Co_rrelated noise" -msgstr "Crea una el·lipsi" +msgstr "Soroll" #: ../plug-ins/common/noisify.c:492 msgid "_Independent RGB" @@ -5554,7 +5573,7 @@ #: ../plug-ins/common/nova.c:179 msgid "Su_perNova..." -msgstr "Su_pernova..." +msgstr "_Supernova..." #: ../plug-ins/common/nova.c:262 msgid "Rendering SuperNova..." @@ -5586,7 +5605,7 @@ #: ../plug-ins/common/oilify.c:111 msgid "Oili_fy..." -msgstr "Oli_fica..." +msgstr "Pintura a l'_oli..." #: ../plug-ins/common/oilify.c:189 msgid "Oil Painting..." @@ -5594,7 +5613,7 @@ #: ../plug-ins/common/oilify.c:477 msgid "Oilify" -msgstr "Olifica" +msgstr "Pintura a l'oli" #: ../plug-ins/common/oilify.c:504 msgid "_Mask size:" @@ -5606,7 +5625,7 @@ #: ../plug-ins/common/papertile.c:235 msgid "Paper Tile" -msgstr "Mosàic del paper" +msgstr "Retalls de paper" #: ../plug-ins/common/papertile.c:254 msgid "Division" @@ -5675,7 +5694,7 @@ #: ../plug-ins/common/papertile.c:527 msgid "Paper Tile..." -msgstr "Mosàic del paper..." +msgstr "Retalls de paper..." #: ../plug-ins/common/papertile.c:815 msgid "September 31, 1999" @@ -5683,7 +5702,7 @@ #: ../plug-ins/common/papertile.c:816 msgid "_Paper Tile..." -msgstr "Mosàic del _paper..." +msgstr "Retalls de _paper..." #: ../plug-ins/common/pat.c:104 ../plug-ins/common/pat.c:126 msgid "GIMP pattern" @@ -5933,7 +5952,7 @@ #: ../plug-ins/common/polar.c:170 msgid "P_olar Coords..." -msgstr "Coordenades p_olars..." +msgstr "Coordenades _polars..." #: ../plug-ins/common/polar.c:357 msgid "Polarizing..." @@ -6048,7 +6067,7 @@ #: ../plug-ins/common/postscript.c:2992 msgid "Pages to load (e.g.: 1-4 or 1,3,5-7)" -msgstr "" +msgstr "Pàgines a carregar (p.e. 1-4 o 1,3,5-7)" #: ../plug-ins/common/postscript.c:2994 msgid "Try Bounding Box" @@ -6220,7 +6239,7 @@ #: ../plug-ins/common/randomize.c:268 msgid "_Slur..." -msgstr "" +msgstr "_Barreja..." #: ../plug-ins/common/randomize.c:756 ../plug-ins/common/snoise.c:614 msgid "_Random seed:" @@ -6367,19 +6386,19 @@ #: ../plug-ins/common/ripple.c:138 msgid "_Ripple..." -msgstr "_So de mar..." +msgstr "_Onades del mar..." #: ../plug-ins/common/ripple.c:222 msgid "Rippling..." -msgstr "So de mar..." +msgstr "S'estan fent les onades de mar..." #: ../plug-ins/common/ripple.c:472 msgid "Ripple" -msgstr "So de mar" +msgstr "Onades del mar" #: ../plug-ins/common/ripple.c:522 msgid "_Retain tilability" -msgstr "_Reté el mosàic" +msgstr "_Reté el mosaic" # Edges toggle box #. Edges toggle box @@ -6426,7 +6445,7 @@ #: ../plug-ins/common/sample_colorize.c:296 msgid "_Sample Colorize..." -msgstr "Acoloreix la mo_stra..." +msgstr "_Acoloreix la mostra..." #: ../plug-ins/common/sample_colorize.c:1310 msgid "Sample Colorize" @@ -6514,7 +6533,7 @@ #: ../plug-ins/common/scatter_hsv.c:113 msgid "S_catter HSV..." -msgstr "Dis_persa HSV..." +msgstr "Dispersa _HSV..." #: ../plug-ins/common/scatter_hsv.c:208 msgid "Scattering HSV..." @@ -6561,8 +6580,9 @@ msgstr "No s'ha trobat la finestra especificada" #: ../plug-ins/common/screenshot.c:609 +#, fuzzy msgid "Error obtaining Screen Shot" -msgstr "S'ha produït un error en obtenir la captura de pantalla" +msgstr "No s'ha pogut fer la captura de pantalla" #. single window #: ../plug-ins/common/screenshot.c:643 ../plug-ins/common/screenshot.c:673 @@ -6620,7 +6640,7 @@ #: ../plug-ins/common/sharpen.c:124 msgid "_Sharpen..." -msgstr "A_fila..." +msgstr "_Afila..." # * Let the user know what we're doing... #. @@ -6636,25 +6656,25 @@ #: ../plug-ins/common/shift.c:113 msgid "_Shift..." -msgstr "De_calatge..." +msgstr "_Decalatge..." #: ../plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "S'està decalant..." -#: ../plug-ins/common/shift.c:349 +#: ../plug-ins/common/shift.c:360 msgid "Shift" msgstr "Decalatge" -#: ../plug-ins/common/shift.c:373 +#: ../plug-ins/common/shift.c:384 msgid "Shift _horizontally" msgstr "Decala _horitzontalment" -#: ../plug-ins/common/shift.c:374 +#: ../plug-ins/common/shift.c:387 msgid "Shift _vertically" msgstr "Decala _verticalment" -#: ../plug-ins/common/shift.c:404 +#: ../plug-ins/common/shift.c:418 msgid "Shift _amount:" msgstr "Qu_antitat de decalatge:" @@ -6698,7 +6718,7 @@ #: ../plug-ins/common/sinus.c:743 msgid "_Force tiling?" -msgstr "Voleu _forçar un mosàic?" +msgstr "Voleu _forçar un mosaic?" #: ../plug-ins/common/sinus.c:756 msgid "_Ideal" @@ -6781,7 +6801,7 @@ #: ../plug-ins/common/smooth_palette.c:88 msgid "Smoo_th Palette..." -msgstr "Pale_ta suau..." +msgstr "_Paleta suau..." #: ../plug-ins/common/smooth_palette.c:180 msgid "Deriving Smooth Palette..." @@ -6797,7 +6817,7 @@ #: ../plug-ins/common/snoise.c:186 msgid "_Solid Noise..." -msgstr "Soroll _sòlid..." +msgstr "_Soroll sòlid..." #: ../plug-ins/common/snoise.c:336 msgid "Solid Noise..." @@ -6858,7 +6878,7 @@ #: ../plug-ins/common/softglow.c:138 msgid "_Softglow..." -msgstr "Lluentor _suau..." +msgstr "_Lluentor suau..." #: ../plug-ins/common/softglow.c:629 msgid "Softglow" @@ -6870,15 +6890,15 @@ #: ../plug-ins/common/sparkle.c:186 msgid "_Sparkle..." -msgstr "_Llampada..." +msgstr "_Làmpada..." #: ../plug-ins/common/sparkle.c:292 msgid "Sparkling..." -msgstr "S'està llampant..." +msgstr "S'està fent l'efecte làmpada..." #: ../plug-ins/common/sparkle.c:343 msgid "Sparkle" -msgstr "Llampada" +msgstr "Làmpada" #: ../plug-ins/common/sparkle.c:366 msgid "Luminosity _Threshold:" @@ -6926,11 +6946,11 @@ #: ../plug-ins/common/sparkle.c:420 msgid "Adjust the Spike Density" -msgstr "Ajusteu la densitat de puntes" +msgstr "Ajusta la densitat de puntes" #: ../plug-ins/common/sparkle.c:430 msgid "Adjust the Opacity of the Spikes" -msgstr "Ajusteu l'opacitat de les puntes" +msgstr "Ajusta l'opacitat de les puntes" #: ../plug-ins/common/sparkle.c:437 msgid "_Random hue:" @@ -7040,7 +7060,7 @@ #: ../plug-ins/common/spheredesigner.c:1743 msgid "Bumpmap" -msgstr "Bumpmap" +msgstr "Mapa de relleu" #: ../plug-ins/common/spheredesigner.c:1745 #: ../plug-ins/common/spheredesigner.c:2617 @@ -7074,7 +7094,7 @@ #: ../plug-ins/common/spheredesigner.c:2616 msgid "Bump" -msgstr "Bump" +msgstr "Eleva" #: ../plug-ins/common/spheredesigner.c:2644 msgid "Texture:" @@ -7170,15 +7190,15 @@ #: ../plug-ins/common/struc.c:1146 msgid "_Apply Canvas..." -msgstr "_Aplica el llenç..." +msgstr "Pintura sobre _tapís..." #: ../plug-ins/common/struc.c:1227 msgid "Applying Canvas..." -msgstr "S'està aplicant el llenç..." +msgstr "S'està aplicant l'efecte tapís..." #: ../plug-ins/common/struc.c:1264 msgid "Apply Canvas" -msgstr "Aplica el llenç" +msgstr "Pintura sobre tapís" #: ../plug-ins/common/struc.c:1290 msgid "_Top-right" @@ -7454,20 +7474,21 @@ #: ../plug-ins/common/tile.c:112 msgid "_Tile..." -msgstr "_Mosàic..." +msgstr "_Mosaic..." +# Set the tile cache size #. Set the tile cache size #: ../plug-ins/common/tile.c:192 ../plug-ins/common/tileit.c:320 msgid "Tiling..." -msgstr "S'està fent el mosàic..." +msgstr "S'està composant el mosaic..." #: ../plug-ins/common/tile.c:394 msgid "Tile" -msgstr "Mosàic" +msgstr "Mosaic" #: ../plug-ins/common/tile.c:408 msgid "Tile to New Size" -msgstr "Fes el mosàic d'una nova mida" +msgstr "Fes el mosaic d'una nova mida" #: ../plug-ins/common/tile.c:430 msgid "C_reate New Image" @@ -7475,12 +7496,13 @@ #: ../plug-ins/common/tileit.c:224 msgid "_Small Tiles..." -msgstr "Mosàics petit_s..." +msgstr "_Redueix i composa un mosaic ..." +# Get the preview image #. Get the preview image #: ../plug-ins/common/tileit.c:363 msgid "TileIt" -msgstr "Fes-ne un mosàic" +msgstr "Fes-ne un mosaic" #. Area for buttons etc #. Flip @@ -7520,7 +7542,7 @@ #: ../plug-ins/common/tiler.c:66 msgid "_Make Seamless" -msgstr "" +msgstr "_Quadruplica per fer un mosaic" #: ../plug-ins/common/tiler.c:322 msgid "Tiler..." @@ -7619,7 +7641,7 @@ #: ../plug-ins/common/uniteditor.c:151 msgid "_Unit Editor" -msgstr "Editor d'_unitats" +msgstr "_Gestor d'unitats" #: ../plug-ins/common/uniteditor.c:210 msgid "New Unit" @@ -7655,7 +7677,7 @@ #: ../plug-ins/common/uniteditor.c:339 msgid "Unit factor must not be 0." -msgstr "El factor d'unitat no pot ser 0." +msgstr "El factor no pot ser 0." #: ../plug-ins/common/uniteditor.c:349 msgid "All text fields must contain a value." @@ -7663,19 +7685,19 @@ #: ../plug-ins/common/uniteditor.c:403 msgid "Unit Editor" -msgstr "Editor d'unitat" +msgstr "Gestor d'unitats" #: ../plug-ins/common/unsharp.c:143 msgid "_Unsharp Mask..." -msgstr "Fes la màscara _borrosa..." +msgstr "_Màscara suavitzant..." #: ../plug-ins/common/unsharp.c:468 msgid "Merging..." -msgstr "S'està combinant..." +msgstr "S'està suavitzant..." #: ../plug-ins/common/unsharp.c:635 msgid "Unsharp Mask" -msgstr "Fes la màscara borrosa" +msgstr "Màscara suavitzant" #: ../plug-ins/common/url.c:85 ../plug-ins/imagemap/imap_selection.c:421 msgid "URL" @@ -7719,7 +7741,7 @@ #: ../plug-ins/common/video.c:1817 msgid "Vi_deo..." -msgstr "Ví_deo..." +msgstr "_Simula imatge de vídeo..." #: ../plug-ins/common/video.c:1889 msgid "Video/RGB..." @@ -7727,7 +7749,7 @@ #: ../plug-ins/common/video.c:2020 msgid "Video" -msgstr "Vídeo" +msgstr "Simula imatge de vídeo" # frame for the radio buttons #. frame for the radio buttons @@ -7745,7 +7767,7 @@ #: ../plug-ins/common/vinvert.c:84 msgid "_Value Invert" -msgstr "Inversió de _valor..." +msgstr "_Inversió de valor..." #: ../plug-ins/common/vinvert.c:126 msgid "Value Invert..." @@ -7786,11 +7808,11 @@ #: ../plug-ins/common/vpropagate.c:242 msgid "_Value Propagate..." -msgstr "Propaga el _valor..." +msgstr "Filtra el _llindar dels colors..." #: ../plug-ins/common/vpropagate.c:254 msgid "E_rode" -msgstr "E_rosiona" +msgstr "_Erosiona" #: ../plug-ins/common/vpropagate.c:266 msgid "_Dilate" @@ -7798,11 +7820,11 @@ #: ../plug-ins/common/vpropagate.c:476 msgid "Value Propagating..." -msgstr "S'està propagant el valor..." +msgstr "S'està filtrant el llindar dels colors" #: ../plug-ins/common/vpropagate.c:1058 msgid "Value Propagate" -msgstr "Propaga el valor" +msgstr "Filtra el llindar dels colors" # Parameter settings #. Parameter settings @@ -7982,11 +8004,11 @@ #: ../plug-ins/common/waves.c:127 msgid "_Waves..." -msgstr "_Ones..." +msgstr "On_es circumcèntriques..." #: ../plug-ins/common/waves.c:249 msgid "Waves" -msgstr "Ones" +msgstr "Ones circumcèntriques" #: ../plug-ins/common/waves.c:287 msgid "_Reflective" @@ -8386,15 +8408,15 @@ msgstr "No es poden llegir les entrades de color" #: ../plug-ins/common/xwd.c:527 -#, c-format +#, fuzzy, c-format msgid "" "XWD-file %s has format %d, depth %d\n" "and bits per pixel %d.\n" "Currently this is not supported." msgstr "" -"El fitxer XWD %s té el format %d, profunditat %d\n" +"El fitxer XWD %s que té el format %d, la profunditat %d\n" "i %d bits per píxel.\n" -"Aquests valors no se suporten." +"No es pot obrir amb aquesta versió del GIMP." #: ../plug-ins/common/xwd.c:557 msgid "Cannot save images with alpha channels." @@ -8423,7 +8445,7 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "Navegador de procediments" +msgstr "Gestor de funcions" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:146 @@ -8444,15 +8466,15 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:386 #: ../plug-ins/dbbrowser/plugin-browser.c:397 msgid "Searching by name - please wait" -msgstr "S'està cercant per nom. Espereu-vos" +msgstr "Espereu mentres s'està cercant per nom" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:410 msgid "Searching by blurb - please wait" -msgstr "S'està cercant per ressenya. Espereu-vos" +msgstr "Espereu mentres s'està cercant per ressenya" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:421 msgid "Searching - please wait" -msgstr "S'està cercant. Espereu-vos" +msgstr "Espereu mentres s'està cercant" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:428 msgid "1 Procedure" @@ -8518,7 +8540,7 @@ #: ../plug-ins/dbbrowser/plugin-browser.c:151 msgid "_Plug-In Browser" -msgstr "Navegador del _connector" +msgstr "Gestor de _connectors" #: ../plug-ins/dbbrowser/plugin-browser.c:418 msgid "1 Plug-In Interface" @@ -8531,7 +8553,7 @@ #: ../plug-ins/dbbrowser/plugin-browser.c:544 msgid "Plug-In Browser" -msgstr "Navegador del connector" +msgstr "Gestor de connectors" #: ../plug-ins/dbbrowser/plugin-browser.c:595 msgid "Name" @@ -8565,7 +8587,7 @@ #: ../plug-ins/dbbrowser/procedure-browser.c:89 msgid "Procedure _Browser" -msgstr "_Navegador de procediments" +msgstr "Gestor de _funcions" #: ../plug-ins/faxg3/faxg3.c:100 msgid "G3 fax image" @@ -8750,7 +8772,7 @@ #. Start building the dialog up #: ../plug-ins/gfig/gfig-dialog.c:295 msgid "Gfig" -msgstr "Gfig" +msgstr "Figures (Gfig)" # Tool options notebook #. Tool options notebook @@ -9050,28 +9072,28 @@ msgstr "Estrella Nombre de punts" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "Crea un cercle" +msgstr "Crea una corba Bezier" #: ../plug-ins/gfig/gfig.c:132 msgid "_Gfig..." -msgstr "_Gfig..." +msgstr "_Figures (Gfig)..." #: ../plug-ins/gfig/gfig.c:726 +#, fuzzy msgid "" "Error trying to save figure as a parasite: can't attach parasite to " "drawable.\n" msgstr "" -"S'ha produït un error en intentar desar la figura com un paràsit: no es pot " -"adjuntar un paràsit a un dibuixable.\n" +"S'ha produït un error quan es desava la figura com un paràsit: no es pot " +"adjuntar un paràsit en una imatge." -#: ../plug-ins/gfig/gfig.c:747 +#: ../plug-ins/gfig/gfig.c:752 #, c-format -msgid "Error trying to open temp file '%s'for parasite loading.\n" +msgid "Error trying to open temporary file '%s' for parasite loading: %s" msgstr "" -"S'ha produït un error en intentar obrir el fitxer temporal '%s' per carregar " -"el paràsit.\n" +"S'ha produït un error quan s'estava obrint el fitxer temporal '%s' per " +"carregar el paràsit: %s" #: ../plug-ins/gflare/gflare.c:560 msgid "Addition" @@ -9083,11 +9105,11 @@ #: ../plug-ins/gflare/gflare.c:821 msgid "_GFlare..." -msgstr "_GFlare..." +msgstr "Enlluerna (_GFlare)..." #: ../plug-ins/gflare/gflare.c:960 msgid "Gradient Flare..." -msgstr "Flamarada del degradat..." +msgstr "Degradat GFlare..." #: ../plug-ins/gflare/gflare.c:1262 #, c-format @@ -9122,12 +9144,13 @@ msgstr "No s'ha pogut escriure el fitxer GFlare '%s': %s" # * Dialog Shell +# * Dialog Shell #. #. * Dialog Shell #. #: ../plug-ins/gflare/gflare.c:2294 msgid "GFlare" -msgstr "GFlare" +msgstr "_Enlluerna (GFlare)..." #: ../plug-ins/gflare/gflare.c:2346 msgid "A_uto update preview" @@ -9398,9 +9421,7 @@ #: ../plug-ins/gimpressionist/brush.c:590 #: ../plug-ins/gimpressionist/paper.c:192 msgid "Specifies the amount of embossing to apply to the image (in percent)" -msgstr "" -"Especifica la quantitat de difuminació a aplicar a la imatge (en tant per " -"cent)" +msgstr "Especifica el tant per cent del difuminat a aplicar a la imatge" #: ../plug-ins/gimpressionist/color.c:42 msgid "Co_lor" @@ -9528,7 +9549,7 @@ #: ../plug-ins/gimpressionist/gimp.c:79 msgid "_GIMPressionist..." -msgstr "El _GIMPressionist..." +msgstr "_GIMPressionisme..." #: ../plug-ins/gimpressionist/gimp.c:350 msgid "Painting..." @@ -9536,11 +9557,11 @@ #: ../plug-ins/gimpressionist/gimpressionist.c:117 msgid "The GIMPressionist" -msgstr "El GIMPressionist" +msgstr "GIMPressionisme" #: ../plug-ins/gimpressionist/gimpressionist.c:196 msgid "Gimpressionist" -msgstr "Gimpressionist" +msgstr "GIMPressionisme" #: ../plug-ins/gimpressionist/gimpressionist.c:200 msgid "A_bout" @@ -9664,7 +9685,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:565 #: ../plug-ins/gimpressionist/sizemap.c:435 msgid "Adjust the preview's brightness" -msgstr "Ajusteu la brillantor de la visualització prèvia" +msgstr "Ajusta la brillantor de la visualització prèvia" #: ../plug-ins/gimpressionist/orientmap.c:587 msgid "Select previous vector" @@ -10148,7 +10169,7 @@ #: ../plug-ins/ifscompose/ifscompose.c:1180 msgid "IFS Fractal Render Options" -msgstr "Opcions de composició de fractal IFS" +msgstr "Opcions de composició del fractal IFS" #: ../plug-ins/ifscompose/ifscompose.c:1201 msgid "Max. Memory:" @@ -10201,12 +10222,14 @@ msgstr "Obre el fitxer fractal IFS" #: ../plug-ins/imagemap/imap_about.c:43 +#, fuzzy msgid "Imagemap plug-in 2.2" -msgstr "Connector Imagemap 2.0" +msgstr "Connector Imagemap 2.3" #: ../plug-ins/imagemap/imap_about.c:44 +#, fuzzy msgid "Copyright(c) 1999-2004 by Maurits Rijk" -msgstr "Copyright(c) 1999-2003 per en Maurits Rikj" +msgstr "Copyright(c) 1999-2005 per en Maurits Rikj" #: ../plug-ins/imagemap/imap_about.c:46 msgid "Released under the GNU General Public License" @@ -10997,7 +11020,7 @@ msgid "Drawing Maze..." msgstr "S'està dibuixant el laberint..." -# $Id: ca.po,v 1.59.2.7 2005/05/08 21:45:22 neo Exp $ +# $Id: ca.po,v 1.59.2.8 2005/08/07 09:54:48 joseppc Exp $ #: ../plug-ins/maze/maze.h:2 msgid "Maze" msgstr "Laberint" @@ -11042,7 +11065,7 @@ #: ../plug-ins/pagecurl/pagecurl.c:224 msgid "_Pagecurl..." -msgstr "Rínxol de _pàgina..." +msgstr "Rín_xol de pàgina..." #: ../plug-ins/pagecurl/pagecurl.c:443 msgid "Pagecurl Effect" @@ -11126,24 +11149,23 @@ #: ../plug-ins/print/gimp_color_window.c:315 msgid "Adjust the cyan balance of the print" -msgstr "Ajusteu el balanç cian de la impressió" +msgstr "Ajusta el balanç del blau cel (cian)" #: ../plug-ins/print/gimp_color_window.c:334 msgid "Adjust the magenta balance of the print" -msgstr "Ajusteu el balanç magenta de la impressió" +msgstr "Ajusta el balanç rosa (magenta)" #: ../plug-ins/print/gimp_color_window.c:353 msgid "Adjust the yellow balance of the print" -msgstr "Ajusteu el balanç groc de la impressió" +msgstr "Ajusta el balanç groc de la impressió" #: ../plug-ins/print/gimp_color_window.c:372 msgid "" "Adjust the saturation (color balance) of the print\n" "Use zero saturation to produce grayscale output using color and black inks" msgstr "" -"Ajusteu la saturació (balanç de color) de la impressió.\n" -"Utilitzeu la saturació a zero per produir sortida en escala de grisos fent " -"servir tintes negra i de colors." +"Ajusta la saturació (balanç de color) de la impressió.\n" +"Poseu la saturació a zero per imprimir en blanc i negre." #: ../plug-ins/print/gimp_color_window.c:385 msgid "Density:" @@ -11155,9 +11177,9 @@ "ink bleeds through the paper or smears; increase the density if black " "regions are not solid." msgstr "" -"Ajusteu la densitat (quantitat de tinta) de la impressió. Reduïu la densitat " -"si la tinta traspassa el paper o taca. Incrementeu la densitat si les " -"regions negres no són sòlides." +"Ajusta la densitat (quantitat de tinta) de la impressió. Quan la tinta " +"traspassa el paper o taca massa, reduïu la densitat. Quan les regions negres " +"són discontínues, incrementeu la densitat." #: ../plug-ins/print/gimp_color_window.c:415 msgid "" @@ -11165,10 +11187,10 @@ "brighter print, while smaller values will produce a generally darker print. " "Black and white will remain the same, unlike with the brightness adjustment." msgstr "" -"Ajusteu la gamma de la impressió. Valors més grans produiran una impressió " -"en general més brillant, mentre que valors més petits produiran una " -"impressió més fosca. Blancs i negres permaneixeran igual, a diferència de " -"l'ajustament de brillantor." +"Ajusta la gamma de la impressió. Un valors gran produeix una impressió més " +"brillant, mentre que un valor petit produeix una impressió més fosca. Tot i " +"així, a diferència de l'ajustament de brillantor, el blanc i el negre es " +"quedarà igual." #: ../plug-ins/print/gimp_color_window.c:432 msgid "Dither Algorithm:" @@ -11183,7 +11205,7 @@ "art.\n" "Hybrid Floyd-Steinberg generally produces inferior output." msgstr "" -"Escolliu l'algorisme de tramatge a utilitzar.\n" +"Escolliu l'algorisme per crear la tramat a utilitzar.\n" "Adaptive Hybrid dóna normalment la millor qualitat.\n" "Ordenat és més ràpid i dóna quasi la millor qualitat en fotografies.\n" "Ràpid i molt ràpid són considerablament més ràpids, i va bé per a text i " @@ -11354,7 +11376,7 @@ #: ../plug-ins/print/gimp_main_window.c:742 msgid "Browse" -msgstr "Navegador" +msgstr "Cerca" #: ../plug-ins/print/gimp_main_window.c:748 msgid "Choose the PPD file for your printer" @@ -11695,13 +11717,13 @@ #. #: ../plug-ins/print/gimp_main_window.c:1442 msgid "Adjust output..." -msgstr "Ajusteu la sortida..." +msgstr "Ajusta la sortida..." #: ../plug-ins/print/gimp_main_window.c:1449 msgid "" "Adjust color balance, brightness, contrast, saturation, and dither algorithm" msgstr "" -"Ajusteu el balanç de color, la brillantor, el contrast, la saturació i " +"Ajusta el balanç de color, la brillantor, el contrast, la saturació i " "l'algorisme de trama" #: ../plug-ins/print/gimp_main_window.c:1483 @@ -12019,6 +12041,399 @@ msgid "Error: XJT property file '%s' is empty." msgstr "Error: el fitxer de propietats XJT '%s' és buit." +#~ msgid "Fractal Explorer" +#~ msgstr "Explorador de fractals" + +#~ msgid "Distance" +#~ msgstr "Distància" + +#~ msgid "Unsupported or invalid bitdepth." +#~ msgstr "" +#~ "No es permeten imatges amb aquest nombre de bits de color per pixel." + +#~ msgid "The bitmap ends unexpectedly." +#~ msgstr "El mapa de bits està mal acabat." + +#~ msgid "R_ecompose" +#~ msgstr "_Torna a composar" + +#~ msgid "" +#~ "You can only run 'Recompose' if the active image was originally produced " +#~ "by 'Decompose'." +#~ msgstr "" +#~ "Només podeu fer 'Tornar a composa' si la imatge activa s'ha generat amb " +#~ "la funció 'Descomposa'." + +#~ msgid "Error scanning 'decompose-data' parasite: too few layers found" +#~ msgstr "" +#~ "S'ha produït un error quan s'analitzava el paràsit 'descomposa dades': no " +#~ "té prous capes" + +#~ msgid "Specified layer %d not found" +#~ msgstr "No s'ha trobat la capa %d" + +#~ msgid "Unable to recompose, source layer not found" +#~ msgstr "" +#~ "No s'ha pogut tornar a composar, perquè no s'ha trobat la capa origen" + +# X options +#~ msgid "_X displacement" +#~ msgstr "Desplaçament en _X:" + +#~ msgid "_Pinch" +#~ msgstr "_Enfonsa" + +# Y Options +#~ msgid "_Y displacement" +#~ msgstr "Desplaçament en _Y:" + +#~ msgid "_Whirl" +#~ msgstr "_Remolí" + +#~ msgid "Displacement Mode" +#~ msgstr "Mode desplaça" + +#~ msgid "_Cartesian" +#~ msgstr "_Cartesia" + +#~ msgid "_Polar" +#~ msgstr "_Polar" + +#~ msgid "Edge Behavior" +#~ msgstr "Comportament de les vores" + +#~ msgid "_Difference of Gaussians..." +#~ msgstr "_Diferència de gaussinans..." + +#~ msgid "FP can only be used on RGB images." +#~ msgstr "FP només es pot operar en imatge RGB." + +#~ msgid "FP can only be run interactively." +#~ msgstr "FP només es pot executar de manera interactiva." + +#~ msgid "_Palette Map" +#~ msgstr "Mapa de la _pal·leta" + +#~ msgid "Palette Map..." +#~ msgstr "Mapa de la pal·leta" + +# era: msgstr "No s'ha pogut obrir '%s' en escritura: %s" +#~ msgid "Could not start sendmail (%s)" +#~ msgstr "No s'ha pogut executar sendmail (%s)" + +#~ msgid "_Grab" +#~ msgstr "_Captura" + +#~ msgid "a single _window" +#~ msgstr "una sola _finestra" + +#~ msgid "Include window decoration" +#~ msgstr "Inclou el marc de la finestra" + +#~ msgid "the selected _region" +#~ msgstr "la _regió seleccionada" + +#~ msgid "the whole _screen" +#~ msgstr "la pantalla _sencera" + +#~ msgid "W_ait for" +#~ msgstr "_Espera per" + +#~ msgid "seconds" +#~ msgstr "segons" + +#~ msgid "Region selected for filter is empty" +#~ msgstr "La regió seleccionada pel filtre està buida" + +#~ msgid "File '%s' is not a valid save file." +#~ msgstr "El fitxer '%s' no és un fitxer vàlid per escriure-hi." + +#~ msgid "Region selected for plug-in is empty" +#~ msgstr "La regió seleccionada pel connector està buida" + +#~ msgid "Region selected for filter is empty." +#~ msgstr "La regió seleccinada pel filtre es buida." + +#~ msgid "Region affected by plug-in is empty" +#~ msgstr "La regió efectada pel connector està buida" + +#~ msgid "by name" +#~ msgstr "per nom" + +#~ msgid "by description" +#~ msgstr "per descripció" + +#~ msgid "by help" +#~ msgstr "en l'ajuda" + +#~ msgid "by author" +#~ msgstr "per autor" + +#~ msgid "by copyright" +#~ msgstr "per drets d'autor" + +#~ msgid "by date" +#~ msgstr "per data" + +#~ msgid "by type" +#~ msgstr "per tipus" + +#~ msgid "Searching by description - please wait" +#~ msgstr "Espereu mentres s'està cercant en la descripció" + +#~ msgid "Searching by help - please wait" +#~ msgstr "Espereu mentres s'està cercant en l'ajuda" + +#~ msgid "Searching by author - please wait" +#~ msgstr "Espereu mentres s'està cercant per autor" + +#~ msgid "Searching by copyright - please wait" +#~ msgstr "Espereu mentres s'està cercant per drets d'autor" + +#~ msgid "Searching by date - please wait" +#~ msgstr "Espereu mentres s'està cercant per data" + +#~ msgid "Searching by type - please wait" +#~ msgstr "Espereu mentres s'està cercant per tipus" + +#~ msgid "Replacement for undefined pixels" +#~ msgstr "Recanvi pels píxels indefinits" + +#~ msgid "Shape Gradient" +#~ msgstr "Degradat de la figura" + +#~ msgid "Vertical Gradient" +#~ msgstr "Degradat vertical" + +#~ msgid "Horizontal Gradient" +#~ msgstr "Degradat hortizontal" + +#~ msgid "Create rectangle" +#~ msgstr "Crea un rectangle" + +#~ msgid "Drag and drop this icon to a web browser" +#~ msgstr "Arrossegueu aquesta icona en un navegador web" + +#~ msgid "Go back one page" +#~ msgstr "Torna enrera una pàgina" + +#~ msgid "Go forward one page" +#~ msgstr "Torna endavant una pàgina" + +#~ msgid "Go to the index page" +#~ msgstr "Vés a la pàgina índex" + +#~ msgid "Visit the GIMP documentation website" +#~ msgstr "Visiteu la web de documentació del GIMP" + +#~ msgid "According to the EXIF data, this image is rotated." +#~ msgstr "Segons les dades del EXIF, la imatge està girada." + +#~ msgid "Would you like GIMP to rotate it into the standard orientation?" +#~ msgstr "" +#~ "Voleu que el GIMP giri la imatge i la posi en l'orientació correcta?" + +# Orientation toggle box +#~ msgid "_Keep Orientation" +#~ msgstr "_Conserva l'orientació" + +#~ msgid "Save XMP data" +#~ msgstr "Desa les dades del XMP" + +#~ msgid "Property" +#~ msgstr "Propietat" + +#~ msgid "Description" +#~ msgstr "Descripció" + +#~ msgid "Image _Title:" +#~ msgstr "_Títol de la imatge:" + +#~ msgid "_Author:" +#~ msgstr "_Autor:" + +#~ msgid "Description _Writer:" +#~ msgstr "Descripció:" + +#~ msgid "_Keywords:" +#~ msgstr "_Claus:" + +#~ msgid "Empty" +#~ msgstr "Buit" + +#~ msgid "Copyright" +#~ msgstr "Copyright" + +#~ msgid "Origin" +#~ msgstr "Origen" + +#~ msgid "Camera 1" +#~ msgstr "Càmera 1" + +#~ msgid "Camera 2" +#~ msgstr "Càmera 2" + +#~ msgid "Thumbnail" +#~ msgstr "Miniatures" + +#~ msgid "Advanced" +#~ msgstr "Avançat" + +#~ msgid "Import XMP from file" +#~ msgstr "Importa un XMP d'un fitxer" + +#~ msgid "Cannot create file" +#~ msgstr "No es pot crear el fitxer" + +#~ msgid "Some error occurred while saving" +#~ msgstr "S'ha produït un error quan es desava" + +#~ msgid "Could not close the file" +#~ msgstr "No s'ha pogut tancar el fitxer" + +#~ msgid "Export XMP to file" +#~ msgstr "Exporta el XMP en un fitxer" + +#~ msgid "Image Properties" +#~ msgstr "Propietats de la imatge" + +#~ msgid "_Import XMP" +#~ msgstr "_Importa un XMP" + +#~ msgid "_Export XMP" +#~ msgstr "_Exporta el XMP" + +#~ msgid "Propert_ies" +#~ msgstr "Prop_ietats" + +#~ msgid "Error: No XMP packet found" +#~ msgstr "S'ha produït un error, quan no s'ha trobat el paquet XMP" + +#~ msgid "Error on line %d char %d: %s" +#~ msgstr "Error en la línia %d caràcter %d: %s" + +#~ msgid "Expected text or optional element <%s>, found <%s> instead" +#~ msgstr "" +#~ "S'esperava trobar un text o un element opcional <%s>, però s'ha trobat <%" +#~ "s>" + +#~ msgid "Expected element <%s>, found <%s> instead" +#~ msgstr "S'esparava un element <%s>, però s'ha trobat <%s>" + +#~ msgid "Unknown element <%s>" +#~ msgstr "Element desconegut <%s>" + +#~ msgid "Unknown attribute \"%s\"=\"%s\" in element <%s>" +#~ msgstr "Atribut desconegut \"%s\"=\"%s\" en l'element <%s>" + +#~ msgid "Required attribute rdf:about missing in <%s>" +#~ msgstr "Falta l'atribut obligatori rdf:about en <%s>" + +#~ msgid "Nested elements (<%s>) are not allowed in this context" +#~ msgstr "Els elements anidats (<%s>) no són permesos en aquest contexte" + +#~ msgid "End of element <%s> not expected in this context" +#~ msgstr "" +#~ "No s'esperava trobar el tancament de l'element <%s> en aquest contexte" + +#~ msgid "The current element (<%s>) cannot contain text" +#~ msgstr "L'element (<%s>) no permet text" + +#~ msgid "XMP packets must start with " +#~ msgstr "Els paquets XMP han de començar amb " + +#~ msgid "XMP packets must end with " +#~ msgstr "Els paquets XMP han d'acabar " + +#~ msgid "XMP cannot contain XML comments or processing instructions" +#~ msgstr "XMP no permet tenir comentaris XML ni instruccions de processament" + +#~ msgid "URI" +#~ msgstr "URI" + +#~ msgid "Downloading %s of image data..." +#~ msgstr "S'estan descarregant %s de les dades de la imatge..." + +#~ msgid "Downloaded %s of image data" +#~ msgstr "S'ha descarregat %s de les dades de la imatge" + +#~ msgid "Uploading %s of image data..." +#~ msgstr "S'estan enviant %s de les dades de la imatge..." + +#~ msgid "Uploaded %s of image data" +#~ msgstr "S'ha enviat %s de les dades de la imatge" + +#~ msgid "Connecting to server..." +#~ msgstr "S'està fent la connexió al servidor..." + +# * gimp_filename_to_utf8 () and g_strerror () return temporary strings +# * that need not and should not be freed. So this call is OK. +# * +#~ msgid "Failed to read %s from '%s': %s" +#~ msgstr "No s'ha pogut llegir %s del '%s': %s" + +#~ msgid "Failed to write %s to '%s': %s" +#~ msgstr "No s'ha pogut escriure %s del '%s': %s" + +#~ msgid "wget exited abnormally on URI '%s'" +#~ msgstr "wget ha retornat un error, llegint el URI '%s'" + +#~ msgid "(timeout is %s seconds)" +#~ msgstr "(alarma programada per %s segons)" + +# Set up progress display +# put up a progress bar +# max. rows allocated +# column, highest column ever used +# -1 assume fsel is not available (and not attached to any drawable) +# -1 assume there is no floating selection +# Set up progress display +# put up a progress bar +# max. rows allocated +# column, highest column ever used +# -1 assume fsel is not available (and not attached to any drawable) +# -1 assume there is no floating selection +#~ msgid "Opening URI..." +#~ msgstr "S'està obrint el URI" + +#~ msgid "A network error occured: %s" +#~ msgstr "S'ha produït un error de xarxa: %s" + +#~ msgid "Downloading unknown amount of image data..." +#~ msgstr "S'està descarregant les dades de la imatge de mida indeterminada..." + +#~ msgid "Save as Windows Icon" +#~ msgstr "Desa com una icona del Windows" + +#~ msgid "Include decoration" +#~ msgstr "Inclou decoració" + +#~ msgid "Selected Region" +#~ msgstr "Regió seleccionada" + +# era: msgstr "k(1-x^p) s'ha desplaçat" +#~ msgid "Delay for" +#~ msgstr "Espera per" + +#~ msgid "Search by _Description" +#~ msgstr "Cerca per _descripció:" + +#~ msgid "" +#~ "According to the EXIF data, this image is rotated. Would you like GIMP to " +#~ "rotate it into the standard orientation?" +#~ msgstr "" +#~ "Segons les dades del EXIF, la imatge està girada. Voleu que el GIMP la " +#~ "giri i la posi bé?" + +#~ msgid "/File/Info" +#~ msgstr "/Fitxer/Informació" + +#~ msgid "Error: %s" +#~ msgstr "Error: %s" + +#~ msgid "No XMP packet found" +#~ msgstr "No s'ha trobat el paquet XMP" + # era: msgstr "S'està aplicant el paquet de filtratge" #~ msgid "Before and After" #~ msgstr "Abans i després" diff -uraN gimp-2.2.8/po-plug-ins/ChangeLog gimp-2.2.9/po-plug-ins/ChangeLog --- gimp-2.2.8/po-plug-ins/ChangeLog 2005-04-27 16:53:05.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/ChangeLog 2005-09-20 18:24:05.000000000 +0200 @@ -1,3 +1,21 @@ +2005-09-17 Takeshi AIHANA + + * ja.po: Updated Japanese translation by + kano@na.rim.or.jp. + +2005-08-11 Funda Wang + + * zh_CN.po: Updated Simplified Chinese translation. + +2005-08-07 Josep Puigdemont + + * ca.po: Updated Catalan translation by Quim Perez, et al. + +2005-08-02 Takeshi AIHANA + + * ja.po: Fixed wrong translations pointed by + kano@na.rim.or.jp. + 2005-04-27 Jakub Friedl * cs.po: updated Czech translation, fixed some problems. diff -uraN gimp-2.2.8/po-plug-ins/ja.gmo gimp-2.2.9/po-plug-ins/ja.gmo --- gimp-2.2.8/po-plug-ins/ja.gmo 2005-05-08 23:42:23.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/ja.gmo 2005-10-20 12:46:53.000000000 +0200 @@ -1,309 +1,582 @@ -Þ•d<;ã \vèéþ žàž ýž -ŸŸ5Ÿ"RŸuŸ•Ÿ´Ÿ -»Ÿ'ÆŸVîŸQE — ­ ´ ¹ ¾ Ï  ×  á í õ þ  -¡¡ &¡3¡9¡K¡ R¡\¡e¡~¡¡ž¡¯¡Æ¡Ö¡ß¡)ö¡ ¢?¢Z¢z¢ –¢·¢Т<è¢C%£$i£'Ž£¶£&Ö£"ý£ ¤=¤ -L¤ W¤a¤|¤‘¤™¤ ¡¤«¤%´¤ Ú¤ä¤ú¤¥¥¥<¥\¥Rd¥·¥ ƥҥ٥륦¦,¦ @¦2M¦1€¦²¦ ¸¦ŦÔ¦ç¦ü¦ §)§ ;§I§O§U§h§ n§|§ -‘§ -œ§§§¯§¸§À§ŧ᧠ø§¨¨+¨/¨K¨]¨ -c¨n¨¨ ¨ ›¨ -¨¨ -³¨ -¾¨ -ɨÔ¨ Ù¨ å¨ï¨þ¨© ©©!©&©7©I©O©_©p©€©‘© ¡© ­© ·©éÊ© Ü© è©ö©ü©ª ªª$ª (ª4ª;ª@ªIªYªaª tª‚ª“ª®ª²ª·ª»ª¿ªŪͪÖª -çª òª«««#«+« 1«;«"P«s«Œ«¥«$¿«2ä« -¬"¬ -)¬ -4¬?¬*S¬~¬(œ¬Ŭ ͬ׬hî¬hW­)À­'ê­#®46®4k®( ®)É®'ó®l¯*ˆ¯5³¯5é¯,°*L°w°4†° »°È°ç° ù°±±4(±]± e±r±'²38²l² -s²~²„²ž²¥²¬²½²Ų Ͳ ײä²ö² - ³³³%³ +³9³J³Y³k³†³Ÿ³ -®³¹³г å³ó³ -´@´ Q´^´m´‰´ -´›´¤´º´É´Ò´ä´ë´ó´û´µ µµµ.µ Bµ Oµ \µ+hµ4”µɵѵêµþµ ¶¶+#¶O¶o¶‚¶‹¶ ¶ œ¶ª¶¹¶6ɶ· - · -+·6·!=·_·#{·Ÿ·/¸·è·ü·¸-¸J¸\¸ c¸<q¸|®¸'+¹S¹ -s¹9~¹ ¸¹ƹÕ¹ æ¹ò¹º º $º0ºHº^º~º „ºº˜º -Ÿº ªº¸ºɺ -Òº ݺ -ëº öº»» »»»#»3» C»M»T»\»m»}» ƒ»»œ»¤» µ»ûۻ ¼$$¼I¼ Q¼]¼l¼ s¼¼ Ž¼ œ¼©¼!º¼ܼñ¼ -½!½=½L½c½ l½ -x½ƒ½”½ ¯½ ¼½ƽÛ½ ó½¾ ¾¾,¾4¾I¾R¾ -Y¾ -d¾ o¾ {¾…¾ –¾¢¾ -´¾ ¿¾˾ Ô¾ â¾î¾¿ ¿+¿(A¿j¿ˆ¿™¿©¿¹¿BÊ¿ ÀÀ 4À@ÀHÀdÀ ‚ÀÀŸÀ ±À¾ÀÄÀÉÀ -ÛÀæÀ ÷ÀÁÁ:-ÁhÁwÁ‡ÁŽÁ¢Á)·Á/áÁ#Â25Â+h”£² ºÂÇ çÂô Ã,ÃKÃjÅáôÃÇà âÃ#Ä'Ä:Ä%IÄ2oÄ¢Ä ¨Ä¶Ä#½Ä$áÄ ÅÅÅ Å61Å'hÅŤŠÄÅÎÅÓÅèÅýÅÆ'Æ=ÆBÆIÆ`Æ€Æ‘Æ¨Æ -ÀÆËÆ ÞÆêÆ)óÆÇ"#ÇFÇNÇSÇbÇrÇzÇ6ŒÇ -ÃÇÎÇ áÇ ïÇ üÇ -È#È5È>È -MÈXÈ -]È -hÈsÈyÈ€È…ÈŽÈ È ªÈ´ÈÏÈêÈ ñÈ ÿÈ ÉÉ&É 8ÉEÉ(VÉ ÉŒÉ’É¤É«É³ÉÃÉ×ÉçÉìÉÊ -Ê Ê(Ê;ÊAÊ FÊRÊgÊ}Ê†Ê˜Ê ¨Ê¶Ê ÒÊÜÊúÊ ÿÊ ËË!Ë4Ë;Ë@ËEË VË bËpËË šË¦Ë ·Ë -ÅËÐË ×Ë áËïËóË ÌÌÌ Ì-&ÌTÌ\ÌqÌ2‘Ì/ÄÌBôÌ=7Í -uÍ €ÍŒÍ -žÍ©Í ºÍ ÇÍÑÍ ÕÍâÍéÍ$ Î3.Î b΃Π‡Î•Î¤Î´ÎÅÎÊÎÍÎÓÎ -ÙÎ äÎñÎnχpÏYøÏvRЃÉÐ\MÑCªÑîÑ ÷ÑÒ -ÒÒ(Ò8Ò -HÒ SÒ`Ò"zÒ Ò©Ò ÁÒÍÒæÒÓ -ÓÓ#Ó+Ó@Ó OÓ ]ÓjÓ rÓ|Ó6Ó ÄÓÎÓ æÓóÓ(Ô /Ô9Ô TÔ]^Ô ¼ÔÈÔÌÔÜÔ öÔÕ -ÕÕÕ 1Õ?ÕTÕYÕ bÕoÕxÕ€Õ ‡Õ -‘Õ -œÕ/§Õ×Õ ÜÕæÕ ìÕ øÕGÖBJÖNÖIÜÖ&×,×2×:×B×J×R×Z×b×q׃×%“×$¹×%Þ×$Ø%)Ø$OØtØ|؅ؖتػØÎØàØåØ ìØ öØÙÙ Ù%ÙAÙ -PÙ[ÙsÙ ÙÙ¯ÙÄÙÙÙéÙÚÚ5Ú FÚRÚWÚ -mÚ xÚ -„Ú Ú›Ú²ÚÉÚ áÚ íÚûÚ ÛÛÛ &Û 0Û<=Û%zÛ  Û -ªÛµÛËÛ'ÒÛ úÛÜ+ÜCÜ SÜaÜiÜ{Ü ‚ÜŒÜ Ü §Ü´ÜÌÜ -äÜ ïÜüÜÝ,Ý -4Ý ?Ý IÝVÝ oÝ -}Ý ˆÝ ’ÝŸÝ·Ý -ÏÝ ÚÝçÝÿÝ Þ %Þ3ÞIÞdÞyÞ”Þ™Þ¡Þ ©Þ ·ÞÁÞ ÈÞÔÞçÞ ìÞ öÞß ß$ß,ß@ßOßXßgßßšßµß Æß ÐßÝßâßñß ùß -ààà "à 0à :àIGà‘à¢à -«à¶àÎàÔàÙàààèà÷àá á:áJá ]á~áá¡á¿áÛá ûáâ ââ !â.â 6âCâ Tâ^â gâtâƒâ¢âÁâàâ éâ%õâã#ã3ã :ãDã MãWã`ãiã nãxã#ˆã¬ãÉãÒã7æãä6ä >ä KäWä nä{ä„ä —ä¡ä¨ä¯ä ¾ä ËäØä àäêäîä þä å2åEå^åyå”å§åÃå ßåéå íå -÷åææ#æ ,æ9æQæaæ hæ tæ €æŒæ›æ -£æ ®æ ¼æ -ÉæÔæìæòæ -ùæ çç#ç -=çHç PçZç içwç €çŽç -•ç' ç ÈçÒçØç ßç éç óçýçè$è *è6è<è EèSè[èdè8mè¦è ¯è+»èçè ïèüèé#é:;é'véžé²éÁéÒé òéþé ê ê:ê Uê_êhêyê}ê$‚ê§ê«ê´ê -ÈêÓêØêèêñêúêëë -ë%ë,ë4ëJëQëaë që~ë Žë œë ¨ë¶ëÎë×ëéëì ììì1ì%6ì\ìmì …ìì“ì£ì´ì¹ìÈìØìçì÷ìüì íí!í3í FíSíníŽíí¥í¸í Àíáíóí î î î5îNîbîyîŒîžî¦îÃîÔî"èî - ï#ï :ï1Fï,xï ¥ï³ïÐï×ï Ýï -ëïöïýï ð -ðð!ð *ð 4ð >ðHðPð iðuð~ðšð¶ð Òð Üðæðìð4þð3ñCñRñ gñqñyññ -ñšñ£ñ -©ñ´ñ¹ñËñÛñ;ãñ ò +ò -7òBòXòoò ‡ò“ò ˜ò -¦ò ±ò¾ò Øò -âòíòó ó%ó:óMó ió uóƒó–ó §ó ³ó Àó Ìó Øó äóðóô ôô .ô :ô Gô Tô `ô lô xô†ôšô­ô½ô/Íôýôõõ ,õ 6õ @õ Mõ Wõeõuõ~õ‡õõ—õ  õ¬õ¾õ ÅõÑõâõòõ -ö+öKöTömö‰ö ö ªö+¸öäöêö -ñö üö ÷÷,÷ >÷J÷^÷z÷ ‹÷ ™÷ -¥÷°÷Á÷#Ö÷ú÷ø(ø;øTøkø]Šø]èøFù`ù hù rù?|ù¼ùÔùïùú)ú%Eú<kúE¨úîú û ûû.ûEû!cû'…û­û¶û Ðû Þûëû úûüü (ü6ü=ü Cü!Oü#qü•üšüªü»üÎü -áü ìü -öüý ý ý5ýDý -`ý -kývý }ý‰ýŽý—ýý -±ý¼ý ÁýËýáý'ñýþþ&þ,þ -?þJþRþaþpþˆþ - þ«þ Âþ ÌþÙþñþÿÿ,ÿ 2ÿ>ÿMÿfÿ/‚ÿ-²ÿ àÿ êÿôÿ  /9LU ]jDœ'á@  JT[ ku| ”¡§ ® ¼ÉÙâó  $57:rZzÕæí -ó þ   6@TZp„ ‹˜¡ ³¿ × -äï  #-AI\e&n•¨Ã5ÞF[0{M¬EúP@K‘Ý>ø<77tú¬§!Ãå .# )R %| )¢ &Ì ó „ -3• -&É -ð - 0/ 4` • ­ ~Ç =F ,„ !± JÓ   7 C )S  -} ˆ — œ -® Ü í ô ý  "%.28A FP bn …“ ¤°µÔï .GMQY s”™¨ ­¹ÔÚáé ò ÿ &(OX -_jy ˆ ” ¾ÑFá(,:Qg:¹ô * FTmtzŠš¯ÀÇÖè÷( -7 BL R _RkP¾ )/F=N.Œ-»-é -4 ?I OYn^ÍÝö,ü)05=Wo‡ ¥ª¹È Ë&×%þ%$JPV[`orx~ƒˆ—C :äFfux”œ¸Á ßëðÿ   #-4< EQY bp ‡ ‘ - ¨²¹ÂÉ -ÐÛáè îü  (5 < -FQZk r| -‚– ž ª¸ÁÊ -Ù äðöü 8 -IT]clsz“ ¨² ¸ - ÍÛîöÿ !(06 <HQWhpy„Œ -’ © ¼ÉÙÞãê òÿ   -%0EM S_w}‚“™©°ÅÍÔ Úèí -ôÿ  ( 2 > K Ua -itˆ œ -¨³¹ÂÈÐ -çò % -- 8EV_hx Š” ª·¼Í Þëó -ü  -    ' 3  -; F [  b  -p {  „   ³ » Ë Ô  ã  í ù ÿ ! ! #!-!5!>!F! -O! -Z!e!8n! §! -³! ¾! Ê!Ö!Þ!å!ô! ú!6">"D"M"U" \"j"„"š"¹"À" È"Ô" ä" -î"ù"ÿ"# # # (#2# 9#G#N#V#\# b#o# †# -#›# Ÿ# -©#´#¸#À#Ä#Ê#Ñ#ç#ø#þ#$ -$$$.$=$ M$Z$]$b$i$q$ w$„$"ˆ$«$´$Å$ Ê$ ×$ã$ ÷$ -% % -%!% )% 3%@%]%d%u%‡% ‹%™% ¨%¶% -Å%Ð%ß%ô%& - & -&"&)&V2&‰'ž'°'ø¶' ¯(½(#Î(7ò(3*)3^)0’)Ã)Ì)!Þ)W*pX*)É*%ó* -+ -$+/+F+X+ g+ s+ + -+ -˜+£+ ½+!Ç+é+, - , ,3,R,!r,*”,¿,$Û,- -*-*?-j-!‰-«-$Ç-ì- .<*.<g.0¤.3Õ.* /-4/+b/ Ž/ ›/¨/Å/4à/0 10 ?0M0T0O[0«0²0 Ï0Ü0 ø0 -1B1T1JY1¤1 ¿1Í1"Õ1+ø1$2?2Z2i2Hˆ26Ñ233"3-?3!m333¨3Ü3 î3û34 -44#4*74 -b4 -m4 -x4 ƒ44—4$ž4Ã4Ú4á4ø45"5 @5N5S5 Z5d5t5!|5ž5³5È5 Ý5 ê5 ô5 þ5 - 666 6-6=6A6S6h6m6}6Ž6ž6¯6È6Ø6ë67$7 -7 :7 -D7O7V7^7e7 j7 -t77 •7Ÿ7$²7×7ê7þ7#8&78^8b8g8k8o8 u8 -ƒ8Ž8¥8¶8Ë8Ó8 -ê8 õ8 9 -9 9))9%S9*y9:¤9$ß9K:P:a: -h: -s:~:6‘:È:6ä:; #;0;ˆI;ˆÒ;+[<-‡<µ<.Ô<.='2='Z='‚=nª=*>.D>.s>+¢>-Î>ü>:?J?-_?"?°?Ì?å?=õ? 3@ @@¥M@?ó@Z3AŽA’A«A²A ÎAØAáAûA BB$B3BGB^BvB B ŒB –B B ¿BÉBèBúB CC)C BCLC^CpC<€C½CÍC!àCDD D!,DNDaDtD D -—D ¢D ¬D ºD ÇDÕDæDüD EE$E;+EKgE³E3ÆE!úE F)F=F'PF9xF!²F ÔF áFëFÿFG.G<JG3‡G»G×GèG7ìG+$H:PH1‹H:½HøH%I1>I)pIšI±I¸I]ÈIv&J3J7ÑJ KPK mKzKŠK K°KÃKâK òKÿKL'2L ZLhL„L“L¦LÂLÒLâLêLúLM/M FM SM -]M hMtM {M ˆM•M¤M«M³MÃMßMçMýMN$)NNNdN~NšN³NÉN'ÙNOO-!OOOVOfO |O ŠO—O0³O!äO%P',P-TP‚P’P«P ³PÀPÑP3äPQ Q*Q>QTQYQ'oQ—Q«Q ¾QËQÓQÚQâQéQðQ÷Q -RR*R1R 9RCR \R%jRR—R7±R-éR0SHS$dS‰S ¨SDµS úS#T+T -=T0HT-yT §T ´T!ÁT ãT ñTûTU U(UAUZU!vUT˜UíU V VV(/V1XV(ŠV(³VWÜV:4W oW}W ŒW–W2¯WâWõW>XMX9mX*§X-ÒX!Y!"Y(DY8mYJ¦YñY!Z>#Z\bZ¿ZÐZßZ5æZ5[ R[ _[ i[(v[GŸ[Jç[$2\4W\Œ\ \§\À\Ù\ò\ ] '] 4]-A]6o]¦]/Å]õ] -^^ "^ ,^36^j^0n^Ÿ^¯^ ¶^Ã^ Ö^ à^Bî^1_8_W_s_Œ_9 _Ú_í_ý_`(`/` 6`@`H`M`T`[`l`‚`/“`)Ã`í`ô`a -a'a9aTaia<{a¸a -ÊaÕa -äaïaöa bb/b4bPb_b'rbšb ¶b ÄbÑb$ébc*c6Gc0~c!¯c0Ñcdd 4d>dTdXdjdd „d Žd›d±dÐdãd$ùde2eHe[e re |e'‰e±eµeÓe èe ôe f$f3f';fCcf0§f<ØfNgBdg§g¸gÉgág ègògùg h -h $h61hhh4~h³hÏh Öh ähòhii'i *i8i -HiSipi£i~%jl¤jœk¤®kZSl]®l mm -,m7m>mTm sm€mm¥mB»m -þm( n2nCn*\n -‡n ’n!œn¾n!Ñn -ónþn oo$o+o3;ooo…o£o ªo7´oìo!óo pc"p †p”p˜p®pÁpÖpìp qq(qAqWq\q mq {q -‡q ’q œq$¦qËqSÝq1r5rœTœdœ9wœ!±œ Óœ Ýœ -þœ  ) = KYiy ‰ — -¥ °¾Îáõ ž'(ž'Pž xž…ž$–ž»ž ÌžÖž5ÝžŸŸ Ÿ ,Ÿ9ŸRŸjŸ ƒŸŸ-¦ŸÔŸ êŸ÷Ÿ   7 HM – ¦ !Æ è !¡3*¡’^¡Yñ¡3K¢¢ -‡¢’¢l™¢!£$(£!M£o£9…£9¿£Hù£TB¤—¤³¤ äѤä¤*ô¤)¥!I¥k¥-r¥ ¥ ¶¥ Ä¥ -ҥݥâ¥û¥¦ ¦)¦!B¦!d¦†¦¦$ ¦Ŧ"å¦ §§(§!8§ Z§!g§ ‰§:–§ѧà§ö§ -ý§¨ ¨ -¨0!¨R¨ Y¨c¨%r¨˜¨·¨ -Ö¨ -ᨠì¨ö¨© *©8©Q©8j©8£©Ü©$ð©ª4ª-Mª{ª”ª±ª ΪÛª0ñª"«15«Ug«U½« ¬ ¬%-¬S¬g¬ w¬„¬ž¬ ¦¬³¬ Ò¬-߬Z ­-h­<–­Ó­Û­ß­õ­ü­®®® /®<® C®M®i®{®‚®‘® ª®¸®Ï® à®Bí®0¯Z7¯’¯­¯ ´¯ -Á¯̯æ¯ ú¯° °$'°L°S°l° ‚°°¤°¸°Í°å° ö° -± ±&±9±@±H±!X±z±Š± ±°±GÀ±²²/²6@²Qw²ɲ8ݲ5³HL³E•³NÛ³*´9@´9z´B´´÷´$¶.;¶6j¶6¡¶%ضþ¶%·->·-l·$š·¶¿·Bv¸4¹¸ -î¸$ù¸?¹=^¹œ¹°¹©Ä¹6nº5¥º'Ûº^»9b»œ»'®»PÖ» '¼5¼ J¼T¼,j¼!—¼¹¼̼$ß¼½½*½1½8½=½D½K½P½ a½k½ r½½˜½®½¶½6½½!ô½¾-2¾*`¾‹¾“¾—¾'Ÿ¾)Ǿ ñ¾þ¾¿$¿/7¿g¿n¿v¿ †¿ ¿¿¹¿FØ¿À/À6À -=À -HÀSÀ ZÀ)gÀ‘À¯À>ÊÀ Á5Á`RÁM³Á"Â$Â54Âj€“›Â$¢Â ÇÂ$ÔÂùÂÃÃ:ÃZÃrà ‡Ã”ìà ³Ã½ÃÄà ÔÃÞÃïÃyÄj|ÄçÄïÄõÄûÄ(Å*Å31ÅYeÅM¿ÅM Æ [Æ/eÆ•Æ «Æ¸Æ¼ÆØÆ™ßÆyÇ$Ç´Ç$¸ÇÝÇâÇæÇöÇÈ(ÈAÈ[È bÈ oÈÈ«È®ÈGÂÈ; -É;FɂɋɔəɞɹɼÉÅÉÎÉÓÉØÉÜÉáÉ^çÉXFÊeŸÊË Ë'#ËKË RË!_Ë Ë!ŽË°ËÄËÉËØË õË Ì -ÌÌ.Ì@Ì IÌ UÌ aÌ"oÌ’Ì £Ì -¯ÌºÌ ÊÌØÌàÌ -ñÌ -üÌÍÍ'Í 0Í>ÍSÍ\Í eÍsÍ ‚ÍÍ ŸÍ­ÍÄÍÜÍóÍ -Î -Î Î(Î -BÎ MÎ YÎ gÎ sÎ Î ‹Î—Î ¨Î ´Î -ÂÎÍÎßÎñÎ ÏÏ"Ï 4Ï@ÏQÏbÏ -tÏÏ+‘Ï½Ï -ÑÏÜÏ ëÏùÏÐ%Ð -4Ð ?ÐKÐ SÐtЃЋР”ТгÐÎÐ âÐðÐ -Ñ Ñ Ñ*Ñ 9Ñ -GÑRÑ -aÑlÑ -ŠÑ•Ñ -§Ñ²Ñ -·Ñ -ÂÑ ÍÑ ÚÑèÑ -øÑ ÒÒ!)Ò -KÒVÒ \ÒhÒ -„ÒÒ”Ò«Ò³Ò -ÈÒÓÒ -êÒ -õÒ ÓÓ"Ó*Ó2ÓFÓ#ZÓ -~Ó‰Ó˜ÓªÓ¹ÓÍÓ äÓòÓ" Ô,Ô LÔYÔ -mÔxÔ -‰Ô -”ÔŸÔ³ÔÊÔäÔøÔ Õ Õ$Õ5ÕEÕeÕ tÕ‚Õ‘Õ¥Õ¹Õ%ÎÕôÕ ÖÖ %Ö1Ö -FÖ QÖ]Ö -qÖ -|Ö‡ÖÖ -¡Ö -¬Ö·ÖÎÖíÖõÖ× -× -&× 1×.=×l×~× •×¡× -µ×À× Ï×Ý× ì×ú× Ø $Ø0Ø -9Ø DØ RØ `ØlØS~Ø ÒØÞØðØÙÙ -,Ù7ÙLÙ -UÙH`٩ٺ٠-ÎÙÙÙ áÙ%ïÙÚ,ÚLÚ TÚ `ÚlÚ -~Ú ‰Ú -•Ú Ú ±Ú ¿Ú ËÚ×ÚæÚ îÚüÚÛ ÛÛ&Û%7Û]ÛnÛ…Û‰ÛšÛ±ÛµÛ½Û -ÁÛ ÌÛ#ØÛ(üÛ%Ü 5ÜBÜFÜJÜYÜiÜx܈ÜÜ  Ü ªÜ¶ÜÊÜÎÜãÜ1êÜÝ%Ý8Ý=Ý LÝXÝ nÝ -xÝ ƒÝ -Ý ˜Ý¥Ý ´Ý/¾Ý îÝûÝÞ/Þ 3ÞAÞ PÞ^ÞmÞtÞ„Þ”Þ´Þ»ÞÌÞÝÞáÞ0i9ÇÐ¥%ë°+.˜«NBuê^]™Ó·Ûxœÿ¥øJª‡d„O-obÅžUUäX¾òͺkTHL<¹d°é·þÞgSG;CϽ®R: þQÒŽ)>š|Û¾<5<|€a£¤Î Çœ›SmÆttÄTV×jðËwøÀýî„”¢Ô ÛJlÿN9½Ïk{¹Š6ÍŠ-4€m³ú+”a^ܧtë“—]p>7Ø°sFÝäs‹f$Ø]ÝÁï©â.Ðù¼‰Qöõ„q÷hH6˜"ÈKZÀ=®Lòò$Öœ§ªVGÿ)&Ws‚—Jjš}5ôI–êo}¼ØF£EO¡_^rI¡:’wgiÀIg”ºˆY8Œé8$¥7HM(ž‚9g.<UmN'còª\ã±.±Ø¸JvrúÕ•¦þgK(Óê‹U#–zñ^kt$c~G’»{Û”Ÿ¥6x‘¡L§(õP \{Faá+!A(7@]j²“VpÒ^ÃÌ’é_` XWŸ±Ùsñ郥bÒc²\6·½ïA ¬Ê/-ìÁ†F 3”4C·šíõ¾´ 9Y/»/` ŽDr#âÏÁ4Y‰a2 ž ? -ͨ•:ßô>܆µ¨µË¢mM#t}Ãú3¹%KCoSásª|G M&ìÏkAÖ4õèJ†M,Ù¨/%P³gU1©¼ýòÀnoŠ›; e¡Ön]-qáBF8&hÓ¸…Ñ}N9ºŒKp.¯i£ª›]Â6Ÿý'pÊÎ þ=*€®æ1½ÎŽËÌÍÏË4²5'Â<õâFkzH_ÐÅïê[/Dä¾WuÉÜ8«àíëIH>ílãl¬É%ÃAŠîÆBà¶T×qÖ´1D':X¬[x?Ty^ÌÑÄ"ЭÀg{ƒË¬…YnØ2W§C7§Ôbþu0w÷©"Ö¢[O:~*÷H^Ê«0ùì…˜ÚË÷ÐAÝfu™„øPo¦äh]„Oµ>~ù_@ûJýïrD;“æÈÒfd½Us0C1+ŽSªfcE¬eQz=Ú2ø¥ ÌùF{¤‚‚ð ûó ŸÎ¢¤yìÕW¼édúßd3¼ãh\çL}’nÜô ¿[ER*9ÿž(®¬lÄ…ŒÅ B±^‰~/åÆ´UaÖOcüc‡¿µZ€½añZyàˆPîí¯Ù»Š ¤Z;4Öl` ³œå|Þ2_(ëÚEÿ‹Œ@x¹¸0Ñð)W¦[å?¹¡¨ ¦­å!zÈ©ÊéEìŽü¶*Õ3 $Ú5#Š{¢ -?Æ·)ðVüÈ÷U+G‡Á™°*“…M‡Ä(É(i£?Ý'n‡MƒA3û[ ­€ÝS/³D+>—<âÔ»±¤z hÙý™Š4ƒèjA‰ ;Z¿Ñí&BÓ«ÁówÃkq|4ñ· -qyº›¸5ö:/Á¡ë «183@f7Ù~€¨"=óŸÂù@Oî0>7R$˜àöÊÐXÃÃt° -À–³äÜ?DÎÉÞÆRÎÓ´…žvý£ÑÂÈ´àÕö½ñê“2® ˆæ=5¡ç™hÞîô­ÿ,_‰"Ô Úã7Þd` 'ž–ñqY!W6Ñ@Bäx˜0ÉX;ý¶’SKeÝŒ!â¦ÌA_ç+Ú‹ù†ŒÄ€‘f&ê`úÒ5ûS”y¶© ôå l%‡ -æ&r¾Y¿*hÛQT–br|:Â9và›Á ¨ß8dcÇ“ºvç5‰óO~üXe×"‘¯BG¥íT‘ -Có©wo¢¬¹ø<÷6EæÔR,²­.6ib×Li—ð®R è²µ8&-yÂ`Ý#f% ÂuÊ`ŽØ¤¿w2m|—vë1Vö døOI±Å}÷‘tí³†{sE;aß”—œ—öK‚›ÏDN)M;Qˆ#–õãÞÍáõT°š!¸×î\-z$\IùêNæQJ³3 …\<ÏRâÕ¤P‹H‹Q´ÓLeoV:LˆèÈW#Q»!«¹=¨™)›‚¶XDbú’°v¼žÚÕ»,’• ? z,Ç1¼þZÇbrm±šFèåé!èœcÀ¯eÔ-'TÅV߉SVÆ2•'²iÍå¾ÿw„§‚@Pç}²†ðuqÈŽlZ9Ç‘"*­ÌnÔÜIj]ÊEìÙ·+˜ÄkÍ #Z8,š ‘µ¿Nœ P¦17N[ 2?~Y†çâ󃯿v=aá -©ìòƒÜ¸òÄÛßß¾YðäŒC˜îøppº`ïPÕ Ð£è£ûÒMônX,j“þª$_y!×JIûÇ•‹b»úÉÒñËBÓÆKÅ%@ó0Û á•ëØÑxŸ×e§mŸR.¦ã3¶¢p\&Þïï™=ü–àö¯ƒ šµ¶áÉL·>´¯%®x¸ -.HK„ûÌ-ü爭 «[æãü•))ÅjG,úˆ*CuG"ôÙ (Height Mismatch!) (Width Mismatch!) Rows of "Fix seed" button is an alias of me. -The same seed produces the same image, if (1) the widths of images are same (this is the reason why image on drawable is different from preview), and (2) all mutation rates equal to zero.# of Spikes:%s -- Print v%s'%s' is not a regular file'%s' is not a valid BMP file'%s': +Þ•> + R« ü£¨ÚP©ÚúÝÞ#Þ :ÞàDÞ%ß 'ß4ßDß Zßhßpß1€ß²ß"Ìßïßà!à >à*_à"Šà­àÍàìàóà á"á6á#Vá$zá +Ÿá'ªáVÒáQ)â{â„â šâ¤â«âÃâ Èâ ÔâÞâ +ãâîâÿâ ãã ã&ã.ã7ã?ã +Tã_ã tãã‡ã™ã  ãªã³ãÉãßãøã ää)ä@äPäYä)päšä ¹äLÇäå%å@å`å |å:åØåñå< æCFæ$Šæ§¯æÞWç'6è^è}~è&üè"#éFécété%ƒé +©é´éÅéßé ïéùéê)êBêJê+Rê ~êˆê%‘ê ·êÁê×êÝêìêóê<üê9ëRAë”ë £ë¯ë¶ëÈëßëôë ì ì2*ì1]ìì •ì¢ì$±ìÖìéìþìAíQí cí qí{íí‡íší  í®í +Ãí +ÎíÙíáíêíòí÷íî*î BîLî_îqîˆîŒî¨î¼îÍîßî +åîðîïï #ï /ï +<ï +Gï +Rï +]ï hïvï3{ï ¯ï »ïÅïÔïÚïêïñïðð ðð/ð5ðEðVðfð wð ƒðð Ÿð «ð µðÁðÈð Úð æðôðúðÿð ñ ñ(ñ0ñ 4ñ@ñGñLñUñeñuñ}ñ ñžñ³ñÑñâñýñòò +òòòò%ò 4ò@ò +Qò \òjò rò~òò™ò¡ò §ò ±ò½ò"Òòõò?óNógó$ó¦ó2¿ó#òó/ô'Fô$nô&“ôºôÚôJ÷ô&Bõ'iõ‘õ +™õ¤õ³õÂõ +Éõ +Ôõßõöõ* +ö5ö(Sö|ö „öŽöŸöh¶öh÷)ˆ÷'²÷#Ú÷4þ÷43ø(hø)‘ø'»ølãø*Pù5{ù5±ù,çù*ú?ú4Nú ƒúú¯ú Áú$Ïúôú û4ûJû Rû_û'ýû%ü35ü$iü7ŽüUÆýþ#þ +=þHþNþ`þzþþˆþ™þ¡þ ©þ³þ ÍþÚþìþÿ +ÿÿ0ÿ9ÿAÿ GÿUÿfÿuÿ‡ÿ¢ÿ»ÿ +ÊÿÕÿíÿ ' +9@D …’¡½Ð +×âù "+APYkˆ ˜¢«³¼ÄÕ é ö $#HY+p4œÑÙò !++4`Asµ¾ à ÏÝì)ü6&]o +&š +ÁÌ(Ó+ü!(Jc& ¦#Ç ë# 10#b&†­Í/æ>Ui}8šÓð )<;|x'õ ?=  +} ˆ 9œ  Ö ä ó   + +! + 4 + B +N +f +| +œ + ¢ +® +¶ +½ +Ø + +ô + ÿ +  / K  +T  _  +m x  ‰ — § « ° ¶ ½ Æ Ö  æ  ò þ     ' 8 H X  ^ h } Œ ”  ¥ ³ È Ý õ   4 yJ  Ä $Ð õ  ý  0I P\ k y†!—¹Îçþ)@ I U +al} ˜ ¦ ³ À ÎØí  )>F anƒŒ4Ò +Ù +ä ï û " +4 ?KT f t2€0³=ä1"=T/’ Ôá ê+ö "CS(f­¾ÎÞBï 2>Y t€•±¸ÀÜ ú )6<A +S^ o{ Ÿ­:Å &2F)[/…#µ2Ù+ 8Vet |"‰¬'Ì“ô4ˆ ½ÊÜõ'<[v”³Îêý'=PpANÑ) .Jy-”' ê# /BHWh%q2—Ê ÐÞð#÷ $< a1n ¨­1¾ð6'Goƒ£¹ Ì Öãèý'<RW^u•¦½ +Õà óÿ) 2 "8 [ c ƒ ˆ — § ¯ 6Á ø  + !!6! I! W! d!r!‹!!¦!¶! +Å!"Ð! ó!ÿ!"" +%" 0" +>"I"_"e"l"q"z" ‰"–" ž" «"µ"¾"Ù"ô"Ÿû" ›# ©# µ# Á#gË#3$B$ T$a$r$ +‹$–$(¬$)Õ$ÿ$ %&%,%>% E%S% +d% o%y%%‘%¥%µ%Ç%Ì%à% +ï% ú%&&!& &&2&G&]&f&x& ˆ&–&²& Â&Ì&ê&ÿ& ' '' *'4':'L'_'f'k'p' ' '›'¬' Å'Ñ' â' +ð'û'ý( ) +))) +.) 9) E)Q)V) \)f)-w)¥)­)Â)â)2ø)/+*B[*=ž* +Ü* ç*ó* ++ -+;+J+ +Y+d+ u+ ‚+Œ+ + +ª+±+$Ñ+3ö+ *,K, O,],l,|,, ’,Ÿ, ¢,®,É,Ü,î,--&-,- +2- =-J-Z-j-s- |-n‰-‡ø-Y€.vÚ.ƒQ/\Õ/C20v0 0‹0’0˜0°0À0 +Ð0 Û0 ç0ô01"1 @1L1d1 t1€1•1®1 É1K×1#272@2E2Y2a2v2 …2 2 2ª2¹2 Á2Ë26Ü2 33 53B3 U3(v3*Ÿ3 Ê3Ô3 ï3]ù3 W4c4g4w4 +‘4 œ4©4À4×4 Þ4ë4ñ4ú4 5 5 15?5T5X5]5 f5s5|5„5 ‹5•5 +5 +¨5/³5`ã5D6 I6S6 Y6 e6Go6B·6Nú6II7“7™7Ÿ7§7¯7·7¿7Ç7Ï7Þ7ð7%8$&8%K8$q8%–8$¼8á8é8ò899(9;9M9R9[9 b9 l9v9}9 9›9·9Ó9 +â9í9: !:/:A:V:k: {:‰:¢:¾:Õ: æ:ò: +÷: ;;$;D; +V; a; +m; x;„;›;²; Ê; Ö;ä; ô;<<<"< +<5< D<<Q<%Ž< ´< +¾<É<ß<'æ< =/=?=W=f= v= „=’= ¥=³=Ã=Ô=Ü=î= õ=ÿ=> >'>?> +W> b>o>‡>Ÿ> +§> ²> ¼>É> â>ð> õ> ? ??"? '?1?@? +U?`?s?0Š? »? Å?Ò?ê? +@ @@2@ J@+X@ „@’@¨@ +Ã@Î@ã@þ@A A A !A.A DANAiA…A—A žAªA½A ÂA ÌAÖA ìAúABB%B.B=BUBpB‹B›BªB »B ÅBÒB×BæB îB +úBCCC &C 4C >CIKC •CŸC®C¿CÇC +ÐCÛC:óC0.D +_DjD.pDŸD¤D«D³DÂDÓD äDEE(E ;E\EmE*EªEÈEäEF F*F3F DFNF WFdF lFyF ŠF”F FªF¹FØF÷FG*G 3G?G%NGtG|G +ŒG—G žG¨G ±G»GÙGêG H +HH'H0H 5H?H UH aHmH}H#›H¿HÜHåH7ùH1III QI^I uII ˜I¥I®I ÁIËI ÒIàIçI öI JJJ (J 5J?JCJSJ jJ tJ ~J2ˆJ»JÔJïJ +KK9K UK_K cK +mKxK’K™KªK³K »K +ÈKÓKëK$ûK L 'L3L HL TL`LoL +wL ‚L L +L¨LÆLÞLäLùL +M MM M0M#@MdM}M ƒM +M˜M¨M °MºM ÉM×MëM ôMN + N'N ZUZ +dZ#oZ “Z1ŸZ,ÑZþZ[ +2[=[ S[a[~[…[ ‹[ +™[¤[«[ ²[ +¾[É[Ï[×[à[ç[ ö[ \ +\\\ 5\A\J\f\‚\ž\ ®\ ¸\Â\È\Ú\4ï\!$]F]V]e] z] ˆ] ’]Ÿ]§]­] +½]È] Ñ]Û] +á]ì] ^^"^2^C^;K^ ‡^ “^ +Ÿ^ª^À^×^ ï^û^ _#_ +2_=_ Y_f_€_ _ +™_¤_¼_ Î_Ü_ñ_`*` F`R`c` ` ‹`™`¬` ½`É` â` ï` û` a aa/a BaNa ]a ia va ƒa a ›a§a*½a èaöa +bb -b +9bDbWb/gb—b±bÀbÆb Õb ßb éb öbc c!c1c:cCc Lc.Vc'…c­c´c ½c ÉcÕcçc îcúc +dd+d Cddd„dd¦dÂd Öd ãd ñd+ÿd+e1eGe +Ne Yefexe‰e ›e§e»e×eèe øe f f +f)f:fSfmf#‚f¦f¿fÔfçfg0gHg]gg]Ågf#hŠh¤h ¬h ¶h#Àh?äh$i9iQili„i)˜i%Âi<èiE%jkj ~j ‹j ˜j¥j¸j/Ïj*ÿjC*knkŒk+¨k!Ôkök'l9lBl \ljl{l „l‘l  l®l·l ÎlÚl âlðl÷lýl m m 2m!>m#`m„m‰m™m·mÈmÛm +îmùm n +n"n 3nAnYnnn}n +™n¤n +«n¶nÒn Ùnånênónùn + oo o'o=o'Mouo{oY‚oÜoâo +õoppp&p>pVp +kpvp p —p¤pªpÂp×pëpýpq qq'q @qMq/iq-™q/Çq ÷q r r#r3r FrPr +_rjrr’r›r £r°rÇrßrDúr'?s@gs ¨s²s¹sÉs Ýsçst tt*t1t HtUt[t bt pt}tt–t§t ½t Ët Øtæt÷t +üt7u?u GuZTu¯uÀuÇu Íu +Ûu æu óu ýuv v(vÐ{<|7L|ú„|œ}~!8~Z~y~.˜~)Ç~%ñ~Q)i&“º„×/\€3Œ€&À€ç€0&4WŒ¤p¾~/‚=®‚%ì‚,ƒÍ?ƒ! „/„JF„‘„ ª„¶„)Æ„ +ð„û„ +… …… -…:…-L…z…‹…’…›…¤… ¶…À…Ã… +Ì… ×… á…ë…ó…ü… † †† †&† +†5†P† b†n† …† “†† ®†º†¿†Þ†ù† ‡8‡Q‡W‡[‡c‡ }‡ož‡{ˆŠˆ ˆ¥ˆ´ˆ ¹ˆňàˆæˆ%툉"‰/*‰Z‰ c‰ p‰}‰™‰&²‰Ù‰â‰ŠŠ +Š#Š2Š AŠ MŠYŠwŠŠŠšŠ²ŠFÒŠ‹,+‹X‹Qi‹:»‹ö‹ ŒŒ1Œ*CŒ nŒ|Œ•Œ°ŒÉŒÐŒÖŒæŒöŒ #2DS cow‡ +Ÿ ª ´¾ Ä Ò ßRëP>ŽŽ—Ž Ž©Ž!¯ŽÑŽåŽøŽ­jÅA0$r=—.Õ-‘-2‘`‘e‘ +}‘ ˆ‘’‘ ˜‘¢‘U§‘ný‘l’|’•’›’¤’,´’á’è’í’õ’8“@“Z“r“Š“£“ ¨“¶“»“Гß“î“ ý“ ” ”&”%A”%g””“”™”[ª” ••••,•/•5•;•@•E•L•T•S]•C±•:õ•F0–w–†–‰–™–°–µ–½–Ù–â– — ———(— 8— B— L—V— h—t—{——¡—©— ²—¾—Æ— Ï—Ý—î—þ—˜ %˜ /˜;˜ +M˜ X˜ f˜p˜ w˜…˜Ž˜•˜ +œ˜§˜­˜´˜ º˜ȘÛ˜ ä˜ñ˜ú˜ÿ˜ ™ ™!™ (™ 6™ @™ +M™X™a™r™y™ˆ™ ›™ ¨™²™É™ +ϙڙ é™÷™šš( šIšYš aš mš{š„šš¦š ®š»š +Êš Õšáš çšñš› ›› !›-› +5›@› Y›g›x› +‡›’›¢›«›½› +ÛΛ×›ç›÷›œ œ &œ2œ9œ@œOœhœzœœ˜œ­œ ¿œÉœ Ïœ +Ùœ äœòœ (EN ] ku } ‡•œ£«± ·ÃÌ ÒÞï÷žž žžž +4ž ?ž MžYž lžyž‰ž‘ž–ž¥ž®ž³žÞ ÈžÒžÙžíž(õž Ÿ +Ÿ8Ÿ>Ÿ OŸ[Ÿ cŸ +oŸzŸŸ—Ÿ Ÿ +©Ÿ´ŸÌŸߟ)ûŸ% + 0 9 J P ` x  ” ¦ ® µ » Ê  Ù ç ì ó ù ¡¡6¡ +E¡P¡Y¡ o¡ }¡ ‰¡ “¡ ¡ ©¡ µ¡¡ Ë¡Õ¡ ì¡ ö¡¢¢ +¢%¢9¢ M¢ +Y¢d¢t¢ z¢ˆ¢—¢  ¢­¢¿¢Å¢ +Í¢Ø¢è¢ ý¢£ +£ )£6£E£ T£`£p£y£ ££˜£ +§£²£ ã +У Û£è£ù£ +¤ ¤¤*¤:¤O¤X¤ a¤ o¤y¤ €¤Š¤ ¤ ³¤ À¤ ʤÔ¤Ù¤ê¤ï¤ ¥ ¥ +¥ ¥ )¥ 6¥ +D¥O¥ U¥ +a¥l¥r¥ {¥‡¥¥ + ¥«¥À¥ Ó¥ߥ æ¥ +ô¥ÿ¥¦ ¦ (¦5¦K¦Z¦k¦s¦ƒ¦“¦¢¦«¦º¦ Ö¦ä¦%í¦§ 0§:§ L§ X§ d§n§ v§ ƒ§§“§š§£§³§ º§Ƨ ܧ æ§ó§ ¨¨¨&¨/¨?¨G¨ +P¨ +[¨f¨x¨€¨ ‰¨8“¨ ̨ +ب㨠÷¨ © ©©&©.©5© +D©O© U©6b© ™©¥©«©´© ½©Ê©Û©ã© ê©ø© +ª$ª :ªHªgª-€ª ®ª¸ª ¿ªͪáªéª üª« «"« +3«>«D«M«S« \« i« v« €« Š«˜« Ÿ« ­«»««Ê«Ыâ« è«õ« ¬¬ +'¬ 2¬<¬E¬X¬ \¬f¬ +w¬ ‚¬Œ¬•¬™¬¡¬ ¥¬³¬¹¬À¬Ö¬ç¬í¬-ó¬!­'­,­;­K­Z­ j­(w­ ­£­¨­¯­·­ ½­Ê­"έñ­ú­ ® ® ®)® =® +G® R® +\®g® o® y®†®£®ª®»® Í®×® 󨎨 ø®¯ +¯ ¯/¯:D¯¯‘¯š¯ + ¯ +«¯¶¯½¯;Ưs±vµ‹µµ´µýºµ¸¶ º¶ȶ0ܶ ·)·1·HB·0‹·P¼·, ¸#:¸7^¸=–¸6Ô¸3 ¹3?¹0s¹¤¹/­¹ݹ>ø¹67º?nº@®ºïº!»W#»r{»î»)¼+¼%A¼+g¼ +“¼ ž¼ +¬¼ +·¼¼Ù¼ð¼½½ ½ &½ 2½ +@½K½ +k½v½ ½!š½¼½Õ½ +ܽ ç½+ñ½¾30¾d¾!„¾*¦¾Ѿ$í¾¿ ¿*&¿*Q¿|¿x”¿ À À!?ÀaÀ$}À`¢ÀÁ"Á<AÁ<~Á0»ÁßìÁçÌÂ3´Ã*èêÄ-¾Ä+ìÄ Å %Å 2ÅA?ÅŞŻÅÖÅõÅ4ÆEÆ"aÆ „Æ ’Æ* ÆËÆÒÆQÙÆ+Ç2Ç OÇ\Ç xÇ +†ÇB‘ÇÔÇJÙÇ$È ?ÈMÈ"UÈ+xȤȿÈÚÈéÈHÉ6QɈÉÉ¢ÉE¿É-Ê!3ÊUÊBnÊ±Ê ÃÊ ÐÊÝÊåÊìÊÿÊ +Ë*Ë +;Ë +FË +QË \ËhËpË$w˜˳ËÈËÏËéËÌÌ"%ÌHÌ[Ì jÌxÌ}Ì „Ì ’̜̬Ì!´ÌÖÌëÌÍ Í"Í 5Í0?Í pÍ zÍ +ˆÍ“Í—ÍžÍ £Í°ÍÀÍÄÍÖÍëÍðÍÎÎ!Î2ÎEÎXÎqÎΔέÎ$±Î ÖÎ ãÎ +íÎøÎÿÎÏ +ÏÏ Ï +(Ï3Ï IÏSÏ$fϋϩϼÏÐÏåÏ@Ð DÐ&eÐŒÐЕЙÐÐ £Ð +±Ð¼ÐÑÐæÐýÐÑ#Ñ +Ñ9Ñ +PÑ [Ñ iÑ +wÑ‚Ñ “Ñ+ Ñ%ÌÑ„òÑ*wÒ<¢Ò$ßÒ!ÓM&Ó0tÓN¥Ó6ôÓ<+Ô'hÔ#Ô&´ÔŠÛÔHfÕH¯Õ øÕÖÖ)Ö;Ö +BÖ +MÖXÖqÖ6„Ö»Ö6×Ö× ×#×9׊R׊Ý×+hØ-”ØÂØ.áØ.Ù'?Ù'gÙ'Ùr·Ù'*Ú.RÚ.Ú+°Ú-ÜÚ +Û:ÛXÛ-mÛ"›Û¾Û3ÚÛÜ'Ü?7Ü wÜ „ܨ‘Ü?:ÝzÝZ‘ÝJìÝ~7Þ}¶ß4à 8àYàràyà‰à ¥à¯à¸àÒà Ûàéà(ûà$á3áGá\ásá‹áŸá ¨á µá ¿áÉá èáòáâ#â 5â?âRârâ ‹â•â§â¹â<Ïâ ãã!/ãQãkãpãˆãŸã$¯ã Ôã!áãää)äBä bä +lä wää “ä ¡ä ®ä¼äÍäãä öäå å%å,å IåVå;fåK¢åîå3æ!5æ Wædækææ'’æ!ºæsÜæ Pç ]çgç{ç‹çªç6Æç<ýç!:è3\èè&¬èÓèäè2èè<é7Xéé.®é8Ýé#ê4:ê,oê:œêH×ê+ ë,Lë&yë1 ë<Òë]ìmì%ì1³ìTåì):ídí{í‚í’í¯í]Ìíy*î3¤î9ØîBïUïhïQï Óïàïðïðð)ðHð Xðeð}ð'˜ð ÀðÎðêðùð* ñ7ñSñoñññ*®ñÙñáñññ ò ò6òMò lò yò +ƒò Žòšò ¡ò ®ò»ò ÍòÚòìòûòó +óó6óRóZópóó¬ó$¼óáó"÷ó%ô%@ôfô€ôœôµôËôYõ'iõ‘õ•õ-±õ\ßõ<öCöSö iö wö„ö0 ö!Ñö%óö'÷-A÷o÷÷˜÷  ÷ ­÷º÷Ë÷3Þ÷ø#ø@øHø _øiø}ø +“øžø'´øÜøðøùù #ù0ù +8ù!Cùeùlùtù{ù‚ù‰ùœù¬ù¼ùÃù ËùÕùéù ú'ú'8ú0`ú'‘ú0¹ú'êú%û8ûLûSû7mû¥û¼û*Íû-øû0&üWü$sü˜ü ·üEÄü +ý#ý&;ýbýtý”ý +±ý +¼ý0Çý-øý &þ 3þ!@þ bþ pþzþþ šþ§þÀþÙþòþÿ!'ÿTIÿžÿ ´ÿ ÁÿÎÿßÿ(ñÿ1(L(uWž:ö +1 <J Yc9|2¶JéË4?@ Sa>zC¹ý29;l*¨-Ó!0#FT!› ½ÞRþiQE»J*LCw=»8ùL2 !¿ Û>å\$  ’ ¡ ¶ 5½ ,ó 5 + V +?c + £ + ­ +*º +Qå +>7 Iv JÀ $ 60 !g ‰ § ¸ Ì Ü õ  ' @  \  i -v 6¤ Û /ú * +;F W a3kŸ2£Öæ  - 7BEˆ¤«Áàü9)cv†¶,Èõ ü ,3 R+\ˆ•œ£´ Ê ×å ö/)4^Êe0D +X +c¤n%@Ug„“>«Pê;R +do +~‰¢¾Óåì %;@\k'~¦  ÐÝ$õ66S0Š'»0ã"7M0i š¤·Ðàöú ! & 0=Sr…$›ÀÔêý J i'vž¢ÀÉÞ ò þ +$/T'\C„È0å<NSB¢åö% -9Q `m| ƒ” ›¥¿ Ù8æ45j†  ›©¾ÖÞîñ( . G ` y ’  ± ¿  +Ï Ú ÷ ! +%!0!A!¥T!ú!o|"Ÿì"¨Œ#]5$]“$ñ$õ$ +%%#%9% X%e%u%…%š%¬%BÂ% +&*&;&M&^&s&*Œ&·&XÔ&-' +E' P'!Z'|'!' +±'¼'Ð' â' ï'ü'( +(3(N(d(‚( ‰(;“(7Ï(L)T)![) })eŠ) ð)þ)** +*7*L*g*€*–* ¯*¼*Å*â*ø*+.+D+H+M+ ^+ l+ +x+ ƒ+ + —+$¤+É+TÛ+`0,‘,•,œ,¡, +±,K¼,K-OT-O¤- ô-þ-... .).2. ;.H. Z.4g."œ.4¿."ô.4/"L/ o/ +y/„/”/§/ +Á/ +Ì/×/Þ/å/ì/ÿ/00 00->0-l0š0 ²0*¼08ç0! 1 B1'c1‹1§1¿10Ü1* 2$82]2 n2 x2‚2‰2$2'µ2Ý2 +õ2 3 + 3 3#3;3P3h3 +|3‡3–3¨3½3 Î3 Û3é3ø3 4<40Y4Š4 4$¶4Û46ë40"5S5'l5%”5º5Ö5'ð5$6=6!\6!~6 6!±6 Ó6à6 ö67 +77/7 +G7 R7_7w7 77®7Â7%Ó7ù7 +88 "808 A8 K8X8k8$…8ª8É8ä879 +;9 F9S9k9 +ƒ9 Ž9›9³9Ë96Ü9:-:"M: +p:{:"›: ¾: È: Ô:à:ð:; +;(;E;b; v;ƒ;œ;¸; ¿;É;!Ù;û; <<4<P< W<d<}<–< +¯< +º<Å<á<÷<== '=4= J=X=h= ~=‹= Ÿ=¬=l¼= )> 3>'@>h> ~>‹>*›>[Æ>_"? ‚? ?]š?ø?ÿ?@@$*@O@!V@x@ ˆ@•@)ª@ +Ô@ß@$ç@ A%A!>A`A wAA–A§A¹A +ÍA ØAæAöA BB1BOB.hB.—B.ÆBõB C!C5C?PCC¡C½C ÎC +ØCãC +úC(D.D?DRD dDrD †D”D›D(±DÚD$íDE/0E$`E'…E ­E·EEÍE$F8F +HFSFgFnFŠF’F¢F¸F ÉF×FóFúF GG.G +AGLG +cGnGrGˆG +G +¨G +³G[¾G&H#AH#eH#‰H ­H,ÎHûH I +II!2ITI\ImI I$ŽI³IÃIÛI5ôI +*J5JFJ \JiJ‚J ŸJ ¬J¹JÉJÜJ-ìJ'K BK'OKwKŠK©KÈKØKðK*L3L OL\LlLsL +„L LœL±L!ÆLèL!øL M +'M<2MoMvM +‹M–M šM§M ·MÅM0ÎMÿMN 7N AN MN WNaN eN$oN ”N ¡N«N ²N ¼N ÆN{ÐNLQPjQ»Q ÏQÜQ!íQRR8R*VRR”R¬R¼R0ÓR-S2SHS\SsSB†SÉSàSñS +T'T"FTiTT†T(¥T ÎTÜTäTõT ùTU2 U?U +CU NU \UhUzU‰U œUªU²UÁU +ÓUÞU"åU VV%V,V$4V'YVV“VšVºV +×VâVW W W!(W JWTWmW ŒW šW¨W°W´WÇWÝWíW XX<%X!bX„X'XÅXÌXÐXâX÷XüX YY*Y :YGY fYpY‰Y Y ·Y'ÁY!éY ZZ-0Z ^Z'lZ +”Z*ŸZ-ÊZ$øZ"[#@[d[ +z[…[–[!©['Ë[$ó[ \!&\$H\$m\’\®\?µ\$õ\!]$<]$a]%†] ¬]¶] +Ï]8Ú](^5<^!r^!”^;¶^ ò^ü^ ___%_,_1_8_ T_`_ i_ v_‚_‰_ _ §_ ±_»_-Â_ð_ ``(`@` X`f`n`u`y``^«`< +aGaYa"ha‹a + a«aÂaÓaäa öab +bb'b96bpbwbb¦b ¾b?Ìb + c +c"c)cEcZcrczcc/’cÂc'Õc ýc$ +d/dGd ]d'gdd¤d!Àdâdûd+e>eXe9oe©eÃe!Üe)þe(f.|»5Ξ`žM|ž"Êžíž$Ÿ+Ÿ5;ŸqŸ‡ŸšŸ°ŸßËŸ$ÒŸ ÷Ÿ$ ) E M j Š ¢ ·  Ë Ø ð  ÷ ¡¡¡ )¡3¡I¡Z¡ym¡jç¡R¢Z¢`¢f¢<l¢©¢Æ¢(×¢£À£žÈ£Ng¤4¶¤5ë¤Y!¥M{¥MÉ¥ ¦/!¦Q¦ g¦t¦x¦”¦›¦§¬§$§ç§ +ë§ö§$ +¨/¨4¨8¨H¨X[¨´¨ͨæ¨ÿ¨© © 7©D© `©©‘©¬©Ç©Ê©GÞ©;&ª;bªžª§ª°ª|Ъ +M«X«]«b«}«€«‰«’«—«œ« «¥«}««`)¬ZŠ¬gå¬M­h­k­'|­¤­ «­!¸­ Ú­!ç­ ® ®'®,®;® U® c® +q®|®®¥®·®Õ®õ®¯ ¯ ¯ (¯"6¯Y¯s¯%“¯¹¯ ʯ +Ö¯ á¯ï¯ÿ¯ °°$°6° +G° +R°]°t°}° †°”°©°º° +ðΰ ×°å° ô°± ±±7±N±h±€±—± +«± ¶±ıÕ± +é±(ô± ²+²E²\² +y²„²"™²5¼²ò² ³ ³ ³ ,³8³ L³ +X³c³ t³€³ ‘³ ³ «³ ·³ ų +ӳ޳𳴴 '´3´D´X´r´„´ ´©´À´Ñ´æ´ú´µ,µ"Fµ +iµtµ‹µ +µ¨µõ յ㵠ýµ+ ¶"5¶X¶ +l¶w¶ †¶”¶ª¶À¶϶ +ï¶(ú¶ #·/·I· [·g· o·"·³··Ê· Ó·á·ò· ¸ !¸/¸@¸ +U¸ `¸ l¸z¸ ‰¸—¸%Ÿ¸ŸÔ¸ +ì¸÷¸ +¹ ¹2¹ +C¹N¹`¹q¹v¹‘¹–¹ +­¹$¸¹ +ݹ7è¹ + º+º HºVºeº +uº €ºŒº!¦º +ȺÓº ٺ庻»"5»4X» +»˜»»®»Å»Í»â» +û»¼¼ +7¼ +B¼ M¼[¼x¼’¼¦¼®¼¶¼¿¼Ó¼ð¼½'½?½#S½w½Œ½ +¤½¯½¾½нå½ ô½¾¾ 6¾D¾[¾ j¾x¾"¾²¾Ò¾ã¾÷¾ +¿"¿ ?¿M¿ ^¿l¿ +¿ +Œ¿ —¿¥¿·¿Ì¿Þ¿ò¿ À#À=ÀQÀeÀ |À ˆÀ”À«À¼ÀÎÀßÀöÀ Á !Á/ÁOÁ ^Á jÁxÁÁŸÁ¹ÁÍÁáÁûÁ + Â%)ÂOÂ^Âu ‡Â“˜­ ²Â¾Â +Ó Þ ìÂø +Ãà +-à 8à +DÃOÃXà +oà +zÅÙðÃ%ÏÃõÃÄÄ )Ä +7ÄBÄ +_Ä jÄ.vĥļÄÑÄàÄòÄ Å Å*Å(>Å gÅuÅ"„Å.§Å +ÖÅ%áÅÆÆ'Æ 8ÆDÆ[Æ mÆ{ÆŠÆžÆ ¾ÆÌÆäÆÇÇ/ÇLÇ `ÇlÇÇŠÇ +¢Ç ­Ç »Ç ÉÇÕÇòÇ È ÈS(È |ȈÈ(šÈÃÈÕÈõÈ ÉÉ +0É;É +PÉ[É +dÉHoɸÉÉÉÚÉ +ñÉüÉ"Ê +6ÊAÊ IÊWÊ%oʕʬÊÃÊ+ãÊ?Ë OË +\ËgËxË ŒË#˜Ë ¼ËÈË +ÚËåË Ì +ÌÌ +Ì9Ì JÌ VÌ +bÌmÌ|Ì”ÌœÌ ®Ì¼ÌÄÌÍÌÕÌòÌÍ%Í:Í KÍYÍ +pÍ {Í‰Í§Í«Í ¼ÍÊÍ +áÍ ìÍúÍþÍÎ +Î +'Î 2Î%>Î(dÎÎ ÎGªÎòÎöÎúÎ ÏÏ(Ï8ÏBMÏÏ “Ï Ï©Ï½ÏÁÏÖÏ1ÝÏÐÐ+Ð0Ð ?ÐKÐ aÐ +kÐ vÐ +€Ð ‹Ð˜Ð §Ð/±Ð áÐîÐÑ"Ñ2Ñ 6ÑDÑ SÑaÑpÑwчÑ?—Ñ×Ñ÷ÑÒÒÒ0Ò4ÒÉ #bäB ªó Úºïè"„ Nz5°ú ÅÿÃôÁbßÆ* ë ˜É…7Š]·“«ùûl qˆ£ a82E㨠>XG ü4æt/¡' ¡_€be ÓúÒþØã—ÞQ  Ô~ OXÁ8Ö3¿Ø¦õÖLxÀ;ö5šƒ& Šõ…^ÂßP•À–H«aÓ÷º< VÒê7™¹Ãhª´³¸mxÍõe*( +â:9 kØž"‡á7( +>Á' zÑ5 YnÍ6u ¤™|Raåý‚Çd½ Ž [úU Ñíä øS¹ åÁèx[l ¶Ís ›ø¨@ ¾± œè=:¿ ¿%£.ÖÑè ¤6;Zaø•¸zÚÇ­D0m678T- +Ç)M%O:bÑË` v({jwgòìàÀÙà 6³èAÓkä¼ VtãÑX-ÆöHÔe#݆©í vÍjÔ¼;‡^ „l9 \h· ‰¦n¯¶[þ ÿdß}v6zQ Æ¦b´Žû +ŽK«ª Tó») «â ·[€ƒ^„û©Ø¨Ñ â@Œ 9Âeãòº­¤OFÄõî½—wEðJbgÕÓq …»p¹á%µ”r±  ÓÈ®c•wÕÒÙKŠ¢ËcLd·> Æ7µ w…™ +ù `¤f lké>ô oÕ­!'Au[r +Öìâ“Z^‹ÀG’õqµþýöa ¤Aôè(?•§Ã# âúì‘ ´ WqB#Ñ  Ê9ó5?-¥ – ²€Ÿ—CÇ+^ +A &ŠÅ±PÙ€ BÜ1‘íƉ‡œ@ǘ«žº\† gÉ7±½Ý + Aé¬ û‹º´× ¼Ö,¥ÛÛš ®âë´Äø‡J¯YÇ‹ šQ‹U€MLšÄ~@[ ù‚[”Ü÷RSFÍÑ‹rI&°q7J›2‘y§£S}‘¡ © +Š ëüûDÅòŸ Ä +ΪyEã©””Zˆ¤/ ø*ŽË Z 2æg%Ù©¶ qŒlÔR c×$ +ÄõHr DXÙ +WYˆý?˜‚Þ!„#C†osåùÂo°Dß»/žÛÆ™ ˜ ÊÿT+{> +Ê×æ@%¹z¸i Ö yœl_í„Ç‹ àЃsš Î… ÉEÌxl šI² Ú/4XÜÜþ§ 'Ï]z÷…µ—_jŒt_í2N! g êÁ¤ +}Î umÚ# +Oe±ÿv'% +·¯ ø 4È ú ‹çųs9ñc +Ï ‚¥èY ªH²ádî§aI»ô{ 2›ì"”Á(HÌM 0 n?‰–W$ÏÝ;äHUÃ-­ÔŽˆf >[˜j& o›¦‡"$_ƒ˜ +ɻڣó°¶eœ0 +-㣔ŠtÆú3 ÷$®2= ˆÆîñfK·?¥" +ò}™h;Î p3—wü †a×…^÷ ð$T)ìDò¼x<ù +¶Ú2¶D™ØgÉ‘¨œ\¬’+·8 IµRé‚Ì| E S³ Ùº  À'°  +=éÒï¸ m9 åËØžC(„u­ $5dWÞËyU +àqŽcÞ¢)Ì1ëÍVá P?  “"^°±²×±ÙÚÛä¤j Òê¦ ¢ç?rÝ3! +‡ ²eˆ ýy$QO,'׫Sr6@3 +ÕôþÏkhÌ²Þ ¸-ôö +­5 9* ª$ u’‘ŬWo!.øw`— ¹o +-Î’ ÿÛ ×:¡M¾È ôÃ\fYí>¨" ùLP ] `n™ +GÈäᇸô³k Ûª…¯9Q2—pÞR äZF ì?ÉI ©7¢ È9NT dŽ_zÏj€ ê MºÐ °J÷ë…¡€¬ + +‰¼˜14"áš³ ÀW ~ŽžýiæB])‹½7ž +CŠQ €‘à…YÔd/ñÞßî½Ð’/ ]çhuøÞjš +ñ +‰)¾Ê, +Å´àN- ÙÞˆiœ hû +²3Ù×ÃÏˈ<ŽE + ü'† ›¥®0 ˆ ½áò*’šȂ&ÌTà G®i¦Ý<K ºYW +ö,ïWTL²¸ “ MSR½ÈPÄ(¿Âð% c l%1»5$gã1N¥üvµ;’¿ Ã{“é* +À+F†û¸<žYþ·‰‰¼-ðJ“}*&î¾t—» ú äsq„à ó\Ÿp n+µ§âì &ó„Ïßo : "{½FŠrRh-‚÷aQNÁBëÖI2 1 î'ÄH ÷?¬³!˧‰/òç4V¹ûöšg,T¶âDs›ÙÕZIÿV¡ÖIç²t_4ª |¬/=7 +Qz³Æ Àó©¿ËöêÔC iðD ){J4 (. å„#}OX~æ °/É3Ä +=¾ e œ: +ãL© ʯ<·e¼ mÕ g3½M^ +” ÌÔ¤  +ŒÂuÄK‘ïmKÕŒª3áP  n w,—ö¨X RRxp u“û ʾŒG ¡ê Í ‹}1ªs­‹Ò h ºNéw =H{<bï+»æ8 +è:8 ð8Öy .Õ^k Ø8Z´££»8iv˜tÑŸ +á#‚ ´¼ à#',  ›“Fž8{-fñ(2 +Ü°¼Œ´\Æ=!|x­ý±ßõ[Ê +lŠé&no£Óï—kmóG) +fJkù:z`<EVº¬4._Ç€ÍtðÍâРn}ì–þ= +å¯æ¯tR±î¿ìÿ ³ò  ¥ çñ ¢_ ¬ {%Ü éó+î »Åä‡ +n +Ýj L Ê¢y<•ôã ;}D)_‘!Ýgõµ; +©S Ûç.« L"ß eÐU¨jÛàê.pÃèH«Wß(íXëÝ;€ +F iè' +Î~~˜ÞT–ükí¾ö 6Ì6Sqâ® c +þ꟒6 +n,¤ÈùCm› Î §6 r¨K¥ˆ\ƒç Oܶ Т|Ý ãB®y519³‰s›C5ðÕv· +fÔ üÓz B =C`a4 Ð>!B¬ÑÊ ¾ +Mc¶õ@#åVt “篶Ò>& +ÕŒÇ FÜ +3Gë\ ¹¿,”E m ™`B0úaÜ`J @vr0¬ø8›líMZo¹dƒ G$/ +¨^–üêÔœ ò¦‰ æ’U .å &§×Ïž|¥Îs¹XZ–hbE@1ëœx >ƒ/Iß®PØÝ !*®ñrÓJ¯KáO|j0;” ËÁ úƒ9 +µÒKo£±]ëÚ‡ÛÏ­À 6N pH4 +ÛÿË +¢˜"Â3]=pœ(Ä m°q]•1 +b‘h + ¾æø) @N¹¦fy:™ý< +,|¡ù’|Ì ð pE:婽Ob Lž †ŸÎ +“Nw~ Mw!SðÁÂF¸¢CÅQé~Ö} i ƒ× +÷ý =çJ1™.úÚ |®£#¯ÿñ4IÈ« ]XfUxY¨ ÊP % Tiþ]ÎÀ–S¾sAÉé ~–þ +A<ïG\5êUKƒ¼ŽÁÅ«~ ò iCLÃî ¦´A +ýñ•BÒ.ÌkF­Ðfp û\ÒO %Ð?PŠ)u•”îcõ >Çd †&Å {c¡U5 +Ó à*ó†ù0–våV V*‚ýŸ$Ó; †æÜ„. +ŒuŸd[É +WÚ§üGŸPÍ + +ÿ0‚A ÷¡Z• ï ¸+ü¦Øä§ ¥0µÏÐ + *• VìU¿ÈYôö¿xQv 2Ÿñ`0Ø ,Aï`í²:‡Dy7 + +Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, +and the rest of the Gimp-Print Development Team. + +Please visit our web site at http://gimp-print.sourceforge.net. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + (Height Mismatch!) (Width Mismatch!) 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_llA_lpha-weightingA_lpha:A_mbient:A_mplitude:A_ngle:A_nimateA_ppendA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdd 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 the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the magenta balance of the printAdjust the preview's brightnessAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAffected RangeAl_ternateAlienMap2AlienMap2: Transforming...Align Visible LayersAll JNGAll PNGAll blackAll grayAll text fields must contain a value.All 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...Applying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Area #%d SettingsArea SettingsArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutomaticAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementBac_kground colorBack:BackgroundBackground ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:BentBevel EdgesBili_nearBl_ack & whiteBlackBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...BumpmapBy DATAMIN/DATAMAXC source codeCML _Explorer...CML_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't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCannot delete!! There must be at least one GFlare.Cell size: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 Independent ParametersChannel Mi_xer...Channel MixerChannel 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 sizeCircleCleanup...ClearClose curve on completionClosedCo_lorCo_lor averagingCo_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 _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor:Color_map:ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColorsColors:CombineCommand:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:CompressionConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the texture of the selected paper as a backgroundCopying IFS to image (%d/%d)...Copying...Copyright:CosineCould not get layers for image %dCould not load PNG defaultsCould not open '%s' for writing: %sCould not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't read file:Couldn't save file:Couldn't save resource file:Coupled-Map-Lattice ExplorerCre_ate new imageCreateCreate 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 arcCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreateDIBSection failedCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCurl LayerCurl LocationCurl OrientationCurrent:Curve BendCurve Bend...Curve TypeCustom 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 areaDeform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth MergeDepth map:Depth-merging...Deriving Smooth Palette...Description:DespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDiffraction PatternsDiffuse:DigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacing...Display as:Dither 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 OperatorEmbossEn_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 changesEncapsulation:EndPage failedEngraveEngraving...Enter a name for the new GFlareEntire LayerEnvironment image to useError during open of FITS fileError during writing rgb imageError in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError reading fileError writing output file.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 write GFlare file '%s': %sFast IntegerFeatherFileFile "%s" saved.File '%s' is corrupt. -Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already existsFile not in a supported format.Filename:FillFill (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.FlareFXFlipFloating-PointFlow Step %d...FlowingFo_reground colorFocus the brush strokes around the center of the imageForegroundFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d of %dFrame (%i)FromFrom ColorFrom paperFrom:Front:FullFunctionFunction type:Fuzzy SelectGEE-SLIMEGFLI 1.3 - Load framestackGFLI 1.3 - Save framestackGFlareGFlare EditorGIF OptionsGIF WarningGIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP brush file appears to be corrupted.GIMP patternG_lowG_reen threshold:Gamma:GeneralGeneral OptionsGeneral PreferencesGeneral optionsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradient map selection menuGradientsGraph of the current settingsGrayGrayscaleGreenGreen fr_equency:Green ph_aseshift:Green:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid color:Grid settings...Grid spacing:Grid type:GuidesGuides...Guillotine...HSVHTML Page OptionsH_ighlight:H_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:Ho_rizontal base:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot spot _X: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:IDITER:IWarpI_ntensityI_nteractiveI_nverted imageIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If 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 _Type:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image name:Image size has changed.Image type:Images for the Cap FacesImages have different sizeIn_verseInchInclude decorationsIndexedIndexed Palette TypeInitial value:Input levels:Insert PointIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in brush file '%s'.InversionInverts the Papers textureIsometricIt is highly recommended to add +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...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutoDesk FLIC animationAutomaticAutomatic pre_viewAvailable Images:B, G, R, X (bmp style)B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBentBest for images dominated by regions of solid colorBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. sensitivity:Change order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. +Adaptive Hybrid usually produces the best all-around quality. +Ordered is faster and produces almost as good quality on photographs. +Fast and Very Fast are considerably faster, and work well for text and line art. +Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Co_rrelated noiseCol_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Range _Mapping...Color Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Compression typeConstrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous grad. w/o gapContinuous gradientContinuous updateContoursContrast:ControlsControls how intense the highlights will beConvolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the active curve to the other borderCopy 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: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 temporary file '%s' for parasite loading: %sError 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 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 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 previewJigsawJigsaw StyleJuliaKeep image's valuesKeep originalKeep the first valueLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLeftLeft 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:LineLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower selected objectLuma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationMa_ximum height:Magen_taMagentaMagenta:Magenta_KMain OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap file formatMap to ObjectMap 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:Merging...Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Misc arrange:Mo_dify green channelMo_dify saturation channelMod_ify blue channelMod_ify luminosity channelModeMode _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...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew 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 data capturedNo lightNo matchesNo selection to convertNoiseNoneNormalNormal: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 cells:Number of colors:Number of pieces going acrossNumber of pieces going downNumber of times to apply filterNumberingO_ffset:O_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 spaceOff_set:Offset (1):Offset all vectors with a given angleOffset:Oil Painting...OilifyOn Edges:On Film:Op_acity:Op_tionsOpacity:OpenOpen FileOpening '%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_ientationOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOutputOutput Levels:Output type:Outside TypeOverlayPGM imagePNGPNG + delta PNGPNM 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_reviewPage Curl...PageSetupDlg failed: %dPagecurl EffectPages:Paint Mode:Paint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParse error in '%s': -%sPastePastedPasting...Pattern fillPercentPercentage of pixels to be filteredPhotographPieces:Ping pongPixel _Height:Pixel _Width:PixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.PluralPointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPostScript 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:R, G, B (normal)RGBRGBARGBA/GRAYA drawable is not selected.RLER_adius:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Ranks:RawRaw Image DataRays Paint OptionsRe_dReads the selected Preset into memoryRealtime PreviewRecompute 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 linkRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...RenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesResolutionResolution 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: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 channelsS_catter HSV...S_econd Color:S_elect Window AfterS_electorS_hrinkS_ineS_trength exp.:S_trength:S_tripedS_wapS_wirl CCWSameSample Analyze...Sample ColorizeSample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation fr_equency:Saturation ph_aseshift:Saturation:SaveSave -SettingsSave BrushSave CurrentSave Curve Points to fileSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Lighting PresetSave Parameters toSave 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 comme_ntSave creation _timeSave creation timeSave current...Save resolutionSave the current settings to the specified fileSave the curves to a fileSavedSaving '%s'...Saw_toothSc_ale 1:Sc_attering:Sca_le 2:Scale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale:Scaling:Scatter HSVScattering HSV...ScreenScreen ShotSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeed of Random (only for "From Seed" Modes)Seed:SelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect RegionSelect _AllSelect allSelect an objectSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect 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 your printer modelSelect:Selected:SelectionSelection size is not even. -Tileable maze won't work perfectly.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 contrast of the printSet the scale (size) of the imageSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharpening...Shear:ShiftShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow all objectsShow area URL _tipShow area _handlesShow colorShow gridShow imageShow next objectShow positionShow previous objectShow selectionShow/hide preview wireframeSi_ngular:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:SmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing 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 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpecified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphericalSpiderSpike Thickness:SpiralSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart angle:Start offset: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_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTargetTel_netTemporaryTemporary ProcedureTextureTexture PropertiesTexture:TexturesThe GIMP help files are not installed.The GIMPressionistThe amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF +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 documentPostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve _luminosityPreserve the original image as a backgroundPreviewPreview SizePreview _size:Preview as You DragPrewittPrim's algorithmPrint Color AdjustPrint and +Save SettingsPrint in black and white (no color, and no shades of gray)Print in shades of gray using black inkPrint to FilePrintDlg failed: %dPrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:R, G, B (normal)RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range high:Range low:Ranks:RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRender Windows MetafileRender optionsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)Retinex (4/4): updated...Retinex Image EnhancementRetinex...Retinex: Filtering...Return ValuesRevert to the original imageRewindRightRight Border:Right edgeRight:RippleRippling...Ro_tation:Ro_w:RobertsRotat_e:RotateRotate / ScaleRotate X:Rotate Y:Rotate Z:RotatedRotating the colormap...Rotating...RotationRotation angle about X axisRotation angle about Y axisRotation angle about Z axisRotation angle:Rotation:RoughnessRoundRunLength EncodedSUN Rasterfile imageSUNRAS save cannot handle images with alpha channelsSVG file does not +specify a size!S_catter HSV...S_econd Color:S_elect Window AfterS_elect here:S_electorS_how cursorS_hrinkS_ineS_trength exp.:S_trength:S_tripedS_ubject:S_wapS_wirl CCWSa_ve alpha channel (RGBA/RGB)SameSample Analyze...Sample ColorizeSample _density:Sample:Samples the color from the pixel in the center of the brushSat_urationSatu_rationSaturationSaturation VariationsSaturation fr_equency:Saturation ph_aseshift:Saturation:SaveSave +SettingsSave (middle transform) as QBE fileSave BrushSave Channel Mixer SettingsSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave Gfig DrawingSave ImagemapSave Lighting PresetSave Parameters toSave _background colorSave _color values from transparent pixelsSave _gammaSave _resolutionSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as IFS Fraktal fileSave as JPEGSave as MNGSave as PNGSave as PNMSave as PSPSave as PatternSave as PostScriptSave as SGISave as SUNRASSave as TGASave as TIFFSave as TextSave as XBMSave as XJTSave as XPMSave background colorSave color _values from transparent pixelsSave comme_ntSave creation _timeSave creation timeSave current...Save failedSave gammaSave layer o_ffsetSave resolutionSave the current settings to the specified fileSave the curves to a fileSave thumbnailSavedSaving '%s'...Saw_toothSc_ale 1:Sc_attering:Sca_le 2:Scalable SVG imageScale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale by:Scale the print to the number of dots per inchScale the print to the size of the pageScale:Scaling:Scatter HSVScatter RGBScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the base unit of measurement for printingSelect the desired output typeSelect the name of the printer (not the type, or model, of printer) that you wish to print toSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select whether scaling is measured as percent of available page size or number of output dots per inchSelect your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. +Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Selective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSemi-Flattening...Send To BackSend as MailSeparate to:September 31, 1999Set light source colorSet the base unit of measurement to centimetresSet the base unit of measurement to inchesSet the brightness of the print. +0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the scale (size) of the imageSet the width of the printSetStretchBltMode failed (warning only)SettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSilicon Graphics IRIS imageSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Sizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing X gradient...Smoothing Y gradient...Smoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source (input slot) of media you're printing toSource 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StartPage failedStepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, error = %d, y = %dStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:Substeps:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageTWAIN (Dump)...TWAIN (Read)...T_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in +7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF contains layers which extend beyond the actual borders of the image. This isn't allowed in GIFs, I'm afraid. You may choose whether to crop all of the layers to -the image borders, or cancel this save.The largest brush to createThe layer preserves transparency.The name '%s' is used already!The name `%s' is used already!The number of directions (i.e. brushes) to useThe number of pixels in the table border.The number of sizes of brushes to useThe 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 strokes are evenly distributed across the imageThe strokes follow a "flowing" patternThe text for the table caption.The text to go into each cell.The type of this SUN-rasterfile is not supportedThe unit's abbreviation (e.g. "cm" for centimeters).The unit's plural form.The unit's singular form.The vector-field. Left-click to move selected vector, Right-click to point it towards mouse, Middle-click to add a new vector.The width for each table cell. Can be a number or a percent.There is a problem with the GIMP help files.This image depth is not supportedThis 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 source imageTile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo:ToolsTop edgeTop:Tr_ailingTransformation %sTransparentTransparent backgroundTreat 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. -UndoUndo last zoomUnitUnit EditorUnit factor must not be 0.UnitsUnits:UnnamedUnselectUnselect AllUnsharp MaskUnsupported bit depth (%d)!Unsupported format or Clipboard empty!UntitledUpdateUpper leftUpper left _x:Upper left _y:Upper rightUpside downUs_e macros instead of structUse GIMP guides...Use Gimp GuidesUse 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 componentUse subcolorsUse the background colorV_alueValueValue Invert...Value PropagateValue Propagating...Value VariationsValue:Van Gogh (LIC)Van Gogh (LIC)...Vector _Angle:Vector _Length:VectorsVer_tical base:VerticalVertical ColorVerticallyVery darkVideoVideo/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_SW_rite extra mask fileWarningWarning: 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...WeakWhen toggled, the resulting image will be scaled to fit into the given size without changing the aspect ratio.Whirl and PinchWhirling and Pinching...WhiteWidth of the paper that you wish to print toWidth:WindWindowsWith gradient power (0,1)With p and random (0,1)With random power (0,1)With random power (0,10)WoodWrapX BitMap imageX 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:Yellow_KYou can not rotate the whole image if there's a floating selection.You can not rotate the whole image if there's a selection.You cannot save a cursor mask for an image -which has no alpha channel.Z scale (size)Z:ZealousCropping(tm)...ZoomZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)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 +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 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...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: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 gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-05-08 12:28+0200 -PO-Revision-Date: 2005-02-17 12:34+0900 -Last-Translator: Tadashi Jokagi +POT-Creation-Date: 2005-09-17 19:56+0900 +PO-Revision-Date: 2005-09-10 19:00+0900 +Last-Translator: Language-Team: Japanese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - (高ã•ä¸ä¸€è‡´!) (å¹…ä¸ä¸€è‡´!) è¡Œ "固定種" ボタンã¯ã“ã‚Œã®ã‚¨ã‚¤ãƒªã‚¢ã‚¹ã§ã™. + + +Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, +and the rest of the Gimp-Print Development Team. + +ç§ãŸã¡ã® web サイト http://gimp-print.sourceforge.net ã‚’ã”覧ãã ã•ã„。 + +本プログラムã¯ãƒ•ãƒªãƒ¼ãƒ»ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã§ã™ã€‚ã‚ãªãŸã¯ã€Free Software + Foundation ãŒå…¬è¡¨ã—ãŸGNU一般公有使用許諾ã®ã€Œãƒãƒ¼ã‚¸ãƒ§ãƒ³2ã€ã‚ã‚‹ã„ã¯ã +れ以é™ã®å„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ä¸­ã‹ã‚‰ã„ãšã‚Œã‹ã‚’é¸æŠžã—ã€ãã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå®šã‚ã‚‹ +æ¡é …ã«å¾“ã£ã¦æœ¬ãƒ—ログラムをå†é ’布ã¾ãŸã¯å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + +本プログラムã¯æœ‰ç”¨ã¨ã¯æ€ã„ã¾ã™ãŒã€é ’布ã«ã‚ãŸã£ã¦ã¯ã€å¸‚場性ãŠã‚ˆã³ç‰¹å®š +目的é©åˆæ€§ã«ã¤ã„ã¦ã®æš—é»™ã®ä¿è¨¼ã‚’å«ã‚ã¦ã€ã„ã‹ãªã‚‹ä¿è¨¼ã‚‚è¡Œãªã„ã¾ã›ã‚“。 +詳細ã«ã¤ã„ã¦ã¯ GNU 一般公有使用許諾書をãŠèª­ã¿ãã ã•ã„。 + +ã‚ãªãŸã¯ã€æœ¬ãƒ—ログラムã¨ä¸€ç·’ã«GNU 一般公有使用許諾ã®å†™ã—ã‚’å—ã‘å–ã£ã¦ +ã„ã‚‹ã¯ãšã§ã™ã€‚ãã†ã§ãªã„å ´åˆã¯ã€Free Software Foundation,Inc., 59 Temple +Place - Suite 330, Boston, MA 02111-1307, USA. ã¸æ‰‹ç´™ã‚’書ã„ã¦ãã ã•ã„。 + (高ã•ä¸ä¸€è‡´!) (å¹…ä¸ä¸€è‡´!) 列 (å„レイヤー) è¡Œ "固定種" ボタンã¯ã“ã‚Œã®ã‚¨ã‚¤ãƒªã‚¢ã‚¹ã§ã™ã€‚ (1) ç”»åƒã®å¹…ãŒåŒã˜ã§ (æ画対象ã«æã‹ã‚Œã‚‹ã‚‚ã®ã¨ãƒ—レビューãŒé•ã†åŽŸå› ) -(2) 変化度㌠0 ã«ãªã£ã¦ã„ã‚‹å ´åˆã«ã¯, åŒã˜ç¨®ã¯åŒã˜ç”»åƒã‚’生æˆã—ã¾ã™.å°–ã‚Šã®æ•°:%s -- å°åˆ· v%s'%s' ã¯ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™'%s' ã¯æ­£å¸¸ãª BMP ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“'%s': +(2) 変化度㌠0 ã«ãªã£ã¦ã„ã‚‹å ´åˆã«ã¯ã€åŒã˜ç¨®ã¯åŒã˜ç”»åƒã‚’生æˆã—ã¾ã™ã€‚#å°–ã‚Šã®æ•°:サブレンジ数:%d 個ã®ãƒ—ラグインインターフェース%d 個ã®ãƒ—ロシージャ%d x %d%s -- å°åˆ· v%s'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™ã€‚オプション㮠%d 行目ãŒä¸æ­£ã§ã™'%s' 㯠DICOM ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“'%s' ã¯ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ローラã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã¯ã‚ã‚Šã¾ã›ã‚“'%s' ã¯PCXファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“'%s' ã¯ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™'%s' ã¯æ­£å¸¸ãª BMP ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“'%s' ã¯æ­£å¸¸ãª GFlare ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“。'%s': +ヘッダãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“ (ftell == %ld)'%s': ç”»åƒã®ç¨®é¡žãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“'%s': ç”»åƒã®é«˜ã•ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“'%s': -ç”»åƒã®å¹…ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“(ãªã—)<å称未設定>é©å¿œçš„é¸æŠžã‚’ã‚„ã‚る閾値ã¡ã‚‡ã£ã¨å¤ã„ Adam D. Moss ã®ä½œå“ / adam@gimp.org / adam@foxbox.org / 1998-2000ã“ã®åˆ—ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ãã®ã¿å˜ä½å®šç¾©ã¯ GIMP ãŒçµ‚了ã™ã‚‹å‰ã«ä¿å­˜ã•ã‚Œã¾ã™.代替テキスト(_X): (オプション)ã“ã®ãƒ—ラグインã«ã¤ã„ã¦(_B)追加(_D)å…¨ã¦(_L)アルファ加é‡(_L)アルファ(_L):飽和度(_M):振幅(_M):角度(_N):動画化(_N)追加(_P)自動(_U)ブラシ下ã®å¹³å‡(_V)çœç•¥å½¢ã“ã®ãƒ—ラグインã«ã¤ã„ã¦Gimp-Print ã«ã¤ã„㦠動作詳細(_V)é©å¿œçš„ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ãƒ­ãƒ¼ãƒ©ãƒ‘ã‚¹ã‚’è¿½åŠ æ–°è¦ smvector を追加ã™ã‚‹æ–°è¦ãƒ™ã‚¯ãƒˆãƒ«ã‚’追加ã™ã‚‹ãƒ–ラインドを追加ã—ã¦ã„ã¾ã™...市æ¾æ¨¡æ§˜ã‚’付加中...ノイズを追加ã—ã¦ã„ã¾ã™...加算追加情報個々ã®ãƒ–ラシæç”»ã§å½±ã‚’付ã‘る色ã«ãƒ©ãƒ³ãƒ€ãƒ ãƒŽã‚¤ã‚ºã‚’付加ã™ã‚‹ãƒ•ãƒ¬ã‚¢å¼·åº¦ã‚’調節ã™ã‚‹å…‰åº¦ã—ãã„値を調節ã™ã‚‹å°–ã‚Šã®æ•°ã‚’調節ã™ã‚‹å°–ã‚Šã®ä¸é€æ˜Žåº¦ã‚’調節ã™ã‚‹å°–ã‚Šã®å¯†åº¦ã‚’調節ã™ã‚‹å°–ã‚Šã®é•·ã•ã‚’調節ã™ã‚‹è‰²ç›¸ã‚’ã©ã®ç¨‹åº¦ãƒ©ãƒ³ãƒ€ãƒ ã«å¤‰ãˆã‚‹ã‹èª¿ç¯€ã™ã‚‹å½©åº¦ã‚’ã©ã®ç¨‹åº¦ãƒ©ãƒ³ãƒ€ãƒ ã«å¤‰ãˆã‚‹ã‹èª¿ç¯€ã™ã‚‹å°åˆ·ã®ã‚·ã‚¢ãƒ³ã®ãƒãƒ©ãƒ³ã‚¹ã‚’調節ã™ã‚‹å°åˆ·ã®ãƒžã‚¼ãƒ³ã‚¿ã®ãƒãƒ©ãƒ³ã‚¹ã‚’調節ã™ã‚‹ãƒ—レビューã®æ˜Žã‚‹ã•ã‚’調整ã™ã‚‹å°åˆ·ã®é»„色ã®ãƒãƒ©ãƒ³ã‚¹ã‚’調節ã™ã‚‹å‰æ™¯/背景色を調整ã—ã¦ã„ã¾ã™...詳細設定対象領域一ã¤ãŠãã®ã‚¿ã‚¤ãƒ«(_T)エイリアンマップ 2エイリアンマップ 2: 変æ›ã—ã¦ã„ã¾ã™...å¯è¦–レイヤーã®æ•´åˆ—å…¨ã¦ã® JNGå…¨ã¦ã® PNG全黒全ç°å…¨ã¦ã®æ–‡å­—フィールドãŒåŸ‹ã‚られã¦ã„ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“.全白タイル分割を許å¯(_W)アルファアルファãƒãƒ£ãƒ³ãƒãƒ«ã‚¢ãƒ«ãƒ•ã‚¡:飽和度:直接光ãŒå½“ãŸã£ã¦ã„ãªã„å ´åˆã«è¦‹ãˆã‚‹å…ƒã®è‰²ã®é‡é‡:Adam D. Moss ã®æ˜”ã®ä½œå“ / adam@gimp.org / adam@foxbox.org / 1998-2000角度オフセット(_L):角度範囲:角度:角度方å‘グラデーション:角度方å‘大ãã•ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³:å‹•ç”» GIF オプション動画 MNG オプション動画å†ç”Ÿ: アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã‚¢ãƒ³ãƒã‚¢ã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã®å“ä½. 高ã„程綺麗ã ãŒé…ã„.æµ®ã彫りã«ã›ãšã«ãã®ã¾ã¾ç´™ã‚’é©ç”¨ã™ã‚‹é©ç”¨ã‚­ãƒ£ãƒ³ãƒã‚¹åœ°ãƒ¬ãƒ³ã‚ºåŠ¹æžœé©ç”¨(_L)...キャンパス地をé©ç”¨ã—ã¦ã„ã¾ã™...コンボリューションé©ç”¨ãƒ¬ãƒ³ã‚ºåŠ¹æžœé©ç”¨...フィルターパックをé©ç”¨ã—ã¦ã„ã¾ã™...領域 #%d 設定領域設定領域:矢å°ä¸Šã®æŒ‡å®šé€šã‚ŠASCIIアスペクト比:ジグソーパズルを組ã¿ç«‹ã¦ã‚‹...éžå¯¾ç§°:下ã«(_B)上ã«(_T)作者(_H):作者:自動コントラスト自動伸長中...HSV 自動伸長中...自動利用å¯èƒ½ãªç”»åƒ:R, G, B, X (BMP スタイル)白黒BLANK/NaN ピクセル置ãæ›ãˆèƒŒæ™¯è‰²(_K)後:背景背景色背景ã®ç¨®é¡žèƒŒæ™¯:ä¸æ­£ãªã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—ã§ã™ãƒãƒ¼ãƒ³ã‚¹ãƒ¬ã‚¤ 1ãƒãƒ¼ãƒ³ã‚¹ãƒ¬ã‚¤ 2ãƒãƒ¼ãƒ³ã‚¹ãƒ¬ã‚¤ 3基準 _URL:曲ã’る斜角端åŒç·šå½¢(_N)白黒(_A)é»’é»’:混色設定ブラインドé’é’周波数(_U):é’ä½ç›¸å¤‰ä½(_S):é’:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:ã¼ã‹ã—パラメータã¼ã‹ã—åŠå¾„ã¼ã‹ã—ã®ç¨®é¡žã¼ã‹ã—ã¦ã„ã¾ã™...ç¸ç¸ã®å¹³å‡ã‚’ã¨ã£ã¦ã„ã¾ã™...ç¸ã‚µã‚¤ã‚ºç¸å¹³å‡ä¸¡æ–¹(_H)両方下ç¸:下端下:直方体明るã•:場所を指定ã™ã‚‹ãƒãƒ³ãƒ—ãƒãƒ³ãƒ—マップãƒãƒ³ãƒ—マップã—ã¦ã„ã¾ã™...ãƒãƒ³ãƒ—マップDATAMIN/DATAMAX ã§C ソースコードCML エクスプローラー(_E)...CML_explorer: 展開ã—ã¦ã„ã¾ã™...CMYCMYKCX:CY:C_MYKカメラ(_A)表題(_A)ブラシã®ä¸­å¿ƒ(_E)中央寄ã›(_E)ã“ã“ã§é¸æŠž(_H):円(_I)æ–°è¦ç”»åƒä½œæˆ(_R)åå­—(_R)カーブ(_U)シアン(_Y)円柱(_Y)演算設定RGB æ画対象ã®ã¿æ“作ã§ãã¾ã™.æ画対象ã®ã¿ä¿å­˜ã§ãã¾ã™!æ–°è¦ç”»åƒä½œæˆãŒä½œæˆã§ãã¾ã›ã‚“クリップボードã®ãƒ‡ãƒ¼ã‚¿ã‚’å–å¾—ã§ãã¾ã›ã‚“.ä¸æ˜Žãªç”»åƒç¨®ã¯æ‰±ãˆã¾ã›ã‚“削除ã§ãã¾ã›ã‚“!! 一ã¤ä»¥ä¸Š GFlare ãŒãªãã¦ã¯ãªã‚Šã¾ã›ã‚“.セルサイズ:中央中心 _X:中心 _Y:超新星ã®ä¸­å¿ƒç”»åƒã‚’å°åˆ·ç”¨ç´™ã®æ°´å¹³æ–¹å‘ã®ä¸­å¿ƒã«ç½®ãç”»åƒã‚’用紙ã®ä¸­å¿ƒã«ç”»åƒã‚’å°åˆ·ç”¨ç´™ã®é‰›ç›´æ–¹å‘ã®ä¸­å¿ƒã«ç½®ã中央:中央寄ã›çŸ¢å°ã®å ´æ‰€ã‚’変更CX 値を変ãˆã‚‹. (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ã, å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ãŒå¤‰ã‚ã‚‹.)CY 値を変ãˆã‚‹. (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ã, å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ãŒå¤‰ã‚ã‚‹.)é¸æŠžã—㟠smvector ã®è§’度を変ãˆã‚‹é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®è§’度を変ãˆã‚‹å¼·ã•ã®æŒ‡æ•°ã‚’変更ã™ã‚‹ç¬¬ä¸€ X 座標境界 (最å°å€¤) を変ãˆã‚‹ç¬¬ä¸€ Y 座標境界 (最å°å€¤) を変ãˆã‚‹é’ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹ç·‘ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹èµ¤ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹ç¹°ã‚Šè¿”ã—回数を変ãˆã‚‹. 大ããã™ã‚‹ã¨è©³ç´°ã«è¨ˆç®—ã™ã‚‹ãŒ, 当然余計ã«æ™‚é–“ãŒã‹ã‹ã‚‹.マッピクングã™ã‚‹è‰²æ•°ã‚’変ãˆã‚‹ç¬¬äºŒ X 座標境界 (最大値) を変ãˆã‚‹ç¬¬äºŒ Y 座標境界 (最大値) を変ãˆã‚‹é¸æŠžã—㟠smvector ã®å¼·ã•ã‚’変ãˆã‚‹é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®å¼·ã•ã‚’変ãˆã‚‹ã“ã®è‰²ã«ã™ã‚‹é¸æŠžã—ãŸãƒ–ラシã®ã‚¬ãƒ³ãƒž (明るã•) を変ãˆã‚‹ãƒãƒ£ãƒ³ãƒãƒ« #%d:ãƒãƒ£ãƒ³ãƒãƒ«ã«ã‚ˆã‚‰ãªã„パラメータãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼(_X)...ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼ãƒãƒ£ãƒ³ãƒãƒ«ã®è¡¨ç¾ãƒãƒ£ãƒ³ãƒãƒ«è¡¨ã®é¡ŒãŒå¿…è¦ãªå ´åˆã«ãƒã‚§ãƒƒã‚¯ã—ã¦ãã ã•ã„.市æ¾æ¨¡æ§˜å¸‚æ¾æ¨¡æ§˜ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠GTM 㯠TD ã‚¿ã‚°ã¨ã‚»ãƒ«ã®ä¸­èº«ã®é–“ã®ç©ºç™½ã‚’å–り除ãã¾ã™. ピクセルレベルã®ä½ç½®æŒ‡å®šã«ã®ã¿å¿…è¦ã§ã—ょã†.フラクタルをダブルクリックã—ã¦é¸ã‚“ã§ä¸‹ã•ã„ファイルサイズをå°ã•ãã™ã‚‹ã«ã¯é«˜åœ§ç¸®ãƒ¬ãƒ™ãƒ«ã‚’é¸æŠžã—ã¦ãã ã•ã„円ã¾ã¨ã‚ã¦ã„ã¾ã™...消去カーブを閉ã˜ã¦å®Œäº†é–‰ã˜ã‚‹è‰²(_L):色ã®å¹³å‡ã‚’å–ã‚‹(_L)色(_L):カラー(_L)コメント(_M):複雑度(_M):TD タグ圧縮(_M)連続的ãªåŒºåŸŸ(_N)コントラスト(_N):è¡Œ(_U):åˆã‚ã›ã‚‹ã‚«ãƒ©ãƒ¼è‰²å¯†åº¦è‰²ã‚’強調ã—ã¦ã„ã¾ã™...色交æ›è‰²ã‚’交æ›ã—ã¦ã„ã¾ã™...色交æ›: 元色色交æ›: 宛色色関数カラーモード色é¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°è‰²å¤‰æ›è‰²ãƒŽã‚¤ã‚º(_N):色ã®ç¨®é¡ž(_V):色ã§åŸ‹ã‚る色ã¯ãƒ–ラシã®ä¸‹ã«ã‚るピクセルã®å¹³å‡ã‚’å–るカラー出力色をé€æ˜Žåº¦ã«ã€Œè‰²ã‚’é€æ˜Žåº¦ã«ã€è‰²é¸æŠžè‰²:カラーマップ(_M):å˜è‰²å¡—ã‚Šå˜è‰²å¡—りカスタムカラーå˜è‰²å¡—り中...カラーリングカラーマップ回転カラーカラー:æ··ãœã‚‹ã‚³ãƒžãƒ³ãƒ‰:コメントコメント:RGB ç”»åƒåˆæˆåˆæˆãƒãƒ£ãƒ³ãƒãƒ«ç”»åƒåˆæˆä¸­...åˆæˆä¸­...åˆæˆ:圧縮Prim アルゴリズムã§è¿·è·¯ã‚’å½¢æˆã—ã¦ã„ã¾ã™...並ã¹ã‚‰ã‚Œã‚‹è¿·è·¯ã‚’ Prim アルゴリズムã§å½¢æˆã—ã¦ã„ã¾ã™...コンテキストギャップ無ã—ã®é€£ç¶šçš„グラデーション連続的ãªã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³é€æ¬¡æ›´æ–°ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆ:コントロールãƒã‚¤ãƒ©ã‚¤ãƒˆã®å¼·åº¦ã‚’制御ã™ã‚‹ç”»åƒã‚’ RGB ã«å¤‰æ›ã—ã¦ã‹ã‚‰ã«ã—ã¦ãã ã•ã„!コンボリューション行列åˆæˆè¦ç´ ã‚³ãƒ”ーGFlare ã®ã‚³ãƒ”ー設定コピーオブジェクトã®ã‚³ãƒ”ーコピーパラメーターé¸æŠžã—ãŸç´™ã®ãƒ†ã‚¯ã‚¹ãƒãƒ£ã‚’背景ã«ã‚³ãƒ”ーã™ã‚‹IFS ã‚’ç”»åƒã«ã‚³ãƒ”ーã—ã¦ã„ã¾ã™ (%d/%d)...コピーã—ã¦ã„ã¾ã™...著作権表示:Cosç”»åƒ %d ã«å¯¾ã™ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¾—られã¾ã›ã‚“PNG ã®ã§ãƒ•ã‚©ãƒˆãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“ファイル '%s' を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“: %sファイル '%s' ã¸ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—: %sパイプ中ã®ãƒ–ラシãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ.ファイルãŒèª­ã‚ã¾ã›ã‚“:ファイルãŒä¿å­˜ã§ãã¾ã›ã‚“:リソースファイルãŒä¿å­˜ã§ãã¾ã›ã‚“:Coupled-Map-Lattice エクスプローラ新è¦ç”»åƒä½œæˆ(_A)作æˆã‚¬ã‚¤ãƒ‰ä½œæˆã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚¨ãƒ‡ã‚£ã‚¿ã‹ã‚‰ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—ã‚’å–å¾—ã™ã‚‹ä¸Šã§æŒ‡å®šã—ãŸã¨ãŠã‚Šã®ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—を作る (色密度/関数). çµæžœã¯ãƒ—レビュー画åƒã®é€šã‚Š.フィルタé©ç”¨æ™‚ã«æ–°è¦ç”»åƒã‚’作æˆã™ã‚‹ã¾ã£ã•ã‚‰ãªã¨ã“ã‚ã‹ã‚‰æ–°ã—ã„å˜ä½ã‚’作る.アーãƒã®ä½œæˆãƒ™ã‚¸ã‚¨æ›²ç·šã®ä½œæˆ. Shift + ボタン ã§ã‚ªãƒ–ジェクト作æˆã®çµ‚了円ã®ä½œæˆæ¥•å††ã®ä½œæˆã‚¬ã‚¤ãƒ‰ã®ä½œæˆ...ç›´ç·šã®ä½œæˆæ–°è¦ç”»åƒä½œæˆè¦å‰‡çš„ãƒãƒªã‚´ãƒ³ã®ä½œæˆèžºæ—‹ã®ä½œæˆæ˜Ÿã®ä½œæˆCreateDIBSection 失敗GIMP ã§ä½œæˆã—ã¾ã—ãŸå›žæŠ˜æ¨¡æ§˜ã‚’生æˆã—ã¦ã„ã¾ã™...切抜ã(_P)切り抜ã„ã¦ã„ã¾ã™...カーブ(_R):キュービズムã‚ãり部分レイヤーã‚ãã‚‹ä½ç½®ã‚ãã‚‹å‘ãç¾çŠ¶:ã²ã‚“曲ã’ã‚‹ã²ã‚“曲ã’ã¦ã„ã¾ã™...カーブタイプ(_T): カスタムカラー:切りå–りシアンシアン:シアン_K円柱円柱長ã•å††æŸ±åŠå¾„割る数(_I):æš—ãæš—ã:データ圧縮データフォーマット日付:ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£ä¸­...デフォルトデフォルトã®ãƒžãƒƒãƒ—ã®ç¨®é¡žãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ _URL:円/楕円領域を定義新è¦ãƒ—リンタを定義多角形領域を定義矩形領域を定義歪ã‚モードãã‚Œãžã‚Œã®ãƒ”ースã®å‚¾æ–œè§’度度éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–ã—ã¦ã„ã¾ã™...削除領域ã®å‰Šé™¤ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«å‰Šé™¤GFlare 削除端点削除オブジェクトã®å‰Šé™¤ç¾åœ¨é¸æŠžä¸­ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’削除ã™ã‚‹é¸æŠžã—ãŸãƒ•ãƒ¬ãƒ¼ãƒ ã‚’削除é¸æŠžã—㟠smvector を削除ã™ã‚‹é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã‚’削除ã™ã‚‹é¸æŠžã—ãŸãƒ—リセットを削除ã—ã¾ã™ãƒ‡ãƒ«ã‚¿é–¢æ•°æ®µéšŽåŒ–デルタ関数濃度:深度統åˆæ·±åº¦ãƒžãƒƒãƒ—:深度統åˆä¸­...滑らã‹ãªãƒ‘レットを生æˆã—ã¦ã„ã¾ã™...説明:éžæ–‘化先ãƒãƒ£ãƒ³ãƒãƒ«:é©ç”¨å¾Œã®è‰²ç¯„囲先:éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化ã—ã¦ã„ã¾ã™...åå‘ã—ãã„値:ダイアモンド回折模様拡散:数字次元:寸法寸法方å‘æ–¹å‘ベクトル指å‘性光æºæŒ‡å‘性光æºæ–¹å‘æ–¹å‘:ãšã‚‰ã—ãšã‚‰ã—ã¦ã„ã¾ã™...表示方法:ディザリングアルゴリズム:分割プレビューã™ã‚‹(_P)ã“ã‚Œã¾ã§ã®å¤‰æ›´ã‚’破棄ã—ã¦ã‚‚ã„ã„ã§ã™ã‹?å°–ã‚Šã®ç¸ã‚’ç”»åƒã«ã¤ã‘ã‚‹ã‹ã©ã†ã‹æ画対象ã®å¤§ãã•ãŒç•°ãªã£ã¦ã„ã¾ã™ç‚Žã‚’æã„ã¦ã„ã¾ã™...グリッドをæã„ã¦ã„ã¾ã™...迷路をæã„ã¦ã„ã¾ã™...æ画設定端点間ã«ç›´ç·šã‚’引ã. カーブãŒä½œã‚‰ã‚Œã¦ã„る時ã ã‘影をè½ã™èª­ã¿è¾¼ã¿ä¸­ã« EOF ãŒç¾ã‚ŒãŸæŒã¡ä¸Šã’(_L):æ‹¡å¼µ(_X)ãã‚Œãžã‚Œã®ãƒ”ースã®ç«¯ãŒä¸¸ã‚ã¦ã‚ã‚‹ãã‚Œãžã‚Œã®ãƒ”ースã®ç«¯ã¯ã¾ã£ã™ã端ã®åŠ¹æžœè¼ªéƒ­æŠ½å‡ºè¼ªéƒ­ã‚’抽出ã—ã¦ã„ã¾ã™...端を暗ã:周辺部編集領域情報を編集...炎を編集マップ情報編集...オブジェクト編集フラクタルåを編集é¸æŠžã—ãŸé ˜åŸŸæƒ…報を編集読ã¿å–り専用オブジェクトを編集ã—ã¦ã„ã¾ã™ - ä¿å­˜ã§ãã¾ã›ã‚“対象ãƒãƒ£ãƒ³ãƒãƒ«æ“作関数エンボス環境画åƒ(_V):アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã™ã‚‹(_A)ãƒãƒ³ãƒ—マップã®æœ‰åŠ¹/無効 (ç”»åƒæ·±åº¦)環境マップã®æœ‰åŠ¹/無効 (åå°„)高å“ä½ãƒ—レビューã®æœ‰åŠ¹/無効ギザギザã—ãŸç¸ã‚’滑らã‹ã«ã™ã‚‹ã‹ã©ã†ã‹ (アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°)変更ã®ãƒªã‚¢ãƒ«ã‚¿ã‚¤ãƒ ãƒ—レビューã®æœ‰åŠ¹/無効梱包方法:EndPage 失敗彫金風彫金ã—ã¦ã„ã¾ã™...æ–°ã—ã„ GFlare ã®åå‰ã‚’入力ã—ã¦ä¸‹ã•ã„レイヤー全体使用ã™ã‚‹ç’°å¢ƒç”»åƒFITS ファイルを開ãéš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸrgb ç”»åƒä¿å­˜ä¸­ã®ã‚¨ãƒ©ãƒ¼GIMP ブラシパイプファイル中ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ.レイヤーID å–得中ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã‚·ãƒ§ãƒƒãƒˆã®ç²å¾—エラーファイルオープンエラーファイル読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼å‡ºåŠ›ãƒ•ã‚¡ã‚¤ãƒ«æ›¸ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼.エラー: パラメータファイル読ã¿è¾¼ã¿å¤±æ•—エラー: ã“れ㯠CML パラメータファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“.å‡ç­‰ã«åˆ†é…エクスãƒãƒ¼ãƒˆãƒ—レビューFITS ファイル中ã«è¡¨ç¤ºå¯èƒ½ãªç”»åƒãŒã‚ã‚Šã¾ã›ã‚“FITS ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“ファイル(_I)第一色(_I):ä¹—æ•°GFlare ファイル '%s' ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—: %sGFlare ファイル '%s' ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—: %s高速整数ã¼ã‹ã™ãƒ•ã‚¡ã‚¤ãƒ«ãƒ•ã‚¡ã‚¤ãƒ« "%s" ã‚’ä¿å­˜ã—ã¾ã—ãŸ.'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™. -オプション㮠%d 行目ãŒä¸æ­£ã§ã™'%s' ã¯ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ローラã®å½¢å¼ã§ã¯ã‚ã‚Šã¾ã›ã‚“ファイルã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™.ファイルå:埋ã‚る下ã‹ã‚‰ä¸Šã¸é †ç•ªã«å·¦ã‹ã‚‰å³ã¸é †ç•ªã«å³ã‹ã‚‰å·¦ã¸é †ç•ªã«ä¸Šã‹ã‚‰ä¸‹ã¸é †ç•ªã«ãƒ‘ラメータ k ã§å¡—るフィルムフィルタフィルタパックシミュレーション動画を背景を見ã¤ã‘よã†ã¨ã—ã¦ã„ã¾ã™...輪郭を探ã—ã¦ã„ã¾ã™...XYグラデーションを探ã—ã¦ã„ã¾ã™...1ã¤ç›®ã®å®›è‰²First Gfig1ã¤ç›®ã®å…ƒè‰²ç¬¬ä¸€è‰²å›ºå®šç¨®å›ºå®šæ–¹ä½ãƒ™ã‚¯ãƒˆãƒ«ãƒžãƒƒãƒ—é¸æŠžãƒ¡ãƒ‹ãƒ¥ãƒ¼ç‚Žç‚Žã¯ RGB æ画対象ã«ã—ã‹æã‘ã¾ã›ã‚“.フレア効果å転浮動å°æ•°ã‚¹ãƒ†ãƒƒãƒ— %d...æµã‚Œã‚‹å‰æ™¯è‰²(_R)ç”»åƒã®ä¸­å¿ƒå‘¨ã‚Šã«ãƒ–ラシストロークを集中ã•ã›ã‚‹å‰æ™¯ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ãƒ‘ラメータフラクタルトレースフラクタルã®ç¨®é¡žãƒ•ãƒ©ã‚¯ã‚¿ãƒ«å:フラクタルエクスプローラグラデーションピクセル断片フレーム %dフレーム %d (%d 中)フレーム (%i)始ã‚元色紙ã‹ã‚‰æœ€åˆ:å‰:完全機能関数ã®ç¨®é¡ž:ã‚ã„ã¾ã„ãªé¸æŠžGEE-スライムGFLI 1.3 - フレームスタック読ã¿è¾¼ã¿GFLI 1.3 - フレームスタックä¿å­˜GFlareGFlare エディタGIF オプションGIF 警告GIMP 拡張機能GIMP ヘルプブラウザGIMP プラグインGIMP 表ã®é­”法GIMP ブラシファイルã¯ç ´æã—ã¦ã„るよã†ã§ã™.GIMP パターンè¼ã(_L)緑閾値(_R):ガンマ:一般一般オプション環境設定一般オプションGfigGimp-Print ãƒãƒ¼ã‚¸ãƒ§ãƒ³ Gimpressionistガラスタイルガラスタイルã«ã—ã¦ã„ã¾ã™...è¼ãæ画オプショングレー(_E)å–り込む後ã§å–り込㿠(_A)å˜ä¸€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å–り込む画é¢å…¨ä½“ã‚’å–り込む勾é…/グラデーショングラデーションフレアをæã„ã¦ã„ã¾ã™...グラデーションマップã—ã¦ã„ã¾ã™...グラデーションã§åŸ‹ã‚るグラデーションマップé¸æŠžãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ç¾åœ¨ã®è¨­å®šã®ã‚°ãƒ©ãƒ•ã‚°ãƒ¬ãƒ¼ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç·‘緑周波数(_S):ç·‘ä½ç›¸å¤‰ä½(_A):ç·‘:グレーグリッドグリッドã®é–“隔グリッドã®ã‚ªãƒ•ã‚»ãƒƒãƒˆã‚°ãƒªãƒƒãƒ‰è¨­å®šã‚°ãƒªãƒƒãƒ‰è¨­å®š...グリッドã®è¡¨ç¤ºæ–¹æ³•ã¨ç¨®é¡žã‚°ãƒªãƒƒãƒ‰ã®è‰²:グリッド設定...グリッド間隔グリッドã®ç¨®é¡ž:ガイドガイド...ギロãƒãƒ³ã§åˆ‡æ–­ã—ã¦ã„ã¾ã™...HSVHTML ページオプションãƒã‚¤ãƒ©ã‚¤ãƒˆ(_I):色相(_U):色相(_U):六角形(_X)å°åˆ·ã—ãŸã„ç´™ã®ç¸¦ã®ã‚µã‚¤ã‚ºé«˜ã•:ヘルプ ID '%s' ãŒåˆ†ã‹ã‚Šã¾ã›ã‚“オブジェクトã¯ã©ã“ã«è¡Œã£ã¦ã—ã¾ã£ãŸã®ã§ã—ょã†?値を大ããã™ã‚‹ã¨åŠ¹æžœãŒå¤§ãããªã‚‹å¤§ããªå€¤ã«ã™ã‚‹ã¨ãƒã‚¤ãƒ©ã‚¤ãƒˆãŒãã£ãã‚Šã™ã‚‹å¤§ããªå€¤ã«ã™ã‚‹ã¨ç‰©ä½“ãŒã‚ˆã‚Šå…‰ã‚’åå°„ã™ã‚‹ (明るã見ãˆã‚‹)値を大ããã™ã‚‹ã¨å½±éŸ¿ã‚’å—ã‘る領域ãŒå°ã•ããªã‚‹ãƒã‚¤ãƒ©ã‚¤ãƒˆ:ãƒã‚¤ãƒ©ã‚¤ãƒˆ:水平方å‘基準(_R):水平水平色水平蹄鉄ホットホットスãƒãƒƒãƒˆ _X:ホット...1 インãƒã«ç›¸å½“ã™ã‚‹å˜ä½ã¯ã©ã®ãらã„ã‹.å½±ã§æš—ãã™ã‚‹é‡ãƒ–ラシストロークã®ç«¯ã‚’ "æš—ã" ã™ã‚‹é‡è½ã—ãŸå½±ã‚’ã¼ã‹ã™é‡è‰²ç›¸è‰²ç›¸å›žè»¢:色相種類:色相周波数(_F):色相ä½ç›¸å¤‰ä½(_P):色相:IDç¹°ã‚Šè¿”ã—:対話型歪ã‚強度(_N)インタラクティブ(_N)å転画åƒ(_N)ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠GTM ã¯å˜ãªã‚‹è¡¨ã®éƒ¨åˆ†ã® HTML ã ã‘ã§ã¯ãªã ã‚„ ç­‰ã®ã‚¿ã‚°ã‚‚å«ã‚€å®Œå…¨ãª HTML 文書を出力ã—ã¾ã™.ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠RWSPAN 㨠COLSPAN を用ã„ã¦å‡è³ªãªè‰²ã®çŸ©å½¢éƒ¨åˆ†ã‚’一ã¤ã®å¤§ããªã‚»ãƒ«ã«ã—ã¾ã™.ãƒã‚§ãƒƒã‚¯ã—ã¦ã‚ã‚‹å ´åˆã«ã¯å³å´ã‹ã‚‰, ãã†ã§ãªã‘ã‚Œã°å·¦å´ã‹ã‚‰ãƒžãƒƒãƒ”ングã—ã¾ã™.ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯æ¥µåº§æ¨™ã‹ã‚‰ç›´äº¤åº§æ¨™ã¸ã®å¤‰æ›, ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯ç›´äº¤åº§æ¨™ã‹ã‚‰æ¥µåº§æ¨™ã¸å¤‰æ›ã•ã‚Œã¾ã™.ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯ç”»åƒã®ä¸‹å´ã‚’中心ã«, 上å´ã‚’外ã«å‘ã‘ã¦ãƒžãƒƒãƒ”ングã—ã¾ã™. ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯é€†ã«ãªã‚Šã¾ã™.ã“ã®ã‚ªãƒ—ションを有効ã«ã™ã‚‹ã¨, 高ã„色値ã¨ä½Žã„色値ãŒé€†è»¢ã•ã‚Œã‚‹.ã“ã®ã‚ªãƒ—ションを有効ã«ã™ã‚‹ã¨ãƒ—レビューã¯è‡ªå‹•çš„ã«å†æç”»ã•ã‚Œã¾ã™å¹»å¹»ã‚’æã„ã¦ã„ã¾ã™...ç”»åƒ(_A)ç”»åƒç”»åƒ / 出力設定画åƒã‚’構æˆã—ã¦ã„ã¾ã™ç”»åƒé¸æŠžç”»åƒã‚µã‚¤ã‚ºç”»åƒã®ç¨®é¡ž(_T):ç”»åƒå¯¸æ³•: %d x %dç”»åƒã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç”»åƒã§ã¯ã‚ã‚Šã¾ã›ã‚“ (bpp=%d)ç”»åƒå:ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸ.ç”»åƒã®ç¨®é¡ž:表é¢ã«è¢«ã›ã‚‹ç”»åƒç”»åƒã®å¤§ãã•ãŒç•°ãªã£ã¦ã„ã¾ã™å転(_V)インãƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦é£¾ã‚Šã‚‚å«ã‚るインデックスインデックスパレット型åˆæœŸå€¤:入力レベル: 端点挿入整数強度強度レベル光æºã«ç…§ã‚‰ã•ã‚ŒãŸå ´åˆã®å…ƒã®è‰²ã®å¼·åº¦ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹GIMP 内部プロシージャ交点交点色ブラシファイル '%s' ã«ä¸æ­£ãª UTF-8 文字列å転紙テクスãƒãƒ£ã‚’å転ã™ã‚‹æ­£ä¸‰è§’å½¢ (gimpressionist-path "%s") +ç”»åƒã®å¹…ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“(ãªã—)1 個ã®ãƒ—ラグインインターフェース1 個ã®ãƒ—ロシージャ1 bpp〠1 ビットアルファ〠2 スロットパレット32 bpp〠8 ビットアルファã€ãƒ‘レットãªã—4 bpp〠1 ビットアルファ〠16 スロットパレット8 bpp〠1 ビットアルファ〠256 スロットパレット<å称未設定>é©å¿œçš„é¸æŠžã‚’ã‚„ã‚る閾値ã¡ã‚‡ã£ã¨å¤ã„ Adam D. Moss ã®ä½œå“ / adam@gimp.org / adam@foxbox.org / 1998-2000ã“ã®åˆ—ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ãã®ã¿å˜ä½å®šç¾©ã¯ GIMP ãŒçµ‚了ã™ã‚‹å‰ã«ä¿å­˜ã•ã‚Œã¾ã™ã€‚代替テキスト代替テキスト(_X): (オプション)アスキーアートã“ã®ãƒ—ラグインã«ã¤ã„ã¦(_B)é©å¿œåž‹ã‚¹ãƒ¼ãƒ‘ーサンプリング(_D)追加(_D)ç¸ä»˜åŠ (_D)詳細(_D)å…¨ã¦(_L)å…¨ã¦ã®ã‚¿ã‚¤ãƒ«(_L)アルファ加é‡(_L)アルファ(_L):飽和度(_M):é‡(_M):振幅(_M):角度(_N):動画化(_N)追加(_P)プレビュー自動更新(_U)自動(_U)ブラシ下ã®å¹³å‡(_V)çœç•¥å½¢ã“ã®ãƒ—ラグインã«ã¤ã„ã¦Gimp-Print ã«ã¤ã„㦠動作詳細(_V)é©å¿œçš„é©å¿œåž‹ã‚¹ãƒ¼ãƒ‘ーサンプリング(_U)ã‚¬ã‚¤ãƒ‰ã‚’è¿½åŠ ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ãƒ­ãƒ¼ãƒ©ãƒ‘ã‚¹ã‚’è¿½åŠ æ–°è¦ smvector を追加ã™ã‚‹æ–°è¦ãƒ™ã‚¯ãƒˆãƒ«ã‚’追加ã™ã‚‹ãƒ–ラインドを追加ã—ã¦ã„ã¾ã™...市æ¾æ¨¡æ§˜ã‚’付加中...ノイズを追加ã—ã¦ã„ã¾ã™...加算追加情報個々ã®ãƒ–ラシæç”»ã§å½±ã‚’付ã‘る色ã«ãƒ©ãƒ³ãƒ€ãƒ ãƒŽã‚¤ã‚ºã‚’付加ã™ã‚‹å‰æ™¯-背景調整(_F)カラーãƒãƒ©ãƒ³ã‚¹ã€æ˜Žã‚‹ã•ã€ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã€æ¿ƒåº¦ã€ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ ã‚’調整ã—ã¾ã™å‡ºåŠ›ã®èª¿æ•´...フレア強度を調節ã™ã‚‹å…‰åº¦ã—ãã„値を調節ã™ã‚‹å°–ã‚Šã®æ•°ã‚’調節ã™ã‚‹å°–ã‚Šã®ä¸é€æ˜Žåº¦ã‚’調節ã™ã‚‹å°–ã‚Šã®è§’度を調節ã™ã‚‹ (-1 を指定ã™ã‚‹ã¨ãƒ©ãƒ³ãƒ€ãƒ ã«è§’度ãŒè¨­å®šã•ã‚Œã¾ã™)å°–ã‚Šã®å¯†åº¦ã‚’調節ã™ã‚‹å°–ã‚Šã®é•·ã•ã‚’調節ã™ã‚‹è‰²ç›¸ã‚’ã©ã®ç¨‹åº¦ãƒ©ãƒ³ãƒ€ãƒ ã«å¤‰ãˆã‚‹ã‹èª¿ç¯€ã™ã‚‹å½©åº¦ã‚’ã©ã®ç¨‹åº¦ãƒ©ãƒ³ãƒ€ãƒ ã«å¤‰ãˆã‚‹ã‹èª¿ç¯€ã™ã‚‹å°åˆ·ã®ã‚·ã‚¢ãƒ³ã®ãƒãƒ©ãƒ³ã‚¹ã‚’調節ã™ã‚‹å°åˆ·ã®æ¿ƒåº¦ (インクé‡) を調整ã—ã¾ã™ã€‚インクãŒè£ã†ã¤ã‚Šã—ãŸã‚ŠæŸ“ã¿ãŸã‚Šã™ã‚‹å ´åˆã¯ã€æ¿ƒåº¦ã‚’減らã—ã¦ãã ã•ã„。黒ãŒãƒ™ã‚¿ã«ãªã‚‰ãªã„å ´åˆã¯æ¿ƒåº¦ã‚’増やã—ã¦ãã ã•ã„。å°åˆ·ã®ã‚¬ãƒ³ãƒžã‚’調整ã—ã¾ã™ã€‚値を大ããã™ã‚‹ã¨å…¨ä½“çš„ã«æ˜Žã‚‹ã„å°åˆ·ã«ãªã‚Šã€å°ã•ãã™ã‚‹ã¨å…¨ä½“çš„ã«æš—ã„å°åˆ·ã«ãªã‚Šã¾ã™ã€‚明るã•ã®èª¿æ•´ã¨ã¯ç•°ãªã‚Šã€ç™½ã¨é»’ã¯å¤‰ã‚ã‚Šã¾ã›ã‚“。å°åˆ·ã®ãƒžã‚¼ãƒ³ã‚¿ã®ãƒãƒ©ãƒ³ã‚¹ã‚’調節ã™ã‚‹ãƒ—レビューã®æ˜Žã‚‹ã•ã‚’調整ã™ã‚‹å°åˆ·ã®å½©åº¦ (カラーãƒãƒ©ãƒ³ã‚¹) を調整ã—ã¾ã™ +カラーãŠã‚ˆã³é»’インクを使ã„グレースケールã§å‡ºåŠ›ã™ã‚‹ã«ã¯ã€å½©åº¦ã‚’ゼロã«ã—ã¾ã™å°åˆ·ã®é»„色ã®ãƒãƒ©ãƒ³ã‚¹ã‚’調節ã™ã‚‹å‰æ™¯/背景色を調整ã—ã¦ã„ã¾ã™...詳細設定詳細設定対象領域アグレッシブ RLE +(SGI ã§ã¯ã‚µãƒãƒ¼ãƒˆã•ã‚Œã¦ã„ãªã„)一ã¤ãŠãã®ã‚¿ã‚¤ãƒ«(_T)一ã¤ãŠãã®ã‚¿ã‚¤ãƒ«(_T)Alias|Wavefront PIX ç”»åƒã‚¨ã‚¤ãƒªã‚¢ãƒ³ãƒžãƒƒãƒ— _2...エイリアンマップ 2エイリアンマップ 2: 変æ›ã—ã¦ã„ã¾ã™...å¯è¦–レイヤーã®æ•´åˆ—å¯è¦–レイヤーã®æ•´åˆ—(_V)...å…¨ã¦ã® JNGå…¨ã¦ã® PNGå…¨ã¦ãƒ•ã‚£ãƒ«ãƒ é«˜ã«å¯¾ã™ã‚‹å€¤ã§ã™å…¨é»’å…¨ç°å…¨ã¦ã®æ–‡å­—フィールドãŒåŸ‹ã‚られã¦ã„ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。全白タイル分割を許å¯(_W)アルファアルファãƒãƒ£ãƒ³ãƒãƒ«ã‚¢ãƒ«ãƒ•ã‚¡:飽和度:直接光ãŒå½“ãŸã£ã¦ã„ãªã„å ´åˆã«è¦‹ãˆã‚‹å…ƒã®è‰²ã®é‡é‡:Adam D. Moss ã®æ˜”ã®ä½œå“ / adam@gimp.org / adam@foxbox.org / 1998-2000角度オフセット(_L):角度範囲:角度:角度方å‘グラデーション:角度方å‘大ãã•ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³:å‹•ç”» GIF オプション動画 MNG オプション動画å†ç”Ÿ: アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã‚¢ãƒ³ãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã®å“ä½ã€‚高ã„程綺麗ã ãŒé…ã„。浮ã彫りã«ã›ãšã«ãã®ã¾ã¾ç´™ã‚’é©ç”¨ã™ã‚‹é©ç”¨ã‚­ãƒ£ãƒ³ãƒã‚¹åœ°ãƒ¬ãƒ³ã‚ºåŠ¹æžœé©ç”¨(_L)...最終画åƒã«ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’é©ç”¨ã™ã‚‹ã‚­ãƒ£ãƒ³ãƒ‘ス地をé©ç”¨ã—ã¦ã„ã¾ã™...コンボリューションé©ç”¨ãƒ¬ãƒ³ã‚ºåŠ¹æžœé©ç”¨..."%s" を一覧ã¨ãƒ‡ã‚£ã‚¹ã‚¯ã‹ã‚‰å‰Šé™¤ã—ã¦ã‚‚よã„ã§ã™ã‹?領域 #%d 設定領域設定領域一覧領域:矢å°ä¸Šã®æŒ‡å®šé€šã‚ŠASCII縦横比:ジグソーパズルを組ã¿ç«‹ã¦ã‚‹...éžå¯¾ç§°:下ã«(_B)上ã«(_T)作者(_H):作者:自動コントラスト自動伸長中...HSV 自動伸長中...AutoDesk FLIC 動画自動自動プレビュー(_V)利用å¯èƒ½ãªç”»åƒ:R, G, B, X (BMP スタイル)白黒BLANK/NaN ピクセル置ãæ›ãˆé»’弱゠(%)(_L):é’閾値(_L):背景色(_K)後:背景背景 (%d%s)背景色背景ã®ç¨®é¡žèƒŒæ™¯:ä¸æ­£ãªã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—ã§ã™ãƒãƒ¼ãƒ³ã‚¹ãƒ¬ã‚¤ 1ãƒãƒ¼ãƒ³ã‚¹ãƒ¬ã‚¤ 2ãƒãƒ¼ãƒ³ã‚¹ãƒ¬ã‚¤ 3基準 _URL:主オプション曲ã’るベタ塗り領域ã‹ã‚‰ãªã‚‹ç”»åƒã«æœ€é©åŒ–斜角端åŒç·šå½¢(_N)白黒(_A)黒白黒黒:混色設定ブラインドé’é’周波数(_U):é’ä½ç›¸å¤‰ä½(_S):é’:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:ã¼ã‹ã—ã®ä¸­å¿ƒã¼ã‹ã—ã®ç¨®é¡žã¼ã‹ã—パラメータã¼ã‹ã—åŠå¾„ã¼ã‹ã—ã®ç¨®é¡žã¼ã‹ã—ã¦ã„ã¾ã™...ç¸ç¸ã®å¹³å‡ã‚’ã¨ã£ã¦ã„ã¾ã™...ç¸ã‚µã‚¤ã‚ºç¸å¹³å‡ä¸¡æ–¹(_H)両方下ç¸:下端å³ä¸‹(_R)下:直方体明るã•:場所を指定ã™ã‚‹ãƒãƒ³ãƒ—ãƒãƒ³ãƒ—マップãƒãƒ³ãƒ—マップã—ã¦ã„ã¾ã™...ãƒãƒ³ãƒ—マップ画åƒ(_A):ãƒãƒ³ãƒ—マップDATAMIN/DATAMAX ã§C ソースコードC ソースコードヘッダCML エクスプローラ: ファイルを上書ãã—ã¾ã™ã‹?CML エクスプローラ(_E)...CML_explorer: 展開ã—ã¦ã„ã¾ã™...CMYCMYKCX:CY:C_MYKカメラ(_A)表題(_A)セルã®ä¸­èº«(_E):セルサイズ(_E):ブラシã®ä¸­å¿ƒ(_E)中央寄ã›(_E)ã“ã“ã§é¸æŠž(_H):円(_I)åˆæˆ(_O)...æ–°è¦ç”»åƒä½œæˆ(_R)åå­—(_R)カーブ(_U)シアン(_Y)円柱(_Y)ã¾ã‚“ãŒ(_R)...演算設定RGB æ画対象ã®ã¿æ“作ã§ãã¾ã™ã€‚æ画対象ã®ã¿ä¿å­˜ã§ãã¾ã™!ã²ã‚“曲ã’ã‚‹ã“ã¨ãŒã§ãã‚‹ã®ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã ã‘ã§ã™ (ãƒãƒ£ãƒ³ãƒãƒ«ã‚„マスクã«å¯¾ã—ã¦å‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸ)。新è¦ç”»åƒä½œæˆãŒä½œæˆã§ãã¾ã›ã‚“クリップボードã®ãƒ‡ãƒ¼ã‚¿ã‚’å–å¾—ã§ãã¾ã›ã‚“。ä¸æ˜Žãªç”»åƒç¨®ã¯æ‰±ãˆã¾ã›ã‚“色情報ãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“削除ã§ãã¾ã›ã‚“!! 一ã¤ä»¥ä¸Š GFlare ãŒãªãã¦ã¯ãªã‚Šã¾ã›ã‚“。空ã®é¸æŠžé ˜åŸŸã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。グレースケールやインデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。インデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。マスク付ãã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。ä¸æ˜Žãªç”»åƒç¨®ã¯æ‰±ãˆã¾ã›ã‚“。'%s' ã‹ã‚‰æ‹¡å¼µãŒèª­ã‚ã¾ã›ã‚“'%s' ã‹ã‚‰ãƒ•ãƒƒã‚¿ãŒèª­ã‚ã¾ã›ã‚“RGB ç”»åƒã¯ GIF å½¢å¼ã§ä¿å­˜ã§ãã¾ã›ã‚“。インデックス形å¼ã‚‚ã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã«å¤‰æ›ã—ã¦ãã ã•ã„。アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã¯ä¿å­˜ã§ãã¾ã›ã‚“。アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã¯ä¿å­˜ã§ãã¾ã›ã‚“。ã¾ã‚“ãŒã‚»ãƒ«ã‚µã‚¤ã‚º:セル-è©°ã‚物(_P):セル間隔(_S):中央中心 _X:中心 _Y:フレア効果ã®ä¸­å¿ƒè¶…新星ã®ä¸­å¿ƒç”»åƒã‚’å°åˆ·ç”¨ç´™ã®æ°´å¹³æ–¹å‘ã®ä¸­å¿ƒã«ç½®ãç”»åƒã‚’用紙ã®ä¸­å¿ƒã«ç”»åƒã‚’å°åˆ·ç”¨ç´™ã®é‰›ç›´æ–¹å‘ã®ä¸­å¿ƒã«ç½®ã中央:中央寄ã›ãƒãƒ£ãƒ³ãƒãƒ«æ„Ÿåº¦çŸ¢å°ã®å ´æ‰€ã‚’変更CX 値を変ãˆã‚‹ (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ãã€å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ãŒå¤‰ã‚ã‚‹)。CY 値を変ãˆã‚‹ (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ãã€å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”ãŒå¤‰ã‚ã‚‹)。é¸æŠžã—㟠smvector ã®è§’度を変ãˆã‚‹é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®è§’度を変ãˆã‚‹å¼·ã•ã®æŒ‡æ•°ã‚’変更ã™ã‚‹ç¬¬ä¸€ X 座標境界 (最å°å€¤) を変ãˆã‚‹ç¬¬ä¸€ Y 座標境界 (最å°å€¤) を変ãˆã‚‹é’ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹ç·‘ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹èµ¤ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹ç¹°ã‚Šè¿”ã—回数を変ãˆã‚‹ã€‚大ããã™ã‚‹ã¨è©³ç´°ã«è¨ˆç®—ã™ã‚‹ãŒã€å½“然余計ã«æ™‚é–“ãŒã‹ã‹ã‚‹ã€‚マッピングã™ã‚‹è‰²æ•°ã‚’変ãˆã‚‹ç¬¬äºŒ X 座標境界 (最大値) を変ãˆã‚‹ç¬¬äºŒ Y 座標境界 (最大値) を変ãˆã‚‹é¸æŠžã—㟠smvector ã®å¼·ã•ã‚’変ãˆã‚‹é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®å¼·ã•ã‚’変ãˆã‚‹ã“ã®è‰²ã«ã™ã‚‹é¸æŠžã—ãŸãƒ–ラシã®ã‚¬ãƒ³ãƒž (明るã•) を変ãˆã‚‹ãƒãƒ£ãƒ³ãƒãƒ« #%d:ãƒãƒ£ãƒ³ãƒãƒ«ã«ã‚ˆã‚‰ãªã„パラメータãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼(_X)...ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼ãƒ•ã‚¡ã‚¤ãƒ«æ“作警告ãƒãƒ£ãƒ³ãƒãƒ«ã®è¡¨ç¾ãƒãƒ£ãƒ³ãƒãƒ«è¡¨ã®é¡ŒãŒå¿…è¦ãªå ´åˆã«ãƒã‚§ãƒƒã‚¯ã—ã¦ãã ã•ã„。市æ¾æ¨¡æ§˜å¸‚æ¾æ¨¡æ§˜ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠GTM 㯠TD ã‚¿ã‚°ã¨ã‚»ãƒ«ã®ä¸­èº«ã®é–“ã®ç©ºç™½ã‚’å–り除ãã¾ã™ã€‚ピクセルレベルã®ä½ç½®æŒ‡å®šã«ã®ã¿å¿…è¦ã§ã—ょã†ã€‚フラクタルをダブルクリックã—ã¦é¸ã‚“ã§ä¸‹ã•ã„PPD ファイルé¸æŠžãƒ•ã‚¡ã‚¤ãƒ«ã‚µã‚¤ã‚ºã‚’å°ã•ãã™ã‚‹ã«ã¯é«˜åœ§ç¸®ãƒ¬ãƒ™ãƒ«ã‚’é¸æŠžã—ã¦ãã ã•ã„ãŠä½¿ã„ã®ãƒ—リンタ用㮠PPD ファイルをé¸æŠžã—ã¦ãã ã•ã„使用ã™ã‚‹ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ ã‚’é¸æŠžã—ã¾ã™ã€‚ +Adaptive Hybrid ã¯é€šå¸¸ã€å…¨èˆ¬çš„ã«æœ€è‰¯ã®å“質ã¨ãªã‚Šã¾ã™ã€‚ +Ordered ã¯é€Ÿãã€ã»ã¨ã‚“ã©ã®å†™çœŸã¯è‰¯å“質ã¨ãªã‚Šã¾ã™ã€‚ +Fast ãŠã‚ˆã³ Very Fast ã¯ã‹ãªã‚Šé€Ÿãã€ãƒ†ã‚­ã‚¹ãƒˆã‚„ç·šç”»ã«å‘ã„ã¦ã„ã¾ã™ã€‚ +Hybrid Floyd-Steinberg ã¯ã€é€šå¸¸ã¯ä½Žå“質ã®å‡ºåŠ›ã¨ãªã‚Šã¾ã™ã€‚プリンタã®æ©Ÿç¨®ã€ PPD ファイルã€ãŠã‚ˆã³ã€ã“ã®ãƒ—リンタã§ã®å°åˆ·ã‚³ãƒžãƒ³ãƒ‰ã‚’é¸ã‚“ã§ãã ã•ã„。円%% ã§è¡¨ã—ãŸå††ã®ä¸¸ã•(_D):ã¾ã¨ã‚ã¦ã„ã¾ã™...消去é€æ˜Žã‚¯ãƒªã‚¢ã‚«ãƒ¼ãƒ–ã‚’é–‰ã˜ã¦å®Œäº†é–‰ã˜ã‚‹è‰²(_L):色ã®å¹³å‡ã‚’å–ã‚‹(_L)色(_L):カラー(_L)コメント(_M):æš—ããªã‚‰ãªã„様ã«è£œå„Ÿã™ã‚‹(_M)複雑度(_M):TD タグ圧縮(_M)圧縮レベル(_M):連続的ãªåŒºåŸŸ(_N)コントラスト(_N):相関ノイズ(_R)è¡Œ(_U):åˆã‚ã›ã‚‹ã‚«ãƒ©ãƒ¼è‰²å¯†åº¦è‰²ã‚’強調ã—ã¦ã„ã¾ã™...色交æ›è‰²ã‚’交æ›ã—ã¦ã„ã¾ã™...色交æ›: 元色色交æ›: 宛色色関数カラーモード色範囲マッピング(_M)...色é¸æŠžãƒ€ã‚¤ã‚¢ãƒ­ã‚°è‰²å¤‰æ›è‰²ãƒŽã‚¤ã‚º(_N):色ã®ç¨®é¡ž(_V):色ã§å¡—ã‚Šã¤ã¶ã™è‰²ã¯ãƒ–ラシã®ä¸‹ã«ã‚るピクセルã®å¹³å‡ã‚’å–るカラー出力色をé€æ˜Žåº¦ã«ã€Œè‰²ã‚’é€æ˜Žåº¦ã«ã€è‰²é¸æŠžè‰²ã‚’é€æ˜Žåº¦ã«(_A)...色:カラーマップ(_M):色立体分æž(_N)...色立体分æžè‰²ç«‹ä½“を分æžã—ã¦ã„ã¾ã™...å˜è‰²å¡—ã‚Šå˜è‰²å¡—りカスタムカラーå˜è‰²å¡—り中...カラーリングカラーマップ回転カラーマップ回転(_R)...カラーカラー:æ··ãœã‚‹ã‚³ãƒ¡ãƒ³ãƒˆ(_E):コマンド:コメントコメント:RGB ç”»åƒåˆæˆåˆæˆãƒãƒ£ãƒ³ãƒãƒ«ç”»åƒåˆæˆä¸­...åˆæˆä¸­...åˆæˆ:圧縮時ã®ã‚µã‚¤ã‚º: %s圧縮圧縮率 (概算): %d 対 1圧縮形å¼ç¸¦æ¨ªæ¯”指定Prim アルゴリズムã§è¿·è·¯ã‚’å½¢æˆã—ã¦ã„ã¾ã™...並ã¹ã‚‰ã‚Œã‚‹è¿·è·¯ã‚’ Prim アルゴリズムã§å½¢æˆã—ã¦ã„ã¾ã™...コンテキストギャップ無ã—ã®é€£ç¶šçš„グラデーション連続的ãªã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³é€æ¬¡æ›´æ–°è¼ªéƒ­ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆ:コントロールãƒã‚¤ãƒ©ã‚¤ãƒˆã®å¼·åº¦ã‚’制御ã™ã‚‹ã‚³ãƒ³ãƒœãƒªãƒ¥ãƒ¼ã‚·ãƒ§ãƒ³è¡Œåˆ—コンボリューション行列ã¯3ピクセルよりå°ã•ãªãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¤ã„ã¦ã¯é©ç”¨ã§ãã¾ã›ã‚“。åˆæˆè¦ç´ ã‚³ãƒ”ーGFlare ã®ã‚³ãƒ”ー設定コピーオブジェクトã®ã‚³ãƒ”ーコピーパラメーターã“ã®ã‚«ãƒ¼ãƒ–ã‚’ã‚‚ã†ä¸€æ–¹ã®ç«¯ã«ã‚³ãƒ”ーã™ã‚‹é¸æŠžã—ãŸç´™ã®ãƒ†ã‚¯ã‚¹ãƒãƒ£ã‚’背景ã«ã‚³ãƒ”ーã™ã‚‹ã‚¯ãƒªãƒƒãƒ—ボードã¸ã‚³ãƒ”ーIFS ã‚’ç”»åƒã«ã‚³ãƒ”ーã—ã¦ã„ã¾ã™ (%d/%d)...コピーã—ã¦ã„ã¾ã™...Copyright(c) 1999-2004 by Maurits Rijk著作権表示:Cos作業ディレクトリ %s ãŒä½œã‚Œã¾ã›ã‚“: %s設定ã•ã‚ŒãŸ web ブラウザを実行ã§ãã¾ã›ã‚“: +%sç”»åƒ %d ã«å¯¾ã™ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¾—られã¾ã›ã‚“"%s" を解釈ã§ãã¾ã›ã‚“PNG ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“SUN-raster ファイル形å¼ã§ '%s' ãŒé–‹ã‘ã¾ã›ã‚“'%s' ã‚’æ画用ã«é–‹ã‘ã¾ã›ã‚“読ã¿è¾¼ã‚€ãƒ•ã‚¡ã‚¤ãƒ« '%s' ãŒé–‹ã‘ã¾ã›ã‚“: %s'%s' を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“。ファイル '%s' を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“: %s設定ã•ã‚ŒãŸ web ブラウザコマンドを解釈ã§ãã¾ã›ã‚“: +%s'%s' ã‹ã‚‰ XWD ヘッダãŒèª­ã‚ã¾ã›ã‚“'%s' ã‹ã‚‰è‰²æƒ…å ±ãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“'%s' ã‹ã‚‰ãƒ˜ãƒƒãƒ€ãŒèª­ã‚ã¾ã›ã‚“ファイル '%s' ã¸ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—: %sパイプ中ã®ãƒ–ラシãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸã€‚é€æ˜Žåº¦ã‚’劣化ã•ã›ãšã«ä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ä¸é€æ˜Žã§ä¿å­˜ã—ã¾ã™ã€‚ファイルãŒèª­ã‚ã¾ã›ã‚“:ファイルãŒä¿å­˜ã§ãã¾ã›ã‚“:リソースファイルãŒä¿å­˜ã§ãã¾ã›ã‚“:ã“れ以上å˜ç´”ã«ã¯æ¸›è‰²ã§ãã¾ã›ã‚“。ä¸é€æ˜Žã¨ã—ã¦ä¿å­˜ã—ã¾ã™ã€‚Coupled-Map-Lattice エクスプローラ新è¦ç”»åƒä½œæˆ(_A)作æˆã‚¬ã‚¤ãƒ‰ä½œæˆæ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ä½œæˆ(_N)ヒストグラム作æˆ(_H)グラデーションエディタã‹ã‚‰ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—ã‚’å–å¾—ã™ã‚‹ä¸Šã§æŒ‡å®šã—ãŸã¨ãŠã‚Šã®ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—を作る (色密度/関数)。çµæžœã¯ãƒ—レビュー画åƒã®é€šã‚Šã€‚フィルタé©ç”¨æ™‚ã«æ–°è¦ç”»åƒã‚’作æˆã™ã‚‹ã¾ã£ã•ã‚‰ãªã¨ã“ã‚ã‹ã‚‰æ–°ã—ã„å˜ä½ã‚’作る。ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’å…ƒã«ã—ã¦æ–°ã—ã„å˜ä½ã‚’作る。アーãƒã®ä½œæˆãƒ™ã‚¸ã‚¨æ›²ç·šã®ä½œæˆãƒ™ã‚¸ã‚¨æ›²ç·šã®ä½œæˆã€‚Shift + ボタン ã§ã‚ªãƒ–ジェクト作æˆã®çµ‚了円ã®ä½œæˆæ¥•å††ã®ä½œæˆã‚¬ã‚¤ãƒ‰ã®ä½œæˆ...ç›´ç·šã®ä½œæˆæ–°è¦ç”»åƒä½œæˆè¦å‰‡çš„ãƒãƒªã‚´ãƒ³ã®ä½œæˆèžºæ—‹ã®ä½œæˆæ˜Ÿã®ä½œæˆCreateDIBSection 失敗GIMP ã§ä½œæˆã—ã¾ã—ãŸå›žæŠ˜æ¨¡æ§˜ã‚’生æˆã—ã¦ã„ã¾ã™...切抜ã(_P)切り抜ã„ã¦ã„ã¾ã™...カーブ(_R):キュービズムキュービズム変æ›ã—ã¦ã„ã¾ã™...ç´¯ç©ãƒ¬ã‚¤ãƒ¤ãƒ¼ (çµåˆ)ã‚ãり部分レイヤーã‚ãã‚‹ä½ç½®ã‚ãã‚‹å‘ãç¾åœ¨ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ç¾åœ¨ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ (逆å‘ã)ç¾çŠ¶:ã²ã‚“曲ã’ã‚‹ã²ã‚“曲ã’ã¦ã„ã¾ã™...カーブタイプ曲ã’æ“作ã™ã‚‹ç«¯ã‚«ã‚¹ã‚¿ãƒ ã‚«ãƒ©ãƒ¼:ä»»æ„ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³åˆ‡ã‚Šå–りシアンシアン:シアン_K円柱円柱長ã•å††æŸ±åŠå¾„DCT 変æ›æ–¹æ³•:DICOM ç”»åƒæ­ªã‚ã‚‹é‡(_E):割る数(_I):æš—ãæš—ã:データ圧縮データフォーマットデータフォーマット日付:ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«åˆ†è§£ã™ã‚‹(_L)ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£ä¸­...デフォルトデフォルトã®ãƒžãƒƒãƒ—ã®ç¨®é¡žãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ _URL:デフォルトã®ãƒãƒ£ãƒ³ã‚¯åž‹:デフォルトã®ãƒ•ãƒ¬ãƒ¼ãƒ é…延:デフォルトã®ãƒ•ãƒ¬ãƒ¼ãƒ é…ç½®:円/楕円領域を定義新è¦ãƒ—リンタを定義多角形領域を定義矩形領域を定義新ã—ã„è«–ç†ãƒ—リンタを定義ã—ã¾ã™ã€‚一連ã®è¨­å®šå€¤ã«å¯¾ã—ã¦åå‰ã‚’ã¤ã‘ã¦ãŠãã€å¾Œã§ä½¿ã†ã“ã¨ãŒã§ãã¾ã™ã€‚æ­ªã‚モードãã‚Œãžã‚Œã®ãƒ”ースã®å‚¾æ–œè§’度度éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–ã—ã¦ã„ã¾ã™...凶悪ãªå‹•ç”»ãŒ CPU を食ã„å°½ãã™ã®ã‚’防ããŸã‚ã€é…延を挿入ã—ã¾ã—ãŸã€‚削除領域ã®å‰Šé™¤ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«å‰Šé™¤GFlare 削除端点削除オブジェクトã®å‰Šé™¤ç¾åœ¨é¸æŠžä¸­ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’削除ã™ã‚‹é¸æŠžã—ãŸãƒ•ãƒ¬ãƒ¼ãƒ ã‚’削除é¸æŠžã—㟠smvector を削除ã™ã‚‹é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã‚’削除ã™ã‚‹é¸æŠžã—ãŸãƒ—リセットを削除ã—ã¾ã™ãƒ‡ãƒ«ã‚¿é–¢æ•°æ®µéšŽåŒ–デルタ関数濃度:深度統åˆæ·±åº¦å„ªå…ˆæ·±åº¦ãƒžãƒƒãƒ—:深度統åˆä¸­...滑らã‹ãªãƒ‘レットを生æˆã—ã¦ã„ã¾ã™...éžæ–‘化(_P)...éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化(_T)...説明:å…¨ã¦é¸æŠžè§£é™¤(_A)éžæ–‘化先ãƒãƒ£ãƒ³ãƒãƒ«:é©ç”¨å¾Œã®è‰²ç¯„囲é©ç”¨å…ˆ:éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化ã—ã¦ã„ã¾ã™...åå‘ã—ãã„値:ダイアモンドガウシアン差分...差分回折模様拡散:拡散域:医用デジタル画åƒã¨é€šä¿¡æ•°å­—次元:寸法寸法方å‘æ–¹å‘ベクトル指å‘性光æºæŒ‡å‘性光æºæ–¹å‘æ–¹å‘:ãšã‚‰ã—ãšã‚‰ã—マップ:ãšã‚‰ã—ã¦ã„ã¾ã™...表示方法:ç´™ã®ä¸‹è¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢ç´™ã®å·¦è¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢ç´™ã®å·¦è¾ºã‹ã‚‰ç”»åƒã®å³ç«¯ã¾ã§ã®è·é›¢ç´™ã®å³è¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢ç´™ã®ä¸Šè¾ºã‹ã‚‰ç”»åƒã®ä¸‹ç«¯ã¾ã§ã®è·é›¢ç´™ã®ä¸Šè¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ :ディザサイズ:分割プレビューã™ã‚‹(_P)ã“ã‚Œã¾ã§ã®å¤‰æ›´ã‚’破棄ã—ã¦ã‚‚ã„ã„ã§ã™ã‹?上書ãã—ã¾ã™ã‹?DoG 輪郭抽出ドキュメントãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“å°–ã‚Šã®ç¸ã‚’ç”»åƒã«ã¤ã‘ã‚‹ã‹ã©ã†ã‹æ画対象ã®å¤§ãã•ãŒç•°ãªã£ã¦ã„ã¾ã™ç‚Žã‚’æã„ã¦ã„ã¾ã™...グリッドをæã„ã¦ã„ã¾ã™...迷路をæã„ã¦ã„ã¾ã™...æ画設定端点間ã«ç›´ç·šã‚’引ã。カーブãŒä½œã‚‰ã‚Œã¦ã„る時ã ã‘影をè½ã™èª­ã¿è¾¼ã¿ä¸­ã« EOF ãŒç¾ã‚ŒãŸEXIF データã¯ç„¡è¦–ã•ã‚Œã¾ã™ã€‚æŒã¡ä¸Šã’(_L):ãƒãƒ³ãƒ—マップを使ã†(_N)環境マップを使ã†(_N)åŽç¸®(_R)æ‹¡å¼µ(_X)ãã‚Œãžã‚Œã®ãƒ”ースã®ç«¯ãŒä¸¸ã‚ã¦ã‚ã‚‹ãã‚Œãžã‚Œã®ãƒ”ースã®ç«¯ã¯ã¾ã£ã™ã端ã®åŠ¹æžœè¼ªéƒ­æŠ½å‡ºè¼ªéƒ­ã‚’抽出ã—ã¦ã„ã¾ã™...端を暗ã:周辺部編集領域情報を編集...炎を編集マップ情報編集...オブジェクト編集領域情報を編集...フラクタルåを編集マップ情報を編集é¸æŠžã—ãŸé ˜åŸŸæƒ…報を編集読ã¿å–り専用オブジェクトを編集ã—ã¦ã„ã¾ã™ - ä¿å­˜ã§ãã¾ã›ã‚“対象ãƒãƒ£ãƒ³ãƒãƒ«æ“作関数エンボス彫金風(_G)...環境画åƒ(_V):アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã™ã‚‹(_A)ãƒãƒ³ãƒ—マップã®æœ‰åŠ¹/無効 (ç”»åƒæ·±åº¦)環境マップã®æœ‰åŠ¹/無効 (åå°„)高å“ä½ãƒ—レビューã®æœ‰åŠ¹/無効ギザギザã—ãŸç¸ã‚’滑らã‹ã«ã™ã‚‹ã‹ã©ã†ã‹ (アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°)変更ã®ãƒªã‚¢ãƒ«ã‚¿ã‚¤ãƒ ãƒ—レビューã®æœ‰åŠ¹/無効EPS å½¢å¼æ¢±åŒ…方法:EndPage 失敗彫金風彫金ã—ã¦ã„ã¾ã™...コピーã—㟠GFlare ã®åå‰ã‚’入力ã—ã¦ä¸‹ã•ã„:æ–°ã—ã„ GFlare ã®åå‰ã‚’入力ã—ã¦ä¸‹ã•ã„ãŠä½¿ã„ã®ãƒ—リンタ用㮠PPD ファイルを入力ã—ã¦ãã ã•ã„プリンタ用ã®å°åˆ·ã‚³ãƒžãƒ³ãƒ‰ã‚’入力ã—ã¦ãã ã•ã„。注: コマンドã‹ã‚‰ `-l' ã‚„ `-oraw' ã¯å‰Šé™¤ã—ãªã„ã§ãã ã•ã„。ã•ã‚‚ãªã„ã¨å°åˆ·ãŒå¤±æ•—ã™ã‚‹ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚ã“ã®è«–ç†ãƒ—リンタ用ã®åå‰ã‚’入力ã—ã¦ãã ã•ã„レイヤー全体環境感度:使用ã™ã‚‹ç’°å¢ƒç”»åƒFITS ファイルを開ãéš›ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹/グレースケール画åƒä¿å­˜ä¸­ã®ã‚¨ãƒ©ãƒ¼rgb ç”»åƒä¿å­˜ä¸­ã®ã‚¨ãƒ©ãƒ¼ãƒã‚¤ãƒ³ã‚¿å–得エラーGIMP ブラシファイル '%s' ã§ã‚¨ãƒ©ãƒ¼ç™ºç”ŸGIMP ブラシパイプファイル中ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿã€‚レイヤーID å–得中ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿã‚¹ã‚¯ãƒªãƒ¼ãƒ³ã‚·ãƒ§ãƒƒãƒˆã®ç²å¾—エラーファイルオープンエラーファイル '%s' ã®ã‚ªãƒ¼ãƒ—ン中ã«ã‚¨ãƒ©ãƒ¼'%s' ã‹ã‚‰ BMP ファイルヘッダ読ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿãƒ•ã‚¡ã‚¤ãƒ«èª­ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼ghostscript 起動エラー (%s)ghostscript 起動エラー: %s付属物読ã¿è¾¼ã¿ç”¨ã®ä¸€æ™‚ファイル '%s' オープン中ã«ã‚¨ãƒ©ãƒ¼: %s図を付属物ã¨ã—ã¦ä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼: æ画対象ã«ä»˜å±žç‰©ã‚’付ã‘加ãˆã‚‰ã‚Œã¾ã›ã‚“。 +'%s' ã®èª­ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼ã€‚ファイルãŒå£Šã‚Œã¦ã„ã‚‹?'%s' ã®ä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼ã€‚ç”»åƒãŒä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚出力ファイル書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼ã€‚エラー: XJT プロパティファイル %s ãŒèª­ã‚ã¾ã›ã‚“。エラー: XJT プロパティファイル %s ãŒç©ºã§ã™ã€‚エラー: パラメータファイル読ã¿è¾¼ã¿å¤±æ•—エラー: ã“れ㯠CML パラメータファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“。å‡ç­‰ã«åˆ†é…ベキ指数:エクスãƒãƒ¼ãƒˆãƒ—レビューå–り出ã™ãƒãƒ£ãƒ³ãƒãƒ«å‰æ™¯è‰²FITS ファイル中ã«è¡¨ç¤ºå¯èƒ½ãªç”»åƒãŒã‚ã‚Šã¾ã›ã‚“FITS ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“ファイル(_I)第一色(_I):フレア強度(_L):ä¹—æ•°GFlare ファイル '%s' ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—: %sPPM ファイル '%s' ã®ä¿å­˜ã«å¤±æ•—: %sGFlare ファイル '%s' ã®æ›¸ãè¾¼ã¿ã«å¤±æ•—: %s高速整数テキストや線画ã«é©ã—ãŸã€æœ€ã‚‚速ãã¦æ˜Žã‚‹ã„色ã¼ã‹ã™ãƒ•ã‚¡ã‚¤ãƒ«ãƒ•ã‚¡ã‚¤ãƒ« "%s" ã‚’ä¿å­˜ã—ã¾ã—ãŸã€‚ファイル '%s' 㯠IFS フラクタルファイルã§ã¯ãªã„よã†ã§ã™ã€‚ファイル '%s' ã¯å­˜åœ¨ã—ã¾ã™ã€‚ +上書ãã—ã¾ã™ã‹?'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™ã€‚ +オプション㮠%d 行目ãŒä¸æ­£ã§ã™'%s' ã¯ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ローラã®å½¢å¼ã§ã¯ã‚ã‚Šã¾ã›ã‚“ファイルã¯æ—¢ã«å­˜åœ¨ã—ã¾ã™ã‚µãƒãƒ¼ãƒˆã•ã‚Œãªã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚ファイルサイズ: %02.01f kBファイルサイズ: ä¸æ˜Žãƒ•ã‚¡ã‚¤ãƒ«å:ファイルå: %så¡—ã‚Šã¤ã¶ã—下ã‹ã‚‰ä¸Šã¸é †ç•ªã«å·¦ã‹ã‚‰å³ã¸é †ç•ªã«å³ã‹ã‚‰å·¦ã¸é †ç•ªã«ä¸Šã‹ã‚‰ä¸‹ã¸é †ç•ªã«ãƒ‘ラメータ k ã§å¡—るフィルムフィルタフィルタパックシミュレーション動画を背景を見ã¤ã‘よã†ã¨ã—ã¦ã„ã¾ã™...輪郭を探ã—ã¦ã„ã¾ã™...XYグラデーションを探ã—ã¦ã„ã¾ã™...1ã¤ç›®ã®å®›è‰²First Gfig1ã¤ç›®ã®å…ƒè‰²ç¬¬ä¸€è‰²å›ºå®šç¨®å›ºå®šæ–¹ä½ãƒ™ã‚¯ãƒˆãƒ«ãƒžãƒƒãƒ—é¸æŠžãƒ¡ãƒ‹ãƒ¥ãƒ¼ç‚Žç‚Žã¯ RGB æ画対象ã«ã—ã‹æã‘ã¾ã›ã‚“。フレア効果Flexible Image Transport Systemå転浮動å°æ•°ã‚¹ãƒ†ãƒƒãƒ— %d...æµã‚Œã‚‹å‰æ™¯è‰²(_R)ç”»åƒã®ä¸­å¿ƒå‘¨ã‚Šã«ãƒ–ラシストロークを集中ã•ã›ã‚‹ãƒ™ãƒ¼ã‚¹ãƒ©ã‚¤ãƒ³ JPEG 化å‰æ™¯å‰æ™¯è‰² / 背景色フラクタルパラメータフラクタルトレースフラクタルã®ç¨®é¡žãƒ•ãƒ©ã‚¯ã‚¿ãƒ«å:フラクタルエクスプローラグラデーションピクセル断片フレーム %dフレーム %d (%d%s)フレーム %d (%d 中)フレーム (%i)指定ã—ãªã„å ´åˆã®ãƒ•ãƒ¬ãƒ¼ãƒ å‡¦ç†: 振動頻度(列):始ã‚クリップボードã‹ã‚‰å…ƒè‰²ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’使用紙ã‹ã‚‰ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ (逆å‘ã) を使用最åˆ:å‰:完全機能関数ã®ç¨®é¡ž:ã‚ã„ã¾ã„ãªé¸æŠžG-QビストG3 fax ç”»åƒGEE-スライムGEE-ズームGFLI 1.3 - フレームスタック読ã¿è¾¼ã¿GFLI 1.3 - フレームスタックä¿å­˜GFlareGFlare `%s' ã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“。 +%s ã«: +(gflare-path "%s") +ã¨ã„ã†è¡Œã‚’追加ã—㦠%s ã¨ã„ã†ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’作æˆã™ã‚‹ã¨è‡ªåˆ†ã® GFlare ã‚’ä¿å­˜ã§ãるよã†ã«ãªã‚Šã¾ã™ã€‚GFlare エディタGIF オプションGIF 警告GIF ç”»åƒGIF: 文書化ã•ã‚Œã¦ã„ãªã„ GIF åˆæˆã‚¿ã‚¤ãƒ— %d ã¯æ‰±ãˆã¾ã›ã‚“。動画ãŒå†ç”Ÿã•ã‚Œãªã„ã‹ã€å®Œå…¨ã«ä¿å­˜ã§ããªã„å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚GIMP 拡張機能GIMP ヘルプブラウザGIMP プラグインGIMP 表ã®é­”法GIMP Windows プラグインGIMP ブラシGIMP ブラシ (å‹•ç”»)GIMP ブラシファイルã¯ç ´æã—ã¦ã„るよã†ã§ã™ã€‚GIMP ブラシファイルã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã‹ RGBA ã®ã„ãšã‚Œã‹ã§ã™GIMP 圧縮 XJT ç”»åƒGIMP パターンè¼ã(_L)緑閾値(_R):ガンマ:ガウシアンã¼ã‹ã—ガウシアンã¼ã‹ã—...Gee-スライム(_S)Gee-ズーム(_Z)一般一般オプション環境設定一般オプションサンプル色å–å¾—GfigGimp-Print ãƒãƒ¼ã‚¸ãƒ§ãƒ³ Gimpressionistガラスタイルガラスタイルã«ã—ã¦ã„ã¾ã™...è¼ãæ画オプショングレー(_E)å–り込む後ã§å–り込㿠(_A)å˜ä¸€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å–り込む画é¢å…¨ä½“ã‚’å–り込む勾é…/グラデーショングラデーションフレアをæã„ã¦ã„ã¾ã™...グラデーションマップã—ã¦ã„ã¾ã™...グラデーションã§å¡—ã‚Šã¤ã¶ã™ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ãƒžãƒƒãƒ—é¸æŠžãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚¹ã‚±ãƒ¼ãƒ«:グラデーションç¾åœ¨ã®è¨­å®šã®ã‚°ãƒ©ãƒ•ã‚°ãƒ©ãƒ•ã‚£ãƒƒã‚¯ã‚¢ãƒ³ãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ã‚°ãƒ¬ãƒ¼ã‚°ãƒ¬ãƒ¼ãƒ¢ãƒ¼ãƒ‰ã‚°ãƒ¬ãƒ¼ã‚ªãƒ—ショングレー閾値グレースケール緑緑周波数(_E):ç·‘ä½ç›¸å¤‰ä½(_A):ç·‘:グレーグリッドグリッドã®é–“隔グリッドã®ã‚ªãƒ•ã‚»ãƒƒãƒˆã‚°ãƒªãƒƒãƒ‰è¨­å®šã‚°ãƒªãƒƒãƒ‰è¨­å®š...グリッドã®è¡¨ç¤ºæ–¹æ³•ã¨ç¨®é¡žã‚°ãƒªãƒƒãƒ‰ã®è‰²:グリッド設定...グリッド間隔グリッドã®ç¨®é¡ž:ガイドガイドã¯ç”»åƒã‚’覆ã†å‰ã‚‚ã£ã¦å®šã‚られる長方形ã§ã™ã€‚個々ã®å¹…ã€é«˜ã•ã€é–“éš” +ã«ã‚ˆã£ã¦å®šç¾©ã—ã¾ã™ã€‚ã“ã‚Œã¯ãƒŠãƒ“ゲーション・ãƒãƒ¼ã«é©ã—ãŸã€"サムãƒã‚¤ãƒ«" +ã®å…±é€šã‚¤ãƒ¡ãƒ¼ã‚¸ãƒžãƒƒãƒ—åž‹-コレクション画åƒã‚’ã‚ãªãŸãŒç´ æ—©ã作æˆã™ã‚‹ã“ã¨ã‚’ +å¯èƒ½ã«ã—ã¾ã™ã€‚ガイド...ギロãƒãƒ³ã§åˆ‡æ–­ã—ã¦ã„ã¾ã™...HSVHTML ページオプションHTML 表ãƒã‚¤ãƒ©ã‚¤ãƒˆ(_I):ãƒã‚¤ãƒ©ã‚¤ãƒˆ(_I)色相(_U):色相(_U):六角形(_X)高㕠(ピクセル):å°åˆ·ã—ãŸã„ç´™ã®ç¸¦ã®ã‚µã‚¤ã‚ºé«˜ã•:ヘルプ ID '%s' ãŒåˆ†ã‹ã‚Šã¾ã›ã‚“オブジェクトã¯ã©ã“ã«è¡Œã£ã¦ã—ã¾ã£ãŸã®ã§ã—ょã†?高å“ä½ãƒ—レビュー(_Q)値を大ããã™ã‚‹ã¨åŠ¹æžœãŒå¤§ãããªã‚‹å¤§ããªå€¤ã«ã™ã‚‹ã¨ãƒã‚¤ãƒ©ã‚¤ãƒˆãŒãã£ãã‚Šã™ã‚‹å¤§ããªå€¤ã«ã™ã‚‹ã¨ç‰©ä½“ãŒã‚ˆã‚Šå…‰ã‚’åå°„ã™ã‚‹ (明るã見ãˆã‚‹)値を大ããã™ã‚‹ã¨å½±éŸ¿ã‚’å—ã‘る領域ãŒå°ã•ããªã‚‹ãƒã‚¤ãƒ©ã‚¤ãƒˆ:ãƒã‚¤ãƒ©ã‚¤ãƒˆ:最å°å€¤ãƒãƒ£ãƒ³ãƒãƒ«ã‚’残ã™(_L)ç©´å¹…(_L):水平方å‘基準(_R):穴高ã•(_E):強度ä¿æŒç©´é–“éš”(_A):水平水平色水平蹄鉄ホットホットスãƒãƒƒãƒˆ _X:ホットスãƒãƒƒãƒˆ _Y:ホット...1 インãƒã«ç›¸å½“ã™ã‚‹å˜ä½ã¯ã©ã®ãらã„ã‹ã€‚å½±ã§æš—ãã™ã‚‹é‡ãƒ–ラシストロークã®ç«¯ã‚’ "æš—ã" ã™ã‚‹é‡è½ã—ãŸå½±ã‚’ã¼ã‹ã™é‡è‰²ç›¸è‰²ç›¸å›žè»¢:色相種類:色相周波数(_F):色相ä½ç›¸å¤‰ä½(_P):色相:æ°—ã«ã—ãªã„IDIFS フラクタルIFS フラクタルæ画オプションIFS フラクタル: é»’IFS フラクタル: é’IFS フラクタル: ç·‘IFS フラクタル: 赤IFS フラクタル: 変æ›å…ˆç¹°ã‚Šè¿”ã—:対話型歪ã‚強度(_N)インタラクティブ(_N)å転ãƒãƒ³ãƒ—マップ(_N)å転画åƒ(_N)å˜ç‹¬(_S)アイコン #%iアイコン詳細ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠GTM ã¯å˜ãªã‚‹è¡¨ã®éƒ¨åˆ†ã® HTML ã ã‘ã§ã¯ãªã ã‚„ ç­‰ã®ã‚¿ã‚°ã‚‚å«ã‚€å®Œå…¨ãª HTML 文書を出力ã—ã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠ROWSPAN 㨠COLSPAN を用ã„ã¦å‡è³ªãªè‰²ã®çŸ©å½¢éƒ¨åˆ†ã‚’一ã¤ã®å¤§ããªã‚»ãƒ«ã«ã—ã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã—ã¦ã‚ã‚‹å ´åˆã«ã¯å³å´ã‹ã‚‰ã€ãã†ã§ãªã‘ã‚Œã°å·¦å´ã‹ã‚‰ãƒžãƒƒãƒ”ングã—ã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯æ¥µåº§æ¨™ã‹ã‚‰ç›´äº¤åº§æ¨™ã¸ã®å¤‰æ›ã€ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯ç›´äº¤åº§æ¨™ã‹ã‚‰æ¥µåº§æ¨™ã¸å¤‰æ›ã•ã‚Œã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯ç”»åƒã®ä¸‹å´ã‚’中心ã«ã€ä¸Šå´ã‚’外ã«å‘ã‘ã¦ãƒžãƒƒãƒ”ングã—ã¾ã™ã€‚ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯é€†ã«ãªã‚Šã¾ã™ã€‚ã“ã®ã‚ªãƒ—ションを有効ã«ã™ã‚‹ã¨ã€é«˜ã„色値ã¨ä½Žã„色値ãŒé€†è»¢ã•ã‚Œã‚‹ã€‚ã“ã®ã‚ªãƒ—ションを有効ã«ã™ã‚‹ã¨ãƒ—レビューã¯è‡ªå‹•çš„ã«å†æç”»ã•ã‚Œã¾ã™å¹»å¹»ã‚’æã„ã¦ã„ã¾ã™...ç”»åƒ(_A)ç”»åƒç”»åƒ / 出力設定画åƒã‚’構æˆã—ã¦ã„ã¾ã™ç”»åƒé¸æŠžç”»åƒã‚µã‚¤ã‚ºç”»åƒã®ç¨®é¡žç”»åƒã®ç¨®é¡ž(_T):ç”»åƒé«˜ã•(_H):ç”»åƒå¯¸æ³•: %d x %dç”»åƒã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç”»åƒã§ã¯ã‚ã‚Šã¾ã›ã‚“ (bpp=%d)ç”»åƒå:ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸã€‚ç”»åƒé–“éš”(_I):ç”»åƒã®ç¨®é¡ž:Imagemap plug-in 2.2表é¢ã«è¢«ã›ã‚‹ç”»åƒç”»åƒã®å¤§ãã•ãŒç•°ãªã£ã¦ã„ã¾ã™ãƒ‘スをインãƒãƒ¼ãƒˆ(_P)SVG ã®ãƒ‘スè¦ç´ ã‚’ GIMP パスツールã§ä½¿ãˆã‚‹ã‚ˆã†ã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã—ã¾ã™ç©åˆ†ã‚¹ãƒ†ãƒƒãƒ—(_T):å転(_V)インãƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦é£¾ã‚Šã‚‚å«ã‚るインデックスインデックスパレット型åˆæœŸå€¤:インクã®ç¨®é¡ž:入力レベル: 端点挿入導入日時整数強度強度レベル光æºã«ç…§ã‚‰ã•ã‚ŒãŸå ´åˆã®å…ƒã®è‰²ã®å¼·åº¦ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹GIMP 内部プロシージャ交点交点色PSD ファイルã«ä¸æ­£ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ãƒ–ラシファイル '%s' ã«ä¸æ­£ãª UTF-8 文字列パターンファイル '%s' ã«ä¸æ­£ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ã€‚å転紙テクスãƒãƒ£ã‚’å転ã™ã‚‹æ­£ä¸‰è§’å½¢ (gimpressionist-path "%s") ã®ã‚ˆã†ã« gimprc ã«ä»˜ã‘足ã™ã“ã¨ã‚’ -å¼·ããŠå‹§ã‚ã—ã¾ã™.ç¹°ã‚Šè¿”ã—:JNGJNG 㨠デルタ PNGJPEG 圧縮å“質:JPEG プレビュージグソーパズルジグソースタイルジュリア画åƒã®å€¤ã‚’ä¿æŒã‚ªãƒªã‚¸ãƒŠãƒ«ã‚’残ã™æœ€åˆã®å€¤ã‚’ä¿æŒLZ77ãã£ã‹ã‘(_E)å·¦ã®ç¸(_E)é•·ã•(_E):ç·šå½¢(_I)ラムダ横置ãラプラス変æ›ã—ã¦ã„ã¾ã™...大ã㪠3x3(_E)%s レイヤーã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“. 飛ã°ã—ã¾ã™å·¦å·¦ç«¯å·¦:レンズ効果彩度å°:中心ã‹ã‚‰ã®æ–¹å‘ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã•ã›ã‚‹ä¸­å¿ƒã‹ã‚‰ã®æ–¹å‘ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã•ã›ã‚‹éƒ¨åˆ†çš„ãªå€¤ (明度) ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­âˆ’クã®æ–¹å‘を決ã‚ã•ã›ã‚‹éƒ¨åˆ†çš„ãªå€¤ (明度) ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã•ã›ã‚‹ãƒ¬ãƒ™ãƒ«å…‰æºå…‰æº 1å…‰æº 2å…‰æº 3å…‰æº 4å…‰æº 5å…‰æº 6å…‰æºè¨­å®šå…‰ã®æ–¹å‘(_D):å…‰æºå¼·åº¦XYZ 空間中ã§ã®å…‰æºã®å‘ãã® X æ–¹å‘è¦ç´ XYZ 空間中ã®å…‰æºã® X ä½ç½®XYZ 空間中ã§ã®å…‰æºã®å‘ãã® Y æ–¹å‘è¦ç´ XYZ 空間中ã®å…‰æºã® Y ä½ç½®XYZ 空間中ã§ã®å…‰æºã®å‘ãã® Z æ–¹å‘è¦ç´ XYZ 空間中ã®å…‰æºã® Z ä½ç½®æ˜Žã‚‹ã明るã:ライト効果ライト効果...ライトプリセット:å…‰æºè‰²:å…‰æºç¨®:線形線形リンクã®ç¨®é¡žãƒªã‚¹ãƒˆè¡¨ç¤ºç·šå½¢é•·æœŸçš„ã«ãšã‚‰ã™(_N)下ã®ç¸(_W)カーブ点をファイルã‹ã‚‰èª­ã¿è¾¼ã¿FITS ファイル読込炎読込フラクタルパラメータ読ã¿è¾¼ã¿Gfig オブジェクトコレクションを読ã¿è¾¼ã‚€ã‚¤ãƒ¡ãƒ¼ã‚¸ãƒžãƒƒãƒ—読ã¿è¾¼ã¿KISS パレットã®èª­ã¿è¾¼ã¿ãƒ©ã‚¤ãƒˆãƒ—リセットã®èª­ã¿è¾¼ã¿ãƒ‘ラメータ読ã¿è¾¼ã¿PostScript 読ã¿è¾¼ã¿ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’ファイルã‹ã‚‰èª­ã¿è¾¼ã¿ã‚«ãƒ¼ãƒ–をファイルã‹ã‚‰èª­ã¿è¾¼ã¿ç”»é¢å–ã‚Šè¾¼ã¿ã®èª­ã¿è¾¼ã¿...閾値固定(_T)対数型ループé¸æŠžã‚ªãƒ–ジェクトを下ã«Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:光度ã—ãã„値(_T):発光周波数(_U):光度ä½ç›¸å¤‰æ›(_S):MNG オプションMNG 動画最大ã®é«˜ã•(_X):マゼンダ(_T)マゼンダマゼンタ:マゼンダ_K主オプションãƒãƒ³ãƒ—高㌠0 ã®éƒ¨åˆ†ã¯å‡ºåŠ›ç”»åƒã‚’é€æ˜Žã«ã™ã‚‹ã‚ªãƒ–ジェクト部分以外ã¯é€æ˜Žã«ã™ã‚‹ãƒžãƒ³ã‚ªãƒ¼ã‚¦ã‚©ãƒ¼ãƒžãƒ³ãƒ‡ãƒ«ãƒ–ローマンデルブローパラメータマニュアルマニュアルã§ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯æ–¹å‘を指定ã™ã‚‹ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’マニュアル指定マップã™ã‚‹è‰²ç¯„囲画åƒã‚’直方体ã®è¡¨é¢ã«ãƒžãƒƒãƒ—マップファイル形å¼ã‚ªãƒ–ジェクトã«ãƒžãƒƒãƒ—マップ対象:色をマップã—ã¦ã„ã¾ã™...マーブルマスクファイルæ質設定行列Max (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)RGB 値最大RGB 値最大...最大アンドゥ:最大メモリ:ãƒãƒ³ãƒ—マップã®æœ€å¤§ã®é«˜ã•:最大サイズ:æ··ãœåˆã‚ã›ã¦ã„ã¾ã™...中間色:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)最å°ã‚µã‚¤ã‚º:ãã®ä»–ã®ã‚¢ãƒ¬ãƒ³ã‚¸:ç·‘ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_D)彩度ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_D)é’ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_I)発光ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_I)モードモード_1モード_2カーブ変更彩度大:モザイクモーションã¼ã‹ã—モーションã¼ã‹ã—...移動下ã’るサッシ移動é¸æŠžã‚ªãƒ–ジェクトを移動最å‰ã«ç§»å‹•ä¸Šã’る一ã¤ã®ãƒã‚¤ãƒ³ãƒˆã‚’移動オブジェクトを移動移動å€æ•° (57):(0,1) ã®å‚¾æ–œå€ã™ã‚‹(0,1) ã®ä¹±æ•°å€ã™ã‚‹(0,2) ã®ä¹±æ•°å€ã™ã‚‹åˆã‚ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿...å称ãƒã‚ªãƒ³æŠ½å‡ºãƒã‚ªãƒ³...æ–°è¦ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«æ–°è¦ GFlareæ–°ã—ã„å˜ä½æ–°ã—ã„種新èžå°åˆ·(_T)...æ–°èžå°åˆ·æ–°èžå°åˆ·...gimprc 中㫠%s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: +å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚ç¹°ã‚Šè¿”ã—:JNGJNG 㨠デルタ PNGJPEG 圧縮å“質:JPEG ç”»åƒJPEG プレビューJPEG å“質パラメータJPEG スムージング:ジグソーパズルジグソースタイルジュリアKISS CELå¶æ•°ãƒ©ã‚¤ãƒ³ã‚’残ã™(_E)ç”»åƒã®å€¤ã‚’ä¿æŒå¥‡æ•°ãƒ©ã‚¤ãƒ³ã‚’残ã™(_D)オリジナルを残ã™æœ€åˆã®å€¤ã‚’ä¿æŒLABLZ77ãã£ã‹ã‘(_E)å·¦ã®ç¸(_E)é•·ã•(_E):ç·šå½¢(_I)ラムダ横置ãラプラスラプラス変æ›ã—ã¦ã„ã¾ã™...大ã㪠3x3(_E)%s レイヤーã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“。飛ã°ã—ã¾ã™ãƒ¬ã‚¤ãƒ¤ãƒ¼èƒŒæ™¯ç¨®ã€‚コピーã¯æã‹ã‚Œã‚‹å‰ã«ãã®å‰ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’複製ã—ã¾ã™å·¦å·¦ç«¯å·¦:レンズ効果彩度å°:中心ã‹ã‚‰ã®æ–¹å‘ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã•ã›ã‚‹ä¸­å¿ƒã‹ã‚‰ã®æ–¹å‘ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã•ã›ã‚‹éƒ¨åˆ†çš„ãªå€¤ (明度) ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã•ã›ã‚‹éƒ¨åˆ†çš„ãªå€¤ (明度) ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã•ã›ã‚‹ãƒ¬ãƒ™ãƒ«å…‰æºå…‰æº 1å…‰æº 2å…‰æº 3å…‰æº 4å…‰æº 5å…‰æº 6å…‰æºè¨­å®šå…‰ã®æ–¹å‘(_D):å…‰æºå¼·åº¦XYZ 空間中ã§ã®å…‰æºã®å‘ãã® X æ–¹å‘è¦ç´ XYZ 空間中ã®å…‰æºã® X ä½ç½®XYZ 空間中ã§ã®å…‰æºã®å‘ãã® Y æ–¹å‘è¦ç´ XYZ 空間中ã®å…‰æºã® Y ä½ç½®XYZ 空間中ã§ã®å…‰æºã®å‘ãã® Z æ–¹å‘è¦ç´ XYZ 空間中ã®å…‰æºã® Z ä½ç½®æ˜Žã‚‹ã明るã:ライト効果ライト効果...ライトプリセット:å…‰æºè‰²:å…‰æºç¨®:線形線画線形リンクã®ç¨®é¡žãƒªã‚¹ãƒˆè¡¨ç¤ºç·šå½¢é•·æœŸçš„ã«ãšã‚‰ã™(_N)下ã®ç¸(_W)ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼è¨­å®šèª­ã¿è¾¼ã¿ã‚«ãƒ¼ãƒ–点をファイルã‹ã‚‰èª­ã¿è¾¼ã¿FITS ファイル読込炎読込フラクタルパラメータ読ã¿è¾¼ã¿Gfig オブジェクトコレクションを読ã¿è¾¼ã‚€ã‚¤ãƒ¡ãƒ¼ã‚¸ãƒžãƒƒãƒ—読ã¿è¾¼ã¿KISS パレットã®èª­ã¿è¾¼ã¿ãƒ©ã‚¤ãƒˆãƒ—リセットã®èª­ã¿è¾¼ã¿ãƒ‘ラメータ読ã¿è¾¼ã¿PostScript 読ã¿è¾¼ã¿QBE ファイル読ã¿è¾¼ã¿ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’ファイルã‹ã‚‰èª­ã¿è¾¼ã¿ã‚«ãƒ¼ãƒ–をファイルã‹ã‚‰èª­ã¿è¾¼ã¿ç”»é¢å–ã‚Šè¾¼ã¿ã®èª­ã¿è¾¼ã¿...閾値固定(_T)対数型ループ左下å³ä¸‹é¸æŠžã‚ªãƒ–ジェクトを背é¢ã«é¸æŠžã‚ªãƒ–ジェクトを最背é¢ã«ã—ãã„値下é™(_H):Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:光度ã—ãã„値(_T):発光周波数(_U):光度ä½ç›¸å¤‰æ›(_S):MNG オプションMNG 動画最大値(_A):最大深度(_X):最大ã®é«˜ã•(_X):マゼンダ(_T)マゼンダマゼンタ:マゼンダ_K強度マップ:主オプションãƒãƒ³ãƒ—高㌠0 ã®éƒ¨åˆ†ã¯å‡ºåŠ›ç”»åƒã‚’é€æ˜Žã«ã™ã‚‹ã‚ªãƒ–ジェクト部分以外ã¯é€æ˜Žã«ã™ã‚‹ãƒžãƒ³ã‚ªãƒ¼ã‚¦ã‚©ãƒ¼ãƒžãƒ³ãƒ‡ãƒ«ãƒ–ローマンデルブローパラメータマニュアルマニュアルã§ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯æ–¹å‘を指定ã™ã‚‹ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’マニュアル指定マップã™ã‚‹è‰²ç¯„囲画åƒã‚’直方体ã®è¡¨é¢ã«ãƒžãƒƒãƒ—オブジェクトã«ãƒžãƒƒãƒ—(_O)...マップファイル形å¼ä¸Šå´ã‹ã‚‰ãƒžãƒƒãƒ—(_T)直方体ã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™...円柱ã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™...オブジェクトã«ãƒžãƒƒãƒ—é¢ã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™...çƒã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™...マップ対象:色をマップã—ã¦ã„ã¾ã™...マーブルマスクファイルæ質設定行列Max (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)RGB 値最大RGB 値最大...最大å–り消ã—:最大メモリ:ãƒãƒ³ãƒ—マップã®æœ€å¤§ã®é«˜ã•:最大サイズ:迷路用紙サイズ:給紙方法:用紙ã®ç¨®é¡ž:中央値メニューメニューパスメニューパス/åå‰ã‚¤ãƒ³ãƒãƒ¼ãƒˆã—ãŸãƒ‘スを統åˆæ··ãœåˆã‚ã›ã¦ã„ã¾ã™...Microsoft WMF ファイルMicrosoft Windows アイコンプレビューを中クリックã—㦠"元色" é¸æŠžä¸­é–“色:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)最å°ã‚µã‚¤ã‚º:ã“ã®ã‚«ãƒ¼ãƒ–ã‚’ã‚‚ã†ä¸€æ–¹ã®ç«¯ã«å¯¾ç§°ã«æ˜ ã™ãã®ä»–ã®ã‚¢ãƒ¬ãƒ³ã‚¸:ç·‘ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_D)彩度ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_D)変化度:é’ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_I)発光ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_I)モードモード_1モード_2カーブ変更よりä¸é€æ˜Žã«(_E)ã•ã‚‰ã«è©³ç´°è¨­å®šå½©åº¦å¤§:より白ã (明度大)(_W)より黒ã (明度å°)(_K)よりé€æ˜Žã«(_R)モザイクモーションã¼ã‹ã—モーションã¼ã‹ã—...移動下ã’るサッシ移動é¸æŠžã‚ªãƒ–ジェクトを移動最å‰ã«ç§»å‹•ä¸Šã’る一ã¤ã®ãƒã‚¤ãƒ³ãƒˆã‚’移動オブジェクトを移動移動å€æ•° (57):(0,1) ã®å‚¾æ–œå€ã™ã‚‹(0,1) ã®ä¹±æ•°å€ã™ã‚‹(0,2) ã®ä¹±æ•°å€ã™ã‚‹å¤‰åŒ–域:変化度:åˆã‚ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿...å称ãƒã‚ªãƒ³æŠ½å‡ºãƒã‚ªãƒ³...æ–°è¦ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«æ–°è¦ GFlareæ–°ã—ã„å˜ä½æ–°è¦ãƒ—リンタ...æ–°ã—ã„種新èžå°åˆ·(_T)...æ–°èžå°åˆ·æ–°èžå°åˆ·...gimprc 中㫠%s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“: (%s "%s") -ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ä¸‹ã•ã„.何もå–ã‚Šè¾¼ã¾ã‚Œã¾ã›ã‚“ã§ã—ãŸå…‰æºç„¡ã—マッãƒç„¡ã—変æ›ã™ã‚‹é¸æŠžé ˜åŸŸãŒã‚ã‚Šã¾ã›ã‚“ノイズãªã—標準通常:æ­£è¦åŒ–ã—ã¦ã„ã¾ã™...切り抜ãã‚‚ã®ãŒã‚ã‚Šã¾ã›ã‚“色数M_RU エントリã®æ•° (1 - 16):タイル数フレーム数(_F):アンドゥレベルã®æ•° (1 - 99)(_U):セル数:色数:横方å‘ã®ãƒ”ース数縦方å‘ã®ãƒ”ース数フィルタをé©ç”¨ã™ã‚‹å›žæ•°ç•ªå·ä»˜ã‚ªãƒ•ã‚»ãƒƒãƒˆ(_F):ä¸é€æ˜Žåº¦(_P):オプション(_P)å‘ã(_R)ãã®ä»–(_T)出力 LPI(_U):出力レベル(_U):é‡ãªã‚Š(_V):オーãƒãƒ¼ãƒ¬ã‚¤(_V)オーãƒãƒ¼ã‚µãƒ³ãƒ—ル(_V):オブジェクト詳細XYZ 空間中ã®ã‚ªãƒ–ジェクト㮠X ä½ç½®XYZ 空間中ã®ã‚ªãƒ–ジェクト㮠Y ä½ç½®XYZ 空間中ã®ã‚ªãƒ–ジェクト㮠Z ä½ç½®ã‚ªãƒ•ã‚»ãƒƒãƒˆ(_S):オフセット (1)å…¨ã¦ã®ãƒ™ã‚¯ãƒˆãƒ«ã«è§’度を与ãˆã¦ã‚ªãƒ•ã‚»ãƒƒãƒˆã™ã‚‹ã‚ªãƒ•ã‚»ãƒƒãƒˆ:油絵化ã—ã¦ã„ã¾ã™...油絵化周辺部:フィルム上ã«ã¯:ä¸é€æ˜Žåº¦(_A):オプション(_T)ä¸é€æ˜Žåº¦:é–‹ãファイルを開ã'%s' ã‚’é–‹ã„ã¦ã„ã¾ã™...æ–¹ä½ãƒžãƒƒãƒ—エディタを開ãサイズマップエディタを開ã最é©åŒ–GIF 用最é©åŒ– (_G)å°åˆ·ã•ã‚Œã‚‹ç”»åƒã®ç¨®é¡žã«ã‚ˆã£ã¦å‡ºåŠ›ã‚’最é©åŒ–ã—ã¾ã™å‹•ç”»ã‚’最é©åŒ–ã—ã¦ã„ã¾ã™...オプションå‘ã(_I)å‘ãæ–¹ä½ãƒžãƒƒãƒ—エディタå‘ã:オリジナルオリジナル強度オリジナル:ãã®ä»–(_H)出力出力レベル: 出力ã®ç¨®é¡ž:外å´ã®ç¨®é¡ž:オーãƒãƒ¼ãƒ¬ã‚¤PGM ç”»åƒPNGPNG 㨠デルタ PNGPNM ç”»åƒPNM ç”»åƒPNM ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“PNM: ファイル読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼PNM: ä¸æ­£ãª X 解åƒåº¦ã§ã™.PNM: ä¸æ­£ãª Y 解åƒåº¦ã§ã™.PNM: ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™.PNM: ä¸æ­£ãªæœ€å¤§å€¤ã§ã™.PNM: ファイルãŒåƒåˆ‡ã‚Œã¦ã„ã¾ã™.PPD ファイル:PPIPPM ç”»åƒPS ダイアモンドPS 四角 (ユークリッド点)ç´™(_A)プレビュー(_R)ページをã‚ãã£ã¦ã„ã¾ã™...PageSetupDlg 失敗: %dページã‚ãり効果ページ:æ画モード:端も塗るæç”»ã—ã¦ã„ã¾ã™...パレットファイル(_E)パレット紙タイル紙タイル...パラメータ K:パラメータファイル '%s' ã®è§£æžã‚¨ãƒ©ãƒ¼ -%s貼り付ã‘ペーストçµæžœãƒšãƒ¼ã‚¹ãƒˆã—ã¦ã„ã¾ã™...パターンã§åŸ‹ã‚るパーセントフィルタを通ã™ãƒ”クセルã®å‰²åˆå†™çœŸéƒ¨å“æ•°:ピンãƒãƒ³ã‚¿ã‚¤ãƒ«é«˜(_H):ピクセル幅(_W):ピクセル化ピクセル化ã—ã¦ã„ã¾ã™...ピクセルé…ç½®(_A)ç”»åƒå‘¨ã‚Šã«ãƒ©ãƒ³ãƒ€ãƒ ãªã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚’é…ç½®ã™ã‚‹é…ç½®é¢ãƒ—ラズマプラズマ...å†ç”Ÿ/åœæ­¢å†ç”Ÿ: インストールを確èªã—ã¦ãã ã•ã„。複数形点光æºç‚¹å…‰æºæ¥µæ¥µåº§æ¨™æ¥µåº§æ¨™ã«å¤‰æ›ã—ã¦ã„ã¾ã™...ãƒãƒªã‚´ãƒ³ç¸¦ç½®ãä½ç½®PostScript ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å–り扱ãˆã¾ã›ã‚“プレビュー(_V)環境設定元画åƒã‚’背景ã¨ã—ã¦æ®‹ã™ãƒ—レビュープレビューサイズドラッグã«åˆã‚ã›ã¦ãƒ—レビューå°åˆ·è‰²èª¿æ•´å°åˆ·ã¨ -設定ä¿å­˜ç™½è‰²ã¨é»’色ã§å°åˆ· (ç°è‰²ã®å½±ã‚‚ãªã—)黒インクを使ã£ã¦ç°è‰²ã®å½±ã‚’å°åˆ·PrintDlg 失敗: %dプリンタモデル:プリンタ設定プリンタãŒãƒ“ットマップをサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“å°åˆ·ã—ã¦ã„ã¾ã™...確率グラデーション:プログレッシブ明度ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ä¼æ¬ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ä¼æ¬(_A)Qビスト...å“質:R, G, B (通常)RGBRGBARGBA/GRAYA ã®æ画対象ã§ã¯ã‚ã‚Šã¾ã›ã‚“.RLEåŠå¾„(_A):乱数度 (%)(_A):å†å¸°çš„(_E)赤(_E)赤閾値(_E):ç¹°ã‚Šè¿”ã—(_E):逆転(_E)åŠå¾„åŠå¾„æ–¹å‘グラデーション:ラジアンラジアン/Ï€åŠå¾„åŠå¾„:é¸æŠžã‚ªãƒ–ジェクトを上ã«ä¹±æ•°ãƒ©ãƒ³ãƒ€ãƒ ã«æµ´ã³ã›ã‚‹ 1.7ランダムã«ã¤ã¾ã‚€ 1.7乱数種:ランダムã«ã”ã¾ã‹ã™ 1.7乱数種(_S):乱数種共通乱数乱数, ãƒãƒ£ãƒ³ãƒãƒ«éžä¾å­˜ä¹±æ•°ã§ç¨®ã‚’å…ƒã«ã—ãŸä¹±æ•°å…±é€šç¨®ã‚’å…ƒã«ã—ãŸä¹±æ•°ä¸¦ã³:生生画åƒãƒ‡ãƒ¼ã‚¿å…‰ç·šæ画オプション赤(_D)メモリã«é¸æŠžã—ãŸãƒ—リセットを読ã¿è¾¼ã¿ã¾ã™ãƒªã‚¢ãƒ«ã‚¿ã‚¤ãƒ ãƒ—レビュープレビュー画åƒã‚’å†è¨ˆç®—ã™ã‚‹çŸ©å½¢èµ¤èµ¤å‘¨æ³¢æ•°(_F):赤ä½ç›¸å¤‰ä½(_P):赤:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:リドゥ最後ã®æ‹¡å¤§ã‚’リドゥå†æç”»å†æ画プレビュー発光を減らã™(_L)彩度を減らã™(_S)å射性プレビューウィンドウã®æ›´æ–°è¦å‰‡çš„ãƒãƒªã‚´ãƒ³ã®å´é¢æ•°ç›¸å¯¾ãƒªãƒ³ã‚¯(_V)æµ®ã彫り:å†ãƒžãƒƒãƒ—色付ã‘ã—ã¦ã„ã¾ã™...削除(_V)å‹•ç”»ã®èƒŒæ™¯ã‚’削除ã—ã¦ã„ã¾ã™...カラーマップを削除ã—ã¦ã„ã¾ã™...フレアをæç”»ã—ã¦ã„ã¾ã™...レンダリング暴風ã«ã•ã‚‰ã—ã¦ã„ã¾ã™...フラクタルをæã„ã¦ã„ã¾ã™...IFS æç”»ã—ã¦ã„ã¾ã™ (%d/%d)...çƒä½“ã‚’æç”»ã—ã¦ã„ã¾ã™...超新星をæç”»ã—ã¦ã„ã¾ã™...タイルをæç”»ã—ã¦ã„ã¾ã™...風をæã„ã¦ã„ã¾ã™...ç½®æ›ãƒ—リセットã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’å†èª­ã¿è¾¼ã¿ã—ã¾ã™ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³å†èª­ã¿è¾¼ã¿ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’å†ã‚¹ã‚­ãƒ£ãƒ³ãƒ‘ラメータをåˆæœŸå€¤ã«æˆ»ã™è§£åƒåº¦å°åˆ·ã®è§£åƒåº¦ã¨è³ªè§£åƒåº¦:ガイド範囲ã®çµæžœ: %d,%d ã‹ã‚‰ %d,%d (%d マス)ガイド範囲ã®çµæžœ: 0,0 (0 マス)返り値元画åƒã«æˆ»ã™å·»æˆ»ã—å³å³ç¸:å³ç«¯å³:波紋波立ãŸã›ã¦ã„ã¾ã™...回転(_T):列(_W):回転(_E):回転 X:回転 Y:回転 Z:回転カラーマップを回転ã—ã¦ã„ã¾ã™...回転ã—ã¦ã„ã¾ã™...回転X 軸中心ã®å›žè»¢è§’Y 軸中心ã®å›žè»¢è§’Z 軸中心ã®å›žè»¢è§’回転:è’ã•ä¸¸RLE エンコードSUNRAS ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“HSV 散乱(_C)...第二色(_E):後ã§ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é¸æŠž(_E)é¸æŠž(_E)ã™ã¼ã‚ã‚‹(_H)サイン波(_I)å¼·ã•æŒ‡æ•°(_T):å¼·ã•(_T):縞(_T)入れ替ãˆ(_W)渦巻 CCW(_W)åŒã˜ã‚µãƒ³ãƒ—ルを解æž...サンプル色付ã‘サンプル:色をブラシã®ä¸­å¿ƒã«ã‚るピクセルã‹ã‚‰å–å¾—ã™ã‚‹å½©åº¦(_U)彩度彩度彩度ãƒãƒªã‚¨ãƒ¼ã‚·ãƒ§ãƒ³å½©åº¦å‘¨æ³¢æ•°(_E):彩度ä½ç›¸å¤‰ä½(_A):彩度:ä¿å­˜è¨­å®šã‚’ -ä¿å­˜ãƒ–ラシã®ä¿å­˜ç¾çŠ¶ä¿å­˜ã‚«ãƒ¼ãƒ–点をファイルã«ä¿å­˜ãƒ•ã‚¡ã‚¤ãƒ«ã‚’ä¿å­˜ç‚Žä¿å­˜ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ãƒ‘ラメータをä¿å­˜Gfig ç”»åƒã‚’ä¿å­˜ã‚¤ãƒ¡ãƒ¼ã‚¸ãƒžãƒƒãƒ—ä¿å­˜ãƒ©ã‚¤ãƒˆãƒ—リセットã®ä¿å­˜ãƒ‘ラメータをä¿å­˜ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’ファイルã«ä¿å­˜BMP å½¢å¼ã§ä¿å­˜ã™ã‚‹ãƒ–ラシ形å¼ã§ä¿å­˜ãƒ–ラシパイプ形å¼ã§ä¿å­˜C ソースコード形å¼ã§ä¿å­˜ã™ã‚‹GIF å½¢å¼ã§ä¿å­˜JPEG å½¢å¼ã§ä¿å­˜ã™ã‚‹MNG å½¢å¼ã§ä¿å­˜ã™ã‚‹PNG å½¢å¼ã§ä¿å­˜ã™ã‚‹PNM å½¢å¼ã§ä¿å­˜ã™ã‚‹PSP å½¢å¼ã§ä¿å­˜ã™ã‚‹ãƒ‘ターン形å¼ã§ä¿å­˜PostScript å½¢å¼ã§ä¿å­˜SGI å½¢å¼ã§ä¿å­˜SUNRAS å½¢å¼ã§ä¿å­˜ã™ã‚‹TGA å½¢å¼ã§ä¿å­˜TIFF å½¢å¼ã§ä¿å­˜ãƒ†ã‚­ã‚¹ãƒˆå½¢å¼ã§ä¿å­˜XBM å½¢å¼ã§ä¿å­˜XJT å½¢å¼ã§ä¿å­˜XPM å½¢å¼ã§ä¿å­˜ã™ã‚‹ã‚³ãƒ¡ãƒ³ãƒˆã‚’ä¿å­˜(_N)作æˆæ—¥æ™‚ã‚’ä¿å­˜(_T)作æˆæ—¥æ™‚ã‚’ä¿å­˜ç¾çŠ¶ä¿å­˜...解åƒåº¦ã‚’ä¿å­˜ç¾åœ¨ã®è¨­å®šã‚’特定ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä¿å­˜ã—ã¾ã™ã‚«ãƒ¼ãƒ–をファイルã«ä¿å­˜ä¿å­˜æ¸ˆ'%s' ã‚’ä¿å­˜ã—ã¦ã„ã¾ã™...鋸歯(_T)スケール 1(_A):散乱(_A):スケール 2(_L):色相å€çŽ‡:明度å€çŽ‡:æ‹¡å¤§ç¸®å° X:æ‹¡å¤§ç¸®å° Y:æ‹¡å¤§ç¸®å° Z:拡大縮å°:拡大縮å°:HSV 散乱HSV 散乱...スクリーン画é¢å–ã‚Šè¾¼ã¿èª¬æ˜Žã§æ¤œç´¢(_B)åå‰ã§æ¤œç´¢(_N)検索中 - ãŠå¾…ã¡ä¸‹ã•ã„説明ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„åå‰ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„逆横置ã2ã¤ç›®ã®å®›è‰²äºŒæ¬¡ãƒ•ãƒ¬ã‚¢æ画オプション2ã¤ç›®ã®å…ƒè‰²ç¬¬äºŒè‰²ç§’後乱数ã®ç¨® ("種を元ã«"モードã§ã®ã¿æœ‰åŠ¹)種:é¸æŠžå…¨ã¦é¸æŠžè‰²ã‚’é¸æŠžãƒ•ã‚£ãƒ«ãƒ è‰²ã‚’é¸æŠžHTML ファイルé¸æŠžç”»åƒãƒ•ã‚¡ã‚¤ãƒ«é¸æŠžæ¬¡ã‚’é¸æŠžç•ªå·ã®è‰²ã‚’é¸æŠžé¸æŠžãƒ‘レットファイルを読ã¿è¾¼ã‚€ãƒ”クセルé¸æŠžæ³•é ˜åŸŸé¸æŠžå…¨ã¦ã‚’é¸æŠž(_A)å…¨ã¦ã‚’é¸æŠžã‚ªãƒ–ジェクトã®é¸æŠžæ—¢å­˜é ˜åŸŸã‚’é¸æŠžãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸ã‚“ã§ã‚³ãƒ¬ã‚¯ã‚·ãƒ§ãƒ³ã‚’å†ã‚¹ã‚­ãƒ£ãƒ³ã™ã‚‹å…‰æºè‰²é¸æŠžæ¬¡ã® smvector ã‚’é¸æŠžã™ã‚‹æ¬¡ã®ãƒ™ã‚¯ãƒˆãƒ«ã‚’é¸æŠžã™ã‚‹å‰ã® smvector ã‚’é¸æŠžã™ã‚‹å‰ã®ãƒ™ã‚¯ãƒˆãƒ«ã‚’é¸æŠžã™ã‚‹å¸Œæœ›ã™ã‚‹å‡ºåŠ›å½¢å¼ã‚’é¸æŠžã—ã¦ãã ã•ã„å°åˆ·ã‚’è¡Œã„ãŸã„プリンタã®åå‰ã‚’é¸æŠžã—ã¦ãã ã•ã„(åå‰ã¨ã¯ãƒ—リンタã®åž‹ç•ªã‚„モデルã®ã“ã¨ã§ã¯ã‚ã‚Šã¾ã›ã‚“)用紙ã®å‘ãé¸æŠžã—ã¦ãã ã•ã„: 縦置ã, 横置ã, 逆縦置ã, 逆横置ãプリンタã®ãƒ¢ãƒ‡ãƒ«ã‚’é¸æŠžã—ã¦ãã ã•ã„é¸æŠž:é¸æŠžæ™‚:é¸æŠžé¸æŠžã‚µã‚¤ã‚ºãŒå¶æ•°ã§ã¯ã‚ã‚Šã¾ã›ã‚“. -並ã¹ã‚‹è¿·è·¯ãŒã†ã¾ãã§ããªã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“.é¸æŠžçš„ガウシアンã¼ã‹ã—é¸æŠžçš„ガウシアンã¼ã‹ã—...é¸æŠžå¯èƒ½ãªè¨­å®šèª­ã¿è¾¼ã¿é¸æŠžçš„読ã¿è¾¼ã¿å€‹ã€…ã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘をランダムã«é¸ã¶å€‹ã€…ã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã«ãƒ©ãƒ³ãƒ€ãƒ ã‚µã‚¤ã‚ºã‚’é¸ã¶çµæžœç”»åƒãŒç¶™ç›®ç„¡ã—ã«ä¸¦ã¹ã‚‰ã‚Œã‚‹ã‚ˆã†ã«ã™ã‚‹ã‹ã©ã†ã‹ç”»åƒã®å‘¨ã‚Šã«å‡ºã¦ã„ãよã†ã«ãƒ–ラシストロークã•ã›ã‚‹ã‹ã©ã†ã‹åŠçµ±åˆã—ã¦ã„ã¾ã™...最後ã«ç§»å‹•åˆ†é›¢æ–¹æ³•:1999å¹´ 9月 31日光æºè‰²è¨­å®šå°åˆ·ã®ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã‚’設定ã™ã‚‹ç”»åƒã®å€çŽ‡(サイズ)を設定ã™ã‚‹SetStretchBltMode 失敗 (警告)設定ã“ã®ãƒžãƒƒãƒ—ファイルã«å¯¾ã™ã‚‹è¨­å®šãƒ—リンタã®è¨­å®šå½±ã¼ã‹ã—:å½±ã®æš—度:影深度:é™°:二次フレアã®å½¢çŠ¶æ˜Žçž­ã«ã—ã¦ã„ã¾ã™...剪断:ãšã‚‰ã—ãšã‚‰ã—ã¦ã„ã¾ã™...å転効果ã«ã™ã‚‹ã‹ã©ã†ã‹å…‰åº¦ã‚’ä¿å­˜ã™ã‚‹ã‹ã©ã†ã‹è¡¨ç¤ºæ¼¸è¿‘ç·šã®è¡¨ç¤ºå…¨ã¦ã®ã‚ªãƒ–ジェクトを表示URL部分ã®åŠ©è¨€ã‚’表示(_T)エリアãƒãƒ³ãƒ‰ãƒ«ã®è¡¨ç¤º(_H)色表示グリッドã®è¡¨ç¤ºç”»åƒã®è¡¨ç¤ºæ¬¡ã®ã‚ªãƒ–ジェクトを表示ä½ç½®è¡¨ç¤ºå‰ã®ã‚ªãƒ–ジェクトを表示é¸æŠžè¡¨ç¤ºãƒ—レビューワイヤーフレームã®è¡¨ç¤º/éžè¡¨ç¤ºå˜æ•°å½¢(_N):シエルピンスキå˜ç´”波状(_U)Sinå˜æ•°å½¢Sin 曲線Sin 曲線: レンダリングã—ã¦ã„ã¾ã™...波状サイズ大ãã• (%):大ãã•å€çŽ‡ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³:サイズマップエディタå°åˆ·ã—ãŸã„ç´™ã®ã‚µã‚¤ã‚ºã‚µã‚¤ã‚º:サイズ:ã¼ã‹ã™æ»‘らã‹ãªãƒ‘レット(_H)スムージング(_T)滑らã‹(_H)滑らã‹ãªãƒ‘レット滑らã‹ãªã‚µãƒ³ãƒ—ルX グラデーションを滑らã‹ã«ã—ã¦ã„ã¾ã™...Y グラデーションを滑らã‹ã«ã—ã¦ã„ã¾ã™...スムージング:エイリアシングã®æ»‘らã‹ã•ã‚µã‚¤ã‚ºãƒžãƒƒãƒ—ベクトルグリッドã«ä»˜ã‘るソーベル輪郭を抽出ã—ã¦ã„ã¾ã™...ソーベル輪郭抽出水平方å‘ソーベル(_H)鉛直方å‘ソーベル(_V)ソリッドソリッドノイズソリッドノイズを生æˆã—ã¦ã„ã¾ã™...背景ベタ塗りã„ãã¤ã‹ã®ãƒ‡ãƒ¼ã‚¿ãŒå¤‰æ›´ã•ã‚Œã¦ã¾ã™!インデックスもã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç”»åƒã—ã‹ä¿å­˜ã§ãã¾ã›ã‚“.残念ã§ã™ãŒãƒãƒ£ãƒ³ãƒãƒ«ã‚„マスクを回転ã•ã›ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“.ç”»åƒæº 1:ç”»åƒæº 2:ファイル中ã®å…ƒãƒãƒ£ãƒ³ãƒãƒ«:å…ƒãƒãƒ£ãƒ³ãƒãƒ«:å…ƒã®è‰²ç¯„囲ソース...é–“éš” (パーセント):é–“éš”:ãらã‚ããらã‚ã‹ã›ã¦ã„ã¾ã™...空間変æ›ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“ç”»åƒã«é©ç”¨ã™ã‚‹æµ®ã彫り効果ã®å¼·åº¦ã‚’指定ã™ã‚‹ (å˜ä½ã¯ãƒ‘ーセント)ブラシã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”を指定ã™ã‚‹ãƒ†ã‚¯ã‚¹ãƒãƒ£ã®æ‹¡å¤§çŽ‡ (パーセントã§æŒ‡å®šã™ã‚‹)åå°„:çƒçƒé¢ãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼çƒé¢èœ˜è››å°–ã‚Šã®å¤ªã•:渦巻スãƒãƒƒãƒˆåŠå¾„:スãƒãƒƒãƒˆæ‹¡æ•£æ‹¡æ•£é‡æ‹¡æ•£ã•ã›ã¦ã„ã¾ã™...å¼·ã•æŒ‡æ•°(_R):標準標準 (R,G,B)星型ã®ãƒã‚¤ãƒ³ãƒˆæ•°é–‹å§‹è§’度:開始オフセット:StartPage 失敗コマé€ã‚Šãƒ”クセル値ãŒã“ã®å€¤ã‚ˆã‚Šã‚‚å°ã•ããªã£ãŸã‚‰æ­¢ã¾ã‚‹ä¼¸é•·StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) 失敗, error = %d, y = %dストローク密度(_D):å¼·ãスタイル細分化:サブサンプリング:サブステップ:超新星超新星 色 é¸æŠžæ¸¦å·» CW(_I)二ã¤ã®ã‚«ãƒ¼ãƒ–を入れ替ãˆã‚‹æ¸¦å·»å時計周りã«å¤‰æ›´æ™‚計周りã«å¤‰æ›´ã‚·ãƒ³ãƒœãƒ«TIFF ãƒãƒ£ãƒ³ãƒãƒ«ã‚¿ã‚¤ãƒ«å¯èƒ½(_I)タイル彩度(_I):タイルサイズ(_I):é€éŽèƒŒæ™¯(_R)乱れ(_U):乱れ(_U)表作æˆã‚ªãƒ—ション表オプション対象Tel_netテンãƒãƒ©ãƒªãƒ†ãƒ³ãƒãƒ©ãƒªãƒ—ロシージャテクスãƒãƒ£ãƒ†ã‚¯ã‚¹ãƒãƒ£è¨­å®šãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ†ã‚¯ã‚¹ãƒãƒ£GIMP ヘルプファイルãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“。The GIMPressionistセル詰ã‚物é‡.セルã®é–“éš”.ãã‚Œãžã‚Œã®ãƒ”ースã®ç«¯ã®ãƒã‚¤ãƒ©ã‚¤ãƒˆã®é‡ã‚ªãƒªã‚¸ãƒŠãƒ«ç”»åƒã«æœ€ã‚‚è¿‘ãé©åˆã™ã‚‹ãƒ–ラシサイズãŒé¸ã°ã‚Œã‚‹è‰²ã¯ç™½é»’ã§ã™.デフォルトã®ã‚³ãƒ¡ãƒ³ãƒˆã¯ %d 文字ã¾ã§ã§ã™.å½±ã®æ·±ã•, 物体ã‹ã‚‰ã©ã®ç¨‹åº¦å½±ã‚’離ã™ã‹ã‚ªãƒªã‚¸ãƒŠãƒ«ç”»åƒã«æœ€ã‚‚è¿‘ããªã‚‹ã‚ˆã†ãªæ–¹å‘ãŒé¸ã°ã‚Œã‚‹ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ãŒã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã‚‹ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹ç”»åƒã®æœ€åˆã®åˆ—個々ã®ã‚»ãƒ«ã®é«˜ã•. 値もã—ãã¯ãƒ‘ーセント.部分的ãªè‰²ç›¸ãŒã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚る部分的ãªè‰²ç›¸ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹GIF å½¢å¼ã§ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒä¸­ã«å®Ÿç”»åƒã‚µã‚¤ã‚ºã‚ˆã‚Š -大ããªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå«ã¾ã‚Œã¦ã„ã¾ã™. GIF å½¢å¼ã§ã¯ã“ã‚Œã¯è¨±å¯ -ã•ã‚Œã¦ã„ã¾ã›ã‚“. - -å…¨ã¦ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ç”»åƒã‚µã‚¤ã‚ºä»¥ä¸‹ã«åˆ‡ã‚Šè©°ã‚ã‚‹ã‹, キャンセル -ã—ã¦ãã ã•ã„.作æˆã™ã‚‹æœ€å¤§ãƒ–ラシサイズレイヤーãŒé€æ˜Žä¿è­·ã•ã‚Œã¦ã„ã¾ã™.`%s' ã¨ã„ã†åå‰ã¯æ—¢ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™!`%s' ã¨ã„ã†åå‰ã¯æ—¢ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™!使用ã™ã‚‹æ–¹å‘ (ブラシ) ã®æ•°è¡¨æž ã®ãƒ”クセル幅.使用ã™ã‚‹æ–¹å‘ (ブラシ) ã®æ•°ãƒ–ラシストロークã®ç›¸å¯¾çš„ãªå¯†åº¦è¦æ±‚ã•ã‚ŒãŸ URL ã¯èª­ã¿è¾¼ã‚ã¾ã›ã‚“:作æˆã™ã‚‹æœ€å°ãƒ–ラシサイズサイズマップベクトル欄.左クリックã§é¸æŠžã—㟠smvector を移動, å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤ãƒ³ãƒˆã‚’マウスã®æ–¹ã¸, 中クリックã§æ–°è¦ smvector を追加.ストロークã¯ç”»åƒã«äº¤å·®ã—ã¦å‡ç­‰ã«é…ç½®ã•ã‚Œã¾ã™ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã¯ "æµã‚Œã‚‹" パターンã«å¾“ã†è¡¨é¡Œæ–‡.å„セル中ã«é…ç½®ã•ã‚Œã‚‹æ–‡å­—ã“ã®å½¢å¼ã® SUN-taster ファイルã¯ä½¿ç”¨ã§ãã¾ã›ã‚“å˜ä½ã®çœç•¥å½¢ (例 "cm" ãªã‚‰ã°ã‚»ãƒ³ãƒãƒ¡ãƒ¼ãƒˆãƒ«).å˜ä½ã®è¤‡æ•°å½¢.å˜ä½ã®å˜æ•°å½¢.ベクトル欄. 左クリックã§é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®ç§»å‹•, å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤ãƒ³ãƒˆã‚’マウスã®æ–¹ã¸, 中クリックã§æ–°è¦ãƒ™ã‚¯ãƒˆãƒ«ã®è¿½åŠ .個々ã®ã‚»ãƒ«ã®å¹…. 値もã—ãã¯ãƒ‘ーセント.GIMP ヘルプファイルã«é–¢ã™ã‚‹å•é¡Œã§ã™ã€‚ã“ã®è‰²æ·±åº¦ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“ã“ã®æ–‡å­—列㯠GIMP ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã§å˜ä½ã‚’識別ã™ã‚‹ãŸã‚ã«ä½¿ã‚ã‚Œã¾ã™.ã“ã®ãƒ„ールã¯ã‚ªãƒ—ションをæŒã£ã¦ã„ã¾ã›ã‚“ã—ãã„値(_L):アルファãƒãƒ£ãƒ³ãƒãƒ«ã—ãã„値アルファãƒãƒ£ãƒ³ãƒãƒ«é–¾å€¤: åŠé€æ˜Žéƒ¨åˆ†ã‚’切り分ã‘ã¦ã„ã¾ã™...ã—ãã„値:タイル間隔(_E):並ã¹ã‚‹å…ƒç”»åƒã‚’並ã¹ã‚‹å…ƒç”»åƒã‚’並ã¹ã‚‹: ç„¡é™å¹³é¢ã«æœ‰åŠ¹æ–°ã—ã„大ãã•ã«ãªã‚‰ã¹ã‚‹ãれを並ã¹ã‚‹ã‚¿ã‚¤ãƒ«åŒ–å¯èƒ½ã‚¿ã‚¤ãƒ«ã‚’生æˆã—ã¦ã„ã¾ã™...並ã¹ã‚‹å›³å½¢ä¸¦ã¹ã¦ã„ã¾ã™...終り宛色宛:é“具上端上:ãŸãªã³ã(_A)å¤‰æ› %sé€æ˜Žé€éŽèƒŒæ™¯ã“ã®è‰²ã¨ã—ã¦æ‰±ã†å¢ƒç•Œæž ã‚’調ã¹ã‚‹ä¹±ã‚Œ:種類ã“ã®ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—å½¢å¼ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“プリンタã®ã‚¤ãƒ³ã‚¯ã®ç¨®é¡žé©ç”¨ã™ã‚‹å…‰æºã®ç¨®é¡žå°åˆ·ã—よã†ã¨ã—ã¦ã„る用紙ã®ç¨®é¡žãƒžãƒƒãƒ—ã™ã‚‹ã‚ªãƒ–ジェクトã®å½¢çŠ¶ç¨®é¡ž:URLURL: %s動画をéžæœ€é©åŒ–ã—ã¦ã„ã¾ã™...ã“れ以上点を追加ã§ãã¾ã›ã‚“. -アンドゥ最後ã®æ‹¡å¤§ã‚’アンドゥå˜ä½å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿å˜ä½ä¹—æ•°ã¯0ã§ã‚ã£ã¦ã¯ãªã‚Šã¾ã›ã‚“.å˜ä½å˜ä½:å称未設定éžé¸æŠžé¸æŠžç„¡ã—éžã‚·ãƒ£ãƒ¼ãƒ—化マスク利用ã§ããªã„色数 (%d)!サãƒãƒ¼ãƒˆã—ã¦ã„ãªã„å½¢å¼ã‹ã‚¯ãƒªãƒƒãƒ—ボードãŒç©ºã§ã™!å称未設定更新左上左上 _X:左上 _Y:å³ä¸Šé€†ç¸¦ç½®ãstruct ã§ã¯ãªãマクロを使ã†(_E)GIMP ã®ã‚¬ã‚¤ãƒ‰ã‚’使ã†...Gimp ã®ã‚¬ã‚¤ãƒ‰ã‚’使ã†èƒŒæ™¯ã‚’é€æ˜Žã«ã™ã‚‹; å¡—ã£ãŸéƒ¨åˆ†ã ã‘ãŒè¦‹ãˆã¾ã™å¹³å‡å€¤ã‚’使ã†ã“ã®è‰²è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹ã“ã®è‰²ãƒãƒ£ãƒ³ãƒãƒ«ã«å¯¾ã—ã¦ä¸‰è§’関数ã§ã¯ãªã線形マッピングを使用ã™ã‚‹çµæžœã«"ã™ã˜"ãŒè¦‹ãˆã«ãã„よã†ã« log log スムージングã™ã‚‹loglog スムージングを使ã†é€†æ•°ã‚’使ã†ã“ã®è‰²è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹ã‚µãƒ–カラー使用背景色を使ã†å€¤(_A)明度明度をå転ã•ã›ã¦ã„ã¾ã™...明度ä¼æ¬æ˜Žåº¦ã‚’ä¼æ¬ã•ã›ã¦ã„ã¾ã™...明度ãƒãƒªã‚¨ãƒ¼ã‚·ãƒ§ãƒ³æ˜Žåº¦:ヴァン ゴッホ風 (LIC)ヴァン ゴッホ風 (LIC)...ベクトル角度(_A):ベクトル長(_L):ベクトル垂直方å‘基準(_T):鉛直鉛直色鉛直ã¨ã¦ã‚‚æš—ã„ビデオビデオ/RGB...ソースを表示ボロノイ-モードã§ã¯æŒ‡å®šã—ãŸç‚¹ã‹ã‚‰æœ€è¿‘接ã®ã‚µã‚¤ã‚ºãƒžãƒƒãƒ—ベクトルã®ã¿ãŒå½±éŸ¿ã‚’æŒã¡ã¾ã™ãƒœãƒ­ãƒŽã‚¤-モードã§ã¯æŒ‡å®šã—ãŸç‚¹ã«ã¤ã„ã¦æœ€è¿‘接ベクトルã®ã¿ãŒå½±éŸ¿ã‚’与ãˆã¾ã™æ¸¦(_X)渦_2渦_3WAI_S外部マスクファイルã«æ›¸ã(_R)警告警告: å…ƒã¨å…ˆã®ãƒãƒ£ãƒ³ãƒãƒ«ãŒåŒã˜ã§ã™.警告: サãƒãƒ¼ãƒˆã•ã‚Œãªã„レイヤーモード %d ㌠XJT ã«ä¿å­˜ã•ã‚Œã¾ã—ãŸè­¦å‘Š: サãƒãƒ¼ãƒˆã•ã‚Œãªã„パス種 %d ㌠XJT ã«ä¿å­˜ã•ã‚Œã¾ã—ãŸè­¦å‘Š: サãƒãƒ¼ãƒˆã•ã‚Œãªã„å˜ä½ç³» %d ㌠XJT ã«ä¿å­˜ã•ã‚Œã¾ã—ãŸãƒ¯ãƒ¼ãƒ—%d番目ã®ãƒ•ãƒ¬ãƒ¼ãƒ ã‚’æ­ªã‚ã¦ã„ã¾ã™...æ­ªã‚ã¦ã„ã¾ã™...æ³¢ã®ç¨®é¡žæ³¢æ³¢ç«‹ãŸã›ã¦ã„ã¾ã™...å°‘ã—ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨, ç”»åƒã¯ã‚¢ã‚¹ãƒšã‚¯ãƒˆãƒ«æ¯”を変更ã›ãšã«ä¸Žãˆã‚‰ã‚ŒãŸã‚µã‚¤ã‚ºã«åˆã†ã‚ˆã†ã«èª¿æ•´ã•ã‚Œã¦å‡ºåŠ›ã•ã‚Œã¾ã™.ãã‚‹ãã‚‹ã²ã­ã‚‹ãã‚‹ãã‚‹ã²ã­ã£ã¦ã„ã¾ã™...白å°åˆ·ã—ãŸã„ç´™ã®æ¨ªã®ã‚µã‚¤ã‚ºå¹…:風ウィンドウ(0,1) ã®å‚¾æ–œä¹—ã™ã‚‹p 㨠(0,1) ã®ä¹±æ•°ã§(0,1) ã®ä¹±æ•°ä¹—ã™ã‚‹(0,10) ã®ä¹±æ•°ä¹—ã™ã‚‹æœ¨ç›®å›žã‚Šè¾¼ã¿X ビットマップイメージX æ‹¡å¤§ç¸®å° (サイズ)X:XBM オプションXJT ファイル中ã«ä¸æ˜Žãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ¢ãƒ¼ãƒ‰ %d ãŒã‚ã‚Šã¾ã™XJT ファイル中ã«ä¸æ˜Žãªãƒ‘ス種 %d ãŒã‚ã‚Šã¾ã™XJT ファイル中ã«ä¸æ˜Žãªå˜ä½ç³» %d ãŒã‚ã‚Šã¾ã™X最大:X最å°:X_1:X_2:Y æ‹¡å¤§ç¸®å° (サイズ)Y:Y最大:Y最å°:Y_1:Y_2:黄黄:黄_Kフロートé¸æŠžãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“.é¸æŠžé ˜åŸŸãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“.アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒãŸãªã„ç”»åƒã§ã¯ -カーソルマスクをä¿å­˜ã§ãã¾ã›ã‚“.Z æ‹¡å¤§ç¸®å° (サイズ)Z:最å°æž ã§åˆ‡ã‚ŠæŠœã„ã¦ã„ã¾ã™...拡大拡大表示拡大 (ç”»åƒã‚’大ããã™ã‚‹)縮å°è¡¨ç¤ºç¸®å° (ç”»åƒã‚’å°ã•ãã™ã‚‹)拡大スケール:_3x3çœç•¥å½¢(_A):ImageMap ã«ã¤ã„ã¦(_A)...é©å¿œçš„(_A)付加的(_A)詳細(_A)アルファ(_A):アルファ(_A):é‡(_A):振幅(_A):角度(_A):動画化(_A)アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°(_A)自動変æ›(_A)æ–¹å‘(_A):背景(_B)基準 URL(_B):åŒç·šå½¢(_B)é»’(_B)é»’ãã™ã‚‹(_B)暴風(_B)混色(_B)ブラインド(_B)...é’(_B):é’(_B):ã¼ã‹ã—(_B)ã¼ã‹ã—åŠå¾„(_B):ç¸(_B):下(_B):直方体(_B)明るã•(_B):明るã•(_B)明るã•(_B):ブラシ(_B)ãƒãƒ³ãƒ—マップ(_B)ãƒãƒ³ãƒ—マップ(_B):ãƒãƒ³ãƒ—マップ(_B)市æ¾æ¨¡æ§˜(_C)消去(_C)目次(_C)コピー(_C)キュービズム(_C)...圧縮(_D)深度(_D):導函数(_D)説明(_D):詳細(_D):æ•°å­—(_D):ãšã‚Œ(_D):ゆãŒã‚ã‚‹(_D)分割(_D):ドット(_D)編集(_E)対象画åƒ(_E):æŒã¡ä¸Šã’(_E):エンボス(_E)_EPS å½¢å¼ç’°å¢ƒãƒžãƒƒãƒ—(_E)ベキ指数(_E):ä¹—æ•°(_F):ファイル(_F)フィルム(_F)フォント(_F):強制(_F)å‰æ™¯/背景(_F)フラクタルエクスプローラ(_F)...フラクタル(_F)自由(_F)_FTP サイトGFlare(_G)...GIF コメント(_G):GIMPressionist(_G)...ガンマ(_G):一般(_G)Gfig(_G)..._Gopher勾é…/グラデーション(_G)グレー(_G):ç·‘(_G)ç·‘(_G):グレー(_G)グリッド(_G)グリッドサイズ(_G):グリッド(_G)...広ã’ã‚‹(_G)HSL 色モデル(_H)高ã•(_H)高ã•(_H):ヘルプ(_H)_Hex マップéžè¡¨ç¤º(_H)高ã•(_H)ä¿å­˜åº¦(_H):æ°´å¹³(_H)水平方å‘スタイル(_H):æ°´å¹³(_H)水平間隔(_H):色相(_H)_ID:典型(_I)無視(_I)_ImageMap...インãƒ(_I)入力 SPI(_I):挿入(_I)強度(_I):インターレース(_I)インターレース (Adam7)(_I)å転(_I)_JPEG_JavaScriptNCSA 円を真ã«ã™ã‚‹(_K)削除(_K)_LZW大ãããšã‚‰ã™(_L)å·¦(_L)左開始ä½ç½®(_L):å…‰æº(_L)ライト効果(_L)...ç·šå½¢(_L)ç›´ç·š(_L)リンク(_L)ç„¡é™ãƒ«ãƒ¼ãƒ—(_L)下(_L)下(_L)マップã®ç¨®é¡ž:マッピング(_M)マスクファイル拡張å­(_M):物質(_M)最大(%)(_M):最大深度(_M):最大 Δ(_M):メタリック(_M)ミリメートル(_M)ミラー(_M)ãã®ä»–ã®æ“作(_M)色相ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_M)赤ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_M)モノクロモザイク(_M)...移動(_M)ãƒã‚ªãƒ³(_N)...ãªã—(_N)標準(_N)差分最é©åŒ–(_O)パックビット(_P)パレットã®ç¨®é¡ž(_P)紙タイル(_P)...パラメータ(_P)波長(_P):ä½ç›¸(_P):ピンãƒãƒ³(_P)å†ç”Ÿï¼ˆ_P)...プラグインブラウザ(_P)複数形(_P):多角形(_P)å‰ç½®å(_P):プリセット(_P)プレビュー(_P)プレビュー!(_P)エリア情報ã®ãƒ—ロンプト(_P)æ­ªã¿ã‚’ã„れる(_P)_RGBRGB 色モデル(_R)_RLE 圧縮_RLE エンコードåŠå¾„(_R)åŠå¾„(_R):乱数を振る(_R)光線(_R)矩形(_R)赤(_R):リドゥ(_R) %såå°„(_R)削除(_R)レンダリング(_R)デフォルト URL å¿…é ˆ(_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):ターゲットフレームå/ID(_T): (オプション - フレーム環境ã®ã¿)太ã•(_T):ã—ãã„値(_T):ã—ãã„値(_T):タイルサイズ(_T):タイトル(_Y):é“å…·(_T)上開始ä½ç½®(_T):上(_T):é€æ˜Ž(_T)ã“ã®é ˜åŸŸãŒã‚¯ãƒªãƒƒã‚¯ã•ã‚ŒãŸå ´åˆã«ä½¿ç”¨ã™ã‚‹ _URL: (å¿…é ˆ)アンドゥ(_U)アンドゥ(_U) %sæ›´æ–°(_U)上(_U)上ã®ç¸(_U)GLib 型を使用ã™ã‚‹ (guint8*)(_U)背景色を使用(_U)å–ã£æ‰‹ã‚’二å€ã«ã™ã‚‹(_U)値(_V)明度(_V):種類(_V):åž‚ç›´é–“éš”(_V):鉛直(_V)鉛直(_V):表示(_V)ボロノイ(_V)ワープ(_W)æ°´ä½(_W):波長(_W):_Web サイト白(_W)幅広縞(_W)å¹…(_W)å¹…(_W):風(_W)回り込ã¿(_W)回り込ã¿(_W)ホットスãƒãƒƒãƒˆå€¤ã‚’書ã(_W)_X 拡大縮å°:X オフセット(_X):_X:_Y 拡大縮å°:Y オフセット(_Y):_Y:黄(_Y)_Z:拡大(_Z)拡大(_Z):'Default' ãŒä½œæˆã•ã‚Œã¾ã—ãŸ.å˜ä¸€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å–り込む(_S)å–ã‚Šè¾¼ã¿ã¯ã‚¢ãƒ«ãƒ•ã‚¡é»’é’blueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip アーカイブcmシアンシアン_ké›»å­ãƒ¡ãƒ¼ãƒ«(_M)ç·‘gzip アーカイブ色相ä¸æ­£ãªå½¢å¼ã® GFlare ファイルã§ã™: %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 中ã«è¦‹ä»˜ã‹ã‚Šã¾ã›ã‚“ピクセルピクセルを上ã¸(_T)ピクセルを左ã¸(_E)赤redness_cr470redness_cr470fredness_cr709redness_cr709f彩度段階化 sin^psin^p 型関数画é¢å…¨ä½“ã‚’å–り込む(_W)明度X (ピクセル)Y (ピクセル)黄黄_k \ No newline at end of file +ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ä¸‹ã•ã„。色ãªã—圧縮ãªã—何もå–ã‚Šè¾¼ã¾ã‚Œã¾ã›ã‚“ã§ã—ãŸå¡—ã‚Šã¤ã¶ã•ãªã„å…‰æºç„¡ã—マッãƒç„¡ã—変æ›ã™ã‚‹é¸æŠžé ˜åŸŸãŒã‚ã‚Šã¾ã›ã‚“æ‹¡å¼µå­ãŒåˆ¤åˆ¥ã§ããªã„ã®ã§ã€ãƒ•ã‚¡ã‚¤ãƒ«ã® magic を用ã„ã¦èª­ã¿è¾¼ã¿ã¾ã™æ‹¡å¼µå­ãŒåˆ¤åˆ¥ã§ããªã„ã®ã§ gzip 圧縮ã—㟠xcf ファイルã¨ã—ã¦ä¿å­˜ã—ã¾ã™ç¸¦ã®æ•°(_D)ノイズéžæ­£æ–¹å½¢ãƒ”クセルã§ã™ã€‚ç”»åƒãŒæ½°ã‚ŒãŸã‚ˆã†ã«è¦‹ãˆã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。ãªã—標準通常:æ­£è¦åŒ–ã—ã¦ã„ã¾ã™...切り抜ãã‚‚ã®ãŒã‚ã‚Šã¾ã›ã‚“色数M_RU エントリã®æ•° (1 - 16):区切りã®æ•°ã‚¿ã‚¤ãƒ«æ•°ãƒ•ãƒ¬ãƒ¼ãƒ æ•°(_F):å–り消ã—レベルã®æ•° (1 - 99)(_U):セル数:色数:値全体をカãƒãƒ¼ã™ã‚‹å‘¨æ³¢æ•°æ¨ªæ–¹å‘ã®ãƒ”ース数縦方å‘ã®ãƒ”ース数フィルタをé©ç”¨ã™ã‚‹å›žæ•°ç•°ãªã‚‹è‰²ã®æ•°: %d番å·ä»˜ã‚ªãƒ•ã‚»ãƒƒãƒˆ(_F):å‰æ™¯ã®ã¿(_N)ä¸é€æ˜Žåº¦(_P):オプション(_P)å‘ã(_R)ãã®ä»–(_T)出力 LPI(_U):出力レベル(_U):é‡ãªã‚Š(_V):オーãƒãƒ¼ãƒ¬ã‚¤(_V)オーãƒãƒ¼ã‚µãƒ³ãƒ—ル(_V):オブジェクト詳細XYZ 空間中ã®ã‚ªãƒ–ジェクト㮠X ä½ç½®XYZ 空間中ã®ã‚ªãƒ–ジェクト㮠Y ä½ç½®XYZ 空間中ã®ã‚ªãƒ–ジェクト㮠Z ä½ç½®å…«è§’å½¢ã¨å››è§’(_T)オフセット(_S):オフセット (1)角度オフセット(_A):å…¨ã¦ã®ãƒ™ã‚¯ãƒˆãƒ«ã«è§’度を与ãˆã¦ã‚ªãƒ•ã‚»ãƒƒãƒˆã™ã‚‹ã‚ªãƒ•ã‚»ãƒƒãƒˆ:油絵化ã—ã¦ã„ã¾ã™...油絵化(_F)...油絵化周辺部:フィルム上ã«ã¯:周辺部:レイヤー毎ã«1フレーム (ç½®æ›)背景ã®ã¿(_A)色ã¯ä¸€è‰²ã®ã¿ä¸é€æ˜Žåº¦(_A):最é©åŒ–(_T)オプション(_T)ä¸é€æ˜Žåº¦:é–‹ãファイルを開ãIFS フラクタルファイルを開ãオープン失敗最近使ã£ãŸãƒ•ã‚¡ã‚¤ãƒ«ã‚’é–‹ã'%s' ã‚’é–‹ã„ã¦ã„ã¾ã™...'%s' ã®ã‚µãƒ ãƒã‚¤ãƒ«ã‚’é–‹ã„ã¦ã„ã¾ã™...æ–¹ä½ãƒžãƒƒãƒ—エディタを開ãサイズマップエディタを開ã最é©åŒ–GIF 用最é©åŒ– (_G)å°åˆ·ã•ã‚Œã‚‹ç”»åƒã®ç¨®é¡žã«ã‚ˆã£ã¦å‡ºåŠ›ã‚’最é©åŒ–ã—ã¾ã™å‹•ç”»ã‚’最é©åŒ–ã—ã¦ã„ã¾ã™...オプションå‘ã(_I)左下ã®åŽŸç‚¹(_I)å‘ãæ–¹ä½ãƒžãƒƒãƒ—エディタå‘ã:オリジナルオリジナル強度オリジナル:ãã®ä»–(_H)ãã®ä»–ã®ã‚ªãƒ—ション出力出力レベル: 出力ã®ç¨®é¡ž:外å´ã®ç¨®é¡ž:オーãƒãƒ¼ãƒ¬ã‚¤ä¹—æ•°(P):PDF ドキュメントPGM ç”»åƒPNGPNG 㨠デルタ PNGPNG 圧縮レベル:PNG ç”»åƒPNM ç”»åƒPNM ç”»åƒPNM ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“PNM: ファイル読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼PNM: ä¸æ­£ãª X 解åƒåº¦ã§ã™ã€‚PNM: ä¸æ­£ãª Y 解åƒåº¦ã§ã™ã€‚PNM: ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚PNM: ä¸æ­£ãªæœ€å¤§å€¤ã§ã™ã€‚PNM: ファイルãŒåƒåˆ‡ã‚Œã¦ã„ã¾ã™ã€‚PPD ファイル:PPIPPM ç”»åƒPS ダイアモンドPS 四角 (ユークリッド点)ç´™(_A)極座標(_O)...プレビュー(_R)ページ %dページをã‚ãã£ã¦ã„ã¾ã™...ページ設定PageSetupDlg 失敗: %dページã‚ãり効果読ã¿è¾¼ã‚€ãƒšãƒ¼ã‚¸ (例: 1-4 ã‚ã‚‹ã„㯠1,3,5-7)ページ:æ画モード:Paint Shop Pro ç”»åƒç«¯ã‚‚å¡—ã‚‹æç”»ã—ã¦ã„ã¾ã™...パレットファイル(_E)パレット紙タイル紙タイル...パラメータ K:パラメータパラメータを '%s' ã«ä¿å­˜ã—ã¾ã—ãŸãƒ•ã‚¡ã‚¤ãƒ« '%s' ã®è§£æžã‚¨ãƒ©ãƒ¼ +%s貼り付ã‘クリップボードã‹ã‚‰è²¼ã‚Šä»˜ã‘ペーストçµæžœãƒšãƒ¼ã‚¹ãƒˆã—ã¦ã„ã¾ã™...パターンã§å¡—ã‚Šã¤ã¶ã™ãƒ‘ーセント黒パーセント(_B):白パーセント(_W):フィルタを通ã™ãƒ”クセルã®å‰²åˆä½ç›¸è§’ã€ç¯„囲㯠0-360フォング写真コピー写真Photoshop ç”»åƒéƒ¨å“æ•°:ピンãƒãƒ³ãƒ”クセル高(_H):ピクセル幅(_W):ピクセル値スケーリングピクセル化ピクセル化ã—ã¦ã„ã¾ã™...ピクセルé…ç½®(_A)ç”»åƒå‘¨ã‚Šã«ãƒ©ãƒ³ãƒ€ãƒ ãªã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚’é…ç½®ã™ã‚‹é…ç½®Planar (RRR,GGG,BBB)Planar RGBé¢ãƒ—ラズマプラズマ...å†ç”Ÿ/åœæ­¢å†ç”Ÿ: インストールを確èªã—ã¦ãã ã•ã„。設定ã®ã‚°ãƒ©ãƒ•ã‚’æãプラグインブラウザ複数形å極(_L):点光æºç‚¹å…‰æºæ¥µæ¥µåº§æ¨™æ¥µåº§æ¨™ã«å¤‰æ›ã—ã¦ã„ã¾ã™...ãƒãƒªã‚´ãƒ³ç¸¦ç½®ãä½ç½®ä½ç½® X:ä½ç½® Y:ä½ç½® Z:ページ中ã®ç”»åƒã®ä½ç½®ã‚’決ã‚ã¾ã™ã€‚ +第 1 ボタンã§ã®ã‚¯ãƒªãƒƒã‚¯ã¨ãƒ‰ãƒ©ãƒƒã‚°ã§ç”»åƒä½ç½®ã‚’指定ã—ã¾ã™ã€‚ +第 2 ボタンã§ã®ã‚¯ãƒªãƒƒã‚¯ã¨ãƒ‰ãƒ©ãƒƒã‚°ã§ç”»åƒã‚’正確ã«ç§»å‹•ã—ã¾ã™ã€‚移動å˜ä½ã¯ 1 ãƒã‚¤ãƒ³ãƒˆ (1/72 インãƒ) ã§ã™ã€‚ +第 3 (中) ボタンã§ã®ã‚¯ãƒªãƒƒã‚¯ã¨ãƒ‰ãƒ©ãƒƒã‚°ã§ç”»åƒã‚’ç”»åƒã‚µã‚¤ã‚ºå˜ä½ã§ç§»å‹•ã—ã¾ã™ã€‚ +shift キーを押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã‚„ドラッグã™ã‚‹ã¨ã€ç”»åƒã®ç§»å‹•ã‚’æ°´å¹³ã¾ãŸã¯åž‚ç›´æ–¹å‘ã®ã¿ã«ã—ã¾ã™ã€‚ +マウスã®ãƒ‰ãƒ©ãƒƒã‚°ä¸­ã«åˆ¥ã®ãƒœã‚¿ãƒ³ã‚’クリックã™ã‚‹ã¨ã€ç”»åƒã¯å…ƒã®ä½ç½®ã«æˆ»ã‚Šã¾ã™ã€‚PostScript ドキュメントPostScript ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å–り扱ãˆã¾ã›ã‚“プレビュー(_V)環境設定明度維æŒ(_L)元画åƒã‚’背景ã¨ã—ã¦æ®‹ã™ãƒ—レビュープレビューサイズプレビューサイズ(_S):ドラッグã«åˆã‚ã›ã¦ãƒ—レビュープレヴィットPrim アルゴリズムå°åˆ·è‰²èª¿æ•´å°åˆ·ã¨ +設定ä¿å­˜ç™½è‰²ã¨é»’色ã§å°åˆ· (ç°è‰²ã®å½±ã‚‚ãªã—)黒インクを使ã£ã¦ç°è‰²ã®å½±ã‚’å°åˆ·ãƒ•ã‚¡ã‚¤ãƒ«ã«å‡ºåŠ›PrintDlg 失敗: %dプリンタモデル:プリンタ設定プリンタãŒãƒ“ットマップをサãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã›ã‚“プリンタモデル:プリンタå:å°åˆ·ã—ã¦ã„ã¾ã™...確率グラデーション:プロシージャブラウザプロシージャブラウザ(_B)プログレッシブä¼æ¬æ˜Žåº¦ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ä¼æ¬ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ä¼æ¬(_A)Qビスト...å“質:R, G, B (通常)RGBRGB ä¿å­˜åž‹RGBARGBA/GRAYA ã®æ画対象ã§ã¯ã‚ã‚Šã¾ã›ã‚“。RLERLE 圧縮åŠå¾„ 2(_A):åŠå¾„(_A):乱数色相(_A):乱数種(_A):乱数度 (%)(_A):å†å¸°çš„(_E)赤(_E)赤閾値(_E):ç¹°ã‚Šè¿”ã—(_E):逆転(_E)åŠå¾„åŠå¾„æ–¹å‘グラデーション:ラジアンラジアン/Ï€åŠå¾„åŠå¾„:é¸æŠžã‚ªãƒ–ジェクトをå‰é¢ã«é¸æŠžã‚ªãƒ–ジェクトを最å‰é¢ã«ä¹±æ•°å½©åº¦(_M):乱数ランダムã«æµ´ã³ã›ã‚‹ 1.7ランダムã«ã¤ã¾ã‚€ 1.7乱数種:ランダムã«ã”ã¾ã‹ã™ 1.7乱数種(_S):乱数種共通乱数乱数ã€ãƒãƒ£ãƒ³ãƒãƒ«éžä¾å­˜ä¹±æ•°ã§ç¨®ã‚’å…ƒã«ã—ãŸä¹±æ•°å…±é€šç¨®ã‚’å…ƒã«ã—ãŸä¹±æ•°å€¤åŸŸä¸Šé™:値域下é™:並ã³:生生画åƒãƒ‡ãƒ¼ã‚¿ç”Ÿç”»åƒãƒ­ãƒ¼ãƒ€ãƒ¼ç”Ÿç”»åƒä¿å­˜å…‰ç·šæ画オプション中心å†è¨ˆç®—(_C)赤(_D)メモリã«é¸æŠžã—ãŸãƒ—リセットを読ã¿è¾¼ã¿ã¾ã™ãƒªã‚¢ãƒ«ã‚¿ã‚¤ãƒ ãƒ—レビュー中心をå†è¨ˆç®—ã™ã‚‹ãƒ—レビュー画åƒã‚’å†è¨ˆç®—ã™ã‚‹çŸ©å½¢èµ¤èµ¤å‘¨æ³¢æ•°(_F):赤ä½ç›¸å¤‰ä½(_P):赤:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:ã‚„ã‚Šç›´ã—最後ã®æ‹¡å¤§ã‚’ã‚„ã‚Šç›´ã—å†æç”»å†æ画プレビュー発光を減らã™(_L)彩度を減らã™(_S)å射性プレビューウィンドウã®æ›´æ–°è¦å‰‡çš„ãƒãƒªã‚´ãƒ³ã®å´é¢æ•°ç›¸å¯¾ãƒªãƒ³ã‚¯(_V)相対的確率:Released under the GNU General Public Licenseæµ®ã彫り:å†ãƒžãƒƒãƒ—色付ã‘ã—ã¦ã„ã¾ã™...削除(_V)å‹•ç”»ã®èƒŒæ™¯ã‚’削除ã—ã¦ã„ã¾ã™...カラーマップを削除ã—ã¦ã„ã¾ã™...フレアをæç”»ã—ã¦ã„ã¾ã™...Scalable Vector Graphics ã‚’æãWindows メタファイルã®æç”»æ画オプションSVG æç”»æç”»ã—㟠WMFレンダリング暴風ã«ã•ã‚‰ã—ã¦ã„ã¾ã™...フラクタルをæã„ã¦ã„ã¾ã™...IFS æç”»ã—ã¦ã„ã¾ã™ (%d/%d)...SVG æç”»...çƒä½“ã‚’æç”»ã—ã¦ã„ã¾ã™...超新星をæç”»ã—ã¦ã„ã¾ã™...タイルをæç”»ã—ã¦ã„ã¾ã™...風をæã„ã¦ã„ã¾ã™...ç½®æ›ãƒ—リセットã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’å†èª­ã¿è¾¼ã¿ã—ã¾ã™ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³å†èª­ã¿è¾¼ã¿ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’å†ã‚¹ã‚­ãƒ£ãƒ³ãƒ‘ラメータをåˆæœŸå€¤ã«æˆ»ã™ã“ã®ã‚«ãƒ¼ãƒ–をリセットã™ã‚‹é ˜åŸŸã®ã‚µã‚¤ã‚ºã‚’変ãˆã¾ã™ã‹?解åƒåº¦å°åˆ·ã®è§£åƒåº¦ã¨è³ªè§£åƒåº¦:ガイド範囲ã®çµæžœ: %d,%d ã‹ã‚‰ %d,%d (%d マス)ガイド範囲ã®çµæžœ: 0,0 (0 マス)レティãƒãƒƒã‚¯ã‚¹ (4/4): æ›´æ–°ã—ã¦ã„ã¾ã™...レティãƒãƒƒã‚¯ã‚¹ç”»åƒæ‹¡å¼µãƒ¬ãƒ†ã‚£ãƒãƒƒã‚¯ã‚¹å‡¦ç†ä¸­...レティãƒãƒƒã‚¯ã‚¹: フィルタをã‹ã‘ã¦ã„ã¾ã™...返り値元画åƒã«æˆ»ã™å·»æˆ»ã—å³å³ç¸:å³ç«¯å³:波紋波立ãŸã›ã¦ã„ã¾ã™...回転(_T):列(_W):ロãƒãƒ¼ãƒ„回転(_E):回転回転/拡大縮å°å›žè»¢ X:回転 Y:回転 Z:回転カラーマップを回転ã—ã¦ã„ã¾ã™...回転ã—ã¦ã„ã¾ã™...回転X 軸中心ã®å›žè»¢è§’Y 軸中心ã®å›žè»¢è§’Z 軸中心ã®å›žè»¢è§’回転角度:回転:è’ã•ä¸¸RLE エンコードSUN-raster ファイル画åƒSUNRAS ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“SVG ファイル㫠+サイズãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“!HSV 散乱(_C)...第二色(_E):後ã§ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é¸æŠž(_E)ã“ã“ã§é¸æŠž(_E):é¸æŠž(_E)カーソル表示(_H)ã™ã¼ã‚ã‚‹(_H)サイン波(_I)å¼·ã•æŒ‡æ•°(_T):å¼·ã•(_T):縞(_T)é¡Œå(_U):入れ替ãˆ(_W)渦巻 CCW(_W)アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚‚ä¿å­˜ã™ã‚‹ (RGBA/RGB)(_V)åŒã˜ã‚µãƒ³ãƒ—ルを解æž...サンプル色付ã‘サンプル密度(_D):サンプル:色をブラシã®ä¸­å¿ƒã«ã‚るピクセルã‹ã‚‰å–å¾—ã™ã‚‹å½©åº¦(_U)彩度(_R)彩度彩度ãƒãƒªã‚¨ãƒ¼ã‚·ãƒ§ãƒ³å½©åº¦å‘¨æ³¢æ•°(_E):彩度ä½ç›¸å¤‰ä½(_A):彩度:ä¿å­˜è¨­å®šã‚’ +ä¿å­˜å¤‰å½¢çµŒéŽã‚’ QBE ファイルã¨ã—ã¦ä¿å­˜ãƒ–ラシã®ä¿å­˜ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼è¨­å®šä¿å­˜ç¾çŠ¶ä¿å­˜ã‚«ãƒ¼ãƒ–点をファイルã«ä¿å­˜EXIF データをä¿å­˜ãƒ•ã‚¡ã‚¤ãƒ«ã‚’ä¿å­˜ç‚Žä¿å­˜ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ãƒ‘ラメータをä¿å­˜Gfig ç”»åƒã‚’ä¿å­˜ã‚¤ãƒ¡ãƒ¼ã‚¸ãƒžãƒƒãƒ—ä¿å­˜ãƒ©ã‚¤ãƒˆãƒ—リセットã®ä¿å­˜ãƒ‘ラメータをä¿å­˜èƒŒæ™¯è‰²ã‚’ä¿å­˜(_B)é€æ˜Žãƒ”クセルã®è‰²ã®å€¤ã‚’ä¿å­˜(_C)ガンマ値をä¿å­˜(_G)解åƒåº¦ã‚’ä¿å­˜(_R)アクティブãªãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚’ファイルã«ä¿å­˜BMP å½¢å¼ã§ä¿å­˜ã™ã‚‹ãƒ–ラシ形å¼ã§ä¿å­˜ãƒ–ラシパイプ形å¼ã§ä¿å­˜C ソースコード形å¼ã§ä¿å­˜ã™ã‚‹GIF å½¢å¼ã§ä¿å­˜IFS フラクタルファイルã¨ã—ã¦ä¿å­˜JPEG å½¢å¼ã§ä¿å­˜ã™ã‚‹MNG å½¢å¼ã§ä¿å­˜ã™ã‚‹PNG å½¢å¼ã§ä¿å­˜ã™ã‚‹PNM å½¢å¼ã§ä¿å­˜ã™ã‚‹PSP å½¢å¼ã§ä¿å­˜ã™ã‚‹ãƒ‘ターン形å¼ã§ä¿å­˜PostScript å½¢å¼ã§ä¿å­˜SGI å½¢å¼ã§ä¿å­˜SUNRAS å½¢å¼ã§ä¿å­˜ã™ã‚‹TGA å½¢å¼ã§ä¿å­˜TIFF å½¢å¼ã§ä¿å­˜ãƒ†ã‚­ã‚¹ãƒˆå½¢å¼ã§ä¿å­˜XBM å½¢å¼ã§ä¿å­˜XJT å½¢å¼ã§ä¿å­˜XPM å½¢å¼ã§ä¿å­˜ã™ã‚‹èƒŒæ™¯è‰²ã‚’ä¿å­˜é€æ˜Žãƒ”クセルã®è‰²ã®å€¤ã‚’ä¿å­˜(_V)コメントをä¿å­˜(_N)作æˆæ—¥æ™‚ã‚’ä¿å­˜(_T)作æˆæ—¥æ™‚ã‚’ä¿å­˜ç¾çŠ¶ä¿å­˜...ä¿å­˜å¤±æ•—ガンマ値をä¿å­˜ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚ªãƒ•ã‚»ãƒƒãƒˆã‚’ä¿å­˜(_F)解åƒåº¦ã‚’ä¿å­˜ç¾åœ¨ã®è¨­å®šã‚’特定ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å­˜ã—ã¾ã™ã‚«ãƒ¼ãƒ–をファイルã«ä¿å­˜ã‚µãƒ ãƒã‚¤ãƒ«ã‚’ä¿å­˜ä¿å­˜æ¸ˆ'%s' ã‚’ä¿å­˜ã—ã¦ã„ã¾ã™...鋸歯(_T)スケール 1(_A):散乱(_A):スケール 2(_L):拡大縮å°å¯èƒ½ãª SVG ç”»åƒè‰²ç›¸å€çŽ‡:明度å€çŽ‡:æ‹¡å¤§ç¸®å° X:æ‹¡å¤§ç¸®å° Y:æ‹¡å¤§ç¸®å° Z:拡大縮å°æ–¹æ³•:ドット毎インãƒã«åˆã‚ã›ã¦å°åˆ·ã‚’拡大縮å°ã—ã¾ã™ãƒšãƒ¼ã‚¸ã‚µã‚¤ã‚ºã«åˆã‚ã›ã¦å°åˆ·ã‚’拡大縮å°ã—ã¾ã™æ‹¡å¤§ç¸®å°:拡大縮å°:HSV 散乱RGB 散乱HSV 散乱...スクリーン画é¢å–ã‚Šè¾¼ã¿é¸æŠžéƒ¨åˆ†ã®ã¿(_L)説明ã§æ¤œç´¢(_B)åå‰ã§æ¤œç´¢(_N)検索中 - ãŠå¾…ã¡ä¸‹ã•ã„説明ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„åå‰ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„逆横置ã2ã¤ç›®ã®å®›è‰²äºŒæ¬¡ãƒ•ãƒ¬ã‚¢æ画オプション2ã¤ç›®ã®å…ƒè‰²ç¬¬äºŒè‰²ç§’後秒後乱数ã®ç¨® ("種を元ã«"モードã§ã®ã¿æœ‰åŠ¹)種:コンテキスト中ã®é¸æŠžéƒ¨åˆ†(_T)é¸æŠžå…¨ã¦é¸æŠžè‰²ã‚’é¸æŠžãƒ•ã‚£ãƒ«ãƒ è‰²ã‚’é¸æŠžHTML ファイルé¸æŠžç”»åƒãƒ•ã‚¡ã‚¤ãƒ«é¸æŠžæ¬¡ã‚’é¸æŠžç•ªå·ã®è‰²ã‚’é¸æŠžé¸æŠžãƒ‘レットファイルを読ã¿è¾¼ã‚€ãƒ”クセルé¸æŠžæ³•å‰ã‚’é¸æŠžé ˜åŸŸé¸æŠžå…¨ã¦ã‚’é¸æŠž(_A)å…¨ã¦ã‚’é¸æŠž(_A)å…¨ã¦ã‚’é¸æŠžã‚ªãƒ–ジェクトã®é¸æŠžéš£æŽ¥é ˜åŸŸã‚’é¸æŠžéš£æŽ¥é ˜åŸŸã‚’é¸æŠžæ—¢å­˜é ˜åŸŸã‚’é¸æŠžãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸ã‚“ã§ã‚³ãƒ¬ã‚¯ã‚·ãƒ§ãƒ³ã‚’å†ã‚¹ã‚­ãƒ£ãƒ³ã™ã‚‹å…‰æºè‰²é¸æŠžæ¬¡ã® smvector ã‚’é¸æŠžã™ã‚‹æ¬¡ã®ãƒ™ã‚¯ãƒˆãƒ«ã‚’é¸æŠžã™ã‚‹å‰ã® smvector ã‚’é¸æŠžã™ã‚‹å‰ã®ãƒ™ã‚¯ãƒˆãƒ«ã‚’é¸æŠžã™ã‚‹å°åˆ·ç”¨ã®åŸºæº–å˜ä½ã‚’é¸æŠžã—ã¾ã™å¸Œæœ›ã™ã‚‹å‡ºåŠ›å½¢å¼ã‚’é¸æŠžã—ã¦ãã ã•ã„å°åˆ·ã‚’è¡Œã„ãŸã„プリンタã®åå‰ã‚’é¸æŠžã—ã¦ãã ã•ã„(åå‰ã¨ã¯ãƒ—リンタã®åž‹ç•ªã‚„モデルã®ã“ã¨ã§ã¯ã‚ã‚Šã¾ã›ã‚“)用紙ã®å‘ãã‚’é¸æŠžã—ã¦ãã ã•ã„: 縦置ãã€æ¨ªç½®ãã€é€†ç¸¦ç½®ãã€é€†æ¨ªç½®ã拡大縮å°ã‚’ã€åˆ©ç”¨å¯èƒ½ãªãƒšãƒ¼ã‚¸ã‚µã‚¤ã‚ºã®ãƒ‘ーセントã¨ã€å‡ºåŠ›ã®ãƒ‰ãƒƒãƒˆæ¯Žã‚¤ãƒ³ãƒã®æ•°ã®ã©ã¡ã‚‰ã§è¡Œãªã†ã‹ã‚’é¸æŠžã—ã¾ã™ãƒ—リンタã®ãƒ¢ãƒ‡ãƒ«ã‚’é¸æŠžã—ã¦ãã ã•ã„é¸æŠž:é¸æŠžæ™‚:é¸æŠžé¸æŠžé ˜åŸŸã‹ã‚‰ãƒ‘スã®è©³ç´°è¨­å®šé¸æŠžã‚µã‚¤ã‚ºãŒå¶æ•°ã§ã¯ã‚ã‚Šã¾ã›ã‚“。 +並ã¹ã‚‹è¿·è·¯ãŒã†ã¾ãã§ããªã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。é¸æŠžé ˜åŸŸã‹ã‚‰ãƒ‘ス...é¸æŠžçš„ガウシアンã¼ã‹ã—é¸æŠžçš„ガウシアンã¼ã‹ã—...é¸æŠžå¯èƒ½ãªè¨­å®šèª­ã¿è¾¼ã¿é¸æŠžçš„読ã¿è¾¼ã¿å€‹ã€…ã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘をランダムã«é¸ã¶å€‹ã€…ã®ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã«ãƒ©ãƒ³ãƒ€ãƒ ã‚µã‚¤ã‚ºã‚’é¸ã¶çµæžœç”»åƒãŒç¶™ç›®ç„¡ã—ã«ä¸¦ã¹ã‚‰ã‚Œã‚‹ã‚ˆã†ã«ã™ã‚‹ã‹ã©ã†ã‹ç”»åƒã®å‘¨ã‚Šã«å‡ºã¦ã„ãよã†ã«ãƒ–ラシストロークã•ã›ã‚‹ã‹ã©ã†ã‹åŠçµ±åˆã—ã¦ã„ã¾ã™...最後ã«ç§»å‹•ãƒ¡ãƒ¼ãƒ«ã§ç”»åƒã‚’é€ã‚‹åˆ†é›¢æ–¹æ³•:1999å¹´ 9月 31日光æºè‰²è¨­å®šå°åˆ·ç”¨ã®åŸºæº–å˜ä½ã‚’センãƒãƒ¡ãƒ¼ãƒˆãƒ«ã«è¨­å®šã—ã¾ã™å°åˆ·ç”¨ã®åŸºæº–å˜ä½ã‚’インãƒã«è¨­å®šã—ã¾ã™å°åˆ·ã®æ˜Žã‚‹ã•ã‚’設定ã—ã¾ã™ã€‚ +0 ã¯çœŸã£é»’〠2 ã¯çœŸã£ç™½ã«ãªã‚Šã¾ã™å°åˆ·ã®ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã‚’設定ã™ã‚‹å°åˆ·ã®é«˜ã•ã‚’設定ã—ã¾ã™å°åˆ·ã‚µã‚¤ã‚ºã‚’ç”»åƒã®ã‚µã‚¤ã‚ºã«è¨­å®šã—ã¾ã™ç”»åƒã®å€çŽ‡(サイズ)を設定ã™ã‚‹å°åˆ·ã®å¹…を設定ã—ã¾ã™SetStretchBltMode 失敗 (警告)設定ã“ã®ãƒžãƒƒãƒ—ファイルã«å¯¾ã™ã‚‹è¨­å®šãƒ—リンタã®è¨­å®šãƒ—リンタã®è¨­å®š...é™°(_D)å½±ã¼ã‹ã—:å½±ã®æš—度:影深度:é™°:二次フレアã®å½¢çŠ¶æ˜Žçž­ç«¯æ˜Žçž­åŒ–明瞭ã«ã—ã¦ã„ã¾ã™...剪断:ãšã‚‰ã—ãšã‚Œã®é‡(_A):水平方å‘ã«ãšã‚‰ã™(_H)鉛直方å‘ã«ãšã‚‰ã™(_V)ãšã‚‰ã—ã¦ã„ã¾ã™...å転効果ã«ã™ã‚‹ã‹ã©ã†ã‹å…‰åº¦ã‚’ä¿å­˜ã™ã‚‹ã‹ã©ã†ã‹è¡¨ç¤ºæ¼¸è¿‘ç·šã®è¡¨ç¤ºç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ä¸­ã§ãƒ—レビュー(_P)å…¨ã¦ã®ã‚ªãƒ–ジェクトを表示URL部分ã®åŠ©è¨€ã‚’表示(_T)エリアãƒãƒ³ãƒ‰ãƒ«ã®è¡¨ç¤º(_H)色表示制御点表示グリッドã®è¡¨ç¤ºç”»åƒã®è¡¨ç¤ºæ¬¡ã®ã‚ªãƒ–ジェクトを表示ä½ç½®è¡¨ç¤ºãƒ¯ã‚¤ãƒ¤ãƒ•ãƒ¬ãƒ¼ãƒ ã§ãƒ—レビュー表示(_W)å‰ã®ã‚ªãƒ–ジェクトを表示é¸æŠžè¡¨ç¤ºãƒ—レビューワイヤーフレームã®è¡¨ç¤º/éžè¡¨ç¤ºå˜æ•°å½¢(_N):サイズ:シエルピンスキSilicon Graphics IRIS ç”»åƒå˜ç´”波状(_U)Sinå˜æ•°å½¢Sin 曲線Sin 曲線: レンダリングã—ã¦ã„ã¾ã™...波状サイズ大ãã• (%):大ãã•å€çŽ‡ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³:サイズマップエディタå°åˆ·ã—ãŸã„ç´™ã®ã‚µã‚¤ã‚ºã‚µã‚¤ã‚º:サイズ:最もé…ã„ãŒã€éšŽèª¿ã¤ãã®ç”»åƒã‚„写真ã«é©ã—ãŸæœ€ã‚‚正確ã§æ»‘らã‹ãªè‰²ã¼ã‹ã™æ»‘らã‹ãªãƒ‘レット(_T)...スムージング(_T)滑らã‹(_H)滑らã‹ãªãƒ‘レット滑らã‹ãªã‚µãƒ³ãƒ—ルX グラデーションを滑らã‹ã«ã—ã¦ã„ã¾ã™...Y グラデーションを滑らã‹ã«ã—ã¦ã„ã¾ã™...スムーズ化パラメータスムージング:エイリアシングã®æ»‘らã‹ã•ã‚µã‚¤ã‚ºãƒžãƒƒãƒ—ベクトルグリッドã«ä»˜ã‘るソーベルソーベル輪郭を抽出ã—ã¦ã„ã¾ã™...ソーベル輪郭抽出水平方å‘ソーベル(_H)鉛直方å‘ソーベル(_V)柔らã‹ã„発光ソリッドソリッドノイズソリッドノイズを生æˆã—ã¦ã„ã¾ã™...背景ベタ塗りベタ塗りã„ãã¤ã‹ã®ãƒ‡ãƒ¼ã‚¿ãŒå¤‰æ›´ã•ã‚Œã¦ã¾ã™!インデックスもã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç”»åƒã—ã‹ä¿å­˜ã§ãã¾ã›ã‚“。残念ã§ã™ãŒãƒãƒ£ãƒ³ãƒãƒ«ã‚„マスクを回転ã•ã›ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。å°åˆ·ã—よã†ã¨ã—ã¦ã„る用紙ã®çµ¦ç´™å…ƒç”»åƒæº 1:ç”»åƒæº 2:ファイル中ã®å…ƒãƒãƒ£ãƒ³ãƒãƒ«:å…ƒãƒãƒ£ãƒ³ãƒãƒ«:å…ƒã®è‰²ç¯„囲ソース...å°–ã‚Šã®æ•°(_I):æ‹¡æ•£(_R)...空間オーãƒãƒ¼ã‚µãƒ³ãƒ—ル(_T):é–“éš” (パーセント):é–“éš”:ãらã‚ããらã‚ã‹ã›ã¦ã„ã¾ã™...空間変æ›ç©ºé–“フィルタåŠå¾„(_F):ウィンドウãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“ç”»åƒã«é©ç”¨ã™ã‚‹æµ®ã彫り効果ã®å¼·åº¦ã‚’指定ã™ã‚‹ (å˜ä½ã¯ãƒ‘ーセント)ブラシã®ç¸¦æ¨ªæ¯”を指定ã™ã‚‹ãƒ†ã‚¯ã‚¹ãƒãƒ£ã®æ‹¡å¤§çŽ‡ (パーセントã§æŒ‡å®šã™ã‚‹)åå°„:çƒçƒé¢ãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼çƒé¢ãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼(_D)...çƒé¢å°–ã‚Šã®è§’度 (-1: 乱数)(_K):蜘蛛尖り密度(_E):å°–ã‚Šã®å¤ªã•:渦巻螺旋ã®å·»ã数スãƒãƒƒãƒˆåŠå¾„:スãƒãƒƒãƒˆæ‹¡æ•£æ‹¡æ•£é‡æ‹¡æ•£ã•ã›ã¦ã„ã¾ã™...å¼·ã•æŒ‡æ•°(_R):標準標準 (R,G,B)星型ã®ãƒã‚¤ãƒ³ãƒˆæ•°é–‹å§‹ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹(_I):開始角度:開始オフセット:StartPage 失敗コマé€ã‚Šã‚¹ãƒ†ãƒƒãƒ—サイズ:ピクセル値ãŒã“ã®å€¤ã‚ˆã‚Šã‚‚å°ã•ããªã£ãŸã‚‰æ­¢ã¾ã‚‹ä¼¸é•·HSV 伸長(_H)StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) 失敗ã€error = %d, y = %dストローク密度(_D):å¼·ãスタイル超新星(_P)...細分化:サブサンプリング:サブステップ:超新星超新星 色 é¸æŠžæ¸¦å·» CW(_I)二ã¤ã®ã‚«ãƒ¼ãƒ–を入れ替ãˆã‚‹æ¸¦å·»æœ€å¾Œã®ç¨®ã‚’用ã„㦠"種を元ã«" モードã«ç§»ã‚‹å時計周りã«å¤‰æ›´æ™‚計周りã«å¤‰æ›´ã‚·ãƒ³ãƒœãƒ«TIFF ãƒãƒ£ãƒ³ãƒãƒ«TIFF ç”»åƒTWAIN (書ã出ã—)...TWAIN (読ã¿è¾¼ã¿)...タイルå¯èƒ½(_I)タイル彩度(_I):タイルサイズ(_I):é€éŽèƒŒæ™¯(_R)乱れ(_U):乱れ(_U)表作æˆã‚ªãƒ—ション表オプションTarGA ç”»åƒtargetTel_netテンãƒãƒ©ãƒªãƒ†ãƒ³ãƒãƒ©ãƒªãƒ—ロシージャ文字アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°ãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ†ã‚¯ã‚¹ãƒãƒ£è¨­å®šãƒ†ã‚¯ã‚¹ãƒãƒ£å¤‰æ›ãƒ†ã‚¯ã‚¹ãƒãƒ£ãƒ†ã‚¯ã‚¹ãƒãƒ£GIMP ã‚’é¸ã‚“ã§ãã‚Œã¦ã‚ã‚ŠãŒã¨ã†GIF フォーマットã§ã¯ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ASCII文字ã—ã‹åˆ©ç”¨ã§ãã¾ã›ã‚“。コメントã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚GIMP ヘルプファイルãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“。The GIMPressionistGimpressionist デフォルトã“ã® PNG ファイルã§ã¯ã€ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒç”»åƒã®å¤–ã«é…ç½®ã•ã‚Œã‚‹ã‚ˆã†ãªã‚ªãƒ•ã‚»ãƒƒãƒˆãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã™ã€‚TIFF フォーマットã§ã¯ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ASCII文字ã—ã‹ +利用ã§ãã¾ã›ã‚“。コメントã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚セル詰ã‚物é‡ã€‚セルã®é–“隔。ãã‚Œãžã‚Œã®ãƒ”ースã®ç«¯ã®ãƒã‚¤ãƒ©ã‚¤ãƒˆã®é‡æœ€åˆã«ä½œæˆã™ã‚‹ãƒ–ラシã®è§’度範囲オリジナル画åƒã«æœ€ã‚‚è¿‘ãé©åˆã™ã‚‹ãƒ–ラシサイズãŒé¸ã°ã‚Œã‚‹è‰²ã¯ç™½é»’ã§ã™ã€‚デフォルトã®ã‚³ãƒ¡ãƒ³ãƒˆã¯ %d 文字ã¾ã§ã§ã™ã€‚å½±ã®æ·±ã•ã€ç‰©ä½“ã‹ã‚‰ã©ã®ç¨‹åº¦å½±ã‚’離ã™ã‹ã‚ªãƒªã‚¸ãƒŠãƒ«ç”»åƒã«æœ€ã‚‚è¿‘ããªã‚‹ã‚ˆã†ãªæ–¹å‘ãŒé¸ã°ã‚Œã‚‹ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ãŒã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã‚‹ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹ç”»åƒã®æœ€åˆã®åˆ—個々ã®ã‚»ãƒ«ã®é«˜ã•ã€‚値もã—ãã¯ãƒ‘ーセント。部分的ãªè‰²ç›¸ãŒã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚る部分的ãªè‰²ç›¸ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹GIF å½¢å¼ã§ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒä¸­ã«å®Ÿç”»åƒã‚µã‚¤ã‚ºã‚ˆã‚Š +大ããªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚GIF å½¢å¼ã§ã¯ã“ã‚Œã¯è¨±å¯ +ã•ã‚Œã¦ã„ã¾ã›ã‚“。 + +å…¨ã¦ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ç”»åƒã‚µã‚¤ã‚ºä»¥ä¸‹ã«åˆ‡ã‚Šè©°ã‚ã‚‹ã‹ã€ã‚­ãƒ£ãƒ³ã‚»ãƒ« +ã—ã¦ãã ã•ã„。XBM å½¢å¼ã§ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒã¯2色を超ãˆã‚‹ç”»åƒã§ã™ã€‚ + +ä¿å­˜ã™ã‚‹å‰ã«ç™½é»’ (1-bit) インデックス画åƒã«å¤‰æ›ã—ã¦ãã ã•ã„。作æˆã™ã‚‹æœ€å¤§ãƒ–ラシサイズレイヤーãŒé€æ˜Žä¿è­·ã•ã‚Œã¦ã„ã¾ã™ã€‚`%s' ã¨ã„ã†åå‰ã¯æ—¢ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™!`%s' ã¨ã„ã†åå‰ã¯æ—¢ã«ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™!使用ã™ã‚‹æ–¹å‘ (ブラシ) ã®æ•°è¡¨æž ã®ãƒ”クセル幅。使用ã™ã‚‹æ–¹å‘ (ブラシ) ã®æ•°ã‚ªãƒ•ã‚»ãƒƒãƒˆã¯ã€ãƒ—レビューをマウスã®ä¸­ãƒœã‚¿ãƒ³ã§ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦èª¿æ•´ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ブラシストロークã®ç›¸å¯¾çš„ãªå¯†åº¦è¦æ±‚ã•ã‚ŒãŸ URL ã¯èª­ã¿è¾¼ã‚ã¾ã›ã‚“:作æˆã™ã‚‹æœ€å°ãƒ–ラシサイズサイズマップベクトル欄。左クリックã§é¸æŠžã—㟠smvector を移動ã€å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤ãƒ³ãƒˆã‚’マウスã®æ–¹ã¸ã€ä¸­ã‚¯ãƒªãƒƒã‚¯ã§æ–°è¦ smvector を追加。最åˆã«ä½œæˆã™ã‚‹ãƒ–ラシã®é–‹å§‹è§’度ストロークã¯ç”»åƒã«äº¤å·®ã—ã¦å‡ç­‰ã«é…ç½®ã•ã‚Œã¾ã™ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã¯ "æµã‚Œã‚‹" パターンã«å¾“ã†è¡¨é¡Œæ–‡ã€‚å„セル中ã«é…ç½®ã•ã‚Œã‚‹æ–‡å­—ã“ã®å½¢å¼ã® SUN-raster ファイルã¯ä½¿ç”¨ã§ãã¾ã›ã‚“å˜ä½ã®çœç•¥å½¢ (例 "cm" ãªã‚‰ã°ã‚»ãƒ³ãƒãƒ¡ãƒ¼ãƒˆãƒ«)。å˜ä½ã®è¤‡æ•°å½¢ã€‚å˜ä½ã®å˜æ•°å½¢ã€‚ã“ã®å˜ä½ãŒæŒã¤ã‚·ãƒ³ãƒœãƒ« (例 "'" ãªã‚‰ã°ã‚¤ãƒ³ãƒ)。å˜ä½ã«ã‚·ãƒ³ãƒœãƒ«ãŒãªã„å ´åˆã¯å˜ä½ã®çœç•¥å½¢ã€‚ベクトル欄。左クリックã§é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®ç§»å‹•ã€å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤ãƒ³ãƒˆã‚’マウスã®æ–¹ã¸ã€ä¸­ã‚¯ãƒªãƒƒã‚¯ã§æ–°è¦ãƒ™ã‚¯ãƒˆãƒ«ã®è¿½åŠ ã€‚個々ã®ã‚»ãƒ«ã®å¹…。値もã—ãã¯ãƒ‘ーセント。整列ã•ã›ã‚‹ã«è¶³ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。GIMP ヘルプファイルã«é–¢ã™ã‚‹å•é¡Œã§ã™ã€‚ã“ã®æ¬„ã¯æ•°å€¤å…¥åŠ›æ¬„ã®ãŸã‚ã®ãƒ’ントã§ã™ã€‚"インãƒ" å˜ä½ã§è¡¨ã•ã‚Œã‚‹å…¥åŠ›æ¬„㌠2 æ¡ã® 10 進数ã®å ´åˆã«ä½•æ¡ã®æ•°ãŒåŒã˜ç¨‹åº¦ã®ã‚‚ã®ã‚’表ã™ã®ã‹ã‚’指定ã—ã¾ã™ã€‚ã“ã®è‰²æ·±åº¦ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“ã“れ㯠GIF ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“ã“ã®æ–‡å­—列㯠GIMP ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã§å˜ä½ã‚’識別ã™ã‚‹ãŸã‚ã«ä½¿ã‚ã‚Œã¾ã™ã€‚ã“ã®ãƒ„ールã¯ã‚ªãƒ—ションをæŒã£ã¦ã„ã¾ã›ã‚“ã—ãã„値(_L):アルファãƒãƒ£ãƒ³ãƒãƒ«é–¾å€¤ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«é–¾å€¤: åŠé€æ˜Žéƒ¨åˆ†ã‚’切り分ã‘ã¦ã„ã¾ã™...閾値:タイル間隔(_E):並ã¹ã‚‹ã‚¿ã‚¤ãƒ«é«˜(_H):タイルå‡æ•´åº¦(_N):タイル幅(_W):元画åƒã‚’並ã¹ã‚‹å…ƒç”»åƒã‚’並ã¹ã‚‹: ç„¡é™å¹³é¢ã«æœ‰åŠ¹æ–°ã—ã„大ãã•ã«ãªã‚‰ã¹ã‚‹ãれを並ã¹ã‚‹ã‚¿ã‚¤ãƒ«åŒ–å¯èƒ½ã‚¿ã‚¤ãƒ«ã‚’生æˆã—ã¦ã„ã¾ã™...並ã¹ã‚‹å›³å½¢ä¸¦ã¹ã¦ã„ã¾ã™...終り宛色下ã¸(_B)極座標ã¸(_P)å³ã¸(_R)上ã¸(_T)å·¦ã¸(_E)å®›:ツールオプションé“具上端左上(_L)上:ãŸãªã³ã(_A)TWAIN データを転é€ã—ã¦ã„ã¾ã™...å¤‰æ› %sé€æ˜Žé€éŽèƒŒæ™¯ã“ã®è‰²ã¨ã—ã¦æ‰±ã†ãƒ„リー表示境界枠を調ã¹ã‚‹ä¹±ã‚Œ:種類ã“ã®ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—å½¢å¼ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“プリンタã®ã‚¤ãƒ³ã‚¯ã®ç¨®é¡žé©ç”¨ã™ã‚‹å…‰æºã®ç¨®é¡žå°åˆ·ã—よã†ã¨ã—ã¦ã„る用紙ã®ç¨®é¡žãƒžãƒƒãƒ—ã™ã‚‹ã‚ªãƒ–ジェクトã®å½¢çŠ¶ç¨®é¡ž:URLURL: %s動画をéžæœ€é©åŒ–ã—ã¦ã„ã¾ã™...ã“れ以上点を追加ã§ãã¾ã›ã‚“。 +'%s' ã‚’ä¿å­˜ã§ãã¾ã›ã‚“。 psd ファイル形å¼ã¯ã€å¹…や高ã•ãŒ 30000 ピクセルを超ãˆã‚‹ç”»åƒã«ã¯å¯¾å¿œã—ã¦ã„ã¾ã›ã‚“。'%s' ã‚’ä¿å­˜ã§ãã¾ã›ã‚“。 psd ファイル形å¼ã¯ã€å¹…や高ã•ãŒ 30000 ピクセルを超ãˆã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’æŒã£ãŸç”»åƒã«ã¯å¯¾å¿œã—ã¦ã„ã¾ã›ã‚“。éžåœ§ç¸®æ™‚ã®ã‚µã‚¤ã‚º: %så–り消ã—最後ã®æ‹¡å¤§ã‚’å–り消ã—å˜ä½å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿å˜ä½ä¹—æ•°ã¯0ã§ã‚ã£ã¦ã¯ãªã‚Šã¾ã›ã‚“。å˜ä½å˜ä½:PNG ファイル '%s' ã§æœªçŸ¥ã®ã‚«ãƒ©ãƒ¼ãƒ¢ãƒ‡ãƒ«ã€‚原因ä¸æ˜Žå称未設定ä¸æ˜Žã¾ãŸã¯ä¸æ­£ãª BMP 圧縮形å¼ã§ã™ã€‚éžé¸æŠžé¸æŠžç„¡ã—éžã‚·ãƒ£ãƒ¼ãƒ—化マスク利用ã§ããªã„色数 (%d)!éžå¯¾å¿œã®ãƒ–ラシフォーマットサãƒãƒ¼ãƒˆã—ã¦ã„ãªã„å½¢å¼ã‹ã‚¯ãƒªãƒƒãƒ—ボードãŒç©ºã§ã™!å称未設定異常㪠PCX ã«ã¤ãã€ãŠæ‰‹ä¸Šã’ã§ã™æ›´æ–°ãƒ—レビュー更新(_P)左上左上 _X:左上 _Y:å³ä¸Šé€†ç¸¦ç½®ãstruct ã§ã¯ãªãマクロを使ã†(_E)GIMP ã®ã‚¬ã‚¤ãƒ‰ã‚’使ã†...Gimp ã®ã‚¬ã‚¤ãƒ‰ã‚’使ã†å…ƒã®ç”»åƒ +サイズを使用_1 byte Run-Length-Encoding を使ã†èƒŒæ™¯ã‚’é€æ˜Žã«ã™ã‚‹; å¡—ã£ãŸéƒ¨åˆ†ã ã‘ãŒè¦‹ãˆã¾ã™å¹³å‡å€¤ã‚’使ã†ã“ã®è‰²è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹å›žå¸°å€¤åŸŸã‚’使ã†:ã“ã®è‰²ãƒãƒ£ãƒ³ãƒãƒ«ã«å¯¾ã—ã¦ä¸‰è§’関数ã§ã¯ãªã線形マッピングを使用ã™ã‚‹çµæžœã«"ã™ã˜"ãŒè¦‹ãˆã«ãã„よã†ã« log log スムージングã™ã‚‹loglog スムージングを使ã†å¼·åº¦ãƒžãƒƒãƒ—を使ã†ãƒªã‚¹ã‚¿ãƒ¼ãƒˆãƒžãƒ¼ã‚«ãƒ¼ã‚’使用逆数を使ã†ã“ã®è‰²è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹ã‚µãƒ–カラー使用背景色を使ã†ç”»åƒã®è‰²ã‚’使ã†å‰æ™¯è‰²ã‚’使ã†å€¤(_A)明度明度をå転ã•ã›ã¦ã„ã¾ã™...明度ä¼æ¬æ˜Žåº¦ã‚’ä¼æ¬ã•ã›ã¦ã„ã¾ã™...明度ãƒãƒªã‚¨ãƒ¼ã‚·ãƒ§ãƒ³æ˜Žåº¦:ヴァン ゴッホ風 (LIC)ヴァン ゴッホ風 (LIC)...ベクトル角度(_A):ベクトル長(_L):ベクトル拡大:ベクトル鉛直方å‘基準(_T):鉛直鉛直色鉛直ã¨ã¦ã‚‚æš—ã„ビデオ(_D)...ビデオビデオパターンビデオ/RGB...ソースを表示ボロノイ-モードã§ã¯æŒ‡å®šã—ãŸç‚¹ã‹ã‚‰æœ€è¿‘接ã®ã‚µã‚¤ã‚ºãƒžãƒƒãƒ—ベクトルã®ã¿ãŒå½±éŸ¿ã‚’æŒã¡ã¾ã™ãƒœãƒ­ãƒŽã‚¤-モードã§ã¯æŒ‡å®šã—ãŸç‚¹ã«ã¤ã„ã¦æœ€è¿‘接ベクトルã®ã¿ãŒå½±éŸ¿ã‚’与ãˆã¾ã™æ¸¦(_X)渦_2渦_3WAI_SWMF ファイル㫠+サイズãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“!ãã‚‹ãã‚‹ã²ã­ã‚‹(_H)...元画åƒã¨(_I)外部マスクファイルã«æ›¸ã(_R)警告警告: +読ã¿è¾¼ã‚“ã ç”»åƒã¯ 16 ビット毎ãƒãƒ£ãƒ³ãƒãƒ«ã§ã™ã€‚ GIMP ã§ã¯ 8 ビットã—ã‹æ‰±ãˆãªã„ã®ã§ã€å¤‰æ›ã•ã‚Œã¾ã™ã€‚ã“ã®å¤‰æ›ã«ã‚ˆã‚Šæƒ…å ±ãŒå¤±ã‚ã‚Œã¾ã™ã€‚警告: +書ã込んã ãƒ•ã‚¡ã‚¤ãƒ«ã®é€æ˜Žè‰²ã¯ã€é€æ˜Žåº¦ã«å¯¾å¿œã—ã¦ã„ãªã„ビューアã§ã¯æ­£ã—ã表示ã•ã‚Œãªã„å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚警告: '%s' ã¯æ–°ã—ã„ CML explorer ã®ãƒ‘ラメータファイルã§ã™ã€‚警告: '%s' ã¯å¤ã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚警告: å…ƒã¨å…ˆã®ãƒãƒ£ãƒ³ãƒãƒ«ãŒåŒã˜ã§ã™ã€‚警告: サãƒãƒ¼ãƒˆã•ã‚Œãªã„レイヤーモード %d ㌠XJT ã«ä¿å­˜ã•ã‚Œã¾ã—ãŸè­¦å‘Š: サãƒãƒ¼ãƒˆã•ã‚Œãªã„パス種 %d ㌠XJT ã«ä¿å­˜ã•ã‚Œã¾ã—ãŸè­¦å‘Š: サãƒãƒ¼ãƒˆã•ã‚Œãªã„å˜ä½ç³» %d ㌠XJT ã«ä¿å­˜ã•ã‚Œã¾ã—ãŸãƒ¯ãƒ¼ãƒ—%d番目ã®ãƒ•ãƒ¬ãƒ¼ãƒ ã‚’æ­ªã‚ã¦ã„ã¾ã™...æ­ªã‚ã¦ã„ã¾ã™...æ³¢ã®ç¨®é¡žæ³¢æ³¢ç«‹ãŸã›ã¦ã„ã¾ã™...å°‘ã—web ブラウザãŒè¨­å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。 +環境設定ダイアログ㧠web ブラウザを設定ã—ã¦ãã ã•ã„。ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨ã€ç”»åƒã¯ç¸¦æ¨ªæ¯”を変更ã›ãšã«ä¸Žãˆã‚‰ã‚ŒãŸã‚µã‚¤ã‚ºã«åˆã†ã‚ˆã†ã«èª¿æ•´ã•ã‚Œã¦å‡ºåŠ›ã•ã‚Œã¾ã™ã€‚ãã‚‹ãã‚‹ã²ã­ã‚‹ãã‚‹ãã‚‹ã²ã­ã£ã¦ã„ã¾ã™...白風(_N)...å¹… (ピクセル):å°åˆ·ã—ãŸã„ç´™ã®æ¨ªã®ã‚µã‚¤ã‚ºå¹…:風ウィンドウWindows BMP ç”»åƒWindows アイコンã®é«˜ã•ã¨å¹…㯠255 ピクセルを超ãˆã¦ã¯ã„ã‘ã¾ã›ã‚“。(0,1) ã®å‚¾æ–œä¹—ã™ã‚‹p 㨠(0,1) ã®ä¹±æ•°ã§(0,1) ã®ä¹±æ•°ä¹—ã™ã‚‹(0,10) ã®ä¹±æ•°ä¹—ã™ã‚‹æœ¨ç›®ã‚³ãƒ”ーをæ“作(_Y)回り込ã¿æ›¸ã出ã—エラー発生X ビットマップイメージX PixMap ç”»åƒX æ‹¡å¤§ç¸®å° (サイズ)X ウィンドウダンプX:XBM オプションXJT ファイル中ã«ä¸æ˜Žãªãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ¢ãƒ¼ãƒ‰ %d ãŒã‚ã‚Šã¾ã™XJT ファイル中ã«ä¸æ˜Žãªãƒ‘ス種 %d ãŒã‚ã‚Šã¾ã™XJT ファイル中ã«ä¸æ˜Žãªå˜ä½ç³» %d ãŒã‚ã‚Šã¾ã™X最大:X最å°:XPM ファイルãŒä¸æ­£ã§ã™XWD-ファイル %s ã¯å½¢å¼ %d, 深度 %d +ピクセル当ãŸã‚Š %d ã§ã™ã€‚ +ç¾åœ¨ã“ã®å½¢å¼ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“。XY ä½ç½®:X_1:X_2:Y æ‹¡å¤§ç¸®å° (サイズ)Y:Y最大:Y最å°:Y_1:Y_2:黄黄:黄_Kã»ã¨ã‚“ã©ã®ãƒ–ラウザãŒã‚¯ãƒ©ãƒƒã‚·ãƒ¥ +ã™ã‚‹ã»ã©å·¨å¤§ãª HTML ファイルを +生æˆã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚フロートé¸æŠžãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。é¸æŠžé ˜åŸŸãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒãŸãªã„ç”»åƒã§ã¯ +カーソルマスクをä¿å­˜ã§ãã¾ã›ã‚“。Z æ‹¡å¤§ç¸®å° (サイズ)Z:ZSoft PCX ç”»åƒæœ€å°æž ã§åˆ‡ã‚ŠæŠœã„ã¦ã„ã¾ã™...拡大拡大表示拡大 (ç”»åƒã‚’大ããã™ã‚‹)縮å°è¡¨ç¤ºç¸®å° (ç”»åƒã‚’å°ã•ãã™ã‚‹)拡大スケール:拡大率_3x3çœç•¥å½¢(_A):ImageMap ã«ã¤ã„ã¦(_A)é©å¿œçš„(_A)付加的(_A)詳細(_A)詳細設定(_A)アルゴリズム(_A):アルファ(_A):アルファã—ãã„値(_A):é€æ˜Žåº¦ã‚’用ã„ãŸå¹³å‡(_A)アルファ(_A):é‡(_A):振幅(_A):角度(_A):動画化(_A)アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°(_A)キャンパス地(_A)...ç”»åƒã®è‡ªå‹•åˆ‡ã‚ŠæŠœã(_A)レイヤーã®è‡ªå‹•åˆ‡ã‚ŠæŠœã(_A)自動変æ›(_A)æ–¹å‘(_A):背景(_B)背景色(_B)基準 URL(_B):斜角幅(_B):åŒç·šå½¢(_B)é»’(_B)黒レベル(_B):é»’ãã™ã‚‹(_B)暴風(_B)混色(_B)ブラインド(_B)...é’(_B):é’(_B):ã¼ã‹ã—(_B)ã¼ã‹ã—åŠå¾„(_B):ç¸å¹³å‡(_B)...ç¸(_B):左下(_B)下(_B):直方体(_B)明るã•(_B):明るã•(_B)明るã•(_B):ブラシ(_B)ãƒã‚±ãƒ„サイズ(_B):ãƒãƒ³ãƒ—マップ(_B)ãƒãƒ³ãƒ—マップ(_B)...ãƒãƒ³ãƒ—マップ(_B):ãƒãƒ³ãƒ—マップ(_B)市æ¾æ¨¡æ§˜(_C)...消去(_C)色強調(_C)色交æ›(_C)...å˜è‰²å¡—ã‚Š(_C)...目次(_C)コンボリューション行列(_C)...コピー(_C)キュービズム(_C)...ã²ã‚“曲ã’ã‚‹(_C)...ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£(_D)...圧縮(_D)æ­ªã‚ã‚‹åŠå¾„(_D):éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–(_D)...指定ã—ãªã„å ´åˆã®ãƒ•ãƒ¬ãƒ¼ãƒ é–“ã®æ™‚é–“(_D):深度統åˆ(_D)...深度(_D):導函数(_D)説明(_D):詳細(_D):回折模様(_D)...æ•°å­—(_D):膨張(_D)ãšã‚‰ã—(_D)...ãšã‚Œ(_D):ゆãŒã‚ã‚‹(_D)分割(_D):ドット(_D)å‹•çš„(_D):ç¸å¼·èª¿(_E)輪郭(_E)...編集(_E)対象画åƒ(_E):æŒã¡ä¸Šã’(_E):エンボス(_E)エンボス(_E)..._EPS å½¢å¼ç”»åƒå…¨ä½“(_E)環境マップ(_E)明示ã—ãŸã‚¿ã‚¤ãƒ«(_E)ベキ指数(_E):å‰æ™¯/背景 å…‰æº(_F)ä¹—æ•°(_F):åˆæœŸå€¤ã«æˆ»ã™(_F)ファイル(_F)ファイルå(_F):フィルム(_F)...フィルタパック(_F)...フィルタ長(_F):背景を見ã¤ã‘ã‚‹(_F)ç”»åƒã«é«˜ã•ã‚’åˆã‚ã›ã‚‹(_F)ç‚Ž(_F)...フレア効果(_F)...フォント(_F):強制(_F)強制的ã«ä¸¦ã¹ã‚‹?(_F)å‰æ™¯/背景(_F)å‰æ™¯è‰²(_F)å‰æ™¯ã‚’ピークã«(_F)å½¢å¼(_F):フラクタルエクスプローラ(_F)...フラクタルトレース(_F)...フラクタル(_F)自由(_F)_FTP サイトGFlare(_G)...GIF コメント(_G):GIMPressionist(_G)...ガンマ(_G):ガウシアンã¼ã‹ã—(_G)...一般(_G)完全㪠HTML 文書を生æˆã™ã‚‹(_G)Gfig(_G)...ガラスタイル(_G)...発光åŠå¾„(_G):発色(_G):_Gopher勾é…/グラデーション(_G)グラデーションマップ(_G)グレー(_G):ç·‘(_G)ç·‘(_G):グレー(_G)グリッド(_G)グリッドサイズ(_G):グリッド(_G)...広ã’ã‚‹(_G)ギロãƒãƒ³(_G)HSL 色モデル(_H)高ã•(_H)高ã•(_H):ヘルプ(_H)_Hex マップéžè¡¨ç¤º(_H)高(_H)最大値ãƒãƒ£ãƒ³ãƒãƒ«ã‚’残ã™(_H)ä¿å­˜åº¦(_H):穴オフセット(_H):æ°´å¹³(_H)水平方å‘スタイル(_H):æ°´å¹³(_H)水平間隔(_H):ホット(_H)...色相(_H)色相回転(_H):æµ´ã³ã›(_H)..._ID:IFS フラクタル(_I)..._IIR対話型歪ã‚(_I)...典型(_I)識別å­ãƒ—レフィックス(_I): 無視(_I)å¯è¦–ã§ã‚‚一番下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’無視ã™ã‚‹(_I)å¹»(_I)...イメージマップ(_I)...インãƒ(_I)RGB 独立(_I)入力 SPI(_I):挿入(_I)強度(_I):インターレース(_I)インターレース (Adam7)(_I)å転(_I)_JPEG_JavaScriptジグソーパズル(_J)...NCSA 円を真ã«ã™ã‚‹(_K)縦横比を維æŒ(_K)元画åƒã®å‘¨è¾ºéƒ¨ã‚’残ã™(_K)çµæžœã®ç¬¦å·ã‚’ä¿å­˜ã™ã‚‹ (一方å‘ã®ã¿)(_K)削除(_K)_LZWラプラス(_L)大ãããšã‚‰ã™(_L)å·¦(_L)左開始ä½ç½®(_L):レンズ屈折度(_L): å…‰æº(_L)ライト効果(_L)...線幅を制é™ã™ã‚‹(_L)ç·šå½¢(_L)ç›´ç·š(_L)リンク(_L)åˆæœŸå€¤ã‚’読ã¿è¾¼ã¿(_L)ãƒãƒ£ãƒ³ãƒãƒ«å›ºå®š(_L)ç„¡é™ãƒ«ãƒ¼ãƒ—(_L)低(_L)下(_L)MIME(_M)ç”»åƒé€ä¿¡(_M)...繋ãŽç›®ç„¡ã—タイル(_M)周辺部をé€æ˜Žã«ã™ã‚‹(_M)逆方å‘マップ(_M)マップã®ç¨®é¡ž(_M):マッピング(_M)マスクファイル拡張å­(_M):マスクåŠå¾„(_M):マスクサイズ(_M):物質(_M)最大(%)(_M):最大深度(_M):RGB 値最大(_M)...最大 Δ(_M):è¿·è·¯(_M)...メタリック(_M)中間明度をピークã«(_M)中間色(_M)ミリメートル(_M)最å°å€¤(_M):ミラー(_M)ãã®ä»–ã®æ“作(_M)色相ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_M)赤ãƒãƒ£ãƒ³ãƒãƒ«ã‚’変更(_M)モノクロ(_M)モザイク(_M)...モーションã¼ã‹ã—(_M)...移動(_M)éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿(_N)...自然色(_N)ãƒã‚ªãƒ³(_N)...横ã®æ•°(_N)ノイズ強度(_N):ãªã—(_N)標準(_N)æ­£è¦åŒ–(_N)番å·é«˜ã•(_N):区切りã®æ•°(_N):ä¸é€æ˜Žåº¦(_O):差分最é©åŒ–(_O)パックビット(_P)ページã‚ãã‚Š(_P)...パレットã®ç¨®é¡ž(_P)紙タイル(_P)...パラメータ(_P)黒パーセント(_P)波長(_P):ä½ç›¸(_P):写真コピー(_P)...ã¤ã¾ã‚€(_P)...ã²ã­ã‚‹é‡(_P):ピンãƒãƒ³(_P)ã¸ã“ã‚“ã è¡¨é¢(_P)ピクセル化(_P)...プラズマ(_P)...å†ç”Ÿ(_P)...プラグインブラウザ(_P)複数形(_P):光沢(_P):多角形(_P)_PostScript レベル 2å‰ç½®å(_P):光度をä¿å­˜ã™ã‚‹(_P)プリセット(_P)プレビュー(_P)一回プレビュー(_P)プレビュー!(_P)å°åˆ·(_P)å°åˆ·(_P)...エリア情報ã®ãƒ—ロンプト(_P)ä¼æ¬çŽ‡(_P):æ­ªã¿ã‚’ã„れる(_P)Qビスト(_Q)...å“質(_Q):_RGBRGB 色モデル(_R)_RLE_RLE 圧縮_RLE エンコードåŠå¾„(_R)åŠå¾„ 1(_R):åŠå¾„(_R):乱数色相(_R):乱数種(_R):乱数を振る(_R)光線(_R)宛先(_R):矩形(_R)赤(_R):%s ã®ã‚„ã‚Šç›´ã—(_R)åå°„(_R)削除(_R)背景を削除(_R)レンダリング(_R)デフォルト URL å¿…é ˆ(_R)タイルメモリをä¿æŒã™ã‚‹(_R)レティãƒãƒƒã‚¯ã‚¹(_R)...å³(_R)å³ã®ç¸(_R):波紋(_R)...回転(_R)サンプル色付ã‘(_S)...彩度(_S)彩度(_S):コメントをファイルã«ä¿å­˜ã™ã‚‹(_S)åˆæœŸå€¤ã‚’ä¿å­˜(_S)目盛り分割(_S):目盛り(_S):RGB 散乱(_S)...ç”»é¢å–ã‚Šè¾¼ã¿(_S)...検索回数(_S):検索(_S):二次フレア(_S)é¸æŠžçš„ガウシアンã¼ã‹ã—(_S)...åŠçµ±åˆ(_S)é€ã‚Šä¸»(_S):周辺部を背景色ã«ã™ã‚‹(_S)周辺部をインデックス 0 ã«ã™ã‚‹(_S)設定(_S)ã‚ãã£ãŸä¸‹ã«å½±ã‚’ã¤ã‘ã‚‹(_S)明瞭化(_S)...明瞭度(_S):ãšã‚‰ã—(_S)...è¼ã(_S):カーソル表示(_S)Sin 曲線(_S)...サイズ(_S)サイズ(_S):ã”ã¾ã‹ã™(_S)...å°ã•ãã—ã¦ä¸¦ã¹ã‚‹(_S)...ã¼ã‹ã™(_S)スムージング(_S):グリッドã«ä»˜ã‘ã‚‹(_S)ソーベル(_S)...柔らã‹ã„発光(_S)...ソリッドノイズ(_S)...ãらã‚ã(_S)...速度(_S):å°–ã‚Šã®é•·ã•(_S):è¼»(_S):スãƒãƒƒãƒˆå½¢çŠ¶(_S):四角(_S)四角形(_S)ãšã‚‰ã™(_S)å¼·ã•(_S):コントラスト伸長(_S)ストロークæç”»(_S)シンボル(_S):_TWAIN...ターゲットフレームå/ID(_T): (オプション - フレーム環境ã®ã¿)太ã•(_T):ã—ãã„値(_T):アルファãƒãƒ£ãƒ³ãƒãƒ«é–¾å€¤(_T)...ã—ãã„値(_T):タイルãƒãƒ³ãƒ—マップ(_T)タイルサイズ(_T):並ã¹ã‚‹(_T)...タイトル(_T):é“å…·(_T)上開始ä½ç½®(_T):å³ä¸Š(_T)上(_T):é€æ˜Ž(_T)ã“ã®é ˜åŸŸãŒã‚¯ãƒªãƒƒã‚¯ã•ã‚ŒãŸå ´åˆã«ä½¿ç”¨ã™ã‚‹ _URL: (å¿…é ˆ)éžæœ€é©åŒ–(_U)å–り消ã—(_U)%s ã®å–り消ã—(_U)å‡ä¸€(_U)å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿(_U)éžã‚·ãƒ£ãƒ¼ãƒ—化マスク(_U)...æ›´æ–°(_U)上(_U)上ã®ç¸(_U)ã—ãã„値上é™(_U):GLib 型を使用ã™ã‚‹ (guint8*)(_U)背景色を使用(_U)Cellspan を使ã†(_U)å–ã£æ‰‹ã‚’二å€ã«ã™ã‚‹(_U)強度アルゴリズムを使用ã™ã‚‹(_U)(ä¸å¯è¦–ã§ã‚‚)一番下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’基準ã«ä½¿ã†(_U)Uuencode(_U)明度(_V)明度å転(_V)明度ä¼æ¬(_V)...明度(_V):ヴァン ゴッホ風 (LIC)(_V)...種類(_V):åž‚ç›´é–“éš”(_V):鉛直(_V)鉛直方å‘スタイル(_V):鉛直(_V):表示(_V)ボロノイ(_V)ワープ(_W)ワープ(_W)...æ°´ä½(_W):波長(_W):æ³¢(_W)..._Web サイトãã‚‹ãる角度(_W):白(_W)白レベル(_W):幅広縞(_W)å¹…(_W)å¹…(_W):風(_W)ホワイトノイズã¨(_W)回り込ã¿(_W)回り込ã¿(_W)ホットスãƒãƒƒãƒˆå€¤ã‚’書ã(_W)_X 拡大縮å°:_X ãšã‚‰ã—:X オフセット(_X):比率 _X:_X サイズ:_X10 å½¢å¼ãƒ“ットマップ_X:_Y 拡大縮å°:_Y ãšã‚‰ã—:Y オフセット(_Y):比率 _Y:_Y サイズ:_Y:黄(_Y)_Z:最å°æž ã§åˆ‡ã‚ŠæŠœã(_Z)拡大(_Z)拡大(_Z):'Default' ãŒä½œæˆã•ã‚Œã¾ã—ãŸã€‚å˜ä¸€ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’å–り込む(_S)å–ã‚Šè¾¼ã¿ã¯ã‚¢ãƒ«ãƒ•ã‚¡autostretch_hsv: カラーマップ㌠NULL ã§ã™! 終了ã—ã¾ã™... +é»’é’blueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip アーカイブc_astretch: カラーマップ㌠NULL ã§ã™! 終了ã—ã¾ã™... +cmシアンシアン_ké›»å­ãƒ¡ãƒ¼ãƒ«(_M)ç·‘gzip アーカイブ色相ä¸æ­£ãªå½¢å¼ã® GFlare ファイルã§ã™: %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 中ã«è¦‹ä»˜ã‹ã‚Šã¾ã›ã‚“ピクセルピクセルを上ã¸(_T)ピクセルを左ã¸(_E)ピクセル/%a赤redness_cr470redness_cr470fredness_cr709redness_cr709f彩度段階化 sin^psin^p 型関数ファイル拡張å­ã«é–¢ã™ã‚‹ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸç”»é¢å…¨ä½“ã‚’å–り込む(_W)ã‚’é€æ˜Žåº¦ã«æ˜Žåº¦X (ピクセル)Y (ピクセル)黄黄_k \ No newline at end of file diff -uraN gimp-2.2.8/po-plug-ins/ja.po gimp-2.2.9/po-plug-ins/ja.po --- gimp-2.2.8/po-plug-ins/ja.po 2005-05-08 23:42:11.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/ja.po 2005-09-20 18:24:05.000000000 +0200 @@ -9,9 +9,9 @@ msgstr "" "Project-Id-Version: gimp gimp-2-2\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2005-09-17 19:56+0900\n" +"PO-Revision-Date: 2005-09-10 19:00+0900\n" +"Last-Translator: \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "" "gimprc 中㫠%s ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“:\n" "(%s \"%s\")\n" -"ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ä¸‹ã•ã„." +"ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ä¸‹ã•ã„。" #: ../plug-ins/FractalExplorer/Dialogs.c:543 #: ../plug-ins/FractalExplorer/Dialogs.c:1647 @@ -61,11 +61,11 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:655 msgid "Undo last zoom" -msgstr "最後ã®æ‹¡å¤§ã‚’アンドゥ" +msgstr "最後ã®æ‹¡å¤§ã‚’å–り消ã—" #: ../plug-ins/FractalExplorer/Dialogs.c:665 msgid "Redo last zoom" -msgstr "最後ã®æ‹¡å¤§ã‚’リドゥ" +msgstr "最後ã®æ‹¡å¤§ã‚’ã‚„ã‚Šç›´ã—" #: ../plug-ins/FractalExplorer/Dialogs.c:680 msgid "_Parameters" @@ -116,7 +116,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 msgid "CX:" @@ -127,8 +127,8 @@ "Change the CX value (changes aspect of fractal, active with every fractal " "but Mandelbrot and Sierpinski)" msgstr "" -"CX 値を変ãˆã‚‹. (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ã, å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹" -"ペクト比ãŒå¤‰ã‚ã‚‹.)" +"CX 値を変ãˆã‚‹ (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ãã€å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹ãƒš" +"クト比ãŒå¤‰ã‚ã‚‹)。" #: ../plug-ins/FractalExplorer/Dialogs.c:764 msgid "CY:" @@ -139,8 +139,8 @@ "Change the CY value (changes aspect of fractal, active with every fractal " "but Mandelbrot and Sierpinski)" msgstr "" -"CY 値を変ãˆã‚‹. (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ã, å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹" -"ペクト比ãŒå¤‰ã‚ã‚‹.)" +"CY 値を変ãˆã‚‹ (マンデルブローã¨ã‚·ã‚¨ãƒ«ãƒ”ンスキを除ãã€å…¨ã¦ã®ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã®ã‚¢ã‚¹ãƒš" +"クト比ãŒå¤‰ã‚ã‚‹)。" #: ../plug-ins/FractalExplorer/Dialogs.c:784 msgid "Load a fractal from file" @@ -211,7 +211,7 @@ #: ../plug-ins/FractalExplorer/Dialogs.c:898 msgid "Change the number of colors in the mapping" -msgstr "マッピクングã™ã‚‹è‰²æ•°ã‚’変ãˆã‚‹" +msgstr "マッピングã™ã‚‹è‰²æ•°ã‚’変ãˆã‚‹" #: ../plug-ins/FractalExplorer/Dialogs.c:905 msgid "Use loglog smoothing" @@ -230,7 +230,7 @@ #. to figure out which button the user pushed, etc. #. Not my design, please don't blame me -- njl #: ../plug-ins/FractalExplorer/Dialogs.c:928 ../plug-ins/common/compose.c:128 -#: ../plug-ins/common/compose.c:138 ../plug-ins/common/fp.c:217 +#: ../plug-ins/common/compose.c:138 ../plug-ins/common/fp.c:228 msgid "Red:" msgstr "赤:" @@ -239,7 +239,7 @@ msgstr "赤ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹" #: ../plug-ins/FractalExplorer/Dialogs.c:938 ../plug-ins/common/compose.c:129 -#: ../plug-ins/common/compose.c:139 ../plug-ins/common/fp.c:218 +#: ../plug-ins/common/compose.c:139 ../plug-ins/common/fp.c:229 msgid "Green:" msgstr "ç·‘:" @@ -248,7 +248,7 @@ msgstr "ç·‘ãƒãƒ£ãƒ³ãƒãƒ«ã®å¼·åº¦ã‚’変ãˆã‚‹" #: ../plug-ins/FractalExplorer/Dialogs.c:948 ../plug-ins/common/compose.c:130 -#: ../plug-ins/common/compose.c:140 ../plug-ins/common/fp.c:219 +#: ../plug-ins/common/compose.c:140 ../plug-ins/common/fp.c:230 msgid "Blue:" msgstr "é’:" @@ -322,7 +322,7 @@ msgid "" "If you enable this option higher color values will be swapped with lower " "ones and vice versa" -msgstr "ã“ã®ã‚ªãƒ—ションを有効ã«ã™ã‚‹ã¨, 高ã„色値ã¨ä½Žã„色値ãŒé€†è»¢ã•ã‚Œã‚‹." +msgstr "ã“ã®ã‚ªãƒ—ションを有効ã«ã™ã‚‹ã¨ã€é«˜ã„色値ã¨ä½Žã„色値ãŒé€†è»¢ã•ã‚Œã‚‹ã€‚" #. Greenmode radio frame #: ../plug-ins/FractalExplorer/Dialogs.c:1007 @@ -350,11 +350,10 @@ "Create a color-map with the options you specified above (color density/" "function). The result is visible in the preview image" msgstr "" -"上ã§æŒ‡å®šã—ãŸã¨ãŠã‚Šã®ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—を作る (色密度/関数). çµæžœã¯ãƒ—レビュー画åƒã®" -"通り." +"上ã§æŒ‡å®šã—ãŸã¨ãŠã‚Šã®ã‚«ãƒ©ãƒ¼ãƒžãƒƒãƒ—を作る (色密度/関数)。çµæžœã¯ãƒ—レビュー画åƒã®" +"通り。" #: ../plug-ins/FractalExplorer/Dialogs.c:1120 -#, fuzzy msgid "Apply active gradient to final image" msgstr "最終画åƒã«ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’é©ç”¨ã™ã‚‹" @@ -387,7 +386,7 @@ #: ../plug-ins/common/sunras.c:513 ../plug-ins/common/tga.c:1030 #: ../plug-ins/common/tiff.c:1825 ../plug-ins/common/xbm.c:996 #: ../plug-ins/common/xwd.c:577 ../plug-ins/fits/fits.c:450 -#: ../plug-ins/flame/flame.c:443 ../plug-ins/gfig/gfig.c:783 +#: ../plug-ins/flame/flame.c:443 ../plug-ins/gfig/gfig.c:788 #: ../plug-ins/gfli/gfli.c:715 ../plug-ins/ifscompose/ifscompose.c:2395 #: ../plug-ins/winicon/icosave.c:243 ../plug-ins/xjt/xjt.c:1263 #: ../plug-ins/xjt/xjt.c:1702 @@ -416,15 +415,15 @@ #: ../plug-ins/common/channel_mixer.c:966 ../plug-ins/common/curve_bend.c:913 #: ../plug-ins/common/dicom.c:290 ../plug-ins/common/gbr.c:327 #: ../plug-ins/common/gifload.c:296 ../plug-ins/common/gih.c:648 -#: ../plug-ins/common/jpeg.c:946 ../plug-ins/common/jpeg.c:2607 +#: ../plug-ins/common/jpeg.c:946 ../plug-ins/common/jpeg.c:2609 #: ../plug-ins/common/mng.c:1117 ../plug-ins/common/pat.c:300 #: ../plug-ins/common/pcx.c:302 ../plug-ins/common/pix.c:332 #: ../plug-ins/common/png.c:674 ../plug-ins/common/pnm.c:432 -#: ../plug-ins/common/postscript.c:990 ../plug-ins/common/psd.c:1759 +#: ../plug-ins/common/postscript.c:990 ../plug-ins/common/psd.c:1780 #: ../plug-ins/common/psp.c:1457 ../plug-ins/common/raw.c:230 #: ../plug-ins/common/raw.c:635 ../plug-ins/common/spheredesigner.c:1990 -#: ../plug-ins/common/sunras.c:382 ../plug-ins/common/svg.c:311 -#: ../plug-ins/common/svg.c:694 ../plug-ins/common/tga.c:415 +#: ../plug-ins/common/sunras.c:382 ../plug-ins/common/svg.c:312 +#: ../plug-ins/common/svg.c:705 ../plug-ins/common/tga.c:415 #: ../plug-ins/common/tiff.c:510 ../plug-ins/common/xbm.c:719 #: ../plug-ins/common/xwd.c:422 ../plug-ins/faxg3/faxg3.c:220 #: ../plug-ins/fits/fits.c:337 ../plug-ins/flame/flame.c:412 @@ -432,23 +431,19 @@ #: ../plug-ins/gfli/gfli.c:460 ../plug-ins/help/domain.c:423 #: ../plug-ins/winicon/icoload.c:126 ../plug-ins/xjt/xjt.c:2526 #: ../plug-ins/xjt/xjt.c:2534 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for reading: %s" -msgstr "犬出ã™ãƒ•ã‚¡ã‚¤ãƒ« '%s' ãŒé–‹ã‘ã¾ã›ã‚“: %s" +msgstr "読ã¿è¾¼ã‚€ãƒ•ã‚¡ã‚¤ãƒ« '%s' ãŒé–‹ã‘ã¾ã›ã‚“: %s" #: ../plug-ins/FractalExplorer/Dialogs.c:2102 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a FractalExplorer file" -msgstr "" -"'%s'\n" -"ã¯ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ローラã®å½¢å¼ã§ã¯ã‚ã‚Šã¾ã›ã‚“" +msgstr "'%s' ã¯ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«ã‚¨ã‚¯ã‚¹ãƒ—ローラã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã¯ã‚ã‚Šã¾ã›ã‚“" #: ../plug-ins/FractalExplorer/Dialogs.c:2108 -#, fuzzy, c-format +#, c-format msgid "'%s' is corrupt. Line %d Option section incorrect" -msgstr "" -"'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™.\n" -"オプション㮠%d 行目ãŒä¸æ­£ã§ã™" +msgstr "'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™ã€‚オプション㮠%d 行目ãŒä¸æ­£ã§ã™" #: ../plug-ins/FractalExplorer/FractalExplorer.c:269 msgid "_Fractal Explorer..." @@ -460,11 +455,9 @@ #: ../plug-ins/FractalExplorer/FractalExplorer.c:772 #: ../plug-ins/gflare/gflare.c:3128 -#, fuzzy, c-format +#, c-format msgid "Are you sure you want to delete \"%s\" from the list and from disk?" -msgstr "" -"\"%s\" を一覧ã¨ãƒ‡ã‚£ã‚¹ã‚¯ã‹ã‚‰\n" -"削除ã—ã¦ã‚‚よã„ã§ã™ã‹?" +msgstr "\"%s\" を一覧ã¨ãƒ‡ã‚£ã‚¹ã‚¯ã‹ã‚‰å‰Šé™¤ã—ã¦ã‚‚よã„ã§ã™ã‹?" #: ../plug-ins/FractalExplorer/FractalExplorer.c:776 msgid "Delete Fractal" @@ -494,7 +487,7 @@ "File '%s' is corrupt.\n" "Line %d Option section incorrect" msgstr "" -"'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™.\n" +"'%s' ã¯å£Šã‚Œã¦ã„ã¾ã™ã€‚\n" "オプション㮠%d 行目ãŒä¸æ­£ã§ã™" #: ../plug-ins/FractalExplorer/FractalExplorer.c:1240 @@ -552,7 +545,6 @@ msgstr "フィルタé©ç”¨æ™‚ã«æ–°è¦ç”»åƒã‚’作æˆã™ã‚‹" #: ../plug-ins/Lighting/lighting_ui.c:294 -#, fuzzy msgid "High _Quality preview" msgstr "高å“ä½ãƒ—レビュー(_Q)" @@ -724,9 +716,8 @@ msgstr "XYZ 空間中ã§ã®å…‰æºã®å‘ãã® Z æ–¹å‘è¦ç´ " #: ../plug-ins/Lighting/lighting_ui.c:502 -#, fuzzy msgid "I_solate" -msgstr "圧縮(_D)" +msgstr "å˜ç‹¬(_S)" #: ../plug-ins/Lighting/lighting_ui.c:512 msgid "Lighting preset:" @@ -737,9 +728,8 @@ msgstr "æ質設定" #: ../plug-ins/Lighting/lighting_ui.c:576 -#, fuzzy msgid "_Glowing:" -msgstr "æµã‚Œã‚‹" +msgstr "発色(_G):" #: ../plug-ins/Lighting/lighting_ui.c:592 #: ../plug-ins/MapObject/mapobject_ui.c:859 @@ -756,9 +746,8 @@ msgstr "å…‰æºã«ç…§ã‚‰ã•ã‚ŒãŸå ´åˆã®å…ƒã®è‰²ã®å¼·åº¦" #: ../plug-ins/Lighting/lighting_ui.c:634 -#, fuzzy msgid "_Shiny:" -msgstr "_Sin" +msgstr "è¼ã(_S):" #: ../plug-ins/Lighting/lighting_ui.c:650 #: ../plug-ins/MapObject/mapobject_ui.c:960 @@ -767,7 +756,7 @@ #: ../plug-ins/Lighting/lighting_ui.c:662 msgid "_Polished:" -msgstr "" +msgstr "光沢(_P):" #: ../plug-ins/Lighting/lighting_ui.c:678 #: ../plug-ins/MapObject/mapobject_ui.c:989 @@ -780,7 +769,6 @@ msgstr "メタリック(_M)" #: ../plug-ins/Lighting/lighting_ui.c:723 -#, fuzzy msgid "E_nable bump mapping" msgstr "ãƒãƒ³ãƒ—マップを使ã†(_N)" @@ -789,7 +777,6 @@ msgstr "ãƒãƒ³ãƒ—マップã®æœ‰åŠ¹/無効 (ç”»åƒæ·±åº¦)" #: ../plug-ins/Lighting/lighting_ui.c:755 -#, fuzzy msgid "Bumpm_ap image:" msgstr "ãƒãƒ³ãƒ—マップ画åƒ(_A):" @@ -826,7 +813,6 @@ msgstr "ãƒãƒ³ãƒ—マップã®æœ€å¤§ã®é«˜ã•:" #: ../plug-ins/Lighting/lighting_ui.c:811 -#, fuzzy msgid "E_nable environment mapping" msgstr "環境マップを使ã†(_N)" @@ -896,29 +882,24 @@ msgstr "ライトプリセットã®èª­ã¿è¾¼ã¿" #: ../plug-ins/MapObject/mapobject_apply.c:273 -#, fuzzy msgid "Map to Plane..." -msgstr "ラプラス変æ›ã—ã¦ã„ã¾ã™..." +msgstr "é¢ã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™..." #: ../plug-ins/MapObject/mapobject_apply.c:276 -#, fuzzy msgid "Map to Sphere..." -msgstr "詳細設定..." +msgstr "çƒã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™..." #: ../plug-ins/MapObject/mapobject_apply.c:279 -#, fuzzy msgid "Map to Box..." -msgstr "マップ情報..." +msgstr "直方体ã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™..." #: ../plug-ins/MapObject/mapobject_apply.c:282 -#, fuzzy msgid "Map to Cylinder..." -msgstr "円柱" +msgstr "円柱ã«ãƒžãƒƒãƒ—ã—ã¦ã„ã¾ã™..." #: ../plug-ins/MapObject/mapobject_main.c:199 -#, fuzzy msgid "Map _Object..." -msgstr "オブジェクトã«ãƒžãƒƒãƒ—" +msgstr "オブジェクトã«ãƒžãƒƒãƒ—(_O)..." #: ../plug-ins/MapObject/mapobject_ui.c:248 #: ../plug-ins/MapObject/mapobject_ui.c:1340 @@ -995,7 +976,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 @@ -1197,7 +1178,6 @@ msgstr "拡大 (ç”»åƒã‚’大ããã™ã‚‹)" #: ../plug-ins/MapObject/mapobject_ui.c:1455 -#, fuzzy msgid "Show preview _wireframe" msgstr "ワイヤフレームã§ãƒ—レビュー表示(_W)" @@ -1207,7 +1187,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" @@ -1225,7 +1205,7 @@ #: ../plug-ins/common/jpeg.c:953 ../plug-ins/common/pat.c:305 #: ../plug-ins/common/pcx.c:307 ../plug-ins/common/pix.c:338 #: ../plug-ins/common/png.c:681 ../plug-ins/common/pnm.c:437 -#: ../plug-ins/common/postscript.c:996 ../plug-ins/common/psd.c:1764 +#: ../plug-ins/common/postscript.c:996 ../plug-ins/common/psd.c:1785 #: ../plug-ins/common/raw.c:640 ../plug-ins/common/sunras.c:436 #: ../plug-ins/common/tga.c:420 ../plug-ins/common/tiff.c:515 #: ../plug-ins/common/wmf.c:952 ../plug-ins/common/xbm.c:724 @@ -1249,13 +1229,13 @@ #: ../plug-ins/bmp/bmpread.c:260 ../plug-ins/bmp/bmpread.c:279 #: ../plug-ins/bmp/bmpread.c:300 ../plug-ins/bmp/bmpread.c:313 #: ../plug-ins/bmp/bmpread.c:319 -#, fuzzy, c-format +#, c-format msgid "Error reading BMP file header from '%s'" msgstr "'%s' ã‹ã‚‰ BMP ファイルヘッダ読ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ" #: ../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... @@ -1265,10 +1245,10 @@ #: ../plug-ins/common/compose.c:625 ../plug-ins/common/decompose.c:595 #: ../plug-ins/common/dicom.c:442 ../plug-ins/common/film.c:946 #: ../plug-ins/common/gifload.c:864 ../plug-ins/common/jpeg.c:1113 -#: ../plug-ins/common/jpeg.c:2474 ../plug-ins/common/pcx.c:334 +#: ../plug-ins/common/jpeg.c:2476 ../plug-ins/common/pcx.c:334 #: ../plug-ins/common/pcx.c:340 ../plug-ins/common/pix.c:374 #: ../plug-ins/common/png.c:808 ../plug-ins/common/pnm.c:517 -#: ../plug-ins/common/psd.c:2174 ../plug-ins/common/raw.c:677 +#: ../plug-ins/common/psd.c:2195 ../plug-ins/common/raw.c:677 #: ../plug-ins/common/smooth_palette.c:257 ../plug-ins/common/sunras.c:925 #: ../plug-ins/common/tga.c:929 ../plug-ins/common/tiff.c:848 #: ../plug-ins/common/tile.c:266 ../plug-ins/common/winclipboard.c:579 @@ -1281,16 +1261,14 @@ #: ../plug-ins/bmp/bmpwrite.c:136 ../plug-ins/common/dicom.c:617 #: ../plug-ins/common/pcx.c:579 -#, fuzzy msgid "Cannot save images with alpha channel." -msgstr "PNM ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“" +msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã¯ä¿å­˜ã§ãã¾ã›ã‚“。" #: ../plug-ins/bmp/bmpwrite.c:182 ../plug-ins/common/dicom.c:632 #: ../plug-ins/common/postscript.c:1114 ../plug-ins/common/xwd.c:568 #: ../plug-ins/fits/fits.c:441 ../plug-ins/xjt/xjt.c:1677 -#, fuzzy msgid "Cannot operate on unknown image types." -msgstr "ä¸æ˜Žãªç”»åƒç¨®ã¯æ‰±ãˆã¾ã›ã‚“" +msgstr "ä¸æ˜Žãªç”»åƒç¨®ã¯æ‰±ãˆã¾ã›ã‚“。" #. And let's begin the progress #. init the progress meter @@ -1354,7 +1332,7 @@ #: ../plug-ins/common/AlienMap2.c:153 msgid "Green fr_equency:" -msgstr "緑周波数(_S):" +msgstr "緑周波数(_E):" #: ../plug-ins/common/AlienMap2.c:153 msgid "Saturation fr_equency:" @@ -1393,9 +1371,8 @@ msgstr "光度ä½ç›¸å¤‰æ›(_S):" #: ../plug-ins/common/AlienMap2.c:193 -#, fuzzy msgid "Alien Map _2..." -msgstr "エイリアンマップ 2" +msgstr "エイリアンマップ _2..." #: ../plug-ins/common/AlienMap2.c:325 msgid "AlienMap2: Transforming..." @@ -1408,12 +1385,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 @@ -1431,7 +1408,7 @@ #: ../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" @@ -1621,7 +1598,7 @@ #: ../plug-ins/common/CML_explorer.c:231 msgid "Random, ch. independent" -msgstr "乱数, ãƒãƒ£ãƒ³ãƒãƒ«éžä¾å­˜" +msgstr "乱数ã€ãƒãƒ£ãƒ³ãƒãƒ«éžä¾å­˜" #: ../plug-ins/common/CML_explorer.c:232 msgid "Random shared" @@ -1643,7 +1620,7 @@ msgstr "色相" #: ../plug-ins/common/CML_explorer.c:303 ../plug-ins/common/CML_explorer.c:311 -#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:548 +#: ../plug-ins/common/decompose.c:144 ../plug-ins/rcm/rcm_dialog.c:559 msgid "Saturation" msgstr "彩度" @@ -1660,7 +1637,7 @@ #: ../plug-ins/common/CML_explorer.c:470 msgid "CML _Explorer..." -msgstr "CML エクスプローラー(_E)..." +msgstr "CML エクスプローラ(_E)..." #: ../plug-ins/common/CML_explorer.c:760 msgid "CML_explorer: evoluting..." @@ -1682,7 +1659,7 @@ msgid "Random seed" msgstr "乱数種" -#: ../plug-ins/common/CML_explorer.c:1289 ../plug-ins/common/fp.c:655 +#: ../plug-ins/common/CML_explorer.c:1289 ../plug-ins/common/fp.c:699 #: ../plug-ins/common/lic.c:669 msgid "_Hue" msgstr "色相(_H)" @@ -1691,9 +1668,9 @@ msgid "Sat_uration" msgstr "彩度(_U)" -#: ../plug-ins/common/CML_explorer.c:1297 ../plug-ins/common/fp.c:663 +#: ../plug-ins/common/CML_explorer.c:1297 ../plug-ins/common/fp.c:707 msgid "_Value" -msgstr "値(_V)" +msgstr "明度(_V)" #: ../plug-ins/common/CML_explorer.c:1301 msgid "_Advanced" @@ -1724,7 +1701,6 @@ msgstr "種:" #: ../plug-ins/common/CML_explorer.c:1386 -#, fuzzy msgid "Switch to \"From seed\" with the last seed" msgstr "最後ã®ç¨®ã‚’用ã„㦠\"種を元ã«\" モードã«ç§»ã‚‹" @@ -1735,9 +1711,9 @@ "(this is the reason why image on drawable is different from preview), and " "(2) all mutation rates equal to zero." msgstr "" -"\"固定種\" ボタンã¯ã“ã‚Œã®ã‚¨ã‚¤ãƒªã‚¢ã‚¹ã§ã™.\n" +"\"固定種\" ボタンã¯ã“ã‚Œã®ã‚¨ã‚¤ãƒªã‚¢ã‚¹ã§ã™ã€‚\n" "(1) ç”»åƒã®å¹…ãŒåŒã˜ã§ (æ画対象ã«æã‹ã‚Œã‚‹ã‚‚ã®ã¨ãƒ—レビューãŒé•ã†åŽŸå› )\n" -"(2) 変化度㌠0 ã«ãªã£ã¦ã„ã‚‹å ´åˆã«ã¯, åŒã˜ç¨®ã¯åŒã˜ç”»åƒã‚’生æˆã—ã¾ã™." +"(2) 変化度㌠0 ã«ãªã£ã¦ã„ã‚‹å ´åˆã«ã¯ã€åŒã˜ç¨®ã¯åŒã˜ç”»åƒã‚’生æˆã—ã¾ã™ã€‚" #: ../plug-ins/common/CML_explorer.c:1406 msgid "O_thers" @@ -1785,32 +1761,26 @@ msgstr "ãã®ä»–ã®ã‚¢ãƒ¬ãƒ³ã‚¸:" #: ../plug-ins/common/CML_explorer.c:1592 -#, fuzzy msgid "Use cyclic range" msgstr "回帰値域を使ã†:" #: ../plug-ins/common/CML_explorer.c:1602 -#, fuzzy msgid "Mod. rate:" msgstr "変化度:" #: ../plug-ins/common/CML_explorer.c:1611 -#, fuzzy msgid "Env. sensitivity:" msgstr "環境感度:" #: ../plug-ins/common/CML_explorer.c:1620 -#, fuzzy msgid "Diffusion dist.:" msgstr "拡散域:" #: ../plug-ins/common/CML_explorer.c:1629 -#, fuzzy msgid "# of subranges:" msgstr "サブレンジ数:" #: ../plug-ins/common/CML_explorer.c:1638 -#, fuzzy msgid "P(ower factor):" msgstr "ä¹—æ•°(P):" @@ -1819,32 +1789,26 @@ msgstr "パラメータ K:" #: ../plug-ins/common/CML_explorer.c:1656 -#, fuzzy msgid "Range low:" msgstr "値域下é™:" #: ../plug-ins/common/CML_explorer.c:1665 -#, fuzzy msgid "Range high:" msgstr "値域上é™:" #: ../plug-ins/common/CML_explorer.c:1677 -#, fuzzy msgid "Plot a graph of the settings" msgstr "設定ã®ã‚°ãƒ©ãƒ•ã‚’æã" #: ../plug-ins/common/CML_explorer.c:1722 -#, fuzzy msgid "Ch. sensitivity:" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«æ„Ÿåº¦" #: ../plug-ins/common/CML_explorer.c:1732 -#, fuzzy msgid "Mutation rate:" msgstr "変化度:" #: ../plug-ins/common/CML_explorer.c:1742 -#, fuzzy msgid "Mutation dist.:" msgstr "変化域:" @@ -1854,7 +1818,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" @@ -1862,25 +1826,23 @@ #: ../plug-ins/common/CML_explorer.c:2056 #: ../plug-ins/common/channel_mixer.c:1052 -#, fuzzy, c-format +#, c-format msgid "Parameters were saved to '%s'" -msgstr "" -"パラメータを '%s'\n" -"ã«ä¿å­˜ã—ã¾ã—ãŸ" +msgstr "パラメータを '%s' ã«ä¿å­˜ã—ã¾ã—ãŸ" #: ../plug-ins/common/CML_explorer.c:2077 msgid "CML Explorer: Overwrite File?" -msgstr "" +msgstr "CML エクスプローラ: ファイルを上書ãã—ã¾ã™ã‹?" #: ../plug-ins/common/CML_explorer.c:2091 #: ../plug-ins/common/channel_mixer.c:1083 -#, fuzzy, c-format +#, c-format msgid "" "File '%s' exists.\n" "Overwrite it?" msgstr "" -"%s\n" -"ã¯å­˜åœ¨ã—ã¾ã™, 上書ãã—ã¾ã™ã‹?" +"ファイル '%s' ã¯å­˜åœ¨ã—ã¾ã™ã€‚\n" +"上書ãã—ã¾ã™ã‹?" #: ../plug-ins/common/CML_explorer.c:2140 msgid "Load Parameters from" @@ -1892,21 +1854,17 @@ #: ../plug-ins/common/CML_explorer.c:2238 msgid "Error: it's not CML parameter file." -msgstr "エラー: ã“れ㯠CML パラメータファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“." +msgstr "エラー: ã“れ㯠CML パラメータファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #: ../plug-ins/common/CML_explorer.c:2245 -#, fuzzy, c-format +#, c-format msgid "Warning: '%s' is an old format file." -msgstr "" -"警告: '%s' ã¯\n" -"å¤ã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™." +msgstr "警告: '%s' ã¯å¤ã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚" #: ../plug-ins/common/CML_explorer.c:2248 -#, fuzzy, c-format +#, c-format msgid "Warning: '%s' is a parameter file for newer CML_explorer than me." -msgstr "" -"警告: '%s'\n" -"ã¯æ–°ã—ã„ CML explorer ã®ãƒ‘ラメータファイルã§ã™." +msgstr "警告: '%s' ã¯æ–°ã—ã„ CML explorer ã®ãƒ‘ラメータファイルã§ã™ã€‚" #: ../plug-ins/common/CML_explorer.c:2311 msgid "Error: failed to load parameters" @@ -1914,7 +1872,7 @@ #: ../plug-ins/common/aa.c:94 msgid "ASCII art" -msgstr "" +msgstr "アスキーアート" #. Create the actual window. #: ../plug-ins/common/aa.c:345 @@ -1922,18 +1880,16 @@ msgstr "テキスト形å¼ã§ä¿å­˜" #: ../plug-ins/common/aa.c:360 -#, fuzzy msgid "_Format:" -msgstr "å½¢å¼" +msgstr "å½¢å¼(_F):" #: ../plug-ins/common/align_layers.c:135 -#, fuzzy msgid "Align _Visible Layers..." -msgstr "å¯è¦–レイヤーã®æ•´åˆ—" +msgstr "å¯è¦–レイヤーã®æ•´åˆ—(_V)..." #: ../plug-ins/common/align_layers.c:173 msgid "There are not enough layers to align." -msgstr "" +msgstr "整列ã•ã›ã‚‹ã«è¶³ã‚‹ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒã‚ã‚Šã¾ã›ã‚“。" #: ../plug-ins/common/align_layers.c:399 msgid "Align Visible Layers" @@ -1987,7 +1943,6 @@ msgstr "下ã‹ã‚‰ä¸Šã¸é †ç•ªã«" #: ../plug-ins/common/align_layers.c:460 -#, fuzzy msgid "_Vertical style:" msgstr "鉛直方å‘スタイル(_V):" @@ -2001,25 +1956,23 @@ #: ../plug-ins/common/align_layers.c:474 msgid "Ver_tical base:" -msgstr "åž‚ç›´æ–¹å‘基準(_T):" +msgstr "鉛直方å‘基準(_T):" #: ../plug-ins/common/align_layers.c:478 msgid "_Grid size:" msgstr "グリッドサイズ(_G):" #: ../plug-ins/common/align_layers.c:487 -#, fuzzy msgid "_Ignore the bottom layer even if visible" msgstr "å¯è¦–ã§ã‚‚一番下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’無視ã™ã‚‹(_I)" #: ../plug-ins/common/align_layers.c:497 -#, fuzzy msgid "_Use the (invisible) bottom layer as the base" msgstr "(ä¸å¯è¦–ã§ã‚‚)一番下ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’基準ã«ä½¿ã†(_U)" #: ../plug-ins/common/animationplay.c:181 msgid "_Playback..." -msgstr "å†ç”Ÿï¼ˆ_P)..." +msgstr "å†ç”Ÿ(_P)..." #: ../plug-ins/common/animationplay.c:413 msgid "Animation Playback:" @@ -2055,18 +2008,16 @@ msgstr "差分最é©åŒ–(_O)" #: ../plug-ins/common/animoptimize.c:175 -#, fuzzy msgid "_UnOptimize" -msgstr "最é©åŒ–" +msgstr "éžæœ€é©åŒ–(_U)" #: ../plug-ins/common/animoptimize.c:198 -#, fuzzy msgid "_Remove Backdrop" -msgstr "削除(_R)" +msgstr "背景を削除(_R)" #: ../plug-ins/common/animoptimize.c:214 msgid "_Find Backdrop" -msgstr "" +msgstr "背景を見ã¤ã‘ã‚‹(_F)" #: ../plug-ins/common/animoptimize.c:429 msgid "UnOptimizing Animation..." @@ -2097,48 +2048,40 @@ msgstr "レンズ効果" #: ../plug-ins/common/apply_lens.c:417 -#, fuzzy msgid "_Keep original surroundings" msgstr "元画åƒã®å‘¨è¾ºéƒ¨ã‚’残ã™(_K)" #: ../plug-ins/common/apply_lens.c:432 -#, fuzzy msgid "_Set surroundings to index 0" msgstr "周辺部をインデックス 0 ã«ã™ã‚‹(_S)" #: ../plug-ins/common/apply_lens.c:433 -#, fuzzy msgid "_Set surroundings to background color" msgstr "周辺部を背景色ã«ã™ã‚‹(_S)" #: ../plug-ins/common/apply_lens.c:448 -#, fuzzy msgid "_Make surroundings transparent" msgstr "周辺部をé€æ˜Žã«ã™ã‚‹(_M)" #: ../plug-ins/common/apply_lens.c:465 -#, fuzzy msgid "_Lens refraction index:" msgstr "レンズ屈折度(_L): " #: ../plug-ins/common/autocrop.c:85 -#, fuzzy msgid "_Autocrop Image" -msgstr "ç”»åƒå…¨ä½“" +msgstr "ç”»åƒã®è‡ªå‹•åˆ‡ã‚ŠæŠœã(_A)" #: ../plug-ins/common/autocrop.c:99 -#, fuzzy msgid "_Autocrop Layer" -msgstr "ã‚ãり部分レイヤー" +msgstr "レイヤーã®è‡ªå‹•åˆ‡ã‚ŠæŠœã(_A)" #: ../plug-ins/common/autocrop.c:146 msgid "Cropping..." msgstr "切り抜ã„ã¦ã„ã¾ã™..." #: ../plug-ins/common/autostretch_hsv.c:80 -#, fuzzy msgid "Stretch _HSV" -msgstr "伸長" +msgstr "HSV 伸長(_H)" #: ../plug-ins/common/autostretch_hsv.c:116 msgid "Auto-Stretching HSV..." @@ -2146,7 +2089,7 @@ #: ../plug-ins/common/autostretch_hsv.c:192 msgid "autostretch_hsv: cmap was NULL! Quitting...\n" -msgstr "" +msgstr "autostretch_hsv: カラーマップ㌠NULL ã§ã™! 終了ã—ã¾ã™...\n" #: ../plug-ins/common/blinds.c:124 msgid "_Blinds..." @@ -2185,7 +2128,6 @@ msgstr "ãšã‚Œ(_D):" #: ../plug-ins/common/blinds.c:315 -#, fuzzy msgid "_Number of segments:" msgstr "区切りã®æ•°(_N):" @@ -2198,9 +2140,8 @@ msgstr "ã¼ã‹ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/borderaverage.c:101 -#, fuzzy msgid "_Border Average..." -msgstr "ç¸ã®å¹³å‡ã‚’ã¨ã£ã¦ã„ã¾ã™..." +msgstr "ç¸å¹³å‡(_B)..." #: ../plug-ins/common/borderaverage.c:168 msgid "Border Average..." @@ -2219,14 +2160,12 @@ msgstr "太ã•(_T):" #: ../plug-ins/common/borderaverage.c:413 -#, fuzzy msgid "_Bucket size:" msgstr "ãƒã‚±ãƒ„サイズ(_B):" #: ../plug-ins/common/bumpmap.c:343 -#, fuzzy msgid "_Bump Map..." -msgstr "ãƒãƒ³ãƒ—マップ(_B)" +msgstr "ãƒãƒ³ãƒ—マップ(_B)..." #: ../plug-ins/common/bumpmap.c:492 msgid "Bump-mapping..." @@ -2242,23 +2181,20 @@ #: ../plug-ins/common/bumpmap.c:907 msgid "_Map type:" -msgstr "マップã®ç¨®é¡ž:" +msgstr "マップã®ç¨®é¡ž(_M):" #. Compensate darkening #: ../plug-ins/common/bumpmap.c:912 -#, fuzzy msgid "Co_mpensate for darkening" msgstr "æš—ããªã‚‰ãªã„様ã«è£œå„Ÿã™ã‚‹(_M)" #. Invert bumpmap #: ../plug-ins/common/bumpmap.c:926 -#, fuzzy msgid "I_nvert bumpmap" msgstr "å転ãƒãƒ³ãƒ—マップ(_N)" #. Tile bumpmap #: ../plug-ins/common/bumpmap.c:940 -#, fuzzy msgid "_Tile bumpmap" msgstr "タイルãƒãƒ³ãƒ—マップ(_T)" @@ -2279,6 +2215,8 @@ "The offset can be adjusted by dragging the preview using the middle mouse " "button." msgstr "" +"オフセットã¯ã€ãƒ—レビューをマウスã®ä¸­ãƒœã‚¿ãƒ³ã§ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦èª¿æ•´ã™ã‚‹ã“ã¨ã‚‚ã§ãã¾" +"ã™ã€‚" #: ../plug-ins/common/bumpmap.c:1007 ../plug-ins/common/postscript.c:3155 msgid "_Y offset:" @@ -2293,9 +2231,8 @@ msgstr "飽和度(_M):" #: ../plug-ins/common/c_astretch.c:78 -#, fuzzy msgid "_Stretch Contrast" -msgstr "コントラスト自動伸長中..." +msgstr "コントラスト伸長(_S)" #: ../plug-ins/common/c_astretch.c:112 msgid "Auto-Stretching Contrast..." @@ -2303,49 +2240,43 @@ #: ../plug-ins/common/c_astretch.c:152 msgid "c_astretch: cmap was NULL! Quitting...\n" -msgstr "" +msgstr "c_astretch: カラーマップ㌠NULL ã§ã™! 終了ã—ã¾ã™...\n" #: ../plug-ins/common/cartoon.c:147 -#, fuzzy msgid "Ca_rtoon..." -msgstr "表題(_A)" +msgstr "ã¾ã‚“ãŒ(_R)..." #: ../plug-ins/common/cartoon.c:229 ../plug-ins/common/dog.c:247 #: ../plug-ins/common/gauss.c:431 ../plug-ins/common/neon.c:221 #: ../plug-ins/common/photocopy.c:241 ../plug-ins/common/sel_gauss.c:204 #: ../plug-ins/common/softglow.c:220 ../plug-ins/gflare/gflare.c:972 #: ../plug-ins/sgi/sgi.c:528 ../plug-ins/xjt/xjt.c:1673 -#, fuzzy msgid "Cannot operate on indexed color images." -msgstr "xjt: インデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“" +msgstr "インデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/cartoon.c:808 -#, fuzzy msgid "Cartoon" -msgstr "表題(_A)" +msgstr "ã¾ã‚“ãŒ" #: ../plug-ins/common/cartoon.c:838 ../plug-ins/common/photocopy.c:867 -#, fuzzy msgid "_Mask radius:" -msgstr "ã¼ã‹ã—åŠå¾„(_B):" +msgstr "マスクåŠå¾„(_M):" #: ../plug-ins/common/cartoon.c:852 -#, fuzzy msgid "_Percent black:" -msgstr "パーセント" +msgstr "黒パーセント(_P)" #: ../plug-ins/common/ccanalyze.c:110 -#, fuzzy msgid "Colorcube A_nalysis..." -msgstr "/フィルタ/色/å˜è‰²å¡—ã‚Š..." +msgstr "色立体分æž(_N)..." #: ../plug-ins/common/ccanalyze.c:200 msgid "Colorcube Analysis..." -msgstr "" +msgstr "色立体を分æžã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/ccanalyze.c:358 msgid "Colorcube Analysis" -msgstr "" +msgstr "色立体分æž" #. output results #: ../plug-ins/common/ccanalyze.c:384 @@ -2355,38 +2286,37 @@ msgstr "ç”»åƒå¯¸æ³•: %d x %d" #: ../plug-ins/common/ccanalyze.c:387 -#, fuzzy msgid "No colors" -msgstr "宛色" +msgstr "色ãªã—" #: ../plug-ins/common/ccanalyze.c:389 msgid "Only one unique color" -msgstr "" +msgstr "色ã¯ä¸€è‰²ã®ã¿" #: ../plug-ins/common/ccanalyze.c:391 -#, fuzzy, c-format +#, c-format msgid "Number of unique colors: %d" -msgstr "色数:" +msgstr "ç•°ãªã‚‹è‰²ã®æ•°: %d" #: ../plug-ins/common/ccanalyze.c:394 #, c-format msgid "Uncompressed size: %s" -msgstr "" +msgstr "éžåœ§ç¸®æ™‚ã®ã‚µã‚¤ã‚º: %s" #: ../plug-ins/common/ccanalyze.c:401 -#, fuzzy, c-format +#, c-format msgid "Filename: %s" -msgstr "ファイルå:" +msgstr "ファイルå: %s" #: ../plug-ins/common/ccanalyze.c:402 -#, fuzzy, c-format +#, c-format msgid "Compressed size: %s" -msgstr "TD タグ圧縮(_M)" +msgstr "圧縮時ã®ã‚µã‚¤ã‚º: %s" #: ../plug-ins/common/ccanalyze.c:403 #, c-format msgid "Compression ratio (approx.): %d to 1" -msgstr "" +msgstr "圧縮率 (概算): %d 対 1" #: ../plug-ins/common/channel_mixer.c:197 msgid "Channel Mi_xer..." @@ -2424,31 +2354,27 @@ #. The monochrome toggle #: ../plug-ins/common/channel_mixer.c:616 msgid "_Monochrome" -msgstr "モノクロ" +msgstr "モノクロ(_M)" #: ../plug-ins/common/channel_mixer.c:628 -#, fuzzy msgid "Preserve _luminosity" -msgstr "光度をä¿å­˜ã™ã‚‹(_P)" +msgstr "明度維æŒ(_L)" #: ../plug-ins/common/channel_mixer.c:857 -#, fuzzy msgid "Load Channel Mixer Settings" -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ã®è¡¨ç¾" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼è¨­å®šèª­ã¿è¾¼ã¿" #: ../plug-ins/common/channel_mixer.c:989 -#, fuzzy msgid "Save Channel Mixer Settings" -msgstr "パレットã¨ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã®è¨­å®š:" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼è¨­å®šä¿å­˜" #: ../plug-ins/common/channel_mixer.c:1068 -#, fuzzy msgid "Channel Mixer File Operation Warning" -msgstr "CML ファイルæ“作警告" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«ãƒŸã‚­ã‚µãƒ¼ãƒ•ã‚¡ã‚¤ãƒ«æ“作警告" #: ../plug-ins/common/checkerboard.c:93 msgid "_Checkerboard..." -msgstr "市æ¾æ¨¡æ§˜(_C)" +msgstr "市æ¾æ¨¡æ§˜(_C)..." #: ../plug-ins/common/checkerboard.c:161 msgid "Adding Checkerboard..." @@ -2468,18 +2394,16 @@ msgstr "サイズ(_S):" #: ../plug-ins/common/color_enhance.c:80 -#, fuzzy msgid "_Color Enhance" -msgstr "色を強調ã—ã¦ã„ã¾ã™..." +msgstr "色強調(_C)" #: ../plug-ins/common/color_enhance.c:115 msgid "Color Enhance..." msgstr "色を強調ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/colorify.c:110 -#, fuzzy msgid "_Colorify..." -msgstr "å˜è‰²å¡—り中..." +msgstr "å˜è‰²å¡—ã‚Š(_C)..." #: ../plug-ins/common/colorify.c:171 msgid "Colorifying..." @@ -2498,9 +2422,8 @@ msgstr "å˜è‰²å¡—りカスタムカラー" #: ../plug-ins/common/colortoalpha.c:104 -#, fuzzy msgid "Color to _Alpha..." -msgstr "色をé€æ˜Žåº¦ã«" +msgstr "色をé€æ˜Žåº¦ã«(_A)..." #: ../plug-ins/common/colortoalpha.c:187 msgid "Removing color..." @@ -2520,9 +2443,8 @@ msgstr "「色をé€æ˜Žåº¦ã«ã€è‰²é¸æŠž" #: ../plug-ins/common/colortoalpha.c:423 -#, fuzzy msgid "to alpha" -msgstr "ã‚’é€æ˜Žåº¦ã«:" +msgstr "ã‚’é€æ˜Žåº¦ã«" #: ../plug-ins/common/compose.c:127 ../plug-ins/common/decompose.c:130 #: ../plug-ins/common/raw.c:953 @@ -2543,13 +2465,13 @@ msgstr "HSV" #. Gray: Circle: Spinbutton 1 -#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:459 +#: ../plug-ins/common/compose.c:148 ../plug-ins/rcm/rcm_dialog.c:470 msgid "Hue:" msgstr "色相:" #. Gray: Circle: Spinbutton 2 #: ../plug-ins/common/compose.c:149 ../plug-ins/print/gimp_color_window.c:364 -#: ../plug-ins/rcm/rcm_dialog.c:486 +#: ../plug-ins/rcm/rcm_dialog.c:497 msgid "Saturation:" msgstr "彩度:" @@ -2562,17 +2484,17 @@ msgstr "CMY" #: ../plug-ins/common/compose.c:155 ../plug-ins/common/compose.c:162 -#: ../plug-ins/common/fp.c:220 ../plug-ins/print/gimp_color_window.c:307 +#: ../plug-ins/common/fp.c:231 ../plug-ins/print/gimp_color_window.c:307 msgid "Cyan:" msgstr "シアン:" #: ../plug-ins/common/compose.c:156 ../plug-ins/common/compose.c:163 -#: ../plug-ins/common/fp.c:222 ../plug-ins/print/gimp_color_window.c:326 +#: ../plug-ins/common/fp.c:233 ../plug-ins/print/gimp_color_window.c:326 msgid "Magenta:" msgstr "マゼンタ:" #: ../plug-ins/common/compose.c:157 ../plug-ins/common/compose.c:164 -#: ../plug-ins/common/fp.c:221 ../plug-ins/print/gimp_color_window.c:345 +#: ../plug-ins/common/fp.c:232 ../plug-ins/print/gimp_color_window.c:345 msgid "Yellow:" msgstr "黄:" @@ -2586,7 +2508,7 @@ #: ../plug-ins/common/compose.c:168 ../plug-ins/common/decompose.c:161 msgid "LAB" -msgstr "" +msgstr "LAB" #: ../plug-ins/common/compose.c:176 msgid "Luma_y470:" @@ -2637,9 +2559,8 @@ msgstr "Redness_cr709f:" #: ../plug-ins/common/compose.c:294 -#, fuzzy msgid "C_ompose..." -msgstr "åˆæˆä¸­..." +msgstr "åˆæˆ(_O)..." #: ../plug-ins/common/compose.c:360 #, c-format @@ -2693,14 +2614,12 @@ msgstr "bzip アーカイブ" #: ../plug-ins/common/compressor.c:367 -#, fuzzy msgid "No sensible extension, saving as compressed XCF." msgstr "æ‹¡å¼µå­ãŒåˆ¤åˆ¥ã§ããªã„ã®ã§ gzip 圧縮ã—㟠xcf ファイルã¨ã—ã¦ä¿å­˜ã—ã¾ã™" #: ../plug-ins/common/compressor.c:508 -#, fuzzy msgid "No sensible extension, attempting to load with file magic." -msgstr "æ‹¡å¼µå­ãŒåˆ¤åˆ¥ã§ããªã„ã®ã§, ファイル㮠magic を用ã„ã¦èª­ã¿è¾¼ã¿ã¾ã™" +msgstr "æ‹¡å¼µå­ãŒåˆ¤åˆ¥ã§ããªã„ã®ã§ã€ãƒ•ã‚¡ã‚¤ãƒ«ã® magic を用ã„ã¦èª­ã¿è¾¼ã¿ã¾ã™" #: ../plug-ins/common/convmatrix.c:87 msgid "Gr_ey" @@ -2736,16 +2655,13 @@ msgstr "切抜ã(_P)" #: ../plug-ins/common/convmatrix.c:195 -#, fuzzy msgid "_Convolution Matrix..." -msgstr "コンボリューション行列" +msgstr "コンボリューション行列(_C)..." #: ../plug-ins/common/convmatrix.c:229 -#, fuzzy msgid "Convolution Matrix does not work on layers smaller than 3 pixels." msgstr "" -"コンボリューション行列ã¯3ピクセルより\n" -"å°ã•ãªãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¤ã„ã¦ã¯é©ç”¨ã§ãã¾ã›ã‚“." +"コンボリューション行列ã¯3ピクセルよりå°ã•ãªãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¤ã„ã¦ã¯é©ç”¨ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/convmatrix.c:302 msgid "Applying convolution" @@ -2821,14 +2737,12 @@ #. Use RLE #. #: ../plug-ins/common/csource.c:711 -#, fuzzy msgid "Use _1 byte Run-Length-Encoding" -msgstr "_1 Byte Run-Length-Encoding を使ã†" +msgstr "_1 byte Run-Length-Encoding を使ã†" #. Alpha #. #: ../plug-ins/common/csource.c:723 -#, fuzzy msgid "Sa_ve alpha channel (RGBA/RGB)" msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚‚ä¿å­˜ã™ã‚‹ (RGBA/RGB)(_V)" @@ -2857,31 +2771,26 @@ msgstr "背景色を使用(_U)" #: ../plug-ins/common/cubism.c:412 -#, fuzzy msgid "Cubistic Transformation..." -msgstr "キュービズム変æ›" +msgstr "キュービズム変æ›ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/curve_bend.c:567 -#, fuzzy msgid "_Curve Bend..." -msgstr "ã²ã‚“曲ã’ã¦ã„ã¾ã™..." +msgstr "ã²ã‚“曲ã’ã‚‹(_C)..." #: ../plug-ins/common/curve_bend.c:703 -#, fuzzy msgid "Can operate on layers only (but was called on channel or mask)." msgstr "" "ã²ã‚“曲ã’ã‚‹ã“ã¨ãŒã§ãã‚‹ã®ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã ã‘ã§ã™ (ãƒãƒ£ãƒ³ãƒãƒ«ã‚„マスクã«å¯¾ã—ã¦å‘¼ã³å‡º" -"ã•ã‚Œã¾ã—ãŸ)" +"ã•ã‚Œã¾ã—ãŸ)。" #: ../plug-ins/common/curve_bend.c:721 -#, fuzzy msgid "Cannot operate on layers with masks." -msgstr "xjt: インデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“" +msgstr "マスク付ãã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/curve_bend.c:736 -#, fuzzy msgid "Cannot operate on empty selections." -msgstr "ä¸æ˜Žãªç”»åƒç¨®ã¯æ‰±ãˆã¾ã›ã‚“" +msgstr "空ã®é¸æŠžé ˜åŸŸã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。" #. Possibly retrieve data from a previous run #. The shell and main vbox @@ -2898,15 +2807,13 @@ #. The preview button #: ../plug-ins/common/curve_bend.c:1297 -#, fuzzy msgid "_Preview once" msgstr "一回プレビュー(_P)" #. The preview toggle #: ../plug-ins/common/curve_bend.c:1306 -#, fuzzy msgid "Automatic pre_view" -msgstr "自動プレビュー(_V):" +msgstr "自動プレビュー(_V)" #. Options area, bottom of column #. the vertical box and its toggle buttons @@ -2934,7 +2841,6 @@ #. The work_on_copy toggle #: ../plug-ins/common/curve_bend.c:1368 -#, fuzzy msgid "Work on cop_y" msgstr "コピーをæ“作(_Y)" @@ -2944,9 +2850,8 @@ msgstr "カーブ変更" #: ../plug-ins/common/curve_bend.c:1406 -#, fuzzy msgid "Curve for Border" -msgstr "曲ã’æ“作ã™ã‚‹ç«¯(_B): " +msgstr "曲ã’æ“作ã™ã‚‹ç«¯" #: ../plug-ins/common/curve_bend.c:1410 msgid "_Upper" @@ -2958,7 +2863,7 @@ #: ../plug-ins/common/curve_bend.c:1421 msgid "Curve Type" -msgstr "カーブタイプ(_T): " +msgstr "カーブタイプ" #: ../plug-ins/common/curve_bend.c:1425 msgid "Smoot_h" @@ -2975,7 +2880,7 @@ #: ../plug-ins/common/curve_bend.c:1446 msgid "Copy the active curve to the other border" -msgstr "" +msgstr "ã“ã®ã‚«ãƒ¼ãƒ–ã‚’ã‚‚ã†ä¸€æ–¹ã®ç«¯ã«ã‚³ãƒ”ーã™ã‚‹" #. The CopyInv button #: ../plug-ins/common/curve_bend.c:1453 @@ -2984,7 +2889,7 @@ #: ../plug-ins/common/curve_bend.c:1458 msgid "Mirror the active curve to the other border" -msgstr "" +msgstr "ã“ã®ã‚«ãƒ¼ãƒ–ã‚’ã‚‚ã†ä¸€æ–¹ã®ç«¯ã«å¯¾ç§°ã«æ˜ ã™" #. The Swap button #: ../plug-ins/common/curve_bend.c:1466 @@ -2997,7 +2902,7 @@ #: ../plug-ins/common/curve_bend.c:1483 msgid "Reset the active curve" -msgstr "" +msgstr "ã“ã®ã‚«ãƒ¼ãƒ–をリセットã™ã‚‹" #: ../plug-ins/common/curve_bend.c:1500 msgid "Load the curves from a file" @@ -3155,9 +3060,8 @@ msgstr "redness_cr709f" #: ../plug-ins/common/decompose.c:245 -#, fuzzy msgid "_Decompose..." -msgstr "ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£" +msgstr "ãƒãƒ£ãƒ³ãƒãƒ«åˆ†è§£(_D)..." #: ../plug-ins/common/decompose.c:330 msgid "Decomposing..." @@ -3169,19 +3073,16 @@ #. 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 "レイヤーを削除ã™ã‚‹" +msgstr "レイヤーã«åˆ†è§£ã™ã‚‹(_L)" #: ../plug-ins/common/deinterlace.c:99 -#, fuzzy msgid "_Deinterlace..." -msgstr "éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–ã—ã¦ã„ã¾ã™..." +msgstr "éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–(_D)..." #: ../plug-ins/common/deinterlace.c:156 msgid "Deinterlace..." @@ -3192,19 +3093,16 @@ msgstr "éžã‚¤ãƒ³ã‚¿ãƒ¼ãƒ¬ãƒ¼ã‚¹åŒ–" #: ../plug-ins/common/deinterlace.c:349 -#, fuzzy msgid "Keep o_dd fields" msgstr "奇数ラインを残ã™(_D)" #: ../plug-ins/common/deinterlace.c:350 -#, fuzzy msgid "Keep _even fields" msgstr "å¶æ•°ãƒ©ã‚¤ãƒ³ã‚’残ã™(_E)" #: ../plug-ins/common/depthmerge.c:192 -#, fuzzy msgid "_Depth Merge..." -msgstr "深度統åˆ" +msgstr "深度統åˆ(_D)..." #: ../plug-ins/common/depthmerge.c:382 msgid "Depth-merging..." @@ -3239,9 +3137,8 @@ msgstr "スケール 2(_L):" #: ../plug-ins/common/despeckle.c:177 -#, fuzzy msgid "Des_peckle..." -msgstr "éžæ–‘化" +msgstr "éžæ–‘化(_P)..." #: ../plug-ins/common/despeckle.c:418 ../plug-ins/common/despeckle.c:640 msgid "Despeckle" @@ -3257,9 +3154,8 @@ #. parameter settings #: ../plug-ins/common/despeckle.c:454 -#, fuzzy msgid "Median" -msgstr "ラジアン" +msgstr "中央値" #: ../plug-ins/common/despeckle.c:460 msgid "_Adaptive" @@ -3277,19 +3173,16 @@ msgstr "åŠå¾„(_R):" #: ../plug-ins/common/despeckle.c:510 -#, fuzzy msgid "_Black level:" msgstr "黒レベル(_B):" #: ../plug-ins/common/despeckle.c:526 -#, fuzzy msgid "_White level:" msgstr "白レベル(_W):" #: ../plug-ins/common/destripe.c:113 -#, fuzzy msgid "Des_tripe..." -msgstr "éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化ã—ã¦ã„ã¾ã™..." +msgstr "éžã‚¹ãƒˆãƒ©ã‚¤ãƒ—化(_T)..." #: ../plug-ins/common/destripe.c:276 msgid "Destriping..." @@ -3308,30 +3201,25 @@ msgstr "å¹…(_W):" #: ../plug-ins/common/destripe.c:480 -#, fuzzy msgid "Create _histogram" msgstr "ヒストグラム作æˆ(_H)" #: ../plug-ins/common/dicom.c:134 -#, fuzzy msgid "DICOM image" -msgstr "ç”»åƒ(_A)" +msgstr "DICOM ç”»åƒ" #: ../plug-ins/common/dicom.c:159 msgid "Digital Imaging and Communications in Medicine image" -msgstr "" +msgstr "医用デジタル画åƒã¨é€šä¿¡" #: ../plug-ins/common/dicom.c:318 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a DICOM file." -msgstr "" -"'%s'\n" -"ã¯PCXファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“" +msgstr "'%s' 㯠DICOM ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“" #: ../plug-ins/common/diffraction.c:177 -#, fuzzy msgid "_Diffraction Patterns..." -msgstr "回折模様" +msgstr "回折模様(_D)..." #: ../plug-ins/common/diffraction.c:334 msgid "Creating diffraction pattern..." @@ -3342,19 +3230,16 @@ msgstr "回折模様" #: ../plug-ins/common/diffraction.c:524 -#, fuzzy msgid "Frequencies" -msgstr "振動(_F)" +msgstr "振動" #: ../plug-ins/common/diffraction.c:562 -#, fuzzy msgid "Contours" -msgstr "輪郭(_N)" +msgstr "輪郭" #: ../plug-ins/common/diffraction.c:600 -#, fuzzy msgid "Sharp edges" -msgstr "明瞭端(_S)" +msgstr "明瞭端" #: ../plug-ins/common/diffraction.c:612 ../plug-ins/common/softglow.c:673 #: ../plug-ins/flame/flame.c:1037 @@ -3366,19 +3251,16 @@ msgstr "散乱(_A):" #: ../plug-ins/common/diffraction.c:630 -#, fuzzy msgid "Po_larization:" msgstr "å極(_L):" #: ../plug-ins/common/diffraction.c:638 -#, fuzzy msgid "Other options" -msgstr "ãã®ä»–ã®ã‚ªãƒ—ション(_T)" +msgstr "ãã®ä»–ã®ã‚ªãƒ—ション" #: ../plug-ins/common/displace.c:154 -#, fuzzy msgid "_Displace..." -msgstr "ãšã‚‰ã—ã¦ã„ã¾ã™..." +msgstr "ãšã‚‰ã—(_D)..." #: ../plug-ins/common/displace.c:231 msgid "Displacing..." @@ -3390,13 +3272,11 @@ #. X options #: ../plug-ins/common/displace.c:297 -#, fuzzy msgid "_X displacement:" msgstr "_X ãšã‚‰ã—:" #. Y Options #: ../plug-ins/common/displace.c:344 -#, fuzzy msgid "_Y displacement:" msgstr "_Y ãšã‚‰ã—:" @@ -3416,43 +3296,36 @@ msgstr "é»’(_B)" #: ../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 "輪郭抽出" +msgstr "DoG 輪郭抽出" #: ../plug-ins/common/dog.c:295 -#, fuzzy msgid "Smoothing parameters" -msgstr "パラメータコピー" +msgstr "スムーズ化パラメータ" #: ../plug-ins/common/dog.c:309 -#, fuzzy msgid "_Radius 1:" -msgstr "åŠå¾„(_R):" +msgstr "åŠå¾„ 1(_R):" #: ../plug-ins/common/dog.c:313 -#, fuzzy msgid "R_adius 2:" -msgstr "åŠå¾„(_A):" +msgstr "åŠå¾„ 2(_A):" #: ../plug-ins/common/dog.c:325 ../plug-ins/common/normalize.c:88 -#, fuzzy msgid "_Normalize" -msgstr "標準(_N)" +msgstr "æ­£è¦åŒ–(_N)" #: ../plug-ins/common/dog.c:336 ../plug-ins/gimpressionist/paper.c:149 msgid "_Invert" msgstr "å転(_I)" #: ../plug-ins/common/edge.c:162 -#, fuzzy msgid "_Edge..." -msgstr "編集..." +msgstr "輪郭(_E)..." #: ../plug-ins/common/edge.c:234 msgid "Edge Detection..." @@ -3463,48 +3336,40 @@ msgstr "輪郭抽出" #: ../plug-ins/common/edge.c:675 -#, fuzzy msgid "Sobel" -msgstr "ソース..." +msgstr "ソーベル" #: ../plug-ins/common/edge.c:676 -#, fuzzy msgid "Prewitt" -msgstr "プリセット(_P)" +msgstr "プレヴィット" #: ../plug-ins/common/edge.c:677 ../plug-ins/common/sinus.c:897 msgid "Gradient" msgstr "勾é…/グラデーション" #: ../plug-ins/common/edge.c:678 -#, fuzzy msgid "Roberts" -msgstr "ドット(_D)" +msgstr "ロãƒãƒ¼ãƒ„" #: ../plug-ins/common/edge.c:679 -#, fuzzy msgid "Differential" msgstr "差分" #: ../plug-ins/common/edge.c:680 -#, fuzzy msgid "Laplace" -msgstr "ラプラス変æ›ã—ã¦ã„ã¾ã™..." +msgstr "ラプラス" #: ../plug-ins/common/edge.c:689 -#, fuzzy msgid "_Algorithm:" -msgstr "Prim アルゴリズム" +msgstr "アルゴリズム(_A):" #: ../plug-ins/common/edge.c:697 -#, fuzzy msgid "A_mount:" -msgstr "é‡:" +msgstr "é‡(_M):" #: ../plug-ins/common/emboss.c:133 -#, fuzzy msgid "_Emboss..." -msgstr "エンボス(_E)" +msgstr "エンボス(_E)..." #: ../plug-ins/common/emboss.c:376 ../plug-ins/common/emboss.c:439 msgid "Emboss" @@ -3527,9 +3392,8 @@ msgstr "æŒã¡ä¸Šã’(_L):" #: ../plug-ins/common/engrave.c:108 -#, fuzzy msgid "En_grave..." -msgstr "彫金ã—ã¦ã„ã¾ã™..." +msgstr "彫金風(_G)..." #: ../plug-ins/common/engrave.c:182 msgid "Engraving..." @@ -3549,14 +3413,12 @@ msgstr "高ã•(_H):" #: ../plug-ins/common/engrave.c:249 -#, fuzzy msgid "_Limit line width" msgstr "線幅を制é™ã™ã‚‹(_L)" #: ../plug-ins/common/exchange.c:133 -#, fuzzy msgid "_Color Exchange..." -msgstr "色を交æ›ã—ã¦ã„ã¾ã™..." +msgstr "色交æ›(_C)..." #: ../plug-ins/common/exchange.c:218 msgid "Color Exchange..." @@ -3568,9 +3430,8 @@ msgstr "色交æ›" #: ../plug-ins/common/exchange.c:308 -#, fuzzy msgid "Middle-click inside preview to pick \"From Color\"" -msgstr "プレビュー: \"元色\"決定ã®ãŸã‚ã«ã“ã®ä¸­ã‚’クリック" +msgstr "プレビューを中クリックã—㦠\"元色\" é¸æŠž" #: ../plug-ins/common/exchange.c:346 msgid "To Color" @@ -3597,7 +3458,6 @@ msgstr "緑閾値(_R):" #: ../plug-ins/common/exchange.c:545 -#, fuzzy msgid "B_lue threshold:" msgstr "é’閾値(_L):" @@ -3607,7 +3467,7 @@ #: ../plug-ins/common/film.c:240 msgid "_Film..." -msgstr "フィルム(_F)" +msgstr "フィルム(_F)..." #: ../plug-ins/common/film.c:325 msgid "Composing Images..." @@ -3633,7 +3493,7 @@ #. Create selection #: ../plug-ins/common/film.c:1166 ../plug-ins/imagemap/imap_selection.c:400 -#: ../plug-ins/rcm/rcm_dialog.c:165 +#: ../plug-ins/rcm/rcm_dialog.c:176 msgid "Selection" msgstr "é¸æŠž" @@ -3644,7 +3504,6 @@ #. Keep maximum image height #: ../plug-ins/common/film.c:1185 -#, fuzzy msgid "_Fit height to images" msgstr "ç”»åƒã«é«˜ã•ã‚’åˆã‚ã›ã‚‹(_F)" @@ -3664,7 +3523,6 @@ msgstr "番å·ä»˜" #: ../plug-ins/common/film.c:1253 -#, fuzzy msgid "Start _index:" msgstr "開始インデックス(_I):" @@ -3691,7 +3549,6 @@ msgstr "ç”»åƒé¸æŠž" #: ../plug-ins/common/film.c:1329 -#, fuzzy msgid "All Values are Fractions of the Film Height" msgstr "å…¨ã¦ãƒ•ã‚£ãƒ«ãƒ é«˜ã«å¯¾ã™ã‚‹å€¤ã§ã™" @@ -3700,44 +3557,36 @@ msgstr "詳細(_V)" #: ../plug-ins/common/film.c:1351 -#, fuzzy msgid "Image _height:" msgstr "ç”»åƒé«˜ã•(_H):" #: ../plug-ins/common/film.c:1362 -#, fuzzy msgid "Image spac_ing:" msgstr "ç”»åƒé–“éš”(_I):" #: ../plug-ins/common/film.c:1373 -#, fuzzy msgid "_Hole offset:" msgstr "穴オフセット(_H):" #: ../plug-ins/common/film.c:1384 -#, fuzzy msgid "Ho_le width:" msgstr "ç©´å¹…(_L):" #: ../plug-ins/common/film.c:1395 -#, fuzzy msgid "Hol_e height:" msgstr "穴高ã•(_E):" #: ../plug-ins/common/film.c:1406 -#, fuzzy msgid "Hole sp_acing:" msgstr "ç©´é–“éš”(_A):" #: ../plug-ins/common/film.c:1417 -#, fuzzy msgid "_Number height:" -msgstr "番å·é«˜ã•:" +msgstr "番å·é«˜ã•(_N):" #: ../plug-ins/common/flarefx.c:196 -#, fuzzy msgid "_FlareFX..." -msgstr "フレア効果" +msgstr "フレア効果(_F)..." #: ../plug-ins/common/flarefx.c:271 msgid "Render Flare..." @@ -3748,171 +3597,166 @@ 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 "カーソル表示(_S)" -#: ../plug-ins/common/fp.c:224 +#: ../plug-ins/common/fp.c:235 msgid "Darker:" msgstr "æš—ã:" -#: ../plug-ins/common/fp.c:225 +#: ../plug-ins/common/fp.c:236 msgid "Lighter:" msgstr "明るã:" -#: ../plug-ins/common/fp.c:227 +#: ../plug-ins/common/fp.c:238 msgid "More Sat:" msgstr "彩度大:" -#: ../plug-ins/common/fp.c:228 +#: ../plug-ins/common/fp.c:239 msgid "Less Sat:" msgstr "彩度å°:" -#: ../plug-ins/common/fp.c:230 ../plug-ins/common/fp.c:488 +#: ../plug-ins/common/fp.c:241 ../plug-ins/common/fp.c:532 msgid "Current:" msgstr "ç¾çŠ¶:" -#: ../plug-ins/common/fp.c:321 -#, fuzzy +#: ../plug-ins/common/fp.c:330 msgid "_Filter Pack..." -msgstr "フィルターパックをé©ç”¨ã—ã¦ã„ã¾ã™..." +msgstr "フィルタパック(_F)..." + +#: ../plug-ins/common/fp.c:376 +#, fuzzy +msgid "FP can only be used on RGB images." +msgstr "RGB æ画対象ã®ã¿æ“作ã§ãã¾ã™ã€‚" -#: ../plug-ins/common/fp.c:361 -msgid "Convert the image to RGB first!" -msgstr "ç”»åƒã‚’ RGB ã«å¤‰æ›ã—ã¦ã‹ã‚‰ã«ã—ã¦ãã ã•ã„!" +#: ../plug-ins/common/fp.c:386 +msgid "FP can only be run interactively." +msgstr "" -#: ../plug-ins/common/fp.c:366 -msgid "Applying the Filter Pack..." +#: ../plug-ins/common/fp.c:404 +#, fuzzy +msgid "Applying Filter Pack..." msgstr "フィルターパックをé©ç”¨ã—ã¦ã„ã¾ã™..." -#: ../plug-ins/common/fp.c:480 +#: ../plug-ins/common/fp.c:524 msgid "Original:" msgstr "オリジナル:" -#: ../plug-ins/common/fp.c:532 +#: ../plug-ins/common/fp.c:576 msgid "Hue Variations" msgstr "色相種類:" -#: ../plug-ins/common/fp.c:586 +#: ../plug-ins/common/fp.c:630 msgid "Roughness" msgstr "è’ã•" -#: ../plug-ins/common/fp.c:629 +#: ../plug-ins/common/fp.c:673 msgid "Affected Range" msgstr "対象領域" -#: ../plug-ins/common/fp.c:633 -#, fuzzy +#: ../plug-ins/common/fp.c:677 msgid "Sha_dows" -msgstr "é™°" +msgstr "é™°(_D)" -#: ../plug-ins/common/fp.c:634 -#, fuzzy +#: ../plug-ins/common/fp.c:678 msgid "_Midtones" -msgstr "中間色" +msgstr "中間色(_M)" -#: ../plug-ins/common/fp.c:635 -#, fuzzy +#: ../plug-ins/common/fp.c:679 msgid "H_ighlights" -msgstr "ãƒã‚¤ãƒ©ã‚¤ãƒˆ" +msgstr "ãƒã‚¤ãƒ©ã‚¤ãƒˆ(_I)" -#: ../plug-ins/common/fp.c:649 +#: ../plug-ins/common/fp.c:693 msgid "Windows" msgstr "ウィンドウ" -#: ../plug-ins/common/fp.c:659 ../plug-ins/common/lic.c:670 +#: ../plug-ins/common/fp.c:703 ../plug-ins/common/lic.c:670 msgid "_Saturation" msgstr "彩度(_S)" -#: ../plug-ins/common/fp.c:667 -#, fuzzy +#: ../plug-ins/common/fp.c:711 msgid "A_dvanced" -msgstr "詳細" +msgstr "詳細(_D)" -#: ../plug-ins/common/fp.c:687 +#: ../plug-ins/common/fp.c:731 msgid "Value Variations" msgstr "明度ãƒãƒªã‚¨ãƒ¼ã‚·ãƒ§ãƒ³" -#: ../plug-ins/common/fp.c:731 +#: ../plug-ins/common/fp.c:775 msgid "Saturation Variations" msgstr "彩度ãƒãƒªã‚¨ãƒ¼ã‚·ãƒ§ãƒ³" -#: ../plug-ins/common/fp.c:783 +#: ../plug-ins/common/fp.c:827 msgid "Select Pixels by" msgstr "ピクセルé¸æŠžæ³•" -#: ../plug-ins/common/fp.c:788 +#: ../plug-ins/common/fp.c:832 msgid "H_ue" msgstr "色相(_U):" -#: ../plug-ins/common/fp.c:789 +#: ../plug-ins/common/fp.c:833 msgid "Satu_ration" -msgstr "彩度" +msgstr "彩度(_R)" -#: ../plug-ins/common/fp.c:790 +#: ../plug-ins/common/fp.c:834 msgid "V_alue" msgstr "値(_A)" -#: ../plug-ins/common/fp.c:816 +#: ../plug-ins/common/fp.c:860 msgid "Show" msgstr "表示" -#: ../plug-ins/common/fp.c:821 -#, fuzzy +#: ../plug-ins/common/fp.c:865 msgid "_Entire Image" -msgstr "ç”»åƒå…¨ä½“" +msgstr "ç”»åƒå…¨ä½“(_E)" -#: ../plug-ins/common/fp.c:822 -#, fuzzy +#: ../plug-ins/common/fp.c:866 msgid "Se_lection Only" -msgstr "é¸æŠžéƒ¨åˆ†ã®ã¿" +msgstr "é¸æŠžéƒ¨åˆ†ã®ã¿(_L)" -#: ../plug-ins/common/fp.c:823 -#, fuzzy +#: ../plug-ins/common/fp.c:867 msgid "Selec_tion In Context" -msgstr "コンテキスト中ã®é¸æŠžéƒ¨åˆ†" +msgstr "コンテキスト中ã®é¸æŠžéƒ¨åˆ†(_T)" -#: ../plug-ins/common/fp.c:1135 +#: ../plug-ins/common/fp.c:1182 msgid "Filter Pack Simulation" msgstr "フィルタパックシミュレーション" -#: ../plug-ins/common/fp.c:1245 +#: ../plug-ins/common/fp.c:1292 msgid "Shadows:" msgstr "é™°:" -#: ../plug-ins/common/fp.c:1246 +#: ../plug-ins/common/fp.c:1293 msgid "Midtones:" msgstr "中間色:" -#: ../plug-ins/common/fp.c:1247 +#: ../plug-ins/common/fp.c:1294 msgid "Highlights:" msgstr "ãƒã‚¤ãƒ©ã‚¤ãƒˆ:" -#: ../plug-ins/common/fp.c:1259 +#: ../plug-ins/common/fp.c:1306 msgid "Advanced Filter Pack Options" msgstr "詳細設定" -#: ../plug-ins/common/fp.c:1270 +#: ../plug-ins/common/fp.c:1317 msgid "Smoothness of Aliasing" msgstr "エイリアシングã®æ»‘らã‹ã•" -#: ../plug-ins/common/fp.c:1370 +#: ../plug-ins/common/fp.c:1417 msgid "Preview as You Drag" msgstr "ドラッグã«åˆã‚ã›ã¦ãƒ—レビュー" -#: ../plug-ins/common/fp.c:1374 +#: ../plug-ins/common/fp.c:1421 msgid "Preview Size" msgstr "プレビューサイズ" #: ../plug-ins/common/fractaltrace.c:126 -#, fuzzy msgid "_Fractal Trace..." -msgstr "フラクタルトレース" +msgstr "フラクタルトレース(_F)..." #: ../plug-ins/common/fractaltrace.c:466 ../plug-ins/common/fractaltrace.c:693 msgid "Fractal Trace" @@ -3952,19 +3796,16 @@ msgstr "Y_2:" #: ../plug-ins/common/gauss.c:157 -#, fuzzy msgid "_Gaussian Blur..." -msgstr "/フィルタ/ã¼ã‹ã—/ガウシアンã¼ã‹ã— (IIR)..." +msgstr "ガウシアンã¼ã‹ã—(_G)..." #: ../plug-ins/common/gauss.c:413 -#, fuzzy msgid "Gaussian Blur..." -msgstr "/フィルタ/ã¼ã‹ã—/ガウシアンã¼ã‹ã— (IIR)..." +msgstr "ガウシアンã¼ã‹ã—..." #: ../plug-ins/common/gauss.c:461 -#, fuzzy msgid "Gaussian Blur" -msgstr "IIR ガウシアンã¼ã‹ã—" +msgstr "ガウシアンã¼ã‹ã—" #. parameter settings #: ../plug-ins/common/gauss.c:484 @@ -3982,33 +3823,29 @@ msgstr "鉛直(_V):" #: ../plug-ins/common/gauss.c:525 -#, fuzzy msgid "Blur Method" msgstr "ã¼ã‹ã—ã®ç¨®é¡ž" #: ../plug-ins/common/gauss.c:529 msgid "_IIR" -msgstr "" +msgstr "_IIR" #: ../plug-ins/common/gauss.c:530 msgid "_RLE" -msgstr "" +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 -#, fuzzy msgid "Unsupported brush format" -msgstr "利用ã§ããªã„色数 (%d)" +msgstr "éžå¯¾å¿œã®ãƒ–ラシフォーマット" #: ../plug-ins/common/gbr.c:392 -#, fuzzy, c-format +#, c-format msgid "Error in GIMP brush file '%s'" -msgstr "" -"GIMP ブラシファイル '%s'\n" -"ã§ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ" +msgstr "GIMP ブラシファイル '%s' ã§ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ" #: ../plug-ins/common/gbr.c:400 #, c-format @@ -4021,16 +3858,15 @@ msgstr "å称未設定" #: ../plug-ins/common/gbr.c:578 -#, fuzzy msgid "GIMP brushes are either GRAYSCALE or RGBA" -msgstr "GIMP ブラシファイルã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã‹ RGBA ã®ã„ãšã‚Œã‹ã§ã™\n" +msgstr "GIMP ブラシファイルã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã‹ RGBA ã®ã„ãšã‚Œã‹ã§ã™" #: ../plug-ins/common/gbr.c:663 msgid "Save as Brush" msgstr "ブラシ形å¼ã§ä¿å­˜" #. attach labels -#: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:769 +#: ../plug-ins/common/gbr.c:683 ../plug-ins/common/grid.c:783 msgid "Spacing:" msgstr "é–“éš”:" @@ -4041,16 +3877,15 @@ #: ../plug-ins/common/gee.c:94 msgid "Gee-_Slime" -msgstr "" +msgstr "Gee-スライム(_S)" #: ../plug-ins/common/gee.c:152 msgid "GEE-SLIME" msgstr "GEE-スライム" #: ../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 "" @@ -4061,13 +3896,12 @@ "2000" #: ../plug-ins/common/gee_zoom.c:124 -#, fuzzy msgid "Gee-_Zoom" -msgstr "拡大(_Z)" +msgstr "Gee-ズーム(_Z)" #: ../plug-ins/common/gee_zoom.c:185 msgid "GEE-ZOOM" -msgstr "" +msgstr "GEE-ズーム" #: ../plug-ins/common/gee_zoom.c:199 msgid "" @@ -4076,33 +3910,27 @@ msgstr "Adam D. Moss ã®æ˜”ã®ä½œå“ / adam@gimp.org / adam@foxbox.org / 1998-2000" #: ../plug-ins/common/gif.c:402 ../plug-ins/common/gifload.c:143 -#, fuzzy msgid "GIF image" -msgstr "ç”»åƒ(_A)" +msgstr "GIF ç”»åƒ" #: ../plug-ins/common/gif.c:687 -#, fuzzy msgid "Couldn't simply reduce colors further. Saving as opaque." -msgstr "" -"ã“れ以上å˜ç´”ã«ã¯æ¸›è‰²ã§ãã¾ã›ã‚“. \n" -"ä¸é€æ˜Žã¨ã—ã¦ä¿å­˜ã—ã¾ã™." +msgstr "ã“れ以上å˜ç´”ã«ã¯æ¸›è‰²ã§ãã¾ã›ã‚“。ä¸é€æ˜Žã¨ã—ã¦ä¿å­˜ã—ã¾ã™ã€‚" #: ../plug-ins/common/gif.c:909 -#, fuzzy msgid "" "The GIF format only supports comments in 7bit ASCII encoding. No comment is " "saved." msgstr "" -"GIF フォーマットã§ã¯ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ASCII文字ã—ã‹\n" -"利用ã§ãã¾ã›ã‚“. コメントã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸ." +"GIF フォーマットã§ã¯ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ASCII文字ã—ã‹åˆ©ç”¨ã§ãã¾ã›ã‚“。コメントã¯ä¿å­˜ã•" +"ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚" #: ../plug-ins/common/gif.c:970 -#, fuzzy msgid "" "Cannot save RGB color images. Convert to indexed color or grayscale first." msgstr "" -"RGB ç”»åƒã¯ GIF å½¢å¼ã§ä¿å­˜ã§ãã¾ã›ã‚“.\n" -"インデックス形å¼ã‚‚ã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã«å¤‰æ›ã—ã¦ãã ã•ã„." +"RGB ç”»åƒã¯ GIF å½¢å¼ã§ä¿å­˜ã§ãã¾ã›ã‚“。インデックス形å¼ã‚‚ã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ã«" +"変æ›ã—ã¦ãã ã•ã„。" #: ../plug-ins/common/gif.c:1113 msgid "" @@ -4110,10 +3938,13 @@ "Transparent color in written file might be incorrect on viewers which don't " "support transparency." msgstr "" +"警告:\n" +"書ã込んã ãƒ•ã‚¡ã‚¤ãƒ«ã®é€æ˜Žè‰²ã¯ã€é€æ˜Žåº¦ã«å¯¾å¿œã—ã¦ã„ãªã„ビューアã§ã¯æ­£ã—ã表示ã•" +"ã‚Œãªã„å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚" #: ../plug-ins/common/gif.c:1152 msgid "Delay inserted to prevent evil CPU-sucking anim." -msgstr "" +msgstr "凶悪ãªå‹•ç”»ãŒ CPU を食ã„å°½ãã™ã®ã‚’防ããŸã‚ã€é…延を挿入ã—ã¾ã—ãŸã€‚" #: ../plug-ins/common/gif.c:1194 msgid "GIF Warning" @@ -4130,11 +3961,11 @@ "the image borders, or cancel this save." msgstr "" "GIF å½¢å¼ã§ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒä¸­ã«å®Ÿç”»åƒã‚µã‚¤ã‚ºã‚ˆã‚Š\n" -"大ããªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå«ã¾ã‚Œã¦ã„ã¾ã™. GIF å½¢å¼ã§ã¯ã“ã‚Œã¯è¨±å¯\n" -"ã•ã‚Œã¦ã„ã¾ã›ã‚“.\n" +"大ããªãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå«ã¾ã‚Œã¦ã„ã¾ã™ã€‚GIF å½¢å¼ã§ã¯ã“ã‚Œã¯è¨±å¯\n" +"ã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" "\n" -"å…¨ã¦ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ç”»åƒã‚µã‚¤ã‚ºä»¥ä¸‹ã«åˆ‡ã‚Šè©°ã‚ã‚‹ã‹, キャンセル\n" -"ã—ã¦ãã ã•ã„." +"å…¨ã¦ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ç”»åƒã‚µã‚¤ã‚ºä»¥ä¸‹ã«åˆ‡ã‚Šè©°ã‚ã‚‹ã‹ã€ã‚­ãƒ£ãƒ³ã‚»ãƒ«\n" +"ã—ã¦ãã ã•ã„。" #: ../plug-ins/common/gif.c:1254 msgid "Save as GIF" @@ -4163,56 +3994,50 @@ msgstr "ç„¡é™ãƒ«ãƒ¼ãƒ—(_L)" #: ../plug-ins/common/gif.c:1367 -#, fuzzy msgid "_Delay between frames where unspecified:" -msgstr "指定ã—ãªã„å ´åˆã®ãƒ•ãƒ¬ãƒ¼ãƒ é–“ã®æ™‚é–“:" +msgstr "指定ã—ãªã„å ´åˆã®ãƒ•ãƒ¬ãƒ¼ãƒ é–“ã®æ™‚é–“(_D):" #: ../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 "レイヤー毎ã«1フレーム (ç½®æ›)" #: ../plug-ins/common/gif.c:2611 msgid "Error writing output file." -msgstr "出力ファイル書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼." +msgstr "出力ファイル書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼ã€‚" #: ../plug-ins/common/gif.c:2681 #, c-format msgid "The default comment is limited to %d characters." -msgstr "デフォルトã®ã‚³ãƒ¡ãƒ³ãƒˆã¯ %d 文字ã¾ã§ã§ã™." +msgstr "デフォルトã®ã‚³ãƒ¡ãƒ³ãƒˆã¯ %d 文字ã¾ã§ã§ã™ã€‚" #: ../plug-ins/common/gifload.c:314 -#, fuzzy msgid "This is not a GIF file" -msgstr "'%s' ã¯ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™" +msgstr "ã“れ㯠GIF ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“" #: ../plug-ins/common/gifload.c:352 msgid "Non-square pixels. Image might look squashed." -msgstr "" +msgstr "éžæ­£æ–¹å½¢ãƒ”クセルã§ã™ã€‚ç”»åƒãŒæ½°ã‚ŒãŸã‚ˆã†ã«è¦‹ãˆã‚‹ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。" #: ../plug-ins/common/gifload.c:866 -#, fuzzy, c-format +#, c-format msgid "Background (%d%s)" -msgstr "背景 (%dms)" +msgstr "背景 (%d%s)" #: ../plug-ins/common/gifload.c:914 ../plug-ins/common/iwarp.c:783 #: ../plug-ins/common/iwarp.c:817 @@ -4221,9 +4046,9 @@ msgstr "フレーム %d" #: ../plug-ins/common/gifload.c:916 -#, fuzzy, c-format +#, c-format msgid "Frame %d (%d%s)" -msgstr "フレーム %d (%dms)" +msgstr "フレーム %d (%d%s)" #: ../plug-ins/common/gifload.c:946 #, c-format @@ -4231,27 +4056,29 @@ "GIF: Undocumented GIF composite type %d is not handled. Animation might not " "play or re-save perfectly." msgstr "" +"GIF: 文書化ã•ã‚Œã¦ã„ãªã„ GIF åˆæˆã‚¿ã‚¤ãƒ— %d ã¯æ‰±ãˆã¾ã›ã‚“。動画ãŒå†ç”Ÿã•ã‚Œãªã„" +"ã‹ã€å®Œå…¨ã«ä¿å­˜ã§ããªã„å¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™ã€‚" #: ../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 msgid "Layer %s doesn't have an alpha channel, skipped" -msgstr "%s レイヤーã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“. 飛ã°ã—ã¾ã™" +msgstr "%s レイヤーã«ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›ã‚“。飛ã°ã—ã¾ã™" #: ../plug-ins/common/gih.c:490 msgid "Error in GIMP brush pipe file." -msgstr "GIMP ブラシパイプファイル中ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ." +msgstr "GIMP ブラシパイプファイル中ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿã€‚" #: ../plug-ins/common/gih.c:556 msgid "GIMP brush file appears to be corrupted." -msgstr "GIMP ブラシファイルã¯ç ´æã—ã¦ã„るよã†ã§ã™." +msgstr "GIMP ブラシファイルã¯ç ´æã—ã¦ã„るよã†ã§ã™ã€‚" #: ../plug-ins/common/gih.c:704 msgid "Couldn't load one brush in the pipe, giving up." -msgstr "パイプ中ã®ãƒ–ラシãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸ." +msgstr "パイプ中ã®ãƒ–ラシãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“ã§ã—ãŸã€‚" #: ../plug-ins/common/gih.c:867 msgid "Save as Brush Pipe" @@ -4278,7 +4105,6 @@ msgstr " è¡Œ " #: ../plug-ins/common/gih.c:1011 -#, fuzzy msgid " Columns on each layer" msgstr " 列 (å„レイヤー)" @@ -4303,9 +4129,8 @@ msgstr "並ã³:" #: ../plug-ins/common/glasstile.c:129 -#, fuzzy msgid "_Glass Tile..." -msgstr "ガラスタイルã«ã—ã¦ã„ã¾ã™..." +msgstr "ガラスタイル(_G)..." #: ../plug-ins/common/glasstile.c:209 msgid "Glass Tile..." @@ -4316,43 +4141,36 @@ msgstr "ガラスタイル" #: ../plug-ins/common/glasstile.c:281 -#, fuzzy msgid "Tile _width:" msgstr "タイル幅(_W):" #: ../plug-ins/common/glasstile.c:295 ../plug-ins/common/mosaic.c:621 -#, fuzzy msgid "Tile _height:" msgstr "タイル高(_H):" #: ../plug-ins/common/gqbist.c:415 -#, fuzzy msgid "_Qbist..." -msgstr "Qビスト..." +msgstr "Qビスト(_Q)..." #: ../plug-ins/common/gqbist.c:514 msgid "Qbist ..." msgstr "Qビスト..." #: ../plug-ins/common/gqbist.c:695 -#, fuzzy msgid "Load QBE file" -msgstr "QBE ファイル読ã¿è¾¼ã¿..." +msgstr "QBE ファイル読ã¿è¾¼ã¿" #: ../plug-ins/common/gqbist.c:733 -#, fuzzy msgid "Save (middle transform) as QBE file" -msgstr "変形経éŽã‚’ QBE ファイルã¨ã—ã¦ä¿å­˜..." +msgstr "変形経éŽã‚’ QBE ファイルã¨ã—ã¦ä¿å­˜" #: ../plug-ins/common/gqbist.c:781 -#, fuzzy msgid "G-Qbist" -msgstr "G-Qビスト 1.12" +msgstr "G-Qビスト" #: ../plug-ins/common/gradmap.c:86 -#, fuzzy msgid "_Gradient Map" -msgstr "グラデーションマップã—ã¦ã„ã¾ã™..." +msgstr "グラデーションマップ(_G)" #: ../plug-ins/common/gradmap.c:124 msgid "Gradient Map..." @@ -4366,54 +4184,53 @@ msgid "Drawing Grid..." msgstr "グリッドをæã„ã¦ã„ã¾ã™..." -#: ../plug-ins/common/grid.c:621 ../plug-ins/gfig/gfig-dialog.c:1355 +#: ../plug-ins/common/grid.c:635 ../plug-ins/gfig/gfig-dialog.c:1355 #: ../plug-ins/imagemap/imap_menu.c:385 ../plug-ins/imagemap/imap_popup.c:153 #: ../plug-ins/imagemap/imap_toolbar.c:163 msgid "Grid" msgstr "グリッド" #. attach labels -#: ../plug-ins/common/grid.c:696 +#: ../plug-ins/common/grid.c:710 msgid "Horizontal" msgstr "æ°´å¹³" -#: ../plug-ins/common/grid.c:698 +#: ../plug-ins/common/grid.c:712 msgid "Vertical" msgstr "鉛直" -#: ../plug-ins/common/grid.c:700 +#: ../plug-ins/common/grid.c:714 msgid "Intersection" msgstr "交点" #. Width and Height -#: ../plug-ins/common/grid.c:703 ../plug-ins/common/svg.c:761 +#: ../plug-ins/common/grid.c:717 ../plug-ins/common/svg.c:772 #: ../plug-ins/common/wmf.c:548 ../plug-ins/print/gimp_main_window.c:992 #: ../plug-ins/print/gimp_main_window.c:1199 msgid "Width:" msgstr "å¹…:" #. attach labels -#: ../plug-ins/common/grid.c:836 +#: ../plug-ins/common/grid.c:850 msgid "Offset:" msgstr "オフセット:" #. attach color selectors -#: ../plug-ins/common/grid.c:875 +#: ../plug-ins/common/grid.c:889 msgid "Horizontal Color" msgstr "水平色" -#: ../plug-ins/common/grid.c:893 +#: ../plug-ins/common/grid.c:907 msgid "Vertical Color" msgstr "鉛直色" -#: ../plug-ins/common/grid.c:911 +#: ../plug-ins/common/grid.c:925 msgid "Intersection Color" msgstr "交点色" #: ../plug-ins/common/gtm.c:154 -#, fuzzy msgid "HTML table" -msgstr "マーブル" +msgstr "HTML 表" #: ../plug-ins/common/gtm.c:399 msgid "GIMP Table Magic" @@ -4424,17 +4241,14 @@ msgstr "警告" #: ../plug-ins/common/gtm.c:430 -#, fuzzy msgid "" "You are about to create a huge\n" "HTML file which will most likely\n" "crash your browser." msgstr "" -"マヂã™ã‹?\n" -"\n" "ã»ã¨ã‚“ã©ã®ãƒ–ラウザãŒã‚¯ãƒ©ãƒƒã‚·ãƒ¥\n" "ã™ã‚‹ã»ã©å·¨å¤§ãª HTML ファイルを\n" -"生æˆã—よã†ã¨ã—ã¦ã„ã¾ã™." +"生æˆã—よã†ã¨ã—ã¦ã„ã¾ã™ã€‚" #. HTML Page Options #: ../plug-ins/common/gtm.c:439 @@ -4442,7 +4256,6 @@ msgstr "HTML ページオプション" #: ../plug-ins/common/gtm.c:446 -#, fuzzy msgid "_Generate full HTML document" msgstr "完全㪠HTML 文書を生æˆã™ã‚‹(_G)" @@ -4452,7 +4265,7 @@ "tags instead of just the table html." msgstr "" "ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠GTM ã¯å˜ãªã‚‹è¡¨ã®éƒ¨åˆ†ã® HTML ã ã‘ã§ã¯ãªã ã‚„ " -"ç­‰ã®ã‚¿ã‚°ã‚‚å«ã‚€å®Œå…¨ãª HTML 文書を出力ã—ã¾ã™." +"ç­‰ã®ã‚¿ã‚°ã‚‚å«ã‚€å®Œå…¨ãª HTML 文書を出力ã—ã¾ã™ã€‚" #. HTML Table Creation Options #: ../plug-ins/common/gtm.c:465 @@ -4460,7 +4273,6 @@ msgstr "表作æˆã‚ªãƒ—ション" #: ../plug-ins/common/gtm.c:473 -#, fuzzy msgid "_Use cellspan" msgstr "Cellspan を使ã†(_U)" @@ -4469,8 +4281,8 @@ "If checked GTM will replace any rectangular sections of identically colored " "blocks with one large cell with ROWSPAN and COLSPAN values." msgstr "" -"ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠RWSPAN 㨠COLSPAN を用ã„ã¦å‡è³ªãªè‰²ã®çŸ©å½¢éƒ¨åˆ†ã‚’一ã¤ã®å¤§ããª" -"セルã«ã—ã¾ã™." +"ãƒã‚§ãƒƒã‚¯ã—ã¦ãŠã㨠ROWSPAN 㨠COLSPAN を用ã„ã¦å‡è³ªãªè‰²ã®çŸ©å½¢éƒ¨åˆ†ã‚’一ã¤ã®å¤§ã" +"ãªã‚»ãƒ«ã«ã—ã¾ã™ã€‚" #: ../plug-ins/common/gtm.c:488 msgid "Co_mpress TD tags" @@ -4482,8 +4294,8 @@ "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" @@ -4491,14 +4303,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 "表題文." +msgstr "表題文。" #: ../plug-ins/common/gtm.c:538 -#, fuzzy msgid "C_ell content:" msgstr "セルã®ä¸­èº«(_E):" @@ -4517,38 +4328,35 @@ #: ../plug-ins/common/gtm.c:567 msgid "The number of pixels in the table border." -msgstr "表枠ã®ãƒ”クセル幅." +msgstr "表枠ã®ãƒ”クセル幅。" #: ../plug-ins/common/gtm.c:582 msgid "The width for each table cell. Can be a number or a percent." -msgstr "個々ã®ã‚»ãƒ«ã®å¹…. 値もã—ãã¯ãƒ‘ーセント." +msgstr "個々ã®ã‚»ãƒ«ã®å¹…。値もã—ãã¯ãƒ‘ーセント。" #: ../plug-ins/common/gtm.c:598 msgid "The height for each table cell. Can be a number or a percent." -msgstr "個々ã®ã‚»ãƒ«ã®é«˜ã•. 値もã—ãã¯ãƒ‘ーセント." +msgstr "個々ã®ã‚»ãƒ«ã®é«˜ã•ã€‚値もã—ãã¯ãƒ‘ーセント。" #: ../plug-ins/common/gtm.c:609 -#, fuzzy msgid "Cell-_padding:" msgstr "セル-è©°ã‚物(_P):" #: ../plug-ins/common/gtm.c:613 msgid "The amount of cellpadding." -msgstr "セル詰ã‚物é‡." +msgstr "セル詰ã‚物é‡ã€‚" #: ../plug-ins/common/gtm.c:622 -#, fuzzy msgid "Cell-_spacing:" msgstr "セル間隔(_S):" #: ../plug-ins/common/gtm.c:626 msgid "The amount of cellspacing." -msgstr "セルã®é–“éš”." +msgstr "セルã®é–“隔。" #: ../plug-ins/common/guillotine.c:72 -#, fuzzy msgid "_Guillotine" -msgstr "ギロãƒãƒ³ã§åˆ‡æ–­ã—ã¦ã„ã¾ã™..." +msgstr "ギロãƒãƒ³(_G)" #: ../plug-ins/common/guillotine.c:104 msgid "Guillotine..." @@ -4556,12 +4364,11 @@ #: ../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 "ホット(_H)..." #: ../plug-ins/common/hot.c:379 msgid "Hot..." @@ -4572,7 +4379,6 @@ msgstr "ホット" #: ../plug-ins/common/hot.c:600 -#, fuzzy msgid "Create _New layer" msgstr "æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ä½œæˆ(_N)" @@ -4593,9 +4399,8 @@ msgstr "é»’ãã™ã‚‹(_B)" #: ../plug-ins/common/illusion.c:101 -#, fuzzy msgid "_Illusion..." -msgstr "幻をæã„ã¦ã„ã¾ã™..." +msgstr "å¹»(_I)..." #: ../plug-ins/common/illusion.c:173 msgid "Illusion..." @@ -4618,9 +4423,8 @@ msgstr "モード_2" #: ../plug-ins/common/iwarp.c:254 -#, fuzzy msgid "_IWarp..." -msgstr "æ­ªã‚ã¦ã„ã¾ã™..." +msgstr "対話型歪ã‚(_I)..." #: ../plug-ins/common/iwarp.c:688 msgid "Warping..." @@ -4684,12 +4488,10 @@ msgstr "渦巻 CW(_I)" #: ../plug-ins/common/iwarp.c:1059 -#, fuzzy msgid "_Deform radius:" msgstr "æ­ªã‚ã‚‹åŠå¾„(_D):" #: ../plug-ins/common/iwarp.c:1069 -#, fuzzy msgid "D_eform amount:" msgstr "æ­ªã‚ã‚‹é‡(_E):" @@ -4698,12 +4500,10 @@ msgstr "åŒç·šå½¢(_B)" #: ../plug-ins/common/iwarp.c:1092 -#, fuzzy msgid "Adaptive s_upersample" msgstr "é©å¿œåž‹ã‚¹ãƒ¼ãƒ‘ーサンプリング(_U)" #: ../plug-ins/common/iwarp.c:1112 -#, fuzzy msgid "Ma_x depth:" msgstr "最大深度(_X):" @@ -4721,9 +4521,8 @@ msgstr "対話型歪ã‚" #: ../plug-ins/common/jigsaw.c:364 -#, fuzzy msgid "_Jigsaw..." -msgstr "ジグソーパズル" +msgstr "ジグソーパズル(_J)..." #: ../plug-ins/common/jigsaw.c:418 msgid "Assembling Jigsaw..." @@ -4750,7 +4549,6 @@ msgstr "斜角端" #: ../plug-ins/common/jigsaw.c:2500 -#, fuzzy msgid "_Bevel width:" msgstr "斜角幅(_B):" @@ -4788,9 +4586,8 @@ 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" @@ -4798,118 +4595,107 @@ #: ../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 kB)" +msgstr "ファイルサイズ: %02.01f kB" #: ../plug-ins/common/jpeg.c:1861 ../plug-ins/common/jpeg.c:1961 -#, fuzzy msgid "File size: unknown" -msgstr "サイズ: ä¸æ˜Ž" +msgstr "ファイルサイズ: ä¸æ˜Ž" #: ../plug-ins/common/jpeg.c:1926 msgid "Save as JPEG" msgstr "JPEG å½¢å¼ã§ä¿å­˜ã™ã‚‹" #: ../plug-ins/common/jpeg.c:1947 -#, fuzzy msgid "_Quality:" -msgstr "å“質:" +msgstr "å“質(_Q):" #: ../plug-ins/common/jpeg.c:1951 -#, fuzzy msgid "JPEG quality parameter" -msgstr "パラメータ" +msgstr "JPEG å“質パラメータ" #: ../plug-ins/common/jpeg.c:1970 -#, fuzzy msgid "Show _Preview in image window" -msgstr "ç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ä¸­ã§ãƒ—レビュー" +msgstr "ç”»åƒã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ä¸­ã§ãƒ—レビュー(_P)" #: ../plug-ins/common/jpeg.c:1983 -#, fuzzy msgid "_Advanced Options" -msgstr "詳細設定" +msgstr "詳細設定(_A)" #: ../plug-ins/common/jpeg.c:2011 -#, fuzzy msgid "_Smoothing:" -msgstr "スムージング:" +msgstr "スムージング(_S):" #: ../plug-ins/common/jpeg.c:2024 -#, fuzzy msgid "Frequency (rows):" -msgstr "リスタート頻度(列)" +msgstr "頻度(列):" #: ../plug-ins/common/jpeg.c:2038 -#, fuzzy msgid "Use restart markers" -msgstr "リスタートマーカー" +msgstr "リスタートマーカーを使用" -#: ../plug-ins/common/jpeg.c:2053 ../plug-ins/xjt/xjt.c:860 +#: ../plug-ins/common/jpeg.c:2055 ../plug-ins/xjt/xjt.c:860 msgid "Optimize" msgstr "最é©åŒ–" -#: ../plug-ins/common/jpeg.c:2067 +#: ../plug-ins/common/jpeg.c:2069 msgid "Progressive" msgstr "プログレッシブ" -#: ../plug-ins/common/jpeg.c:2086 +#: ../plug-ins/common/jpeg.c:2088 msgid "Force baseline JPEG" -msgstr "" +msgstr "ベースライン JPEG 化" -#: ../plug-ins/common/jpeg.c:2102 +#: ../plug-ins/common/jpeg.c:2104 msgid "Save EXIF data" -msgstr "" +msgstr "EXIF データをä¿å­˜" -#: ../plug-ins/common/jpeg.c:2119 -#, fuzzy +#: ../plug-ins/common/jpeg.c:2121 msgid "Save thumbnail" -msgstr "ファイルをä¿å­˜" +msgstr "サムãƒã‚¤ãƒ«ã‚’ä¿å­˜" #. Subsampling -#: ../plug-ins/common/jpeg.c:2136 +#: ../plug-ins/common/jpeg.c:2138 msgid "Subsampling:" msgstr "サブサンプリング:" #. DCT method -#: ../plug-ins/common/jpeg.c:2163 -#, fuzzy +#: ../plug-ins/common/jpeg.c:2165 msgid "DCT method:" -msgstr "閾値:" +msgstr "DCT 変æ›æ–¹æ³•:" -#: ../plug-ins/common/jpeg.c:2169 +#: ../plug-ins/common/jpeg.c:2171 msgid "Fast Integer" msgstr "高速整数" -#: ../plug-ins/common/jpeg.c:2170 +#: ../plug-ins/common/jpeg.c:2172 msgid "Integer" msgstr "æ•´æ•°" -#: ../plug-ins/common/jpeg.c:2171 +#: ../plug-ins/common/jpeg.c:2173 msgid "Floating-Point" msgstr "浮動å°æ•°" -#: ../plug-ins/common/jpeg.c:2185 +#: ../plug-ins/common/jpeg.c:2187 msgid "Comment" msgstr "コメント" -#: ../plug-ins/common/jpeg.c:2338 -#, fuzzy, c-format +#: ../plug-ins/common/jpeg.c:2340 +#, c-format msgid "Opening thumbnail for '%s'..." -msgstr "'%s' ã‚’é–‹ã„ã¦ã„ã¾ã™..." +msgstr "'%s' ã®ã‚µãƒ ãƒã‚¤ãƒ«ã‚’é–‹ã„ã¦ã„ã¾ã™..." #: ../plug-ins/common/laplace.c:95 -#, fuzzy msgid "_Laplace" -msgstr "ラプラス変æ›ã—ã¦ã„ã¾ã™..." +msgstr "ラプラス(_L)" #: ../plug-ins/common/laplace.c:228 msgid "Laplace..." @@ -4952,12 +4738,10 @@ msgstr "åˆæˆè¦ç´ " #: ../plug-ins/common/lic.c:694 -#, fuzzy msgid "_With white noise" msgstr "ホワイトノイズã¨(_W)" #: ../plug-ins/common/lic.c:695 -#, fuzzy msgid "W_ith source image" msgstr "元画åƒã¨(_I)" @@ -4966,69 +4750,56 @@ msgstr "対象画åƒ(_E):" #: ../plug-ins/common/lic.c:725 -#, fuzzy msgid "_Filter length:" msgstr "フィルタ長(_F):" #: ../plug-ins/common/lic.c:734 -#, fuzzy msgid "_Noise magnitude:" msgstr "ノイズ強度(_N):" #: ../plug-ins/common/lic.c:743 -#, fuzzy msgid "In_tegration steps:" msgstr "ç©åˆ†ã‚¹ãƒ†ãƒƒãƒ—(_T):" #: ../plug-ins/common/lic.c:752 -#, fuzzy msgid "_Minimum value:" msgstr "最å°å€¤(_M):" #: ../plug-ins/common/lic.c:761 -#, fuzzy msgid "M_aximum value:" msgstr "最大値(_A):" #: ../plug-ins/common/lic.c:812 -#, fuzzy msgid "_Van Gogh (LIC)..." -msgstr "ヴァン ゴッホ風 (LIC)..." +msgstr "ヴァン ゴッホ風 (LIC)(_V)..." #: ../plug-ins/common/mail.c:253 -#, fuzzy msgid "_Mail Image..." -msgstr "/ファイル/ç”»åƒé€ä¿¡..." +msgstr "ç”»åƒé€ä¿¡(_M)..." #: ../plug-ins/common/mail.c:474 -#, fuzzy msgid "Send as Mail" msgstr "メールã§ç”»åƒã‚’é€ã‚‹" #: ../plug-ins/common/mail.c:498 -#, fuzzy msgid "_Recipient:" -msgstr "宛先:" +msgstr "宛先(_R):" #: ../plug-ins/common/mail.c:510 -#, fuzzy msgid "_Sender:" -msgstr "é€ã‚Šä¸»:" +msgstr "é€ã‚Šä¸»(_S):" #: ../plug-ins/common/mail.c:522 -#, fuzzy msgid "S_ubject:" -msgstr "é¡Œå:" +msgstr "é¡Œå(_U):" #: ../plug-ins/common/mail.c:534 -#, fuzzy msgid "Comm_ent:" -msgstr "コメント:" +msgstr "コメント(_E):" #: ../plug-ins/common/mail.c:546 -#, fuzzy msgid "_Filename:" -msgstr "ファイルå:" +msgstr "ファイルå(_F):" #. Encapsulation label #: ../plug-ins/common/mail.c:580 @@ -5036,19 +4807,16 @@ msgstr "梱包方法:" #: ../plug-ins/common/mail.c:592 -#, fuzzy msgid "_Uuencode" -msgstr "Uuencode" +msgstr "Uuencode(_U)" #: ../plug-ins/common/mail.c:593 -#, fuzzy msgid "_MIME" -msgstr "MIME" +msgstr "MIME(_M)" #: ../plug-ins/common/mail.c:693 -#, fuzzy msgid "some sort of error with the file extension or lack thereof" -msgstr "mail: ファイル拡張å­ã«é–¢ã™ã‚‹ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ\n" +msgstr "ファイル拡張å­ã«é–¢ã™ã‚‹ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸ" #: ../plug-ins/common/mapcolor.c:113 msgid "First Source Color" @@ -5068,17 +4836,15 @@ #: ../plug-ins/common/mapcolor.c:154 msgid "Adjust _FG-BG" -msgstr "" +msgstr "å‰æ™¯-背景調整(_F)" #: ../plug-ins/common/mapcolor.c:172 -#, fuzzy msgid "Color Range _Mapping..." -msgstr "色を交æ›ã—ã¦ã„ã¾ã™..." +msgstr "色範囲マッピング(_M)..." #: ../plug-ins/common/mapcolor.c:219 ../plug-ins/common/mapcolor.c:507 -#, fuzzy msgid "Cannot operate on gray or indexed color images." -msgstr "xjt: インデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“" +msgstr "グレースケールやインデックス画åƒã«ã¯é©ç”¨ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/mapcolor.c:240 msgid "Adjusting Foreground/Background..." @@ -5106,13 +4872,12 @@ msgstr "å®›:" #: ../plug-ins/common/max_rgb.c:106 -#, fuzzy msgid "_Max RGB..." -msgstr "RGB 値最大..." +msgstr "RGB 値最大(_M)..." #: ../plug-ins/common/max_rgb.c:145 msgid "Can only operate on RGB drawables." -msgstr "RGB æ画対象ã®ã¿æ“作ã§ãã¾ã™." +msgstr "RGB æ画対象ã®ã¿æ“作ã§ãã¾ã™ã€‚" #: ../plug-ins/common/max_rgb.c:245 msgid "Max RGB..." @@ -5123,19 +4888,16 @@ msgstr "RGB 値最大" #: ../plug-ins/common/max_rgb.c:295 -#, fuzzy msgid "_Hold the maximal channels" msgstr "最大値ãƒãƒ£ãƒ³ãƒãƒ«ã‚’残ã™(_H)" #: ../plug-ins/common/max_rgb.c:298 -#, fuzzy msgid "Ho_ld the minimal channels" msgstr "最å°å€¤ãƒãƒ£ãƒ³ãƒãƒ«ã‚’残ã™(_L)" #: ../plug-ins/common/mblur.c:176 -#, fuzzy msgid "_Motion Blur..." -msgstr "モーションã¼ã‹ã—..." +msgstr "モーションã¼ã‹ã—(_M)..." #: ../plug-ins/common/mblur.c:796 msgid "Motion Blurring..." @@ -5170,15 +4932,14 @@ msgstr "角度(_A):" #: ../plug-ins/common/mblur.c:969 -#, fuzzy msgid "Blur Center" -msgstr "中央" +msgstr "ã¼ã‹ã—ã®ä¸­å¿ƒ" #. Inform the user that we couldn't losslessly save the #. * transparency & just use the full palette #: ../plug-ins/common/mng.c:495 ../plug-ins/common/png.c:1562 msgid "Couldn't losslessly save transparency, saving opacity instead." -msgstr "" +msgstr "é€æ˜Žåº¦ã‚’劣化ã•ã›ãšã«ä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ä¸é€æ˜Žã§ä¿å­˜ã—ã¾ã™ã€‚" #: ../plug-ins/common/mng.c:1314 msgid "Save as MNG" @@ -5193,12 +4954,10 @@ msgstr "インターレース" #: ../plug-ins/common/mng.c:1345 -#, fuzzy msgid "Save background color" msgstr "背景色をä¿å­˜" #: ../plug-ins/common/mng.c:1356 -#, fuzzy msgid "Save gamma" msgstr "ガンマ値をä¿å­˜" @@ -5235,9 +4994,8 @@ msgstr "å…¨ã¦ã® JNG" #: ../plug-ins/common/mng.c:1415 -#, fuzzy msgid "Default chunks type:" -msgstr "デフォルトã®ãƒžãƒƒãƒ—ã®ç¨®é¡ž" +msgstr "デフォルトã®ãƒãƒ£ãƒ³ã‚¯åž‹:" #: ../plug-ins/common/mng.c:1418 msgid "Combine" @@ -5248,12 +5006,10 @@ msgstr "ç½®æ›" #: ../plug-ins/common/mng.c:1430 -#, fuzzy msgid "Default frame disposal:" -msgstr "デフォルトã®ãƒžãƒƒãƒ—ã®ç¨®é¡ž" +msgstr "デフォルトã®ãƒ•ãƒ¬ãƒ¼ãƒ é…ç½®:" #: ../plug-ins/common/mng.c:1442 -#, fuzzy msgid "PNG compression level:" msgstr "PNG 圧縮レベル:" @@ -5266,9 +5022,8 @@ msgstr "JPEG 圧縮å“質:" #: ../plug-ins/common/mng.c:1481 -#, fuzzy msgid "JPEG smoothing factor:" -msgstr "スムージング:" +msgstr "JPEG スムージング:" #: ../plug-ins/common/mng.c:1491 msgid "Animated MNG options" @@ -5279,9 +5034,8 @@ msgstr "ループ" #: ../plug-ins/common/mng.c:1511 -#, fuzzy msgid "Default frame delay:" -msgstr "デフォルトã®ãƒžãƒƒãƒ—ã®ç¨®é¡ž" +msgstr "デフォルトã®ãƒ•ãƒ¬ãƒ¼ãƒ é…延:" #: ../plug-ins/common/mng.c:1589 msgid "MNG animation" @@ -5314,12 +5068,10 @@ msgstr "タイル分割を許å¯(_W)" #: ../plug-ins/common/mosaic.c:564 -#, fuzzy msgid "_Pitted surfaces" msgstr "ã¸ã“ã‚“ã è¡¨é¢(_P)" #: ../plug-ins/common/mosaic.c:574 -#, fuzzy msgid "_FG/BG lighting" msgstr "å‰æ™¯/背景 å…‰æº(_F)" @@ -5337,7 +5089,6 @@ msgstr "六角形(_X)" #: ../plug-ins/common/mosaic.c:594 -#, fuzzy msgid "Oc_tagons & squares" msgstr "八角形ã¨å››è§’(_T)" @@ -5355,7 +5106,6 @@ msgstr "タイル間隔(_E):" #: ../plug-ins/common/mosaic.c:639 -#, fuzzy msgid "Tile _neatness:" msgstr "タイルå‡æ•´åº¦(_N):" @@ -5369,7 +5119,7 @@ #: ../plug-ins/common/mosaic.c:2392 msgid "Unable to add additional point.\n" -msgstr "ã“れ以上点を追加ã§ãã¾ã›ã‚“.\n" +msgstr "ã“れ以上点を追加ã§ãã¾ã›ã‚“。\n" #: ../plug-ins/common/neon.c:135 msgid "_Neon..." @@ -5440,9 +5190,8 @@ msgstr "æ–°èžå°åˆ·..." #: ../plug-ins/common/newsprint.c:1039 -#, fuzzy msgid "_Spot function:" -msgstr "スãƒãƒƒãƒˆå½¢çŠ¶:" +msgstr "スãƒãƒƒãƒˆå½¢çŠ¶(_S):" #: ../plug-ins/common/newsprint.c:1196 msgid "Newsprint" @@ -5462,9 +5211,8 @@ msgstr "出力 LPI(_U):" #: ../plug-ins/common/newsprint.c:1286 -#, fuzzy msgid "C_ell size:" -msgstr "セルサイズ:" +msgstr "セルサイズ(_E):" #. screen settings #: ../plug-ins/common/newsprint.c:1299 ../plug-ins/gflare/gflare.c:562 @@ -5472,7 +5220,6 @@ msgstr "スクリーン" #: ../plug-ins/common/newsprint.c:1318 -#, fuzzy msgid "B_lack pullout (%):" msgstr "黒弱゠(%)(_L):" @@ -5493,12 +5240,10 @@ msgstr "強度(_N)" #: ../plug-ins/common/newsprint.c:1403 -#, fuzzy msgid "_Lock channels" msgstr "ãƒãƒ£ãƒ³ãƒãƒ«å›ºå®š(_L)" #: ../plug-ins/common/newsprint.c:1416 -#, fuzzy msgid "_Factory defaults" msgstr "åˆæœŸå€¤ã«æˆ»ã™(_F)" @@ -5512,9 +5257,8 @@ msgstr "オーãƒãƒ¼ã‚µãƒ³ãƒ—ル(_V):" #: ../plug-ins/common/nlfilt.c:126 -#, fuzzy msgid "_NL Filter..." -msgstr "éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿..." +msgstr "éžç·šå½¢ãƒ•ã‚£ãƒ«ã‚¿(_N)..." #: ../plug-ins/common/nlfilt.c:954 msgid "NL Filter..." @@ -5529,17 +5273,14 @@ msgstr "フィルタ" #: ../plug-ins/common/nlfilt.c:1042 -#, fuzzy msgid "_Alpha trimmed mean" msgstr "é€æ˜Žåº¦ã‚’用ã„ãŸå¹³å‡(_A)" #: ../plug-ins/common/nlfilt.c:1044 -#, fuzzy msgid "Op_timal estimation" msgstr "最é©åŒ–(_T)" #: ../plug-ins/common/nlfilt.c:1046 -#, fuzzy msgid "_Edge enhancement" msgstr "ç¸å¼·èª¿(_E)" @@ -5548,28 +5289,24 @@ msgstr "アルファ(_L):" #: ../plug-ins/common/noisify.c:157 -#, fuzzy msgid "_Scatter RGB..." -msgstr "HSV 散乱..." +msgstr "RGB 散乱(_S)..." #: ../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 "相関ノイズ(_R)" #: ../plug-ins/common/noisify.c:492 -#, fuzzy msgid "_Independent RGB" -msgstr "独立ã«(_I)" +msgstr "RGB 独立(_I)" #: ../plug-ins/common/noisify.c:516 ../plug-ins/common/noisify.c:520 msgid "_Gray:" @@ -5589,9 +5326,8 @@ msgstr "æ­£è¦åŒ–ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/nova.c:179 -#, fuzzy msgid "Su_perNova..." -msgstr "超新星" +msgstr "超新星(_P)..." #: ../plug-ins/common/nova.c:262 msgid "Rendering SuperNova..." @@ -5610,7 +5346,6 @@ msgstr "è¼»(_S):" #: ../plug-ins/common/nova.c:386 -#, fuzzy msgid "R_andom hue:" msgstr "乱数色相(_A):" @@ -5619,14 +5354,12 @@ msgstr "超新星ã®ä¸­å¿ƒ" #: ../plug-ins/common/nova.c:472 -#, fuzzy msgid "S_how cursor" msgstr "カーソル表示(_H)" #: ../plug-ins/common/oilify.c:111 -#, fuzzy msgid "Oili_fy..." -msgstr "油絵化" +msgstr "油絵化(_F)..." #: ../plug-ins/common/oilify.c:189 msgid "Oil Painting..." @@ -5637,12 +5370,10 @@ msgstr "油絵化" #: ../plug-ins/common/oilify.c:504 -#, fuzzy msgid "_Mask size:" msgstr "マスクサイズ(_M):" #: ../plug-ins/common/oilify.c:515 -#, fuzzy msgid "_Use intensity algorithm" msgstr "強度アルゴリズムを使用ã™ã‚‹(_U)" @@ -5707,9 +5438,8 @@ msgstr "背景色(_K)" #: ../plug-ins/common/papertile.c:368 -#, fuzzy msgid "S_elect here:" -msgstr "é¸æŠžã•ã‚ŒãŸæ–‡å­—:" +msgstr "ã“ã“ã§é¸æŠž(_E):" #: ../plug-ins/common/papertile.c:375 msgid "Background Color" @@ -5734,7 +5464,7 @@ #: ../plug-ins/common/pat.c:343 #, c-format msgid "Invalid UTF-8 string in pattern file '%s'." -msgstr "" +msgstr "パターンファイル '%s' ã«ä¸æ­£ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™ã€‚" #: ../plug-ins/common/pat.c:501 msgid "Save as Pattern" @@ -5742,35 +5472,29 @@ #: ../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 -#, fuzzy, c-format +#, c-format msgid "Could not read header from '%s'" -msgstr "" -"'%s'\n" -"ã‹ã‚‰ãƒ˜ãƒƒãƒ€ãŒèª­ã‚ã¾ã›ã‚“" +msgstr "'%s' ã‹ã‚‰ãƒ˜ãƒƒãƒ€ãŒèª­ã‚ã¾ã›ã‚“" #: ../plug-ins/common/pcx.c:321 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a PCX file" -msgstr "" -"'%s'\n" -"ã¯PCXファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“" +msgstr "'%s' ã¯PCXファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“" #: ../plug-ins/common/pcx.c:375 msgid "Unusual PCX flavour, giving up" -msgstr "" +msgstr "異常㪠PCX ã«ã¤ãã€ãŠæ‰‹ä¸Šã’ã§ã™" #: ../plug-ins/common/photocopy.c:158 -#, fuzzy msgid "_Photocopy..." -msgstr "ホット..." +msgstr "写真コピー(_P)..." #: ../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 @@ -5778,23 +5502,20 @@ msgstr "明瞭度(_S):" #: ../plug-ins/common/photocopy.c:895 -#, fuzzy msgid "Percent _black:" -msgstr "パーセント" +msgstr "黒パーセント(_B):" #: ../plug-ins/common/photocopy.c:909 -#, fuzzy msgid "Percent _white:" -msgstr "パーセント" +msgstr "白パーセント(_W):" #: ../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 "ピクセル化ã—ã¦ã„ã¾ã™..." +msgstr "ピクセル化(_P)..." #: ../plug-ins/common/pixelize.c:275 msgid "Pixelizing..." @@ -5810,12 +5531,11 @@ #: ../plug-ins/common/pixelize.c:342 msgid "Pixel _Height:" -msgstr "タイル高(_H):" +msgstr "ピクセル高(_H):" #: ../plug-ins/common/plasma.c:185 -#, fuzzy msgid "_Plasma..." -msgstr "プラズマ..." +msgstr "プラズマ(_P)..." #: ../plug-ins/common/plasma.c:268 msgid "Plasma..." @@ -5836,67 +5556,63 @@ #: ../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 msgid "Error while reading '%s'. File corrupted?" -msgstr "" +msgstr "'%s' ã®èª­ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼ã€‚ファイルãŒå£Šã‚Œã¦ã„ã‚‹?" #. Aie! Unknown type #: ../plug-ins/common/png.c:791 #, c-format msgid "Unknown color model in PNG file '%s'." -msgstr "" +msgstr "PNG ファイル '%s' ã§æœªçŸ¥ã®ã‚«ãƒ©ãƒ¼ãƒ¢ãƒ‡ãƒ«ã€‚" #: ../plug-ins/common/png.c:846 msgid "" "The PNG file specifies an offset that caused the layer to be positioned " "outside the image." msgstr "" +"ã“ã® PNG ファイルã§ã¯ã€ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒç”»åƒã®å¤–ã«é…ç½®ã•ã‚Œã‚‹ã‚ˆã†ãªã‚ªãƒ•ã‚»ãƒƒãƒˆãŒæŒ‡å®šã•" +"ã‚Œã¦ã„ã¾ã™ã€‚" #: ../plug-ins/common/png.c:1163 #, c-format msgid "Error while saving '%s'. Could not save image." -msgstr "" +msgstr "'%s' ã®ä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼ã€‚ç”»åƒãŒä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚" #: ../plug-ins/common/png.c:1591 msgid "Save as PNG" msgstr "PNG å½¢å¼ã§ä¿å­˜ã™ã‚‹" #: ../plug-ins/common/png.c:1595 -#, fuzzy msgid "_Load defaults" -msgstr "åˆæœŸå€¤ã«æˆ»ã™(_F)" +msgstr "åˆæœŸå€¤ã‚’読ã¿è¾¼ã¿(_L)" #: ../plug-ins/common/png.c:1596 -#, fuzzy msgid "_Save defaults" -msgstr "åˆæœŸå€¤ã«æˆ»ã™" +msgstr "åˆæœŸå€¤ã‚’ä¿å­˜(_S)" #: ../plug-ins/common/png.c:1617 msgid "_Interlacing (Adam7)" msgstr "インターレース (Adam7)(_I)" #: ../plug-ins/common/png.c:1628 -#, fuzzy msgid "Save _background color" -msgstr "背景色をä¿å­˜" +msgstr "背景色をä¿å­˜(_B)" #: ../plug-ins/common/png.c:1636 -#, fuzzy msgid "Save _gamma" -msgstr "ガンマ値をä¿å­˜" +msgstr "ガンマ値をä¿å­˜(_G)" #: ../plug-ins/common/png.c:1645 -#, fuzzy msgid "Save layer o_ffset" -msgstr "レイヤーオフセットをä¿å­˜(_L)" +msgstr "レイヤーオフセットをä¿å­˜(_F)" #: ../plug-ins/common/png.c:1654 -#, fuzzy msgid "Save _resolution" -msgstr "解åƒåº¦ã‚’ä¿å­˜" +msgstr "解åƒåº¦ã‚’ä¿å­˜(_R)" #: ../plug-ins/common/png.c:1663 msgid "Save creation _time" @@ -5908,16 +5624,15 @@ #: ../plug-ins/common/png.c:1686 msgid "Save color _values from transparent pixels" -msgstr "" +msgstr "é€æ˜Žãƒ”クセルã®è‰²ã®å€¤ã‚’ä¿å­˜(_V)" #: ../plug-ins/common/png.c:1699 -#, fuzzy msgid "Co_mpression level:" msgstr "圧縮レベル(_M):" #: ../plug-ins/common/png.c:1819 msgid "Could not load PNG defaults" -msgstr "PNG ã®ã§ãƒ•ã‚©ãƒˆãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“" +msgstr "PNG ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“" #: ../plug-ins/common/pnm.c:228 msgid "PNM Image" @@ -5939,27 +5654,27 @@ #: ../plug-ins/common/pnm.c:493 ../plug-ins/common/pnm.c:502 #: ../plug-ins/common/pnm.c:577 ../plug-ins/common/pnm.c:633 msgid "PNM: Premature end of file." -msgstr "PNM: ファイルãŒåƒåˆ‡ã‚Œã¦ã„ã¾ã™." +msgstr "PNM: ファイルãŒåƒåˆ‡ã‚Œã¦ã„ã¾ã™ã€‚" #: ../plug-ins/common/pnm.c:467 msgid "PNM: Invalid file." -msgstr "PNM: ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™." +msgstr "PNM: ä¸æ­£ãªãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚" #: ../plug-ins/common/pnm.c:480 msgid "File not in a supported format." -msgstr "サãƒãƒ¼ãƒˆã•ã‚Œãªã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™." +msgstr "サãƒãƒ¼ãƒˆã•ã‚Œãªã„å½¢å¼ã®ãƒ•ã‚¡ã‚¤ãƒ«ã§ã™ã€‚" #: ../plug-ins/common/pnm.c:489 msgid "PNM: Invalid X resolution." -msgstr "PNM: ä¸æ­£ãª X 解åƒåº¦ã§ã™." +msgstr "PNM: ä¸æ­£ãª X 解åƒåº¦ã§ã™ã€‚" #: ../plug-ins/common/pnm.c:496 msgid "PNM: Invalid Y resolution." -msgstr "PNM: ä¸æ­£ãª Y 解åƒåº¦ã§ã™." +msgstr "PNM: ä¸æ­£ãª Y 解åƒåº¦ã§ã™ã€‚" #: ../plug-ins/common/pnm.c:508 msgid "PNM: Invalid maximum value." -msgstr "PNM: ä¸æ­£ãªæœ€å¤§å€¤ã§ã™." +msgstr "PNM: ä¸æ­£ãªæœ€å¤§å€¤ã§ã™ã€‚" #: ../plug-ins/common/pnm.c:684 msgid "PNM: Error reading file." @@ -5975,7 +5690,6 @@ #. file save type #: ../plug-ins/common/pnm.c:959 -#, fuzzy msgid "Data formatting" msgstr "データフォーマット" @@ -5989,7 +5703,7 @@ #: ../plug-ins/common/polar.c:170 msgid "P_olar Coords..." -msgstr "" +msgstr "極座標(_O)..." #: ../plug-ins/common/polar.c:357 msgid "Polarizing..." @@ -6000,17 +5714,14 @@ msgstr "極座標" #: ../plug-ins/common/polar.c:620 -#, fuzzy msgid "Circle _depth in percent:" -msgstr "ï¼…ã§è¡¨ã—ãŸå††ã®ä¸¸ã•(_D):" +msgstr "%% ã§è¡¨ã—ãŸå††ã®ä¸¸ã•(_D):" #: ../plug-ins/common/polar.c:632 -#, fuzzy msgid "Offset _angle:" msgstr "角度オフセット(_A):" #: ../plug-ins/common/polar.c:647 -#, fuzzy msgid "_Map backwards" msgstr "逆方å‘マップ(_M)" @@ -6019,10 +5730,9 @@ "If checked the mapping will begin at the right side, as opposed to beginning " "at the left." msgstr "" -"ãƒã‚§ãƒƒã‚¯ã—ã¦ã‚ã‚‹å ´åˆã«ã¯å³å´ã‹ã‚‰, ãã†ã§ãªã‘ã‚Œã°å·¦å´ã‹ã‚‰ãƒžãƒƒãƒ”ングã—ã¾ã™." +"ãƒã‚§ãƒƒã‚¯ã—ã¦ã‚ã‚‹å ´åˆã«ã¯å³å´ã‹ã‚‰ã€ãã†ã§ãªã‘ã‚Œã°å·¦å´ã‹ã‚‰ãƒžãƒƒãƒ”ングã—ã¾ã™ã€‚" #: ../plug-ins/common/polar.c:664 -#, fuzzy msgid "Map from _top" msgstr "上å´ã‹ã‚‰ãƒžãƒƒãƒ—(_T)" @@ -6031,11 +5741,10 @@ "If unchecked the mapping will put the bottom row in the middle and the top " "row on the outside. If checked it will be the opposite." msgstr "" -"ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯ç”»åƒã®ä¸‹å´ã‚’中心ã«, 上å´ã‚’外ã«å‘ã‘ã¦ãƒžãƒƒãƒ”ングã—ã¾" -"ã™. ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯é€†ã«ãªã‚Šã¾ã™." +"ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯ç”»åƒã®ä¸‹å´ã‚’中心ã«ã€ä¸Šå´ã‚’外ã«å‘ã‘ã¦ãƒžãƒƒãƒ”ングã—ã¾" +"ã™ã€‚ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯é€†ã«ãªã‚Šã¾ã™ã€‚" #: ../plug-ins/common/polar.c:682 -#, fuzzy msgid "To _polar" msgstr "極座標ã¸(_P)" @@ -6044,27 +5753,25 @@ "If unchecked the image will be circularly mapped onto a rectangle. If " "checked the image will be mapped onto a circle." msgstr "" -"ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯æ¥µåº§æ¨™ã‹ã‚‰ç›´äº¤åº§æ¨™ã¸ã®å¤‰æ›, ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯ç›´äº¤" -"座標ã‹ã‚‰æ¥µåº§æ¨™ã¸å¤‰æ›ã•ã‚Œã¾ã™." +"ãƒã‚§ãƒƒã‚¯ã—ã¦ãªã„å ´åˆã«ã¯æ¥µåº§æ¨™ã‹ã‚‰ç›´äº¤åº§æ¨™ã¸ã®å¤‰æ›ã€ãƒã‚§ãƒƒã‚¯ã—ãŸå ´åˆã«ã¯ç›´äº¤" +"座標ã‹ã‚‰æ¥µåº§æ¨™ã¸å¤‰æ›ã•ã‚Œã¾ã™ã€‚" #: ../plug-ins/common/postscript.c:576 ../plug-ins/common/postscript.c:662 -#, fuzzy msgid "PostScript document" -msgstr "PostScript レベル 2" +msgstr "PostScript ドキュメント" #: ../plug-ins/common/postscript.c:595 ../plug-ins/common/postscript.c:677 -#, fuzzy msgid "Encapsulated PostScript image" -msgstr "_EPS å½¢å¼" +msgstr "EPS å½¢å¼" #: ../plug-ins/common/postscript.c:614 msgid "PDF document" -msgstr "" +msgstr "PDF ドキュメント" #: ../plug-ins/common/postscript.c:1005 -#, fuzzy, c-format +#, c-format msgid "Could not interpret '%s'" -msgstr "\"%s\" ã‚’é–‹ã‘ã¾ã›ã‚“" +msgstr "\"%s\" を解釈ã§ãã¾ã›ã‚“" #: ../plug-ins/common/postscript.c:1103 msgid "PostScript save cannot handle images with alpha channels" @@ -6073,18 +5780,17 @@ #: ../plug-ins/common/postscript.c:1631 #, c-format msgid "Error starting ghostscript (%s)" -msgstr "" +msgstr "ghostscript 起動エラー (%s)" #: ../plug-ins/common/postscript.c:1661 -#, fuzzy, c-format +#, c-format msgid "Error starting ghostscript: %s" -msgstr "出力ファイル書ãè¾¼ã¿ã‚¨ãƒ©ãƒ¼." +msgstr "ghostscript 起動エラー: %s" #: ../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 "書ã出ã—エラー発生" @@ -6098,7 +5804,7 @@ msgstr "レンダリング" #. Resolution -#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/svg.c:882 +#: ../plug-ins/common/postscript.c:2958 ../plug-ins/common/svg.c:893 #: ../plug-ins/common/wmf.c:669 ../plug-ins/print/gimp_main_window.c:1087 msgid "Resolution:" msgstr "解åƒåº¦:" @@ -6109,7 +5815,7 @@ #: ../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:2994 msgid "Try Bounding Box" @@ -6124,7 +5830,7 @@ msgid "B/W" msgstr "白黒" -#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:411 +#: ../plug-ins/common/postscript.c:3012 ../plug-ins/rcm/rcm_dialog.c:422 msgid "Gray" msgstr "グレー" @@ -6141,7 +5847,6 @@ msgstr "自動" #: ../plug-ins/common/postscript.c:3024 -#, fuzzy msgid "Text antialiasing" msgstr "文字アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°" @@ -6154,7 +5859,6 @@ msgstr "å¼·ã" #: ../plug-ins/common/postscript.c:3036 -#, fuzzy msgid "Graphic antialiasing" msgstr "グラフィックアンãƒã‚¨ã‚¤ãƒªã‚¢ã‚·ãƒ³ã‚°" @@ -6168,17 +5872,16 @@ msgstr "ç”»åƒã‚µã‚¤ã‚º" #: ../plug-ins/common/postscript.c:3161 -#, fuzzy msgid "_Keep aspect ratio" -msgstr "アスペクト比をä¿ã¤(_K)" +msgstr "縦横比を維æŒ(_K)" #: ../plug-ins/common/postscript.c:3167 msgid "" "When toggled, the resulting image will be scaled to fit into the given size " "without changing the aspect ratio." msgstr "" -"ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨, ç”»åƒã¯ã‚¢ã‚¹ãƒšã‚¯ãƒˆãƒ«æ¯”を変更ã›ãšã«ä¸Žãˆã‚‰ã‚ŒãŸã‚µã‚¤ã‚ºã«åˆã†ã‚ˆ" -"ã†ã«èª¿æ•´ã•ã‚Œã¦å‡ºåŠ›ã•ã‚Œã¾ã™." +"ãƒã‚§ãƒƒã‚¯ã‚’入れるã¨ã€ç”»åƒã¯ç¸¦æ¨ªæ¯”を変更ã›ãšã«ä¸Žãˆã‚‰ã‚ŒãŸã‚µã‚¤ã‚ºã«åˆã†ã‚ˆã†ã«èª¿æ•´" +"ã•ã‚Œã¦å‡ºåŠ›ã•ã‚Œã¾ã™ã€‚" #. Unit #: ../plug-ins/common/postscript.c:3176 @@ -6199,7 +5902,6 @@ msgstr "出力" #: ../plug-ins/common/postscript.c:3213 -#, fuzzy msgid "_PostScript level 2" msgstr "_PostScript レベル 2" @@ -6212,17 +5914,16 @@ msgstr "プレビュー(_R)" #: ../plug-ins/common/postscript.c:3252 -#, fuzzy msgid "Preview _size:" msgstr "プレビューサイズ(_S):" -#: ../plug-ins/common/psd.c:489 +#: ../plug-ins/common/psd.c:490 msgid "Invalid UTF-8 string in PSD file" -msgstr "" +msgstr "PSD ファイルã«ä¸æ­£ãª UTF-8 文字列ãŒã‚ã‚Šã¾ã™" #: ../plug-ins/common/psd_save.c:192 msgid "Photoshop image" -msgstr "" +msgstr "Photoshop ç”»åƒ" #: ../plug-ins/common/psd_save.c:1312 #, c-format @@ -6230,6 +5931,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 @@ -6237,10 +5940,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" @@ -6272,23 +5977,20 @@ msgstr "ランダムã«ã”ã¾ã‹ã™ 1.7" #: ../plug-ins/common/randomize.c:244 -#, fuzzy msgid "_Hurl..." -msgstr "ヘルプ..." +msgstr "æµ´ã³ã›(_H)..." #: ../plug-ins/common/randomize.c:256 msgid "_Pick..." -msgstr "" +msgstr "ã¤ã¾ã‚€(_P)..." #: ../plug-ins/common/randomize.c:268 -#, fuzzy msgid "_Slur..." -msgstr "ソース..." +msgstr "ã”ã¾ã‹ã™(_S)..." #: ../plug-ins/common/randomize.c:756 ../plug-ins/common/snoise.c:614 -#, fuzzy msgid "_Random seed:" -msgstr "乱数種(_S):" +msgstr "乱数種(_R):" #: ../plug-ins/common/randomize.c:765 msgid "R_andomization (%):" @@ -6311,7 +6013,6 @@ msgstr "生画åƒãƒ‡ãƒ¼ã‚¿" #: ../plug-ins/common/raw.c:915 -#, fuzzy msgid "Raw Image Loader" msgstr "生画åƒãƒ­ãƒ¼ãƒ€ãƒ¼" @@ -6321,7 +6022,7 @@ #: ../plug-ins/common/raw.c:955 msgid "Planar RGB" -msgstr "" +msgstr "Planar RGB" #: ../plug-ins/common/raw.c:956 msgid "Indexed" @@ -6360,14 +6061,12 @@ msgstr "パレットファイル(_E)" #: ../plug-ins/common/raw.c:1081 -#, fuzzy msgid "Raw Image Save" -msgstr "ç”»åƒæ‹¡å¤§ç¸®å°è¨­å®š" +msgstr "生画åƒä¿å­˜" #: ../plug-ins/common/raw.c:1095 -#, fuzzy msgid "RGB Save Type" -msgstr "RGB パターン種" +msgstr "RGB ä¿å­˜åž‹" #: ../plug-ins/common/raw.c:1099 msgid "Standard (R,G,B)" @@ -6375,69 +6074,63 @@ #: ../plug-ins/common/raw.c:1100 msgid "Planar (RRR,GGG,BBB)" -msgstr "" +msgstr "Planar (RRR,GGG,BBB)" #: ../plug-ins/common/raw.c:1105 msgid "Indexed Palette Type" msgstr "インデックスパレット型" #: ../plug-ins/common/retinex.c:168 -#, fuzzy msgid "_Retinex..." -msgstr "波立ãŸã›ã¦ã„ã¾ã™..." +msgstr "レティãƒãƒƒã‚¯ã‚¹(_R)..." #: ../plug-ins/common/retinex.c:251 -#, fuzzy msgid "Retinex..." -msgstr "回転ã—ã¦ã„ã¾ã™..." +msgstr "レティãƒãƒƒã‚¯ã‚¹å‡¦ç†ä¸­..." #: ../plug-ins/common/retinex.c:253 msgid "Retinex (4/4): updated..." -msgstr "" +msgstr "レティãƒãƒƒã‚¯ã‚¹ (4/4): æ›´æ–°ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/retinex.c:290 -#, fuzzy msgid "Retinex Image Enhancement" -msgstr "ç¸å¼·èª¿(_E)" +msgstr "レティãƒãƒƒã‚¯ã‚¹ç”»åƒæ‹¡å¼µ" #: ../plug-ins/common/retinex.c:311 msgid "Level" msgstr "レベル" #: ../plug-ins/common/retinex.c:315 -#, fuzzy msgid "_Uniform" -msgstr "å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿" +msgstr "å‡ä¸€(_U)" #: ../plug-ins/common/retinex.c:317 msgid "_Low" -msgstr "下(_L)" +msgstr "低(_L)" #: ../plug-ins/common/retinex.c:319 msgid "_High" -msgstr "高ã•(_H)" +msgstr "高(_H)" #: ../plug-ins/common/retinex.c:344 msgid "_Scale:" -msgstr "拡大縮å°(_S):" +msgstr "目盛り(_S):" #: ../plug-ins/common/retinex.c:359 -#, fuzzy msgid "_Scale division:" -msgstr "分割(_D):" +msgstr "目盛り分割(_S):" #: ../plug-ins/common/retinex.c:374 msgid "_Dynamic:" -msgstr "" +msgstr "å‹•çš„(_D):" #: ../plug-ins/common/retinex.c:648 -#, fuzzy msgid "Retinex: Filtering..." -msgstr "モーションã¼ã‹ã—..." +msgstr "レティãƒãƒƒã‚¯ã‚¹: フィルタをã‹ã‘ã¦ã„ã¾ã™..." #: ../plug-ins/common/ripple.c:138 msgid "_Ripple..." -msgstr "波立ãŸã›ã‚‹(_R)..." +msgstr "波紋(_R)..." #: ../plug-ins/common/ripple.c:222 msgid "Rippling..." @@ -6448,7 +6141,6 @@ msgstr "波紋" #: ../plug-ins/common/ripple.c:522 -#, fuzzy msgid "_Retain tilability" msgstr "タイルメモリをä¿æŒã™ã‚‹(_R)" @@ -6480,31 +6172,29 @@ #: ../plug-ins/common/rotate.c:421 msgid "You can not rotate the whole image if there's a selection." -msgstr "é¸æŠžé ˜åŸŸãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“." +msgstr "é¸æŠžé ˜åŸŸãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。" #: ../plug-ins/common/rotate.c:428 msgid "You can not rotate the whole image if there's a floating selection." -msgstr "フロートé¸æŠžãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“." +msgstr "フロートé¸æŠžãŒã‚ã‚‹å ´åˆã«ã¯ç”»åƒå…¨ä½“を回転ã•ã›ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“。" #: ../plug-ins/common/rotate.c:439 msgid "Sorry, channels and masks can not be rotated." -msgstr "残念ã§ã™ãŒãƒãƒ£ãƒ³ãƒãƒ«ã‚„マスクを回転ã•ã›ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“." +msgstr "残念ã§ã™ãŒãƒãƒ£ãƒ³ãƒãƒ«ã‚„マスクを回転ã•ã›ã‚‹ã“ã¨ã¯ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/rotate.c:445 msgid "Rotating..." msgstr "回転ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/sample_colorize.c:296 -#, fuzzy msgid "_Sample Colorize..." -msgstr "サンプル色付ã‘" +msgstr "サンプル色付ã‘(_S)..." #: ../plug-ins/common/sample_colorize.c:1310 msgid "Sample Colorize" msgstr "サンプル色付ã‘" #: ../plug-ins/common/sample_colorize.c:1315 -#, fuzzy msgid "Get sample colors" msgstr "サンプル色å–å¾—" @@ -6515,7 +6205,7 @@ #. layer combo_box (Dst) #: ../plug-ins/common/sample_colorize.c:1335 msgid "Destination:" -msgstr "å…ˆ:" +msgstr "é©ç”¨å…ˆ:" #. layer combo_box (Sample) #: ../plug-ins/common/sample_colorize.c:1351 @@ -6523,14 +6213,12 @@ msgstr "サンプル:" #: ../plug-ins/common/sample_colorize.c:1361 -#, fuzzy msgid "From reverse gradient" -msgstr "グラデーションå†èª­ã¿è¾¼ã¿" +msgstr "グラデーション (逆å‘ã) を使用" #: ../plug-ins/common/sample_colorize.c:1366 -#, fuzzy msgid "From gradient" -msgstr "ä»»æ„ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³" +msgstr "グラデーションを使用" #. check button #: ../plug-ins/common/sample_colorize.c:1387 @@ -6554,7 +6242,6 @@ #. check button #: ../plug-ins/common/sample_colorize.c:1628 -#, fuzzy msgid "Hold intensity" msgstr "強度ä¿æŒ" @@ -6611,12 +6298,11 @@ #: ../plug-ins/common/screenshot.c:257 ../plug-ins/winsnap/winsnap.c:990 msgid "_Screen Shot..." -msgstr "ç”»é¢å–ã‚Šè¾¼ã¿(_S)" +msgstr "ç”»é¢å–ã‚Šè¾¼ã¿(_S)..." #: ../plug-ins/common/screenshot.c:395 -#, fuzzy msgid "Error grabbing the pointer" -msgstr "ファイル読ã¿è¾¼ã¿ã‚¨ãƒ©ãƒ¼" +msgstr "ãƒã‚¤ãƒ³ã‚¿å–得エラー" #: ../plug-ins/common/screenshot.c:471 msgid "Loading Screen Shot..." @@ -6661,9 +6347,8 @@ msgstr "後ã§å–り込㿠(_A)" #: ../plug-ins/common/sel_gauss.c:107 -#, fuzzy msgid "_Selective Gaussian Blur..." -msgstr "é¸æŠžçš„ガウシアンã¼ã‹ã—..." +msgstr "é¸æŠžçš„ガウシアンã¼ã‹ã—(_S)..." #: ../plug-ins/common/sel_gauss.c:187 msgid "Selective Gaussian Blur..." @@ -6682,18 +6367,16 @@ msgstr "最大 Δ(_M):" #: ../plug-ins/common/semiflatten.c:77 -#, fuzzy msgid "_Semi-Flatten" -msgstr "åŠçµ±åˆã—ã¦ã„ã¾ã™..." +msgstr "åŠçµ±åˆ(_S)" #: ../plug-ins/common/semiflatten.c:122 msgid "Semi-Flattening..." msgstr "åŠçµ±åˆã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/sharpen.c:124 -#, fuzzy msgid "_Sharpen..." -msgstr "明瞭ã«ã—ã¦ã„ã¾ã™..." +msgstr "明瞭化(_S)..." #. #. * Let the user know what we're doing... @@ -6703,42 +6386,36 @@ msgstr "明瞭ã«ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/sharpen.c:480 -#, fuzzy msgid "Sharpen" -msgstr "明瞭化 - %s" +msgstr "明瞭化" #: ../plug-ins/common/shift.c:113 -#, fuzzy msgid "_Shift..." -msgstr "ãšã‚‰ã—ã¦ã„ã¾ã™..." +msgstr "ãšã‚‰ã—(_S)..." #: ../plug-ins/common/shift.c:194 msgid "Shifting..." msgstr "ãšã‚‰ã—ã¦ã„ã¾ã™..." -#: ../plug-ins/common/shift.c:349 +#: ../plug-ins/common/shift.c:360 msgid "Shift" msgstr "ãšã‚‰ã—" -#: ../plug-ins/common/shift.c:373 -#, fuzzy +#: ../plug-ins/common/shift.c:384 msgid "Shift _horizontally" msgstr "水平方å‘ã«ãšã‚‰ã™(_H)" -#: ../plug-ins/common/shift.c:374 -#, fuzzy +#: ../plug-ins/common/shift.c:387 msgid "Shift _vertically" msgstr "鉛直方å‘ã«ãšã‚‰ã™(_V)" -#: ../plug-ins/common/shift.c:404 -#, fuzzy +#: ../plug-ins/common/shift.c:418 msgid "Shift _amount:" msgstr "ãšã‚Œã®é‡(_A):" #: ../plug-ins/common/sinus.c:191 -#, fuzzy msgid "_Sinus..." -msgstr "Sin 曲線" +msgstr "Sin 曲線(_S)..." #: ../plug-ins/common/sinus.c:284 msgid "Sinus: rendering..." @@ -6771,12 +6448,10 @@ msgstr "演算設定" #: ../plug-ins/common/sinus.c:734 -#, fuzzy msgid "R_andom seed:" -msgstr "乱数種(_S):" +msgstr "乱数種(_A):" #: ../plug-ins/common/sinus.c:743 -#, fuzzy msgid "_Force tiling?" msgstr "強制的ã«ä¸¦ã¹ã‚‹?(_F)" @@ -6796,7 +6471,7 @@ #. if in grey scale, the colors are necessarily black and white #: ../plug-ins/common/sinus.c:784 msgid "The colors are white and black." -msgstr "色ã¯ç™½é»’ã§ã™." +msgstr "色ã¯ç™½é»’ã§ã™ã€‚" #: ../plug-ins/common/sinus.c:795 msgid "Bl_ack & white" @@ -6860,7 +6535,7 @@ #: ../plug-ins/common/smooth_palette.c:88 msgid "Smoo_th Palette..." -msgstr "滑らã‹ãªãƒ‘レット(_H)" +msgstr "滑らã‹ãªãƒ‘レット(_T)..." #: ../plug-ins/common/smooth_palette.c:180 msgid "Deriving Smooth Palette..." @@ -6871,14 +6546,12 @@ msgstr "滑らã‹ãªãƒ‘レット" #: ../plug-ins/common/smooth_palette.c:445 -#, fuzzy msgid "_Search depth:" msgstr "検索回数(_S):" #: ../plug-ins/common/snoise.c:186 -#, fuzzy msgid "_Solid Noise..." -msgstr "ソリッドノイズを生æˆã—ã¦ã„ã¾ã™..." +msgstr "ソリッドノイズ(_S)..." #: ../plug-ins/common/snoise.c:336 msgid "Solid Noise..." @@ -6904,18 +6577,16 @@ msgstr "タイルå¯èƒ½(_I)" #: ../plug-ins/common/snoise.c:666 -#, fuzzy msgid "_X size:" msgstr "_X サイズ:" #: ../plug-ins/common/snoise.c:679 -#, fuzzy msgid "_Y size:" msgstr "_Y サイズ:" #: ../plug-ins/common/sobel.c:119 msgid "_Sobel..." -msgstr "ソース..." +msgstr "ソーベル(_S)..." #: ../plug-ins/common/sobel.c:227 msgid "Sobel Edge Detection" @@ -6930,7 +6601,6 @@ msgstr "鉛直方å‘ソーベル(_V)" #: ../plug-ins/common/sobel.c:273 -#, fuzzy msgid "_Keep sign of result (one direction only)" msgstr "çµæžœã®ç¬¦å·ã‚’ä¿å­˜ã™ã‚‹ (一方å‘ã®ã¿)(_K)" @@ -6939,23 +6609,20 @@ msgstr "ソーベル輪郭を抽出ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/softglow.c:138 -#, fuzzy msgid "_Softglow..." -msgstr "ソース..." +msgstr "柔らã‹ã„発光(_S)..." #: ../plug-ins/common/softglow.c:629 msgid "Softglow" -msgstr "" +msgstr "柔らã‹ã„発光" #: ../plug-ins/common/softglow.c:659 -#, fuzzy msgid "_Glow radius:" -msgstr "ã¼ã‹ã—åŠå¾„(_B):" +msgstr "発光åŠå¾„(_G):" #: ../plug-ins/common/sparkle.c:186 -#, fuzzy msgid "_Sparkle..." -msgstr "ãらã‚ã‹ã›ã¦ã„ã¾ã™..." +msgstr "ãらã‚ã(_S)..." #: ../plug-ins/common/sparkle.c:292 msgid "Sparkling..." @@ -6974,7 +6641,6 @@ msgstr "光度ã—ãã„値を調節ã™ã‚‹" #: ../plug-ins/common/sparkle.c:376 -#, fuzzy msgid "F_lare intensity:" msgstr "フレア強度(_L):" @@ -6983,7 +6649,6 @@ msgstr "フレア強度を調節ã™ã‚‹" #: ../plug-ins/common/sparkle.c:386 -#, fuzzy msgid "_Spike length:" msgstr "å°–ã‚Šã®é•·ã•(_S):" @@ -6992,7 +6657,6 @@ msgstr "å°–ã‚Šã®é•·ã•ã‚’調節ã™ã‚‹" #: ../plug-ins/common/sparkle.c:396 -#, fuzzy msgid "Sp_ike points:" msgstr "å°–ã‚Šã®æ•°(_I):" @@ -7001,17 +6665,14 @@ msgstr "å°–ã‚Šã®æ•°ã‚’調節ã™ã‚‹" #: ../plug-ins/common/sparkle.c:406 -#, fuzzy msgid "Spi_ke angle (-1: random):" msgstr "å°–ã‚Šã®è§’度 (-1: 乱数)(_K):" #: ../plug-ins/common/sparkle.c:409 -#, fuzzy msgid "Adjust the Spike Angle (-1 means a Random Angle is chosen)" msgstr "å°–ã‚Šã®è§’度を調節ã™ã‚‹ (-1 を指定ã™ã‚‹ã¨ãƒ©ãƒ³ãƒ€ãƒ ã«è§’度ãŒè¨­å®šã•ã‚Œã¾ã™)" #: ../plug-ins/common/sparkle.c:417 -#, fuzzy msgid "Spik_e density:" msgstr "尖り密度(_E):" @@ -7024,7 +6685,6 @@ msgstr "å°–ã‚Šã®ä¸é€æ˜Žåº¦ã‚’調節ã™ã‚‹" #: ../plug-ins/common/sparkle.c:437 -#, fuzzy msgid "_Random hue:" msgstr "乱数色相(_R):" @@ -7033,7 +6693,6 @@ msgstr "色相をã©ã®ç¨‹åº¦ãƒ©ãƒ³ãƒ€ãƒ ã«å¤‰ãˆã‚‹ã‹èª¿ç¯€ã™ã‚‹" #: ../plug-ins/common/sparkle.c:448 -#, fuzzy msgid "Rando_m saturation:" msgstr "乱数彩度(_M):" @@ -7042,7 +6701,6 @@ msgstr "彩度をã©ã®ç¨‹åº¦ãƒ©ãƒ³ãƒ€ãƒ ã«å¤‰ãˆã‚‹ã‹èª¿ç¯€ã™ã‚‹" #: ../plug-ins/common/sparkle.c:465 -#, fuzzy msgid "_Preserve luminosity" msgstr "光度をä¿å­˜ã™ã‚‹(_P)" @@ -7059,36 +6717,30 @@ msgstr "å転効果ã«ã™ã‚‹ã‹ã©ã†ã‹" #: ../plug-ins/common/sparkle.c:490 -#, fuzzy msgid "A_dd border" -msgstr "ç¸ä»˜åŠ (_A)" +msgstr "ç¸ä»˜åŠ (_D)" #: ../plug-ins/common/sparkle.c:496 msgid "Draw a Border of Spikes around the Image" msgstr "å°–ã‚Šã®ç¸ã‚’ç”»åƒã«ã¤ã‘ã‚‹ã‹ã©ã†ã‹" #: ../plug-ins/common/sparkle.c:507 -#, fuzzy msgid "_Natural color" msgstr "自然色(_N)" #: ../plug-ins/common/sparkle.c:508 -#, fuzzy msgid "_Foreground color" msgstr "å‰æ™¯è‰²(_F)" #: ../plug-ins/common/sparkle.c:509 -#, fuzzy msgid "_Background color" msgstr "背景色(_B)" #: ../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 "å‰æ™¯è‰²ã‚’使ã†" @@ -7114,9 +6766,8 @@ msgstr "ç·šå½¢" #: ../plug-ins/common/spheredesigner.c:284 -#, fuzzy msgid "Phong" -msgstr "åŒæ–¹å‘" +msgstr "フォング" #: ../plug-ins/common/spheredesigner.c:285 msgid "Noise" @@ -7161,9 +6812,8 @@ msgstr "çƒé¢ãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼" #: ../plug-ins/common/spheredesigner.c:2518 -#, fuzzy msgid "Update _Preview" -msgstr "プレビュー更新" +msgstr "プレビュー更新(_P)" #: ../plug-ins/common/spheredesigner.c:2572 msgid "Textures" @@ -7206,14 +6856,12 @@ msgstr "é‡:" #: ../plug-ins/common/spheredesigner.c:2696 -#, fuzzy msgid "Exp.:" msgstr "ベキ指数:" #: ../plug-ins/common/spheredesigner.c:2703 -#, fuzzy msgid "Texture Transformations" -msgstr "å¤‰æ› %s" +msgstr "テクスãƒãƒ£å¤‰æ›" #: ../plug-ins/common/spheredesigner.c:2726 msgid "Scale Y:" @@ -7236,33 +6884,28 @@ msgstr "回転 Z:" #: ../plug-ins/common/spheredesigner.c:2760 -#, fuzzy msgid "Position X:" -msgstr "ä½ç½®" +msgstr "ä½ç½® X:" #: ../plug-ins/common/spheredesigner.c:2767 -#, fuzzy msgid "Position Y:" -msgstr "ä½ç½®" +msgstr "ä½ç½® Y:" #: ../plug-ins/common/spheredesigner.c:2774 -#, fuzzy msgid "Position Z:" -msgstr "ä½ç½®" +msgstr "ä½ç½® Z:" #: ../plug-ins/common/spheredesigner.c:2922 msgid "Rendering Sphere..." msgstr "çƒä½“ã‚’æç”»ã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/spheredesigner.c:2979 -#, fuzzy msgid "Sphere _Designer..." -msgstr "çƒé¢ãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼" +msgstr "çƒé¢ãƒ‡ã‚¶ã‚¤ãƒŠãƒ¼(_D)..." #: ../plug-ins/common/spread.c:99 -#, fuzzy msgid "Sp_read..." -msgstr "æ‹¡æ•£ã•ã›ã¦ã„ã¾ã™..." +msgstr "æ‹¡æ•£(_R)..." #: ../plug-ins/common/spread.c:182 msgid "Spreading..." @@ -7277,9 +6920,8 @@ msgstr "æ‹¡æ•£é‡" #: ../plug-ins/common/struc.c:1146 -#, fuzzy msgid "_Apply Canvas..." -msgstr "キャンパス地をé©ç”¨ã—ã¦ã„ã¾ã™..." +msgstr "キャンパス地(_A)..." #: ../plug-ins/common/struc.c:1227 msgid "Applying Canvas..." @@ -7290,42 +6932,38 @@ msgstr "キャンãƒã‚¹åœ°" #: ../plug-ins/common/struc.c:1290 -#, fuzzy msgid "_Top-right" msgstr "å³ä¸Š(_T)" #: ../plug-ins/common/struc.c:1291 -#, fuzzy msgid "Top-_left" msgstr "左上(_L)" #: ../plug-ins/common/struc.c:1292 -#, fuzzy msgid "_Bottom-left" msgstr "左下(_B)" #: ../plug-ins/common/struc.c:1293 -#, fuzzy msgid "Bottom-_right" msgstr "å³ä¸‹(_R)" #: ../plug-ins/common/sunras.c:217 ../plug-ins/common/sunras.c:237 msgid "SUN Rasterfile image" -msgstr "" +msgstr "SUN-raster ファイル画åƒ" #: ../plug-ins/common/sunras.c:392 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' as SUN-raster-file" -msgstr "SUN-raster ファイル形å¼ã§ãƒ•ã‚¡ã‚¤ãƒ«ãŒé–‹ã‘ãªã„" +msgstr "SUN-raster ファイル形å¼ã§ '%s' ãŒé–‹ã‘ã¾ã›ã‚“" #: ../plug-ins/common/sunras.c:400 msgid "The type of this SUN-rasterfile is not supported" -msgstr "ã“ã®å½¢å¼ã® SUN-taster ファイルã¯ä½¿ç”¨ã§ãã¾ã›ã‚“" +msgstr "ã“ã®å½¢å¼ã® SUN-raster ファイルã¯ä½¿ç”¨ã§ãã¾ã›ã‚“" #: ../plug-ins/common/sunras.c:423 -#, fuzzy, c-format +#, c-format msgid "Could not read color entries from '%s'" -msgstr "色情報ãŒèª­ã¿è¾¼ã‚ãªã„" +msgstr "'%s' ã‹ã‚‰è‰²æƒ…å ±ãŒèª­ã¿è¾¼ã‚ã¾ã›ã‚“" #: ../plug-ins/common/sunras.c:431 msgid "Type of colormap not supported" @@ -7364,96 +7002,90 @@ msgid "RunLength Encoded" msgstr "RLE エンコード" -#: ../plug-ins/common/svg.c:136 -#, fuzzy +#: ../plug-ins/common/svg.c:137 msgid "Scalable SVG image" -msgstr "ç”»åƒã®æ‹¡å¤§ç¸®å°" +msgstr "拡大縮å°å¯èƒ½ãª SVG ç”»åƒ" -#: ../plug-ins/common/svg.c:313 ../plug-ins/common/svg.c:696 +#: ../plug-ins/common/svg.c:314 ../plug-ins/common/svg.c:707 msgid "Unknown reason" -msgstr "" +msgstr "原因ä¸æ˜Ž" -#: ../plug-ins/common/svg.c:317 -#, fuzzy +#: ../plug-ins/common/svg.c:318 msgid "Rendering SVG..." -msgstr "レンダリング" +msgstr "SVG æç”»..." -#: ../plug-ins/common/svg.c:327 +#: ../plug-ins/common/svg.c:328 msgid "Rendered SVG" -msgstr "" +msgstr "SVG æç”»" -#: ../plug-ins/common/svg.c:492 +#: ../plug-ins/common/svg.c:498 msgid "" "SVG file does not\n" "specify a size!" msgstr "" +"SVG ファイルã«\n" +"サイズãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“!" -#: ../plug-ins/common/svg.c:498 ../plug-ins/common/wmf.c:342 +#: ../plug-ins/common/svg.c:504 ../plug-ins/common/wmf.c:342 #, c-format msgid "%d x %d" -msgstr "" +msgstr "%d x %d" #. Scalable Vector Graphics is SVG, should perhaps not be translated -#: ../plug-ins/common/svg.c:703 +#: ../plug-ins/common/svg.c:714 msgid "Render Scalable Vector Graphics" -msgstr "" +msgstr "Scalable Vector Graphics ã‚’æã" -#: ../plug-ins/common/svg.c:767 ../plug-ins/common/wmf.c:554 +#: ../plug-ins/common/svg.c:778 ../plug-ins/common/wmf.c:554 #: ../plug-ins/print/gimp_main_window.c:1009 #: ../plug-ins/print/gimp_main_window.c:1212 msgid "Height:" msgstr "高ã•:" -#: ../plug-ins/common/svg.c:841 ../plug-ins/common/wmf.c:628 -#, fuzzy +#: ../plug-ins/common/svg.c:852 ../plug-ins/common/wmf.c:628 msgid "_X ratio:" -msgstr "比率 X:" +msgstr "比率 _X:" -#: ../plug-ins/common/svg.c:863 ../plug-ins/common/wmf.c:650 -#, fuzzy +#: ../plug-ins/common/svg.c:874 ../plug-ins/common/wmf.c:650 msgid "_Y ratio:" -msgstr "比率 Y:" +msgstr "比率 _Y:" -#: ../plug-ins/common/svg.c:877 ../plug-ins/common/wmf.c:664 -#, fuzzy +#: ../plug-ins/common/svg.c:888 ../plug-ins/common/wmf.c:664 msgid "Constrain aspect ratio" -msgstr "縦横比固定" +msgstr "縦横比指定" -#: ../plug-ins/common/svg.c:888 ../plug-ins/common/wmf.c:675 -#, fuzzy, c-format +#: ../plug-ins/common/svg.c:899 ../plug-ins/common/wmf.c:675 +#, c-format msgid "pixels/%a" -msgstr "ピクセル" +msgstr "ピクセル/%a" #. Path Import -#: ../plug-ins/common/svg.c:908 +#: ../plug-ins/common/svg.c:919 msgid "Import _paths" -msgstr "" +msgstr "パスをインãƒãƒ¼ãƒˆ(_P)" -#: ../plug-ins/common/svg.c:914 +#: ../plug-ins/common/svg.c:925 msgid "" "Import path elements of the SVG so they can be used with the GIMP path tool" -msgstr "" +msgstr "SVG ã®ãƒ‘スè¦ç´ ã‚’ GIMP パスツールã§ä½¿ãˆã‚‹ã‚ˆã†ã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã—ã¾ã™" -#: ../plug-ins/common/svg.c:927 +#: ../plug-ins/common/svg.c:938 msgid "Merge imported paths" -msgstr "" +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 -#, fuzzy, c-format +#, c-format msgid "Cannot read footer from '%s'" -msgstr "" -"'%s' \n" -"ã‹ã‚‰ãƒ•ãƒƒã‚¿ãŒèª­ã‚ã¾ã›ã‚“" +msgstr "'%s' ã‹ã‚‰ãƒ•ãƒƒã‚¿ãŒèª­ã‚ã¾ã›ã‚“" #: ../plug-ins/common/tga.c:444 -#, fuzzy, c-format +#, c-format msgid "Cannot read extension from '%s'" -msgstr "TGA: \"%s\" ã‹ã‚‰æ‹¡å¼µãŒèª­ã‚ã¾ã›ã‚“\n" +msgstr "'%s' ã‹ã‚‰æ‹¡å¼µãŒèª­ã‚ã¾ã›ã‚“" #: ../plug-ins/common/tga.c:1194 msgid "Save as TGA" @@ -7466,22 +7098,20 @@ #. origin #: ../plug-ins/common/tga.c:1219 -#, fuzzy msgid "Or_igin at bottom left" -msgstr "左下" +msgstr "左下ã®åŽŸç‚¹(_I)" #: ../plug-ins/common/threshold_alpha.c:95 -#, fuzzy msgid "_Threshold Alpha..." -msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã—ãã„値" +msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«é–¾å€¤(_T)..." #: ../plug-ins/common/threshold_alpha.c:134 msgid "The layer preserves transparency." -msgstr "レイヤーãŒé€æ˜Žä¿è­·ã•ã‚Œã¦ã„ã¾ã™." +msgstr "レイヤーãŒé€æ˜Žä¿è­·ã•ã‚Œã¦ã„ã¾ã™ã€‚" #: ../plug-ins/common/threshold_alpha.c:140 msgid "RGBA/GRAYA drawable is not selected." -msgstr "RGBA/GRAYA ã®æ画対象ã§ã¯ã‚ã‚Šã¾ã›ã‚“." +msgstr "RGBA/GRAYA ã®æ画対象ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #: ../plug-ins/common/threshold_alpha.c:202 msgid "Threshold Alpha: Coloring Transparency..." @@ -7489,22 +7119,21 @@ #: ../plug-ins/common/threshold_alpha.c:224 msgid "Threshold Alpha" -msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã—ãã„値" +msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«é–¾å€¤" #: ../plug-ins/common/threshold_alpha.c:239 msgid "Threshold:" -msgstr "ã—ãã„値:" +msgstr "閾値:" #: ../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:850 -#, fuzzy, c-format +#, c-format msgid "Page %d" -msgstr "フレーム %d" +msgstr "ページ %d" #: ../plug-ins/common/tiff.c:865 msgid "TIFF Channel" @@ -7517,15 +7146,17 @@ "bit, so it will be converted for you. Information will be lost because of " "this conversion." msgstr "" +"警告:\n" +"読ã¿è¾¼ã‚“ã ç”»åƒã¯ 16 ビット毎ãƒãƒ£ãƒ³ãƒãƒ«ã§ã™ã€‚ GIMP ã§ã¯ 8 ビットã—ã‹æ‰±ãˆãªã„ã®" +"ã§ã€å¤‰æ›ã•ã‚Œã¾ã™ã€‚ã“ã®å¤‰æ›ã«ã‚ˆã‚Šæƒ…å ±ãŒå¤±ã‚ã‚Œã¾ã™ã€‚" #: ../plug-ins/common/tiff.c:1970 -#, fuzzy msgid "" "The TIFF format only supports comments in\n" "7bit ASCII encoding. No comment is saved." msgstr "" -"GIF フォーマットã§ã¯ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ASCII文字ã—ã‹\n" -"利用ã§ãã¾ã›ã‚“. コメントã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸ." +"TIFF フォーマットã§ã¯ã‚³ãƒ¡ãƒ³ãƒˆã«ã¯ASCII文字ã—ã‹\n" +"利用ã§ãã¾ã›ã‚“。コメントã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚" #: ../plug-ins/common/tiff.c:2119 msgid "Save as TIFF" @@ -7558,16 +7189,15 @@ #: ../plug-ins/common/tiff.c:2150 msgid "Save _color values from transparent pixels" -msgstr "" +msgstr "é€æ˜Žãƒ”クセルã®è‰²ã®å€¤ã‚’ä¿å­˜(_C)" #: ../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 "並ã¹ã‚‹(_T)..." #. Set the tile cache size #: ../plug-ins/common/tile.c:192 ../plug-ins/common/tileit.c:320 @@ -7587,9 +7217,8 @@ msgstr "æ–°è¦ç”»åƒä½œæˆ(_R)" #: ../plug-ins/common/tileit.c:224 -#, fuzzy msgid "_Small Tiles..." -msgstr "å…¨ã¦ã®ã‚¿ã‚¤ãƒ«(_L)" +msgstr "å°ã•ãã—ã¦ä¸¦ã¹ã‚‹(_S)..." #. Get the preview image #: ../plug-ins/common/tileit.c:363 @@ -7603,17 +7232,14 @@ msgstr "å転" #: ../plug-ins/common/tileit.c:454 -#, fuzzy msgid "A_ll tiles" msgstr "å…¨ã¦ã®ã‚¿ã‚¤ãƒ«(_L)" #: ../plug-ins/common/tileit.c:468 -#, fuzzy msgid "Al_ternate tiles" msgstr "一ã¤ãŠãã®ã‚¿ã‚¤ãƒ«(_T)" #: ../plug-ins/common/tileit.c:482 -#, fuzzy msgid "_Explicit tile" msgstr "明示ã—ãŸã‚¿ã‚¤ãƒ«(_E)" @@ -7631,13 +7257,12 @@ #. Lower frame saying howmany segments #: ../plug-ins/common/tileit.c:573 -#, fuzzy msgid "Number of Segments" -msgstr "区切りã®æ•°(_N):" +msgstr "区切りã®æ•°" #: ../plug-ins/common/tiler.c:66 msgid "_Make Seamless" -msgstr "" +msgstr "繋ãŽç›®ç„¡ã—タイル(_M)" #: ../plug-ins/common/tiler.c:322 msgid "Tiler..." @@ -7652,7 +7277,8 @@ "A unit definition will only be saved before GIMP exits if this column is " "checked." msgstr "" -"ã“ã®åˆ—ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ãã®ã¿å˜ä½å®šç¾©ã¯ GIMP ãŒçµ‚了ã™ã‚‹å‰ã«ä¿å­˜ã•ã‚Œã¾ã™." +"ã“ã®åˆ—ãŒãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ã‚‹ã¨ãã®ã¿å˜ä½å®šç¾©ã¯ GIMP ãŒçµ‚了ã™ã‚‹å‰ã«ä¿å­˜ã•ã‚Œã¾" +"ã™ã€‚" #: ../plug-ins/common/uniteditor.c:96 msgid "ID" @@ -7661,7 +7287,7 @@ #: ../plug-ins/common/uniteditor.c:96 msgid "" "This string will be used to identify a unit in GIMP's configuration files." -msgstr "ã“ã®æ–‡å­—列㯠GIMP ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã§å˜ä½ã‚’識別ã™ã‚‹ãŸã‚ã«ä½¿ã‚ã‚Œã¾ã™." +msgstr "ã“ã®æ–‡å­—列㯠GIMP ã®è¨­å®šãƒ•ã‚¡ã‚¤ãƒ«ã§å˜ä½ã‚’識別ã™ã‚‹ãŸã‚ã«ä½¿ã‚ã‚Œã¾ã™ã€‚" #: ../plug-ins/common/uniteditor.c:98 msgid "Factor" @@ -7669,34 +7295,32 @@ #: ../plug-ins/common/uniteditor.c:98 msgid "How many units make up an inch." -msgstr "1 インãƒã«ç›¸å½“ã™ã‚‹å˜ä½ã¯ã©ã®ãらã„ã‹." +msgstr "1 インãƒã«ç›¸å½“ã™ã‚‹å˜ä½ã¯ã©ã®ãらã„ã‹ã€‚" #: ../plug-ins/common/uniteditor.c:99 msgid "Digits" msgstr "æ•°å­—" #: ../plug-ins/common/uniteditor.c:99 -#, fuzzy msgid "" "This field is a hint for numerical input fields. It specifies how many " "decimal digits the input field should provide to get approximately the same " "accuracy as an \"inch\" input field with two decimal digits." msgstr "" -"ã“ã®æ¬„ã¯æ•°å€¤å…¥åŠ›æ¬„ã®ãŸã‚ã®ãƒ’ントã§ã™. \"インãƒ\" å˜ä½ã§è¡¨ã•ã‚Œã‚‹å…¥åŠ›æ¬„㌠2 æ¡" -"ã® 10 進数ã®å ´åˆã«ä½•æ¡ã®æ•°ãŒåŒã˜ç¨‹åº¦ã®ã‚‚ã®ã‚’表ã™ã®ã‹ã‚’指定ã—ã¾ã™." +"ã“ã®æ¬„ã¯æ•°å€¤å…¥åŠ›æ¬„ã®ãŸã‚ã®ãƒ’ントã§ã™ã€‚\"インãƒ\" å˜ä½ã§è¡¨ã•ã‚Œã‚‹å…¥åŠ›æ¬„㌠2 æ¡" +"ã® 10 進数ã®å ´åˆã«ä½•æ¡ã®æ•°ãŒåŒã˜ç¨‹åº¦ã®ã‚‚ã®ã‚’表ã™ã®ã‹ã‚’指定ã—ã¾ã™ã€‚" #: ../plug-ins/common/uniteditor.c:104 msgid "Symbol" msgstr "シンボル" #: ../plug-ins/common/uniteditor.c:104 -#, fuzzy msgid "" "The unit's symbol if it has one (e.g. \"'\" for inches). The unit's " "abbreviation is used if doesn't have a symbol." msgstr "" -"ã“ã®å˜ä½ãŒæŒã¤ã‚·ãƒ³ãƒœãƒ« (例 \"'\" ãªã‚‰ã°ã‚¤ãƒ³ãƒ). ã‚‚ã—å˜ä½ã«ã‚·ãƒ³ãƒœãƒ«ãŒç„¡ã„ã®ãª" -"らã°çœç•¥ã™ã‚‹." +"ã“ã®å˜ä½ãŒæŒã¤ã‚·ãƒ³ãƒœãƒ« (例 \"'\" ãªã‚‰ã°ã‚¤ãƒ³ãƒ)。å˜ä½ã«ã‚·ãƒ³ãƒœãƒ«ãŒãªã„å ´åˆã¯å˜" +"ä½ã®çœç•¥å½¢ã€‚" #: ../plug-ins/common/uniteditor.c:107 msgid "Abbreviation" @@ -7704,7 +7328,7 @@ #: ../plug-ins/common/uniteditor.c:107 msgid "The unit's abbreviation (e.g. \"cm\" for centimeters)." -msgstr "å˜ä½ã®çœç•¥å½¢ (例 \"cm\" ãªã‚‰ã°ã‚»ãƒ³ãƒãƒ¡ãƒ¼ãƒˆãƒ«)." +msgstr "å˜ä½ã®çœç•¥å½¢ (例 \"cm\" ãªã‚‰ã°ã‚»ãƒ³ãƒãƒ¡ãƒ¼ãƒˆãƒ«)。" #: ../plug-ins/common/uniteditor.c:109 msgid "Singular" @@ -7712,7 +7336,7 @@ #: ../plug-ins/common/uniteditor.c:109 msgid "The unit's singular form." -msgstr "å˜ä½ã®å˜æ•°å½¢." +msgstr "å˜ä½ã®å˜æ•°å½¢ã€‚" #: ../plug-ins/common/uniteditor.c:110 msgid "Plural" @@ -7720,21 +7344,19 @@ #: ../plug-ins/common/uniteditor.c:110 msgid "The unit's plural form." -msgstr "å˜ä½ã®è¤‡æ•°å½¢." +msgstr "å˜ä½ã®è¤‡æ•°å½¢ã€‚" #: ../plug-ins/common/uniteditor.c:121 msgid "Create a new unit from scratch." -msgstr "ã¾ã£ã•ã‚‰ãªã¨ã“ã‚ã‹ã‚‰æ–°ã—ã„å˜ä½ã‚’作る." +msgstr "ã¾ã£ã•ã‚‰ãªã¨ã“ã‚ã‹ã‚‰æ–°ã—ã„å˜ä½ã‚’作る。" #: ../plug-ins/common/uniteditor.c:127 -#, fuzzy msgid "Create a new unit with the currently selected unit as template." -msgstr "ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’å…ƒã«ã—ã¦æ–°ã—ã„å˜ä½ã‚’作る." +msgstr "ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’å…ƒã«ã—ã¦æ–°ã—ã„å˜ä½ã‚’作る。" #: ../plug-ins/common/uniteditor.c:151 -#, fuzzy msgid "_Unit Editor" -msgstr "å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿" +msgstr "å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿(_U)" #: ../plug-ins/common/uniteditor.c:210 msgid "New Unit" @@ -7770,20 +7392,19 @@ #: ../plug-ins/common/uniteditor.c:339 msgid "Unit factor must not be 0." -msgstr "å˜ä½ä¹—æ•°ã¯0ã§ã‚ã£ã¦ã¯ãªã‚Šã¾ã›ã‚“." +msgstr "å˜ä½ä¹—æ•°ã¯0ã§ã‚ã£ã¦ã¯ãªã‚Šã¾ã›ã‚“。" #: ../plug-ins/common/uniteditor.c:349 msgid "All text fields must contain a value." -msgstr "å…¨ã¦ã®æ–‡å­—フィールドãŒåŸ‹ã‚られã¦ã„ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“." +msgstr "å…¨ã¦ã®æ–‡å­—フィールドãŒåŸ‹ã‚られã¦ã„ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" #: ../plug-ins/common/uniteditor.c:403 msgid "Unit Editor" msgstr "å˜ä½ã‚¨ãƒ‡ã‚£ã‚¿" #: ../plug-ins/common/unsharp.c:143 -#, fuzzy msgid "_Unsharp Mask..." -msgstr "éžã‚·ãƒ£ãƒ¼ãƒ—化マスク" +msgstr "éžã‚·ãƒ£ãƒ¼ãƒ—化マスク(_U)..." #: ../plug-ins/common/unsharp.c:468 msgid "Merging..." @@ -7834,9 +7455,8 @@ msgstr "ドット(_D)" #: ../plug-ins/common/video.c:1817 -#, fuzzy msgid "Vi_deo..." -msgstr "ビデオ/RGB..." +msgstr "ビデオ(_D)..." #: ../plug-ins/common/video.c:1889 msgid "Video/RGB..." @@ -7848,9 +7468,8 @@ #. frame for the radio buttons #: ../plug-ins/common/video.c:2035 -#, fuzzy msgid "Video Pattern" -msgstr "パターン" +msgstr "ビデオパターン" #: ../plug-ins/common/video.c:2079 msgid "_Additive" @@ -7861,68 +7480,56 @@ msgstr "回転(_R)" #: ../plug-ins/common/vinvert.c:84 -#, fuzzy msgid "_Value Invert" -msgstr "明度をå転ã•ã›ã¦ã„ã¾ã™..." +msgstr "明度å転(_V)" #: ../plug-ins/common/vinvert.c:126 msgid "Value Invert..." msgstr "明度をå転ã•ã›ã¦ã„ã¾ã™..." #: ../plug-ins/common/vpropagate.c:193 -#, fuzzy msgid "More _white (larger value)" msgstr "より白ã (明度大)(_W)" #: ../plug-ins/common/vpropagate.c:196 -#, fuzzy msgid "More blac_k (smaller value)" msgstr "より黒ã (明度å°)(_K)" #: ../plug-ins/common/vpropagate.c:199 -#, fuzzy msgid "_Middle value to peaks" msgstr "中間明度をピークã«(_M)" #: ../plug-ins/common/vpropagate.c:202 -#, fuzzy msgid "_Foreground to peaks" msgstr "å‰æ™¯ã‚’ピークã«(_F)" #: ../plug-ins/common/vpropagate.c:205 -#, fuzzy msgid "O_nly foreground" msgstr "å‰æ™¯ã®ã¿(_N)" #: ../plug-ins/common/vpropagate.c:208 -#, fuzzy msgid "Only b_ackground" msgstr "背景ã®ã¿(_A)" #: ../plug-ins/common/vpropagate.c:211 -#, fuzzy msgid "Mor_e opaque" msgstr "よりä¸é€æ˜Žã«(_E)" #: ../plug-ins/common/vpropagate.c:214 -#, fuzzy msgid "More t_ransparent" msgstr "よりé€æ˜Žã«(_R)" #: ../plug-ins/common/vpropagate.c:242 -#, fuzzy msgid "_Value Propagate..." -msgstr "明度ä¼æ¬" +msgstr "明度ä¼æ¬(_V)..." #: ../plug-ins/common/vpropagate.c:254 -#, fuzzy msgid "E_rode" -msgstr "モード" +msgstr "åŽç¸®(_R)" #: ../plug-ins/common/vpropagate.c:266 -#, fuzzy msgid "_Dilate" -msgstr "圧縮(_D)" +msgstr "膨張(_D)" #: ../plug-ins/common/vpropagate.c:476 msgid "Value Propagating..." @@ -7934,42 +7541,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 "ã—ãã„値下é™(_H):" #: ../plug-ins/common/vpropagate.c:1141 -#, fuzzy msgid "_Upper threshold:" msgstr "ã—ãã„値上é™(_U):" #: ../plug-ins/common/vpropagate.c:1153 -#, fuzzy msgid "_Propagating rate:" msgstr "ä¼æ¬çŽ‡(_P):" #: ../plug-ins/common/vpropagate.c:1164 -#, fuzzy msgid "To l_eft" msgstr "å·¦ã¸(_E)" #: ../plug-ins/common/vpropagate.c:1167 -#, fuzzy msgid "To _right" msgstr "å³ã¸(_R)" #: ../plug-ins/common/vpropagate.c:1170 -#, fuzzy msgid "To _top" msgstr "上ã¸(_T)" #: ../plug-ins/common/vpropagate.c:1173 -#, fuzzy msgid "To _bottom" msgstr "下ã¸(_B)" @@ -7982,21 +7581,18 @@ msgstr "明度ãƒãƒ£ãƒ³ãƒãƒ«ã‚’ä¼æ¬" #: ../plug-ins/common/warp.c:247 -#, fuzzy msgid "_Warp..." -msgstr "æ­ªã‚ã¦ã„ã¾ã™..." +msgstr "ワープ(_W)..." #: ../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 "ステップサイズ:" @@ -8006,14 +7602,12 @@ #. Displacement map menu #: ../plug-ins/common/warp.c:450 -#, fuzzy msgid "Displacement map:" msgstr "ãšã‚‰ã—マップ:" #. ======================================================================= #. Displacement Type #: ../plug-ins/common/warp.c:468 -#, fuzzy msgid "On edges:" msgstr "周辺部:" @@ -8031,24 +7625,20 @@ msgstr "é»’" #: ../plug-ins/common/warp.c:524 -#, fuzzy msgid "FG color" msgstr "å‰æ™¯è‰²" #. -------------------------------------------------------------------- #. --------- The secondary table -------------------------- #: ../plug-ins/common/warp.c:544 -#, fuzzy msgid "Advanced Options" msgstr "詳細設定" #: ../plug-ins/common/warp.c:560 -#, fuzzy msgid "Dither size:" msgstr "ディザサイズ:" #: ../plug-ins/common/warp.c:573 -#, fuzzy msgid "Rotation angle:" msgstr "回転角度:" @@ -8058,24 +7648,20 @@ #. Magnitude map menu #: ../plug-ins/common/warp.c:595 -#, fuzzy msgid "Magnitude map:" msgstr "強度マップ:" #: ../plug-ins/common/warp.c:617 -#, fuzzy msgid "Use magnitude map" -msgstr "強度マップ:" +msgstr "強度マップを使ã†" #. -------------------------------------------------------------------- #. --------- The "other" table -------------------------- #: ../plug-ins/common/warp.c:630 -#, fuzzy msgid "More Advanced Options" -msgstr "詳細設定" +msgstr "ã•ã‚‰ã«è©³ç´°è¨­å®š" #: ../plug-ins/common/warp.c:647 -#, fuzzy msgid "Gradient scale:" msgstr "グラデーションスケール:" @@ -8084,7 +7670,6 @@ msgstr "グラデーションマップé¸æŠžãƒ¡ãƒ‹ãƒ¥ãƒ¼" #: ../plug-ins/common/warp.c:680 -#, fuzzy msgid "Vector mag:" msgstr "ベクトル拡大:" @@ -8122,9 +7707,8 @@ msgstr "ステップ %d..." #: ../plug-ins/common/waves.c:127 -#, fuzzy msgid "_Waves..." -msgstr "ä¿å­˜..." +msgstr "æ³¢(_W)..." #: ../plug-ins/common/waves.c:249 msgid "Waves" @@ -8155,6 +7739,8 @@ "Web browser not specified.\n" "Please specify a web browser using the Preferences Dialog." msgstr "" +"web ブラウザãŒè¨­å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" +"環境設定ダイアログ㧠web ブラウザを設定ã—ã¦ãã ã•ã„。" #: ../plug-ins/common/webbrowser.c:161 #, c-format @@ -8162,6 +7748,8 @@ "Could not parse specified web browser command:\n" "%s" msgstr "" +"設定ã•ã‚ŒãŸ web ブラウザコマンドを解釈ã§ãã¾ã›ã‚“:\n" +"%s" #: ../plug-ins/common/webbrowser.c:174 #, c-format @@ -8169,11 +7757,12 @@ "Could not execute specified web browser:\n" "%s" msgstr "" +"設定ã•ã‚ŒãŸ web ブラウザを実行ã§ãã¾ã›ã‚“:\n" +"%s" #: ../plug-ins/common/whirlpinch.c:161 -#, fuzzy msgid "W_hirl and Pinch..." -msgstr "ãã‚‹ãã‚‹ã²ã­ã‚‹" +msgstr "ãã‚‹ãã‚‹ã²ã­ã‚‹(_H)..." #: ../plug-ins/common/whirlpinch.c:348 msgid "Whirling and Pinching..." @@ -8184,29 +7773,24 @@ msgstr "ãã‚‹ãã‚‹ã²ã­ã‚‹" #: ../plug-ins/common/whirlpinch.c:564 -#, fuzzy msgid "_Whirl angle:" msgstr "ãã‚‹ãる角度(_W):" #: ../plug-ins/common/whirlpinch.c:576 -#, fuzzy msgid "_Pinch amount:" msgstr "ã²ã­ã‚‹é‡(_P):" #: ../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..." @@ -8218,7 +7802,7 @@ #: ../plug-ins/common/winclipboard.c:505 msgid "Can't get Clipboard data." -msgstr "クリップボードã®ãƒ‡ãƒ¼ã‚¿ã‚’å–å¾—ã§ãã¾ã›ã‚“." +msgstr "クリップボードã®ãƒ‡ãƒ¼ã‚¿ã‚’å–å¾—ã§ãã¾ã›ã‚“。" #. ??? gimp_image_convert_rgb (image_ID); #. @@ -8231,9 +7815,8 @@ msgstr "ペーストã—ã¦ã„ã¾ã™..." #: ../plug-ins/common/wind.c:183 -#, fuzzy msgid "Wi_nd..." -msgstr "波立ãŸã›ã¦ã„ã¾ã™..." +msgstr "風(_N)..." #: ../plug-ins/common/wind.c:315 msgid "Rendering Blast..." @@ -8302,14 +7885,12 @@ msgstr "値を大ããã™ã‚‹ã¨åŠ¹æžœãŒå¤§ãããªã‚‹" #: ../plug-ins/common/winprint.c:224 -#, fuzzy msgid "_Print" -msgstr "å°åˆ·" +msgstr "å°åˆ·(_P)" #: ../plug-ins/common/winprint.c:236 -#, fuzzy msgid "Page Setup" -msgstr "設定" +msgstr "ページ設定" #: ../plug-ins/common/winprint.c:341 #, c-format @@ -8342,7 +7923,7 @@ "StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, " "error = %d, y = %d" msgstr "" -"StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) 失敗, error " +"StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) 失敗ã€error " "= %d, y = %d" #: ../plug-ins/common/winprint.c:587 @@ -8356,27 +7937,28 @@ #: ../plug-ins/common/wmf.c:131 msgid "Microsoft WMF file" -msgstr "" +msgstr "Microsoft WMF ファイル" #: ../plug-ins/common/wmf.c:336 msgid "" "WMF file does not\n" "specify a size!" msgstr "" +"WMF ファイルã«\n" +"サイズãŒæŒ‡å®šã•ã‚Œã¦ã„ã¾ã›ã‚“!" #: ../plug-ins/common/wmf.c:484 -#, fuzzy msgid "Render Windows Metafile" -msgstr "Windows メタファイル形å¼ã®èª­ã¿è¾¼ã¿" +msgstr "Windows メタファイルã®æç”»" #: ../plug-ins/common/wmf.c:947 ../plug-ins/sgi/sgi.c:318 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for reading." -msgstr "'%s' を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“" +msgstr "'%s' ã‚’æ画用ã«é–‹ã‘ã¾ã›ã‚“" #: ../plug-ins/common/wmf.c:963 msgid "Rendered WMF" -msgstr "" +msgstr "æç”»ã—㟠WMF" #: ../plug-ins/common/xbm.c:169 ../plug-ins/common/xbm.c:187 msgid "X BitMap image" @@ -8387,7 +7969,7 @@ msgstr "GIMP ã§ä½œæˆã—ã¾ã—ãŸ" #: ../plug-ins/common/xbm.c:804 -#, fuzzy, c-format +#, c-format msgid "" "'%s':\n" "Could not read header (ftell == %ld)" @@ -8424,18 +8006,15 @@ #. The image is not black-and-white. #: ../plug-ins/common/xbm.c:960 -#, fuzzy msgid "" "The image which you are trying to save as an XBM contains more than two " "colors.\n" "\n" "Please convert it to a black and white (1-bit) indexed image and try again." msgstr "" -"XBM å½¢å¼ã§ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒã¯\n" -"2色以上ã®ç”»åƒã§ã™.\n" +"XBM å½¢å¼ã§ä¿å­˜ã—よã†ã¨ã—ã¦ã„ã‚‹ç”»åƒã¯2色を超ãˆã‚‹ç”»åƒã§ã™ã€‚\n" "\n" -"ä¿å­˜ã™ã‚‹å‰ã«ç™½é»’ (1-bit) インデックス\n" -"ç”»åƒã«å¤‰æ›ã—ã¦ãã ã•ã„." +"ä¿å­˜ã™ã‚‹å‰ã«ç™½é»’ (1-bit) インデックス画åƒã«å¤‰æ›ã—ã¦ãã ã•ã„。" #: ../plug-ins/common/xbm.c:971 msgid "" @@ -8443,7 +8022,7 @@ "which has no alpha channel." msgstr "" "アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒãŸãªã„ç”»åƒã§ã¯\n" -"カーソルマスクをä¿å­˜ã§ãã¾ã›ã‚“." +"カーソルマスクをä¿å­˜ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/xbm.c:1148 msgid "Save as XBM" @@ -8456,12 +8035,10 @@ #. X10 format #: ../plug-ins/common/xbm.c:1167 -#, fuzzy msgid "_X10 format bitmap" msgstr "_X10 å½¢å¼ãƒ“ットマップ" #: ../plug-ins/common/xbm.c:1187 -#, fuzzy msgid "_Identifier prefix:" msgstr "識別å­ãƒ—レフィックス(_I): " @@ -8475,7 +8052,6 @@ msgstr "ホットスãƒãƒƒãƒˆ _X:" #: ../plug-ins/common/xbm.c:1241 -#, fuzzy msgid "Hot spot _Y:" msgstr "ホットスãƒãƒƒãƒˆ _Y:" @@ -8494,63 +8070,54 @@ #: ../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 -#, fuzzy, c-format +#, c-format msgid "Error opening file '%s'" -msgstr "" -"ファイル '%s' ã®ã‚ªãƒ¼ãƒ—ン中ã«ã‚¨ãƒ©ãƒ¼:\n" -"%s" +msgstr "ファイル '%s' ã®ã‚ªãƒ¼ãƒ—ン中ã«ã‚¨ãƒ©ãƒ¼" #: ../plug-ins/common/xpm.c:359 msgid "XPM file invalid" -msgstr "" +msgstr "XPM ファイルãŒä¸æ­£ã§ã™" #: ../plug-ins/common/xpm.c:780 msgid "Save as XPM" msgstr "XPM å½¢å¼ã§ä¿å­˜ã™ã‚‹" #: ../plug-ins/common/xpm.c:796 -#, fuzzy msgid "_Alpha threshold:" msgstr "アルファã—ãã„値(_A):" #: ../plug-ins/common/xwd.c:277 ../plug-ins/common/xwd.c:297 -#, fuzzy msgid "X window dump" -msgstr "ç”»åƒã®åˆ‡ã‚ŠæŠœã" +msgstr "X ウィンドウダンプ" #: ../plug-ins/common/xwd.c:430 -#, fuzzy, c-format +#, c-format msgid "Could not read XWD header from '%s'" -msgstr "" -"'%s'\n" -"ã‹ã‚‰ãƒ˜ãƒƒãƒ€ãŒèª­ã‚ã¾ã›ã‚“" +msgstr "'%s' ã‹ã‚‰ XWD ヘッダãŒèª­ã‚ã¾ã›ã‚“" #: ../plug-ins/common/xwd.c:468 -#, fuzzy msgid "Can't read color entries" 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 "" -"load_image (xwd): XWD-ファイル %s ã¯å½¢å¼ %d, 深度 %d\n" -"ピクセル当ãŸã‚Š %d ã§ã™.\n" -"ç¾åœ¨ã“ã®å½¢å¼ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“.\n" +"XWD-ファイル %s ã¯å½¢å¼ %d, 深度 %d\n" +"ピクセル当ãŸã‚Š %d ã§ã™ã€‚\n" +"ç¾åœ¨ã“ã®å½¢å¼ã¯åˆ©ç”¨ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/xwd.c:557 -#, fuzzy msgid "Cannot save images with alpha channels." -msgstr "PNM ã«ã‚ˆã‚‹ä¿å­˜ã¯ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã‚’å–り扱ãˆã¾ã›ã‚“" +msgstr "アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’æŒã£ãŸç”»åƒã¯ä¿å­˜ã§ãã¾ã›ã‚“。" #: ../plug-ins/common/xwd.c:2160 -#, fuzzy msgid "Error during writing indexed/gray image" msgstr "インデックス/グレースケール画åƒä¿å­˜ä¸­ã®ã‚¨ãƒ©ãƒ¼" @@ -8559,9 +8126,8 @@ msgstr "rgb ç”»åƒä¿å­˜ä¸­ã®ã‚¨ãƒ©ãƒ¼" #: ../plug-ins/common/zealouscrop.c:85 -#, fuzzy msgid "_Zealous Crop" -msgstr "最å°æž ã§åˆ‡ã‚ŠæŠœã„ã¦ã„ã¾ã™..." +msgstr "最å°æž ã§åˆ‡ã‚ŠæŠœã(_Z)" #: ../plug-ins/common/zealouscrop.c:133 msgid "ZealousCropping(tm)..." @@ -8574,7 +8140,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 @@ -8606,14 +8172,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 @@ -8673,19 +8238,17 @@ msgstr "プラグインブラウザ(_P)" #: ../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" @@ -8693,46 +8256,41 @@ #: ../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 "ç”»åƒã®ç¨®é¡ž:" +msgstr "ç”»åƒã®ç¨®é¡ž" #: ../plug-ins/dbbrowser/plugin-browser.c:643 msgid "List View" 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 "プロシージャブラウザ(_B)" #: ../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" @@ -8760,7 +8318,6 @@ msgstr "白" #: ../plug-ins/fits/fits.c:996 -#, fuzzy msgid "Pixel value scaling" msgstr "ピクセル値スケーリング" @@ -8773,9 +8330,8 @@ msgstr "ç”»åƒã‚’構æˆã—ã¦ã„ã¾ã™" #: ../plug-ins/flame/flame.c:133 -#, fuzzy msgid "_Flame..." -msgstr "ç‚Ž" +msgstr "ç‚Ž(_F)..." #: ../plug-ins/flame/flame.c:227 msgid "Drawing Flame..." @@ -8783,7 +8339,7 @@ #: ../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 @@ -8864,17 +8420,14 @@ msgstr "ガンマ(_G):" #: ../plug-ins/flame/flame.c:1079 -#, fuzzy msgid "Sample _density:" msgstr "サンプル密度(_D):" #: ../plug-ins/flame/flame.c:1090 -#, fuzzy msgid "Spa_tial oversample:" msgstr "空間オーãƒãƒ¼ã‚µãƒ³ãƒ—ル(_T):" #: ../plug-ins/flame/flame.c:1101 -#, fuzzy msgid "Spatial _filter radius:" msgstr "空間フィルタåŠå¾„(_F):" @@ -8883,7 +8436,6 @@ msgstr "カラーマップ(_M):" #: ../plug-ins/flame/flame.c:1162 -#, fuzzy msgid "Custom gradient" msgstr "ä»»æ„ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³" @@ -8909,7 +8461,7 @@ #: ../plug-ins/gfig/gfig-bezier.c:463 msgid "Draws lines between the control points. Only during curve creation" -msgstr "端点間ã«ç›´ç·šã‚’引ã. カーブãŒä½œã‚‰ã‚Œã¦ã„る時ã ã‘" +msgstr "端点間ã«ç›´ç·šã‚’引ã。カーブãŒä½œã‚‰ã‚Œã¦ã„る時ã ã‘" #. Start building the dialog up #: ../plug-ins/gfig/gfig-dialog.c:295 @@ -8918,35 +8470,33 @@ #. 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 "è¼»(_S):" +msgstr "ストロークæç”»(_S)" #. Fill frame on right side #: ../plug-ins/gfig/gfig-dialog.c:405 msgid "Fill" -msgstr "埋ã‚ã‚‹" +msgstr "å¡—ã‚Šã¤ã¶ã—" #: ../plug-ins/gfig/gfig-dialog.c:419 msgid "No fill" -msgstr "" +msgstr "å¡—ã‚Šã¤ã¶ã•ãªã„" #: ../plug-ins/gfig/gfig-dialog.c:420 msgid "Color fill" -msgstr "色ã§åŸ‹ã‚ã‚‹" +msgstr "色ã§å¡—ã‚Šã¤ã¶ã™" #: ../plug-ins/gfig/gfig-dialog.c:421 msgid "Pattern fill" -msgstr "パターンã§åŸ‹ã‚ã‚‹" +msgstr "パターンã§å¡—ã‚Šã¤ã¶ã™" #: ../plug-ins/gfig/gfig-dialog.c:422 msgid "Gradient fill" -msgstr "グラデーションã§åŸ‹ã‚ã‚‹" +msgstr "グラデーションã§å¡—ã‚Šã¤ã¶ã™" #. "show image" checkbutton at bottom of style frame #: ../plug-ins/gfig/gfig-dialog.c:482 @@ -8972,7 +8522,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:859 msgid "_Undo" -msgstr "アンドゥ(_U)" +msgstr "å–り消ã—(_U)" #: ../plug-ins/gfig/gfig-dialog.c:863 msgid "_Clear" @@ -8984,21 +8534,19 @@ #: ../plug-ins/gfig/gfig-dialog.c:875 msgid "Raise selected object" -msgstr "é¸æŠžã‚ªãƒ–ジェクトを上ã«" +msgstr "é¸æŠžã‚ªãƒ–ジェクトをå‰é¢ã«" #: ../plug-ins/gfig/gfig-dialog.c:879 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" @@ -9042,7 +8590,7 @@ #: ../plug-ins/gfig/gfig-dialog.c:926 msgid "Create bezier curve. Shift + Button ends object creation." -msgstr "ベジエ曲線ã®ä½œæˆ. Shift + ボタン ã§ã‚ªãƒ–ジェクト作æˆã®çµ‚了" +msgstr "ベジエ曲線ã®ä½œæˆã€‚Shift + ボタン ã§ã‚ªãƒ–ジェクト作æˆã®çµ‚了" #: ../plug-ins/gfig/gfig-dialog.c:930 ../plug-ins/gfig/gfig-stock.c:48 msgid "Move an object" @@ -9074,13 +8622,12 @@ msgstr "ä½ç½®è¡¨ç¤º" #: ../plug-ins/gfig/gfig-dialog.c:1242 -#, fuzzy msgid "Show control points" -msgstr "端点を隠ã™" +msgstr "制御点表示" #: ../plug-ins/gfig/gfig-dialog.c:1276 msgid "Max undo:" -msgstr "最大アンドゥ:" +msgstr "最大å–り消ã—:" #: ../plug-ins/gfig/gfig-dialog.c:1285 #: ../plug-ins/gimpressionist/general.c:166 @@ -9099,11 +8646,10 @@ 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." -msgstr "レイヤー背景種. コピーã¯æã‹ã‚Œã‚‹å‰ã«ãã®å‰ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’複製ã—ã¾ã™" +msgstr "レイヤー背景種。コピーã¯æã‹ã‚Œã‚‹å‰ã«ãã®å‰ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’複製ã—ã¾ã™" #: ../plug-ins/gfig/gfig-dialog.c:1304 msgid "Background:" @@ -9159,7 +8705,6 @@ msgstr "グリッドã®è‰²:" #: ../plug-ins/gfig/gfig-dialog.c:1638 -#, fuzzy msgid "Sides:" msgstr "サイズ:" @@ -9199,23 +8744,20 @@ #. Position labels #: ../plug-ins/gfig/gfig-preview.c:383 -#, fuzzy msgid "XY position:" msgstr "XY ä½ç½®:" #: ../plug-ins/gfig/gfig-spiral.c:59 -#, fuzzy msgid "Spiral Number of Turns" -msgstr "螺旋ã®ãƒã‚¤ãƒ³ãƒˆæ•°" +msgstr "螺旋ã®å·»ãæ•°" #: ../plug-ins/gfig/gfig-star.c:57 msgid "Star Number of Points" msgstr "星型ã®ãƒã‚¤ãƒ³ãƒˆæ•°" #: ../plug-ins/gfig/gfig-stock.c:41 -#, fuzzy msgid "Create bezier curve" -msgstr "円ã®ä½œæˆ" +msgstr "ベジエ曲線ã®ä½œæˆ" #: ../plug-ins/gfig/gfig.c:132 msgid "_Gfig..." @@ -9226,11 +8768,12 @@ "Error trying to save figure as a parasite: can't attach parasite to " "drawable.\n" msgstr "" +"図を付属物ã¨ã—ã¦ä¿å­˜ä¸­ã«ã‚¨ãƒ©ãƒ¼: æ画対象ã«ä»˜å±žç‰©ã‚’付ã‘加ãˆã‚‰ã‚Œã¾ã›ã‚“。\n" -#: ../plug-ins/gfig/gfig.c:747 +#: ../plug-ins/gfig/gfig.c:752 #, c-format -msgid "Error trying to open temp file '%s'for parasite loading.\n" -msgstr "" +msgid "Error trying to open temporary file '%s' for parasite loading: %s" +msgstr "付属物読ã¿è¾¼ã¿ç”¨ã®ä¸€æ™‚ファイル '%s' オープン中ã«ã‚¨ãƒ©ãƒ¼: %s" #: ../plug-ins/gflare/gflare.c:560 msgid "Addition" @@ -9254,9 +8797,9 @@ msgstr "GFlare ファイル '%s' ã®ã‚ªãƒ¼ãƒ—ンã«å¤±æ•—: %s" #: ../plug-ins/gflare/gflare.c:1270 -#, fuzzy, c-format +#, c-format msgid "'%s' is not a valid GFlare file." -msgstr "'%s' ã¯æ­£å¸¸ãª GFlare ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“." +msgstr "'%s' ã¯æ­£å¸¸ãª GFlare ファイルã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #: ../plug-ins/gflare/gflare.c:1324 #, c-format @@ -9264,17 +8807,17 @@ msgstr "ä¸æ­£ãªå½¢å¼ã® GFlare ファイルã§ã™: %s\n" #: ../plug-ins/gflare/gflare.c:1449 -#, fuzzy, c-format +#, c-format msgid "" "GFlare '%s' is not saved. If you add a new entry in '%s', like:\n" "(gflare-path \"%s\")\n" "and make a folder '%s', then you can save your own GFlares into that folder." msgstr "" -"GFlare `%s' ã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“.\n" +"GFlare `%s' ã¯ä¿å­˜ã•ã‚Œã¾ã›ã‚“。\n" "%s ã«:\n" "(gflare-path \"%s\")\n" -"ã¨ã„ã†è¡Œã‚’追加ã—㦠%s ã¨ã„ã†ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’\n" -"作æˆã™ã‚‹ã¨è‡ªåˆ†ã® GFlare ã‚’ä¿å­˜ã§ãるよã†ã«ãªã‚Šã¾ã™." +"ã¨ã„ã†è¡Œã‚’追加ã—㦠%s ã¨ã„ã†ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’作æˆã™ã‚‹ã¨è‡ªåˆ†ã® GFlare ã‚’ä¿å­˜ã§ã" +"るよã†ã«ãªã‚Šã¾ã™ã€‚" #: ../plug-ins/gflare/gflare.c:1482 #, c-format @@ -9289,13 +8832,12 @@ msgstr "GFlare" #: ../plug-ins/gflare/gflare.c:2346 -#, fuzzy msgid "A_uto update preview" msgstr "プレビュー自動更新(_U)" #: ../plug-ins/gflare/gflare.c:2397 msgid "`Default' is created." -msgstr "'Default' ãŒä½œæˆã•ã‚Œã¾ã—ãŸ." +msgstr "'Default' ãŒä½œæˆã•ã‚Œã¾ã—ãŸã€‚" #: ../plug-ins/gflare/gflare.c:2398 msgid "Default" @@ -9306,7 +8848,6 @@ msgstr "回転(_T):" #: ../plug-ins/gflare/gflare.c:2711 -#, fuzzy msgid "_Hue rotation:" msgstr "色相回転(_H):" @@ -9319,7 +8860,6 @@ msgstr "ベクトル長(_L):" #: ../plug-ins/gflare/gflare.c:2756 -#, fuzzy msgid "A_daptive supersampling" msgstr "é©å¿œåž‹ã‚¹ãƒ¼ãƒ‘ーサンプリング(_D)" @@ -9353,7 +8893,6 @@ msgstr "GFlare ã®ã‚³ãƒ”ー" #: ../plug-ins/gflare/gflare.c:3069 -#, fuzzy msgid "Enter a name for the copied GFlare" msgstr "コピーã—㟠GFlare ã®åå‰ã‚’入力ã—ã¦ä¸‹ã•ã„:" @@ -9364,7 +8903,7 @@ #: ../plug-ins/gflare/gflare.c:3122 msgid "Cannot delete!! There must be at least one GFlare." -msgstr "削除ã§ãã¾ã›ã‚“!! 一ã¤ä»¥ä¸Š GFlare ãŒãªãã¦ã¯ãªã‚Šã¾ã›ã‚“." +msgstr "削除ã§ãã¾ã›ã‚“!! 一ã¤ä»¥ä¸Š GFlare ãŒãªãã¦ã¯ãªã‚Šã¾ã›ã‚“。" #: ../plug-ins/gflare/gflare.c:3132 msgid "Delete GFlare" @@ -9499,7 +9038,7 @@ #: ../plug-ins/gfli/gfli.c:158 ../plug-ins/gfli/gfli.c:178 msgid "AutoDesk FLIC animation" -msgstr "" +msgstr "AutoDesk FLIC å‹•ç”»" #: ../plug-ins/gfli/gfli.c:527 #, c-format @@ -9508,7 +9047,7 @@ #: ../plug-ins/gfli/gfli.c:678 msgid "Sorry, I can save only INDEXED and GRAY images." -msgstr "インデックスもã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç”»åƒã—ã‹ä¿å­˜ã§ãã¾ã›ã‚“." +msgstr "インデックスもã—ãã¯ã‚°ãƒ¬ãƒ¼ã‚¹ã‚±ãƒ¼ãƒ«ç”»åƒã—ã‹ä¿å­˜ã§ãã¾ã›ã‚“。" #: ../plug-ins/gfli/gfli.c:811 msgid "GFLI 1.3 - Load framestack" @@ -9545,11 +9084,11 @@ #: ../plug-ins/gimpressionist/brush.c:573 msgid "Aspect ratio:" -msgstr "アスペクト比:" +msgstr "縦横比:" #: ../plug-ins/gimpressionist/brush.c:577 msgid "Specifies the aspect ratio of the brush" -msgstr "ブラシã®ã‚¢ã‚¹ãƒšã‚¯ãƒˆæ¯”を指定ã™ã‚‹" +msgstr "ブラシã®ç¸¦æ¨ªæ¯”を指定ã™ã‚‹" #: ../plug-ins/gimpressionist/brush.c:586 #: ../plug-ins/gimpressionist/paper.c:188 @@ -9661,7 +9200,7 @@ #: ../plug-ins/gimpressionist/general.c:243 msgid "" "The depth of the drop shadow, i.e. how far apart from the object it should be" -msgstr "å½±ã®æ·±ã•, 物体ã‹ã‚‰ã©ã®ç¨‹åº¦å½±ã‚’離ã™ã‹" +msgstr "å½±ã®æ·±ã•ã€ç‰©ä½“ã‹ã‚‰ã©ã®ç¨‹åº¦å½±ã‚’離ã™ã‹" #: ../plug-ins/gimpressionist/general.c:248 msgid "Shadow blur:" @@ -9716,24 +9255,22 @@ msgstr "開始角度:" #: ../plug-ins/gimpressionist/orientation.c:104 -#, fuzzy msgid "The starting angle of the first brush to create" -msgstr "最åˆã«ä½œæˆã™ã‚‹ãƒ–ラシã®è§’度" +msgstr "最åˆã«ä½œæˆã™ã‚‹ãƒ–ラシã®é–‹å§‹è§’度" #: ../plug-ins/gimpressionist/orientation.c:112 msgid "Angle span:" msgstr "角度範囲:" #: ../plug-ins/gimpressionist/orientation.c:116 -#, fuzzy msgid "The angle span of the first brush to create" -msgstr "最åˆã«ä½œæˆã™ã‚‹ãƒ–ラシã®è§’度" +msgstr "最åˆã«ä½œæˆã™ã‚‹ãƒ–ラシã®è§’度範囲" #: ../plug-ins/gimpressionist/orientation.c:139 msgid "" "Let the value (brightness) of the region determine the direction of the " "stroke" -msgstr "部分的ãªå€¤ (明度) ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­âˆ’クã®æ–¹å‘を決ã‚ã•ã›ã‚‹" +msgstr "部分的ãªå€¤ (明度) ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã•ã›ã‚‹" #: ../plug-ins/gimpressionist/orientation.c:142 #: ../plug-ins/gimpressionist/size.c:145 @@ -9808,8 +9345,8 @@ "The vector-field. Left-click to move selected vector, Right-click to point " "it towards mouse, Middle-click to add a new vector." msgstr "" -"ベクトル欄. 左クリックã§é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®ç§»å‹•, å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤ãƒ³ãƒˆã‚’マウス" -"ã®æ–¹ã¸, 中クリックã§æ–°è¦ãƒ™ã‚¯ãƒˆãƒ«ã®è¿½åŠ ." +"ベクトル欄。左クリックã§é¸æŠžã—ãŸãƒ™ã‚¯ãƒˆãƒ«ã®ç§»å‹•ã€å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤ãƒ³ãƒˆã‚’マウス" +"ã®æ–¹ã¸ã€ä¸­ã‚¯ãƒªãƒƒã‚¯ã§æ–°è¦ãƒ™ã‚¯ãƒˆãƒ«ã®è¿½åŠ ã€‚" #: ../plug-ins/gimpressionist/orientmap.c:565 #: ../plug-ins/gimpressionist/sizemap.c:435 @@ -9964,20 +9501,17 @@ #. * that need not and should not be freed. So this call is OK. #. * #: ../plug-ins/gimpressionist/ppmtool.c:630 -#, fuzzy, c-format +#, c-format msgid "Failed to save PPM file '%s': %s" -msgstr "" -"PPM ファイル '%s' ã®ä¿å­˜ã«å¤±æ•—:\n" -"%s" +msgstr "PPM ファイル '%s' ã®ä¿å­˜ã«å¤±æ•—: %s" #: ../plug-ins/gimpressionist/presets.c:621 msgid "Save Current" msgstr "ç¾çŠ¶ä¿å­˜" #: ../plug-ins/gimpressionist/presets.c:863 -#, fuzzy msgid "The Gimpressionist Defaults" -msgstr "Gimpressionist" +msgstr "Gimpressionist デフォルト" #: ../plug-ins/gimpressionist/presets.c:979 msgid "_Presets" @@ -9989,7 +9523,7 @@ #: ../plug-ins/gimpressionist/presets.c:999 msgid "Save the current settings to the specified file" -msgstr "ç¾åœ¨ã®è¨­å®šã‚’特定ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä¿å­˜ã—ã¾ã™" +msgstr "ç¾åœ¨ã®è¨­å®šã‚’特定ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«ä¿å­˜ã—ã¾ã™" #: ../plug-ins/gimpressionist/presets.c:1027 msgid "Reads the selected Preset into memory" @@ -10094,8 +9628,8 @@ "The smvector-field. Left-click to move selected smvector, Right-click to " "point it towards mouse, Middle-click to add a new smvector." msgstr "" -"サイズマップベクトル欄.左クリックã§é¸æŠžã—㟠smvector を移動, å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒã‚¤" -"ントをマウスã®æ–¹ã¸, 中クリックã§æ–°è¦ smvector を追加." +"サイズマップベクトル欄。左クリックã§é¸æŠžã—㟠smvector を移動ã€å³ã‚¯ãƒªãƒƒã‚¯ã§ãƒ" +"イントをマウスã®æ–¹ã¸ã€ä¸­ã‚¯ãƒªãƒƒã‚¯ã§æ–°è¦ smvector を追加。" #: ../plug-ins/gimpressionist/sizemap.c:457 msgid "Select previous smvector" @@ -10147,7 +9681,7 @@ msgstr "" " (gimpressionist-path \"%s\")\n" "ã®ã‚ˆã†ã« gimprc ã«ä»˜ã‘足ã™ã“ã¨ã‚’\n" -"å¼·ããŠå‹§ã‚ã—ã¾ã™." +"å¼·ããŠå‹§ã‚ã—ã¾ã™ã€‚" #: ../plug-ins/help/domain.c:177 msgid "The GIMP help files are not installed." @@ -10180,7 +9714,6 @@ msgstr "GIMP ヘルプブラウザ" #: ../plug-ins/helpbrowser/dialog.c:411 -#, fuzzy msgid "Document not found" msgstr "ドキュメントãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" @@ -10189,9 +9722,8 @@ msgstr "è¦æ±‚ã•ã‚ŒãŸ URL ã¯èª­ã¿è¾¼ã‚ã¾ã›ã‚“:" #: ../plug-ins/ifscompose/ifscompose.c:357 -#, fuzzy msgid "_IFS Fractal..." -msgstr "フラクタルトレース" +msgstr "IFS フラクタル(_I)..." #. Asym #: ../plug-ins/ifscompose/ifscompose.c:600 @@ -10209,9 +9741,8 @@ msgstr "å˜ç´”" #: ../plug-ins/ifscompose/ifscompose.c:668 -#, fuzzy msgid "IFS Fractal: Target" -msgstr "フラクタルトレース" +msgstr "IFS フラクタル: 変æ›å…ˆ" #: ../plug-ins/ifscompose/ifscompose.c:674 msgid "Scale Hue by:" @@ -10227,29 +9758,24 @@ msgstr "完全" #: ../plug-ins/ifscompose/ifscompose.c:713 -#, fuzzy msgid "IFS Fractal: Red" -msgstr "フラクタルã®ç¨®é¡ž" +msgstr "IFS フラクタル: 赤" #: ../plug-ins/ifscompose/ifscompose.c:720 -#, fuzzy msgid "IFS Fractal: Green" -msgstr "フラクタルトレース" +msgstr "IFS フラクタル: ç·‘" #: ../plug-ins/ifscompose/ifscompose.c:727 -#, fuzzy msgid "IFS Fractal: Blue" -msgstr "フラクタルã®ç¨®é¡ž" +msgstr "IFS フラクタル: é’" #: ../plug-ins/ifscompose/ifscompose.c:734 -#, fuzzy msgid "IFS Fractal: Black" -msgstr "フラクタルトレース" +msgstr "IFS フラクタル: é»’" #: ../plug-ins/ifscompose/ifscompose.c:784 -#, fuzzy msgid "IFS Fractal" -msgstr "æ–°è¦ãƒ•ãƒ©ã‚¯ã‚¿ãƒ«" +msgstr "IFS フラクタル" #: ../plug-ins/ifscompose/ifscompose.c:872 msgid "Spatial Transformation" @@ -10260,7 +9786,6 @@ msgstr "色変æ›" #: ../plug-ins/ifscompose/ifscompose.c:888 -#, fuzzy msgid "Relative probability:" msgstr "相対的確率:" @@ -10269,17 +9794,14 @@ msgstr "å…¨ã¦ã‚’é¸æŠž(_A)" #: ../plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Re_center" -msgstr "中央" +msgstr "中心å†è¨ˆç®—(_C)" #: ../plug-ins/ifscompose/ifscompose.c:1067 -#, fuzzy msgid "Recompute Center" -msgstr "中心をå†è¨ˆç®—ã™ã‚‹(_C)" +msgstr "中心をå†è¨ˆç®—ã™ã‚‹" #: ../plug-ins/ifscompose/ifscompose.c:1071 -#, fuzzy msgid "Render options" msgstr "æ画オプション" @@ -10290,12 +9812,10 @@ msgstr "移動" #: ../plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate" msgstr "回転" #: ../plug-ins/ifscompose/ifscompose.c:1080 -#, fuzzy msgid "Rotate / Scale" msgstr "回転/拡大縮å°" @@ -10304,9 +9824,8 @@ msgstr "伸長" #: ../plug-ins/ifscompose/ifscompose.c:1180 -#, fuzzy msgid "IFS Fractal Render Options" -msgstr "æ画オプション" +msgstr "IFS フラクタルæ画オプション" #: ../plug-ins/ifscompose/ifscompose.c:1201 msgid "Max. Memory:" @@ -10337,45 +9856,38 @@ 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 -#, fuzzy msgid "Open failed" -msgstr "ファイルを開ã" +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 ファイルã§ã¯ãªã„よã†ã§ã™." +msgstr "ファイル '%s' 㯠IFS フラクタルファイルã§ã¯ãªã„よã†ã§ã™ã€‚" #: ../plug-ins/ifscompose/ifscompose.c:2529 -#, fuzzy msgid "Save as IFS Fraktal file" -msgstr "IFS å½¢å¼ã§ä¿å­˜" +msgstr "IFS フラクタルファイルã¨ã—ã¦ä¿å­˜" #: ../plug-ins/ifscompose/ifscompose.c:2559 -#, fuzzy msgid "Open IFS Fraktal file" -msgstr "ファイルを開ã" +msgstr "IFS フラクタルファイルを開ã" #: ../plug-ins/imagemap/imap_about.c:43 -#, fuzzy msgid "Imagemap plug-in 2.2" -msgstr "Imagemap plug-in 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 "Copyright(c) 1999-2003 by Maurits Rijk" +msgstr "Copyright(c) 1999-2004 by Maurits Rijk" #: ../plug-ins/imagemap/imap_about.c:46 -#, fuzzy msgid "Released under the GNU General Public License" -msgstr " Released under the GNU General Public License " +msgstr "Released under the GNU General Public License" #: ../plug-ins/imagemap/imap_circle.c:64 msgid "C_ircle" @@ -10450,7 +9962,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" @@ -10483,17 +9995,16 @@ 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" -"å¯èƒ½ã«ã—ã¾ã™." +"å¯èƒ½ã«ã—ã¾ã™ã€‚" #: ../plug-ins/imagemap/imap_cmd_guides.c:172 msgid "_Left Start at:" @@ -10508,18 +10019,16 @@ msgstr "水平間隔(_H):" #: ../plug-ins/imagemap/imap_cmd_guides.c:193 -#, fuzzy msgid "_No. Across:" -msgstr "横ã®æ•°" +msgstr "横ã®æ•°(_N)" #: ../plug-ins/imagemap/imap_cmd_guides.c:199 msgid "_Vert. Spacing:" msgstr "åž‚ç›´é–“éš”(_V):" #: ../plug-ins/imagemap/imap_cmd_guides.c:205 -#, fuzzy msgid "No. _Down:" -msgstr "縦ã®æ•°" +msgstr "縦ã®æ•°(_D)" #: ../plug-ins/imagemap/imap_cmd_guides.c:214 msgid "Base _URL:" @@ -10584,9 +10093,8 @@ msgstr "次をé¸æŠž" #: ../plug-ins/imagemap/imap_cmd_select_prev.c:51 -#, fuzzy msgid "Select Previous" -msgstr "å‰ã®ãƒ™ã‚¯ãƒˆãƒ«ã‚’é¸æŠžã™ã‚‹" +msgstr "å‰ã‚’é¸æŠž" #: ../plug-ins/imagemap/imap_cmd_select_region.c:64 msgid "Select Region" @@ -10699,11 +10207,8 @@ 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" @@ -10763,7 +10268,7 @@ #: ../plug-ins/imagemap/imap_main.c:128 msgid "_ImageMap..." -msgstr "_ImageMap..." +msgstr "イメージマップ(_I)..." #: ../plug-ins/imagemap/imap_main.c:594 #: ../plug-ins/imagemap/imap_settings.c:171 @@ -10781,7 +10286,7 @@ #: ../plug-ins/imagemap/imap_main.c:955 #, c-format msgid "File \"%s\" saved." -msgstr "ファイル \"%s\" ã‚’ä¿å­˜ã—ã¾ã—ãŸ." +msgstr "ファイル \"%s\" ã‚’ä¿å­˜ã—ã¾ã—ãŸã€‚" #: ../plug-ins/imagemap/imap_main.c:959 msgid "Couldn't save file:" @@ -10789,12 +10294,11 @@ #: ../plug-ins/imagemap/imap_main.c:985 msgid "Image size has changed." -msgstr "ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸ." +msgstr "ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸã€‚" #: ../plug-ins/imagemap/imap_main.c:986 -#, fuzzy msgid "Resize area's?" -msgstr "サイズ変更" +msgstr "領域ã®ã‚µã‚¤ã‚ºã‚’変ãˆã¾ã™ã‹?" #: ../plug-ins/imagemap/imap_main.c:1014 msgid "Couldn't read file:" @@ -10810,36 +10314,32 @@ msgstr "ファイル(_F)" #: ../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 "アンドゥ(_U) %s" +msgstr "%s ã®å–り消ã—(_U)" #: ../plug-ins/imagemap/imap_menu.c:225 #, c-format msgid "_Redo %s" -msgstr "リドゥ(_R) %s" +msgstr "%s ã®ã‚„ã‚Šç›´ã—(_R)" #: ../plug-ins/imagemap/imap_menu.c:253 msgid "_Edit" msgstr "編集(_E)" #: ../plug-ins/imagemap/imap_menu.c:271 -#, fuzzy msgid "Select _all" -msgstr "å…¨ã¦ã‚’é¸æŠž" +msgstr "å…¨ã¦ã‚’é¸æŠž(_A)" #: ../plug-ins/imagemap/imap_menu.c:274 -#, fuzzy msgid "Deselect _all" msgstr "å…¨ã¦é¸æŠžè§£é™¤(_A)" #: ../plug-ins/imagemap/imap_menu.c:279 -#, fuzzy msgid "Edit area info..." msgstr "領域情報を編集..." @@ -10848,7 +10348,6 @@ msgstr "表示(_V)" #: ../plug-ins/imagemap/imap_menu.c:298 -#, fuzzy msgid "Area list" msgstr "領域一覧" @@ -10862,7 +10361,6 @@ msgstr "グレースケール" #: ../plug-ins/imagemap/imap_menu.c:328 -#, fuzzy msgid "Zoom to" msgstr "拡大率" @@ -10875,9 +10373,8 @@ msgstr "矢å°" #: ../plug-ins/imagemap/imap_menu.c:365 -#, fuzzy msgid "Select contiguous region" -msgstr "領域é¸æŠž" +msgstr "隣接領域をé¸æŠž" #: ../plug-ins/imagemap/imap_menu.c:384 msgid "_Tools" @@ -10905,7 +10402,7 @@ #: ../plug-ins/imagemap/imap_menu.c:405 msgid "_About ImageMap" -msgstr "ImageMap ã«ã¤ã„ã¦(_A)..." +msgstr "ImageMap ã«ã¤ã„ã¦(_A)" #: ../plug-ins/imagemap/imap_object_popup.c:103 msgid "Edit Area Info..." @@ -10992,13 +10489,12 @@ msgstr "å–ã£æ‰‹ã‚’二å€ã«ã™ã‚‹(_U)" #: ../plug-ins/imagemap/imap_preferences.c:484 -#, fuzzy msgid "Menu" -msgstr "メニュー(_M)" +msgstr "メニュー" #: ../plug-ins/imagemap/imap_preferences.c:488 msgid "Number of _Undo levels (1 - 99):" -msgstr "アンドゥレベルã®æ•° (1 - 99)(_U):" +msgstr "å–り消ã—レベルã®æ•° (1 - 99)(_U):" #: ../plug-ins/imagemap/imap_preferences.c:493 msgid "Number of M_RU entries (1 - 16):" @@ -11043,15 +10539,15 @@ #: ../plug-ins/imagemap/imap_selection.c:410 msgid "#" -msgstr "" +msgstr "#" #: ../plug-ins/imagemap/imap_selection.c:439 msgid "ALT Text" -msgstr "" +msgstr "代替テキスト" #: ../plug-ins/imagemap/imap_selection.c:449 msgid "Target" -msgstr "対象" +msgstr "target" #: ../plug-ins/imagemap/imap_settings.c:90 msgid "Settings for this Mapfile" @@ -11071,7 +10567,7 @@ #: ../plug-ins/imagemap/imap_settings.c:102 msgid "_Title:" -msgstr "タイトル(_Y):" +msgstr "タイトル(_T):" #: ../plug-ins/imagemap/imap_settings.c:104 msgid "Aut_hor:" @@ -11111,11 +10607,11 @@ #: ../plug-ins/imagemap/imap_toolbar.c:112 msgid "Undo" -msgstr "アンドゥ" +msgstr "å–り消ã—" #: ../plug-ins/imagemap/imap_toolbar.c:116 msgid "Redo" -msgstr "リドゥ" +msgstr "ã‚„ã‚Šç›´ã—" #: ../plug-ins/imagemap/imap_toolbar.c:137 msgid "Zoom in" @@ -11126,7 +10622,6 @@ msgstr "縮å°è¡¨ç¤º" #: ../plug-ins/imagemap/imap_toolbar.c:147 -#, fuzzy msgid "Edit map info" msgstr "マップ情報を編集" @@ -11139,9 +10634,8 @@ msgstr "ã‚ã„ã¾ã„ãªé¸æŠž" #: ../plug-ins/imagemap/imap_tools.c:151 -#, fuzzy msgid "Select contiguous regions" -msgstr "領域é¸æŠž" +msgstr "隣接領域をé¸æŠž" #: ../plug-ins/imagemap/imap_tools.c:157 msgid "Define Rectangle area" @@ -11172,22 +10666,19 @@ msgstr "並ã¹ã‚‰ã‚Œã‚‹è¿·è·¯ã‚’ Prim アルゴリズムã§å½¢æˆã—ã¦ã„ã¾ã™..." #: ../plug-ins/maze/maze.c:163 -#, fuzzy msgid "_Maze..." -msgstr "詳細設定..." +msgstr "è¿·è·¯(_M)..." #: ../plug-ins/maze/maze.c:450 msgid "Drawing Maze..." msgstr "迷路をæã„ã¦ã„ã¾ã™..." #: ../plug-ins/maze/maze.h:2 -#, fuzzy msgid "Maze" -msgstr "マーブル" +msgstr "è¿·è·¯" #. entscale == Entry and Scale pair function found in pixelize.c #: ../plug-ins/maze/maze_face.c:202 -#, fuzzy msgid "Width (pixels):" msgstr "å¹… (ピクセル):" @@ -11196,7 +10687,6 @@ msgstr "部å“æ•°:" #: ../plug-ins/maze/maze_face.c:219 -#, fuzzy msgid "Height (pixels):" msgstr "高㕠(ピクセル):" @@ -11209,12 +10699,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 アルゴリズム" @@ -11223,13 +10711,12 @@ "Selection size is not even.\n" "Tileable maze won't work perfectly." msgstr "" -"é¸æŠžã‚µã‚¤ã‚ºãŒå¶æ•°ã§ã¯ã‚ã‚Šã¾ã›ã‚“.\n" -"並ã¹ã‚‹è¿·è·¯ãŒã†ã¾ãã§ããªã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“." +"é¸æŠžã‚µã‚¤ã‚ºãŒå¶æ•°ã§ã¯ã‚ã‚Šã¾ã›ã‚“。\n" +"並ã¹ã‚‹è¿·è·¯ãŒã†ã¾ãã§ããªã„ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“。" #: ../plug-ins/pagecurl/pagecurl.c:224 -#, fuzzy msgid "_Pagecurl..." -msgstr "ページをã‚ãã£ã¦ã„ã¾ã™..." +msgstr "ページã‚ãã‚Š(_P)..." #: ../plug-ins/pagecurl/pagecurl.c:443 msgid "Pagecurl Effect" @@ -11240,12 +10727,10 @@ msgstr "ã‚ãã‚‹ä½ç½®" #: ../plug-ins/pagecurl/pagecurl.c:477 -#, fuzzy msgid "Lower right" msgstr "å³ä¸‹" #: ../plug-ins/pagecurl/pagecurl.c:478 -#, fuzzy msgid "Lower left" msgstr "左下" @@ -11262,28 +10747,24 @@ msgstr "ã‚ãã‚‹å‘ã" #: ../plug-ins/pagecurl/pagecurl.c:564 -#, fuzzy msgid "_Shade under curl" -msgstr "ã‚ãã£ãŸä¸‹ã«å½±ã‚’ã¤ã‘ã‚‹" +msgstr "ã‚ãã£ãŸä¸‹ã«å½±ã‚’ã¤ã‘ã‚‹(_S)" #: ../plug-ins/pagecurl/pagecurl.c:577 msgid "Current gradient (reversed)" -msgstr "" +msgstr "ç¾åœ¨ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ (逆å‘ã)" #: ../plug-ins/pagecurl/pagecurl.c:582 -#, fuzzy msgid "Current gradient" -msgstr "ä»»æ„ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³" +msgstr "ç¾åœ¨ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³" #: ../plug-ins/pagecurl/pagecurl.c:587 -#, fuzzy msgid "Foreground / background colors" -msgstr "å‰æ™¯/背景(_F)" +msgstr "å‰æ™¯è‰² / 背景色" #: ../plug-ins/pagecurl/pagecurl.c:607 -#, fuzzy msgid "_Opacity:" -msgstr "ä¸é€æ˜Žåº¦:" +msgstr "ä¸é€æ˜Žåº¦(_O):" #: ../plug-ins/pagecurl/pagecurl.c:730 msgid "Curl Layer" @@ -11306,6 +10787,8 @@ "Set the brightness of the print.\n" "0 is solid black, 2 is solid white" msgstr "" +"å°åˆ·ã®æ˜Žã‚‹ã•ã‚’設定ã—ã¾ã™ã€‚\n" +"0 ã¯çœŸã£é»’〠2 ã¯çœŸã£ç™½ã«ãªã‚Šã¾ã™" #: ../plug-ins/print/gimp_color_window.c:288 msgid "Contrast:" @@ -11332,6 +10815,8 @@ "Adjust the saturation (color balance) of the print\n" "Use zero saturation to produce grayscale output using color and black inks" msgstr "" +"å°åˆ·ã®å½©åº¦ (カラーãƒãƒ©ãƒ³ã‚¹) を調整ã—ã¾ã™\n" +"カラーãŠã‚ˆã³é»’インクを使ã„グレースケールã§å‡ºåŠ›ã™ã‚‹ã«ã¯ã€å½©åº¦ã‚’ゼロã«ã—ã¾ã™" #: ../plug-ins/print/gimp_color_window.c:385 msgid "Density:" @@ -11343,6 +10828,8 @@ "ink bleeds through the paper or smears; increase the density if black " "regions are not solid." msgstr "" +"å°åˆ·ã®æ¿ƒåº¦ (インクé‡) を調整ã—ã¾ã™ã€‚インクãŒè£ã†ã¤ã‚Šã—ãŸã‚ŠæŸ“ã¿ãŸã‚Šã™ã‚‹å ´åˆ" +"ã¯ã€æ¿ƒåº¦ã‚’減らã—ã¦ãã ã•ã„。黒ãŒãƒ™ã‚¿ã«ãªã‚‰ãªã„å ´åˆã¯æ¿ƒåº¦ã‚’増やã—ã¦ãã ã•ã„。" #: ../plug-ins/print/gimp_color_window.c:415 msgid "" @@ -11350,6 +10837,9 @@ "brighter print, while smaller values will produce a generally darker print. " "Black and white will remain the same, unlike with the brightness adjustment." msgstr "" +"å°åˆ·ã®ã‚¬ãƒ³ãƒžã‚’調整ã—ã¾ã™ã€‚値を大ããã™ã‚‹ã¨å…¨ä½“çš„ã«æ˜Žã‚‹ã„å°åˆ·ã«ãªã‚Šã€å°ã•ãã™" +"ã‚‹ã¨å…¨ä½“çš„ã«æš—ã„å°åˆ·ã«ãªã‚Šã¾ã™ã€‚明るã•ã®èª¿æ•´ã¨ã¯ç•°ãªã‚Šã€ç™½ã¨é»’ã¯å¤‰ã‚ã‚Šã¾ã›" +"ん。" #: ../plug-ins/print/gimp_color_window.c:432 msgid "Dither Algorithm:" @@ -11364,6 +10854,11 @@ "art.\n" "Hybrid Floyd-Steinberg generally produces inferior output." msgstr "" +"使用ã™ã‚‹ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ ã‚’é¸æŠžã—ã¾ã™ã€‚\n" +"Adaptive Hybrid ã¯é€šå¸¸ã€å…¨èˆ¬çš„ã«æœ€è‰¯ã®å“質ã¨ãªã‚Šã¾ã™ã€‚\n" +"Ordered ã¯é€Ÿãã€ã»ã¨ã‚“ã©ã®å†™çœŸã¯è‰¯å“質ã¨ãªã‚Šã¾ã™ã€‚\n" +"Fast ãŠã‚ˆã³ Very Fast ã¯ã‹ãªã‚Šé€Ÿãã€ãƒ†ã‚­ã‚¹ãƒˆã‚„ç·šç”»ã«å‘ã„ã¦ã„ã¾ã™ã€‚\n" +"Hybrid Floyd-Steinberg ã¯ã€é€šå¸¸ã¯ä½Žå“質ã®å‡ºåŠ›ã¨ãªã‚Šã¾ã™ã€‚" #. #. * Create the main dialog @@ -11402,6 +10897,14 @@ "If you click another button while dragging the mouse, the image will return " "to its original position." msgstr "" +"ページ中ã®ç”»åƒã®ä½ç½®ã‚’決ã‚ã¾ã™ã€‚\n" +"第 1 ボタンã§ã®ã‚¯ãƒªãƒƒã‚¯ã¨ãƒ‰ãƒ©ãƒƒã‚°ã§ç”»åƒä½ç½®ã‚’指定ã—ã¾ã™ã€‚\n" +"第 2 ボタンã§ã®ã‚¯ãƒªãƒƒã‚¯ã¨ãƒ‰ãƒ©ãƒƒã‚°ã§ç”»åƒã‚’正確ã«ç§»å‹•ã—ã¾ã™ã€‚移動å˜ä½ã¯ 1 ãƒã‚¤" +"ント (1/72 インãƒ) ã§ã™ã€‚\n" +"第 3 (中) ボタンã§ã®ã‚¯ãƒªãƒƒã‚¯ã¨ãƒ‰ãƒ©ãƒƒã‚°ã§ç”»åƒã‚’ç”»åƒã‚µã‚¤ã‚ºå˜ä½ã§ç§»å‹•ã—ã¾ã™ã€‚\n" +"shift キーを押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã‚„ドラッグã™ã‚‹ã¨ã€ç”»åƒã®ç§»å‹•ã‚’æ°´å¹³ã¾ãŸã¯åž‚ç›´æ–¹" +"å‘ã®ã¿ã«ã—ã¾ã™ã€‚\n" +"マウスã®ãƒ‰ãƒ©ãƒƒã‚°ä¸­ã«åˆ¥ã®ãƒœã‚¿ãƒ³ã‚’クリックã™ã‚‹ã¨ã€ç”»åƒã¯å…ƒã®ä½ç½®ã«æˆ»ã‚Šã¾ã™ã€‚" #: ../plug-ins/print/gimp_main_window.c:481 msgid "Auto" @@ -11427,45 +10930,39 @@ msgid "" "Select the orientation: portrait, landscape, upside down, or seascape " "(upside down landscape)" -msgstr "用紙ã®å‘ãé¸æŠžã—ã¦ãã ã•ã„: 縦置ã, 横置ã, 逆縦置ã, 逆横置ã" +msgstr "用紙ã®å‘ãã‚’é¸æŠžã—ã¦ãã ã•ã„: 縦置ãã€æ¨ªç½®ãã€é€†ç¸¦ç½®ãã€é€†æ¨ªç½®ã" #: ../plug-ins/print/gimp_main_window.c:514 -#, fuzzy msgid "Distance from the left of the paper to the image" -msgstr "ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹" +msgstr "ç´™ã®å·¦è¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢" #: ../plug-ins/print/gimp_main_window.c:527 -#, fuzzy msgid "Distance from the top of the paper to the image" -msgstr "ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹" +msgstr "ç´™ã®ä¸Šè¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢" #: ../plug-ins/print/gimp_main_window.c:540 -#, fuzzy msgid "Distance from the left of the paper to the right of the image" -msgstr "ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹" +msgstr "ç´™ã®å·¦è¾ºã‹ã‚‰ç”»åƒã®å³ç«¯ã¾ã§ã®è·é›¢" #: ../plug-ins/print/gimp_main_window.c:550 msgid "Right Border:" msgstr "å³ç¸:" #: ../plug-ins/print/gimp_main_window.c:554 -#, fuzzy msgid "Distance from the right of the paper to the image" -msgstr "ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹" +msgstr "ç´™ã®å³è¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢" #: ../plug-ins/print/gimp_main_window.c:568 -#, fuzzy msgid "Distance from the top of the paper to the bottom of the image" -msgstr "ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ãŒã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã®æ–¹å‘を決ã‚ã‚‹" +msgstr "ç´™ã®ä¸Šè¾ºã‹ã‚‰ç”»åƒã®ä¸‹ç«¯ã¾ã§ã®è·é›¢" #: ../plug-ins/print/gimp_main_window.c:578 msgid "Bottom Border:" msgstr "下ç¸:" #: ../plug-ins/print/gimp_main_window.c:582 -#, fuzzy msgid "Distance from the bottom of the paper to the image" -msgstr "ç”»åƒã®ä¸­å¿ƒã‹ã‚‰ã®è·é›¢ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹" +msgstr "ç´™ã®ä¸‹è¾ºã‹ã‚‰ç”»åƒã¾ã§ã®è·é›¢" #: ../plug-ins/print/gimp_main_window.c:595 msgid "Center:" @@ -11519,7 +11016,7 @@ #: ../plug-ins/print/gimp_main_window.c:739 msgid "Enter the PPD filename for your printer" -msgstr "" +msgstr "ãŠä½¿ã„ã®ãƒ—リンタ用㮠PPD ファイルを入力ã—ã¦ãã ã•ã„" #: ../plug-ins/print/gimp_main_window.c:742 msgid "Browse" @@ -11527,7 +11024,7 @@ #: ../plug-ins/print/gimp_main_window.c:748 msgid "Choose the PPD file for your printer" -msgstr "" +msgstr "ãŠä½¿ã„ã®ãƒ—リンタ用㮠PPD ファイルをé¸æŠžã—ã¦ãã ã•ã„" #. #. * Print command. @@ -11541,11 +11038,12 @@ "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 "" +"プリンタ用ã®å°åˆ·ã‚³ãƒžãƒ³ãƒ‰ã‚’入力ã—ã¦ãã ã•ã„。注: コマンドã‹ã‚‰ `-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" @@ -11553,13 +11051,12 @@ #: ../plug-ins/print/gimp_main_window.c:825 #: ../plug-ins/print/gimp_main_window.c:920 -#, fuzzy msgid "Printer name:" msgstr "プリンタå:" #: ../plug-ins/print/gimp_main_window.c:829 msgid "Enter the name you wish to give this logical printer" -msgstr "" +msgstr "ã“ã®è«–ç†ãƒ—リンタ用ã®åå‰ã‚’入力ã—ã¦ãã ã•ã„" #: ../plug-ins/print/gimp_main_window.c:842 msgid "About Gimp-Print " @@ -11592,6 +11089,25 @@ "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" msgstr "" +"\n" +"\n" +"Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz,\n" +"and the rest of the Gimp-Print Development Team.\n" +"\n" +"ç§ãŸã¡ã® web サイト http://gimp-print.sourceforge.net ã‚’ã”覧ãã ã•ã„。\n" +"\n" +"本プログラムã¯ãƒ•ãƒªãƒ¼ãƒ»ã‚½ãƒ•ãƒˆã‚¦ã‚§ã‚¢ã§ã™ã€‚ã‚ãªãŸã¯ã€Free Software\n" +" Foundation ãŒå…¬è¡¨ã—ãŸGNU一般公有使用許諾ã®ã€Œãƒãƒ¼ã‚¸ãƒ§ãƒ³2ã€ã‚ã‚‹ã„ã¯ã\n" +"れ以é™ã®å„ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã®ä¸­ã‹ã‚‰ã„ãšã‚Œã‹ã‚’é¸æŠžã—ã€ãã®ãƒãƒ¼ã‚¸ãƒ§ãƒ³ãŒå®šã‚ã‚‹\n" +"æ¡é …ã«å¾“ã£ã¦æœ¬ãƒ—ログラムをå†é ’布ã¾ãŸã¯å¤‰æ›´ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚\n" +"\n" +"本プログラムã¯æœ‰ç”¨ã¨ã¯æ€ã„ã¾ã™ãŒã€é ’布ã«ã‚ãŸã£ã¦ã¯ã€å¸‚場性ãŠã‚ˆã³ç‰¹å®š\n" +"目的é©åˆæ€§ã«ã¤ã„ã¦ã®æš—é»™ã®ä¿è¨¼ã‚’å«ã‚ã¦ã€ã„ã‹ãªã‚‹ä¿è¨¼ã‚‚è¡Œãªã„ã¾ã›ã‚“。\n" +"詳細ã«ã¤ã„ã¦ã¯ GNU 一般公有使用許諾書をãŠèª­ã¿ãã ã•ã„。\n" +"\n" +"ã‚ãªãŸã¯ã€æœ¬ãƒ—ログラムã¨ä¸€ç·’ã«GNU 一般公有使用許諾ã®å†™ã—ã‚’å—ã‘å–ã£ã¦\n" +"ã„ã‚‹ã¯ãšã§ã™ã€‚ãã†ã§ãªã„å ´åˆã¯ã€Free Software Foundation,Inc., 59 Temple \n" +"Place - Suite 330, Boston, MA 02111-1307, USA. ã¸æ‰‹ç´™ã‚’書ã„ã¦ãã ã•ã„。\n" #: ../plug-ins/print/gimp_main_window.c:903 msgid "Printer Settings" @@ -11606,7 +11122,6 @@ "ã®ã“ã¨ã§ã¯ã‚ã‚Šã¾ã›ã‚“)" #: ../plug-ins/print/gimp_main_window.c:926 -#, fuzzy msgid "Printer model:" msgstr "プリンタモデル:" @@ -11614,7 +11129,6 @@ #. * Setup printer button #. #: ../plug-ins/print/gimp_main_window.c:937 -#, fuzzy msgid "Setup printer..." msgstr "プリンタã®è¨­å®š..." @@ -11623,12 +11137,13 @@ "Choose the printer model, PPD file, and command that is used to print to " "this printer" msgstr "" +"プリンタã®æ©Ÿç¨®ã€ PPD ファイルã€ãŠã‚ˆã³ã€ã“ã®ãƒ—リンタã§ã®å°åˆ·ã‚³ãƒžãƒ³ãƒ‰ã‚’é¸ã‚“ã§ã" +"ã ã•ã„。" #. #. * New printer button #. #: ../plug-ins/print/gimp_main_window.c:954 -#, fuzzy msgid "New printer..." msgstr "æ–°è¦ãƒ—リンタ..." @@ -11637,13 +11152,14 @@ "Define a new logical printer. This can be used to name a collection of " "settings that you wish to remember for future use." msgstr "" +"æ–°ã—ã„è«–ç†ãƒ—リンタを定義ã—ã¾ã™ã€‚一連ã®è¨­å®šå€¤ã«å¯¾ã—ã¦åå‰ã‚’ã¤ã‘ã¦ãŠãã€å¾Œã§ä½¿" +"ã†ã“ã¨ãŒã§ãã¾ã™ã€‚" #: ../plug-ins/print/gimp_main_window.c:977 msgid "Size of paper that you wish to print to" msgstr "å°åˆ·ã—ãŸã„ç´™ã®ã‚µã‚¤ã‚º" #: ../plug-ins/print/gimp_main_window.c:980 -#, fuzzy msgid "Media size:" msgstr "用紙サイズ:" @@ -11664,16 +11180,14 @@ msgstr "å°åˆ·ã—よã†ã¨ã—ã¦ã„る用紙ã®ç¨®é¡ž" #: ../plug-ins/print/gimp_main_window.c:1039 -#, fuzzy msgid "Media type:" msgstr "用紙ã®ç¨®é¡ž:" #: ../plug-ins/print/gimp_main_window.c:1052 msgid "Source (input slot) of media you're printing to" -msgstr "" +msgstr "å°åˆ·ã—よã†ã¨ã—ã¦ã„る用紙ã®çµ¦ç´™å…ƒ" #: ../plug-ins/print/gimp_main_window.c:1055 -#, fuzzy msgid "Media source:" msgstr "給紙方法:" @@ -11682,7 +11196,6 @@ msgstr "プリンタã®ã‚¤ãƒ³ã‚¯ã®ç¨®é¡ž" #: ../plug-ins/print/gimp_main_window.c:1071 -#, fuzzy msgid "Ink type:" msgstr "インクã®ç¨®é¡ž:" @@ -11699,24 +11212,24 @@ msgstr "ç”»åƒã®å€çŽ‡(サイズ)を設定ã™ã‚‹" #: ../plug-ins/print/gimp_main_window.c:1152 -#, fuzzy msgid "Scale by:" -msgstr "æ‹¡å¤§ç¸®å° Z:" +msgstr "拡大縮å°æ–¹æ³•:" #: ../plug-ins/print/gimp_main_window.c:1157 msgid "" "Select whether scaling is measured as percent of available page size or " "number of output dots per inch" msgstr "" +"拡大縮å°ã‚’ã€åˆ©ç”¨å¯èƒ½ãªãƒšãƒ¼ã‚¸ã‚µã‚¤ã‚ºã®ãƒ‘ーセントã¨ã€å‡ºåŠ›ã®ãƒ‰ãƒƒãƒˆæ¯Žã‚¤ãƒ³ãƒã®æ•°ã®" +"ã©ã¡ã‚‰ã§è¡Œãªã†ã‹ã‚’é¸æŠžã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1162 msgid "Percent" msgstr "パーセント" #: ../plug-ins/print/gimp_main_window.c:1169 -#, fuzzy msgid "Scale the print to the size of the page" -msgstr "部分的ãªè‰²ç›¸ã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒ­ãƒ¼ã‚¯ã‚µã‚¤ã‚ºã‚’決ã‚ã‚‹" +msgstr "ページサイズã«åˆã‚ã›ã¦å°åˆ·ã‚’拡大縮å°ã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1175 msgid "PPI" @@ -11724,17 +11237,15 @@ #: ../plug-ins/print/gimp_main_window.c:1181 msgid "Scale the print to the number of dots per inch" -msgstr "" +msgstr "ドット毎インãƒã«åˆã‚ã›ã¦å°åˆ·ã‚’拡大縮å°ã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1203 -#, fuzzy msgid "Set the width of the print" -msgstr "å°–ã‚Šã®ä¸é€æ˜Žåº¦ã‚’調節ã™ã‚‹" +msgstr "å°åˆ·ã®å¹…を設定ã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1216 -#, fuzzy msgid "Set the height of the print" -msgstr "å¼·ã•ã®æŒ‡æ•°ã‚’変更ã™ã‚‹" +msgstr "å°åˆ·ã®é«˜ã•ã‚’設定ã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1237 msgid "Units:" @@ -11742,7 +11253,7 @@ #: ../plug-ins/print/gimp_main_window.c:1242 msgid "Select the base unit of measurement for printing" -msgstr "" +msgstr "å°åˆ·ç”¨ã®åŸºæº–å˜ä½ã‚’é¸æŠžã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1245 msgid "Inch" @@ -11750,7 +11261,7 @@ #: ../plug-ins/print/gimp_main_window.c:1252 msgid "Set the base unit of measurement to inches" -msgstr "" +msgstr "å°åˆ·ç”¨ã®åŸºæº–å˜ä½ã‚’インãƒã«è¨­å®šã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1258 msgid "cm" @@ -11758,7 +11269,7 @@ #: ../plug-ins/print/gimp_main_window.c:1264 msgid "Set the base unit of measurement to centimetres" -msgstr "" +msgstr "å°åˆ·ç”¨ã®åŸºæº–å˜ä½ã‚’センãƒãƒ¡ãƒ¼ãƒˆãƒ«ã«è¨­å®šã—ã¾ã™" #. #. * The "image size" button @@ -11768,11 +11279,12 @@ "Use Original\n" "Image Size" msgstr "" +"å…ƒã®ç”»åƒ\n" +"サイズを使用" #: ../plug-ins/print/gimp_main_window.c:1280 -#, fuzzy msgid "Set the print size to the size of the image" -msgstr "ç¾åœ¨ã®è¨­å®šã‚’特定ã®ãƒ•ã‚¡ã‚¤ãƒ«ã®ä¿å­˜ã—ã¾ã™" +msgstr "å°åˆ·ã‚µã‚¤ã‚ºã‚’ç”»åƒã®ã‚µã‚¤ã‚ºã«è¨­å®šã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1303 msgid "Image / Output Settings" @@ -11787,22 +11299,20 @@ msgstr "å°åˆ·ã•ã‚Œã‚‹ç”»åƒã®ç¨®é¡žã«ã‚ˆã£ã¦å‡ºåŠ›ã‚’最é©åŒ–ã—ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1329 -#, fuzzy msgid "Line art" msgstr "ç·šç”»" #: ../plug-ins/print/gimp_main_window.c:1336 msgid "Fastest and brightest color for text and line art" -msgstr "" +msgstr "テキストや線画ã«é©ã—ãŸã€æœ€ã‚‚速ãã¦æ˜Žã‚‹ã„色" #: ../plug-ins/print/gimp_main_window.c:1343 -#, fuzzy msgid "Solid colors" msgstr "ベタ塗り" #: ../plug-ins/print/gimp_main_window.c:1350 msgid "Best for images dominated by regions of solid color" -msgstr "" +msgstr "ベタ塗り領域ã‹ã‚‰ãªã‚‹ç”»åƒã«æœ€é©åŒ–" #: ../plug-ins/print/gimp_main_window.c:1358 msgid "Photograph" @@ -11812,7 +11322,7 @@ msgid "" "Slowest, but most accurate and smoothest color for continuous tone images " "and photographs" -msgstr "" +msgstr "最もé…ã„ãŒã€éšŽèª¿ã¤ãã®ç”»åƒã‚„写真ã«é©ã—ãŸæœ€ã‚‚正確ã§æ»‘らã‹ãªè‰²" #: ../plug-ins/print/gimp_main_window.c:1389 msgid "Output type:" @@ -11831,7 +11341,6 @@ msgstr "黒インクを使ã£ã¦ç°è‰²ã®å½±ã‚’å°åˆ·" #: ../plug-ins/print/gimp_main_window.c:1424 -#, fuzzy msgid "Black and white" msgstr "白黒" @@ -11843,7 +11352,6 @@ #. * Color adjust button #. #: ../plug-ins/print/gimp_main_window.c:1442 -#, fuzzy msgid "Adjust output..." msgstr "出力ã®èª¿æ•´..." @@ -11851,16 +11359,16 @@ msgid "" "Adjust color balance, brightness, contrast, saturation, and dither algorithm" msgstr "" +"カラーãƒãƒ©ãƒ³ã‚¹ã€æ˜Žã‚‹ã•ã€ã‚³ãƒ³ãƒˆãƒ©ã‚¹ãƒˆã€æ¿ƒåº¦ã€ãƒ‡ã‚£ã‚¶ãƒªãƒ³ã‚°ã‚¢ãƒ«ã‚´ãƒªã‚ºãƒ ã‚’調整ã—" +"ã¾ã™" #: ../plug-ins/print/gimp_main_window.c:1483 -#, fuzzy msgid "Print to File" -msgstr "ファイルã«å‡ºåŠ›?" +msgstr "ファイルã«å‡ºåŠ›" #: ../plug-ins/print/print.c:164 -#, fuzzy msgid "_Print..." -msgstr "å°åˆ·ã—ã¦ã„ã¾ã™..." +msgstr "å°åˆ·(_P)..." #: ../plug-ins/print/print.c:694 ../plug-ins/print/print.c:695 #: ../plug-ins/print/print.c:785 ../plug-ins/print/print.c:1124 @@ -11868,100 +11376,96 @@ msgstr "ファイル" #: ../plug-ins/rcm/rcm.c:106 -#, fuzzy msgid "Colormap _Rotation..." -msgstr "カラーマップ回転" +msgstr "カラーマップ回転(_R)..." #: ../plug-ins/rcm/rcm.c:270 msgid "Rotating the colormap..." msgstr "カラーマップを回転ã—ã¦ã„ã¾ã™..." -#: ../plug-ins/rcm/rcm_dialog.c:119 +#: ../plug-ins/rcm/rcm_dialog.c:122 msgid "Original" msgstr "オリジナル" -#: ../plug-ins/rcm/rcm_dialog.c:133 +#: ../plug-ins/rcm/rcm_dialog.c:140 msgid "Rotated" msgstr "回転" -#: ../plug-ins/rcm/rcm_dialog.c:147 +#: ../plug-ins/rcm/rcm_dialog.c:158 msgid "Continuous update" msgstr "é€æ¬¡æ›´æ–°" -#: ../plug-ins/rcm/rcm_dialog.c:160 +#: ../plug-ins/rcm/rcm_dialog.c:171 msgid "Area:" msgstr "領域:" -#: ../plug-ins/rcm/rcm_dialog.c:164 +#: ../plug-ins/rcm/rcm_dialog.c:175 msgid "Entire Layer" msgstr "レイヤー全体" -#: ../plug-ins/rcm/rcm_dialog.c:166 +#: ../plug-ins/rcm/rcm_dialog.c:177 msgid "Context" msgstr "コンテキスト" #. spinbutton 1 -#: ../plug-ins/rcm/rcm_dialog.c:291 ../plug-ins/rcm/rcm_dialog.c:369 +#: ../plug-ins/rcm/rcm_dialog.c:302 ../plug-ins/rcm/rcm_dialog.c:380 msgid "From" msgstr "始ã‚" #. spinbutton 2 -#: ../plug-ins/rcm/rcm_dialog.c:317 ../plug-ins/rcm/rcm_dialog.c:370 +#: ../plug-ins/rcm/rcm_dialog.c:328 ../plug-ins/rcm/rcm_dialog.c:381 msgid "To" msgstr "終り" #. * Gray: Operation-Mode * -#: ../plug-ins/rcm/rcm_dialog.c:506 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:517 msgid "Gray Mode" -msgstr "カラーモード" +msgstr "グレーモード" #. Gray: Operation-Mode: two radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:515 +#: ../plug-ins/rcm/rcm_dialog.c:526 msgid "Treat as this" msgstr "ã“ã®è‰²ã¨ã—ã¦æ‰±ã†" -#: ../plug-ins/rcm/rcm_dialog.c:527 +#: ../plug-ins/rcm/rcm_dialog.c:538 msgid "Change to this" msgstr "ã“ã®è‰²ã«ã™ã‚‹" #. * Gray: What is gray? * -#: ../plug-ins/rcm/rcm_dialog.c:540 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:551 msgid "Gray Threshold" -msgstr "緑閾値:" +msgstr "グレー閾値" #. * Misc: Used unit selection * -#: ../plug-ins/rcm/rcm_dialog.c:579 ../plug-ins/rcm/rcm_dialog.c:683 +#: ../plug-ins/rcm/rcm_dialog.c:590 ../plug-ins/rcm/rcm_dialog.c:694 msgid "Units" msgstr "å˜ä½" #. Misc: Used unit selection: 3 radio buttons -#: ../plug-ins/rcm/rcm_dialog.c:588 +#: ../plug-ins/rcm/rcm_dialog.c:599 msgid "Radians" msgstr "ラジアン" -#: ../plug-ins/rcm/rcm_dialog.c:600 +#: ../plug-ins/rcm/rcm_dialog.c:611 msgid "Radians/Pi" msgstr "ラジアン/Ï€" -#: ../plug-ins/rcm/rcm_dialog.c:612 +#: ../plug-ins/rcm/rcm_dialog.c:623 msgid "Degrees" msgstr "度" #. Create dialog -#: ../plug-ins/rcm/rcm_dialog.c:645 +#: ../plug-ins/rcm/rcm_dialog.c:656 msgid "Colormap Rotation" msgstr "カラーマップ回転" -#: ../plug-ins/rcm/rcm_dialog.c:677 +#: ../plug-ins/rcm/rcm_dialog.c:688 msgid "Main Options" msgstr "主オプション" -#: ../plug-ins/rcm/rcm_dialog.c:680 -#, fuzzy +#: ../plug-ins/rcm/rcm_dialog.c:691 msgid "Gray Options" -msgstr "一般オプション" +msgstr "グレーオプション" #: ../plug-ins/rcm/rcm_stock.c:35 msgid "Switch to clockwise" @@ -11981,49 +11485,43 @@ #. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); #: ../plug-ins/sel2path/pxl-outline.c:83 -#, fuzzy msgid "Selection to Path..." -msgstr "é¸æŠžé ˜åŸŸã‹ã‚‰ã•ã‚ŒãŸãƒ‘ス" +msgstr "é¸æŠžé ˜åŸŸã‹ã‚‰ãƒ‘ス..." #: ../plug-ins/sel2path/sel2path.c:185 msgid "No selection to convert" msgstr "変æ›ã™ã‚‹é¸æŠžé ˜åŸŸãŒã‚ã‚Šã¾ã›ã‚“" #: ../plug-ins/sel2path/sel2path.c:302 -#, fuzzy msgid "Selection To Path Advanced Settings" -msgstr "Sel2Path 詳細設定" +msgstr "é¸æŠžé ˜åŸŸã‹ã‚‰ãƒ‘スã®è©³ç´°è¨­å®š" #: ../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 -#, fuzzy, c-format +#, c-format msgid "Could not open '%s' for writing." -msgstr "'%s' を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“" +msgstr "'%s' を書ãè¾¼ã¿ç”¨ã«é–‹ã‘ã¾ã›ã‚“。" #: ../plug-ins/sgi/sgi.c:622 msgid "Save as SGI" 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)" @@ -12033,59 +11531,57 @@ #: ../plug-ins/twain/twain.c:313 msgid "TWAIN (Dump)..." -msgstr "" +msgstr "TWAIN (書ã出ã—)..." #: ../plug-ins/twain/twain.c:332 msgid "TWAIN (Read)..." -msgstr "" +msgstr "TWAIN (読ã¿è¾¼ã¿)..." #: ../plug-ins/twain/twain.c:352 msgid "_TWAIN..." -msgstr "" +msgstr "_TWAIN..." #. Initialize our progress dialog #: ../plug-ins/twain/twain.c:489 -#, fuzzy msgid "Transferring TWAIN data..." -msgstr "TWAIN データを転é€ã—ã¦ã„ã¾ã™" +msgstr "TWAIN データを転é€ã—ã¦ã„ã¾ã™..." #: ../plug-ins/winicon/icodialog.c:89 msgid "1 bpp, 1-bit alpha, 2-slot palette" -msgstr "" +msgstr "1 bpp〠1 ビットアルファ〠2 スロットパレット" #: ../plug-ins/winicon/icodialog.c:90 msgid "4 bpp, 1-bit alpha, 16-slot palette" -msgstr "" +msgstr "4 bpp〠1 ビットアルファ〠16 スロットパレット" #: ../plug-ins/winicon/icodialog.c:91 msgid "8 bpp, 1-bit alpha, 256-slot palette" -msgstr "" +msgstr "8 bpp〠1 ビットアルファ〠256 スロットパレット" #: ../plug-ins/winicon/icodialog.c:92 msgid "32 bpp, 8-bit alpha, no palette" -msgstr "" +msgstr "32 bpp〠8 ビットアルファã€ãƒ‘レットãªã—" #: ../plug-ins/winicon/icodialog.c:117 msgid "GIMP Windows Icon Plugin" -msgstr "" +msgstr "GIMP Windows プラグイン" #: ../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 "" +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" @@ -12100,7 +11596,6 @@ msgstr "å–ã‚Šè¾¼ã¿ã¯" #: ../plug-ins/winsnap/winsnap.c:919 -#, fuzzy msgid "Seconds delay" msgstr "秒後" @@ -12114,7 +11609,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 @@ -12151,7 +11646,6 @@ msgstr "XJT å½¢å¼ã§ä¿å­˜" #: ../plug-ins/xjt/xjt.c:870 -#, fuzzy msgid "Clear transparent" msgstr "é€æ˜Žã‚¯ãƒªã‚¢" @@ -12164,19 +11658,22 @@ msgstr "スムージング:" #: ../plug-ins/xjt/xjt.c:1693 ../plug-ins/xjt/xjt.c:3323 -#, fuzzy, c-format +#, c-format msgid "Could not create working folder '%s': %s" -msgstr "作業ディレクトリ %s ãŒä½œã‚Œã¾ã›ã‚“" +msgstr "作業ディレクトリ %s ãŒä½œã‚Œã¾ã›ã‚“: %s" #: ../plug-ins/xjt/xjt.c:3189 -#, fuzzy, c-format +#, c-format msgid "Error: Could not read XJT property file '%s'." -msgstr "エラー: XJT プロパティファイル %s ãŒèª­ã‚ã¾ã›ã‚“" +msgstr "エラー: XJT プロパティファイル %s ãŒèª­ã‚ã¾ã›ã‚“。" #: ../plug-ins/xjt/xjt.c:3195 -#, fuzzy, c-format +#, c-format msgid "Error: XJT property file '%s' is empty." -msgstr "エラー: XJT プロパティファイル %s ãŒç©ºã§ã™" +msgstr "エラー: XJT プロパティファイル %s ãŒç©ºã§ã™ã€‚" + +#~ msgid "Convert the image to RGB first!" +#~ msgstr "ç”»åƒã‚’ RGB ã«å¤‰æ›ã—ã¦ã‹ã‚‰ã«ã—ã¦ãã ã•ã„!" #~ msgid "Before and After" #~ msgstr "使用å‰ã¨ä½¿ç”¨å¾Œ" @@ -12250,11 +11747,11 @@ #, fuzzy #~ msgid "/Undo" -#~ msgstr "アンドゥ" +#~ msgstr "å–り消ã—" #, fuzzy #~ msgid "/Redo" -#~ msgstr "リドゥ" +#~ msgstr "ã‚„ã‚Šç›´ã—" #, fuzzy #~ msgid "/Select All" @@ -12296,10 +11793,10 @@ #~ "installation is not complete. Ensure that your installation is complete " #~ "before reporting this error as a bug." #~ msgstr "" -#~ "è¦æ±‚ã—ãŸæ–‡æ›¸ãŒä¸Šã«ç¤ºã—ãŸGIMP ヘルプパスã‹ã‚‰è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸ.ã“ã®è©±é¡Œã®" -#~ "ãŸã‚ã®ãƒ˜ãƒ«ãƒ—ãŒã¾ã æ›¸ã‹ã‚Œã¦ã„ãªã„ã‹, インストールãŒä¸å®Œå…¨ã§ã‚ã‚‹å¯èƒ½æ€§ãŒã‚ã‚Š" -#~ "ã¾ã™.ã“れをãƒã‚°ã¨ã—ã¦å ±å‘Šã™ã‚‹å‰ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãŒå®Œå…¨ã§ã‚ã‚‹ã‹æ…Žé‡ã«èª¿ã¹ã¦ä¸‹" -#~ "ã•ã„." +#~ "è¦æ±‚ã—ãŸæ–‡æ›¸ãŒä¸Šã«ç¤ºã—ãŸGIMP ヘルプパスã‹ã‚‰è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ã“ã®è©±é¡Œ" +#~ "ã®ãŸã‚ã®ãƒ˜ãƒ«ãƒ—ãŒã¾ã æ›¸ã‹ã‚Œã¦ã„ãªã„ã‹ã€ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãŒä¸å®Œå…¨ã§ã‚ã‚‹å¯èƒ½æ€§ãŒã‚" +#~ "ã‚Šã¾ã™ã€‚ã“れをãƒã‚°ã¨ã—ã¦å ±å‘Šã™ã‚‹å‰ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ãŒå®Œå…¨ã§ã‚ã‚‹ã‹æ…Žé‡ã«èª¿ã¹ã¦" +#~ "下ã•ã„。" #, fuzzy #~ msgid "/Filters/Render" @@ -12567,9 +12064,9 @@ #~ "paints with currently selected brush with a pattern. Only applies to " #~ "circles/ellipses if the \"Approx. Circles/Ellipses\" toggle is set." #~ msgstr "" -#~ "絵筆やエアブラシ等ã§ç”»åƒã«å¯¾ã—ã¦æç”»ã—ã¾ã™. パターンをé¸æŠžã™ã‚‹ã¨ç¾åœ¨é¸æŠžã•" -#~ "ã‚Œã¦ã„るブラシã¨ãƒ‘ターンã§æç”»ã—ã¾ã™. 円/楕円を近似ã™ã‚‹ãƒˆã‚°ãƒ«ãŒè¨­å®šã•ã‚Œã¦" -#~ "ã„る時ã ã‘円/楕円ã«ã‚‚é©ç”¨ã•ã‚Œã¾ã™." +#~ "絵筆やエアブラシ等ã§ç”»åƒã«å¯¾ã—ã¦æç”»ã—ã¾ã™ã€‚パターンをé¸æŠžã™ã‚‹ã¨ç¾åœ¨é¸æŠžã•" +#~ "ã‚Œã¦ã„るブラシã¨ãƒ‘ターンã§æç”»ã—ã¾ã™ã€‚円/楕円を近似ã™ã‚‹ãƒˆã‚°ãƒ«ãŒè¨­å®šã•ã‚Œã¦" +#~ "ã„る時ã ã‘円/楕円ã«ã‚‚é©ç”¨ã•ã‚Œã¾ã™ã€‚" #~ msgid "New" #~ msgstr "æ–°è¦" @@ -12595,7 +12092,7 @@ #~ "Draw type. Either a brush or a selection. See brush page or selection " #~ "page for more options." #~ msgstr "" -#~ "æ画種. ブラシã‹é¸æŠžé ˜åŸŸã®ã©ã¡ã‚‰ã‹. オプションã«ã¤ã„ã¦ã¯ãƒ–ラシページã‹é¸æŠž" +#~ "æ画種。ブラシã‹é¸æŠžé ˜åŸŸã®ã©ã¡ã‚‰ã‹ã€‚オプションã«ã¤ã„ã¦ã¯ãƒ–ラシページã‹é¸æŠž" #~ "領域ページを見ã¦ä¸‹ã•ã„" #~ msgid "Using:" @@ -12623,8 +12120,8 @@ #~ "Approx. circles & ellipses using lines. Allows the use of brush fading " #~ "with these types of objects." #~ msgstr "" -#~ "円ã¨æ¥•å††ã‚’ç›´ç·šã§è¿‘ä¼¼ã—ã¾ã™. ã“れらã®ã‚ªãƒ–ジェクトã«å¯¾ã—ã¦ãƒ–ラシã§æç”»ã™ã‚‹ã‚ˆ" -#~ "ã†ã«ãªã‚Šã¾ã™." +#~ "円ã¨æ¥•å††ã‚’ç›´ç·šã§è¿‘ä¼¼ã—ã¾ã™ã€‚ã“れらã®ã‚ªãƒ–ジェクトã«å¯¾ã—ã¦ãƒ–ラシã§æç”»ã™ã‚‹ã‚ˆ" +#~ "ã†ã«ãªã‚Šã¾ã™ã€‚" #~ msgid "Gfig Brush Selection" #~ msgstr "Gfig ブラシé¸æŠž" @@ -12718,7 +12215,7 @@ #, fuzzy #~ msgid "%d unsaved Gfig objects. Continue with exiting?" #~ msgstr "" -#~ "未ä¿å­˜ã® Gfig オブジェクト㌠%d 個ã‚ã‚Šã¾ã™.\n" +#~ "未ä¿å­˜ã® Gfig オブジェクト㌠%d 個ã‚ã‚Šã¾ã™ã€‚\n" #~ "終了ã—ã¾ã™ã‹?" #, fuzzy @@ -12795,7 +12292,7 @@ #~ msgstr "乱数度(_A) %:" #~ msgid "You must specify either horizontal or vertical (or both)" -#~ msgstr "æ°´å¹³ã¾ãŸã¯é‰›ç›´ã®ã©ã¡ã‚‰ã‹ã¯ã‹ãªã‚‰ãšæŒ‡å®šã—ã¦ãã ã•ã„." +#~ msgstr "æ°´å¹³ã¾ãŸã¯é‰›ç›´ã®ã©ã¡ã‚‰ã‹ã¯ã‹ãªã‚‰ãšæŒ‡å®šã—ã¦ãã ã•ã„。" #~ msgid "Blur Horizontally" #~ msgstr "水平方å‘ã«ã¼ã‹ã™" @@ -12893,7 +12390,7 @@ #, fuzzy #~ msgid "Cannot save to a folder." -#~ msgstr "ä¿å­˜: ディレクトリã«ã¯ä¿å­˜ã§ãã¾ã›ã‚“." +#~ msgstr "ä¿å­˜: ディレクトリã«ã¯ä¿å­˜ã§ãã¾ã›ã‚“。" #, fuzzy #~ msgid "/Filters/Render/_Fractal Explorer..." @@ -12937,30 +12434,30 @@ #~ msgstr "Cos(_I)" #~ msgid "Use sine-function for red component." -#~ msgstr "赤ã®è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹." +#~ msgstr "赤ã®è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹ã€‚" #~ msgid "Use cosine-function for red component." -#~ msgstr "赤ã®è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹." +#~ msgstr "赤ã®è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹ã€‚" #~ msgid "" #~ "Red channel: use linear mapping instead of any trigonometrical function" #~ msgstr "赤ãƒãƒ£ãƒ³ãƒãƒ«: 三角関数ã§ã¯ãªã線形マッピングを使用ã™ã‚‹" #~ msgid "Use sine-function for green component." -#~ msgstr "ç·‘ã®è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹." +#~ msgstr "ç·‘ã®è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹ã€‚" #~ msgid "Use cosine-function for green component." -#~ msgstr "ç·‘ã®è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹." +#~ msgstr "ç·‘ã®è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹ã€‚" #~ msgid "" #~ "Green channel: use linear mapping instead of any trigonometrical function" #~ msgstr "ç·‘ãƒãƒ£ãƒ³ãƒãƒ«: 三角関数ã§ã¯ãªã線形マッピングを使用ã™ã‚‹" #~ msgid "Use sine-function for blue component." -#~ msgstr "é’ã®è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹." +#~ msgstr "é’ã®è¦ç´ ã«å¯¾ã—㦠Sin 関数を使用ã™ã‚‹ã€‚" #~ msgid "Use cosine-function for blue component." -#~ msgstr "é’ã®è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹." +#~ msgstr "é’ã®è¦ç´ ã«å¯¾ã—㦠Cos 関数を使用ã™ã‚‹ã€‚" #~ msgid "" #~ "Blue channel: use linear mapping instead of any trigonometrical function" @@ -13483,7 +12980,7 @@ #~ "for inclusion into the next release!\n" #~ msgstr "" #~ "\n" -#~ "ã‚‚ã—何ã‹ç´ æ•µãªãƒ—リセットを作ã£ãŸã®ãªã‚‰,\n" +#~ "ã‚‚ã—何ã‹ç´ æ•µãªãƒ—リセットを作ã£ãŸã®ãªã‚‰ã€\n" #~ "(ã¾ãŸã¯ãƒ–ラシã¨ãã®æ質ã®ãŸã‚ã®ç´™ãªã©ã‚’)\n" #~ "ãŠæ°—軽ã«ç§ã¾ã§ã©ã†ãž \n" #~ "次ã®ãƒªãƒªãƒ¼ã‚¹ã«å«ã¾ã‚Œã‚‹ã‹ã‚‚ã­!\n" @@ -13565,7 +13062,7 @@ #~ msgstr "ä¸æ˜Žãªç”»åƒç¨®ã‚„é€æ˜Žåº¦ã‚’æŒã£ãŸç”»åƒã«å¯¾ã—ã¦ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“" #~ msgid "Not enough memory to allocate buffers for optimization.\n" -#~ msgstr "最é©åŒ–ã«å¿…è¦ãªãƒ¡ãƒ¢ãƒªãŒç¢ºä¿ã§ãã¾ã›ã‚“.\n" +#~ msgstr "最é©åŒ–ã«å¿…è¦ãªãƒ¡ãƒ¢ãƒªãŒç¢ºä¿ã§ãã¾ã›ã‚“。\n" #, fuzzy #~ msgid "" @@ -13576,7 +13073,7 @@ #~ "%s" #~ msgid "gauss_iir: you must specify either horizontal or vertical (or both)" -#~ msgstr "gauss_iir: 横ã¾ãŸã¯ç¸¦ã®ã©ã¡ã‚‰ã‹ã¯ã‹ãªã‚‰ãšæŒ‡å®šã—ã¦ãã ã•ã„." +#~ msgstr "gauss_iir: 横ã¾ãŸã¯ç¸¦ã®ã©ã¡ã‚‰ã‹ã¯ã‹ãªã‚‰ãšæŒ‡å®šã—ã¦ãã ã•ã„。" #~ msgid "Width: " #~ msgstr "å¹…: " @@ -13599,7 +13096,7 @@ #~ "PNG error. File corrupted?" #~ msgstr "" #~ "'%s':\n" -#~ "PNG エラー. ファイルãŒå£Šã‚Œã¦ã„るよã†ã§ã™." +#~ "PNG エラー。ファイルãŒå£Šã‚Œã¦ã„るよã†ã§ã™ã€‚" #~ msgid "" #~ "'%s':\n" @@ -13613,7 +13110,7 @@ #~ "PNG error. Couldn't save image" #~ msgstr "" #~ "'%s':\n" -#~ "PNG エラー. ç”»åƒã‚’ä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸ" +#~ "PNG エラー。画åƒã‚’ä¿å­˜ã§ãã¾ã›ã‚“ã§ã—ãŸ" #~ msgid "Can't interpret file" #~ msgstr "ファイルãŒè§£é‡ˆã§ãã¾ã›ã‚“" @@ -13652,8 +13149,8 @@ #~ "Cannot save file '%s'.\n" #~ "Check the path and permissions." #~ msgstr "" -#~ "ファイル '%s' ã‚’ä¿å­˜ã§ãã¾ã›ã‚“.\n" -#~ "パスã¨ã‚¢ã‚¯ã‚»ã‚¹æ¨©é™ã‚’確èªã—ã¦ãã ã•ã„." +#~ "ファイル '%s' ã‚’ä¿å­˜ã§ãã¾ã›ã‚“。\n" +#~ "パスã¨ã‚¢ã‚¯ã‚»ã‚¹æ¨©é™ã‚’確èªã—ã¦ãã ã•ã„。" #~ msgid "Load failed" #~ msgstr "読ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—ãŸ" @@ -13680,7 +13177,7 @@ #~ msgstr "%s ãŒé–‹ã‘ã¾ã›ã‚“" #~ msgid "Align Visible Layers: there are too few layers." -#~ msgstr "å¯è¦–レイヤーã®æ•´åˆ—: レイヤー数ãŒå°‘ãªã™ãŽã¾ã™." +#~ msgstr "å¯è¦–レイヤーã®æ•´åˆ—: レイヤー数ãŒå°‘ãªã™ãŽã¾ã™ã€‚" #~ msgid "** From GRADIENT **" #~ msgstr "** グラデーションã‹ã‚‰ **" @@ -13740,23 +13237,23 @@ #~ "Couldn't find GIMP_HELP_ROOT html directory.\n" #~ "(%s)" #~ msgstr "" -#~ "GIMP ヘルプブラウザエラー.\n" +#~ "GIMP ヘルプブラウザエラー。\n" #~ "\n" -#~ "GIMP_HELP_ROOT HTML ディレクトリãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.\n" +#~ "GIMP_HELP_ROOT HTML ディレクトリãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。\n" #~ "(%s)" #~ msgid "/Select/To Path" #~ msgstr "/é¸æŠž/パスã«å¤‰æ›" #~ msgid "Your comment string is too long." -#~ msgstr "コメント文ãŒé•·ã™ãŽã¾ã™." +#~ msgstr "コメント文ãŒé•·ã™ãŽã¾ã™ã€‚" #, fuzzy #~ msgid "Error reading GFlare folder '%s'" #~ msgstr "GFlare ディレクトリ \"%s\" 読ã¿è¾¼ã¿ä¸­ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ" #~ msgid "Could not save." -#~ msgstr "ä¿å­˜ã§ãã¾ã›ã‚“." +#~ msgstr "ä¿å­˜ã§ãã¾ã›ã‚“。" #~ msgid "Failed to write file\n" #~ msgstr "ファイル書ãè¾¼ã¿å¤±æ•—\n" @@ -13807,7 +13304,7 @@ #~ "ファイルãŒä½œæˆã§ãã¾ã›ã‚“ã§ã—ãŸ" #~ msgid "PNM: Can't open file %s." -#~ msgstr "PNM: %s ãŒé–‹ã‘ã¾ã›ã‚“." +#~ msgstr "PNM: %s ãŒé–‹ã‘ã¾ã›ã‚“。" #~ msgid "PS: can't open file for reading" #~ msgstr "PS: 読ã¿è¾¼ã¿ãƒ•ã‚¡ã‚¤ãƒ«ãŒé–‹ã‘ãªã„" @@ -13925,7 +13422,7 @@ #~ msgstr "" #~ "fractalexplorer-path ㌠gimprc 中ã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“:\n" #~ "(fractalexplorer-path \"%s\")\n" -#~ "ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ã¿ã¦ä¸‹ã•ã„." +#~ "ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ã¿ã¦ä¸‹ã•ã„。" #, fuzzy #~ msgid "" @@ -13993,7 +13490,7 @@ #~ msgstr "" #~ "gflare-path ㌠gimprc 中ã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“:\n" #~ "(gflare-path \"%s\")\n" -#~ "ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ä¸‹ã•ã„." +#~ "ã®ã‚ˆã†ã« %s ファイルã«è¿½åŠ ã—ã¦ä¸‹ã•ã„。" #, fuzzy #~ msgid "gflare-path misconfigured - the following folders were not found:" @@ -14006,7 +13503,7 @@ #~ "Image size has changed.\n" #~ "Resize Area's?" #~ msgstr "" -#~ "ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸ.\n" +#~ "ç”»åƒã‚µã‚¤ã‚ºãŒå¤‰æ›´ã•ã‚Œã¾ã—ãŸã€‚\n" #~ "領域ã®å¤§ãã•ã‚’変更ã—ã¾ã™ã‹?" #, fuzzy @@ -14020,13 +13517,13 @@ #~ msgstr "å˜ä½ã‚’ä¿å­˜ã—ãªã„" #~ msgid "Don't save the currently selected unit before GIMP exits." -#~ msgstr "GIMP ãŒçµ‚了ã™ã‚‹ã¾ã§ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’ä¿å­˜ã—ãªã„." +#~ msgstr "GIMP ãŒçµ‚了ã™ã‚‹ã¾ã§ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’ä¿å­˜ã—ãªã„。" #~ msgid "Save Unit" #~ msgstr "å˜ä½ã‚’ä¿å­˜" #~ msgid "Save the currently selected unit before GIMP exits." -#~ msgstr "GIMP 終了å‰ã«ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’ä¿å­˜ã™ã‚‹." +#~ msgstr "GIMP 終了å‰ã«ç¾åœ¨é¸æŠžä¸­ã®å˜ä½ã‚’ä¿å­˜ã™ã‚‹ã€‚" #~ msgid "Save as..." #~ msgstr "別åã§ä¿å­˜..." @@ -14050,7 +13547,7 @@ #~ msgstr "é©ç”¨ã—ã¦ç·¨é›†çµ‚了ã™ã‚‹" #~ msgid "Apply, but stay inside the editor" -#~ msgstr "é©ç”¨ã™ã‚‹ãŒ, 編集を続ã‘ã‚‹" +#~ msgstr "é©ç”¨ã™ã‚‹ãŒã€ç·¨é›†ã‚’続ã‘ã‚‹" #~ msgid "Cancel all changes and exit" #~ msgstr "å…¨ã¦ã®å¤‰æ›´ã‚’破棄ã—ã¦çµ‚了ã™ã‚‹" @@ -14087,7 +13584,7 @@ #~ msgid "" #~ "PNG: Couldn't simply reduce colors further.\n" #~ "Saving as opaque.\n" -#~ msgstr "GIF: ã“れ以上å˜ç´”ã«ã¯æ¸›è‰²ã§ãã¾ã›ã‚“. ä¸é€æ˜Žã¨ã—ã¦ä¿å­˜ã—ã¾ã™.\n" +#~ msgstr "GIF: ã“れ以上å˜ç´”ã«ã¯æ¸›è‰²ã§ãã¾ã›ã‚“。ä¸é€æ˜Žã¨ã—ã¦ä¿å­˜ã—ã¾ã™ã€‚\n" #~ msgid "not valid GFlare file: %s" #~ msgstr "ä¸æ­£ãª Gフレア ファイルã§ã™: %s" @@ -14100,10 +13597,10 @@ #~ msgstr "ç”»åƒãƒ—レビュー" #~ msgid "Undo Zoom" -#~ msgstr "拡大アンドゥ" +#~ msgstr "拡大å–り消ã—" #~ msgid "Redo Zoom" -#~ msgstr "拡大リドゥ" +#~ msgstr "拡大やり直ã—" #~ msgid "Step In" #~ msgstr "拡大" @@ -14194,7 +13691,7 @@ #~ msgstr "gimp_image_get_selection 失敗" #~ msgid "Internal error. Selection bpp > 1" -#~ msgstr "内部エラー. é¸æŠžé ˜åŸŸã® bpp > 1" +#~ msgstr "内部エラー。é¸æŠžé ˜åŸŸã® bpp > 1" #~ msgid "Repeat:" #~ msgstr "ç¹°ã‚Šè¿”ã—:" @@ -14213,7 +13710,7 @@ #~ msgstr "鉛直:" #~ msgid "Wind Strength must be greater than 0." -#~ msgstr "風ã®å¼·ã•ã¯ 0 より大ãããªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“." +#~ msgstr "風ã®å¼·ã•ã¯ 0 より大ãããªã‘ã‚Œã°ã„ã‘ã¾ã›ã‚“。" #~ msgid "DB Browser (init...)" #~ msgstr "DB ブラウザ (åˆæœŸåŒ–ã—ã¦ã„ã¾ã™...)" @@ -14231,9 +13728,9 @@ #~ msgstr "" #~ "ディレクトリãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“

%s

ディレクトリ

%s

ã«å¤‰" -#~ "æ›´ã§ãã¾ã›ã‚“.

ã“ã‚Œã¯ãƒ•ã‚¡ã‚¤ãƒ«

%s

ã«ã‚¢ã‚¯ã‚»ã‚¹ã—よã†ã¨" +#~ "æ›´ã§ãã¾ã›ã‚“

ã“ã‚Œã¯ãƒ•ã‚¡ã‚¤ãƒ«

%s

ã«ã‚¢ã‚¯ã‚»ã‚¹ã—よã†ã¨" #~ "ã—ã¦ã„る最中ã«ç™ºç”Ÿã—ã¾ã—ãŸ

ã“ã®è©±é¡Œã®ãŸã‚ã®ãƒ˜ãƒ«ãƒ—ãŒ" -#~ "ã¾ã æ›¸ã‹ã‚Œã¦ã„ãªã„ã‹ã‚ãªãŸã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã®ã©ã“ã‹ãŒé–“é•ã£ã¦ã„ã¾ã™. ã‚ãªãŸãŒ" +#~ "ã¾ã æ›¸ã‹ã‚Œã¦ã„ãªã„ã‹ã‚ãªãŸã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã®ã©ã“ã‹ãŒé–“é•ã£ã¦ã„ã¾ã™ã€‚ã‚ãªãŸãŒ" #~ "ã“れをãƒã‚°ã¨ã—ã¦å ±å‘Šã™ã‚‹å‰ã«æ…Žé‡ã«èª¿ã¹ã¦ä¸‹ã•ã„" #~ msgid "" @@ -14242,9 +13739,9 @@ #~ "Couldn't find my root html directory.\n" #~ "(%s)" #~ msgstr "" -#~ "GIMP ヘルプブラウザエラー.\n" +#~ "GIMP ヘルプブラウザエラー。\n" #~ "\n" -#~ "ルート HTML ディレクトリãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.\n" +#~ "ルート HTML ディレクトリãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。\n" #~ "(%s)" #~ msgid "" @@ -14379,10 +13876,10 @@ #~ "and written to seperate diskfiles.\n" #~ "Audiotracks in the videofile are ignored." #~ msgstr "" -#~ "読ã¿è¾¼ã‚€ MPEG1 動画ファイルã®åå‰ã§ã™.\n" +#~ "読ã¿è¾¼ã‚€ MPEG1 動画ファイルã®åå‰ã§ã™ã€‚\n" #~ "動画ファイルã‹ã‚‰å„フレームをå–り出ã—ã¦\n" -#~ "個々ã«ãƒ‡ã‚£ã‚¹ã‚¯ä¸Šã®ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã出ã—ã¾ã™.\n" -#~ "動画ファイル中ã®éŸ³å£°ãƒˆãƒ©ãƒƒã‚¯ã¯ç„¡è¦–ã•ã‚Œã¾ã™." +#~ "個々ã«ãƒ‡ã‚£ã‚¹ã‚¯ä¸Šã®ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã出ã—ã¾ã™ã€‚\n" +#~ "動画ファイル中ã®éŸ³å£°ãƒˆãƒ©ãƒƒã‚¯ã¯ç„¡è¦–ã•ã‚Œã¾ã™ã€‚" #~ msgid "Framenumber of 1st frame to extract" #~ msgstr "最åˆã«å–り出ã™ãƒ•ãƒ¬ãƒ¼ãƒ ç•ªå·" @@ -14397,7 +13894,7 @@ #~ "Basename for the AnimFrames to write on disk\n" #~ "(framenumber and .xcf is added)" #~ msgstr "" -#~ "ディスクã«æ›¸ã動画フレーム㮠Basename.\n" +#~ "ディスクã«æ›¸ã動画フレーム㮠Basename\n" #~ "(フレーム番å·ã¨ .xcf ãŒä»˜ã‘られã¾ã™)" #~ msgid "Open the 1st one of the extracted frames" @@ -14409,8 +13906,8 @@ #~ "Before you proceed, you should save all open images." #~ msgstr "" #~ "\n" -#~ "警告: MPEG1 動画以外ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’分割ã—ãªã„ã§ä¸‹ã•ã„.\n" -#~ "続行ã™ã‚‹å‰ã«ä½œæ¥­ä¸­ã®å…¨ã¦ã®ç”»åƒã‚’ä¿å­˜ã—ã¦ä¸‹ã•ã„." +#~ "警告: MPEG1 動画以外ã®ãƒ•ã‚¡ã‚¤ãƒ«ã‚’分割ã—ãªã„ã§ä¸‹ã•ã„。\n" +#~ "続行ã™ã‚‹å‰ã«ä½œæ¥­ä¸­ã®å…¨ã¦ã®ç”»åƒã‚’ä¿å­˜ã—ã¦ä¸‹ã•ã„。" #~ msgid "Split MPEG1 Video to Frames" #~ msgstr "MPEG1 動画をフレームã«åˆ†å‰²" @@ -14459,23 +13956,23 @@ #~ "and written to seprate diskfiles.\n" #~ "xanim exporting edition is required." #~ msgstr "" -#~ "xanim ã§èª­ã¿è¾¼ã‚€å‹•ç”»ãƒ•ã‚¡ã‚¤ãƒ«åã§ã™.\n" -#~ "å„フレームを xanim を用ã„ã¦èª­ã¿ã ã—,\n" -#~ "ãã‚Œãžã‚Œåˆ¥ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã出ã—ã¾ã™.\n" -#~ "xanim ã¯å›½éš›ç‰ˆã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“." +#~ "xanim ã§èª­ã¿è¾¼ã‚€å‹•ç”»ãƒ•ã‚¡ã‚¤ãƒ«åã§ã™ã€‚\n" +#~ "å„フレームを xanim を用ã„ã¦èª­ã¿ã ã—ã€\n" +#~ "ãã‚Œãžã‚Œåˆ¥ã®ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã出ã—ã¾ã™ã€‚\n" +#~ "xanim ã¯å›½éš›ç‰ˆã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" #~ msgid "" #~ "Basename for the AnimFrames to write on disk\n" #~ "(framenumber and extension is added)" #~ msgstr "" -#~ "ディスクã«æ›¸ã出ã™å‹•ç”»ãƒ•ãƒ¬ãƒ¼ãƒ ã® Basename ã§ã™.\n" +#~ "ディスクã«æ›¸ã出ã™å‹•ç”»ãƒ•ãƒ¬ãƒ¼ãƒ ã® Basename ã§ã™ã€‚\n" #~ "(フレーム番å·ã¨æ‹¡å¼µå­ãŒä»˜ã‘加ãˆã‚‰ã‚Œã¾ã™)" #~ msgid "" #~ "Fileformat for the extracted AnimFrames\n" #~ "(xcf is extracted as ppm and converted to xcf)" #~ msgstr "" -#~ "抽出ã™ã‚‹å‹•ç”»ã®ãƒ•ã‚¡ã‚¤ãƒ«å½¢å¼ã§ã™.\n" +#~ "抽出ã™ã‚‹å‹•ç”»ã®ãƒ•ã‚¡ã‚¤ãƒ«å½¢å¼ã§ã™ã€‚\n" #~ "(xcf を指定ã™ã‚‹ã¨ ppm ã§æŠ½å‡ºã—㦠xcf ã«å¤‰æ›ã—ã¾ã™)" #~ msgid "Extract Frames" @@ -14512,7 +14009,7 @@ #~ "(out of the specified range) while xanim is still running" #~ msgstr "" #~ "xanim ã‚’éžåŒæœŸå®Ÿè¡Œã— xanim ãŒå®Ÿè¡Œä¸­ã§ã‚‚指定ã—ãŸ\n" -#~ "範囲外ã®ä¸è¦ãªãƒ•ãƒ¬ãƒ¼ãƒ ã‚’削除ã™ã‚‹." +#~ "範囲外ã®ä¸è¦ãªãƒ•ãƒ¬ãƒ¼ãƒ ã‚’削除ã™ã‚‹ã€‚" #~ msgid "" #~ "\n" @@ -14520,8 +14017,8 @@ #~ "Most of the frames (type P and B) will be skipped." #~ msgstr "" #~ "\n" -#~ "警告: xanim 2.80 ã¯é™å®šã•ã‚ŒãŸ MPEG サãƒãƒ¼ãƒˆã—ã‹è¡Œã„ã¾ã›ã‚“.\n" -#~ "P ã‚„ B タイプã®ãƒ•ãƒ¬ãƒ¼ãƒ ã¯ç„¡è¦–ã•ã‚Œã¾ã™." +#~ "警告: xanim 2.80 ã¯é™å®šã•ã‚ŒãŸ MPEG サãƒãƒ¼ãƒˆã—ã‹è¡Œã„ã¾ã›ã‚“。\n" +#~ "P ã‚„ B タイプã®ãƒ•ãƒ¬ãƒ¼ãƒ ã¯ç„¡è¦–ã•ã‚Œã¾ã™ã€‚" #~ msgid "Split any Xanim readable Video to Frames" #~ msgstr "Xanim ã§èª­ã‚る動画ファイルをフレームã«åˆ†å‰²ã™ã‚‹" @@ -14532,11 +14029,11 @@ #~ "maybe xanim has failed or was cancelled" #~ msgstr "" #~ "抽出ã—ãŸãƒ•ãƒ¬ãƒ¼ãƒ  %s\n" -#~ "ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“.\n" +#~ "ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“。\n" #~ "xanim ãŒè»¢ã‚“ã ã‹ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚ŒãŸå¯èƒ½æ€§ãŒã‚ã‚Šã¾ã™" #~ msgid "frames are not extracted, because overwrite of %s was cancelled" -#~ msgstr "%s ã®ä¸Šæ›¸ããŒã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚ŒãŸãŸã‚, フレームã¯æŠ½å‡ºã•ã‚Œã¾ã›ã‚“ã§ã—ãŸ." +#~ msgstr "%s ã®ä¸Šæ›¸ããŒã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚ŒãŸãŸã‚ã€ãƒ•ãƒ¬ãƒ¼ãƒ ã¯æŠ½å‡ºã•ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚" #~ msgid "failed to overwrite %s (check permissions ?)" #~ msgstr "%s ã®ä¸Šæ›¸ã失敗 (許å¯ã•ã‚Œã¦ã„ã¾ã™ã‹?)" @@ -14555,14 +14052,14 @@ #~ "does not support the exporting options Ea, Ee, Eq" #~ msgstr "" #~ "ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ ã® xanim ã§ã‚ã‚‹ \"%s\" ã¯\n" -#~ "エクスãƒãƒ¼ãƒˆã‚ªãƒ—ション Ea, Ee, Eq ãŒä½¿ãˆãªã„よã†ã§ã™." +#~ "エクスãƒãƒ¼ãƒˆã‚ªãƒ—ション Ea, Ee, Eq ãŒä½¿ãˆãªã„よã†ã§ã™ã€‚" #~ msgid "" #~ "The xanim program on your system \"%s\"\n" #~ "does not support exporting of single frames" #~ msgstr "" #~ "ã‚ãªãŸã®ã‚·ã‚¹ãƒ†ãƒ ã® xanim ã§ã‚ã‚‹ \"%s\" ã¯\n" -#~ "å˜ä¸€ãƒ•ãƒ¬ãƒ¼ãƒ ã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãŒã§ããªã„よã†ã§ã™." +#~ "å˜ä¸€ãƒ•ãƒ¬ãƒ¼ãƒ ã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆãŒã§ããªã„よã†ã§ã™ã€‚" #~ msgid "videofile %s not existent or empty\n" #~ msgstr "動画ファイル %s ã¯å­˜åœ¨ã—ãªã„ã‹ç©ºã®ã‚ˆã†ã§ã™\n" @@ -14588,8 +14085,8 @@ #~ "can't find any extracted frames,\n" #~ "xanim has failed or was cancelled" #~ msgstr "" -#~ "抽出ã—ãŸãƒ•ãƒ¬ãƒ¼ãƒ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“,\n" -#~ "xanim ã®å®Ÿè¡Œã«å¤±æ•—ã—ãŸã‹ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚Œã¾ã—ãŸ." +#~ "抽出ã—ãŸãƒ•ãƒ¬ãƒ¼ãƒ ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã€\n" +#~ "xanim ã®å®Ÿè¡Œã«å¤±æ•—ã—ãŸã‹ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚Œã¾ã—ãŸã€‚" #~ msgid "renaming frames..." #~ msgstr "フレームåを変更ã—ã¦ã„ã¾ã™..." @@ -14654,8 +14151,8 @@ #~ "OPERATION CANCELLED.\n" #~ "Current frame changed while dialog was open." #~ msgstr "" -#~ "æ“作ã¯ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚Œã¾ã—ãŸ.\n" -#~ "ダイアログãŒé–‹ã‹ã‚Œã¦ã„ã‚‹é–“ã«ç¾åœ¨ã®ãƒ•ãƒ¬ãƒ¼ãƒ ã«å¤‰æ›´ãŒåŠ ãˆã‚‰ã‚Œã¾ã—ãŸ." +#~ "æ“作ã¯ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚Œã¾ã—ãŸã€‚\n" +#~ "ダイアログãŒé–‹ã‹ã‚Œã¦ã„ã‚‹é–“ã«ç¾åœ¨ã®ãƒ•ãƒ¬ãƒ¼ãƒ ã«å¤‰æ›´ãŒåŠ ãˆã‚‰ã‚Œã¾ã—ãŸã€‚" #, fuzzy #~ msgid "" @@ -14664,10 +14161,10 @@ #~ "that end in numbers like _0001.xcf.\n" #~ "==> Rename your image, then try again." #~ msgstr "" -#~ "æ“作ã¯ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚Œã¾ã—ãŸ.\n" +#~ "æ“作ã¯ã‚­ãƒ£ãƒ³ã‚»ãƒ«ã•ã‚Œã¾ã—ãŸã€‚\n" #~ "GAP-プラグイン㯠_0001.xcf ã§çµ‚ã‚ã‚‹\n" -#~ "ファイルåã«å¯¾ã—ã¦ã®ã¿å‹•ä½œã—ã¾ã™.\n" -#~ "==> ファイルåを変更ã—ã¦ã‹ã‚‰ã‚„ã‚Šç›´ã—ã¦ä¸‹ã•ã„." +#~ "ファイルåã«å¯¾ã—ã¦ã®ã¿å‹•ä½œã—ã¾ã™ã€‚\n" +#~ "==> ファイルåを変更ã—ã¦ã‹ã‚‰ã‚„ã‚Šç›´ã—ã¦ä¸‹ã•ã„。" #~ msgid "" #~ "You are using a file format != xcf\n" @@ -14866,7 +14363,7 @@ #~ "0, 4-5, 8\n" #~ "where 0 == BG-layer" #~ msgstr "" -#~ "レイヤースタックä½ç½®ã‚’é¸ã¶.\n" +#~ "レイヤースタックä½ç½®ã‚’é¸ã¶ã€‚\n" #~ "0, 4-5, 8\n" #~ "0 == 背景レイヤー" @@ -15090,8 +14587,8 @@ #~ "How to insert SrcLayer into the Dst. Frame's Layerstack\n" #~ "0 means on top i.e. in front" #~ msgstr "" -#~ "元レイヤーを Dst ã«æŒ¿å…¥ã™ã‚‹æ–¹æ³•. フレームã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚¹ã‚¿ãƒƒã‚¯\n" -#~ "0 ã¨ã„ã†ã®ã¯ä¸€ç•ªä¸Š, ã¤ã¾ã‚Šæœ€å‰é¢ã§ã™" +#~ "元レイヤーを Dst ã«æŒ¿å…¥ã™ã‚‹æ–¹æ³•ã€‚フレームã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚¹ã‚¿ãƒƒã‚¯\n" +#~ "0 ã¨ã„ã†ã®ã¯ä¸€ç•ªä¸Šã€ã¤ã¾ã‚Šæœ€å‰é¢ã§ã™" #~ msgid "Object on empty frames" #~ msgstr "空フレームオブジェクト" @@ -15176,13 +14673,13 @@ #~ msgstr "Y 座標" #~ msgid "Scale Source Layer's Width in percent" -#~ msgstr "元レイヤーã®å¹…ã‚’ï¼…ã§æ‹¡å¤§ç¸®å°" +#~ msgstr "元レイヤーã®å¹…ã‚’ %% ã§æ‹¡å¤§ç¸®å°" #~ msgid "Scale SrcLayer's Height in percent" -#~ msgstr "元レイヤーã®é«˜ã•ã‚’ï¼…ã§æ‹¡å¤§ç¸®å°" +#~ msgstr "元レイヤーã®é«˜ã•ã‚’ %% ã§æ‹¡å¤§ç¸®å°" #~ msgid "SrcLayer's Opacity in percent" -#~ msgstr "ï¼…ã§å…ƒãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ä¸é€æ˜Žåº¦" +#~ msgstr "%% ã§å…ƒãƒ¬ã‚¤ãƒ¤ãƒ¼ã®ä¸é€æ˜Žåº¦" #~ msgid "Rotate SrcLayer (in degree)" #~ msgstr "元レイヤーã®å›žè»¢ (角度)" @@ -15302,8 +14799,8 @@ #~ "No Source Image was selected.\n" #~ "Please open a 2nd Image of the same type before opening Move Path." #~ msgstr "" -#~ "元画åƒãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“.\n" -#~ "パス移動を開ãå‰ã«åŒã˜åž‹ã® 2 番目ã®ç”»åƒã‚’é–‹ã„ã¦ä¸‹ã•ã„." +#~ "元画åƒãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。\n" +#~ "パス移動を開ãå‰ã«åŒã˜åž‹ã® 2 番目ã®ç”»åƒã‚’é–‹ã„ã¦ä¸‹ã•ã„。" #~ msgid "Copying Layers into Frames..." #~ msgstr "レイヤーをフレームã«ã‚³ãƒ”ーã—ã¦ã„ã¾ã™..." @@ -15390,7 +14887,7 @@ #~ msgstr " 動画メニュー㮠'ç”»åƒã‚’フレームã«åˆ†å‰²' を使ã†)" #~ msgid "3.) All Images must have the same size," -#~ msgstr "3.) å…¨ã¦ã®ç”»åƒã¯åŒã˜ã‚µã‚¤ã‚ºã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Š," +#~ msgstr "3.) å…¨ã¦ã®ç”»åƒã¯åŒã˜ã‚µã‚¤ã‚ºã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã€" #~ msgid " width and height must be a multiple of 16" #~ msgstr " å¹…ã¨é«˜ã•ãŒ 16 ã®å€æ•°ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™" @@ -15485,7 +14982,7 @@ #~ "(1 = best quality, 31 = best comression)" #~ msgstr "" #~ "I-フレームã®å“è³ªæ‹¡å¤§ç¸®å° \n" -#~ "(1 = 最高å“質, 31 = 圧縮最大)" +#~ "(1 = 最高å“質ã€31 = 圧縮最大)" #~ msgid "PQSCALE:" #~ msgstr "P å“質拡大縮å°:" @@ -15495,7 +14992,7 @@ #~ "(1 = best quality, 31 = best comression)" #~ msgstr "" #~ "P-フレームã®å“è³ªæ‹¡å¤§ç¸®å° \n" -#~ "(1 = 最高å“質, 31 = 圧縮最大)" +#~ "(1 = 最高å“質ã€31 = 圧縮最大)" #~ msgid "BQSCALE:" #~ msgstr "B å“質拡大縮å°:" @@ -15505,7 +15002,7 @@ #~ "(1 = best quality, 31 = best comression)" #~ msgstr "" #~ "B-フレームã®å“è³ªæ‹¡å¤§ç¸®å° \n" -#~ "(1 = 最高å“質, 31 = 圧縮最大)" +#~ "(1 = 最高å“質ã€31 = 圧縮最大)" #~ msgid "P-Search :" #~ msgstr "P-検索 :" @@ -15530,7 +15027,7 @@ #~ "(MPEG-2 Video Encoder.)\n" #~ msgstr "" #~ "mpeg2encode 1.2 ã®ãŸã‚ã®ãƒ‘ラメータファイルã®ç”Ÿæˆ\n" -#~ "(MPEG-2 動画エンコーダー.)\n" +#~ "(MPEG-2 動画エンコーダー。)\n" #~ msgid "MPEG-type :" #~ msgstr "MPEG 種:" @@ -15577,7 +15074,7 @@ #~ "ERROR: invoked from a single image, animframe required" #~ msgstr "" #~ "\n" -#~ "エラー: 一枚ã®ç”»åƒãŒå‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸ, 動画フレームãŒå¿…è¦ã§ã™" +#~ "エラー: 一枚ã®ç”»åƒãŒå‘¼ã³å‡ºã•ã‚Œã¾ã—ãŸã€å‹•ç”»ãƒ•ãƒ¬ãƒ¼ãƒ ãŒå¿…è¦ã§ã™" #~ msgid "" #~ "Playback \n" @@ -15609,7 +15106,7 @@ #~ msgstr "/å‹•ç”»/VCR ナビゲータ..." #~ msgid "Cant open two or more Video Navigator Windows." -#~ msgstr "2 ã¤ä»¥ä¸Šã®ãƒ“デオナビゲータウィンドウã¯é–‹ã‘ã¾ã›ã‚“." +#~ msgstr "2 ã¤ä»¥ä¸Šã®ãƒ“デオナビゲータウィンドウã¯é–‹ã‘ã¾ã›ã‚“。" #~ msgid "Paste before" #~ msgstr "å‰ã«ãƒšãƒ¼ã‚¹ãƒˆ" @@ -15770,7 +15267,7 @@ #~ "Convert to, or keep imagetype \n" #~ "(most fileformats can't handle all types)" #~ msgstr "" -#~ "変æ›ã™ã‚‹ã‹, ç”»åƒç¨®ã‚’ãã®ã¾ã¾ã« \n" +#~ "変æ›ã™ã‚‹ã‹ã€ç”»åƒç¨®ã‚’ãã®ã¾ã¾ã« \n" #~ "(ã»ã¨ã‚“ã©ã®ãƒ•ã‚¡ã‚¤ãƒ«å½¢å¼ã¯å…¨ã¦ã®åž‹ã‚’扱ãˆãªã„)" #~ msgid "Flatten:" @@ -15839,7 +15336,7 @@ #~ "0, 4-5, 8\n" #~ "where 0 == Top-layer" #~ msgstr "" -#~ "レイヤースタックä½ç½®ã§é¸ã¶.\n" +#~ "レイヤースタックä½ç½®ã§é¸ã¶ã€‚\n" #~ "0, 4-5, 8\n" #~ "0 == 最上層レイヤー" @@ -15848,7 +15345,7 @@ #~ "0, 4-5, 8\n" #~ "where 0 == BG-layer" #~ msgstr "" -#~ "レイヤースタックä½ç½®ã§é¸ã¶.\n" +#~ "レイヤースタックä½ç½®ã§é¸ã¶ã€‚\n" #~ "0, 4-5, 8\n" #~ "0 == 背景レイヤー" @@ -15903,9 +15400,9 @@ #~ "Desired save plugin can't handle type\n" #~ "or desired save plugin not available." #~ msgstr "" -#~ "フレーム変æ›: ä¿å­˜æ“作ã¯å¤±æ•—ã—ã¾ã—ãŸ.\n" +#~ "フレーム変æ›: ä¿å­˜æ“作ã¯å¤±æ•—ã—ã¾ã—ãŸã€‚\n" #~ "è¦æ±‚ã—ãŸä¿å­˜ãƒ—ラグインãŒã“ã®åž‹ã‚’扱ãˆãªã„ã‹\n" -#~ "è¦æ±‚ã—ãŸä¿å­˜ãƒ—ラグインãŒåˆ©ç”¨å¯èƒ½ã§ã¯ã‚ã‚Šã¾ã›ã‚“." +#~ "è¦æ±‚ã—ãŸä¿å­˜ãƒ—ラグインãŒåˆ©ç”¨å¯èƒ½ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" #~ msgid "Cropping all Animation Frames..." #~ msgstr "全動画フレームを切り抜ã„ã¦ã„ã¾ã™..." @@ -15936,9 +15433,9 @@ #~ "desired save plugin can't handle type\n" #~ "or desired save plugin not available." #~ msgstr "" -#~ "フレーム分割: ä¿å­˜æ“作ã¯å¤±æ•—ã—ã¾ã—ãŸ.\n" +#~ "フレーム分割: ä¿å­˜æ“作ã¯å¤±æ•—ã—ã¾ã—ãŸã€‚\n" #~ "è¦æ±‚ã•ã‚ŒãŸä¿å­˜ãƒ—ラグインãŒã“ã®åž‹ã‚’扱ãˆãªã„ã‹\n" -#~ "è¦æ±‚ã•ã‚ŒãŸä¿å­˜ãƒ—ラグインãŒåˆ©ç”¨å¯èƒ½ã§ã‚ã‚Šã¾ã›ã‚“." +#~ "è¦æ±‚ã•ã‚ŒãŸä¿å­˜ãƒ—ラグインãŒåˆ©ç”¨å¯èƒ½ã§ã‚ã‚Šã¾ã›ã‚“。" #~ msgid "" #~ "%s\n" @@ -15956,7 +15453,7 @@ #~ msgstr "フレームã®åå‰ã¯: 基本å_番å·.æ‹¡å¼µå­" #~ msgid "extension of resulting frames (is also used to define Fileformat)" -#~ msgstr "生æˆãƒ•ãƒ¬ãƒ¼ãƒ ã®æ‹¡å¼µå­ (ファイル形å¼ã®å®šç¾©ãŸã‚ã«ã‚‚使ã‚れる)" +#~ msgstr "生æˆãƒ•ãƒ¬ãƒ¼ãƒ ã®æ‹¡å¼µå­ (ファイル形å¼ã®å®šç¾©ã®ãŸã‚ã«ã‚‚使ã‚れる)" #~ msgid "Inverse Order:" #~ msgstr "逆順:" @@ -15968,8 +15465,8 @@ #~ "Remove Alpha Channel in resulting Frames. Transparent parts are filled " #~ "with BG color." #~ msgstr "" -#~ "生æˆãƒ•ãƒ¬ãƒ¼ãƒ ã‹ã‚‰ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å–り除ã. é€æ˜Žãªéƒ¨åˆ†ã¯èƒŒæ™¯è‰²ã§å¡—ã‚Šã¤ã¶" -#~ "ã•ã‚Œã‚‹." +#~ "生æˆãƒ•ãƒ¬ãƒ¼ãƒ ã‹ã‚‰ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’å–り除ã。é€æ˜Žãªéƒ¨åˆ†ã¯èƒŒæ™¯è‰²ã§å¡—ã‚Šã¤ã¶" +#~ "ã•ã‚Œã‚‹ã€‚" #~ msgid "Split Image into Frames" #~ msgstr "ç”»åƒã‚’フレームã«åˆ†å‰²" @@ -15982,9 +15479,9 @@ #~ "This image is already an AnimFrame.\n" #~ "Try again on a Duplicate (Image/Duplicate)." #~ msgstr "" -#~ "æ“作ã¯å–り消ã•ã‚Œã¾ã—ãŸ.\n" -#~ "ç”»åƒã¯æ—¢ã«å‹•ç”»ãƒ•ãƒ¬ãƒ¼ãƒ ã«ãªã£ã¦ã„ã¾ã™.\n" -#~ "複製ã—ã¦ã‹ã‚‰ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ä¸‹ã•ã„ (ç”»åƒ/複製)." +#~ "æ“作ã¯å–り消ã•ã‚Œã¾ã—ãŸã€‚\n" +#~ "ç”»åƒã¯æ—¢ã«å‹•ç”»ãƒ•ãƒ¬ãƒ¼ãƒ ã«ãªã£ã¦ã„ã¾ã™ã€‚\n" +#~ "複製ã—ã¦ã‹ã‚‰ã‚‚ã†ä¸€åº¦è©¦ã—ã¦ä¸‹ã•ã„ (ç”»åƒ/複製)。" #~ msgid "Scale" #~ msgstr "拡大縮å°" @@ -16013,7 +15510,7 @@ #~ "new layer creation." #~ msgstr "" #~ " ç¾åœ¨ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯ GDynText レイヤーã§ãªã„ã‹ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ãŒã‚ã‚Šã¾ã›" -#~ "ã‚“. 強制的ã«æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’作æˆã—ã¾ã™. " +#~ "ん。強制的ã«æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’作æˆã—ã¾ã™ã€‚" #~ msgid "GDynText Layer" #~ msgstr "GDynText レイヤー" @@ -16113,14 +15610,14 @@ #~ "changing the layer name as done in GIMP 1.0." #~ msgstr "" #~ "Shift キーを押ã—ãªãŒã‚‰ã“ã®ãƒœã‚¿ãƒ³ã‚’押ã™ã¨ GDynText 㯠GIMP 1.0 ã®ã‚ˆã†ã«ãƒ¬ã‚¤" -#~ "ヤーåを強制的ã«å¤‰æ›´ã—ã¾ã™." +#~ "ヤーåを強制的ã«å¤‰æ›´ã—ã¾ã™ã€‚" #~ msgid "GDynText: Load text" #~ msgstr "GDynText: テキスト読ã¿è¾¼ã¿" #~ msgid "" #~ "Warning file \"%s\" is larger than the maximum allowed text length (%d).\n" -#~ msgstr "警告 ファイル \"%s\" ã¯æœ€å¤§æ–‡å­—æ•° (%d) を越ãˆã¦ã„ã¾ã™.\n" +#~ msgstr "警告 ファイル \"%s\" ã¯æœ€å¤§æ–‡å­—æ•° (%d) を越ãˆã¦ã„ã¾ã™ã€‚\n" #~ msgid "Error opening \"%s\"!\n" #~ msgstr "\"%s\" ã‚’é–‹ãéš›ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ!\n" @@ -16130,10 +15627,10 @@ #~ "layer. Get it from %s" #~ msgstr "" #~ "警告: GDynText ãŒå¤ã™ãŽã¾ã™! ã“ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’編集ã™ã‚‹ã«ã¯æ–°ã—ã„版ãŒå¿…è¦ã§" -#~ "ã™. %s ã‹ã‚‰å–å¾—ã—ã¦ä¸‹ã•ã„" +#~ "ã™ã€‚%s ã‹ã‚‰å–å¾—ã—ã¦ä¸‹ã•ã„" #~ msgid " Upgrading old GDynText layer to %s." -#~ msgstr "å¤ã„ GDynText レイヤー ã‚’ %s ã«ã‚¢ãƒƒãƒ—グレードã—ã¦ã„ã¾ã™." +#~ msgstr "å¤ã„ GDynText レイヤー ã‚’ %s ã«ã‚¢ãƒƒãƒ—グレードã—ã¦ã„ã¾ã™ã€‚" #~ msgid "Dismiss" #~ msgstr "é–‰ã˜ã‚‹" @@ -16329,7 +15826,7 @@ #~ "Set Rotation for all Controlpoints to follow the shape of the path.\n" #~ "(Shift: use Rotation of contolpoint 1 as offset)" #~ msgstr "" -#~ "å…¨ã¦ã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ãƒã‚¤ãƒ³ãƒˆãŒãƒ‘スã®å½¢çŠ¶ã«æ·»ã†ã‚ˆã†ã«ã—ã¾ã™.\n" +#~ "å…¨ã¦ã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ãƒã‚¤ãƒ³ãƒˆãŒãƒ‘スã®å½¢çŠ¶ã«æ·»ã†ã‚ˆã†ã«ã—ã¾ã™ã€‚\n" #~ "(Shift: コントロールãƒã‚¤ãƒ³ãƒˆ 1 ã®å›žè»¢ã‚’オフセットã¨ã—ã¦ä½¿ã„ã¾ã™)" #~ msgid "Move Path Controlpointcheck" diff -uraN gimp-2.2.8/po-plug-ins/mk.gmo gimp-2.2.9/po-plug-ins/mk.gmo --- gimp-2.2.8/po-plug-ins/mk.gmo 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po-plug-ins/mk.gmo 2005-10-20 12:46:53.000000000 +0200 @@ -0,0 +1,454 @@ +Þ• +ÔPy Œ¡p×Pq×¥ÂÚ1hÛšÛ¯ÛÃÛ ÚÛàäÛ ÅÜÒÜ/âÜÝÝ*Ý12ÝdÝ"~ݡݸÝÏÝêÝ Þ*(Þ"SÞvÞ–ÞµÞ¼ÞÃÞ!ÊÞ ìÞúÞ +ß!)ßKßcßß“ß-ªß(Øß0à&2à*Yà%„à#ªà)Îà#øà+á,Há,uá¢á$Àá!åá0â"8â'[â)ƒâ-­â(Ûâ*ã2/ã0bã(“ã-¼ã(êã.ä)Bä)lä#–ä$ºä&ßäå"%å$Hå$må'’å ºå$Ûå&æ)'æ"Qæ,tæ!¡æ#Ãæ'çæ#ç"3ç#Vç%zç# ç"Äç,çç"è$7è$\è%è%§è$Íè'òè%é#@é(déé.¬éÛé,ûé,(ê+Uê)ê(«ê2Ôê)ë"1ë Të uë%–ë ¼ë"Ýë"ì##ìGì&dì‹ì%¨ì Îìïì!í0íOí(ní-—í,Åí'òí/î/Jî7zî'²î)Úî'ï(,ï(Uï*~ï+©ïÕïõïð 4ð!Uð#wð&›ð&Âð(éð$ñ+7ñ%cñ.‰ñ¸ñ%¿ñ&åñ ò-òHògò +ƒò'ŽòV¶òQ ó_óuó|ó”ó ™ó ¥ó¯ó +´ó¿óÐó Øó âóîóöóÿóô +ô'ô <ôIôOô^ô +nôyô‹ôô ¤ô®ô·ôÍôÑôçô õõõ.õ?õVõfõ)oõ™õ¸õLÉõö1öQö mö;ŽöÊöãö<ûöC8÷$|÷§¡÷ÞIø'(ùPù}pù&îù"ú8úUú%dúŠú +“úžú ¯ú¹ú ÂúÌúçúûûû"û*û*9û dûnû%wû û§û½ûÃûÒûÙû<âûüR'üzü ‰ü•üœü®üÅüÚüïüý ý2 ýSý1cý•ý ›ý$¨ýÍýàýõýþ"þc;þŸþA§þéþ ûþ ÿÿÿÿ2ÿ 8ÿFÿ +[ÿ +fÿqÿyÿ‚ÿŠÿÿ«ÿÂÿ âÿìÿÿÿ!26Rfw‰ +š¬½ Í Ù +æ +ñ +ü +#3( \h x‚‘—§®½ÄHÉ(9IZ_q   š¤´ »ÇÎ à ìú  .6 :FMSbgp€˜«Æáåêîòø  $ +5 @NVhqy ‰"žÁÚó$ 22/e'•&½äJ!&l'“» +Ôßîý + +,*@k(‰² ºÄ*Õ,#-.Q0€'±$Ù%þ#$ H h_ hÈ )1 +'[ +#ƒ +4§ +4Ü +( ): 'd lŒ *ù 5$ 5Z , *½ è 4÷  , 9  W $e Š ¢ 4« à  è õ '“3»0ï7 UX®µ Ï +Ýèî  +$+2CK S] w„–ª ½ +ÇÒÛãö ü +*<Wp +Š¡¶ È@Ö $3 +OZmƒŒ¢±ºÌÓÛ ãíöþ  4 AN bn$¤+»4ç$=Q cm+v¢ÂAÕ  %1 AO)^6ˆ¿ +ß&ê +$(++T!€¢»×&ö #> b#ƒ1§#Ù&ý$D/]>Ìàô8Jgy €ŽŸ°Â<Ô|/Ž'¾æ> E9Q ‹™ ¨´ Ç Õáù/ 5AIPh +„  ª» +Ä Ï +ÝèEù ?M]afls|Œ +œ$§Ì Ü æð÷ÿ  &0ET\q†ž ¯½Õèüy  Œ $˜ ½  Å Ñ 'à 0!9!@! O!]! q!~!0!!À!â!÷!"'"C"R"i" r" +~" ‰"•"¦" Á" Î" Ü"æ"õ" +# "#/# 8# +F# +Q#\#p#x##–#§# +®# +¹# Ä# Ð#Ú# ë#÷# + $ $ $)$:$ L$Z$ b$2n$0¡$=Ò$1%=B%/€%°% Â%Ï% Ø%+ä%& +#&(.&GW&Ÿ&»&[Ä& '>'O'_'o' €'BŽ' Ñ'Ý'ñ' ((-(B(^(f(u(‘( ¯(½(Ì( Þ(ë(ñ(ö( +)) /)=) N)Z)l):„)¿)Î)Þ)å)ù))*/8*#h*2Œ*+¿*ë*ú* + ++"5+X+/x+›¨+4D, y,†,˜,±,'Ð,ø,-2-P- o--«-Ç-Ú-'ò-.)-..W.†.-¡.'Ï. ÷.#/5L5 +b5m5s5z55ˆ5 —5¤5¬5¼5 Í5;×56.6I6ŸP6 ð6 þ6 7 7g#7‹7š7 ¬7¹7(Ê7*ó78$868=8M8…a8ç8ù8þ89 '959G9[9 +j9 u9ƒ9–9œ9 ¡9­9Â9Ø9á9ó9:: /: 9:C:a:v: {:…:I‹:Õ:Ü:á: æ:ò: ; ;; +.;9; R;`;ýg; e< o<}<< “< Ÿ<«<°< ¶<À<-Ñ<ÿ<= =-=A=2W=/Š=Bº==ý= +;> F>R> m>z> Œ>š>©> +¸>Ã> Ô> á>ë> ï>ü>?$#?3H? |?? ¡?¯?¾? Ã?Ð?Ó?å?ë? +ñ? ü? @@ +)@n4@‡£@Y+Av…AƒüA\€BCÝB +!C,C?CQCbCtC„C—C  C¬C³CËC ÛCéC +ùCD D D,D;DJD"dD‡DD ·DÃDÛDðD E $EK2E~E‚E–EŸE¤E¸E ÇE ÑEßE èEõE ýEF6F OFYF qF {FˆF ›F ¼FÆF áF]ëF IGUGYGiGƒG šG§G ®G»GÁGÒGäG øGHHH$H -H:H CHPHXH _H +iH +tH/H[¯H II I 'IG1IByIN¼II J UJcJiJxJ%ŠJ$°J%ÕJ$ûJ% K$FKkKsK†KK K´KÇKÙKÞKçK îK øKL L L'LCL_L +nLyL‘L ­L»LÍLâLòLMM$2MWMsMŠM ›M ¨M´M ¹M +ÆM ÑMÝM +ïM úM +N NN 4N@NPN aNmN~N‡NN ˜N¢N±N ¶N<ÃN%O &O +0O;OQO'XO €O¡O±OÉOÒO âO ðOþOPP P)P 0P=PUP +mP xP…PPµP +½P ÈP ÒPßP øP Q Q Q ,Q6Q +EQ:PQ‹Q + Q «Q µQ ÂQÏQçQ +ÿQ +RR/RGR `R+nRšR ŸR­R ÃR +äRïRSSS #S 1S>S ZSdSvS‘S ˜S¤S·S ¼S ÆSÐS æSôSüSTT(T1T@TXTsTŽTžT­T ¾T ÈTÕTÚTßTåT éT +õTUUU(U 1U ;UIHU’U¡U ªU ¸UÂU +ÓUÞUûU:V0NV +VŠVV.˜VÇVÌVÓVÛV!êV WW.W ?W`W€WžW®W ÁWâWôWX.XNX jXtX}X ŽX˜X ¡X®X½XÅX ÖXãX ìXùXYY.YMYlY €YŒY%›YÁYÉYÙY àYêYóYZ"Z 8ZBZVZ_ZhZ mZ wZ …Z‘Z šZ +¦Z±Z#ÁZåZ[7 [C[[[ c[p[ ‡[“[ ª[·[À[ Ó[Ý[ ä[ò[÷[þ[ \ \'\0\8\H\L\\\2s\¦\¿\Ú\õ\]$] @] J]T] +X]c]}]„]] •]¢]º]Ê]Ñ] ×] ã] ï]û] + +^ ^#^ 6^ +C^N^l^r^ +y^„^Œ^“^#›^¿^ +Å^Ð^ Ø^â^ö^ __ _*_ +1_'<_ d_n_t_ {_ …_ +_š_¹_Í_Ô_ã_ é_õ_û_ ```#`*`1`8`A`8Xb‘b šb¦b+»b çbñb#ùb<cZc jcwc†c*šcÅcÖcécøc:d'Kdsd‡d –d¤dµd Õdád ÷dee,e GeQeZeje{eee$•eºe¾eÎeàe ée öeff +*f5f:fJfSf\fcftf +|f‡fŽf–fªf±fÁf Ñf Ýfêf úf gg.g7gIg dg +pg{g ‚gŒgg£g%¨gÎgßgñg hhGh_hdhshƒh’h¢h§h¶h½hÌhÞh ñhþhi9iHi ^iji rii’i ši»iÍiÝiìi j j &j 0j=jPjej~jj£jºjÍjßjçjkk)k"Akdk{k +Šk#•k ¹kÅkßk1ïk,!lNl Vlcl€l ‡l +•l l§l ®l +ºlÅlËl Ôl Þl èl òlÿlm m,m5mEmam}m ™m £m­m³m4Åm!úmn+n @n Nn Xnenmnsnƒn +“nžn §n±n +·nÂnánænønoo;!o ]o io +uo€o –o¢o §o&µoÜo +òoýo*p DpRpep yp†p p ¯p +¹pÄp +Üpçp ùpq q'q:qJq aqmq~q šq ¦q´qÇq Øq äqòq r r r (r 4r@rPr cror ~r Šr —r ¤r °r ¼rÈr/Ørs"s:s@s Os Ysfsus~s ‡s•s¥s®s·sÀs.Þs' t5tDtKt Tt`trt yt…t•t¤tµtÅtÍt åtu&u /u²‹<ñ‹7.ŒúfŒœaþ!Ž<Ž[Ž.zŽ)©Ž%ÓŽ)ùŽù#„:3¿&ó‘:‘0Y‘4Š‘¿‘בpñ‘~b’=á’%“ÍE“!”5”JL” —”£”)³” +Ý”è”÷”ü” •• ,•-9•g•x••ˆ•‘• £•­•°•¹• +• Í• וá•é•í•ó• ü•– ––0– B–N– e– s–}– Ž–š–Ÿ–¾–Ù– ÷–—1—7—;—C— ]—~—”—™—¨— ­—¹—Ô—Ú—%á—˜˜˜ '˜ 4˜A˜]˜&v˜˜¦˜Ř +̘ טã˜ò˜ ™ ™++™W™h™{™ ‹™—™ ¯™½™FÝ™$š'6š(^š&‡š,®š)Ûš+›"1›QT›:¦›á›ö›%œ&.œ$Uœ*zœ¥œ¾œÙœÈòœ»ÂÉÏßïžžž+ž =žIžXžhžpž€ž‰ž +˜ž £ž­ž ³ž ÀžRÌžPŸpŸxŸŸŠŸŸ£ŸºŸ­ÂŸjp AÛ $¡=B¡.€¡-¯¡-Ý¡ ¢¢ +(¢ 3¢=¢ C¢M¢UR¢ ¨¢n¶¢%£5£N£T£,d£‘£˜££ ¥£±£Ë£ã£û£¤ ¤'¤,¤@¤O¤ R¤&^¤%…¤%«¤Ѥפݤ î¤û¤¥¥¥¥¥#¥(¥-¥4¥<¥SE¥C™¥:Ý¥F¦8_¦˜¦§¦ª¦Á¦ Ʀ Ó¦ߦç¦ï¦ §§2§7§ F§ P§ Z§d§k§}§‘§ ™§£§ ¬§¸§À§ ɧק î§ ø§¨ +¨ !¨ /¨9¨ @¨N¨W¨^¨e¨k¨ r¨€¨ ‰¨–¨Ÿ¨ ¤¨ °¨½¨ Ĩ Ò¨ +ܨç¨ð¨ö¨ÿ¨© © #©1© :© H©R©[© +j© +u© €©Œ©’©¤©ª© ¹©Å©Í© æ©ô©ª +ªª/ª8ªJª +Pª[ªkªªˆªªžª·ªɪ Þªèª îª ûª« ««3« ;«E«L«S«[« a«m«s«„«Œ«•«›« « ¨«´« +Ï« Ú« è«ô« ¬¬$¬)¬8¬=¬D¬X¬(`¬‰¬ ¬ œ¬¨¬°¬Ŭͬ Ó¬߬ò¬ +­)&­P­V­[­d­u­{­‹­£­ª­¼­ Ä­Э×­Ý­ì­û­®®'®6®?® U® a® k® u® ®Ž®”®›® ²® ¼®È®Ø® +à®ë® ¯¯¯ $¯1¯C¯I¯Q¯`¯ +p¯ {¯‡¯¯˜¯ +§¯²¯ï̯Õ¯é¯ù¯°° ° .°8°A°W° j°w°|°° ž°«°³° ¼° É° +×°â° è° +ô°ÿ°± ±± +"±-±B±U± \±j±s± |± ˆ±•±«±º±ɱÒ± +á±ì±%õ±² 8² B² O² [²h²n²t²{²‚²˜² +Ÿ²ª²²²Á²вÙ²é²ñ² +ú² +³³8³ R³ +^³ i³ u³ ƒ³³—³ž³ +­³¸³ ¾³6˳´ ´´ ´(´:´ P´^´x´‘´-°´ Þ´è´ï´ ÷´µ µµ +.µ9µ?µHµ Nµ [µ hµ rµ€µ ‡µ •µ£µªµ²µ¸µʵ еݵôµ +¶ ¶¶ +#¶.¶A¶E¶ +V¶ a¶k¶ +t¶¶ƒ¶‹¶¶•¶œ¶²¶öɶ϶Õ¶Ú¶é¶ù¶··1·4·9·@·H·N·"R·u·~·· ”· ¡·­·nÁ·0¸ H¸ +R¸ ]¸ +g¸r¸ z¸ „¸‘¸–¸³¸º¸˸ ݸç¸ ë¸ù¸ ¹¹ +%¹0¹?¹:T¹¹¡¹ª¹°¹ +Ĺ +ϹÚ¹á¹s깃^»âÀHõÁ(>Â'gÂ&¶¸ÈÂÄ”Äc´ÄÅ Å7Å`IÅ"ªÅDÍÅ&Æ%9Æ5_Æ4•Æ6ÊÆXÇJZÇP¥ÇPöÇ +GÈ RÈ _È@lÈ­ÈÇÈ5ãÈ5ÉCOÉ5“É&ÉÉ)ðÉNÊIiÊT³ÊQËLZËH§ËXðËHIÌ<’ÌHÏÌYÍYrÍDÌÍLÎA^Î_ Î0ÏD1Ï7vÏM®Ï:üÏM7Ðb…ÐWèÐK@ÑEŒÑIÒÑRÒ8oÒ=¨Ò*æÒ:Ó<LÓ,‰Ó.¶Ó1åÓAÔMYÔ8§ÔFàÔR'ÕWzÕ8ÒÕ= Ö8IÖ@‚ÖNÃÖB×IU×?Ÿ×Gß×G'ØAoØR±Ø<ÙGAÙ9‰Ù@ÃÙ3Ú28Ú:kÚ9¦Ú@àÚ`!Û1‚ÛT´Û9 ÜMCÜW‘ÜLéÜG6ÝA~ÝYÀÝGÞ>bÞ;¡Þ2ÝÞDß2Uß,ˆßGµß;ýß29à<là8©à;âà7á@Vá-—á3Åá4ùáJ.âOyâZÉâI$ãVnãZÅãk äIŒäEÖäKåKhåH´åQýåXOæ6¨æ3ßæ/ç:CçC~ç?ÂçGè6JèFè=ÈèVéC]é?¡éáé=èéE&ê2lê*Ÿê6Êê5ë +7ëNBën‘ë½ì!¾ìàì2ûì .í<íVí hírí‹í ¢í¬í½í +ÑíÜí îí5üí2î'Gîoî€î*…î(°î Ùîæî$ï +ï8ïJï8eï žï2«ï<Þïð#:ð ^ð&ð-¦ðÔðíðVþð6Uñ#Œñ˜°ñ@Iò:Šò0Åò>öòs5ó6©ó6àó|ô‚”ôcõe{õ~áög`øDÈø# ùc1úK•úFáú%(û:Nû‰û¥û(¿ûèû!ûû#üEAüC‡ü3Ëüÿü ý ýýY8ý ’ý  ýV®ý þ1þEþNþ dþnþ~þ ÿnÿ$ÿ²ÿ Ìÿ Öÿ:÷ÿ*2$]$‚@§èwý"ua˜ú V%$|¡¿3Ü,ß=j.2™ Ì.í *&9`!fˆ¨¾Ï à íù=,LoyéAþ@]%yŸ6£-Ú"  CO`"x ›¼+Îú  . C Z pk Ü #ø  +2 +H +Q + c +&m +” + +© +˜´ + M W k € ”  © -¶ ,ä * +<  h )‰  ³ ½  +Ó Þ $ý "  >  +J U l ‚ —  Ÿ ¬  +Ä  +Ï #Ú þ  %@]eJz2Åøü   (+%T#zž³ Ë#Õù  +'08>i5¨:ÞIXcd¼[!J}qÈM:IˆÒQcNµA'F'n!–¸ÇØ$é$W36‹SÂ&)9Ycc½]!gqçkYIÅMM]<«¹è¹¢F\A£Fåc,cGôK<MˆÜÖL³g gh JÐ K!g!V‚!Ù!9é!"#"xF"/¿" ï"Kü"H#[#w#OŒ$eÜ$gB% ª%¶'T(<](š(´(Æ(Õ(Cñ(05)f) +y)„) +ž)©)°)3Ã)÷)0*(C*+l*˜*¨*»* Ê*(×*+ +%*+P+n+3Œ++À+ì+ ,-,.L,'{,£,kº,&-?-3V-Š-+£-.Ï-þ-%. 5.C.,V.ƒ.Š.’.§.¹.É.Ú.ì./"/B/Z/2r/¥/ º/LÛ/((0WQ0j©01;%1#a1)…1¯1Á1fÒ1=92#w2q›2 33+3(A3*j3•3L±3iþ31h4š49¬4æ455R!5_t5GÔ586tU6QÊ6\7@y7Cº7?þ7K>8{Š8M9[T9M°9:þ9O9:—‰::!;>\;M›;é;(i<"’<µ<Ä<à<$ÿ<!$=F=ye=Óß=[³>R?7b?dš?ÿ?j@€@˜@´@Ð@î@ A(A FA=gA ¥A³A ÉAÕA1äA<B+SB"B<¢B$ßBC$C8CSCkC‡ŠCD,D +HD +SD ^D jDxD(‰D&²DÙD.ñD2 ESEgExE‡E*—E0ÂE óEýE,FEFcF*xF8£F4ÜF/G AG=bG" G:ÃG:þGü9H*6IOaI±IÀIÑIHåI‰.J¸JÇJåJûJ"K=KaYKD»K7L28L3kL7ŸL×L-ñLM/M%KMqM-M-½M ëMõMN&N&BN/iN™N­N¼NØNèN#øNO+-OYO"mO OO¯OÀO ÒOßOûO P *P 7PEP*TP+P«P ÅPÒPRëPa>Q‚ Qc#Rb‡RRêR%=S!cS …S’SW©S/T1TIDTŒŽT6URU©cU= VKVbV{V2šVÍV‚èVkWW;žWÚW5ïW.%X5TXŠXžX6¾X0õX$&Y&KY)rYœY +»Y +ÆYEÑYZ?+Z%kZ'‘Z¹Z2ÑZ<[rA[´["Ñ[ô[\!"\fD\[«\K]nS]_Â]"^>^V^i^0^2°^*ã^e_ût_qp`â`-ò`E aGfa`®aDb6TbL‹b@Øb:cLTcL¡cBîcA1djsd>ÞdReppeTáen6fR¥fKøfBDg+‡g ³gÁg%Ýg hchXshÌhÞh)òh i)iMAiMiRÝi0j^@j Ÿj¬j.½jPìjG=ku…kYûkvUl"Ìl>ïl.m @m2am.”m.Ãm2òm9%n#_nƒn-¢nÐn Ùn9æn: o"[o*~o©o$»o ào ìoA pOp[gpÃp>Ìp qq)q@q!`q +‚q'qlµqt"r—r*­r!Ørúrs/5s'es s›s°sÆsHÖst$t:t Ltmtt ‡t +•t t±tÏtïtÿt&u BuWLu.¤u0Óuv v(w@wVw ewê†wqx-x½x(Õx^þxR]y °yºy ×yáy÷yz+{E{J{'i{‘{!¢{)Ä{î{ |!(|?J| Š|”| |"«|Î| é| ö|!}%9}H_} ¨}¶}9Å},ÿ},~5~ N~œ[~ ø~ +$8](|+¥Ñ,é!€ 8€²E€ø‚‚% ‚F‚^‚v‚‡‚—‚²‚HЂ ƒ 'ƒ03ƒ3dƒ/˜ƒ`ȃs)„w„…—…¯…5Æ… ü…#† A†*b† †®†!džé†‡ +‡ ‡ 4‡7B‡Fz‡fÁ‡D(ˆmˆ|ˆ•ˆªˆºˆ ؈'åˆ ‰‰.‰C‰'\‰„‰ ‰Á¼‰ä~Š¶c‹ÏŒØꌲÃqvŽèŽ*$.$S(x(¡%Êðÿ +1"N"q"”$·!Üþ‘!4‘$V‘-{‘+©‘.Õ‘9’>’?Z’8š’Ó’;ì’(“A“ß“)å“”!”(” H”i”…”ž”´”̔Ք(ê”}•‘•.®• Ý• ê•÷•O–f–Dy–¾–¢Õ–x—Š—Ž—0ž—.Ï—þ—˜˜ *˜-7˜1e˜<—˜&Ô˜/û˜+™/™ 4™B™[™k™‰™ ›™¨™ +Á™Ì™EÜ™Å"šèš üš›#›d7›gœ›œq„œöœ *##NQrWÄQžWnžQÆžWŸpŸ"Ÿ¤Ÿ¶Ÿ"ÖŸ0ùŸ**  U b ‚ “ "ª  Í 'Ú ¡G¡Je¡&°¡ס;ñ¡A-¢)o¢™¢$¸¢Ý¢1õ¢-'£1U£A‡£6É£;¤&<¤c¤‚¤›¤)°¤Ú¤ì¤¥ +¥ %¥ +1¥ <¥%H¥n¥&}¥ ¤¥Å¥"䥦¦%¦5¦%G¦ m¦z¦¢’¦V5§ Œ§–§'«§ +Ó§KÞ§I*¨*t¨,Ÿ¨̨ᨩ ©;©!P©r©%©§©¶©%Ñ©%÷©ª6ª%Qª%wª ª«ª¼ªÖªAòª4«P«!o«‘«««Ä«ä«bþ«-a¬¬¥¬À¬׬#ð¬#­8­O­#h­#Œ­?°­ð­^ +® +i® t®•®D«®ð®< ¯ +H¯ S¯ a¯"o¯&’¯6¹¯ð¯"°:%° `°%m°-“°Á°аì°5±<±\±"x±›±·±Ʊß±*þ±:)²:d²1Ÿ²#Ѳõ²³"³5³:³A³I³P³ f³t³³¦³¸³г"ð³~´’´®´´ Ù´&ç´µ;.µ5jµ| µn¶Œ¶¶¤¶a«¶ + ··)·;·NW·¦·Ä·Þ·+ó·:¸5Z¸¸­¸AǸ ¹;¹9[¹F•¹1ܹº #º/ºOº +jºuºŒº£º´ºϺãºùº »" »DC»Dˆ»DÍ».¼A¼*Q¼J|¼ Ǽ.Ó¼+½.½C½4V½‹½/¦½Ö½#ñ½ +¾ ¾ :¾G¾!e¾‡¾¥¾$¶¾Û¾í¾Q ¿L]¿ª¿iÁ¿,+À +XÀcÀ#{ÀŸÀ;¶ÀòÀ +Á'ÁCÁ UÁaÁ wÁ +…ÁÁ«ÁÃÁÚÁôÁ& Â0Â4Â+DÂupÂBæÂ.)Ã-XÃ'†Ã<®Ã=ëÃ)Ä?ÄUÄYÄ3oģijÄÃÄÓÄ ðÄ)Å;Å +MÅXÅxÅ•Å'§ÅÏÅ!îÅ,Æ=ÆTÆ:gÆ ¢Æ¯ÆÀÆ ÓÆàÆïÆNþÆMÇVÇ mÇ{Ç8Ç%ÆÇ%ìÇÈ+ÈGÈVÈ_lÈÌÈáÈ òÈÿÈÉ )É95É!oÉ‘É É +»É&ÆÉíÉüÉÊ/Ê>Ê SÊ ]Ê gÊqÊÁ‚ÊmDβÎÂÎ$ÕÎOúÎJÏ^Ï8mϘ¦Ï"?Ð(bÐ*‹Ð(¶ÐbßÐBÑ8bÑ#›Ñ3¿ÑXóÑ[LÒ¨Ò#ÅÒéÒ, Ó76ÓnÓ€Ó™Ó&°Ó2×Ó( +Ô3ÔCÔUÔ%qÔ—Ô›Ô¸Ô0½ÔîÔòÔ' Õ 3Õ AÕbÕ}Õ–Õ®Õ ÄÕÑÕîÕÿÕÖ ÖAÖTÖ lÖ yÖ&‡Ö®Ö.¿Ö%îÖ×(.×-W×…×! ×8Â×û×" Ø5/ØeØ|Ø “ØŸØ ´Ø/ÁØ ñØIÿØ+IÙ:uÙ@°ÙñÙ +ÚœÚ ´ÚÂÚÚÚóÚ Û $Û;1Û mÛzÛ$–Û"»ÛÞÛ:óÛ2.ÜaÜ"€Ü£Ü ¶ÜÄÜ-âÜÝO"Ý"rÝ •Ý&¶ÝdÝÝBÞWÞpÞÞ*™Þ)ÄÞ#îÞß!*ß)Lß-vß ¤ß ÅßYÒß9,à7fà:žà[ÙàB5áOxáÈáBÝá âE6â.|âJ«âEöâ<ãOã5^ã +”ãŸã¶ã ÌãØãëãää#ä4äFäXäjä„ä(•ä¾äÐäáä:å:<å:wå²åÄå Õåâåwûå<sæ°æ"Ææéæçç ,ç +:çEçdçxç‡ç ™ç £ç±ç.Ãçòç#ûç(è(Hèqèeƒèéèþèé.)éXéné#}é[¡é5ýé3êRMê\ ê ýê:ë2YëŒëLªë$÷ëì<ì=Tì ’ì³ì'ÒìAúì$<í/aí,‘í;¾íúí$îK8î„î" î"Ãî æîï%#ï,Iïvï“ï¯ïËïçï$ð"(ðKðgð†ð¢ð"¿ðâðþðñ 6ñfWñ8¾ñE÷ñ=ò!Nòpòòšò±òÁò.Ñò*ó +ó9óMóBaót¤óvô,ô½ô ÏôÝôòô + õõ6õSõjõ„õ œõ/¨õGØõE öföwö&‹öE²ö"øö÷*;÷ f÷ s÷H÷ È÷Ò÷,á÷,ø ;øHøZø6pø'§ø"Ïøòø? +ùJù#dù ˆù©ùÉùçùúù8 ú9Eú}údýú2bû/•û8Åû5þûZ4ü=ü Íü©nýÔþEíþ 3ÿAÿQÿ_dÿÄÿäÿ—'œ!Äæ8ø;1Am&¯IÖM inrØK bƒ¢·ÓEîW4LŒ‡ÙHa<ªlçQT<¦Fã*A? ¼È)å''7 _+k—ªÄÖ1å' #? c D} =  +  +0 +J +4d +™ +5¹ +*ï ++ 3F 4z (¯ .Ø > F U h }  +—  ¢  +¯ #º Þ í þ = <R L Ü -î $AˆSÜï7/U/…µ6Ë4-1b$” ¹ +Úå÷ 4=fr]ÙZ7 ’  4®ã+þ *82V‰ ¨ ¶Ã4Ó7@@‰N ‡Zâ +ø $25 +h s#”¸)Ç!ñ +2/b~)¢&Ìó5) +_%juj&Š +±¼ÅÜø 40e'vžG¥LíT: œ ¬¶*Å!ð!4N+g “´ÊÓÛ'ð(A*R}— 8SÅd˜*1Ã8õ[. ;Š ~Æ %E!Sk!y¿!v9"°"ƒ0#'´#yÜ#gV$k¾$Ê*%õ&3 (*?(2j(2(GÐ(G)F`)E§)òí)/à+Ý,[î,BJ-.-8¼-Qõ-[G."£. Æ.˜ç.ð€/yq0Aë0/-1C]2$¡2«Æ2 +r3}3:”3 Ï3Ù3 +÷3#4$&4!K4$m4n’4+5-5<5K5!]5 55 ’5  5 ®5º5Ò5 â5î5 ô566*626/B6r6’6!£6Å6$â637;7U78\72•7EÈ7:82I8|8„8ˆ8.8?¿86ÿ869?E9…9"”9C·9û9 +:P:!k::"¤:%Ç:6í:C$;@h;H©;ò;@< D<Q<c<w<<£<>²<yñ<&k='’=$º=(ß=Q>&Z>4>{¶>02?Wc?[»?[@cs@U×@_-AYA¬çAŒ”B0!C0RCSƒCW×CW/D_‡D<çD6$EA[EhEGG*G";G$^G%ƒG*©GÔGæGúGH &H&GHnH}HH²HÐHåH +ûHIIª,I¨×I€JˆJ‘JšJ J=¿JýJ@KÕ[L–1MVÈMdNd„NtéNs^OÒO7ëO#P?PTPcP +wP±‚P4Q²HQûQ R$R-RHKR ”R +¢R­R¾R)ÚR S$%S%JS pS}SœS(­SÖSöSùSDT?MTWTåTíT)óTU2U7U[!S[u[ Œ[ –[·[É[ ß[ +ì[ ÷[+\-\>\Q\ Y\f\}\ Œ\&˜\ ¿\É\ã\þ\]#]B]V] +k] v]ƒ]“]§]¶]É]ã]ò] ^(^ :^F^b^w^$‡^¬^ Á^$â^__:_I_^_!p_%’_8¸_ +ñ_ +ü_&`*.`(Y`(‚`«`¼`Î`ä` +ú` a;aMa Ua cama |aŠa&“aºaÊa èaöa bbb&b7>bvbŽb­b#Çbëbc!c&0cWc\clc}cScäcëcþc d)dHdZd `d"ld4d:Ädcÿd ceme re)€e ªe´eCÑe f8"f[flf ‡f “f"Ÿf$Âf çfóf7ùf1gPg*bg%g³g ÆgÔgóg h h4hRhmh$€h¥h·h>Ôhi/i?iZi%mi +“iži°iÍiêiúi j +j&j?j#Rjvj‡j—j ®j-Ïjýjk!k@k Pk3^k,’k¿kÙkÞkükl+l6‘lu ¼-„î6•6zž  ¸=æmb™¡½D˜(Cµ· ˜ ?ÍìÏ ^´õ%J~ a}ùÅ +‚ _ágf;¬œó Oä‚à\mÆnm¯Ïë{;¹¡˜¸Ó°•—`­9ÿo)F 5ÇRV1ý-Lj Ý'HÐ Lö ’Aò&õ2Z »  {™ ¹gà³; bê ”éâ»/n§dÒ|\7j¡Ë«¤.cåxö ¿T cáH_ ùÅ©Ö4 ”™/QGgôï—=ïÌE6ªöé« bá5Âi€(ë’ +ôqŒ ¹²¯)ç÷zÎ ÷ ø éôÕƒˆ‡‘·ÐÈ&z ØÄü©% ò DSŽVÿvßP–Ãœ;e2h +É ¦Zz ÆåôÔ–±V’× +=>?DLä¼{½ æ$QÓ zixBñ• +9 ”#‹øÁn ¢…õœ ¤ÂŒ9BY + s gf¢ – ¡· +ŠKZmS… k 'F/1Š üØòè#¢ø£ƒiZ–(èW4 Õ†ZPðö6ÝÏ kÇ~:–h ¨ÃëŸït7ûôÖü’ý¥|huÈõÅŠMtíFÛâU…r®ßú. ¿î¦T©÷î ˜8%ÍÏ"´ û¨ññäÄÙj @EZ÷^–I ÎL»’ë+_RìË  t·"f <Å ³ Z™0 õßc ¿í l¢¥) &Ó® !CƸÝ'9¤ãУs©†a”ÇNÂ"É¥Ô#5Q9N K‰H È0õ›°pzÊ`Ú) +ï=aq†Šw2*3bó 0ÇÞß>Ù´ãWñùøþÜ %Ž?ÏM ØÞ飯íPØâ¿ÁšY>Tw= +ÀJ´)ÙC ’~­³c+4YrɾP V† ~5oì ƒ (Do[ +—À ~Ižà&TL9ãÚùêaº$u!ÆUUÞ«‹â¼²”FL[!÷øOýyØEw ­nj¡¤D›C +…ÿ>“Π¨re«+9Ý*Ë HÒ °çÉFà,|i¦å €¹r@ÍNV £–ð # xcñ(¼¡Gй­0Îî±E •n,e ÚÿêªÕÃØÿÅÐk3ªÔÇ ^;3µ ëO-$ß‚°MÝ­—Ô&Ö\µê´‚6$ Áîø­ÄÒƃ : ªo*į}Ê4Kþ  $ ¦¥—¤fA-¡oiùÑ .““:šó›èÎ/#ÐìÓ”ë䋲 X :Ilû½Ÿ¢—F…ýÜ çk¤¬³£t¥s£ÊBÛ¯” 0åXq”Ê/Üt» ²«èÈQ ¼¿Òº óšŸ 0r¼ Qjàâ ÿu~Šüá+ËI7KÅ»ó²ßÜ ‘7 4*¼ +@‹ „JÓêá °¥ ŒX˜]¬”µ‡%\ •êLO©rA×Õ³Y†Ë Š'ÂÄEÆæCÂÈ¡ =3 „ÕvQ¤Ý ¡¿Uíw ï‘úB…8sGYNÑ“æ + ðå€p þx FS\Š ‰˜¦}U_+¶ð1yK ÓdPyüBÑ[Û i À'lé8ébóZOwY –m,Ì á{­D¾I[k·ÊPØuºö—ç[dÙ* Íòùm¹v-kÄ™ô (qgHŒì¨ŒŒ}²¨  ž¤æúÊ©öWè w6X4 cT pI ü$Οoå-4ùI«.ïA €¦±A]p¢Ñ=ºç }ç?^ çš*mË*k‰  NaBz`yNR®‰³í  + ² `/ Ô{à,†¶ó­œ<{ u¾‘è2áÚûŒRûë Ñ<°ç±sg⦠¼ø4Ô¨^´½a[6h<{{"ÞœY¬½í@tH ëß)CXM7¾\â fà @sÍìb‰‚ö¿ äb_ …þh8Fœí ÷"nÓ‘Qj+,ƒg½\'§B¬eV}]Áh¨¹ Œ¤ 1U†Á?)±^º¶ ð@  +×#‘ü ÀΆmx?€~ Á lŽâÀ ø} äo8 < ôݯØãfÖ-±›h× ¥Ú à UÛ¶cš‘ ˆÂ€×¾ iˆ[G;¾› Ñ'Í? ž(U 8§!²)l µläRL Ûôv›D}bg ƒ¬#V‡[‹a +ÒÜ7 ®ó_c!1KÄlí +’ ä d÷0Þ€ .^/Æ%›É" ÷] 1 K +|lȱR<|! ÁšÒpÆfÐÔøGÉ"¬JŠ…±|‘×.˜YÄ‚š + ’!3Õ• åª*ÔŸû\ÔA ˜ãŸv'  ÜÌ3ìîùò‰‰ =J íˆw2(ðXµ×3/ÿÇ3,& öÅ:]<Ä oöè +]à Gÿec„J™™h &sT ¶výkËjVO1êx·Xp +ƒ‘“ûd V ˜2nÞPŠeíª™,  +_ +"z‡Ô Ì$šWYß ÇÌžvëU¦rºd§ú çÌ*VûÓ|Þ2 ÝÖ®§s•ñ+¸ðχ‰= þ„¨€@èD‡ †Ÿ5ù _!»fúè; µK»½•%6ÜÌÛÈ 5ÑZS®úp Òq¾>3 +€³uãx1ê3-P:óôñ 7¨X< + +JºÑÒuu],ã ñœÀD &þ- ýAò›™ý ÌÆXSj +] ;Þ þˆ% æ œj©Ë³a § W ÿaiSˆpô¦5,£ˆ ¬Íð$¸ò¢“H™§Æ k­1TJŽ ¹ Ï +“Çãñ7d > +x¼€X ‹„–yÙËiž·àÕtîÖ’æ4` õ@ZÛÙÓ讋‡ûþÿ Ïn·'H¢;:®//†[ „ KRÑr7) +¶´ @Òßt¯ï:¾×Ú,ü¶‹›¯êöúeµz»~Ÿï 5 ÊÖÙ؉´_üRÊ ïŽ2}&º+#ÈÖ úäåá‰Ñé Ú ÉÉþ½y© AÛ58v|¶`W^ ÊŽþ wŽøÓ`Üj2Eús“ òÍ õ ½Þ¯ ÖÍ«Íq åSìÈcæ¬Mõù{µ?ºe °j— .Žqâ÷ßÃWƒáS FyW½I  +»`À·N [÷wL\S«ã9?’ ækÝ9²¿¸ÏêCªF± Ob +8BÙ ñ(¼Ò„À|JÚ:Ù§¬ #n?}dJ O O¶°æ!‚à\ý£ q "d8©eN ° äd­ Î C¨0îž³$bEž *L  µ0#öˆÉ zB éAQr “Àx MÕõ Ù¿Œð<± Á×ï&Ú Gf‡£‚å +-~ÈúpÜ1®N£¾^D‹E ! : ÀGP éMP| ”›0E( ÛWГòQ‚qÕIJCº>>w'. ´ÊiîØ 8@6 ã«ªÕ ˆ°ÐžÂTÁs +Tý"ø AŒâ„^®§ +HR òÅŽeþv ×x̯îG «2InŠ¸M`p³ LÉ lv‚Þ‡oá]à +üëhýUmƒÜ–ÎR¹¢hÁo m ž ©HŃ¿¥—W +g¥—Ëy ç=œ%B§•K5 ˜Ð¤_~SCM´Ï…O Û4TŸû „I‡Ý <•yÌ{gó ‹ÅªQ¥ œÎª …¡ÇÚà·M9ì.éf >ŽrŸ;qN¦)ì%Ö$u   ðšEyt tš ¹Y¸7a + +Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz, +and the rest of the Gimp-Print Development Team. + +Please visit our web site at http://gimp-print.sourceforge.net. + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +If you come up with some nice Presets, +(or Brushes and Papers for that matter) +feel free to send them to me +for inclusion into the next release! + Released under the GNU General Public License (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 unsaved Gfig objects. Continue with exiting?%d x %d%s -- Print v%s%s copy'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a HRZ 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(Desc)(None)(none)** Thank you for choosing GIMP **1 (nonsense?)256 (nonsense?)/Edit/Copy to Clipboard/Edit/Paste from Clipboard/File/Page Setup/File/_Mail Image.../File/_Print/File/_Print.../Filters/Animation/Optimize (for _GIF)/Filters/Animation/_Find Backdrop/Filters/Animation/_Optimize (Difference)/Filters/Animation/_Playback.../Filters/Animation/_Remove Backdrop/Filters/Animation/_UnOptimize/Filters/Artistic/Oili_fy.../Filters/Artistic/_Apply Canvas.../Filters/Artistic/_Cubism.../Filters/Artistic/_GIMPressionist.../Filters/Blur/Gaussian Blur (_IIR).../Filters/Blur/Gaussian Blur (_RLE).../Filters/Blur/_Blur.../Filters/Blur/_Motion Blur.../Filters/Blur/_Pixelize.../Filters/Blur/_Selective Gaussian Blur.../Filters/Colors/C_ompose.../Filters/Colors/Channel Mi_xer../Filters/Colors/Color to _Alpha.../Filters/Colors/Colorcube A_nalysis.../Filters/Colors/Map/Adjust _FG-BG/Filters/Colors/Map/Alien Map _2.../Filters/Colors/Map/Color Range _Mapping.../Filters/Colors/Map/Colormap _Rotation.../Filters/Colors/Map/_Alien Map.../Filters/Colors/Map/_Color Exchange.../Filters/Colors/Map/_Gradient Map/Filters/Colors/Map/_Sample Colorize.../Filters/Colors/Smoo_th Palette.../Filters/Colors/_Border Average.../Filters/Colors/_Colorify.../Filters/Colors/_Decompose.../Filters/Colors/_Filter Pack.../Filters/Colors/_Hot.../Filters/Colors/_Max RGB.../Filters/Colors/_Semi-Flatten/Filters/Colors/_Value Invert/Filters/Combine/_Depth Merge.../Filters/Combine/_Film.../Filters/Distorts/En_grave.../Filters/Distorts/Newsprin_t.../Filters/Distorts/P_olar Coords.../Filters/Distorts/Vi_deo.../Filters/Distorts/W_hirl and Pinch.../Filters/Distorts/Wi_nd.../Filters/Distorts/_Blinds.../Filters/Distorts/_Curve Bend.../Filters/Distorts/_Emboss.../Filters/Distorts/_IWarp.../Filters/Distorts/_Mosaic.../Filters/Distorts/_Pagecurl.../Filters/Distorts/_Ripple.../Filters/Distorts/_Shift.../Filters/Distorts/_Value Propagate.../Filters/Distorts/_Waves.../Filters/Edge-Detect/_Edge.../Filters/Edge-Detect/_Laplace/Filters/Edge-Detect/_Sobel.../Filters/Enhance/Des_peckle.../Filters/Enhance/Des_tripe.../Filters/Enhance/_Deinterlace.../Filters/Enhance/_NL Filter.../Filters/Enhance/_Sharpen.../Filters/Enhance/_Unsharp Mask.../Filters/Generic/E_rode/Filters/Generic/_Convolution Matrix.../Filters/Generic/_Dilate/Filters/Glass Effects/Apply _Lens.../Filters/Glass Effects/_Glass Tile.../Filters/Light Effects/Su_perNova.../Filters/Light Effects/_FlareFX.../Filters/Light Effects/_GFlare.../Filters/Light Effects/_Lighting Effects.../Filters/Light Effects/_Sparkle.../Filters/Map/Map _Object.../Filters/Map/_Bump Map.../Filters/Map/_Displace.../Filters/Map/_Fractal Trace.../Filters/Map/_Illusion.../Filters/Map/_Make Seamless/Filters/Map/_Paper Tile.../Filters/Map/_Small Tiles.../Filters/Map/_Tile.../Filters/Map/_Van Gogh (LIC).../Filters/Map/_Warp.../Filters/Noise/S_catter HSV.../Filters/Noise/Sp_read.../Filters/Noise/_Hurl.../Filters/Noise/_Noisify.../Filters/Noise/_Pick.../Filters/Noise/_Slur.../Filters/Render/Clouds/_Plasma.../Filters/Render/Clouds/_Solid Noise.../Filters/Render/Nature/Ifs_Compose.../Filters/Render/Nature/_Flame.../Filters/Render/Pattern/CML _Explorer.../Filters/Render/Pattern/_Checkerboard.../Filters/Render/Pattern/_Diffraction Patterns.../Filters/Render/Pattern/_Grid.../Filters/Render/Pattern/_Jigsaw.../Filters/Render/Pattern/_Maze.../Filters/Render/Pattern/_Qbist.../Filters/Render/Pattern/_Sinus.../Filters/Render/Sphere _Designer.../Filters/Render/_Fractal Explorer.../Filters/Render/_Gfig.../Filters/Toys/Gee-_Slime/Filters/Toys/Gee-_Zoom/Filters/Web/_ImageMap.../Image/Transform/_Autocrop/Image/Transform/_Guillotine/Layer/Align _Visible Layers.../Layer/Colors/Auto/Stretch _HSV/Layer/Colors/Auto/_Color Enhance/Layer/Colors/Auto/_Normalize/Layer/Colors/Auto/_Stretch Contrast/Layer/Transform/_Zealous Crop/Layer/Transparency/_Threshold Alpha.../File/Acquire/From Clipboard/File/Acquire/_Screen Shot.../File/Acquire/_TWAIN.../Xtns/_DB Browser/Xtns/_Plugin Details/Xtns/_Unit EditorA 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_daptive SupersamplingA_ddA_dd BorderA_dvancedA_llA_ll TilesA_lpha-weightingA_lpha:A_mbient:A_mplitude:A_ngle:A_nimateA_ppendA_uto Update PreviewA_utomaticA_verage under brushAbbreviationAboutAbout AlienMapAbout AlienMap2About GfigAbout Gimp-Print About ImageMap...ActionAd_vancedAdaptiveAdaptive S_upersampleAddAdd Additional GuidesAdd FractalExplorer PathAdd Gfig PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust Output...Adjust 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 choosen)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 RangeAggressive RLE +(Not Supported by SGI)AirbrushAl_ternateAl_ternate TilesAlgorithmAlienMapAlienMap2AlienMap2: Transforming...AlienMap: Transforming...Align Visible LayersAllAll JNGAll PNGAll SelectionsAll Values are Fractions of the Film HeighAll 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: Anti-ClockwiseAntialiasingAntialiasing quality. Higher is better, but slowerApplied to TileApplies the paper as it is (without embossing it)ApplyApply CanvasApply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Approx. Circles/EllipsesApprox. circles & ellipses using lines. Allows the use of brush fading with these types of objects.Arc as:Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea ListArea SettingsArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _BottomAt _TopAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...Auto_stretch to Fit Value RangeAutomaticAutomatic Pre_viewAvailable Images:B/L-Freq_uency:B/L-Pha_seshift: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:Before and AfterBentBest for images dominated by regions of solid colorBevel EdgesBezier SettingsBili_nearBl_ack & WhiteBlackBlack and WhiteBlack:Blend SettingsBlindsBlueBlue channel: use linear mapping instead of any trigonometrical functionBlue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:BlurBlur HorizontallyBlur ParametersBlur RadiusBlur Radius:Blur TypeBlur VerticallyBlurb:Blurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom EdgeBottom-_RightBottom:BoxBrightness:BrowseBrushBrush Preview:BumpBump MapBump-mapping...Bumpm_ap Image:BumpmapBy DATAMIN/DATAMAXCML File Operation WarningCML_explorer: evoluting...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell Content:C_ell Size:C_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'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 gray or indexed color images.Cannot operate on indexed color images.Cannot operate on unknown image types.Cannot read extension from +'%s'Cannot read footer from +'%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.Cannot save to a folder.Cell Size:Cell-_Padding:Cell-_Spacing:CenterCenter _x:Center _y:Center of FlareFXCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeCh. Sensitivity:Change angle of the blue/luminance channelChange angle of the green/saturation channelChange angle of the red/hue channelChange frequency of the blue/luminance channelChange frequency of the green/saturation channelChange frequency of the red/hue channelChange intensity of the blue channelChange intensity of the green channelChange intensity of the red channelChange 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 Independed ParametersChannel 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 correct PPD filename for your printerChoose the dither algorithm to be used. +Adaptive Hybrid usually produces the best all-around quality. +Ordered is faster and produces almost as good quality on photographs. +Fast and Very Fast are considerably faster, and work well for text and line art. +Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _Depth in Percent:CirclePaletteCleanup...ClearClear TransparentClockwiseClose curve on completionClosedCo_lorCo_lor AveragingCo_lor:Co_lorsCo_mment:Co_mpensate for DarkeningCo_mplexity:Co_mpress TD tagsCo_mpression Level:Co_ntiguous RegionCo_ntoursCo_ntrast:Col_umn:CollectCollection DetailsColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Selection DialogColor TransformationColor _Variation:Color _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 TypeCompression 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 ParametersCopy 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(c) 1999-2003 by Maurits RijkCopyright:Cos_ineCosineCould 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 locate help documentCould 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 Guides...Create New ImageCreate _HistogramCreate _New LayerCreate 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 Gfig object collection for editingCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently seleted unit as template.Create archCreate 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:CubismCubistic TransformationCumulative Layers (Combine)Curl LayerCurl LocationCurl OpacityCurl OrientationCurrent:Curve BendCurve Bend...Curve TypeCurve for BorderCurveBend operates on layers only (but was called on channel or mask)Custom Color:Custom GradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDB BrowserDCT method (Speed/quality tradeoff):D_eform Amount:D_iffuse:D_ivisor:DarkerDarker:Data CompressionData FormattingDate:DecomposeDecompose to _LayersDecomposing...DefaultDefault Chunks Type:Default Frame Delay:Default Frame Disposal:Default 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 between Frames where Unspecified:Delay inserted to prevent evil CPU-sucking anim.DeleteDelete FractalDelete GFlareDelete Gfig DrawingDelete PointDelete an objectDelete currently selected Gfig Object collectionDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDelta function steppedDensity:Depth FirstDepth Map:Depth MergeDepth-merging...Deriving Smooth Palette...Description:Deselect _AllDespeckleDespeckling...Destination Channel:Destination color rangeDestination:DestripeDestriping...Details <<Details >>Deviation treshold:DiamondDiffraction PatternsDiffuse:Diffusion Dist.:DigitsDimension:DimensionsDimensions:DirectionDirection VectorDirectionalDirectional LightDirectionsDirections:DisplaceDisplace OptionsDisplacement Map:Displacing...DisplayDisplay 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?Document Not FoundDraw Name:Draw a Border of Spikes around the ImageDraw all objects on one layer (original or new) or one object per layerDraw lines in reverse orderDraw on:Draw type. Either a brush or a selection. See brush page or selection page for more optionsDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws a maze.Draws lines between the control points. Only during curve creationDrop ShadowEOF encountered on EOF encountered on readingE_levation:E_nable AntialiasingE_nable Bump MappingE_nable Environment MappingE_xtendEach SelectionEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Gfig object collectionEdit Map InfoEdit Map Info...Edit ObjectEdit fractal nameEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_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 changesEncapsulation:EndPage failedEngraveEngraving...Enter Gfig Object NameEnter a name for the copied GFlareEnter a name for the new GFlareEnter the correct PPD filename for your printerEnter the correct 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/grey imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in copy layer for onlayersError in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError 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 Channels:FG ColorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:F_lare Intensity:FactorFade out:Failed 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 Compose file.File '%s' exists. +Overwrite it?File '%s' is corrupt. +Line %d Option section incorrectFile '%s' is not a FractalExplorer fileFile already exists. + Do you really want to overwrite? File exists!File not in a supported format.Filename:Filename: %sFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill Opacity:Fill Type:Fill after:Fill with parameter kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...Finding XY gradient...First ColorFirst Destination ColorFirst GfigFirst Source ColorFit into value rangeFix SeedFixed-direction-vector map selection menuFlameFlame works only on RGB drawables.FlareFXFlipFlippingFloating-PointFlow Step %d...FlowingFo_reground ColorFocus the brush strokes around the center of the imageForce baseline JPEG (Readable by all decoders)ForegroundFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame (%i)Frame Disposal where Unspecified: FromFrom ColorFrom GradientFrom Reverse GradientFrom paperFrom:Front:FullFunctionFunction Type:Fuzzy SelectG-QbistG/S-Fr_equency:G/S-Ph_aseshift:GEE-SLIMEGEE-ZOOM: The Plug-In Formerly Known As "The GIMP E'er Egg"GFLI 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 Comment:GIF OptionsGIF WarningGIF: Undocumented GIF composite type %d is not handled. Animation might not play or re-save perfectly.GIMP ExtensionGIMP Help BrowserGIMP Plug-InGIMP Table MagicGIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBA +G_lowG_reen Threshold:Gamma:General OptionsGeneral PreferencesGenerates a maze using either the depth-first search method or Prim's algorithm. Can make tileable mazes too. See %s for more help.Get Sample ColorsGfigGfig - GIMP plug-inGfig Brush SelectionGfig Layer %dGfig Object Name:Gimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient Scale:Gradient map selection menuGradient:GradientsGraph of the current settingsGraphic AntialiasingGrayGrayscaleGreenGreen channel: use linear mapping instead of any trigonometrical functionGreen:GreyGridGrid Color:Grid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Type:Grid Visibility and TypeGrid spacing: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 OptionsH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (Pixels):Height of the paper that you wish to print toHeight:Help:Hey where has the object gone ?Hide Control PointsHigh _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...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:I don't CareIDIIR Gaussian BlurITER:IWarpI_ntensityI_nteractiveI_nvert BumpmapI_nverted ImageIcon Name:If 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 automaticallyIfsComposeIfsCompose OptionsIfsCompose: BlackIfsCompose: BlueIfsCompose: GreenIfsCompose: RedIfsCompose: TargetIllusionIllusion...Im_ageImage / Output SettingsImage ComposingImage PreviewImage SelectionImage SizeImage Spac_ing:Image Type:Image TypesImage _Height:Image commentsImage dimensions: %d x %dImage is not a gray image (bpp=%d)Image must be 256x240Image must be RGB or GRAYImage name:Image size has changed.Imagemap plug-in 2.0Images for the Cap FacesImages have different sizeImport _PathsImport path elements of the SVG so they can be used with the GIMP path toolIn:In_tegration Steps:In_verseInchInclude decorationsInitial Value:Ink Type:Input Levels:Ins DateInsert PointIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInversionInverts the Papers textureIsometricIt is highly recommended to add + (gimpressionist-path "%s") +(or similar) to your gimprc file.Iterations:JNGJNG + Delta PNGJPEG Compression Quality:JPEG Smoothing Factor:JPEG previewJigsawJigsaw StyleJuliaKeep O_dd FieldsKeep _Even FieldsKeep image's valuesKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_ight Type:L_inearLambdaLandscapeLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes previous layer to be copied before the draw is performedLeft 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 strokeLig_ht Color:LightLight SettingsLight _Direction:Light 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 And DarkerLighter:Lighting EffectsLighting Effects...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 Parameters fromLoad PostScriptLoad QBE file...Load Windows MetafileLoad a fractal from fileLoad a single Gfig object collectionLoad the curves from a fileLoading Screen Shot...Lock _ThresholdsLock on GridLogarithmicLoopLoop foreverLower LeftLower RightLower T_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:MNG OptionsM_aximum Value:M_inimum Height:Ma_x Depth:Ma_ximum Height:Magen_taMagentaMagenta:Magenta_KMagnitude Map:MainMain 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 TypeMap file formatMap from _TopMap to ObjectMap to:Mapping colors...MarbleMask FileMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max Undo:Max. Memory:Maximum height for bumpsMaximum size:Media Size:Media Source:Media Type:Menu PathMenu Path/NameMenu Path:Merge Gfig Object collection into the current edit sessionMerge Imported PathsMerging...Midtones:MillisecondsMin (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 height for bumpsMinimum size:Mirror the active curve to the other borderMiscMisc Arrange:Miscellaneous OptionsMo_dify Green/Saturation ChannelMod. Rate:Mod_ify Blue/Luminance ChannelModeMode _1Mode _2Modify CurvesMor_e OpaqueMore Blac_k (Smaller Value)More Sat:More T_ransparentMore _White (Larger Value)MosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMultipleMultiple (57):Multiply gradient (0,1)Multiply rand. value (0,1)Multiply rand. value (0,2)Mutation Dist.:Mutation Rate:My first fractalNL FilterNL Filter...NULLNameName:NewNew FractalNew GFlareNew Gfig ObjectNew Printer...New SeedNew UnitNewsprintNewsprint...No %s in gimprc: +You need to add an entry like +(%s "%s") +to your %s file.No CompressionNo LightNo Options...No colorsNo data capturedNo matchesNo memory for mapping colorsNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNoisifyNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Not found "%s": used "%s" insteadNothing to crop.Number of Cells:Number of ColorsNumber of M_RU entries (1 - 16):Number of Plugin Interfaces: %dNumber of Sides/Points/Turns: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_nly ForegroundO_pacity:O_ptionsO_rientationO_ther optionsO_thersO_utput Channel:O_utput LPI:O_verlayO_versample:ObjectObject DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & SquaresOffset (1):Offset _Angle:Offset all vectors with a given angleOffset:Oil Painting...OilifyOn Edges:On Film:One Frame per Layer (Replace)Only B_ackgroundOnly one unique colorOp_acity:Op_timal EstimationOp_tionsOpacity:OpenOpen FileOpen IFS fileOpen RecentOpen SVGOpen failedOpening %sOpening '%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 IntensityOriginal:Ot_herOther OptionsOut:OutputOutput Levels:Output Type:Outside TypeOverlap:OverlayP(ower Factor):PNGPNG + Delta PNGPNG Compression Level:PNM 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:PPD File?PPIPS DiamondPS Square (Euclidean Dot)P_aperP_reviewPage %dPage Curl...PageSetupDlg failed: %dPagecurl EffectPages:PaintPaint Mode:Paint edgesPainting...Paper Preview:Paper TilePaper Tile...Parameter SettingsParameter k:ParametersParameters were Saved to '%s'PastePastedPasting...PatternPencilPercentPercentage of pixels to be filteredPhongPhotographPieces:Ping PongPixel Value ScalingPixel _Height:Pixel _Width:PixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlayback: Plot the Graph of the SettingsPlugin DescriptionsPluralPo_latization:PointPoint LightPolarPolarizePolarizing...PolygonPortraitPos X:Pos Y:Pos Z:PositionPosition 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 _LuminosityPreserve the original image as a backgroundPressure:PreviewPreview (1:4) - Right Click to JumpPreview (in image window, will modify image's undo history!)Preview OptionsPreview SizePreview _Size:Preview as You DragPreview: Click Inside to Pick "From Color"Prim's AlgorithmPrint Color AdjustPrint To File?Print 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 Name:Printer SettingsPrinter doesn't support bitmapsPrinting...Probability Gradient:ProgressivePropagate ModePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:R/H-_Frequency:R/H-_Phaseshift:RGBRGB Pattern TypeRGBARGBA/GRAYA drawable is not selected.RLERLE CompressionRLE Gaussian BlurR_adius:R_andom Hue:R_andom Seed:R_andomization %:R_andomization (%):R_ecursiveR_edR_ed Threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Rando_m Saturation:RandomRandom Hurl 1.7Random Pick 1.7Random SeedRandom Seed:Random Slur 1.7Random _Seed:Random sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)Range High:Range Low:Ranks:Ratio _X:RawRays Paint OptionsRe_dReads the selected Preset into memoryRealtime PreviewRecompute _CenterRecompute preview imageRectangleRedRed channel: use linear mapping instead of any trigonometrical functionRed:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative Probability:Release 2.0Relief:Reload ImageRemap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render OptionsRender Scalable Vector GraphicsRendered SVGRendered WMFRenderingRendering %sRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsRescan for Gfig ObjectsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution and quality of the printResolution:Restart frequency (rows):Restart markersResulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)ResultsReverse LineRevert to the original imageRewindRight Border:Right EdgeRight:RippleRippling...Ro_tation:Ro_w:Rotat_e:Rotate X:Rotate Y:Rotate Z:Rotate/ScaleRotatedRotating the colormap...Rotating...RotationRotation Angle:Rotation 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_how CursorS_hrinkS_ineS_inuosidal MapS_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:SaveSave +SettingsSave (middle transform) as QBE file...Save Background ColorSave BrushSave Channel Mixer SettingsSave Color _Values From Transparent PixelsSave Comme_ntSave Creation TimeSave Creation _TimeSave CurrentSave Curve Points to fileSave EXIF dataSave FileSave FlameSave Fractal ParametersSave GammaSave Gfig DrawingSave ImagemapSave Layer O_ffsetSave OptionsSave Parameters toSave ResolutionSave _Background ColorSave _GammaSave _ResolutionSave active fractal to fileSave as BMPSave as BrushSave as Brush PipeSave as C-SourceSave as GIFSave as GIconSave as IFS 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 current...Save the current settings to the specified fileSave the curves to a fileSave: No filename givenSavedSaving '%s'...Saw_toothSc_attering:Scale (log 2):Scale 1:Scale 2:Scale Hue by:Scale Value by:Scale X:Scale Y:Scale Z:Scale drawings to images sizeScale the print to the number of dots per inchScale the print to the size of the pageScale to ImageScale:Scaling:Scatter HSVScattering HSV...ScreenScreen ShotSe_lection OnlySearch by NameSearch by _BlurbSearch by _NameSearch:Searching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond ColorSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSecondary OptionsSeconds DelaySectorSee %sSeed of Random (only for "From Seed" Modes)Seed:SegmentSegment SettingSelec_tion In ContextSelectSelect AllSelect ColorSelect Contiguous RegionSelect Film ColorSelect HTML fileSelect Image FileSelect Lightsource ColorSelect NextSelect Number ColorSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect allSelect contiguous regionsSelect existing areaSelect folder and rescan Gfig object collectionsSelect 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 Type:Selection is %dx%dSelection size is not even. +Tileable maze won't work perfectly.Selection to Path...Selection+FillSelection: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 to MailSeparate to:September 31, 1999Set Brush...Set 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_dowsShade under CurlShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharpenSharpening...Shear:ShiftShift _Amount:Shift _HorizontallyShift _VerticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow ColorShow GridShow ImageShow Line FrameShow PositionShow Preview _WireframeShow SelectionShow all objectsShow area URL _tipShow area _handlesShow next objectShow previous objectShow/hide preview wireframeSi_ngular:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize of paper that you wish to print toSize:Size: %ld bytes (%02.01f kB)Size: unknownSizes:Slowest, but most accurate and smoothest color for continuous tone images and photographsSmearSmoo_thingSmoot_hSmooth PaletteSmooth SamplesSmoothing X gradient...Smoothing Y gradient...Smoothing:Smoothness of AliasingSmvectorsSnap to GridSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySolidSolid ColorsSolid 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 Channel in File:Source Channel:Source color rangeSource...Sp_ike Points: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 DesignerSphericalSpi_ke Angle (-1: Random):SpiderSpik_e Density:Spike Thickness:SpiralSpiral Number of PointsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStar Number of PointsStart Offset:Start _Index:Start angle:StartPage failedStepStep Size:Stop 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:SubtractSuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From Seed" with the last SeedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelT_hreshold:T_ilableT_ile Saturation:T_ile Size:T_ransparent BackgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarga OptionsTargetTel_netTemporaryTemporary ProcedureText AntialiasingTextureTexture PropertiesTexture:TexturesThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMPressionistThe GraphThe 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 of the first brush to createThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF +contains layers which extend beyond the actual +borders of the image. This isn't allowed in GIFs, +I'm afraid. + +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 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.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 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.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:Til_e Spacing:TileTile Source ImageTile _Height:Tile _Neatness:Tile _Width:Tile source image: useful for infinite planesTile to New SizeTileItTileableTiler...Tiling PrimitivesTiling...ToTo ColorTo L_eftTo _BottomTo _PolarTo _RightTo _TopTo:ToolsTop 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. +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 LeftUpper RightUpper left _x:Upper left _y:Upside downUs_e Macros instead of StructUse Current Gradient +instead of FG/BG-ColorUse Cyclic RangeUse GIMP Guides...Use Gimp GuidesUse Mag MapUse Original +Image SizeUse SubcolorsUse _1 Byte Run-Length-EncodingUse a transparent background; Only the strokes painted will be visibleUse average valueUse cosine-function for blue component.Use cosine-function for green component.Use cosine-function for red component.Use cosine-function for this color componentUse function for blue/luminance componentUse function for green/saturation componentUse function for red/hue 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 blue component.Use sine-function for green component.Use sine-function for red component.Use sine-function for this color componentUse the Background ColorUse the Color of the ImageUse the Foreground ColorUse the brush/pencil or the airbrush when drawing on the image. Pattern paints with currently selected brush with a pattern. Only applies to circles/ellipses if Approx. Circles/Ellipses toggle is set.Using:V_alueValueValue Invert...Value PropagateValue Propagating...Value VariationsValue:Van Gogh (LIC)Van Gogh (LIC)...Vector Mag:Vector _Angle:Vector _Length:VectorsVer_tical Base:VerticalVertical ColorVerticallyVery DarkVideoVideo/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_SW_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.What is Gray?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 (Pixels):Width of the paper that you wish to print toWidth:WindWindowsWith BG of: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 occuredX scale (size)X:XBM OptionsXJT file contains unknown layermode %dXJT file contains unknown pathtype %dXJT file contains unknown unittype %dXMAX:XMIN:XPM file invalidXY 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.You must specify either horizontal or vertical (or both)Z scale (size)Z:ZealousCropping(tm)...ZoomZoom OptionsZoom Scale:Zoom ToZoom inZoom in (make image bigger)Zoom outZoom out (make image smaller)_3x3_Abbreviation:_Adaptive_Additive_Advanced_Alpha_Alpha Threshold:_Alpha Trimmed Mean_Alpha:_Ambient:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Automatically convert_Azimuth:_Background_Background Color_Base URL:_Bevel Width:_Bilinear_Black_Black Level:_Blacken_Blast_Blend_Blue_Blue:_Blur Radius:_Border:_Bottom-Left_Bottom:_Box_Brightness_Brightness:_Brush_Bucket Size:_Bump Map_Bump Map:_Bumpmap_Copy_Deflate_Deform Radius:_Depth:_Derivative_Description:_Detail:_Differential_Diffuse:_Digits:_Displacement:_Distorted_Division:_Do Preview_Dots_Edge Enhancement_Edit_Effect Image:_Elevation:_Emboss_Encapsulated PostScript_Entire Image_Environment Map_Explicit Tile_Exponent:_FG/BG Lighting_Factor:_Factory Defaults_File_Filename:_Filter Length:_Fit Height to Images_Font:_Force_Force Tiling?_Foreground & Background_Foreground Color_Foreground to Peaks_Fractals_Free_Frequencies_Ftp Site_Gamma:_General_Generate Full HTML Document_Gopher_Gradient_Gray:_Green_Green:_Grey_Grid Size:_Grow_HSL Color Model_Height_Height:_Help_Hex_Hidden_Highlight:_Hold the Maximal Channels_Holdness:_Hole Offset:_Horizontal_Horizontal Style:_Horizontal:_Horz. Spacing:_Hue_Hue Rotation:_ID:_Ideal_Identifier Prefix:_Ignore_Ignore the Bottom Layer even if Visible_Inch_Independent_Input SPI:_Insert_Interlacing (Adam7)_Invert_JPEG_JavaScript_Keep Aspect Ratio_Keep NCSA circles true_Keep Original Surroundings_Keep Sign of Result (one Direction only)_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Lens Refraction Index:_Light_Limit Line Width_Linear_Linear Map_Lines_Link_Load Defaults_Lock Channels_Lower_MIME_Make Surroundings Transparent_Map Backwards_Mapping_Mask File Extension:_Mask Size:_Material_Max (%):_Max Depth:_Max. Delta:_Menu_Merge_Middle Value to Peaks_Midtones_Millimeter_Minimum Value:_Mirror_Misc Ops._Modify Red/Hue Channel_Monochrome_Move_Natural Color_No. Across:_Noise Magnitude:_None_Normal_Num Segments:_Number Height:_Pack Bits_Parameters_Period:_Phase:_Pinch Amount:_Ping Pong_Pitted Surfaces_Plural:_Polygon_PostScript Level 2_Prefixed Name:_Preserve Luminosity_Presets_Preview_Preview Once_Preview!_Prewitt_Prompt for area info_Propagating Rate:_Psychobilly_RGB_RGB Color Model_RLE compression_RLE encoded_Radial_Radius:_Random Hue:_Random Seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Rendering_Require default URL_Retain Tilability_Right_Right Border_Roberts_Rotated_Saturation_Saturation:_Save Comment to File_Save Defaults_Search Depth:_Search:_Second Flares_Selection_Sender:_Set Surroundings to Background Color_Set Surroundings to Index 0_Settings_Sharp edges_Sharpness:_Show Cursor_Sine_Size_Size:_Smear_Snap-To Grid Enabled_Sobel_Specular:_Speed:_Spherical Map_Spike Length:_Spokes:_Spot Function:_Square_Squares_Staggered_Strength:_Symbol:_Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold:_Tile Bumpmap_Tile Size:_Title:_Tools_Top Start at:_Top-Right_Top:_Transparent_URL to activate when this area is clicked: (required)_Undo %s_Update_Upper_Upper Border_Upper Threshold:_Use Background Color_Use Cellspan_Use GLib Types (guint8*)_Use Intensity Algorithm_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_Whirl Angle:_White_White Level:_Wide-striped_Width_Width:_Wind_With White Noise_Wrap_Wrap Around_Write Hot Spot Values_X Displacement:_X Offset:_X Scale:_X Size:_X-Offset:_X10 Format Bitmap_X:_Y Displacement:_Y Offset:_Y Scale:_Y Size:_Y-Offset:_Y:_Yellow_Z:_Zoom_Zoom:`Default' is created.a _Single Windowafteralphablackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fcan't read color entriescmcyancyan_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 steppedload_image (xwd): XWD-file %s has format %d, depth %d +and bits per pixel %d. +Currently this is not supported. +lpeek.mrijk@consunet.nlluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnonenot 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 Alphavaluewrite error occuredx (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp20-plug-ins +Report-Msgid-Bugs-To: +POT-Creation-Date: 2004-01-07 02:24+0100 +PO-Revision-Date: 2004-10-21 10:29+0200 +Last-Translator: Vladimir Stefanov +Language-Team: macedonian +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +X-Generator: KBabel 1.3 + + +ÐвторÑки права 1997-2001 Мајкл Свит, Роберт Кравиц, +и оÑтатокот од развојниот тим на Гимп-Печатење. + +Ве молам поÑетете ја нашата Ñтраница на http://gimp-print.sourceforge.net. + +Оваа програма е Ñлободен Ñофтвер, можете да ја делите и/или менувате +под уÑловите на GNU Општата Јавна Лиценца како што е објавена од Ñтрана на +Free Software Foundation, или верзијата 2 од лиценцата, или +(по ваш избор) било која подоцна верзија. + +Оваа програма е поделена Ñо надеж дека ќе биде кориÑна, +но БЕЗ ÐИКÐКВРГÐРÐÐЦИЈÐ, дури ни без подразбирлива ПРОДÐЖÐРгаранција +или гаранција за ПОГОДÐОСТРЗРОДРЕДЕÐÐ ÐÐМЕÐÐ. Види ја +GNU Општата Јавна Лиценца за повеќе детали. + +Би требало да Ñте добиле примерок од GNU Општата Јавна Лиценца +заедно Ñо оваа програма, ако не Ñте, пишете на адреÑа Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Ðко имате некои убави дефиниции, +(или Четки и Хартии, кога Ñме веќе таму) +Ñлободно ми ги пратите на +за да бидат вклучени во Ñледната верзија! + Издадено под GNU Општата Јавна Лиценца ( Грешка во виÑината!) (Грешка во ширината!) Колони на Ñекој ÑлојРедови одКопчето „Поправи Ñеме“ е друг начин да ме повикате. +ИÑтото Ñеме ја произведува иÑтата Ñлика, ако (1) ширините на Ñликите Ñе иÑти (ова е причина зошто Ñликата на цртежот Ñе разликува од прегледот), и (2) Ñите Ñтепени на мутација Ñе еднаки на нула.# на шилци:# на под опÑезите:%d незачувани Gfig објекти. Да продолжам Ñо излегувањето?%d x %d%s -- Печати v%s%s копирај„%s“ е оштетена. Линија %d во одделот Опции е погрешна%s: не е DICOM датотека„%s“ не е ФракталПребарувач датотека„%s“: не е HRZ датотека„%s“ не е PCX датотека„%s“: не е регуларна датотека„%s“ не е валидна BMP датотека'%s' не е иÑправна GFlare датотека.„%s“: +Ðе можам да го прочитам заглавјето (ftell == %ld)„%s“: +Ðе Ñте го одредиле типот на Ñликата„%s“: +Ðе Ñте ја одредиле виÑината на Ñликата„%s“: +Ðе Ñте ја одредиле ширината на Ñликата(ОпиÑ)(ништо)(ништо)** Благодарам што го одбравте ГИМП **1 (беÑмиÑлено?)256 (беÑмиÑлено?)/Уреди/Копирај во инÑерти/Уреди/ПренеÑи од инÑерти/Датотека/ПодеÑување на Ñтраната/Датотека/ИÑпрати Ñлика.../Датотека/_Печати/Датотека/Пе_чати.../Филтери/Ðнимација/Оптимизација (за _GIF)/Филтери/Ðнимација/_Ðајди позадина.../Филтери/Ðнимација/_Оптимизација (разлика)/Филтери/Ðнимација/_Погледај Ðнимација.../Филтери/Ðнимација/_ОтÑтрани позадина/Филтери/Ðнимација/_Де-оптимизација/Филтери/Уметнички/Сликање Ñо темперни бои.../Филтери/Уметнички/Примени платно.../Филтери/Уметнички/_Кубизам.../Филтери/Уметнички/_ГИМПреÑиониÑÑ‚.../Филтери/Заматување/ГауÑиан заматување (_IIR).../Филтери/Заматување/ГауÑиан Заматување (_RLE).../Филтери/Заматување/_Заматување.../Филтери/Замати/Движечко заматување.../Филтери/Замати/ПикÑелизација.../Филтери/Замати/Селективно ГауÑиан заматување.../Филтери/Бои/_СоÑтави.../Филтери/Бои/_Мешање на каналите.../Филтери/Бои/Боја во Ðлфа.../Филтери/Бои/_Ðнализа на обоена коцка.../Филтери/Бои/Мапа/ПодеÑи _FG-BG/Филтери/Бои/Мапа/ВонземјанÑка мапа 2.../Филтери/Бои/Мапа/Мапирање на раÑпонот на бојата.../Филтери/Бои/Мапа/Рота_ција на Мапа на Боја.../Филтери/Бои/Мапа/ВонземјанÑка мапа.../Филтери/Бои/Мапа/Размена на _Бои.../Филтери/Бои/Мапа/Мапа на _преливот.../Филтери/Бои/Мапа/Обојување на промерок.../Филтери/Бои/Мазна палета.../Филтери/Бои/ПроÑечна _ивица.../Филтери/Бои/_Обој.../Филтери/Бои/_Декомпонирај.../Филтери/Бои/Пакетен Филтер.../Филтери/Бои/_Жешко.../Филтери/Бои/МакÑ. RGB.../Филтери/Бои/Полу-Рамно/Филтери/Бои/Обратна _вредноÑÑ‚.../Филтери/Комбинирај/_Стопи длабочина.../Филтери/Комбинирај/_Филм.../Филтери/Озобличувања/Изре_збари.../Филтери/Изобличувања/ÐовинарÑки текÑÑ‚.../Филтери/Озобличувања/По_ларни координати.../Филтери/ДиÑторзии/_Видео.../Филтери/ДиÑторзии/W_hirl and Pinch.../Филтери/ДиÑторзии/Ве_тер.../Филтери/Озобличувања/_Повези.../Филтери/Заматување/_Свивање на крива.../Филтери/Озобличувања/_ИÑпапчи.../Филтери/Озобличувања/_Изобличување/Филтери/Озобличувања/Мозаик.../Филтери/ДиÑторзии/_Магарешки уши.../Филтери/Озобличувања/_Размачкај... /Филтери/Озобличувања/ПомеÑти.../Филтери/ДиÑторзии/_Ширење на вредноÑта.../Филтери/ДиÑторзии/_Бранови.../Филтери/Детектор на ивици/_Ивица... /Филтери/ИÑтакни Ивици/_Laplace/Филтери/ИÑтакни ивици/_Собел... /Филтери/Подобри/Des_peckle.../Филтери/Подобри/Des_tripe.../Филтери/Подобри/_РаÑплети.../Филтери/Подобри/_NL Филтер.../Филтери/Подобри/ИзоÑтрување... /Филтери/Зголеми/Симни ја оÑтрината од маÑката... /Филтери/Општи/_Ерозија/Филтери/Генерички/Матрица на _Ñвивањето.../Филтери/Општи/Про_ширување/Филтери/Ефекти на Чаша/Прифати _леќи.../Филтери/Стаклени ефекти/_Делови од Ñтакло.../Филтери/СветлоÑни Ефекти/СуперÐова.../Филтери/СветлоÑни ефекти/_ОдÑјај.../Филтери/СветлоÑни ефекти/_GFlare.../Филтери/СветлоÑни ефекти/СветлоÑни ефекти.../Филтери/СветлоÑни ефекти/_Сјаење.../Филтери/Мапа/Мапирај Објект.../Филтери/Мапа/_РидеÑÑ‚ Терен.../Филтери/Мапа/_ИзмеÑти.../Филтери/Мапа/Фрактално Ñледење.../Филтери/Мапа/И_лузија.../Филтери/Мапа/Вклопи/Филтери/Мапирај/Делче од хартија.../Филтери/Мапа/_Мали делчиња.../Филтери/Мапа/_Делчиња.../Филтери/Мапирај/Ван Гог (LIC).../Филтери/Мапа/И_зобличено.../Филтери/Пречки/РаÑтурен HSV.../Филтери/Пречки/РаÑтегни.../Филтери/Пречки/_ОтÑтранување.../Филтери/Пречки/Шум.../Филтери/Пречки/Избери.../Филтери/Шум/_Размачкај.../Филтери/Рендерирање/Облаци/Плазма.../Филтери/Рендерирање/Облаци/Силен Шум.../Филтери/Рендерирање/Природа/Ifs_Компонирање.../Филтери/Рендерирање/Природа/_Оган.../Филтери/Рендерирање/МоÑтра/CML Пребарувач.../Филтери/Рендерирање/МуÑтра/_ШаховÑка табла.../Филтери/Рендерирање/МуÑтра/Ди_фракција на иÑечоците.../Филтери/Рендерирање/МуÑтра/_Мрежа.../Филтери/Рендерирање/ИÑечок/_Jigsaw.../Филтери/Рендерирање/Шара/_Лавиринт.../Филтери/Рендерирање/ИÑечок/_КубиÑÑ‚.../Филтери/Рендерирање/ИÑечок/СинуÑ.../Филтери/Рендерирање/Дизајнер на Ñфера.../Филтери/Рендерирање/Фрактален Пребарувач.../Филтери/Рендерирање/_Gfig.../Филтери/Играчки/Gee-_Slime.../Филтери/Играчки/Gee-_Zoom/Филтери/Веб/_Мапа на Ñлика.../Слика/ТранÑформации/Ðвто иÑечок/Слика/ТранÑформирај/Ги_љотина/Слој/Израмни ги видливите Ñлоеви.../Слој/Бои/Ðвто/Развлечи _HSV/Слика/Бои/Ðвто/ЗаÑилување на _боја/Слика/Бои/Ðвто/Ðормализација/Слика/Бои/Ðвто/_Развлекување на контраÑтот/Слој/ТранÑформирај/_Zealous отÑечок/Слој/ПровидноÑÑ‚/Праг на Ðлфа.../Датотека/Извлечи/Од инÑерти/Датотека/Земи/Слика од екранот.../Датотека/Земи од/_TWAIN.../Xtns/_DB Пребарувач.../Xtns/Детали за додатокот.../Xtns/_Уредник на Единици...Критична вредноÑÑ‚ за адаптивните ÑелекцииИако заÑтарено делото на Ðдам Д. ÐœÐ¾Ñ /adam@gimp.orh / adam@foxbox.org/ 1998- 2000Дефиницијата на единицата ќе биде зачувана Ñамо ако е штиклирано ова поле пред излегувањето од ГИМП-от.ALT те_кÑÑ‚: (опционо)_За програматаÐ_даптивно СуперÑемплирање_ДодадиДодај Граница_Ðапредно_Сите_Сите делчињаÐл_фа-тежинаÐлфа:Ð_мбиент:Ðмплитуда:Ð_гол:_Ðнимирај_ДодадиÐвто оÑвежување на прегледотÐвтоматÑкиПроÑе_чно под четкатаКратенкаЗаЗа ВонземјанÑката мапаЗа ВонземјанÑка Мапа 2За Gfig...За Гимп-Печатење За Мапа на Ñликата...Ðкција_ÐапредноПриÑпоÑобливоПрилагодливо Супер-ÑемплирањеДодадиДодади дополнителни водичиДодади ФракталПребарувач патекаДодади Gfig патекаДодади нов Sm-векторДодади нов векторДодавам Сепаратори...Додавам шаховÑка табла...Додавам шум...ДодавањеДодава ефект на Ñенка во Ñекој потез Ñо четкатаДодава Ñлучајно шум во бојатаПодеÑи го излезот...ПодеÑи ја рамнотежата на бојата, Ñветло, контраÑÑ‚, заÑитеноÑÑ‚ и алгоритам на мешањеПодеÑи го интензитетот на одÑјајотПодеÑи го прагот на оÑветлувањеПодеÑи го бројот на шилатаПодеÑи ја непроѕирноÑта на шилотоПодеÑи го аголот на шилото (-1 значи дека е изберен Ñлучаен агол)ПодеÑи ја гуÑтината на шилотоПодеÑи ја должината на шилотоПодеÑи ја вредноÑта колку пати нијанÑата може да Ñе менува ÑлучајноПодеÑи ја вредноÑта колку пати заÑитувањето може да Ñе менува ÑлучајноПодеÑување на рамнотежата на цијан бојата за печатењеПодеÑување на гуÑтината (количина на маÑтило) за печатење. Ðамалете ја гуÑтината ако маÑтилото тече низ хартијата или Ñе замачкува, зголемете ја гуÑтината ако црните подрачја не Ñе потполно црни.ПодеÑување на гама за печатење. Поголеми вредноÑти ќе дадат поÑветло печатење, додека пониÑките вредноÑти ќе дадат потемно печатење. Црната и белата ќе оÑтана иÑти, за разлика од подеÑувањето на оÑветленоÑта.ПодеÑување на рамнотежата на магента бојата за печатењеПодеÑи го оÑветлувањето на прегледотПодеÑување на заÑитеноÑта (рамнотежа на боја) за печатење +КориÑтете нултна заÑитеноÑÑ‚ за да добиете излез во нијанÑи на Ñива кориÑтејќи маÑтила во боја и црна.ПодеÑување на рамнотежата на жолтата боја за печатењеПодеÑување на предниот план/позадината...Ðапредни можноÑти на пакетниот филтерЗаÑегнатно подрачјеÐгреÑивна RLE +(Ðе е подржана од SGI)Воздушна четкаДо_полнителни_Дополнителни делчињаÐлгоритамВонземјанÑка мапаВонземјанÑка мапа 2ВонземјанÑка мапа 2: Се транÑформира...ВонземјанÑка мапа: Се транÑформира...Израмни ги видливите ÑлоевиСеСите JNGСите PNGСите ÑелекцииСите вредноÑти Ñе фракции на виÑиÑната на филмотСе црноСе ÑивоСите полиња за текÑÑ‚ мораат да бидат пополнети.Се белоДозволи делење на деловитеÐлфаÐлфа КаналиÐлфа:Ðмбиент:Количина на оригинална боја која Ñе прикажува каде не паѓа директна ÑветлинаВредноÑÑ‚:Иако заÑтарено делото на Ðдам Д. ÐœÐ¾Ñ /adam@gimp.orh / adam@foxbox.org/ 1998- 2000Ðглово помеÑтување:Лак на аголот:Ðгол:Ðнгуларен прелив:Големина на ангуларниот прелив:Опции на анимираниот GIFОпции за анимиран MNGПогледај анимација:Обратно од Ñтрелките на чаÑовникотОмекнувањеКвалитет на омекнувањето на ивиците. Поголем е подобар, но поÑпорПрименето во делчеЈа прифаќа хартијата каква што е (без да ја иÑпапчува)ПримениПримени платноПримени го активниот прелив во финалната ÑликаПрименувам платно...Прифати ÑвивањеПрифаќам леќи...Применувам пакетен филтер...ПроÑечно кругови/елипÑиПроÑечно кругови и елипÑи Ñо кориÑтење на линии. Дозволува кориÑтење на четки Ñо нејаÑно ивици кај овие видови на објекти.Лак како:Дали Ñте Ñигурни за бришење на „%s“ од лиÑтата и од диÑкот?ПодеÑувања на подрачјето #%dЛиÑта на подрачјаПодеÑувања на подрачјетоОблаÑÑ‚:СтрелкаКако горе наведенотоAsciiОблик на размерот:СоÑтавувам _Jigsaw...ÐÑиметрија:Ðа _днотоÐа _врвот_Ðвтор:Ðвтор:ÐвтоматÑкиСаморазвлекување на контраÑтот...Саморазвлекување на HSV...ÐвтоматкÑи раÑтегни за да Ñе Ñовпаѓа Ñо вредноÑта на опÑеготÐвтоматÑкиÐвтоматÑко оÑвежување на прегледотДоÑтапни Ñлики:B/L-Фреквенција:B/L-Фазно ПомеÑтувањеB/WПРÐЗÐО/NaN пикÑел премеÑтувањеЗацрнување на излезот (%):Праг на Сина:Боја на позадинатаÐазад:ПозадинаПозадина (%d%s)Боја на позадинатаТип на позадинатаПозадина:Погрешна боја на мапатаБарнÑлеy 1БарнÑли 2БарнÑли 3ОÑновен _URL:Пред и ПотоаСвиеноÑÑ‚Ðајдобро за Ñлики на кои преовладуваат Ñилно обоени подрачјаЗакоÑени ивициБејзиер подеÑувањаБили_неарноЦрн_а и БелаЦрнаЦрно/БелоЦрна:ПодеÑувања за мешањеСепараториПлаваСин канал: употребувај линеарно мапирање намеÑто било кои тригонометриÑки функцииСина:Синило_cb470:Синило_cb470f:Синило_cb709:Синило_cb709f:ЗаматиХоризонтално заматувањеПараметри на Ð·Ð°Ð¼Ð°Ñ‚ÑƒÐ²Ð°ÑšÐµÐ Ð°Ð´Ð¸ÑƒÑ Ð½Ð° Ð·Ð°Ð¼Ð°Ñ‚ÑƒÐ²Ð°ÑšÐµÑ‚Ð¾Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето:Тип на заматувањеВертикално заматувањеОпиÑ:Заматувам...ИвицаПроÑечна ивица...Големина на ивицатаПроÑечна ивица_ДветеДветеДолна ивица:Долна ивица_Доле-ДеÑноДно:КутијаОÑветленоÑÑ‚:БарајЧеткаПреглед на четката:ИÑпакниРидеÑÑ‚ теренРидеÑÑ‚-терен...Брдовита Ñлика:BumpmapПо DATAMIN/DATAMAXОперација Ñо CML датотека: ПредупредувањеCML Пребарувач: Ñе еволуира...CMYCMYKCX:CY:C_MYKКа_мераФа_ќањеСо_држина на ќелијата:Големина на ќелиите:_Средина на четкатаЦентрирањеИ_збери овде:_Круг_Ðаправи нова Ñлика_КрÑтовиЗакривеноЦијанЦилиндарПодеÑувања на преÑметкитеМожам да работам Ñамо на RGB цртежи.Можам да зачувам Ñамо цртежи!Ðе може да Ñе Ñоздаде нова ÑликаÐе можам да добијам податоци од инÑерти.Ðе можам да работам Ñо непознати типови на ÑликиÐе можам да избришам!! Мора да поÑтои најмалку еден GFlare.Ðе можам да работам Ñо Ñиви или индекÑирани Ñлики.Ðе можам да работам Ñо индекÑирани ÑликиÐе може да Ñе обработуваат типови на Ñлики Ñо непознат формат.Ðе можам да ја прочитам екÑтензијата од +'%s'Ðе можам да го прочитам подножјето од +'%s'Ðе можам да зачувувам RGB Ñлики. Променете ги прво во индекÑирани или Ñиви Ñлики.Ðе може да Ñе зачувуваат Ñлики Ñо алфа канал.Ðе можам да зачувувам Ñлики Ñо алфа канали.Ðе може да Ñе зачува во директориум.Големина на ќелијата:Пополнување на ќелии:Раздел на ќелиите:СрединаЦентар _x:Центар _y:Средина на ОдÑјајотЦентар на СуперÐоваЦентрирај ја Ñликата хоризонтално на хартијатаПоÑтави ја Ñликата на ÑрединаЦентрирај ја Ñликата вертикално на хартијатаСредина:ЦентрирајОÑетливоÑÑ‚ на каналот:Промени го аголот на плавата/јачината на каналотПромени го аголот на зелената/Ñатурацијата на каналотПромени го аголот на црвената/нијанÑата на каналотПромени ја фреквенцијата на плавата/јачината на каналотПромени ја фреквенцијата на зелената/Ñатурацијата на каналотПромени ја фреквенцијата на црвената/нијанÑата на каналотПромени го интензитетот на Ñиниот каналПромени го интензитетот на зелениот каналПромени го интензитетот на црвениот каналСмени го раÑпоредот на ÑтрелкитеПромени ја CX вредноÑта (промените ги опфаќаат Ñите фрактали оÑвен фракталите Манделброт и СерпинÑки)Промени ја CY вредноÑта (промените ги опфаќаат Ñите фрактали оÑвен фракталите Манделброт и СерпинÑки)Го менува аголот на избраниот Sm-векторСмени го аголот на избраниот векторПромени ја екÑпонентата на валидноÑтаПромени ги првите (минимални) делимитатор x-координатиПромени ги првите (минимални) делимитатор y-координатиПромени го интезитетот на Ñиниот каналПромени го интезитетот на зелениот каналПромени го интензитетот на црвениот каналПромени ја вредноÑта на итерацијата. Колку е поголема, повеќе детали ке Ñе преÑметуваат, за кое што ќе треба повеќе времеПромени го бројот на боите кај мапирањатаПромени ги вторите (макÑимални) делимитатор x-координатиПромени ги вторите (макÑимални) делимитатор y-координатиЈа менува јачината на избраниот Sm-векторЈа менува валидноÑта на избраниот векторПромени во оваЈа менува гамата (ÑветлоÑта) на избраната четкаКанал #%d:ÐезавиÑни параметри на каналотМешање на каналитеПредупредување на операцијата од датотеката за мешање на каналотРепрезентации на каналот:КаналиОзначи ако Ñакаш да биде фатена табелата.ШаховницаШаховÑка таблаСо избирање на овој таг, GTM нема да оÑтава раздел помеѓу TD таговите и Ñодржината на ќелиите. Ова е неопходно Ñамо за контрола на позицијата на пикÑелите.Избери Фрактал кликнувајќи двапати на негоИзберете виÑок Ñтепен на компреÑија за помали датотекиИзберете правилно име на PPD датотеката за вашиот печатачИзберете алгоритам за мешање. +ПриÑпоÑобливиот Хибрид обично дава најдобар квалитет. +Редниот е побрз и дава Ñкоро иÑÑ‚ таков квалитет на фотографијата. +Брзиот и Многи брзиот Ñе релативно побрзи и Ñе добри за текÑÑ‚ и линиÑки цртежи. +Хибридниот Флојд-Штејнер воглавно дава најлош квалитет.Изберете модел на печатарот, PPD датотека и наредба Ñо која ќе печатите на овој печатар.Круг_Длабочина на кругот во проценти:Кружна ПалетаЧиÑтење...ИÑчиÑтиЧиÑто провидноВо правец на Ñтрелките на чаÑовникотЗатвори ја кривата на крајЗатворено_Боја:ПроÑечна Боја_Боја:Бои_Коментар:_Компензирај за замрачувањеКо_мплекÑноÑÑ‚:Ко_мпреÑирај ги TD таговитеСтепен на ко_мпреÑија:Продолжително подрачје_Контури_КонтраÑÑ‚:_Колона:СобериДетали на колекцијатаБојаГуÑтина на бојатаЗаÑилување на боја...Размена на бои...Размена на бои...Размена на боја: Спрема бојаРазмена на боја: Во бојаФункции на боитеМод за боиДијалог за избирање бојаТранÑформација на бојатаВаријација на бојата:_Шум на боје:Бојата Ñе преÑметува од проÑекот на Ñите точки под четкатаИзлез на бојаБоја во ÐлфаБоја во капалка за Ðлфа боја_Мапа на боја:Ðнализа на обоена коцкаÐнализа на обоена коцка...ОбоеноÑтОбој Ñо поÑебна бојаБојам...ОбојувањеРотација на мапа на бојаБоиБои:КомбинирајКоментар:Ðаредба:КоментарКоментар:СоÑтавувањеСоÑтави КаналиКомпонирам Ñлики...СоÑтавувам...Композиција:Големина на компреÑирана: %sКомпреÑијаВид на компреÑÐ¸Ñ˜Ð°ÐžÐ´Ð½Ð¾Ñ Ð½Ð° компреÑија (приближно): %d Ñпрема 1Задржи ги пропорциитеКреирам лавиринт кориÑтејќи Примов Ðлгоритам...Креирам Лавиринт во делчиња кориÑтејќи Примов Ðлгоритам..СодржинаКонтинуиран прелив без празнинаКонтинуиран преливÐепрекинато ажурирањеКонтраÑÑ‚:КонтролиКонтролира колку ќе биде интензитетот на оÑветлувањетоКонвертирај ја Ñликата прво во RGB!Матрица на Свивање Матрицата на Ñвивањето не работи на Ñлоеви помали од 3 пикÑелиСвивањеКопирајКопирај GFlareПараметри за копирањеПодеÑувања за копирањеКопирај објектКопирај ја тековната крива за друга ивицаКопирај ја текÑтурата на избраната хартија како позадинаКопирам IFS во Ñликата (%d/%d)...Копирам...ÐвторÑки права Мориц Ријк 1999-2003ÐвторÑки права:КоÑинуÑКоÑинуÑÐе можам да креирам работен директориум '%s': %sÐе можам да го подигнам наведениот веб преглеувач: +%sÐе можам Ñа добијам Ñлоеви за Ñликата %dÐе можам да интерпертирам „%s“Ðе можам да ја пронајдам датотеката Ñо помошната документацијаÐе можам да го пронајдам документот за помошÐе можам да го отворам „%s“ како SUN раÑтер датотекаÐе можам да ја отворам '%s' за читање.Ðе може да Ñе отвори „%s“ за читање: %sÐе можам ја отворам '%s' за пишување.Ðе може да Ñе отвори „%s“ за запишување: %sÐе можам да ја обработам наведената команда за веб прегледувачот: +%sÐе можам да го прочитам XWD заглавието од '%s'Ðе можам да ги прочитам податоците за боја од „%s“Ðе можам да го прочитам заглавјето од „%s“Грешка при запишување во „%s“: %sÐе можам да ја вчитам четката, Ñе откажувам.Ðе можам да ја зачувам проѕирноÑта без губење на квалитет, зачувувам непроѕирноÑÑ‚.Ðе можам да ја читам датотеката:Ðе можам да ја зачувам датотеката:Ðе можев да ја зачувам изворната датотека:Ðе можев едноÑтавно да ги редуцирам боите. Зачувувам како непроѕирно.Coupled-Map-Lattice ПребарувачСоздади нова ÑликаСоздадиКреирај водичиКреирај водичи...Создади нова ÑлилкаÐаправи ХиÑтограмÐаправи нов ÑлојÐаправи мапа на боја употребувајќи прелив од уредникот за преливиÐаправи мапа на боја Ñо горенаведените опции (гуÑтина на бојата/функција). Резултатот е видлив на приказот за Ñлика.Ðаправи нова колекција од Gfig објекти за уредувањеСоздади нова Ñлика при применување на филтерÐаправи потполно нова единицаÐаправи нова единица Ñо тековно избраната како пример.Ðаправи лакÐаправи Берзиева крива. Shift + Копче го завршува креирањето.Ðаправи кругÐаправи елипÑаÐаправи линијаÐаправи полигонÐаправи ÑпиралаÐаправи ѕвездаCreateDIBSection грешкаÐаправено Ñо ГИМПКреирам дифракционирана муÑтра...ИÑе_чокОтÑечувам...Крива:КубизамКубиÑтичка транÑформацијаКумулативни Ñлоеви (комбинација)Слој на магарешките ушиМеÑто на ÑвивањетоÐепровидноÑÑ‚ на магарешките уши.ÐаÑока на ÑвивањетоТeковно:СвиеноÑÑ‚ на криватаСвиена Крива...Вид на крива:Крива за границаСвиената крива работи Ñамо на Ñлоевите (но пробавте на маÑката на каналот)ПоÑебна боја: ПоÑебен преливИÑечиЦијанЦијан:Цијан_КЦилиндарДолжина на Ñ†ÐµÐ»Ð¸Ð½Ð´Ð°Ñ€Ð¾Ñ‚Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° цилиндаротDB ПребарувачDCT метод (Брзина/Квалитет)ВредноÑÑ‚ на де_формацијата:Разлевање:_Делител:ПотемноПотемно:КомпреÑија на податоциФорматирање на податоцитеДата:ДекомпонирањеДекомпонирање на ÑлоевиДекомпонирање...СтандардноДела од Ñтандарден тип:Стандардно каÑнење на Ñликата:Стандардно бришење на Ñлика:Стандардни видови на мапиПреддефиниран _URL:Дефинирај Кружно/Овално подрачјеОдреди нов печатачДефинирај Полигонално подрачјеДефинирај Правоаголно подрачјеДефинирајте нов логички печатар. Ова може да биде кориÑтено за именување на збир од подеÑувања кои Ñакате да ги зачувате за идна употреба.Режим на деформацијатаСтепен на нагибот на ивиците на Ñекое парчеСтепениРаÑплетиРаÑплети...КаÑнењето помеѓу рамките не е означено:КаÑнење на вметнатото за да Ñе Ñпречи злобното оптеретување на процеÑорот.ИзбришиИзбриши фракталИзбриши GFlareИзбриши Gfig цртежИзбриши ја точкатаИзбриши објектИзбриши ја тековно избраната Ñелекција на Gfig објектиИзбриши го Ñегашно избраниот фракталИзбриши го избраното подрачјеГо брише избраниот Sm-векторИзбриши го избраниот векторЈа брише избраната дефиницијаДелта фукцијаДелта функција во чекориГуÑтина:Прво ДлабочинаДлабочина на мапата:Стопи ДлабочинаСтопување на длабочина...Изведувам Мазна палета...ОпиÑ:ДеÑелектирај _СеДеÑпекл...ДеÑпеклирање...ДеÑтинационен канал:Одредишен опÑег на бојатаОдредиште:ДеÑтрипДеÑтрипирање...Детали <<Детали >>Праг на девијација:ДијамантДифракционирана муÑтраРазлевање:Разливање на диÑÑ‚.:БројкиДимензии:ДимензииДимензии:ÐаÑокаÐаÑочен ВекторÐаÑоченоÐаÑочено ÑветлоÐаÑокиÐаÑоки:ИзмеÑтиОпции на измеÑтувањетоМапа на размеÑтувањето:ИзмеÑтување...ПриказПрикажи како:ОдалеченоÑÑ‚ од дното на хартијата до ÑликатаОдалеченоÑÑ‚ од левата Ñтрана на хартијата до ÑликатаОдалеченоÑÑ‚ од левата Ñтрана на хартијата до деÑната Ñтрана на ÑликатаОдалеченоÑÑ‚ од деÑната Ñтрана на хартијата до ÑликатаОдалеченоÑÑ‚ од врвот на хартијата до дното на ÑликатаОдалеченоÑÑ‚ од врвот на хартијата до ÑликатаÐлгоритам за мешање:Големина на дитер:ДелењеДа_ј прегледДали навиÑтина Ñакате да ги отфрлите промените?Документот не е пронајденЦртај име:ИÑцртај Граница од шилата околу ÑликатаГи црта Ñите објекти на еден Ñлој (оригинален или нов) или еден објект по ÑлојЦртај линии во обратна наÑокаЦртај на:Вид на цртање. Четка или Ñо Ñелекција. Види ја Ñтраната за четки или Ñелекции за повеќе опции.Цртежите имаат различна големинаЦртам Оган...Цртам Мрежа...Цртам Лавиринт...ПодеÑување на иÑцртувањетоЦрта лавиринт.ИÑцртува линии помеѓу контролните точки. Само при правењето на криватаУфрли ÑенкаEOF пронајден на Дојдов до EOF (End Of File) при читањетоЕ_левација:Вклучи омекнување на ивицитеВклучи брдовито мапирањеВклучи мапирање на околинатаПро_ширеноСекоја ÑелекцијаСекој дел има закоÑени ÑтраниСекој дел има рамни ÑтраниИвицата е променетаДетекција на ивицатаДетекција на ивицата...Затемнети ивици:ИвициУредиУреди ги информациите за подрачјето...Уреди ОганУреди ја колекцијата на Gfig објектиУреди ја Инфо МапатаУреди ја Инфо Мапата..Уреди објектУреди го името на фракталотУреди инфо на избраното подрачјеУредувате објект-Ñамо-за-читање - нема да можете да го зачуватеКанал за ЕфектиОператор на ЕфектиИÑпапчиОколинÑка Слика:Вкличи ОмекнувањеВклучи/иÑклучи брдовито мапирање (длабочина на Ñликата)Вкличи/ИÑклучи мапирање на околината (рефлекÑија)Вклучи/ИÑкличи преглед Ñо виÑок квалитетВкличи/ИÑкличи отÑтранување на назебени рабови (омекнување)Вклучи/ИÑклучи преглед на промените во реално времеЕнкапÑулација:EndPage не уÑпеаРезбарењеРезбарење...ВнеÑете име на Gfig објектотВнеÑи име за копираниот GFlareВнеÑи име за новиот GFlareВнеÑете правилно име на PPD датотеката за вашиот печатачВнеÑете правилна команда за печатење. Забелешка: Ве молам да не ги отÑтранувате „-l“ или „-oraw“ од командата или печатењето нема да уÑпее!ВнеÑете име кое Ñакате да му го дадете на овој логички печатачЦел СлојОÑетливоÑÑ‚ на околината:ОколинÑка Ñлика која ќе Ñе употребуваГрешка при отварањето на FITS датотекатаГрешка при запишувањето на индекÑираната/Ñива ÑликаГрешка при запишувањето на rgb ÑликатаГрешка при земање на курÑоротГрешка во датотеката Ñо Гимп четките „%s“Грешка во датотеката за Гимп четка.Грешка при копирањето на ÑлојотГрешка кај добивањето на ознаки на ÑлојотГрешка при добивање на Ñликата од екранотГрешка при отварањето на датотекатаГрешка во отварање на датотеката '%s'Грешка при читањето на заглавјето на BMP датотеката од „%s“Грешка при читањето на датотекатаГрешка при читање на „%s“. Оштетена датотека?Грешка при зачувување на „%s“. Ðе можам да ја зачувам Ñликата.Грешка во запишувањето на излезната датотека.Грешка: Ðе можам да ја прочитам ХЈТ датотеката за оÑобини '%s'.Грешка: XЈТ датотеката за оÑобини '%s' е празна.Грешка: неуÑпешно Ñе вчитани параметритеГрешка: не е датотека Ñо CML параметриПодеднакво раÑпореденоИзвези:Извези ПрегледИзвлечи ги каналите:FG бојаFITS датотеката Ñодржи Ñлики кои не можат да Ñе прикажатFITS зачувувањето не може да ракува Ñо алфа каналиДа_тотека_Прва боја:Интезитет на одÑјајот:ФакторИÑчезнување:Ðе можев да ја отворам GFlare датотеката '%s': %sÐе можам да ја зачувам РРМ датотеката '%s': %sГрешка при пишувањето во GFlare датотеката '%s': %sБрз бројÐајбрзи и најÑветли бои за текÑÑ‚ и линиÑка уметноÑтОмекниДатотекаДатотеката "%s" е зачувана.Датотеката „%s“ не е IFS-Компонирај датотека.Датотеката „%s“ поÑтои. +Да Ñе пребрише?Датотеката „%s“ е оштетена. +Линија %d во одделот опции е погрешнаДатотеката „%s“ не е ФракталПребарувач датотекаДатотеката веќе поÑтои. + Дали навиÑтина Ñакате да ја препишете? Датотеката поÑтои!Датотеката не е во подржан формат.Датотека:Име на датотека: %sПополни (од дното кон врвот)Пополни (од лево на деÑно)Пополни (од деÑно на лево)Пополни (од врвот кон дното)ÐепроѕирноÑÑ‚ на пополнувањето:Вид на пополнување:Пополни подоцна:ИÑполни Ñо параметарот кФилмФилтерСимулација на пакетниот филтерБарам позадина на анимацијата...Ги барам краевите..Ги наоѓам XY преливите...Прва БојаПрв Одредишен КаналПрв GfigПрва Изворна БојаСовпадни Ñе Ñо вредноÑта на опÑеготПоправи ÑемеМени за избор на мапа на векторот Ñо фикÑна наÑокаОганМожам да работам Ñамо на RGB цртежи.ОдÑјајОгледалоПревртувањеПодвижна запиркаПловечки чекор %d...ТечноБоја на предниот планГрупирај ги потезите Ñо четката околу Ñредината на ÑликатаЗаÑили ја JPEG базната линија (читливо од Ñтрана на Ñите декодери)Преден планПараметри на фракталотФрактално ÑледењеТип на фракталИме на фракталот:ФракталПребарувач преливФракционални ПикÑелиКадар %dКадар %d (%d%s)Рамка %d од %dРамка (%i)КаÑнењето помеѓу рамките не е означено:ОдСпрема БојаОд преливОд обратен преливОд хартијаОд:Ðапред:ПолноФункцијаТип на функција:ÐејаÑно ИзбирањеГ-КубиÑÑ‚G/S-Фреквенција:G/S-Фазно помеÑтување:GEE-SLIMEGEE-ZOOM: Додаток порано познат како "ГИМПОВО јајце"GFLI 1.3 - Вчитај куп од рамкиGFLI 1.3 - Зачувај куп од рамкиGFlareGFlare '%s' не е зачуван. Ðко додадете нов Ð²Ð½ÐµÑ Ð²Ð¾ '%s', како: +(gflare-патека "%s") +и направете директориум '%s', тогаш можете да ги зачувате Ñвоите GFlare-и во тој директориум.GFlare УредувачGIF Коментар:GIF ОпцииGIF ПредупредувањеGIF: не работам Ñо недокументирани Ñложени GIF од типот %d. Можеби нема да можам да ја пуштам анимацијата или повторно да ја зачувам.ГИМП ЕкÑтензијаГИМП Пребарувач за помошГИМП ДодатокГИМП волшебна таблицаДатотеката за Гимп четката изгледа дека е оштетена.Гимп четките Ñе или во нијанÑи на Ñива или RGBA +С_јајПраг на _Зелена:Гама:Општи опцииОпшти ПараметриКреира лавиринт Ñо кориÑтење на длабинÑка-прва метода за пребарување или Примов Ðлгоритам. Може да прави и делливи лавиринти. Види %s за помош.Земи примерок од бојатаGfigGfig - ГИМП додатокСелекција на Gfig четкаGfig Ñлој %dИме на Gfig објектотГимп-Печатење верзија ГимпреÑиониÑтДелови од ÑтаклоДелови од Ñтакло...ОÑновни опции на Ñликањето Ñо Ñјај_СиваЗемиЗеми поФати еден прозорецФати цел екранПреливПреливен одÑјај...Мапа на преливот...Скала на градиентот:Мени за Ñелекција на мапа на градиентотПрелив:ПреливиГрафик на Ñегашните подеÑувањаОмекнување на графикатаСиваСкала на ÑиваЗеленаЗелен канал: употребувај линеарно мапирање намеÑто било кои тригонометриÑки функцииЗелена:СиваМрежаБоја на мрежата:ЗрнетоÑÑ‚ на мрежатаОфÑет на мрежатаПодеÑувања на мрежатаПодеÑувања на мрежата...Вид на мрежа:ВидливоÑÑ‚ и вид на мрежаРаздел на мрежата:ВодичиВодичите Ñе преддефинирани правоаголници кои ја покриваат Ñликата. +Ги одредувате го ширина, виÑина и разделот помеѓу нив. Ова ви овозможува +брзо креирање на најчеÑтите мапи на Ñлики-колекции од "Ñликички", +подобни за навигационите ленти.Водичи...Гиљотина...HSVОпции на HTML ÑтраницаОÑветлување:_ОÑветленоÑÑ‚Ðи_јанÑа:ÐијанÑа:ШеÑтоаголнициВиÑина (пикÑели)ВиÑина на хартијата на која ќе печатитеВиÑина:Помош:Еј, кај Ñе изгуби објектот?Сокриј ги контролните точкиПреглед Ñо виÑок квалитетПоголеми вредноÑти ја зголемуваат Ñилата на ефектотПоголеми вредноÑти ги прават оÑветлувањата да Ñе пофокуÑираниПоголеми вредноÑти кај рефлекÑијата го прават објектот поÑветолПоголеми вредноÑти го намалуват ефектот на помалку облаÑти на ÑликатаОÑветлување:Јаки Ñветла:Задржи ги минималните канали_Ширина на јамата:_Хоризонтална база:_ВиÑина на јамата:Задржи го интензитетот_Раздел на јамата:ХоризонталноХоризонтална бојаХоризонталноПотковицаЖешкоХот Спот _X:Жешко...Колку единици прават еден инч.Колку да ја "затемнам" капката за ÑенкаКолку ивиците на потегот Ñо четката ќе бидат "затемнети"Колку да Ñе замати капката на ÑенкатаÐијанÑаХуе Ротација:Xue ВариацииÐијанÑа:Многу ми е гајлеОзнакаIIR ГауÑиjан ЗамaтувањеITER:I ИзобличувањеИнтензитетИнтерактивноО_братен ридеÑÑ‚ теренИнверзна ÑликаИме на иконата:Ðко Ñте го означиле GTM иÑтиот ќе даде потполен HTML документ Ñо ,, итн. тагови намеÑто обични html табели.Ðко е изберен GTM ќе ја замени било која правоаголна облаÑÑ‚ на иÑтобојни блокови Ñо една голема ќелија Ñо ROWSPAN и COLSPAN вредноÑти.Ðко е означено мапирање, ќе почне на деÑната Ñтрана, како ÑпротивноÑÑ‚ на почетокот од левата Ñтрана.Ðко не е избрано, Ñликата ќе биде кружно мапирана во правоаголник. Ðко е избрано, Ñликата ќе биде мапирана во круг.Ðко не е избрано мапирањето ќе го поÑтави поÑледниот ред во Ñредина и првиот ред надвор. Ðко е избрано, ќе биде обратно.Ðко ја вклучите оваа опција, поголемите вредноÑти на бојата ќе бидат заменети Ñо помали и обратноÐко ја вклучите оваа опција прегледот автоматÑки ќе Ñе оÑвежиIfs-КомпонирањеОпции на Ifs-КомпонирањеIfs-Компонирање: ЦрнаIfs-Компонирање: СинаIfs-Компонирање: ЗеленаIfs-Компонирање: ЦрвенаIfs-Компонирање.: МетаИлузијаИлузија...СликаПодеÑување на Слика / ИзлезСоздавање на ÑликаПреглед на ÑликитеСелекција на ÑликаГолемина на ÑликатаРаздел на Ñликата:Вид на Ñлика:Типови на Слика:ВиÑина на Ñликата:Коментар на ÑликатаГолемина на Ñликата: %d x %dОва не е Ñива Ñлика (bpp=%d)Сликата мора да биде 256Ñ…240Сликата мора да биде RGB или ÑиваИме на Ñликата:Големината на Ñликата е променета.Додаток на мапата на Ñликата 2.0Слики за лицеСликите имаат различна големинаУвези _патекиУвези ги елементите на патеките за SVG, за да бидат кориÑтени во ГИМП алатките за патекиВо:Чекори на Интеграција:Ин_верзноИнчВклучи декорацииПочетна вредноÑÑ‚:Вид на маÑтило:Влезни нивоа:ВнеÑи датумВметни точкаБројИнтензитетÐивоа на ИнтензитетотИнтензитет на оригинална боја кога е оÑветлено од ÑветлоÑниот изворИÑпреплетеноÑтВнатрешна ГИМП процедураПреÑекПреÑекБоја на ПреÑекотÐевалидна UTF-8 низа на знаци во PSD датотекатаИнверзијаЈа инвертира текÑтурата на хартијатаИзометричноПрепорачувам да додадете +(гимпмпреÑиониÑÑ‚-патека "%s") +(или Ñлично) во вашата gimprc датотека.Итерации:JNGJNG + Delta PNGКвалитет на JPEG компреÑија:Фактор на JPEG измазнување:JPEG прегледJigsaw_Jigsaw ÑтилЈулијаЗадржи ги парните полињаЗадржи ги непарните полињаЗадржи ги вредноÑтите на ÑликатаЗадржи го оригиналотЗадржи ја првата вредноÑÑ‚LABLZ77Ð’_одење_Лева границаДолжина:Тип на Ñветлина:Л_инеарноЛамбдаХоризонталноLaplace..._Голем 3x3Слојот %s нема алфа канал, преÑкокнат еТип на Ñлојот на позадината. Копирањето предизвикува предходниот Ñлој да Ñе копира пред да Ñе изведе цртањеЛева ивицаЛево:Ефект на леќитеПомалку Sat:Ðека наÑоката од Ñредина ја одреди наÑоката на потеготÐаÑоката од Ñредината ја одредува големината на потеготÐека вредноÑта (ÑветлоÑÑ‚) на подрачјето ја одреди наÑоката на потеготОÑветленоÑта на подрачјето ја одредува големината на потеготБоја на Ñветлина:СветлоПодеÑување на ÑветлинаÐаÑока на Ñветлото:Правец на ÑветлоÑниот извор X во XYZ проÑторотПозиција на изворната Ñветлина X во XYZ проÑторотПравец на ÑветлоÑниот извор Y во XYZ проÑторотПозиција на изворната Ñветлина Y во XYZ проÑторотПравец на ÑветлоÑниот извор Y во XYZ проÑторотПозиција на изворната Ñветлина Z во XYZ проÑторотПоÑветлоПоÑветло и ПотемноПоÑветло:СветлоÑни ефектиСветлоÑни ефекти...Боја на ÑветлоÑниот извор:Тип на ÑветлоÑен извор:ЛинијаЛиниÑка уметноÑтЛинеарноВид на врÑкаПрикажи како лиÑтаГуштерДолго подзаÑтанувањеД_олна границаВчитај подеÑувања за мешања на каналотВчитај ги точките на кривата од датотекаВчитувам FITS датотекаВчитувам оганВчитај ги фракталните параметриВчитај ја колекцијата на Gfig објектиВчитувам мапа на ÑликаВчитај KISS палетаВчитај параметри одВчитај PostScriptЈа вчитувам QBE датотеката...Вчитај Windows метадатотекаВчитај Фрактал од датотекаВчитај една колекција на Gfig објектиВчитај ги кривите од датотекаЈа вчитувам Ñликата на екранот...Заклучи ги праговитеЗаклучи на мрежаЛогаритамÑкиПовторувајПовторувај беÑконечноДоле ЛевоДоле ДеÑноПонизок _праг:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Праг на оÑветлување:MNG ОпцииМакÑимална вредноÑÑ‚:Минимална виÑина:Ма_кÑ. Длабочина:МакÑимална виÑина:МагентаМагентаМагента:Магента_КМапа на магнитудата:ГлавенГлавни опцииÐаправи ја деÑтинационата Ñлика проѕирна каде виÑината на издигнување е еднаква на нулаÐаправи ја Ñликата проѕирна надвор од објектот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...МакÑ. наназад:МакÑ. Меморија:МакÑимална виÑина за издигнувањатаМакÑ. големина:Гол. на медиумот:Извор на медиумот:Вид на медиум:Пат на менитоПат/Име на менитоПат на менито:Спој ја Gfig колекцијата на објекти во тековната ÑеÑијаСпој ги увезените патекиСпојување...Средни Тонови:МилиÑекундиМинимум. (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Промени ги кривите_Повеќе непровидноÑтПовеќе _црна (помала вредноÑÑ‚)Повеќе Sat:Повеќе п_ровидноÑтПовеќе _бела (поголема вредноÑÑ‚)МозаикДвижечко заматувањеЗаматување Ñо дивижење...ПомеÑтиПомеÑти надолуПомеÑти прекуПомеÑти ги избраните објектиПомеÑти нанапредПомеÑти нагореПомеÑти една точкаПомеÑти објектДвижењеПовеќекратноПовеќекратно (57):Помножи го преливот (0,1)Помножена Ñлучајна вредноÑÑ‚ (0,1)Помножена Ñлучајна вредноÑÑ‚ (0,2)ДеÑтинација на мутацијата:Мера на мутацијата:Мој прв фракталNL ФилтерNL Филтер...NULLИмеИме:ÐовÐов фракталÐов GFlareÐов Gfig објектÐов печатар...Ðово ÑемеÐова единицаÐовинарÑки текÑÑ‚ÐовинарÑки текÑÑ‚...Ðема %s во gimprc: +Треба да додате Ð·Ð°Ð¿Ð¸Ñ Ñличен +(%s "%s") +на вашата датотека %s.Без компреÑијаБез ÑветлоÐема Опции...Без боиÐема фатени податоциÐема поклопувањаÐема меморија за мапирање на боиÐема Ñелекција за конверзијаÐема разбирлива екÑтензија, пробувам да вчитам Ñо датотечна магија.Ðема разбирлива екÑтензија, го зачувувам како копреÑиран XCF.Бр. _Доле:ШумШумÐе-квадратни точки. Сликата може да изгледа ÑтеÑнето.ÐиштоÐормалноÐормално:Ðормализирам...Ðе го пронајдов "%s": намеÑто тоа кориÑтам "%s"Ðишто за Ñечење.Број на ќелии:Број на боиБрој на M_RU внеÑови (1 - 16):Број на додатоци Ñо Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ :%dБрој на Страни/Точки/Кругови:Број на делчињаБрој на рамки:Број на чекори за пони_штување (1 - 99):Број на бои:Број на парчиња кои одат попрекуБрој на парчиња кои одат надолуБрој на обиди за прифаќање на филтеротБрој на единÑтвените бои: %dОзначувањеОфÑет:Са_мо преден планÐ_епровидноÑÑ‚:ОпцииОриентацијаДруги _опцииОÑтанатиИ_злезен каналИзлезен LPI:Пре_кривањеПреклопување:ОбјектДетали на објектотПозиција на објектот X во XYZ проÑторотПозиција на објектот Y во XYZ проÑторотПозиција на објектот Z во XYZ проÑторотОÑмумаголници И КвадратиОфÑет (1):ПомеÑтување на _аголот:ПомеÑти ги Ñите вектори Ñо дадениот аголОфÑет:Сликање Ñо темперни бои...Сликање Ñо темперни боиÐа ивиците:Ðа филмот:Еден оквир по Ñлој (премеÑти)Само По_задинаСамо една единÑтвена боја_ÐепровидноÑÑ‚:Оптимална проценкаОпцииÐепроѕирноÑÑ‚:ОтвориОтвори датотекаОтвори IFS датотекаОтвори поÑледниОтвори SVGОтворањето не уÑпеаОтварам %sСе отвара „%s“...Го отвара уредувачот на ориентациÑката мапаГо отвара уредникот за големина на мапатаОптимизирајОптимизирај го излезот за видот на Ñликата која Ñе печатиОптимизирам Ðнимација...Опции_ОриентацијаПочеток на дно-левоОриентацијаУредувач на ориентациÑката мапаОриентација:ОригиналОригинален интезитетОригинал:_ДругоДруги опцииÐадвор:ИзлезИзлезни нивоа:Вид на излез:Вид на излезПреклопување:ПрекривањеP(фактор на јачината):PNGPNG + Delta PNGСтепен на PNG компреÑија:PNM зачувувањето не може да работи Ñо Ñлики кои имаат алфа канали.PNM: Грешка во читањето на датотеката.PNM: Погрешна Ð¥ Резолуција.PNM: Погрешна Y Резолуција.PNM: Погрешна датотека.PNM: Погрешна макÑимална вредноÑÑ‚.PNM: ÐеиÑправен крај на датотеката.PPD датотека:PPD Датотека?PPIПС ДијамантПС Квадрат (Еуклидова точка)_Хартија_ПрегледСтрана %dМагарешки уши...PageSetupDlg на уÑпеа: %dЕфект на магаречки ушиСтраници:ЦртајÐачин на Ñликање:Обои ги ивицитеСликање...Преглед на хартијата:Делче од хартијаДелче од хартија...ПодеÑувања на параметриПараметар к:ПараметриПараметрите Ñе зачувани во „%s“ВметниВметнатоВметнувамМоÑтраПенкалоПроцентПроцент на пикÑели кои ќе бидат филтрираниФонгФотографијаДелови:Пинг ПонгСкала на вредноÑти на пикÑелотВиÑина на пикÑелите:Ширина на пикÑелите:ПикÑелизирајПикÑелизирам...ПикÑелиС_меÑтувањеГи ÑмеÑтува оквирите по Ñлучаен избор околу ÑликатаСмеÑтувањеПовршинаПлазмаПлазма...Почни/ЗаÑтаниПочни:ИÑцртај график на подеÑÑƒÐ²Ð°ÑšÐ°Ñ‚Ð°ÐžÐ¿Ð¸Ñ Ð½Ð° додатокот:МножинаПо_ларизација:ТочкаТачка на оÑветлувањеПоларноПоларизирајПоларизација...ПолигонВертикалноПоз X:Поз Y:Поз Z:ПозицијаМеÑто на Ñликата на хартијата. +Кликнете и влечете Ñо левото копче да ја поÑтавете Ñликата. +Кликнете и влечете за деÑното копче за поточно да ја помеÑтете Ñликата, Ñекоја единица ја помеÑтува Ñликата за една точка (1/72") +Кликнете и влечете Ñо Ñредното копче да ја помеÑтете Ñликата во единиците на големината на Ñликата. +Држејќи го копчето shift за време на операциите ја ограничува Ñликата Ñамо на хоризонтални и вертикални движења. +Ðко кликнете на друго копче додека влечете Ñо глушецот, Ñликата ќе Ñе врати на почетната позиција.PostScript зачувувањето не работи Ñо Ñлики кои имаат алфа каналиПре_гледПараметриЗадржи _оÑветлувањеЗадржи ја оригиналната Ñлика како позадинаПриÑтиÑок:ПрегледПреглед (1:4) - ДеÑен клик за СкокПреглед (во прозорецот за Ñлики, ќе Ñе менува иÑторијата за поништување на Ñликите!)Опции на прегледотГолемина на прегледот_Големина на прегледот:Преглед додека влечамПреглед: Клинете внатре за да изберете "Ñпрема бојата"Примов ÐлгоритамПодеÑување на боја за печатењеПечати во датотека?Печати и +Зачувај ПодеÑувањаПечати црно/бело (нема боја ниту нијанÑи на Ñива)Печати во нијанÑи на Ñива кориÑтејќи црно маÑтилоPrintDlg не уÑпеа: %dМодел на печатачот:Име на печатачот:ПодеÑувања на печатаротПечатарот не подржува битмапиПечатам...Можен прелив:ПрогреÑивноРежим на рекламирањеРекламирам ВредноÑен КаналРекламирам алфа каналКубиÑÑ‚...Квалитет:R/H-Фреквенција:R/H-Фазно помеÑтувањеRGBВид на RGB иÑечокRGBAÐе Ñте избрале RGBA/GRAYA цртежRLERLE КомпреÑијаRLE ГауÑиан ЗаматувањеРадиуÑ:Случајна ÐијанÑа:Злучајно Ñеме:С_лучајноÑÑ‚ %:СлучајноÑÑ‚ %:Ре_курзивноЦрвенаПраг на _Црвена:По_втори:О_братноРадиалноРадијален прелив:РадијанÑиРадијанÑи/ПиРадиуÑРадиуÑ:Случајно заÑитување:СтихијноСлучајно отÑтранување 1.7 Случајно избирање 1.7Случајно СемеСеме по Ñлучаен избор:Случајно Размачкување 1.7Случајно Ñеме:Случајно доделеноСлучајно, незавиÑно од каналотСлучајноСлучајно од ÑеметоСлучајно од Ñемето (доделено)ВиÑок ОпÑег:Ðизок ОпÑег:РанкÑ:Ротација _X:СуровоОпции на Ñликање Ñо зраци:_ЦрвенаГи чита избраните дефиниции во меморијаПреглед во реално времеПовторно преÑметај го _центаротПрерачунај го прегледот на ÑликатаПравоаголникЦрвенаЦрвен канал: употребувај линеарно мапирање намеÑто било кои тригонометриÑки функцииЦрвена:Црвенило_cr470:Црвенило_cr470f:Црвенило_cr709:Црвенило_cr709f:ÐапредВрати го поÑледното зголемувањеОÑвежиОÑвежи прегледÐамали _оÑветлувањеÐамали _заÑитеноÑтРефлекÑијаОÑвежи го прозорецот за прегледБрој на Ñтрани на полигонот_Релативна врÑкаРелативна МожноÑÑ‚:Верзија 2.0Релјеф:Превчитај ÑликаРемапирање на обоеното...О_Ñ‚ÑтраниЈа отÑтранувам позадината на анимацијата...ОтÑтранувам боја...Рендерирај Ñјај...Опции на рендерирањеРендирај Scalable Vector Graphics (SVG) - Скаларна ВекторÑка ГрафикаРендиран SVGРендерирам WMFРендирамРендерирам %sИÑцртувам екÑплозија...Се обојува фракталот...Рендерирам IFS (%d/%d)...Рендирам SVG...Рендерирам Ñфера..Рендерирам СуперÐова..Ги редндирам делчињата...ИÑцртувам Ветер...ЗамениПовторно прочитај го доректориумот Ñо дефиницииПовторно Ñкенирај ги преливитеПовторно Ñкенирај за фракталиПовторно Ñкенирај за Gfig објектиВрати ги параметрите на предефинираната вредноÑтПовторно поÑтави ја тековната криваДа ги променам ги големините на подрачјата?РезолуцијаРезолуција и квалитет на печатењетоРезолуција:РеÑтартирај ја фреквенцијата (редови)РеÑтартирај ги маркеритеГраница на водичот: %d,%d до %d,%d (%d подрачја)Граница на водичот: 0,0 до 0,0 (0 подрачја)РезултатиОбратноПоврати на оригиналната мапаÐазадДеÑна ивица:ДеÑна ивицаДеÑно:РазмачкајРазмачкување...Ро_тација:_Ред:_Ротирај:Ротирај X:Ротирај Y:Ротирај Z:Ротирај/СкалаРотираноРотирам мапа на боја...Ротирам...РотацијаÐгол на ротација:Ротирај го аголот околу X оÑкатаРотирај го аголот околу Y оÑкатаРотирај го аголот околу Z оÑкатаРотација:ЦрвенилоКружноRLE ЕнкодираноSUNRAS зачувување не може да работи Ñо Ñлики кои Ñодржат алфа каналиSVG датотека не +одредува големина!_Втора боја:Избери прозорец поИзбери овде:И_збирачПрикажи КурÑор_ÐамалиСинуÑ_СинуÑоидна мапаВалидноÑÑ‚:_Јачина:_ИÑфрленоТема:_Замена_Вртлог CCWЗа_чувај Ðлфа канал (RGBA/RGB)ИÑтоПример на анализа...Обојување на примерокПример на _оÑетливоÑÑ‚:Примерок:Зема моÑтра на боја од точката во Ñредината под четкатаЗаÑитување_ЗаÑитувањеЗаÑитувањеВаријации на заÑитеноÑтаЗаÑитување:ЗачувајЗачувај +ПодеÑувањаЗачувај (Ñредна транÑформација) како QBE датотека...Зачувај ја позадинÑката бојаЗачувај четкаЗачувај ги подеÑувањата за мешање на каналотЗачувај бои _ВредноÑти од транÑпарентните пикÑелиЗачувај _коментарЗачувај го времете на ÑоздавањеЗачувај _време на ÑоздавањеЗачувај тековенЗачувај ги точките на кривата во датотекаЗачувај EXIF податоциЗачувај датотекаЗачувај ОганЗачувај ги фракталните параметриЗачувај ја гаматаИзбриши Gfig цртежЗачувај мапа на ÑликаЗачувај го по_меÑтувањето на ÑлојотОпции за зачувувањеЗачувај ги параметрите воЗачувај ја резолуцијатаЗачувај ја бојата на _позадинатаЗачувај _ГамаЗачувај _резолуцијаЗачувај го Ñегашниот фрактал во датотекаЗачувај како BMPЗачувај како четкаЗачувај како четкаЗачувај како C-кодЗачувај како GIFЗачувај како Г-ИконаЗачувај како IFS датотекаЗачувај како JPEGЗачувај како MNGЗачувај како PNGЗачувај како PNMЗачувај како PSPЗачувај како моÑтраЗачувај како PostScriptЗачувај како SGIЗачувај како SUNRASЗачувај како TGAЗачувај како TIFFЗачувај како текÑтЗачувај како XBMЗачувај како XJTЗачувај како XPMЗачувај тековни...Зачувај ги тековните подеÑувања во наведената датотекаЗачувај ги кривите во датотекаЗачувај: Ðе е дадено име на датотекатаЗачуваноСе зачувува „%s“...ТеÑтераРаÑ_прÑкување:Скала (лог 2):Степен 1:Степен 2:ВредноÑÑ‚ на нијанÑата од:ВредноÑÑ‚ на Ñкалата од:X Скала:вредноÑÑ‚ Y:вредноÑÑ‚ Z:Цртежи Ñпрема големината на ÑликатаРазмер на метеријалот за печатење Ñпрема бројот на точки по инчРазмер на материјалот за печатење Ñпрема големината на ÑтранатаГолемина Ñпрема ÑликатавредноÑÑ‚:Размер:РаÑтурен HSVРаÑтурање HSV...СликаСлика на екранотСамо Ñе_лекцијаБарај по имеБарај по _ОпиÑБарај по _ИмеБарај:Барам - ве молам почекајтеПребарувам по Ð¾Ð¿Ð¸Ñ - ве молам почекајтеПребарувам по име - ве молам почекајтеПоложеноВтора БојаВтор Одредишен КаналСекундарни опции на Ñликање Ñо пламенВтора Изворна БојаСекундарни опцииЗакаÑнување на ÑекундиСекторВиди %sСлучајно Ñеме (Ñамо за "Од Ñеме" режимот)Семе:СегментПодеÑување на ÑегментотСелекција во контекÑтотИзбериИзбери СеИзбери БојаИзбери континуирани подрачјаИзбери боја на филмотИзбери HTML датотекаИзбери ÑликаИзбери боја на изворот на ÑветлинаИзбери СледноÐамеÑти број на боиИзбери пикÑели одИзбери предходенИзбери подрачјеИзбери _ÑеИзбери ÑеИзбери продолжителни подрачјаИзбери го поÑтоечкото подрачјеОдреди директориум и повторно Ñкенирај ја Gfig колекцијата на објектиИзбери директориум и повторно Ñкенирај ја колекцијатаИзбери го Ñледниот Sm-векторИзбери го Ñледниот векторИзбери го предходниот Sm-векторИзбери го претходниот векторЈа одредува оÑновната единечна мерка за печатењеИзберете го Ñаканиот вид на излезИзберете го името на печатарот (не вид, или модел на штампачот) на кој Ñакате да печатитеИзберете ориентација: вертикално, хоризонтално, наопаку или положено (наопаку хоризонтално)Одредува дали размерот Ñе мери како проценти на доÑтапна големина на Ñтраната или како број на излезни точки по инч.Изберете го моделот на вашиот печатачИзбери:Избрано:СелекцијаÐапредни опции за претварање на Ñелекција во патекаВид на Ñелекција:Селекцијата е %dx%dГолемината на Ñелекцијата не е еднаква. +Делливиот лавирин нема да работи Ñовршено.Селекција во патека...Селекција+ПополниИзбирање:Селективно ГауÑиан заматувањеСелективно ГауÑиан заматување...ПодеÑувања на Ñелективно вчитувањеСелективно вчитај одОдредува Ñлучајна наÑока за Ñекој потегОдредува Ñлучајна големина за Ñекој потегОдредува дали конечната Ñлика ќе биде едноÑтавно делливаОдредува дали потезите ќе одат до крајот на ивицата на ÑликатаПолу-Рамно...Прати во позадинаИÑпрати на поштаРаздели во:Септември 31, 1999ПодеÑи четка...Одреди ја бојата на ÑветлоÑниот изворПоÑтави Ñантиметри како оÑновна единечна меркаГо зема инчот како оÑновна единечна меркаПодеÑувања за оÑветленоÑÑ‚ за печатење. +0 е потполно црно, 2 е потполно бело.ПодеÑување на контраÑтот на печатењетоПодеÑете ја виÑината за печатењеПоÑтави ја големината на печатење на големината на ÑликатаОдредете го размерот (големината) на ÑликатаПодеÑете ја ширината на печатењеSetStretchBltMode грешка (Ñамо предупредување)ПодеÑувањаПодеÑувања за оваа датотека за мапаПодеÑи печатачПодеÑи печатар...Се_нкиСенка под УвотоЗаматување на Ñенката:Длабочина на Ñенката:Длабочина на Ñенката:Сенки:Облик на вториот пламенИзоÑтреноИзоÑтрување...Стрижење:ПомеÑтиВредноÑÑ‚ на помеÑтувањето:ПомеÑти хоризонталноПомеÑти вертикалноПомеÑтување...Дали треба да изведам Инверзен Ефект?Дали да го задржам оÑветлувањето?ПрикажиПрикажи ја бојатаПрикажи мрежаПрикажи СликаПрикажи ги лините на рамкатаПрикажи ПозицијаПрикажи го Прегледот (Жичани)Прикажи ја ÑелекцијатаПрикажи ги Ñите објектиПрикажи URL Ñовет за подрачјеПрикажи _рачки на подрачјетоПрикажи Ñледен објектПрикажи претходен објектПрикажи/Сокри го жичаниот прегледЕ_днина:СерпинÑкиЕдноÑтавноСин_уÑуидалноСинуÑЕднинаСинуÑСинуÑ: иÑцртување...СинуÑноГолеминаГолемина (%):Фактор на големината на преливот:Уредувач на големината на мапатаГолемина на хартијата на која ќе печатитеГолемина:Големина: %ld бајти (%02.01f kB)Големина: непознатаГолемини:Ðајбавни, но најточни и најглатки бои за нијанÑирање на Ñлики и фотографииРазмачкајПора_мнувањеПора_мнувањеМазна палетаМазни примероциГо измазнувам X преливот...Го измазнувам Y преливот...Омекнување:Измазнување на порамнувањетоSm-векториДржи во мрежаСобел детекција на ивиците...Собел детекција на ивицитеСобел _хоризонталноСобел _вертикалноСилноПолни боиСилен ШумСилен Шум...Позадина во бојаÐекои податоци Ñе променети!Жал ми е, можам да зачувам Ñамо ИÐДЕКСИРÐÐИ и СИВИ Ñлики.Жалам, но каналите и маÑките не може да Ñе ротираат.Извор (влезен Ñлот) на медиумот на кој ќе печатитеИзвор 1:Извор 2:Изворен Канал во Датотеката:Изворен канал:ОпÑег на изворната бојаИзвор...Точки на шилото:Прек_лопување на проÑторот:Раздел (Процент):Раздел:СјаењеСјаење...ТранÑформација на ПроÑÑ‚Ð¾Ñ€Ð¾Ñ‚Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° проÑторниот _филтер:Ðаведениот прозорец не е пронајденЈа одредува количината на иÑпапченоÑÑ‚ за примена на Ñликата (процентуално)Го одредува обликот на размерот на четкатаГо одредува размерот на текÑтурата (во проценти на оригиналната датотека)ОгледалÑки:КуглаДизајнер на СфераСферичноÐгол на шилото (-1: Случајно):ПајакГуÑтина на шилотоГуÑтина на шилците:СпиралаБрој на Ñпирални Ñ‚Ð¾Ñ‡ÐºÐ¸Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° точката:ТочкиРаÑтегниВредноÑÑ‚ на раÑтегнувањетоРаÑтегнување...Ја_чина:СтандардноБрој на ѕвездени точкиПочетно помеÑтување:Почетен индекÑ:Почетен агол:Грешка на почетната ÑтраницаЧекорГолемина на чекорот:ПреÑтани кога разликите на пикÑелите Ñе помали од оваа вредноÑтРазвлекувањеStretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) не уÑпеа, грешка = %d, y = %d_ЦврÑтина на потегот:СилноСтилПод-поделба:СубÑемплирање:Подчекори:ОдземањеСуперÐоваИзбирач на боја на СуперÐоваВ_ртлог CWЗамени ги двете кривиВирПромени во "Од Ñеме" Ñо поÑледното ÑемеРотација обрт. од Ñтрелките на чаÑовникотРотација во наÑока на Ñтрелките на чаÑовникотСимболTIFF каналПраг:ДелливоЗаÑитеноÑÑ‚ на де_лчето:Големина на делот:Проѕирна позадинаТурбуленција:ТурбуленцијаОпции за правење табелиОпции на ТабелатаТарга опцииМетаTel_netПривременоПривремена ПроцедураОмекнување на текÑтотТекÑтураСвојÑтва на текÑтуратаТекÑтура:ТекÑтуриGIF форматот подржува Ñамо коментари во 7битно ASCII кодирање. Коментарот не е зачуван.ГИМПреÑиониÑтГрафикотPNG датотеката го одредува помеÑтувањето кое предизвикува Ñлојот да Ñе измеÑти надвор од опÑегот на Ñликата.TIFF форматот подржува Ñамо коментари во +7 битно ASCI кодирање. Коментарот не е зачуван.ВредноÑÑ‚ на пополнувањето.ВредноÑÑ‚ на разделот на ќелитеКоличина на оÑветлување на ивиците од Ñекое парчеÐгол на првата четка за креирањеСе избира големина на четката која е најблиÑка до оригиналната ÑликаБоите Ñе бели и црни.Стандардниот коментар е ограничен на %d букви.Длабочина на капката за Ñенка, пр. колку далеку ќе биде од објектотСе избира наÑоката која најдобро одговара на оригиналната ÑликаРаÑтојанието од Ñредината на Ñликата ја одредува наÑоката на потеготОдалеченоÑта од Ñредината на Ñликата ја одредува големината на потеготПрвиот ред од ÑликатаВиÑина за Ñекоја ќелија на табелата. Може да биде број или процент.ÐијанÑата на подрачјето ја одредува наÑоката на потеготÐијанÑата на подрачјето ја одредува големината на потеготСликата која пробувате да ја зачувате како GIF +Ñодржи Ñлоеви кои Ñе прошируваат вон од границите на Ñликата. +Ова не е дозволено во GIF Ñликите, +За жал. + +Можете да изберете да ги иÑечете Ñите Ñлови кон границата на +Ñликата, или да го откажете ова зачувување.Сликата која пробувате да ја зачувате како XBM Ñодржи повеќе +од две бои. + +Ве молам префлете ја во црно-бела (1 битна) индекÑирана Ñлика и пробајте повторно.Ðајголема четка за креирањеСлојот бара провидноÑтИмето '%s' е веќе во употреба!Името '%s' е веќе во употреба!Број на наÑоки (нпр. четки) за кориÑтењеБрој на пикÑели во рамките на табелата.Број на големини на четки за кориÑтењеРелативна гуÑтина на потегот Ñо четкаБараниот документ не е пронајден во вашата патека за ГИМП помош која е прикажана погоре. Ова значи дека темата Ñеуште не била напишана или вашата инÑталација не е комплетна. Уверете Ñе дека инÑталацијата е во ред пред да ја пријавите оваа грешка како бубачка во програмата.Ðајмала четка за креирањеSm-векторÑко поле. Лев клик го помеÑтува избраниот вектор, деÑен го завртува кон глушецот, Ñреден клик додава нов Sm-вектор.Потезите Ñе рамномерно раÑпоредени преку ÑликатаПотезите го Ñледат "течното" правилоТекÑÑ‚ од фатената табела.ТекÑÑ‚ кој оди во Ñекоја ќелија.Типот на оваа SUN раÑтер датотека не е подржанКратенка на мерната единица (пр. "cm" за Ñантиметар).Единица во множинаЕдиница во еднинаСимбол на мерната единица (пр. „'“ за инчи). Да Ñе употреби кратенка ако нема Ñимбол.ВекторÑко поле. Лев клик да го помеÑти избраниот вектор, деÑен клик да го заврти кон глушецот, Среден клик за додавање на нов вектор.Ширина за Ñекоја ќелија на табелата. Може да биде број или процент.Ðема доволно Ñлоеви за израмнување.Ова поле Ñлужи за внеÑување на нумерички знакови. Во него одредуваме колку децимални броеви ќе имаат приближно иÑта точноÑÑ‚ како "инч" полето Ñо две децимални бројки.Оваа длабочина Ñликата не е подржанаОва не е GIF датотека.Овој израз ќе Ñе кориÑти за идентификација на единицата во ГИМП-овата датотека за подеÑувања.Пра_г:Праг на ÐлфаПраг на алфа: Бојам проѕирноÑÑ‚...Праг:Раздел на делот:ДелчеСо Ñлика на изворот_ВиÑина на деловите:УредноÑÑ‚ на делот:_Ширина на деловите:РаÑпореди ја изворната Ñлика: кориÑно за беÑконечни плановиПодели во нова големинаРазделиДелливоДелител...Првобитни ДелчињаДелам...ДоВо бојаÐа_левоÐа дноКон ПоловитеÐа_деÑноÐа врвДо:ÐлаткиГорна ивицаГоре-_ЛевоВрв:_СледењеПрефрлам податоци од TWAIN...ТранÑформација %sПровидноПроѕирна позадинаГледај како оваПрикажи како ÑтеблоПробајте Ñо Скокачка кутијаТурбуленција:ТипОваа мапа Ñо боја не е подржанаВид на маÑтило во печатаротТип на ÑветлоÑен извор за применувањеВид на медиум на кој ќе печатитеВрÑта на објект за мапирањеТип:URLURL: %sДе-оптимизирам ÐнимацијаÐе можам да додадам додатна точка. +Големина на некомпреÑирана: %sÐаназадПоништи го поÑледното зголемувањеЕдиницаУредник за единициФактор на единицата не Ñмее да биде 0.ЕдинициЕдиници:Ðепознат модел на боја во PNG датотеката „%s“Ðепозната причинаÐеименуваноПоништи го изборотПоништи го Избери СеСимни ја оÑтрината на маÑкатаÐеподржана длабочина на битовите (%d)!Ðе го подржувам тој формат на четкаÐеподржан формат или инÑерти Ñе празни!БезименоÐевообичаена PCX врÑта, Ñе откажувамОÑвежиГоре ЛевоГоре ДеÑноГорен лев _x:Горен лев _y:ÐаопакуКо_риÑти Макроа намеÑто ÑтруктураКориÑти го тековниот прелив намеÑто +бојата на четката/позадината.КориÑти кружен опÑегКориÑти ГИМП водичи...КориÑти Гимп водичиКориÑти ја Маг мапата:КориÑти ја оригиналната +Големина на ÑликатаУпотреби помошни боиКориÑти _1 бајт Run-Length-Encoding (RLE)КориÑти провидна позадина, Само иÑцртаните потези ќе бидат видливиКориÑти проÑечна вредноÑтУпотреби коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за Ñината компонентаУпотреби коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за зелената компонентаУпотреби коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за црвената компонентаКориÑти коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за оваа компонента на бојатаКориÑти функција за плавата/јачина компонентаКориÑти функција за зелената/Ñатурација компонентаКориÑти функција за црвената/нијанÑа компонентаКориÑти линеарно мапирање намеÑто било која тригонометриÑка функција за каналот на оваа бојаКориÑти логлог омекнување за отÑтранување на "иÑкривувањето" во резултатитеКориÑти логлог омекнувањеКориÑти повратна вредноÑтУпотреби ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за Ñината компонентаУпотреби ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за зелената компонентаУпотреби ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за црвената компонентаКориÑти ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за оваа компонента на бојатаУпотреби ја бојата на позадинатаУпотреби ја бојата на ÑликатаУпотреби ја бојата на предниот планКориÑтете четка/пенкало или Ñпреј кога цртате на Ñликата. МоÑтрата бои Ñо тековно избраната четка Ñо моÑтрата. Се применува Ñамо на кругови/елипÑи ако е вклучено менувањето на ПроÑ. Кругови/ЕлипÑи.КориÑтам:_ВредноÑтВредноÑтОбратна вредноÑÑ‚...Ширење на вредноÑтаЈа ширам вредноÑта...Варијации на вредноÑтаВредноÑÑ‚:Ван Гог (LIC)Ван Гог (LIC)...Вектор Маг:_Ðгол на Векторот:_Должина на Векторот:Вектори_Вертикална база:ВертикалноВертикална бојаВертикалноМногу темноВидеоВидео/RGB...Види ИзворVoronoi режимот предизвикува Ñамо Sm-векторот најблизок до избраната точка да има некое влијаниеVoronoi режимот прави да Ñамо векторот кој е најблиÑку до избраната точка да има некое влијаниеVorte_xVortex_2Vortex_3WAI_SСо изворна ÑликаВпи_ши екÑтра датотека на маÑкатаПредупредувањеПредупредување: +Сликата која ја вчитувате има 16 бита по канал. ГИПМ може да работи Ñамо Ñо 8 бита, така да ова ќе Ñе преведе. Ќе бидат изгубени информации поради ова преведување.Предупредување: +Провидната боја во пишаната датотека може да биде неточна на читачите кои не подржуваат провидноÑÑ‚.Предупредување: датотеката Ñо параметари „%s“ е за понови верзии на CML_Пребарувач.Предупредување: „%s“ е датотека Ñо Ñтар формат.Предупредување: изворот и одредиштето Ñе иÑтиот канал.Предупредување: неподржаниот Ñлој %d е зачуван како ХЈТПредупредување: неподржаниот вид на патека %d е зачуван како ХЈТПредупредување: неподржаниот вид на единица %d е зачуван како XJTИзобличувањеЈа изобличувам рамката бр. %d ...Изобличување...Тип на бранБрановиБранувам...СлабоÐе е одреден веб прегледувач. +Ве молам одредете прегледувач Ñо кориÑтење на прозорот ПодеÑувања.Што е Сива?Кога ќе Ñе зголеми вредноÑта, крајната Ñлика ќе биде размерно зголемена без менување на размерот.Whirl and PinchWhirling and Pinching...БелоВиÑина (пикÑели)Ширина на хартијата на која ќе печатитеШирина:ВетерПрозорциСо позадина од:Со Ñила на преливот (0,1)Со p и Ñлучајно (0,1)Со Ñлучајна Ñила (0,1)Со Ñлучајна Ñила (0,10)СтеблоРаботи на копијаЗавиткајГрешка при запишувањеX Ñкала (големина)X:XBM опцииXЈТ датотеката Ñодржи непознат Ñлој %dXЈТ Ñодржи непознат вид на патека %dХЈТ датотеката Ñодржи непознат вид на единица %dXÐœÐX:XMIN:Ðеправилна XPM датотекаXY Позиција:X_1:X_2:Y Ñкала (големина)Y:YÐœÐX:YMIN:Y_1:Y_2:ЖолтаЖолта:Жолта_КЌе направете огромна HTML +датотека која Ñигурно ќе го Ñруши +вашиот интернет прелиÑтувач.Ðе можете да ја ротирате целата Ñлика ако во иÑтата имате лебдечка Ñелекција.Ðе можете да ја ротирате целата Ñлика ако во иÑтата имате Ñелекција.Ðе можете да ја зачувате маÑката на курÑорот на Ñлики +кои немаат алфа канал.Морате да означите хоризонтално или вертикално (или и двете)Z Ñкала (големина)Z:Zealous одÑекување(tm)...ЗголемиОпции за ЗголемувањеСкала на зголемување:Зголемување наЗголемиЗголемување (направи ја Ñликата поголема)ÐамалиÐамалување (направи ја Ñликата помала)_3x3_Кратенка:_Ðдаптивно_ДополнителноÐапредно_Ðлфа:_Ðлфа Праг:Главени Ðлфа ТримÐлфа:Ðмбиентално:УÑмерено_ВредноÑÑ‚:_Ðмплитуда:Ðгол:_Ðнимирај_Омекнување_ÐвтоматÑки преведи_Ðзимут:Позадина_Боја на позадината_ОÑновен URL:Ширина на нагибот:_Би-линеарно_ЦрнаВредноÑÑ‚ на _црна:За_црнето_ЕкÑплозијаМешањеСи_на:Сина:Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето:_Граница:Доле-_ЛевоДно:КутијаОÑветлување_Светло:_ЧеткаГолемина на _кантата:_Bump Map_РидеÑÑ‚ Терен:_Ридовит терен_КопирајИ_здувај_Деформирај радиуÑ:Длабочина:Деривација_ОпиÑ:_Детал:Ра_зликаРазлевање:_Броеви:_Измештај:_ДиÑторзирано_Делење:Прегледај_ТочкиПојачување на ивиците_УредиЕфект на Слика:_Елевација:_ИÑпапчи_ЕнкапÑулиран PostScript_Цела СликаМапа на околината_ЕкÑплицитно делење_ЕкÑпонент:_FG/BG оÑветлување_Фактор:Стандардно_ДатотекаИме на Датотеката:Должина на филтерот:ÐамеÑти ја виÑината во Ñликите_Фонт:СилноÐаÑилно поплочување?_Преден план и позадина_Боја на предниот план_Преден план во врвовиФрактали_Слободно_Фреквенции_Ftp Страница_Гама:_Општо_Генерирај потполен HTML документ._GopherПре_ливСива:_Зелена:Зелена:Сива_Големина на мрежата:_Зголеми_HSL Модел на боја_ВиÑина_ВиÑина:_Помош_Hex_СкриеноОÑветлување:Задржи ги макÑималните каналиПоÑтојаноÑÑ‚:ОфÑет на _јамата:_ХоризонталноХори_зонтален Ñтил:_Хоризонтално:_Хориз. раздел:ÐијанÑаРотација на _нијанÑа:_ID:_Идеално_ПрефикÑ:Игнорирај_Игнорирај го долниот Ñлој дури и ако е видливИнчÐезавиÑноВлезен SPI:_Вметни_ИÑпреплетеноÑÑ‚ (Ðдам7)_Инверзно_JPEG_JavaScriptЗадржи го размерот_Задржи виÑтинÑки NCSA кругови_Задржи ја оригиналната околина_Задржи ја ознаката на резултатот (Ñамо во една наÑока)_Убиј_LZW_ЛаплаÑГолемо подзаÑтанување_Лево_Лев почеток на:Ð˜Ð½Ð´ÐµÐºÑ Ð½Ð° прелом на зракот во леќата:СветлоОграничи ја ширината на цртатаЛинеарно_Линеарна мапа_Линии_Ð’Ñ€Ñка_Вчитај ÑтандардниЗаклучи ги каналите_Долна_MIMEÐаправи ја околината провидна_Мапирај наназад_Мапирање_ЕкÑтензија на МаÑката:Големина на маÑката:ÐœÐ°Ñ‚ÐµÑ€Ð¸Ñ˜Ð°Ð»ÐœÐ°ÐºÑ (%):_МакÑ. Длабочина:МакÑ. Делта:_Мени_Спој_Средна вредноÑÑ‚ во врвовите_Средни тоновиМилиметарМинимална вредноÑÑ‚:_ОгледалоРазни операции.Промени го црвениот/нијанÑа канал_МонохроматÑки_ПомеÑти_Природна боја_Бр. Преку:Интензитет на шумот:Ðишто_Ðормално_Број на делови:_Број на виÑини:_ПакетноПараметриПериод:_Фаза:_Pinch вредноÑÑ‚:_Пинг ПонгВдлабнати површини_Множина:_Полигон_PostScript Ðиво 2Име на _префикÑот:_Задржи го оÑветлувањето_Дефиниции_Преглед_Прегледај еднашПреглед!_Превит_Питај за инфо за подрачјетоРитам на _рекламирањето:_ПÑихобилноÑÑ‚_RGB_RGB Модел на боја_RLE компреÑијаRLE кодираноРадиално_РадиуÑ:Случајна ÐијанÑа:_Случајно Ñеме:Стихијно_ЗрациПрима:П_равоаголникЦрвена:_Врати %s_РефлекÑно_ОтÑтрани_Рендерирам_Бара предефиниран URLЗадржи деливоÑÑ‚_ДеÑно_ДеÑна граница:Ро_бертÑ_РотираноЗаÑитувањеЗаÑитување:_Зачувај коментар во датотека_Зачувај ÑтандардниДлабочина на _барање:_Барај:_Втори пламени_СелекцијаИÑпраќа:_ÐамеÑти ја околината во боја на позадина_ÐамеÑти ја околината на Ð¸Ð½Ð´ÐµÐºÑ 0_ПодеÑувања_ИзоÑтри ги ивицитеОÑтрина:Прикажи курÑорСинуÑ_Големина:_Големина:Ра_змаз„_Држење во Мрежа“ Вклучено_Собел_ОгледалÑки:_Брзина:С_ферична мапаДолжина на шилото:Пречки:Функција на точки:КвадратиКвадратиПодзаÑтанување_Јачина:_Симбол:Име на _целната рамка/ID: (опционо - Ñе кориÑти Ñамо за РÐМКИ)_ГуÑтина_ПрагПраг:_Поплочан ридеÑÑ‚ теренГолемина на _делчето:_ÐаÑлов:_ÐлаткиОд врвот почнува на:_Горе-ДеÑноВрв:_Провидно_URL кој ќе Ñе активира кога е кликнато на ова подрачје: (потребно)_Поништи %sОÑвежи_Горна_Горна границаПо_виÑок праг:Употреби боја на позадине_КориÑти Cellspan_КориÑти GLib типови (guint8*)Употреби алгоритам за интензитет_КориÑти рачки Ñо дупла големина_КориÑти (невидлив) долен Ñлој како базата_UuencodeВредноÑтВредноÑÑ‚:_Вариација:_Верт. раздел:_ВертикалноВе_ртикален Ñтил:_Вертикално:_Поглед_VoronoiИзо_бличување_Водена линија:Бранова _должина:_Веб Страница_Whirl Ðгол:_БелоВредноÑÑ‚ на _бела:_Широко-иÑфрлено_Ширина_Ширина:_Ветер_Со бел шумЗа_мотајЗамотој околу_Впиши ХотСпот вредноÑти_X ИзмеÑтување:_X помеÑтување:_X вредноÑÑ‚:_X Големина:X-помеÑтување:_X10 Формат на БитмапаX:_Y ИзмеÑтување:_Y помеÑтување:_Y вредноÑÑ‚:_Y Големина:Y-помеÑтување:Y:ЖолтаZ:Зголемување_Зголеми:'Стандарден' е креиран.Еден прозорецпотоаалфацрнаÑинаÑинило_cb470Ñинило_cb470fÑинило_cb709Ñинило_cb709fне можам да ги прочитам влезовите на боиÑмцијанцијан_к_е-поштазеленанијанÑаЛошо форматирана GFlare датотека: %s +к(1-x^p)к(1-x^p) во чекорикx^pкx^p во чекорик{x(1-x)}^pк{x(1-x)}^p во чекоривчитај_Ñлика (xwd): XWD-датотеката '%s' е од формат %d, длабочина %d +и битови по пикÑел %d. +Во моментов не е подржана. +lpeek.mrijk@consunet.nlluma_y470luma_y470fluma_y709luma_y709fмагентамагента_кМилиÑекундиниеден%s не е пронајден во gflares_listпикÑелипикÑели од _врвотпикÑели од _левопикÑели/%aцрвенацрвенило_cr470црвенило_cr470fцрвенило_cr709црвенило_cr709fзаÑитувањеsin^p, во чекориsin^p-базирана функцијанекаква грешка Ñо екÑтензијата или недоÑтаток на иÑтатаЦелиот екранво ÐлфавредноÑтгрешка при запишувањетоx (пикÑели)y (пикÑели)жолтажолта_к \ No newline at end of file diff -uraN gimp-2.2.8/po-plug-ins/mk.po gimp-2.2.9/po-plug-ins/mk.po --- gimp-2.2.8/po-plug-ins/mk.po 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po-plug-ins/mk.po 2005-02-28 11:23:19.000000000 +0100 @@ -0,0 +1,12285 @@ +# translation of gimp20-plug-ins.po to macedonian +# translation of gimp20-plug-ins.po to Macedonian +# translation of gimp20-plug-ins.po to +# translation of mk.po to +# translation of mk.po to macedonian +# translation of mk.po to Macedonian +# translation of sr.po to Macedonian +# Serbian translation of gimp plug-ins +# Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003. +# +# This file is distributed under the same license as the gimp package. +# +# Maintainer: Бранко Ивановић +# Зоран ДимовÑки , 2004. +# Vladimir Stefanov , 2004. +# Зоран ДимовÑки , 2004. +# Зоран ДимовÑки , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: gimp20-plug-ins\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-01-07 02:24+0100\n" +"PO-Revision-Date: 2004-10-21 10:29+0200\n" +"Last-Translator: Vladimir Stefanov \n" +"Language-Team: macedonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.3\n" + +#: plug-ins/FractalExplorer/Dialogs.c:529 plug-ins/gfig/gfig.c:2904 +#: plug-ins/gflare/gflare.c:894 +#, c-format +msgid "" +"No %s in gimprc:\n" +"You need to add an entry like\n" +"(%s \"%s\")\n" +"to your %s file." +msgstr "" +"Ðема %s во gimprc:\n" +"Треба да додате Ð·Ð°Ð¿Ð¸Ñ Ñличен\n" +"(%s \"%s\")\n" +"на вашата датотека %s." + +#: plug-ins/FractalExplorer/Dialogs.c:549 +#: plug-ins/FractalExplorer/Dialogs.c:1633 plug-ins/common/AlienMap.c:1149 +#: plug-ins/common/AlienMap2.c:1152 plug-ins/gfig/gfig.c:2617 +#: plug-ins/imagemap/imap_about.c:38 plug-ins/print/gimp_main_window.c:368 +msgid "About" +msgstr "За" + +#. Preview +#: plug-ins/FractalExplorer/Dialogs.c:574 plug-ins/Lighting/lighting_ui.c:1127 +#: plug-ins/MapObject/mapobject_ui.c:1396 plug-ins/common/CML_explorer.c:1170 +#: plug-ins/common/channel_mixer.c:551 plug-ins/common/curve_bend.c:1244 +#: plug-ins/common/destripe.c:572 plug-ins/common/emboss.c:705 +#: plug-ins/common/fractaltrace.c:759 plug-ins/common/grid.c:655 +#: plug-ins/common/iwarp.c:1220 plug-ins/common/mapcolor.c:551 +#: plug-ins/common/nlfilt.c:450 plug-ins/common/polar.c:599 +#: plug-ins/common/sharpen.c:522 plug-ins/common/sinus.c:1035 +#: plug-ins/common/spheredesigner.c:2508 plug-ins/common/tileit.c:390 +#: plug-ins/common/waves.c:438 plug-ins/common/whirlpinch.c:662 +#: plug-ins/flame/flame.c:918 plug-ins/gflare/gflare.c:2325 +#: plug-ins/gflare/gflare.c:3246 plug-ins/gimpressionist/orientmap.c:504 +#: plug-ins/gimpressionist/preview.c:111 plug-ins/gimpressionist/sizemap.c:458 +#: plug-ins/ifscompose/ifscompose.c:926 plug-ins/print/gimp_main_window.c:413 +#: plug-ins/rcm/rcm_dialog.c:124 plug-ins/rcm/rcm_dialog.c:670 +msgid "Preview" +msgstr "Преглед" + +# +#: plug-ins/FractalExplorer/Dialogs.c:619 +msgid "Realtime Preview" +msgstr "Преглед во реално време" + +#: plug-ins/FractalExplorer/Dialogs.c:626 +msgid "If you enable this option the preview will be redrawn automatically" +msgstr "Ðко ја вклучите оваа опција прегледот автоматÑки ќе Ñе оÑвежи" + +# +#: plug-ins/FractalExplorer/Dialogs.c:629 +msgid "Redraw" +msgstr "ОÑвежи" + +# +#: plug-ins/FractalExplorer/Dialogs.c:635 +msgid "Redraw preview" +msgstr "ОÑвежи преглед" + +# +#. Zoom Options +#: plug-ins/FractalExplorer/Dialogs.c:638 +msgid "Zoom Options" +msgstr "Опции за Зголемување" + +#: plug-ins/FractalExplorer/Dialogs.c:651 +msgid "Undo last zoom" +msgstr "Поништи го поÑледното зголемување" + +#: plug-ins/FractalExplorer/Dialogs.c:661 +msgid "Redo last zoom" +msgstr "Врати го поÑледното зголемување" + +# +#: plug-ins/FractalExplorer/Dialogs.c:693 +msgid "_Parameters" +msgstr "Параметри" + +# +#: plug-ins/FractalExplorer/Dialogs.c:696 +msgid "Fractal Parameters" +msgstr "Параметри на фракталот" + +#: plug-ins/FractalExplorer/Dialogs.c:710 +msgid "XMIN:" +msgstr "XMIN:" + +#: plug-ins/FractalExplorer/Dialogs.c:713 +msgid "Change the first (minimal) x-coordinate delimitation" +msgstr "Промени ги првите (минимални) делимитатор x-координати" + +#: plug-ins/FractalExplorer/Dialogs.c:721 +msgid "XMAX:" +msgstr "XÐœÐX:" + +#: plug-ins/FractalExplorer/Dialogs.c:724 +msgid "Change the second (maximal) x-coordinate delimitation" +msgstr "Промени ги вторите (макÑимални) делимитатор x-координати" + +#: plug-ins/FractalExplorer/Dialogs.c:732 +msgid "YMIN:" +msgstr "YMIN:" + +#: plug-ins/FractalExplorer/Dialogs.c:735 +msgid "Change the first (minimal) y-coordinate delimitation" +msgstr "Промени ги првите (минимални) делимитатор y-координати" + +#: plug-ins/FractalExplorer/Dialogs.c:743 +msgid "YMAX:" +msgstr "YÐœÐX:" + +#: plug-ins/FractalExplorer/Dialogs.c:746 +msgid "Change the second (maximal) y-coordinate delimitation" +msgstr "Промени ги вторите (макÑимални) делимитатор y-координати" + +#: plug-ins/FractalExplorer/Dialogs.c:754 +msgid "ITER:" +msgstr "ITER:" + +#: plug-ins/FractalExplorer/Dialogs.c:757 +msgid "" +"Change the iteration value. The higher it is, the more details will be " +"calculated, which will take more time" +msgstr "Промени ја вредноÑта на итерацијата. Колку е поголема, повеќе детали ке Ñе преÑметуваат, за кое што ќе треба повеќе време" + +# +#: plug-ins/FractalExplorer/Dialogs.c:766 +msgid "CX:" +msgstr "CX:" + +#: plug-ins/FractalExplorer/Dialogs.c:769 +msgid "" +"Change the CX value (changes aspect of fractal, active with every fractal " +"but Mandelbrot and Sierpinski)" +msgstr "Промени ја CX вредноÑта (промените ги опфаќаат Ñите фрактали оÑвен фракталите Манделброт и СерпинÑки)" + +# +#: plug-ins/FractalExplorer/Dialogs.c:778 +msgid "CY:" +msgstr "CY:" + +#: plug-ins/FractalExplorer/Dialogs.c:781 +msgid "" +"Change the CY value (changes aspect of fractal, active with every fractal " +"but Mandelbrot and Sierpinski)" +msgstr "Промени ја CY вредноÑта (промените ги опфаќаат Ñите фрактали оÑвен фракталите Манделброт и СерпинÑки)" + +# +#: plug-ins/FractalExplorer/Dialogs.c:798 +msgid "Load a fractal from file" +msgstr "Вчитај Фрактал од датотека" + +# +#: plug-ins/FractalExplorer/Dialogs.c:806 +msgid "Reset parameters to default values" +msgstr "Врати ги параметрите на предефинираната вредноÑÑ‚" + +# +#: plug-ins/FractalExplorer/Dialogs.c:815 +msgid "Save active fractal to file" +msgstr "Зачувај го Ñегашниот фрактал во датотека" + +# +#. Fractal type toggle box +#: plug-ins/FractalExplorer/Dialogs.c:818 +msgid "Fractal Type" +msgstr "Тип на фрактал" + +#: plug-ins/FractalExplorer/Dialogs.c:830 +msgid "Mandelbrot" +msgstr "Манделброт" + +#: plug-ins/FractalExplorer/Dialogs.c:832 +msgid "Julia" +msgstr "Јулија" + +#: plug-ins/FractalExplorer/Dialogs.c:834 +msgid "Barnsley 1" +msgstr "БарнÑлеy 1" + +#: plug-ins/FractalExplorer/Dialogs.c:836 +msgid "Barnsley 2" +msgstr "БарнÑли 2" + +#: plug-ins/FractalExplorer/Dialogs.c:838 +msgid "Barnsley 3" +msgstr "БарнÑли 3" + +# +#: plug-ins/FractalExplorer/Dialogs.c:840 +msgid "Spider" +msgstr "Пајак" + +#: plug-ins/FractalExplorer/Dialogs.c:842 +msgid "Man'o'war" +msgstr "Man'o'war" + +# +#: plug-ins/FractalExplorer/Dialogs.c:844 +msgid "Lambda" +msgstr "Ламбда" + +#: plug-ins/FractalExplorer/Dialogs.c:846 +msgid "Sierpinski" +msgstr "СерпинÑки" + +# +#: plug-ins/FractalExplorer/Dialogs.c:896 plug-ins/common/sinus.c:882 +#: plug-ins/imagemap/imap_preferences.c:515 +msgid "Co_lors" +msgstr "Бои" + +# +#. Number of Colors frame +#: plug-ins/FractalExplorer/Dialogs.c:900 plug-ins/common/borderaverage.c:396 +msgid "Number of Colors" +msgstr "Број на бои" + +# +#: plug-ins/FractalExplorer/Dialogs.c:913 +msgid "Number of colors:" +msgstr "Број на бои:" + +#: plug-ins/FractalExplorer/Dialogs.c:916 +msgid "Change the number of colors in the mapping" +msgstr "Промени го бројот на боите кај мапирањата" + +# +#: plug-ins/FractalExplorer/Dialogs.c:923 +msgid "Use loglog smoothing" +msgstr "КориÑти логлог омекнување" + +#: plug-ins/FractalExplorer/Dialogs.c:930 +msgid "Use log log smoothing to eliminate \"banding\" in the result" +msgstr "КориÑти логлог омекнување за отÑтранување на \"иÑкривувањето\" во резултатите" + +# +#. Color Density frame +#: plug-ins/FractalExplorer/Dialogs.c:934 +msgid "Color Density" +msgstr "ГуÑтина на бојата" + +#. These values are translated for the GUI but also used internally +#. to figure out which button the user pushed, etc. +#. Not my design, please don't blame me -- njl +#: plug-ins/FractalExplorer/Dialogs.c:947 plug-ins/common/compose.c:131 +#: plug-ins/common/compose.c:141 plug-ins/fp/fp_gtk.c:28 +msgid "Red:" +msgstr "Црвена:" + +# +#: plug-ins/FractalExplorer/Dialogs.c:950 +msgid "Change the intensity of the red channel" +msgstr "Промени го интензитетот на црвениот канал" + +#: plug-ins/FractalExplorer/Dialogs.c:957 plug-ins/common/compose.c:132 +#: plug-ins/common/compose.c:142 plug-ins/fp/fp_gtk.c:29 +msgid "Green:" +msgstr "Зелена:" + +# +#: plug-ins/FractalExplorer/Dialogs.c:960 +msgid "Change the intensity of the green channel" +msgstr "Промени го интезитетот на зелениот канал" + +#: plug-ins/FractalExplorer/Dialogs.c:967 plug-ins/common/compose.c:133 +#: plug-ins/common/compose.c:143 plug-ins/fp/fp_gtk.c:30 +msgid "Blue:" +msgstr "Сина:" + +# +#: plug-ins/FractalExplorer/Dialogs.c:970 +msgid "Change the intensity of the blue channel" +msgstr "Промени го интезитетот на Ñиниот канал" + +# +#. Color Function frame +#: plug-ins/FractalExplorer/Dialogs.c:976 +msgid "Color Function" +msgstr "Функции на боите" + +#. Redmode radio frame +#: plug-ins/FractalExplorer/Dialogs.c:986 plug-ins/common/AlienMap.c:1218 +#: plug-ins/common/channel_mixer.c:600 plug-ins/common/decompose.c:130 +msgid "Red" +msgstr "Црвена" + +#: plug-ins/FractalExplorer/Dialogs.c:990 +#: plug-ins/FractalExplorer/Dialogs.c:1031 +#: plug-ins/FractalExplorer/Dialogs.c:1072 +msgid "Sine" +msgstr "СинуÑ" + +#: plug-ins/FractalExplorer/Dialogs.c:992 +#: plug-ins/FractalExplorer/Dialogs.c:1033 +#: plug-ins/FractalExplorer/Dialogs.c:1074 +msgid "Cosine" +msgstr "КоÑинуÑ" + +#: plug-ins/FractalExplorer/Dialogs.c:994 +#: plug-ins/FractalExplorer/Dialogs.c:1035 +#: plug-ins/FractalExplorer/Dialogs.c:1076 plug-ins/Lighting/lighting_ui.c:504 +#: plug-ins/common/CML_explorer.c:168 plug-ins/common/align_layers.c:425 +#: plug-ins/common/align_layers.c:453 plug-ins/common/ps.c:2729 +#: plug-ins/common/ps.c:2741 plug-ins/common/psp.c:418 +#: plug-ins/fits/fits.c:1011 +msgid "None" +msgstr "Ðишто" + +# +#: plug-ins/FractalExplorer/Dialogs.c:999 +#: plug-ins/FractalExplorer/Dialogs.c:1040 +#: plug-ins/FractalExplorer/Dialogs.c:1081 +msgid "Use sine-function for this color component" +msgstr "КориÑти ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за оваа компонента на бојата" + +# +#: plug-ins/FractalExplorer/Dialogs.c:1002 +#: plug-ins/FractalExplorer/Dialogs.c:1043 +#: plug-ins/FractalExplorer/Dialogs.c:1084 +msgid "Use cosine-function for this color component" +msgstr "КориÑти коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за оваа компонента на бојата" + +# +#: plug-ins/FractalExplorer/Dialogs.c:1005 +#: plug-ins/FractalExplorer/Dialogs.c:1046 +#: plug-ins/FractalExplorer/Dialogs.c:1087 +msgid "" +"Use linear mapping instead of any trigonometrical function for this color " +"channel" +msgstr "КориÑти линеарно мапирање намеÑто било која тригонометриÑка функција за каналот на оваа боја" + +# +#: plug-ins/FractalExplorer/Dialogs.c:1014 +#: plug-ins/FractalExplorer/Dialogs.c:1055 +#: plug-ins/FractalExplorer/Dialogs.c:1096 +msgid "Inversion" +msgstr "Инверзија" + +#: plug-ins/FractalExplorer/Dialogs.c:1022 +#: plug-ins/FractalExplorer/Dialogs.c:1063 +#: plug-ins/FractalExplorer/Dialogs.c:1104 +msgid "" +"If you enable this option higher color values will be swapped with lower " +"ones and vice versa" +msgstr "Ðко ја вклучите оваа опција, поголемите вредноÑти на бојата ќе бидат заменети Ñо помали и обратно" + +#. Greenmode radio frame +#: plug-ins/FractalExplorer/Dialogs.c:1027 plug-ins/common/AlienMap.c:1241 +#: plug-ins/common/channel_mixer.c:601 plug-ins/common/decompose.c:131 +msgid "Green" +msgstr "Зелена" + +#. Bluemode radio frame +#: plug-ins/FractalExplorer/Dialogs.c:1068 plug-ins/common/AlienMap.c:1264 +#: plug-ins/common/channel_mixer.c:602 plug-ins/common/decompose.c:136 +msgid "Blue" +msgstr "Плава" + +# +#. Colormode toggle box +#: plug-ins/FractalExplorer/Dialogs.c:1109 +msgid "Color Mode" +msgstr "Мод за бои" + +#: plug-ins/FractalExplorer/Dialogs.c:1119 +msgid "As specified above" +msgstr "Како горе наведеното" + +#: plug-ins/FractalExplorer/Dialogs.c:1131 +msgid "" +"Create a color-map with the options you specified above (color density/" +"function). The result is visible in the preview image" +msgstr "Ðаправи мапа на боја Ñо горенаведените опции (гуÑтина на бојата/функција). Резултатот е видлив на приказот за Ñлика." + +#: plug-ins/FractalExplorer/Dialogs.c:1141 +msgid "Apply active gradient to final image" +msgstr "Примени го активниот прелив во финалната Ñлика" + +#: plug-ins/FractalExplorer/Dialogs.c:1153 +msgid "Create a color-map using a gradient from the gradient editor" +msgstr "Ðаправи мапа на боја употребувајќи прелив од уредникот за преливи" + +#: plug-ins/FractalExplorer/Dialogs.c:1159 +msgid "FractalExplorer Gradient" +msgstr "ФракталПребарувач прелив" + +# +#: plug-ins/FractalExplorer/Dialogs.c:1191 +msgid "_Fractals" +msgstr "Фрактали" + +#: plug-ins/FractalExplorer/Dialogs.c:1823 plug-ins/bmp/bmpwrite.c:198 +#: plug-ins/common/CEL.c:546 plug-ins/common/CML_explorer.c:2115 +#: plug-ins/common/channel_mixer.c:1238 plug-ins/common/curve_bend.c:834 +#: plug-ins/common/dicom.c:643 plug-ins/common/gbr.c:541 +#: plug-ins/common/gif.c:996 plug-ins/common/gih.c:1217 +#: plug-ins/common/gtm.c:226 plug-ins/common/jpeg.c:1296 +#: plug-ins/common/pat.c:380 plug-ins/common/pcx.c:580 +#: plug-ins/common/pix.c:515 plug-ins/common/png.c:1160 +#: plug-ins/common/ps.c:975 plug-ins/common/psd_save.c:1555 +#: plug-ins/common/spheredesigner.c:2082 plug-ins/common/sunras.c:510 +#: plug-ins/common/tiff.c:1547 plug-ins/common/xbm.c:991 +#: plug-ins/common/xwd.c:530 plug-ins/fits/fits.c:450 +#: plug-ins/flame/flame.c:431 plug-ins/gfig/gfig.c:1025 +#: plug-ins/gfli/gfli.c:714 plug-ins/ifscompose/ifscompose.c:2591 +#: plug-ins/xjt/xjt.c:1272 plug-ins/xjt/xjt.c:1711 +#, c-format +msgid "Could not open '%s' for writing: %s" +msgstr "Ðе може да Ñе отвори „%s“ за запишување: %s" + +#: plug-ins/FractalExplorer/Dialogs.c:1837 +#, c-format +msgid "Could not write '%s': %s" +msgstr "Грешка при запишување во „%s“: %s" + +#: plug-ins/FractalExplorer/Dialogs.c:1857 +msgid "Save: No filename given" +msgstr "Зачувај: Ðе е дадено име на датотеката" + +#. Can't save to directory +#: plug-ins/FractalExplorer/Dialogs.c:1864 plug-ins/gfig/gfig.c:1096 +msgid "Cannot save to a folder." +msgstr "Ðе може да Ñе зачува во директориум." + +# +#: plug-ins/FractalExplorer/Dialogs.c:1906 +msgid "Load Fractal Parameters" +msgstr "Вчитај ги фракталните параметри" + +# +#: plug-ins/FractalExplorer/Dialogs.c:1930 +msgid "Save Fractal Parameters" +msgstr "Зачувај ги фракталните параметри" + +#. Do not rely on librsvg setting GError on failure! +#: plug-ins/FractalExplorer/Dialogs.c:2124 plug-ins/bmp/bmpread.c:118 +#: plug-ins/common/CEL.c:275 plug-ins/common/CML_explorer.c:2319 +#: plug-ins/common/channel_mixer.c:1153 plug-ins/common/curve_bend.c:886 +#: plug-ins/common/dicom.c:293 plug-ins/common/gbr.c:294 +#: plug-ins/common/gifload.c:295 plug-ins/common/gih.c:629 +#: plug-ins/common/hrz.c:335 plug-ins/common/jpeg.c:761 +#: plug-ins/common/pat.c:263 plug-ins/common/pcx.c:301 +#: plug-ins/common/pix.c:333 plug-ins/common/png.c:663 +#: plug-ins/common/pnm.c:394 plug-ins/common/ps.c:855 +#: plug-ins/common/psd.c:1738 plug-ins/common/psp.c:1459 +#: plug-ins/common/spheredesigner.c:1990 plug-ins/common/sunras.c:381 +#: plug-ins/common/svg.c:241 plug-ins/common/svg.c:623 +#: plug-ins/common/tga.c:413 plug-ins/common/tiff.c:436 +#: plug-ins/common/xbm.c:718 plug-ins/common/xwd.c:383 +#: plug-ins/faxg3/faxg3.c:218 plug-ins/fits/fits.c:337 +#: plug-ins/flame/flame.c:401 plug-ins/gfig/gfig.c:716 +#: plug-ins/gfli/gfli.c:425 plug-ins/gfli/gfli.c:461 plug-ins/xjt/xjt.c:2533 +#: plug-ins/xjt/xjt.c:2541 +#, c-format +msgid "Could not open '%s' for reading: %s" +msgstr "Ðе може да Ñе отвори „%s“ за читање: %s" + +#: plug-ins/FractalExplorer/Dialogs.c:2132 +#, c-format +msgid "'%s' is not a FractalExplorer file" +msgstr "„%s“ не е ФракталПребарувач датотека" + +#: plug-ins/FractalExplorer/Dialogs.c:2137 +#, c-format +msgid "'%s' is corrupt. Line %d Option section incorrect" +msgstr "„%s“ е оштетена. Линија %d во одделот Опции е погрешна" + +#: plug-ins/FractalExplorer/FractalExplorer.c:261 +msgid "/Filters/Render/_Fractal Explorer..." +msgstr "/Филтери/Рендерирање/Фрактален Пребарувач..." + +#: plug-ins/FractalExplorer/FractalExplorer.c:389 +msgid "Rendering Fractal..." +msgstr "Се обојува фракталот..." + +#: plug-ins/FractalExplorer/FractalExplorer.c:763 plug-ins/gfig/gfig.c:3825 +#: plug-ins/gflare/gflare.c:3112 +#, c-format +msgid "Are you sure you want to delete \"%s\" from the list and from disk?" +msgstr "Дали Ñте Ñигурни за бришење на „%s“ од лиÑтата и од диÑкот?" + +#: plug-ins/FractalExplorer/FractalExplorer.c:767 +msgid "Delete Fractal" +msgstr "Избриши фрактал" + +#. the dialog +#: plug-ins/FractalExplorer/FractalExplorer.c:845 +msgid "Edit fractal name" +msgstr "Уреди го името на фракталот" + +#: plug-ins/FractalExplorer/FractalExplorer.c:867 +msgid "Fractal name:" +msgstr "Име на фракталот:" + +#: plug-ins/FractalExplorer/FractalExplorer.c:891 +msgid "New Fractal" +msgstr "Ðов фрактал" + +#: plug-ins/FractalExplorer/FractalExplorer.c:1171 +#, c-format +msgid "File '%s' is not a FractalExplorer file" +msgstr "Датотеката „%s“ не е ФракталПребарувач датотека" + +#: plug-ins/FractalExplorer/FractalExplorer.c:1179 +#, c-format +msgid "" +"File '%s' is corrupt.\n" +"Line %d Option section incorrect" +msgstr "" +"Датотеката „%s“ е оштетена.\n" +"Линија %d во одделот опции е погрешна" + +#: plug-ins/FractalExplorer/FractalExplorer.c:1228 +msgid "My first fractal" +msgstr "Мој прв фрактал" + +#: plug-ins/FractalExplorer/FractalExplorer.c:1244 +msgid "Choose Fractal by double-clicking on it" +msgstr "Избери Фрактал кликнувајќи двапати на него" + +#: plug-ins/FractalExplorer/FractalExplorer.c:1281 +msgid "Select folder and rescan collection" +msgstr "Избери директориум и повторно Ñкенирај ја колекцијата" + +# +#: plug-ins/FractalExplorer/FractalExplorer.c:1293 +msgid "Delete currently selected fractal" +msgstr "Избриши го Ñегашно избраниот фрактал" + +# +#: plug-ins/FractalExplorer/FractalExplorer.c:1344 +msgid "Rescan for Fractals" +msgstr "Повторно Ñкенирај за фрактали" + +# +#: plug-ins/FractalExplorer/FractalExplorer.c:1361 +msgid "Add FractalExplorer Path" +msgstr "Додади ФракталПребарувач патека" + +# +#: plug-ins/Lighting/lighting_apply.c:103 +msgid "Lighting Effects..." +msgstr "СветлоÑни ефекти..." + +# +#: plug-ins/Lighting/lighting_main.c:167 +msgid "/Filters/Light Effects/_Lighting Effects..." +msgstr "/Филтери/СветлоÑни ефекти/СветлоÑни ефекти..." + +# +#. General options +#: plug-ins/Lighting/lighting_ui.c:333 plug-ins/MapObject/mapobject_ui.c:532 +msgid "General Options" +msgstr "Општи опции" + +# +#. +#. toggle = gtk_check_button_new_with_label (_("Use Bump Mapping")); +#. gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), +#. mapvals.bump_mapped); +#. gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); +#. g_signal_connect (toggle, "toggled", +#. G_CALLBACK (togglebump_update), +#. &mapvals.bump_mapped); +#. gtk_widget_show (toggle); +#. +#. gimp_help_set_help_data (toggle, +#. _("Enable/disable bump-mapping (image depth)"), +#. NULL); +#. +#. toggle = gtk_check_button_new_with_label (_("Use Environment Mapping")); +#. gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), +#. mapvals.env_mapped); +#. gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); +#. g_signal_connect (toggle, "toggled", +#. G_CALLBACK (toggleenvironment_update), +#. &mapvals.env_mapped); +#. gtk_widget_show (toggle); +#. +#. gimp_help_set_help_data (toggle, +#. _("Enable/disable environment mapping (reflection)"), +#. NULL); +#. +#: plug-ins/Lighting/lighting_ui.c:368 +msgid "T_ransparent Background" +msgstr "Проѕирна позадина" + +#: plug-ins/Lighting/lighting_ui.c:378 +msgid "Make destination image transparent where bump height is zero" +msgstr "Ðаправи ја деÑтинационата Ñлика проѕирна каде виÑината на издигнување е еднаква на нула" + +# +#: plug-ins/Lighting/lighting_ui.c:381 +msgid "Cre_ate New Image" +msgstr "Создади нова Ñлика" + +#: plug-ins/Lighting/lighting_ui.c:391 plug-ins/MapObject/mapobject_ui.c:603 +msgid "Create a new image when applying filter" +msgstr "Создади нова Ñлика при применување на филтер" + +# +#: plug-ins/Lighting/lighting_ui.c:393 +msgid "High _Quality Preview" +msgstr "Преглед Ñо виÑок квалитет" + +# +#: plug-ins/Lighting/lighting_ui.c:403 +msgid "Enable/disable high quality preview" +msgstr "Вклучи/ИÑкличи преглед Ñо виÑок квалитет" + +# +#: plug-ins/Lighting/lighting_ui.c:411 +msgid "E_nable Antialiasing" +msgstr "Вклучи омекнување на ивиците" + +#: plug-ins/Lighting/lighting_ui.c:432 plug-ins/MapObject/mapobject_ui.c:636 +#: plug-ins/common/bumpmap.c:1070 plug-ins/common/emboss.c:554 +#: plug-ins/common/fractaltrace.c:844 plug-ins/common/struc.c:1296 +msgid "_Depth:" +msgstr "Длабочина:" + +#: plug-ins/Lighting/lighting_ui.c:435 plug-ins/MapObject/mapobject_ui.c:639 +msgid "Antialiasing quality. Higher is better, but slower" +msgstr "Квалитет на омекнувањето на ивиците. Поголем е подобар, но поÑпор" + +#: plug-ins/Lighting/lighting_ui.c:442 +msgid "T_hreshold:" +msgstr "Праг:" + +#: plug-ins/Lighting/lighting_ui.c:445 plug-ins/MapObject/mapobject_ui.c:656 +msgid "Stop when pixel differences are smaller than this value" +msgstr "ПреÑтани кога разликите на пикÑелите Ñе помали од оваа вредноÑÑ‚" + +# +#: plug-ins/Lighting/lighting_ui.c:487 plug-ins/MapObject/mapobject_ui.c:682 +msgid "Light Settings" +msgstr "ПодеÑување на Ñветлина" + +# +#: plug-ins/Lighting/lighting_ui.c:505 +msgid "Directional" +msgstr "ÐаÑочено" + +# +#: plug-ins/Lighting/lighting_ui.c:506 +msgid "Point" +msgstr "Точка" + +# +#: plug-ins/Lighting/lighting_ui.c:511 +msgid "L_ight Type:" +msgstr "Тип на Ñветлина:" + +#: plug-ins/Lighting/lighting_ui.c:514 plug-ins/MapObject/mapobject_ui.c:707 +msgid "Type of light source to apply" +msgstr "Тип на ÑветлоÑен извор за применување" + +# +#: plug-ins/Lighting/lighting_ui.c:516 plug-ins/MapObject/mapobject_ui.c:709 +msgid "Select Lightsource Color" +msgstr "Избери боја на изворот на Ñветлина" + +# +#: plug-ins/Lighting/lighting_ui.c:527 +msgid "Lig_ht Color:" +msgstr "Боја на Ñветлина:" + +# +#: plug-ins/Lighting/lighting_ui.c:531 plug-ins/MapObject/mapobject_ui.c:722 +msgid "Set light source color" +msgstr "Одреди ја бојата на ÑветлоÑниот извор" + +#: plug-ins/Lighting/lighting_ui.c:533 plug-ins/MapObject/mapobject_ui.c:724 +#: plug-ins/MapObject/mapobject_ui.c:1033 +#: plug-ins/print/gimp_main_window.c:464 +msgid "Position" +msgstr "Позиција" + +#: plug-ins/Lighting/lighting_ui.c:551 plug-ins/common/flarefx.c:740 +#: plug-ins/common/nova.c:453 plug-ins/common/papertile.c:269 +#: plug-ins/flame/flame.c:1176 plug-ins/gflare/gflare.c:2651 +msgid "_X:" +msgstr "X:" + +#: plug-ins/Lighting/lighting_ui.c:562 plug-ins/MapObject/mapobject_ui.c:749 +msgid "Light source X position in XYZ space" +msgstr "Позиција на изворната Ñветлина X во XYZ проÑторот" + +#: plug-ins/Lighting/lighting_ui.c:568 plug-ins/common/flarefx.c:761 +#: plug-ins/common/nova.c:474 plug-ins/common/papertile.c:278 +#: plug-ins/common/svg.c:797 plug-ins/common/xbm.c:1236 +#: plug-ins/flame/flame.c:1190 plug-ins/gflare/gflare.c:2655 +msgid "_Y:" +msgstr "Y:" + +#: plug-ins/Lighting/lighting_ui.c:579 plug-ins/MapObject/mapobject_ui.c:763 +msgid "Light source Y position in XYZ space" +msgstr "Позиција на изворната Ñветлина Y во XYZ проÑторот" + +#: plug-ins/Lighting/lighting_ui.c:585 +msgid "_Z:" +msgstr "Z:" + +#: plug-ins/Lighting/lighting_ui.c:595 plug-ins/MapObject/mapobject_ui.c:777 +msgid "Light source Z position in XYZ space" +msgstr "Позиција на изворната Ñветлина Z во XYZ проÑторот" + +# +#: plug-ins/Lighting/lighting_ui.c:598 plug-ins/MapObject/mapobject_ui.c:780 +msgid "Direction Vector" +msgstr "ÐаÑочен Вектор" + +#. X +#: plug-ins/Lighting/lighting_ui.c:614 plug-ins/MapObject/mapobject_ui.c:741 +#: plug-ins/MapObject/mapobject_ui.c:796 +#: plug-ins/MapObject/mapobject_ui.c:1045 +#: plug-ins/MapObject/mapobject_ui.c:1092 plug-ins/ifscompose/ifscompose.c:555 +msgid "X:" +msgstr "X:" + +#: plug-ins/Lighting/lighting_ui.c:625 plug-ins/MapObject/mapobject_ui.c:804 +msgid "Light source X direction in XYZ space" +msgstr "Правец на ÑветлоÑниот извор X во XYZ проÑторот" + +#. Y +#: plug-ins/Lighting/lighting_ui.c:630 plug-ins/MapObject/mapobject_ui.c:755 +#: plug-ins/MapObject/mapobject_ui.c:809 +#: plug-ins/MapObject/mapobject_ui.c:1057 +#: plug-ins/MapObject/mapobject_ui.c:1102 +#: plug-ins/MapObject/mapobject_ui.c:1201 plug-ins/ifscompose/ifscompose.c:569 +msgid "Y:" +msgstr "Y:" + +#: plug-ins/Lighting/lighting_ui.c:640 plug-ins/MapObject/mapobject_ui.c:817 +msgid "Light source Y direction in XYZ space" +msgstr "Правец на ÑветлоÑниот извор Y во XYZ проÑторот" + +#: plug-ins/Lighting/lighting_ui.c:645 plug-ins/MapObject/mapobject_ui.c:769 +#: plug-ins/MapObject/mapobject_ui.c:822 +#: plug-ins/MapObject/mapobject_ui.c:1069 +#: plug-ins/MapObject/mapobject_ui.c:1112 +#: plug-ins/MapObject/mapobject_ui.c:1213 +msgid "Z:" +msgstr "Z:" + +#: plug-ins/Lighting/lighting_ui.c:655 plug-ins/MapObject/mapobject_ui.c:830 +msgid "Light source Z direction in XYZ space" +msgstr "Правец на ÑветлоÑниот извор Y во XYZ проÑторот" + +# +#: plug-ins/Lighting/lighting_ui.c:681 plug-ins/MapObject/mapobject_ui.c:855 +msgid "Intensity Levels" +msgstr "Ðивоа на Интензитетот" + +#: plug-ins/Lighting/lighting_ui.c:699 +msgid "_Ambient:" +msgstr "Ðмбиентално:УÑмерено" + +#: plug-ins/Lighting/lighting_ui.c:717 plug-ins/MapObject/mapobject_ui.c:887 +msgid "Amount of original color to show where no direct light falls" +msgstr "Количина на оригинална боја која Ñе прикажува каде не паѓа директна Ñветлина" + +#: plug-ins/Lighting/lighting_ui.c:729 +msgid "_Diffuse:" +msgstr "Разлевање:" + +#: plug-ins/Lighting/lighting_ui.c:747 plug-ins/MapObject/mapobject_ui.c:913 +msgid "Intensity of original color when lit by a light source" +msgstr "Интензитет на оригинална боја кога е оÑветлено од ÑветлоÑниот извор" + +#: plug-ins/Lighting/lighting_ui.c:755 plug-ins/MapObject/mapobject_ui.c:921 +msgid "Reflectivity" +msgstr "РефлекÑија" + +#: plug-ins/Lighting/lighting_ui.c:773 +msgid "D_iffuse:" +msgstr "Разлевање:" + +#: plug-ins/Lighting/lighting_ui.c:792 plug-ins/MapObject/mapobject_ui.c:953 +msgid "Higher values makes the object reflect more light (appear lighter)" +msgstr "Поголеми вредноÑти кај рефлекÑијата го прават објектот поÑветол" + +# Having the qualities of a speculum, or mirror; having a +# smooth, reflecting surface; as, a specular metal; a +# specular surface. +#: plug-ins/Lighting/lighting_ui.c:804 +msgid "_Specular:" +msgstr "_ОгледалÑки:" + +#: plug-ins/Lighting/lighting_ui.c:823 plug-ins/MapObject/mapobject_ui.c:979 +msgid "Controls how intense the highlights will be" +msgstr "Контролира колку ќе биде интензитетот на оÑветлувањето" + +# +#: plug-ins/Lighting/lighting_ui.c:835 +msgid "_Highlight:" +msgstr "ОÑветлување:" + +#: plug-ins/Lighting/lighting_ui.c:853 plug-ins/MapObject/mapobject_ui.c:1005 +msgid "Higher values makes the highlights more focused" +msgstr "Поголеми вредноÑти ги прават оÑветлувањата да Ñе пофокуÑирани" + +# +#: plug-ins/Lighting/lighting_ui.c:887 +msgid "E_nable Bump Mapping" +msgstr "Вклучи брдовито мапирање" + +#: plug-ins/Lighting/lighting_ui.c:898 +msgid "Enable/disable bump-mapping (image depth)" +msgstr "Вклучи/иÑклучи брдовито мапирање (длабочина на Ñликата)" + +# +#: plug-ins/Lighting/lighting_ui.c:916 +msgid "Bumpm_ap Image:" +msgstr "Брдовита Ñлика:" + +#: plug-ins/Lighting/lighting_ui.c:923 plug-ins/flame/flame.c:704 +msgid "Linear" +msgstr "Линеарно" + +#: plug-ins/Lighting/lighting_ui.c:924 +msgid "Logarithmic" +msgstr "ЛогаритамÑки" + +#: plug-ins/Lighting/lighting_ui.c:925 plug-ins/flame/flame.c:705 +msgid "Sinusoidal" +msgstr "СинуÑно" + +#: plug-ins/Lighting/lighting_ui.c:926 plug-ins/flame/flame.c:706 +msgid "Spherical" +msgstr "Сферично" + +# +#: plug-ins/Lighting/lighting_ui.c:929 +msgid "Cu_rve:" +msgstr "Крива:" + +# +#: plug-ins/Lighting/lighting_ui.c:935 +msgid "Ma_ximum Height:" +msgstr "МакÑимална виÑина:" + +# +#: plug-ins/Lighting/lighting_ui.c:942 +msgid "Maximum height for bumps" +msgstr "МакÑимална виÑина за издигнувањата" + +# +#: plug-ins/Lighting/lighting_ui.c:948 +msgid "M_inimum Height:" +msgstr "Минимална виÑина:" + +# +#: plug-ins/Lighting/lighting_ui.c:955 +msgid "Minimum height for bumps" +msgstr "Минимална виÑина на издигнувањата" + +# +#: plug-ins/Lighting/lighting_ui.c:958 +msgid "Auto_stretch to Fit Value Range" +msgstr "ÐвтоматкÑи раÑтегни за да Ñе Ñовпаѓа Ñо вредноÑта на опÑегот" + +# +#: plug-ins/Lighting/lighting_ui.c:968 +msgid "Fit into value range" +msgstr "Совпадни Ñе Ñо вредноÑта на опÑегот" + +# +#: plug-ins/Lighting/lighting_ui.c:993 +msgid "E_nable Environment Mapping" +msgstr "Вклучи мапирање на околината" + +# +#: plug-ins/Lighting/lighting_ui.c:1004 +msgid "Enable/disable environment-mapping (reflection)" +msgstr "Вкличи/ИÑклучи мапирање на околината (рефлекÑија)" + +# +#: plug-ins/Lighting/lighting_ui.c:1022 +msgid "En_vironment Image:" +msgstr "ОколинÑка Слика:" + +# +#: plug-ins/Lighting/lighting_ui.c:1026 +msgid "Environment image to use" +msgstr "ОколинÑка Ñлика која ќе Ñе употребува" + +#: plug-ins/Lighting/lighting_ui.c:1049 +msgid "Op_tions" +msgstr "Опции" + +#: plug-ins/Lighting/lighting_ui.c:1053 plug-ins/MapObject/mapobject_ui.c:1334 +msgid "_Light" +msgstr "Светло" + +#: plug-ins/Lighting/lighting_ui.c:1057 plug-ins/MapObject/mapobject_ui.c:1338 +msgid "_Material" +msgstr "Материјал" + +# +#: plug-ins/Lighting/lighting_ui.c:1061 +msgid "_Bump Map" +msgstr "_Bump Map" + +# +#: plug-ins/Lighting/lighting_ui.c:1065 +msgid "_Environment Map" +msgstr "Мапа на околината" + +# +#: plug-ins/Lighting/lighting_ui.c:1108 +msgid "Lighting Effects" +msgstr "СветлоÑни ефекти" + +#: plug-ins/Lighting/lighting_ui.c:1163 plug-ins/gimpressionist/preview.c:122 +#: plug-ins/imagemap/imap_polygon.c:516 +msgid "_Update" +msgstr "ОÑвежи" + +#: plug-ins/Lighting/lighting_ui.c:1170 plug-ins/MapObject/mapobject_ui.c:1439 +msgid "Recompute preview image" +msgstr "Прерачунај го прегледот на Ñликата" + +#: plug-ins/Lighting/lighting_ui.c:1172 +msgid "I_nteractive" +msgstr "Интерактивно" + +# +#: plug-ins/Lighting/lighting_ui.c:1187 +msgid "Enable/disable real time preview of changes" +msgstr "Вклучи/ИÑклучи преглед на промените во реално време" + +#: plug-ins/Lighting/lighting_ui.c:1190 +msgid "Preview Options" +msgstr "Опции на прегледот" + +# +#: plug-ins/MapObject/mapobject_main.c:200 +msgid "/Filters/Map/Map _Object..." +msgstr "/Филтери/Мапа/Мапирај Објект..." + +#: plug-ins/MapObject/mapobject_ui.c:263 +#: plug-ins/MapObject/mapobject_ui.c:1348 +msgid "_Box" +msgstr "Кутија" + +# +#: plug-ins/MapObject/mapobject_ui.c:281 +#: plug-ins/MapObject/mapobject_ui.c:1354 +msgid "C_ylinder" +msgstr "Цилиндар" + +#: plug-ins/MapObject/mapobject_ui.c:545 +msgid "Map to:" +msgstr "Мапирај во:" + +# +#: plug-ins/MapObject/mapobject_ui.c:554 +msgid "Plane" +msgstr "Површина" + +# +#: plug-ins/MapObject/mapobject_ui.c:555 +msgid "Sphere" +msgstr "Кугла" + +#: plug-ins/MapObject/mapobject_ui.c:556 +msgid "Box" +msgstr "Кутија" + +# +#: plug-ins/MapObject/mapobject_ui.c:557 +msgid "Cylinder" +msgstr "Цилиндар" + +# +#: plug-ins/MapObject/mapobject_ui.c:563 +msgid "Type of object to map to" +msgstr "Ð’Ñ€Ñта на објект за мапирање" + +# +#: plug-ins/MapObject/mapobject_ui.c:565 +msgid "Transparent Background" +msgstr "Проѕирна позадина" + +#: plug-ins/MapObject/mapobject_ui.c:576 +msgid "Make image transparent outside object" +msgstr "Ðаправи ја Ñликата проѕирна надвор од објектот" + +# +#: plug-ins/MapObject/mapobject_ui.c:578 +msgid "Tile Source Image" +msgstr "Со Ñлика на изворот" + +#: plug-ins/MapObject/mapobject_ui.c:589 +msgid "Tile source image: useful for infinite planes" +msgstr "РаÑпореди ја изворната Ñлика: кориÑно за беÑконечни планови" + +# +#: plug-ins/MapObject/mapobject_ui.c:592 +msgid "Create New Image" +msgstr "Создади нова Ñлилка" + +# +#: plug-ins/MapObject/mapobject_ui.c:611 +msgid "Enable _Antialiasing" +msgstr "Вкличи Омекнување" + +#: plug-ins/MapObject/mapobject_ui.c:618 +msgid "Enable/disable jagged edges removal (antialiasing)" +msgstr "Вкличи/ИÑкличи отÑтранување на назебени рабови (омекнување)" + +#: plug-ins/MapObject/mapobject_ui.c:648 plug-ins/common/unsharp.c:683 +#: plug-ins/common/wind.c:988 plug-ins/imagemap/imap_preferences.c:537 +msgid "_Threshold:" +msgstr "Праг:" + +# +#: plug-ins/MapObject/mapobject_ui.c:698 +msgid "Point Light" +msgstr "Тачка на оÑветлување" + +# +#: plug-ins/MapObject/mapobject_ui.c:699 +msgid "Directional Light" +msgstr "ÐаÑочено Ñветло" + +# +#: plug-ins/MapObject/mapobject_ui.c:700 +msgid "No Light" +msgstr "Без Ñветло" + +# +#: plug-ins/MapObject/mapobject_ui.c:704 +msgid "Lightsource Type:" +msgstr "Тип на ÑветлоÑен извор:" + +# +#: plug-ins/MapObject/mapobject_ui.c:714 +msgid "Lightsource Color:" +msgstr "Боја на ÑветлоÑниот извор:" + +#: plug-ins/MapObject/mapobject_ui.c:873 +msgid "Ambient:" +msgstr "Ðмбиент:" + +#: plug-ins/MapObject/mapobject_ui.c:899 plug-ins/MapObject/mapobject_ui.c:939 +msgid "Diffuse:" +msgstr "Разлевање:" + +#: plug-ins/MapObject/mapobject_ui.c:965 +msgid "Specular:" +msgstr "ОгледалÑки:" + +# +#: plug-ins/MapObject/mapobject_ui.c:991 +msgid "Highlight:" +msgstr "ОÑветлување:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1048 +msgid "Object X position in XYZ space" +msgstr "Позиција на објектот X во XYZ проÑторот" + +# +#: plug-ins/MapObject/mapobject_ui.c:1060 +msgid "Object Y position in XYZ space" +msgstr "Позиција на објектот Y во XYZ проÑторот" + +# +#: plug-ins/MapObject/mapobject_ui.c:1072 +msgid "Object Z position in XYZ space" +msgstr "Позиција на објектот Z во XYZ проÑторот" + +#. Rotation +#: plug-ins/MapObject/mapobject_ui.c:1080 plug-ins/common/ps.c:2893 +msgid "Rotation" +msgstr "Ротација" + +# +#: plug-ins/MapObject/mapobject_ui.c:1095 +msgid "Rotation angle about X axis" +msgstr "Ротирај го аголот околу X оÑката" + +# +#: plug-ins/MapObject/mapobject_ui.c:1105 +msgid "Rotation angle about Y axis" +msgstr "Ротирај го аголот околу Y оÑката" + +# +#: plug-ins/MapObject/mapobject_ui.c:1115 +msgid "Rotation angle about Z axis" +msgstr "Ротирај го аголот околу Z оÑката" + +# +#: plug-ins/MapObject/mapobject_ui.c:1140 +msgid "Front:" +msgstr "Ðапред:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1140 +msgid "Back:" +msgstr "Ðазад:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1141 +#: plug-ins/print/gimp_main_window.c:526 +msgid "Top:" +msgstr "Врв:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1141 +#: plug-ins/print/gimp_main_window.c:567 +msgid "Bottom:" +msgstr "Дно:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1142 +#: plug-ins/print/gimp_main_window.c:513 +msgid "Left:" +msgstr "Лево:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1142 +#: plug-ins/print/gimp_main_window.c:539 +msgid "Right:" +msgstr "ДеÑно:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1148 +msgid "Map Images to Box Faces" +msgstr "Спој ги Ñликите во оквир" + +# +#: plug-ins/MapObject/mapobject_ui.c:1189 +#: plug-ins/common/spheredesigner.c:2697 +msgid "Scale X:" +msgstr "X Скала:" + +#: plug-ins/MapObject/mapobject_ui.c:1192 +msgid "X scale (size)" +msgstr "X Ñкала (големина)" + +#: plug-ins/MapObject/mapobject_ui.c:1204 +msgid "Y scale (size)" +msgstr "Y Ñкала (големина)" + +#: plug-ins/MapObject/mapobject_ui.c:1216 +msgid "Z scale (size)" +msgstr "Z Ñкала (големина)" + +# +#: plug-ins/MapObject/mapobject_ui.c:1240 +msgid "_Top:" +msgstr "Врв:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1240 +msgid "_Bottom:" +msgstr "Дно:" + +#: plug-ins/MapObject/mapobject_ui.c:1245 +msgid "Images for the Cap Faces" +msgstr "Слики за лице" + +#: plug-ins/MapObject/mapobject_ui.c:1274 +#: plug-ins/print/gimp_main_window.c:1119 +msgid "Size" +msgstr "Големина" + +#: plug-ins/MapObject/mapobject_ui.c:1286 +msgid "R_adius:" +msgstr "РадиуÑ:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1290 +msgid "Cylinder radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° цилиндарот" + +# +#: plug-ins/MapObject/mapobject_ui.c:1299 plug-ins/common/mblur.c:775 +msgid "L_ength:" +msgstr "Должина:" + +# +#: plug-ins/MapObject/mapobject_ui.c:1303 +msgid "Cylinder length" +msgstr "Должина на целиндарот" + +#: plug-ins/MapObject/mapobject_ui.c:1330 +msgid "O_ptions" +msgstr "Опции" + +#: plug-ins/MapObject/mapobject_ui.c:1342 +msgid "O_rientation" +msgstr "Ориентација" + +# +#: plug-ins/MapObject/mapobject_ui.c:1378 +msgid "Map to Object" +msgstr "Мапирај во објект" + +# +#: plug-ins/MapObject/mapobject_ui.c:1430 plug-ins/common/diffraction.c:479 +msgid "_Preview!" +msgstr "Преглед!" + +#: plug-ins/MapObject/mapobject_ui.c:1453 +msgid "Zoom out (make image smaller)" +msgstr "Ðамалување (направи ја Ñликата помала)" + +#: plug-ins/MapObject/mapobject_ui.c:1467 +msgid "Zoom in (make image bigger)" +msgstr "Зголемување (направи ја Ñликата поголема)" + +# +#: plug-ins/MapObject/mapobject_ui.c:1469 +msgid "Show Preview _Wireframe" +msgstr "Прикажи го Прегледот (Жичани)" + +#: plug-ins/MapObject/mapobject_ui.c:1478 +msgid "Show/hide preview wireframe" +msgstr "Прикажи/Сокри го жичаниот преглед" + +#: plug-ins/bmp/bmpread.c:87 +msgid "Bad colormap" +msgstr "Погрешна боја на мапата" + +#. Set up progress display +#: plug-ins/bmp/bmpread.c:123 plug-ins/common/CEL.c:280 +#: plug-ins/common/dicom.c:284 plug-ins/common/gbr.c:299 +#: plug-ins/common/gifload.c:300 plug-ins/common/gih.c:634 +#: plug-ins/common/hrz.c:340 plug-ins/common/jpeg.c:768 +#: plug-ins/common/pat.c:268 plug-ins/common/pcx.c:306 +#: plug-ins/common/pix.c:339 plug-ins/common/png.c:670 +#: plug-ins/common/pnm.c:399 plug-ins/common/ps.c:861 +#: plug-ins/common/psd.c:1743 plug-ins/common/sunras.c:434 +#: plug-ins/common/tga.c:418 plug-ins/common/tiff.c:441 +#: plug-ins/common/wmf.c:400 plug-ins/common/xbm.c:723 +#: plug-ins/common/xpm.c:329 plug-ins/common/xwd.c:433 +#: plug-ins/faxg3/faxg3.c:202 plug-ins/gfli/gfli.c:466 plug-ins/sgi/sgi.c:321 +#: plug-ins/xjt/xjt.c:3317 +#, c-format +msgid "Opening '%s'..." +msgstr "Се отвара „%s“..." + +#: plug-ins/bmp/bmpread.c:134 plug-ins/bmp/bmpread.c:142 +#: plug-ins/bmp/bmpread.c:147 plug-ins/bmp/bmpread.c:154 +#: plug-ins/bmp/bmpread.c:167 plug-ins/bmp/bmpread.c:294 +#, c-format +msgid "'%s' is not a valid BMP file" +msgstr "„%s“ не е валидна BMP датотека" + +#: plug-ins/bmp/bmpread.c:179 plug-ins/bmp/bmpread.c:197 +#: plug-ins/bmp/bmpread.c:217 plug-ins/bmp/bmpread.c:235 +#: plug-ins/bmp/bmpread.c:253 plug-ins/bmp/bmpread.c:258 +#: plug-ins/bmp/bmpread.c:263 +#, c-format +msgid "Error reading BMP file header from '%s'" +msgstr "Грешка при читањето на заглавјето на BMP датотеката од „%s“" + +#. +#. * Create the "background" layer to hold the image... +#. +#: plug-ins/bmp/bmpread.c:383 plug-ins/bmp/bmpread.c:391 +#: plug-ins/bmp/bmpread.c:399 plug-ins/common/CEL.c:326 +#: plug-ins/common/CEL.c:329 plug-ins/common/blinds.c:312 +#: plug-ins/common/compose.c:614 plug-ins/common/decompose.c:576 +#: plug-ins/common/dicom.c:438 plug-ins/common/film.c:974 +#: plug-ins/common/gifload.c:856 plug-ins/common/hrz.c:372 +#: plug-ins/common/jpeg.c:925 plug-ins/common/pat.c:333 +#: plug-ins/common/pcx.c:330 plug-ins/common/pcx.c:336 +#: plug-ins/common/pix.c:374 plug-ins/common/png.c:794 +#: plug-ins/common/pnm.c:478 plug-ins/common/psd.c:2129 +#: plug-ins/common/smooth_palette.c:252 plug-ins/common/sunras.c:921 +#: plug-ins/common/tga.c:914 plug-ins/common/tiff.c:686 +#: plug-ins/common/tile.c:263 plug-ins/common/winclipboard.c:556 +#: plug-ins/common/xbm.c:862 plug-ins/faxg3/faxg3.c:463 +#: plug-ins/fits/fits.c:506 plug-ins/gfig/gfig.c:2076 +#: plug-ins/gfig/gfig.c:2444 plug-ins/sgi/sgi.c:366 plug-ins/twain/twain.c:743 +#: plug-ins/winsnap/winsnap.c:1234 +msgid "Background" +msgstr "Позадина" + +# +#: plug-ins/bmp/bmpwrite.c:136 plug-ins/common/dicom.c:613 +#: plug-ins/common/pcx.c:574 +msgid "Cannot save images with alpha channel." +msgstr "Ðе може да Ñе зачувуваат Ñлики Ñо алфа канал." + +#: plug-ins/bmp/bmpwrite.c:182 plug-ins/common/dicom.c:628 +#: plug-ins/common/ps.c:966 plug-ins/common/xwd.c:521 plug-ins/fits/fits.c:441 +#: plug-ins/xjt/xjt.c:1686 +msgid "Cannot operate on unknown image types." +msgstr "Ðе може да Ñе обработуваат типови на Ñлики Ñо непознат формат." + +#. And let's begin the progress +#: plug-ins/bmp/bmpwrite.c:209 plug-ins/common/CEL.c:551 +#: plug-ins/common/gbr.c:546 plug-ins/common/gif.c:1003 +#: plug-ins/common/gih.c:1222 plug-ins/common/gtm.c:246 +#: plug-ins/common/hrz.c:469 plug-ins/common/jpeg.c:1252 +#: plug-ins/common/pat.c:385 plug-ins/common/pcx.c:541 +#: plug-ins/common/pix.c:521 plug-ins/common/png.c:1167 +#: plug-ins/common/pnm.c:775 plug-ins/common/ps.c:980 +#: plug-ins/common/psd_save.c:1560 plug-ins/common/sunras.c:515 +#: plug-ins/common/tga.c:1020 plug-ins/common/tiff.c:1552 +#: plug-ins/common/xbm.c:996 plug-ins/common/xpm.c:617 +#: plug-ins/common/xwd.c:535 plug-ins/fits/fits.c:457 plug-ins/gfli/gfli.c:682 +#: plug-ins/sgi/sgi.c:534 plug-ins/xjt/xjt.c:1691 +#, c-format +msgid "Saving '%s'..." +msgstr "Се зачувува „%s“..." + +#: plug-ins/bmp/bmpwrite.c:553 +msgid "Save as BMP" +msgstr "Зачувај како BMP" + +#. parameter settings +#: plug-ins/bmp/bmpwrite.c:563 +msgid "Save Options" +msgstr "Опции за зачувување" + +#: plug-ins/bmp/bmpwrite.c:571 +msgid "_RLE encoded" +msgstr "RLE кодирано" + +# +#: plug-ins/common/AlienMap.c:946 +msgid "/Filters/Colors/Map/_Alien Map..." +msgstr "/Филтери/Бои/Мапа/ВонземјанÑка мапа..." + +# +#: plug-ins/common/AlienMap.c:1076 +msgid "AlienMap: Transforming..." +msgstr "ВонземјанÑка мапа: Се транÑформира..." + +#: plug-ins/common/AlienMap.c:1145 +msgid "AlienMap" +msgstr "ВонземјанÑка мапа" + +#: plug-ins/common/AlienMap.c:1190 plug-ins/common/channel_mixer.c:625 +#: plug-ins/common/diffraction.c:505 plug-ins/common/diffraction.c:543 +#: plug-ins/common/diffraction.c:581 plug-ins/common/exchange.c:409 +#: plug-ins/common/noisify.c:366 plug-ins/common/noisify.c:373 +msgid "_Red:" +msgstr "Црвена:" + +#: plug-ins/common/AlienMap.c:1193 +msgid "Change intensity of the red channel" +msgstr "Промени го интензитетот на црвениот канал" + +#: plug-ins/common/AlienMap.c:1200 plug-ins/common/channel_mixer.c:637 +#: plug-ins/common/diffraction.c:514 plug-ins/common/diffraction.c:552 +#: plug-ins/common/diffraction.c:590 plug-ins/common/exchange.c:453 +#: plug-ins/common/noisify.c:367 plug-ins/common/noisify.c:374 +msgid "_Green:" +msgstr "Зелена:" + +#: plug-ins/common/AlienMap.c:1203 +msgid "Change intensity of the green channel" +msgstr "Промени го интензитетот на зелениот канал" + +#: plug-ins/common/AlienMap.c:1209 plug-ins/common/channel_mixer.c:650 +#: plug-ins/common/diffraction.c:523 plug-ins/common/diffraction.c:561 +#: plug-ins/common/diffraction.c:599 plug-ins/common/exchange.c:497 +#: plug-ins/common/noisify.c:368 plug-ins/common/noisify.c:375 +msgid "_Blue:" +msgstr "Сина:" + +#: plug-ins/common/AlienMap.c:1212 +msgid "Change intensity of the blue channel" +msgstr "Промени го интензитетот на Ñиниот канал" + +#: plug-ins/common/AlienMap.c:1222 plug-ins/common/AlienMap.c:1245 +#: plug-ins/common/AlienMap.c:1268 +msgid "_Sine" +msgstr "СинуÑ" + +#: plug-ins/common/AlienMap.c:1223 plug-ins/common/AlienMap.c:1246 +#: plug-ins/common/AlienMap.c:1269 +msgid "Cos_ine" +msgstr "КоÑинуÑ" + +#: plug-ins/common/AlienMap.c:1224 plug-ins/common/AlienMap.c:1247 +#: plug-ins/common/AlienMap.c:1270 plug-ins/common/tiff.c:1831 +msgid "_None" +msgstr "Ðишто" + +# +#: plug-ins/common/AlienMap.c:1229 +msgid "Use sine-function for red component." +msgstr "Употреби ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за црвената компонента" + +# +#: plug-ins/common/AlienMap.c:1231 +msgid "Use cosine-function for red component." +msgstr "Употреби коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за црвената компонента" + +#: plug-ins/common/AlienMap.c:1233 +msgid "Red channel: use linear mapping instead of any trigonometrical function" +msgstr "Црвен канал: употребувај линеарно мапирање намеÑто било кои тригонометриÑки функции" + +# +#: plug-ins/common/AlienMap.c:1252 +msgid "Use sine-function for green component." +msgstr "Употреби ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за зелената компонента" + +# +#: plug-ins/common/AlienMap.c:1254 +msgid "Use cosine-function for green component." +msgstr "Употреби коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за зелената компонента" + +#: plug-ins/common/AlienMap.c:1256 +msgid "Green channel: use linear mapping instead of any trigonometrical function" +msgstr "Зелен канал: употребувај линеарно мапирање намеÑто било кои тригонометриÑки функции" + +# +#: plug-ins/common/AlienMap.c:1275 +msgid "Use sine-function for blue component." +msgstr "Употреби ÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за Ñината компонента" + +# +#: plug-ins/common/AlienMap.c:1277 +msgid "Use cosine-function for blue component." +msgstr "Употреби коÑÐ¸Ð½ÑƒÑ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ñ˜Ð° за Ñината компонента" + +#: plug-ins/common/AlienMap.c:1279 +msgid "Blue channel: use linear mapping instead of any trigonometrical function" +msgstr "Син канал: употребувај линеарно мапирање намеÑто било кои тригонометриÑки функции" + +# +#: plug-ins/common/AlienMap.c:1360 +msgid "About AlienMap" +msgstr "За ВонземјанÑката мапа" + +# +#: plug-ins/common/AlienMap2.c:954 +msgid "/Filters/Colors/Map/Alien Map _2..." +msgstr "/Филтери/Бои/Мапа/ВонземјанÑка мапа 2..." + +# +#: plug-ins/common/AlienMap2.c:1079 +msgid "AlienMap2: Transforming..." +msgstr "ВонземјанÑка мапа 2: Се транÑформира..." + +#: plug-ins/common/AlienMap2.c:1148 +msgid "AlienMap2" +msgstr "ВонземјанÑка мапа 2" + +#: plug-ins/common/AlienMap2.c:1194 +msgid "R/H-_Frequency:" +msgstr "R/H-Фреквенција:" + +#: plug-ins/common/AlienMap2.c:1197 +msgid "Change frequency of the red/hue channel" +msgstr "Промени ја фреквенцијата на црвената/нијанÑата на каналот" + +#: plug-ins/common/AlienMap2.c:1204 +msgid "R/H-_Phaseshift:" +msgstr "R/H-Фазно помеÑтување" + +#: plug-ins/common/AlienMap2.c:1207 +msgid "Change angle of the red/hue channel" +msgstr "Промени го аголот на црвената/нијанÑата на каналот" + +#: plug-ins/common/AlienMap2.c:1214 +msgid "G/S-Fr_equency:" +msgstr "G/S-Фреквенција:" + +# +#: plug-ins/common/AlienMap2.c:1217 +msgid "Change frequency of the green/saturation channel" +msgstr "Промени ја фреквенцијата на зелената/Ñатурацијата на каналот" + +#: plug-ins/common/AlienMap2.c:1224 +msgid "G/S-Ph_aseshift:" +msgstr "G/S-Фазно помеÑтување:" + +#: plug-ins/common/AlienMap2.c:1227 +msgid "Change angle of the green/saturation channel" +msgstr "Промени го аголот на зелената/Ñатурацијата на каналот" + +#: plug-ins/common/AlienMap2.c:1234 +msgid "B/L-Freq_uency:" +msgstr "B/L-Фреквенција:" + +#: plug-ins/common/AlienMap2.c:1237 +msgid "Change frequency of the blue/luminance channel" +msgstr "Промени ја фреквенцијата на плавата/јачината на каналот" + +#: plug-ins/common/AlienMap2.c:1244 +msgid "B/L-Pha_seshift:" +msgstr "B/L-Фазно ПомеÑтување" + +#: plug-ins/common/AlienMap2.c:1247 +msgid "Change angle of the blue/luminance channel" +msgstr "Промени го аголот на плавата/јачината на каналот" + +# +#. * Gray: Operation-Mode * +#: plug-ins/common/AlienMap2.c:1255 plug-ins/common/deinterlace.c:298 +#: plug-ins/common/hot.c:595 plug-ins/common/waves.c:317 +#: plug-ins/rcm/rcm_dialog.c:500 +msgid "Mode" +msgstr "Режим" + +# +#: plug-ins/common/AlienMap2.c:1259 +msgid "_RGB Color Model" +msgstr "_RGB Модел на боја" + +# +#: plug-ins/common/AlienMap2.c:1260 +msgid "_HSL Color Model" +msgstr "_HSL Модел на боја" + +# +#: plug-ins/common/AlienMap2.c:1272 +msgid "_Modify Red/Hue Channel" +msgstr "Промени го црвениот/нијанÑа канал" + +#: plug-ins/common/AlienMap2.c:1277 +msgid "Use function for red/hue component" +msgstr "КориÑти функција за црвената/нијанÑа компонента" + +# +#: plug-ins/common/AlienMap2.c:1284 +msgid "Mo_dify Green/Saturation Channel" +msgstr "Промени го зелениот/Сатурација канал" + +#: plug-ins/common/AlienMap2.c:1290 +msgid "Use function for green/saturation component" +msgstr "КориÑти функција за зелената/Ñатурација компонента" + +# +#: plug-ins/common/AlienMap2.c:1297 +msgid "Mod_ify Blue/Luminance Channel" +msgstr "Преуреди го плавиот/јачина канал" + +#: plug-ins/common/AlienMap2.c:1303 +msgid "Use function for blue/luminance component" +msgstr "КориÑти функција за плавата/јачина компонента" + +# +#: plug-ins/common/AlienMap2.c:1395 +msgid "About AlienMap2" +msgstr "За ВонземјанÑка Мапа 2" + +#: plug-ins/common/CEL.c:188 +msgid "Load KISS Palette" +msgstr "Вчитај KISS палета" + +# +#: plug-ins/common/CEL.c:318 +msgid "Can't create a new image" +msgstr "Ðе може да Ñе Ñоздаде нова Ñлика" + +#: plug-ins/common/CEL.c:407 +#, c-format +msgid "Unsupported bit depth (%d)!" +msgstr "Ðеподржана длабочина на битовите (%d)!" + +#: plug-ins/common/CML_explorer.c:132 +msgid "Keep image's values" +msgstr "Задржи ги вредноÑтите на Ñликата" + +#: plug-ins/common/CML_explorer.c:133 +msgid "Keep the first value" +msgstr "Задржи ја првата вредноÑÑ‚" + +#: plug-ins/common/CML_explorer.c:134 +msgid "Fill with parameter k" +msgstr "ИÑполни Ñо параметарот к" + +#: plug-ins/common/CML_explorer.c:135 +msgid "k{x(1-x)}^p" +msgstr "к{x(1-x)}^p" + +#: plug-ins/common/CML_explorer.c:136 +msgid "k{x(1-x)}^p stepped" +msgstr "к{x(1-x)}^p во чекори" + +#: plug-ins/common/CML_explorer.c:137 +msgid "kx^p" +msgstr "кx^p" + +#: plug-ins/common/CML_explorer.c:138 +msgid "kx^p stepped" +msgstr "кx^p во чекори" + +# +#: plug-ins/common/CML_explorer.c:139 +msgid "k(1-x^p)" +msgstr "к(1-x^p)" + +# +#: plug-ins/common/CML_explorer.c:140 +msgid "k(1-x^p) stepped" +msgstr "к(1-x^p) во чекори" + +#: plug-ins/common/CML_explorer.c:141 +msgid "Delta function" +msgstr "Делта фукција" + +#: plug-ins/common/CML_explorer.c:142 +msgid "Delta function stepped" +msgstr "Делта функција во чекори" + +#: plug-ins/common/CML_explorer.c:143 +msgid "sin^p-based function" +msgstr "sin^p-базирана функција" + +#: plug-ins/common/CML_explorer.c:144 +msgid "sin^p, stepped" +msgstr "sin^p, во чекори" + +#: plug-ins/common/CML_explorer.c:169 +msgid "Max (x, -)" +msgstr "МакÑимум. (x, -)" + +#: plug-ins/common/CML_explorer.c:170 +msgid "Max (x+d, -)" +msgstr "МакÑимум. (x+d, -)" + +#: plug-ins/common/CML_explorer.c:171 +msgid "Max (x-d, -)" +msgstr "МакÑимум. (x-d, -)" + +#: plug-ins/common/CML_explorer.c:172 +msgid "Min (x, -)" +msgstr "Минимум. (x, -)" + +#: plug-ins/common/CML_explorer.c:173 +msgid "Min (x+d, -)" +msgstr "Минимум. (x+d, -)" + +#: plug-ins/common/CML_explorer.c:174 +msgid "Min (x-d, -)" +msgstr "Минимум. (x-d, -)" + +#: plug-ins/common/CML_explorer.c:175 +msgid "Max (x+d, -), (x < 0.5)" +msgstr "МакÑимум. (x+d, -), (x < 0.5)" + +#: plug-ins/common/CML_explorer.c:176 +msgid "Max (x+d, -), (0.5 < x)" +msgstr "МакÑимум. (x+d, -), (0.5 < x)" + +#: plug-ins/common/CML_explorer.c:177 +msgid "Max (x-d, -), (x < 0.5)" +msgstr "МакÑимум. (x-d, -), (x < 0.5)" + +#: plug-ins/common/CML_explorer.c:178 +msgid "Max (x-d, -), (0.5 < x)" +msgstr "МакÑимум. (x-d, -), (0.5 < x)" + +#: plug-ins/common/CML_explorer.c:179 +msgid "Min (x+d, -), (x < 0.5)" +msgstr "Минимум. (x+d, -), (x < 0.5)" + +#: plug-ins/common/CML_explorer.c:180 +msgid "Min (x+d, -), (0.5 < x)" +msgstr "Минимум. (x+d, -), (0.5 < x)" + +#: plug-ins/common/CML_explorer.c:181 +msgid "Min (x-d, -), (x < 0.5)" +msgstr "Минимум. (x-d, -), (x < 0.5)" + +#: plug-ins/common/CML_explorer.c:182 +msgid "Min (x-d, -), (0.5 < x)" +msgstr "Минимум. (x-d, -), (0.5 < x)" + +#: plug-ins/common/CML_explorer.c:201 plug-ins/common/sunras.c:1590 +#: plug-ins/print/gimp_main_window.c:1648 +msgid "Standard" +msgstr "Стандардно" + +#: plug-ins/common/CML_explorer.c:202 +msgid "Use average value" +msgstr "КориÑти проÑечна вредноÑÑ‚" + +#: plug-ins/common/CML_explorer.c:203 +msgid "Use reverse value" +msgstr "КориÑти повратна вредноÑÑ‚" + +#: plug-ins/common/CML_explorer.c:204 +msgid "With random power (0,10)" +msgstr "Со Ñлучајна Ñила (0,10)" + +#: plug-ins/common/CML_explorer.c:205 +msgid "With random power (0,1)" +msgstr "Со Ñлучајна Ñила (0,1)" + +#: plug-ins/common/CML_explorer.c:206 +msgid "With gradient power (0,1)" +msgstr "Со Ñила на преливот (0,1)" + +#: plug-ins/common/CML_explorer.c:207 +msgid "Multiply rand. value (0,1)" +msgstr "Помножена Ñлучајна вредноÑÑ‚ (0,1)" + +#: plug-ins/common/CML_explorer.c:208 +msgid "Multiply rand. value (0,2)" +msgstr "Помножена Ñлучајна вредноÑÑ‚ (0,2)" + +#: plug-ins/common/CML_explorer.c:209 +msgid "Multiply gradient (0,1)" +msgstr "Помножи го преливот (0,1)" + +#: plug-ins/common/CML_explorer.c:210 +msgid "With p and random (0,1)" +msgstr "Со p и Ñлучајно (0,1)" + +#: plug-ins/common/CML_explorer.c:223 +msgid "All black" +msgstr "Се црно" + +#: plug-ins/common/CML_explorer.c:224 +msgid "All gray" +msgstr "Се Ñиво" + +#: plug-ins/common/CML_explorer.c:225 +msgid "All white" +msgstr "Се бело" + +#: plug-ins/common/CML_explorer.c:226 +msgid "The first row of the image" +msgstr "Првиот ред од Ñликата" + +#: plug-ins/common/CML_explorer.c:227 +msgid "Continuous gradient" +msgstr "Континуиран прелив" + +#: plug-ins/common/CML_explorer.c:228 +msgid "Continuous grad. w/o gap" +msgstr "Континуиран прелив без празнина" + +#: plug-ins/common/CML_explorer.c:229 +msgid "Random, ch. independent" +msgstr "Случајно, незавиÑно од каналот" + +#: plug-ins/common/CML_explorer.c:230 +msgid "Random shared" +msgstr "Случајно доделено" + +#: plug-ins/common/CML_explorer.c:231 +msgid "Randoms from seed" +msgstr "Случајно од Ñемето" + +#: plug-ins/common/CML_explorer.c:232 +msgid "Randoms from seed (shared)" +msgstr "Случајно од Ñемето (доделено)" + +#: plug-ins/common/CML_explorer.c:300 plug-ins/common/decompose.c:140 +#: plug-ins/gimpressionist/orientation.c:162 +#: plug-ins/gimpressionist/size.c:146 +msgid "Hue" +msgstr "ÐијанÑа" + +#: plug-ins/common/CML_explorer.c:301 plug-ins/common/decompose.c:141 +#: plug-ins/fp/fp_gtk.c:492 plug-ins/rcm/rcm_dialog.c:542 +msgid "Saturation" +msgstr "ЗаÑитување" + +#: plug-ins/common/CML_explorer.c:302 plug-ins/common/decompose.c:142 +#: plug-ins/gimpressionist/orientation.c:108 +#: plug-ins/gimpressionist/size.c:106 +msgid "Value" +msgstr "ВредноÑÑ‚" + +# +#: plug-ins/common/CML_explorer.c:460 +msgid "/Filters/Render/Pattern/CML _Explorer..." +msgstr "/Филтери/Рендерирање/МоÑтра/CML Пребарувач..." + +#: plug-ins/common/CML_explorer.c:742 +msgid "CML_explorer: evoluting..." +msgstr "CML Пребарувач: Ñе еволуира..." + +#: plug-ins/common/CML_explorer.c:1150 +msgid "Coupled-Map-Lattice Explorer" +msgstr "Coupled-Map-Lattice Пребарувач" + +# +#: plug-ins/common/CML_explorer.c:1210 +msgid "Random Seed" +msgstr "Случајно Семе" + +# +#: plug-ins/common/CML_explorer.c:1221 +msgid "Fix Seed" +msgstr "Поправи Ñеме" + +# +#: plug-ins/common/CML_explorer.c:1232 +msgid "New Seed" +msgstr "Ðово Ñеме" + +#: plug-ins/common/CML_explorer.c:1254 plug-ins/common/lic.c:730 +#: plug-ins/fp/fp_gtk.c:291 +msgid "_Hue" +msgstr "ÐијанÑа" + +#: plug-ins/common/CML_explorer.c:1258 +msgid "Sat_uration" +msgstr "ЗаÑитување" + +#: plug-ins/common/CML_explorer.c:1262 plug-ins/fp/fp_gtk.c:299 +msgid "_Value" +msgstr "ВредноÑÑ‚" + +#: plug-ins/common/CML_explorer.c:1266 +msgid "_Advanced" +msgstr "Ðапредно" + +# +#: plug-ins/common/CML_explorer.c:1279 +msgid "Channel Independed Parameters" +msgstr "ÐезавиÑни параметри на каналот" + +# +#: plug-ins/common/CML_explorer.c:1329 +msgid "Initial Value:" +msgstr "Почетна вредноÑÑ‚:" + +# +#: plug-ins/common/CML_explorer.c:1333 +msgid "Zoom Scale:" +msgstr "Скала на зголемување:" + +# +#: plug-ins/common/CML_explorer.c:1341 +msgid "Start Offset:" +msgstr "Почетно помеÑтување:" + +# +#: plug-ins/common/CML_explorer.c:1349 +msgid "Seed of Random (only for \"From Seed\" Modes)" +msgstr "Случајно Ñеме (Ñамо за \"Од Ñеме\" режимот)" + +# +#: plug-ins/common/CML_explorer.c:1361 plug-ins/maze/maze_face.c:293 +msgid "Seed:" +msgstr "Семе:" + +# +#: plug-ins/common/CML_explorer.c:1373 +msgid "Switch to \"From Seed\" with the last Seed" +msgstr "Промени во \"Од Ñеме\" Ñо поÑледното Ñеме" + +#: plug-ins/common/CML_explorer.c:1385 +msgid "" +"\"Fix seed\" button is an alias of me.\n" +"The same seed produces the same image, if (1) the widths of images are same " +"(this is the reason why image on drawable is different from preview), and " +"(2) all mutation rates equal to zero." +msgstr "" +"Копчето „Поправи Ñеме“ е друг начин да ме повикате.\n" +"ИÑтото Ñеме ја произведува иÑтата Ñлика, ако (1) ширините на Ñликите Ñе иÑти " +"(ова е причина зошто Ñликата на цртежот Ñе разликува од прегледот), " +"и (2) Ñите Ñтепени на мутација Ñе еднаки на нула." + +#: plug-ins/common/CML_explorer.c:1393 +msgid "O_thers" +msgstr "ОÑтанати" + +# +#: plug-ins/common/CML_explorer.c:1405 +msgid "Copy Settings" +msgstr "ПодеÑувања за копирање" + +# +#: plug-ins/common/CML_explorer.c:1430 +msgid "Source Channel:" +msgstr "Изворен канал:" + +# +#: plug-ins/common/CML_explorer.c:1447 plug-ins/common/CML_explorer.c:1505 +msgid "Destination Channel:" +msgstr "ДеÑтинационен канал:" + +# +#: plug-ins/common/CML_explorer.c:1450 +msgid "Copy Parameters" +msgstr "Параметри за копирање" + +# +#: plug-ins/common/CML_explorer.c:1459 +msgid "Selective Load Settings" +msgstr "ПодеÑувања на Ñелективно вчитување" + +#: plug-ins/common/CML_explorer.c:1475 plug-ins/common/CML_explorer.c:1494 +msgid "NULL" +msgstr "NULL" + +# +#: plug-ins/common/CML_explorer.c:1486 +msgid "Source Channel in File:" +msgstr "Изворен Канал во Датотеката:" + +# +#: plug-ins/common/CML_explorer.c:1509 +msgid "_Misc Ops." +msgstr "Разни операции." + +# +#: plug-ins/common/CML_explorer.c:1595 +msgid "Function Type:" +msgstr "Тип на функција:" + +# +#: plug-ins/common/CML_explorer.c:1652 +msgid "Composition:" +msgstr "Композиција:" + +# +#: plug-ins/common/CML_explorer.c:1694 +msgid "Misc Arrange:" +msgstr "Разни подеÑувања:" + +# +#: plug-ins/common/CML_explorer.c:1698 +msgid "Use Cyclic Range" +msgstr "КориÑти кружен опÑег" + +# +#: plug-ins/common/CML_explorer.c:1708 +msgid "Mod. Rate:" +msgstr "Среден Ñтепен:" + +# +#: plug-ins/common/CML_explorer.c:1717 +msgid "Env. Sensitivity:" +msgstr "ОÑетливоÑÑ‚ на околината:" + +# +#: plug-ins/common/CML_explorer.c:1726 +msgid "Diffusion Dist.:" +msgstr "Разливање на диÑÑ‚.:" + +# +#: plug-ins/common/CML_explorer.c:1735 +msgid "# of Subranges:" +msgstr "# на под опÑезите:" + +# +#: plug-ins/common/CML_explorer.c:1744 +msgid "P(ower Factor):" +msgstr "P(фактор на јачината):" + +#: plug-ins/common/CML_explorer.c:1753 +msgid "Parameter k:" +msgstr "Параметар к:" + +#: plug-ins/common/CML_explorer.c:1762 +msgid "Range Low:" +msgstr "Ðизок ОпÑег:" + +#: plug-ins/common/CML_explorer.c:1771 +msgid "Range High:" +msgstr "ВиÑок ОпÑег:" + +#: plug-ins/common/CML_explorer.c:1783 +msgid "Plot the Graph of the Settings" +msgstr "ИÑцртај график на подеÑувањата" + +#: plug-ins/common/CML_explorer.c:1829 +msgid "Ch. Sensitivity:" +msgstr "ОÑетливоÑÑ‚ на каналот:" + +#: plug-ins/common/CML_explorer.c:1839 +msgid "Mutation Rate:" +msgstr "Мера на мутацијата:" + +#: plug-ins/common/CML_explorer.c:1849 +msgid "Mutation Dist.:" +msgstr "ДеÑтинација на мутацијата:" + +#: plug-ins/common/CML_explorer.c:1878 +msgid "Graph of the current settings" +msgstr "График на Ñегашните подеÑувања" + +#: plug-ins/common/CML_explorer.c:1886 +msgid "The Graph" +msgstr "Графикот" + +#: plug-ins/common/CML_explorer.c:1993 +msgid "Warning: the source and the destination are the same channel." +msgstr "Предупредување: изворот и одредиштето Ñе иÑтиот канал." + +#: plug-ins/common/CML_explorer.c:2052 +msgid "Save Parameters to" +msgstr "Зачувај ги параметрите во" + +#: plug-ins/common/CML_explorer.c:2169 plug-ins/common/channel_mixer.c:1248 +#, c-format +msgid "Parameters were Saved to '%s'" +msgstr "Параметрите Ñе зачувани во „%s“" + +#: plug-ins/common/CML_explorer.c:2187 +msgid "CML File Operation Warning" +msgstr "Операција Ñо CML датотека: Предупредување" + +#: plug-ins/common/CML_explorer.c:2200 plug-ins/common/channel_mixer.c:1280 +#, c-format +msgid "" +"File '%s' exists.\n" +"Overwrite it?" +msgstr "" +"Датотеката „%s“ поÑтои.\n" +"Да Ñе пребрише?" + +#: plug-ins/common/CML_explorer.c:2245 +msgid "Load Parameters from" +msgstr "Вчитај параметри од" + +#: plug-ins/common/CML_explorer.c:2247 +msgid "Selective Load from" +msgstr "Селективно вчитај од" + +#: plug-ins/common/CML_explorer.c:2341 +msgid "Error: it's not CML parameter file." +msgstr "Грешка: не е датотека Ñо CML параметри" + +#: plug-ins/common/CML_explorer.c:2348 +#, c-format +msgid "Warning: '%s' is an old format file." +msgstr "Предупредување: „%s“ е датотека Ñо Ñтар формат." + +#: plug-ins/common/CML_explorer.c:2350 +#, c-format +msgid "Warning: '%s' is a parameter file for newer CML_explorer than me." +msgstr "Предупредување: датотеката Ñо параметари „%s“ е за понови верзии на CML_Пребарувач." + +#: plug-ins/common/CML_explorer.c:2412 +msgid "Error: failed to load parameters" +msgstr "Грешка: неуÑпешно Ñе вчитани параметрите" + +#. Create the actual window. +#: plug-ins/common/aa.c:341 +msgid "Save as Text" +msgstr "Зачувај како текÑÑ‚" + +#. file save type +#: plug-ins/common/aa.c:351 plug-ins/common/pnm.c:919 +#: plug-ins/common/sunras.c:1585 +msgid "Data Formatting" +msgstr "Форматирање на податоците" + +#: plug-ins/common/align_layers.c:139 +msgid "/Layer/Align _Visible Layers..." +msgstr "/Слој/Израмни ги видливите Ñлоеви..." + +#: plug-ins/common/align_layers.c:175 +msgid "There are not enough layers to align." +msgstr "Ðема доволно Ñлоеви за израмнување." + +#: plug-ins/common/align_layers.c:400 +msgid "Align Visible Layers" +msgstr "Израмни ги видливите Ñлоеви" + +#. +#. * Parameter settings +#. * +#. * First set up the basic containers, label them, etc. +#. +#: plug-ins/common/align_layers.c:409 plug-ins/common/apply_lens.c:378 +#: plug-ins/common/blinds.c:337 plug-ins/common/blur.c:599 +#: plug-ins/common/bumpmap.c:1011 plug-ins/common/checkerboard.c:322 +#: plug-ins/common/cubism.c:263 plug-ins/common/despeckle.c:722 +#: plug-ins/common/destripe.c:634 plug-ins/common/edge.c:663 +#: plug-ins/common/emboss.c:525 plug-ins/common/engrave.c:216 +#: plug-ins/common/gauss_iir.c:353 plug-ins/common/gauss_rle.c:347 +#: plug-ins/common/glasstile.c:251 plug-ins/common/grid.c:683 +#: plug-ins/common/illusion.c:414 plug-ins/common/jpeg.c:1717 +#: plug-ins/common/lic.c:762 plug-ins/common/max_rgb.c:269 +#: plug-ins/common/mosaic.c:603 plug-ins/common/nlfilt.c:361 +#: plug-ins/common/noisify.c:331 plug-ins/common/nova.c:328 +#: plug-ins/common/oilify.c:452 plug-ins/common/pixelize.c:319 +#: plug-ins/common/plasma.c:324 plug-ins/common/polar.c:618 +#: plug-ins/common/randomize.c:709 plug-ins/common/ripple.c:516 +#: plug-ins/common/scatter_hsv.c:387 plug-ins/common/sel_gauss.c:238 +#: plug-ins/common/sharpen.c:581 plug-ins/common/shift.c:328 +#: plug-ins/common/smooth_palette.c:417 plug-ins/common/snoise.c:504 +#: plug-ins/common/sobel.c:242 plug-ins/common/sparkle.c:350 +#: plug-ins/common/struc.c:1266 plug-ins/common/threshold_alpha.c:231 +#: plug-ins/common/unsharp.c:651 plug-ins/common/video.c:2151 +#: plug-ins/common/vpropagate.c:1072 plug-ins/common/waves.c:343 +#: plug-ins/common/whirlpinch.c:684 plug-ins/common/wind.c:892 +#: plug-ins/common/xpm.c:780 plug-ins/maze/maze_face.c:203 +#: plug-ins/xjt/xjt.c:856 +msgid "Parameter Settings" +msgstr "ПодеÑувања на параметри" + +# +#: plug-ins/common/align_layers.c:426 plug-ins/common/align_layers.c:454 +msgid "Collect" +msgstr "Собери" + +#: plug-ins/common/align_layers.c:427 +msgid "Fill (left to right)" +msgstr "Пополни (од лево на деÑно)" + +#: plug-ins/common/align_layers.c:428 +msgid "Fill (right to left)" +msgstr "Пополни (од деÑно на лево)" + +#: plug-ins/common/align_layers.c:429 plug-ins/common/align_layers.c:457 +#: plug-ins/gfig/gfig.c:2661 +msgid "Snap to Grid" +msgstr "Држи во мрежа" + +#: plug-ins/common/align_layers.c:433 +msgid "_Horizontal Style:" +msgstr "Хори_зонтален Ñтил:" + +#: plug-ins/common/align_layers.c:440 +msgid "Left Edge" +msgstr "Лева ивица" + +#: plug-ins/common/align_layers.c:441 plug-ins/common/align_layers.c:469 +#: plug-ins/gflare/gflare.c:2639 +msgid "Center" +msgstr "Средина" + +#: plug-ins/common/align_layers.c:442 +msgid "Right Edge" +msgstr "ДеÑна ивица" + +#: plug-ins/common/align_layers.c:446 +msgid "Ho_rizontal Base:" +msgstr "_Хоризонтална база:" + +#: plug-ins/common/align_layers.c:455 +msgid "Fill (top to bottom)" +msgstr "Пополни (од врвот кон дното)" + +#: plug-ins/common/align_layers.c:456 +msgid "Fill (bottom to top)" +msgstr "Пополни (од дното кон врвот)" + +#: plug-ins/common/align_layers.c:461 +msgid "_Vertical Style:" +msgstr "Ве_ртикален Ñтил:" + +#: plug-ins/common/align_layers.c:468 +msgid "Top Edge" +msgstr "Горна ивица" + +#: plug-ins/common/align_layers.c:470 +msgid "Bottom Edge" +msgstr "Долна ивица" + +#: plug-ins/common/align_layers.c:474 +msgid "Ver_tical Base:" +msgstr "_Вертикална база:" + +#: plug-ins/common/align_layers.c:478 +msgid "_Ignore the Bottom Layer even if Visible" +msgstr "_Игнорирај го долниот Ñлој дури и ако е видлив" + +#: plug-ins/common/align_layers.c:488 +msgid "_Use the (Invisible) Bottom Layer as the Base" +msgstr "_КориÑти (невидлив) долен Ñлој како базата" + +#: plug-ins/common/align_layers.c:499 +msgid "_Grid Size:" +msgstr "_Големина на мрежата:" + +# +#: plug-ins/common/animationplay.c:243 +msgid "/Filters/Animation/_Playback..." +msgstr "/Филтери/Ðнимација/_Погледај Ðнимација..." + +#: plug-ins/common/animationplay.c:479 +msgid "Animation Playback: " +msgstr "Погледај анимација:" + +#: plug-ins/common/animationplay.c:498 +msgid "Playback: " +msgstr "Почни:" + +#: plug-ins/common/animationplay.c:524 +msgid "Play/Stop" +msgstr "Почни/ЗаÑтани" + +#: plug-ins/common/animationplay.c:530 +msgid "Rewind" +msgstr "Ðазад" + +#: plug-ins/common/animationplay.c:536 +msgid "Step" +msgstr "Чекор" + +#: plug-ins/common/animationplay.c:1241 +#, c-format +msgid "Frame %d of %d" +msgstr "Рамка %d од %d" + +#: plug-ins/common/animoptimize.c:196 +msgid "/Filters/Animation/Optimize (for _GIF)" +msgstr "/Филтери/Ðнимација/Оптимизација (за _GIF)" + +#: plug-ins/common/animoptimize.c:214 +msgid "/Filters/Animation/_Optimize (Difference)" +msgstr "/Филтери/Ðнимација/_Оптимизација (разлика)" + +#: plug-ins/common/animoptimize.c:231 +msgid "/Filters/Animation/_UnOptimize" +msgstr "/Филтери/Ðнимација/_Де-оптимизација" + +#: plug-ins/common/animoptimize.c:247 +msgid "/Filters/Animation/_Remove Backdrop" +msgstr "/Филтери/Ðнимација/_ОтÑтрани позадина" + +# +#: plug-ins/common/animoptimize.c:263 +msgid "/Filters/Animation/_Find Backdrop" +msgstr "/Филтери/Ðнимација/_Ðајди позадина..." + +#: plug-ins/common/animoptimize.c:473 +msgid "UnOptimizing Animation..." +msgstr "Де-оптимизирам Ðнимација" + +#: plug-ins/common/animoptimize.c:476 +msgid "Removing Animation Background..." +msgstr "Ја отÑтранувам позадината на анимацијата..." + +#: plug-ins/common/animoptimize.c:479 +msgid "Finding Animation Background..." +msgstr "Барам позадина на анимацијата..." + +#: plug-ins/common/animoptimize.c:483 +msgid "Optimizing Animation..." +msgstr "Оптимизирам Ðнимација..." + +#: plug-ins/common/apply_lens.c:122 +msgid "/Filters/Glass Effects/Apply _Lens..." +msgstr "/Филтери/Ефекти на Чаша/Прифати _леќи..." + +#: plug-ins/common/apply_lens.c:186 +msgid "Applying lens..." +msgstr "Прифаќам леќи..." + +#: plug-ins/common/apply_lens.c:369 +msgid "Lens Effect" +msgstr "Ефект на леќите" + +#: plug-ins/common/apply_lens.c:389 +msgid "_Keep Original Surroundings" +msgstr "_Задржи ја оригиналната околина" + +#: plug-ins/common/apply_lens.c:401 +msgid "_Set Surroundings to Index 0" +msgstr "_ÐамеÑти ја околината на Ð¸Ð½Ð´ÐµÐºÑ 0" + +#: plug-ins/common/apply_lens.c:402 +msgid "_Set Surroundings to Background Color" +msgstr "_ÐамеÑти ја околината во боја на позадина" + +#: plug-ins/common/apply_lens.c:414 +msgid "_Make Surroundings Transparent" +msgstr "Ðаправи ја околината провидна" + +#: plug-ins/common/apply_lens.c:432 +msgid "_Lens Refraction Index:" +msgstr "Ð˜Ð½Ð´ÐµÐºÑ Ð½Ð° прелом на зракот во леќата:" + +#: plug-ins/common/autocrop.c:75 +msgid "/Image/Transform/_Autocrop" +msgstr "/Слика/ТранÑформации/Ðвто иÑечок" + +#: plug-ins/common/autocrop.c:120 +msgid "Cropping..." +msgstr "ОтÑечувам..." + +#: plug-ins/common/autostretch_hsv.c:92 +msgid "/Layer/Colors/Auto/Stretch _HSV" +msgstr "/Слој/Бои/Ðвто/Развлечи _HSV" + +#: plug-ins/common/autostretch_hsv.c:124 +msgid "Auto-Stretching HSV..." +msgstr "Саморазвлекување на HSV..." + +#: plug-ins/common/blinds.c:167 +msgid "/Filters/Distorts/_Blinds..." +msgstr "/Филтери/Озобличувања/_Повези..." + +#: plug-ins/common/blinds.c:233 +msgid "Adding Blinds..." +msgstr "Додавам Сепаратори..." + +#. Get the preview image and store it also set has_alpha +#: plug-ins/common/blinds.c:273 +msgid "Blinds" +msgstr "Сепаратори" + +#. Orientation toggle box +#: plug-ins/common/blinds.c:301 plug-ins/common/ripple.c:473 +msgid "Orientation" +msgstr "Ориентација" + +#: plug-ins/common/blinds.c:305 plug-ins/common/ripple.c:477 +#: plug-ins/common/tileit.c:431 +msgid "_Horizontal" +msgstr "_Хоризонтално" + +#: plug-ins/common/blinds.c:306 plug-ins/common/ripple.c:478 +#: plug-ins/common/tileit.c:441 +msgid "_Vertical" +msgstr "_Вертикално" + +#: plug-ins/common/blinds.c:321 plug-ins/common/fractaltrace.c:785 +#: plug-ins/common/papertile.c:367 +msgid "_Transparent" +msgstr "_Провидно" + +#: plug-ins/common/blinds.c:349 +msgid "_Displacement:" +msgstr "_Измештај:" + +#: plug-ins/common/blinds.c:358 +msgid "_Num Segments:" +msgstr "_Број на делови:" + +#: plug-ins/common/blur.c:187 +msgid "/Filters/Blur/_Blur..." +msgstr "/Филтери/Заматување/_Заматување..." + +# +#. +#. * JUST DO IT! +#. +#: plug-ins/common/blur.c:309 plug-ins/common/unsharp.c:255 +msgid "Blurring..." +msgstr "Заматувам..." + +# +#: plug-ins/common/blur.c:585 +msgid "Blur" +msgstr "Замати" + +#: plug-ins/common/blur.c:614 plug-ins/common/randomize.c:724 +#: plug-ins/common/snoise.c:520 +msgid "_Random Seed:" +msgstr "_Случајно Ñеме:" + +#: plug-ins/common/blur.c:623 +msgid "R_andomization %:" +msgstr "С_лучајноÑÑ‚ %:" + +#: plug-ins/common/blur.c:626 plug-ins/common/randomize.c:736 +msgid "Percentage of pixels to be filtered" +msgstr "Процент на пикÑели кои ќе бидат филтрирани" + +#: plug-ins/common/blur.c:635 plug-ins/common/randomize.c:745 +msgid "R_epeat:" +msgstr "По_втори:" + +#: plug-ins/common/blur.c:638 plug-ins/common/randomize.c:748 +msgid "Number of times to apply filter" +msgstr "Број на обиди за прифаќање на филтерот" + +#: plug-ins/common/borderaverage.c:99 +msgid "/Filters/Colors/_Border Average..." +msgstr "/Филтери/Бои/ПроÑечна _ивица..." + +#: plug-ins/common/borderaverage.c:162 +msgid "Border Average..." +msgstr "ПроÑечна ивица..." + +#: plug-ins/common/borderaverage.c:359 +msgid "Borderaverage" +msgstr "ПроÑечна ивица" + +#: plug-ins/common/borderaverage.c:373 +msgid "Border Size" +msgstr "Големина на ивицата" + +#: plug-ins/common/borderaverage.c:382 +msgid "_Thickness:" +msgstr "_ГуÑтина" + +#: plug-ins/common/borderaverage.c:405 +msgid "_Bucket Size:" +msgstr "Големина на _кантата:" + +#: plug-ins/common/borderaverage.c:413 +msgid "1 (nonsense?)" +msgstr "1 (беÑмиÑлено?)" + +#: plug-ins/common/borderaverage.c:421 +msgid "256 (nonsense?)" +msgstr "256 (беÑмиÑлено?)" + +#: plug-ins/common/bumpmap.c:372 +msgid "/Filters/Map/_Bump Map..." +msgstr "/Филтери/Мапа/_РидеÑÑ‚ Терен..." + +#: plug-ins/common/bumpmap.c:524 +msgid "Bump-mapping..." +msgstr "РидеÑÑ‚-терен..." + +# +#: plug-ins/common/bumpmap.c:875 +msgid "Bump Map" +msgstr "РидеÑÑ‚ терен" + +#: plug-ins/common/bumpmap.c:960 +msgid "Map Type" +msgstr "Вид на мапа" + +#: plug-ins/common/bumpmap.c:964 +msgid "_Linear Map" +msgstr "_Линеарна мапа" + +#: plug-ins/common/bumpmap.c:965 +msgid "_Spherical Map" +msgstr "С_ферична мапа" + +#: plug-ins/common/bumpmap.c:966 +msgid "S_inuosidal Map" +msgstr "_СинуÑоидна мапа" + +#. Compensate darkening +#: plug-ins/common/bumpmap.c:979 +msgid "Co_mpensate for Darkening" +msgstr "_Компензирај за замрачување" + +#. Invert bumpmap +#: plug-ins/common/bumpmap.c:990 +msgid "I_nvert Bumpmap" +msgstr "О_братен ридеÑÑ‚ терен" + +#. Tile bumpmap +#: plug-ins/common/bumpmap.c:1001 +msgid "_Tile Bumpmap" +msgstr "_Поплочан ридеÑÑ‚ терен" + +#: plug-ins/common/bumpmap.c:1033 +msgid "_Bump Map:" +msgstr "_РидеÑÑ‚ Терен:" + +#: plug-ins/common/bumpmap.c:1052 plug-ins/common/emboss.c:536 +msgid "_Azimuth:" +msgstr "_Ðзимут:" + +#: plug-ins/common/bumpmap.c:1061 +msgid "_Elevation:" +msgstr "_Елевација:" + +#: plug-ins/common/bumpmap.c:1081 +msgid "_X Offset:" +msgstr "_X помеÑтување:" + +#: plug-ins/common/bumpmap.c:1091 +msgid "_Y Offset:" +msgstr "_Y помеÑтување:" + +#: plug-ins/common/bumpmap.c:1101 +msgid "_Waterlevel:" +msgstr "_Водена линија:" + +#: plug-ins/common/bumpmap.c:1110 +msgid "A_mbient:" +msgstr "Ð_мбиент:" + +#: plug-ins/common/bz2.c:265 plug-ins/common/gz.c:321 +msgid "No sensible extension, saving as compressed XCF." +msgstr "Ðема разбирлива екÑтензија, го зачувувам како копреÑиран XCF." + +#: plug-ins/common/bz2.c:351 plug-ins/common/gz.c:446 +msgid "No sensible extension, attempting to load with file magic." +msgstr "Ðема разбирлива екÑтензија, пробувам да вчитам Ñо датотечна магија." + +#: plug-ins/common/c_astretch.c:88 +msgid "/Layer/Colors/Auto/_Stretch Contrast" +msgstr "/Слика/Бои/Ðвто/_Развлекување на контраÑтот" + +#: plug-ins/common/c_astretch.c:120 +msgid "Auto-Stretching Contrast..." +msgstr "Саморазвлекување на контраÑтот..." + +#: plug-ins/common/ccanalyze.c:191 +msgid "/Filters/Colors/Colorcube A_nalysis..." +msgstr "/Филтери/Бои/_Ðнализа на обоена коцка..." + +#: plug-ins/common/ccanalyze.c:277 +msgid "Colorcube Analysis..." +msgstr "Ðнализа на обоена коцка..." + +#. set up the dialog +#: plug-ins/common/ccanalyze.c:556 +msgid "Colorcube Analysis" +msgstr "Ðнализа на обоена коцка" + +#. set up frame +#: plug-ins/common/ccanalyze.c:565 +msgid "Results" +msgstr "Резултати" + +#. output results +#: plug-ins/common/ccanalyze.c:589 plug-ins/imagemap/imap_cmd_guides.c:228 +#, c-format +msgid "Image dimensions: %d x %d" +msgstr "Големина на Ñликата: %d x %d" + +# неÑигурно +#: plug-ins/common/ccanalyze.c:592 +msgid "No colors" +msgstr "Без бои" + +#: plug-ins/common/ccanalyze.c:594 +msgid "Only one unique color" +msgstr "Само една единÑтвена боја" + +# +#: plug-ins/common/ccanalyze.c:596 +#, c-format +msgid "Number of unique colors: %d" +msgstr "Број на единÑтвените бои: %d" + +#: plug-ins/common/ccanalyze.c:599 +#, c-format +msgid "Uncompressed size: %s" +msgstr "Големина на некомпреÑирана: %s" + +#: plug-ins/common/ccanalyze.c:606 +#, c-format +msgid "Filename: %s" +msgstr "Име на датотека: %s" + +#: plug-ins/common/ccanalyze.c:607 +#, c-format +msgid "Compressed size: %s" +msgstr "Големина на компреÑирана: %s" + +#: plug-ins/common/ccanalyze.c:608 +#, c-format +msgid "Compression ratio (approx.): %d to 1" +msgstr "ÐžÐ´Ð½Ð¾Ñ Ð½Ð° компреÑија (приближно): %d Ñпрема 1" + +# bug: ".." -> "..." +#: plug-ins/common/channel_mixer.c:225 +msgid "/Filters/Colors/Channel Mi_xer.." +msgstr "/Филтери/Бои/_Мешање на каналите..." + +#: plug-ins/common/channel_mixer.c:529 +msgid "Channel Mixer" +msgstr "Мешање на каналите" + +#. The preview toggle +#: plug-ins/common/channel_mixer.c:567 plug-ins/imagemap/imap_grid.c:295 +msgid "_Preview" +msgstr "_Преглед" + +# +#: plug-ins/common/channel_mixer.c:592 +msgid "O_utput Channel:" +msgstr "И_злезен канал" + +#. The monochrome toggle +#: plug-ins/common/channel_mixer.c:661 +msgid "_Monochrome" +msgstr "_МонохроматÑки" + +#: plug-ins/common/channel_mixer.c:673 +msgid "Preserve _Luminosity" +msgstr "Задржи _оÑветлување" + +# +#: plug-ins/common/channel_mixer.c:1036 +msgid "Load Channel Mixer Settings" +msgstr "Вчитај подеÑувања за мешања на каналот" + +#: plug-ins/common/channel_mixer.c:1173 +msgid "Save Channel Mixer Settings" +msgstr "Зачувај ги подеÑувањата за мешање на каналот" + +# молим? неÑигурно, Ñвакако +#: plug-ins/common/channel_mixer.c:1266 +msgid "Channel Mixer File Operation Warning" +msgstr "Предупредување на операцијата од датотеката за мешање на каналот" + +#: plug-ins/common/checkerboard.c:94 +msgid "/Filters/Render/Pattern/_Checkerboard..." +msgstr "/Филтери/Рендерирање/МуÑтра/_ШаховÑка табла..." + +#: plug-ins/common/checkerboard.c:158 +msgid "Adding Checkerboard..." +msgstr "Додавам шаховÑка табла..." + +#: plug-ins/common/checkerboard.c:304 +msgid "Checkerboard" +msgstr "ШаховÑка табла" + +#: plug-ins/common/checkerboard.c:332 +msgid "_Psychobilly" +msgstr "_ПÑихобилноÑÑ‚" + +#: plug-ins/common/checkerboard.c:365 plug-ins/common/papertile.c:289 +#: plug-ins/gimpressionist/sizemap.c:508 +msgid "_Size:" +msgstr "_Големина:" + +#: plug-ins/common/color_enhance.c:92 +msgid "/Layer/Colors/Auto/_Color Enhance" +msgstr "/Слика/Бои/Ðвто/ЗаÑилување на _боја" + +#: plug-ins/common/color_enhance.c:124 +msgid "Color Enhance..." +msgstr "ЗаÑилување на боја..." + +#: plug-ins/common/colorify.c:120 +msgid "/Filters/Colors/_Colorify..." +msgstr "/Филтери/Бои/_Обој..." + +#: plug-ins/common/colorify.c:178 +msgid "Colorifying..." +msgstr "Бојам..." + +#: plug-ins/common/colorify.c:248 +msgid "Colorify" +msgstr "ОбоеноÑÑ‚" + +#: plug-ins/common/colorify.c:257 plug-ins/common/colortoalpha.c:325 +#: plug-ins/common/ps.c:2714 plug-ins/common/xpm.c:455 +#: plug-ins/gimpressionist/color.c:48 plug-ins/gimpressionist/general.c:107 +#: plug-ins/imagemap/imap_menu.c:305 plug-ins/print/gimp_main_window.c:1420 +msgid "Color" +msgstr "Боја" + +#: plug-ins/common/colorify.c:270 +msgid "Custom Color:" +msgstr "ПоÑебна боја: " + +#: plug-ins/common/colorify.c:275 +msgid "Colorify Custom Color" +msgstr "Обој Ñо поÑебна боја" + +#: plug-ins/common/colortoalpha.c:99 +msgid "/Filters/Colors/Color to _Alpha..." +msgstr "/Филтери/Бои/Боја во Ðлфа..." + +#: plug-ins/common/colortoalpha.c:173 +msgid "Removing color..." +msgstr "ОтÑтранувам боја..." + +#: plug-ins/common/colortoalpha.c:316 +msgid "Color to Alpha" +msgstr "Боја во Ðлфа" + +#: plug-ins/common/colortoalpha.c:337 plug-ins/common/mapcolor.c:629 +#: plug-ins/gfli/gfli.c:834 plug-ins/gfli/gfli.c:897 +msgid "From:" +msgstr "Од:" + +#: plug-ins/common/colortoalpha.c:342 +msgid "Color to Alpha Color Picker" +msgstr "Боја во капалка за Ðлфа боја" + +#: plug-ins/common/colortoalpha.c:354 +msgid "to Alpha" +msgstr "во Ðлфа" + +#: plug-ins/common/compose.c:130 plug-ins/common/decompose.c:127 +msgid "RGB" +msgstr "RGB" + +#: plug-ins/common/compose.c:140 plug-ins/common/decompose.c:132 +msgid "RGBA" +msgstr "RGBA" + +#: plug-ins/common/compose.c:144 +msgid "Alpha:" +msgstr "Ðлфа:" + +#: plug-ins/common/compose.c:150 plug-ins/common/decompose.c:137 +msgid "HSV" +msgstr "HSV" + +#. Gray: Circle: Spinbutton 1 +#: plug-ins/common/compose.c:151 plug-ins/rcm/rcm_dialog.c:455 +msgid "Hue:" +msgstr "ÐијанÑа:" + +#. Gray: Circle: Spinbutton 2 +#: plug-ins/common/compose.c:152 plug-ins/print/gimp_color_window.c:359 +#: plug-ins/rcm/rcm_dialog.c:481 +msgid "Saturation:" +msgstr "ЗаÑитување:" + +#: plug-ins/common/compose.c:153 +msgid "Value:" +msgstr "ВредноÑÑ‚:" + +#: plug-ins/common/compose.c:157 plug-ins/common/decompose.c:143 +msgid "CMY" +msgstr "CMY" + +#: plug-ins/common/compose.c:158 plug-ins/common/compose.c:165 +#: plug-ins/fp/fp_gtk.c:31 plug-ins/print/gimp_color_window.c:302 +msgid "Cyan:" +msgstr "Цијан:" + +#: plug-ins/common/compose.c:159 plug-ins/common/compose.c:166 +#: plug-ins/fp/fp_gtk.c:33 plug-ins/print/gimp_color_window.c:321 +msgid "Magenta:" +msgstr "Магента:" + +#: plug-ins/common/compose.c:160 plug-ins/common/compose.c:167 +#: plug-ins/fp/fp_gtk.c:32 plug-ins/print/gimp_color_window.c:340 +msgid "Yellow:" +msgstr "Жолта:" + +#: plug-ins/common/compose.c:164 plug-ins/common/decompose.c:149 +msgid "CMYK" +msgstr "CMYK" + +#: plug-ins/common/compose.c:168 +msgid "Black:" +msgstr "Црна:" + +#: plug-ins/common/compose.c:171 plug-ins/common/decompose.c:158 +msgid "LAB" +msgstr "LAB" + +#: plug-ins/common/compose.c:179 +msgid "Luma_y470:" +msgstr "Luma_y470:" + +#: plug-ins/common/compose.c:180 +msgid "Blueness_cb470:" +msgstr "Синило_cb470:" + +#: plug-ins/common/compose.c:181 +msgid "Redness_cr470:" +msgstr "Црвенило_cr470:" + +#: plug-ins/common/compose.c:186 +msgid "Luma_y709:" +msgstr "Luma_y709:" + +#: plug-ins/common/compose.c:187 +msgid "Blueness_cb709:" +msgstr "Синило_cb709:" + +#: plug-ins/common/compose.c:188 +msgid "Redness_cr709:" +msgstr "Црвенило_cr709:" + +#: plug-ins/common/compose.c:193 +msgid "Luma_y470f:" +msgstr "Luma_y470f:" + +#: plug-ins/common/compose.c:194 +msgid "Blueness_cb470f:" +msgstr "Синило_cb470f:" + +#: plug-ins/common/compose.c:195 +msgid "Redness_cr470f:" +msgstr "Црвенило_cr470f:" + +#: plug-ins/common/compose.c:200 +msgid "Luma_y709f:" +msgstr "Luma_y709f:" + +#: plug-ins/common/compose.c:201 +msgid "Blueness_cb709f:" +msgstr "Синило_cb709f:" + +#: plug-ins/common/compose.c:202 +msgid "Redness_cr709f:" +msgstr "Црвенило_cr709f:" + +# +#: plug-ins/common/compose.c:297 +msgid "/Filters/Colors/C_ompose..." +msgstr "/Филтери/Бои/_СоÑтави..." + +#: plug-ins/common/compose.c:360 +#, c-format +msgid "Could not get layers for image %d" +msgstr "Ðе можам Ñа добијам Ñлоеви за Ñликата %d" + +#: plug-ins/common/compose.c:412 +msgid "Composing..." +msgstr "СоÑтавувам..." + +# +#: plug-ins/common/compose.c:481 +msgid "Drawables have different size" +msgstr "Цртежите имаат различна големина" + +# +#: plug-ins/common/compose.c:498 +msgid "Images have different size" +msgstr "Сликите имаат различна големина" + +# +#: plug-ins/common/compose.c:512 +msgid "Error in getting layer IDs" +msgstr "Грешка кај добивањето на ознаки на Ñлојот" + +#: plug-ins/common/compose.c:529 +#, c-format +msgid "Image is not a gray image (bpp=%d)" +msgstr "Ова не е Ñива Ñлика (bpp=%d)" + +#: plug-ins/common/compose.c:1088 +msgid "Compose" +msgstr "СоÑтавување" + +# +#. The left frame keeps the compose type toggles +#: plug-ins/common/compose.c:1104 +msgid "Compose Channels" +msgstr "СоÑтави Канали" + +# +#. The right frame keeps the selection menues for images. +#. Because the labels within this frame will change when a toggle +#. in the left frame is changed, fill in the right part first. +#. Otherwise it can occur, that a non-existing label might be changed. +#: plug-ins/common/compose.c:1116 +msgid "Channel Representations" +msgstr "Репрезентации на каналот:" + +#: plug-ins/common/convmatrix.c:87 +msgid "Gr_ey" +msgstr "_Сива" + +#: plug-ins/common/convmatrix.c:88 +msgid "Re_d" +msgstr "_Црвена" + +#: plug-ins/common/convmatrix.c:89 plug-ins/common/newsprint.c:367 +msgid "_Green" +msgstr "_Зелена:" + +#: plug-ins/common/convmatrix.c:90 plug-ins/common/newsprint.c:375 +msgid "_Blue" +msgstr "Си_на:" + +#: plug-ins/common/convmatrix.c:91 +msgid "_Alpha" +msgstr "_Ðлфа:" + +#: plug-ins/common/convmatrix.c:96 +msgid "E_xtend" +msgstr "Про_ширено" + +#: plug-ins/common/convmatrix.c:97 plug-ins/common/displace.c:374 +#: plug-ins/common/edge.c:691 plug-ins/common/ripple.c:491 +msgid "_Wrap" +msgstr "За_мотај" + +#: plug-ins/common/convmatrix.c:98 +msgid "Cro_p" +msgstr "ИÑе_чок" + +# +#: plug-ins/common/convmatrix.c:194 +msgid "/Filters/Generic/_Convolution Matrix..." +msgstr "/Филтери/Генерички/Матрица на _Ñвивањето..." + +#: plug-ins/common/convmatrix.c:226 +msgid "Convolution Matrix does not work on layers smaller than 3 pixels." +msgstr "Матрицата на Ñвивањето не работи на Ñлоеви помали од 3 пикÑели" + +#: plug-ins/common/convmatrix.c:299 +msgid "Applying convolution" +msgstr "Прифати Ñвивање" + +#: plug-ins/common/convmatrix.c:871 +msgid "Convolution Matrix" +msgstr "Матрица на Свивање " + +#: plug-ins/common/convmatrix.c:896 +msgid "Matrix" +msgstr "Матрица" + +# +#: plug-ins/common/convmatrix.c:932 +msgid "D_ivisor:" +msgstr "_Делител:" + +# +#: plug-ins/common/convmatrix.c:953 +msgid "O_ffset:" +msgstr "ОфÑет:" + +#: plug-ins/common/convmatrix.c:979 +msgid "A_utomatic" +msgstr "ÐвтоматÑки" + +#: plug-ins/common/convmatrix.c:988 +msgid "A_lpha-weighting" +msgstr "Ðл_фа-тежина" + +#: plug-ins/common/convmatrix.c:1004 +msgid "Border" +msgstr "Ивица" + +#: plug-ins/common/convmatrix.c:1029 +msgid "Channels" +msgstr "Канали" + +# +#: plug-ins/common/csource.c:635 +msgid "Save as C-Source" +msgstr "Зачувај како C-код" + +# +#: plug-ins/common/csource.c:659 +msgid "_Prefixed Name:" +msgstr "Име на _префикÑот:" + +# +#: plug-ins/common/csource.c:668 +msgid "Co_mment:" +msgstr "_Коментар:" + +# +#. Use Comment +#. +#: plug-ins/common/csource.c:675 +msgid "_Save Comment to File" +msgstr "_Зачувај коментар во датотека" + +#. GLib types +#. +#: plug-ins/common/csource.c:687 +msgid "_Use GLib Types (guint8*)" +msgstr "_КориÑти GLib типови (guint8*)" + +#. Use Macros +#. +#: plug-ins/common/csource.c:699 +msgid "Us_e Macros instead of Struct" +msgstr "Ко_риÑти Макроа намеÑто Ñтруктура" + +#. Use RLE +#. +#: plug-ins/common/csource.c:711 +msgid "Use _1 Byte Run-Length-Encoding" +msgstr "КориÑти _1 бајт Run-Length-Encoding (RLE)" + +# +#. Alpha +#. +#: plug-ins/common/csource.c:723 +msgid "Sa_ve Alpha Channel (RGBA/RGB)" +msgstr "За_чувај Ðлфа канал (RGBA/RGB)" + +# +#: plug-ins/common/csource.c:741 plug-ins/common/sparkle.c:429 +msgid "Op_acity:" +msgstr "_ÐепровидноÑÑ‚:" + +# +#: plug-ins/common/cubism.c:145 +msgid "/Filters/Artistic/_Cubism..." +msgstr "/Филтери/Уметнички/_Кубизам..." + +#: plug-ins/common/cubism.c:253 +msgid "Cubism" +msgstr "Кубизам" + +#: plug-ins/common/cubism.c:276 +msgid "_Use Background Color" +msgstr "Употреби боја на позадине" + +# +#: plug-ins/common/cubism.c:289 +msgid "_Tile Size:" +msgstr "Големина на _делчето:" + +# +#: plug-ins/common/cubism.c:299 +msgid "T_ile Saturation:" +msgstr "ЗаÑитеноÑÑ‚ на де_лчето:" + +#: plug-ins/common/cubism.c:353 +msgid "Cubistic Transformation" +msgstr "КубиÑтичка транÑформација" + +# +#: plug-ins/common/curve_bend.c:567 +msgid "/Filters/Distorts/_Curve Bend..." +msgstr "/Филтери/Заматување/_Свивање на крива..." + +#: plug-ins/common/curve_bend.c:698 +msgid "CurveBend operates on layers only (but was called on channel or mask)" +msgstr "Свиената крива работи Ñамо на Ñлоевите (но пробавте на маÑката на каналот)" + +#. Possibly retrieve data from a previous run +#. The shell and main vbox +#: plug-ins/common/curve_bend.c:1213 +msgid "Curve Bend" +msgstr "СвиеноÑÑ‚ на кривата" + +# +#. The preview button +#: plug-ins/common/curve_bend.c:1278 +msgid "_Preview Once" +msgstr "_Прегледај еднаш" + +#. The preview toggle +#: plug-ins/common/curve_bend.c:1287 +msgid "Automatic Pre_view" +msgstr "ÐвтоматÑко оÑвежување на прегледот" + +#. Options area, bottom of column +#: plug-ins/common/curve_bend.c:1297 plug-ins/common/mosaic.c:528 +#: plug-ins/common/ripple.c:443 plug-ins/gfig/gfig.c:2989 +msgid "Options" +msgstr "Опции" + +# +#. Rotate spinbutton +#: plug-ins/common/curve_bend.c:1312 +msgid "Rotat_e:" +msgstr "_Ротирај:" + +#. The smoothing toggle +#: plug-ins/common/curve_bend.c:1330 +msgid "Smoo_thing" +msgstr "Пора_мнување" + +#. The antialiasing toggle +#: plug-ins/common/curve_bend.c:1340 plug-ins/common/gqbist.c:848 +#: plug-ins/common/mosaic.c:535 plug-ins/common/ripple.c:451 +msgid "_Antialiasing" +msgstr "_Омекнување" + +#. The wor_on_copy toggle +#: plug-ins/common/curve_bend.c:1350 +msgid "Work on Cop_y" +msgstr "Работи на копија" + +# +#. The curves graph +#: plug-ins/common/curve_bend.c:1360 +msgid "Modify Curves" +msgstr "Промени ги кривите" + +#: plug-ins/common/curve_bend.c:1389 +msgid "Curve for Border" +msgstr "Крива за граница" + +# +#: plug-ins/common/curve_bend.c:1393 +msgid "_Upper" +msgstr "_Горна" + +#: plug-ins/common/curve_bend.c:1394 +msgid "_Lower" +msgstr "_Долна" + +# +#: plug-ins/common/curve_bend.c:1404 +msgid "Curve Type" +msgstr "Вид на крива:" + +# +#: plug-ins/common/curve_bend.c:1408 +msgid "Smoot_h" +msgstr "Пора_мнување" + +# +#: plug-ins/common/curve_bend.c:1409 +msgid "_Free" +msgstr "_Слободно" + +#. The Copy button +#: plug-ins/common/curve_bend.c:1424 +msgid "_Copy" +msgstr "_Копирај" + +#: plug-ins/common/curve_bend.c:1429 +msgid "Copy the active curve to the other border" +msgstr "Копирај ја тековната крива за друга ивица" + +#. The CopyInv button +#: plug-ins/common/curve_bend.c:1436 +msgid "_Mirror" +msgstr "_Огледало" + +#: plug-ins/common/curve_bend.c:1441 +msgid "Mirror the active curve to the other border" +msgstr "Одраз во огледало на тековната крива на друга ивица" + +#. The Swap button +#: plug-ins/common/curve_bend.c:1448 +msgid "S_wap" +msgstr "_Замена" + +# +#: plug-ins/common/curve_bend.c:1453 +msgid "Swap the two curves" +msgstr "Замени ги двете криви" + +#: plug-ins/common/curve_bend.c:1465 +msgid "Reset the active curve" +msgstr "Повторно поÑтави ја тековната крива" + +# +#: plug-ins/common/curve_bend.c:1482 +msgid "Load the curves from a file" +msgstr "Вчитај ги кривите од датотека" + +# +#: plug-ins/common/curve_bend.c:1494 +msgid "Save the curves to a file" +msgstr "Зачувај ги кривите во датотека" + +# +#: plug-ins/common/curve_bend.c:2031 +msgid "Load Curve Points from file" +msgstr "Вчитај ги точките на кривата од датотека" + +# +#: plug-ins/common/curve_bend.c:2058 +msgid "Save Curve Points to file" +msgstr "Зачувај ги точките на кривата во датотека" + +# +#: plug-ins/common/curve_bend.c:2958 +msgid "Curve Bend..." +msgstr "Свиена Крива..." + +#: plug-ins/common/decompose.c:127 plug-ins/common/decompose.c:130 +#: plug-ins/common/decompose.c:132 +msgid "red" +msgstr "црвена" + +#: plug-ins/common/decompose.c:128 plug-ins/common/decompose.c:131 +#: plug-ins/common/decompose.c:133 +msgid "green" +msgstr "зелена" + +#: plug-ins/common/decompose.c:129 plug-ins/common/decompose.c:134 +#: plug-ins/common/decompose.c:136 +msgid "blue" +msgstr "Ñина" + +#: plug-ins/common/decompose.c:135 plug-ins/common/decompose.c:156 +msgid "alpha" +msgstr "алфа" + +#: plug-ins/common/decompose.c:137 plug-ins/common/decompose.c:140 +msgid "hue" +msgstr "нијанÑа" + +#: plug-ins/common/decompose.c:138 plug-ins/common/decompose.c:141 +msgid "saturation" +msgstr "заÑитување" + +#: plug-ins/common/decompose.c:139 plug-ins/common/decompose.c:142 +msgid "value" +msgstr "вредноÑÑ‚" + +#: plug-ins/common/decompose.c:143 plug-ins/common/decompose.c:146 +msgid "cyan" +msgstr "цијан" + +#: plug-ins/common/decompose.c:144 plug-ins/common/decompose.c:147 +msgid "magenta" +msgstr "магента" + +#: plug-ins/common/decompose.c:145 plug-ins/common/decompose.c:148 +msgid "yellow" +msgstr "жолта" + +#: plug-ins/common/decompose.c:146 +msgid "Cyan" +msgstr "Цијан" + +#: plug-ins/common/decompose.c:147 +msgid "Magenta" +msgstr "Магента" + +#: plug-ins/common/decompose.c:148 +msgid "Yellow" +msgstr "Жолта" + +#: plug-ins/common/decompose.c:149 plug-ins/common/decompose.c:153 +msgid "cyan_k" +msgstr "цијан_к" + +#: plug-ins/common/decompose.c:150 plug-ins/common/decompose.c:154 +msgid "magenta_k" +msgstr "магента_к" + +#: plug-ins/common/decompose.c:151 plug-ins/common/decompose.c:155 +msgid "yellow_k" +msgstr "жолта_к" + +#: plug-ins/common/decompose.c:152 +msgid "black" +msgstr "црна" + +#: plug-ins/common/decompose.c:153 +msgid "Cyan_K" +msgstr "Цијан_К" + +#: plug-ins/common/decompose.c:154 +msgid "Magenta_K" +msgstr "Магента_К" + +#: plug-ins/common/decompose.c:155 +msgid "Yellow_K" +msgstr "Жолта_К" + +#: plug-ins/common/decompose.c:156 +msgid "Alpha" +msgstr "Ðлфа" + +#: plug-ins/common/decompose.c:163 +msgid "luma_y470" +msgstr "luma_y470" + +#: plug-ins/common/decompose.c:164 +msgid "blueness_cb470" +msgstr "Ñинило_cb470" + +#: plug-ins/common/decompose.c:165 +msgid "redness_cr470" +msgstr "црвенило_cr470" + +#: plug-ins/common/decompose.c:167 +msgid "luma_y709" +msgstr "luma_y709" + +#: plug-ins/common/decompose.c:168 +msgid "blueness_cb709" +msgstr "Ñинило_cb709" + +#: plug-ins/common/decompose.c:169 +msgid "redness_cr709" +msgstr "црвенило_cr709" + +#: plug-ins/common/decompose.c:171 +msgid "luma_y470f" +msgstr "luma_y470f" + +#: plug-ins/common/decompose.c:172 +msgid "blueness_cb470f" +msgstr "Ñинило_cb470f" + +#: plug-ins/common/decompose.c:173 +msgid "redness_cr470f" +msgstr "црвенило_cr470f" + +#: plug-ins/common/decompose.c:175 +msgid "luma_y709f" +msgstr "luma_y709f" + +#: plug-ins/common/decompose.c:176 +msgid "blueness_cb709f" +msgstr "Ñинило_cb709f" + +#: plug-ins/common/decompose.c:177 +msgid "redness_cr709f" +msgstr "црвенило_cr709f" + +# +#: plug-ins/common/decompose.c:242 +msgid "/Filters/Colors/_Decompose..." +msgstr "/Филтери/Бои/_Декомпонирај..." + +#: plug-ins/common/decompose.c:325 +msgid "Decomposing..." +msgstr "Декомпонирање..." + +#: plug-ins/common/decompose.c:1179 +msgid "Decompose" +msgstr "Декомпонирање" + +# +#. parameter settings +#: plug-ins/common/decompose.c:1189 +msgid "Extract Channels:" +msgstr "Извлечи ги каналите:" + +#: plug-ins/common/decompose.c:1219 +msgid "Decompose to _Layers" +msgstr "Декомпонирање на Ñлоеви" + +# +#: plug-ins/common/deinterlace.c:91 +msgid "/Filters/Enhance/_Deinterlace..." +msgstr "/Филтери/Подобри/_РаÑплети..." + +# +#: plug-ins/common/deinterlace.c:146 +msgid "Deinterlace..." +msgstr "РаÑплети..." + +# +#: plug-ins/common/deinterlace.c:284 +msgid "Deinterlace" +msgstr "РаÑплети" + +#: plug-ins/common/deinterlace.c:302 +msgid "Keep O_dd Fields" +msgstr "Задржи ги парните полиња" + +#: plug-ins/common/deinterlace.c:303 +msgid "Keep _Even Fields" +msgstr "Задржи ги непарните полиња" + +# +#: plug-ins/common/depthmerge.c:198 +msgid "/Filters/Combine/_Depth Merge..." +msgstr "/Филтери/Комбинирај/_Стопи длабочина..." + +#: plug-ins/common/depthmerge.c:388 +msgid "Depth-merging..." +msgstr "Стопување на длабочина..." + +#: plug-ins/common/depthmerge.c:638 +msgid "Depth Merge" +msgstr "Стопи Длабочина" + +# +#: plug-ins/common/depthmerge.c:681 +msgid "Source 1:" +msgstr "Извор 1:" + +# +#: plug-ins/common/depthmerge.c:698 plug-ins/common/depthmerge.c:732 +msgid "Depth Map:" +msgstr "Длабочина на мапата:" + +# +#: plug-ins/common/depthmerge.c:715 +msgid "Source 2:" +msgstr "Извор 2:" + +# +#: plug-ins/common/depthmerge.c:758 +msgid "Overlap:" +msgstr "Преклопување:" + +# +#. attach labels +#: plug-ins/common/depthmerge.c:768 plug-ins/common/grid.c:862 +msgid "Offset:" +msgstr "ОфÑет:" + +# +#: plug-ins/common/depthmerge.c:778 +msgid "Scale 1:" +msgstr "Степен 1:" + +# +#: plug-ins/common/depthmerge.c:788 +msgid "Scale 2:" +msgstr "Степен 2:" + +# +#: plug-ins/common/despeckle.c:182 +msgid "/Filters/Enhance/Des_peckle..." +msgstr "/Филтери/Подобри/Des_peckle..." + +# +#. Source image region +#. Destination image region +#. Source pixel rows +#. Destination pixel row +#. Source pixel pointer +#. Pixel value sort array +#. Current sort value +#. Number of soft values +#. Looping vars +#. Current location in image +#. Current row in src_rows +#. Number of rows loaded +#. Last row loaded in src_rows +#. Looping var +#. Starting row for loop +#. Ending row for loop +#. Maximum number of filled src_rows +#. Width/height of the filter box +#. Byte width of the image +#. Looping vars +#. Current radius +#. Histogram count for 0 values +#. Histogram count for 255 values +#. +#. * Let the user know what we're doing... +#. +#: plug-ins/common/despeckle.c:405 +msgid "Despeckling..." +msgstr "ДеÑпеклирање..." + +# +#: plug-ins/common/despeckle.c:615 +msgid "Despeckle" +msgstr "ДеÑпекл..." + +# +#. +#. * Filter type controls... +#. +#: plug-ins/common/despeckle.c:693 plug-ins/gimpressionist/orientmap.c:552 +msgid "Type" +msgstr "Тип" + +#: plug-ins/common/despeckle.c:702 +msgid "_Adaptive" +msgstr "_Ðдаптивно" + +# +#: plug-ins/common/despeckle.c:712 +msgid "R_ecursive" +msgstr "Ре_курзивно" + +#: plug-ins/common/despeckle.c:738 plug-ins/common/nlfilt.c:382 +#: plug-ins/common/nova.c:358 plug-ins/common/unsharp.c:665 +#: plug-ins/common/whirlpinch.c:714 plug-ins/gflare/gflare.c:2686 +#: plug-ins/imagemap/imap_circle.c:279 +msgid "_Radius:" +msgstr "_РадиуÑ:" + +# +#: plug-ins/common/despeckle.c:751 +msgid "_Black Level:" +msgstr "ВредноÑÑ‚ на _црна:" + +# +#: plug-ins/common/despeckle.c:764 +msgid "_White Level:" +msgstr "ВредноÑÑ‚ на _бела:" + +# +#: plug-ins/common/destripe.c:154 +msgid "/Filters/Enhance/Des_tripe..." +msgstr "/Филтери/Подобри/Des_tripe..." + +#: plug-ins/common/destripe.c:354 +msgid "Destriping..." +msgstr "ДеÑтрипирање..." + +#: plug-ins/common/destripe.c:559 +msgid "Destripe" +msgstr "ДеÑтрип" + +# +#: plug-ins/common/destripe.c:646 +msgid "Create _Histogram" +msgstr "Ðаправи ХиÑтограм" + +#: plug-ins/common/destripe.c:663 plug-ins/common/gtm.c:582 +#: plug-ins/common/ps.c:2670 plug-ins/common/ps.c:2829 +#: plug-ins/common/smooth_palette.c:430 plug-ins/common/tile.c:408 +#: plug-ins/imagemap/imap_cmd_guides.c:165 +#: plug-ins/imagemap/imap_rectangle.c:404 +msgid "_Width:" +msgstr "_Ширина:" + +#: plug-ins/common/dicom.c:315 +#, c-format +msgid "'%s' is not a DICOM file." +msgstr "%s: не е DICOM датотека" + +# +#: plug-ins/common/diffraction.c:184 +msgid "/Filters/Render/Pattern/_Diffraction Patterns..." +msgstr "/Филтери/Рендерирање/МуÑтра/Ди_фракција на иÑечоците..." + +#: plug-ins/common/diffraction.c:336 +msgid "Creating diffraction pattern..." +msgstr "Креирам дифракционирана муÑтра..." + +# +#: plug-ins/common/diffraction.c:440 +msgid "Diffraction Patterns" +msgstr "Дифракционирана муÑтра" + +# +#: plug-ins/common/diffraction.c:531 +msgid "_Frequencies" +msgstr "_Фреквенции" + +# +#: plug-ins/common/diffraction.c:569 +msgid "Co_ntours" +msgstr "_Контури" + +# +#: plug-ins/common/diffraction.c:607 +msgid "_Sharp edges" +msgstr "_ИзоÑтри ги ивиците" + +#: plug-ins/common/diffraction.c:619 plug-ins/flame/flame.c:993 +msgid "_Brightness:" +msgstr "_Светло:" + +# +#: plug-ins/common/diffraction.c:628 +msgid "Sc_attering:" +msgstr "РаÑ_прÑкување:" + +# +#: plug-ins/common/diffraction.c:637 +msgid "Po_latization:" +msgstr "По_ларизација:" + +# +#: plug-ins/common/diffraction.c:645 +msgid "O_ther options" +msgstr "Други _опции" + +# +#: plug-ins/common/displace.c:155 +msgid "/Filters/Map/_Displace..." +msgstr "/Филтери/Мапа/_ИзмеÑти..." + +# +#: plug-ins/common/displace.c:227 +msgid "Displacing..." +msgstr "ИзмеÑтување..." + +# +#: plug-ins/common/displace.c:267 +msgid "Displace" +msgstr "ИзмеÑти" + +# +#. The main table +#: plug-ins/common/displace.c:277 +msgid "Displace Options" +msgstr "Опции на измеÑтувањето" + +# +#. X options +#: plug-ins/common/displace.c:288 +msgid "_X Displacement:" +msgstr "_X ИзмеÑтување:" + +# +#. Y Options +#: plug-ins/common/displace.c:325 +msgid "_Y Displacement:" +msgstr "_Y ИзмеÑтување:" + +# +#. ======================================================================= +#. Displacement Type +#: plug-ins/common/displace.c:370 plug-ins/common/warp.c:462 +msgid "On Edges:" +msgstr "Ðа ивиците:" + +#: plug-ins/common/displace.c:388 plug-ins/common/edge.c:701 +#: plug-ins/common/ripple.c:492 plug-ins/common/waves.c:321 +msgid "_Smear" +msgstr "Ра_змаз" + +#: plug-ins/common/displace.c:402 plug-ins/common/edge.c:711 +#: plug-ins/common/fractaltrace.c:787 plug-ins/common/newsprint.c:412 +#: plug-ins/common/ripple.c:493 +msgid "_Black" +msgstr "_Црна" + +# +#: plug-ins/common/edge.c:152 +msgid "/Filters/Edge-Detect/_Edge..." +msgstr "/Филтери/Детектор на ивици/_Ивица... " + +# +#: plug-ins/common/edge.c:222 +msgid "Edge Detection..." +msgstr "Детекција на ивицата..." + +# +#: plug-ins/common/edge.c:636 +msgid "Edge Detection" +msgstr "Детекција на ивицата" + +#. compression +#: plug-ins/common/edge.c:646 +msgid "Algorithm" +msgstr "Ðлгоритам" + +#: plug-ins/common/edge.c:650 +msgid "_Sobel" +msgstr "_Собел" + +# Ово и Собел ми изгледају као имена људи +#: plug-ins/common/edge.c:651 +msgid "_Prewitt" +msgstr "_Превит" + +# +#: plug-ins/common/edge.c:652 plug-ins/common/lic.c:744 +msgid "_Gradient" +msgstr "Пре_лив" + +#: plug-ins/common/edge.c:653 +msgid "_Roberts" +msgstr "Ро_бертÑ" + +#: plug-ins/common/edge.c:654 +msgid "_Differential" +msgstr "Ра_злика" + +# Ово је Ñигурно име чоека +#: plug-ins/common/edge.c:655 +msgid "_Laplace" +msgstr "_ЛаплаÑ" + +# +#: plug-ins/common/edge.c:675 plug-ins/common/unsharp.c:674 +msgid "_Amount:" +msgstr "_ВредноÑÑ‚:" + +# +#: plug-ins/common/emboss.c:154 +msgid "/Filters/Distorts/_Emboss..." +msgstr "/Филтери/Озобличувања/_ИÑпапчи..." + +#: plug-ins/common/emboss.c:397 plug-ins/common/emboss.c:490 +msgid "Emboss" +msgstr "ИÑпапчи" + +# +#: plug-ins/common/emboss.c:513 +msgid "Function" +msgstr "Функција" + +# +#: plug-ins/common/emboss.c:517 +msgid "_Bumpmap" +msgstr "_Ридовит терен" + +#: plug-ins/common/emboss.c:518 +msgid "_Emboss" +msgstr "_ИÑпапчи" + +#: plug-ins/common/emboss.c:545 +msgid "E_levation:" +msgstr "Е_левација:" + +# +#: plug-ins/common/emboss.c:724 plug-ins/common/sinus.c:1054 +msgid "Do _Preview" +msgstr "Да_ј преглед" + +# +#: plug-ins/common/engrave.c:106 +msgid "/Filters/Distorts/En_grave..." +msgstr "/Филтери/Озобличувања/Изре_збари..." + +# +#: plug-ins/common/engrave.c:177 +msgid "Engraving..." +msgstr "Резбарење..." + +# +#: plug-ins/common/engrave.c:206 +msgid "Engrave" +msgstr "Резбарење" + +#: plug-ins/common/engrave.c:228 +msgid "_Limit Line Width" +msgstr "Ограничи ја ширината на цртата" + +#: plug-ins/common/engrave.c:238 plug-ins/common/film.c:1228 +#: plug-ins/common/gtm.c:598 plug-ins/common/ps.c:2679 +#: plug-ins/common/ps.c:2838 plug-ins/common/smooth_palette.c:435 +#: plug-ins/common/tile.c:412 plug-ins/imagemap/imap_cmd_guides.c:175 +#: plug-ins/imagemap/imap_rectangle.c:411 +msgid "_Height:" +msgstr "_ВиÑина:" + +# +#: plug-ins/common/exchange.c:138 +msgid "/Filters/Colors/Map/_Color Exchange..." +msgstr "/Филтери/Бои/Мапа/Размена на _Бои..." + +# +#: plug-ins/common/exchange.c:240 +msgid "Color Exchange..." +msgstr "Размена на бои..." + +# +#. set up the dialog +#: plug-ins/common/exchange.c:319 +msgid "Color Exchange" +msgstr "Размена на бои..." + +#: plug-ins/common/exchange.c:334 +msgid "Preview: Click Inside to Pick \"From Color\"" +msgstr "Преглед: Клинете внатре за да изберете \"Ñпрема бојата\"" + +# +#: plug-ins/common/exchange.c:376 +msgid "To Color" +msgstr "Во боја" + +# +#: plug-ins/common/exchange.c:376 +msgid "From Color" +msgstr "Спрема Боја" + +#: plug-ins/common/exchange.c:388 +msgid "Color Exchange: To Color" +msgstr "Размена на боја: Во боја" + +#: plug-ins/common/exchange.c:389 +msgid "Color Exchange: From Color" +msgstr "Размена на боја: Спрема боја" + +# +#: plug-ins/common/exchange.c:431 +msgid "R_ed Threshold:" +msgstr "Праг на _Црвена:" + +# +#: plug-ins/common/exchange.c:475 +msgid "G_reen Threshold:" +msgstr "Праг на _Зелена:" + +# +#: plug-ins/common/exchange.c:519 +msgid "B_lue Threshold:" +msgstr "Праг на Сина:" + +# +#: plug-ins/common/exchange.c:543 +msgid "Lock _Thresholds" +msgstr "Заклучи ги праговите" + +# +#: plug-ins/common/film.c:247 +msgid "/Filters/Combine/_Film..." +msgstr "/Филтери/Комбинирај/_Филм..." + +#: plug-ins/common/film.c:333 +msgid "Composing Images..." +msgstr "Компонирам Ñлики..." + +#: plug-ins/common/film.c:444 plug-ins/common/guillotine.c:176 +msgid "Untitled" +msgstr "Безимено" + +#. ** Get a RGB copy of the source region ** +#: plug-ins/common/film.c:712 +msgid "Temporary" +msgstr "Привремено" + +# +#: plug-ins/common/film.c:1107 +msgid "Available Images:" +msgstr "ДоÑтапни Ñлики:" + +# +#: plug-ins/common/film.c:1108 +msgid "On Film:" +msgstr "Ðа филмот:" + +#: plug-ins/common/film.c:1192 +msgid "_Selection" +msgstr "_Селекција" + +#. Film height/colour +#: plug-ins/common/film.c:1200 plug-ins/common/film.c:1484 +msgid "Film" +msgstr "Филм" + +# +#. Keep maximum image height +#: plug-ins/common/film.c:1210 +msgid "_Fit Height to Images" +msgstr "ÐамеÑти ја виÑината во Ñликите" + +# #: libgimp/gimpfileselection.c:355 +# #: libgimp/gimpunitmenu.c:510 +# msgid "Select" +# msgstr "Odabir" +# +#. Film color +#: plug-ins/common/film.c:1244 +msgid "Select Film Color" +msgstr "Избери боја на филмот" + +#: plug-ins/common/film.c:1249 plug-ins/common/film.c:1298 +#: plug-ins/common/nova.c:347 +msgid "Co_lor:" +msgstr "_Боја:" + +#. Film numbering: Startindex/Font/colour +#: plug-ins/common/film.c:1257 +msgid "Numbering" +msgstr "Означување" + +# +#: plug-ins/common/film.c:1276 +msgid "Start _Index:" +msgstr "Почетен индекÑ:" + +#: plug-ins/common/film.c:1289 +msgid "_Font:" +msgstr "_Фонт:" + +# +#. Numbering color +#: plug-ins/common/film.c:1293 +msgid "Select Number Color" +msgstr "ÐамеÑти број на бои" + +# +#: plug-ins/common/film.c:1307 +msgid "At _Bottom" +msgstr "Ðа _дното" + +# +#: plug-ins/common/film.c:1308 +msgid "At _Top" +msgstr "Ðа _врвот" + +# +#. ** The right frame keeps the image selection ** +#: plug-ins/common/film.c:1321 +msgid "Image Selection" +msgstr "Селекција на Ñлика" + +#: plug-ins/common/film.c:1351 +msgid "All Values are Fractions of the Film Heigh" +msgstr "Сите вредноÑти Ñе фракции на виÑиÑната на филмот" + +#: plug-ins/common/film.c:1354 +msgid "Ad_vanced" +msgstr "_Ðапредно" + +# +#: plug-ins/common/film.c:1372 +msgid "Image _Height:" +msgstr "ВиÑина на Ñликата:" + +# +#: plug-ins/common/film.c:1383 +msgid "Image Spac_ing:" +msgstr "Раздел на Ñликата:" + +# +#: plug-ins/common/film.c:1401 +msgid "_Hole Offset:" +msgstr "ОфÑет на _јамата:" + +# +#: plug-ins/common/film.c:1412 +msgid "Ho_le Width:" +msgstr "_Ширина на јамата:" + +# +#: plug-ins/common/film.c:1423 +msgid "Hol_e Height:" +msgstr "_ВиÑина на јамата:" + +# +#: plug-ins/common/film.c:1434 +msgid "Hole Sp_acing:" +msgstr "_Раздел на јамата:" + +# +#: plug-ins/common/film.c:1452 +msgid "_Number Height:" +msgstr "_Број на виÑини:" + +# +#. don't translate '' entry, +#. * it is keyword for the gtk toolkit +#: plug-ins/common/flarefx.c:191 +msgid "/Filters/Light Effects/_FlareFX..." +msgstr "/Филтери/СветлоÑни ефекти/_ОдÑјај..." + +# +#: plug-ins/common/flarefx.c:263 +msgid "Render Flare..." +msgstr "Рендерирај Ñјај..." + +#: plug-ins/common/flarefx.c:300 +msgid "FlareFX" +msgstr "ОдÑјај" + +# +#. to avoid side effects while initialization +#: plug-ins/common/flarefx.c:726 +msgid "Center of FlareFX" +msgstr "Средина на ОдÑјајот" + +# +#. show / hide cursor +#: plug-ins/common/flarefx.c:808 +msgid "_Show Cursor" +msgstr "Прикажи курÑор" + +# +#: plug-ins/common/fractaltrace.c:130 +msgid "/Filters/Map/_Fractal Trace..." +msgstr "/Филтери/Мапа/Фрактално Ñледење..." + +# +#: plug-ins/common/fractaltrace.c:468 plug-ins/common/fractaltrace.c:740 +msgid "Fractal Trace" +msgstr "Фрактално Ñледење" + +# +#. Settings +#: plug-ins/common/fractaltrace.c:778 +msgid "Outside Type" +msgstr "Вид на излез" + +#: plug-ins/common/fractaltrace.c:783 +msgid "_Warp" +msgstr "Изо_бличување" + +# +#: plug-ins/common/fractaltrace.c:789 +msgid "_White" +msgstr "_Бело" + +# +#: plug-ins/common/fractaltrace.c:796 +msgid "Mandelbrot Parameters" +msgstr "Манделброт Параметри" + +#: plug-ins/common/fractaltrace.c:808 +msgid "X_1:" +msgstr "X_1:" + +#: plug-ins/common/fractaltrace.c:817 +msgid "X_2:" +msgstr "X_2:" + +#: plug-ins/common/fractaltrace.c:826 +msgid "Y_1:" +msgstr "Y_1:" + +#: plug-ins/common/fractaltrace.c:835 +msgid "Y_2:" +msgstr "Y_2:" + +# +#: plug-ins/common/gauss_iir.c:164 +msgid "/Filters/Blur/Gaussian Blur (_IIR)..." +msgstr "/Филтери/Заматување/ГауÑиан заматување (_IIR)..." + +#: plug-ins/common/gauss_iir.c:236 plug-ins/common/gauss_rle.c:229 +msgid "You must specify either horizontal or vertical (or both)" +msgstr "Морате да означите хоризонтално или вертикално (или и двете)" + +#: plug-ins/common/gauss_iir.c:285 plug-ins/common/gauss_iir.c:343 +#: plug-ins/common/gauss_iir.c:423 +msgid "IIR Gaussian Blur" +msgstr "IIR ГауÑиjан Замaтување" + +#: plug-ins/common/gauss_iir.c:318 plug-ins/common/gauss_rle.c:312 +#: plug-ins/common/sel_gauss.c:208 plug-ins/gflare/gflare.c:980 +#: plug-ins/sgi/sgi.c:518 plug-ins/xjt/xjt.c:1682 +msgid "Cannot operate on indexed color images." +msgstr "Ðе можам да работам Ñо индекÑирани Ñлики" + +# +#: plug-ins/common/gauss_iir.c:363 plug-ins/common/gauss_rle.c:357 +msgid "Blur Horizontally" +msgstr "Хоризонтално заматување" + +# +#: plug-ins/common/gauss_iir.c:372 plug-ins/common/gauss_rle.c:366 +msgid "Blur Vertically" +msgstr "Вертикално заматување" + +# +#: plug-ins/common/gauss_iir.c:384 plug-ins/common/gauss_rle.c:378 +msgid "Blur Radius:" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето:" + +# +#. parameter settings +#: plug-ins/common/gauss_iir.c:433 plug-ins/common/gauss_rle.c:427 +msgid "Blur Radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето" + +#: plug-ins/common/gauss_iir.c:447 plug-ins/common/gauss_rle.c:441 +#: plug-ins/common/jigsaw.c:2578 plug-ins/common/spread.c:356 +msgid "_Horizontal:" +msgstr "_Хоризонтално:" + +# +#: plug-ins/common/gauss_iir.c:451 plug-ins/common/gauss_rle.c:445 +#: plug-ins/common/jigsaw.c:2591 plug-ins/common/spread.c:360 +msgid "_Vertical:" +msgstr "_Вертикално:" + +# +#: plug-ins/common/gauss_rle.c:158 +msgid "/Filters/Blur/Gaussian Blur (_RLE)..." +msgstr "/Филтери/Заматување/ГауÑиан Заматување (_RLE)..." + +#: plug-ins/common/gauss_rle.c:279 plug-ins/common/gauss_rle.c:337 +#: plug-ins/common/gauss_rle.c:417 +msgid "RLE Gaussian Blur" +msgstr "RLE ГауÑиан Заматување" + +#: plug-ins/common/gbr.c:335 plug-ins/common/gbr.c:346 +msgid "Unsupported brush format" +msgstr "Ðе го подржувам тој формат на четка" + +#: plug-ins/common/gbr.c:356 +#, c-format +msgid "Error in GIMP brush file '%s'" +msgstr "Грешка во датотеката Ñо Гимп четките „%s“" + +# +#: plug-ins/common/gbr.c:364 plug-ins/common/gih.c:478 +#: plug-ins/common/gih.c:1117 plug-ins/gflare/gflare.c:2987 +msgid "Unnamed" +msgstr "Ðеименувано" + +#: plug-ins/common/gbr.c:533 +msgid "GIMP brushes are either GRAYSCALE or RGBA\n" +msgstr "Гимп четките Ñе или во нијанÑи на Ñива или RGBA\n" + +# +#: plug-ins/common/gbr.c:613 +msgid "Save as Brush" +msgstr "Зачувај како четка" + +# +#. attach labels +#: plug-ins/common/gbr.c:633 plug-ins/common/grid.c:798 +msgid "Spacing:" +msgstr "Раздел:" + +#: plug-ins/common/gbr.c:644 plug-ins/common/gih.c:869 +#: plug-ins/common/pat.c:468 plug-ins/gimpressionist/presets.c:386 +msgid "Description:" +msgstr "ОпиÑ:" + +# +#: plug-ins/common/gee.c:97 +msgid "/Filters/Toys/Gee-_Slime" +msgstr "/Филтери/Играчки/Gee-_Slime..." + +#: plug-ins/common/gee.c:166 +msgid "GEE-SLIME" +msgstr "GEE-SLIME" + +#: plug-ins/common/gee.c:172 plug-ins/common/gee_zoom.c:206 +msgid "** Thank you for choosing GIMP **" +msgstr "** Благодарам што го одбравте ГИМП **" + +#: plug-ins/common/gee.c:180 +msgid "" +"A less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " +"1998-2000" +msgstr "" +"Иако заÑтарено делото на Ðдам Д. ÐœÐ¾Ñ /adam@gimp.orh / adam@foxbox.org/ 1998- " +"2000" + +# +#: plug-ins/common/gee_zoom.c:135 +msgid "/Filters/Toys/Gee-_Zoom" +msgstr "/Филтери/Играчки/Gee-_Zoom" + +#: plug-ins/common/gee_zoom.c:198 +msgid "GEE-ZOOM: The Plug-In Formerly Known As \"The GIMP E'er Egg\"" +msgstr "GEE-ZOOM: Додаток порано познат како \"ГИМПОВО јајце\"" + +#: plug-ins/common/gee_zoom.c:214 +msgid "" +"An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / " +"1998-2000" +msgstr "" +"Иако заÑтарено делото на Ðдам Д. ÐœÐ¾Ñ /adam@gimp.orh / adam@foxbox.org/ 1998- " +"2000" + +# +#: plug-ins/common/gicon.c:426 +msgid "Save as GIcon" +msgstr "Зачувај како Г-Икона" + +# +#: plug-ins/common/gicon.c:446 +msgid "Icon Name:" +msgstr "Име на иконата:" + +# +#: plug-ins/common/gif.c:689 +msgid "Couldn't simply reduce colors further. Saving as opaque." +msgstr "Ðе можев едноÑтавно да ги редуцирам боите. Зачувувам како непроѕирно." + +#: plug-ins/common/gif.c:911 +msgid "" +"The GIF format only supports comments in 7bit ASCII encoding. No comment is " +"saved." +msgstr "" +"GIF форматот подржува Ñамо коментари во 7битно ASCII кодирање. Коментарот " +"не е зачуван." + +#: plug-ins/common/gif.c:972 +msgid "Cannot save RGB color images. Convert to indexed color or grayscale first." +msgstr "Ðе можам да зачувувам RGB Ñлики. Променете ги прво во индекÑирани или Ñиви Ñлики." + +#: plug-ins/common/gif.c:1114 +msgid "" +"Warning:\n" +"Transparent color in written file might be incorrect on viewers which don't " +"support transparency." +msgstr "" +"Предупредување:\n" +"Провидната боја во пишаната датотека може да биде неточна на читачите кои " +"не подржуваат провидноÑÑ‚." + +#: plug-ins/common/gif.c:1153 +msgid "Delay inserted to prevent evil CPU-sucking anim." +msgstr "КаÑнење на вметнатото за да Ñе Ñпречи злобното оптеретување на процеÑорот." + +# +#: plug-ins/common/gif.c:1196 +msgid "GIF Warning" +msgstr "GIF Предупредување" + +#: plug-ins/common/gif.c:1214 +msgid "" +"The image which you are trying to save as a GIF\n" +"contains layers which extend beyond the actual\n" +"borders of the image. This isn't allowed in GIFs,\n" +"I'm afraid.\n" +"\n" +"You may choose whether to crop all of the layers to\n" +"the image borders, or cancel this save." +msgstr "" +"Сликата која пробувате да ја зачувате како GIF\n" +"Ñодржи Ñлоеви кои Ñе прошируваат вон од границите на Ñликата.\n" +"Ова не е дозволено во GIF Ñликите,\n" +"За жал.\n" +"\n" +"Можете да изберете да ги иÑечете Ñите Ñлови кон границата на\n" +"Ñликата, или да го откажете ова зачувување." + +#: plug-ins/common/gif.c:1261 +msgid "Save as GIF" +msgstr "Зачувај како GIF" + +#. regular gif parameter settings +#: plug-ins/common/gif.c:1276 +msgid "GIF Options" +msgstr "GIF Опции" + +#: plug-ins/common/gif.c:1283 plug-ins/common/mng.c:1208 +msgid "Interlace" +msgstr "ИÑпреплетеноÑÑ‚" + +# +#: plug-ins/common/gif.c:1299 +msgid "GIF Comment:" +msgstr "GIF Коментар:" + +#. additional animated gif parameter settings +#: plug-ins/common/gif.c:1360 +msgid "Animated GIF Options" +msgstr "Опции на анимираниот GIF" + +#: plug-ins/common/gif.c:1367 +msgid "Loop forever" +msgstr "Повторувај беÑконечно" + +# +#: plug-ins/common/gif.c:1380 +msgid "Delay between Frames where Unspecified:" +msgstr "КаÑнењето помеѓу рамките не е означено:" + +# +#: plug-ins/common/gif.c:1393 +msgid "Milliseconds" +msgstr "МилиÑекунди" + +# +#: plug-ins/common/gif.c:1403 +msgid "Frame Disposal where Unspecified: " +msgstr "КаÑнењето помеѓу рамките не е означено:" + +# +#: plug-ins/common/gif.c:1411 +msgid "I don't Care" +msgstr "Многу ми е гајле" + +# +#: plug-ins/common/gif.c:1413 +msgid "Cumulative Layers (Combine)" +msgstr "Кумулативни Ñлоеви (комбинација)" + +# +#: plug-ins/common/gif.c:1415 +msgid "One Frame per Layer (Replace)" +msgstr "Еден оквир по Ñлој (премеÑти)" + +# +#: plug-ins/common/gif.c:2623 +msgid "Error writing output file." +msgstr "Грешка во запишувањето на излезната датотека." + +#: plug-ins/common/gif.c:2693 +#, c-format +msgid "The default comment is limited to %d characters." +msgstr "Стандардниот коментар е ограничен на %d букви." + +#: plug-ins/common/gifload.c:312 +msgid "This is not a GIF file" +msgstr "Ова не е GIF датотека." + +#: plug-ins/common/gifload.c:350 +msgid "Non-square pixels. Image might look squashed." +msgstr "Ðе-квадратни точки. Сликата може да изгледа ÑтеÑнето." + +#: plug-ins/common/gifload.c:858 +#, c-format +msgid "Background (%d%s)" +msgstr "Позадина (%d%s)" + +#: plug-ins/common/gifload.c:906 plug-ins/common/iwarp.c:783 +#: plug-ins/common/iwarp.c:815 +#, c-format +msgid "Frame %d" +msgstr "Кадар %d" + +#: plug-ins/common/gifload.c:908 +#, c-format +msgid "Frame %d (%d%s)" +msgstr "Кадар %d (%d%s)" + +#: plug-ins/common/gifload.c:938 +#, c-format +msgid "" +"GIF: Undocumented GIF composite type %d is not handled. Animation might not " +"play or re-save perfectly." +msgstr "" +"GIF: не работам Ñо недокументирани Ñложени GIF од типот %d. Можеби нема да можам " +"да ја пуштам анимацијата или повторно да ја зачувам." + +#: plug-ins/common/gih.c:302 +#, c-format +msgid "Layer %s doesn't have an alpha channel, skipped" +msgstr "Слојот %s нема алфа канал, преÑкокнат е" + +#: plug-ins/common/gih.c:471 +msgid "Error in GIMP brush pipe file." +msgstr "Грешка во датотеката за Гимп четка." + +#: plug-ins/common/gih.c:537 +msgid "GIMP brush file appears to be corrupted." +msgstr "Датотеката за Гимп четката изгледа дека е оштетена." + +#: plug-ins/common/gih.c:684 +msgid "Couldn't load one brush in the pipe, giving up." +msgstr "Ðе можам да ја вчитам четката, Ñе откажувам." + +# +#: plug-ins/common/gih.c:832 +msgid "Save as Brush Pipe" +msgstr "Зачувај како четка" + +#: plug-ins/common/gih.c:855 +msgid "Spacing (Percent):" +msgstr "Раздел (Процент):" + +# +#: plug-ins/common/gih.c:922 +msgid "Pixels" +msgstr "ПикÑели" + +# +#: plug-ins/common/gih.c:927 +msgid "Cell Size:" +msgstr "Големина на ќелијата:" + +# +#: plug-ins/common/gih.c:939 +msgid "Number of Cells:" +msgstr "Број на ќелии:" + +#: plug-ins/common/gih.c:964 +msgid " Rows of " +msgstr "Редови од" + +#: plug-ins/common/gih.c:976 +msgid " Columns on each Layer" +msgstr " Колони на Ñекој Ñлој" + +#: plug-ins/common/gih.c:980 +msgid " (Width Mismatch!) " +msgstr " (Грешка во ширината!) " + +#: plug-ins/common/gih.c:984 +msgid " (Height Mismatch!) " +msgstr " ( Грешка во виÑината!) " + +# +#: plug-ins/common/gih.c:989 +msgid "Display as:" +msgstr "Прикажи како:" + +# +#: plug-ins/common/gih.c:998 +msgid "Dimension:" +msgstr "Димензии:" + +# +#: plug-ins/common/gih.c:1036 +msgid "Ranks:" +msgstr "РанкÑ:" + +# +#: plug-ins/common/gih.c:1073 +msgid "Selection:" +msgstr "Избирање:" + +# +#: plug-ins/common/glasstile.c:115 +msgid "/Filters/Glass Effects/_Glass Tile..." +msgstr "/Филтери/Стаклени ефекти/_Делови од Ñтакло..." + +#: plug-ins/common/glasstile.c:191 +msgid "Glass Tile..." +msgstr "Делови од Ñтакло..." + +# +#: plug-ins/common/glasstile.c:230 +msgid "Glass Tile" +msgstr "Делови од Ñтакло" + +# +#: plug-ins/common/glasstile.c:264 +msgid "Tile _Width:" +msgstr "_Ширина на деловите:" + +# +#: plug-ins/common/glasstile.c:278 plug-ins/common/mosaic.c:622 +msgid "Tile _Height:" +msgstr "_ВиÑина на деловите:" + +# +#: plug-ins/common/gqbist.c:438 +msgid "/Filters/Render/Pattern/_Qbist..." +msgstr "/Филтери/Рендерирање/ИÑечок/_КубиÑÑ‚..." + +# +#: plug-ins/common/gqbist.c:535 +msgid "Qbist ..." +msgstr "КубиÑÑ‚..." + +#: plug-ins/common/gqbist.c:742 +msgid "Load QBE file..." +msgstr "Ја вчитувам QBE датотеката..." + +#: plug-ins/common/gqbist.c:767 +msgid "Save (middle transform) as QBE file..." +msgstr "Зачувај (Ñредна транÑформација) како QBE датотека..." + +#: plug-ins/common/gqbist.c:806 +msgid "G-Qbist" +msgstr "Г-КубиÑÑ‚" + +# +#: plug-ins/common/gradmap.c:121 +msgid "/Filters/Colors/Map/_Gradient Map" +msgstr "/Филтери/Бои/Мапа/Мапа на _преливот..." + +# +#: plug-ins/common/gradmap.c:156 +msgid "Gradient Map..." +msgstr "Мапа на преливот..." + +# +#: plug-ins/common/grid.c:152 +msgid "/Filters/Render/Pattern/_Grid..." +msgstr "/Филтери/Рендерирање/МуÑтра/_Мрежа..." + +#: plug-ins/common/grid.c:239 +msgid "Drawing Grid..." +msgstr "Цртам Мрежа..." + +#: plug-ins/common/grid.c:634 plug-ins/gfig/gfig.c:2639 +#: plug-ins/imagemap/imap_menu.c:382 plug-ins/imagemap/imap_popup.c:153 +#: plug-ins/imagemap/imap_toolbar.c:164 +msgid "Grid" +msgstr "Мрежа" + +#. attach labels +#: plug-ins/common/grid.c:732 plug-ins/pagecurl/pagecurl.c:573 +msgid "Horizontal" +msgstr "Хоризонтално" + +#: plug-ins/common/grid.c:734 plug-ins/pagecurl/pagecurl.c:574 +msgid "Vertical" +msgstr "Вертикално" + +#: plug-ins/common/grid.c:736 +msgid "Intersection" +msgstr "ПреÑек" + +#. Width and Height +#: plug-ins/common/grid.c:738 plug-ins/common/svg.c:695 +#: plug-ins/print/gimp_main_window.c:1008 +#: plug-ins/print/gimp_main_window.c:1224 +msgid "Width:" +msgstr "Ширина:" + +#: plug-ins/common/grid.c:901 +msgid "Horizontal Color" +msgstr "Хоризонтална боја" + +#: plug-ins/common/grid.c:920 +msgid "Vertical Color" +msgstr "Вертикална боја" + +#: plug-ins/common/grid.c:939 +msgid "Intersection Color" +msgstr "Боја на ПреÑекот" + +#: plug-ins/common/gtm.c:399 +msgid "GIMP Table Magic" +msgstr "ГИМП волшебна таблица" + +# +#: plug-ins/common/gtm.c:419 plug-ins/gfig/gfig.c:3096 +msgid "Warning" +msgstr "Предупредување" + +#: plug-ins/common/gtm.c:431 +msgid "" +"You are about to create a huge\n" +"HTML file which will most likely\n" +"crash your browser." +msgstr "" +"Ќе направете огромна HTML\n" +"датотека која Ñигурно ќе го Ñруши\n" +"вашиот интернет прелиÑтувач." + +# +#. HTML Page Options +#: plug-ins/common/gtm.c:440 +msgid "HTML Page Options" +msgstr "Опции на HTML Ñтраница" + +#: plug-ins/common/gtm.c:448 +msgid "_Generate Full HTML Document" +msgstr "_Генерирај потполен HTML документ." + +#: plug-ins/common/gtm.c:454 +msgid "" +"If checked GTM will output a full HTML document with , , etc. " +"tags instead of just the table html." +msgstr "" +"Ðко Ñте го означиле GTM иÑтиот ќе даде потполен HTML документ Ñо ,, итн. " +"тагови намеÑто обични html табели." + +# +#. HTML Table Creation Options +#: plug-ins/common/gtm.c:467 +msgid "Table Creation Options" +msgstr "Опции за правење табели" + +#: plug-ins/common/gtm.c:476 +msgid "_Use Cellspan" +msgstr "_КориÑти Cellspan" + +#: plug-ins/common/gtm.c:482 +msgid "" +"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 вредноÑти." + +#: plug-ins/common/gtm.c:491 +msgid "Co_mpress TD tags" +msgstr "Ко_мпреÑирај ги TD таговите" + +#: plug-ins/common/gtm.c:497 +msgid "" +"Checking this tag will cause GTM to leave no whitespace between the TD tags " +"and the cellcontent. This is only necessary for pixel level positioning " +"control." +msgstr "" +"Со избирање на овој таг, GTM нема да оÑтава раздел помеѓу TD таговите и Ñодржината " +"на ќелиите. Ова е неопходно Ñамо за контрола на позицијата на пикÑелите." + +# +#: plug-ins/common/gtm.c:507 +msgid "C_aption" +msgstr "Фа_ќање" + +#: plug-ins/common/gtm.c:513 +msgid "Check if you would like to have the table captioned." +msgstr "Означи ако Ñакаш да биде фатена табелата." + +#: plug-ins/common/gtm.c:528 +msgid "The text for the table caption." +msgstr "ТекÑÑ‚ од фатената табела." + +# +#: plug-ins/common/gtm.c:541 +msgid "C_ell Content:" +msgstr "Со_држина на ќелијата:" + +#: plug-ins/common/gtm.c:545 +msgid "The text to go into each cell." +msgstr "ТекÑÑ‚ кој оди во Ñекоја ќелија." + +# +#. HTML Table Options +#: plug-ins/common/gtm.c:555 +msgid "Table Options" +msgstr "Опции на Табелата" + +# +#: plug-ins/common/gtm.c:567 +msgid "_Border:" +msgstr "_Граница:" + +#: plug-ins/common/gtm.c:571 +msgid "The number of pixels in the table border." +msgstr "Број на пикÑели во рамките на табелата." + +#: plug-ins/common/gtm.c:586 +msgid "The width for each table cell. Can be a number or a percent." +msgstr "Ширина за Ñекоја ќелија на табелата. Може да биде број или процент." + +#: plug-ins/common/gtm.c:602 +msgid "The height for each table cell. Can be a number or a percent." +msgstr "ВиÑина за Ñекоја ќелија на табелата. Може да биде број или процент." + +#: plug-ins/common/gtm.c:613 +msgid "Cell-_Padding:" +msgstr "Пополнување на ќелии:" + +#: plug-ins/common/gtm.c:617 +msgid "The amount of cellpadding." +msgstr "ВредноÑÑ‚ на пополнувањето." + +# +#: plug-ins/common/gtm.c:626 +msgid "Cell-_Spacing:" +msgstr "Раздел на ќелиите:" + +#: plug-ins/common/gtm.c:630 +msgid "The amount of cellspacing." +msgstr "ВредноÑÑ‚ на разделот на ќелите" + +# +#: plug-ins/common/guillotine.c:79 +msgid "/Image/Transform/_Guillotine" +msgstr "/Слика/ТранÑформирај/Ги_љотина" + +#: plug-ins/common/guillotine.c:110 +msgid "Guillotine..." +msgstr "Гиљотина..." + +# +#: plug-ins/common/hot.c:217 +msgid "/Filters/Colors/_Hot..." +msgstr "/Филтери/Бои/_Жешко..." + +#: plug-ins/common/hot.c:377 +msgid "Hot..." +msgstr "Жешко..." + +#: plug-ins/common/hot.c:568 +msgid "Hot" +msgstr "Жешко" + +# +#: plug-ins/common/hot.c:586 +msgid "Create _New Layer" +msgstr "Ðаправи нов Ñлој" + +# +#: plug-ins/common/hot.c:607 +msgid "Action" +msgstr "Ðкција" + +#: plug-ins/common/hot.c:611 +msgid "Reduce _Luminance" +msgstr "Ðамали _оÑветлување" + +# +#: plug-ins/common/hot.c:612 +msgid "Reduce _Saturation" +msgstr "Ðамали _заÑитеноÑÑ‚" + +# +#: plug-ins/common/hot.c:613 plug-ins/common/waves.c:322 +msgid "_Blacken" +msgstr "За_црнето" + +#: plug-ins/common/hrz.c:348 +#, c-format +msgid "'%s' is not a HRZ file" +msgstr "„%s“: не е HRZ датотека" + +#: plug-ins/common/hrz.c:460 +msgid "Image must be 256x240" +msgstr "Сликата мора да биде 256Ñ…240" + +#: plug-ins/common/hrz.c:465 +msgid "Image must be RGB or GRAY" +msgstr "Сликата мора да биде RGB или Ñива" + +# +#: plug-ins/common/illusion.c:104 +msgid "/Filters/Map/_Illusion..." +msgstr "/Филтери/Мапа/И_лузија..." + +# +#: plug-ins/common/illusion.c:175 +msgid "Illusion..." +msgstr "Илузија..." + +#: plug-ins/common/illusion.c:394 +msgid "Illusion" +msgstr "Илузија" + +# +#: plug-ins/common/illusion.c:428 +msgid "_Division:" +msgstr "_Делење:" + +# +#: plug-ins/common/illusion.c:438 +msgid "Mode _1" +msgstr "Режим _1" + +# +#: plug-ins/common/illusion.c:453 +msgid "Mode _2" +msgstr "Режим _2" + +# +#: plug-ins/common/iwarp.c:260 +msgid "/Filters/Distorts/_IWarp..." +msgstr "/Филтери/Озобличувања/_Изобличување" + +# +#: plug-ins/common/iwarp.c:688 +msgid "Warping..." +msgstr "Изобличување..." + +#: plug-ins/common/iwarp.c:790 plug-ins/common/iwarp.c:803 +#, c-format +msgid "Warping Frame No. %d..." +msgstr "Ја изобличувам рамката бр. %d ..." + +# +#: plug-ins/common/iwarp.c:804 +msgid "Ping Pong" +msgstr "Пинг Понг" + +#: plug-ins/common/iwarp.c:984 +msgid "A_nimate" +msgstr "_Ðнимирај" + +# +#: plug-ins/common/iwarp.c:1004 +msgid "Number of _Frames:" +msgstr "Број на рамки:" + +# +#: plug-ins/common/iwarp.c:1013 +msgid "R_everse" +msgstr "О_братно" + +# +#: plug-ins/common/iwarp.c:1022 +msgid "_Ping Pong" +msgstr "_Пинг Понг" + +#: plug-ins/common/iwarp.c:1035 +msgid "_Animate" +msgstr "_Ðнимирај" + +# +#: plug-ins/common/iwarp.c:1063 +msgid "_Deform Radius:" +msgstr "_Деформирај радиуÑ:" + +# +#: plug-ins/common/iwarp.c:1073 +msgid "D_eform Amount:" +msgstr "ВредноÑÑ‚ на де_формацијата:" + +# +#: plug-ins/common/iwarp.c:1082 +msgid "Deform Mode" +msgstr "Режим на деформацијата" + +#: plug-ins/common/iwarp.c:1096 +msgid "_Move" +msgstr "_ПомеÑти" + +# +#: plug-ins/common/iwarp.c:1097 +msgid "_Grow" +msgstr "_Зголеми" + +#: plug-ins/common/iwarp.c:1098 +msgid "S_wirl CCW" +msgstr "_Вртлог CCW" + +#: plug-ins/common/iwarp.c:1099 +msgid "Remo_ve" +msgstr "О_Ñ‚Ñтрани" + +# +#: plug-ins/common/iwarp.c:1100 +msgid "S_hrink" +msgstr "_Ðамали" + +#: plug-ins/common/iwarp.c:1101 +msgid "Sw_irl CW" +msgstr "Ð’_ртлог CW" + +# +#: plug-ins/common/iwarp.c:1123 +msgid "_Bilinear" +msgstr "_Би-линеарно" + +#: plug-ins/common/iwarp.c:1137 +msgid "Adaptive S_upersample" +msgstr "Прилагодливо Супер-Ñемплирање" + +# +#: plug-ins/common/iwarp.c:1158 +msgid "Ma_x Depth:" +msgstr "Ма_кÑ. Длабочина:" + +#: plug-ins/common/iwarp.c:1168 +msgid "Thresho_ld:" +msgstr "Пра_г:" + +#: plug-ins/common/iwarp.c:1181 plug-ins/common/sinus.c:764 +#: plug-ins/gflare/gflare.c:2796 +msgid "_Settings" +msgstr "_ПодеÑувања" + +# +#: plug-ins/common/iwarp.c:1198 +msgid "IWarp" +msgstr "I Изобличување" + +# +#: plug-ins/common/jigsaw.c:408 +msgid "/Filters/Render/Pattern/_Jigsaw..." +msgstr "/Филтери/Рендерирање/ИÑечок/_Jigsaw..." + +#: plug-ins/common/jigsaw.c:462 +msgid "Assembling Jigsaw..." +msgstr "СоÑтавувам _Jigsaw..." + +#: plug-ins/common/jigsaw.c:2543 +msgid "Jigsaw" +msgstr "Jigsaw" + +# +#: plug-ins/common/jigsaw.c:2567 +msgid "Number of Tiles" +msgstr "Број на делчиња" + +# +#: plug-ins/common/jigsaw.c:2581 +msgid "Number of pieces going across" +msgstr "Број на парчиња кои одат попреку" + +# +#: plug-ins/common/jigsaw.c:2594 +msgid "Number of pieces going down" +msgstr "Број на парчиња кои одат надолу" + +#: plug-ins/common/jigsaw.c:2605 +msgid "Bevel Edges" +msgstr "ЗакоÑени ивици" + +# +#: plug-ins/common/jigsaw.c:2616 +msgid "_Bevel Width:" +msgstr "Ширина на нагибот:" + +#: plug-ins/common/jigsaw.c:2620 +msgid "Degree of slope of each piece's edge" +msgstr "Степен на нагибот на ивиците на Ñекое парче" + +# +#: plug-ins/common/jigsaw.c:2630 +msgid "H_ighlight:" +msgstr "ОÑветлување:" + +#: plug-ins/common/jigsaw.c:2634 +msgid "The amount of highlighting on the edges of each piece" +msgstr "Количина на оÑветлување на ивиците од Ñекое парче" + +#: plug-ins/common/jigsaw.c:2651 +msgid "Jigsaw Style" +msgstr "_Jigsaw Ñтил" + +# +#: plug-ins/common/jigsaw.c:2655 +msgid "_Square" +msgstr "Квадрати" + +# +#: plug-ins/common/jigsaw.c:2656 +msgid "C_urved" +msgstr "Закривено" + +#: plug-ins/common/jigsaw.c:2660 +msgid "Each piece has straight sides" +msgstr "Секој дел има рамни Ñтрани" + +#: plug-ins/common/jigsaw.c:2661 +msgid "Each piece has curved sides" +msgstr "Секој дел има закоÑени Ñтрани" + +# +#: plug-ins/common/jpeg.c:421 +msgid "Export Preview" +msgstr "Извези Преглед" + +# +#: plug-ins/common/jpeg.c:918 +msgid "JPEG preview" +msgstr "JPEG преглед" + +#: plug-ins/common/jpeg.c:1171 +#, c-format +msgid "Size: %ld bytes (%02.01f kB)" +msgstr "Големина: %ld бајти (%02.01f kB)" + +#: plug-ins/common/jpeg.c:1605 plug-ins/common/jpeg.c:1707 +msgid "Size: unknown" +msgstr "Големина: непозната" + +# +#: plug-ins/common/jpeg.c:1670 +msgid "Save as JPEG" +msgstr "Зачувај како JPEG" + +# +#. sg - preview +#: plug-ins/common/jpeg.c:1686 plug-ins/print/gimp_color_window.c:253 +msgid "Image Preview" +msgstr "Преглед на Ñликите" + +#: plug-ins/common/jpeg.c:1694 +msgid "Preview (in image window, will modify image's undo history!)" +msgstr "Преглед (во прозорецот за Ñлики, ќе Ñе менува иÑторијата за поништување на Ñликите!)" + +# +#: plug-ins/common/jpeg.c:1727 plug-ins/xjt/xjt.c:888 +msgid "Quality:" +msgstr "Квалитет:" + +# +#: plug-ins/common/jpeg.c:1750 plug-ins/xjt/xjt.c:897 +msgid "Smoothing:" +msgstr "Омекнување:" + +# +#: plug-ins/common/jpeg.c:1778 +msgid "Restart markers" +msgstr "РеÑтартирај ги маркерите" + +# +#: plug-ins/common/jpeg.c:1787 +msgid "Restart frequency (rows):" +msgstr "РеÑтартирај ја фреквенцијата (редови)" + +#: plug-ins/common/jpeg.c:1816 plug-ins/xjt/xjt.c:866 +msgid "Optimize" +msgstr "Оптимизирај" + +#: plug-ins/common/jpeg.c:1830 +msgid "Progressive" +msgstr "ПрогреÑивно" + +# +#: plug-ins/common/jpeg.c:1849 +msgid "Force baseline JPEG (Readable by all decoders)" +msgstr "ЗаÑили ја JPEG базната линија (читливо од Ñтрана на Ñите декодери)" + +#: plug-ins/common/jpeg.c:1865 +msgid "Save EXIF data" +msgstr "Зачувај EXIF податоци" + +# +#: plug-ins/common/jpeg.c:1891 +msgid "Subsampling:" +msgstr "СубÑемплирање:" + +# +#: plug-ins/common/jpeg.c:1901 +msgid "Fast Integer" +msgstr "Брз број" + +# +#: plug-ins/common/jpeg.c:1902 +msgid "Integer" +msgstr "Број" + +#: plug-ins/common/jpeg.c:1903 +msgid "Floating-Point" +msgstr "Подвижна запирка" + +#: plug-ins/common/jpeg.c:1908 +msgid "DCT method (Speed/quality tradeoff):" +msgstr "DCT метод (Брзина/Квалитет)" + +# +#: plug-ins/common/jpeg.c:1916 +msgid "Image comments" +msgstr "Коментар на Ñликата" + +# +#: plug-ins/common/laplace.c:95 +msgid "/Filters/Edge-Detect/_Laplace" +msgstr "/Филтери/ИÑтакни Ивици/_Laplace" + +#: plug-ins/common/laplace.c:225 +msgid "Laplace..." +msgstr "Laplace..." + +#: plug-ins/common/laplace.c:302 +msgid "Cleanup..." +msgstr "ЧиÑтење..." + +#: plug-ins/common/lic.c:626 +msgid "Van Gogh (LIC)..." +msgstr "Ван Гог (LIC)..." + +#: plug-ins/common/lic.c:705 +msgid "Van Gogh (LIC)" +msgstr "Ван Гог (LIC)" + +# +#: plug-ins/common/lic.c:725 +msgid "Effect Channel" +msgstr "Канал за Ефекти" + +#: plug-ins/common/lic.c:731 plug-ins/fp/fp_gtk.c:295 +msgid "_Saturation" +msgstr "ЗаÑитување" + +# +#: plug-ins/common/lic.c:732 +msgid "_Brightness" +msgstr "ОÑветлување" + +# +#: plug-ins/common/lic.c:738 +msgid "Effect Operator" +msgstr "Оператор на Ефекти" + +#: plug-ins/common/lic.c:743 +msgid "_Derivative" +msgstr "Деривација" + +#: plug-ins/common/lic.c:750 +msgid "Convolve" +msgstr "Свивање" + +# +#: plug-ins/common/lic.c:755 +msgid "_With White Noise" +msgstr "_Со бел шум" + +# +#: plug-ins/common/lic.c:756 +msgid "W_ith Source Image" +msgstr "Со изворна Ñлика" + +# +#: plug-ins/common/lic.c:784 +msgid "_Effect Image:" +msgstr "Ефект на Слика:" + +# +#: plug-ins/common/lic.c:800 +msgid "_Filter Length:" +msgstr "Должина на филтерот:" + +# +#: plug-ins/common/lic.c:809 +msgid "_Noise Magnitude:" +msgstr "Интензитет на шумот:" + +# +#: plug-ins/common/lic.c:818 +msgid "In_tegration Steps:" +msgstr "Чекори на Интеграција:" + +# +#: plug-ins/common/lic.c:827 +msgid "_Minimum Value:" +msgstr "Минимална вредноÑÑ‚:" + +# +#: plug-ins/common/lic.c:836 +msgid "M_aximum Value:" +msgstr "МакÑимална вредноÑÑ‚:" + +# +#: plug-ins/common/lic.c:887 +msgid "/Filters/Map/_Van Gogh (LIC)..." +msgstr "/Филтери/Мапирај/Ван Гог (LIC)..." + +# +#: plug-ins/common/mail.c:218 +msgid "/File/_Mail Image..." +msgstr "/Датотека/ИÑпрати Ñлика..." + +# +#: plug-ins/common/mail.c:461 +msgid "Send to Mail" +msgstr "ИÑпрати на пошта" + +# +#: plug-ins/common/mail.c:485 +msgid "_Recipient:" +msgstr "Прима:" + +# +#: plug-ins/common/mail.c:497 +msgid "_Sender:" +msgstr "ИÑпраќа:" + +# +#: plug-ins/common/mail.c:509 +msgid "S_ubject:" +msgstr "Тема:" + +# +#: plug-ins/common/mail.c:521 +msgid "Comm_ent:" +msgstr "Коментар:" + +#: plug-ins/common/mail.c:533 +msgid "_Filename:" +msgstr "Име на Датотеката:" + +#. Encapsulation label +#: plug-ins/common/mail.c:567 +msgid "Encapsulation:" +msgstr "ЕнкапÑулација:" + +#: plug-ins/common/mail.c:579 +msgid "_Uuencode" +msgstr "_Uuencode" + +#: plug-ins/common/mail.c:580 +msgid "_MIME" +msgstr "_MIME" + +#: plug-ins/common/mail.c:680 +msgid "some sort of error with the file extension or lack thereof" +msgstr "некаква грешка Ñо екÑтензијата или недоÑтаток на иÑтата" + +# +#: plug-ins/common/mapcolor.c:144 +msgid "First Source Color" +msgstr "Прва Изворна Боја" + +# +#: plug-ins/common/mapcolor.c:145 +msgid "Second Source Color" +msgstr "Втора Изворна Боја" + +# +#: plug-ins/common/mapcolor.c:146 +msgid "First Destination Color" +msgstr "Прв Одредишен Канал" + +# +#: plug-ins/common/mapcolor.c:147 +msgid "Second Destination Color" +msgstr "Втор Одредишен Канал" + +# +#: plug-ins/common/mapcolor.c:335 +msgid "/Filters/Colors/Map/Adjust _FG-BG" +msgstr "/Филтери/Бои/Мапа/ПодеÑи _FG-BG" + +# +#: plug-ins/common/mapcolor.c:350 +msgid "/Filters/Colors/Map/Color Range _Mapping..." +msgstr "/Филтери/Бои/Мапа/Мапирање на раÑпонот на бојата..." + +#: plug-ins/common/mapcolor.c:397 plug-ins/common/mapcolor.c:712 +msgid "Cannot operate on gray or indexed color images." +msgstr "Ðе можам да работам Ñо Ñиви или индекÑирани Ñлики." + +#: plug-ins/common/mapcolor.c:418 +msgid "Adjusting Foreground/Background..." +msgstr "ПодеÑување на предниот план/позадината..." + +# +#: plug-ins/common/mapcolor.c:460 +msgid "Mapping colors..." +msgstr "Ги мапирам боите..." + +# +#: plug-ins/common/mapcolor.c:535 +msgid "Map Color Range" +msgstr "ОпÑег на мапата за боја" + +# +#: plug-ins/common/mapcolor.c:579 +msgid "Source color range" +msgstr "ОпÑег на изворната боја" + +# +#: plug-ins/common/mapcolor.c:580 +msgid "Destination color range" +msgstr "Одредишен опÑег на бојата" + +# +#: plug-ins/common/mapcolor.c:629 plug-ins/gfli/gfli.c:843 +#: plug-ins/gfli/gfli.c:906 +msgid "To:" +msgstr "До:" + +# +#: plug-ins/common/max_rgb.c:110 +msgid "/Filters/Colors/_Max RGB..." +msgstr "/Филтери/Бои/МакÑ. RGB..." + +# +#: plug-ins/common/max_rgb.c:146 +msgid "Can only operate on RGB drawables." +msgstr "Можам да работам Ñамо на RGB цртежи." + +# +#: plug-ins/common/max_rgb.c:225 +msgid "Max RGB..." +msgstr "МакÑ. RGB..." + +# +#: plug-ins/common/max_rgb.c:249 +msgid "Max RGB" +msgstr "МакÑ. RGB" + +# +#: plug-ins/common/max_rgb.c:273 +msgid "_Hold the Maximal Channels" +msgstr "Задржи ги макÑималните канали" + +# +#: plug-ins/common/max_rgb.c:276 +msgid "Ho_ld the Minimal Channels" +msgstr "Задржи ги минималните канали" + +# +#: plug-ins/common/mblur.c:149 +msgid "/Filters/Blur/_Motion Blur..." +msgstr "/Филтери/Замати/Движечко заматување..." + +#: plug-ins/common/mblur.c:666 +msgid "Motion Blurring..." +msgstr "Заматување Ñо дивижење..." + +#: plug-ins/common/mblur.c:736 +msgid "Motion Blur" +msgstr "Движечко заматување" + +# +#: plug-ins/common/mblur.c:750 +msgid "Blur Type" +msgstr "Тип на заматување" + +#: plug-ins/common/mblur.c:754 +msgid "_Linear" +msgstr "Линеарно" + +#: plug-ins/common/mblur.c:755 +msgid "_Radial" +msgstr "Радиално" + +# +#: plug-ins/common/mblur.c:756 +msgid "_Zoom" +msgstr "Зголемување" + +# +#: plug-ins/common/mblur.c:763 +msgid "Blur Parameters" +msgstr "Параметри на заматување" + +#: plug-ins/common/mblur.c:784 plug-ins/common/newsprint.c:1009 +msgid "_Angle:" +msgstr "Ðгол:" + +# +#: plug-ins/common/mng.c:1188 +msgid "Save as MNG" +msgstr "Зачувај како MNG" + +#: plug-ins/common/mng.c:1201 +msgid "MNG Options" +msgstr "MNG Опции" + +# +#: plug-ins/common/mng.c:1220 +msgid "Save Background Color" +msgstr "Зачувај ја позадинÑката боја" + +# +#: plug-ins/common/mng.c:1231 +msgid "Save Gamma" +msgstr "Зачувај ја гамата" + +# +#: plug-ins/common/mng.c:1241 +msgid "Save Resolution" +msgstr "Зачувај ја резолуцијата" + +# +#: plug-ins/common/mng.c:1252 +msgid "Save Creation Time" +msgstr "Зачувај го времете на Ñоздавање" + +#: plug-ins/common/mng.c:1277 +msgid "PNG" +msgstr "PNG" + +#: plug-ins/common/mng.c:1278 +msgid "JNG" +msgstr "JNG" + +#: plug-ins/common/mng.c:1287 +msgid "PNG + Delta PNG" +msgstr "PNG + Delta PNG" + +#: plug-ins/common/mng.c:1288 +msgid "JNG + Delta PNG" +msgstr "JNG + Delta PNG" + +#: plug-ins/common/mng.c:1289 +msgid "All PNG" +msgstr "Сите PNG" + +#: plug-ins/common/mng.c:1290 +msgid "All JNG" +msgstr "Сите JNG" + +# +#: plug-ins/common/mng.c:1296 +msgid "Default Chunks Type:" +msgstr "Дела од Ñтандарден тип:" + +#: plug-ins/common/mng.c:1304 +msgid "Combine" +msgstr "Комбинирај" + +#: plug-ins/common/mng.c:1305 plug-ins/gfig/gfig.c:2398 +msgid "Replace" +msgstr "Замени" + +#: plug-ins/common/mng.c:1310 +msgid "Default Frame Disposal:" +msgstr "Стандардно бришење на Ñлика:" + +# +#: plug-ins/common/mng.c:1322 +msgid "PNG Compression Level:" +msgstr "Степен на PNG компреÑија:" + +#: plug-ins/common/mng.c:1330 plug-ins/common/png.c:1661 +msgid "Choose a high compression level for small file size" +msgstr "Изберете виÑок Ñтепен на компреÑија за помали датотеки" + +#: plug-ins/common/mng.c:1344 +msgid "JPEG Compression Quality:" +msgstr "Квалитет на JPEG компреÑија:" + +# +#: plug-ins/common/mng.c:1361 +msgid "JPEG Smoothing Factor:" +msgstr "Фактор на JPEG измазнување:" + +#: plug-ins/common/mng.c:1371 +msgid "Animated MNG Options" +msgstr "Опции за анимиран MNG" + +#: plug-ins/common/mng.c:1378 +msgid "Loop" +msgstr "Повторувај" + +# +#: plug-ins/common/mng.c:1392 +msgid "Default Frame Delay:" +msgstr "Стандардно каÑнење на Ñликата:" + +# +#: plug-ins/common/mng.c:1408 +msgid "milliseconds" +msgstr "МилиÑекунди" + +# +#: plug-ins/common/mosaic.c:310 +msgid "/Filters/Distorts/_Mosaic..." +msgstr "/Филтери/Озобличувања/Мозаик..." + +#. progress bar for gradient finding +#: plug-ins/common/mosaic.c:433 +msgid "Finding Edges..." +msgstr "Ги барам краевите.." + +#. Progress bar for rendering tiles +#: plug-ins/common/mosaic.c:482 +msgid "Rendering Tiles..." +msgstr "Ги редндирам делчињата..." + +#: plug-ins/common/mosaic.c:508 +msgid "Mosaic" +msgstr "Мозаик" + +#: plug-ins/common/mosaic.c:544 +msgid "Co_lor Averaging" +msgstr "ПроÑечна Боја" + +#: plug-ins/common/mosaic.c:554 +msgid "Allo_w Tile splitting" +msgstr "Дозволи делење на деловите" + +#: plug-ins/common/mosaic.c:564 +msgid "_Pitted Surfaces" +msgstr "Вдлабнати површини" + +#: plug-ins/common/mosaic.c:574 +msgid "_FG/BG Lighting" +msgstr "_FG/BG оÑветлување" + +#. tiling primitive +#: plug-ins/common/mosaic.c:588 +msgid "Tiling Primitives" +msgstr "Првобитни Делчиња" + +#: plug-ins/common/mosaic.c:592 +msgid "_Squares" +msgstr "Квадрати" + +#: plug-ins/common/mosaic.c:593 +msgid "He_xagons" +msgstr "ШеÑтоаголници" + +#: plug-ins/common/mosaic.c:594 +msgid "Oc_tagons & Squares" +msgstr "ОÑмумаголници И Квадрати" + +# +#: plug-ins/common/mosaic.c:613 +msgid "T_ile Size:" +msgstr "Големина на делот:" + +#: plug-ins/common/mosaic.c:631 +msgid "Til_e Spacing:" +msgstr "Раздел на делот:" + +#: plug-ins/common/mosaic.c:640 +msgid "Tile _Neatness:" +msgstr "УредноÑÑ‚ на делот:" + +#: plug-ins/common/mosaic.c:650 +msgid "Light _Direction:" +msgstr "ÐаÑока на Ñветлото:" + +#: plug-ins/common/mosaic.c:659 +msgid "Color _Variation:" +msgstr "Варијација на бојата:" + +#: plug-ins/common/mosaic.c:2385 +msgid "Unable to add additional point.\n" +msgstr "Ðе можам да додадам додатна точка.\n" + +#: plug-ins/common/newsprint.c:140 +msgid "Round" +msgstr "Кружно" + +# +#: plug-ins/common/newsprint.c:149 +msgid "Line" +msgstr "Линија" + +#: plug-ins/common/newsprint.c:158 +msgid "Diamond" +msgstr "Дијамант" + +#: plug-ins/common/newsprint.c:166 +msgid "PS Square (Euclidean Dot)" +msgstr "ПС Квадрат (Еуклидова точка)" + +#: plug-ins/common/newsprint.c:175 +msgid "PS Diamond" +msgstr "ПС Дијамант" + +#: plug-ins/common/newsprint.c:346 +msgid "_Grey" +msgstr "Сива" + +#: plug-ins/common/newsprint.c:359 +msgid "R_ed" +msgstr "Црвена" + +#: plug-ins/common/newsprint.c:388 +msgid "C_yan" +msgstr "Цијан" + +#: plug-ins/common/newsprint.c:396 +msgid "Magen_ta" +msgstr "Магента" + +#: plug-ins/common/newsprint.c:404 +msgid "_Yellow" +msgstr "Жолта" + +# +#: plug-ins/common/newsprint.c:425 +msgid "Intensity" +msgstr "Интензитет" + +# +#: plug-ins/common/newsprint.c:539 +msgid "/Filters/Distorts/Newsprin_t..." +msgstr "/Филтери/Изобличувања/ÐовинарÑки текÑÑ‚..." + +#: plug-ins/common/newsprint.c:638 +msgid "Newsprint..." +msgstr "ÐовинарÑки текÑÑ‚..." + +# +#: plug-ins/common/newsprint.c:1033 +msgid "_Spot Function:" +msgstr "Функција на точки:" + +#: plug-ins/common/newsprint.c:1193 +msgid "Newsprint" +msgstr "ÐовинарÑки текÑÑ‚" + +# +#. resolution settings +#: plug-ins/common/newsprint.c:1209 +msgid "Resolution" +msgstr "Резолуција" + +#: plug-ins/common/newsprint.c:1227 +msgid "_Input SPI:" +msgstr "Влезен SPI:" + +# +#: plug-ins/common/newsprint.c:1238 +msgid "O_utput LPI:" +msgstr "Излезен LPI:" + +# +#: plug-ins/common/newsprint.c:1248 +msgid "C_ell Size:" +msgstr "Големина на ќелиите:" + +#. screen settings +#: plug-ins/common/newsprint.c:1261 plug-ins/gflare/gflare.c:564 +msgid "Screen" +msgstr "Слика" + +#: plug-ins/common/newsprint.c:1283 +msgid "B_lack Pullout (%):" +msgstr "Зацрнување на излезот (%):" + +# +#: plug-ins/common/newsprint.c:1306 +msgid "Separate to:" +msgstr "Раздели во:" + +#: plug-ins/common/newsprint.c:1310 +msgid "_RGB" +msgstr "_RGB" + +#: plug-ins/common/newsprint.c:1323 +msgid "C_MYK" +msgstr "C_MYK" + +# +#: plug-ins/common/newsprint.c:1336 +msgid "I_ntensity" +msgstr "Интензитет" + +# +#: plug-ins/common/newsprint.c:1357 +msgid "_Lock Channels" +msgstr "Заклучи ги каналите" + +# +#: plug-ins/common/newsprint.c:1367 +msgid "_Factory Defaults" +msgstr "Стандардно" + +#. anti-alias control +#: plug-ins/common/newsprint.c:1390 plug-ins/gfig/gfig.c:2407 +msgid "Antialiasing" +msgstr "Омекнување" + +# +#: plug-ins/common/newsprint.c:1399 +msgid "O_versample:" +msgstr "Преклопување:" + +# +#: plug-ins/common/nlfilt.c:128 +msgid "/Filters/Enhance/_NL Filter..." +msgstr "/Филтери/Подобри/_NL Филтер..." + +# +#: plug-ins/common/nlfilt.c:246 +msgid "NL Filter..." +msgstr "NL Филтер..." + +# +#: plug-ins/common/nlfilt.c:322 +msgid "NL Filter" +msgstr "NL Филтер" + +# +#: plug-ins/common/nlfilt.c:345 +msgid "Filter" +msgstr "Филтер" + +# +#: plug-ins/common/nlfilt.c:349 +msgid "_Alpha Trimmed Mean" +msgstr "Главени Ðлфа Трим" + +# +#: plug-ins/common/nlfilt.c:351 +msgid "Op_timal Estimation" +msgstr "Оптимална проценка" + +#: plug-ins/common/nlfilt.c:353 +msgid "_Edge Enhancement" +msgstr "Појачување на ивиците" + +#: plug-ins/common/nlfilt.c:373 +msgid "A_lpha:" +msgstr "Ðлфа:" + +# +#: plug-ins/common/nlfilt.c:468 plug-ins/common/waves.c:458 +msgid "_Do Preview" +msgstr "Прегледај" + +# +#: plug-ins/common/noisify.c:129 +msgid "/Filters/Noise/_Noisify..." +msgstr "/Филтери/Пречки/Шум..." + +# +#: plug-ins/common/noisify.c:203 +msgid "Adding Noise..." +msgstr "Додавам шум..." + +# +#: plug-ins/common/noisify.c:309 +msgid "Noisify" +msgstr "Шум" + +#: plug-ins/common/noisify.c:344 +msgid "_Independent" +msgstr "ÐезавиÑно" + +# +#: plug-ins/common/noisify.c:357 plug-ins/common/noisify.c:361 +msgid "_Gray:" +msgstr "Сива:" + +#: plug-ins/common/noisify.c:362 plug-ins/common/noisify.c:376 +msgid "_Alpha:" +msgstr "Ðлфа:" + +#: plug-ins/common/noisify.c:385 +#, c-format +msgid "Channel #%d:" +msgstr "Канал #%d:" + +# +#: plug-ins/common/normalize.c:90 +msgid "/Layer/Colors/Auto/_Normalize" +msgstr "/Слика/Бои/Ðвто/Ðормализација" + +#: plug-ins/common/normalize.c:122 +msgid "Normalizing..." +msgstr "Ðормализирам..." + +# +#. don't translate '' +#: plug-ins/common/nova.c:196 +msgid "/Filters/Light Effects/Su_perNova..." +msgstr "/Филтери/СветлоÑни Ефекти/СуперÐова..." + +# +#: plug-ins/common/nova.c:277 +msgid "Rendering SuperNova..." +msgstr "Рендерирам СуперÐова.." + +#: plug-ins/common/nova.c:318 +msgid "SuperNova" +msgstr "СуперÐова" + +# +#: plug-ins/common/nova.c:343 +msgid "SuperNova Color Picker" +msgstr "Избирач на боја на СуперÐова" + +# +#: plug-ins/common/nova.c:369 +msgid "_Spokes:" +msgstr "Пречки:" + +# +#: plug-ins/common/nova.c:381 +msgid "R_andom Hue:" +msgstr "Случајна ÐијанÑа:" + +# +#. to avoid side effects while initialization +#: plug-ins/common/nova.c:439 +msgid "Center of SuperNova" +msgstr "Центар на СуперÐова" + +# +#: plug-ins/common/nova.c:521 +msgid "S_how Cursor" +msgstr "Прикажи КурÑор" + +# +#: plug-ins/common/oilify.c:106 +msgid "/Filters/Artistic/Oili_fy..." +msgstr "/Филтери/Уметнички/Сликање Ñо темперни бои..." + +#: plug-ins/common/oilify.c:181 +msgid "Oil Painting..." +msgstr "Сликање Ñо темперни бои..." + +#: plug-ins/common/oilify.c:442 +msgid "Oilify" +msgstr "Сликање Ñо темперни бои" + +# +#: plug-ins/common/oilify.c:464 +msgid "_Use Intensity Algorithm" +msgstr "Употреби алгоритам за интензитет" + +# +#: plug-ins/common/oilify.c:474 +msgid "_Mask Size:" +msgstr "Големина на маÑката:" + +# +#: plug-ins/common/papertile.c:236 +msgid "Paper Tile" +msgstr "Делче од хартија" + +# +#: plug-ins/common/papertile.c:255 +msgid "Division" +msgstr "Делење" + +#: plug-ins/common/papertile.c:295 +msgid "Fractional Pixels" +msgstr "Фракционални ПикÑели" + +#: plug-ins/common/papertile.c:300 +msgid "_Background" +msgstr "Позадина" + +#: plug-ins/common/papertile.c:302 +msgid "_Ignore" +msgstr "Игнорирај" + +# +#: plug-ins/common/papertile.c:304 +msgid "_Force" +msgstr "Силно" + +# +#: plug-ins/common/papertile.c:317 +msgid "C_entering" +msgstr "Центрирање" + +# +#: plug-ins/common/papertile.c:332 +msgid "Movement" +msgstr "Движење" + +# +#: plug-ins/common/papertile.c:346 +msgid "_Max (%):" +msgstr "ÐœÐ°ÐºÑ (%):" + +#: plug-ins/common/papertile.c:352 +msgid "_Wrap Around" +msgstr "Замотој околу" + +# +#: plug-ins/common/papertile.c:362 +msgid "Background Type" +msgstr "Тип на позадината" + +# +#: plug-ins/common/papertile.c:369 +msgid "I_nverted Image" +msgstr "Инверзна Ñлика" + +# +#: plug-ins/common/papertile.c:371 +msgid "Im_age" +msgstr "Слика" + +# +#: plug-ins/common/papertile.c:373 +msgid "Fo_reground Color" +msgstr "Боја на предниот план" + +# +#: plug-ins/common/papertile.c:375 +msgid "Bac_kground Color" +msgstr "Боја на позадината" + +# +#: plug-ins/common/papertile.c:377 +msgid "S_elect here:" +msgstr "Избери овде:" + +# +#: plug-ins/common/papertile.c:384 +msgid "Background Color" +msgstr "Боја на позадината" + +# +#: plug-ins/common/papertile.c:536 +msgid "Paper Tile..." +msgstr "Делче од хартија..." + +#: plug-ins/common/papertile.c:822 +msgid "September 31, 1999" +msgstr "Септември 31, 1999" + +# +#: plug-ins/common/papertile.c:823 +msgid "/Filters/Map/_Paper Tile..." +msgstr "/Филтери/Мапирај/Делче од хартија..." + +# +#: plug-ins/common/pat.c:447 +msgid "Save as Pattern" +msgstr "Зачувај како моÑтра" + +#: plug-ins/common/pcx.c:312 +#, c-format +msgid "Could not read header from '%s'" +msgstr "Ðе можам да го прочитам заглавјето од „%s“" + +#: plug-ins/common/pcx.c:318 +#, c-format +msgid "'%s' is not a PCX file" +msgstr "„%s“ не е PCX датотека" + +#: plug-ins/common/pcx.c:371 +msgid "Unusual PCX flavour, giving up" +msgstr "Ðевообичаена PCX врÑта, Ñе откажувам" + +# +#: plug-ins/common/pixelize.c:170 +msgid "/Filters/Blur/_Pixelize..." +msgstr "/Филтери/Замати/ПикÑелизација..." + +# +#: plug-ins/common/pixelize.c:268 +msgid "Pixelizing..." +msgstr "ПикÑелизирам..." + +# #: libgimp/gimpexport.c:305 +# msgid "Cancel" +# msgstr "Odustani" +# #: libgimp/gimpfileselection.c:356 libgimp/gimpunitmenu.c:518 +# msgid "Close" +# msgstr "Zatvori" +# +#: plug-ins/common/pixelize.c:309 +msgid "Pixelize" +msgstr "ПикÑелизирај" + +# +#: plug-ins/common/pixelize.c:337 +msgid "Pixel _Width:" +msgstr "Ширина на пикÑелите:" + +# +#: plug-ins/common/pixelize.c:342 +msgid "Pixel _Height:" +msgstr "ВиÑина на пикÑелите:" + +# +#: plug-ins/common/plasma.c:182 +msgid "/Filters/Render/Clouds/_Plasma..." +msgstr "/Филтери/Рендерирање/Облаци/Плазма..." + +#: plug-ins/common/plasma.c:261 +msgid "Plasma..." +msgstr "Плазма..." + +#: plug-ins/common/plasma.c:301 +msgid "Plasma" +msgstr "Плазма" + +#: plug-ins/common/plasma.c:337 +msgid "Random _Seed:" +msgstr "Случајно Ñеме:" + +#: plug-ins/common/plasma.c:348 +msgid "T_urbulence:" +msgstr "Турбуленција:" + +#: plug-ins/common/plugindetails.c:106 +msgid "Internal GIMP procedure" +msgstr "Внатрешна ГИМП процедура" + +#: plug-ins/common/plugindetails.c:107 +msgid "GIMP Plug-In" +msgstr "ГИМП Додаток" + +# +#: plug-ins/common/plugindetails.c:108 +msgid "GIMP Extension" +msgstr "ГИМП ЕкÑтензија" + +# +#: plug-ins/common/plugindetails.c:109 +msgid "Temporary Procedure" +msgstr "Привремена Процедура" + +# +#: plug-ins/common/plugindetails.c:145 +msgid "/Xtns/_Plugin Details" +msgstr "/Xtns/Детали за додатокот..." + +# +#: plug-ins/common/plugindetails.c:213 +msgid "Details <<" +msgstr "Детали <<" + +# +#: plug-ins/common/plugindetails.c:223 plug-ins/common/plugindetails.c:1118 +msgid "Details >>" +msgstr "Детали >>" + +#. Number of plugins +#: plug-ins/common/plugindetails.c:309 +#, c-format +msgid "Number of Plugin Interfaces: %d" +msgstr "Број на додатоци Ñо Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÑ˜Ñ :%d" + +# +#. menu path +#: plug-ins/common/plugindetails.c:327 +msgid "Menu Path:" +msgstr "Пат на менито:" + +# +#. show the name +#: plug-ins/common/plugindetails.c:348 +#: plug-ins/dbbrowser/dbbrowser_utils.c:345 +msgid "Name:" +msgstr "Име:" + +# +#. show the description +#: plug-ins/common/plugindetails.c:370 +#: plug-ins/dbbrowser/dbbrowser_utils.c:354 +msgid "Blurb:" +msgstr "ОпиÑ:" + +# +#: plug-ins/common/plugindetails.c:392 +#: plug-ins/dbbrowser/dbbrowser_utils.c:468 +msgid "Help:" +msgstr "Помош:" + +#. show the type +#: plug-ins/common/plugindetails.c:432 plug-ins/common/spheredesigner.c:2616 +msgid "Type:" +msgstr "Тип:" + +# +#: plug-ins/common/plugindetails.c:1006 +msgid "Plugin Descriptions" +msgstr "ÐžÐ¿Ð¸Ñ Ð½Ð° додатокот:" + +# +#: plug-ins/common/plugindetails.c:1011 +msgid "Search by Name" +msgstr "Барај по име" + +# +#. list : list in a scrolled_win +#: plug-ins/common/plugindetails.c:1042 +msgid "Name" +msgstr "Име" + +#: plug-ins/common/plugindetails.c:1043 plug-ins/common/plugindetails.c:1071 +msgid "Ins Date" +msgstr "ВнеÑи датум" + +# +#: plug-ins/common/plugindetails.c:1044 +msgid "Menu Path" +msgstr "Пат на менито" + +# +#: plug-ins/common/plugindetails.c:1045 plug-ins/common/plugindetails.c:1072 +msgid "Image Types" +msgstr "Типови на Слика:" + +# +#: plug-ins/common/plugindetails.c:1063 +msgid "List View" +msgstr "Прикажи како лиÑта" + +# +#. notebook->ctree +#: plug-ins/common/plugindetails.c:1070 +msgid "Menu Path/Name" +msgstr "Пат/Име на менито" + +# +#: plug-ins/common/plugindetails.c:1087 +msgid "Tree View" +msgstr "Прикажи како Ñтебло" + +# +#: plug-ins/common/plugindetails.c:1107 +msgid "Search:" +msgstr "Барај:" + +#: plug-ins/common/png.c:647 +#, c-format +msgid "Error while reading '%s'. File corrupted?" +msgstr "Грешка при читање на „%s“. Оштетена датотека?" + +#. Aie! Unknown type +#: plug-ins/common/png.c:779 +#, c-format +msgid "Unknown color model in PNG file '%s'." +msgstr "Ðепознат модел на боја во PNG датотеката „%s“" + +#: plug-ins/common/png.c:832 +msgid "" +"The PNG file specifies an offset that caused the layer to be positioned " +"outside the image." +msgstr "PNG датотеката го одредува помеÑтувањето кое предизвикува Ñлојот да Ñе измеÑти надвор од опÑегот на Ñликата." + +#: plug-ins/common/png.c:1146 +#, c-format +msgid "Error while saving '%s'. Could not save image." +msgstr "Грешка при зачувување на „%s“. Ðе можам да ја зачувам Ñликата." + +#. Inform the user that we couldn't losslessly save the +#. * transparency & just use the full palette +#: plug-ins/common/png.c:1518 +msgid "Couldn't losslessly save transparency, saving opacity instead." +msgstr "Ðе можам да ја зачувам проѕирноÑта без губење на квалитет, зачувувам непроѕирноÑÑ‚." + +# +#: plug-ins/common/png.c:1544 +msgid "Save as PNG" +msgstr "Зачувај како PNG" + +# +#: plug-ins/common/png.c:1548 +msgid "_Load Defaults" +msgstr "_Вчитај Ñтандардни" + +# +#: plug-ins/common/png.c:1549 +msgid "_Save Defaults" +msgstr "_Зачувај Ñтандардни" + +#. parameter settings +#: plug-ins/common/png.c:1562 plug-ins/common/sample_colorize.c:1376 +msgid "Settings" +msgstr "ПодеÑувања" + +#: plug-ins/common/png.c:1575 +msgid "_Interlacing (Adam7)" +msgstr "_ИÑпреплетеноÑÑ‚ (Ðдам7)" + +# +#: plug-ins/common/png.c:1586 +msgid "Save _Background Color" +msgstr "Зачувај ја бојата на _позадината" + +# +#: plug-ins/common/png.c:1594 +msgid "Save _Gamma" +msgstr "Зачувај _Гама" + +# +#: plug-ins/common/png.c:1603 +msgid "Save Layer O_ffset" +msgstr "Зачувај го по_меÑтувањето на Ñлојот" + +# +#: plug-ins/common/png.c:1612 +msgid "Save _Resolution" +msgstr "Зачувај _резолуција" + +# +#: plug-ins/common/png.c:1621 +msgid "Save Creation _Time" +msgstr "Зачувај _време на Ñоздавање" + +#: plug-ins/common/png.c:1629 +msgid "Save Comme_nt" +msgstr "Зачувај _коментар" + +#: plug-ins/common/png.c:1644 +msgid "Save Color _Values From Transparent Pixels" +msgstr "Зачувај бои _ВредноÑти од транÑпарентните пикÑели" + +# +#: plug-ins/common/png.c:1657 +msgid "Co_mpression Level:" +msgstr "Степен на ко_мпреÑија:" + +#: plug-ins/common/png.c:1777 +msgid "Could not load PNG defaults" +msgstr "Ðе можам да ја пронајдам датотеката Ñо помошната документација" + +#: plug-ins/common/pnm.c:426 plug-ins/common/pnm.c:447 +#: plug-ins/common/pnm.c:454 plug-ins/common/pnm.c:463 +#: plug-ins/common/pnm.c:538 plug-ins/common/pnm.c:594 +msgid "PNM: Premature end of file." +msgstr "PNM: ÐеиÑправен крај на датотеката." + +# +#: plug-ins/common/pnm.c:428 +msgid "PNM: Invalid file." +msgstr "PNM: Погрешна датотека." + +#: plug-ins/common/pnm.c:441 +msgid "File not in a supported format." +msgstr "Датотеката не е во подржан формат." + +#: plug-ins/common/pnm.c:450 +msgid "PNM: Invalid X resolution." +msgstr "PNM: Погрешна Ð¥ Резолуција." + +#: plug-ins/common/pnm.c:457 +msgid "PNM: Invalid Y resolution." +msgstr "PNM: Погрешна Y Резолуција." + +#: plug-ins/common/pnm.c:469 +msgid "PNM: Invalid maximum value." +msgstr "PNM: Погрешна макÑимална вредноÑÑ‚." + +# +#: plug-ins/common/pnm.c:645 +msgid "PNM: Error reading file." +msgstr "PNM: Грешка во читањето на датотеката." + +# +#: plug-ins/common/pnm.c:761 +msgid "PNM save cannot handle images with alpha channels." +msgstr "PNM зачувувањето не може да работи Ñо Ñлики кои имаат алфа канали." + +#: plug-ins/common/pnm.c:909 +msgid "Save as PNM" +msgstr "Зачувај како PNM" + +#: plug-ins/common/pnm.c:923 +msgid "Raw" +msgstr "Сурово" + +#: plug-ins/common/pnm.c:924 +msgid "Ascii" +msgstr "Ascii" + +#: plug-ins/common/polar.c:174 +msgid "/Filters/Distorts/P_olar Coords..." +msgstr "/Филтери/Озобличувања/По_ларни координати..." + +#: plug-ins/common/polar.c:349 +msgid "Polarizing..." +msgstr "Поларизација..." + +#: plug-ins/common/polar.c:583 +msgid "Polarize" +msgstr "Поларизирај" + +#: plug-ins/common/polar.c:634 +msgid "Circle _Depth in Percent:" +msgstr "_Длабочина на кругот во проценти:" + +#: plug-ins/common/polar.c:643 +msgid "Offset _Angle:" +msgstr "ПомеÑтување на _аголот:" + +#: plug-ins/common/polar.c:655 +msgid "_Map Backwards" +msgstr "_Мапирај наназад" + +#: plug-ins/common/polar.c:661 +msgid "" +"If checked the mapping will begin at the right side, as opposed to beginning " +"at the left." +msgstr "" +"Ðко е означено мапирање, ќе почне на деÑната Ñтрана, како ÑпротивноÑÑ‚ на почетокот " +"од левата Ñтрана." + +#: plug-ins/common/polar.c:669 +msgid "Map from _Top" +msgstr "Мапа од _Врвот" + +#: plug-ins/common/polar.c:675 +msgid "" +"If unchecked the mapping will put the bottom row in the middle and the top " +"row on the outside. If checked it will be the opposite." +msgstr "" +"Ðко не е избрано мапирањето ќе го поÑтави поÑледниот ред во Ñредина и првиот ред " +"надвор. Ðко е избрано, ќе биде обратно." + +#: plug-ins/common/polar.c:684 +msgid "To _Polar" +msgstr "Кон Половите" + +#: plug-ins/common/polar.c:690 +msgid "" +"If unchecked the image will be circularly mapped onto a rectangle. If " +"checked the image will be mapped onto a circle." +msgstr "Ðко не е избрано, Ñликата ќе биде кружно мапирана во правоаголник. Ðко е избрано, Ñликата ќе биде мапирана во круг." + +#: plug-ins/common/ps.c:868 +#, c-format +msgid "Could not interpret '%s'" +msgstr "Ðе можам да интерпертирам „%s“" + +#: plug-ins/common/ps.c:955 +msgid "PostScript save cannot handle images with alpha channels" +msgstr "PostScript зачувувањето не работи Ñо Ñлики кои имаат алфа канали" + +#: plug-ins/common/ps.c:2188 plug-ins/common/ps.c:2320 +#: plug-ins/common/ps.c:2470 plug-ins/common/ps.c:2598 +msgid "write error occured" +msgstr "грешка при запишувањето" + +#: plug-ins/common/ps.c:2624 +msgid "Load PostScript" +msgstr "Вчитај PostScript" + +#. Rendering +#: plug-ins/common/ps.c:2644 +msgid "Rendering" +msgstr "Рендирам" + +#. Resolution +#: plug-ins/common/ps.c:2661 plug-ins/common/svg.c:816 +#: plug-ins/print/gimp_main_window.c:1103 +msgid "Resolution:" +msgstr "Резолуција:" + +#: plug-ins/common/ps.c:2689 +msgid "Pages:" +msgstr "Страници:" + +# +#: plug-ins/common/ps.c:2695 +msgid "Try Bounding Box" +msgstr "Пробајте Ñо Скокачка кутија" + +# +#. Colouring +#: plug-ins/common/ps.c:2708 +msgid "Coloring" +msgstr "Обојување" + +# +#: plug-ins/common/ps.c:2712 +msgid "B/W" +msgstr "B/W" + +# +#. * Gray * +#: plug-ins/common/ps.c:2713 plug-ins/rcm/rcm_dialog.c:417 +msgid "Gray" +msgstr "Сива" + +#: plug-ins/common/ps.c:2715 plug-ins/fits/fits.c:999 +msgid "Automatic" +msgstr "ÐвтоматÑки" + +# +#: plug-ins/common/ps.c:2725 +msgid "Text Antialiasing" +msgstr "Омекнување на текÑтот" + +# +#: plug-ins/common/ps.c:2730 plug-ins/common/ps.c:2742 +msgid "Weak" +msgstr "Слабо" + +# +#: plug-ins/common/ps.c:2731 plug-ins/common/ps.c:2743 +msgid "Strong" +msgstr "Силно" + +# +#: plug-ins/common/ps.c:2737 +msgid "Graphic Antialiasing" +msgstr "Омекнување на графиката" + +# +#: plug-ins/common/ps.c:2789 +msgid "Save as PostScript" +msgstr "Зачувај како PostScript" + +#. Image Size +#: plug-ins/common/ps.c:2812 +msgid "Image Size" +msgstr "Големина на Ñликата" + +# +#: plug-ins/common/ps.c:2847 +msgid "_X-Offset:" +msgstr "X-помеÑтување:" + +# +#: plug-ins/common/ps.c:2856 +msgid "_Y-Offset:" +msgstr "Y-помеÑтување:" + +# +#: plug-ins/common/ps.c:2862 +msgid "_Keep Aspect Ratio" +msgstr "Задржи го размерот" + +#: plug-ins/common/ps.c:2868 +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/ps.c:2877 +msgid "Unit" +msgstr "Единица" + +#: plug-ins/common/ps.c:2881 +msgid "_Inch" +msgstr "Инч" + +#: plug-ins/common/ps.c:2882 +msgid "_Millimeter" +msgstr "Милиметар" + +#. Format +#: plug-ins/common/ps.c:2908 +msgid "Output" +msgstr "Излез" + +#: plug-ins/common/ps.c:2915 +msgid "_PostScript Level 2" +msgstr "_PostScript Ðиво 2" + +#: plug-ins/common/ps.c:2924 +msgid "_Encapsulated PostScript" +msgstr "_ЕнкапÑулиран PostScript" + +#: plug-ins/common/ps.c:2933 +msgid "P_review" +msgstr "_Преглед" + +# +#: plug-ins/common/ps.c:2954 +msgid "Preview _Size:" +msgstr "_Големина на прегледот:" + +#: plug-ins/common/psd.c:468 +msgid "Invalid UTF-8 string in PSD file" +msgstr "Ðевалидна UTF-8 низа на знаци во PSD датотеката" + +# +#: plug-ins/common/psp.c:404 +msgid "Save as PSP" +msgstr "Зачувај како PSP" + +# +#. file save type +#: plug-ins/common/psp.c:414 +msgid "Data Compression" +msgstr "КомпреÑија на податоци" + +# +#: plug-ins/common/psp.c:419 +msgid "RLE" +msgstr "RLE" + +#: plug-ins/common/psp.c:420 +msgid "LZ77" +msgstr "LZ77" + +# +#: plug-ins/common/randomize.c:107 +msgid "Random Hurl 1.7" +msgstr "Случајно отÑтранување 1.7 " + +#: plug-ins/common/randomize.c:108 +msgid "Random Pick 1.7" +msgstr "Случајно избирање 1.7" + +# +#: plug-ins/common/randomize.c:109 +msgid "Random Slur 1.7" +msgstr "Случајно Размачкување 1.7" + +# +#: plug-ins/common/randomize.c:229 +msgid "/Filters/Noise/_Hurl..." +msgstr "/Филтери/Пречки/_ОтÑтранување..." + +# +#: plug-ins/common/randomize.c:241 +msgid "/Filters/Noise/_Pick..." +msgstr "/Филтери/Пречки/Избери..." + +# +#: plug-ins/common/randomize.c:253 +msgid "/Filters/Noise/_Slur..." +msgstr "/Филтери/Шум/_Размачкај..." + +# +#: plug-ins/common/randomize.c:733 +msgid "R_andomization (%):" +msgstr "СлучајноÑÑ‚ %:" + +# +#: plug-ins/common/ripple.c:137 +msgid "/Filters/Distorts/_Ripple..." +msgstr "/Филтери/Озобличувања/_Размачкај... " + +# +#: plug-ins/common/ripple.c:215 +msgid "Rippling..." +msgstr "Размачкување..." + +# +#: plug-ins/common/ripple.c:421 +msgid "Ripple" +msgstr "Размачкај" + +# +#: plug-ins/common/ripple.c:460 +msgid "_Retain Tilability" +msgstr "Задржи деливоÑÑ‚" + +# +#. Edges toggle box +#: plug-ins/common/ripple.c:487 +msgid "Edges" +msgstr "Ивици" + +# +#. Wave toggle box +#: plug-ins/common/ripple.c:501 +msgid "Wave Type" +msgstr "Тип на бран" + +#: plug-ins/common/ripple.c:505 +msgid "Saw_tooth" +msgstr "ТеÑтера" + +#: plug-ins/common/ripple.c:506 +msgid "S_ine" +msgstr "СинуÑ" + +#: plug-ins/common/ripple.c:527 +msgid "_Period:" +msgstr "Период:" + +#: plug-ins/common/ripple.c:537 +msgid "A_mplitude:" +msgstr "Ðмплитуда:" + +#: plug-ins/common/rotate.c:421 +msgid "You can not rotate the whole image if there's a selection." +msgstr "Ðе можете да ја ротирате целата Ñлика ако во иÑтата имате Ñелекција." + +#: plug-ins/common/rotate.c:428 +msgid "You can not rotate the whole image if there's a floating selection." +msgstr "Ðе можете да ја ротирате целата Ñлика ако во иÑтата имате лебдечка Ñелекција." + +#: plug-ins/common/rotate.c:439 +msgid "Sorry, channels and masks can not be rotated." +msgstr "Жалам, но каналите и маÑките не може да Ñе ротираат." + +#: plug-ins/common/rotate.c:445 +msgid "Rotating..." +msgstr "Ротирам..." + +# +#: plug-ins/common/sample_colorize.c:308 +msgid "/Filters/Colors/Map/_Sample Colorize..." +msgstr "/Филтери/Бои/Мапа/Обојување на промерок..." + +#: plug-ins/common/sample_colorize.c:1360 +msgid "Sample Colorize" +msgstr "Обојување на примерок" + +# +#: plug-ins/common/sample_colorize.c:1365 +msgid "Get Sample Colors" +msgstr "Земи примерок од бојата" + +#: plug-ins/common/sample_colorize.c:1367 +msgid "Apply" +msgstr "Примени" + +# +#. layer optionmenu (Dst) +#: plug-ins/common/sample_colorize.c:1395 +msgid "Destination:" +msgstr "Одредиште:" + +# +#. layer optionmenu (Sample) +#: plug-ins/common/sample_colorize.c:1414 +msgid "Sample:" +msgstr "Примерок:" + +#. Add extra menu items for Gradient +#: plug-ins/common/sample_colorize.c:1433 +msgid "From Gradient" +msgstr "Од прелив" + +#. Add extra menu items for Inverted Gradient +#: plug-ins/common/sample_colorize.c:1442 +msgid "From Reverse Gradient" +msgstr "Од обратен прелив" + +# +#. check button +#: plug-ins/common/sample_colorize.c:1458 +#: plug-ins/common/sample_colorize.c:1485 +msgid "Show Selection" +msgstr "Прикажи ја Ñелекцијата" + +# +#. check button +#: plug-ins/common/sample_colorize.c:1469 +#: plug-ins/common/sample_colorize.c:1496 +msgid "Show Color" +msgstr "Прикажи ја бојата" + +# +#: plug-ins/common/sample_colorize.c:1605 +msgid "Input Levels:" +msgstr "Влезни нивоа:" + +# +#: plug-ins/common/sample_colorize.c:1655 +msgid "Output Levels:" +msgstr "Излезни нивоа:" + +# +#. check button +#: plug-ins/common/sample_colorize.c:1695 +msgid "Hold Intensity" +msgstr "Задржи го интензитетот" + +#. check button +#: plug-ins/common/sample_colorize.c:1706 +msgid "Original Intensity" +msgstr "Оригинален интезитет" + +# +#. check button +#: plug-ins/common/sample_colorize.c:1724 +msgid "Use Subcolors" +msgstr "Употреби помошни бои" + +#. check button +#: plug-ins/common/sample_colorize.c:1735 +msgid "Smooth Samples" +msgstr "Мазни примероци" + +#: plug-ins/common/sample_colorize.c:2682 +msgid "Sample Analyze..." +msgstr "Пример на анализа..." + +#: plug-ins/common/sample_colorize.c:3046 +msgid "Remap Colorized..." +msgstr "Ремапирање на обоеното..." + +# +#: plug-ins/common/scatter_hsv.c:137 +msgid "/Filters/Noise/S_catter HSV..." +msgstr "/Филтери/Пречки/РаÑтурен HSV..." + +#: plug-ins/common/scatter_hsv.c:232 +msgid "Scattering HSV..." +msgstr "РаÑтурање HSV..." + +#: plug-ins/common/scatter_hsv.c:336 +msgid "Scatter HSV" +msgstr "РаÑтурен HSV" + +#: plug-ins/common/scatter_hsv.c:349 +msgid "Preview (1:4) - Right Click to Jump" +msgstr "Преглед (1:4) - ДеÑен клик за Скок" + +#: plug-ins/common/scatter_hsv.c:399 +msgid "_Holdness:" +msgstr "ПоÑтојаноÑÑ‚:" + +#: plug-ins/common/scatter_hsv.c:408 +msgid "H_ue:" +msgstr "ÐијанÑа:" + +#: plug-ins/common/scatter_hsv.c:417 +msgid "_Saturation:" +msgstr "ЗаÑитување:" + +#: plug-ins/common/scatter_hsv.c:426 +msgid "_Value:" +msgstr "ВредноÑÑ‚:" + +#: plug-ins/common/screenshot.c:138 plug-ins/winsnap/winsnap.c:1073 +msgid "/File/Acquire/_Screen Shot..." +msgstr "/Датотека/Земи/Слика од екранот..." + +#: plug-ins/common/screenshot.c:270 +msgid "Error grabbing the pointer" +msgstr "Грешка при земање на курÑорот" + +# +#: plug-ins/common/screenshot.c:342 +msgid "Loading Screen Shot..." +msgstr "Ја вчитувам Ñликата на екранот..." + +# +#: plug-ins/common/screenshot.c:348 plug-ins/common/screenshot.c:507 +msgid "Screen Shot" +msgstr "Слика на екранот" + +#: plug-ins/common/screenshot.c:456 +msgid "Specified window not found" +msgstr "Ðаведениот прозорец не е пронајден" + +#: plug-ins/common/screenshot.c:479 +msgid "Error obtaining Screen Shot" +msgstr "Грешка при добивање на Ñликата од екранот" + +#. single window +#: plug-ins/common/screenshot.c:523 plug-ins/winsnap/winsnap.c:905 +msgid "Grab" +msgstr "Земи" + +#: plug-ins/common/screenshot.c:531 +msgid "a _Single Window" +msgstr "Еден прозорец" + +#: plug-ins/common/screenshot.c:547 +msgid "S_elect Window After" +msgstr "Избери прозорец по" + +# +#: plug-ins/common/screenshot.c:560 plug-ins/common/screenshot.c:600 +#: plug-ins/winsnap/winsnap.c:1019 +msgid "Seconds Delay" +msgstr "ЗакаÑнување на Ñекунди" + +#: plug-ins/common/screenshot.c:568 +msgid "the _Whole Screen" +msgstr "Целиот екран" + +#: plug-ins/common/screenshot.c:587 +msgid "Grab _After" +msgstr "Земи по" + +# +#: plug-ins/common/sel_gauss.c:114 +msgid "/Filters/Blur/_Selective Gaussian Blur..." +msgstr "/Филтери/Замати/Селективно ГауÑиан заматување..." + +# +#: plug-ins/common/sel_gauss.c:191 +msgid "Selective Gaussian Blur..." +msgstr "Селективно ГауÑиан заматување..." + +# +#: plug-ins/common/sel_gauss.c:228 +msgid "Selective Gaussian Blur" +msgstr "Селективно ГауÑиан заматување" + +# +#: plug-ins/common/sel_gauss.c:253 +msgid "_Blur Radius:" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето:" + +# +#: plug-ins/common/sel_gauss.c:260 +msgid "_Max. Delta:" +msgstr "МакÑ. Делта:" + +# +#: plug-ins/common/semiflatten.c:79 +msgid "/Filters/Colors/_Semi-Flatten" +msgstr "/Филтери/Бои/Полу-Рамно" + +#: plug-ins/common/semiflatten.c:118 +msgid "Semi-Flattening..." +msgstr "Полу-Рамно..." + +# +#: plug-ins/common/sharpen.c:147 +msgid "/Filters/Enhance/_Sharpen..." +msgstr "/Филтери/Подобри/ИзоÑтрување... " + +# +#. +#. * Let the user know what we're doing... +#. +#: plug-ins/common/sharpen.c:328 +msgid "Sharpening..." +msgstr "ИзоÑтрување..." + +#: plug-ins/common/sharpen.c:499 +msgid "Sharpen" +msgstr "ИзоÑтрено" + +#: plug-ins/common/sharpen.c:592 +msgid "_Sharpness:" +msgstr "ОÑтрина:" + +# +#: plug-ins/common/shift.c:107 +msgid "/Filters/Distorts/_Shift..." +msgstr "/Филтери/Озобличувања/ПомеÑти..." + +# +#: plug-ins/common/shift.c:183 +msgid "Shifting..." +msgstr "ПомеÑтување..." + +# +#: plug-ins/common/shift.c:318 +msgid "Shift" +msgstr "ПомеÑти" + +# +#: plug-ins/common/shift.c:332 +msgid "Shift _Horizontally" +msgstr "ПомеÑти хоризонтално" + +# +#: plug-ins/common/shift.c:333 +msgid "Shift _Vertically" +msgstr "ПомеÑти вертикално" + +# +#: plug-ins/common/shift.c:364 +msgid "Shift _Amount:" +msgstr "ВредноÑÑ‚ на помеÑтувањето:" + +# +#: plug-ins/common/sinus.c:196 +msgid "/Filters/Render/Pattern/_Sinus..." +msgstr "/Филтери/Рендерирање/ИÑечок/СинуÑ..." + +#: plug-ins/common/sinus.c:281 +msgid "Sinus: rendering..." +msgstr "СинуÑ: иÑцртување..." + +# +#. Create Main window with a vbox +#. ============================== +#: plug-ins/common/sinus.c:644 +msgid "Sinus" +msgstr "СинуÑ" + +# +#: plug-ins/common/sinus.c:680 +msgid "Drawing Settings" +msgstr "ПодеÑување на иÑцртувањето" + +# +#: plug-ins/common/sinus.c:691 +msgid "_X Scale:" +msgstr "_X вредноÑÑ‚:" + +# +#: plug-ins/common/sinus.c:700 +msgid "_Y Scale:" +msgstr "_Y вредноÑÑ‚:" + +# +#: plug-ins/common/sinus.c:709 +msgid "Co_mplexity:" +msgstr "Ко_мплекÑноÑÑ‚:" + +# +#: plug-ins/common/sinus.c:719 +msgid "Calculation Settings" +msgstr "ПодеÑувања на преÑметките" + +#: plug-ins/common/sinus.c:733 +msgid "R_andom Seed:" +msgstr "Злучајно Ñеме:" + +#: plug-ins/common/sinus.c:742 +msgid "_Force Tiling?" +msgstr "ÐаÑилно поплочување?" + +# +#: plug-ins/common/sinus.c:755 +msgid "_Ideal" +msgstr "_Идеално" + +# +#: plug-ins/common/sinus.c:756 +msgid "_Distorted" +msgstr "_ДиÑторзирано" + +# +#: plug-ins/common/sinus.c:775 plug-ins/common/sinus.c:792 +msgid "Colors" +msgstr "Бои" + +#. if in grey scale, the colors are necessarily black and white +#: plug-ins/common/sinus.c:785 +msgid "The colors are white and black." +msgstr "Боите Ñе бели и црни." + +#: plug-ins/common/sinus.c:796 +msgid "Bl_ack & White" +msgstr "Црн_а и Бела" + +# +#: plug-ins/common/sinus.c:798 +msgid "_Foreground & Background" +msgstr "_Преден план и позадина" + +# +#: plug-ins/common/sinus.c:800 +msgid "C_hoose here:" +msgstr "И_збери овде:" + +# +#: plug-ins/common/sinus.c:814 +msgid "First Color" +msgstr "Прва Боја" + +# +#: plug-ins/common/sinus.c:824 +msgid "Second Color" +msgstr "Втора Боја" + +# +#: plug-ins/common/sinus.c:837 +msgid "Alpha Channels" +msgstr "Ðлфа Канали" + +# +#: plug-ins/common/sinus.c:851 +msgid "F_irst Color:" +msgstr "_Прва боја:" + +# +#: plug-ins/common/sinus.c:866 +msgid "S_econd Color:" +msgstr "_Втора боја:" + +# +#: plug-ins/common/sinus.c:891 +msgid "Blend Settings" +msgstr "ПодеÑувања за мешање" + +# +#: plug-ins/common/sinus.c:901 +msgid "Gradient" +msgstr "Прелив" + +#: plug-ins/common/sinus.c:905 +msgid "L_inear" +msgstr "Л_инеарно" + +# +#: plug-ins/common/sinus.c:906 +msgid "Bili_near" +msgstr "Били_неарно" + +#: plug-ins/common/sinus.c:907 +msgid "Sin_usoidal" +msgstr "Син_уÑуидално" + +# +#: plug-ins/common/sinus.c:919 +msgid "_Exponent:" +msgstr "_ЕкÑпонент:" + +# +#: plug-ins/common/sinus.c:929 +msgid "_Blend" +msgstr "Мешање" + +# +#: plug-ins/common/smooth_palette.c:88 +msgid "/Filters/Colors/Smoo_th Palette..." +msgstr "/Филтери/Бои/Мазна палета..." + +#: plug-ins/common/smooth_palette.c:177 +msgid "Deriving Smooth Palette..." +msgstr "Изведувам Мазна палета..." + +# +#: plug-ins/common/smooth_palette.c:408 +msgid "Smooth Palette" +msgstr "Мазна палета" + +# +#: plug-ins/common/smooth_palette.c:445 +msgid "_Search Depth:" +msgstr "Длабочина на _барање:" + +# +#: plug-ins/common/snoise.c:171 +msgid "/Filters/Render/Clouds/_Solid Noise..." +msgstr "/Филтери/Рендерирање/Облаци/Силен Шум..." + +#: plug-ins/common/snoise.c:297 +msgid "Solid Noise..." +msgstr "Силен Шум..." + +# +#. Dialog initialization +#: plug-ins/common/snoise.c:495 +msgid "Solid Noise" +msgstr "Силен Шум" + +# +#: plug-ins/common/snoise.c:529 +msgid "_Detail:" +msgstr "_Детал:" + +#. Turbulent +#: plug-ins/common/snoise.c:536 +msgid "T_urbulent" +msgstr "Турбуленција" + +# +#. Tilable +#: plug-ins/common/snoise.c:547 +msgid "T_ilable" +msgstr "Делливо" + +# +#: plug-ins/common/snoise.c:559 +msgid "_X Size:" +msgstr "_X Големина:" + +# +#: plug-ins/common/snoise.c:569 +msgid "_Y Size:" +msgstr "_Y Големина:" + +# +#: plug-ins/common/sobel.c:128 +msgid "/Filters/Edge-Detect/_Sobel..." +msgstr "/Филтери/ИÑтакни ивици/_Собел... " + +# +#: plug-ins/common/sobel.c:232 +msgid "Sobel Edge Detection" +msgstr "Собел детекција на ивиците" + +# +#: plug-ins/common/sobel.c:252 +msgid "Sobel _Horizontally" +msgstr "Собел _хоризонтално" + +# +#: plug-ins/common/sobel.c:261 +msgid "Sobel _Vertically" +msgstr "Собел _вертикално" + +#: plug-ins/common/sobel.c:270 +msgid "_Keep Sign of Result (one Direction only)" +msgstr "_Задржи ја ознаката на резултатот (Ñамо во една наÑока)" + +#: plug-ins/common/sobel.c:343 +msgid "Sobel Edge Detecting..." +msgstr "Собел детекција на ивиците..." + +#: plug-ins/common/sparkle.c:184 +msgid "/Filters/Light Effects/_Sparkle..." +msgstr "/Филтери/СветлоÑни ефекти/_Сјаење..." + +#: plug-ins/common/sparkle.c:287 +msgid "Sparkling..." +msgstr "Сјаење..." + +#: plug-ins/common/sparkle.c:340 +msgid "Sparkle" +msgstr "Сјаење" + +#: plug-ins/common/sparkle.c:368 +msgid "Luminosity _Threshold:" +msgstr "Праг на оÑветлување:" + +#: plug-ins/common/sparkle.c:371 +msgid "Adjust the Luminosity Threshold" +msgstr "ПодеÑи го прагот на оÑветлување" + +#: plug-ins/common/sparkle.c:378 +msgid "F_lare Intensity:" +msgstr "Интезитет на одÑјајот:" + +#: plug-ins/common/sparkle.c:381 +msgid "Adjust the Flare Intensity" +msgstr "ПодеÑи го интензитетот на одÑјајот" + +#: plug-ins/common/sparkle.c:388 +msgid "_Spike Length:" +msgstr "Должина на шилото:" + +#: plug-ins/common/sparkle.c:391 +msgid "Adjust the Spike Length" +msgstr "ПодеÑи ја должината на шилото" + +#: plug-ins/common/sparkle.c:398 +msgid "Sp_ike Points:" +msgstr "Точки на шилото:" + +#: plug-ins/common/sparkle.c:401 +msgid "Adjust the Number of Spikes" +msgstr "ПодеÑи го бројот на шилата" + +#: plug-ins/common/sparkle.c:408 +msgid "Spi_ke Angle (-1: Random):" +msgstr "Ðгол на шилото (-1: Случајно):" + +#: plug-ins/common/sparkle.c:411 +msgid "Adjust the Spike Angle (-1 means a Random Angle is choosen)" +msgstr "ПодеÑи го аголот на шилото (-1 значи дека е изберен Ñлучаен агол)" + +#: plug-ins/common/sparkle.c:419 +msgid "Spik_e Density:" +msgstr "ГуÑтина на шилото" + +#: plug-ins/common/sparkle.c:422 +msgid "Adjust the Spike Density" +msgstr "ПодеÑи ја гуÑтината на шилото" + +#: plug-ins/common/sparkle.c:432 +msgid "Adjust the Opacity of the Spikes" +msgstr "ПодеÑи ја непроѕирноÑта на шилото" + +# +#: plug-ins/common/sparkle.c:439 +msgid "_Random Hue:" +msgstr "Случајна ÐијанÑа:" + +#: plug-ins/common/sparkle.c:442 +msgid "Adjust the Value how much the Hue should be changed randomly" +msgstr "ПодеÑи ја вредноÑта колку пати нијанÑата може да Ñе менува Ñлучајно" + +#: plug-ins/common/sparkle.c:450 +msgid "Rando_m Saturation:" +msgstr "Случајно заÑитување:" + +#: plug-ins/common/sparkle.c:453 +msgid "Adjust the Value how much the Saturation should be changed randomly" +msgstr "ПодеÑи ја вредноÑта колку пати заÑитувањето може да Ñе менува Ñлучајно" + +#: plug-ins/common/sparkle.c:471 +msgid "_Preserve Luminosity" +msgstr "_Задржи го оÑветлувањето" + +#: plug-ins/common/sparkle.c:478 +msgid "Should the Luminosity be preserved?" +msgstr "Дали да го задржам оÑветлувањето?" + +#: plug-ins/common/sparkle.c:484 +msgid "In_verse" +msgstr "Ин_верзно" + +#: plug-ins/common/sparkle.c:490 +msgid "Should an Inverse Effect be done?" +msgstr "Дали треба да изведам Инверзен Ефект?" + +#: plug-ins/common/sparkle.c:496 +msgid "A_dd Border" +msgstr "Додај Граница" + +#: plug-ins/common/sparkle.c:502 +msgid "Draw a Border of Spikes around the Image" +msgstr "ИÑцртај Граница од шилата околу Ñликата" + +#: plug-ins/common/sparkle.c:517 +msgid "_Natural Color" +msgstr "_Природна боја" + +# +#: plug-ins/common/sparkle.c:518 +msgid "_Foreground Color" +msgstr "_Боја на предниот план" + +# +#: plug-ins/common/sparkle.c:519 +msgid "_Background Color" +msgstr "_Боја на позадината" + +#: plug-ins/common/sparkle.c:527 +msgid "Use the Color of the Image" +msgstr "Употреби ја бојата на Ñликата" + +#: plug-ins/common/sparkle.c:528 +msgid "Use the Foreground Color" +msgstr "Употреби ја бојата на предниот план" + +#: plug-ins/common/sparkle.c:529 +msgid "Use the Background Color" +msgstr "Употреби ја бојата на позадината" + +#: plug-ins/common/spheredesigner.c:280 plug-ins/gimpressionist/general.c:99 +msgid "Solid" +msgstr "Силно" + +#: plug-ins/common/spheredesigner.c:281 +msgid "Checker" +msgstr "Шаховница" + +#: plug-ins/common/spheredesigner.c:282 +msgid "Marble" +msgstr "Магично" + +#: plug-ins/common/spheredesigner.c:283 +msgid "Lizard" +msgstr "Гуштер" + +#: plug-ins/common/spheredesigner.c:284 +msgid "Phong" +msgstr "Фонг" + +#: plug-ins/common/spheredesigner.c:285 +msgid "Noise" +msgstr "Шум" + +#: plug-ins/common/spheredesigner.c:286 +msgid "Wood" +msgstr "Стебло" + +#: plug-ins/common/spheredesigner.c:287 +msgid "Spiral" +msgstr "Спирала" + +#: plug-ins/common/spheredesigner.c:288 +msgid "Spots" +msgstr "Точки" + +#: plug-ins/common/spheredesigner.c:1742 plug-ins/common/spheredesigner.c:2859 +msgid "Texture" +msgstr "ТекÑтура" + +# +#: plug-ins/common/spheredesigner.c:1744 +msgid "Bumpmap" +msgstr "Bumpmap" + +#: plug-ins/common/spheredesigner.c:1746 plug-ins/common/spheredesigner.c:2871 +msgid "Light" +msgstr "Светло" + +#: plug-ins/common/spheredesigner.c:2157 +msgid "Open File" +msgstr "Отвори датотека" + +#: plug-ins/common/spheredesigner.c:2157 +msgid "Save File" +msgstr "Зачувај датотека" + +#: plug-ins/common/spheredesigner.c:2486 +msgid "Sphere Designer" +msgstr "Дизајнер на Сфера" + +#: plug-ins/common/spheredesigner.c:2522 plug-ins/gimpressionist/repaint.c:853 +msgid "Update" +msgstr "ОÑвежи" + +#: plug-ins/common/spheredesigner.c:2554 +msgid "Textures" +msgstr "ТекÑтури" + +#: plug-ins/common/spheredesigner.c:2604 +msgid "Texture Properties" +msgstr "СвојÑтва на текÑтурата" + +#: plug-ins/common/spheredesigner.c:2622 +msgid "Texture:" +msgstr "ТекÑтура:" + +#: plug-ins/common/spheredesigner.c:2628 +msgid "Colors:" +msgstr "Бои:" + +#: plug-ins/common/spheredesigner.c:2639 plug-ins/common/spheredesigner.c:2650 +msgid "Color Selection Dialog" +msgstr "Дијалог за избирање боја" + +#. Scale +#: plug-ins/common/spheredesigner.c:2661 plug-ins/gimpressionist/paper.c:146 +#: plug-ins/ifscompose/ifscompose.c:583 +msgid "Scale:" +msgstr "вредноÑÑ‚:" + +#: plug-ins/common/spheredesigner.c:2679 +msgid "Turbulence:" +msgstr "Турбуленција:" + +#: plug-ins/common/spheredesigner.c:2715 +msgid "Scale Y:" +msgstr "вредноÑÑ‚ Y:" + +#: plug-ins/common/spheredesigner.c:2733 +msgid "Scale Z:" +msgstr "вредноÑÑ‚ Z:" + +#: plug-ins/common/spheredesigner.c:2752 +msgid "Rotate X:" +msgstr "Ротирај X:" + +#: plug-ins/common/spheredesigner.c:2769 +msgid "Rotate Y:" +msgstr "Ротирај Y:" + +#: plug-ins/common/spheredesigner.c:2786 +msgid "Rotate Z:" +msgstr "Ротирај Z:" + +#: plug-ins/common/spheredesigner.c:2803 +msgid "Pos X:" +msgstr "Поз X:" + +#: plug-ins/common/spheredesigner.c:2820 +msgid "Pos Y:" +msgstr "Поз Y:" + +#: plug-ins/common/spheredesigner.c:2837 +msgid "Pos Z:" +msgstr "Поз Z:" + +#: plug-ins/common/spheredesigner.c:2864 +msgid "Bump" +msgstr "ИÑпакни" + +# +#: plug-ins/common/spheredesigner.c:2890 +msgid "Amount:" +msgstr "ВредноÑÑ‚:" + +#: plug-ins/common/spheredesigner.c:2908 +msgid "Exp:" +msgstr "Извези:" + +# +#: plug-ins/common/spheredesigner.c:3066 +msgid "Rendering Sphere..." +msgstr "Рендерирам Ñфера.." + +#: plug-ins/common/spheredesigner.c:3123 +msgid "/Filters/Render/Sphere _Designer..." +msgstr "/Филтери/Рендерирање/Дизајнер на Ñфера..." + +#: plug-ins/common/spread.c:107 +msgid "/Filters/Noise/Sp_read..." +msgstr "/Филтери/Пречки/РаÑтегни..." + +#: plug-ins/common/spread.c:185 +msgid "Spreading..." +msgstr "РаÑтегнување..." + +#: plug-ins/common/spread.c:330 +msgid "Spread" +msgstr "РаÑтегни" + +#. parameter settings +#: plug-ins/common/spread.c:340 +msgid "Spread Amount" +msgstr "ВредноÑÑ‚ на раÑтегнувањето" + +#: plug-ins/common/struc.c:1142 +msgid "/Filters/Artistic/_Apply Canvas..." +msgstr "/Филтери/Уметнички/Примени платно..." + +#: plug-ins/common/struc.c:1221 +msgid "Applying Canvas..." +msgstr "Применувам платно..." + +#: plug-ins/common/struc.c:1256 +msgid "Apply Canvas" +msgstr "Примени платно" + +#. ***************************************************** +#. radio buttons for choosing LEFT or RIGHT +#. ************************************************* +#: plug-ins/common/struc.c:1276 plug-ins/common/wind.c:935 +msgid "Direction" +msgstr "ÐаÑока" + +#: plug-ins/common/struc.c:1280 +msgid "_Top-Right" +msgstr "_Горе-ДеÑно" + +#: plug-ins/common/struc.c:1281 +msgid "Top-_Left" +msgstr "Горе-_Лево" + +#: plug-ins/common/struc.c:1282 +msgid "_Bottom-Left" +msgstr "Доле-_Лево" + +#: plug-ins/common/struc.c:1283 +msgid "Bottom-_Right" +msgstr "_Доле-ДеÑно" + +#: plug-ins/common/sunras.c:391 +#, c-format +msgid "Could not open '%s' as SUN-raster-file" +msgstr "Ðе можам да го отворам „%s“ како SUN раÑтер датотека" + +#: plug-ins/common/sunras.c:398 +msgid "The type of this SUN-rasterfile is not supported" +msgstr "Типот на оваа SUN раÑтер датотека не е подржан" + +#: plug-ins/common/sunras.c:421 +#, c-format +msgid "Could not read color entries from '%s'" +msgstr "Ðе можам да ги прочитам податоците за боја од „%s“" + +#: plug-ins/common/sunras.c:429 +msgid "Type of colormap not supported" +msgstr "Оваа мапа Ñо боја не е подржана" + +#: plug-ins/common/sunras.c:467 +msgid "This image depth is not supported" +msgstr "Оваа длабочина Ñликата не е подржана" + +#: plug-ins/common/sunras.c:490 +msgid "SUNRAS save cannot handle images with alpha channels" +msgstr "SUNRAS зачувување не може да работи Ñо Ñлики кои Ñодржат алфа канали" + +#: plug-ins/common/sunras.c:501 +msgid "Can't operate on unknown image types" +msgstr "Ðе можам да работам Ñо непознати типови на Ñлики" + +#: plug-ins/common/sunras.c:1028 plug-ins/common/sunras.c:1119 +#: plug-ins/common/sunras.c:1200 plug-ins/common/sunras.c:1295 +#: plug-ins/common/xwd.c:1331 plug-ins/common/xwd.c:1493 +#: plug-ins/common/xwd.c:1690 plug-ins/common/xwd.c:1940 +#: plug-ins/fits/fits.c:673 +msgid "EOF encountered on reading" +msgstr "Дојдов до EOF (End Of File) при читањето" + +#: plug-ins/common/sunras.c:1450 plug-ins/common/sunras.c:1558 +#: plug-ins/fits/fits.c:825 plug-ins/fits/fits.c:949 +msgid "Write error occured" +msgstr "Грешка при запишување" + +#: plug-ins/common/sunras.c:1575 +msgid "Save as SUNRAS" +msgstr "Зачувај како SUNRAS" + +#: plug-ins/common/sunras.c:1589 +msgid "RunLength Encoded" +msgstr "RLE Енкодирано" + +#: plug-ins/common/svg.c:242 plug-ins/common/svg.c:624 +msgid "Unknown reason" +msgstr "Ðепозната причина" + +#: plug-ins/common/svg.c:246 +msgid "Rendering SVG..." +msgstr "Рендирам SVG..." + +#: plug-ins/common/svg.c:256 +msgid "Rendered SVG" +msgstr "Рендиран SVG" + +#: plug-ins/common/svg.c:421 +msgid "" +"SVG file does not\n" +"specify a size!" +msgstr "" +"SVG датотека не\n" +"одредува големина!" + +#: plug-ins/common/svg.c:427 +#, c-format +msgid "%d x %d" +msgstr "%d x %d" + +#: plug-ins/common/svg.c:630 +msgid "Open SVG" +msgstr "Отвори SVG" + +#. Scalable Vector Graphics is SVG, should perhaps not be translated +#: plug-ins/common/svg.c:642 +msgid "Render Scalable Vector Graphics" +msgstr "Рендирај Scalable Vector Graphics (SVG) - Скаларна ВекторÑка Графика" + +#: plug-ins/common/svg.c:701 plug-ins/print/gimp_main_window.c:1025 +#: plug-ins/print/gimp_main_window.c:1237 +msgid "Height:" +msgstr "ВиÑина:" + +#: plug-ins/common/svg.c:775 +msgid "Ratio _X:" +msgstr "Ротација _X:" + +#: plug-ins/common/svg.c:811 +msgid "Constrain aspect ratio" +msgstr "Задржи ги пропорциите" + +#: plug-ins/common/svg.c:822 +#, c-format +msgid "pixels/%a" +msgstr "пикÑели/%a" + +#. Path Import +#: plug-ins/common/svg.c:842 +msgid "Import _Paths" +msgstr "Увези _патеки" + +#: plug-ins/common/svg.c:848 +msgid "Import path elements of the SVG so they can be used with the GIMP path tool" +msgstr "Увези ги елементите на патеките за SVG, за да бидат кориÑтени во ГИМП алатките за патеки" + +#: plug-ins/common/svg.c:861 +msgid "Merge Imported Paths" +msgstr "Спој ги увезените патеки" + +#: plug-ins/common/tga.c:424 +#, c-format +msgid "" +"Cannot read footer from\n" +"'%s'" +msgstr "" +"Ðе можам да го прочитам подножјето од\n" +"'%s'" + +#: plug-ins/common/tga.c:436 +#, c-format +msgid "" +"Cannot read extension from\n" +"'%s'" +msgstr "" +"Ðе можам да ја прочитам екÑтензијата од\n" +"'%s'" + +#: plug-ins/common/tga.c:1179 +msgid "Save as TGA" +msgstr "Зачувај како TGA" + +#. regular tga parameter settings +#: plug-ins/common/tga.c:1189 +msgid "Targa Options" +msgstr "Тарга опции" + +#. rle +#: plug-ins/common/tga.c:1198 +msgid "_RLE compression" +msgstr "_RLE компреÑија" + +#. origin +#: plug-ins/common/tga.c:1208 +msgid "Or_igin at bottom left" +msgstr "Почеток на дно-лево" + +#: plug-ins/common/threshold_alpha.c:96 +msgid "/Layer/Transparency/_Threshold Alpha..." +msgstr "/Слој/ПровидноÑÑ‚/Праг на Ðлфа..." + +#: plug-ins/common/threshold_alpha.c:131 +msgid "The layer preserves transparency." +msgstr "Слојот бара провидноÑÑ‚" + +#: plug-ins/common/threshold_alpha.c:137 +msgid "RGBA/GRAYA drawable is not selected." +msgstr "Ðе Ñте избрале RGBA/GRAYA цртеж" + +#: plug-ins/common/threshold_alpha.c:199 +msgid "Threshold Alpha: Coloring Transparency..." +msgstr "Праг на алфа: Бојам проѕирноÑÑ‚..." + +#: plug-ins/common/threshold_alpha.c:222 +msgid "Threshold Alpha" +msgstr "Праг на Ðлфа" + +#: plug-ins/common/threshold_alpha.c:243 +msgid "Threshold:" +msgstr "Праг:" + +#: plug-ins/common/tiff.c:688 +#, c-format +msgid "Page %d" +msgstr "Страна %d" + +#: plug-ins/common/tiff.c:702 +msgid "TIFF Channel" +msgstr "TIFF канал" + +#: plug-ins/common/tiff.c:711 +msgid "" +"Warning:\n" +"The image you are loading has 16 bits per channel. GIMP can only handle 8 " +"bit, so it will be converted for you. Information will be lost because of " +"this conversion." +msgstr "" +"Предупредување:\n" +"Сликата која ја вчитувате има 16 бита по канал. ГИПМ може да работи Ñамо Ñо 8 бита, " +"така да ова ќе Ñе преведе. Ќе бидат изгубени информации поради ова преведување." + +#: plug-ins/common/tiff.c:1683 +msgid "" +"The TIFF format only supports comments in\n" +"7bit ASCII encoding. No comment is saved." +msgstr "" +"TIFF форматот подржува Ñамо коментари во\n" +"7 битно ASCI кодирање. Коментарот не е зачуван." + +#: plug-ins/common/tiff.c:1813 +msgid "Save as TIFF" +msgstr "Зачувај како TIFF" + +#. compression +#: plug-ins/common/tiff.c:1827 +msgid "Compression" +msgstr "КомпреÑија" + +#: plug-ins/common/tiff.c:1832 +msgid "_LZW" +msgstr "_LZW" + +#: plug-ins/common/tiff.c:1833 +msgid "_Pack Bits" +msgstr "_Пакетно" + +#: plug-ins/common/tiff.c:1834 +msgid "_Deflate" +msgstr "И_здувај" + +#: plug-ins/common/tiff.c:1835 +msgid "_JPEG" +msgstr "_JPEG" + +# +#: plug-ins/common/tiff.c:1847 plug-ins/common/xbm.c:1196 +msgid "Comment:" +msgstr "Коментар:" + +#: plug-ins/common/tile.c:112 +msgid "/Filters/Map/_Tile..." +msgstr "/Филтери/Мапа/_Делчиња..." + +#: plug-ins/common/tile.c:190 plug-ins/common/tileit.c:323 +msgid "Tiling..." +msgstr "Делам..." + +#: plug-ins/common/tile.c:388 +msgid "Tile" +msgstr "Делче" + +#. parameter settings +#: plug-ins/common/tile.c:398 +msgid "Tile to New Size" +msgstr "Подели во нова големина" + +# +#: plug-ins/common/tile.c:422 +msgid "C_reate New Image" +msgstr "_Ðаправи нова Ñлика" + +#: plug-ins/common/tileit.c:228 +msgid "/Filters/Map/_Small Tiles..." +msgstr "/Филтери/Мапа/_Мали делчиња..." + +#. Get the preview image +#: plug-ins/common/tileit.c:371 +msgid "TileIt" +msgstr "Раздели" + +#. Area for buttons etc +#: plug-ins/common/tileit.c:418 +msgid "Flipping" +msgstr "Превртување" + +#: plug-ins/common/tileit.c:459 +msgid "Applied to Tile" +msgstr "Применето во делче" + +#: plug-ins/common/tileit.c:472 +msgid "A_ll Tiles" +msgstr "_Сите делчиња" + +#: plug-ins/common/tileit.c:486 +msgid "Al_ternate Tiles" +msgstr "_Дополнителни делчиња" + +#: plug-ins/common/tileit.c:500 +msgid "_Explicit Tile" +msgstr "_ЕкÑплицитно делење" + +#: plug-ins/common/tileit.c:506 +msgid "Ro_w:" +msgstr "_Ред:" + +#: plug-ins/common/tileit.c:530 +msgid "Col_umn:" +msgstr "_Колона:" + +# +#: plug-ins/common/tileit.c:586 +msgid "O_pacity:" +msgstr "Ð_епровидноÑÑ‚:" + +#. Lower frame saying howmany segments +#: plug-ins/common/tileit.c:597 +msgid "Segment Setting" +msgstr "ПодеÑување на Ñегментот" + +#: plug-ins/common/tiler.c:65 +msgid "/Filters/Map/_Make Seamless" +msgstr "/Филтери/Мапа/Вклопи" + +#: plug-ins/common/tiler.c:319 +msgid "Tiler..." +msgstr "Делител..." + +# +#: plug-ins/common/uniteditor.c:83 +msgid "Saved" +msgstr "Зачувано" + +#: plug-ins/common/uniteditor.c:83 +msgid "" +"A unit definition will only be saved before GIMP exits if this column is " +"checked." +msgstr "" +"Дефиницијата на единицата ќе биде зачувана Ñамо ако е штиклирано ова поле пред " +"излегувањето од ГИМП-от." + +#: plug-ins/common/uniteditor.c:85 +msgid "ID" +msgstr "Ознака" + +#: plug-ins/common/uniteditor.c:85 +msgid "This string will be used to identify a unit in GIMP's configuration files." +msgstr "Овој израз ќе Ñе кориÑти за идентификација на единицата во ГИМП-овата датотека за подеÑувања." + +#: plug-ins/common/uniteditor.c:87 +msgid "Factor" +msgstr "Фактор" + +#: plug-ins/common/uniteditor.c:87 +msgid "How many units make up an inch." +msgstr "Колку единици прават еден инч." + +#: plug-ins/common/uniteditor.c:88 +msgid "Digits" +msgstr "Бројки" + +#: plug-ins/common/uniteditor.c:88 +msgid "" +"This field is a hint for numerical input fields. It specifies how many " +"decimal digits the input field should provide to get approximately the same " +"accuracy as an \"inch\" input field with two decimal digits." +msgstr "" +"Ова поле Ñлужи за внеÑување на нумерички знакови. Во него одредуваме колку " +"децимални броеви ќе имаат приближно иÑта точноÑÑ‚ како \"инч\" полето " +"Ñо две децимални бројки." + +#: plug-ins/common/uniteditor.c:93 +msgid "Symbol" +msgstr "Симбол" + +#: plug-ins/common/uniteditor.c:93 +msgid "" +"The unit's symbol if it has one (e.g. \"'\" for inches). The unit's " +"abbreviation is used if doesn't have a symbol." +msgstr "" +"Симбол на мерната единица (пр. „'“ за инчи). Да Ñе употреби кратенка " +"ако нема Ñимбол." + +#: plug-ins/common/uniteditor.c:96 +msgid "Abbreviation" +msgstr "Кратенка" + +#: plug-ins/common/uniteditor.c:96 +msgid "The unit's abbreviation (e.g. \"cm\" for centimeters)." +msgstr "Кратенка на мерната единица (пр. \"cm\" за Ñантиметар)." + +#: plug-ins/common/uniteditor.c:98 +msgid "Singular" +msgstr "Еднина" + +#: plug-ins/common/uniteditor.c:98 +msgid "The unit's singular form." +msgstr "Единица во еднина" + +#: plug-ins/common/uniteditor.c:99 +msgid "Plural" +msgstr "Множина" + +#: plug-ins/common/uniteditor.c:99 +msgid "The unit's plural form." +msgstr "Единица во множина" + +#: plug-ins/common/uniteditor.c:117 +msgid "/Xtns/_Unit Editor" +msgstr "/Xtns/_Уредник на Единици..." + +#: plug-ins/common/uniteditor.c:171 +msgid "New Unit" +msgstr "Ðова единица" + +#: plug-ins/common/uniteditor.c:195 +msgid "_ID:" +msgstr "_ID:" + +#: plug-ins/common/uniteditor.c:206 +msgid "_Factor:" +msgstr "_Фактор:" + +#: plug-ins/common/uniteditor.c:216 +msgid "_Digits:" +msgstr "_Броеви:" + +#: plug-ins/common/uniteditor.c:228 +msgid "_Symbol:" +msgstr "_Симбол:" + +#: plug-ins/common/uniteditor.c:240 +msgid "_Abbreviation:" +msgstr "_Кратенка:" + +#: plug-ins/common/uniteditor.c:252 +msgid "Si_ngular:" +msgstr "Е_днина:" + +#: plug-ins/common/uniteditor.c:264 +msgid "_Plural:" +msgstr "_Множина:" + +#: plug-ins/common/uniteditor.c:300 +msgid "Unit factor must not be 0." +msgstr "Фактор на единицата не Ñмее да биде 0." + +#: plug-ins/common/uniteditor.c:310 +msgid "All text fields must contain a value." +msgstr "Сите полиња за текÑÑ‚ мораат да бидат пополнети." + +#: plug-ins/common/uniteditor.c:533 +msgid "Unit Editor" +msgstr "Уредник за единици" + +#: plug-ins/common/uniteditor.c:560 +msgid "Create a new unit from scratch." +msgstr "Ðаправи потполно нова единица" + +#: plug-ins/common/uniteditor.c:564 +msgid "Create a new unit with the currently seleted unit as template." +msgstr "Ðаправи нова единица Ñо тековно избраната како пример." + +#: plug-ins/common/unsharp.c:149 +msgid "/Filters/Enhance/_Unsharp Mask..." +msgstr "/Филтери/Зголеми/Симни ја оÑтрината од маÑката... " + +#: plug-ins/common/unsharp.c:361 +msgid "Merging..." +msgstr "Спојување..." + +#: plug-ins/common/unsharp.c:642 +msgid "Unsharp Mask" +msgstr "Симни ја оÑтрината на маÑката" + +#: plug-ins/common/video.c:49 +msgid "_Staggered" +msgstr "ПодзаÑтанување" + +#: plug-ins/common/video.c:50 +msgid "_Large staggered" +msgstr "Големо подзаÑтанување" + +#: plug-ins/common/video.c:51 +msgid "S_triped" +msgstr "_ИÑфрлено" + +#: plug-ins/common/video.c:52 +msgid "_Wide-striped" +msgstr "_Широко-иÑфрлено" + +#: plug-ins/common/video.c:53 +msgid "Lo_ng-staggered" +msgstr "Долго подзаÑтанување" + +#: plug-ins/common/video.c:54 +msgid "_3x3" +msgstr "_3x3" + +#: plug-ins/common/video.c:55 +msgid "Larg_e 3x3" +msgstr "_Голем 3x3" + +#: plug-ins/common/video.c:56 +msgid "_Hex" +msgstr "_Hex" + +#: plug-ins/common/video.c:57 +msgid "_Dots" +msgstr "_Точки" + +#: plug-ins/common/video.c:1828 +msgid "/Filters/Distorts/Vi_deo..." +msgstr "/Филтери/ДиÑторзии/_Видео..." + +#: plug-ins/common/video.c:1898 +msgid "Video/RGB..." +msgstr "Видео/RGB..." + +#: plug-ins/common/video.c:2141 +msgid "Video" +msgstr "Видео" + +#. frame for the radio buttons +#: plug-ins/common/video.c:2160 +msgid "RGB Pattern Type" +msgstr "Вид на RGB иÑечок" + +#: plug-ins/common/video.c:2170 +msgid "_Additive" +msgstr "_Дополнително" + +#: plug-ins/common/video.c:2180 +msgid "_Rotated" +msgstr "_Ротирано" + +#: plug-ins/common/vinvert.c:85 +msgid "/Filters/Colors/_Value Invert" +msgstr "/Филтери/Бои/Обратна _вредноÑÑ‚..." + +#: plug-ins/common/vinvert.c:124 +msgid "Value Invert..." +msgstr "Обратна вредноÑÑ‚..." + +#: plug-ins/common/vpropagate.c:190 +msgid "More _White (Larger Value)" +msgstr "Повеќе _бела (поголема вредноÑÑ‚)" + +#: plug-ins/common/vpropagate.c:193 +msgid "More Blac_k (Smaller Value)" +msgstr "Повеќе _црна (помала вредноÑÑ‚)" + +#: plug-ins/common/vpropagate.c:196 +msgid "_Middle Value to Peaks" +msgstr "_Средна вредноÑÑ‚ во врвовите" + +#: plug-ins/common/vpropagate.c:199 +msgid "_Foreground to Peaks" +msgstr "_Преден план во врвови" + +#: plug-ins/common/vpropagate.c:202 +msgid "O_nly Foreground" +msgstr "Са_мо преден план" + +#: plug-ins/common/vpropagate.c:205 +msgid "Only B_ackground" +msgstr "Само По_задина" + +#: plug-ins/common/vpropagate.c:208 +msgid "Mor_e Opaque" +msgstr "_Повеќе непровидноÑÑ‚" + +#: plug-ins/common/vpropagate.c:211 +msgid "More T_ransparent" +msgstr "Повеќе п_ровидноÑÑ‚" + +#: plug-ins/common/vpropagate.c:242 +msgid "/Filters/Distorts/_Value Propagate..." +msgstr "/Филтери/ДиÑторзии/_Ширење на вредноÑта..." + +# +#: plug-ins/common/vpropagate.c:254 +msgid "/Filters/Generic/E_rode" +msgstr "/Филтери/Општи/_Ерозија" + +#: plug-ins/common/vpropagate.c:266 +msgid "/Filters/Generic/_Dilate" +msgstr "/Филтери/Општи/Про_ширување" + +#: plug-ins/common/vpropagate.c:454 +msgid "Value Propagating..." +msgstr "Ја ширам вредноÑта..." + +#: plug-ins/common/vpropagate.c:1026 +msgid "Value Propagate" +msgstr "Ширење на вредноÑта" + +#. Propagate Mode +#: plug-ins/common/vpropagate.c:1041 +msgid "Propagate Mode" +msgstr "Режим на рекламирање" + +#: plug-ins/common/vpropagate.c:1082 +msgid "Lower T_hreshold:" +msgstr "Понизок _праг:" + +#: plug-ins/common/vpropagate.c:1091 +msgid "_Upper Threshold:" +msgstr "По_виÑок праг:" + +#: plug-ins/common/vpropagate.c:1100 +msgid "_Propagating Rate:" +msgstr "Ритам на _рекламирањето:" + +#: plug-ins/common/vpropagate.c:1112 +msgid "To L_eft" +msgstr "Ðа_лево" + +#: plug-ins/common/vpropagate.c:1115 +msgid "To _Right" +msgstr "Ðа_деÑно" + +#: plug-ins/common/vpropagate.c:1118 +msgid "To _Top" +msgstr "Ðа врв" + +#: plug-ins/common/vpropagate.c:1121 +msgid "To _Bottom" +msgstr "Ðа дно" + +#: plug-ins/common/vpropagate.c:1134 +msgid "Propagating _Alpha Channel" +msgstr "Рекламирам алфа канал" + +#: plug-ins/common/vpropagate.c:1144 +msgid "Propagating Value Channel" +msgstr "Рекламирам ВредноÑен Канал" + +#: plug-ins/common/warp.c:255 +msgid "/Filters/Map/_Warp..." +msgstr "/Филтери/Мапа/И_зобличено..." + +#: plug-ins/common/warp.c:402 +msgid "Warp" +msgstr "Изобличување" + +#: plug-ins/common/warp.c:416 +msgid "Main Options" +msgstr "Главни опции" + +#: plug-ins/common/warp.c:430 +msgid "Step Size:" +msgstr "Големина на чекорот:" + +#: plug-ins/common/warp.c:439 plug-ins/ifscompose/ifscompose.c:1289 +msgid "Iterations:" +msgstr "Итерации:" + +#. Displacement map menu +#: plug-ins/common/warp.c:446 +msgid "Displacement Map:" +msgstr "Мапа на размеÑтувањето:" + +#: plug-ins/common/warp.c:472 +msgid "Wrap" +msgstr "Завиткај" + +#: plug-ins/common/warp.c:487 +msgid "Smear" +msgstr "Размачкај" + +#: plug-ins/common/warp.c:502 plug-ins/fits/fits.c:987 +#: plug-ins/flame/flame.c:1096 plug-ins/gfig/gfig.c:2573 +msgid "Black" +msgstr "Црна" + +#: plug-ins/common/warp.c:517 +msgid "FG Color" +msgstr "FG боја" + +#. -------------------------------------------------------------------- +#. --------- The secondary table -------------------------- +#: plug-ins/common/warp.c:540 +msgid "Secondary Options" +msgstr "Секундарни опции" + +#: plug-ins/common/warp.c:552 +msgid "Dither Size:" +msgstr "Големина на дитер:" + +#: plug-ins/common/warp.c:561 +msgid "Rotation Angle:" +msgstr "Ðгол на ротација:" + +#: plug-ins/common/warp.c:570 +msgid "Substeps:" +msgstr "Подчекори:" + +#. Magnitude map menu +#: plug-ins/common/warp.c:577 +msgid "Magnitude Map:" +msgstr "Мапа на магнитудата:" + +#: plug-ins/common/warp.c:596 +msgid "Use Mag Map" +msgstr "КориÑти ја Маг мапата:" + +#. -------------------------------------------------------------------- +#. --------- The "other" table -------------------------- +#: plug-ins/common/warp.c:613 +msgid "Other Options" +msgstr "Други опции" + +#: plug-ins/common/warp.c:626 +msgid "Gradient Scale:" +msgstr "Скала на градиентот:" + +#: plug-ins/common/warp.c:641 +msgid "Gradient map selection menu" +msgstr "Мени за Ñелекција на мапа на градиентот" + +# +#: plug-ins/common/warp.c:651 +msgid "Vector Mag:" +msgstr "Вектор Маг:" + +#. Angle +#: plug-ins/common/warp.c:662 plug-ins/ifscompose/ifscompose.c:597 +msgid "Angle:" +msgstr "Ðгол:" + +#: plug-ins/common/warp.c:677 +msgid "Fixed-direction-vector map selection menu" +msgstr "Мени за избор на мапа на векторот Ñо фикÑна наÑока" + +#. +#. if (display_diff_map) { +#. gimp_display_new(new_image_id); +#. } +#. +#. make sure layer is visible +#: plug-ins/common/warp.c:1139 +msgid "Smoothing X gradient..." +msgstr "Го измазнувам X преливот..." + +#: plug-ins/common/warp.c:1141 +msgid "Smoothing Y gradient..." +msgstr "Го измазнувам Y преливот..." + +#. calculate new X,Y Displacement image maps +#: plug-ins/common/warp.c:1196 +msgid "Finding XY gradient..." +msgstr "Ги наоѓам XY преливите..." + +#: plug-ins/common/warp.c:1219 +#, c-format +msgid "Flow Step %d..." +msgstr "Пловечки чекор %d..." + +#: plug-ins/common/waves.c:125 +msgid "/Filters/Distorts/_Waves..." +msgstr "/Филтери/ДиÑторзии/_Бранови..." + +#: plug-ins/common/waves.c:294 +msgid "Waves" +msgstr "Бранови" + +#: plug-ins/common/waves.c:334 +msgid "_Reflective" +msgstr "_РефлекÑно" + +#: plug-ins/common/waves.c:354 +msgid "_Amplitude:" +msgstr "_Ðмплитуда:" + +#: plug-ins/common/waves.c:363 +msgid "_Phase:" +msgstr "_Фаза:" + +#: plug-ins/common/waves.c:372 +msgid "_Wavelength:" +msgstr "Бранова _должина:" + +#: plug-ins/common/waves.c:526 +msgid "Waving..." +msgstr "Бранувам..." + +#: plug-ins/common/webbrowser.c:141 +msgid "" +"Web browser not specified.\n" +"Please specify a web browser using the Preferences Dialog." +msgstr "" +"Ðе е одреден веб прегледувач.\n" +"Ве молам одредете прегледувач Ñо кориÑтење на прозорот ПодеÑувања." + +#: plug-ins/common/webbrowser.c:161 +#, c-format +msgid "" +"Could not parse specified web browser command:\n" +"%s" +msgstr "" +"Ðе можам да ја обработам наведената команда за веб прегледувачот:\n" +"%s" + +#: plug-ins/common/webbrowser.c:174 +#, c-format +msgid "" +"Could not execute specified web browser:\n" +"%s" +msgstr "" +"Ðе можам да го подигнам наведениот веб преглеувач:\n" +"%s" + +#: plug-ins/common/whirlpinch.c:184 +msgid "/Filters/Distorts/W_hirl and Pinch..." +msgstr "/Филтери/ДиÑторзии/W_hirl and Pinch..." + +#: plug-ins/common/whirlpinch.c:374 +msgid "Whirling and Pinching..." +msgstr "Whirling and Pinching..." + +#: plug-ins/common/whirlpinch.c:646 +msgid "Whirl and Pinch" +msgstr "Whirl and Pinch" + +#: plug-ins/common/whirlpinch.c:696 +msgid "_Whirl Angle:" +msgstr "_Whirl Ðгол:" + +#: plug-ins/common/whirlpinch.c:705 +msgid "_Pinch Amount:" +msgstr "_Pinch вредноÑÑ‚:" + +#: plug-ins/common/winclipboard.c:109 +msgid "/Edit/Copy to Clipboard" +msgstr "/Уреди/Копирај во инÑерти" + +#: plug-ins/common/winclipboard.c:121 +msgid "/Edit/Paste from Clipboard" +msgstr "/Уреди/ПренеÑи од инÑерти" + +#: plug-ins/common/winclipboard.c:133 +msgid "/File/Acquire/From Clipboard" +msgstr "/Датотека/Извлечи/Од инÑерти" + +#: plug-ins/common/winclipboard.c:308 +msgid "Copying..." +msgstr "Копирам..." + +#: plug-ins/common/winclipboard.c:471 +msgid "Unsupported format or Clipboard empty!" +msgstr "Ðеподржан формат или инÑерти Ñе празни!" + +#: plug-ins/common/winclipboard.c:482 +msgid "Can't get Clipboard data." +msgstr "Ðе можам да добијам податоци од инÑерти." + +#. ??? gimp_image_convert_rgb (image_ID); +#. +#: plug-ins/common/winclipboard.c:564 +msgid "Pasted" +msgstr "Вметнато" + +#: plug-ins/common/winclipboard.c:577 +msgid "Pasting..." +msgstr "Вметнувам" + +#: plug-ins/common/wind.c:190 +msgid "/Filters/Distorts/Wi_nd..." +msgstr "/Филтери/ДиÑторзии/Ве_тер..." + +#: plug-ins/common/wind.c:322 +msgid "Rendering Blast..." +msgstr "ИÑцртувам екÑплозија..." + +#: plug-ins/common/wind.c:441 +msgid "Rendering Wind..." +msgstr "ИÑцртувам Ветер..." + +#: plug-ins/common/wind.c:872 +msgid "Wind" +msgstr "Ветер" + +#. ******************************************************** +#. radio buttons for choosing wind rendering algorithm +#. ***************************************************** +#: plug-ins/common/wind.c:915 plug-ins/maze/maze_face.c:298 +msgid "Style" +msgstr "Стил" + +#: plug-ins/common/wind.c:919 +msgid "_Wind" +msgstr "_Ветер" + +#: plug-ins/common/wind.c:920 +msgid "_Blast" +msgstr "_ЕкÑплозија" + +#: plug-ins/common/wind.c:939 +msgid "_Left" +msgstr "_Лево" + +#: plug-ins/common/wind.c:940 +msgid "_Right" +msgstr "_ДеÑно" + +#. **************************************************** +#. radio buttons for choosing BOTH, LEADING, TRAILING +#. ************************************************** +#: plug-ins/common/wind.c:955 +msgid "Edge Affected" +msgstr "Ивицата е променета" + +#: plug-ins/common/wind.c:959 +msgid "L_eading" +msgstr "Ð’_одење" + +#: plug-ins/common/wind.c:960 +msgid "Tr_ailing" +msgstr "_Следење" + +#: plug-ins/common/wind.c:961 +msgid "Bot_h" +msgstr "_Двете" + +#: plug-ins/common/wind.c:992 +msgid "Higher values restrict the effect to fewer areas of the image" +msgstr "Поголеми вредноÑти го намалуват ефектот на помалку облаÑти на Ñликата" + +#: plug-ins/common/wind.c:1007 plug-ins/gimpressionist/orientmap.c:600 +msgid "_Strength:" +msgstr "_Јачина:" + +#: plug-ins/common/wind.c:1011 +msgid "Higher values increase the magnitude of the effect" +msgstr "Поголеми вредноÑти ја зголемуваат Ñилата на ефектот" + +#: plug-ins/common/winprint.c:186 +msgid "/File/_Print" +msgstr "/Датотека/_Печати" + +#: plug-ins/common/winprint.c:198 +msgid "/File/Page Setup" +msgstr "/Датотека/ПодеÑување на Ñтраната" + +#: plug-ins/common/winprint.c:300 +#, c-format +msgid "PrintDlg failed: %d" +msgstr "PrintDlg не уÑпеа: %d" + +#: plug-ins/common/winprint.c:336 +msgid "Printer doesn't support bitmaps" +msgstr "Печатарот не подржува битмапи" + +#: plug-ins/common/winprint.c:378 +msgid "StartPage failed" +msgstr "Грешка на почетната Ñтраница" + +#: plug-ins/common/winprint.c:387 plug-ins/print/print-image-gimp.c:320 +msgid "Printing..." +msgstr "Печатам..." + +#: plug-ins/common/winprint.c:419 +msgid "CreateDIBSection failed" +msgstr "CreateDIBSection грешка" + +#: plug-ins/common/winprint.c:453 +msgid "SetStretchBltMode failed (warning only)" +msgstr "SetStretchBltMode грешка (Ñамо предупредување)" + +#: plug-ins/common/winprint.c:516 +#, c-format +msgid "" +"StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, " +"error = %d, y = %d" +msgstr "" +"StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) не уÑпеа, " +"грешка = %d, y = %d" + +#: plug-ins/common/winprint.c:545 +msgid "EndPage failed" +msgstr "EndPage не уÑпеа" + +#: plug-ins/common/winprint.c:592 +#, c-format +msgid "PageSetupDlg failed: %d" +msgstr "PageSetupDlg на уÑпеа: %d" + +# +#: plug-ins/common/wmf.c:202 +msgid "Load Windows Metafile" +msgstr "Вчитај Windows метадатотека" + +#. Rendering +#: plug-ins/common/wmf.c:212 +#, c-format +msgid "Rendering %s" +msgstr "Рендерирам %s" + +# +#: plug-ins/common/wmf.c:236 +msgid "Scale (log 2):" +msgstr "Скала (лог 2):" + +#: plug-ins/common/wmf.c:396 +#, c-format +msgid "Could not open '%s' for reading." +msgstr "Ðе можам да ја отворам '%s' за читање." + +#: plug-ins/common/wmf.c:415 +msgid "Rendered WMF" +msgstr "Рендерирам WMF" + +#: plug-ins/common/xbm.c:240 +msgid "Created with The GIMP" +msgstr "Ðаправено Ñо ГИМП" + +#: plug-ins/common/xbm.c:802 +#, c-format +msgid "" +"'%s':\n" +"Could not read header (ftell == %ld)" +msgstr "" +"„%s“:\n" +"Ðе можам да го прочитам заглавјето (ftell == %ld)" + +#: plug-ins/common/xbm.c:809 +#, c-format +msgid "" +"'%s':\n" +"No image width specified" +msgstr "" +"„%s“:\n" +"Ðе Ñте ја одредиле ширината на Ñликата" + +#: plug-ins/common/xbm.c:815 +#, c-format +msgid "" +"'%s':\n" +"No image height specified" +msgstr "" +"„%s“:\n" +"Ðе Ñте ја одредиле виÑината на Ñликата" + +#: plug-ins/common/xbm.c:821 +#, c-format +msgid "" +"'%s':\n" +"No image data type specified" +msgstr "" +"„%s“:\n" +"Ðе Ñте го одредиле типот на Ñликата" + +#. The image is not black-and-white. +#: plug-ins/common/xbm.c:955 +msgid "" +"The image which you are trying to save as an XBM contains more than two " +"colors.\n" +"\n" +"Please convert it to a black and white (1-bit) indexed image and try again." +msgstr "" +"Сликата која пробувате да ја зачувате како XBM Ñодржи повеќе\n" +"од две бои.\n" +"\n" +"Ве молам префлете ја во црно-бела (1 битна) индекÑирана Ñлика и пробајте повторно." + +# +#: plug-ins/common/xbm.c:966 +msgid "" +"You cannot save a cursor mask for an image\n" +"which has no alpha channel." +msgstr "" +"Ðе можете да ја зачувате маÑката на курÑорот на Ñлики\n" +"кои немаат алфа канал." + +#: plug-ins/common/xbm.c:1142 +msgid "Save as XBM" +msgstr "Зачувај како XBM" + +#. parameter settings +#: plug-ins/common/xbm.c:1152 +msgid "XBM Options" +msgstr "XBM опции" + +# +#. X10 format +#: plug-ins/common/xbm.c:1162 +msgid "_X10 Format Bitmap" +msgstr "_X10 Формат на Битмапа" + +# +#: plug-ins/common/xbm.c:1182 +msgid "_Identifier Prefix:" +msgstr "_ПрефикÑ:" + +#. hotspot toggle +#: plug-ins/common/xbm.c:1204 +msgid "_Write Hot Spot Values" +msgstr "_Впиши ХотСпот вредноÑти" + +# +#: plug-ins/common/xbm.c:1226 +msgid "Hot Spot _X:" +msgstr "Хот Спот _X:" + +# +#. mask file +#: plug-ins/common/xbm.c:1243 +msgid "Mask File" +msgstr "Датотека на МаÑката:" + +#: plug-ins/common/xbm.c:1254 +msgid "W_rite Extra Mask File" +msgstr "Впи_ши екÑтра датотека на маÑката" + +# +#: plug-ins/common/xbm.c:1267 +msgid "_Mask File Extension:" +msgstr "_ЕкÑтензија на МаÑката:" + +#: plug-ins/common/xpm.c:340 +#, c-format +msgid "Error opening file '%s'" +msgstr "Грешка во отварање на датотеката '%s'" + +#: plug-ins/common/xpm.c:344 +msgid "XPM file invalid" +msgstr "Ðеправилна XPM датотека" + +# +#: plug-ins/common/xpm.c:770 +msgid "Save as XPM" +msgstr "Зачувај како XPM" + +# +#: plug-ins/common/xpm.c:792 +msgid "_Alpha Threshold:" +msgstr "_Ðлфа Праг:" + +#: plug-ins/common/xwd.c:391 +#, c-format +msgid "Could not read XWD header from '%s'" +msgstr "Ðе можам да го прочитам XWD заглавието од '%s'" + +#: plug-ins/common/xwd.c:426 +msgid "can't read color entries" +msgstr "не можам да ги прочитам влезовите на бои" + +#: plug-ins/common/xwd.c:483 +#, c-format +msgid "" +"load_image (xwd): XWD-file %s has format %d, depth %d\n" +"and bits per pixel %d.\n" +"Currently this is not supported.\n" +msgstr "" +"вчитај_Ñлика (xwd): XWD-датотеката '%s' е од формат %d, длабочина %d\n" +"и битови по пикÑел %d.\n" +"Во моментов не е подржана.\n" + +# +#: plug-ins/common/xwd.c:510 +msgid "Cannot save images with alpha channels." +msgstr "Ðе можам да зачувувам Ñлики Ñо алфа канали." + +#: plug-ins/common/xwd.c:1233 +msgid "EOF encountered on " +msgstr "EOF пронајден на " + +#: plug-ins/common/xwd.c:1379 +msgid "No memory for mapping colors" +msgstr "Ðема меморија за мапирање на бои" + +#: plug-ins/common/xwd.c:2064 +msgid "Error during writing indexed/grey image" +msgstr "Грешка при запишувањето на индекÑираната/Ñива Ñлика" + +#: plug-ins/common/xwd.c:2153 +msgid "Error during writing rgb image" +msgstr "Грешка при запишувањето на rgb Ñликата" + +#: plug-ins/common/zealouscrop.c:69 +msgid "/Layer/Transform/_Zealous Crop" +msgstr "/Слој/ТранÑформирај/_Zealous отÑечок" + +#: plug-ins/common/zealouscrop.c:115 +msgid "ZealousCropping(tm)..." +msgstr "Zealous одÑекување(tm)..." + +#: plug-ins/common/zealouscrop.c:216 +msgid "Nothing to crop." +msgstr "Ðишто за Ñечење." + +# +#: plug-ins/dbbrowser/dbbrowser.c:89 +msgid "/Xtns/_DB Browser" +msgstr "/Xtns/_DB Пребарувач..." + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:118 +#: plug-ins/dbbrowser/dbbrowser_utils.c:132 +msgid "DB Browser" +msgstr "DB Пребарувач" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:122 +#: plug-ins/dbbrowser/dbbrowser_utils.c:136 +msgid "Search by _Name" +msgstr "Барај по _Име" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:123 +#: plug-ins/dbbrowser/dbbrowser_utils.c:137 +msgid "Search by _Blurb" +msgstr "Барај по _ОпиÑ" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:205 +msgid "_Search:" +msgstr "_Барај:" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:366 +msgid "In:" +msgstr "Во:" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:414 +msgid "Out:" +msgstr "Ðадвор:" + +#: plug-ins/dbbrowser/dbbrowser_utils.c:486 +msgid "Author:" +msgstr "Ðвтор:" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:494 +msgid "Date:" +msgstr "Дата:" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:502 +msgid "Copyright:" +msgstr "ÐвторÑки права:" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:579 +msgid "Searching by name - please wait" +msgstr "Пребарувам по име - ве молам почекајте" + +# +#: plug-ins/dbbrowser/dbbrowser_utils.c:603 +msgid "Searching by blurb - please wait" +msgstr "Пребарувам по Ð¾Ð¿Ð¸Ñ - ве молам почекајте" + +#: plug-ins/dbbrowser/dbbrowser_utils.c:613 +msgid "Searching - please wait" +msgstr "Барам - ве молам почекајте" + +#: plug-ins/dbbrowser/dbbrowser_utils.c:650 +msgid "No matches" +msgstr "Ðема поклопувања" + +# +#: plug-ins/fits/fits.c:346 +msgid "Error during open of FITS file" +msgstr "Грешка при отварањето на FITS датотеката" + +#: plug-ins/fits/fits.c:351 +msgid "FITS file keeps no displayable images" +msgstr "FITS датотеката Ñодржи Ñлики кои не можат да Ñе прикажат" + +# +#: plug-ins/fits/fits.c:430 +msgid "FITS save cannot handle images with alpha channels" +msgstr "FITS зачувувањето не може да ракува Ñо алфа канали" + +#: plug-ins/fits/fits.c:968 +msgid "Load FITS File" +msgstr "Вчитувам FITS датотека" + +#: plug-ins/fits/fits.c:983 +msgid "BLANK/NaN Pixel Replacement" +msgstr "ПРÐЗÐО/NaN пикÑел премеÑтување" + +# +#: plug-ins/fits/fits.c:988 plug-ins/gfig/gfig.c:2078 +#: plug-ins/gfig/gfig.c:2574 +msgid "White" +msgstr "Бело" + +#: plug-ins/fits/fits.c:995 +msgid "Pixel Value Scaling" +msgstr "Скала на вредноÑти на пикÑелот" + +#: plug-ins/fits/fits.c:1000 +msgid "By DATAMIN/DATAMAX" +msgstr "По DATAMIN/DATAMAX" + +#: plug-ins/fits/fits.c:1007 +msgid "Image Composing" +msgstr "Создавање на Ñлика" + +#: plug-ins/flame/flame.c:139 +msgid "/Filters/Render/Nature/_Flame..." +msgstr "/Филтери/Рендерирање/Природа/_Оган..." + +#: plug-ins/flame/flame.c:226 +msgid "Drawing Flame..." +msgstr "Цртам Оган..." + +#: plug-ins/flame/flame.c:308 +msgid "Flame works only on RGB drawables." +msgstr "Можам да работам Ñамо на RGB цртежи." + +#: plug-ins/flame/flame.c:393 +#, c-format +msgid "'%s' is not a regular file" +msgstr "„%s“: не е регуларна датотека" + +#: plug-ins/flame/flame.c:608 +msgid "Edit Flame" +msgstr "Уреди Оган" + +#: plug-ins/flame/flame.c:626 +msgid "Directions" +msgstr "ÐаÑоки" + +#: plug-ins/flame/flame.c:657 +msgid "Controls" +msgstr "Контроли" + +#: plug-ins/flame/flame.c:672 +msgid "_Speed:" +msgstr "_Брзина:" + +#: plug-ins/flame/flame.c:689 +msgid "_Randomize" +msgstr "Стихијно" + +#: plug-ins/flame/flame.c:702 +msgid "Same" +msgstr "ИÑто" + +#: plug-ins/flame/flame.c:703 plug-ins/gimpressionist/orientation.c:128 +#: plug-ins/gimpressionist/size.c:120 +msgid "Random" +msgstr "Стихијно" + +#: plug-ins/flame/flame.c:707 +msgid "Swirl" +msgstr "Вир" + +#: plug-ins/flame/flame.c:708 +msgid "Horseshoe" +msgstr "Потковица" + +#: plug-ins/flame/flame.c:709 plug-ins/gfig/gfig.c:2558 +msgid "Polar" +msgstr "Поларно" + +#: plug-ins/flame/flame.c:710 +msgid "Bent" +msgstr "СвиеноÑÑ‚" + +#: plug-ins/flame/flame.c:716 +msgid "_Variation:" +msgstr "_Вариација:" + +#: plug-ins/flame/flame.c:747 +msgid "Load Flame" +msgstr "Вчитувам оган" + +#: plug-ins/flame/flame.c:769 +msgid "Save Flame" +msgstr "Зачувај Оган" + +#: plug-ins/flame/flame.c:899 plug-ins/flame/flame.c:932 +msgid "Flame" +msgstr "Оган" + +#: plug-ins/flame/flame.c:981 +msgid "_Rendering" +msgstr "_Рендерирам" + +#: plug-ins/flame/flame.c:1007 +msgid "Co_ntrast:" +msgstr "_КонтраÑÑ‚:" + +#: plug-ins/flame/flame.c:1021 +msgid "_Gamma:" +msgstr "_Гама:" + +#: plug-ins/flame/flame.c:1035 +msgid "Sample _Density:" +msgstr "Пример на _оÑетливоÑÑ‚:" + +#: plug-ins/flame/flame.c:1046 +msgid "Spa_tial Oversample:" +msgstr "Прек_лопување на проÑторот:" + +#: plug-ins/flame/flame.c:1057 +msgid "Spatial _Filter Radius:" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° проÑторниот _филтер:" + +#: plug-ins/flame/flame.c:1084 +msgid "Color_map:" +msgstr "_Мапа на боја:" + +#: plug-ins/flame/flame.c:1133 +msgid "Custom Gradient" +msgstr "ПоÑебен прелив" + +#: plug-ins/flame/flame.c:1157 +msgid "C_amera" +msgstr "Ка_мера" + +#: plug-ins/flame/flame.c:1162 +msgid "_Zoom:" +msgstr "_Зголеми:" + +#: plug-ins/fp/fp.c:92 +msgid "/Filters/Colors/_Filter Pack..." +msgstr "/Филтери/Бои/Пакетен Филтер..." + +#: plug-ins/fp/fp.c:127 +msgid "Convert the image to RGB first!" +msgstr "Конвертирај ја Ñликата прво во RGB!" + +#: plug-ins/fp/fp.c:132 +msgid "Applying the Filter Pack..." +msgstr "Применувам пакетен филтер..." + +#: plug-ins/fp/fp_gtk.c:35 +msgid "Darker:" +msgstr "Потемно:" + +#: plug-ins/fp/fp_gtk.c:36 +msgid "Lighter:" +msgstr "ПоÑветло:" + +#: plug-ins/fp/fp_gtk.c:38 +msgid "More Sat:" +msgstr "Повеќе Sat:" + +#: plug-ins/fp/fp_gtk.c:39 +msgid "Less Sat:" +msgstr "Помалку Sat:" + +#. All the previews +#: plug-ins/fp/fp_gtk.c:41 plug-ins/fp/fp_gtk.c:98 +msgid "Current:" +msgstr "Тeковно:" + +#: plug-ins/fp/fp_gtk.c:95 +msgid "Before and After" +msgstr "Пред и Потоа" + +#: plug-ins/fp/fp_gtk.c:102 +msgid "Original:" +msgstr "Оригинал:" + +#: plug-ins/fp/fp_gtk.c:206 +msgid "Hue Variations" +msgstr "Xue Вариации" + +#: plug-ins/fp/fp_gtk.c:222 +msgid "Roughness" +msgstr "Црвенило" + +#: plug-ins/fp/fp_gtk.c:252 +msgid "Affected Range" +msgstr "ЗаÑегнатно подрачје" + +#: plug-ins/fp/fp_gtk.c:261 +msgid "Sha_dows" +msgstr "Се_нки" + +#: plug-ins/fp/fp_gtk.c:265 +msgid "_Midtones" +msgstr "_Средни тонови" + +#: plug-ins/fp/fp_gtk.c:269 +msgid "H_ighlights" +msgstr "_ОÑветленоÑÑ‚" + +#: plug-ins/fp/fp_gtk.c:282 +msgid "Windows" +msgstr "Прозорци" + +#: plug-ins/fp/fp_gtk.c:303 +msgid "A_dvanced" +msgstr "_Ðапредно" + +#: plug-ins/fp/fp_gtk.c:351 +msgid "Value Variations" +msgstr "Варијации на вредноÑта" + +#: plug-ins/fp/fp_gtk.c:400 +msgid "Saturation Variations" +msgstr "Варијации на заÑитеноÑта" + +# #: libgimp/gimpfileselection.c:355 +# #: libgimp/gimpunitmenu.c:510 +# msgid "Select" +# msgstr "Odabir" +# +#: plug-ins/fp/fp_gtk.c:416 +msgid "Select Pixels by" +msgstr "Избери пикÑели од" + +#: plug-ins/fp/fp_gtk.c:424 +msgid "H_ue" +msgstr "Ðи_јанÑа:" + +#: plug-ins/fp/fp_gtk.c:428 +msgid "Satu_ration" +msgstr "_ЗаÑитување" + +#: plug-ins/fp/fp_gtk.c:432 +msgid "V_alue" +msgstr "_ВредноÑÑ‚" + +#: plug-ins/fp/fp_gtk.c:445 +msgid "Show" +msgstr "Прикажи" + +#: plug-ins/fp/fp_gtk.c:453 +msgid "_Entire Image" +msgstr "_Цела Слика" + +#: plug-ins/fp/fp_gtk.c:458 +msgid "Se_lection Only" +msgstr "Само Ñе_лекција" + +#: plug-ins/fp/fp_gtk.c:463 +msgid "Selec_tion In Context" +msgstr "Селекција во контекÑтот" + +#: plug-ins/fp/fp_gtk.c:477 +msgid "Display" +msgstr "Приказ" + +#: plug-ins/fp/fp_gtk.c:486 +msgid "CirclePalette" +msgstr "Кружна Палета" + +#: plug-ins/fp/fp_gtk.c:489 +msgid "Lighter And Darker" +msgstr "ПоÑветло и Потемно" + +#. ****************************************************************** +#. ************************ All the Standard Stuff ****************** +#: plug-ins/fp/fp_gtk.c:926 +msgid "Filter Pack Simulation" +msgstr "Симулација на пакетниот филтер" + +#: plug-ins/fp/fp_gtk.c:1045 +msgid "Shadows:" +msgstr "Сенки:" + +#: plug-ins/fp/fp_gtk.c:1046 +msgid "Midtones:" +msgstr "Средни Тонови:" + +#: plug-ins/fp/fp_gtk.c:1047 +msgid "Highlights:" +msgstr "Јаки Ñветла:" + +#: plug-ins/fp/fp_gtk.c:1061 +msgid "Advanced Filter Pack Options" +msgstr "Ðапредни можноÑти на пакетниот филтер" + +#: plug-ins/fp/fp_gtk.c:1072 +msgid "Smoothness of Aliasing" +msgstr "Измазнување на порамнувањето" + +#. ****************** MISC OPTIONS ************************** +#: plug-ins/fp/fp_gtk.c:1161 +msgid "Miscellaneous Options" +msgstr "Разни опции" + +#: plug-ins/fp/fp_gtk.c:1172 +msgid "Preview as You Drag" +msgstr "Преглед додека влечам" + +#: plug-ins/fp/fp_gtk.c:1176 +msgid "Preview Size" +msgstr "Големина на прегледот" + +#: plug-ins/gfig/gfig.c:347 +msgid "/Filters/Render/_Gfig..." +msgstr "/Филтери/Рендерирање/_Gfig..." + +#: plug-ins/gfig/gfig.c:623 +msgid "First Gfig" +msgstr "Прв Gfig" + +#: plug-ins/gfig/gfig.c:1120 +msgid "Save Gfig Drawing" +msgstr "Избриши Gfig цртеж" + +#: plug-ins/gfig/gfig.c:1273 +msgid "Show previous object" +msgstr "Прикажи претходен објект" + +#: plug-ins/gfig/gfig.c:1286 +msgid "Show next object" +msgstr "Прикажи Ñледен објект" + +#: plug-ins/gfig/gfig.c:1298 +msgid "All" +msgstr "Се" + +#: plug-ins/gfig/gfig.c:1299 +msgid "Show all objects" +msgstr "Прикажи ги Ñите објекти" + +#: plug-ins/gfig/gfig.c:1400 +msgid "Number of Sides/Points/Turns:" +msgstr "Број на Страни/Точки/Кругови:" + +#: plug-ins/gfig/gfig.c:1416 +msgid "Clockwise" +msgstr "Во правец на Ñтрелките на чаÑовникот" + +#: plug-ins/gfig/gfig.c:1417 +msgid "Anti-Clockwise" +msgstr "Обратно од Ñтрелките на чаÑовникот" + +#: plug-ins/gfig/gfig.c:1421 plug-ins/gimpressionist/orientation.c:100 +#: plug-ins/print/gimp_main_window.c:499 +msgid "Orientation:" +msgstr "Ориентација:" + +#: plug-ins/gfig/gfig.c:1453 +msgid "Create line" +msgstr "Ðаправи линија" + +#: plug-ins/gfig/gfig.c:1458 +msgid "Create circle" +msgstr "Ðаправи круг" + +#: plug-ins/gfig/gfig.c:1463 +msgid "Create ellipse" +msgstr "Ðаправи елипÑа" + +#: plug-ins/gfig/gfig.c:1468 +msgid "Create arch" +msgstr "Ðаправи лак" + +#: plug-ins/gfig/gfig.c:1477 +msgid "Create reg polygon" +msgstr "Ðаправи полигон" + +#: plug-ins/gfig/gfig.c:1485 +msgid "Create star" +msgstr "Ðаправи ѕвезда" + +#: plug-ins/gfig/gfig.c:1494 +msgid "Create spiral" +msgstr "Ðаправи Ñпирала" + +#: plug-ins/gfig/gfig.c:1504 +msgid "Create bezier curve. Shift + Button ends object creation." +msgstr "Ðаправи Берзиева крива. Shift + Копче го завршува креирањето." + +#: plug-ins/gfig/gfig.c:1510 +msgid "Move an object" +msgstr "ПомеÑти објект" + +#: plug-ins/gfig/gfig.c:1515 +msgid "Move a single point" +msgstr "ПомеÑти една точка" + +#: plug-ins/gfig/gfig.c:1520 +msgid "Copy an object" +msgstr "Копирај објект" + +#: plug-ins/gfig/gfig.c:1525 +msgid "Delete an object" +msgstr "Избриши објект" + +#: plug-ins/gfig/gfig.c:1681 plug-ins/gfig/gfig.c:2057 +#: plug-ins/gfig/gfig.c:2975 +msgid "Brush" +msgstr "Четка" + +#: plug-ins/gfig/gfig.c:1682 +msgid "Airbrush" +msgstr "Воздушна четка" + +#: plug-ins/gfig/gfig.c:1683 +msgid "Pencil" +msgstr "Пенкало" + +#: plug-ins/gfig/gfig.c:1684 plug-ins/gfig/gfig.c:2442 +msgid "Pattern" +msgstr "МоÑтра" + +#: plug-ins/gfig/gfig.c:1691 +msgid "" +"Use the brush/pencil or the airbrush when drawing on the image. Pattern " +"paints with currently selected brush with a pattern. Only applies to circles/" +"ellipses if Approx. Circles/Ellipses toggle is set." +msgstr "" +"КориÑтете четка/пенкало или Ñпреј кога цртате на Ñликата. МоÑтрата бои Ñо тековно " +"избраната четка Ñо моÑтрата. Се применува Ñамо на кругови/елипÑи ако е вклучено менувањето на ПроÑ. Кругови/ЕлипÑи." + +#: plug-ins/gfig/gfig.c:2038 plug-ins/rcm/rcm_dialog.c:129 +msgid "Original" +msgstr "Оригинал" + +#: plug-ins/gfig/gfig.c:2039 +msgid "New" +msgstr "Ðов" + +#: plug-ins/gfig/gfig.c:2040 +msgid "Multiple" +msgstr "Повеќекратно" + +#: plug-ins/gfig/gfig.c:2045 +msgid "Draw all objects on one layer (original or new) or one object per layer" +msgstr "Ги црта Ñите објекти на еден Ñлој (оригинален или нов) или еден објект по Ñлој" + +#: plug-ins/gfig/gfig.c:2050 +msgid "Draw on:" +msgstr "Цртај на:" + +#. Create selection +#: plug-ins/gfig/gfig.c:2058 plug-ins/imagemap/imap_selection.c:365 +#: plug-ins/rcm/rcm_dialog.c:708 +msgid "Selection" +msgstr "Селекција" + +#: plug-ins/gfig/gfig.c:2059 +msgid "Selection+Fill" +msgstr "Селекција+Пополни" + +#: plug-ins/gfig/gfig.c:2064 +msgid "" +"Draw type. Either a brush or a selection. See brush page or selection page " +"for more options" +msgstr "" +"Вид на цртање. Четка или Ñо Ñелекција. Види ја Ñтраната за четки или Ñелекции за " +"повеќе опции." + +#: plug-ins/gfig/gfig.c:2068 +msgid "Using:" +msgstr "КориÑтам:" + +#: plug-ins/gfig/gfig.c:2075 plug-ins/gimpressionist/general.c:120 +msgid "Transparent" +msgstr "Провидно" + +#: plug-ins/gfig/gfig.c:2077 plug-ins/gfig/gfig.c:2443 +msgid "Foreground" +msgstr "Преден план" + +#: plug-ins/gfig/gfig.c:2079 plug-ins/imagemap/imap_cmd_copy.c:54 +#: plug-ins/imagemap/imap_cmd_copy_object.c:55 +#: plug-ins/imagemap/imap_toolbar.c:127 +msgid "Copy" +msgstr "Копирај" + +#: plug-ins/gfig/gfig.c:2083 +msgid "" +"Layer background type. Copy causes previous layer to be copied before the " +"draw is performed" +msgstr "" +"Тип на Ñлојот на позадината. Копирањето предизвикува предходниот Ñлој да Ñе копира " +"пред да Ñе изведе цртање" + +#: plug-ins/gfig/gfig.c:2088 +msgid "With BG of:" +msgstr "Со позадина од:" + +#: plug-ins/gfig/gfig.c:2091 +msgid "Reverse Line" +msgstr "Обратно" + +#: plug-ins/gfig/gfig.c:2098 +msgid "Draw lines in reverse order" +msgstr "Цртај линии во обратна наÑока" + +#: plug-ins/gfig/gfig.c:2106 +msgid "Scale to Image" +msgstr "Големина Ñпрема Ñликата" + +#: plug-ins/gfig/gfig.c:2114 +msgid "Scale drawings to images size" +msgstr "Цртежи Ñпрема големината на Ñликата" + +#: plug-ins/gfig/gfig.c:2136 +msgid "Approx. Circles/Ellipses" +msgstr "ПроÑечно кругови/елипÑи" + +#: plug-ins/gfig/gfig.c:2143 +msgid "" +"Approx. circles & ellipses using lines. Allows the use of brush fading with " +"these types of objects." +msgstr "" +"ПроÑечно кругови и елипÑи Ñо кориÑтење на линии. Дозволува кориÑтење на четки Ñо " +"нејаÑно ивици кај овие видови на објекти." + +# +#: plug-ins/gfig/gfig.c:2193 +msgid "Gfig Brush Selection" +msgstr "Селекција на Gfig четка" + +#: plug-ins/gfig/gfig.c:2231 +msgid "Fade out:" +msgstr "ИÑчезнување:" + +#: plug-ins/gfig/gfig.c:2254 +msgid "Gradient:" +msgstr "Прелив:" + +#: plug-ins/gfig/gfig.c:2274 +msgid "Pressure:" +msgstr "ПриÑтиÑок:" + +#: plug-ins/gfig/gfig.c:2292 +msgid "No Options..." +msgstr "Ðема Опции..." + +# +#. Start of new brush selection code +#: plug-ins/gfig/gfig.c:2307 +msgid "Set Brush..." +msgstr "ПодеÑи четка..." + +#: plug-ins/gfig/gfig.c:2396 +msgid "Add" +msgstr "Додади" + +#: plug-ins/gfig/gfig.c:2397 +msgid "Subtract" +msgstr "Одземање" + +#: plug-ins/gfig/gfig.c:2399 +msgid "Intersect" +msgstr "ПреÑек" + +#: plug-ins/gfig/gfig.c:2403 +msgid "Selection Type:" +msgstr "Вид на Ñелекција:" + +#. 3 +#: plug-ins/gfig/gfig.c:2416 +msgid "Feather" +msgstr "Омекни" + +#: plug-ins/gfig/gfig.c:2434 +msgid "Radius:" +msgstr "РадиуÑ:" + +#: plug-ins/gfig/gfig.c:2448 +msgid "Fill Type:" +msgstr "Вид на пополнување:" + +#: plug-ins/gfig/gfig.c:2461 +msgid "Fill Opacity:" +msgstr "ÐепроѕирноÑÑ‚ на пополнувањето:" + +#: plug-ins/gfig/gfig.c:2469 +msgid "Each Selection" +msgstr "Секоја Ñелекција" + +#: plug-ins/gfig/gfig.c:2470 +msgid "All Selections" +msgstr "Сите Ñелекции" + +#: plug-ins/gfig/gfig.c:2474 +msgid "Fill after:" +msgstr "Пополни подоцна:" + +#: plug-ins/gfig/gfig.c:2481 +msgid "Segment" +msgstr "Сегмент" + +#: plug-ins/gfig/gfig.c:2482 +msgid "Sector" +msgstr "Сектор" + +#: plug-ins/gfig/gfig.c:2486 +msgid "Arc as:" +msgstr "Лак како:" + +#. Put buttons in +#: plug-ins/gfig/gfig.c:2534 +msgid "Show Image" +msgstr "Прикажи Слика" + +#: plug-ins/gfig/gfig.c:2545 +msgid "Reload Image" +msgstr "Превчитај Ñлика" + +#: plug-ins/gfig/gfig.c:2557 plug-ins/imagemap/imap_menu.c:366 +#: plug-ins/imagemap/imap_popup.c:137 plug-ins/imagemap/imap_tools.c:154 +msgid "Rectangle" +msgstr "Правоаголник" + +#: plug-ins/gfig/gfig.c:2559 +msgid "Isometric" +msgstr "Изометрично" + +#: plug-ins/gfig/gfig.c:2563 +msgid "Grid Type:" +msgstr "Вид на мрежа:" + +#: plug-ins/gfig/gfig.c:2572 plug-ins/gflare/gflare.c:561 +msgid "Normal" +msgstr "Ðормално" + +#: plug-ins/gfig/gfig.c:2575 +msgid "Grey" +msgstr "Сива" + +#: plug-ins/gfig/gfig.c:2576 +msgid "Darker" +msgstr "Потемно" + +#: plug-ins/gfig/gfig.c:2577 +msgid "Lighter" +msgstr "ПоÑветло" + +#: plug-ins/gfig/gfig.c:2578 +msgid "Very Dark" +msgstr "Многу темно" + +#: plug-ins/gfig/gfig.c:2582 +msgid "Grid Color:" +msgstr "Боја на мрежата:" + +#: plug-ins/gfig/gfig.c:2586 +msgid "Max Undo:" +msgstr "МакÑ. наназад:" + +#: plug-ins/gfig/gfig.c:2594 +msgid "Show Position" +msgstr "Прикажи Позиција" + +#: plug-ins/gfig/gfig.c:2605 +msgid "Hide Control Points" +msgstr "Сокриј ги контролните точки" + +#: plug-ins/gfig/gfig.c:2650 +msgid "Show Grid" +msgstr "Прикажи мрежа" + +#. 17/10/2003 (Maurits): this option is not implemented. Therefore removing +#. it from the user interface +#: plug-ins/gfig/gfig.c:2673 +msgid "Lock on Grid" +msgstr "Заклучи на мрежа" + +#: plug-ins/gfig/gfig.c:2688 +msgid "Grid spacing:" +msgstr "Раздел на мрежата:" + +#: plug-ins/gfig/gfig.c:2752 +msgid "Object" +msgstr "Објект" + +#: plug-ins/gfig/gfig.c:2789 +msgid "Create a new Gfig object collection for editing" +msgstr "Ðаправи нова колекција од Gfig објекти за уредување" + +#: plug-ins/gfig/gfig.c:2799 +msgid "Load a single Gfig object collection" +msgstr "Вчитај една колекција на Gfig објекти" + +#: plug-ins/gfig/gfig.c:2807 +msgid "Edit Gfig object collection" +msgstr "Уреди ја колекцијата на Gfig објекти" + +#: plug-ins/gfig/gfig.c:2811 +msgid "_Merge" +msgstr "_Спој" + +#: plug-ins/gfig/gfig.c:2815 +msgid "Merge Gfig Object collection into the current edit session" +msgstr "Спој ја Gfig колекцијата на објекти во тековната ÑеÑија" + +#: plug-ins/gfig/gfig.c:2824 +msgid "Delete currently selected Gfig Object collection" +msgstr "Избриши ја тековно избраната Ñелекција на Gfig објекти" + +#: plug-ins/gfig/gfig.c:2834 +msgid "Select folder and rescan Gfig object collections" +msgstr "Одреди директориум и повторно Ñкенирај ја Gfig колекцијата на објекти" + +#. Position labels +#: plug-ins/gfig/gfig.c:2861 plug-ins/gimpressionist/size.c:98 +msgid "Size:" +msgstr "Големина:" + +#. Start building the dialog up +#: plug-ins/gfig/gfig.c:2918 +msgid "Gfig" +msgstr "Gfig" + +#: plug-ins/gfig/gfig.c:2927 plug-ins/gfig/gfig.c:2970 +msgid "Paint" +msgstr "Цртај" + +#: plug-ins/gfig/gfig.c:2983 plug-ins/imagemap/imap_cmd_select.c:53 +#: plug-ins/imagemap/imap_tools.c:144 +msgid "Select" +msgstr "Избери" + +#: plug-ins/gfig/gfig.c:3093 +#, c-format +msgid "%d unsaved Gfig objects. Continue with exiting?" +msgstr "%d незачувани Gfig објекти. Да продолжам Ñо излегувањето?" + +#: plug-ins/gfig/gfig.c:3263 +msgid "Enter Gfig Object Name" +msgstr "ВнеÑете име на Gfig објектот" + +#: plug-ins/gfig/gfig.c:3288 +msgid "Gfig Object Name:" +msgstr "Име на Gfig објектот" + +#. the dialog +#: plug-ins/gfig/gfig.c:3343 +msgid "Rescan for Gfig Objects" +msgstr "Повторно Ñкенирај за Gfig објекти" + +#: plug-ins/gfig/gfig.c:3360 +msgid "Add Gfig Path" +msgstr "Додади Gfig патека" + +#. Load a single object +#: plug-ins/gfig/gfig.c:3431 +msgid "Load Gfig object collection" +msgstr "Вчитај ја колекцијата на Gfig објекти" + +#: plug-ins/gfig/gfig.c:3454 +msgid "Error in copy layer for onlayers" +msgstr "Грешка при копирањето на Ñлојот" + +#: plug-ins/gfig/gfig.c:3567 +#, c-format +msgid "Gfig Layer %d" +msgstr "Gfig Ñлој %d" + +#: plug-ins/gfig/gfig.c:3641 +msgid "About Gfig" +msgstr "За Gfig..." + +#: plug-ins/gfig/gfig.c:3668 +msgid "Gfig - GIMP plug-in" +msgstr "Gfig - ГИМП додаток" + +#: plug-ins/gfig/gfig.c:3673 +msgid "Release 2.0" +msgstr "Верзија 2.0" + +#: plug-ins/gfig/gfig.c:3708 +msgid "New Gfig Object" +msgstr "Ðов Gfig објект" + +#: plug-ins/gfig/gfig.c:3829 +msgid "Delete Gfig Drawing" +msgstr "Избриши Gfig цртеж" + +#: plug-ins/gfig/gfig.c:3882 +msgid "Editing read-only object - you will not be able to save it" +msgstr "Уредувате објект-Ñамо-за-читање - нема да можете да го зачувате" + +#. Create new entry with name + copy at end & copy object into it +#: plug-ins/gfig/gfig.c:3981 +#, c-format +msgid "%s copy" +msgstr "%s копирај" + +#: plug-ins/gfig/gfig.c:4353 +msgid "Error reading file" +msgstr "Грешка при читањето на датотеката" + +#: plug-ins/gfig/gfig-bezier.c:523 +msgid "Bezier Settings" +msgstr "Бејзиер подеÑувања" + +#: plug-ins/gfig/gfig-bezier.c:544 +msgid "Closed" +msgstr "Затворено" + +#: plug-ins/gfig/gfig-bezier.c:549 +msgid "Close curve on completion" +msgstr "Затвори ја кривата на крај" + +#: plug-ins/gfig/gfig-bezier.c:554 +msgid "Show Line Frame" +msgstr "Прикажи ги лините на рамката" + +#: plug-ins/gfig/gfig-bezier.c:559 +msgid "Draws lines between the control points. Only during curve creation" +msgstr "ИÑцртува линии помеѓу контролните точки. Само при правењето на кривата" + +#: plug-ins/gfig/gfig-dobject.c:423 +msgid "Hey where has the object gone ?" +msgstr "Еј, кај Ñе изгуби објектот?" + +#: plug-ins/gfig/gfig-poly.c:56 +msgid "Regular Polygon Number of Sides" +msgstr "Број на Ñтрани на полигонот" + +#: plug-ins/gfig/gfig-preview.c:506 +msgid "Object Details" +msgstr "Детали на објектот" + +#: plug-ins/gfig/gfig-preview.c:535 +msgid "Collection Details" +msgstr "Детали на колекцијата" + +#: plug-ins/gfig/gfig-preview.c:541 +msgid "Draw Name:" +msgstr "Цртај име:" + +#: plug-ins/gfig/gfig-preview.c:547 plug-ins/imagemap/imap_settings.c:92 +msgid "Filename:" +msgstr "Датотека:" + +#: plug-ins/gfig/gfig-preview.c:553 plug-ins/gfig/gfig-preview.c:559 +msgid "(none)" +msgstr "(ништо)" + +#: plug-ins/gfig/gfig-preview.c:581 plug-ins/gfig/gfig-preview.c:620 +msgid "" +msgstr "" + +#. Position labels +#: plug-ins/gfig/gfig-preview.c:655 +msgid "XY Position:" +msgstr "XY Позиција:" + +#: plug-ins/gfig/gfig-spiral.c:57 +msgid "Spiral Number of Points" +msgstr "Број на Ñпирални точки" + +#: plug-ins/gfig/gfig-star.c:56 +msgid "Star Number of Points" +msgstr "Број на ѕвездени точки" + +#: plug-ins/gflare/gflare.c:562 +msgid "Addition" +msgstr "Додавање" + +#: plug-ins/gflare/gflare.c:563 +msgid "Overlay" +msgstr "Прекривање" + +#: plug-ins/gflare/gflare.c:827 +msgid "/Filters/Light Effects/_GFlare..." +msgstr "/Филтери/СветлоÑни ефекти/_GFlare..." + +# +#: plug-ins/gflare/gflare.c:968 +msgid "Gradient Flare..." +msgstr "Преливен одÑјај..." + +#: plug-ins/gflare/gflare.c:1271 +#, c-format +msgid "Failed to open GFlare file '%s': %s" +msgstr "Ðе можев да ја отворам GFlare датотеката '%s': %s" + +#: plug-ins/gflare/gflare.c:1279 +#, c-format +msgid "'%s' is not a valid GFlare file." +msgstr "'%s' не е иÑправна GFlare датотека." + +#: plug-ins/gflare/gflare.c:1332 +#, c-format +msgid "invalid formatted GFlare file: %s\n" +msgstr "Лошо форматирана GFlare датотека: %s\n" + +#: plug-ins/gflare/gflare.c:1457 +#, c-format +msgid "" +"GFlare '%s' is not saved. If you add a new entry in '%s', like:\n" +"(gflare-path \"%s\")\n" +"and make a folder '%s', then you can save your own GFlares into that folder." +msgstr "" +"GFlare '%s' не е зачуван. Ðко додадете нов Ð²Ð½ÐµÑ Ð²Ð¾ '%s', како:\n" +"(gflare-патека \"%s\")\n" +"и направете директориум '%s', тогаш можете да ги зачувате Ñвоите GFlare-и " +"во тој директориум." + +#: plug-ins/gflare/gflare.c:1489 +#, c-format +msgid "Failed to write GFlare file '%s': %s" +msgstr "Грешка при пишувањето во GFlare датотеката '%s': %s" + +#: plug-ins/gflare/gflare.c:2302 +msgid "GFlare" +msgstr "GFlare" + +#: plug-ins/gflare/gflare.c:2354 +msgid "A_uto Update Preview" +msgstr "Ðвто оÑвежување на прегледот" + +#: plug-ins/gflare/gflare.c:2405 +msgid "`Default' is created." +msgstr "'Стандарден' е креиран." + +#: plug-ins/gflare/gflare.c:2406 +msgid "Default" +msgstr "Стандардно" + +# +#. +#. * Scales +#. +#: plug-ins/gflare/gflare.c:2672 plug-ins/gflare/gflare.c:3486 +#: plug-ins/gflare/gflare.c:3593 plug-ins/gflare/gflare.c:3733 +msgid "Parameters" +msgstr "Параметри" + +#: plug-ins/gflare/gflare.c:2699 +msgid "Ro_tation:" +msgstr "Ро_тација:" + +#: plug-ins/gflare/gflare.c:2711 +msgid "_Hue Rotation:" +msgstr "Ротација на _нијанÑа:" + +#: plug-ins/gflare/gflare.c:2723 +msgid "Vector _Angle:" +msgstr "_Ðгол на Векторот:" + +#: plug-ins/gflare/gflare.c:2735 +msgid "Vector _Length:" +msgstr "_Должина на Векторот:" + +#: plug-ins/gflare/gflare.c:2756 +msgid "A_daptive Supersampling" +msgstr "Ð_даптивно СуперÑемплирање" + +# +#: plug-ins/gflare/gflare.c:2776 +msgid "_Max Depth:" +msgstr "_МакÑ. Длабочина:" + +#: plug-ins/gflare/gflare.c:2786 +msgid "_Threshold" +msgstr "_Праг" + +#: plug-ins/gflare/gflare.c:2903 +msgid "S_elector" +msgstr "И_збирач" + +#: plug-ins/gflare/gflare.c:2982 +msgid "New GFlare" +msgstr "Ðов GFlare" + +#: plug-ins/gflare/gflare.c:2986 +msgid "Enter a name for the new GFlare" +msgstr "ВнеÑи име за новиот GFlare" + +#: plug-ins/gflare/gflare.c:3005 +#, c-format +msgid "The name '%s' is used already!" +msgstr "Името '%s' е веќе во употреба!" + +#: plug-ins/gflare/gflare.c:3055 +msgid "Copy GFlare" +msgstr "Копирај GFlare" + +#: plug-ins/gflare/gflare.c:3059 +msgid "Enter a name for the copied GFlare" +msgstr "ВнеÑи име за копираниот GFlare" + +#: plug-ins/gflare/gflare.c:3080 +#, c-format +msgid "The name `%s' is used already!" +msgstr "Името '%s' е веќе во употреба!" + +#: plug-ins/gflare/gflare.c:3106 +msgid "Cannot delete!! There must be at least one GFlare." +msgstr "Ðе можам да избришам!! Мора да поÑтои најмалку еден GFlare." + +#: plug-ins/gflare/gflare.c:3116 +msgid "Delete GFlare" +msgstr "Избриши GFlare" + +#: plug-ins/gflare/gflare.c:3174 +#, c-format +msgid "not found %s in gflares_list" +msgstr "%s не е пронајден во gflares_list" + +#: plug-ins/gflare/gflare.c:3215 +msgid "GFlare Editor" +msgstr "GFlare Уредувач" + +#: plug-ins/gflare/gflare.c:3219 +msgid "Rescan Gradients" +msgstr "Повторно Ñкенирај ги преливите" + +#. Glow +#: plug-ins/gflare/gflare.c:3343 +msgid "Glow Paint Options" +msgstr "ОÑновни опции на Ñликањето Ñо Ñјај" + +# +#: plug-ins/gflare/gflare.c:3355 plug-ins/gflare/gflare.c:3385 +#: plug-ins/gflare/gflare.c:3415 +msgid "Opacity:" +msgstr "ÐепроѕирноÑÑ‚:" + +#: plug-ins/gflare/gflare.c:3368 plug-ins/gflare/gflare.c:3398 +#: plug-ins/gflare/gflare.c:3428 +msgid "Paint Mode:" +msgstr "Ðачин на Ñликање:" + +#. Rays +#: plug-ins/gflare/gflare.c:3373 +msgid "Rays Paint Options" +msgstr "Опции на Ñликање Ñо зраци:" + +#. Rays +#: plug-ins/gflare/gflare.c:3403 +msgid "Second Flares Paint Options" +msgstr "Секундарни опции на Ñликање Ñо пламен" + +#: plug-ins/gflare/gflare.c:3432 plug-ins/gimpressionist/general.c:57 +#: plug-ins/imagemap/imap_preferences.c:442 +msgid "_General" +msgstr "_Општо" + +#. +#. * Gradient Menus +#. +#: plug-ins/gflare/gflare.c:3458 plug-ins/gflare/gflare.c:3563 +#: plug-ins/gflare/gflare.c:3705 +msgid "Gradients" +msgstr "Преливи" + +#: plug-ins/gflare/gflare.c:3470 plug-ins/gflare/gflare.c:3577 +#: plug-ins/gflare/gflare.c:3717 +msgid "Radial Gradient:" +msgstr "Радијален прелив:" + +#: plug-ins/gflare/gflare.c:3474 plug-ins/gflare/gflare.c:3581 +msgid "Angular Gradient:" +msgstr "Ðнгуларен прелив:" + +#: plug-ins/gflare/gflare.c:3478 plug-ins/gflare/gflare.c:3585 +msgid "Angular Size Gradient:" +msgstr "Големина на ангуларниот прелив:" + +#: plug-ins/gflare/gflare.c:3499 plug-ins/gflare/gflare.c:3606 +#: plug-ins/gflare/gflare.c:3746 +msgid "Size (%):" +msgstr "Големина (%):" + +#: plug-ins/gflare/gflare.c:3511 plug-ins/gflare/gflare.c:3618 +#: plug-ins/gflare/gflare.c:3758 +msgid "Rotation:" +msgstr "Ротација:" + +#: plug-ins/gflare/gflare.c:3523 plug-ins/gflare/gflare.c:3631 +#: plug-ins/gflare/gflare.c:3771 +msgid "Hue Rotation:" +msgstr "Хуе Ротација:" + +#: plug-ins/gflare/gflare.c:3537 +msgid "G_low" +msgstr "С_јај" + +#: plug-ins/gflare/gflare.c:3643 +msgid "# of Spikes:" +msgstr "# на шилци:" + +#: plug-ins/gflare/gflare.c:3655 +msgid "Spike Thickness:" +msgstr "ГуÑтина на шилците:" + +#: plug-ins/gflare/gflare.c:3669 +msgid "_Rays" +msgstr "_Зраци" + +#: plug-ins/gflare/gflare.c:3721 +msgid "Size Factor Gradient:" +msgstr "Фактор на големината на преливот:" + +#: plug-ins/gflare/gflare.c:3725 +msgid "Probability Gradient:" +msgstr "Можен прелив:" + +#. +#. * Shape Radio Button Frame +#. +#: plug-ins/gflare/gflare.c:3788 +msgid "Shape of Second Flares" +msgstr "Облик на вториот пламен" + +#: plug-ins/gflare/gflare.c:3797 plug-ins/imagemap/imap_menu.c:369 +#: plug-ins/imagemap/imap_popup.c:140 plug-ins/imagemap/imap_tools.c:158 +msgid "Circle" +msgstr "Круг" + +#: plug-ins/gflare/gflare.c:3814 plug-ins/imagemap/imap_menu.c:371 +#: plug-ins/imagemap/imap_popup.c:143 plug-ins/imagemap/imap_tools.c:162 +msgid "Polygon" +msgstr "Полигон" + +#: plug-ins/gflare/gflare.c:3847 +msgid "Random Seed:" +msgstr "Семе по Ñлучаен избор:" + +#: plug-ins/gflare/gflare.c:3865 +msgid "_Second Flares" +msgstr "_Втори пламени" + +#: plug-ins/gflare/gflare.c:4465 +msgid "none" +msgstr "ниеден" + +#: plug-ins/gflare/gflare.c:4478 +#, c-format +msgid "Not found \"%s\": used \"%s\" instead" +msgstr "Ðе го пронајдов \"%s\": намеÑто тоа кориÑтам \"%s\"" + +#: plug-ins/gfli/gfli.c:527 +#, c-format +msgid "Frame (%i)" +msgstr "Рамка (%i)" + +#: plug-ins/gfli/gfli.c:678 +msgid "Sorry, I can save only INDEXED and GRAY images." +msgstr "Жал ми е, можам да зачувам Ñамо ИÐДЕКСИРÐÐИ и СИВИ Ñлики." + +#: plug-ins/gfli/gfli.c:810 +msgid "GFLI 1.3 - Load framestack" +msgstr "GFLI 1.3 - Вчитај куп од рамки" + +#: plug-ins/gfli/gfli.c:873 +msgid "GFLI 1.3 - Save framestack" +msgstr "GFLI 1.3 - Зачувај куп од рамки" + +#: plug-ins/gimpressionist/brush.c:195 +msgid "Can only save drawables!" +msgstr "Можам да зачувам Ñамо цртежи!" + +#: plug-ins/gimpressionist/brush.c:201 +msgid "Save Brush" +msgstr "Зачувај четка" + +#: plug-ins/gimpressionist/brush.c:358 +msgid "_Brush" +msgstr "_Четка" + +#: plug-ins/gimpressionist/brush.c:378 +msgid "Brush Preview:" +msgstr "Преглед на четката:" + +#: plug-ins/gimpressionist/brush.c:387 plug-ins/print/gimp_color_window.c:402 +msgid "Gamma:" +msgstr "Гама:" + +#: plug-ins/gimpressionist/brush.c:403 +msgid "Changes the gamma (brightness) of the selected brush" +msgstr "Ја менува гамата (ÑветлоÑта) на избраната четка" + +#: plug-ins/gimpressionist/brush.c:417 +msgid "Select:" +msgstr "Избери:" + +#: plug-ins/gimpressionist/brush.c:421 +msgid "(None)" +msgstr "(ништо)" + +#: plug-ins/gimpressionist/brush.c:446 +msgid "Aspect ratio:" +msgstr "Облик на размерот:" + +#: plug-ins/gimpressionist/brush.c:450 +msgid "Specifies the aspect ratio of the brush" +msgstr "Го одредува обликот на размерот на четката" + +#: plug-ins/gimpressionist/brush.c:457 plug-ins/gimpressionist/paper.c:158 +msgid "Relief:" +msgstr "Релјеф:" + +#: plug-ins/gimpressionist/brush.c:461 plug-ins/gimpressionist/paper.c:162 +msgid "Specifies the amount of embossing to apply to the image (in percent)" +msgstr "Ја одредува количината на иÑпапченоÑÑ‚ за примена на Ñликата (процентуално)" + +#: plug-ins/gimpressionist/color.c:34 +msgid "Co_lor" +msgstr "_Боја:" + +#: plug-ins/gimpressionist/color.c:52 +msgid "A_verage under brush" +msgstr "ПроÑе_чно под четката" + +#: plug-ins/gimpressionist/color.c:54 +msgid "C_enter of brush" +msgstr "_Средина на четката" + +#: plug-ins/gimpressionist/color.c:61 +msgid "Color is computed from the average of all pixels under the brush" +msgstr "Бојата Ñе преÑметува од проÑекот на Ñите точки под четката" + +#: plug-ins/gimpressionist/color.c:65 +msgid "Samples the color from the pixel in the center of the brush" +msgstr "Зема моÑтра на боја од точката во Ñредината под четката" + +#: plug-ins/gimpressionist/color.c:83 +msgid "Color _noise:" +msgstr "_Шум на боје:" + +#: plug-ins/gimpressionist/color.c:87 +msgid "Adds random noise to the color" +msgstr "Додава Ñлучајно шум во бојата" + +#: plug-ins/gimpressionist/general.c:63 +msgid "Background:" +msgstr "Позадина:" + +#: plug-ins/gimpressionist/general.c:75 +msgid "Keep original" +msgstr "Задржи го оригиналот" + +#: plug-ins/gimpressionist/general.c:81 +msgid "Preserve the original image as a background" +msgstr "Задржи ја оригиналната Ñлика како позадина" + +#: plug-ins/gimpressionist/general.c:83 +msgid "From paper" +msgstr "Од хартија" + +#: plug-ins/gimpressionist/general.c:89 +msgid "Copy the texture of the selected paper as a background" +msgstr "Копирај ја текÑтурата на избраната хартија како позадина" + +#: plug-ins/gimpressionist/general.c:105 +msgid "Solid colored background" +msgstr "Позадина во боја" + +#: plug-ins/gimpressionist/general.c:126 +msgid "Use a transparent background; Only the strokes painted will be visible" +msgstr "КориÑти провидна позадина, Само иÑцртаните потези ќе бидат видливи" + +#: plug-ins/gimpressionist/general.c:141 +msgid "Paint edges" +msgstr "Обои ги ивиците" + +#: plug-ins/gimpressionist/general.c:146 +msgid "Selects if to place strokes all the way out to the edges of the image" +msgstr "Одредува дали потезите ќе одат до крајот на ивицата на Ñликата" + +#. Tileable checkbox +#: plug-ins/gimpressionist/general.c:150 plug-ins/maze/maze_face.c:280 +msgid "Tileable" +msgstr "Делливо" + +#: plug-ins/gimpressionist/general.c:154 +msgid "Selects if the resulting image should be seamlessly tileable" +msgstr "Одредува дали конечната Ñлика ќе биде едноÑтавно деллива" + +#: plug-ins/gimpressionist/general.c:158 +msgid "Drop Shadow" +msgstr "Уфрли Ñенка" + +#: plug-ins/gimpressionist/general.c:163 +msgid "Adds a shadow effect to each brush stroke" +msgstr "Додава ефект на Ñенка во Ñекој потез Ñо четката" + +#: plug-ins/gimpressionist/general.c:174 +msgid "Edge darken:" +msgstr "Затемнети ивици:" + +#: plug-ins/gimpressionist/general.c:178 +msgid "How much to \"darken\" the edges of each brush stroke" +msgstr "Колку ивиците на потегот Ñо четката ќе бидат \"затемнети\"" + +#: plug-ins/gimpressionist/general.c:183 +msgid "Shadow darken:" +msgstr "Длабочина на Ñенката:" + +#: plug-ins/gimpressionist/general.c:187 +msgid "How much to \"darken\" the drop shadow" +msgstr "Колку да ја \"затемнам\" капката за Ñенка" + +#: plug-ins/gimpressionist/general.c:192 +msgid "Shadow depth:" +msgstr "Длабочина на Ñенката:" + +#: plug-ins/gimpressionist/general.c:196 +msgid "The depth of the drop shadow, i.e. how far apart from the object it should be" +msgstr "Длабочина на капката за Ñенка, пр. колку далеку ќе биде од објектот" + +#: plug-ins/gimpressionist/general.c:201 +msgid "Shadow blur:" +msgstr "Заматување на Ñенката:" + +#: plug-ins/gimpressionist/general.c:205 +msgid "How much to blur the drop shadow" +msgstr "Колку да Ñе замати капката на Ñенката" + +#: plug-ins/gimpressionist/general.c:210 +msgid "Deviation treshold:" +msgstr "Праг на девијација:" + +#: plug-ins/gimpressionist/general.c:214 +msgid "A bailout-value for adaptive selections" +msgstr "Критична вредноÑÑ‚ за адаптивните Ñелекции" + +# +#: plug-ins/gimpressionist/gimp.c:108 +msgid "/Filters/Artistic/_GIMPressionist..." +msgstr "/Филтери/Уметнички/_ГИМПреÑиониÑÑ‚..." + +#: plug-ins/gimpressionist/gimp.c:295 +msgid "Painting..." +msgstr "Сликање..." + +#. don't translate the gimprc entry +#: plug-ins/gimpressionist/gimpressionist.c:64 +#, c-format +msgid "" +"It is highly recommended to add\n" +" (gimpressionist-path \"%s\")\n" +"(or similar) to your gimprc file." +msgstr "" +"Препорачувам да додадете\n" +"(гимпмпреÑиониÑÑ‚-патека \"%s\")\n" +"(или Ñлично) во вашата gimprc датотека." + +#: plug-ins/gimpressionist/gimpressionist.c:344 +msgid "The GIMPressionist" +msgstr "ГИМПреÑиониÑÑ‚" + +#: plug-ins/gimpressionist/gimpressionist.c:428 +msgid "Gimpressionist" +msgstr "ГимпреÑиониÑÑ‚" + +#: plug-ins/gimpressionist/gimpressionist.c:433 +msgid "A_bout" +msgstr "_За програмата" + +#: plug-ins/gimpressionist/orientation.c:45 +msgid "Or_ientation" +msgstr "_Ориентација" + +#: plug-ins/gimpressionist/orientation.c:62 +msgid "Directions:" +msgstr "ÐаÑоки:" + +#: plug-ins/gimpressionist/orientation.c:66 +msgid "The number of directions (i.e. brushes) to use" +msgstr "Број на наÑоки (нпр. четки) за кориÑтење" + +#: plug-ins/gimpressionist/orientation.c:74 +msgid "Start angle:" +msgstr "Почетен агол:" + +#: plug-ins/gimpressionist/orientation.c:78 +#: plug-ins/gimpressionist/orientation.c:90 +msgid "The angle of the first brush to create" +msgstr "Ðгол на првата четка за креирање" + +#: plug-ins/gimpressionist/orientation.c:86 +msgid "Angle span:" +msgstr "Лак на аголот:" + +#: plug-ins/gimpressionist/orientation.c:114 +msgid "" +"Let the value (brightness) of the region determine the direction of the " +"stroke" +msgstr "Ðека вредноÑта (ÑветлоÑÑ‚) на подрачјето ја одреди наÑоката на потегот" + +#: plug-ins/gimpressionist/orientation.c:118 +#: plug-ins/gimpressionist/size.c:113 +msgid "Radius" +msgstr "РадиуÑ" + +#: plug-ins/gimpressionist/orientation.c:124 +msgid "" +"The distance from the center of the image determines the direction of the " +"stroke" +msgstr "РаÑтојанието од Ñредината на Ñликата ја одредува наÑоката на потегот" + +#: plug-ins/gimpressionist/orientation.c:134 +msgid "Selects a random direction of each stroke" +msgstr "Одредува Ñлучајна наÑока за Ñекој потег" + +#: plug-ins/gimpressionist/orientation.c:138 +#: plug-ins/gimpressionist/size.c:127 +msgid "Radial" +msgstr "Радиално" + +#: plug-ins/gimpressionist/orientation.c:144 +msgid "Let the direction from the center determine the direction of the stroke" +msgstr "Ðека наÑоката од Ñредина ја одреди наÑоката на потегот" + +#: plug-ins/gimpressionist/orientation.c:152 +#: plug-ins/gimpressionist/size.c:138 +msgid "Flowing" +msgstr "Течно" + +#: plug-ins/gimpressionist/orientation.c:158 +#: plug-ins/gimpressionist/size.c:144 +msgid "The strokes follow a \"flowing\" pattern" +msgstr "Потезите го Ñледат \"течното\" правило" + +#: plug-ins/gimpressionist/orientation.c:168 +msgid "The hue of the region determines the direction of the stroke" +msgstr "ÐијанÑата на подрачјето ја одредува наÑоката на потегот" + +#: plug-ins/gimpressionist/orientation.c:173 +#: plug-ins/gimpressionist/size.c:155 +msgid "Adaptive" +msgstr "ПриÑпоÑобливо" + +#: plug-ins/gimpressionist/orientation.c:179 +msgid "The direction that matches the original image the closest is selected" +msgstr "Се избира наÑоката која најдобро одговара на оригиналната Ñлика" + +#: plug-ins/gimpressionist/orientation.c:187 +#: plug-ins/gimpressionist/size.c:166 +msgid "Manual" +msgstr "Рачно" + +#: plug-ins/gimpressionist/orientation.c:193 +msgid "Manually specify the stroke orientation" +msgstr "Рачно подеÑи ја ориентацијата на потегот" + +#: plug-ins/gimpressionist/orientation.c:204 +msgid "Opens up the Orientation Map Editor" +msgstr "Го отвара уредувачот на ориентациÑката мапа" + +#: plug-ins/gimpressionist/orientmap.c:446 +msgid "Orientation Map Editor" +msgstr "Уредувач на ориентациÑката мапа" + +#: plug-ins/gimpressionist/orientmap.c:468 +msgid "Vectors" +msgstr "Вектори" + +#: plug-ins/gimpressionist/orientmap.c:480 +msgid "" +"The vector-field. Left-click to move selected vector, Right-click to point " +"it towards mouse, Middle-click to add a new vector." +msgstr "" +"ВекторÑко поле. Лев клик да го помеÑти избраниот вектор, деÑен клик да го заврти кон " +"глушецот, Среден клик за додавање на нов вектор." + +#: plug-ins/gimpressionist/orientmap.c:502 +#: plug-ins/gimpressionist/sizemap.c:456 +msgid "Adjust the preview's brightness" +msgstr "ПодеÑи го оÑветлувањето на прегледот" + +#: plug-ins/gimpressionist/orientmap.c:523 +msgid "Select previous vector" +msgstr "Избери го претходниот вектор" + +#: plug-ins/gimpressionist/orientmap.c:529 +msgid "Select next vector" +msgstr "Избери го Ñледниот вектор" + +#: plug-ins/gimpressionist/orientmap.c:531 +#: plug-ins/gimpressionist/sizemap.c:487 +msgid "A_dd" +msgstr "_Додади" + +#: plug-ins/gimpressionist/orientmap.c:535 +msgid "Add new vector" +msgstr "Додади нов вектор" + +#: plug-ins/gimpressionist/orientmap.c:537 +#: plug-ins/gimpressionist/sizemap.c:494 +msgid "_Kill" +msgstr "_Убиј" + +#: plug-ins/gimpressionist/orientmap.c:541 +msgid "Delete selected vector" +msgstr "Избриши го избраниот вектор" + +#: plug-ins/gimpressionist/orientmap.c:556 +msgid "_Normal" +msgstr "_Ðормално" + +#: plug-ins/gimpressionist/orientmap.c:557 +msgid "Vorte_x" +msgstr "Vorte_x" + +#: plug-ins/gimpressionist/orientmap.c:558 +msgid "Vortex_2" +msgstr "Vortex_2" + +#: plug-ins/gimpressionist/orientmap.c:559 +msgid "Vortex_3" +msgstr "Vortex_3" + +#: plug-ins/gimpressionist/orientmap.c:565 +#: plug-ins/gimpressionist/sizemap.c:539 +msgid "_Voronoi" +msgstr "_Voronoi" + +#: plug-ins/gimpressionist/orientmap.c:570 +msgid "" +"Voronoi-mode makes only the vector closest to the given point have any " +"influence" +msgstr "" +"Voronoi режимот прави да Ñамо векторот кој е најблиÑку до избраната точка " +"да има некое влијание" + +#: plug-ins/gimpressionist/orientmap.c:579 +msgid "A_ngle:" +msgstr "Ð_гол:" + +#: plug-ins/gimpressionist/orientmap.c:583 +msgid "Change the angle of the selected vector" +msgstr "Смени го аголот на избраниот вектор" + +#: plug-ins/gimpressionist/orientmap.c:589 +msgid "Ang_le offset:" +msgstr "Ðглово помеÑтување:" + +#: plug-ins/gimpressionist/orientmap.c:593 +msgid "Offset all vectors with a given angle" +msgstr "ПомеÑти ги Ñите вектори Ñо дадениот агол" + +#: plug-ins/gimpressionist/orientmap.c:604 +msgid "Change the strength of the selected vector" +msgstr "Ја менува валидноÑта на избраниот вектор" + +#: plug-ins/gimpressionist/orientmap.c:610 +msgid "S_trength exp.:" +msgstr "ВалидноÑÑ‚:" + +#: plug-ins/gimpressionist/orientmap.c:614 +#: plug-ins/gimpressionist/sizemap.c:534 +msgid "Change the exponent of the strength" +msgstr "Промени ја екÑпонентата на валидноÑта" + +#: plug-ins/gimpressionist/paper.c:90 +msgid "P_aper" +msgstr "_Хартија" + +#: plug-ins/gimpressionist/paper.c:109 +msgid "Paper Preview:" +msgstr "Преглед на хартијата:" + +#: plug-ins/gimpressionist/paper.c:118 +msgid "_Invert" +msgstr "_Инверзно" + +#: plug-ins/gimpressionist/paper.c:124 +msgid "Inverts the Papers texture" +msgstr "Ја инвертира текÑтурата на хартијата" + +#: plug-ins/gimpressionist/paper.c:127 +msgid "O_verlay" +msgstr "Пре_кривање" + +#: plug-ins/gimpressionist/paper.c:132 +msgid "Applies the paper as it is (without embossing it)" +msgstr "Ја прифаќа хартијата каква што е (без да ја иÑпапчува)" + +#: plug-ins/gimpressionist/paper.c:150 +msgid "Specifies the scale of the texture (in percent of original file)" +msgstr "Го одредува размерот на текÑтурата (во проценти на оригиналната датотека)" + +#: plug-ins/gimpressionist/placement.c:36 +msgid "Pl_acement" +msgstr "С_меÑтување" + +#: plug-ins/gimpressionist/placement.c:50 +msgid "Placement" +msgstr "СмеÑтување" + +#: plug-ins/gimpressionist/placement.c:54 +msgid "Randomly" +msgstr "Случајно" + +#: plug-ins/gimpressionist/placement.c:55 +msgid "Evenly distributed" +msgstr "Подеднакво раÑпоредено" + +#: plug-ins/gimpressionist/placement.c:60 +msgid "Place strokes randomly around the image" +msgstr "Ги ÑмеÑтува оквирите по Ñлучаен избор околу Ñликата" + +#: plug-ins/gimpressionist/placement.c:62 +msgid "The strokes are evenly distributed across the image" +msgstr "Потезите Ñе рамномерно раÑпоредени преку Ñликата" + +#: plug-ins/gimpressionist/placement.c:81 +msgid "Stroke _density:" +msgstr "_ЦврÑтина на потегот:" + +#: plug-ins/gimpressionist/placement.c:85 +msgid "The relative density of the brush strokes" +msgstr "Релативна гуÑтина на потегот Ñо четка" + +#: plug-ins/gimpressionist/placement.c:91 +msgid "Centerize" +msgstr "Центрирај" + +#: plug-ins/gimpressionist/placement.c:95 +msgid "Focus the brush strokes around the center of the image" +msgstr "Групирај ги потезите Ñо четката околу Ñредината на Ñликата" + +#: plug-ins/gimpressionist/ppmtool.c:499 +#, c-format +msgid "Failed to save PPM file '%s': %s" +msgstr "Ðе можам да ја зачувам РРМ датотеката '%s': %s" + +#: plug-ins/gimpressionist/presets.c:366 +msgid "Save Current" +msgstr "Зачувај тековен" + +#: plug-ins/gimpressionist/presets.c:592 +msgid "_Presets" +msgstr "_Дефиниции" + +#: plug-ins/gimpressionist/presets.c:607 +msgid "Save current..." +msgstr "Зачувај тековни..." + +#: plug-ins/gimpressionist/presets.c:612 +msgid "Save the current settings to the specified file" +msgstr "Зачувај ги тековните подеÑувања во наведената датотека" + +#: plug-ins/gimpressionist/presets.c:640 +msgid "Reads the selected Preset into memory" +msgstr "Ги чита избраните дефиниции во меморија" + +#: plug-ins/gimpressionist/presets.c:646 +msgid "Deletes the selected Preset" +msgstr "Ја брише избраната дефиниција" + +#: plug-ins/gimpressionist/presets.c:652 +msgid "Reread the folder of Presets" +msgstr "Повторно прочитај го доректориумот Ñо дефиниции" + +#: plug-ins/gimpressionist/presets.c:658 +msgid "(Desc)" +msgstr "(ОпиÑ)" + +#: plug-ins/gimpressionist/presets.c:662 +msgid "" +"\n" +"If you come up with some nice Presets,\n" +"(or Brushes and Papers for that matter)\n" +"feel free to send them to me \n" +"for inclusion into the next release!\n" +msgstr "" +"\n" +"Ðко имате некои убави дефиниции,\n" +"(или Четки и Хартии, кога Ñме веќе таму)\n" +"Ñлободно ми ги пратите на \n" +"за да бидат вклучени во Ñледната верзија!\n" + +#: plug-ins/gimpressionist/preview.c:128 +msgid "Refresh the Preview window" +msgstr "ОÑвежи го прозорецот за преглед" + +#: plug-ins/gimpressionist/preview.c:136 +msgid "Revert to the original image" +msgstr "Поврати на оригиналната мапа" + +#: plug-ins/gimpressionist/size.c:43 +msgid "_Size" +msgstr "_Големина:" + +#: plug-ins/gimpressionist/size.c:60 +msgid "Sizes:" +msgstr "Големини:" + +#: plug-ins/gimpressionist/size.c:64 +msgid "The number of sizes of brushes to use" +msgstr "Број на големини на четки за кориÑтење" + +#: plug-ins/gimpressionist/size.c:72 +msgid "Minimum size:" +msgstr "Мин. големина:" + +#: plug-ins/gimpressionist/size.c:76 +msgid "The smallest brush to create" +msgstr "Ðајмала четка за креирање" + +#: plug-ins/gimpressionist/size.c:84 +msgid "Maximum size:" +msgstr "МакÑ. големина:" + +#: plug-ins/gimpressionist/size.c:88 +msgid "The largest brush to create" +msgstr "Ðајголема четка за креирање" + +#: plug-ins/gimpressionist/size.c:111 +msgid "Let the value (brightness) of the region determine the size of the stroke" +msgstr "ОÑветленоÑта на подрачјето ја одредува големината на потегот" + +#: plug-ins/gimpressionist/size.c:118 +msgid "The distance from the center of the image determines the size of the stroke" +msgstr "ОдалеченоÑта од Ñредината на Ñликата ја одредува големината на потегот" + +#: plug-ins/gimpressionist/size.c:125 +msgid "Selects a random size for each stroke" +msgstr "Одредува Ñлучајна големина за Ñекој потег" + +#: plug-ins/gimpressionist/size.c:132 +msgid "Let the direction from the center determine the size of the stroke" +msgstr "ÐаÑоката од Ñредината ја одредува големината на потегот" + +#: plug-ins/gimpressionist/size.c:152 +msgid "The hue of the region determines the size of the stroke" +msgstr "ÐијанÑата на подрачјето ја одредува големината на потегот" + +#: plug-ins/gimpressionist/size.c:160 +msgid "The brush-size that matches the original image the closest is selected" +msgstr "Се избира големина на четката која е најблиÑка до оригиналната Ñлика" + +#: plug-ins/gimpressionist/size.c:171 +msgid "Manually specify the stroke size" +msgstr "Рачно подеÑете ја големината на потегот" + +#: plug-ins/gimpressionist/size.c:181 +msgid "Opens up the Size Map Editor" +msgstr "Го отвара уредникот за големина на мапата" + +#: plug-ins/gimpressionist/sizemap.c:404 +msgid "Size Map Editor" +msgstr "Уредувач на големината на мапата" + +#: plug-ins/gimpressionist/sizemap.c:426 +msgid "Smvectors" +msgstr "Sm-вектори" + +#: plug-ins/gimpressionist/sizemap.c:436 +msgid "" +"The smvector-field. Left-click to move selected smvector, Right-click to " +"point it towards mouse, Middle-click to add a new smvector." +msgstr "" +"Sm-векторÑко поле. Лев клик го помеÑтува избраниот вектор, деÑен го завртува кон " +"глушецот, Ñреден клик додава нов Sm-вектор." + +#: plug-ins/gimpressionist/sizemap.c:478 +msgid "Select previous smvector" +msgstr "Избери го предходниот Sm-вектор" + +#: plug-ins/gimpressionist/sizemap.c:485 +msgid "Select next smvector" +msgstr "Избери го Ñледниот Sm-вектор" + +#: plug-ins/gimpressionist/sizemap.c:492 +msgid "Add new smvector" +msgstr "Додади нов Sm-вектор" + +#: plug-ins/gimpressionist/sizemap.c:499 +msgid "Delete selected smvector" +msgstr "Го брише избраниот Sm-вектор" + +#: plug-ins/gimpressionist/sizemap.c:512 +msgid "Change the angle of the selected smvector" +msgstr "Го менува аголот на избраниот Sm-вектор" + +#: plug-ins/gimpressionist/sizemap.c:519 +msgid "S_trength:" +msgstr "_Јачина:" + +#: plug-ins/gimpressionist/sizemap.c:523 +msgid "Change the strength of the selected smvector" +msgstr "Ја менува јачината на избраниот Sm-вектор" + +#: plug-ins/gimpressionist/sizemap.c:530 +msgid "St_rength exp.:" +msgstr "Ја_чина:" + +#: plug-ins/gimpressionist/sizemap.c:546 +msgid "" +"Voronoi-mode makes only the smvector closest to the given point have any " +"influence" +msgstr "" +"Voronoi режимот предизвикува Ñамо Sm-векторот најблизок до избраната точка да " +"има некое влијание" + +#: plug-ins/helpbrowser/dialog.c:149 +msgid "GIMP Help Browser" +msgstr "ГИМП Пребарувач за помош" + +#: plug-ins/helpbrowser/dialog.c:461 plug-ins/imagemap/imap_main.c:586 +#: plug-ins/imagemap/imap_settings.c:167 +msgid "" +msgstr "" + +#: plug-ins/helpbrowser/dialog.c:529 +msgid "Document Not Found" +msgstr "Документот не е пронајден" + +#: plug-ins/helpbrowser/dialog.c:531 +msgid "Could not locate help document" +msgstr "Ðе можам да го пронајдам документот за помош" + +#: plug-ins/helpbrowser/dialog.c:533 +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 "" +"Бараниот документ не е пронајден во вашата патека за ГИМП помош која " +"е прикажана погоре. Ова значи дека темата Ñеуште не била напишана или " +"вашата инÑталација не е комплетна. Уверете Ñе дека инÑталацијата е во ред " +"пред да ја пријавите оваа грешка како бубачка во програмата." + +# +#: plug-ins/ifscompose/ifscompose.c:371 +msgid "/Filters/Render/Nature/Ifs_Compose..." +msgstr "/Филтери/Рендерирање/Природа/Ifs_Компонирање..." + +# +#. Asym +#: plug-ins/ifscompose/ifscompose.c:611 +msgid "Asymmetry:" +msgstr "ÐÑиметрија:" + +# +#. Shear +#: plug-ins/ifscompose/ifscompose.c:625 +msgid "Shear:" +msgstr "Стрижење:" + +#. Flip +#: plug-ins/ifscompose/ifscompose.c:639 +msgid "Flip" +msgstr "Огледало" + +# +#. Simple color control section +#: plug-ins/ifscompose/ifscompose.c:670 +msgid "Simple" +msgstr "ЕдноÑтавно" + +#: plug-ins/ifscompose/ifscompose.c:679 +msgid "IfsCompose: Target" +msgstr "Ifs-Компонирање.: Мета" + +# +#: plug-ins/ifscompose/ifscompose.c:685 +msgid "Scale Hue by:" +msgstr "ВредноÑÑ‚ на нијанÑата од:" + +# +#: plug-ins/ifscompose/ifscompose.c:700 +msgid "Scale Value by:" +msgstr "ВредноÑÑ‚ на Ñкалата од:" + +#. Full color control section +#: plug-ins/ifscompose/ifscompose.c:717 +msgid "Full" +msgstr "Полно" + +# +#: plug-ins/ifscompose/ifscompose.c:724 +msgid "IfsCompose: Red" +msgstr "Ifs-Компонирање: Црвена" + +#: plug-ins/ifscompose/ifscompose.c:731 +msgid "IfsCompose: Green" +msgstr "Ifs-Компонирање: Зелена" + +# +#: plug-ins/ifscompose/ifscompose.c:738 +msgid "IfsCompose: Blue" +msgstr "Ifs-Компонирање: Сина" + +#: plug-ins/ifscompose/ifscompose.c:745 +msgid "IfsCompose: Black" +msgstr "Ifs-Компонирање: Црна" + +# +#: plug-ins/ifscompose/ifscompose.c:807 +msgid "IfsCompose" +msgstr "Ifs-Компонирање" + +#: plug-ins/ifscompose/ifscompose.c:881 plug-ins/imagemap/imap_cmd_move.c:86 +#: plug-ins/imagemap/imap_cmd_object_move.c:57 +msgid "Move" +msgstr "ПомеÑти" + +# +#: plug-ins/ifscompose/ifscompose.c:890 +msgid "Rotate/Scale" +msgstr "Ротирај/Скала" + +# +#: plug-ins/ifscompose/ifscompose.c:899 +msgid "Stretch" +msgstr "Развлекување" + +# +#: plug-ins/ifscompose/ifscompose.c:919 +msgid "Render Options" +msgstr "Опции на рендерирање" + +#: plug-ins/ifscompose/ifscompose.c:933 plug-ins/print/gimp_main_window.c:482 +msgid "Auto" +msgstr "ÐвтоматÑки" + +#: plug-ins/ifscompose/ifscompose.c:984 plug-ins/imagemap/imap_menu.c:270 +msgid "Select _All" +msgstr "Избери _Ñе" + +# +#: plug-ins/ifscompose/ifscompose.c:991 +msgid "Recompute _Center" +msgstr "Повторно преÑметај го _центарот" + +# +#: plug-ins/ifscompose/ifscompose.c:1019 +msgid "Spatial Transformation" +msgstr "ТранÑформација на ПроÑторот" + +# +#: plug-ins/ifscompose/ifscompose.c:1025 +msgid "Color Transformation" +msgstr "ТранÑформација на бојата" + +# +#: plug-ins/ifscompose/ifscompose.c:1035 +msgid "Relative Probability:" +msgstr "Релативна МожноÑÑ‚:" + +# +#: plug-ins/ifscompose/ifscompose.c:1254 +msgid "IfsCompose Options" +msgstr "Опции на Ifs-Компонирање" + +#: plug-ins/ifscompose/ifscompose.c:1276 +msgid "Max. Memory:" +msgstr "МакÑ. Меморија:" + +#: plug-ins/ifscompose/ifscompose.c:1303 +msgid "Subdivide:" +msgstr "Под-поделба:" + +# +#: plug-ins/ifscompose/ifscompose.c:1316 +msgid "Spot Radius:" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° точката:" + +#: plug-ins/ifscompose/ifscompose.c:1389 +#, c-format +msgid "Rendering IFS (%d/%d)..." +msgstr "Рендерирам IFS (%d/%d)..." + +#. transfer the image to the drawable +#: plug-ins/ifscompose/ifscompose.c:1408 +#, c-format +msgid "Copying IFS to image (%d/%d)..." +msgstr "Копирам IFS во Ñликата (%d/%d)..." + +# +#: plug-ins/ifscompose/ifscompose.c:1547 +#, c-format +msgid "Transformation %s" +msgstr "ТранÑформација %s" + +#: plug-ins/ifscompose/ifscompose.c:2673 plug-ins/ifscompose/ifscompose.c:2685 +msgid "Open failed" +msgstr "Отворањето не уÑпеа" + +#: plug-ins/ifscompose/ifscompose.c:2680 +#, c-format +msgid "File '%s' doesn't seem to be an IFS Compose file." +msgstr "Датотеката „%s“ не е IFS-Компонирај датотека." + +#: plug-ins/ifscompose/ifscompose.c:2716 +msgid "Save as IFS file" +msgstr "Зачувај како IFS датотека" + +#: plug-ins/ifscompose/ifscompose.c:2742 +msgid "Open IFS file" +msgstr "Отвори IFS датотека" + +#: plug-ins/imagemap/imap_about.c:42 +msgid "Imagemap plug-in 2.0" +msgstr "Додаток на мапата на Ñликата 2.0" + +#: plug-ins/imagemap/imap_about.c:44 +msgid "Copyright(c) 1999-2003 by Maurits Rijk" +msgstr "ÐвторÑки права Мориц Ријк 1999-2003" + +#: plug-ins/imagemap/imap_about.c:45 +msgid "lpeek.mrijk@consunet.nl" +msgstr "lpeek.mrijk@consunet.nl" + +#: plug-ins/imagemap/imap_about.c:47 +msgid " Released under the GNU General Public License " +msgstr " Издадено под GNU Општата Јавна Лиценца " + +#: plug-ins/imagemap/imap_circle.c:64 +msgid "C_ircle" +msgstr "_Круг" + +#: plug-ins/imagemap/imap_circle.c:265 +msgid "Center _x:" +msgstr "Центар _x:" + +#: plug-ins/imagemap/imap_circle.c:270 plug-ins/imagemap/imap_circle.c:277 +#: plug-ins/imagemap/imap_circle.c:283 plug-ins/imagemap/imap_grid.c:255 +#: plug-ins/imagemap/imap_grid.c:261 plug-ins/imagemap/imap_polygon.c:506 +#: plug-ins/imagemap/imap_polygon.c:514 plug-ins/imagemap/imap_rectangle.c:395 +#: plug-ins/imagemap/imap_rectangle.c:402 +#: plug-ins/imagemap/imap_rectangle.c:409 +#: plug-ins/imagemap/imap_rectangle.c:416 +msgid "pixels" +msgstr "пикÑели" + +#: plug-ins/imagemap/imap_circle.c:272 +msgid "Center _y:" +msgstr "Центар _y:" + +#: plug-ins/imagemap/imap_cmd_clear.c:51 +msgid "Clear" +msgstr "ИÑчиÑти" + +#: plug-ins/imagemap/imap_cmd_create.c:58 +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:150 +msgid "Create" +msgstr "Создади" + +#: plug-ins/imagemap/imap_cmd_cut.c:55 +#: plug-ins/imagemap/imap_cmd_cut_object.c:51 +#: plug-ins/imagemap/imap_toolbar.c:124 +msgid "Cut" +msgstr "ИÑечи" + +#: plug-ins/imagemap/imap_cmd_delete.c:57 +#: plug-ins/imagemap/imap_selection.c:178 plug-ins/imagemap/imap_tools.c:172 +msgid "Delete" +msgstr "Избриши" + +#: plug-ins/imagemap/imap_cmd_delete_point.c:61 +#: plug-ins/imagemap/imap_polygon.c:725 +msgid "Delete Point" +msgstr "Избриши ја точката" + +#: plug-ins/imagemap/imap_cmd_edit_object.c:54 +msgid "Edit Object" +msgstr "Уреди објект" + +# +#. Create the areas +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:116 +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:146 +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:250 +msgid "Use Gimp Guides" +msgstr "КориÑти Гимп водичи" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:159 +msgid "Al_ternate" +msgstr "До_полнителни" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:164 +msgid "A_ll" +msgstr "_Сите" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:168 +msgid "Add Additional Guides" +msgstr "Додади дополнителни водичи" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:177 +msgid "L_eft Border" +msgstr "_Лева граница" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:181 +msgid "_Right Border" +msgstr "_ДеÑна граница:" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:185 +msgid "_Upper Border" +msgstr "_Горна граница" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:189 +msgid "Lo_wer Border" +msgstr "Д_олна граница" + +#: plug-ins/imagemap/imap_cmd_gimp_guides.c:198 +msgid "_Base URL:" +msgstr "_ОÑновен URL:" + +#: plug-ins/imagemap/imap_cmd_guides.c:72 +#: plug-ins/imagemap/imap_cmd_guides.c:138 +msgid "Create Guides" +msgstr "Креирај водичи" + +#: plug-ins/imagemap/imap_cmd_guides.c:111 +#, c-format +msgid "Resulting Guide Bounds: %d,%d to %d,%d (%d areas)" +msgstr "Граница на водичот: %d,%d до %d,%d (%d подрачја)" + +#: plug-ins/imagemap/imap_cmd_guides.c:142 +msgid "" +"Guides are pre-defined rectangles covering the image. You define\n" +"them by their width, height, and spacing from each other. This\n" +"allows you to rapidly create the most common image map type -\n" +"image collection of \"thumbnails\", suitable for navigation bars." +msgstr "" +"Водичите Ñе преддефинирани правоаголници кои ја покриваат Ñликата.\n" +"Ги одредувате го ширина, виÑина и разделот помеѓу нив. Ова ви овозможува\n" +"брзо креирање на најчеÑтите мапи на Ñлики-колекции од \"Ñликички\",\n" +"подобни за навигационите ленти." + +#: plug-ins/imagemap/imap_cmd_guides.c:170 +msgid "_Left Start at:" +msgstr "_Лев почеток на:" + +#: plug-ins/imagemap/imap_cmd_guides.c:180 +msgid "_Top Start at:" +msgstr "Од врвот почнува на:" + +#: plug-ins/imagemap/imap_cmd_guides.c:185 +msgid "_Horz. Spacing:" +msgstr "_Хориз. раздел:" + +#: plug-ins/imagemap/imap_cmd_guides.c:191 +msgid "_No. Across:" +msgstr "_Бр. Преку:" + +#: plug-ins/imagemap/imap_cmd_guides.c:197 +msgid "_Vert. Spacing:" +msgstr "_Верт. раздел:" + +#: plug-ins/imagemap/imap_cmd_guides.c:203 +msgid "No. _Down:" +msgstr "Бр. _Доле:" + +#: plug-ins/imagemap/imap_cmd_guides.c:211 +msgid "Base _URL:" +msgstr "ОÑновен _URL:" + +#: plug-ins/imagemap/imap_cmd_guides.c:233 +msgid "Resulting Guide Bounds: 0,0 to 0,0 (0 areas)" +msgstr "Граница на водичот: 0,0 до 0,0 (0 подрачја)" + +#: plug-ins/imagemap/imap_cmd_guides.c:268 +msgid "Guides" +msgstr "Водичи" + +#: plug-ins/imagemap/imap_cmd_insert_point.c:62 +#: plug-ins/imagemap/imap_polygon.c:739 +msgid "Insert Point" +msgstr "Вметни точка" + +#: plug-ins/imagemap/imap_cmd_move_down.c:53 +#: plug-ins/imagemap/imap_cmd_object_down.c:55 +#: plug-ins/imagemap/imap_selection.c:169 +msgid "Move Down" +msgstr "ПомеÑти надолу" + +#: plug-ins/imagemap/imap_cmd_move_sash.c:68 +msgid "Move Sash" +msgstr "ПомеÑти преку" + +#: plug-ins/imagemap/imap_cmd_move_selected.c:56 +msgid "Move Selected Objects" +msgstr "ПомеÑти ги избраните објекти" + +#: plug-ins/imagemap/imap_cmd_move_to_front.c:51 +#: plug-ins/imagemap/imap_toolbar.c:152 +msgid "Move To Front" +msgstr "ПомеÑти нанапред" + +#: plug-ins/imagemap/imap_cmd_move_up.c:53 +#: plug-ins/imagemap/imap_cmd_object_up.c:55 +#: plug-ins/imagemap/imap_selection.c:165 +msgid "Move Up" +msgstr "ПомеÑти нагоре" + +#: plug-ins/imagemap/imap_cmd_paste.c:51 plug-ins/imagemap/imap_toolbar.c:130 +msgid "Paste" +msgstr "Вметни" + +#: plug-ins/imagemap/imap_cmd_select_all.c:51 +msgid "Select All" +msgstr "Избери Се" + +#: plug-ins/imagemap/imap_cmd_select_next.c:51 +msgid "Select Next" +msgstr "Избери Следно" + +#: plug-ins/imagemap/imap_cmd_select_prev.c:51 +msgid "Select Previous" +msgstr "Избери предходен" + +#: plug-ins/imagemap/imap_cmd_select_region.c:64 +msgid "Select Region" +msgstr "Избери подрачје" + +#: plug-ins/imagemap/imap_cmd_send_to_back.c:51 +#: plug-ins/imagemap/imap_toolbar.c:158 +msgid "Send To Back" +msgstr "Прати во позадина" + +#: plug-ins/imagemap/imap_cmd_unselect.c:53 +msgid "Unselect" +msgstr "Поништи го изборот" + +#: plug-ins/imagemap/imap_cmd_unselect_all.c:53 +msgid "Unselect All" +msgstr "Поништи го Избери Се" + +#: plug-ins/imagemap/imap_edit_area_info.c:195 +msgid "Link Type" +msgstr "Вид на врÑка" + +#: plug-ins/imagemap/imap_edit_area_info.c:204 +msgid "_Web Site" +msgstr "_Веб Страница" + +#: plug-ins/imagemap/imap_edit_area_info.c:210 +msgid "_Ftp Site" +msgstr "_Ftp Страница" + +#: plug-ins/imagemap/imap_edit_area_info.c:216 +msgid "_Gopher" +msgstr "_Gopher" + +#: plug-ins/imagemap/imap_edit_area_info.c:222 +msgid "Ot_her" +msgstr "_Друго" + +#: plug-ins/imagemap/imap_edit_area_info.c:228 +msgid "F_ile" +msgstr "Да_тотека" + +#: plug-ins/imagemap/imap_edit_area_info.c:234 +msgid "WAI_S" +msgstr "WAI_S" + +#: plug-ins/imagemap/imap_edit_area_info.c:240 +msgid "Tel_net" +msgstr "Tel_net" + +#: plug-ins/imagemap/imap_edit_area_info.c:246 +msgid "e-_mail" +msgstr "_е-пошта" + +#: plug-ins/imagemap/imap_edit_area_info.c:252 +msgid "_URL to activate when this area is clicked: (required)" +msgstr "_URL кој ќе Ñе активира кога е кликнато на ова подрачје: (потребно)" + +# +#: plug-ins/imagemap/imap_edit_area_info.c:254 +msgid "Select HTML file" +msgstr "Избери HTML датотека" + +#: plug-ins/imagemap/imap_edit_area_info.c:263 +msgid "Relati_ve link" +msgstr "_Релативна врÑка" + +#: plug-ins/imagemap/imap_edit_area_info.c:269 +msgid "_Target frame name/ID: (optional - used for FRAMES only)" +msgstr "Име на _целната рамка/ID: (опционо - Ñе кориÑти Ñамо за РÐМКИ)" + +#: plug-ins/imagemap/imap_edit_area_info.c:272 +msgid "ALT te_xt: (optional)" +msgstr "ALT те_кÑÑ‚: (опционо)" + +#: plug-ins/imagemap/imap_edit_area_info.c:275 +msgid "_Link" +msgstr "_Ð’Ñ€Ñка" + +#: plug-ins/imagemap/imap_edit_area_info.c:309 +msgid "Dimensions" +msgstr "Димензии" + +#: plug-ins/imagemap/imap_edit_area_info.c:313 +msgid "Pre_view" +msgstr "Пре_глед" + +#: plug-ins/imagemap/imap_edit_area_info.c:351 +msgid "_JavaScript" +msgstr "_JavaScript" + +#: plug-ins/imagemap/imap_edit_area_info.c:450 +msgid "Area Settings" +msgstr "ПодеÑувања на подрачјето" + +#: plug-ins/imagemap/imap_edit_area_info.c:494 +#, c-format +msgid "Area #%d Settings" +msgstr "ПодеÑувања на подрачјето #%d" + +#: plug-ins/imagemap/imap_file.c:50 plug-ins/imagemap/imap_menu.c:64 +msgid "Error opening file" +msgstr "Грешка при отварањето на датотеката" + +#: plug-ins/imagemap/imap_file.c:67 +msgid "Load Imagemap" +msgstr "Вчитувам мапа на Ñлика" + +#: plug-ins/imagemap/imap_file.c:93 +msgid "File exists!" +msgstr "Датотеката поÑтои!" + +#: plug-ins/imagemap/imap_file.c:98 +msgid "" +"File already exists.\n" +" Do you really want to overwrite? " +msgstr "" +"Датотеката веќе поÑтои.\n" +" Дали навиÑтина Ñакате да ја препишете? " + +#: plug-ins/imagemap/imap_file.c:134 +msgid "Save Imagemap" +msgstr "Зачувај мапа на Ñлика" + +#: plug-ins/imagemap/imap_grid.c:201 +msgid "Grid Settings" +msgstr "ПодеÑувања на мрежата" + +#: plug-ins/imagemap/imap_grid.c:205 +msgid "_Snap-To Grid Enabled" +msgstr "„_Држење во Мрежа“ Вклучено" + +#: plug-ins/imagemap/imap_grid.c:211 +msgid "Grid Visibility and Type" +msgstr "ВидливоÑÑ‚ и вид на мрежа" + +#: plug-ins/imagemap/imap_grid.c:218 +msgid "_Hidden" +msgstr "_Скриено" + +#: plug-ins/imagemap/imap_grid.c:226 +msgid "_Lines" +msgstr "_Линии" + +#: plug-ins/imagemap/imap_grid.c:235 +msgid "C_rosses" +msgstr "_КрÑтови" + +#: plug-ins/imagemap/imap_grid.c:243 +msgid "Grid Granularity" +msgstr "ЗрнетоÑÑ‚ на мрежата" + +#: plug-ins/imagemap/imap_grid.c:251 +msgid "_Width" +msgstr "_Ширина" + +#: plug-ins/imagemap/imap_grid.c:257 +msgid "_Height" +msgstr "_ВиÑина" + +#: plug-ins/imagemap/imap_grid.c:271 +msgid "Grid Offset" +msgstr "ОфÑет на мрежата" + +#: plug-ins/imagemap/imap_grid.c:279 +msgid "pixels from l_eft" +msgstr "пикÑели од _лево" + +#: plug-ins/imagemap/imap_grid.c:284 +msgid "pixels from _top" +msgstr "пикÑели од _врвот" + +# +#: plug-ins/imagemap/imap_main.c:128 +msgid "/Filters/Web/_ImageMap..." +msgstr "/Филтери/Веб/_Мапа на Ñлика..." + +#: plug-ins/imagemap/imap_main.c:738 +msgid "Some data has been changed!" +msgstr "Ðекои податоци Ñе променети!" + +# +#: plug-ins/imagemap/imap_main.c:739 +msgid "Do you really want to discard your changes?" +msgstr "Дали навиÑтина Ñакате да ги отфрлите промените?" + +#: plug-ins/imagemap/imap_main.c:947 +#, c-format +msgid "File \"%s\" saved." +msgstr "Датотеката \"%s\" е зачувана." + +#: plug-ins/imagemap/imap_main.c:951 +msgid "Couldn't save file:" +msgstr "Ðе можам да ја зачувам датотеката:" + +# +#: plug-ins/imagemap/imap_main.c:977 +msgid "Image size has changed." +msgstr "Големината на Ñликата е променета." + +#: plug-ins/imagemap/imap_main.c:978 +msgid "Resize area's?" +msgstr "Да ги променам ги големините на подрачјата?" + +#: plug-ins/imagemap/imap_main.c:1006 +msgid "Couldn't read file:" +msgstr "Ðе можам да ја читам датотеката:" + +#: plug-ins/imagemap/imap_main.c:1053 +#, c-format +msgid "URL: %s" +msgstr "URL: %s" + +#: plug-ins/imagemap/imap_menu.c:180 +msgid "_File" +msgstr "_Датотека" + +#: plug-ins/imagemap/imap_menu.c:186 +msgid "Open Recent" +msgstr "Отвори поÑледни" + +#: plug-ins/imagemap/imap_menu.c:208 +#, c-format +msgid "_Undo %s" +msgstr "_Поништи %s" + +#: plug-ins/imagemap/imap_menu.c:224 +#, c-format +msgid "_Redo %s" +msgstr "_Врати %s" + +#: plug-ins/imagemap/imap_menu.c:252 +msgid "_Edit" +msgstr "_Уреди" + +#: plug-ins/imagemap/imap_menu.c:273 +msgid "Deselect _All" +msgstr "ДеÑелектирај _Се" + +# +#: plug-ins/imagemap/imap_menu.c:278 +msgid "Edit Area Info..." +msgstr "Уреди ги информациите за подрачјето..." + +#: plug-ins/imagemap/imap_menu.c:293 +msgid "_View" +msgstr "_Поглед" + +# +#: plug-ins/imagemap/imap_menu.c:297 +msgid "Area List" +msgstr "ЛиÑта на подрачја" + +# +#: plug-ins/imagemap/imap_menu.c:301 +msgid "Source..." +msgstr "Извор..." + +# +#: plug-ins/imagemap/imap_menu.c:309 plug-ins/print/gimp_main_window.c:1431 +msgid "Grayscale" +msgstr "Скала на Ñива" + +# +#: plug-ins/imagemap/imap_menu.c:327 +msgid "Zoom To" +msgstr "Зголемување на" + +# +#: plug-ins/imagemap/imap_menu.c:357 +msgid "_Mapping" +msgstr "_Мапирање" + +# +#: plug-ins/imagemap/imap_menu.c:360 plug-ins/imagemap/imap_popup.c:134 +msgid "Arrow" +msgstr "Стрелка" + +#: plug-ins/imagemap/imap_menu.c:363 +msgid "Select Contiguous Region" +msgstr "Избери континуирани подрачја" + +#: plug-ins/imagemap/imap_menu.c:381 +msgid "_Tools" +msgstr "_Ðлатки" + +# +#: plug-ins/imagemap/imap_menu.c:383 plug-ins/imagemap/imap_popup.c:154 +msgid "Grid Settings..." +msgstr "ПодеÑувања на мрежата..." + +# +#: plug-ins/imagemap/imap_menu.c:386 +msgid "Use GIMP Guides..." +msgstr "КориÑти ГИМП водичи..." + +# +#: plug-ins/imagemap/imap_menu.c:388 +msgid "Create Guides..." +msgstr "Креирај водичи..." + +#: plug-ins/imagemap/imap_menu.c:395 +msgid "_Help" +msgstr "_Помош" + +# +#: plug-ins/imagemap/imap_menu.c:396 +msgid "About ImageMap..." +msgstr "За Мапа на Ñликата..." + +#: plug-ins/imagemap/imap_polygon.c:71 +msgid "_Polygon" +msgstr "_Полигон" + +#: plug-ins/imagemap/imap_polygon.c:474 +msgid "x (pixels)" +msgstr "x (пикÑели)" + +#: plug-ins/imagemap/imap_polygon.c:483 +msgid "y (pixels)" +msgstr "y (пикÑели)" + +#: plug-ins/imagemap/imap_polygon.c:522 +msgid "_Insert" +msgstr "_Вметни" + +#: plug-ins/imagemap/imap_polygon.c:528 +msgid "A_ppend" +msgstr "_Додади" + +#: plug-ins/imagemap/imap_polygon.c:534 +msgid "_Remove" +msgstr "_ОтÑтрани" + +#: plug-ins/imagemap/imap_popup.c:133 +msgid "Tools" +msgstr "Ðлатки" + +# +#: plug-ins/imagemap/imap_popup.c:146 +msgid "Zoom" +msgstr "Зголеми" + +# +#: plug-ins/imagemap/imap_popup.c:156 +msgid "Guides..." +msgstr "Водичи..." + +# +#: plug-ins/imagemap/imap_preferences.c:212 +msgid "Couldn't save resource file:" +msgstr "Ðе можев да ја зачувам изворната датотека:" + +# #: libgimp/gimpfileselection.c:355 +# #: libgimp/gimpunitmenu.c:510 +# msgid "Select" +# msgstr "Odabir" +# +#: plug-ins/imagemap/imap_preferences.c:357 +msgid "Select Color" +msgstr "Избери Боја" + +# +#: plug-ins/imagemap/imap_preferences.c:446 +msgid "Default Map Type" +msgstr "Стандардни видови на мапи" + +# +#: plug-ins/imagemap/imap_preferences.c:465 +msgid "_Prompt for area info" +msgstr "_Питај за инфо за подрачјето" + +# +#: plug-ins/imagemap/imap_preferences.c:467 +msgid "_Require default URL" +msgstr "_Бара предефиниран URL" + +#: plug-ins/imagemap/imap_preferences.c:469 +msgid "Show area _handles" +msgstr "Прикажи _рачки на подрачјето" + +#: plug-ins/imagemap/imap_preferences.c:471 +msgid "_Keep NCSA circles true" +msgstr "_Задржи виÑтинÑки NCSA кругови" + +#: plug-ins/imagemap/imap_preferences.c:473 +msgid "Show area URL _tip" +msgstr "Прикажи URL Ñовет за подрачје" + +#: plug-ins/imagemap/imap_preferences.c:476 +msgid "_Use double-sized grab handles" +msgstr "_КориÑти рачки Ñо дупла големина" + +# +#: plug-ins/imagemap/imap_preferences.c:483 +msgid "_Menu" +msgstr "_Мени" + +#: plug-ins/imagemap/imap_preferences.c:487 +msgid "Number of _Undo levels (1 - 99):" +msgstr "Број на чекори за пони_штување (1 - 99):" + +#: plug-ins/imagemap/imap_preferences.c:492 +msgid "Number of M_RU entries (1 - 16):" +msgstr "Број на M_RU внеÑови (1 - 16):" + +# +#: plug-ins/imagemap/imap_preferences.c:517 +msgid "Normal:" +msgstr "Ðормално:" + +# +#: plug-ins/imagemap/imap_preferences.c:523 +msgid "Selected:" +msgstr "Избрано:" + +#: plug-ins/imagemap/imap_preferences.c:533 +msgid "Co_ntiguous Region" +msgstr "Продолжително подрачје" + +#: plug-ins/imagemap/imap_preferences.c:539 +msgid "_Automatically convert" +msgstr "_ÐвтоматÑки преведи" + +# +#: plug-ins/imagemap/imap_preferences.c:560 +msgid "General Preferences" +msgstr "Општи Параметри" + +#: plug-ins/imagemap/imap_rectangle.c:69 +msgid "_Rectangle" +msgstr "П_равоаголник" + +#: plug-ins/imagemap/imap_rectangle.c:390 +msgid "Upper left _x:" +msgstr "Горен лев _x:" + +#: plug-ins/imagemap/imap_rectangle.c:397 +msgid "Upper left _y:" +msgstr "Горен лев _y:" + +#: plug-ins/imagemap/imap_selection.c:174 plug-ins/imagemap/imap_tools.c:167 +msgid "Edit" +msgstr "Уреди" + +#: plug-ins/imagemap/imap_selection.c:343 +msgid "URL" +msgstr "URL" + +#: plug-ins/imagemap/imap_selection.c:343 +msgid "Target" +msgstr "Мета" + +#: plug-ins/imagemap/imap_selection.c:343 +msgid "Comment" +msgstr "Коментар" + +#: plug-ins/imagemap/imap_settings.c:88 +msgid "Settings for this Mapfile" +msgstr "ПодеÑувања за оваа датотека за мапа" + +#: plug-ins/imagemap/imap_settings.c:95 +msgid "Image name:" +msgstr "Име на Ñликата:" + +#: plug-ins/imagemap/imap_settings.c:96 +msgid "Select Image File" +msgstr "Избери Ñлика" + +#: plug-ins/imagemap/imap_settings.c:100 +msgid "_Title:" +msgstr "_ÐаÑлов:" + +#: plug-ins/imagemap/imap_settings.c:102 +msgid "Aut_hor:" +msgstr "_Ðвтор:" + +#: plug-ins/imagemap/imap_settings.c:104 +msgid "Default _URL:" +msgstr "Преддефиниран _URL:" + +#: plug-ins/imagemap/imap_settings.c:106 +msgid "_Description:" +msgstr "_ОпиÑ:" + +#: plug-ins/imagemap/imap_settings.c:126 +msgid "Map file format" +msgstr "Формат на мапата" + +#: plug-ins/imagemap/imap_source.c:62 +msgid "View Source" +msgstr "Види Извор" + +# +#: plug-ins/imagemap/imap_stock.c:45 +msgid "Edit Map Info..." +msgstr "Уреди ја Инфо Мапата.." + +#: plug-ins/imagemap/imap_toolbar.c:103 +msgid "Open" +msgstr "Отвори" + +#: plug-ins/imagemap/imap_toolbar.c:105 +msgid "Save" +msgstr "Зачувај" + +#: plug-ins/imagemap/imap_toolbar.c:108 +msgid "Preferences" +msgstr "Параметри" + +#: plug-ins/imagemap/imap_toolbar.c:113 +msgid "Undo" +msgstr "Ðаназад" + +#: plug-ins/imagemap/imap_toolbar.c:117 +msgid "Redo" +msgstr "Ðапред" + +#: plug-ins/imagemap/imap_toolbar.c:138 +msgid "Zoom in" +msgstr "Зголеми" + +#: plug-ins/imagemap/imap_toolbar.c:143 +msgid "Zoom out" +msgstr "Ðамали" + +#: plug-ins/imagemap/imap_toolbar.c:148 +msgid "Edit Map Info" +msgstr "Уреди ја Инфо Мапата" + +#: plug-ins/imagemap/imap_tools.c:145 +msgid "Select existing area" +msgstr "Избери го поÑтоечкото подрачје" + +#: plug-ins/imagemap/imap_tools.c:149 +msgid "Fuzzy Select" +msgstr "ÐејаÑно Избирање" + +#: plug-ins/imagemap/imap_tools.c:150 +msgid "Select contiguous regions" +msgstr "Избери продолжителни подрачја" + +#: plug-ins/imagemap/imap_tools.c:155 +msgid "Define Rectangle area" +msgstr "Дефинирај Правоаголно подрачје" + +#: plug-ins/imagemap/imap_tools.c:159 +msgid "Define Circle/Oval area" +msgstr "Дефинирај Кружно/Овално подрачје" + +#: plug-ins/imagemap/imap_tools.c:163 +msgid "Define Polygon area" +msgstr "Дефинирај Полигонално подрачје" + +#: plug-ins/imagemap/imap_tools.c:168 +msgid "Edit selected area info" +msgstr "Уреди инфо на избраното подрачје" + +#: plug-ins/imagemap/imap_tools.c:173 +msgid "Delete selected area" +msgstr "Избриши го избраното подрачје" + +#: plug-ins/maze/algorithms.c:285 +msgid "Constructing maze using Prim's Algorithm..." +msgstr "Креирам лавиринт кориÑтејќи Примов Ðлгоритам..." + +#: plug-ins/maze/algorithms.c:459 +msgid "Constructing tileable maze using Prim's Algorithm..." +msgstr "Креирам Лавиринт во делчиња кориÑтејќи Примов Ðлгоритам.." + +#: plug-ins/maze/maze.c:156 +#, c-format +msgid "" +"Generates a maze using either the depth-first search method or Prim's " +"algorithm. Can make tileable mazes too. See %s for more help." +msgstr "" +"Креира лавиринт Ñо кориÑтење на длабинÑка-прва метода за пребарување или " +"Примов Ðлгоритам. Може да прави и делливи лавиринти. Види %s за помош." + +#: plug-ins/maze/maze.c:162 +msgid "Draws a maze." +msgstr "Црта лавиринт." + +#: plug-ins/maze/maze.c:167 +msgid "/Filters/Render/Pattern/_Maze..." +msgstr "/Филтери/Рендерирање/Шара/_Лавиринт..." + +#: plug-ins/maze/maze.c:446 +msgid "Drawing Maze..." +msgstr "Цртам Лавиринт..." + +#. entscale == Entry and Scale pair function found in pixelize.c +#: plug-ins/maze/maze_face.c:218 +msgid "Width (Pixels):" +msgstr "ВиÑина (пикÑели)" + +#: plug-ins/maze/maze_face.c:230 plug-ins/maze/maze_face.c:246 +msgid "Pieces:" +msgstr "Делови:" + +#: plug-ins/maze/maze_face.c:235 +msgid "Height (Pixels):" +msgstr "ВиÑина (пикÑели)" + +#: plug-ins/maze/maze_face.c:258 +msgid "Multiple (57):" +msgstr "Повеќекратно (57):" + +#: plug-ins/maze/maze_face.c:271 +msgid "Offset (1):" +msgstr "ОфÑет (1):" + +#: plug-ins/maze/maze_face.c:302 +msgid "Depth First" +msgstr "Прво Длабочина" + +#: plug-ins/maze/maze_face.c:303 +msgid "Prim's Algorithm" +msgstr "Примов Ðлгоритам" + +#: plug-ins/maze/maze_face.c:315 +#, c-format +msgid "Selection is %dx%d" +msgstr "Селекцијата е %dx%d" + +#: plug-ins/maze/maze_face.c:421 +msgid "" +"Selection size is not even.\n" +"Tileable maze won't work perfectly." +msgstr "" +"Големината на Ñелекцијата не е еднаква.\n" +"Делливиот лавирин нема да работи Ñовршено." + +#. open URL for help +#: plug-ins/maze/maze_face.c:589 +#, c-format +msgid "Opening %s" +msgstr "Отварам %s" + +#: plug-ins/maze/maze_face.c:598 +#, c-format +msgid "See %s" +msgstr "Види %s" + +#: plug-ins/pagecurl/pagecurl.c:213 +msgid "/Filters/Distorts/_Pagecurl..." +msgstr "/Филтери/ДиÑторзии/_Магарешки уши..." + +#: plug-ins/pagecurl/pagecurl.c:490 +msgid "Pagecurl Effect" +msgstr "Ефект на магаречки уши" + +#: plug-ins/pagecurl/pagecurl.c:504 +msgid "Curl Location" +msgstr "МеÑто на Ñвивањето" + +#: plug-ins/pagecurl/pagecurl.c:529 +msgid "Upper Left" +msgstr "Горе Лево" + +#: plug-ins/pagecurl/pagecurl.c:530 +msgid "Upper Right" +msgstr "Горе ДеÑно" + +#: plug-ins/pagecurl/pagecurl.c:531 +msgid "Lower Left" +msgstr "Доле Лево" + +#: plug-ins/pagecurl/pagecurl.c:532 +msgid "Lower Right" +msgstr "Доле ДеÑно" + +#: plug-ins/pagecurl/pagecurl.c:562 +msgid "Curl Orientation" +msgstr "ÐаÑока на Ñвивањето" + +#: plug-ins/pagecurl/pagecurl.c:600 +msgid "Shade under Curl" +msgstr "Сенка под Увото" + +#: plug-ins/pagecurl/pagecurl.c:611 +msgid "" +"Use Current Gradient\n" +"instead of FG/BG-Color" +msgstr "" +"КориÑти го тековниот прелив намеÑто\n" +"бојата на четката/позадината." + +#: plug-ins/pagecurl/pagecurl.c:624 +msgid "Curl Opacity" +msgstr "ÐепровидноÑÑ‚ на магарешките уши." + +#: plug-ins/pagecurl/pagecurl.c:755 +msgid "Curl Layer" +msgstr "Слој на магарешките уши" + +#: plug-ins/pagecurl/pagecurl.c:997 +msgid "Page Curl..." +msgstr "Магарешки уши..." + +#: plug-ins/print/gimp_color_window.c:211 +msgid "Print Color Adjust" +msgstr "ПодеÑување на боја за печатење" + +#: plug-ins/print/gimp_color_window.c:263 +msgid "Brightness:" +msgstr "ОÑветленоÑÑ‚:" + +#: plug-ins/print/gimp_color_window.c:271 +msgid "" +"Set the brightness of the print.\n" +"0 is solid black, 2 is solid white" +msgstr "" +"ПодеÑувања за оÑветленоÑÑ‚ за печатење.\n" +"0 е потполно црно, 2 е потполно бело." + +#: plug-ins/print/gimp_color_window.c:283 +msgid "Contrast:" +msgstr "КонтраÑÑ‚:" + +#: plug-ins/print/gimp_color_window.c:291 +msgid "Set the contrast of the print" +msgstr "ПодеÑување на контраÑтот на печатењето" + +#: plug-ins/print/gimp_color_window.c:310 +msgid "Adjust the cyan balance of the print" +msgstr "ПодеÑување на рамнотежата на цијан бојата за печатење" + +#: plug-ins/print/gimp_color_window.c:329 +msgid "Adjust the magenta balance of the print" +msgstr "ПодеÑување на рамнотежата на магента бојата за печатење" + +#: plug-ins/print/gimp_color_window.c:348 +msgid "Adjust the yellow balance of the print" +msgstr "ПодеÑување на рамнотежата на жолтата боја за печатење" + +#: plug-ins/print/gimp_color_window.c:367 +msgid "" +"Adjust the saturation (color balance) of the print\n" +"Use zero saturation to produce grayscale output using color and black inks" +msgstr "" +"ПодеÑување на заÑитеноÑта (рамнотежа на боја) за печатење\n" +"КориÑтете нултна заÑитеноÑÑ‚ за да добиете излез во нијанÑи на Ñива кориÑтејќи " +"маÑтила во боја и црна." + +#: plug-ins/print/gimp_color_window.c:380 +msgid "Density:" +msgstr "ГуÑтина:" + +#: plug-ins/print/gimp_color_window.c:388 +msgid "" +"Adjust the density (amount of ink) of the print. Reduce the density if the " +"ink bleeds through the paper or smears; increase the density if black " +"regions are not solid." +msgstr "" +"ПодеÑување на гуÑтината (количина на маÑтило) за печатење. Ðамалете ја гуÑтината ако " +"маÑтилото тече низ хартијата или Ñе замачкува, зголемете ја гуÑтината ако црните подрачја " +"не Ñе потполно црни." + +#: plug-ins/print/gimp_color_window.c:410 +msgid "" +"Adjust the gamma of the print. Larger values will produce a generally " +"brighter print, while smaller values will produce a generally darker print. " +"Black and white will remain the same, unlike with the brightness adjustment." +msgstr "" +"ПодеÑување на гама за печатење. Поголеми вредноÑти ќе дадат поÑветло печатење, додека " +"пониÑките вредноÑти ќе дадат потемно печатење. Црната и белата ќе оÑтана иÑти, за разлика " +"од подеÑувањето на оÑветленоÑта." + +#: plug-ins/print/gimp_color_window.c:426 +msgid "Dither Algorithm:" +msgstr "Ðлгоритам за мешање:" + +#: plug-ins/print/gimp_color_window.c:434 +msgid "" +"Choose the dither algorithm to be used.\n" +"Adaptive Hybrid usually produces the best all-around quality.\n" +"Ordered is faster and produces almost as good quality on photographs.\n" +"Fast and Very Fast are considerably faster, and work well for text and line " +"art.\n" +"Hybrid Floyd-Steinberg generally produces inferior output." +msgstr "" +"Изберете алгоритам за мешање.\n" +"ПриÑпоÑобливиот Хибрид обично дава најдобар квалитет.\n" +"Редниот е побрз и дава Ñкоро иÑÑ‚ таков квалитет на фотографијата.\n" +"Брзиот и Многи брзиот Ñе релативно побрзи и Ñе добри за текÑÑ‚ и " +"линиÑки цртежи.\n" +"Хибридниот Флојд-Штејнер воглавно дава најлош квалитет." + +#. +#. * Create the main dialog +#. +#: plug-ins/print/gimp_main_window.c:360 +#, c-format +msgid "%s -- Print v%s" +msgstr "%s -- Печати v%s" + +#: plug-ins/print/gimp_main_window.c:369 +msgid "" +"Save\n" +"Settings" +msgstr "" +"Зачувај\n" +"ПодеÑувања" + +#: plug-ins/print/gimp_main_window.c:370 +msgid "" +"Print and\n" +"Save Settings" +msgstr "" +"Печати и\n" +"Зачувај ПодеÑувања" + +#: plug-ins/print/gimp_main_window.c:437 +msgid "" +"Position the image on the page.\n" +"Click and drag with the primary button to position the image.\n" +"Click and drag with the second button to move the image with finer " +"precision; each unit of motion moves the image one point (1/72\")\n" +"Click and drag with the third (middle) button to move the image in units of " +"the image size.\n" +"Holding down the shift key while clicking and dragging constrains the image " +"to only horizontal or vertical motion.\n" +"If you click another button while dragging the mouse, the image will return " +"to its original position." +msgstr "" +"МеÑто на Ñликата на хартијата.\n" +"Кликнете и влечете Ñо левото копче да ја поÑтавете Ñликата.\n" +"Кликнете и влечете за деÑното копче за поточно да ја помеÑтете Ñликата, " +"Ñекоја единица ја помеÑтува Ñликата за една точка (1/72\")\n" +"Кликнете и влечете Ñо Ñредното копче да ја помеÑтете Ñликата во единиците " +"на големината на Ñликата.\n" +"Држејќи го копчето shift за време на операциите ја ограничува Ñликата Ñамо на " +"хоризонтални и вертикални движења.\n" +"Ðко кликнете на друго копче додека влечете Ñо глушецот, Ñликата ќе Ñе врати на " +"почетната позиција." + +#: plug-ins/print/gimp_main_window.c:484 +msgid "Portrait" +msgstr "Вертикално" + +#: plug-ins/print/gimp_main_window.c:486 +msgid "Landscape" +msgstr "Хоризонтално" + +#: plug-ins/print/gimp_main_window.c:488 +msgid "Upside down" +msgstr "Ðаопаку" + +#: plug-ins/print/gimp_main_window.c:490 +msgid "Seascape" +msgstr "Положено" + +#: plug-ins/print/gimp_main_window.c:494 +msgid "" +"Select the orientation: portrait, landscape, upside down, or seascape " +"(upside down landscape)" +msgstr "" +"Изберете ориентација: вертикално, хоризонтално, наопаку или положено (наопаку " +"хоризонтално)" + +#: plug-ins/print/gimp_main_window.c:517 +msgid "Distance from the left of the paper to the image" +msgstr "ОдалеченоÑÑ‚ од левата Ñтрана на хартијата до Ñликата" + +#: plug-ins/print/gimp_main_window.c:530 +msgid "Distance from the top of the paper to the image" +msgstr "ОдалеченоÑÑ‚ од врвот на хартијата до Ñликата" + +#: plug-ins/print/gimp_main_window.c:543 +msgid "Distance from the left of the paper to the right of the image" +msgstr "ОдалеченоÑÑ‚ од левата Ñтрана на хартијата до деÑната Ñтрана на Ñликата" + +#: plug-ins/print/gimp_main_window.c:553 +msgid "Right Border:" +msgstr "ДеÑна ивица:" + +#: plug-ins/print/gimp_main_window.c:557 +msgid "Distance from the right of the paper to the image" +msgstr "ОдалеченоÑÑ‚ од деÑната Ñтрана на хартијата до Ñликата" + +#: plug-ins/print/gimp_main_window.c:571 +msgid "Distance from the top of the paper to the bottom of the image" +msgstr "ОдалеченоÑÑ‚ од врвот на хартијата до дното на Ñликата" + +#: plug-ins/print/gimp_main_window.c:581 +msgid "Bottom Border:" +msgstr "Долна ивица:" + +#: plug-ins/print/gimp_main_window.c:585 +msgid "Distance from the bottom of the paper to the image" +msgstr "ОдалеченоÑÑ‚ од дното на хартијата до Ñликата" + +#: plug-ins/print/gimp_main_window.c:602 +msgid "Center:" +msgstr "Средина:" + +#: plug-ins/print/gimp_main_window.c:606 +msgid "Vertically" +msgstr "Вертикално" + +#: plug-ins/print/gimp_main_window.c:611 +msgid "Center the image vertically on the paper" +msgstr "Центрирај ја Ñликата вертикално на хартијата" + +#: plug-ins/print/gimp_main_window.c:617 +msgid "Both" +msgstr "Двете" + +#: plug-ins/print/gimp_main_window.c:622 +msgid "Center the image on the paper" +msgstr "ПоÑтави ја Ñликата на Ñредина" + +#: plug-ins/print/gimp_main_window.c:629 +msgid "Horizontally" +msgstr "Хоризонтално" + +#: plug-ins/print/gimp_main_window.c:634 +msgid "Center the image horizontally on the paper" +msgstr "Центрирај ја Ñликата хоризонтално на хартијата" + +#: plug-ins/print/gimp_main_window.c:650 +msgid "Setup Printer" +msgstr "ПодеÑи печатач" + +#. +#. * Printer driver option menu. +#. +#: plug-ins/print/gimp_main_window.c:680 plug-ins/print/gimp_main_window.c:942 +msgid "Printer Model:" +msgstr "Модел на печатачот:" + +#: plug-ins/print/gimp_main_window.c:692 +msgid "Select your printer model" +msgstr "Изберете го моделот на вашиот печатач" + +#. +#. * PPD file. +#. +#: plug-ins/print/gimp_main_window.c:731 +msgid "PPD File:" +msgstr "PPD датотека:" + +#: plug-ins/print/gimp_main_window.c:747 +msgid "Enter the correct PPD filename for your printer" +msgstr "ВнеÑете правилно име на PPD датотеката за вашиот печатач" + +#: plug-ins/print/gimp_main_window.c:750 +msgid "Browse" +msgstr "Барај" + +#: plug-ins/print/gimp_main_window.c:756 +msgid "Choose the correct PPD filename for your printer" +msgstr "Изберете правилно име на PPD датотеката за вашиот печатач" + +#. +#. * Print command. +#. +#: plug-ins/print/gimp_main_window.c:766 +msgid "Command:" +msgstr "Ðаредба:" + +#: plug-ins/print/gimp_main_window.c:779 +msgid "" +"Enter the correct 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 "" +"ВнеÑете правилна команда за печатење. Забелешка: Ве молам да не ги отÑтранувате " +"„-l“ или „-oraw“ од командата или печатењето нема да уÑпее!" + +#. +#. * Output file selection dialog. +#. +#: plug-ins/print/gimp_main_window.c:788 +msgid "Print To File?" +msgstr "Печати во датотека?" + +#. +#. * PPD file selection dialog. +#. +#: plug-ins/print/gimp_main_window.c:801 +msgid "PPD File?" +msgstr "PPD Датотека?" + +#: plug-ins/print/gimp_main_window.c:819 +msgid "Define New Printer" +msgstr "Одреди нов печатач" + +#: plug-ins/print/gimp_main_window.c:842 plug-ins/print/gimp_main_window.c:937 +msgid "Printer Name:" +msgstr "Име на печатачот:" + +#: plug-ins/print/gimp_main_window.c:846 +msgid "Enter the name you wish to give this logical printer" +msgstr "ВнеÑете име кое Ñакате да му го дадете на овој логички печатач" + +#: plug-ins/print/gimp_main_window.c:859 +msgid "About Gimp-Print " +msgstr "За Гимп-Печатење " + +#: plug-ins/print/gimp_main_window.c:872 +msgid "Gimp-Print Version " +msgstr "Гимп-Печатење верзија " + +#: plug-ins/print/gimp_main_window.c:872 +msgid "" +"\n" +"\n" +"Copyright (C) 1997-2001 Michael Sweet, Robert Krawitz,\n" +"and the rest of the Gimp-Print Development Team.\n" +"\n" +"Please visit our web site at http://gimp-print.sourceforge.net.\n" +"\n" +"This program is free software; you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation; either version 2 of the License, or\n" +"(at your option) any later version.\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License\n" +"along with this program; if not, write to the Free Software\n" +"Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" +msgstr "" +"\n" +"\n" +"ÐвторÑки права 1997-2001 Мајкл Свит, Роберт Кравиц,\n" +"и оÑтатокот од развојниот тим на Гимп-Печатење.\n" +"\n" +"Ве молам поÑетете ја нашата Ñтраница на http://gimp-print.sourceforge.net.\n" +"\n" +"Оваа програма е Ñлободен Ñофтвер, можете да ја делите и/или менувате\n" +"под уÑловите на GNU Општата Јавна Лиценца како што е објавена од Ñтрана на\n" +"Free Software Foundation, или верзијата 2 од лиценцата, или\n" +"(по ваш избор) било која подоцна верзија.\n" +"\n" +"Оваа програма е поделена Ñо надеж дека ќе биде кориÑна,\n" +"но БЕЗ ÐИКÐКВРГÐРÐÐЦИЈÐ, дури ни без подразбирлива ПРОДÐЖÐРгаранција\n" +"или гаранција за ПОГОДÐОСТРЗРОДРЕДЕÐÐ ÐÐМЕÐÐ. Види ја\n" +"GNU Општата Јавна Лиценца за повеќе детали.\n" +"\n" +"Би требало да Ñте добиле примерок од GNU Општата Јавна Лиценца\n" +"заедно Ñо оваа програма, ако не Ñте, пишете на адреÑа Free Software\n" +"Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n" + +#: plug-ins/print/gimp_main_window.c:920 +msgid "Printer Settings" +msgstr "ПодеÑувања на печатарот" + +#: plug-ins/print/gimp_main_window.c:933 +msgid "" +"Select the name of the printer (not the type, or model, of printer) that you " +"wish to print to" +msgstr "" +"Изберете го името на печатарот (не вид, или модел на штампачот) на кој Ñакате " +"да печатите" + +# +#. +#. * Setup printer button +#. +#: plug-ins/print/gimp_main_window.c:953 +msgid "Setup Printer..." +msgstr "ПодеÑи печатар..." + +#: plug-ins/print/gimp_main_window.c:955 +msgid "" +"Choose the printer model, PPD file, and command that is used to print to " +"this printer" +msgstr "" +"Изберете модел на печатарот, PPD датотека и наредба Ñо која ќе печатите " +"на овој печатар." + +# +#. +#. * New printer button +#. +#: plug-ins/print/gimp_main_window.c:970 +msgid "New Printer..." +msgstr "Ðов печатар..." + +#: plug-ins/print/gimp_main_window.c:972 +msgid "" +"Define a new logical printer. This can be used to name a collection of " +"settings that you wish to remember for future use." +msgstr "" +"Дефинирајте нов логички печатар. Ова може да биде кориÑтено за именување на збир " +"од подеÑувања кои Ñакате да ги зачувате за идна употреба." + +#: plug-ins/print/gimp_main_window.c:993 +msgid "Size of paper that you wish to print to" +msgstr "Големина на хартијата на која ќе печатите" + +#: plug-ins/print/gimp_main_window.c:996 +msgid "Media Size:" +msgstr "Гол. на медиумот:" + +#: plug-ins/print/gimp_main_window.c:1005 +msgid "Dimensions:" +msgstr "Димензии:" + +#: plug-ins/print/gimp_main_window.c:1019 +msgid "Width of the paper that you wish to print to" +msgstr "Ширина на хартијата на која ќе печатите" + +#: plug-ins/print/gimp_main_window.c:1036 +msgid "Height of the paper that you wish to print to" +msgstr "ВиÑина на хартијата на која ќе печатите" + +#: plug-ins/print/gimp_main_window.c:1052 +msgid "Type of media you're printing to" +msgstr "Вид на медиум на кој ќе печатите" + +#: plug-ins/print/gimp_main_window.c:1055 +msgid "Media Type:" +msgstr "Вид на медиум:" + +#: plug-ins/print/gimp_main_window.c:1068 +msgid "Source (input slot) of media you're printing to" +msgstr "Извор (влезен Ñлот) на медиумот на кој ќе печатите" + +#: plug-ins/print/gimp_main_window.c:1071 +msgid "Media Source:" +msgstr "Извор на медиумот:" + +#: plug-ins/print/gimp_main_window.c:1084 +msgid "Type of ink in the printer" +msgstr "Вид на маÑтило во печатарот" + +#: plug-ins/print/gimp_main_window.c:1087 +msgid "Ink Type:" +msgstr "Вид на маÑтило:" + +#: plug-ins/print/gimp_main_window.c:1100 +msgid "Resolution and quality of the print" +msgstr "Резолуција и квалитет на печатењето" + +#: plug-ins/print/gimp_main_window.c:1139 +msgid "Scaling:" +msgstr "Размер:" + +#: plug-ins/print/gimp_main_window.c:1145 +msgid "Set the scale (size) of the image" +msgstr "Одредете го размерот (големината) на Ñликата" + +#: plug-ins/print/gimp_main_window.c:1178 +msgid "" +"Select whether scaling is measured as percent of available page size or " +"number of output dots per inch" +msgstr "" +"Одредува дали размерот Ñе мери како проценти на доÑтапна големина на Ñтраната " +"или како број на излезни точки по инч." + +#: plug-ins/print/gimp_main_window.c:1183 +msgid "Percent" +msgstr "Процент" + +#: plug-ins/print/gimp_main_window.c:1190 +msgid "Scale the print to the size of the page" +msgstr "Размер на материјалот за печатење Ñпрема големината на Ñтраната" + +#: plug-ins/print/gimp_main_window.c:1196 +msgid "PPI" +msgstr "PPI" + +#: plug-ins/print/gimp_main_window.c:1202 +msgid "Scale the print to the number of dots per inch" +msgstr "Размер на метеријалот за печатење Ñпрема бројот на точки по инч" + +#: plug-ins/print/gimp_main_window.c:1228 +msgid "Set the width of the print" +msgstr "ПодеÑете ја ширината на печатење" + +#: plug-ins/print/gimp_main_window.c:1241 +msgid "Set the height of the print" +msgstr "ПодеÑете ја виÑината за печатење" + +#: plug-ins/print/gimp_main_window.c:1261 +msgid "Units:" +msgstr "Единици:" + +#: plug-ins/print/gimp_main_window.c:1266 +msgid "Select the base unit of measurement for printing" +msgstr "Ја одредува оÑновната единечна мерка за печатење" + +#: plug-ins/print/gimp_main_window.c:1269 +msgid "Inch" +msgstr "Инч" + +#: plug-ins/print/gimp_main_window.c:1276 +msgid "Set the base unit of measurement to inches" +msgstr "Го зема инчот како оÑновна единечна мерка" + +#: plug-ins/print/gimp_main_window.c:1282 +msgid "cm" +msgstr "Ñм" + +#: plug-ins/print/gimp_main_window.c:1288 +msgid "Set the base unit of measurement to centimetres" +msgstr "ПоÑтави Ñантиметри како оÑновна единечна мерка" + +#. +#. * The "image size" button +#. +#: plug-ins/print/gimp_main_window.c:1298 +msgid "" +"Use Original\n" +"Image Size" +msgstr "" +"КориÑти ја оригиналната\n" +"Големина на Ñликата" + +#: plug-ins/print/gimp_main_window.c:1304 +msgid "Set the print size to the size of the image" +msgstr "ПоÑтави ја големината на печатење на големината на Ñликата" + +#: plug-ins/print/gimp_main_window.c:1327 +msgid "Image / Output Settings" +msgstr "ПодеÑување на Слика / Излез" + +# +#: plug-ins/print/gimp_main_window.c:1340 +msgid "Image Type:" +msgstr "Вид на Ñлика:" + +#: plug-ins/print/gimp_main_window.c:1345 +msgid "Optimize the output for the type of image being printed" +msgstr "Оптимизирај го излезот за видот на Ñликата која Ñе печати" + +#: plug-ins/print/gimp_main_window.c:1349 +msgid "Line Art" +msgstr "ЛиниÑка уметноÑÑ‚" + +#: plug-ins/print/gimp_main_window.c:1356 +msgid "Fastest and brightest color for text and line art" +msgstr "Ðајбрзи и најÑветли бои за текÑÑ‚ и линиÑка уметноÑÑ‚" + +#: plug-ins/print/gimp_main_window.c:1363 +msgid "Solid Colors" +msgstr "Полни бои" + +#: plug-ins/print/gimp_main_window.c:1370 +msgid "Best for images dominated by regions of solid color" +msgstr "Ðајдобро за Ñлики на кои преовладуваат Ñилно обоени подрачја" + +#: plug-ins/print/gimp_main_window.c:1378 +msgid "Photograph" +msgstr "Фотографија" + +#: plug-ins/print/gimp_main_window.c:1386 +msgid "" +"Slowest, but most accurate and smoothest color for continuous tone images " +"and photographs" +msgstr "" +"Ðајбавни, но најточни и најглатки бои за нијанÑирање на Ñлики и " +"фотографии" + +#: plug-ins/print/gimp_main_window.c:1412 +msgid "Output Type:" +msgstr "Вид на излез:" + +#: plug-ins/print/gimp_main_window.c:1417 +msgid "Select the desired output type" +msgstr "Изберете го Ñаканиот вид на излез" + +# +#: plug-ins/print/gimp_main_window.c:1426 +msgid "Color output" +msgstr "Излез на боја" + +#: plug-ins/print/gimp_main_window.c:1438 +msgid "Print in shades of gray using black ink" +msgstr "Печати во нијанÑи на Ñива кориÑтејќи црно маÑтило" + +#: plug-ins/print/gimp_main_window.c:1445 +msgid "Black and White" +msgstr "Црно/Бело" + +#: plug-ins/print/gimp_main_window.c:1452 +msgid "Print in black and white (no color, and no shades of gray)" +msgstr "Печати црно/бело (нема боја ниту нијанÑи на Ñива)" + +#. +#. * Color adjust button +#. +#: plug-ins/print/gimp_main_window.c:1463 +msgid "Adjust Output..." +msgstr "ПодеÑи го излезот..." + +#: plug-ins/print/gimp_main_window.c:1470 +msgid "Adjust color balance, brightness, contrast, saturation, and dither algorithm" +msgstr "ПодеÑи ја рамнотежата на бојата, Ñветло, контраÑÑ‚, заÑитеноÑÑ‚ и алгоритам на мешање" + +#: plug-ins/print/print.c:169 +msgid "/File/_Print..." +msgstr "/Датотека/Пе_чати..." + +#: plug-ins/print/print.c:735 plug-ins/print/print.c:736 +#: plug-ins/print/print.c:834 plug-ins/print/print.c:1183 +msgid "File" +msgstr "Датотека" + +#: plug-ins/rcm/rcm.c:115 +msgid "/Filters/Colors/Map/Colormap _Rotation..." +msgstr "/Филтери/Бои/Мапа/Рота_ција на Мапа на Боја..." + +#: plug-ins/rcm/rcm.c:277 +msgid "Rotating the colormap..." +msgstr "Ротирам мапа на боја..." + +#: plug-ins/rcm/rcm_callback.c:149 plug-ins/rcm/rcm_dialog.c:276 +msgid "Switch to clockwise" +msgstr "Ротација во наÑока на Ñтрелките на чаÑовникот" + +#: plug-ins/rcm/rcm_callback.c:149 plug-ins/rcm/rcm_dialog.c:276 +msgid "Switch to c/clockwise" +msgstr "Ротација обрт. од Ñтрелките на чаÑовникот" + +#: plug-ins/rcm/rcm_dialog.c:126 +msgid "Rotated" +msgstr "Ротирано" + +#: plug-ins/rcm/rcm_dialog.c:285 +msgid "Change order of arrows" +msgstr "Смени го раÑпоредот на Ñтрелките" + +#: plug-ins/rcm/rcm_dialog.c:292 +msgid "Select all" +msgstr "Избери Ñе" + +#. spinbutton 1 +#: plug-ins/rcm/rcm_dialog.c:302 plug-ins/rcm/rcm_dialog.c:379 +msgid "From" +msgstr "Од" + +#. spinbutton 2 +#: plug-ins/rcm/rcm_dialog.c:327 plug-ins/rcm/rcm_dialog.c:380 +msgid "To" +msgstr "До" + +#. Gray: Operation-Mode: two radio buttons +#: plug-ins/rcm/rcm_dialog.c:509 +msgid "Treat as this" +msgstr "Гледај како ова" + +#: plug-ins/rcm/rcm_dialog.c:521 +msgid "Change to this" +msgstr "Промени во ова" + +#. * Gray: What is gray? * +#: plug-ins/rcm/rcm_dialog.c:534 +msgid "What is Gray?" +msgstr "Што е Сива?" + +#. * Misc: Used unit selection * +#: plug-ins/rcm/rcm_dialog.c:623 +msgid "Units" +msgstr "Единици" + +#. Misc: Used unit selection: 3 radio buttons +#: plug-ins/rcm/rcm_dialog.c:632 +msgid "Radians" +msgstr "РадијанÑи" + +#: plug-ins/rcm/rcm_dialog.c:644 +msgid "Radians/Pi" +msgstr "РадијанÑи/Пи" + +#: plug-ins/rcm/rcm_dialog.c:656 +msgid "Degrees" +msgstr "Степени" + +#: plug-ins/rcm/rcm_dialog.c:678 +msgid "Continuous update" +msgstr "Ðепрекинато ажурирање" + +#: plug-ins/rcm/rcm_dialog.c:692 +msgid "Area:" +msgstr "ОблаÑÑ‚:" + +#: plug-ins/rcm/rcm_dialog.c:699 +msgid "Entire Layer" +msgstr "Цел Слој" + +#: plug-ins/rcm/rcm_dialog.c:717 +msgid "Context" +msgstr "Содржина" + +#. Create dialog +#: plug-ins/rcm/rcm_dialog.c:771 +msgid "Colormap Rotation" +msgstr "Ротација на мапа на боја" + +#: plug-ins/rcm/rcm_dialog.c:815 +msgid "Main" +msgstr "Главен" + +#: plug-ins/rcm/rcm_dialog.c:818 +msgid "Misc" +msgstr "Разно" + +#. printf("width = %d, height = %d\n",BITMAP_WIDTH(marked),BITMAP_HEIGHT(marked)); +#: plug-ins/sel2path/pxl-outline.c:83 +msgid "Selection to Path..." +msgstr "Селекција во патека..." + +#: plug-ins/sel2path/sel2path.c:185 +msgid "No selection to convert" +msgstr "Ðема Ñелекција за конверзија" + +#: plug-ins/sel2path/sel2path.c:302 +msgid "Selection To Path Advanced Settings" +msgstr "Ðапредни опции за претварање на Ñелекција во патека" + +#: plug-ins/sgi/sgi.c:530 +#, c-format +msgid "Could not open '%s' for writing." +msgstr "Ðе можам ја отворам '%s' за пишување." + +#: plug-ins/sgi/sgi.c:610 +msgid "Save as SGI" +msgstr "Зачувај како SGI" + +#: plug-ins/sgi/sgi.c:619 +msgid "Compression Type" +msgstr "Вид на компреÑија" + +#: plug-ins/sgi/sgi.c:623 +msgid "No Compression" +msgstr "Без компреÑија" + +#: plug-ins/sgi/sgi.c:625 +msgid "RLE Compression" +msgstr "RLE КомпреÑија" + +#: plug-ins/sgi/sgi.c:627 +msgid "" +"Aggressive RLE\n" +"(Not Supported by SGI)" +msgstr "" +"ÐгреÑивна RLE\n" +"(Ðе е подржана од SGI)" + +#: plug-ins/twain/twain.c:532 +msgid "/File/Acquire/_TWAIN..." +msgstr "/Датотека/Земи од/_TWAIN..." + +#. Initialize our progress dialog +#: plug-ins/twain/twain.c:666 +msgid "Transferring TWAIN data..." +msgstr "Префрлам податоци од TWAIN..." + +#: plug-ins/winsnap/winsnap.c:947 +msgid "Grab a single window" +msgstr "Фати еден прозорец" + +# +#: plug-ins/winsnap/winsnap.c:958 +msgid "Include decorations" +msgstr "Вклучи декорации" + +# +#: plug-ins/winsnap/winsnap.c:993 +msgid "Grab the whole screen" +msgstr "Фати цел екран" + +#: plug-ins/winsnap/winsnap.c:1010 +msgid "after" +msgstr "потоа" + +#: plug-ins/winsnap/winsnap.c:1221 +msgid "No data captured" +msgstr "Ðема фатени податоци" + +#: plug-ins/xjt/xjt.c:715 +#, c-format +msgid "XJT file contains unknown layermode %d" +msgstr "XЈТ датотеката Ñодржи непознат Ñлој %d" + +#: plug-ins/xjt/xjt.c:752 +#, c-format +msgid "Warning: unsupported layermode %d saved to XJT" +msgstr "Предупредување: неподржаниот Ñлој %d е зачуван како ХЈТ" + +#: plug-ins/xjt/xjt.c:768 +#, c-format +msgid "XJT file contains unknown pathtype %d" +msgstr "XЈТ Ñодржи непознат вид на патека %d" + +#: plug-ins/xjt/xjt.c:784 +#, c-format +msgid "Warning: unsupported pathtype %d saved to XJT" +msgstr "Предупредување: неподржаниот вид на патека %d е зачуван како ХЈТ" + +#: plug-ins/xjt/xjt.c:803 +#, c-format +msgid "XJT file contains unknown unittype %d" +msgstr "ХЈТ датотеката Ñодржи непознат вид на единица %d" + +#: plug-ins/xjt/xjt.c:824 +#, c-format +msgid "Warning: unsupported unittype %d saved to XJT" +msgstr "Предупредување: неподржаниот вид на единица %d е зачуван како XJT" + +#: plug-ins/xjt/xjt.c:846 +msgid "Save as XJT" +msgstr "Зачувај како XJT" + +#: plug-ins/xjt/xjt.c:876 +msgid "Clear Transparent" +msgstr "ЧиÑто провидно" + +#: plug-ins/xjt/xjt.c:1701 plug-ins/xjt/xjt.c:3327 +#, c-format +msgid "Could not create working folder '%s': %s" +msgstr "Ðе можам да креирам работен директориум '%s': %s" + +#: plug-ins/xjt/xjt.c:3196 +#, c-format +msgid "Error: Could not read XJT property file '%s'." +msgstr "Грешка: Ðе можам да ја прочитам ХЈТ датотеката за оÑобини '%s'." + +#: plug-ins/xjt/xjt.c:3201 +#, c-format +msgid "Error: XJT property file '%s' is empty." +msgstr "Грешка: XЈТ датотеката за оÑобини '%s' е празна." + diff -uraN gimp-2.2.8/po-plug-ins/zh_CN.gmo gimp-2.2.9/po-plug-ins/zh_CN.gmo --- gimp-2.2.8/po-plug-ins/zh_CN.gmo 2005-05-08 23:42:26.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/zh_CN.gmo 2005-08-15 12:09:23.000000000 +0200 @@ -1,432 +1,469 @@ -Þ•Å DN lœ¨Ð©Ð «Ð¸Ð ÎÐÜÐäÐ1ôÐ&Ñ"@ÑcÑzÑ•Ñ ²Ñ*ÓÑ"þÑ!ÒAÒ`ÒgÒ {Ò"‡ÒªÒ#ÊÒ$îÒ -ÓVÓQuÓÇÓÐÓ æÓðÓ÷ÓÔ Ô Ô*Ô -/Ô:ÔKÔ SÔ]Ô fÔrÔzÔƒÔ‹Ô - Ô«Ô ÀÔÍÔÓÔåÔ ìÔöÔÿÔÕ+ÕDÕUÕdÕuՌ՜եÕ)¼ÕæÕ ÖLÖ`ÖqÖŒÖ¬Ö ÈÖ:éÖ$×=×<U×C’×$Öקû×Þ£Ø'‚ÙªÙ}ÊÙ&HÚ"oÚ’Ú¯ÚÀÚ -ÏÚÚÚëÚ ûÚÛ Û5ÛNÛVÛ+^Û ŠÛ”Û%Û ÃÛÍÛãÛéÛøÛÿÛ<ÜEÜRMÜ Ü ¯Ü»ÜÂÜÔÜëÜÝÝ )Ý26ÝiÝ oÝ|Ý$‹Ý°ÝÃÝØÝéÝAÞGÞ YÞ gÞqÞwÞ}ÞÞ –Þ¤Þ -¹Þ -ÄÞÏÞ×ÞàÞèÞíÞ ß ß*ß=ßOßSßoßƒß”ß¦ß -¬ß·ßÉßÚß êß öß -à -à -à -$à /à=à Bà NàXàgàmà}à„à“àšàŸà°àÂàÈàØàéàùà -á á"á 2á >á HáTá[á má yá‡áá’á ¡á ­á»áÃá ÇáÓáÚáßáèáøáââ #â1âFâdâuâyâ~â‚â†âŒâ”ââ ¬â¸â -Éâ Ôâââ êâöâããã ã )ã5ã"Jãmã?†ãÆãßã$ùãä27ä#jä/Žä'¾ä$æä& å2åRåJoå&ºå'áå æ -ææ+æ:æ -Aæ -LæWænæ*‚æ­æ(Ëæôæ üæçhçh†ç)ïç'è#Aè4eè4šè(Ïè)øè'"élJé*·é5âé5ê,Nê*{ê¦ê4µê êê÷êë (ë$6ë[ësë4|ë±ë ¹ëÆë'dìŒì3œì$Ðìõìüì -í!í'í9íSíZíaírízí ‚íŒí ¦í³íÅíÙí -ìí÷í îîî î.î?îNî`î{î”î -£î®îÆîÝî òîï -ï@ï ^ïkïzï–ï©ï -°ï»ïÒïåïûïðð)ð2ðDðZðaðið qð{ð„ðŒð•ðð®ð Âð ÏðÜð ðð$üð!ñ2ñ+Iñ4uñªñ²ñÄñ Íñ×ñ+àñ ò,òA?òòŠò ò ›ò©ò¸ò)Èò6òò)ó;ó -[ó&fó -ó˜ó(Ÿó+Èó!ôóô/ô&Kô rô#“ô ·ô#Øô1üô#.õ&Rõyõ™õ/²õ>âõ!ö5öIö8föŸö±ö ¸öÆöØö<êö|'÷'¤÷Ì÷?ì÷ -,ø7ø9Kø …ø“ø¢ø ³ø¿øÐø ãø ñøýøù3ù 9ùEùMùTùoù -‹ù –ù¤ùµùÆùâù -ëù öù -úú ú.ú>úBúGúMúTú]úmú }ú ‰ú•ú ¥ú¯ú¶ú¾úÏúßúïú õúÿúû#û+û <ûJû_ûtûŒû¤û·ûËû áû$íûü ü&ü05üfü müyü ˆü –ü£ü!´üÖüëüýý7ýFý Oý [ý -gýrýƒý žý ¬ý ¹ý Æý ÔýÞýóý þþ !þ/þDþLþ gþtþ‰þ’þ -™þ ¤þ °þºþ Ëþ×þ -éþ ôþÿ ÿ2ÿ0Jÿ={ÿ1¹ÿ=ëÿ/)Y kx + ¹Úê(ý&DUeuB† ÉÕð ,HOWs ‘Ÿ® ÀÍÓØ -êõ $ 6D:\—¦¶ ½ÉÝ)ò/#L2p+£Ïíü "4'T“|4 ERk'Š²Ñì -)D`s'‹³Ææ)./^-y'§ Ï#ð ' - < M %V 2| ¯  µ à Õ #Ü  -$! - F -S -[ -` -1q -£ -6à -'ú -" 6 V l    ‰ – › ° Å Ú ï   -  ( H Y  -q |  › ¤ "ª Í Õ Ú é ñ 6 :  -N Y x  ‹  ™  ¦ ´ Í ß è ø " *6HM -\ g -u€–œ£¨± ÀÍ Õßè ï ý  . @M^ -w‚(˜)Á ëøþ % -6 AKScw‡™ž² -Á ÌÚíó ø/8J Z hr‡ Œ –£ ²¼ÂÔçîóø  #4 MY j -xƒýŠ ˆ ’ ¤ -¶ Á ÍÙÞ äîÿ<2R/…Bµ=ø -6 AM hu ‡•¤ -³¾ Ï Üæ ê ÷ $+3P „¥ ©·ÆÖç ìù ü#6H[l€† -Œ —¤´ÄÍ Önã‡RYÚv4ƒ«\/CŒÐ Ùåìò - -* 5 AN]"w š¦¾ ÎÚï #K1}‘šŸ³»Ð ß é ÷ %66 mw œ ¯(Ð*ù $. I S_cs - ˜¥¼Ó Úçíÿ $2GKP Yfow ~ˆ - -›/¦`Ö7  < F  L  X Gb Bª Ní I"$d"%‰"$¯"Ô"Ü"å"ö" -##.#@#E#N# U# _#i#p# €#Ž#ª#Æ# -Õ#à#ø# $"$4$I$^$ n$|$•$±$È$ Ù$å$ -ê$ õ$%%7% -I% T% -`% k%w%Ž%¥% ½% É%×% ç%ó%& && & (&<5&%r& ˜& -¢&­&Ã&'Ê& ò&'#';'J' Z' h'v' ‰'—'§'¸'À'Ò' Ù'ã'÷' þ' (#( -;( F(S(k(ƒ( -‹( –(  (­( Æ(Ô( Ù( å( ó(ÿ() ))$) -9)D)W)0n) Ÿ) ©)¶)Î) -æ) ñ)þ)* .*+<*h*~*™*®*É*Î*Ö* Þ* ì*ù* ++4+P+b+ i+u+ˆ+ + —+¡+ ·+Å+Í+á+ð+ù+ -, ,!,&,5, =, -I,T,],l, u, ƒ, ,Iš, ä,î,ý,-- --*-:B-0}- -®-¹-.¿-î-ó-ú-..". 3.T.g.w. Š.«.¼.*Î.ù./3/S/ o/y/‚/ “// ¦/³/ »/È/ Ù/ã/ ì/ù/0'0F0e0y0‚0%‘0·0¿0 -Ï0Ú0 á0ë0 ô0þ01-1 C1M1a1j1s1 x1‚1 ˜1 ¤1°1À1#Þ122(2<2T2 \2 i2u2 Œ2™2¢2 µ2¿2 Æ2Ô2Û2 ê2 ÷23 3 3 )33373G3 ^3 h3 r32|3¯3È3ã3þ34-4 I4S4 W4 -a4l4†44ž4§4 ¯4 -¼4Ç4$×4ü4 55 $5 05<5K5 -S5 ^5 l5 -y5„5¢5º5À5Õ5 -Ü5 ç5ô5ü5 6#6@6 Y6 -c6n6~6 †66 Ÿ6­6Á6 Ê6Ø6 -ß6'ê6 77"7 )7 37 =7G7g7„7”7›7ª7 °7¼7Â7 Ë7Ù7á7ê7 ó7 ÿ7 888+8d8 m8y8+Ž8º8 Â8Ï8Þ8ò8ú8 99 69D9S9d9„9 “9 ¡9­9Ã9Õ9 è9 ô9þ9: 3:=:F: J:X:$]:‚:†: -–:¡: ª: ·:Å: -Ù:ä:é:ù:; ;;#; -+;6;=;E;[;x;Œ;“;£; ³;À; Ð; Þ; ê;ø;<<+<F<J<Y<j<y< Œ<–<%›<Á<Ò<ã< û<= ==*=/=>=N=]=m=r==ˆ=—=©= ¼=É=ä=>>-)>W>_>r> z>›>­>½>Ý>õ> ? ? ?(?;?P?i?z?Ž?¥?¸?Ê?Ò?ï?@"@7@N@ -]@ h@1t@,¦@Ó@í@ -AA (A6ASAZA `A -nAyA€A ‡A -“AžA¤A¬AµA¼A ËA ÕA ßAéAñA -BBB;BWBsB ƒB B—BB¯B4ÄB!ùBC+C:C OC ]C gCtC|C‚C -’CC ¦C°C -¶CÁCàCåC÷CDD; D \D hD -tDD•D¬D ÄDÐD ÕD#ãD -EE .E;EUE dE -nEyE‘E £E±EÆEÙE*ðE F'F8F TF `FnFF ’FžF ·F ÄF ÐF ÜF èFôFG G#G 2G >G KG XG dG pG|G*’G ½GËGßGòG H -HH,H/U -MUXUmU€U‰U ‘UžUµUÍUDèU'-V@UV –V V§V·V ËVÕVðV÷VWWW 6WCWIW PW ^WkW{W„W•W «W ¹W ÆWÔW -ÙW7äWX $X1XBXIX OX -]X hX uXX –X X´X(ºXãXùX Y Y -!Y,Y5Y GYSY kY -xYƒY šY ¨Y´Y»Y ÃYÍYáYóYûYZ&Z/Z8ZRTZ&§ZÎZáZZýZSX[¬[Ç[5â[+\FD\‹\0«\MÜ\E*]Pp]KÁ]> ^<L^7‰^úÁ^œ¼_Y`!u`—`¶`.Õ`)a%.aQTa)¦a&Ða÷a„b/™b3Éb&ýb$cDc0cc4”cÉcácpûc~ld=ëd%)e,OeÍ|e!JflfJƒfÎf çfóf)g --g8gGg LgZg jgwg-‰g·gÈgÏgØgág ógýgh - h h h(h0h9h =hJhPh Yhch hhrhh Ÿh«h Âh ÐhÚh ëh÷hühi6iTimisiwii ™ioºi{*j¦j¼jÁjÐj Õjájüjk% k/k>k/Fkvk k Œk™kµk&Îkõkþkl -l l/l >l JlVltl‡l—l¯lFÏl,mQCm:•mÐmåm*ùm $n2nKnfnn†nŒnœn¬nÁnÒnÙnènún oo!o1o:o -Io To ^oho no |o ‰o•oo¦o¯o!µo×oëoþop­pjËpA6q$xq=q.Ûq- -r-8rfrkr -ƒr Žr˜r žr¨rU­rnsrs‚s›s¡sªsºsÁsÆsÎs8àst t,t1tFtUtdtst vt&‚t%©t%Ïtõtûtu[u nu{u€u…u”u—uu£u¨u­u´u¼uSÅuCv:]vF˜vßvîvñvw ww1w:w Xwdwlwqw€w w šw ¤w®w ÀwÌwÓwåwùwx -xxx 'x5xFxVxfx }x ‡x“x -¥x °x ¾xÈx ÏxÝxæxíx -ôxÿxy y y y3y ~F~O~U~Z~b~h~ -ƒ~ Ž~ œ~¨~ »~È~Ø~à~å~ô~ý~ !(<(D m z‡ žª ² -¾ÉÞæ ì -ø€€)2€\€b€g€p€€‡€—€¯€¶€Ë€Ý€å€ì€ò€ #*0?Nm -|‡ ¦ ´ À Ê Ô à ìù‚ ‚ #‚/‚?‚ -G‚R‚f‚ z‚ -†‚‘‚¡‚ §‚µ‚Ä‚ Í‚Ú‚ì‚ò‚ -ú‚ƒƒ *ƒ4ƒ KƒXƒgƒ vƒ‚ƒ’ƒ›ƒ £ƒ±ƒºƒ -ɃÔƒ åƒ -òƒ ýƒ -„„ -$„/„8„L„\„q„z„ ƒ„ ‘„›„ ¢„¬„„ Õ„ â„ ì„ö„û„ …… "…/… -7…B… K… X… -f…q… w… -ƒ…Ž…”… …©…±… -Â…Í…â… õ…† † -†!†*† >† J†W†m†|††•†¥†µ†Ć͆܆ ø†‡%‡5‡ R‡\‡ n‡ z‡ †‡‡ ˜‡ ¥‡¯‡µ‡¼‡ŇÕ‡ ܇è‡ þ‡ ˆˆ %ˆ1ˆ9ˆHˆQˆaˆiˆ -rˆ -}ˆˆˆšˆ¢ˆ «ˆ8µˆ îˆ -úˆ‰ ‰ %‰ 3‰?‰H‰P‰W‰ -f‰q‰ w‰6„‰ »‰lj͉Ö‰ ߉ì‰ý‰Š ŠŠ,ŠFŠ \ŠjŠ‰Š-¢Š ЊÚŠ áŠïŠ‹ ‹ ‹*‹ :‹D‹ -U‹`‹f‹l‹ u‹ ‚‹ ‹ ™‹ £‹±‹ ¸‹ Æ‹Ô‹Û‹ã‹é‹û‹ ŒŒ %Œ/Œ -@Œ KŒUŒ^ŒqŒ uŒŒ -Œ ›Œ¥Œ®Œ²ŒºŒ ¾ŒÌŒÒŒÙŒïŒ- :@ETds ƒ(¹¼ÁÈÐ Öã"ç -ŽŽ Ž $Ž -.Ž 9Ž -CŽNŽ VŽ `ŽmŽŠŽ‘Ž¢Ž ´Ž¾Ž ÂŽÐŽ ߎíŽ -üŽ:BT] -c -ny€…‰‘‘!‘ 4‘A‘I‘0Z‘‹‘)ª‘Ô‘î‘" ’,,’/Y’(‰’"²’"Õ’ø’“ “'“#G“(k“)”“ ¾“YÊ“A$”f”x” ’” -Ÿ”ª” -Ĕϔ -à” -ë”ö” -• • (• 6• D• R• -`• -k•v• -•˜•µ•¼•ÕÕ• -Ü•ç•î•–!–=–V–f–‚–˜–¨– ¯–¼–Û–ú–E—X—h—{—Ž—¡—/º—ê—ý—!˜$2˜W˜•s˜½ ™Ç™ã™fù™`š|š™š ²š ¿š -Ìšךëš› ›1›D› -^› -i›'t›œ›£›0ª›Û›â›ù› ÿ› œ œ9œYœS`œ´œÈœ Øœâœòœ - =<J‡ Ž›$¯Ô ê÷ ž5#žYž kž xž …žž –ž£ž ©ž¶žÌž Üž êž øž ŸŸŸ6ŸPŸWŸnŸŸ‰Ÿ Ÿ´Ÿ ÈŸÖŸÝŸ äŸ òŸ üŸ    -&  -1  -< G  Y f  m  z ˆ œ £  ³  ½  Ê × Þ ò  ¡¡#¡7¡J¡ ^¡ k¡ x¡ …¡ ’¡Ÿ¡¯¡¶¡ Æ¡ Ó¡ -à¡ë¡ ò¡ ÿ¡ - ¢¢¢ "¢,¢3¢ :¢G¢]¢ w¢„¢˜¢§¢"¼¢ߢô¢ø¢ý¢£ £ -£ -£(£B£V£ -j£u£Œ£ ”£¢£ -¶£ -Á£ -Ì£ ×£ -å£ ð£#ý£!¤A=¤¤•¤$´¤Ù¤0ï¤! ¥3B¥*v¥*¡¥'Ì¥ô¥ ¦G3¦+{¦+§¦Ó¦Ú¦ê¦þ¦§§)§9§U§*e§§*¬§ ק á§î§m¨mr¨$਩!©)7©)a©‹©§©éWß©7ª)Vª)€ª$ªªϪ ëª#øª «*«=«T«!d« †«“«9š«Ô«Û«}â«`¬s¬*…¬#°¬Ô¬ج ÷¬­ ­­+­ -2­=­ Q­ -_­ j­x­‰­š­¯­í×­è­ -ù­® ® ®® /®<®L®e® ~® ‹®˜®²® È®Õ®é® ý®9 -¯ D¯Q¯a¯~¯ •¯Ÿ¯°¯ įѯ á¯ë¯°°°.°E° L°V° ]° k°u° |°†° °š°°° À°Ê° ß°ì° ±±*&±6Q± ˆ± •± ¢± ¬±¹±À±Ö± ö±<²@²G²N² a²n² ²Ž²'­²Õ²%è²³&³E³U³%\³)‚³¬³̳á³)ü³ &´"G´ j´"‹´/®´%Þ´ µ %µFµ0`µ6‘µȵÞµôµ3¶D¶X¶_¶o¶†¶0š¶c˶!/·Q·<m· ª·´·:É· ¸ ¸¸ .¸;¸K¸^¸ n¸{¸‘¸ -­¸¸¸ ȸ Ö¸à¸ù¸ ¹ ¹ +¹ 8¹E¹ Z¹ d¹q¹ ¹Ž¹¤¹·¹ǹι Õ¹ -ß¹ ê¹ô¹º º "º/º CºQº Xº bº oº |º ‰º“ºšº®º¾ºźغêºýº»#»=»S»i» |»!‰»«» ²»¿»,Ï»ü» ¼ ¼¼ 0¼:¼M¼i¼|¼˜¼®¼ ļ Ѽ Û¼ è¼ õ¼½½4½H½ \½ f½ t½½‘½ ¤½ ®½»½ѽá½è½ø½ ÿ½ ¾¾¾$¾+¾ 2¾?¾ F¾S¾ Z¾g¾n¾$~¾£¾$¾ç¾$¿+¿J¿Z¿j¿q¿$‚¿§¿ÿÜ¿*ï¿À3ÀIÀ_À uÀ?‚À ÂÀÏÀîÀ ÁÁ.Á -EÁ -PÁ[ÁwÁ Á ÁªÁºÁÊÁÑÁØÁ îÁûÁ ÂÂ4ÂGÂZÂ3v ªÂ ·ÂÄ ËÂÙÂíÂ'Ã!,ÃNÃ9kÃ¥Ã$¿ÃäÃôÃûÃ- Ä'9Ä&aÄ‘ˆÄ$Å ?ÅLÅeÅšŹÅÌÅ ìÅ Æ'Æ@ÆSÆ"nÆ‘Æ¡Æ¿Æ)ÞÆ,Ç5Ç1QÇ*ƒÇ®Ç&ÍÇ ôÇ È È È %È&/È0VÈ -‡È’ȩȽÈ+ÄÈ$ðÈ+É AÉNÉUÉ\É.wÉ'¦É7ÎÉ/Ê6ÊFÊbÊ|Ê ’ʟʮʵÊÊÊßÊôÊ ËË #Ë-Ë@Ë\ËrË…Ë›Ë«Ë »ËÈËÏËíËýË ÌÌ Ì!#ÌEÌaÌhÌ yÌ †Ì “Ì Ì°ÌÆÌÖÌ ÝÌ ëÌõÌÍÍ*Í .Í ;Í EÍ RÍ_ÍuÍ|ÍƒÍŠÍ‘Í ¡Í®Í ¶ÍÀÍÉÍÞÍ -ôÍ -ÿÍ +Þ• +”Pi ¡°Ö±ÖÆÖÚÖ ñÖûÖ ýÖ +× ×.×6×1F×x×"’×µ×Ì×ç× Ø*%Ø"PØsØ“Ø²Ø¹Ø ÍØ"ÙØüØ#Ù$@Ù +eÙVpÙQÇÙÚ"Ú 8ÚBÚIÚaÚ fÚ rÚ|Ú +ÚŒÚÚ ¥Ú¯Ú ¸ÚÄÚÌÚÕÚÝÚ +òÚýÚ ÛÛ%Û7Û >ÛHÛQÛgÛ}Û–Û§Û¶ÛÇÛÞÛîÛ÷Û)Ü8Ü WÜLeܲÜÃÜÞÜþÜ Ý:;ÝvÝÝ<§ÝCäÝ$(Þ§MÞÞõÞ'Ôßüß}à&šà"Áàäàáá%!á +GáRácá}á á—á²áÇáàáèá+ðá â&â%/â Uâ_âuâ{âŠâ‘â<šâ×âRßâ2ã AãMãTãfã}ã’ã§ã »ã2Èã1ûã-ä 3ä@ä$Oätä‡äœä­äAÉä å å +å5å;åAåTå Zåhå +}å +ˆå“å›å¤å¬å±åÍåäå üåææ+æ/æKæ_æpæ‚æ +ˆæ“æ¥æ¶æ Ææ Òæ +ßæ +êæ +õæ +ç çç3ç Rç ^çhçwç}çç”ç£çªç¯çÀçÒçØçèçùç è è &è2è Bè Nè Xèdèkè }è ‰è—èè¢è ±è ½èËèÓè ×èãèêèïèøèéé é 3éAéVété…é‰éŽé’é–éœé¤é­é ¼éÈé +Ùé äéòé úéêê!ê)ê /ê 9êEê"Zê}ê?–êÖêïê$ ë.ë2Gë#zë/žë'Îë$öë&ìBìbìJì&Êì'ñìí +!í,í;íJí +Qí +\ígí~í*’í½í(Ûíî îîh-îh–î)ÿî')ï#Qï4uï4ªï(ßï)ð'2ðlZð*Çð5òð5(ñ,^ñ*‹ñ¶ñ4Åñ úñò&ò 8ò$Fòkòƒò4ŒòÁò ÉòÖò'tóœó3¬ó$àó7ôU=õ“õšõ +´õ¿õÅõ×õñõøõÿõöö ö*ö DöQöcöwö +Šö•ö§ö°ö¸ö ¾öÌöÝöìöþö÷2÷ +A÷L÷d÷{÷ ÷ž÷ +°÷@»÷ ü÷ øø4øGø +NøYøpøƒø™ø¢ø¸øÇøÐøâøøøÿøù ùù"ù*ù3ù;ùLù `ù mùzù Žù$šù¿ùÐù+çù4úHúPúbú kúuú+~úªúÊúAÝúû(û -û 9ûGûVû)fû6ûÇûÙû +ùû&ü ++ü6ü(=ü+fü!’ü´üÍü&éü ý#1ý Uý#vý1šý#Ìý&ðýþ7þ/Pþ>€þ¿þÓþçþ8ÿ=ÿZÿlÿ sÿÿ“ÿ<¥ÿ|âÿ'_‡?§ +çò9 @N] nz‹ ž ¬¸Ðæ  'B +^ iwˆ™µ +¾ É +×â ó '0@ P \h x‚‰‘¢²Â ÈÒçöþ 2G_wŠžy´ .$:_ gs0‚³ ºÆ Õ ãð!#8Qh„“ œ ¨ +´¿Ð ë ù   !+@ Xe n|‘™ ´ÁÖ4ß + +& 1 =G Xd +v – ¨ ¶2Â0õ=& 1d =– /Ô  +  +# + , ++8 + d +… +• +(¨ +Ñ +ï +   B1  t € ›  ¶  × ó ú    < J Y  k x ~ ƒ  +•    ± ½ Ï  á ï : B Q a  h t ˆ ) /Ç #÷ 2+Nz˜§¶ ¾"Ëî'“64Ê ÿ %'Dl‹¦Äãþ-'Em€ 9¿Nù)H.r¡-¼'ê #3Wjp%™2¿ò ø# C$d ‰1–ÈÐÕ1æ68'o—«Ëá ô þ %:Odz†½Îå +ý ')0Z"`ƒ‹«°¿Ï×6é  +4?^ q  Œš³ÅÎÞ +í"ø '9> +M X +fq‡”™¢ ±¾ Æ ÓÝæŸ# Ã Ñ Ý égó[j |‰š +³¾(Ô)ý' ANTf m{ +Œ —¡©¹ÍÝïô + "0CI NZo…Ž  °¾Ú êô   % 4>DVipuz ‹ —¥¶ ÏÛ ì +úý  +   " &  +8  C  O [ `  f p - ¯ · Ì ì 2!/5!Be!=¨! +æ! ñ!ý! "%" 7"E"T" +c"n" " Œ"–" š" §"´"»"$Û"3# 4#U# Y#g#v#†#—# œ#©# ¬#¸#Ó#æ#ø# $$0$6$ +<$ G$T$d$t$}$ †$n“$‡%YŠ%vä%ƒ[&\ß&C<'€' ‰'•'œ'¢'º'Ê' +Ú' å' ñ'þ' ("'( J(V(n( ~(Š(Ÿ(¸( Ó(Ká(-)A)J)O)c)k)€) ) ™) §)´)Ã) Ë)Õ)6æ) *'* ?*L* _*(€**©* Ô*Þ* ù*]+ a+m+q++ +›+ ¦+³+Ê+á+ è+õ+û+,,*, ;,I,^,b,g, p,},†,Ž, •,Ÿ, +§, +²,/½,`í,N- S-]- c- o-Gy-BÁ-N.IS..£.©.±.¹.Á.É.Ñ.Ù.è.ú.% +/$0/%U/${/% /$Æ/ë/ó/ü/ 0!020E0W0\0e0 l0 v0€0‡0 —0¥0Á0Ý0 +ì0÷01 +191K1`1u1 …1“1¬1È1ß1 ð1ü1 +2 22.2N2 +`2 k2 +w2 ‚2Ž2¥2¼2 Ô2 à2î2 þ2 +33$3,3 53?3 N3<[3%˜3 ¾3 +È3Ó3é3'ð3 494I4a4p4 €4 Ž4œ4 ¯4½4Í4Þ4æ4ø4 ÿ4 55 $515I5 +a5 l5y5‘5©5 +±5 ¼5 Æ5Ó5 ì5ú5 ÿ5 6 6%6,6 16;6J6 +_6j6}60”6 Å6 Ï6Ü6ô6 + 7 7$7<7 T7+b7Ž7¤7¿7Ô7ï7ô7ü7 8 88 58?8Z8v8ˆ8 8›8®8 ³8 ½8Ç8 Ý8ë8ó8999 09 :9G9L9[9 c9 +o9z9ƒ9’9 ›9 ©9 ³9IÀ9 +::#:4:<: +E:P::h:0£: +Ô:ß:.å:;; ;(;7;H; Y;z;;; °;Ñ;â;*ô;<=<Y<y< •<Ÿ<¨< ¹<Ã< Ì<Ù< á<î< ÿ< = ==.=M=l=‹=Ÿ=¨=%·=Ý=å= +õ=> >> >$>B>S> i>s>‡>>™> ž>¨> ¾> Ê>Ö>æ>#?(?E?N?7b?š?²? º?Ç? Þ?ê? @@@ *@4@ ;@I@P@ _@ l@y@@ ‘@ ž@¨@¬@¼@ Ó@ Ý@ ç@2ñ@$A=AXAsA†A¢A ¾AÈA ÌA +ÖAáAûABBB $B +1BK +FKQKXK`KvK“K§K®K¾K ÎKÛK ëK ùK LL+L4LFLaLhLlL{LŒL›L ®L¸L%½LãLôLM M'M+M;MLMQM`MpMMM”M£MªM¹MËM ÞMëMN&N5N-KNyNN”N œN½NÏNßNÿNO &O 3O @OJO]OrO‹OœO°OÇOÚOìOôOP"P"6PYPpP +P#ŠP ®P1ºP,ìPQ3Q +MQXQ nQ|Q™Q Q ¦Q +´Q¿QÆQ ÍQ +ÙQäQêQòQûQR R R %R/R7R PR\ReRRR¹R ÉR ÓRÝRãRõR4 +S!?SaSqS€S •S £S ­SºSÂSÈS +ØSãS ìSöS +üST&T+T=TMT^T;fT ¢T ®T +ºTÅTÛTòT +UU U#)U +MUXU tUU›U ªU +´U¿U×U éU÷U VV*6V aVmV~V šV ¦V´VÇV ØVäV ýV +W W "W .W:WJW ]WiW xW „W ‘W žW ªW ¶WÂW*ØW XX%X8X HX +TX_XrX/‚X²XÌXÛXáX ðX úX Y YY .Y^¥^¿^ Ç^ Ñ^#Û^?ÿ^?_T_l_‡_Ÿ_)³_%Ý_<`E@`†` ™` ¦` ³`À`Ó`/ê`*aCEa‰a§a+Ãa!ïab',bTb]b wb…b–b Ÿb¬b »bÉbÒb ébõb ýb ccc'c;c Mc!Yc#{cŸc¤c´cÒcãcöc + dd (d +2d=d Nd\dtd‰d˜d +´d¿d +ÆdÑdíd ôdeeee +(e3e 8eBeXe'hee–eYe÷eýe +ff#f2fAfYfqf +†f‘f ¨f ²f¿fÅfÝfòfgg!g 'g3gBg [ghg/„g-´g/âg h h&h>hNh ahkh +zh…hšh­h¶h ¾hËhâhúhDi'Zi@‚i ÃiÍiÔiäi øijj$j4jEjLj cjpjvj }j ‹j˜j¨j±jÂj Øj æj ójkk +k7"kZk bkZokÊkÛkâk èk +ök l l l"l 9lClWl(]l†lœl°l ·l +ÄlÏlØl êlöl m +m&m =m KmWm^m fmpm„m–mžm±mÉmÒmÛmR÷m&Jnqn„nZ nSûnOojo5…o+»oFço.p0NpMpEÍpPqKdq°q>Ëq< +r7Grúrœzst!3tUttt.“t)Ât%ìtQu)du&Žuµu„Òu/Wv3‡v&»vâvw0!w4Rw‡wŸwp¹w~*x=©x%çx, yÍ:y!z*zJAzŒz ¥z±z)Áz +ëzöz{ +{{ ({5{-G{u{†{{–{Ÿ{ ±{»{¾{ +Ç{ Ò{ Ü{æ{î{÷{ û{|| |!| &|0|K| ]|i| €| Ž|˜| ©|µ|º|Ù|ô| }3}L}R}V}^} x}o™}{ ~…~›~ ~¯~ ´~À~Û~á~%è~/%U ^ kx”&­ÔÝä +ôÿ€ € )€5€S€f€v€Ž€F®€,õ€Q":t¯ÄÖ*ê ‚#‚<‚W‚p‚w‚}‚‚‚²‚ÂÊ‚Ù‚ë‚ú‚ +ƒƒƒ.ƒ7ƒ +Fƒ Qƒ [ƒeƒ kƒ yƒ †ƒ’ƒšƒ£ƒ¬ƒ!²ƒÔƒèƒûƒ„­„jÈ„A3…$u…=š….Ø…-†-5†c†h† +€† ‹†•† ›†¥†Uª†n‡o‡‡˜‡ž‡§‡,·‡ä‡ë‡ð‡ø‡8 +ˆCˆ HˆVˆ[ˆpˆˆŽˆˆ  ˆ&¬ˆ%Óˆ%ùˆ‰%‰+‰[<‰ ˜‰¥‰ª‰¯‰¾‰Á‰lj͉Ò‰׉Þ‰æ‰Sï‰CCŠ:‡ŠFŠ ‹‹‹+‹B‹G‹O‹k‹t‹ ’‹ž‹¦‹«‹º‹ Ê‹ Ô‹ Þ‹è‹ ú‹Œ ŒŒ3Œ;Œ DŒPŒXŒ aŒoŒ€ŒŒ Œ ·Œ ÁŒÍŒ +ߌ êŒ øŒ  ' +.9?F LZm vƒŒ‘ š ¦³ º È Ò +ßêóŽ ŽŽ -Ž :ŽDŽ[Ž +aŽlŽ {Ž‰Ž™Ž(©ŽÒŽâŽ êŽ öŽ &/ 7D +S ^j pzŒ•› ª¶ +¾É âð ++4F +LW`p€ ¥ ¯»ÂÉØñ‘‘!‘6‘ H‘R‘ X‘ +b‘ m‘{‘Ž‘–‘¨‘±‘Αב æ‘ ô‘þ‘ ’ ’’%’,’4’:’ @’L’U’ [’g’x’€’‰’’”’œ’¢’ +½’ È’ Ö’â’ õ’““““.“7“<“L“ Q“[“b“v“(~“ §“ ´“Á“Ç“ Ø“ä“ ì“ +ø“”” ” &” +2”=”U”h”)„”®”´”¹””Ӕٔ锕••/•7•>•D•S• b•p•u•|•‚•‘• •¿• +ΕÙ•â• ø• – – – &– 2– >–K– T–^– u– –‹–›– +£–®–– Ö– +â–í–ý– —— — )—6—H—N— +V—a—q— †—— §—´—× Ò—Þ—î—÷— ÿ— ˜˜ +%˜0˜ A˜ +N˜ Y˜f˜w˜ +€˜‹˜”˜¨˜¸˜͘Ö˜ ߘ í˜÷˜ þ˜™™ 1™ >™ H™R™W™h™m™ ~™‹™ +“™ž™ §™ ´™ +™Í™ Ó™ +ß™ê™ð™ ù™š š +š)š>š Qš]š dš +rš}š†š šš ¦š³šÉšØšéšñš›› ›)›8› T›b›%k›‘› ®›¸› Ê› Ö› â›ì› ô› œ œœœ!œ1œ 8œDœ Zœ dœqœ œœ•œ¤œ­œ½œÅœ +Îœ +Ùœäœöœþœ 8 J +Va u  ›¤¬³ +ÂÍ Ó6à ž#ž)ž2ž ;žHžYžaž hžvžˆž¢ž ¸žÆžåž-þž ,Ÿ6Ÿ =ŸKŸ_ŸgŸ zŸ†Ÿ –Ÿ Ÿ +±Ÿ¼ŸŸÈŸ ÑŸ ÞŸ ëŸ õŸ ÿŸ     " 0 7 ? E W  ] j   ‹  +œ  § ± º Í  Ñ Û  +ì  ÷ ¡ +¡¡¡ ¡(¡.¡5¡K¡\¡b¡-h¡–¡œ¡¡¡°¡À¡Ï¡ ß¡(ì¡¢¢¢$¢,¢ 2¢?¢"C¢f¢o¢ t¢ €¢ +Š¢ •¢ +Ÿ¢ª¢ ²¢ ¼¢É¢æ¢í¢þ¢ ££ £,£ ;£I£ +X£:c£ž£°£¹£ +¿£ +ʣգܣ…å£k¥‚¥ ™¥§¥­¥¯¥¿¥ Ò¥ߥç¥0ø¥)¦)H¦r¦Œ¦"§¦,ʦ/÷¦('§"P§"s§–§œ§ ®§'º§#â§(¨)/¨ Y¨Ye¨A¿¨©© -© +:©E© +_©j© +{© +†©‘©¥© ¶© é Ñ© ß© í© +û© +ªª +(ª3ªPªWª^ªpª +wª‚ª‰ª£ª¼ªتñª««3«C« J«W«v«•«E­«ó«¬¬)¬<¬/U¬…¬˜¬!«¬$ͬò¬•­½¤­b®~®f”®û®¯4¯ M¯ Z¯"g¯ +Š¯•¯©¯įÚ¯ é¯ +°° +7° +B°'M°u°|°0ƒ°´°»°Ò° Ø°å° î°9ø°2±S9±±¡± ±±»±˱ä±õ±² ²<#²,`²² ”²¡²$µ²Ú² ð²ý²³5)³_³ q³ ~³ ‹³•³ œ³©³ ¯³¼³Ò³ â³ ð³ þ³ ´´´<´V´k´r´‰´œ´¤´»´Ï´ ã´ñ´ø´ ÿ´ µ µ $µ.µ +Aµ +Lµ +Wµbµ tµµ-ˆµ ¶µ õѵåµìµ üµ ¶ ¶ ¶'¶;¶ O¶Y¶l¶€¶“¶ §¶ ´¶ Á¶ ζ Û¶è¶ø¶ÿ¶ · · +)·4· ;· H· +R·]·d· k·u·|· ƒ··¦· À·Í·á·ð·"¸(¸=¸A¸F¸L¸R¸ +[¸ +f¸q¸‹¸Ÿ¸ +³¸¾¸Õ¸ ݸë¸ +ÿ¸ -Î Î!Î 6ÎBÎTÎ nÎzÎ#ŽÎ"²Î ÕÎ -áÎìÎÏ ÏÏ &Ï 4ÏAÏ HÏUÏ eÏrψϛÏ"­Ï ÐÏÝÏíÏ -Ð ÐÐ&Ð9ÐLÐSÐcÐ sЀР‡Ð”Ð ›Ð ¨Ð µÐÂÐÉÐÐÐäÐ øÐÑ Ñ Ñ Ñ *Ñ7ÑGÑ`ÑpÑ€ÑÑ  ÑéªÑ ”Ò ¡Ò«Ò¯Ò ÁÒ ÍÒÛÒ -ãÒ îÒ üÒ -Ó Ó&Ó$BÓgÓ{Ó”Ó5°Ó*æÓ ÔÔ"Ô<ÔPÔjÔ ~Ô‹ÔŸÔ ¦Ô³ÔºÔÁÔÈÔØÔ èÔ'òÔÕ!6ÕXÕnÕuÕ …Õ’Õ¦Õ ºÕ ÄÕÑÕ -ÔÕßÕöÕÖÖ)Ö:ÖNÖVÖ -fÖ -qÖ|Ö“Ö -¤Ö -¯Ö ºÖŠÇÖpR×EÃ×u ØcØQãØ65ÙlÙ sÙ -}ÙˆÙÙ £Ù °Ù ½Ù ÊÙ×ÙëÙÿÙ Ú7ÚGÚ`ÚtÚ„Ú›Ú´ÚÍÚ8ÞÚÛ -+Û6Û =ÛJÛQÛ dÛqÛÛ ‘Û ›Û¨Û¯Û ¶Û*ÃÛîÛõÛÜ Ü,Ü9HÜ9‚ܼÜÃÜÙÜàÜðÜôÜÝ Ý %Ý1ÝCÝXÝ _ÝlÝrÝ‰ÝœÝ ³ÝÀÝÓÝ×Ý -ÜÝ çÝ õÝ -ÞÞÞ Þ)Þ 9Þ&EÞKlÞ¸Þ ¼ÞÆÞ ÍÞ ÚÞ0äÞ0ß,Fß,sߠߧ߮߷ßÀßÉßÒßÛß äßñß à à&3à Zà&{à ¢à&Ãàêà ñà ûàáá(á8áHá Oá\á cá pá}á „á ’á á¼áÛá îáûáâ*â=âPâcâsâ…â—â­âÆâââóâúâããã"ã>ãRãaãqã€ãã¤ã¸ã -Ìã -×ãâãóãä -ä&ä -ä -7ä Bä6Lä$ƒä ¨ä -²ä½äÏäÖäïäåå:åQådå~å‘å§å·åÊå Ýåêå æ -æ æ$æ +æ8æPæ -hæ sæ€æ˜æ -°æ »æÉæßæïæççç,ç<çLçSç Zçgç{ç‘ç¡ç¶ç0Ïçè èè,è -Dè Oè\ètèŒèœè»èÒèìèéé !é .é ;éHé\é oéyé•é±é Âé ÌéÙéõé üé êê)ê 9êFêVêiêpê†ê–ê©ê °êºê ÁêÎê áêîê ë ëë #ëT-ë ‚ë Œë–ë ©ë ³ë ½ëÊëFæë7-ìeìyì3€ì´ì¸ì ¿ìÉìÜì øì!í'í .í;í!Oíqíí$‘í¶íÉíÜíòíî îî-î -Aî -Lî -Wîbîuî ‰î -—î¢î ³î&Àî&çî&ï5ï LïZï*nï ™ï£ï ³ïÁïÈïØïëïûïð'ð:ðNð -_ðjðzð ðŽð ¦ð ³ðÀð#Øðüðñ4ñ;ñOñeñ -lñwñ~ñ ”ñžñ ¥ñ ²ñ -¼ñ ÇñÔñÛñëñ ûñòò -"ò --ò8ò<òLò -`ò -kò -vò5ò·òÐòïòó$ó@ó _ómó -qó |ó†ó -¡ó¬ó -½ó -ÈóÓó ãóðó)ô -ô7ôGô ]ôjôzôŽô •ô¢ô ²ô¾ôÅôàôûôõ õõ /õ <õFõ]õtõ“õ¬õ³õºõ ËõÕõÜõðõö öö7ö ->öIöhöoövö‹ö ›ö ©ö³öÌöåöõö üö -÷ ÷÷ ÷,÷ B÷L÷S÷ Z÷ f÷ r÷~÷9÷ -Ê÷ Õ÷ß÷!ð÷ø ø&ø:øJøRøaøtø‹ø›ø®ø¾ø×øêøýø ù ù0ùDùKùRùeù }ù ‡ù‘ù•ù¦ù!«ùÍù -ÑùÜù ìùúùú%ú -9ú -DúOú cú -qú|úƒú“ú šú¤ú «úµúÈúäúûúûû,û?ûTû kû xû…ûžû¥ûµûÍûÔûåûöûü -ü -%ü0ü Oü\üoüˆüü–üªü ¾üÈüÛüïüýýý0ý 7ýDýUý iýsý†ý¢ý³ý&Ãý êýôý -þþ+þAþQþmþ ‹þ˜þ©þºþÁþ×þíþ ÿÿ3ÿLÿbÿuÿ|ÿ˜ÿ«ÿ¾ÿ×ÿêÿ  61Qƒ -²½ ×á÷þ   ' = -KV ^l s   ™ ¥¯ ÈÒÙò $ 4>E -LW2i œ½Ïæ " -3 ->I ] -k v -„!£ÅÌÜì * - 5 C Q[k‚ ™¦ ­%» áî -!< O \i|¢µÅ"Ùü ! 7EUk ~Œ§ ¶ Ä Ò àîþ ! 2@O _ m {‰"œ¿Ðçú  '>$NsŒœ£ -»Æ Öäô   )  5  A  M $Z    ‰  -“  -ž © ½  Ä  Ñ ß ó  -! -!B - d -q -„ - -­ -½ -Á -,Å - ò -ü -    ! . A T g w  ¬ ¿  Ï  -Ü  -ç  ò ÿ  ( > Q p † ¢ ¸ Ô Yê D  `  j t { F— Þ ñ  6'L't<œ9Ù, < IVl2‚µË!Þ3CV^n~Ž• «¸¿ ÏÙàñ$#Hah"{ž±Ð ê÷  ! 7D[ q~ ˜ ¦ -°» -ÂÍÔÛâû , B LV] -q -| ‡” § ´¾ Ôáñ"÷->OV ]jz—3°*ä! :G Wd x† ²¼Ã Ùæ2O8h ¡«²ÂÙ à,3 LY` gq• œªÀÔäôû$ 07FZ^e v € —­ÁÔ'Û) 0 < HVm’ -£® Á ÎÛ -âí ô  ( 5?FJ[!¦"Èë@LH•´!Í!ï*<+X3„$¸0Ý0B?'‚'ªÓÒz¦!= V w#˜¼Û3ú. D d € '!9!X!q!0Š!*»!7æ!":"{V"Ò"BT#'—# ¿#Ãà#¤$À$NÒ$!% 7% E%'R% z%„%˜%Ÿ%³%Ç%Û%-ë%& /& <&F& V&c&s& w& -& Œ& -š& -¥& -°&»& Â&Ï& Ö& -à&ë& -ò&ý& '$' +'8' H'U' h'u'|'•'®'Í' ì'ö'ú'((^9(^˜(÷( ))&)-)=)\) c)-m) ›) ¨),²) ß)ì) ÿ) *)*'B* j*t*{*Œ*“*¦*¹* À*"Í*ð* ++.<+3k+$Ÿ+9Ä+6þ+5,J,$c,ˆ,˜,¨,¾, -Î,Ù,à, ð,ý, - &- 0-<-K-_-s-z-”- ›-¨-¯- ¶-Ä- Ë- Ø-æ- -ö- . .. $.E.\.m.Š.š‘.d,/L‘//Þ/*05905o05¥0Û0â0ü0 11101Q41Z†1á1ñ1 -2 -22 .282<2C21V2ˆ22¦2­2½2Í2Ý2î2 -ó2(þ2('3(P3y33‰3dž3 4 4 4$454:4B4 J4 T4^4 e4 -o4Uz4<Ð46 5DD5‰5š5Ÿ5¿5Æ5Í5å5ì5 6 66 #616 -H6 -S6 -^6i6 z6 ˆ6’6¦6 ½6 -Ê6 Õ6 ã6 -ñ6ü6 7!787O7 `7 -n7 y7‡7™7 ­7 -»7Æ7 -Ú7 -å7 -ð7û7 -8 8 -(838G8 [8 -i8 -t8 -8 Š8 -˜8 £8 -±8¼8Ó8ä8ø8 9 9+929F9Z9 -k9v9 -Š9•9¦9 º9È9Ü9(ð9: -: -;: F: T:b: v: -„: :: -±: ¼:Ê: Ò:à: ñ: -ÿ: -; ; -,; 7;E;d;u;†; š;¨; À;Î; -â;í; þ; < <4<E< b<p< ‡< -•< <´< È<Ö< í<û<= -&= -1=<=K=g=)y= £=°= -Ä=Ï=ï= > > +> -9> -D>O> `> -n> y> -‡>’>™> ­> -»> -Æ>Ñ> -æ> ñ> -ÿ> +¹ +¹ ¹ +.¹ 9¹#F¹j¹A†¹ȹÞ¹$ý¹"º08º!iº3‹º*¿º*êº'»=» [»G|»+Ä»+ð»¼#¼3¼G¼[¼b¼r¼‚¼ž¼*®¼Ù¼*õ¼ ½ *½7½mM½m»½$)¾N¾j¾)€¾)ª¾Ô¾ð¾ ¿W(¿€¿)Ÿ¿)É¿$ó¿À 4À#AÀ eÀsÀ†ÀÀ!­À ÏÀÜÀ9ãÀÁ$Á}+Á©Á¼Á*ÎÁ#ùÁ0ÂRNáåà ÄÃÎà ÕÃâÃøà +ÿà +Ä Ä +,Ä 7ÄEÄVÄgÄ|ÄÄ¤ÄµÄ +ÆÄÑÄØÄ ßÄìÄ üÄ ÅÅ2Å KÅ XÅeÅÅ •Å¢Å¶Å ÊÅ9×Å ÆÆ.ÆKÆ bÆlÆ}Æ ‘ÆžÆ ®Æ¸ÆÑÆäÆëÆûÆÇ Ç#Ç *Ç 8ÇBÇ IÇSÇ ZÇgÇ}Ç Ç—Ç ¬Ç¹Ç ÖÇãÇ*óÇ6È UÈ bÈ oÈ yȆÈÈ£È ÃÈ<ÐÈ ÉÉÉ .É;É NÉ[É'zÉ¢É%µÉÛÉ&ëÉÊ"Ê%)Ê)OÊyʙʮÊ)ÉÊ óÊ"Ë 7Ë"XË/{Ë%«Ë ÑË òËÌ0-Ì6^Ì•Ì«ÌÁÌ3ÝÌ0ÍBÍVÍ]ÍmÍ„Í0˜ÍcÉÍ!-ÎOÎ<kÎ ¨Î²Î:ÇÎ Ï ÏÏ ,Ï9ÏIÏ\Ï lÏyÏ‘Ï§Ï +ÃÏÎÏ ÞÏ ìÏöÏÐ 'Ð 4Ð AÐ NÐ[Ð pÐ zЇР—ФкÐÍÐÝÐäÐ ëÐ +õÐ Ñ +ÑÑ *Ñ 8ÑEÑ YÑgÑ nÑ xÑ …Ñ ’Ñ ŸÑ©Ñ°ÑÄÑÔÑÛÑîÑÒÒ&Ò9ÒSÒiÒÒo’Ò Ó!Ó1Ó 8ÓEÓ,UÓ‚Ó ‰Ó –Ó£Ó ¶ÓÀÓÓÓïÓÔÔ4Ô JÔ WÔ aÔ nÔ {ÔˆÔžÔºÔÎÔ âÔ ìÔ úÔÕÕ *Õ 4ÕAÕWÕgÕnÕ~Õ …Õ ’Õ!œÕ¾Õ ÅÕÏÕÖÕÝÕ äÕñÕ øÕÖ ÖÖ Ö-Ö =Ö$JÖoÖ$ŽÖ³Ö$ÒÖ÷Ö×&×6×=×$N×s×ר×*»×æ×ÿ×Ø+Ø AØ?NØ ŽØ›ØºØ ÕØãØúØ +Ù +Ù'ÙCÙ \Ù iÙvنٖÙÙ¤Ù ºÙÇÙ ÝÙêÙÚÚ&Ú3BÚ vÚ ƒÚÚ —Ú¥Ú¹Ú'ÐÚ!øÚÛ97ÛqÛ$‹Û°ÛÀÛÏÛÖÛ-æÛ'Ü&<Ü‘cÜ$õÜ Ý'Ý@Ý\Ý|Ý”Ý§Ý ÇÝèÝÞÞ.Þ"IÞlÞ|ÞšÞB¹ÞOüÞ)Lß,vߣß1¿ß*ñßà&;à bà oà yà †à “à&à0Äà +õàáá+á+2á$^á+ƒá ¯á0¼áíáôáûá.â'Eâ7mâ/¥âÕâåâãã 1ã>ãMãTãiã~ã“ã¨ã»ã ÂãÌãßãûãä+ä>äTädä täää¤äÂäÒäëä òäüäå å!%åGåcåjå {å ˆå •å¢å²åÈåØå ßå íå÷åææ&æ5æ 9æ Fæ Pæ ]æjæ€æ‡æŽæ•æœæ ¬æ¹æÁæ ÑæÛæäæüæçË)çõç + è +è +!èk,è ˜è¤è ¹èÅè×è ñèýè#é"5éXé ré +~é‰éé ¦é³é Ãé ÑéÞé åéòé êê%ê8ê"Jê mêzêŠê +ê¨ê¯êÃêÖêéêðêë ëë3ëCë JëWë ^ë kë xë…ëŒë“ë§ë »ëÅëÌë Óë àë íëúë +ì#ì3ìCìSì cìémì Wí dínírí „í íží +¦í ±í ¿íÍíßí ûíî$!îFîZîsî5î*Åî ðîúîïï/ïIï ]ïjï~ï …ï’ï™ï ï§ï·ï Çï'Ñïùï!ð7ðMðTð dðqð…ð ™ð £ð°ð +³ð¾ðÕðæð÷ðññ-ñ5ñ +Eñ +Pñ[ñrñ +ƒñ +Žñ ™ñŠ¦ñp1òE¢òuèòc^óQÂó6ôKô Rô +\ôgônô ‚ô ô œô ©ô¶ôÊôÞô õôõ&õ?õSõcõzõ“õ¬õ8½õöõ -? -? - ?+?E?V? -j?u? ?? ±? -¿?Ê? -Þ? é?ó?@ @ -+@6@ -M@%X@ ~@Œ@ - @«@½@ -Ð@ Û@ -é@ô@ - AA A /A=AQA'qA -™A¤A¬A ½AËAÓAêA -B B B -1B -MIM]M -qM -|M ‡M•M©MÉMÝMñMN0(N YN -fNqN‚N –N¤N ·NÅN -ÙNäN þN - O -O "O 0O >O -LOWOfO -zO…O ™O -§O ²OÀOÈO -ÜO -çOòO PP)P9PIPYPnPwP‡P—P§P·PÇP -ÐPÛPäP -õP QQ$Q5Q £ ´~ / _Õ@Ó±X ëly Þ|ÌW} çã)Eã Ó‡ —å ´‚É}ÂŒ _™ ³§py® Èöèù7=Æý‡„üAYIŸ—_¸ÌÉ¥«qêv';øMõUk]” gi¿“\±aoêî5Ûå-ÛßÂ=!ú« ßN·3% ªÕ$ ¿ [€y‰™$¸P?R­)¦ Jàa°2 ¨`sB|c;1°‰(Õe H†ª¸ -«² ¯ [,­f›#†µ8-Ÿ jÑÝ ‚ ÐijÍ<EA!X²äeW@@ ‡ƒk& ”‡åšÂeW Ñ;ñT™ 9 v ^ X«‹mBh©Qt‘'¤”JwDÌÄ KlÛ¬—r!|_¡þ*› eOV²h‹UẠ11âÒ¯£OtSí*¦ï)Ô­'þI; ¤ ¼ ¾ ÄC>–bí 7¾¹à3ó53Ôy–°I™pn¬([À a6$Ç¥/<…ù*£ -J?¢ µ»f—¸ª wõÛc´sb ýI/+%8epMAA šé¼è9¿þù7ŒD# ln g׺Yd‡ò¢dP >¢f ¤ìYK£G Ãg·¥ˆÄòzoþh Ïd ¿®ÀVIb±60½3µ×\\ N<ä¸ ªßKž%8ü[ ÝŸÚñ 4¶q’ªÖW *ï¡ü@TßØFa,I”gBâ{„«Ð{;ï÷o‘†÷ó èLôîn|¾F7 éŽm¢­o ?Š¯¿LŒõm-~±¦X¾VœZê1_ xMzI -LÎ]C-›ëŠÄŽŸ ¶F5Xz~Hƒ ‘ åÿÀ°ÜÖ?À‘‡ËÚkìCš˜!{E˜W—p Ë• LA HÉÝt ŽçÅþØ·êÅ \´DÌu Éî, r•æϱ º ¾¬$­wñÏ:àW Ò>‰Ìz2Ô^=Þ»&Øu˘eG.2eJ5 t6 î©™ž›  š* UËýú[×µƒ© ÂT W0fepR ôýƒ…ìXò°ÇçÔ½„pT Ü–º úÓ|˜ôR ½ƒŠ`Âæ{’èY OàÖˆ&y6=âc(f0À Úët^É¡ š¬þÿ!'ŽòÍ•§ ³Ê¶'Ë0Ã05à–’s”Gi…˜[ûé¼~ÞˆäÆ) - ut øúÙêmÜ‘  x_ÚJŽÔŸ“ Þ”m¹#øðííÃœ¡owÄ° ¨4«Ü­kÆY'¿ÍÙ×,À%¶^ïA{ñ"Q3­¬SðbŠ/m¶u’.ÁúÒÜOâØÝ° ,SÝüí[:9Œûz`8b>HêÇ€XFù/Á[LvCê;&¼KÞ¹øðG á¯ü&H ©ÖõV LJzg -¦K¿ ‰xbQ›h©“.ë»%²ùq ßž-ƒÈDx?}ë'.Ò7ϾÅiÙá¯*#„ékµ{ºÑTp7Câ, µ •-»õBçr_— ˜÷#]$|¤¥¦SI®K >£ †Ð(«n tâ4E gõËx¤r üü+ï]Pö8…õÃo_ÙŒ« ÿ¡ S¶ÈÜ· QŠ×øäsÀŒý¸^( òu¿$<=ÛZÿOÄæe´ÚåÊs Š ûò2èUO³æ’¼MŽ‡ 6ï3˜c&† h˜ Äñ©fé¥&÷¡i> Ùûê@º—†³ 9ïN½*Îó“"DP" qÑƨåÁ„¹’&w*l HÀ=‘þÎ2•j â¯I E»¾_—ÄÂð³7”®Z ¥ hÊÙ"*"ÿ,²Uö±£Ú93ÿá¨}npÚ;Bæ  | ± z(qðÏMñó@Q®då;QPoªˆ‹¨ a·=ŸÕͪ äˆ- DF<­ ,S#>RiÒwB%·(÷·ŽÎF䮂ñ{9q“ðâ“VxèF3#"Ó”OƒÕš? ÊÛðוÅáèÖõí„¡ ^’qM5`J‹m{ $¨Ç…îzŸ8³Eù¯Xçî# -Ü” oùN}vɱ°‘äÆÕȵ Ü$•}L¸ UQÙ6k¦M q. -“ÁÉ:@L™§4‘~¢0 u\À7vî‚$¢0°UÏ §‚’¼5 ø Ø€Ï– çH È1SÝ£s=Ýw ¢¸úö#½§²;èt E ‡CÙ€~9Oc j7Ý:ôKÿôÇÌ€?ÆïøQadóòÈ€ …ÐKpm :!T ç–¡ß" Ög² 5‰r6r_D U !X¥ëÐÔ’ Ïü/ºš=Ôw»Yì7±Ž ž>V›)‰.þ\Á µ¾]  *j“<"ÊGº²^ ‘ðáÍ^z‹ …±8Š^HTÑLOˆP?àìrks îß‹…ýçœòÎ -¯ØÈëÌàSb~~´¸¤³(ÂR—Á.d ÷ÚR©uMÃfX“‰oæìBÕ›i œL ¦Ó ª+5Ø}  ]z °/1Ñ>vœ ¨ C%@•nÁ“ ýeé|‚ Q ûŠJhÛ†é¼W£øÊ"… ÉáÅæwì¥ãA!»'¿§`¿) ÿú€Î.+%9©•Ð2ýú+:= EGMÍ(Nc R†+ ħæÐK™ &ndR1 qÆx+Z¦GÅ-hô‹yö` îƒx µ6'`+jéE@J ùªÞÌ9¼u%¦Ó -¹ÁÆ‚J+¼¹‰Ê]8ÒDEB³ êÂu . vŒÀ¹ ‡yþŒcZÞ» ÏB çËïÛË`„ NãóÎs— ¡Ø4Ñ}W÷›³¬ 1ãªl¼¢0úàö#ˆ Ú ”,šÇmi<ÿo ]VãD24 ûƒãÕ¹˜b™gO ]vðÐ|Þ6\å õë÷‡ntj©Öƒ¥:§¨© ŽÛpg¦x£VÓcø< 9W?l·ãß ‚ØxQyÈ4ûÓÊS Š™<¨ˆíÁ4§†®½ý¯óŒVͬÎ@žI3c4‰3  qh`:gÑ;ÂŽ¤¹–€1ÔYb¸MÒlGæ¤dZ„ôÖÝl "ZsšP^n´›j -×ö€èíóAÜŒŠ™¾P8Õ ³‚²C–tTß0ìZ? ]' [/vcÅôœÐ N¯k ÃYà \i -Y€\­ ÉÇ)ˆ¢é)žFS A„ 5µNfžœN }¤yü¤¬‹¥†fG ëh˜Ã0Ìì2s\ay»!~ÍC4‹¬G¶Ê«ž ö}AU2žj < º¶ P·Ÿ -2½‘–ûF ËDf8 Ælj Ô–­## of Spikes:%d Plug-In Interfaces%d Procedures%d x %d%s -- Print v%s'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.'%s': +öö ö)ö0ö CöPö`ö pö zö‡öŽö •ö*¢öÍöÔöæö íö,úö9'÷9a÷›÷¢÷¸÷W¿÷ø'ø+ø;ø Pø \øhøzøø –ø£ø©ø²øÉøÜø óøùùù +ù 'ù 5ù +CùNùUù \ùiù yù&…ùK¬ùøù üùú ú ú0$ú0Uú,†ú,³úàúçúîú÷úû ûûû $û1û Eû Rû&sû šû&»û âû&ü*ü 1ü ;üHüXühüxüˆü ü™ü  ü ­üºü Áü ÏüÝüùüý +ý8ýKýgýzýý ý°ýÂýÔýêýþþ0þ7þ>þEþLþ_þ{þþžþ®þ½þÍþáþõþ + ÿ +ÿÿ0ÿDÿ +Xÿcÿ jÿ +tÿ ÿ Œÿ6–ÿ$Íÿ òÿ +üÿ 9Re„›®ÈÛñ '4 J T an u‚š +² ½Êâ +ú )9O_fv†– ¤±ÅÛë0J Q^v +Ž ™¦¾Öæ6Md k x …’¦ ¹Ãßû  #? F S`s ƒ ³ºÐàó ú  +8 K Xf mTw Ì Öà ó ý F07w¯Ã3Êþ & B!Oq x…!™»Ë$Û  & < N  U c w  +‹  +–  +¡ ¬ ¿  Ó  +á ì  ý & + +&1 +&X + + – +¤ +*¸ + ã +í + ý +  "  5 B Z n  •  +¦ ± Á  È Õ  í  ú  # C _ { ‚ '– ¾ Ô  +Û æ ý    $  +  8  +B  M Z a q  Ž •  +¨  +³ ¾  Ò  +æ  +ñ  +ü 5=Vu”ªÆ åó +÷   +'2 +C +NY iv)¢ ÌÖæ ü - 4A Q]dš¡ ´¾ Î Ûåü2KRY jt{£ ³½Ö +Ýè* : HRk„” ›© ­· ¾Ë áëò ù  ¶Ô9æ +  +5!Fh o| ¨·Ê>á' HXm€©¼Ïßò$7 O Ycgx!}Ÿ +£® ¾Ìà÷ +  +! 5 +CNUe lv }‡š¶ÍÔéþ& = JWpw‡ Ÿ©°ÁÒã +ö +  +8Kdkr† š¤·ËÞòù   1 EOb~&Ÿ ÆÐ +àë-I gt…–³Éåù(>QXt‡š³Æ ßé 61L~˜ +­¸ ÒÜòù ý +" 8 +FQ Yg n | ˆ ”  ª ÃÍÔí   / 9 @  +G R 2d  — ¸ Ê á û  !! +.! +9!D! X! +f! q! +!Š!!ž!À!Ç!×!ç! û!*" 0" >" L"V"f"}" ”"¡" ¨"%¶" Ü"é"#!#7# J# W#d#w#Š##°#À#"Ô#÷#$$ 2$@$P$f$ y$‡$¢$ ±$ ¿$ Í$ Û$é$ù$ %% -%;%J% Z% h% v%„%"—%º%Ë%â%õ% & &"&9&$I&n&‡&—&ž& +¶&Á& Ñ&ß&ï&'' $' 0' <' H''U'$}' ¢' ¬' +¶' +Á'Ì'à' ç' ô'((*(!C(!e( ‡(”(§(À(Ð(à(ä(,è( ))0) 7) D)Q)d)w)Š)š)°)Ï)â) ò) +ÿ) + +* *"*5*K*a*t*“*©*Å*Û*÷*! +/+MK+Y™+Qó+E, a, k,u,|,F˜,ß,ò,-!-7-'M-'u-<-9Ú-.-. =. J.W.m.ƒ.¢.2Á.ô. +/!/?/]/&p/—/ž/·/Ç/Ú/â/ò/000 /0<0C0 S0]0d0u0†0—0$§0Ì0å0ì0"ÿ0"151T1 n1{1 ‹1 ˜1¥1 »1È1ß1 õ12 2 *2 +42?2\2 +c2n2u2|2ƒ2œ2£2 ª2·2Í2ã2 ÿ2 3B3V3]3 +q3 +|3 ‡3”3§3À3 Ù3 æ3ð3 44#4")4L4_4p44ˆ4 4œ4¬4Â4É43â4*5&A5h5q5z5 “5 5 °5½5 Ñ5ß5ö5 666 26?6Y62u6¨68Á6 ú67 7727 97Z7a7u7…7Œ7 ¥7²7¹7 À7Ê7Ú7î7 õ788-8=8M8^8e8$u8š8¡8[°8 9 9$9+9 <9 F9 S9 `9j9€9”9§9'®9Ö9é9ü9 : : :):@:T:e: +v:: ”: ¡:®: +µ:À: Ç:Ô:ç: î: û: ;;;J.;!y;"›;¾;@Ú;L<h<‡<! <!Â<*ä<=++=3W=$‹=0°=0á=>B%>'h>'>Ó¸>zŒ?@#@ <@ ]@#~@¢@Á@3à@A*AJAfA'÷AB>BWB0pB*¡B7ÌBC C{L3mL$¡L9ÆL6M7MLM\M$uMšMªMºMÐM +àMëMòM NN +N 8N BNNN]NqN…N•NœN¶N ½NÊNÑN ØNæN íN úNO +O #O 0O=O FOgO~OO¬Oš³OdNPL³P/Q*0Q5[Q5‘Q5ÇQýQRR .R;R?RRRQVRZ¨RSS,S +3S>SPS lSvSzSS1”SÆSÍSäSëSûS TT,T +1T(hIh Zh +hh shh˜h +©h ´h ÁhÏh×hìhôhi +ii -i;iOifi +wi‚i +“i ži ¬i ºi +ÈiÓi +äiïij j$j ,j :j +HjSj jjxj‰j£j·j ËjÙjëjÿj k!k2k Ok]knk‹k +§k²k Ék ×k åkókl l +&l 1l +?lJl +^l ilwl ‹l +˜l£l ·l ÅlÓl çlõl + m +m +m *m8m +Lm Wm em9rm ¬m +ºmÅm Ùmçmþm n n +.n9n +Pn +[n +fn1qn £n +±n ¼n +ÊnÕnén +ýn +o o!o5oUoio}oo0´o åo +òoýop "p0p CpQp +eppp Šp +˜p +£p ®p ¼p Êp +Øpãpòp +qq %q +3q >qLqTq +hq +sq~q•q¥qµqÅqÕqåqúqrr#r3rCrSr +\rgrpr +r Œršr°rÁrÈr'Îrörürss"s2s Cs%Osus|ssˆs™s Ÿs«s'¯s×sàs ås ñs ýs +t t#t +t5t#uIuPuH í]mD+~ëla8ÄÆ S÷7 ¦'Ýy |Î..¾^[Ö3hU‰!s¡Ìò‚9ÉK†²ü V ïïLÙÖUÃ6ð:ñ“ó ;ö¡ÇÓ/ ¥Ótc ú +ã  ¹8*z$?Ø ½v »"5¼Ÿ×(]Ï ¡skHT²¤o;áƒC’Ò< …Ö €’VÛ©m"» ™¿F‹ø®[ÄþE–)œ„ 8g’Á¾úô÷¢ +L–ä¥tNìVoBë­¶N éVnBˆ ˆ²Fÿ nCÄ 6ʈK ¢ÝM–î j2>9pÛš! ÿŒ*ü>ÂD û?úÍ +P/ñü‹ 8€JÜÂM ƒ•$Ì®ep Í¤Ø œTÔ`¼D{ÿè]Ä\í„O. +5\^àhÊ ©*·¼R€rî¦n[U M/݈S£Á +[ áÖÖh›R„tAß« Ð öl +Ö„³Ê8;6 Ù· ì ðG‡&Z]Ñò©2 —Ó ˆ†& ãX3aŸ !¥õ¦X jO‰× ú‰£U%“½‡^9âþÝY`&ýæt zIÝ O׬հžßpÀo ÙYŽƒ +ª¾aâïHÑpÙæãåébøa‹= óü ê ‘žÿÂc›wÑ÷ “)C#Ó¶²nŽå#³… + „©Œ.m±©2Ù #A†r¢7îÕ6â e»‡`2 yH‰©Ä¾ä×WÏõ "§kþf­®D|B%W´¢|Œ1à »,äîDIåõð CØ£b] ïc†0f—Ôðù«z ýÑ WÛ>‚>¨,ã'ë ÎE àŒ &ðZíl. ì*û ûm( J /½ LËÌÍÎ.е‡ ­ÍUFЯc°íuŸ“òLÎçVÎõAóR`¼Ô¤Ü-Ú-T_CÜ¥Ïϧ櫭 C1@¶ÀMýæ +ƒëJ| ^ Ï- >)™6|3x_Ìê®fÃìl Ù´*±æ¿* iÁà@=­Ú+ Òò @m;î’  +b’·Xîú E^{‰)Æë¾I\Ô:tW¤ èe½ +çj +TLrtªéò…˜Åeæ«·ÐÈ ÉØUû÷åÁ}ÅÊœ JdçY9"V¹ ­ A 1:UMF"t‹%©Nù{Í5 ›})ZƒÄç Œ`NkI¯ Êe F-:!Ã1 cä Gï ja4 Q§WXs•aÔ¶U!0ïSÒ[Â>ñ L“þ¢æáb” ÐèkÎu·ï P…Í öÛóÓÈ[-þÏu«2wÑ + +v’ ×»ˆìý _J(ªœŽ ”V·Î Bj( Õe‚ ›ÅR å ‘7äX¯÷J¹ºôû:Þ  (ðP¼Ì ²šôšøç‰ ¸‚È4v¬ öÌok„»Cƒ ÷ÜNC?´³ßÃàòù'õÉÊáhE¼Qêhq<¹Öl±  ¹³óa5Š€Š¿"rœ§Eþüìö Ëò¯5h±õ© ß%¸õY Þ»³¦fp!ÁÀÞî„Š: }Mô šT ,˜@дíRO‰?‚’çÇ áA‡( ZY} +B %eâ5ïŵßã6|7Z×:ñD‚@_ Td? 5Áyç – ¨°ºr  ©Ys§¡ð´Ý—Øû(¶^«‹¢ vÃ…¬sÿq<á =7z6±ÃÌY…•¡êôGøQ¡„s·Xrôµ¹ü®ó•OŒ—!ýÖQOšÜŸ• ÑšI² Â#Ó«ëåß/ Zx ¥?&Øë Ýê|H Š-Êðªn¬Ý|žÄ§±B ÿ4, R'Íd]äªAî<”d  £º Ç3ùÅ÷ +½Ë+°¬ùÍ‘~–ùÇj‘#DúÌ_w–ѧ f “ ÂJÒ }!SŽ ÂoäïgP‘j‰G ˜ºõê%Fh ¿ÕÚ À«¤Åp !¿¢$%¶ª 1Ü .+p†P£º¸b ‡ ¤ºz;’ºÒE é Ô0/~“x º6].' ŤyÓ 4Ú4dœÏbÞÔ ÞˆR< €KÆè#l=¡–~–gžrã lMýgMƒ Gí(®à›*?›" ,š ËS&K-¬-ÓŽœâ,q‹d Òå¼ QKÎ[…úpÜ9<Gô.0ɼ(ªY <’0ÚŠ'Ǽ£© lQêà W¨s) ÊXa¡ê&ÛPc =­0Å E:xØ+éÆ$ cI/S¹òVDsó1i†'ötnû\ÒyÒÔçM•Ç8ž;µh¶ Ž5 WÄ3˜=YÓ $€ÇáQgšÆÍ ¯¬*mj2Œw ; ' +è ¨™O nám†óøÈ‚„­¡ uÑö7m *ÏË µHq æ ôÀ[ˆ ;LÔ{«RÐ~ ÿùJÉ Ž ”G HÉi"®Ùxu ^a×ǸEñ)ñ°íÚ„•¯}9– i£ 'ñž±Ÿ # ´À,Ɔ¦U¾ 3zQÊ—"éî|éŽjÜå˜\ d ú ôÕ # ßò+qqßMëiKk¾ï d¿1غkâþ þK\›_ˆ,‰g@ Ü@’ -$(<7ü µÕ2³b¨Û~'gBíôfq> —Ù–Z7wY} ×!ì黜NŠ iP k + HÄuÞ#u0¹ãE +uí É\H:¨àÆÀž 8 ·ZÊTˆç½?¤ &pý}™}“DÇF_ ‡ WÃ`å 80 ”´·‹ — S¦ ¢ì+z™ colFNF gœ‚¼š¤À7z¨¾ + Á±Z b¦û°È²ö oü­•ÿ:¯‡w[Õ ¥ ð,A®ÎÔ‹†ƒ X°Kâ cff™­ä UÆ vì† m¨˜ ÄI÷n Š`riB® ÌŠùè^ÚÏ ¤ù þÚ¾e]Jòµàë«¢ +¯ ŽmNá Fºõ÷` §ûҊШ ¸€{ ´ Ð S®¹g Ÿf¯b ŸäÅÚ苉—¸ÞÀ ÈÃðv±T‘ Næé y¸”i T…`f3üÛ»ñ~šbãëL y§•n…p™É±ã |ì2Te&¨ ž÷Dz +ý³å$% èxÈk/6¥+ GÕX”zÚw̸hõv\ñ7,{Œ™[ßi}%OÝêËã{Ñ™t¦ú¥îª\s ¿ Lܜв{{ +‡“HûâÎ? þ)Q 0¢×Ž½Q—¬ R˜91iø#9€—6¿"¿æÛu@$£ >Âý4˜˜žC ƒ¦¬€ Iñ_…Ö°5 +9 vÞŒ·P 5Œ”q°Ûy4›k ÕŸ~urW§¦£¸ ½Bd»X£¬j r-&g<qØÆè^¿¯‡4€âwI ´éW C82=?ÁƵ ¶¶ òt•$K+JöS Å+oØ; ]oq_äÿ +¸ÁoV›° Ç_/ èöÈ~ +vNI= hƒÑÉ‚xí4K1ŸÈ¹ טnÁ ;ÓÞ$øyóSÙ ZxežŸ›  ³ P w.=O¥”‘/¶38]‹ª%Ý<½Ëý{0âá2úË‚GV‘dÂABAl“ É^A¥ê Š¾ËµyÍøLÒÿ c)EP\ªv²3 ½ß  Þàü@ùG4 3³ +Ï  x*Ë‘à)Ö³~¡´wsR =1Û OçÈxµóa À`™9@Ù”Õ‘> øø > (Height Mismatch!) (Width Mismatch!) Columns on each layer Rows of ## of Spikes:%d Plug-In Interfaces%d Procedures%d x %d%s -- Print v%s'%s' is corrupt. Line %d Option section incorrect'%s' is not a DICOM file.'%s' is not a FractalExplorer file'%s' is not a PCX file'%s' is not a regular file'%s' is not a valid BMP file'%s' is not a valid GFlare file.'%s': Could not read header (ftell == %ld)'%s': No image data type specified'%s': No image height specified'%s': No image width specified(None)1 Plug-In Interface1 Procedure1 bpp, 1-bit alpha, 2-slot palette32 bpp, 8-bit alpha, no palette4 bpp, 1-bit alpha, 16-slot palette8 bpp, 1-bit alpha, 256-slot paletteA less-obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000A unit definition will only be saved before GIMP exits if this column is checked.ALT TextALT te_xt: (optional)ASCII artA_boutA_daptive supersamplingA_ddA_dd borderA_dvancedA_llA_ll tilesA_lpha-weightingA_lpha:A_mbient:A_mount:A_mplitude:A_ngle:A_nimateA_ppendA_uto update previewA_utomaticA_verage under brushAbbreviationAboutAbout Gimp-Print ActionAd_vancedAdaptiveAdaptive s_upersampleAdd Additional GuidesAdd FractalExplorer PathAdd new smvectorAdd new vectorAdding Blinds...Adding Checkerboard...Adding Noise...AdditionAdditional InformationAdds a shadow effect to each brush strokeAdds random noise to the colorAdjust _FG-BGAdjust color balance, brightness, contrast, saturation, and dither algorithmAdjust output...Adjust the Flare IntensityAdjust the Luminosity ThresholdAdjust the Number of SpikesAdjust the Opacity of the SpikesAdjust the Spike Angle (-1 means a Random Angle is chosen)Adjust the Spike DensityAdjust the Spike LengthAdjust the Value how much the Hue should be changed randomlyAdjust the Value how much the Saturation should be changed randomlyAdjust the cyan balance of the printAdjust the density (amount of ink) of the print. Reduce the density if the ink bleeds through the paper or smears; increase the density if black regions are not solid.Adjust the gamma of the print. Larger values will produce a generally brighter print, while smaller values will produce a generally darker print. Black and white will remain the same, unlike with the brightness adjustment.Adjust the magenta balance of the printAdjust the preview's brightnessAdjust the saturation (color balance) of the print -Use zero saturation to produce grayscale output using color and black inksAdjust the yellow balance of the printAdjusting Foreground/Background...Advanced Filter Pack OptionsAdvanced OptionsAffected RangeAl_ternateAl_ternate tilesAlien Map _2...AlienMap2AlienMap2: Transforming...Align Visible LayersAlign _Visible Layers...All JNGAll PNGAll Values are Fractions of the Film HeightAll blackAll grayAll text fields must contain a value.All whiteAllo_w tile splittingAlphaAlpha ChannelsAlpha:Ambient:Amount of original color to show where no direct light fallsAmount:An obsolete creation of Adam D. Moss / adam@gimp.org / adam@foxbox.org / 1998-2000Ang_le offset:Angle span:Angle:Angular Gradient:Angular Size Gradient:Animated GIF OptionsAnimated MNG optionsAnimation Playback:AntialiasingAntialiasing quality. Higher is better, but slowerApplyApply CanvasApply _Lens...Apply active gradient to final imageApplying Canvas...Applying convolutionApplying lens...Applying the Filter Pack...Are you sure you want to delete "%s" from the list and from disk?Area #%d SettingsArea SettingsArea listArea:ArrowAs specified aboveAsciiAspect ratio:Assembling Jigsaw...Asymmetry:At _bottomAt _topAut_hor:Author:AutoAuto-Stretching Contrast...Auto-Stretching HSV...AutomaticAutomatic pre_viewAvailable Images:B/WBLANK/NaN Pixel ReplacementB_lack pullout (%):B_lue threshold:Bac_kground colorBack:BackgroundBackground (%d%s)Background ColorBackground TypeBackground:Bad colormapBarnsley 1Barnsley 2Barnsley 3Base _URL:Basic OptionsBentBevel EdgesBili_nearBl_ack & whiteBlackBlack and whiteBlack:Blend SettingsBlindsBlueBlue freq_uency:Blue pha_seshift:Blue:Blueness_cb470:Blueness_cb470f:Blueness_cb709:Blueness_cb709f:Blur CenterBlur MethodBlur ParametersBlur RadiusBlur TypeBlurring...BorderBorder Average...Border SizeBorderaverageBot_hBothBottom Border:Bottom edgeBottom-_rightBottom:BoxBrightness:BrowseBumpBump MapBump-mapping...Bumpm_ap image:BumpmapBy DATAMIN/DATAMAXC source codeC source code headerCML Explorer: Overwrite File?CML _Explorer...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeChange order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Co_rrelated noiseCol_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Range _Mapping...Color Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Compression typeConstrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous updateContoursContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy to ClipboardCopying IFS to image (%d/%d)...Copying...Copyright(c) 1999-2004 by Maurits RijkCopyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: +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/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...CMYCMYKCX:CY:C_MYKC_ameraC_aptionC_ell content:C_ell size:C_enter of brushC_enteringC_hoose here:C_ircleC_ompose...C_reate New ImageC_rossesC_urvedC_yanC_ylinderCa_rtoon...Calculation SettingsCan only operate on RGB drawables.Can only save drawables!Can operate on layers only (but was called on channel or mask).Can't create a new imageCan't get Clipboard data.Can't operate on unknown image typesCan't read color entriesCannot delete!! There must be at least one GFlare.Cannot operate on empty selections.Cannot operate on gray or indexed color images.Cannot operate on indexed color images.Cannot operate on layers with masks.Cannot operate on unknown image types.Cannot read extension from '%s'Cannot read footer from '%s'Cannot save RGB color images. Convert to indexed color or grayscale first.Cannot save images with alpha channel.Cannot save images with alpha channels.CartoonCell size:Cell-_padding:Cell-_spacing:CenterCenter _x:Center _y:Center of Flare EffectCenter of SuperNovaCenter the image horizontally on the paperCenter the image on the paperCenter the image vertically on the paperCenter:CenterizeChange order of arrowsChange the CX value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the CY value (changes aspect of fractal, active with every fractal but Mandelbrot and Sierpinski)Change the angle of the selected smvectorChange the angle of the selected vectorChange the exponent of the strengthChange the first (minimal) x-coordinate delimitationChange the first (minimal) y-coordinate delimitationChange the intensity of the blue channelChange the intensity of the green channelChange the intensity of the red channelChange the iteration value. The higher it is, the more details will be calculated, which will take more timeChange the number of colors in the mappingChange the second (maximal) x-coordinate delimitationChange the second (maximal) y-coordinate delimitationChange the strength of the selected smvectorChange the strength of the selected vectorChange to thisChanges the gamma (brightness) of the selected brushChannel #%d:Channel Independent ParametersChannel Mi_xer...Channel MixerChannel Mixer File Operation WarningChannel RepresentationsChannelsCheck if you would like to have the table captioned.CheckerCheckerboardChecking this tag will cause GTM to leave no whitespace between the TD tags and the cellcontent. This is only necessary for pixel level positioning control.Choose Fractal by double-clicking on itChoose PPD FileChoose a high compression level for small file sizeChoose the PPD file for your printerChoose the dither algorithm to be used. +Adaptive Hybrid usually produces the best all-around quality. +Ordered is faster and produces almost as good quality on photographs. +Fast and Very Fast are considerably faster, and work well for text and line art. +Hybrid Floyd-Steinberg generally produces inferior output.Choose the printer model, PPD file, and command that is used to print to this printerCircleCircle _depth in percent:Cleanup...ClearClear transparentClose curve on completionClosedCo_lorCo_lor averagingCo_lor:Co_lorsCo_mment:Co_mpensate for darkeningCo_mplexity:Co_mpress TD tagsCo_mpression level:Co_ntiguous RegionCo_ntrast:Co_rrelated noiseCol_umn:CollectColorColor DensityColor Enhance...Color ExchangeColor Exchange...Color Exchange: From ColorColor Exchange: To ColorColor FunctionColor ModeColor Range _Mapping...Color Selection DialogColor TransformationColor _noise:Color _variation:Color fillColor is computed from the average of all pixels under the brushColor outputColor to AlphaColor to Alpha Color PickerColor to _Alpha...Color:Color_map:Colorcube A_nalysis...Colorcube AnalysisColorcube Analysis...ColorifyColorify Custom ColorColorifying...ColoringColormap RotationColormap _Rotation...ColorsColors:CombineComm_ent:Command:CommentComment:ComposeCompose ChannelsComposing Images...Composing...Composition:Compressed size: %sCompressionCompression ratio (approx.): %d to 1Compression typeConstrain aspect ratioConstructing maze using Prim's Algorithm...Constructing tileable maze using Prim's Algorithm...ContextContinuous updateContoursContrast:ControlsControls how intense the highlights will beConvert the image to RGB first!Convolution MatrixConvolution Matrix does not work on layers smaller than 3 pixels.ConvolveCopyCopy GFlareCopy SettingsCopy an objectCopy parametersCopy the active curve to the other borderCopy the texture of the selected paper as a backgroundCopy to ClipboardCopying IFS to image (%d/%d)...Copying...Copyright(c) 1999-2004 by Maurits RijkCopyright:CosineCould not create working folder '%s': %sCould not execute specified web browser: %sCould not get layers for image %dCould not interpret '%s'Could not load PNG defaultsCould not open '%s' as SUN-raster-fileCould not open '%s' for reading.Could not open '%s' for reading: %sCould not open '%s' for writing.Could not open '%s' for writing: %sCould not parse specified web browser command: -%sCould not read XWD header from '%s'Could not read color entries from '%s'Could not read header from '%s'Could not write '%s': %sCouldn't load one brush in the pipe, giving up.Couldn't losslessly save transparency, saving opacity instead.Couldn't read file:Couldn't save file:Couldn't save resource file:Couldn't simply reduce colors further. Saving as opaque.Cre_ate new imageCreateCreate GuidesCreate _New layerCreate _histogramCreate a color-map using a gradient from the gradient editorCreate a color-map with the options you specified above (color density/function). The result is visible in the preview imageCreate a new image when applying filterCreate a new unit from scratch.Create a new unit with the currently selected unit as template.Create arcCreate bezier curveCreate bezier curve. Shift + Button ends object creation.Create circleCreate ellipseCreate guides...Create lineCreate new imageCreate reg polygonCreate spiralCreate starCreated with The GIMPCreating diffraction pattern...Cro_pCropping...Cu_rve:CubismCubistic Transformation...Cumulative layers (combine)Curl LayerCurl LocationCurl OrientationCurrent gradientCurrent gradient (reversed)Current:Curve BendCurve Bend...Curve TypeCurve for BorderCustom Color:Custom gradientCutCyanCyan:Cyan_KCylinderCylinder lengthCylinder radiusDCT method:DICOM imageD_eform amount:D_ivisor:DarkerDarker:Data CompressionData FormattingData formattingDate:DecomposeDecompose to _layersDecomposing...DefaultDefault Map TypeDefault _URL:Default chunks type:Default frame delay:Default frame disposal:Define Circle/Oval areaDefine New PrinterDefine Polygon areaDefine Rectangle areaDeform ModeDegree of slope of each piece's edgeDegreesDeinterlaceDeinterlace...Delay inserted to prevent evil CPU-sucking anim.DeleteDelete AreaDelete FractalDelete GFlareDelete PointDelete an objectDelete currently selected fractalDelete selected areaDelete selected smvectorDelete selected vectorDeletes the selected PresetDelta functionDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse:DigitsDimensionsDimensions:DirectionDirection VectorDirectionalDirectional lightDirectionsDirections:DisplaceDisplacing...Distance from the bottom of the paper to the imageDistance from the left of the paper to the imageDistance from the left of the paper to the right of the imageDistance from the right of the paper to the imageDistance from the top of the paper to the bottom of the imageDistance from the top of the paper to the imageDither Algorithm:Dither size:DivisionDo _PreviewDo you really want to discard your changes?Do you really want to overwrite?DoG Edge DetectDocument not foundDraw a Border of Spikes around the ImageDrawables have different sizeDrawing Flame...Drawing Grid...Drawing Maze...Drawing SettingsDraws lines between the control points. Only during curve creationDrop ShadowEOF encountered on readingEXIF data will be ignored.E_levation:E_nable bump mappingE_nable environment mappingE_rodeE_xtendEach piece has curved sidesEach piece has straight sidesEdge AffectedEdge DetectionEdge Detection...Edge darken:EdgesEditEdit Area Info...Edit FlameEdit Map Info...Edit ObjectEdit area info...Edit fractal nameEdit map infoEdit selected area infoEditing read-only object - you will not be able to save itEffect ChannelEffect OperatorEmbossEn_grave...En_vironment image:Enable _antialiasingEnable/disable bump-mapping (image depth)Enable/disable environment-mapping (reflection)Enable/disable high quality previewEnable/disable jagged edges removal (antialiasing)Enable/disable real time preview of changesEncapsulated PostScript imageEncapsulation:EngraveEngraving...Enter a name for the copied GFlareEnter a name for the new GFlareEnter the PPD filename for your printerEnter the command to print to your printer. Note: Please do not remove the `-l' or `-oraw' from the command string, or printing will probably fail!Enter the name you wish to give this logical printerEntire LayerEnvironment image to useError during open of FITS fileError during writing indexed/gray imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error starting ghostscript: %sError while reading '%s'. File corrupted?Error while saving '%s'. Could not save image.Error writing output file.Error: Could not read XJT property file '%s'.Error: XJT property file '%s' is empty.Error: failed to load parametersError: it's not CML parameter file.Evenly distributedExp.:Export PreviewExtract ChannelsFG colorFITS file keeps no displayable imagesFITS save cannot handle images with alpha channelsF_ileF_irst Color:F_lare intensity:FactorFailed to open GFlare file '%s': %sFailed to save PPM file '%s': %sFailed to write GFlare file '%s': %sFast IntegerFeatherFileFile "%s" saved.File '%s' doesn't seem to be an IFS Fractal file.File '%s' exists. +%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 functionDensity:Depth MergeDepth firstDepth map:Depth-merging...Deriving Smooth Palette...Des_peckle...Des_tripe...Description:Deselect _allDespeckleDestination channel:Destination color rangeDestination:DestripeDestriping...Deviation threshold:DiamondDifference of Gaussians...DifferentialDiffraction PatternsDiffuse: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 LayerEnvironment image to useError during open of FITS fileError during writing indexed/gray imageError during writing rgb imageError grabbing the pointerError in GIMP brush file '%s'Error in GIMP brush pipe file.Error in getting layer IDsError obtaining Screen ShotError opening fileError opening file '%s'Error reading BMP file header from '%s'Error reading fileError starting ghostscript (%s)Error starting ghostscript: %sError 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 already existsFile not in a supported format.File size: %02.01f kBFile size: unknownFilename:Filename: %sFillFill (bottom to top)Fill (left to right)Fill (right to left)Fill (top to bottom)Fill with parameter kFilmFilterFilter Pack SimulationFinding Animation Background...Finding Edges...First Destination ColorFirst GfigFirst Source ColorFirst colorFix seedFlameFlame works only on RGB drawables.FlareFXFlipFloating-PointFlowingFo_reground colorFocus the brush strokes around the center of the imageForce baseline JPEGForegroundForeground / background colorsFractal ParametersFractal TraceFractal TypeFractal name:FractalExplorer GradientFractional PixelsFrame %dFrame %d (%d%s)Frame %d of %dFrame disposal where unspecified: FrequenciesFrequency (rows):FromFrom ClipboardFrom ColorFrom gradientFrom paperFrom reverse gradientFrom:Front:FullFunctionFunction type:Fuzzy SelectG-QbistGEE-SLIMEGEE-ZOOMGFlareGFlare EditorGIF OptionsGIF WarningGIF imageGIMP ExtensionGIMP Help browserGIMP Plug-InGIMP Table MagicGIMP Windows Icon PluginGIMP brushGIMP brush (animated)GIMP brush file appears to be corrupted.GIMP brushes are either GRAYSCALE or RGBAGIMP patternG_lowG_reen threshold:Gamma:Gaussian BlurGaussian Blur...Gee-_SlimeGee-_ZoomGeneralGeneral OptionsGeneral PreferencesGeneral optionsGet sample colorsGfigGimp-Print Version GimpressionistGlass TileGlass Tile...Glow Paint OptionsGr_eyGrabGrab _AfterGrab a single windowGrab the whole screenGradientGradient Flare...Gradient Map...Gradient fillGradientsGraphic antialiasingGrayGray ModeGray OptionsGray ThresholdGrayscaleGreenGreen fr_equency:Green ph_aseshift:Green:GreyGridGrid GranularityGrid OffsetGrid SettingsGrid Settings...Grid Visibility and TypeGrid color:Grid settings...Grid spacing:Grid type:GuidesGuides are pre-defined rectangles covering the image. You define them by their width, height, and spacing from each other. This allows you to rapidly create the most common image map type - image collection of "thumbnails", suitable for navigation bars.Guides...Guillotine...HSVHTML Page OptionsHTML tableH_ighlight:H_ighlightsH_ueH_ue:He_xagonsHeight (pixels):Height:Help ID '%s' unknownHey where has the object gone ?High _Quality previewHigher values increase the magnitude of the effectHigher values makes the highlights more focusedHigher values makes the object reflect more light (appear lighter)Higher values restrict the effect to fewer areas of the imageHighlight:Highlights:Ho_ld the minimal channelsHo_le width:Ho_rizontal base:Hol_e height:Hold intensityHole sp_acing:HorizontalHorizontal ColorHorizontallyHorseshoeHotHot spot _X:Hot spot _Y:Hot...How many units make up an inch.How much to "darken" the drop shadowHow much to "darken" the edges of each brush strokeHow much to blur the drop shadowHueHue Rotation:Hue VariationsHue _frequency:Hue _phaseshift:Hue:I don't careIDIFS FractalIFS Fractal Render OptionsIFS Fractal: BlackIFS Fractal: BlueIFS Fractal: GreenIFS Fractal: RedIFS Fractal: TargetITER:IWarpI_ntensityI_nteractiveI_nvert bumpmapI_nverted imageI_solateIcon #%iIcon detailsIf checked GTM will output a full HTML document with , , etc. tags instead of just the table html.If checked GTM will replace any rectangular sections of identically colored blocks with one large cell with ROWSPAN and COLSPAN values.If checked the mapping will begin at the right side, as opposed to beginning at the left.If unchecked the image will be circularly mapped onto a rectangle. If checked the image will be mapped onto a circle.If unchecked the mapping will put the bottom row in the middle and the top row on the outside. If checked it will be the opposite.If you enable this option higher color values will be swapped with lower ones and vice versaIf you enable this option the preview will be redrawn automaticallyIllusionIllusion...Im_ageImageImage / Output SettingsImage ComposingImage SelectionImage SizeImage TypesImage _Type:Image _height:Image dimensions: %d x %dImage is not a gray image (bpp=%d)Image name:Image size has changed.Image spac_ing:Image type:Imagemap plug-in 2.2Images for the Cap FacesImages have different sizeImport _pathsImport path elements of the SVG so they can be used with the GIMP path toolIn_tegration steps:In_verseInchInclude decorationsIndexedIndexed Palette TypeInitial value:Ink type:Input levels:Insert PointInsertion DateIntegerIntensityIntensity LevelsIntensity of original color when lit by a light sourceInterlaceInternal GIMP procedureIntersectionIntersection ColorInvalid UTF-8 string in PSD fileInvalid UTF-8 string in brush file '%s'.Invalid UTF-8 string in pattern file '%s'.InversionInverts the Papers textureIsometricIterations:JNGJNG + delta PNGJPEG compression quality:JPEG imageJPEG previewJPEG quality parameterJPEG smoothing factor:JigsawJigsaw StyleJuliaKeep _even fieldsKeep image's valuesKeep o_dd fieldsKeep originalKeep the first valueLABLZ77L_eadingL_eft BorderL_ength:L_inearLambdaLandscapeLaplaceLaplace...Larg_e 3x3Layer %s doesn't have an alpha channel, skippedLayer background type. Copy causes the previous layer to be copied before the draw is performed.LeftLeft edgeLeft:Lens EffectLess Sat:Let the direction from the center determine the direction of the strokeLet the direction from the center determine the size of the strokeLet the value (brightness) of the region determine the direction of the strokeLet the value (brightness) of the region determine the size of the strokeLevelLightLight 1Light 2Light 3Light 4Light 5Light 6Light SettingsLight _direction:Light intensityLight source X direction in XYZ spaceLight source X position in XYZ spaceLight source Y direction in XYZ spaceLight source Y position in XYZ spaceLight source Z direction in XYZ spaceLight source Z position in XYZ spaceLighterLighter:Lighting EffectsLighting Effects...Lighting preset:Lightsource color:Lightsource type:LineLine artLinearLink TypeList ViewLizardLo_ng-staggeredLo_wer BorderLoad Channel Mixer SettingsLoad Curve Points from fileLoad FITS FileLoad FlameLoad Fractal ParametersLoad Gfig object collectionLoad ImagemapLoad KISS PaletteLoad Lighting PresetLoad Parameters fromLoad PostScriptLoad QBE fileLoad a fractal from fileLoad the curves from a fileLoading Screen Shot...Lock _thresholdsLogarithmicLoopLower leftLower rightLower selected objectLower selected object to bottomLower t_hreshold:Luma_y470:Luma_y470f:Luma_y709:Luma_y709f:Luminosity _Threshold:Luminosity freq_uency:Luminosity pha_seshift:MNG OptionsMNG animationM_aximum value:Ma_x depth:Ma_ximum height:Magen_taMagentaMagenta:Magenta_KMain OptionsMake destination image transparent where bump height is zeroMake image transparent outside objectMan'o'warMandelbrotMandelbrot ParametersManualManually specify the stroke orientationManually specify the stroke sizeMap Color RangeMap Images to Box FacesMap _Object...Map file formatMap from _topMap to Box...Map to Cylinder...Map to ObjectMap to Plane...Map to Sphere...Map to:Mapping colors...MarbleMask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMo_dify green channelMo_dify saturation channelMod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMy first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: +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 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:GradientsGraphic 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...MarbleMask FileMaterial propertiesMatrixMax (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)Max RGBMax RGB...Max undo:Max. Memory:Maximum height for bumpsMaximum size:MazeMedia size:Media source:Media type:MedianMenuMenu PathMenu Path/NameMerge imported pathsMerging...Microsoft WMF fileMicrosoft Windows iconMiddle-click inside preview to pick "From Color"Midtones:Min (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)Minimum size:Mirror the active curve to the other borderMo_dify green channelMo_dify saturation channelMod_ify blue channelMod_ify luminosity channelModeMode _1Mode _2Modify CurvesMor_e opaqueMore Advanced OptionsMore Sat:More _white (larger value)More blac_k (smaller value)More t_ransparentMosaicMotion BlurMotion Blurring...MoveMove DownMove SashMove Selected ObjectsMove To FrontMove UpMove a single pointMove an objectMovementMy first fractalNL FilterNL Filter...NameNeon DetectionNeon...New FractalNew GFlareNew UnitNew printer...New seedNewsprin_t...NewsprintNewsprint...No %s in gimprc: You need to add an entry like (%s "%s") -to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)Optimizing Animation...OptionsOr_ientationOrientationOrientation Map EditorOrientation:OriginalOriginal intensityOriginal:Ot_herOther optionsOutputOutput Levels:Output type:Outside TypeOverlayP(ower factor):PDF documentPGM imagePNGPNG + delta PNGPNG compression level:PNG imagePNM ImagePNM imagePNM save cannot handle images with alpha channels.PNM: Error reading file.PNM: Invalid X resolution.PNM: Invalid Y resolution.PNM: Invalid file.PNM: Invalid maximum value.PNM: Premature end of file.PPD File:PPIPPM imagePS DiamondPS Square (Euclidean Dot)P_aperP_olar Coords...P_reviewPage %dPage Curl...Page SetupPagecurl EffectPages to load (e.g.: 1-4 or 1,3,5-7)Pages:Paint Mode:Paint Shop Pro imagePaint edgesPainting...Pal_ette File:PalettePaper TilePaper Tile...Parameter k:ParametersParameters were saved to '%s'Parse error in '%s': -%sPastePaste from ClipboardPastedPasting...Pattern fillPercentPercent _black:Percent _white:Percentage of pixels to be filteredPhase angle, range 0-360PhotocopyPhotographPhotoshop imagePieces:Ping pongPixel _Height:Pixel _Width:Pixel value scalingPixelizePixelizing...PixelsPl_acementPlace strokes randomly around the imagePlacementPlanePlasmaPlasma...Play/StopPlayback:Please check your installation.Plot a graph of the settingsPlug-In BrowserPluralPo_larization:PointPoint lightPolarPolarizePolarizing...PolygonPortraitPositionPosition X:Position Y:Position Z:PostScript documentPostScript save cannot handle images with alpha channelsPre_viewPreferencesPreserve _luminosityPreserve the original image as a backgroundPreviewPreview SizePreview _size:Preview as You DragPrewittPrim's algorithmPrint Color AdjustPrint and -Save SettingsPrint to FilePrinter Model:Printer SettingsPrinter doesn't support bitmapsPrinter model:Printer name:Printing...Probability Gradient:Procedure BrowserProcedure _BrowserProgressivePropagatePropagating Value ChannelPropagating _Alpha ChannelQbist ...Quality:RGBRGB Save TypeRGBARGBA/GRAYA drawable is not selected.RLERLE compressionR_adius 2:R_adius:R_andom hue:R_andom seed:R_andomization (%):R_ecursiveR_edR_ed threshold:R_epeat:R_everseRadialRadial Gradient:RadiansRadians/PiRadiusRadius:Raise selected objectRaise selected object to topRando_m saturation:RandomRandom Hurl 1.7Random Pick 1.7Random Seed:Random Slur 1.7Random _seed:Random seedRandom sharedRandom, ch. independentRandomlyRandoms from seedRandoms from seed (shared)RawRaw Image DataRaw Image LoaderRaw Image SaveRays Paint OptionsRe_centerRe_dReads the selected Preset into memoryRealtime PreviewRecompute CenterRecompute preview imageRectangleRedRed _frequency:Red _phaseshift:Red:Redness_cr470:Redness_cr470f:Redness_cr709:Redness_cr709f:RedoRedo last zoomRedrawRedraw previewReduce _LuminanceReduce _SaturationReflectivityRefresh the Preview windowRegular Polygon Number of SidesRelati_ve linkRelative probability:Released under the GNU General Public LicenseRelief:Remap Colorized...Remo_veRemoving Animation Background...Removing color...Render Flare...Render Scalable Vector GraphicsRender Windows MetafileRender optionsRendered SVGRendered WMFRenderingRendering Blast...Rendering Fractal...Rendering IFS (%d/%d)...Rendering SVG...Rendering Sphere...Rendering SuperNova...Rendering Tiles...Rendering Wind...ReplaceReread the folder of PresetsRescan GradientsRescan for FractalsReset parameters to default valuesReset the active curveResize area's?ResolutionResolution:Resulting Guide Bounds: %d,%d to %d,%d (%d areas)Resulting Guide Bounds: 0,0 to 0,0 (0 areas)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 +to your %s file.No colorsNo compressionNo data capturedNo fillNo lightNo matchesNo selection to convertNo sensible extension, attempting to load with file magic.No sensible extension, saving as compressed XCF.No. _Down:NoiseNon-square pixels. Image might look squashed.NoneNormalNormal:Normalizing...Nothing to crop.Number of ColorsNumber of M_RU entries (1 - 16):Number of SegmentsNumber of TilesNumber of _Frames:Number of _Undo levels (1 - 99):Number of cells:Number of colors:Number of cycles covering full value rangeNumber of pieces going acrossNumber of pieces going downNumber of times to apply filterNumber of unique colors: %dNumberingO_ffset:O_nly foregroundO_pacity:O_ptionsO_rientationO_thersO_utput LPI:O_utput channel:O_verlap:O_verlayO_versample:Object DetailsObject X position in XYZ spaceObject Y position in XYZ spaceObject Z position in XYZ spaceOc_tagons & squaresOff_set:Offset _angle:Offset all vectors with a given angleOffset:Oil Painting...Oili_fy...OilifyOn Edges:On Film:On edges:One frame per layer (replace)Only b_ackgroundOnly one unique colorOp_acity:Op_timal estimationOp_tionsOpacity:OpenOpen FileOpen IFS Fraktal fileOpen failedOpen recentOpening '%s'...Opening thumbnail for '%s'...Opens up the Orientation Map EditorOpens up the Size Map EditorOptimizeOptimize (for _GIF)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 imagePlacementPlanePlasmaPlasma...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: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)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 size of the pageScale:Scaling:Scatter HSVScatter RGBScattering HSV...ScreenScreen ShotSe_lection OnlySearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeascapeSecond Destination ColorSecond Flares Paint OptionsSecond Source ColorSecond colorSeconds DelaySeconds delaySeed of Random (only for "From Seed" Modes)Seed:Selec_tion In ContextSelectSelect AllSelect ColorSelect Film ColorSelect HTML fileSelect Image FileSelect NextSelect Number ColorSelect Palette File to LoadSelect Pixels bySelect PreviousSelect RegionSelect _AllSelect _allSelect allSelect an objectSelect contiguous regionSelect contiguous regionsSelect existing areaSelect folder and rescan collectionSelect lightsource colorSelect next smvectorSelect next vectorSelect previous smvectorSelect previous vectorSelect the orientation: portrait, landscape, upside down, or seascape (upside down landscape)Select your printer modelSelect:Selected:SelectionSelection To Path Advanced SettingsSelection size is not even. -Tileable maze won't work perfectly.Selection to Path...Selective Gaussian BlurSelective Gaussian Blur...Selective Load SettingsSelective Load fromSelects a random direction of each strokeSelects a random size for each strokeSelects if the resulting image should be seamlessly tileableSelects if to place strokes all the way out to the edges of the imageSemi-Flattening...Send To BackSend as MailSeparate to:September 31, 1999Set light source colorSet the brightness of the print. -0 is solid black, 2 is solid whiteSet the contrast of the printSet the height of the printSet the print size to the size of the imageSet the width of the printSettingsSettings for this MapfileSetup PrinterSetup printer...Sha_dowsShadow blur:Shadow darken:Shadow depth:Shadows:Shape of Second FlaresSharp edgesSharpenSharpening...Shear:ShiftShift _amount:Shift _horizontallyShift _verticallyShifting...Should an Inverse Effect be done?Should the Luminosity be preserved?ShowShow Line FrameShow _Preview in image windowShow all objectsShow area URL _tipShow area _handlesShow colorShow control pointsShow gridShow imageShow next objectShow positionShow preview _wireframeShow previous objectShow selectionShow/hide preview wireframeSi_ngular:Sides:SierpinskiSimpleSin_usoidalSineSingularSinusSinus: rendering...SinusoidalSizeSize (%):Size Factor Gradient:Size Map EditorSize:Sizes:SmearSmoo_th Palette...Smoo_thingSmoot_hSmooth PaletteSmooth samplesSmoothing parametersSmoothing:Smoothness of AliasingSmvectorsSnap to gridSobelSobel Edge Detecting...Sobel Edge DetectionSobel _HorizontallySobel _VerticallySoftglowSolidSolid NoiseSolid Noise...Solid colored backgroundSolid colorsSome data has been changed!Sorry, I can save only INDEXED and GRAY images.Sorry, channels and masks can not be rotated.Source 1:Source 2:Source channel in file:Source channel:Source color rangeSource...Sp_ike points:Sp_read...Spa_tial oversample:Spacing (percent):Spacing:SparkleSparkling...Spatial TransformationSpatial _filter radius:Specified window not foundSpecifies the amount of embossing to apply to the image (in percent)Specifies the aspect ratio of the brushSpecifies the scale of the texture (in percent of original file)Specular:SphereSphere DesignerSphere _Designer...SphericalSpi_ke angle (-1: random):SpiderSpik_e density:Spike Thickness:SpiralSpiral Number of TurnsSpot Radius:SpotsSpreadSpread AmountSpreading...St_rength exp.:StandardStandard (R,G,B)Star Number of PointsStart _index:Start angle:Start offset:StepStep size:Stop when pixel differences are smaller than this valueStretchStretch _HSVStroke _density:StrongStyleSu_perNova...Subdivide:Subsampling:SuperNovaSuperNova Color PickerSw_irl CWSwap the two curvesSwirlSwitch to "From seed" with the last seedSwitch to c/clockwiseSwitch to clockwiseSymbolTIFF ChannelTIFF imageT_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in -7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF +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 imageT_ilableT_ile saturation:T_ile size:T_ransparent backgroundT_urbulence:T_urbulentTable Creation OptionsTable OptionsTarGA imageTargetTel_netTemporaryTemporary ProcedureText antialiasingTextureTexture PropertiesTexture TransformationsTexture:TexturesThank you for choosing GIMPThe GIF format only supports comments in 7bit ASCII encoding. No comment is saved.The GIMP help files are not installed.The GIMPressionistThe Gimpressionist DefaultsThe PNG file specifies an offset that caused the layer to be positioned outside the image.The TIFF format only supports comments in +7bit ASCII encoding. No comment is saved.The amount of cellpadding.The amount of cellspacing.The amount of highlighting on the edges of each pieceThe angle span of the first brush to createThe brush-size that matches the original image the closest is selectedThe colors are white and black.The default comment is limited to %d characters.The depth of the drop shadow, i.e. how far apart from the object it should beThe direction that matches the original image the closest is selectedThe distance from the center of the image determines the direction of the strokeThe distance from the center of the image determines the size of the strokeThe first row of the imageThe height for each table cell. Can be a number or a percent.The hue of the region determines the direction of the strokeThe hue of the region determines the size of the strokeThe image which you are trying to save as a GIF contains layers which extend beyond the actual borders of the image. This isn't allowed in GIFs, I'm afraid. @@ -434,50 +471,66 @@ 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 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 object to map toType:URLURL: %sUnOptimizing Animation...Unable to add additional point. +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!UntitledUpdateUpdate _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 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 restart markersUse 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:VectorsVer_tical base:VerticalVertical ColorVerticallyVery darkVi_deo...VideoVideo PatternVideo/RGB...View SourceVorte_xVortex_2Vortex_3WAI_SWMF file does not +Image SizeUse _1 byte Run-Length-EncodingUse a transparent background; Only the strokes painted will be visibleUse 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 magnitude mapUse restart markersUse 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 SourceVorte_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...WhiteWi_nd...Width (pixels):Width:WindWindowsWindows BMP imageWindows icons cannot be higher or wider than 255 pixels.WoodWork on cop_yWrapWrite error occurredX BitMap imageX PixMap imageX scale (size)X: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 +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.WoodWork on cop_yWrapWrite error occurredX BitMap imageX PixMap imageX scale (size)X: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)Zoom scale:Zoom to_3x3_Abbreviation:_About ImageMap_Adaptive_Additive_Advanced_Advanced Options_Algorithm:_Alpha_Alpha threshold:_Alpha trimmed mean_Alpha:_Amount:_Amplitude:_Angle:_Animate_Antialiasing_Apply Canvas..._Autocrop Image_Autocrop Layer_Automatically convert_Azimuth:_Background_Background color_Base URL:_Bevel width:_Bilinear_Black_Black level:_Blacken_Blast_Blend_Blinds..._Blue_Blue:_Blur_Blur radius:_Border Average..._Border:_Bottom-left_Bottom:_Box_Bright:_Brightness_Brightness:_Brush_Bucket size:_Bump Map_Bump Map..._Bump map:_Bumpmap_Checkerboard..._Clear_Color Enhance_Color Exchange..._Colorify..._Contents_Convolution Matrix..._Copy_Cubism..._Curve Bend..._Decompose..._Deform radius:_Deinterlace..._Delay between frames where unspecified:_Depth Merge..._Depth:_Derivative_Description:_Detail:_Diffraction Patterns..._Digits:_Dilate_Displace..._Displacement:_Distorted_Divisions:_Dots_Dynamic:_Edge enhancement_Edge..._Edit_Effect Image:_Elevation:_Emboss_Emboss..._Encapsulated PostScript_Entire Image_Environment Map_Explicit tile_Exponent:_FG/BG lighting_Factor:_Factory defaults_File_Filename:_Film..._Filter Pack..._Filter length:_Find Backdrop_Fit height to images_Flame..._FlareFX..._Font:_Force_Force tiling?_Foreground & background_Foreground color_Foreground to peaks_Format:_Fractal Explorer..._Fractal Trace..._Fractals_Free_Ftp Site_GFlare..._GIF comment:_GIMPressionist..._Gamma:_Gaussian Blur..._General_Generate full HTML document_Gfig..._Glass Tile..._Glow radius:_Glowing:_Gopher_Gradient_Gradient Map_Gray:_Green_Green:_Grey_Grid_Grid size:_Grid..._Grow_Guillotine_HSL color model_Height_Height:_Help_Hex_Hidden_High_Hold the maximal channels_Holdness:_Hole offset:_Horizontal_Horizontal style:_Horizontal:_Horz. Spacing:_Hot..._Hue_Hue rotation:_Hurl..._ID:_IFS Fractal..._IIR_IWarp..._Ideal_Identifier prefix:_Ignore_Ignore the bottom layer even if visible_Illusion..._ImageMap..._Inch_Independent RGB_Input SPI:_Insert_Intensity:_Interlace_Interlacing (Adam7)_Invert_JPEG_JavaScript_Jigsaw..._Keep aspect ratio_Keep original surroundings_Keep sign of result (one direction only)_Kill_LZW_Laplace_Large staggered_Left_Left Start at:_Lens refraction index:_Light_Lighting Effects..._Limit line width_Linear_Lines_Link_Load defaults_Lock channels_Loop forever_Low_Lower_MIME_Mail Image..._Make Seamless_Make surroundings transparent_Map backwards_Map type:_Mapping_Mask file extension:_Mask radius:_Mask size:_Material_Max (%):_Max Depth:_Max RGB..._Max. delta:_Maze..._Middle value to peaks_Midtones_Millimeter_Minimum value:_Mirror_Misc Ops._Modify hue channel_Modify red channel_Monochrome_Mosaic..._Motion Blur..._Move_NL Filter..._Natural color_Neon..._No. Across:_Noise magnitude:_None_Normal_Normalize_Number height:_Number of segments:_Opacity:_Optimize (Difference)_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_Width_Width:_Wind_With white noise_Wrap_Wrap around_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... +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..._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)_Pagecurl..._Palette Type:_Paper Tile..._Parameters_Percent black:_Period:_Phase:_Photocopy..._Pick..._Pinch amount:_Ping Pong_Pitted surfaces_Pixelize..._Plasma..._Playback..._Plug-In Browser_Plural:_Polished:_Polygon_PostScript level 2_Prefixed name:_Preserve luminosity_Presets_Preview_Preview once_Preview!_Print_Print..._Prompt for area info_Propagating rate:_Psychobilly_Qbist..._Quality:_RGB_RGB color model_RLE_RLE compression_RLE encoded_Radial_Radius 1:_Radius:_Random hue:_Random seed:_Randomize_Rays_Recipient:_Rectangle_Red:_Redo %s_Reflective_Remove_Remove Backdrop_Rendering_Require default URL_Retain tilability_Retinex..._Right_Right Border_Ripple..._Rotated_Sample Colorize..._Saturation_Saturation:_Save comment to file_Save defaults_Scale division:_Scale:_Scatter RGB..._Screen Shot..._Search depth:_Search:_Second Flares_Selective Gaussian Blur..._Semi-Flatten_Sender:_Set surroundings to background color_Set surroundings to index 0_Settings_Shade under curl_Sharpen..._Sharpness:_Shift..._Shiny:_Show cursor_Sinus..._Size_Size:_Slur..._Small Tiles..._Smear_Smoothing:_Snap-To Grid Enabled_Sobel..._Softglow..._Solid Noise..._Sparkle..._Speed:_Spike length:_Spokes:_Spot function:_Square_Squares_Staggered_Strength:_Stretch Contrast_Stroke_Symbol:_TWAIN..._Target frame name/ID: (optional - used for FRAMES only)_Thickness:_Threshold_Threshold Alpha..._Threshold:_Tile bumpmap_Tile size:_Tile..._Title:_Tools_Top Start at:_Top-right_Top:_Transparent_URL to activate when this area is clicked: (required)_UnOptimize_Undo_Undo %s_Uniform_Unit Editor_Unsharp Mask..._Update_Upper_Upper Border_Upper threshold:_Use GLib types (guint8*)_Use background color_Use cellspan_Use double-sized grab handles_Use intensity algorithm_Use the (invisible) bottom layer as the base_Uuencode_Value_Value Invert_Value Propagate..._Value:_Van Gogh (LIC)..._Variation:_Vert. Spacing:_Vertical_Vertical style:_Vertical:_View_Warp_Warp..._Waterlevel:_Wavelength:_Waves..._Web Site_Whirl angle:_White_White level:_Wide-striped_Width_Width:_Wind_With white noise_Wrap_Wrap around_Write hot spot values_X Scale:_X displacement:_X offset:_X ratio:_X size:_X10 format bitmap_X:_Y Scale:_Y displacement:_Y offset:_Y ratio:_Y size:_Y:_Yellow_Z:_Zealous Crop_Zoom_Zoom:`Default' is created.a _Single Windowafteralphaautostretch_hsv: cmap was NULL! Quitting... blackblueblueness_cb470blueness_cb470fblueness_cb709blueness_cb709fbzip archivec_astretch: cmap was NULL! Quitting... cmcyancyan_ke-_mailgreengzip archivehueinvalid formatted GFlare file: %s k(1-x^p)kx^pk{x(1-x)}^pluma_y470luma_y470fluma_y709luma_y709fmagentamagenta_kmillisecondsnot found %s in gflares_listpixelspixels from _toppixels from l_eftpixels/%aredredness_cr470redness_cr470fredness_cr709redness_cr709fsaturationsome sort of error with the file extension or lack thereofthe _Whole Screento alphavaluex (pixels)y (pixels)yellowyellow_kProject-Id-Version: gimp-std-plugins Report-Msgid-Bugs-To: POT-Creation-Date: 2005-05-08 12:28+0200 -PO-Revision-Date: 2005-01-09 19:30+0800 +PO-Revision-Date: 2005-08-10 17:30+0800 Last-Translator: Yuheng Xie Language-Team: zh_CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Translator: Yuheng Xie -#光芒数é‡ï¼š%d 个æ’件界é¢%d 个过程%d x %d%s -- æ‰“å° v%s“%sâ€å·²æŸå。第 %d 行选项部分错误“%sâ€ä¸æ˜¯ DICOM 文件。“%sâ€ä¸æ˜¯ä¸€ä¸ªåˆ†å½¢æŽ¢ç´¢å™¨æ–‡ä»¶â€œ%sâ€ä¸æ˜¯ PCX 文件“%sâ€ä¸æ˜¯æ™®é€šæ–‡ä»¶â€œ%sâ€ä¸æ˜¯æœ‰æ•ˆçš„ BMP 文件“%sâ€ä¸æ˜¯æœ‰æ•ˆçš„æ¸å˜é—ªå…‰æ–‡ä»¶ã€‚“%sâ€ï¼š + (高度ä¸åŒ¹é…ï¼) (宽度ä¸åŒ¹é…ï¼) 列æ¯å›¾å±‚ è¡Œ #光芒数é‡ï¼š%d 个æ’件界é¢%d 个过程%d x %d%s -- æ‰“å° v%s“%sâ€å·²æŸå。第 %d 行选项部分错误“%sâ€ä¸æ˜¯ DICOM 文件。“%sâ€ä¸æ˜¯ä¸€ä¸ªåˆ†å½¢æŽ¢ç´¢å™¨æ–‡ä»¶â€œ%sâ€ä¸æ˜¯ PCX 文件“%sâ€ä¸æ˜¯æ™®é€šæ–‡ä»¶â€œ%sâ€ä¸æ˜¯æœ‰æ•ˆçš„ BMP 文件“%sâ€ä¸æ˜¯æœ‰æ•ˆçš„æ¸å˜é—ªå…‰æ–‡ä»¶ã€‚“%sâ€ï¼š 无法读å–文件头(ftell == %ld)“%sâ€: 没有指定图åƒæ•°æ®ç±»åž‹â€œ%sâ€: 没有指定图åƒé«˜åº¦â€œ%sâ€: -没有指定图åƒå®½åº¦(没有)1 个æ’件界é¢1 个过程1 bpp,1 ä½ alpha,2 个调色æ¿é¡¹32 bpp,8 ä½ alpha,无调色æ¿4 bpp,1 ä½ alpha,16 个调色æ¿é¡¹8 bpp,1 ä½ alpha,256 个调色æ¿é¡¹<未命å>Adam D. Moss 的一个ä¸å¤ªè¿‡æ—¶çš„创作 / adam@gimp.org / adam@foxbox.org / 1998-2000åªæœ‰æ­¤åˆ—被选中,GIMP 退出时æ‰ä¼šä¿å­˜è¿™ä¸ªå•ä½ã€‚替代文字(ALT)ALT 文字(_X):(å¯é€‰)ASCII 艺术关于(_B)自适应超级采样(_D)添加(_D)添加边框(_D)高级(_D)全部(_L)所有的å°å—(_L)Alpha 加æƒ(_L)Alpha(_L):环境(_M):数é‡(_M):幅度(_M):角度(_N):动画(_N)追加(_P)自动更新预览(_U)自动(_U)画笔下方的平å‡å€¼(_V)缩写关于关于 Gimp-Print动作高级(_V)适应自适应超级采样(_U)添加é¢å¤–çš„å‚考线添加分形探索器路径添加新的尺寸å‘é‡æ·»åŠ æ–°å‘é‡æ­£åœ¨æ·»åŠ ç™¾å¶çª—帘...正在添加棋盘...添加噪音...å åŠ é™„加信æ¯ç»™æ¯ä¸€ç¬”添加阴影效果给颜色添加éšæœºçš„噪音调整å‰æ™¯-背景(_F)调整色彩平衡ã€äº®åº¦ã€å¯¹æ¯”度ã€é¥±å’Œåº¦ä»¥åŠæŠ–动算法调整输出...调整闪光强度调整亮度阈值调整穗的数é‡è°ƒæ•´ç©—çš„ä¸é€æ˜Žåº¦è°ƒæ•´ç©—的角度(-1 表示éšæœºé€‰æ‹©è§’度)调整穗的密度调整穗的长度调整色调的éšæœºåº¦çš„大å°è°ƒæ•´é¥±å’Œåº¦çš„éšæœºåº¦çš„大å°è°ƒæ•´æ‰“å°çš„é’色平衡调整打å°çš„密度(墨水é‡)。如果墨水在纸上是湿的或涂抹了,请é™ä½Žå¯†åº¦ï¼›å¦‚果黑色区域颜色ä¸çº¯ï¼Œè¯·æ高密度。调整打å°çš„ gamma。较大的值打å°çš„效果更亮一些,而较å°çš„值打å°çš„效果更暗一些。但是跟亮度调整ä¸ä¸€æ ·ï¼Œé»‘色和白色的深浅ä¸ä¼šå‘生å˜åŒ–。调整打å°çš„å“红平衡调整预览的亮度调整打å°çš„饱和度(色彩平衡) -使用零值å¯ä»¥ç”¨å½©è‰²å’Œé»‘色墨水æ¥äº§ç”Ÿç°åº¦è¾“出调整打å°çš„黄色平衡正在调整å‰æ™¯/背景...高级组åˆæ»¤é•œé€‰é¡¹é«˜çº§é€‰é¡¹å½±å“范围交替(_T)交替的å°å—(_T)奇异映射 2(_2)...奇异映射 2奇异映射 2:正在å˜æ¢...对é½å¯è§å›¾å±‚对é½å¯è§å›¾å±‚(_V)...全部 JNG全部 PNG所有的值都是胶å·é«˜åº¦çš„分数全黑全ç°æ‰€æœ‰çš„文字区域都必须包å«ä¸€ä¸ªå€¼ã€‚全白å…许切割瓦片(_W)AlphaAlpha 通é“Alpha:环境:当没有直接光线照射时原始颜色所显示的é‡é‡ï¼šAdam D. Moss 的一个过时的创作 / adam@gimp.org / adam@foxbox.org / 1998-2000角度å移(_L):角度跨度:角度:角度æ¸å˜ï¼šå¤§å°éšè§’度æ¸å˜ï¼šGIF 动画选项MNG 动画选项动画回放:边缘平滑å锯齿化的质é‡ã€‚越大质é‡è¶Šå¥½ï¼Œä½†æ˜¯ä¹Ÿè¶Šæ…¢åº”用使用画布应用é€é•œ(_L)...将活动æ¸å˜åº”用到最终图åƒæ­£åœ¨ä½¿ç”¨ç”»å¸ƒ...应用å·ç§¯æ­£åœ¨åº”用é€é•œ...应用组åˆæ»¤é•œ...您确认è¦ä»Žåˆ—表和ç£ç›˜ä¸­åˆ é™¤â€œ%sâ€å—?区域 #%d 设置区域设置区域列表区域:箭头如上设定Ascii宽高比:正在装é…拼图...ä¸å¯¹ç§°åº¦ï¼šåœ¨åº•éƒ¨(_B)在顶部(_T)作者(_H):作者:自动正在自动拉伸对比度...正在自动拉伸 HSV...自动自动更新预览(_V)å¯ç”¨çš„图åƒï¼šé»‘/白空/无效åƒç´ æ›¿æ¢é»‘色é‡(_L)(%):è“色阈值(_L):背景色(_K)åŽï¼šèƒŒæ™¯èƒŒæ™¯ (%d%s)背景色背景类型背景:错误的颜色表Barnsley 1Barnsley 2Barnsley 3åŸºå€ URL(_U):基本选项弯曲切痕边缘åŒçº¿æ€§(_N)黑色和白色(_A)黑色黑色和白色黑色:混和设置百å¶çª—帘è“色è“色频率(_U):è“色相移(_S):è“色:è“色差_cb470:è“色差_cb470f:è“色差_cb709:è“色差_cb709f:模糊中心模糊方法模糊å‚数模糊åŠå¾„模糊类型正在模糊...边界边界å‡å€¼...边界大å°è¾¹ç•Œå‡å€¼çš†æœ‰(_H)皆有底边界:底边界å³ä¸‹(_R)下:方盒亮度:æµè§ˆå‡¹å‡¸å‡¹å‡¸è´´å›¾æ­£åœ¨å‡¹å‡¸è´´å›¾...凹凸贴图图åƒ(_A):凹凸贴图按 DATAMIN/DATAMAXC 程åºä»£ç C æºä»£ç å¤´æ–‡ä»¶CML 探索器:覆盖文件å—?CML 探索器(_E)...CMYCMYKCX:CY:CMYK(_M)视角(_A)标题(_A)表格å•å…ƒå†…容(_E):å•å…ƒå¤§å°(_E):画笔的中心(_E)中心(_E)在这里选择(_H):圆(_I)åˆæˆ(_O)...创建新图åƒ(_R)交å‰(_R)曲线(_U)é’色(_Y)圆柱体(_Y)å¡é€š(_R)计算设置åªèƒ½å¯¹ RGB 图åƒè¿›è¡Œæ“作。åªèƒ½ä¿å­˜å¯ç»˜å¯¹è±¡ï¼åªèƒ½å¯¹å›¾å±‚进行æ“作(但在通é“或蒙æ¿ä¸­è¢«è°ƒç”¨)。无法创建新图åƒæ— æ³•å–得剪贴æ¿æ•°æ®ã€‚无法对未知的图åƒç±»åž‹æ“作无法读å–颜色项无法删除ï¼è‡³å°‘è¦æœ‰ä¸€ä¸ªæ¸å˜é—ªå…‰ã€‚无法对空选区进行æ“作。无法对ç°åº¦æˆ–索引颜色图åƒè¿›è¡Œæ“作。无法对索引颜色图åƒè¿›è¡Œæ“作。无法对带蒙æ¿çš„图层进行æ“作。无法对未知的图åƒç±»åž‹æ“作。无法从“%sâ€è¯»å–扩展无法从“%sâ€ä¸­è¯»å–页脚无法ä¿å­˜ RGB 颜色图åƒã€‚请先转æ¢æˆç´¢å¼•é¢œè‰²æˆ–ç°åº¦ã€‚无法ä¿å­˜å¸¦æœ‰ alpha 通é“的图åƒã€‚无法ä¿å­˜å¸¦æœ‰ alpha 通é“的图åƒã€‚å¡é€šå•å…ƒå¤§å°ï¼šå•å…ƒè¡¬åž«(_P):å•å…ƒé—´è·(_S):中心中心 X(_X):中心 Y(_Y):闪光效果的中心ä½ç½®è¶…新星中心将图åƒç½®äºŽçº¸çš„水平方å‘的中央将图åƒç½®äºŽçº¸çš„中央将图åƒç½®äºŽçº¸çš„åž‚ç›´æ–¹å‘的中央中心:中心èšé›†æ”¹å˜ç®­å¤´çš„顺åºæ”¹å˜ CX 的值 (改å˜åˆ†å½¢çš„宽高比,对除了 Mandelbrot å’Œ Sierpinski 以外的所有分形有效)æ”¹å˜ CY 的值 (改å˜åˆ†å½¢çš„宽高比,对除了 Mandelbrot å’Œ Sierpinski 以外的所有分形有效)改å˜é€‰ä¸­çš„尺寸å‘é‡çš„角度改å˜é€‰ä¸­å‘é‡çš„角度改å˜å¼ºåº¦çš„æŒ‡æ•°æ”¹å˜ x å标的第一(最å°å€¼)é™åˆ¶æ”¹å˜ y å标的第一(最å°å€¼)é™åˆ¶æ”¹å˜è“色通é“的亮度改å˜ç»¿è‰²é€šé“的亮度改å˜çº¢è‰²é€šé“的亮度改å˜è¿­ä»£æ¬¡æ•°ã€‚该值越高,计算的细节越多,åŒæ—¶ä¹Ÿå°†èŠ±æ›´å¤šæ—¶é—´æ”¹å˜æ˜ å°„中的颜色数é‡æ”¹å˜ x å标的第一(最大值)é™åˆ¶æ”¹å˜ y å标的第一(最大值)é™åˆ¶æ”¹å˜é€‰ä¸­çš„尺寸å‘é‡çš„强度改å˜é€‰ä¸­å‘é‡çš„强度改为此色改å˜æ‰€é€‰ç”»ç¬”çš„ gamma(亮度)é€šé“ #%d:通é“æ— å…³å‚数通é“æ··åˆå™¨(_X)...通é“æ··åˆå™¨é€šé“æ··åˆå™¨æ–‡ä»¶æ“作警告通é“代表通é“如果您希望让表格带有标题,请选中该项。棋盘棋盘如果选中该项,GTM å°†ä¸åœ¨ TD 标签之间和之内留有空白。这åªåœ¨åƒç´ çº§çš„定ä½æŽ§åˆ¶ä¸­æ‰æœ‰å¿…è¦ã€‚åŒå‡»é€‰æ‹©åˆ†å½¢é€‰æ‹© PPD 文件æ高压缩等级å¯ä»¥å‡å°æ–‡ä»¶å¤§å°é€‰æ‹©æ‚¨çš„打å°æœºçš„ PPD 文件圆圆形深度(百分率)(_D):清除...清除清除é€æ˜Žç»“æŸæ—¶å…³é—­æ›²çº¿é—­åˆé¢œè‰²(_L)颜色å–å¹³å‡(_L)颜色(_L):颜色(_L)注释(_M):亮度补å¿(_M)å¤æ‚度(_M):压缩 TD 标签(_M)压缩等级(_M):连续的区域(_N)对比度(_N):相关噪音(_R)列(_U):èšé›†é¢œè‰²é¢œè‰²å¯†åº¦é¢œè‰²å¢žå¼º...颜色å˜æ¢é¢œè‰²å˜æ¢...颜色å˜æ¢ï¼šä»Žé¢œè‰²é¢œè‰²å˜æ¢ï¼šåˆ°é¢œè‰²é¢œè‰²å‡½æ•°é¢œè‰²æ¨¡å¼é¢œè‰²èŒƒå›´æ˜ å°„(_M)...颜色选择对è¯æ¡†é¢œè‰²å˜æ¢é¢œè‰²å™ªéŸ³(_N):颜色å˜åŒ–(_V):颜色填充颜色以画笔下方的所有åƒç´ çš„å¹³å‡å€¼æ¥è®¡ç®—颜色输出颜色到 Alpha颜色到 Alpha 颜色拾å–颜色到 Alpha(_A)...颜色:颜色表(_M):色系分æž(_N)...色系分æžè‰²ç³»åˆ†æž...å•è‰²åŒ–å•è‰²åŒ–自定义颜色正在å•è‰²åŒ–...颜色颜色表旋转颜色表旋转(_R)...颜色颜色:组åˆæ³¨é‡Š(_E):命令:注释注释:åˆæˆåˆæˆé€šé“正在组åˆå›¾åƒ...正在åˆæˆ...åˆæˆï¼šåŽ‹ç¼©åŽå¤§å°ï¼š%s压缩方å¼åŽ‹ç¼©çŽ‡(è¿‘ä¼¼):%d 比 1压缩类型ä¿æŒå®½é«˜æ¯”正在使用 Prim 的算法构造迷宫...正在使用 Prim 的算法构造å¯å¹³é“ºçš„迷宫...选区周围æŒç»­æ›´æ–°ç­‰é«˜çº¿å¯¹æ¯”度:控制控制高光的亮度请先把图åƒè½¬æ¢ä¸º RGBï¼å·ç§¯çŸ©é˜µå·ç§¯çŸ©é˜µæ— æ³•åœ¨å°äºŽ 3 个åƒç´ çš„图层上进行。å·ç§¯å¤åˆ¶å¤åˆ¶æ¸å˜é—ªå…‰å¤åˆ¶è®¾ç½®å¤åˆ¶ä¸€ä¸ªå¯¹è±¡å¤åˆ¶å‚数将活动曲线å¤åˆ¶è‡³å¯¹è¾¹å¤åˆ¶é€‰ä¸­çš„画纸æ质作为背景å¤åˆ¶åˆ°å‰ªè´´æ¿æ­£åœ¨å¤åˆ¶ IFS åˆ°å›¾åƒ (%d/%d)...正在å¤åˆ¶...版æƒæ‰€æœ‰(c) 1999-2004 Maurits Rijk版æƒæ‰€æœ‰ï¼šä½™å¼¦æ— æ³•åˆ›å»ºå·¥ä½œç›®å½•â€œ%sâ€ï¼š%s无法执行指定的 Web æµè§ˆå™¨ï¼š +没有指定图åƒå®½åº¦(æ— )1 个æ’件界é¢1 个过程1 bpp,1 ä½ alpha,2 个调色æ¿é¡¹32 bpp,8 ä½ alpha,无调色æ¿4 bpp,1 ä½ alpha,16 个调色æ¿é¡¹8 bpp,1 ä½ alpha,256 个调色æ¿é¡¹<未命å>Adam D. Moss 的一个ä¸å¤ªè¿‡æ—¶çš„创作 / adam@gimp.org / adam@foxbox.org / 1998-2000åªæœ‰æ­¤åˆ—被选中,GIMP 退出时æ‰ä¼šä¿å­˜è¿™ä¸ªå•ä½ã€‚替代文字(ALT)ALT 文字(_X):(å¯é€‰)ASCII 艺术关于(_B)自适应超级采样(_D)添加(_D)添加边框(_D)高级(_D)全部(_L)所有的å°å—(_L)Alpha 加æƒ(_L)Alpha(_L):环境(_M):数é‡(_M):幅度(_M):角度(_N):动画(_N)追加(_P)自动更新预览(_U)自动(_U)画笔下方的平å‡å€¼(_V)缩写关于关于 Gimp-Print动作高级(_V)适应自适应超级采样(_U)添加é¢å¤–çš„å‚考线添加分形探索器路径添加新的尺寸矢é‡æ·»åŠ æ–°çŸ¢é‡æ­£åœ¨æ·»åŠ ç™¾å¶çª—帘...正在添加棋盘...添加噪音...å åŠ é™„加信æ¯ç»™æ¯ä¸€ç¬”添加阴影效果给颜色添加éšæœºçš„噪音调整å‰æ™¯-背景(_F)调整色彩平衡ã€äº®åº¦ã€å¯¹æ¯”度ã€é¥±å’Œåº¦ä»¥åŠæŠ–动算法调整输出...调整闪光强度调整亮度阈值调整穗的数é‡è°ƒæ•´ç©—çš„ä¸é€æ˜Žåº¦è°ƒæ•´ç©—的角度(-1 表示éšæœºé€‰æ‹©è§’度)调整穗的密度调整穗的长度调整色调的éšæœºåº¦çš„大å°è°ƒæ•´é¥±å’Œåº¦çš„éšæœºåº¦çš„大å°è°ƒæ•´æ‰“å°çš„é’色平衡调整打å°çš„密度(墨水é‡)。如果墨水在纸上是湿的或涂抹了,请é™ä½Žå¯†åº¦ï¼›å¦‚果黑色区域颜色ä¸çº¯ï¼Œè¯·æ高密度。调整打å°çš„ gamma。较大的值打å°çš„效果更亮一些,而较å°çš„值打å°çš„效果更暗一些。但是跟亮度调整ä¸ä¸€æ ·ï¼Œé»‘色和白色的深浅ä¸ä¼šå‘生å˜åŒ–。调整打å°çš„å“红平衡调整预览的亮度调整打å°çš„饱和度(色彩平衡) +使用零值å¯ä»¥ç”¨å½©è‰²å’Œé»‘色墨水æ¥äº§ç”Ÿç°åº¦è¾“出调整打å°çš„黄色平衡正在调整å‰æ™¯/背景...高级组åˆæ»¤é•œé€‰é¡¹é«˜çº§é€‰é¡¹å½±å“范围Aggressive RLE +(ä¸è¢« SGI 支æŒ)交替(_T)交替的å°å—(_T)Alias|Wavefront PIX 图åƒå¥‡å¼‚映射 2(_2)...奇异映射 2奇异映射 2:正在å˜æ¢...对é½å¯è§å›¾å±‚对é½å¯è§å›¾å±‚(_V)...全部 JNG全部 PNG所有的值都是胶å·é«˜åº¦çš„分数全黑全ç°æ‰€æœ‰çš„文字区域都必须包å«ä¸€ä¸ªå€¼ã€‚全白å…许切割瓦片(_W)AlphaAlpha 通é“Alpha:环境:当没有直接光线照射时原始颜色所显示的é‡é‡ï¼šAdam D. Moss 的一个过时的创作 / adam@gimp.org / adam@foxbox.org / 1998-2000角度å移(_L):角度跨度:角度:角度æ¸å˜ï¼šå¤§å°éšè§’度æ¸å˜ï¼šGIF 动画选项MNG 动画选项动画回放:边缘平滑å锯齿化的质é‡ã€‚越大质é‡è¶Šå¥½ï¼Œä½†æ˜¯ä¹Ÿè¶Šæ…¢æŒ‰åŽŸæ ·åº”用画纸(而ä¸æ˜¯æµ®é›•æ•ˆæžœ)应用使用画布应用é€é•œ(_L)...将活动æ¸å˜åº”用到最终图åƒæ­£åœ¨ä½¿ç”¨ç”»å¸ƒ...应用å·ç§¯æ­£åœ¨åº”用é€é•œ...应用组åˆæ»¤é•œ...您确认è¦ä»Žåˆ—表和ç£ç›˜ä¸­åˆ é™¤â€œ%sâ€å—?区域 #%d 设置区域设置区域列表区域:箭头如上设定Ascii宽高比:正在装é…拼图...ä¸å¯¹ç§°åº¦ï¼šåœ¨åº•éƒ¨(_B)在顶部(_T)作者(_H):作者:自动正在自动拉伸对比度...正在自动拉伸 HSV...AutoDesk FLIC 动画自动自动更新预览(_V)å¯ç”¨çš„图åƒï¼šé»‘/白空/无效åƒç´ æ›¿æ¢é»‘色é‡(_L)(%):è“色阈值(_L):背景色(_K)åŽï¼šèƒŒæ™¯èƒŒæ™¯ (%d%s)背景色背景类型背景:错误的颜色表Barnsley 1Barnsley 2Barnsley 3åŸºå€ URL(_U):基本选项弯曲对完全由纯色区域组æˆçš„图åƒæœ€ä½³åˆ‡ç—•è¾¹ç¼˜åŒçº¿æ€§(_N)黑色和白色(_A)黑色黑色和白色黑色:混和设置百å¶çª—帘è“色è“色频率(_U):è“色相移(_S):è“色:è“色差_cb470:è“色差_cb470f:è“色差_cb709:è“色差_cb709f:模糊中心模糊方法模糊å‚数模糊åŠå¾„模糊类型正在模糊...边界边界å‡å€¼...边界大å°è¾¹ç•Œå‡å€¼çš†æœ‰(_H)皆有底边界:底边界å³ä¸‹(_R)下:方盒亮度:æµè§ˆå‡¹å‡¸å‡¹å‡¸è´´å›¾æ­£åœ¨å‡¹å‡¸è´´å›¾...凹凸贴图图åƒ(_A):凹凸贴图按 DATAMIN/DATAMAXC 程åºä»£ç C æºä»£ç å¤´æ–‡ä»¶CML 探索器:覆盖文件å—?CML 探索器(_E)...CMYCMYKCX:CY:CMYK(_M)视角(_A)标题(_A)表格å•å…ƒå†…容(_E):å•å…ƒå¤§å°(_E):画笔的中心(_E)中心(_E)在这里选择(_H):圆(_I)åˆæˆ(_O)...创建新图åƒ(_R)交å‰(_R)曲线(_U)é’色(_Y)圆柱体(_Y)å¡é€š(_R)计算设置åªèƒ½å¯¹ RGB 图åƒè¿›è¡Œæ“作。åªèƒ½ä¿å­˜å¯ç»˜å¯¹è±¡ï¼åªèƒ½å¯¹å›¾å±‚进行æ“作(但在通é“或蒙æ¿ä¸­è¢«è°ƒç”¨)。无法创建新图åƒæ— æ³•å–得剪贴æ¿æ•°æ®ã€‚无法对未知的图åƒç±»åž‹æ“作无法读å–颜色项无法删除ï¼è‡³å°‘è¦æœ‰ä¸€ä¸ªæ¸å˜é—ªå…‰ã€‚无法对空选区进行æ“作。无法对ç°åº¦æˆ–索引颜色图åƒè¿›è¡Œæ“作。无法对索引颜色图åƒè¿›è¡Œæ“作。无法对带蒙æ¿çš„图层进行æ“作。无法对未知的图åƒç±»åž‹æ“作。无法从“%sâ€è¯»å–扩展无法从“%sâ€ä¸­è¯»å–页脚无法ä¿å­˜ RGB 颜色图åƒã€‚请先转æ¢æˆç´¢å¼•é¢œè‰²æˆ–ç°åº¦ã€‚无法ä¿å­˜å¸¦æœ‰ alpha 通é“的图åƒã€‚无法ä¿å­˜å¸¦æœ‰ alpha 通é“的图åƒã€‚å¡é€šå•å…ƒå¤§å°ï¼šå•å…ƒè¡¬åž«(_P):å•å…ƒé—´è·(_S):中心中心 X(_X):中心 Y(_Y):闪光效果的中心ä½ç½®è¶…新星中心将图åƒç½®äºŽçº¸çš„水平方å‘的中央将图åƒç½®äºŽçº¸çš„中央将图åƒç½®äºŽçº¸çš„åž‚ç›´æ–¹å‘的中央中心:中心èšé›†æ”¹å˜ç®­å¤´çš„顺åºæ”¹å˜ CX 的值 (改å˜åˆ†å½¢çš„宽高比,对除了 Mandelbrot å’Œ Sierpinski 以外的所有分形有效)æ”¹å˜ CY 的值 (改å˜åˆ†å½¢çš„宽高比,对除了 Mandelbrot å’Œ Sierpinski 以外的所有分形有效)改å˜é€‰ä¸­çš„尺寸矢é‡çš„角度改å˜é€‰ä¸­çŸ¢é‡çš„角度改å˜å¼ºåº¦çš„æŒ‡æ•°æ”¹å˜ x å标的第一(最å°å€¼)é™åˆ¶æ”¹å˜ y å标的第一(最å°å€¼)é™åˆ¶æ”¹å˜è“色通é“的亮度改å˜ç»¿è‰²é€šé“的亮度改å˜çº¢è‰²é€šé“的亮度改å˜è¿­ä»£æ¬¡æ•°ã€‚该值越高,计算的细节越多,åŒæ—¶ä¹Ÿå°†èŠ±æ›´å¤šæ—¶é—´æ”¹å˜æ˜ å°„中的颜色数é‡æ”¹å˜ x å标的第一(最大值)é™åˆ¶æ”¹å˜ y å标的第一(最大值)é™åˆ¶æ”¹å˜é€‰ä¸­çš„尺寸矢é‡çš„强度改å˜é€‰ä¸­çŸ¢é‡çš„强度改为此色改å˜æ‰€é€‰ç”»ç¬”çš„ gamma(亮度)é€šé“ #%d:通é“æ— å…³å‚数通é“æ··åˆå™¨(_X)...通é“æ··åˆå™¨é€šé“æ··åˆå™¨æ–‡ä»¶æ“作警告通é“代表通é“如果您希望让表格带有标题,请选中该项。棋盘棋盘如果选中该项,GTM å°†ä¸åœ¨ TD 标签之间和之内留有空白。这åªåœ¨åƒç´ çº§çš„定ä½æŽ§åˆ¶ä¸­æ‰æœ‰å¿…è¦ã€‚åŒå‡»é€‰æ‹©åˆ†å½¢é€‰æ‹© PPD 文件æ高压缩等级å¯ä»¥å‡å°æ–‡ä»¶å¤§å°é€‰æ‹©æ‚¨çš„打å°æœºçš„ PPD 文件选择è¦ä½¿ç”¨çš„抖动算法。 +Adaptive Hybrid 通常能产生最好的综åˆç”»è´¨ã€‚ +Ordered 速度更快并且在照片中能达到几乎åŒæ ·å¥½çš„画质。 +Fast å’Œ Very Fast è¦å¿«å¾ˆå¤šï¼Œå¹¶ä¸”在文字和线æ¡å›¾ä¸­çš„表现也ä¸é”™ã€‚ +Hybrid Floyd-Steinberg 通常产生较差的输出。选择打å°æœºåž‹å·ã€PPD 文件以åŠæ‰“å°åˆ°è¿™ä¸ªæ‰“å°æœºè¦ä½¿ç”¨çš„命令圆圆形深度(百分率)(_D):清除...清除清除é€æ˜Žç»“æŸæ—¶å…³é—­æ›²çº¿é—­åˆé¢œè‰²(_L)颜色å–å¹³å‡(_L)颜色(_L):颜色(_L)注释(_M):亮度补å¿(_M)å¤æ‚度(_M):压缩 TD 标签(_M)压缩等级(_M):连续的区域(_N)对比度(_N):相关噪音(_R)列(_U):èšé›†é¢œè‰²é¢œè‰²å¯†åº¦é¢œè‰²å¢žå¼º...颜色å˜æ¢é¢œè‰²å˜æ¢...颜色å˜æ¢ï¼šä»Žé¢œè‰²é¢œè‰²å˜æ¢ï¼šåˆ°é¢œè‰²é¢œè‰²å‡½æ•°é¢œè‰²æ¨¡å¼é¢œè‰²èŒƒå›´æ˜ å°„(_M)...颜色选择对è¯æ¡†é¢œè‰²å˜æ¢é¢œè‰²å™ªéŸ³(_N):颜色å˜åŒ–(_V):颜色填充颜色以画笔下方的所有åƒç´ çš„å¹³å‡å€¼æ¥è®¡ç®—彩色输出颜色到 Alpha颜色到 Alpha 颜色拾å–颜色到 Alpha(_A)...颜色:颜色表(_M):色系分æž(_N)...色系分æžè‰²ç³»åˆ†æž...å•è‰²åŒ–å•è‰²åŒ–自定义颜色正在å•è‰²åŒ–...颜色颜色表旋转颜色表旋转(_R)...颜色颜色:组åˆæ³¨é‡Š(_E):命令:注释注释:åˆæˆåˆæˆé€šé“正在组åˆå›¾åƒ...正在åˆæˆ...åˆæˆï¼šåŽ‹ç¼©åŽå¤§å°ï¼š%s压缩方å¼åŽ‹ç¼©çŽ‡(è¿‘ä¼¼):%d 比 1压缩类型ä¿æŒå®½é«˜æ¯”正在使用 Prim 的算法构造迷宫...正在使用 Prim 的算法构造å¯å¹³é“ºçš„迷宫...选区周围æŒç»­æ›´æ–°ç­‰é«˜çº¿å¯¹æ¯”度:控制控制高光的亮度请先把图åƒè½¬æ¢ä¸º RGBï¼å·ç§¯çŸ©é˜µå·ç§¯çŸ©é˜µæ— æ³•åœ¨å°äºŽ 3 个åƒç´ çš„图层上进行。å·ç§¯å¤åˆ¶å¤åˆ¶æ¸å˜é—ªå…‰å¤åˆ¶è®¾ç½®å¤åˆ¶ä¸€ä¸ªå¯¹è±¡å¤åˆ¶å‚数将活动曲线å¤åˆ¶è‡³å¯¹è¾¹å¤åˆ¶é€‰ä¸­çš„画纸æ质作为背景å¤åˆ¶åˆ°å‰ªè´´æ¿æ­£åœ¨å¤åˆ¶ IFS åˆ°å›¾åƒ (%d/%d)...正在å¤åˆ¶...版æƒæ‰€æœ‰(c) 1999-2004 Maurits Rijk版æƒæ‰€æœ‰ï¼šä½™å¼¦æ— æ³•åˆ›å»ºå·¥ä½œç›®å½•â€œ%sâ€ï¼š%s无法执行指定的 Web æµè§ˆå™¨ï¼š %sæ— æ³•ä»Žå›¾åƒ %d 获å–图层无法解æžâ€œ%sâ€æ— æ³•åŠ è½½ PNG 默认值无法以 SUN-raster 文件打开“%sâ€æ— æ³•æ‰“开“%sâ€å¹¶è¯»å–。无法打开“%sâ€å¹¶è¯»å–:%s无法打开“%sâ€å¹¶å†™å…¥ã€‚无法打开“%sâ€å¹¶å†™å…¥ï¼š%s无法解æžæŒ‡å®šçš„ Web æµè§ˆå™¨å‘½ä»¤ï¼š -%s无法从“%sâ€è¯»å– XWD 文件头无法从“%sâ€è¯»å–颜色项无法从“%sâ€è¯»å–文件头无法写入“%sâ€ï¼š%s无法加载管é“中的一个画笔,放弃。无法无æŸåœ°ä¿å­˜é€æ˜Žåº¦ï¼Œä»¥ä¸é€æ˜Žä¿å­˜ã€‚无法读å–文件:无法ä¿å­˜æ–‡ä»¶ï¼šæ— æ³•ä¿å­˜èµ„æºæ–‡ä»¶ï¼šæ— æ³•è¿›ä¸€æ­¥å‡å°‘颜色。ä¿å­˜ä¸ºä¸é€æ˜Žã€‚创建新图åƒ(_A)创建创建å‚考线创建新的图层(_N)创建直方图(_H)使用æ¸å˜ç¼–辑器中的æ¸å˜åˆ›å»ºé¢œè‰²è¡¨æŒ‰ä¸Šé¢æŒ‡å®šçš„选项(颜色密度/函数)创建颜色表。结果å¯ä»¥åœ¨é¢„览图åƒä¸­çœ‹åˆ°åº”用滤镜时创建新的图åƒåˆ›å»ºä¸€ä¸ªæ–°çš„å•ä½ã€‚以当å‰é€‰ä¸­çš„å•ä½ä¸ºæ¨¡æ¿åˆ›å»ºä¸€ä¸ªæ–°çš„å•ä½ã€‚创建弧创建 Bezier 曲线创建 bezier 曲线。Shift + 按钮结æŸå¯¹è±¡åˆ›å»ºã€‚创建圆创建椭圆创建å‚考线...创建线段创建新图åƒåˆ›å»ºæ­£å¤šè¾¹å½¢åˆ›å»ºèžºæ—‹çº¿åˆ›å»ºæ˜Ÿå½¢Created with The GIMP正在创建è¡å°„图案...剪è£(_P)正在剪è£...曲线(_R):立体派立体派艺术å˜æ¢...累积å„图层(组åˆ)å·æ›²å›¾å±‚å·æ›²ä½ç½®å·æ›²æ–¹å‘当å‰æ¸å˜å½“å‰æ¸å˜(åå‘)当å‰ï¼šæ›²çº¿æ‰­æ›²æ›²çº¿æ‰­æ›²...曲线类型曲线对应的边缘自定义颜色:自定义æ¸å˜å‰ªåˆ‡é’色é’色:é’色_黑圆柱体圆柱体长度圆柱体åŠå¾„DCT 方法:DICOM 图åƒå˜å½¢é‡åº¦(_E):除数(_I):ç¨æ·±æ›´æš—:数æ®åŽ‹ç¼©æ•°æ®æ ¼å¼æ•°æ®æ ¼å¼æ—¥æœŸï¼šåˆ†è§£åˆ†è§£åˆ°å›¾å±‚(_L)正在分解...默认默认映åƒç±»åž‹é»˜è®¤ URL(_U):默认å—类型:默认帧延时:默认帧处ç†ï¼šå®šä¹‰åœ†/椭圆形区域定义新的打å°æœºå®šä¹‰å¤šè¾¹å½¢åŒºåŸŸå®šä¹‰çŸ©å½¢åŒºåŸŸå˜å½¢æ¨¡å¼æ¯ä¸ªå°å—边缘的倾斜角度角度去除交错去除交错...æ’入延时以å…é€ æˆ CPU 严é‡é˜»å¡žã€‚删除删除区域删除分形删除æ¸å˜é—ªå…‰åˆ é™¤ç‚¹åˆ é™¤ä¸€ä¸ªå¯¹è±¡åˆ é™¤å½“å‰é€‰ä¸­çš„分形删除选中区域删除选中的尺寸å‘é‡åˆ é™¤é€‰ä¸­çš„å‘é‡åˆ é™¤é€‰ä¸­çš„预设Delta 函数密度:深度åˆå¹¶æ·±åº¦ä¼˜å…ˆæ·±åº¦å›¾ï¼šæ­£åœ¨æ·±åº¦åˆå¹¶...正在生æˆå¹³æ»‘色æ¿...去除斑点(_P)...去除æ¡çº¹(_T)...æ述:全ä¸é€‰(_A)去除斑点目标通é“:目标颜色范围目标:去除æ¡çº¹æ­£åœ¨åŽ»é™¤æ¡çº¹...å差阈值:è±å½¢é«˜æ–¯å·®åˆ†...微分è¡å°„图案漫射:ä½æ•°å°ºå¯¸å°ºå¯¸æ–¹å‘æ–¹å‘矢é‡æ–¹å‘æ–¹å‘å…‰æºæ–¹å‘æ–¹å‘数:移ä½æ­£åœ¨ç§»ä½...纸的底端到图åƒåº•ç«¯çš„è·ç¦»çº¸çš„左端到图åƒçš„è·ç¦»çº¸çš„左端到图åƒå³ç«¯çš„è·ç¦»çº¸çš„å³ç«¯åˆ°å›¾åƒçš„è·ç¦»çº¸çš„顶端到图åƒåº•ç«¯çš„è·ç¦»çº¸çš„顶端到图åƒçš„è·ç¦»æŠ–动算法:抖动大å°ï¼šåˆ†å‰²è¿›è¡Œé¢„览(_P)您真的è¦æ”¾å¼ƒæ‚¨çš„修改å—?您真的è¦è¦†ç›–它å—?高斯差分边缘检测没有找到文档在图åƒçš„边缘处添加一系列ç«èŠ±å›¾åƒçš„大å°ä¸ä¸€è‡´æ­£åœ¨ç»˜åˆ¶ç«ç„°...正在绘制网格...正在绘制迷宫...绘画设置在控制点之间连接直线。åªåœ¨åˆ›å»ºæ›²çº¿æ—¶èµ·ä½œç”¨æŠ•ä¸‹é˜´å½±è¯»å…¥æ—¶é‡åˆ°æ–‡ä»¶ç»“æŸç¬¦EXIF æ•°æ®å°†è¢«å¿½ç•¥ã€‚仰角(_L):å¯ç”¨å‡¹å‡¸è´´å›¾(_N)å¯ç”¨çŽ¯å¢ƒæ˜ å°„(_N)è…蚀(_R)扩展(_X)å°å—的边缘是弯曲的å°å—的边缘是直的边缘效果边缘检测边缘检测...边缘加深:边缘编辑编辑区域信æ¯...编辑ç«ç„°ç¼–辑映åƒä¿¡æ¯...编辑对象编辑区域信æ¯...编辑分形å字编辑映åƒä¿¡æ¯ç¼–辑选中区域的信æ¯ç¼–辑åªè¯»å¯¹è±¡ - 您将ä¸èƒ½å¯¹å®ƒè¿›è¡Œä¿å­˜æ•ˆæžœé€šé“效果æ“作浮雕刻画(_G)...环境图åƒ(_V):å¯ç”¨å锯齿化(_A)å¯ç”¨/ç¦ç”¨å‡¹å‡¸è´´å›¾(图åƒæ·±åº¦)å¯ç”¨/ç¦ç”¨çŽ¯å¢ƒæ˜ å°„(åå°„)å¯ç”¨/ç¦ç”¨é«˜è´¨é‡é¢„览å¯ç”¨/ç¦ç”¨é”¯é½¿çŠ¶è¾¹ç¼˜çš„平滑处ç†(å锯齿化)å¯ç”¨/ç¦ç”¨å®žæ—¶é¢„览å°è£…çš„ PostScript 图åƒ(EPS)(_E)å°è£…æ–¹å¼ï¼šåˆ»ç”»æ­£åœ¨åˆ»ç”»...给已å¤åˆ¶çš„æ¸å˜é—ªå…‰è¾“入一个å字给新的æ¸å˜é—ªå…‰è¾“入一个å字输入您的打å°æœºçš„ PPD 文件å输入打å°åˆ°æ‚¨çš„打å°æœºçš„命令。注æ„:请ä¸è¦åŽ»æŽ‰å‘½ä»¤å­—符串中的“-lâ€æˆ–“-orawâ€ï¼Œå¦åˆ™æ‰“å°å¾ˆå¯èƒ½ä¼šå¤±è´¥ï¼è¾“入您的逻辑打å°æœºçš„å字整个图层è¦ä½¿ç”¨çš„环境图åƒæ‰“å¼€ FITS 文件时出错写索引/ç°åº¦å›¾åƒæ—¶å‡ºé”™å†™ RGB 图åƒæ—¶å‡ºé”™æŠ“å–指针出错GIMP 画笔文件“%sâ€æœ‰é”™GIMP 画笔管é“文件有错。获å–图层 ID 时出错获å–å±å¹•æŠ“图出错打开文件出错打开文件“%sâ€å‡ºé”™ä»Žâ€œ%sâ€è¯» BMP 文件头出错读文件出错å¯åŠ¨ ghostscript 出错(%s)å¯åŠ¨ ghostscript 出错:%s读å–“%sâ€å‡ºé”™ã€‚文件已æŸå?ä¿å­˜â€œ%sâ€å‡ºé”™ã€‚无法ä¿å­˜å›¾åƒã€‚å†™è¾“å‡ºæ–‡ä»¶æ—¶å‡ºé”™ã€‚é”™è¯¯ï¼šæ— æ³•è¯»å– XJT 属性文件“%sâ€ã€‚错误:XJT 属性文件“%sâ€ä¸ºç©ºã€‚错误:无法加载å‚数。错误:这ä¸æ˜¯ CML å‚数文件。å‡åŒ€åˆ†å¸ƒæŒ‡æ•°ï¼šå¯¼å‡ºé¢„览æå–通é“å‰æ™¯è‰²FITS 文件没有包å«å¯æ˜¾ç¤ºå›¾åƒFITS ä¿å­˜æ— æ³•å¤„ç†å¸¦ alpha 通é“的图åƒæ–‡ä»¶(_I)第一ç§é¢œè‰²(_I):闪光强度(_L):因å­æ— æ³•æ‰“å¼€æ¸å˜é—ªå…‰æ–‡ä»¶â€œ%sâ€ï¼š%s无法ä¿å­˜ PPM 文件“%sâ€ï¼š%s无法写入æ¸å˜é—ªå…‰æ–‡ä»¶â€œ%sâ€ï¼š%s快速整数羽化文件文件“%sâ€å·²ä¿å­˜ã€‚文件“%sâ€ä¼¼ä¹Žä¸æ˜¯ IFS 分形文件。文件“%sâ€å·²å­˜åœ¨ã€‚ +%s无法从“%sâ€è¯»å– XWD 文件头无法从“%sâ€è¯»å–颜色项无法从“%sâ€è¯»å–文件头无法写入“%sâ€ï¼š%s无法加载管é“中的一个画笔,放弃。无法无æŸåœ°ä¿å­˜é€æ˜Žåº¦ï¼Œä»¥ä¸é€æ˜Žä¿å­˜ã€‚无法读å–文件:无法ä¿å­˜æ–‡ä»¶ï¼šæ— æ³•ä¿å­˜èµ„æºæ–‡ä»¶ï¼šæ— æ³•è¿›ä¸€æ­¥å‡å°‘颜色。ä¿å­˜ä¸ºä¸é€æ˜Žã€‚耦åˆæ˜ åƒæ ¼å­(Coupled-Map-Lattice)探索器创建新图åƒ(_A)创建创建å‚考线创建新的图层(_N)创建直方图(_H)使用æ¸å˜ç¼–辑器中的æ¸å˜åˆ›å»ºé¢œè‰²è¡¨æŒ‰ä¸Šé¢æŒ‡å®šçš„选项(颜色密度/函数)创建颜色表。结果å¯ä»¥åœ¨é¢„览图åƒä¸­çœ‹åˆ°åº”用滤镜时创建新的图åƒåˆ›å»ºä¸€ä¸ªæ–°çš„å•ä½ã€‚以当å‰é€‰ä¸­çš„å•ä½ä¸ºæ¨¡æ¿åˆ›å»ºä¸€ä¸ªæ–°çš„å•ä½ã€‚创建弧创建 Bezier 曲线创建 bezier 曲线。Shift + 按钮结æŸå¯¹è±¡åˆ›å»ºã€‚创建圆创建椭圆创建å‚考线...创建线段创建新图åƒåˆ›å»ºæ­£å¤šè¾¹å½¢åˆ›å»ºèžºæ—‹çº¿åˆ›å»ºæ˜Ÿå½¢CreateDIBSection 失败Created with The GIMP正在创建è¡å°„图案...剪è£(_P)正在剪è£...曲线(_R):立体派立体派艺术å˜æ¢...累积å„图层(组åˆ)å·æ›²å›¾å±‚å·æ›²ä½ç½®å·æ›²æ–¹å‘当å‰æ¸å˜å½“å‰æ¸å˜(åå‘)当å‰ï¼šæ›²çº¿æ‰­æ›²æ›²çº¿æ‰­æ›²...曲线类型曲线对应的边缘自定义颜色:自定义æ¸å˜å‰ªåˆ‡é’色é’色:é’色_黑圆柱体圆柱体长度圆柱体åŠå¾„DCT 方法:DICOM 图åƒå˜å½¢é‡åº¦(_E):除数(_I):ç¨æ·±æ›´æš—:数æ®åŽ‹ç¼©æ•°æ®æ ¼å¼æ•°æ®æ ¼å¼æ—¥æœŸï¼šåˆ†è§£åˆ†è§£åˆ°å›¾å±‚(_L)正在分解...默认默认映åƒç±»åž‹é»˜è®¤ URL(_U):默认å—类型:默认帧延时:默认帧处ç†ï¼šå®šä¹‰åœ†/椭圆形区域定义新的打å°æœºå®šä¹‰å¤šè¾¹å½¢åŒºåŸŸå®šä¹‰çŸ©å½¢åŒºåŸŸå®šä¹‰ä¸€ä¸ªæ–°çš„逻辑打å°æœºã€‚è¿™å¯ä»¥ç”¨äºŽå‘½å一个设置集åˆï¼Œä¾¿äºŽæ‚¨ä»ŠåŽä½¿ç”¨æ—¶è®°å¿†ã€‚å˜å½¢æ¨¡å¼æ¯ä¸ªå°å—边缘的倾斜角度角度去除交错去除交错...æ’入延时以å…é€ æˆ CPU 严é‡é˜»å¡žã€‚删除删除区域删除分形删除æ¸å˜é—ªå…‰åˆ é™¤ç‚¹åˆ é™¤ä¸€ä¸ªå¯¹è±¡åˆ é™¤å½“å‰é€‰ä¸­çš„分形删除选中区域删除选中的尺寸矢é‡åˆ é™¤é€‰ä¸­çš„矢é‡åˆ é™¤é€‰ä¸­çš„预设Delta 函数密度:深度åˆå¹¶æ·±åº¦ä¼˜å…ˆæ·±åº¦å›¾ï¼šæ­£åœ¨æ·±åº¦åˆå¹¶...正在生æˆå¹³æ»‘色æ¿...去除斑点(_P)...去除æ¡çº¹(_T)...æ述:全ä¸é€‰(_A)去除斑点目标通é“:目标颜色范围目标:去除æ¡çº¹æ­£åœ¨åŽ»é™¤æ¡çº¹...å差阈值:è±å½¢é«˜æ–¯å·®åˆ†...微分è¡å°„图案漫射:医学数字æˆåƒå’Œé€šä¿¡å›¾åƒä½æ•°ç»´æ•°ï¼šå°ºå¯¸å°ºå¯¸æ–¹å‘æ–¹å‘矢é‡æ–¹å‘æ–¹å‘å…‰æºæ–¹å‘æ–¹å‘数:移ä½ä½ç§»å›¾ï¼šæ­£åœ¨ç§»ä½...显示为:纸的底端到图åƒåº•ç«¯çš„è·ç¦»çº¸çš„左端到图åƒçš„è·ç¦»çº¸çš„左端到图åƒå³ç«¯çš„è·ç¦»çº¸çš„å³ç«¯åˆ°å›¾åƒçš„è·ç¦»çº¸çš„顶端到图åƒåº•ç«¯çš„è·ç¦»çº¸çš„顶端到图åƒçš„è·ç¦»æŠ–动算法:抖动大å°ï¼šåˆ†å‰²è¿›è¡Œé¢„览(_P)您真的è¦æ”¾å¼ƒæ‚¨çš„修改å—?您真的è¦è¦†ç›–它å—?高斯差分边缘检测没有找到文档在图åƒçš„边缘处添加一系列ç«èŠ±å›¾åƒçš„大å°ä¸ä¸€è‡´æ­£åœ¨ç»˜åˆ¶ç«ç„°...正在绘制网格...正在绘制迷宫...绘画设置在控制点之间连接直线。åªåœ¨åˆ›å»ºæ›²çº¿æ—¶èµ·ä½œç”¨æŠ•ä¸‹é˜´å½±è¯»å…¥æ—¶é‡åˆ°æ–‡ä»¶ç»“æŸç¬¦EXIF æ•°æ®å°†è¢«å¿½ç•¥ã€‚仰角(_L):å¯ç”¨å‡¹å‡¸è´´å›¾(_N)å¯ç”¨çŽ¯å¢ƒæ˜ å°„(_N)è…蚀(_R)扩展(_X)å°å—的边缘是弯曲的å°å—的边缘是直的边缘效果边缘检测边缘检测...边缘加深:边缘编辑编辑区域信æ¯...编辑ç«ç„°ç¼–辑映åƒä¿¡æ¯...编辑对象编辑区域信æ¯...编辑分形å字编辑映åƒä¿¡æ¯ç¼–辑选中区域的信æ¯ç¼–辑åªè¯»å¯¹è±¡ - 您将ä¸èƒ½å¯¹å®ƒè¿›è¡Œä¿å­˜æ•ˆæžœé€šé“效果æ“作浮雕刻画(_G)...环境图åƒ(_V):å¯ç”¨å锯齿化(_A)å¯ç”¨/ç¦ç”¨å‡¹å‡¸è´´å›¾(图åƒæ·±åº¦)å¯ç”¨/ç¦ç”¨çŽ¯å¢ƒæ˜ å°„(åå°„)å¯ç”¨/ç¦ç”¨é«˜è´¨é‡é¢„览å¯ç”¨/ç¦ç”¨é”¯é½¿çŠ¶è¾¹ç¼˜çš„平滑处ç†(å锯齿化)å¯ç”¨/ç¦ç”¨å®žæ—¶é¢„览å°è£…çš„ PostScript 图åƒ(EPS)(_E)å°è£…æ–¹å¼ï¼šEndPage 失败刻画正在刻画...给已å¤åˆ¶çš„æ¸å˜é—ªå…‰è¾“入一个å字给新的æ¸å˜é—ªå…‰è¾“入一个å字输入您的打å°æœºçš„ PPD 文件å输入打å°åˆ°æ‚¨çš„打å°æœºçš„命令。注æ„:请ä¸è¦åŽ»æŽ‰å‘½ä»¤å­—符串中的“-lâ€æˆ–“-orawâ€ï¼Œå¦åˆ™æ‰“å°å¾ˆå¯èƒ½ä¼šå¤±è´¥ï¼è¾“入您的逻辑打å°æœºçš„å字整个图层è¦ä½¿ç”¨çš„环境图åƒæ‰“å¼€ FITS 文件时出错写索引/ç°åº¦å›¾åƒæ—¶å‡ºé”™å†™ RGB 图åƒæ—¶å‡ºé”™æŠ“å–指针出错GIMP 画笔文件“%sâ€æœ‰é”™GIMP 画笔管é“文件有错。获å–图层 ID 时出错获å–å±å¹•æŠ“图出错打开文件出错打开文件“%sâ€å‡ºé”™ä»Žâ€œ%sâ€è¯» BMP 文件头出错读文件出错å¯åŠ¨ ghostscript 出错(%s)å¯åŠ¨ ghostscript 出错:%s试图打开临时文件“%sâ€ç”¨äºŽåŠ è½½å¯„生物时出错。 +试图将图形ä¿å­˜ä¸ºå¯„生物时出错:无法添加寄生物到图åƒã€‚ +读å–“%sâ€å‡ºé”™ã€‚文件已æŸå?ä¿å­˜â€œ%sâ€å‡ºé”™ã€‚无法ä¿å­˜å›¾åƒã€‚å†™è¾“å‡ºæ–‡ä»¶æ—¶å‡ºé”™ã€‚é”™è¯¯ï¼šæ— æ³•è¯»å– XJT 属性文件“%sâ€ã€‚错误:XJT 属性文件“%sâ€ä¸ºç©ºã€‚错误:无法加载å‚数。错误:这ä¸æ˜¯ CML å‚数文件。å‡åŒ€åˆ†å¸ƒæŒ‡æ•°ï¼šå¯¼å‡ºé¢„览æå–通é“å‰æ™¯è‰²FITS 文件没有包å«å¯æ˜¾ç¤ºå›¾åƒFITS ä¿å­˜æ— æ³•å¤„ç†å¸¦ alpha 通é“的图åƒæ–‡ä»¶(_I)第一ç§é¢œè‰²(_I):闪光强度(_L):因å­æ— æ³•æ‰“å¼€æ¸å˜é—ªå…‰æ–‡ä»¶â€œ%sâ€ï¼š%s无法ä¿å­˜ PPM 文件“%sâ€ï¼š%s无法写入æ¸å˜é—ªå…‰æ–‡ä»¶â€œ%sâ€ï¼š%s快速整数最快和最亮的颜色用于文本和线æ¡å›¾ç¾½åŒ–文件文件“%sâ€å·²ä¿å­˜ã€‚文件“%sâ€ä¼¼ä¹Žä¸æ˜¯ IFS 分形文件。文件“%sâ€å·²å­˜åœ¨ã€‚ 覆盖å—?文件“%sâ€å·²æŸå。 -第 %d 行选项部分错误文件“%sâ€ä¸æ˜¯ä¸€ä¸ªåˆ†å½¢æŽ¢ç´¢å™¨æ–‡ä»¶æ–‡ä»¶å·²å­˜åœ¨ä¸æ”¯æŒçš„文件格å¼ã€‚文件大å°ï¼š%02.01f kB文件大å°ï¼šæœªçŸ¥æ–‡ä»¶å:文件å:%så¡«å……å¡«å……(从下到上)å¡«å……(从左到å³)å¡«å……(从å³åˆ°å·¦)å¡«å……(从上到下)以å‚æ•° k 填充胶å·æ»¤æ³¢å™¨ç»„åˆæ»¤é•œæ¨¡æ‹Ÿæ­£åœ¨å¯»æ‰¾åŠ¨ç”»èƒŒæ™¯...正在寻找边缘...第一目标颜色第一个几何图形第一æºé¢œè‰²ç¬¬ä¸€ç§é¢œè‰²å›ºå®šç§å­ç«ç„°ç«ç„°åªå¯¹ RGB 图åƒæœ‰æ•ˆé—ªå…‰(FlareFX)翻转浮点数æµçº¿å‰æ™¯è‰²(_R)笔划èšé›†åœ¨å›¾åƒä¸­å¿ƒé™„近强制基线(baseline) JPEGå‰æ™¯å‰æ™¯/背景色分形å‚数分形追溯分形类型分形å字:分形探索器æ¸å˜é›¶ç¢Žçš„åƒç´ å¸§ %d帧 %d (%d%s)帧 %d/%d没有指明的帧的处ç†ï¼šé¢‘率频率(è¡Œ):从从剪贴æ¿ä»Žé¢œè‰²å–自æ¸å˜å–自画纸å–自åå‘çš„æ¸å˜ä»Žï¼šå‰ï¼šå®Œå…¨åŠŸèƒ½å‡½æ•°ç±»åž‹ï¼šæ¨¡ç³Šé€‰æ‹©G-QbistGEE-SLIMEGEE-ZOOMæ¸å˜é—ªå…‰(GFlare)æ¸å˜é—ªå…‰ç¼–辑器GIF 选项GIF 警告GIF 图åƒGIMP 扩展GIMP 帮助æµè§ˆå™¨GIMP æ’件GIMP 魔术表格GIMP Windows 图标æ’件GIMP 画笔GIMP 画笔(动画)GIMP 画笔文件看æ¥å·²æŸå。GIMP 画笔åªèƒ½æ˜¯ç°åº¦æˆ– RGBAGIMP 图案炽光(_L)绿色阈值(_R):Gamma:高斯模糊高斯模糊...Gee-Slime(_S)Gee-Zoom(_Z)通用常规选项通用首选项常规选项获å–æ ·å“的颜色几何图形(GFig)Gimp-Print 版本å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)玻璃瓦片玻璃瓦片...炽光绘画选项ç°è‰²(_E)抓å–抓å–å‰å»¶è¿Ÿ(_A)截å–å•ä¸ªçª—å£æˆªå–整个å±å¹•æ¢¯åº¦æ¸å˜é—ªå…‰...æ¸å˜æ˜ å°„...æ¸å˜å¡«å……æ¸å˜å›¾åƒå¹³æ»‘ç°è‰²ç°è‰²æ¨¡å¼ç°è‰²é€‰é¡¹ç°è‰²é˜ˆå€¼ç°åº¦ç»¿è‰²ç»¿è‰²é¢‘率(_E):绿色相移(_A):绿色:ç°è‰²ç½‘格网格大å°ç½‘æ ¼ä½ç§»ç½‘格设置网格设置...网格å¯è§æ€§ä¸Žç±»åž‹ç½‘格颜色:网格设置...网格间è·ï¼šç½‘格类型:å‚考线å‚考线(Guides)是图åƒä¸Šä¸€äº›é¢„定义的矩形区域。您通过给出宽度ã€é«˜åº¦å’Œä¹‹é—´çš„è·ç¦»æ¥å®šä¹‰å®ƒä»¬ã€‚这使您得以快速创建最通常的图åƒæ˜ åƒç±»åž‹â€•â€•å›¾åƒç¼©ç•¥å›¾é›†ï¼Œé€‚用于导航æ¡ã€‚å‚考线...分å—...HSVHTML 页é¢é€‰é¡¹HTML 表格高亮(_I):亮(_I)色调(_U)色调(_U):六边形(_X)高度(åƒç´ ):高度:未知的帮助 ID “%sâ€å˜¿ï¼Œé‚£äº›å¯¹è±¡éƒ½åˆ°å“ªåŽ»äº†ï¼Ÿé«˜è´¨é‡é¢„览(_Q)值越大效果越显著数值越大高亮越集中数值越大物体å射的光线越多(显得更亮)值越大效果影å“的图åƒåŒºåŸŸè¶Šå°é«˜äº®ï¼šäº®ï¼šä¿ç•™æœ€å°çš„通é“(_L)å°å­”宽度(_L):水平方å‘基准(_R):å°å­”高度(_E):ä¿æŒäº®åº¦å°å­”é—´è·(_A):水平水平颜色水平马蹄å点热点 X(_X):热点 Y(_Y):å点...一英寸等于此å•ä½çš„多少å€ã€‚阴影的颜色加深多少æ¯ä¸€ç¬”的边缘处加深多少阴影的模糊程度色调色调旋转:色调å˜åŒ–色调频率(_F):色调相移(_P):色调:我ä¸å…³å¿ƒIDIFS 分形IFS 分形绘制选项IFS 分形:黑IFS 分形:è“IFS 分形:绿IFS 分形:红IFS 分形:目标ITER:交互å¼ç¿˜æ›²å¼ºåº¦(_N)交互(_N)åå‘凹凸贴图(_N)图åƒå相(_N)独立(_S)图标 #%i图标细节如果选中该项,GTM 将会输出一个带有 〠等标签的完整的 HTML 文档,而ä¸æ˜¯ä»…ä»…åªæœ‰ä¸€ä¸ªè¡¨æ ¼ã€‚如果选中该项,GTM 会用 ROWSPAN å’Œ COLSPAN 把相åŒé¢œè‰²çš„矩形å—替æ¢æˆä¸€ä¸ªå¤§çš„å•å…ƒæ ¼ã€‚如果选中,映射将从å³è¾¹å¼€å§‹ï¼Œä¸Žä»Žå·¦è¾¹å¼€å§‹ç›¸å。如果没有选中,图åƒå°†æ²¿åœ†å‘¨æ˜ å°„到一个矩形上。如果选中,图åƒå°†è¢«æ˜ å°„到一个圆上。如果没有选中,映射将把底行放在中心,顶行放在外é¢ã€‚如果选中则相å。如果您å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œé«˜çš„颜色值与低的颜色值将被对应互æ¢å¦‚果您å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œé¢„览将会自动é‡ç”»å¹»è±¡å¹»è±¡...图åƒ(_A)图åƒå›¾åƒ/输出设置图åƒåˆæˆå›¾åƒé€‰æ‹©å›¾åƒå¤§å°å›¾åƒç±»åž‹å›¾åƒç±»åž‹(_T):图åƒé«˜åº¦(_H):图åƒå°ºå¯¸ï¼š%d x %d图åƒä¸æ˜¯ç°åº¦å›¾åƒ(bpp=%d)图åƒå字:图åƒå¤§å°å·²æ”¹å˜ã€‚图åƒé—´è·(_I):图åƒç±»åž‹ï¼šå›¾åƒæ˜ åƒæ’件 2.2上下底表é¢çš„图åƒå›¾åƒçš„大å°ä¸ä¸€è‡´å¯¼å…¥è·¯å¾„(_P)导入 SVG 的路径元素,å¯ç”¨äºŽ GIMP 路径工具迭代次数(_T):å转(_V)英寸包å«è£…饰索引索引色æ¿ç±»åž‹åˆå§‹å€¼ï¼šå¢¨æ°´ç±»åž‹ï¼šè¾“入色阶:æ’入点加入日期整数强度亮度等级当有光æºç…§å°„时原始颜色的亮度交错GIMP 内部过程虚线虚线颜色PSD 文件中存在无效的 UTF-8 字符串画笔文件“%sâ€ä¸­å­˜åœ¨æ— æ•ˆçš„ UTF-8 字符串。图案文件“%sâ€ä¸­å­˜åœ¨æ— æ•ˆçš„ UTF-8 字符串。å转å转画纸的æ质等轴迭代次数:JNGJNG + Delta PNGJPEG 压缩质é‡ï¼šJPEG 图åƒJPEG 预览JPEG è´¨é‡å‚æ•°JPEG 平滑因å­ï¼šæ‹¼å›¾æ‹¼å›¾é£Žæ ¼Juliaä¿ç•™å¶æ•°åŒºåŸŸ(_E)ä¿æŒå›¾åƒçš„值ä¿ç•™å¥‡æ•°åŒºåŸŸ(_D)ä¿æŒåŽŸå§‹ä¿æŒç¬¬ä¸€ä¸ªå€¼LABLZ77头部(_E)左边界(_E)长度(_E):线性(_I)Lambda横å‘拉普拉斯拉普拉斯...大 3x3(_E)图层 %s 没有 alpha 通é“,跳过图层背景类型。å¤åˆ¶ä½¿å¾—进行绘画之å‰å…ˆå¤åˆ¶å‰ä¸€å›¾å±‚。左左边界左:é€é•œæ•ˆæžœæ›´æ·¡ï¼šç¬”划的方å‘由到图åƒä¸­å¿ƒçš„æ–¹å‘决定笔划的大å°ç”±åˆ°å›¾åƒä¸­å¿ƒçš„æ–¹å‘决定笔划的方å‘由区域的值(亮度)决定笔划的大å°ç”±åŒºåŸŸçš„值(亮度)决定级别光线光线 1光线 2光线 3光线 4光线 5光线 6光线设置光线方å‘(_D):光线强度光æºåœ¨ XYZ 空间的 X æ–¹å‘å…‰æºåœ¨ XYZ 空间的 X åæ ‡ä½ç½®å…‰æºåœ¨ XYZ 空间的 Y æ–¹å‘å…‰æºåœ¨ XYZ 空间的 Y åæ ‡ä½ç½®å…‰æºåœ¨ XYZ 空间的 Z æ–¹å‘å…‰æºåœ¨ XYZ 空间的 Z åæ ‡ä½ç½®ç¨æµ…更亮:光照效果光照效果...光照预设:光æºé¢œè‰²ï¼šå…‰æºç±»åž‹ï¼šçº¿çŠ¶çº¿æ¡è‰ºæœ¯çº¿æ€§è¿žæŽ¥ç±»åž‹åˆ—表视图蜥蜴长栅格(_N)下边界(_W)加载通é“æ··åˆå™¨è®¾ç½®ä»Žæ–‡ä»¶ä¸­åŠ è½½æ›²çº¿çš„点加载 FITS 文件加载ç«ç„°åŠ è½½åˆ†å½¢å‚数加载几何图形对象集载入图åƒæ˜ åƒåŠ è½½ KISS 色æ¿åŠ è½½å…‰ç…§é¢„设å‚数加载自加载 PostScript加载 QBE 文件从文件加载分形从文件中加载曲线正在加载å±å¹•æŠ“图...é”定阈值(_T)对数循环左下å³ä¸‹é™ä½Žé€‰ä¸­å¯¹è±¡å°†é€‰ä¸­å¯¹è±¡é™è‡³åº•ç«¯ä½Žç«¯é˜ˆå€¼(_H):亮度_y470:亮度_y470f:亮度_y709:亮度_y709f:亮度阈值(_T):亮度频率(_U):亮度相移(_S):MNG 选项MNG 动画最大值(_A):最大深度(_X):最大高度(_X):å“红(_T)å“红å“红:å“红_黑主选项使目标图åƒå‡¸èµ·é«˜åº¦ä¸ºé›¶çš„地方å˜ä¸ºé€æ˜Žä½¿ç‰©ä½“以外的图åƒå˜æˆé€æ˜ŽMan'o'warMandelbrotMandelbrot å‚数手工手工指定笔划方å‘手工指定笔划大å°æ˜ å°„颜色范围将图åƒæ˜ å°„到方盒表é¢æ˜ å°„到物体(_O)...映åƒæ–‡ä»¶æ ¼å¼ä»Žé¡¶ç«¯å¼€å§‹æ˜ å°„(_T)映射到方盒...映射到圆柱体...映射到物体映射到平é¢...映射到çƒä½“...映射到:正在映射颜色...大ç†çŸ³æŽ©ç æ–‡ä»¶æ质属性矩阵Max (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)RGB 最大RGB 最大...最大撤销次数:最大内存:凸起的最大高度最大大å°ï¼šè¿·å®«ä»‹è´¨å°ºå¯¸ï¼šä»‹è´¨æ¥æºï¼šä»‹è´¨ç±»åž‹ï¼šä¸­å€¼èœå•èœå•è·¯å¾„èœå•è·¯å¾„/åå­—åˆå¹¶å¯¼å…¥çš„路径正在åˆå¹¶...Microsoft WMF 文件Microsoft Windows 图标在预览中点击中键å¯æ‹¾å–“从颜色â€ä¸­ï¼šMin (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)最å°å¤§å°ï¼šå°†æ´»åŠ¨æ›²çº¿é•œåƒè‡³å¯¹è¾¹ä¿®æ”¹ç»¿è‰²é€šé“(_D)修改饱和度通é“(_D)修改è“色通é“(_I)修改亮度通é“(_I)模å¼æ¨¡å¼ 1(_1)æ¨¡å¼ 2(_2)修改曲线更多ä¸é€æ˜Ž(_E)更多高级选项更浓:更多白色(亮度大)(_W)更多黑色(亮度å°)(_K)更多é€æ˜Ž(_R)马赛克动æ€æ¨¡ç³Šæ­£åœ¨è¿›è¡ŒåŠ¨æ€æ¨¡ç³Š...移动å‘下移动移动边界移动选中对象移动到å‰ç«¯å‘上移动移动一个点移动一个对象移动我的第一个分形éžçº¿æ€§æ»¤æ³¢éžçº¿æ€§æ»¤æ³¢...å字氖检测氖...新建分形新建æ¸å˜é—ªå…‰æ–°å»ºå•ä½æ–°å»ºæ‰“å°æœº...æ–°çš„ç§å­æŠ¥çº¸(_T)...报纸报纸...gimprc 中没有 %s : +第 %d 行选项部分错误文件“%sâ€ä¸æ˜¯ä¸€ä¸ªåˆ†å½¢æŽ¢ç´¢å™¨æ–‡ä»¶æ–‡ä»¶å·²å­˜åœ¨ä¸æ”¯æŒçš„文件格å¼ã€‚文件大å°ï¼š%02.01f kB文件大å°ï¼šæœªçŸ¥æ–‡ä»¶å:文件å:%så¡«å……å¡«å……(从下到上)å¡«å……(从左到å³)å¡«å……(从å³åˆ°å·¦)å¡«å……(从上到下)以å‚æ•° k 填充胶å·æ»¤æ³¢å™¨ç»„åˆæ»¤é•œæ¨¡æ‹Ÿæ­£åœ¨å¯»æ‰¾åŠ¨ç”»èƒŒæ™¯...正在寻找边缘...正在寻找 XY 梯度...第一目标颜色第一个几何图形第一æºé¢œè‰²ç¬¬ä¸€ç§é¢œè‰²å›ºå®šç§å­å®šå‘矢é‡å›¾é€‰æ‹©èœå•ç«ç„°ç«ç„°åªå¯¹ RGB 图åƒæœ‰æ•ˆé—ªå…‰(FlareFX)çµæ´»å›¾åƒä¼ è¾“系统翻转浮点数æµç¨‹ç¬¬ %d æ­¥...æµçº¿å‰æ™¯è‰²(_R)笔划èšé›†åœ¨å›¾åƒä¸­å¿ƒé™„近强制基线(baseline) JPEGå‰æ™¯å‰æ™¯/背景色分形å‚数分形追溯分形类型分形å字:分形探索器æ¸å˜é›¶ç¢Žçš„åƒç´ å¸§ %d帧 %d (%d%s)帧 %d/%d帧 (%i)没有指明的帧的处ç†ï¼šé¢‘率频率(è¡Œ):从从剪贴æ¿ä»Žé¢œè‰²å–自æ¸å˜å–自画纸å–自åå‘çš„æ¸å˜ä»Žï¼šå‰ï¼šå®Œå…¨åŠŸèƒ½å‡½æ•°ç±»åž‹ï¼šæ¨¡ç³Šé€‰æ‹©G-QbistG3 传真图åƒGEE-SLIMEGEE-ZOOMGFLI 1.3 - 加载帧栈GFLI 1.3 - ä¿å­˜å¸§æ ˆæ¸å˜é—ªå…‰(GFlare)æ¸å˜é—ªå…‰â€œ%sâ€è¿˜æ²¡ä¿å­˜ã€‚如果您在“%sâ€ä¸­æ·»åŠ ä¸€é¡¹ï¼Œæ¯”如: +(gflare-path "%s") +并建立一个文件夹“%sâ€ï¼Œæ‚¨å°±å¯ä»¥å°†è‡ªå·±çš„æ¸å˜é—ªå…‰ä¿å­˜åœ¨é‚£ä¸ªæ–‡ä»¶å¤¹ä¸­ã€‚æ¸å˜é—ªå…‰ç¼–辑器GIF 选项GIF 警告GIF 图åƒGIF:无法处ç†æ— ä¹¦é¢æ–‡ä»¶çš„ GIF åˆæˆç±»åž‹ %d。动画å¯èƒ½æ— æ³•å‡†ç¡®åœ°æ’­æ”¾æˆ–é‡å‚¨å­˜ã€‚GIMP 扩展GIMP 帮助æµè§ˆå™¨GIMP æ’件GIMP 魔术表格GIMP Windows 图标æ’件GIMP 画笔GIMP 画笔(动画)GIMP 画笔文件看æ¥å·²æŸå。GIMP 画笔åªèƒ½æ˜¯ç°åº¦æˆ– RGBAGIMP 压缩的 XJT 图åƒGIMP 图案炽光(_L)绿色阈值(_R):Gamma:高斯模糊高斯模糊...Gee-Slime(_S)Gee-Zoom(_Z)通用常规选项通用首选项常规选项获å–æ ·å“的颜色几何图形(GFig)Gimp-Print 版本å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)玻璃瓦片玻璃瓦片...炽光绘画选项ç°è‰²(_E)抓å–抓å–å‰å»¶è¿Ÿ(_A)截å–å•ä¸ªçª—å£æˆªå–整个å±å¹•æ¢¯åº¦æ¸å˜é—ªå…‰...æ¸å˜æ˜ å°„...æ¸å˜å¡«å……梯度图选择èœå•æ¢¯åº¦ç¼©æ”¾ï¼šæ¸å˜å›¾åƒå¹³æ»‘ç°è‰²ç°è‰²æ¨¡å¼ç°è‰²é€‰é¡¹ç°è‰²é˜ˆå€¼ç°åº¦ç»¿è‰²ç»¿è‰²é¢‘率(_E):绿色相移(_A):绿色:ç°è‰²ç½‘格网格大å°ç½‘æ ¼ä½ç§»ç½‘格设置网格设置...网格å¯è§æ€§ä¸Žç±»åž‹ç½‘格颜色:网格设置...网格间è·ï¼šç½‘格类型:å‚考线å‚考线(Guides)是图åƒä¸Šä¸€äº›é¢„定义的矩形区域。您通过给出宽度ã€é«˜åº¦å’Œä¹‹é—´çš„è·ç¦»æ¥å®šä¹‰å®ƒä»¬ã€‚这使您得以快速创建最通常的图åƒæ˜ åƒç±»åž‹â€•â€•å›¾åƒç¼©ç•¥å›¾é›†ï¼Œé€‚用于导航æ¡ã€‚å‚考线...分å—...HSVHTML 页é¢é€‰é¡¹HTML 表格高亮(_I):亮(_I)色调(_U)色调(_U):六边形(_X)高度(åƒç´ ):您è¦æ‰“å°çš„纸张高度高度:未知的帮助 ID “%sâ€å˜¿ï¼Œé‚£äº›å¯¹è±¡éƒ½åˆ°å“ªåŽ»äº†ï¼Ÿé«˜è´¨é‡é¢„览(_Q)值越大效果越显著数值越大高亮越集中数值越大物体å射的光线越多(显得更亮)值越大效果影å“的图åƒåŒºåŸŸè¶Šå°é«˜äº®ï¼šäº®ï¼šä¿ç•™æœ€å°çš„通é“(_L)å°å­”宽度(_L):水平方å‘基准(_R):å°å­”高度(_E):ä¿æŒäº®åº¦å°å­”é—´è·(_A):水平水平颜色水平马蹄å点热点 X(_X):热点 Y(_Y):å点...一英寸等于此å•ä½çš„多少å€ã€‚阴影的颜色加深多少æ¯ä¸€ç¬”的边缘处加深多少阴影的模糊程度色调色调旋转:色调å˜åŒ–色调频率(_F):色调相移(_P):色调:我ä¸å…³å¿ƒIDIFS 分形IFS 分形绘制选项IFS 分形:黑IFS 分形:è“IFS 分形:绿IFS 分形:红IFS 分形:目标ITER:交互å¼ç¿˜æ›²å¼ºåº¦(_N)交互(_N)åå‘凹凸贴图(_N)图åƒå相(_N)独立(_S)图标 #%i图标细节如果选中该项,GTM 将会输出一个带有 〠等标签的完整的 HTML 文档,而ä¸æ˜¯ä»…ä»…åªæœ‰ä¸€ä¸ªè¡¨æ ¼ã€‚如果选中该项,GTM 会用 ROWSPAN å’Œ COLSPAN 把相åŒé¢œè‰²çš„矩形å—替æ¢æˆä¸€ä¸ªå¤§çš„å•å…ƒæ ¼ã€‚如果选中,映射将从å³è¾¹å¼€å§‹ï¼Œä¸Žä»Žå·¦è¾¹å¼€å§‹ç›¸å。如果没有选中,图åƒå°†æ²¿åœ†å‘¨æ˜ å°„到一个矩形上。如果选中,图åƒå°†è¢«æ˜ å°„到一个圆上。如果没有选中,映射将把底行放在中心,顶行放在外é¢ã€‚如果选中则相å。如果您å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œé«˜çš„颜色值与低的颜色值将被对应互æ¢å¦‚果您å¯ç”¨è¿™ä¸ªé€‰é¡¹ï¼Œé¢„览将会自动é‡ç”»å¹»è±¡å¹»è±¡...图åƒ(_A)图åƒå›¾åƒ/输出设置图åƒåˆæˆå›¾åƒé€‰æ‹©å›¾åƒå¤§å°å›¾åƒç±»åž‹å›¾åƒç±»åž‹(_T):图åƒé«˜åº¦(_H):图åƒå°ºå¯¸ï¼š%d x %d图åƒä¸æ˜¯ç°åº¦å›¾åƒ(bpp=%d)图åƒå字:图åƒå¤§å°å·²æ”¹å˜ã€‚图åƒé—´è·(_I):图åƒç±»åž‹ï¼šå›¾åƒæ˜ åƒæ’件 2.2上下底表é¢çš„图åƒå›¾åƒçš„大å°ä¸ä¸€è‡´å¯¼å…¥è·¯å¾„(_P)导入 SVG 的路径元素,å¯ç”¨äºŽ GIMP 路径工具迭代次数(_T):å转(_V)英寸包å«è£…饰索引索引色æ¿ç±»åž‹åˆå§‹å€¼ï¼šå¢¨æ°´ç±»åž‹ï¼šè¾“入色阶:æ’入点加入日期整数强度亮度等级当有光æºç…§å°„时原始颜色的亮度交错GIMP 内部过程虚线虚线颜色PSD 文件中存在无效的 UTF-8 字符串画笔文件“%sâ€ä¸­å­˜åœ¨æ— æ•ˆçš„ UTF-8 字符串。图案文件“%sâ€ä¸­å­˜åœ¨æ— æ•ˆçš„ UTF-8 字符串。å转å转画纸的æ质等轴强烈建议添加 + (gimpressionist-path "%s") +(或类似)到您的 gimprc 文件中。迭代次数:JNGJNG + Delta PNGJPEG 压缩质é‡ï¼šJPEG 图åƒJPEG 预览JPEG è´¨é‡å‚æ•°JPEG 平滑因å­ï¼šæ‹¼å›¾æ‹¼å›¾é£Žæ ¼JuliaKISS CELä¿ç•™å¶æ•°åŒºåŸŸ(_E)ä¿æŒå›¾åƒçš„值ä¿ç•™å¥‡æ•°åŒºåŸŸ(_D)ä¿æŒåŽŸå§‹ä¿æŒç¬¬ä¸€ä¸ªå€¼LABLZ77头部(_E)左边界(_E)长度(_E):线性(_I)Lambda横å‘拉普拉斯拉普拉斯...大 3x3(_E)图层 %s 没有 alpha 通é“,跳过图层背景类型。å¤åˆ¶ä½¿å¾—进行绘画之å‰å…ˆå¤åˆ¶å‰ä¸€å›¾å±‚。左左边界左:é€é•œæ•ˆæžœæ›´æ·¡ï¼šç¬”划的方å‘由到图åƒä¸­å¿ƒçš„æ–¹å‘决定笔划的大å°ç”±åˆ°å›¾åƒä¸­å¿ƒçš„æ–¹å‘决定笔划的方å‘由区域的值(亮度)决定笔划的大å°ç”±åŒºåŸŸçš„值(亮度)决定级别光线光线 1光线 2光线 3光线 4光线 5光线 6光线设置光线方å‘(_D):光线强度光æºåœ¨ XYZ 空间的 X æ–¹å‘å…‰æºåœ¨ XYZ 空间的 X åæ ‡ä½ç½®å…‰æºåœ¨ XYZ 空间的 Y æ–¹å‘å…‰æºåœ¨ XYZ 空间的 Y åæ ‡ä½ç½®å…‰æºåœ¨ XYZ 空间的 Z æ–¹å‘å…‰æºåœ¨ XYZ 空间的 Z åæ ‡ä½ç½®ç¨æµ…更亮:光照效果光照效果...光照预设:光æºé¢œè‰²ï¼šå…‰æºç±»åž‹ï¼šçº¿çŠ¶çº¿æ¡å›¾çº¿æ€§è¿žæŽ¥ç±»åž‹åˆ—表视图蜥蜴长栅格(_N)下边界(_W)加载通é“æ··åˆå™¨è®¾ç½®ä»Žæ–‡ä»¶ä¸­åŠ è½½æ›²çº¿çš„点加载 FITS 文件加载ç«ç„°åŠ è½½åˆ†å½¢å‚数加载几何图形对象集载入图åƒæ˜ åƒåŠ è½½ KISS 色æ¿åŠ è½½å…‰ç…§é¢„设å‚数加载自加载 PostScript加载 QBE 文件从文件加载分形从文件中加载曲线正在加载å±å¹•æŠ“图...é”定阈值(_T)对数循环左下å³ä¸‹é™ä½Žé€‰ä¸­å¯¹è±¡å°†é€‰ä¸­å¯¹è±¡é™è‡³åº•ç«¯ä½Žç«¯é˜ˆå€¼(_H):亮度_y470:亮度_y470f:亮度_y709:亮度_y709f:亮度阈值(_T):亮度频率(_U):亮度相移(_S):MNG 选项MNG 动画最大值(_A):最大深度(_X):最大高度(_X):å“红(_T)å“红å“红:å“红_黑数é‡å›¾ï¼šä¸»é€‰é¡¹ä½¿ç›®æ ‡å›¾åƒå‡¸èµ·é«˜åº¦ä¸ºé›¶çš„地方å˜ä¸ºé€æ˜Žä½¿ç‰©ä½“以外的图åƒå˜æˆé€æ˜ŽMan'o'warMandelbrotMandelbrot å‚数手工手工指定笔划方å‘手工指定笔划大å°æ˜ å°„颜色范围将图åƒæ˜ å°„到方盒表é¢æ˜ å°„到物体(_O)...映åƒæ–‡ä»¶æ ¼å¼ä»Žé¡¶ç«¯å¼€å§‹æ˜ å°„(_T)映射到方盒...映射到圆柱体...映射到物体映射到平é¢...映射到çƒä½“...映射到:正在映射颜色...大ç†çŸ³æŽ©ç æ–‡ä»¶æ质属性矩阵Max (x+d, -)Max (x+d, -), (0.5 < x)Max (x+d, -), (x < 0.5)Max (x, -)Max (x-d, -)Max (x-d, -), (0.5 < x)Max (x-d, -), (x < 0.5)RGB 最大RGB 最大...最大撤销次数:最大内存:凸起的最大高度最大大å°ï¼šè¿·å®«ä»‹è´¨å°ºå¯¸ï¼šä»‹è´¨æ¥æºï¼šä»‹è´¨ç±»åž‹ï¼šä¸­å€¼èœå•èœå•è·¯å¾„èœå•è·¯å¾„/åå­—åˆå¹¶å¯¼å…¥çš„路径正在åˆå¹¶...Microsoft WMF 文件Microsoft Windows 图标在预览中点击中键å¯æ‹¾å–“从颜色â€ä¸­ï¼šMin (x+d, -)Min (x+d, -), (0.5 < x)Min (x+d, -), (x < 0.5)Min (x, -)Min (x-d, -)Min (x-d, -), (0.5 < x)Min (x-d, -), (x < 0.5)最å°å¤§å°ï¼šå°†æ´»åŠ¨æ›²çº¿é•œåƒè‡³å¯¹è¾¹ä¿®æ”¹ç»¿è‰²é€šé“(_D)修改饱和度通é“(_D)修改è“色通é“(_I)修改亮度通é“(_I)模å¼æ¨¡å¼ 1(_1)æ¨¡å¼ 2(_2)修改曲线更多ä¸é€æ˜Ž(_E)更多高级选项更浓:更多白色(亮度大)(_W)更多黑色(亮度å°)(_K)更多é€æ˜Ž(_R)马赛克动æ€æ¨¡ç³Šæ­£åœ¨è¿›è¡ŒåŠ¨æ€æ¨¡ç³Š...移动å‘下移动移动边界移动选中对象移动到å‰ç«¯å‘上移动移动一个点移动一个对象移动我的第一个分形éžçº¿æ€§æ»¤æ³¢éžçº¿æ€§æ»¤æ³¢...å字氖检测氖...新建分形新建æ¸å˜é—ªå…‰æ–°å»ºå•ä½æ–°å»ºæ‰“å°æœº...æ–°çš„ç§å­æŠ¥çº¸(_T)...报纸报纸...gimprc 中没有 %s : 您需è¦å¢žåŠ ä¸€é¡¹æ¯”如 (%s "%s") -到您的 %s 文件。无颜色无压缩没有å–å¾—æ•°æ®æ— å¡«å……æ— å…‰æºæ²¡æœ‰åŒ¹é…没有å¯ä¾›è½¬æ¢çš„选区没有å¯æ„ŸçŸ¥çš„扩展å,å°è¯•é€šè¿‡æ–‡ä»¶çš„ magic æ¥åŠ è½½ã€‚没有å¯æ„ŸçŸ¥çš„扩展å,ä¿å­˜ä¸ºåŽ‹ç¼©çš„ XCF。纵å‘æ•°é‡(_D):噪音åƒç´ éžæ­£æ–¹å½¢ã€‚图åƒçœ‹èµ·æ¥å¯èƒ½æ‰äº†ã€‚无普通普通:正在标准化...没有东西å¯ä»¥å‰ªè£ã€‚颜色数é‡æœ€è¿‘打开项目(1 - 16)(_R):å—æ•°æ–¹å—æ•°é‡å¸§çš„æ•°é‡(_F):å…许撤销次数(1 - 99)(_U):å•å…ƒæ•°é‡ï¼šé¢œè‰²æ•°é‡ï¼šè¦†ç›–整个亮度范围的周期数横å‘æ–¹å—æ•°é‡çºµå‘æ–¹å—æ•°é‡åº”用滤镜的次数颜色数é‡ï¼š%d计数ä½ç§»(_F):åªå¯¹å‰æ™¯è‰²(_N)ä¸é€æ˜Žåº¦(_P):选项(_P)æ–¹å‘(_R)其它(_T)输出 LPI (_U):输出通é“(_U):é‡å (_V):覆盖(_V)过采样(_V):对象细节物体在 XYZ 空间的 X åæ ‡ä½ç½®ç‰©ä½“在 XYZ 空间的 Y åæ ‡ä½ç½®ç‰©ä½“在 XYZ 空间的 Z åæ ‡ä½ç½®å…«è¾¹å½¢å’Œæ–¹å—(_T)ä½ç§»(_S):å移角度(_A):所有的å‘é‡å移一个指定的角度ä½ç§»ï¼šæ­£åœ¨æ²¹ç”»...油画(_F)...油画在边缘处:放入胶å·ä¸­ï¼šåœ¨è¾¹ç¼˜å¤„:æ¯å›¾å±‚一帧(替æ¢)åªå¯¹èƒŒæ™¯è‰²(_A)åªæœ‰ä¸€ç§é¢œè‰²ä¸é€æ˜Žåº¦(_A):最优估计(_T)选项(_T)ä¸é€æ˜Žåº¦ï¼šæ‰“开打开文件打开 IFS 分形文件打开失败最近打开正在打开“%sâ€...正在打开“%sâ€çš„缩略图...打开方å‘分布编辑器打开尺寸分布编辑器优化优化(对 GIF)(_G)正在优化动画...选项方å‘(_I)æ–¹å‘æ–¹å‘分布编辑器方å‘:原始原始亮度原始:其它(_H)其它选项输出输出色阶:输出类型:外部类型覆盖P(指数因å­):PDF 文档PGM 图åƒPNGPNG + Delta PNGPNG 压缩等级:PNG 图åƒPNM 图åƒPNM 图åƒPNM ä¿å­˜æ— æ³•å¤„ç†å¸¦æœ‰ alpha 通é“的图åƒã€‚PNM:读文件错误。PNM:无效的 X 分辨率。PNM:无效的 Y 分辨率。PNM:无效文件。PNM:无效的最大值。PNM:过早的文件结尾。PPD 文件:PPIPPM 图åƒPS è±å½¢PS æ–¹å—(欧几里得点)画纸(_A)æžåæ ‡(_O)...预览(_R)第 %d 页页é¢å·æ›²...页é¢è®¾ç½®é¡µé¢å·æ›²æ•ˆæžœåŠ è½½é¡µç (例如:1-4 或者 1,3,5-7)页数:绘画模å¼ï¼šPaint Shop Pro 图åƒæ¶‚画边缘正在绘制...色æ¿æ–‡ä»¶(_E):色æ¿çº¸ç‰‡å¹³é“ºçº¸ç‰‡å¹³é“º...å‚æ•° k:å‚æ•°å‚æ•°å·²ä¿å­˜è‡³â€œ%sâ€è§£æžâ€œ%sâ€å‡ºé”™ï¼š -%s粘贴从剪贴æ¿ç²˜è´´å·²ç²˜è´´æ­£åœ¨ç²˜è´´...图案填充百分比黑色百分比(_B):白色百分比(_W):将被过滤的åƒç´ çš„比率相ä½è§’,范围 0-360å½±å°ç…§ç‰‡Photoshop 图åƒå—数:乒乓åƒç´ é«˜åº¦(_H):åƒç´ å®½åº¦(_W):åƒç´ å€¼ç¼©æ”¾åƒç´ åŒ–正在进行åƒç´ åŒ–...åƒç´ æ”¾ç½®(_A)笔划在图åƒä¸­éšæœºæ”¾ç½®æ”¾ç½®å¹³é¢äº”彩缤纷(Plasma)五彩缤纷...播放/åœæ­¢å›žæ”¾ï¼šè¯·æ£€æŸ¥æ‚¨çš„安装。绘画此设置的图线æ’件æµè§ˆå™¨å¤æ•°å振(_L):点点光æºæžçº¿æžå标化正在æžå标化...多边形纵å‘ä½ç½®ä½ç½® X:ä½ç½® Y:ä½ç½® Z:PostScript 文档PostScript ä¿å­˜æ— æ³•å¤„ç†å¸¦æœ‰ alpha 通é“的图åƒé¢„览(_V)首选项ä¿æŒäº®åº¦(_L)ä¿ç•™åŽŸå§‹çš„图åƒä½œä¸ºèƒŒæ™¯é¢„览预览大å°é¢„览大å°(_S):拖动时预览PrewittPrim 的算法打å°é¢œè‰²è°ƒæ•´æ‰“å°å¹¶ -ä¿å­˜è®¾ç½®æ‰“å°åˆ°æ–‡ä»¶æ‰“å°æœºæ¨¡å—:打å°æœºè®¾ç½®æ‰“å°æœºä¸æ”¯æŒä½å›¾æ‰“å°æœºæ¨¡å—:打å°æœºå字:正在打å°...å¯èƒ½æ€§æ¸å˜ï¼šè¿‡ç¨‹æµè§ˆå™¨è¿‡ç¨‹æµè§ˆå™¨(_B)æ¸è¿›ç¹æ®–ç¹æ®–颜色通é“ç¹æ®– Alpha 通é“(_A)Qbist ...è´¨é‡ï¼šRGBRGB ä¿å­˜ç±»åž‹RGBA没有选中 RGBA/GRAYA 图åƒã€‚RLERLE 压缩åŠå¾„ 2(_A):åŠå¾„(_A):éšæœºè‰²è°ƒ(_A):éšæœºæ•°ç§å­(_A):éšæœºåº¦(_A)(%):递归(_E)红色(_E)红色阈值(_E):é‡å¤(_E):åå‘(_E)转å‘径å‘æ¸å˜ï¼šå¼§åº¦å¼§åº¦/Piæžè·åŠå¾„:å‡é«˜é€‰ä¸­å¯¹è±¡å°†é€‰ä¸­å¯¹è±¡å‡è‡³é¡¶ç«¯éšæœºé¥±å’Œåº¦(_M):éšæœºéšæœº æ’’(Hurl) 1.7éšæœº æ‹£(Pick) 1.7éšæœºæ•°ç§å­ï¼šéšæœº 糊(Slur) 1.7éšæœºæ•°ç§å­(_S):éšæœºç§å­éšæœºå…±äº«éšæœºï¼Œå„通é“独立éšæœºä»Žç§å­éšæœºä»Žç§å­éšæœº(共享)原始Raw 图åƒæ•°æ®Raw 图åƒåŠ è½½Raw 图åƒä¿å­˜å°„线绘画选项居中(_C)红色(_D)读入选中的预设到内存实时预览é‡æ–°è®¡ç®—中心é‡æ–°è®¡ç®—预览图åƒçŸ©å½¢çº¢è‰²çº¢è‰²é¢‘率(_F):红色相移(_P):红色:红色差_cr470:红色差_cr470f:红色差_cr709:红色差_cr709f:é‡åšé‡åšä¸Šæ¬¡ç¼©æ”¾é‡ç”»é‡ç”»é¢„览é™ä½Žäº®åº¦(_L)é™ä½Žé¥±å’Œåº¦(_S)å射率刷新预览窗å£æ­£å¤šè¾¹å½¢çš„边的数é‡ç›¸å¯¹è¿žæŽ¥(_V)相对概率:在 GNU 通用公共许å¯è¯ä¸‹å‘布浮雕:映射颜色...删除(_V)正在去除动画背景...正在删除颜色...绘制闪光...绘制å¯ç¼©æ”¾å‘é‡å›¾å½¢ç»˜åˆ¶ Windows 元文件(WMF)绘制选项已绘制的 SVG已绘制的 WMF绘制正在绘制劲风...正在绘制分形...正在绘制 IFS (%d/%d)...正在绘制 SVG...正在绘制çƒé¢...正在绘制超新星...正在绘制瓦片...正在绘制风...替æ¢é‡æ–°è¯»å…¥é¢„设文件夹é‡æ–°æ‰«ææ¸å˜é‡æ–°æŸ¥æ‰¾åˆ†å½¢é‡ç½®å‚数到默认值é‡ç½®æ´»åŠ¨æ›²çº¿é‡ç½®åŒºåŸŸå¤§å°å—?分辨率分辨率:结果å‚考线范围:%d,%d 到 %d,%d (%d 个区域)结果å‚考线范围:0,0 到 0,0 (0 个区域)Retinex (4/4):更新...Retinex 图åƒå¢žå¼ºRetinex...Retinex:正在绘制...返回值æ¢å¤åˆ°åŽŸå§‹å›¾åƒå›žç»•å³å³è¾¹ç•Œï¼šå³è¾¹ç•Œå³ï¼šæ³¢çº¹æ­£åœ¨ç»˜åˆ¶æ³¢çº¹...旋转(_T):行(_W):Roberts旋转(_E):旋转旋转/缩放旋转 X:旋转 Y:旋转 Z:旋转åŽæ­£åœ¨æ—‹è½¬é¢œè‰²è¡¨...旋转...旋转绕 X 轴旋转的角度绕 Y 轴旋转的角度绕 Z 轴旋转的角度旋转角度:旋转:力度çƒå½¢RLE ç¼–ç SUN Raster 图åƒSUNRAS ä¿å­˜æ— æ³•å¤„ç†å¸¦ alpha 通é“的图åƒSVG 文件没有 +到您的 %s 文件。无颜色无压缩没有å–å¾—æ•°æ®æ— å¡«å……æ— å…‰æºæ²¡æœ‰åŒ¹é…没有å¯ä¾›è½¬æ¢çš„选区没有å¯æ„ŸçŸ¥çš„扩展å,å°è¯•é€šè¿‡æ–‡ä»¶çš„ magic æ¥åŠ è½½ã€‚没有å¯æ„ŸçŸ¥çš„扩展å,ä¿å­˜ä¸ºåŽ‹ç¼©çš„ XCF。纵å‘æ•°é‡(_D):噪音åƒç´ éžæ­£æ–¹å½¢ã€‚图åƒçœ‹èµ·æ¥å¯èƒ½æ‰äº†ã€‚无普通普通:正在标准化...没有东西å¯ä»¥å‰ªè£ã€‚颜色数é‡æœ€è¿‘打开项目(1 - 16)(_R):å—æ•°æ–¹å—æ•°é‡å¸§çš„æ•°é‡(_F):å…许撤销次数(1 - 99)(_U):å•å…ƒæ•°é‡ï¼šé¢œè‰²æ•°é‡ï¼šè¦†ç›–整个亮度范围的周期数横å‘æ–¹å—æ•°é‡çºµå‘æ–¹å—æ•°é‡åº”用滤镜的次数颜色数é‡ï¼š%d计数ä½ç§»(_F):åªå¯¹å‰æ™¯è‰²(_N)ä¸é€æ˜Žåº¦(_P):选项(_P)æ–¹å‘(_R)其它(_T)输出 LPI (_U):输出通é“(_U):é‡å (_V):覆盖(_V)过采样(_V):对象细节物体在 XYZ 空间的 X åæ ‡ä½ç½®ç‰©ä½“在 XYZ 空间的 Y åæ ‡ä½ç½®ç‰©ä½“在 XYZ 空间的 Z åæ ‡ä½ç½®å…«è¾¹å½¢å’Œæ–¹å—(_T)ä½ç§»(_S):å移角度(_A):所有的矢é‡å移一个指定的角度ä½ç§»ï¼šæ­£åœ¨æ²¹ç”»...油画(_F)...油画在边缘处:放入胶å·ä¸­ï¼šè¾¹ç¼˜å¤„:æ¯å›¾å±‚一帧(替æ¢)åªå¯¹èƒŒæ™¯è‰²(_A)åªæœ‰ä¸€ç§é¢œè‰²ä¸é€æ˜Žåº¦(_A):最优估计(_T)选项(_T)ä¸é€æ˜Žåº¦ï¼šæ‰“开打开文件打开 IFS 分形文件打开失败最近打开正在打开“%sâ€...正在打开“%sâ€çš„缩略图...打开方å‘分布编辑器打开尺寸分布编辑器优化优化(对 GIF)(_G)æ ¹æ®æ‰“å°çš„图åƒç±»åž‹ä¼˜åŒ–输出正在优化动画...选项方å‘(_I)原点在左下角(_I)æ–¹å‘æ–¹å‘分布编辑器方å‘:原始原始亮度原始:其它(_H)其它选项输出输出色阶:输出类型:外部类型覆盖P(指数因å­):PDF 文档PGM 图åƒPNGPNG + Delta PNGPNG 压缩等级:PNG 图åƒPNM 图åƒPNM 图åƒPNM ä¿å­˜æ— æ³•å¤„ç†å¸¦æœ‰ alpha 通é“的图åƒã€‚PNM:读文件错误。PNM:无效的 X 分辨率。PNM:无效的 Y 分辨率。PNM:无效文件。PNM:无效的最大值。PNM:过早的文件结尾。PPD 文件:PPIPPM 图åƒPS è±å½¢PS æ–¹å—(欧几里得点)画纸(_A)æžåæ ‡(_O)...预览(_R)第 %d 页页é¢å·æ›²...页é¢è®¾ç½®PageSetupDlg 失败:%d页é¢å·æ›²æ•ˆæžœåŠ è½½é¡µç (例如:1-4 或者 1,3,5-7)页数:绘画模å¼ï¼šPaint Shop Pro 图åƒæ¶‚画边缘正在绘制...色æ¿æ–‡ä»¶(_E):色æ¿çº¸ç‰‡å¹³é“ºçº¸ç‰‡å¹³é“º...å‚æ•° k:å‚æ•°å‚æ•°å·²ä¿å­˜è‡³â€œ%sâ€è§£æžâ€œ%sâ€å‡ºé”™ï¼š +%s粘贴从剪贴æ¿ç²˜è´´å·²ç²˜è´´æ­£åœ¨ç²˜è´´...图案填充百分比黑色百分比(_B):白色百分比(_W):将被过滤的åƒç´ çš„比率相ä½è§’,范围 0-360å½±å°ç…§ç‰‡Photoshop 图åƒå—数:乒乓åƒç´ é«˜åº¦(_H):åƒç´ å®½åº¦(_W):åƒç´ å€¼ç¼©æ”¾åƒç´ åŒ–正在进行åƒç´ åŒ–...åƒç´ æ”¾ç½®(_A)笔划在图åƒä¸­éšæœºæ”¾ç½®æ”¾ç½®å¹³é¢äº”彩缤纷(Plasma)五彩缤纷...播放/åœæ­¢å›žæ”¾ï¼šè¯·æ£€æŸ¥æ‚¨çš„安装。绘画此设置的图线æ’件æµè§ˆå™¨å¤æ•°å振(_L):点点光æºæžçº¿æžå标化正在æžå标化...多边形纵å‘ä½ç½®ä½ç½® X:ä½ç½® Y:ä½ç½® Z:图åƒåœ¨é¡µé¢ä¸­çš„ä½ç½®ã€‚ +点击并拖动主按钮æ¥æ”¾ç½®å›¾åƒã€‚ +点击并拖动第二按钮更精细地移动图åƒï¼›æ¯ä¸ªåŠ¨ä½œå•ä½å°†å›¾åƒç§»åŠ¨ä¸€ä¸ªç‚¹(1/72") +点击并拖动第三(中)按钮按图åƒå¤§å°çš„å•ä½æ¥ç§»åŠ¨å›¾åƒã€‚ +点击和拖动的åŒæ—¶æŒ‰ä½ shift é”®å¯é™åˆ¶ä»…在水平或垂直方å‘上移动。 +如果您在拖动鼠标的过程中点击了其它按钮,图åƒå°†æ¢å¤åˆ°åŽŸæ¥çš„ä½ç½®ã€‚PostScript 文档PostScript ä¿å­˜æ— æ³•å¤„ç†å¸¦æœ‰ alpha 通é“的图åƒé¢„览(_V)首选项ä¿æŒäº®åº¦(_L)ä¿ç•™åŽŸå§‹çš„图åƒä½œä¸ºèƒŒæ™¯é¢„览预览大å°é¢„览大å°(_S):拖动时预览PrewittPrim 的算法打å°è‰²å½©è°ƒæ•´æ‰“å°å¹¶ +ä¿å­˜è®¾ç½®ä»¥é»‘色和白色打å°(没有彩色,也没有ç°è‰²æ¢¯åº¦)使用黑色墨水以ç°è‰²æ¢¯åº¦æ‰“å°æ‰“å°åˆ°æ–‡ä»¶PrintDlg 失败:%d打å°æœºåž‹å·ï¼šæ‰“å°æœºè®¾ç½®æ‰“å°æœºä¸æ”¯æŒä½å›¾æ‰“å°æœºåž‹å·ï¼šæ‰“å°æœºå字:正在打å°...å¯èƒ½æ€§æ¸å˜ï¼šè¿‡ç¨‹æµè§ˆå™¨è¿‡ç¨‹æµè§ˆå™¨(_B)æ¸è¿›ç¹æ®–ç¹æ®–颜色通é“ç¹æ®– Alpha 通é“(_A)Qbist ...è´¨é‡ï¼šRGBRGB ä¿å­˜ç±»åž‹RGBA没有选中 RGBA/GRAYA 图åƒã€‚RLERLE 压缩åŠå¾„ 2(_A):åŠå¾„(_A):éšæœºè‰²è°ƒ(_A):éšæœºæ•°ç§å­(_A):éšæœºåº¦(_A)(%):递归(_E)红色(_E)红色阈值(_E):é‡å¤(_E):åå‘(_E)转å‘径å‘æ¸å˜ï¼šå¼§åº¦å¼§åº¦/Piæžè·åŠå¾„:å‡é«˜é€‰ä¸­å¯¹è±¡å°†é€‰ä¸­å¯¹è±¡å‡è‡³é¡¶ç«¯éšæœºé¥±å’Œåº¦(_M):éšæœºéšæœº æ’’(Hurl) 1.7éšæœº æ‹£(Pick) 1.7éšæœºæ•°ç§å­ï¼šéšæœº 糊(Slur) 1.7éšæœºæ•°ç§å­(_S):éšæœºç§å­éšæœºå…±äº«éšæœºï¼Œå„通é“独立éšæœºä»Žç§å­éšæœºä»Žç§å­éšæœº(共享)分级:原始Raw 图åƒæ•°æ®Raw 图åƒåŠ è½½Raw 图åƒä¿å­˜å°„线绘画选项居中(_C)红色(_D)读入选中的预设到内存实时预览é‡æ–°è®¡ç®—中心é‡æ–°è®¡ç®—预览图åƒçŸ©å½¢çº¢è‰²çº¢è‰²é¢‘率(_F):红色相移(_P):红色:红色差_cr470:红色差_cr470f:红色差_cr709:红色差_cr709f:é‡åšé‡åšä¸Šæ¬¡ç¼©æ”¾é‡ç”»é‡ç”»é¢„览é™ä½Žäº®åº¦(_L)é™ä½Žé¥±å’Œåº¦(_S)å射率刷新预览窗å£æ­£å¤šè¾¹å½¢çš„边的数é‡ç›¸å¯¹è¿žæŽ¥(_V)相对概率:在 GNU 通用公共许å¯è¯ä¸‹å‘布浮雕:映射颜色...删除(_V)正在去除动画背景...正在删除颜色...绘制闪光...绘制å¯ç¼©æ”¾çŸ¢é‡å›¾å½¢ç»˜åˆ¶ Windows 元文件(WMF)绘制选项已绘制的 SVG已绘制的 WMF绘制正在绘制劲风...正在绘制分形...正在绘制 IFS (%d/%d)...正在绘制 SVG...正在绘制çƒé¢...正在绘制超新星...正在绘制瓦片...正在绘制风...替æ¢é‡æ–°è¯»å…¥é¢„设文件夹é‡æ–°æ‰«ææ¸å˜é‡æ–°æŸ¥æ‰¾åˆ†å½¢é‡ç½®å‚数到默认值é‡ç½®æ´»åŠ¨æ›²çº¿é‡ç½®åŒºåŸŸå¤§å°å—?分辨率打å°çš„分辨率以åŠè´¨é‡åˆ†è¾¨çŽ‡ï¼šç»“æžœå‚考线范围:%d,%d 到 %d,%d (%d 个区域)结果å‚考线范围:0,0 到 0,0 (0 个区域)Retinex (4/4):更新...Retinex 图åƒå¢žå¼ºRetinex...Retinex:正在绘制...返回值æ¢å¤åˆ°åŽŸå§‹å›¾åƒå›žç»•å³å³è¾¹ç•Œï¼šå³è¾¹ç•Œå³ï¼šæ³¢çº¹æ­£åœ¨ç»˜åˆ¶æ³¢çº¹...旋转(_T):行(_W):Roberts旋转(_E):旋转旋转/缩放旋转 X:旋转 Y:旋转 Z:旋转åŽæ­£åœ¨æ—‹è½¬é¢œè‰²è¡¨...旋转...旋转绕 X 轴旋转的角度绕 Y 轴旋转的角度绕 Z 轴旋转的角度旋转角度:旋转:力度çƒå½¢RLE ç¼–ç SUN Raster 图åƒSUNRAS ä¿å­˜æ— æ³•å¤„ç†å¸¦ alpha 通é“的图åƒSVG 文件没有 指定大å°ï¼åˆ†æ•£ HSV(_C)...第二ç§é¢œè‰²(_E):选择窗å£å‰å»¶è¿Ÿ(_E)在此选择(_E):选择器(_E)显示光标(_H)收缩(_H)正弦(_I)强度指数(_T):力度(_T):æ¡çº¹(_T)主题(_U):交æ¢(_W)逆时针涡漩(_W)ä¿å­˜ Alpha 通é“(RGBA/RGB)(_V)相åŒæ ·å“分æž...样本色彩化色样密度(_D):样å“:颜色å–画笔的中心ä½ç½®çš„åƒç´ å€¼é¥±å’Œåº¦(_U)饱和度(_R)饱和度饱和度å˜åŒ–饱和度频率(_E):饱和度相移(_A):饱和度:ä¿å­˜ä¿å­˜ -设置ä¿å­˜(中间的å˜æ¢)为 QBE 文件ä¿å­˜ç”»ç¬”ä¿å­˜é€šé“æ··åˆå™¨è®¾ç½®ä¿å­˜å½“å‰å€¼å°†æ›²çº¿çš„点ä¿å­˜åˆ°æ–‡ä»¶ä¸­ä¿å­˜ EXIF æ•°æ®ä¿å­˜æ–‡ä»¶ä¿å­˜ç«ç„°ä¿å­˜åˆ†å½¢å‚æ•°ä¿å­˜å‡ ä½•å›¾å½¢ä¿å­˜å›¾åƒæ˜ åƒä¿å­˜å…‰ç…§é¢„设å‚æ•°ä¿å­˜è‡³ä¿å­˜èƒŒæ™¯è‰²(_B)ä¿å­˜é€æ˜Žåƒç´ çš„颜色值(_C)ä¿å­˜ Gamma(_G)ä¿å­˜åˆ†è¾¨çŽ‡(_R)ä¿å­˜åˆ†å½¢åˆ°æ–‡ä»¶ä¿å­˜ä¸º BMPä¿å­˜ä¸ºç”»ç¬”ä¿å­˜ä¸ºç”»ç¬”管é“ä¿å­˜ä¸º C 程åºä¿å­˜ä¸º GIFä¿å­˜ä¸º IFS 分形文件ä¿å­˜ä¸º JPEGä¿å­˜ä¸º MNGä¿å­˜ä¸º PNGä¿å­˜ä¸º PNMä¿å­˜ä¸º PSPä¿å­˜ä¸ºå›¾æ¡ˆä¿å­˜ä¸º PostScriptä¿å­˜ä¸º SGIä¿å­˜ä¸º SUNRASä¿å­˜ä¸º TGAä¿å­˜ä¸º TIFFä¿å­˜ä¸ºæ–‡æœ¬ä¿å­˜ä¸º XBMä¿å­˜åœ¨ XJTä¿å­˜ä¸º XPMä¿å­˜èƒŒæ™¯é¢œè‰²ä¿å­˜é€æ˜Žåƒç´ çš„颜色值(_V)ä¿å­˜æ³¨é‡Š(_N)ä¿å­˜åˆ›å»ºæ—¶é—´(_T)ä¿å­˜åˆ›å»ºæ—¶é—´ä¿å­˜å½“å‰å€¼...ä¿å­˜å¤±è´¥ä¿å­˜ Gammaä¿å­˜å›¾å±‚ä½ç§»(_F)ä¿å­˜åˆ†è¾¨çŽ‡ä¿å­˜å½“å‰çš„设定到指定文件将曲线ä¿å­˜åˆ°æ–‡ä»¶ä¿å­˜ç¼©ç•¥å›¾ä¿å­˜æ­£åœ¨ä¿å­˜â€œ%sâ€...锯齿(_T)缩放 1(_A):散射(_A):缩放 2(_L):å¯ç¼©æ”¾ SVG 图åƒè‰²è°ƒç¼©æ”¾ï¼šäº®åº¦ç¼©æ”¾ï¼šç¼©æ”¾ X:缩放 Y:缩放 Z:缩放为:将打å°å†…容缩放为纸张大å°ç¼©æ”¾ï¼šç¼©æ”¾ï¼šåˆ†æ•£ HSV分散 RGB正在分散 HSV...å±å¹•å±å¹•æŠ“图仅选区(_L)按æè¿°æœç´¢(_B)按åå­—æœç´¢(_N)正在æœç´¢ - 请等待正在按æè¿°æœç´¢ - 请等待正在按åå­—æœç´¢ - 请等待从左到å³ç¬¬äºŒç›®æ ‡é¢œè‰²äºŒæ¬¡é—ªå…‰ç»˜ç”»é€‰é¡¹ç¬¬äºŒæºé¢œè‰²ç¬¬äºŒç§é¢œè‰²ç§’秒éšæœºæ•°ç§å­(åªå¯¹â€œä»Žç§å­â€æ¨¡å¼)ç§å­ï¼šé€‰åŒºå‘¨å›´(_T)选择全部选择选择颜色选择胶å·é¢œè‰²é€‰æ‹© HTML 文件选择图åƒæ–‡ä»¶é€‰æ‹©åŽä¸€ä¸ªé€‰æ‹©æ•°å­—的颜色选择è¦åŠ è½½çš„色æ¿æ–‡ä»¶åƒç´ é€‰æ‹©æ–¹å¼é€‰æ‹©å‰ä¸€ä¸ªé€‰æ‹©åŒºåŸŸå…¨é€‰(_A)全选(_A)全部选择选择一个对象选择连续的区域选择连续的区域选择已有区域选择文件夹并刷新选集选择光æºçš„颜色选择åŽä¸€ä¸ªå°ºå¯¸å‘é‡é€‰æ‹©åŽä¸€ä¸ªå‘é‡é€‰æ‹©å‰ä¸€ä¸ªå°ºå¯¸å‘é‡é€‰æ‹©å‰ä¸€ä¸ªå‘é‡é€‰æ‹©æ–¹å‘:纵å‘,横å‘,上下颠倒,或者从左到å³(上下颠倒的横å‘)选择您的打å°æœºæ¨¡å—选择:选中:选区选区到路径高级设置选区的大å°ä¸æ˜¯å¶æ•°ã€‚ -å¯å¹³é“ºè¿·å®«æ— æ³•å¾ˆå¥½åœ°å·¥ä½œã€‚选区到路径...选择性高斯模糊选择性高斯模糊...选择性加载设置选择性的加载自æ¯ä¸€ç¬”都选择一个éšæœºçš„æ–¹å‘æ¯ä¸€ç¬”都选择一个éšæœºçš„大å°å¦‚果需è¦ç»“果图åƒèƒ½å¤Ÿæ— ç¼å¹³é“ºï¼Œè¯·é€‰ä¸­æ­¤é¡¹å¦‚果选中此项,超出图åƒè¾¹ç¼˜çš„也照样涂画正在进行åŠå¹³æ•´...移动到åŽç«¯å‘é€é‚®ä»¶åˆ†å‰²åˆ°ï¼š1999 å¹´ 9 月 31 日设置光æºçš„颜色设置打å°çš„亮度。 -0 是纯黑,2 是纯白设置打å°å¯¹æ¯”度设置打å°é«˜åº¦å°†æ‰“å°å¤§å°è®¾ä¸ºå›¾åƒå¤§å°è®¾ç½®æ‰“å°å®½åº¦è®¾ç½®å½“å‰æ˜ åƒæ–‡ä»¶è®¾ç½®è®¾ç½®æ‰“å°æœºè®¾ç½®æ‰“å°æœº...æš—(_D)阴影模糊:阴影加深:阴影深度:暗:二次闪光的形状尖é”边缘é”化正在é”化...切å˜ï¼šæ»‘移滑移é‡(_A):水平滑移(_H)垂直滑移(_V)正在滑移...应该è¦ä¸€ä¸ªå转的效果å—?应该ä¿æŒäº®åº¦å—?显示显示直线骨架在图åƒçª—å£ä¸­æ˜¾ç¤ºé¢„览(_P)显示全部对象显示区域的 URL æ示(_T)显示区域控制å—(_H)显示颜色éšè—控制点显示网格显示图åƒæ˜¾ç¤ºåŽä¸€ä¸ªå¯¹è±¡æ˜¾ç¤ºä½ç½®æ˜¾ç¤ºé¢„览网格(_W)显示å‰ä¸€ä¸ªå¯¹è±¡æ˜¾ç¤ºé€‰åŒºæ˜¾ç¤º/éšè—预览网格å•æ•°(_N):边数:Sierpinski简å•æ­£å¼¦(_U)正弦å•æ•°æ­£å¼¦æ­£å¼¦ï¼šæ­£åœ¨ç»˜åˆ¶...正弦大å°å¤§å°(%):大å°å› å­æ¸å˜ï¼šå°ºå¯¸åˆ†å¸ƒç¼–辑器大å°ï¼šå¤§å°ï¼šæ¶‚抹平滑色æ¿(_T)...平滑(_T)平滑(_H)平滑色æ¿å¹³æ»‘æ ·å“色彩平滑å‚数平滑:å锯齿化平滑度尺寸å‘é‡å¸é™„到网格Sobel正在进行 Sobel 边缘检测...Sobel 边缘检测Sobel æ°´å¹³(_H)Sobel åž‚ç›´(_V)柔光纯色纯色噪音纯色噪音...å•ä¸€é¢œè‰²çš„背景纯色一些数æ®å·²æ”¹å˜ï¼å¯¹ä¸èµ·ï¼Œæˆ‘åªèƒ½ä¿å­˜ç´¢å¼•å’Œç°åº¦å›¾åƒã€‚对ä¸èµ·ï¼Œæ— æ³•æ—‹è½¬é€šé“和蒙æ¿ã€‚æº 1ï¼šæº 2:文件中的æºé€šé“:æºé€šé“:æºé¢œè‰²èŒƒå›´æºæ–‡ä»¶...ç©—çš„æ•°é‡(_I):扩散(_R)...空间过采样(_T):间è·(百分比):间è·ï¼šç«èŠ±æ­£åœ¨ç»˜åˆ¶ç«èŠ±...空间å˜æ¢ç©ºé—´æ»¤é•œåŠå¾„(_F):没有找到指定的窗å£æŒ‡å®šåº”用到图åƒçš„浮雕效果é‡(百分比)指定画笔的宽高比指定æ质的缩放比例(按原始文件的百分比)å光:çƒä½“çƒé¢è®¾è®¡å™¨çƒé¢è®¾è®¡å™¨(_D)...çƒå½¢ç©—的角度(-1:éšæœº)(_K):Spider穗的密度(_E):光芒宽度:螺旋螺旋线的æ‹ç‚¹æ•°é‡ç‚¹åŠå¾„:斑点扩散扩散é‡æ­£åœ¨æ‰©æ•£...强度指数(_R):标准标准(R,G,B)星形的点的数é‡èµ·å§‹ç¼–å·(_I):起始角度:起始ä½ç§»ï¼šå•æ­¥å•æ­¥å¤§å°ï¼šå½“åƒç´ å·®åˆ«å°äºŽæ­¤å€¼æ—¶åœæ­¢æ‹‰ä¼¸æ‹‰ä¼¸ HSV(_H)笔划密度(_D):强风格超新星(_P)...细分:å­é‡‡æ ·ï¼šè¶…新星超新星颜色拾å–顺时针涡漩(_I)交æ¢ä¸¤æ¡æ›²çº¿æ—‹è½¬æŒ‰ä¸Šæ¬¡ç§å­åˆ‡æ¢è‡³â€œä»Žç§å­â€åˆ‡æ¢åˆ°é€†æ—¶é’ˆåˆ‡æ¢åˆ°é¡ºæ—¶é’ˆç¬¦å·TIFF 通é“TIFF 图åƒå¯å¹³é“º(_I)æ–¹å—饱和度(_I):瓦片大å°(_I):é€æ˜ŽèƒŒæ™¯(_R)弥散度(_U):弥散(_U)表格创建选项表格选项TarGA 图åƒç›®æ ‡Telnet(_N)临时临时过程文字å锯齿化æè´¨æ质属性æè´¨å˜æ¢æ质:æ质感谢您选择 GIMPGIF æ ¼å¼åªæ”¯æŒ 7 ä½ ASCII ç¼–ç çš„注释。注释没有被ä¿å­˜ã€‚没有安装 GIMP 帮助文件。å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)å°è±¡æ´¾è‰ºæœ¯å®¶é»˜è®¤å€¼PNG 文件中指定的ä½ç§»å¯¼è‡´å›¾å±‚定ä½åœ¨å›¾åƒä»¥å¤–。TIFF æ ¼å¼åªæ”¯æŒ 7 ä½ ASCII ç¼–ç  -的注释。注释没有被ä¿å­˜ã€‚表格å•å…ƒçš„衬垫宽度。表格å•å…ƒçš„é—´è·ã€‚æ¯ä¸ªå°å—边缘的高亮程度创建的第一个画笔的跨度选择最适åˆåŽŸå§‹å›¾åƒçš„画笔大å°é¢œè‰²ä¸ºé»‘色和白色。默认注释é™åˆ¶åœ¨ %d 个字节之内。阴影的深度,比如它应该离开物体多远选择最适åˆåŽŸå§‹å›¾åƒçš„æ–¹å‘笔划的方å‘由到图åƒä¸­å¿ƒçš„è·ç¦»å†³å®šç¬”划的大å°ç”±åˆ°å›¾åƒä¸­å¿ƒçš„è·ç¦»å†³å®šæ¯ä¸ªè¡¨æ ¼å•å…ƒçš„高度。å¯ä»¥æ˜¯ä¸€ä¸ªæ•°å­—或百分数。笔划的方å‘由区域的色调决定笔划的大å°ç”±åŒºåŸŸçš„色调决定您试图ä¿å­˜ä¸º GIF 的图åƒå«æœ‰è¶…出 +设置ä¿å­˜(中间的å˜æ¢)为 QBE 文件ä¿å­˜ç”»ç¬”ä¿å­˜é€šé“æ··åˆå™¨è®¾ç½®ä¿å­˜å½“å‰å€¼å°†æ›²çº¿çš„点ä¿å­˜åˆ°æ–‡ä»¶ä¸­ä¿å­˜ EXIF æ•°æ®ä¿å­˜æ–‡ä»¶ä¿å­˜ç«ç„°ä¿å­˜åˆ†å½¢å‚æ•°ä¿å­˜å‡ ä½•å›¾å½¢ä¿å­˜å›¾åƒæ˜ åƒä¿å­˜å…‰ç…§é¢„设å‚æ•°ä¿å­˜è‡³ä¿å­˜èƒŒæ™¯è‰²(_B)ä¿å­˜é€æ˜Žåƒç´ çš„颜色值(_C)ä¿å­˜ Gamma(_G)ä¿å­˜åˆ†è¾¨çŽ‡(_R)ä¿å­˜åˆ†å½¢åˆ°æ–‡ä»¶ä¿å­˜ä¸º BMPä¿å­˜ä¸ºç”»ç¬”ä¿å­˜ä¸ºç”»ç¬”管é“ä¿å­˜ä¸º C 程åºä¿å­˜ä¸º GIFä¿å­˜ä¸º IFS 分形文件ä¿å­˜ä¸º JPEGä¿å­˜ä¸º MNGä¿å­˜ä¸º PNGä¿å­˜ä¸º PNMä¿å­˜ä¸º PSPä¿å­˜ä¸ºå›¾æ¡ˆä¿å­˜ä¸º PostScriptä¿å­˜ä¸º SGIä¿å­˜ä¸º SUNRASä¿å­˜ä¸º TGAä¿å­˜ä¸º TIFFä¿å­˜ä¸ºæ–‡æœ¬ä¿å­˜ä¸º XBMä¿å­˜åœ¨ XJTä¿å­˜ä¸º XPMä¿å­˜èƒŒæ™¯é¢œè‰²ä¿å­˜é€æ˜Žåƒç´ çš„颜色值(_V)ä¿å­˜æ³¨é‡Š(_N)ä¿å­˜åˆ›å»ºæ—¶é—´(_T)ä¿å­˜åˆ›å»ºæ—¶é—´ä¿å­˜å½“å‰å€¼...ä¿å­˜å¤±è´¥ä¿å­˜ Gammaä¿å­˜å›¾å±‚ä½ç§»(_F)ä¿å­˜åˆ†è¾¨çŽ‡ä¿å­˜å½“å‰çš„设定到指定文件将曲线ä¿å­˜åˆ°æ–‡ä»¶ä¿å­˜ç¼©ç•¥å›¾ä¿å­˜æ­£åœ¨ä¿å­˜â€œ%sâ€...锯齿(_T)缩放 1(_A):散射(_A):缩放 2(_L):å¯ç¼©æ”¾ SVG 图åƒè‰²è°ƒç¼©æ”¾ï¼šäº®åº¦ç¼©æ”¾ï¼šç¼©æ”¾ X:缩放 Y:缩放 Z:缩放至:将打å°å†…容按æ¯è‹±å¯¸ç‚¹æ•°ç¼©æ”¾å°†æ‰“å°å†…容按页é¢å¤§å°ç¼©æ”¾ç¼©æ”¾ï¼šç¼©æ”¾ï¼šåˆ†æ•£ HSV分散 RGB正在分散 HSV...å±å¹•å±å¹•æŠ“图仅选区(_L)按æè¿°æœç´¢(_B)按åå­—æœç´¢(_N)正在æœç´¢ - 请等待正在按æè¿°æœç´¢ - 请等待正在按åå­—æœç´¢ - 请等待从左到å³ç¬¬äºŒç›®æ ‡é¢œè‰²äºŒæ¬¡é—ªå…‰ç»˜ç”»é€‰é¡¹ç¬¬äºŒæºé¢œè‰²ç¬¬äºŒç§é¢œè‰²ç§’秒éšæœºæ•°ç§å­(åªå¯¹â€œä»Žç§å­â€æ¨¡å¼)ç§å­ï¼šé€‰åŒºå‘¨å›´(_T)选择全部选择选择颜色选择胶å·é¢œè‰²é€‰æ‹© HTML 文件选择图åƒæ–‡ä»¶é€‰æ‹©åŽä¸€ä¸ªé€‰æ‹©æ•°å­—的颜色选择è¦åŠ è½½çš„色æ¿æ–‡ä»¶åƒç´ é€‰æ‹©æ–¹å¼é€‰æ‹©å‰ä¸€ä¸ªé€‰æ‹©åŒºåŸŸå…¨é€‰(_A)全选(_A)全部选择选择一个对象选择连续的区域选择连续的区域选择已有区域选择文件夹并刷新选集选择光æºçš„颜色选择åŽä¸€ä¸ªå°ºå¯¸çŸ¢é‡é€‰æ‹©åŽä¸€ä¸ªçŸ¢é‡é€‰æ‹©å‰ä¸€ä¸ªå°ºå¯¸çŸ¢é‡é€‰æ‹©å‰ä¸€ä¸ªçŸ¢é‡é€‰æ‹©æ‰“å°çš„基本衡é‡å•ä½é€‰æ‹©æƒ³è¦çš„输出类型选择您è¦æ‰“å°åˆ°çš„打å°æœºçš„åå­—(ä¸æ˜¯æ‰“å°æœºçš„类型或型å·)选择方å‘:纵å‘,横å‘,上下颠倒,或者从左到å³(上下颠倒的横å‘)选择按å¯ç”¨é¡µé¢å¤§å°çš„百分比或输出的æ¯è‹±å¯¸ç‚¹æ•°æ¥è¡¡é‡ç¼©æ”¾é€‰æ‹©æ‚¨çš„打å°æœºåž‹å·é€‰æ‹©ï¼šé€‰ä¸­ï¼šé€‰åŒºé€‰åŒºåˆ°è·¯å¾„高级设置选区的大å°ä¸æ˜¯å¶æ•°ã€‚ +å¯å¹³é“ºè¿·å®«æ— æ³•å¾ˆå¥½åœ°å·¥ä½œã€‚选区到路径...选择性高斯模糊选择性高斯模糊...选择性加载设置选择性的加载自æ¯ä¸€ç¬”都选择一个éšæœºçš„æ–¹å‘æ¯ä¸€ç¬”都选择一个éšæœºçš„大å°å¦‚果需è¦ç»“果图åƒèƒ½å¤Ÿæ— ç¼å¹³é“ºï¼Œè¯·é€‰ä¸­æ­¤é¡¹å¦‚果选中此项,超出图åƒè¾¹ç¼˜çš„也照样涂画正在进行åŠå¹³æ•´...移动到åŽç«¯å‘é€é‚®ä»¶åˆ†å‰²åˆ°ï¼š1999 å¹´ 9 月 31 日设置光æºçš„颜色基本衡é‡å•ä½è®¾ä¸ºåŽ˜ç±³åŸºæœ¬è¡¡é‡å•ä½è®¾ä¸ºè‹±å¯¸è®¾ç½®æ‰“å°çš„亮度。 +0 是纯黑,2 是纯白设置打å°å¯¹æ¯”度设置打å°é«˜åº¦å°†æ‰“å°å¤§å°è®¾ä¸ºå›¾åƒå¤§å°è®¾ç½®å›¾åƒçš„缩放(大å°)设置打å°å®½åº¦SetStretchBltMode 失败(åªæ˜¯è­¦å‘Š)设置当å‰æ˜ åƒæ–‡ä»¶è®¾ç½®è®¾ç½®æ‰“å°æœºè®¾ç½®æ‰“å°æœº...æš—(_D)阴影模糊:阴影加深:阴影深度:暗:二次闪光的形状尖é”边缘é”化正在é”化...切å˜ï¼šæ»‘移滑移é‡(_A):水平滑移(_H)垂直滑移(_V)正在滑移...应该è¦ä¸€ä¸ªå转的效果å—?应该ä¿æŒäº®åº¦å—?显示显示直线骨架在图åƒçª—å£ä¸­æ˜¾ç¤ºé¢„览(_P)显示全部对象显示区域的 URL æ示(_T)显示区域控制å—(_H)显示颜色éšè—控制点显示网格显示图åƒæ˜¾ç¤ºåŽä¸€ä¸ªå¯¹è±¡æ˜¾ç¤ºä½ç½®æ˜¾ç¤ºé¢„览网格(_W)显示å‰ä¸€ä¸ªå¯¹è±¡æ˜¾ç¤ºé€‰åŒºæ˜¾ç¤º/éšè—预览网格å•æ•°(_N):边数:SierpinskiSilicon Graphics IRIS 图åƒç®€å•æ­£å¼¦(_U)正弦å•æ•°æ­£å¼¦æ­£å¼¦ï¼šæ­£åœ¨ç»˜åˆ¶...正弦大å°å¤§å°(%):大å°å› å­æ¸å˜ï¼šå°ºå¯¸åˆ†å¸ƒç¼–辑器您è¦æ‰“å°çš„纸张尺寸大å°ï¼šå¤§å°ï¼šæœ€æ…¢ï¼Œä½†å¯¹è¿žç»­è‰²å½©çš„图åƒå’Œç…§ç‰‡æœ€ç²¾ç¡®å¹¶æœ€å¹³æ»‘涂抹平滑色æ¿(_T)...平滑(_T)平滑(_H)平滑色æ¿å¹³æ»‘æ ·å“色彩正在平滑 X 梯度...正在平滑 Y 梯度...平滑å‚数平滑:å锯齿化平滑度尺寸矢é‡å¸é™„到网格Sobel正在进行 Sobel 边缘检测...Sobel 边缘检测Sobel æ°´å¹³(_H)Sobel åž‚ç›´(_V)柔光纯色纯色噪音纯色噪音...å•ä¸€é¢œè‰²çš„背景纯色一些数æ®å·²æ”¹å˜ï¼å¯¹ä¸èµ·ï¼Œæˆ‘åªèƒ½ä¿å­˜ç´¢å¼•å’Œç°åº¦å›¾åƒã€‚对ä¸èµ·ï¼Œæ— æ³•æ—‹è½¬é€šé“和蒙æ¿ã€‚您è¦æ‰“å°çš„介质æ¥æº(输入槽)æº 1ï¼šæº 2:文件中的æºé€šé“:æºé€šé“:æºé¢œè‰²èŒƒå›´æºæ–‡ä»¶...ç©—çš„æ•°é‡(_I):扩散(_R)...空间过采样(_T):间è·(百分比):间è·ï¼šç«èŠ±æ­£åœ¨ç»˜åˆ¶ç«èŠ±...空间å˜æ¢ç©ºé—´æ»¤é•œåŠå¾„(_F):没有找到指定的窗å£æŒ‡å®šåº”用到图åƒçš„浮雕效果é‡(百分比)指定画笔的宽高比指定æ质的缩放比例(按原始文件的百分比)å光:çƒä½“çƒé¢è®¾è®¡å™¨çƒé¢è®¾è®¡å™¨(_D)...çƒå½¢ç©—的角度(-1:éšæœº)(_K):Spider穗的密度(_E):光芒宽度:螺旋螺旋线的æ‹ç‚¹æ•°é‡ç‚¹åŠå¾„:斑点扩散扩散é‡æ­£åœ¨æ‰©æ•£...强度指数(_R):标准标准(R,G,B)星形的点的数é‡èµ·å§‹ç¼–å·(_I):起始角度:起始ä½ç§»ï¼šStartPage 失败å•æ­¥å•æ­¥å¤§å°ï¼šå½“åƒç´ å·®åˆ«å°äºŽæ­¤å€¼æ—¶åœæ­¢æ‹‰ä¼¸æ‹‰ä¼¸ HSV(_H)StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) 失败,error = %d, y = %d笔划密度(_D):强风格超新星(_P)...细分:å­é‡‡æ ·ï¼šå­æ­¥æ•°ï¼šè¶…新星超新星颜色拾å–顺时针涡漩(_I)交æ¢ä¸¤æ¡æ›²çº¿æ—‹è½¬æŒ‰ä¸Šæ¬¡ç§å­åˆ‡æ¢è‡³â€œä»Žç§å­â€åˆ‡æ¢åˆ°é€†æ—¶é’ˆåˆ‡æ¢åˆ°é¡ºæ—¶é’ˆç¬¦å·TIFF 通é“TIFF 图åƒå¯å¹³é“º(_I)æ–¹å—饱和度(_I):瓦片大å°(_I):é€æ˜ŽèƒŒæ™¯(_R)弥散度(_U):弥散(_U)表格创建选项表格选项TarGA 图åƒç›®æ ‡Telnet(_N)临时临时过程文字å锯齿化æè´¨æ质属性æè´¨å˜æ¢æ质:æ质感谢您选择 GIMPGIF æ ¼å¼åªæ”¯æŒ 7 ä½ ASCII ç¼–ç çš„注释。注释没有被ä¿å­˜ã€‚没有安装 GIMP 帮助文件。å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)å°è±¡æ´¾è‰ºæœ¯å®¶é»˜è®¤å€¼PNG 文件中指定的ä½ç§»å¯¼è‡´å›¾å±‚定ä½åœ¨å›¾åƒä»¥å¤–。TIFF æ ¼å¼åªæ”¯æŒ 7 ä½ ASCII ç¼–ç  +的注释。注释没有被ä¿å­˜ã€‚表格å•å…ƒçš„衬垫宽度。表格å•å…ƒçš„é—´è·ã€‚æ¯ä¸ªå°å—边缘的高亮程度创建的第一个画笔的跨度选择最适åˆåŽŸå§‹å›¾åƒçš„画笔大å°é¢œè‰²ä¸ºé»‘色和白色。默认注释é™åˆ¶åœ¨ %d 个字节之内。阴影的深度,比如它应该离开物体多远选择最适åˆåŽŸå§‹å›¾åƒçš„æ–¹å‘笔划的方å‘由到图åƒä¸­å¿ƒçš„è·ç¦»å†³å®šç¬”划的大å°ç”±åˆ°å›¾åƒä¸­å¿ƒçš„è·ç¦»å†³å®šå›¾åƒçš„第一行æ¯ä¸ªè¡¨æ ¼å•å…ƒçš„高度。å¯ä»¥æ˜¯ä¸€ä¸ªæ•°å­—或百分数。笔划的方å‘由区域的色调决定笔划的大å°ç”±åŒºåŸŸçš„色调决定您试图ä¿å­˜ä¸º GIF 的图åƒå«æœ‰è¶…出 图åƒå®žé™…边界的图层。这在 GIF 中 是ä¸å…许的,我担心。 @@ -485,18 +538,18 @@ 您å¯ä»¥é€‰æ‹©è£æŽ‰æ‰€æœ‰å›¾å±‚ä¸­è¶…å‡ºå›¾åƒ è¾¹ç•Œçš„éƒ¨åˆ†ï¼Œæˆ–è€…æ”¾å¼ƒä¿å­˜ã€‚您正试图ä¿å­˜ä¸º XBM 的图åƒå«æœ‰ä¸¤ç§ä»¥ä¸Šçš„颜色。 -请将它转æ¢ä¸ºé»‘白(1 ä½)索引图åƒå¹¶é‡è¯•ã€‚è¦åˆ›å»ºçš„最大的画笔图层ä¿æŒé€æ˜Žåº¦ã€‚å字“%sâ€å·²ç»è¢«ä½¿ç”¨ï¼å字“%sâ€å·²ç»è¢«ä½¿ç”¨ï¼æ–¹å‘(比如画笔)使用的数é‡è¡¨æ ¼è¾¹æ¡†çš„åƒç´ ä¸ªæ•°ã€‚使用的画笔大å°çš„æ•°é‡å¯ä»¥ç”¨é¼ æ ‡ä¸­é”®æ‹–动预览æ¥è°ƒæ•´ä½ç§»ã€‚笔划的相对密度无法加载所请求的 URL:è¦åˆ›å»ºçš„最å°çš„画笔尺寸å‘é‡åŒºåŸŸã€‚点击左键移动选中的尺寸å‘é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中键添加新的尺寸å‘é‡ã€‚创建的第一个画笔的起始角度笔划在图åƒä¸­å‡åŒ€åˆ†å¸ƒç¬”划éµå¾ªæµçº¿æ¨¡å¼è¡¨æ ¼æ ‡é¢˜çš„文字。文字将出现在æ¯ä¸€ä¸ªè¡¨æ ¼å•å…ƒå½“中。ä¸æ”¯æŒè¿™ä¸ªç±»åž‹çš„ SUN-raster 文件此å•ä½çš„缩写(例如厘米的缩写是“cmâ€)。此å•ä½çš„å¤æ•°å½¢å¼ã€‚æ­¤å•ä½çš„å•æ•°å½¢å¼ã€‚æ­¤å•ä½çš„符å·ï¼Œå¦‚果有的è¯(例如英寸的符å·æ˜¯â€œ'â€)。如果此å•ä½æ²¡æœ‰ç¬¦å·åˆ™ä½¿ç”¨å®ƒçš„缩写。å‘é‡åŒºåŸŸã€‚点击左键移动选中的å‘é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中键添加一个新å‘é‡ã€‚æ¯ä¸ªè¡¨æ ¼å•å…ƒçš„宽度。å¯ä»¥æ˜¯ä¸€ä¸ªæ•°å­—或百分数。没有足够多的图层å¯ä»¥å¯¹é½ã€‚GIMP 帮助文件出现问题。这个区域是数字输入区域的æ示。它指定在此å•ä½çš„输入区域中,è¦å¾—到跟“英寸â€å°æ•°ç‚¹åŽä¸¤ä½ç›¸å½“的精确度,需è¦åœ¨å°æ•°ç‚¹åŽæ供多少ä½æ•°å­—。ä¸æ”¯æŒè¿™ä¸ªå›¾åƒæ·±åº¦ä¸æ˜¯ GIF 文件这个字符串将在 GIMP çš„é…置文件中用于唯一识别一个å•ä½ã€‚此工具没有选项阈值(_L):Alpha 阈值Alpha 阈值:正在修改é€æ˜Žåº¦...阈值:瓦片间è·(_E):平铺瓦片高度(_H):瓦片纯度(_N):瓦片宽度(_W):平铺æºå›¾åƒå¹³é“ºæºå›¾åƒï¼šå¯¹æ— é™å¤§çš„å¹³é¢æœ‰ç”¨å¹³é“ºåˆ°æ–°çš„大å°å°å—平铺å¯å¹³é“ºæ— ç¼å¤„ç†...瓦片形状正在平铺...到到颜色往下(_B)到æžé¢(_P)å¾€å³(_R)往上(_T)往左(_E)到:工具选项工具顶边界左上(_L)上:尾部(_A)正在传输 TWAIN æ•°æ®...å˜æ¢ %sé€æ˜Žé€æ˜ŽèƒŒæ™¯æŒ‰æ­¤è‰²å¯¹å¾…树状视图å°è¯•ç¼©å‡è¾¹ç•Œå¼¥æ•£åº¦ï¼šç±»åž‹é¢œè‰²è¡¨ç±»åž‹ä¸æ”¯æŒæ‰“å°æœºçš„墨水类型需è¦åº”用的光æºçš„类型è¦æ˜ å°„到的物体的类型类型:URLURL:%s正在å优化动画...无法添加更多的点。 +请将它转æ¢ä¸ºé»‘白(1 ä½)索引图åƒå¹¶é‡è¯•ã€‚è¦åˆ›å»ºçš„最大的画笔图层ä¿æŒé€æ˜Žåº¦ã€‚å字“%sâ€å·²ç»è¢«ä½¿ç”¨ï¼å字“%sâ€å·²ç»è¢«ä½¿ç”¨ï¼æ–¹å‘(比如画笔)使用的数é‡è¡¨æ ¼è¾¹æ¡†çš„åƒç´ ä¸ªæ•°ã€‚使用的画笔大å°çš„æ•°é‡å¯ä»¥ç”¨é¼ æ ‡ä¸­é”®æ‹–动预览æ¥è°ƒæ•´ä½ç§»ã€‚笔划的相对密度无法加载所请求的 URL:è¦åˆ›å»ºçš„最å°çš„画笔尺寸矢é‡åŒºåŸŸã€‚点击左键移动选中的尺寸矢é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中键添加新的尺寸矢é‡ã€‚创建的第一个画笔的起始角度笔划在图åƒä¸­å‡åŒ€åˆ†å¸ƒç¬”划éµå¾ªæµçº¿æ¨¡å¼è¡¨æ ¼æ ‡é¢˜çš„文字。文字将出现在æ¯ä¸€ä¸ªè¡¨æ ¼å•å…ƒå½“中。ä¸æ”¯æŒè¿™ä¸ªç±»åž‹çš„ SUN-raster 文件此å•ä½çš„缩写(例如厘米的缩写是“cmâ€)。此å•ä½çš„å¤æ•°å½¢å¼ã€‚æ­¤å•ä½çš„å•æ•°å½¢å¼ã€‚æ­¤å•ä½çš„符å·ï¼Œå¦‚果有的è¯(例如英寸的符å·æ˜¯â€œ'â€)。如果此å•ä½æ²¡æœ‰ç¬¦å·åˆ™ä½¿ç”¨å®ƒçš„缩写。矢é‡åŒºåŸŸã€‚点击左键移动选中的矢é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中键添加一个新矢é‡ã€‚æ¯ä¸ªè¡¨æ ¼å•å…ƒçš„宽度。å¯ä»¥æ˜¯ä¸€ä¸ªæ•°å­—或百分数。没有足够多的图层å¯ä»¥å¯¹é½ã€‚GIMP 帮助文件出现问题。这个区域是数字输入区域的æ示。它指定在此å•ä½çš„输入区域中,è¦å¾—到跟“英寸â€å°æ•°ç‚¹åŽä¸¤ä½ç›¸å½“的精确度,需è¦åœ¨å°æ•°ç‚¹åŽæ供多少ä½æ•°å­—。ä¸æ”¯æŒè¿™ä¸ªå›¾åƒæ·±åº¦ä¸æ˜¯ GIF 文件这个字符串将在 GIMP çš„é…置文件中用于唯一识别一个å•ä½ã€‚此工具没有选项阈值(_L):Alpha 阈值Alpha 阈值:正在修改é€æ˜Žåº¦...阈值:瓦片间è·(_E):平铺瓦片高度(_H):瓦片纯度(_N):瓦片宽度(_W):平铺æºå›¾åƒå¹³é“ºæºå›¾åƒï¼šå¯¹æ— é™å¤§çš„å¹³é¢æœ‰ç”¨å¹³é“ºåˆ°æ–°çš„大å°å°å—平铺å¯å¹³é“ºæ— ç¼å¤„ç†...瓦片形状正在平铺...到到颜色往下(_B)到æžé¢(_P)å¾€å³(_R)往上(_T)往左(_E)到:工具选项工具顶边界左上(_L)上:尾部(_A)正在传输 TWAIN æ•°æ®...å˜æ¢ %sé€æ˜Žé€æ˜ŽèƒŒæ™¯æŒ‰æ­¤è‰²å¯¹å¾…树状视图å°è¯•ç¼©å‡è¾¹ç•Œå¼¥æ•£åº¦ï¼šç±»åž‹é¢œè‰²è¡¨ç±»åž‹ä¸æ”¯æŒæ‰“å°æœºçš„墨水类型需è¦åº”用的光æºçš„类型您è¦æ‰“å°çš„介质类型è¦æ˜ å°„到的物体的类型类型:URLURL:%s正在å优化动画...无法添加更多的点。 无法ä¿å­˜â€œ%sâ€ã€‚psd 文件格å¼ä¸æ”¯æŒå®½åº¦æˆ–高度大于 30000 åƒç´ çš„图åƒã€‚无法ä¿å­˜â€œ%sâ€ã€‚psd 文件格å¼ä¸æ”¯æŒå®½åº¦æˆ–高度大于 30000 åƒç´ çš„图层。未压缩大å°ï¼š%s撤销撤销上次缩放å•ä½å•ä½ç¼–辑器å•ä½å› å­å¿…é¡»ä¸ä¸ºé›¶ã€‚å•ä½å•ä½ï¼šPNG 文件“%sâ€å­˜åœ¨æœªçŸ¥é¢œè‰²æ¨¡åž‹ã€‚未知原因未命å无法识别或无效的 BMP 压缩格å¼ã€‚å–消选择å–消全部选择虚光蒙æ¿ä¸æ”¯æŒçš„ä½æ·±åº¦(%d)ï¼ä¸æ”¯æŒçš„画笔格å¼ä¸æ”¯æŒçš„æ ¼å¼æˆ–剪贴æ¿ä¸ºç©ºï¼æ— æ ‡é¢˜æ›´æ–°æ›´æ–°é¢„览(_P)左上左上角 X(_X):左上角 Y(_Y):å³ä¸Šä¸Šä¸‹é¢ å€’使用å®å®šä¹‰è€Œä¸æ˜¯ç»“æž„(_E)使用 GIMP å‚考线...使用 GIMP å‚考线使用原始的 -图åƒå¤§å°ä½¿ç”¨å•å­—节 Run-Length-Encoding ç¼–ç (_1)使用é€æ˜Žçš„背景;åªæ˜¾çŽ°å·²ç»˜ç”»çš„笔划对该颜色分é‡ä½¿ç”¨ä½™å¼¦å‡½æ•°å¯¹è¯¥é¢œè‰²é€šé“使用线性映射而ä¸æ˜¯ä¸‰è§’函数使用 log log 平滑以消除结果中的“色带â€ä½¿ç”¨ loglog 平滑使用é‡æ–°å¼€å§‹æ ‡è®°å¯¹è¯¥é¢œè‰²åˆ†é‡ä½¿ç”¨æ­£å¼¦å‡½æ•°ä½¿ç”¨å­é¢œè‰²ä½¿ç”¨èƒŒæ™¯è‰²ä½¿ç”¨å›¾åƒçš„颜色使用å‰æ™¯è‰²äº®åº¦(_A)亮度亮度å转...颜色ç¹æ®–正在进行颜色ç¹æ®–...亮度å˜åŒ–亮度:凡高(LIC)凡高(LIC)...矢é‡è§’度(_A):矢é‡é•¿åº¦(_L):å‘é‡åž‚ç›´æ–¹å‘基准(_T):垂直垂直颜色垂直很深视频(_D)...视频视频模å¼è§†é¢‘/RGB...查看æºæ–‡ä»¶æ¼©æ¶¡(_X)漩涡 2(_2)漩涡 3(_3)WAIS(_S)WMF 文件没有 +图åƒå¤§å°ä½¿ç”¨å•å­—节 Run-Length-Encoding ç¼–ç (_1)使用é€æ˜Žçš„背景;åªæ˜¾çŽ°å·²ç»˜ç”»çš„笔划对该颜色分é‡ä½¿ç”¨ä½™å¼¦å‡½æ•°å¯¹è¯¥é¢œè‰²é€šé“使用线性映射而ä¸æ˜¯ä¸‰è§’函数使用 log log 平滑以消除结果中的“色带â€ä½¿ç”¨ loglog 平滑使用数é‡å›¾ä½¿ç”¨é‡æ–°å¼€å§‹æ ‡è®°å¯¹è¯¥é¢œè‰²åˆ†é‡ä½¿ç”¨æ­£å¼¦å‡½æ•°ä½¿ç”¨å­é¢œè‰²ä½¿ç”¨èƒŒæ™¯è‰²ä½¿ç”¨å›¾åƒçš„颜色使用å‰æ™¯è‰²äº®åº¦(_A)亮度亮度å转...颜色ç¹æ®–正在进行颜色ç¹æ®–...亮度å˜åŒ–亮度:凡高(LIC)凡高(LIC)...矢é‡è§’度(_A):矢é‡é•¿åº¦(_L):矢é‡å¤§å°ï¼šçŸ¢é‡åž‚ç›´æ–¹å‘基准(_T):垂直垂直颜色垂直很深视频(_D)...视频视频模å¼è§†é¢‘/RGB...查看æºæ–‡ä»¶æ¼©æ¶¡(_X)漩涡 2(_2)漩涡 3(_3)WAIS(_S)WMF 文件没有 指定大å°ï¼æ—‹è½¬ä¸ŽæŒ¤åŽ‹(_H)...与æºå›¾åƒ(_I)写附加的掩ç æ–‡ä»¶(_R)警告警告: 您正在加载的图åƒå«æœ‰ 16 ä½çš„通é“。GIMP åªèƒ½å¤„ç† 8 ä½ï¼Œå› æ­¤å·²å¸®æ‚¨è¿›è¡Œäº†è‡ªåŠ¨è½¬æ¢ã€‚转æ¢å°†é€ æˆä¿¡æ¯ä¸¢å¤±ã€‚警告: 如果查看器ä¸æ”¯æŒé€æ˜Žï¼Œæ‰€å†™æ–‡ä»¶ä¸­çš„é€æ˜Žé¢œè‰²å¯èƒ½æ— æ³•æ­£ç¡®æ˜¾ç¤ºã€‚警告:“%sâ€æ˜¯ä¸€ä¸ªæ¯”我还è¦æ–°çš„ CML 探索器的å‚数文件。警告:“%sâ€æ˜¯ä¸€ä¸ªæ—§æ ¼å¼çš„文件。警告:æºå’Œç›®æ ‡æ˜¯åŒä¸€ä¸ªé€šé“。警告:ä¸æ”¯æŒçš„å›¾å±‚æ¨¡å¼ %d ä¿å­˜åˆ°äº† XJT警告:ä¸æ”¯æŒçš„路径类型 %d ä¿å­˜åˆ°äº† XJT警告:ä¸æ”¯æŒçš„å•ä½ç±»åž‹ %d ä¿å­˜åˆ°äº† XJT翘曲正在翘曲帧 No. %d...正在翘曲...波的类型波正在绘制波...弱没有指定 Web æµè§ˆå™¨ã€‚ -请使用首选项对è¯æ¡†æŒ‡å®šä¸€ä¸ªæµè§ˆå™¨ã€‚如果选中,图åƒå°†ä¼šç¼©æ”¾åˆ°ç»™å®šçš„大å°å¹¶ä¸”ä¸ä¼šæ”¹å˜åŽŸæ¥çš„宽高比。旋转与挤压正在旋转与挤压...白色风(_N)...宽度(åƒç´ ):宽度:风窗å£Windows BMP 图åƒWindows 图标ä¸èƒ½é«˜äºŽæˆ–宽于 255 åƒç´ ã€‚木纹在副本中æ“作(_Y)环绕出现写错误X BitMap 图åƒX PixMap 图åƒX 缩放(大å°)X:XBM 选项XJT 文件å«æœ‰æœªçŸ¥çš„å›¾å±‚æ¨¡å¼ %dXJT 文件å«æœ‰æœªçŸ¥çš„路径类型 %dXJT 文件å«æœ‰æœªçŸ¥çš„å•ä½ç±»åž‹ %dXMAX:XMIN:无效的 XPM 文件XWD 文件 %s çš„æ ¼å¼ä¸º %d,深度为 %d, +请使用首选项对è¯æ¡†æŒ‡å®šä¸€ä¸ªæµè§ˆå™¨ã€‚如果选中,图åƒå°†ä¼šç¼©æ”¾åˆ°ç»™å®šçš„大å°å¹¶ä¸”ä¸ä¼šæ”¹å˜åŽŸæ¥çš„宽高比。旋转与挤压正在旋转与挤压...白色风(_N)...宽度(åƒç´ ):您è¦æ‰“å°çš„纸张宽度宽度:风窗å£Windows BMP 图åƒWindows 图标ä¸èƒ½é«˜äºŽæˆ–宽于 255 åƒç´ ã€‚木纹在副本中æ“作(_Y)环绕出现写错误X BitMap 图åƒX PixMap 图åƒX 缩放(大å°)X:XBM 选项XJT 文件å«æœ‰æœªçŸ¥çš„å›¾å±‚æ¨¡å¼ %dXJT 文件å«æœ‰æœªçŸ¥çš„路径类型 %dXJT 文件å«æœ‰æœªçŸ¥çš„å•ä½ç±»åž‹ %dXMAX:XMIN:无效的 XPM 文件XWD 文件 %s çš„æ ¼å¼ä¸º %d,深度为 %d, å•ä½åƒç´ çš„ä½æ•°ä¸º %d。 ç›®å‰è¿˜ä¸æ”¯æŒã€‚XY ä½ç½®ï¼šX1(_1):X2(_2):Y 缩放(大å°)Y:YMAX:YMIN:Y1(_1):Y2(_2):黄色黄色:黄色_黑您正试图创建一个很å¯èƒ½è®© 您的æµè§ˆå™¨å´©æºƒçš„巨大的 HTML 文件。如果存在浮动选区,您将ä¸èƒ½æ—‹è½¬æ•´ä¸ªå›¾åƒã€‚如果存在选区,您将ä¸èƒ½æ—‹è½¬æ•´ä¸ªå›¾åƒã€‚您ä¸èƒ½å¯¹ä¸€å¹…没有 alpha 通é“çš„ -图åƒä¿å­˜å…‰æ ‡æŽ©ç ã€‚Y 缩放(大å°)Z:正在进行积æžå‰ªè£(tm)...缩放放大移近(使图åƒå˜å¤§)缩å°ç§»è¿œ(使图åƒå˜å°)缩放比:缩放至3x3(_3)缩写(_A):关于图åƒæ˜ åƒ(_A)适应(_A)添加(_A)高级(_A)高级选项(_A)算法(_A):Alpha(_A)Alpha 阈值(_A):Alpha 修整平å‡(_A)Alpha(_A):é‡(_A):幅度(_A):角度(_A):动画(_A)边缘平滑(_A)使用画布(_A)...自动剪è£å›¾åƒ(_A)自动剪è£å›¾å±‚(_A)自动转æ¢(_A)æžè§’(_A):背景(_B)背景色(_B)åŸºå€ URL(_B):切痕宽度(_B):åŒçº¿æ€§(_B)黑色(_B)黑色水平(_B):å˜é»‘(_B)劲风(_B)æ··å’Œ(_B)百å¶çª—帘(_B)...è“色(_B)è“色(_B):模糊(_B)模糊åŠå¾„(_B):边界å‡å€¼(_B)...边框(_B):左下(_B)下(_B):方盒(_B)亮度(_B):亮度(_B)亮度(_B):画笔(_B)油漆桶大å°(_B):凹凸贴图(_B)凹凸贴图(_B)...凹凸贴图(_B):凹凸贴图(_B)棋盘(_C)...清除颜色增强(_C)...颜色å˜æ¢(_C)...å•è‰²åŒ–(_C)...内容(_C)å·ç§¯çŸ©é˜µ(_C)...å¤åˆ¶(_C)立体派(_C)...曲线扭曲(_C)...分解(_D)...å˜å½¢åŠå¾„(_D):去除交错(_D)...没有指明的帧之间的延时(_D):深度åˆå¹¶(_D)...深度(_D):派生(_D)æè¿°(_D):细节(_D):è¡å°„图案(_D)...ä½æ•°(_D):膨胀(_D)移ä½(_D)...旋转角度(_D):扭曲(_D)分裂(_D):点(_D)动æ€(_D):边缘增强(_E)边缘(_E)...编辑(_E)效果图åƒ(_E):仰角(_E):浮雕(_E)浮雕(_E)...å°è£…çš„ PostScript (EPS)(_E)整幅图åƒ(_E)环境映射(_E)指定的å°å—(_E)指数(_E):å‰æ™¯/背景光照(_F)å› å­(_F):工厂默认值(_F)文件(_F)文件å(_F):胶å·(_F)...组åˆæ»¤é•œ(_F)...滤镜长度(_F):寻找背景(_F)以图åƒçš„高度为准(_F)ç«ç„°(_F)...闪光(FlareFX)(_F)...字体(_F):强制(_F)强制平铺(_F)?å‰æ™¯å’ŒèƒŒæ™¯(_F)å‰æ™¯è‰²(_F)å‰æ™¯è‰²åˆ°å³°å€¼(_F)æ ¼å¼(_F):分形探索器(_F)...分形追溯(_F)...分形(_F)自由(_F)Ftp 站点(_F)æ¸å˜é—ªå…‰(GFlare)(_G)...GIF 注释(_G):å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)(_G)...Gamma(_G):高斯模糊(_G)...通用(_G)生æˆå®Œæ•´çš„ HTML 文档(_G)几何图形(Gfig)(_G)...玻璃瓦片(_G)...åŠå¾„(_G):炽光(_G):Gopher(_G)æ¸å˜(_G)æ¸å˜æ˜ å°„(_G)ç°è‰²(_G):绿色(_G)绿色(_G):ç°è‰²(_G)网格网格大å°(_G):网格(_G)...膨胀(_G)分å—(_G)HSL 色彩模å¼(_H)高度(_H)高度(_H):帮助(_H)è±å½¢(_H)éšè—(_H)高(_H):ä¿ç•™æœ€å¤§çš„通é“(_H)ä¿æŒåº¦(_H):å°å­”ä½ç§»(_H):水平(_H)水平方å‘风格(_H):水平(_H):水平间è·(_H):å点(_H)...色调(_H)色调旋转(_H):撒(_H)...ID(_I):IFS 分形(_I)...IIR(_I)交互å¼ç¿˜æ›²(IWrap)(_I)...ç†æƒ³(_I)标识符å‰ç¼€(_I):忽略(_I)å³ä½¿å¯è§ä¹Ÿå¿½ç•¥åº•éƒ¨å›¾å±‚(_I)幻象(_I)...图åƒæ˜ åƒ(_I)...英寸(_I)RGB ä¸ç›¸å…³(_I)输入 SPI (_I):æ’å…¥(_I)强度(_I):交错(_I)交错储存(Adam7)(_I)å转(_I)JPEG(_J)JavaScript(_J)拼图(_J)...ä¿æŒå®½é«˜æ¯”(_K)ä¿æŒå‘¨å›´çš„原始环境(_K)ä¿ç•™ç»“果中的痕迹(ä»…å•å‘)(_K)删除(_K)LZW(_L)拉普拉斯(_L)大栅格(_L)å·¦(_L)左端开始于(_L):é€é•œæŠ˜å°„率(_L):光线(_L)光照效果(_L)...é™åˆ¶çº¿å®½(_L)线性(_L)虚线(_L)连接(_L)加载默认值(_L)é”定通é“(_L)åå¤å¾ªçŽ¯(_L)低(_L)下部(_L)MIME(_M)邮寄图åƒ(_M)...æ— ç¼å¤„ç†(_M)使环境å˜ä¸ºé€æ˜Ž(_M)åå‘映射(_M)映射类型(_M):映åƒ(_M)掩ç æ–‡ä»¶æ‰©å±•å(_M):蒙æ¿åŠå¾„(_M):色å—大å°(_M):æè´¨(_M)最大(_M) (%):最大深度(_M):RGB 最大(_M)...最大åå·®(_M):迷宫(_M)...中值到峰值(_M)中(_M)毫米(_M)最å°å€¼(_M):镜åƒ(_M)æ‚项(_M)修改色调通é“(_M)修改红色通é“(_M)å•è‰²(_M)马赛克(_M)...动æ€æ¨¡ç³Š(_M)...移动(_M)éžçº¿æ€§æ»¤æ³¢(_N)...自然色(_N)æ°–(_N)...横å‘æ•°é‡(_N):噪音é‡çº§(_N):无(_N)普通(_N)标准化(_N)数字高度(_N):å—æ•°(_N):ä¸é€æ˜Žåº¦(_O):优化(差值)(_O)页é¢å·æ›²(_P)...色æ¿ç±»åž‹(_P):纸片平铺(_P)...å‚æ•°(_P)黑色百分比(_P):周期(_P):相ä½(_P):影å°(_P)...æ¡(_P)...挤压é‡(_P):乒乓(_P)粒状表é¢(_P)åƒç´ åŒ–(_P)...五彩缤纷(Plasma)(_P)...回放(_P)...æ’件æµè§ˆå™¨(_P)å¤æ•°(_P):抛光(_P):多边形(_P)PostScript level 2(_P)å‰ç¼€åå­—(_P):ä¿æŒäº®åº¦(_P)预设(_P)预览(_P)预览一下(_P)预览(_P)ï¼æ‰“å°(_P)打å°(_P)...æ示区域信æ¯(_P)ç¹æ®–率(_P):狂想(_P)Qbist(_Q)...è´¨é‡(_Q):RGB(_R)RGB 色彩模å¼(_R)RLE(_R)RLE 压缩(_R)RLE ç¼–ç (_R)转å‘(_R)åŠå¾„ 1(_R):åŠå¾„(_R):éšæœºè‰²è°ƒ(_R):éšæœºæ•°ç§å­(_R):éšæœºäº§ç”Ÿ(_R)射线(_R)收件人(_R):矩形(_R)红色(_R):é‡åš(_R) %så射率(_R)删除(_R)去除背景(_R)绘制(_R)è¦æ±‚默认 URL(_R)ä¿æŒå¯å¹³é“º(_R)_Retinex...å³(_R)å³è¾¹ç•Œ(_R)波纹(_R)...旋转(_R)样本色彩化(_S)...饱和度(_S)饱和度(_S):ä¿å­˜æ³¨é‡Šåˆ°æ–‡ä»¶(_S)ä¿å­˜é»˜è®¤å€¼(_S)标度分格(_S):缩放(_S):分散 RGB(_S)...å±å¹•æŠ“图(_S)...æœç´¢æ·±åº¦(_S):æœç´¢(_S):二次闪光(_S)选择性高斯模糊(_S)...åŠå¹³æ•´(_S)å‘件人(_S):设置环境为背景色(_S)设置环境为索引 0(_S)设置(_S)å·æ›²å¤„带阴影(_S)é”化(_S)...é”度(_S):滑移(_S)...高光亮度(_S):显示光标(_S)正弦(_S)...大å°(_S)大å°(_S):糊(_S)...å°å—平铺(_S)...涂抹(_S)平滑(_S):å¸é™„到网格(_S)Sobel(_S)...柔光(_S)纯色噪音(_S)...ç«èŠ±(_S)...速度(_S):穗的长度(_S):è¾æ¡(_S):点的形状(_S):方形(_S)æ–¹å—(_S)æ …æ ¼(_S)力度(_S):拉伸对比度(_S)勾画(_S)符å·(_S):TWAIN(_T)...目标页框åå­—/ID(_T):(å¯é€‰ - åªå¯¹é¡µæ¡†ä½¿ç”¨)宽度(_T):阈值(_T)Alpha 阈值(_T)...阈值(_T):平铺凹凸贴图(_T)æ–¹å—大å°(_T):平铺(_T)...标题(_T):工具(_T)顶端开始于(_T):å³ä¸Š(_T)上(_T):é€æ˜Ž(_T)此区域被点击时激活的 URL(_U):(需è¦)å优化(_U)撤销撤销(_U) %så‡åŒ€(_U)å•ä½ç¼–辑器(_U)虚光蒙æ¿(_U)...æ›´æ–°(_U)上部(_U)上边界(_U)高端阈值(_U):使用 GLib 类型(guint8*)(_U)使用背景色(_U)使用 cellspan(_U)使用åŒå€å¤§å°çš„抓柄(_U)使用强度算法(_U)使用(ä¸å¯è§çš„)底部图层作为基准(_U)Uuencode(_U)亮度(_V)亮度å转(_V)颜色ç¹æ®–(_V)...亮度(_V):凡高(LIC)(_V)...å˜åŒ–(_V):垂直间è·(_V):垂直(_V)åž‚ç›´æ–¹å‘风格(_V):竖直(_V):查看(_V)环绕(_W)翘曲(_W)...æ°´å¹³(_W):波长(_W):波(_W)...Web 站点(_W)旋转角度(_W):白色(_W)白色水平(_W):宽æ¡çº¹(_W)宽度(_W)宽度(_W):风(_W)与白色噪音(_W)环绕(_W)环绕(_W)写入热点åæ ‡(_W)X 缩放(_X):X 移ä½(_X):X ä½ç§»(_X):X 比率(_X):X 大å°(_X):X10 æ ¼å¼ä½å›¾(_X)X(_X):Y 缩放(_Y):Y 移ä½(_Y):Y ä½ç§»(_Y):Y 比率(_Y):Y 大å°(_Y):Y(_Y):黄色(_Y)Z(_Z):积æžå‰ªè£(_Z)缩放(_Z)缩放(_Z):创建“默认â€ã€‚å•ä¸ªçª—å£(_S)延迟alphaautostretch_hsv:cmap 为空ï¼é€€å‡º +图åƒä¿å­˜å…‰æ ‡æŽ©ç ã€‚Y 缩放(大å°)Z:ZSoft PCX 图åƒæ­£åœ¨è¿›è¡Œç§¯æžå‰ªè£(tm)...缩放放大移近(使图åƒå˜å¤§)缩å°ç§»è¿œ(使图åƒå˜å°)缩放比:缩放至3x3(_3)缩写(_A):关于图åƒæ˜ åƒ(_A)适应(_A)添加(_A)高级(_A)高级选项(_A)算法(_A):Alpha(_A)Alpha 阈值(_A):Alpha 修整平å‡(_A)Alpha(_A):é‡(_A):幅度(_A):角度(_A):动画(_A)边缘平滑(_A)使用画布(_A)...自动剪è£å›¾åƒ(_A)自动剪è£å›¾å±‚(_A)自动转æ¢(_A)æžè§’(_A):背景(_B)背景色(_B)åŸºå€ URL(_B):切痕宽度(_B):åŒçº¿æ€§(_B)黑色(_B)黑色水平(_B):å˜é»‘(_B)劲风(_B)æ··å’Œ(_B)百å¶çª—帘(_B)...è“色(_B)è“色(_B):模糊(_B)模糊åŠå¾„(_B):边界å‡å€¼(_B)...边框(_B):左下(_B)下(_B):方盒(_B)亮度(_B):亮度(_B)亮度(_B):画笔(_B)油漆桶大å°(_B):凹凸贴图(_B)凹凸贴图(_B)...凹凸贴图(_B):凹凸贴图(_B)棋盘(_C)...清除(_C)颜色增强(_C)...颜色å˜æ¢(_C)...å•è‰²åŒ–(_C)...内容(_C)å·ç§¯çŸ©é˜µ(_C)...å¤åˆ¶(_C)立体派(_C)...曲线扭曲(_C)...分解(_D)...å˜å½¢åŠå¾„(_D):去除交错(_D)...没有指明的帧之间的延时(_D):深度åˆå¹¶(_D)...深度(_D):派生(_D)æè¿°(_D):细节(_D):è¡å°„图案(_D)...ä½æ•°(_D):膨胀(_D)移ä½(_D)...旋转角度(_D):扭曲(_D)分裂(_D):点(_D)动æ€(_D):边缘增强(_E)边缘(_E)...编辑(_E)效果图åƒ(_E):仰角(_E):浮雕(_E)浮雕(_E)...å°è£…çš„ PostScript (EPS)(_E)整幅图åƒ(_E)环境映射(_E)指定的å°å—(_E)指数(_E):å‰æ™¯/背景光照(_F)å› å­(_F):工厂默认值(_F)文件(_F)文件å(_F):胶å·(_F)...组åˆæ»¤é•œ(_F)...滤镜长度(_F):寻找背景(_F)以图åƒçš„高度为准(_F)ç«ç„°(_F)...闪光(FlareFX)(_F)...字体(_F):强制(_F)强制平铺(_F)?å‰æ™¯å’ŒèƒŒæ™¯(_F)å‰æ™¯è‰²(_F)å‰æ™¯è‰²åˆ°å³°å€¼(_F)æ ¼å¼(_F):分形探索器(_F)...分形追溯(_F)...分形(_F)自由(_F)Ftp 站点(_F)æ¸å˜é—ªå…‰(GFlare)(_G)...GIF 注释(_G):å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)(_G)...Gamma(_G):高斯模糊(_G)...通用(_G)生æˆå®Œæ•´çš„ HTML 文档(_G)几何图形(Gfig)(_G)...玻璃瓦片(_G)...åŠå¾„(_G):炽光(_G):Gopher(_G)æ¸å˜(_G)æ¸å˜æ˜ å°„(_G)ç°è‰²(_G):绿色(_G)绿色(_G):ç°è‰²(_G)网格(_G)网格大å°(_G):网格(_G)...膨胀(_G)分å—(_G)HSL 色彩模å¼(_H)高度(_H)高度(_H):帮助(_H)è±å½¢(_H)éšè—(_H)高(_H):ä¿ç•™æœ€å¤§çš„通é“(_H)ä¿æŒåº¦(_H):å°å­”ä½ç§»(_H):水平(_H)水平方å‘风格(_H):水平(_H):水平间è·(_H):å点(_H)...色调(_H)色调旋转(_H):撒(_H)...ID(_I):IFS 分形(_I)...IIR(_I)交互å¼ç¿˜æ›²(IWrap)(_I)...ç†æƒ³(_I)标识符å‰ç¼€(_I):忽略(_I)å³ä½¿å¯è§ä¹Ÿå¿½ç•¥åº•éƒ¨å›¾å±‚(_I)幻象(_I)...图åƒæ˜ åƒ(_I)...英寸(_I)RGB ä¸ç›¸å…³(_I)输入 SPI (_I):æ’å…¥(_I)强度(_I):交错(_I)交错储存(Adam7)(_I)å转(_I)JPEG(_J)JavaScript(_J)拼图(_J)...ä¿æŒ NCSA 圆为真(true)(_K)ä¿æŒå®½é«˜æ¯”(_K)ä¿æŒå‘¨å›´çš„原始环境(_K)ä¿ç•™ç»“果中的痕迹(ä»…å•å‘)(_K)删除(_K)LZW(_L)拉普拉斯(_L)大栅格(_L)å·¦(_L)左端开始于(_L):é€é•œæŠ˜å°„率(_L):光线(_L)光照效果(_L)...é™åˆ¶çº¿å®½(_L)线性(_L)虚线(_L)连接(_L)加载默认值(_L)é”定通é“(_L)åå¤å¾ªçŽ¯(_L)低(_L)下部(_L)MIME(_M)邮寄图åƒ(_M)...æ— ç¼å¤„ç†(_M)使环境å˜ä¸ºé€æ˜Ž(_M)åå‘映射(_M)映射类型(_M):映åƒ(_M)掩ç æ–‡ä»¶æ‰©å±•å(_M):蒙æ¿åŠå¾„(_M):色å—大å°(_M):æè´¨(_M)最大(_M) (%):最大深度(_M):RGB 最大(_M)...最大åå·®(_M):迷宫(_M)...金属光泽(_M)中值到峰值(_M)中(_M)毫米(_M)最å°å€¼(_M):镜åƒ(_M)æ‚项(_M)修改色调通é“(_M)修改红色通é“(_M)å•è‰²(_M)马赛克(_M)...动æ€æ¨¡ç³Š(_M)...移动(_M)éžçº¿æ€§æ»¤æ³¢(_N)...自然色(_N)æ°–(_N)...横å‘æ•°é‡(_N):噪音é‡çº§(_N):无(_N)普通(_N)标准化(_N)数字高度(_N):å—æ•°(_N):ä¸é€æ˜Žåº¦(_O):优化(差值)(_O)页é¢å·æ›²(_P)...色æ¿ç±»åž‹(_P):纸片平铺(_P)...å‚æ•°(_P)黑色百分比(_P):周期(_P):相ä½(_P):影å°(_P)...æ¡(_P)...挤压é‡(_P):乒乓(_P)粒状表é¢(_P)åƒç´ åŒ–(_P)...五彩缤纷(Plasma)(_P)...回放(_P)...æ’件æµè§ˆå™¨(_P)å¤æ•°(_P):抛光(_P):多边形(_P)PostScript level 2(_P)å‰ç¼€åå­—(_P):ä¿æŒäº®åº¦(_P)预设(_P)预览(_P)预览一下(_P)预览(_P)ï¼æ‰“å°(_P)打å°(_P)...æ示区域信æ¯(_P)ç¹æ®–率(_P):狂想(_P)Qbist(_Q)...è´¨é‡(_Q):RGB(_R)RGB 色彩模å¼(_R)RLE(_R)RLE 压缩(_R)RLE ç¼–ç (_R)转å‘(_R)åŠå¾„ 1(_R):åŠå¾„(_R):éšæœºè‰²è°ƒ(_R):éšæœºæ•°ç§å­(_R):éšæœºäº§ç”Ÿ(_R)射线(_R)收件人(_R):矩形(_R)红色(_R):é‡åš(_R) %så射率(_R)删除(_R)去除背景(_R)绘制(_R)è¦æ±‚默认 URL(_R)ä¿æŒå¯å¹³é“º(_R)_Retinex...å³(_R)å³è¾¹ç•Œ(_R)波纹(_R)...旋转(_R)样本色彩化(_S)...饱和度(_S)饱和度(_S):ä¿å­˜æ³¨é‡Šåˆ°æ–‡ä»¶(_S)ä¿å­˜é»˜è®¤å€¼(_S)标度分格(_S):缩放(_S):分散 RGB(_S)...å±å¹•æŠ“图(_S)...æœç´¢æ·±åº¦(_S):æœç´¢(_S):二次闪光(_S)选择性高斯模糊(_S)...åŠå¹³æ•´(_S)å‘件人(_S):设置环境为背景色(_S)设置环境为索引 0(_S)设置(_S)å·æ›²å¤„带阴影(_S)é”化(_S)...é”度(_S):滑移(_S)...高光亮度(_S):显示光标(_S)正弦(_S)...大å°(_S)大å°(_S):糊(_S)...å°å—平铺(_S)...涂抹(_S)平滑(_S):å¸é™„到网格(_S)Sobel(_S)...柔光(_S)纯色噪音(_S)...ç«èŠ±(_S)...速度(_S):穗的长度(_S):è¾æ¡(_S):点的形状(_S):方形(_S)æ–¹å—(_S)æ …æ ¼(_S)力度(_S):拉伸对比度(_S)勾画(_S)符å·(_S):TWAIN(_T)...目标页框åå­—/ID(_T):(å¯é€‰ - åªå¯¹é¡µæ¡†ä½¿ç”¨)宽度(_T):阈值(_T)Alpha 阈值(_T)...阈值(_T):平铺凹凸贴图(_T)æ–¹å—大å°(_T):平铺(_T)...标题(_T):工具(_T)顶端开始于(_T):å³ä¸Š(_T)上(_T):é€æ˜Ž(_T)此区域被点击时激活的 URL(_U):(需è¦)å优化(_U)撤销(_U)撤销(_U) %så‡åŒ€(_U)å•ä½ç¼–辑器(_U)虚光蒙æ¿(_U)...æ›´æ–°(_U)上部(_U)上边界(_U)高端阈值(_U):使用 GLib 类型(guint8*)(_U)使用背景色(_U)使用 cellspan(_U)使用åŒå€å¤§å°çš„抓柄(_U)使用强度算法(_U)使用(ä¸å¯è§çš„)底部图层作为基准(_U)Uuencode(_U)亮度(_V)亮度å转(_V)颜色ç¹æ®–(_V)...亮度(_V):凡高(LIC)(_V)...å˜åŒ–(_V):垂直间è·(_V):垂直(_V)åž‚ç›´æ–¹å‘风格(_V):竖直(_V):查看(_V)环绕(_W)翘曲(_W)...æ°´å¹³(_W):波长(_W):波(_W)...Web 站点(_W)旋转角度(_W):白色(_W)白色水平(_W):宽æ¡çº¹(_W)宽度(_W)宽度(_W):风(_W)与白色噪音(_W)环绕(_W)环绕(_W)写入热点åæ ‡(_W)X 缩放(_X):X 移ä½(_X):X ä½ç§»(_X):X 比率(_X):X 大å°(_X):X10 æ ¼å¼ä½å›¾(_X)X(_X):Y 缩放(_Y):Y 移ä½(_Y):Y ä½ç§»(_Y):Y 比率(_Y):Y 大å°(_Y):Y(_Y):黄色(_Y)Z(_Z):积æžå‰ªè£(_Z)缩放(_Z)缩放(_Z):创建“默认â€ã€‚å•ä¸ªçª—å£(_S)延迟alphaautostretch_hsv:cmap 为空ï¼é€€å‡º blackblueè“色差_cb470è“色差_cb470fè“色差_cb709è“色差_cb709fbzip å½’æ¡£c_astretch:cmap 为空ï¼é€€å‡º... 厘米cyancyan_k电å­é‚®ä»¶(_M)greengzip å½’æ¡£hue无效的æ¸å˜é—ªå…‰æ–‡ä»¶æ ¼å¼ï¼š%s k(1-x^p)kx^pk{x(1-x)}^p亮度_y470亮度_y470f亮度_y709亮度_y709fmagentamagenta_k毫秒在 gflares_list 中没有找到 %såƒç´ é¡¶ç«¯åƒç´ (_T)左端åƒç´ (_E)åƒç´ /%ared红色差_cr470红色差_cr470f红色差_cr709红色差_cr709fsaturation文件扩展å缺失或者存在æŸç§é”™è¯¯æ•´ä¸ªå±å¹•(_W)到 AlphavalueX (åƒç´ )Y (åƒç´ )yellowyellow_k \ No newline at end of file diff -uraN gimp-2.2.8/po-plug-ins/zh_CN.po gimp-2.2.9/po-plug-ins/zh_CN.po --- gimp-2.2.8/po-plug-ins/zh_CN.po 2005-05-08 23:42:20.000000000 +0200 +++ gimp-2.2.9/po-plug-ins/zh_CN.po 2005-08-15 12:07:08.000000000 +0200 @@ -1,13 +1,13 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. -# Yuheng Xie , 2001-2004. +# Yuheng Xie , 2001-2005. # msgid "" msgstr "" "Project-Id-Version: gimp-std-plugins\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2005-05-08 12:28+0200\n" -"PO-Revision-Date: 2005-01-09 19:30+0800\n" +"PO-Revision-Date: 2005-08-10 17:30+0800\n" "Last-Translator: Yuheng Xie \n" "Language-Team: zh_CN \n" "MIME-Version: 1.0\n" @@ -762,7 +762,7 @@ #. Metallic #: ../plug-ins/Lighting/lighting_ui.c:687 msgid "_Metallic" -msgstr "" +msgstr "金属光泽(_M)" #: ../plug-ins/Lighting/lighting_ui.c:723 msgid "E_nable bump mapping" @@ -1404,7 +1404,7 @@ #: ../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" @@ -1582,7 +1582,7 @@ #: ../plug-ins/common/CML_explorer.c:228 msgid "The first row of the image" -msgstr "" +msgstr "图åƒçš„第一行" #: ../plug-ins/common/CML_explorer.c:229 msgid "Continuous gradient" @@ -1629,7 +1629,7 @@ #: ../plug-ins/common/CML_explorer.c:309 msgid "(None)" -msgstr "(没有)" +msgstr "(æ— )" #: ../plug-ins/common/CML_explorer.c:470 msgid "CML _Explorer..." @@ -1641,7 +1641,7 @@ #: ../plug-ins/common/CML_explorer.c:1186 msgid "Coupled-Map-Lattice Explorer" -msgstr "" +msgstr "耦åˆæ˜ åƒæ ¼å­(Coupled-Map-Lattice)探索器" #: ../plug-ins/common/CML_explorer.c:1225 msgid "New seed" @@ -3203,7 +3203,7 @@ #: ../plug-ins/common/dicom.c:159 msgid "Digital Imaging and Communications in Medicine image" -msgstr "" +msgstr "医学数字æˆåƒå’Œé€šä¿¡å›¾åƒ" #: ../plug-ins/common/dicom.c:318 #, c-format @@ -4040,6 +4040,7 @@ "GIF: Undocumented GIF composite type %d is not handled. Animation might not " "play or re-save perfectly." msgstr "" +"GIF:无法处ç†æ— ä¹¦é¢æ–‡ä»¶çš„ GIF åˆæˆç±»åž‹ %d。动画å¯èƒ½æ— æ³•å‡†ç¡®åœ°æ’­æ”¾æˆ–é‡å‚¨å­˜ã€‚" #: ../plug-ins/common/gih.c:205 ../plug-ins/common/gih.c:226 msgid "GIMP brush (animated)" @@ -4084,31 +4085,31 @@ #: ../plug-ins/common/gih.c:999 msgid " Rows of " -msgstr "" +msgstr " è¡Œ " #: ../plug-ins/common/gih.c:1011 msgid " Columns on each layer" -msgstr "" +msgstr " 列æ¯å›¾å±‚" #: ../plug-ins/common/gih.c:1015 msgid " (Width Mismatch!) " -msgstr "" +msgstr " (宽度ä¸åŒ¹é…ï¼) " #: ../plug-ins/common/gih.c:1019 msgid " (Height Mismatch!) " -msgstr "" +msgstr " (高度ä¸åŒ¹é…ï¼) " #: ../plug-ins/common/gih.c:1024 msgid "Display as:" -msgstr "" +msgstr "显示为:" #: ../plug-ins/common/gih.c:1033 msgid "Dimension:" -msgstr "" +msgstr "维数:" #: ../plug-ins/common/gih.c:1110 msgid "Ranks:" -msgstr "" +msgstr "分级:" #: ../plug-ins/common/glasstile.c:129 msgid "_Glass Tile..." @@ -5454,7 +5455,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 @@ -5493,7 +5494,7 @@ #: ../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 msgid "_Pixelize..." @@ -7006,7 +7007,7 @@ #. Scalable Vector Graphics is SVG, should perhaps not be translated #: ../plug-ins/common/svg.c:703 msgid "Render Scalable Vector Graphics" -msgstr "绘制å¯ç¼©æ”¾å‘é‡å›¾å½¢" +msgstr "绘制å¯ç¼©æ”¾çŸ¢é‡å›¾å½¢" #: ../plug-ins/common/svg.c:767 ../plug-ins/common/wmf.c:554 #: ../plug-ins/print/gimp_main_window.c:1009 @@ -7071,7 +7072,7 @@ #. origin #: ../plug-ins/common/tga.c:1219 msgid "Or_igin at bottom left" -msgstr "" +msgstr "原点在左下角(_I)" #: ../plug-ins/common/threshold_alpha.c:95 msgid "_Threshold Alpha..." @@ -7573,15 +7574,14 @@ #. Displacement map menu #: ../plug-ins/common/warp.c:450 -#, fuzzy msgid "Displacement map:" -msgstr "旋转角度(_D):" +msgstr "ä½ç§»å›¾ï¼š" #. ======================================================================= #. Displacement Type #: ../plug-ins/common/warp.c:468 msgid "On edges:" -msgstr "在边缘处:" +msgstr "边缘处:" #: ../plug-ins/common/warp.c:479 msgid "Wrap" @@ -7616,18 +7616,16 @@ #: ../plug-ins/common/warp.c:586 msgid "Substeps:" -msgstr "" +msgstr "å­æ­¥æ•°ï¼š" #. Magnitude map menu #: ../plug-ins/common/warp.c:595 -#, fuzzy msgid "Magnitude map:" -msgstr "噪音é‡çº§(_N):" +msgstr "æ•°é‡å›¾ï¼š" #: ../plug-ins/common/warp.c:617 -#, fuzzy msgid "Use magnitude map" -msgstr "噪音é‡çº§(_N):" +msgstr "使用数é‡å›¾" #. -------------------------------------------------------------------- #. --------- The "other" table -------------------------- @@ -7636,18 +7634,16 @@ 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 "矢é‡è§’度(_A):" +msgstr "矢é‡å¤§å°ï¼š" #. Angle #: ../plug-ins/common/warp.c:695 ../plug-ins/ifscompose/ifscompose.c:586 @@ -7656,7 +7652,7 @@ #: ../plug-ins/common/warp.c:718 msgid "Fixed-direction-vector map selection menu" -msgstr "" +msgstr "定å‘矢é‡å›¾é€‰æ‹©èœå•" #. #. if (display_diff_map) { @@ -7666,21 +7662,21 @@ #. make sure layer is visible #: ../plug-ins/common/warp.c:1175 msgid "Smoothing X gradient..." -msgstr "" +msgstr "正在平滑 X 梯度..." #: ../plug-ins/common/warp.c:1177 msgid "Smoothing Y gradient..." -msgstr "" +msgstr "正在平滑 Y 梯度..." #. calculate new X,Y Displacement image maps #: ../plug-ins/common/warp.c:1232 msgid "Finding XY gradient..." -msgstr "" +msgstr "正在寻找 XY 梯度..." #: ../plug-ins/common/warp.c:1255 #, c-format msgid "Flow Step %d..." -msgstr "" +msgstr "æµç¨‹ç¬¬ %d æ­¥..." #: ../plug-ins/common/waves.c:127 msgid "_Waves..." @@ -7871,7 +7867,7 @@ #: ../plug-ins/common/winprint.c:341 #, c-format msgid "PrintDlg failed: %d" -msgstr "" +msgstr "PrintDlg 失败:%d" #: ../plug-ins/common/winprint.c:377 msgid "Printer doesn't support bitmaps" @@ -7879,7 +7875,7 @@ #: ../plug-ins/common/winprint.c:418 msgid "StartPage failed" -msgstr "" +msgstr "StartPage 失败" #: ../plug-ins/common/winprint.c:427 ../plug-ins/print/print-image-gimp.c:320 msgid "Printing..." @@ -7887,11 +7883,11 @@ #: ../plug-ins/common/winprint.c:459 msgid "CreateDIBSection failed" -msgstr "" +msgstr "CreateDIBSection 失败" #: ../plug-ins/common/winprint.c:495 msgid "SetStretchBltMode failed (warning only)" -msgstr "" +msgstr "SetStretchBltMode 失败(åªæ˜¯è­¦å‘Š)" #: ../plug-ins/common/winprint.c:558 #, c-format @@ -7899,15 +7895,17 @@ "StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) failed, " "error = %d, y = %d" msgstr "" +"StretchBlt (hDC, %d, %d, %d, %d, hdcMem, %d, 0, %d, 1, SRCCOPY) 失败," +"error = %d, y = %d" #: ../plug-ins/common/winprint.c:587 msgid "EndPage failed" -msgstr "" +msgstr "EndPage 失败" #: ../plug-ins/common/winprint.c:634 #, c-format msgid "PageSetupDlg failed: %d" -msgstr "" +msgstr "PageSetupDlg 失败:%d" #: ../plug-ins/common/wmf.c:131 msgid "Microsoft WMF file" @@ -8260,11 +8258,11 @@ #: ../plug-ins/faxg3/faxg3.c:100 msgid "G3 fax image" -msgstr "" +msgstr "G3 传真图åƒ" #: ../plug-ins/fits/fits.c:159 ../plug-ins/fits/fits.c:178 msgid "Flexible Image Transport System" -msgstr "" +msgstr "çµæ´»å›¾åƒä¼ è¾“系统" #: ../plug-ins/fits/fits.c:346 msgid "Error during open of FITS file" @@ -8496,15 +8494,15 @@ #: ../plug-ins/gfig/gfig-dialog.c:859 msgid "_Undo" -msgstr "撤销" +msgstr "撤销(_U)" #: ../plug-ins/gfig/gfig-dialog.c:863 msgid "_Clear" -msgstr "清除" +msgstr "清除(_C)" #: ../plug-ins/gfig/gfig-dialog.c:867 msgid "_Grid" -msgstr "网格" +msgstr "网格(_G)" #: ../plug-ins/gfig/gfig-dialog.c:875 msgid "Raise selected object" @@ -8741,12 +8739,12 @@ msgid "" "Error trying to save figure as a parasite: can't attach parasite to " "drawable.\n" -msgstr "" +msgstr "试图将图形ä¿å­˜ä¸ºå¯„生物时出错:无法添加寄生物到图åƒã€‚\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" @@ -8786,6 +8784,9 @@ "(gflare-path \"%s\")\n" "and make a folder '%s', then you can save your own GFlares into that folder." msgstr "" +"æ¸å˜é—ªå…‰â€œ%sâ€è¿˜æ²¡ä¿å­˜ã€‚如果您在“%sâ€ä¸­æ·»åŠ ä¸€é¡¹ï¼Œæ¯”如:\n" +"(gflare-path \"%s\")\n" +"并建立一个文件夹“%sâ€ï¼Œæ‚¨å°±å¯ä»¥å°†è‡ªå·±çš„æ¸å˜é—ªå…‰ä¿å­˜åœ¨é‚£ä¸ªæ–‡ä»¶å¤¹ä¸­ã€‚" #: ../plug-ins/gflare/gflare.c:1482 #, c-format @@ -9006,12 +9007,12 @@ #: ../plug-ins/gfli/gfli.c:158 ../plug-ins/gfli/gfli.c:178 msgid "AutoDesk FLIC animation" -msgstr "" +msgstr "AutoDesk FLIC 动画" #: ../plug-ins/gfli/gfli.c:527 #, c-format msgid "Frame (%i)" -msgstr "" +msgstr "帧 (%i)" #: ../plug-ins/gfli/gfli.c:678 msgid "Sorry, I can save only INDEXED and GRAY images." @@ -9019,11 +9020,11 @@ #: ../plug-ins/gfli/gfli.c:811 msgid "GFLI 1.3 - Load framestack" -msgstr "" +msgstr "GFLI 1.3 - 加载帧栈" #: ../plug-ins/gfli/gfli.c:874 msgid "GFLI 1.3 - Save framestack" -msgstr "" +msgstr "GFLI 1.3 - ä¿å­˜å¸§æ ˆ" #: ../plug-ins/gimpressionist/brush.c:230 msgid "Can only save drawables!" @@ -9306,15 +9307,15 @@ #: ../plug-ins/gimpressionist/orientmap.c:530 msgid "Vectors" -msgstr "å‘é‡" +msgstr "矢é‡" #: ../plug-ins/gimpressionist/orientmap.c:542 msgid "" "The vector-field. Left-click to move selected vector, Right-click to point " "it towards mouse, Middle-click to add a new vector." msgstr "" -"å‘é‡åŒºåŸŸã€‚点击左键移动选中的å‘é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中键添加一" -"个新å‘é‡ã€‚" +"矢é‡åŒºåŸŸã€‚点击左键移动选中的矢é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中键添加一" +"个新矢é‡ã€‚" #: ../plug-ins/gimpressionist/orientmap.c:565 #: ../plug-ins/gimpressionist/sizemap.c:435 @@ -9323,11 +9324,11 @@ #: ../plug-ins/gimpressionist/orientmap.c:587 msgid "Select previous vector" -msgstr "选择å‰ä¸€ä¸ªå‘é‡" +msgstr "选择å‰ä¸€ä¸ªçŸ¢é‡" #: ../plug-ins/gimpressionist/orientmap.c:593 msgid "Select next vector" -msgstr "选择åŽä¸€ä¸ªå‘é‡" +msgstr "选择åŽä¸€ä¸ªçŸ¢é‡" #: ../plug-ins/gimpressionist/orientmap.c:595 #: ../plug-ins/gimpressionist/sizemap.c:466 @@ -9336,7 +9337,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:599 msgid "Add new vector" -msgstr "添加新å‘é‡" +msgstr "添加新矢é‡" #: ../plug-ins/gimpressionist/orientmap.c:601 #: ../plug-ins/gimpressionist/sizemap.c:473 @@ -9345,7 +9346,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:605 msgid "Delete selected vector" -msgstr "删除选中的å‘é‡" +msgstr "删除选中的矢é‡" #: ../plug-ins/gimpressionist/orientmap.c:620 msgid "_Normal" @@ -9380,7 +9381,7 @@ #: ../plug-ins/gimpressionist/orientmap.c:651 msgid "Change the angle of the selected vector" -msgstr "改å˜é€‰ä¸­å‘é‡çš„角度" +msgstr "改å˜é€‰ä¸­çŸ¢é‡çš„角度" #: ../plug-ins/gimpressionist/orientmap.c:658 msgid "Ang_le offset:" @@ -9388,11 +9389,11 @@ #: ../plug-ins/gimpressionist/orientmap.c:662 msgid "Offset all vectors with a given angle" -msgstr "所有的å‘é‡å移一个指定的角度" +msgstr "所有的矢é‡å移一个指定的角度" #: ../plug-ins/gimpressionist/orientmap.c:673 msgid "Change the strength of the selected vector" -msgstr "改å˜é€‰ä¸­å‘é‡çš„强度" +msgstr "改å˜é€‰ä¸­çŸ¢é‡çš„强度" #: ../plug-ins/gimpressionist/orientmap.c:680 msgid "S_trength exp.:" @@ -9417,7 +9418,7 @@ #: ../plug-ins/gimpressionist/paper.c:164 msgid "Applies the paper as it is (without embossing it)" -msgstr "" +msgstr "按原样应用画纸(而ä¸æ˜¯æµ®é›•æ•ˆæžœ)" #: ../plug-ins/gimpressionist/paper.c:180 msgid "Specifies the scale of the texture (in percent of original file)" @@ -9588,35 +9589,35 @@ #: ../plug-ins/gimpressionist/sizemap.c:405 msgid "Smvectors" -msgstr "尺寸å‘é‡" +msgstr "尺寸矢é‡" #: ../plug-ins/gimpressionist/sizemap.c:415 msgid "" "The smvector-field. Left-click to move selected smvector, Right-click to " "point it towards mouse, Middle-click to add a new smvector." msgstr "" -"尺寸å‘é‡åŒºåŸŸã€‚点击左键移动选中的尺寸å‘é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中" -"键添加新的尺寸å‘é‡ã€‚" +"尺寸矢é‡åŒºåŸŸã€‚点击左键移动选中的尺寸矢é‡ï¼Œç‚¹å‡»å³é”®ä½¿å®ƒæŒ‡å‘鼠标的方å‘,点击中" +"键添加新的尺寸矢é‡ã€‚" #: ../plug-ins/gimpressionist/sizemap.c:457 msgid "Select previous smvector" -msgstr "选择å‰ä¸€ä¸ªå°ºå¯¸å‘é‡" +msgstr "选择å‰ä¸€ä¸ªå°ºå¯¸çŸ¢é‡" #: ../plug-ins/gimpressionist/sizemap.c:464 msgid "Select next smvector" -msgstr "选择åŽä¸€ä¸ªå°ºå¯¸å‘é‡" +msgstr "选择åŽä¸€ä¸ªå°ºå¯¸çŸ¢é‡" #: ../plug-ins/gimpressionist/sizemap.c:471 msgid "Add new smvector" -msgstr "添加新的尺寸å‘é‡" +msgstr "添加新的尺寸矢é‡" #: ../plug-ins/gimpressionist/sizemap.c:478 msgid "Delete selected smvector" -msgstr "删除选中的尺寸å‘é‡" +msgstr "删除选中的尺寸矢é‡" #: ../plug-ins/gimpressionist/sizemap.c:491 msgid "Change the angle of the selected smvector" -msgstr "改å˜é€‰ä¸­çš„尺寸å‘é‡çš„角度" +msgstr "改å˜é€‰ä¸­çš„尺寸矢é‡çš„角度" #: ../plug-ins/gimpressionist/sizemap.c:498 msgid "S_trength:" @@ -9624,7 +9625,7 @@ #: ../plug-ins/gimpressionist/sizemap.c:502 msgid "Change the strength of the selected smvector" -msgstr "改å˜é€‰ä¸­çš„尺寸å‘é‡çš„强度" +msgstr "改å˜é€‰ä¸­çš„尺寸矢é‡çš„强度" #: ../plug-ins/gimpressionist/sizemap.c:509 msgid "St_rength exp.:" @@ -9644,6 +9645,9 @@ " (gimpressionist-path \"%s\")\n" "(or similar) to your gimprc file." msgstr "" +"强烈建议添加\n" +" (gimpressionist-path \"%s\")\n" +"(或类似)到您的 gimprc 文件中。" #: ../plug-ins/help/domain.c:177 msgid "The GIMP help files are not installed." @@ -10439,7 +10443,7 @@ #: ../plug-ins/imagemap/imap_preferences.c:472 msgid "_Keep NCSA circles true" -msgstr "" +msgstr "ä¿æŒ NCSA 圆为真(true)(_K)" #: ../plug-ins/imagemap/imap_preferences.c:474 msgid "Show area URL _tip" @@ -10737,7 +10741,7 @@ #: ../plug-ins/print/gimp_color_window.c:208 msgid "Print Color Adjust" -msgstr "打å°é¢œè‰²è°ƒæ•´" +msgstr "打å°è‰²å½©è°ƒæ•´" #: ../plug-ins/print/gimp_color_window.c:268 msgid "Brightness:" @@ -10814,6 +10818,12 @@ "art.\n" "Hybrid Floyd-Steinberg generally produces inferior output." msgstr "" +"选择è¦ä½¿ç”¨çš„抖动算法。\n" +"Adaptive Hybrid 通常能产生最好的综åˆç”»è´¨ã€‚\n" +"Ordered 速度更快并且在照片中能达到几乎åŒæ ·å¥½çš„画质。\n" +"Fast å’Œ Very Fast è¦å¿«å¾ˆå¤šï¼Œå¹¶ä¸”在文字和线æ¡å›¾ä¸­çš„表现" +"也ä¸é”™ã€‚\n" +"Hybrid Floyd-Steinberg 通常产生较差的输出。" #. #. * Create the main dialog @@ -10852,6 +10862,16 @@ "If you click another button while dragging the mouse, the image will return " "to its original position." msgstr "" +"图åƒåœ¨é¡µé¢ä¸­çš„ä½ç½®ã€‚\n" +"点击并拖动主按钮æ¥æ”¾ç½®å›¾åƒã€‚\n" +"点击并拖动第二按钮更精细地移动图åƒï¼›" +"æ¯ä¸ªåŠ¨ä½œå•ä½å°†å›¾åƒç§»åŠ¨ä¸€ä¸ªç‚¹(1/72\")\n" +"点击并拖动第三(中)按钮按图åƒå¤§å°çš„å•ä½" +"æ¥ç§»åŠ¨å›¾åƒã€‚\n" +"点击和拖动的åŒæ—¶æŒ‰ä½ shift é”®å¯é™åˆ¶" +"仅在水平或垂直方å‘上移动。\n" +"如果您在拖动鼠标的过程中点击了其它按钮,图åƒå°†æ¢å¤åˆ°" +"原æ¥çš„ä½ç½®ã€‚" #: ../plug-ins/print/gimp_main_window.c:481 msgid "Auto" @@ -10948,11 +10968,11 @@ #. #: ../plug-ins/print/gimp_main_window.c:672 msgid "Printer Model:" -msgstr "打å°æœºæ¨¡å—:" +msgstr "打å°æœºåž‹å·ï¼š" #: ../plug-ins/print/gimp_main_window.c:684 msgid "Select your printer model" -msgstr "选择您的打å°æœºæ¨¡å—" +msgstr "选择您的打å°æœºåž‹å·" #. #. * PPD file. @@ -11046,10 +11066,11 @@ "Select the name of the printer (not the type, or model, of printer) that you " "wish to print to" msgstr "" +"选择您è¦æ‰“å°åˆ°çš„打å°æœºçš„åå­—(ä¸æ˜¯æ‰“å°æœºçš„类型或型å·)" #: ../plug-ins/print/gimp_main_window.c:926 msgid "Printer model:" -msgstr "打å°æœºæ¨¡å—:" +msgstr "打å°æœºåž‹å·ï¼š" #. #. * Setup printer button @@ -11063,6 +11084,7 @@ "Choose the printer model, PPD file, and command that is used to print to " "this printer" msgstr "" +"选择打å°æœºåž‹å·ã€PPD 文件以åŠæ‰“å°åˆ°è¿™ä¸ªæ‰“å°æœºè¦ä½¿ç”¨çš„命令" #. #. * New printer button @@ -11076,10 +11098,12 @@ "Define a new logical printer. This can be used to name a collection of " "settings that you wish to remember for future use." msgstr "" +"定义一个新的逻辑打å°æœºã€‚è¿™å¯ä»¥ç”¨äºŽå‘½å一个设置" +"集åˆï¼Œä¾¿äºŽæ‚¨ä»ŠåŽä½¿ç”¨æ—¶è®°å¿†ã€‚" #: ../plug-ins/print/gimp_main_window.c:977 msgid "Size of paper that you wish to print to" -msgstr "" +msgstr "您è¦æ‰“å°çš„纸张尺寸" #: ../plug-ins/print/gimp_main_window.c:980 msgid "Media size:" @@ -11091,15 +11115,15 @@ #: ../plug-ins/print/gimp_main_window.c:1003 msgid "Width of the paper that you wish to print to" -msgstr "" +msgstr "您è¦æ‰“å°çš„纸张宽度" #: ../plug-ins/print/gimp_main_window.c:1020 msgid "Height of the paper that you wish to print to" -msgstr "" +msgstr "您è¦æ‰“å°çš„纸张高度" #: ../plug-ins/print/gimp_main_window.c:1036 msgid "Type of media you're printing to" -msgstr "" +msgstr "您è¦æ‰“å°çš„介质类型" #: ../plug-ins/print/gimp_main_window.c:1039 msgid "Media type:" @@ -11107,7 +11131,7 @@ #: ../plug-ins/print/gimp_main_window.c:1052 msgid "Source (input slot) of media you're printing to" -msgstr "" +msgstr "您è¦æ‰“å°çš„介质æ¥æº(输入槽)" #: ../plug-ins/print/gimp_main_window.c:1055 msgid "Media source:" @@ -11123,7 +11147,7 @@ #: ../plug-ins/print/gimp_main_window.c:1084 msgid "Resolution and quality of the print" -msgstr "" +msgstr "打å°çš„分辨率以åŠè´¨é‡" #: ../plug-ins/print/gimp_main_window.c:1121 msgid "Scaling:" @@ -11131,17 +11155,18 @@ #: ../plug-ins/print/gimp_main_window.c:1127 msgid "Set the scale (size) of the image" -msgstr "" +msgstr "设置图åƒçš„缩放(大å°)" #: ../plug-ins/print/gimp_main_window.c:1152 msgid "Scale by:" -msgstr "缩放为:" +msgstr "缩放至:" #: ../plug-ins/print/gimp_main_window.c:1157 msgid "" "Select whether scaling is measured as percent of available page size or " "number of output dots per inch" msgstr "" +"选择按å¯ç”¨é¡µé¢å¤§å°çš„百分比或输出的æ¯è‹±å¯¸ç‚¹æ•°æ¥è¡¡é‡ç¼©æ”¾" #: ../plug-ins/print/gimp_main_window.c:1162 msgid "Percent" @@ -11149,7 +11174,7 @@ #: ../plug-ins/print/gimp_main_window.c:1169 msgid "Scale the print to the size of the page" -msgstr "将打å°å†…容缩放为纸张大å°" +msgstr "将打å°å†…容按页é¢å¤§å°ç¼©æ”¾" #: ../plug-ins/print/gimp_main_window.c:1175 msgid "PPI" @@ -11157,7 +11182,7 @@ #: ../plug-ins/print/gimp_main_window.c:1181 msgid "Scale the print to the number of dots per inch" -msgstr "" +msgstr "将打å°å†…容按æ¯è‹±å¯¸ç‚¹æ•°ç¼©æ”¾" #: ../plug-ins/print/gimp_main_window.c:1203 msgid "Set the width of the print" @@ -11173,7 +11198,7 @@ #: ../plug-ins/print/gimp_main_window.c:1242 msgid "Select the base unit of measurement for printing" -msgstr "" +msgstr "选择打å°çš„基本衡é‡å•ä½" #: ../plug-ins/print/gimp_main_window.c:1245 msgid "Inch" @@ -11181,7 +11206,7 @@ #: ../plug-ins/print/gimp_main_window.c:1252 msgid "Set the base unit of measurement to inches" -msgstr "" +msgstr "基本衡é‡å•ä½è®¾ä¸ºè‹±å¯¸" #: ../plug-ins/print/gimp_main_window.c:1258 msgid "cm" @@ -11189,7 +11214,7 @@ #: ../plug-ins/print/gimp_main_window.c:1264 msgid "Set the base unit of measurement to centimetres" -msgstr "" +msgstr "基本衡é‡å•ä½è®¾ä¸ºåŽ˜ç±³" #. #. * The "image size" button @@ -11216,15 +11241,15 @@ #: ../plug-ins/print/gimp_main_window.c:1325 msgid "Optimize the output for the type of image being printed" -msgstr "" +msgstr "æ ¹æ®æ‰“å°çš„图åƒç±»åž‹ä¼˜åŒ–输出" #: ../plug-ins/print/gimp_main_window.c:1329 msgid "Line art" -msgstr "线æ¡è‰ºæœ¯" +msgstr "线æ¡å›¾" #: ../plug-ins/print/gimp_main_window.c:1336 msgid "Fastest and brightest color for text and line art" -msgstr "" +msgstr "最快和最亮的颜色用于文本和线æ¡å›¾" #: ../plug-ins/print/gimp_main_window.c:1343 msgid "Solid colors" @@ -11232,7 +11257,7 @@ #: ../plug-ins/print/gimp_main_window.c:1350 msgid "Best for images dominated by regions of solid color" -msgstr "" +msgstr "对完全由纯色区域组æˆçš„图åƒæœ€ä½³" #: ../plug-ins/print/gimp_main_window.c:1358 msgid "Photograph" @@ -11243,6 +11268,7 @@ "Slowest, but most accurate and smoothest color for continuous tone images " "and photographs" msgstr "" +"最慢,但对连续色彩的图åƒå’Œç…§ç‰‡æœ€ç²¾ç¡®å¹¶æœ€å¹³æ»‘" #: ../plug-ins/print/gimp_main_window.c:1389 msgid "Output type:" @@ -11250,15 +11276,15 @@ #: ../plug-ins/print/gimp_main_window.c:1396 msgid "Select the desired output type" -msgstr "" +msgstr "选择想è¦çš„输出类型" #: ../plug-ins/print/gimp_main_window.c:1405 msgid "Color output" -msgstr "颜色输出" +msgstr "彩色输出" #: ../plug-ins/print/gimp_main_window.c:1417 msgid "Print in shades of gray using black ink" -msgstr "" +msgstr "使用黑色墨水以ç°è‰²æ¢¯åº¦æ‰“å°" #: ../plug-ins/print/gimp_main_window.c:1424 msgid "Black and white" @@ -11266,7 +11292,7 @@ #: ../plug-ins/print/gimp_main_window.c:1431 msgid "Print in black and white (no color, and no shades of gray)" -msgstr "" +msgstr "以黑色和白色打å°(没有彩色,也没有ç°è‰²æ¢¯åº¦)" #. #. * Color adjust button @@ -11416,7 +11442,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 @@ -11444,6 +11470,8 @@ "Aggressive RLE\n" "(not supported by SGI)" msgstr "" +"Aggressive RLE\n" +"(ä¸è¢« SGI 支æŒ)" #: ../plug-ins/twain/twain.c:313 msgid "TWAIN (Dump)..." @@ -11525,7 +11553,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 @@ -11587,1159 +11615,3 @@ #, c-format msgid "Error: XJT property file '%s' is empty." msgstr "错误:XJT 属性文件“%sâ€ä¸ºç©ºã€‚" - -#~ msgid "Before and After" -#~ msgstr "之å‰å’Œä¹‹åŽ" - -#~ msgid "Gfig layer %d" -#~ msgstr "几何图形图层 %d" - -#~ msgid "Opening %s" -#~ msgstr "打开 %s" - -#~ msgid "See %s" -#~ msgstr "请看 %s" - -#~ msgid "Color_Enhance: cmap was NULL! Quitting...\n" -#~ msgstr "颜色增强:cmap 为空ï¼é€€å‡º...\n" - -#~ msgid "TIFF images" -#~ msgstr "TIFF 图åƒ" - -#~ msgid "Paint" -#~ msgstr "绘图" - -#~ msgid "FG fill" -#~ msgstr "å‰æ™¯è‰²å¡«å……" - -#~ msgid "BG fill" -#~ msgstr "背景色填充" - -#~ msgid "All" -#~ msgstr "全部" - -#~ msgid "Clockwise" -#~ msgstr "顺时针" - -#~ msgid "Anti-Clockwise" -#~ msgstr "逆时针" - -#~ msgid "Ifs_Compose..." -#~ msgstr "Ifs 创作(_C)..." - -#~ msgid "IfsCompose: Target" -#~ msgstr "Ifs 创作:目标" - -#~ msgid "IfsCompose: Red" -#~ msgstr "Ifs 创作:红" - -#~ msgid "IfsCompose: Green" -#~ msgstr "Ifs 创作:绿" - -#~ msgid "IfsCompose: Blue" -#~ msgstr "Ifs 创作:è“" - -#~ msgid "IfsCompose: Black" -#~ msgstr "Ifs 创作:黑" - -#~ msgid "IfsCompose" -#~ msgstr "Ifs 创作" - -#~ msgid "Rotate/scale" -#~ msgstr "旋转/缩放" - -#~ msgid "/Move" -#~ msgstr "/移动" - -#~ msgid "/Stretch" -#~ msgstr "/拉伸" - -#~ msgid "/New" -#~ msgstr "/新建" - -#~ msgid "/Delete" -#~ msgstr "/删除" - -#~ msgid "/Undo" -#~ msgstr "/撤销" - -#~ msgid "/Redo" -#~ msgstr "/é‡åš" - -#~ msgid "/Select All" -#~ msgstr "/全部选择" - -#~ msgid "IfsCompose Options" -#~ msgstr "Ifs 创作选项" - -#~ msgid "Loading %s:" -#~ msgstr "正在加载 %s:" - -#~ msgid "Saving %s:" -#~ msgstr "正在ä¿å­˜ %s:" - -#~ msgid "Despeckling..." -#~ msgstr "去除斑点..." - -#~ msgid "Bezier Settings" -#~ msgstr "Bezier 设置" - -#~ msgid "Number of Sides/Points/Turns:" -#~ msgstr "è¾¹/点/转折的数é‡ï¼š" - -#~ msgid "Could not locate help document" -#~ msgstr "无法定ä½å¸®åŠ©æ–‡æ¡£" - -#~ msgid "/Filters/Render" -#~ msgstr "/滤镜/绘制" - -#, fuzzy -#~ msgid "/Filters/Light Effects" -#~ msgstr "/滤镜(R)/光线效果(L)/æ¸å˜é—ªå…‰(GFlare)(_G)..." - -#, fuzzy -#~ msgid "/Filters/Map" -#~ msgstr "/滤镜(R)/映射(M)/翘曲(_W)..." - -#, fuzzy -#~ msgid "/Filters/Colors/Map" -#~ msgstr "/滤镜(R)/颜色(C)/RGB 最大(_M)..." - -#, fuzzy -#~ msgid "/Filters/Render/Pattern" -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/迷宫(_M)..." - -#, fuzzy -#~ msgid "/Filters/Animation" -#~ msgstr "/滤镜(R)/动画(I)/å优化(_U)" - -#, fuzzy -#~ msgid "/Filters/Glass Effects" -#~ msgstr "/滤镜(R)/玻璃效果(S)/玻璃瓦片(_G)..." - -#, fuzzy -#~ msgid "/Image/Crop" -#~ msgstr "/图åƒ(I)/å˜æ¢(T)/自动剪è£(_A)" - -#, fuzzy -#~ msgid "/Layer/Crop" -#~ msgstr "/图层(L)/å˜æ¢(T)/积æžå‰ªè£(_Z)" - -#, fuzzy -#~ msgid "/Layer/Colors/Auto" -#~ msgstr "/图层(L)/颜色(C)/自动(A)/标准化(_N)" - -#, fuzzy -#~ msgid "/Filters/Distorts" -#~ msgstr "/滤镜(R)/扭曲(T)/风(_N)..." - -#, fuzzy -#~ msgid "/Filters/Blur" -#~ msgstr "/滤镜(R)/模糊(B)/模糊(_B)..." - -#, fuzzy -#~ msgid "/Filters/Colors" -#~ msgstr "/滤镜(R)/颜色/Hot(_H)..." - -#, fuzzy -#~ msgid "/Layer/Colors/Info" -#~ msgstr "/图层(L)/颜色(C)/自动(A)/标准化(_N)" - -#, fuzzy -#~ msgid "/Layer/Transparency/Modify" -#~ msgstr "/图层(L)/é€æ˜Ž(A)/Alpha 阈值(_T)..." - -#, fuzzy -#~ msgid "/Image/Mode" -#~ msgstr "/图åƒ(I)/å˜æ¢(T)/分å—(_G)" - -#, fuzzy -#~ msgid "/Filters/Generic" -#~ msgstr "/滤镜(R)/通用(G)/è…蚀(_R)..." - -#, fuzzy -#~ msgid "/Filters/Artistic" -#~ msgstr "/滤镜(R)/艺术(A)/立体派(_C)..." - -#, fuzzy -#~ msgid "/Filters/Enhance" -#~ msgstr "/滤镜(R)/增强(H)/é”化(_S)..." - -#, fuzzy -#~ msgid "/Filters/Combine" -#~ msgstr "/滤镜(R)/组åˆ(O)/胶å·(_F)..." - -#, fuzzy -#~ msgid "/Filters/Edge-Detect" -#~ msgstr "/滤镜(R)/边缘检测(T)/拉普拉斯(_L)" - -#, fuzzy -#~ msgid "/Filters/Toys" -#~ msgstr "/滤镜(R)/玩具(Y)/Gee-Zoom(_Z)" - -#, fuzzy -#~ msgid "/Image/Transform" -#~ msgstr "/图åƒ(I)/å˜æ¢(T)/自动剪è£(_A)" - -#, fuzzy -#~ msgid "/File/Send" -#~ msgstr "/文件(F)/打å°(_P)" - -#, fuzzy -#~ msgid "_Do preview" -#~ msgstr "进行预览(_D)" - -#, fuzzy -#~ msgid "/Filters/Noise" -#~ msgstr "/滤镜(R)/噪音(N)/糊(Slur)(_S)..." - -#, fuzzy -#~ msgid "/Filters/Render/Clouds" -#~ msgstr "/滤镜(R)/绘制(R)/云彩(C)/五彩缤纷(Plasma)(_P)..." - -#, fuzzy -#~ msgid "/File/Acquire" -#~ msgstr "/文件(F)/获å–(A)/TWAIN(_T)..." - -#~ msgid "Pos X:" -#~ msgstr "ä½ç½® X:" - -#~ msgid "Pos Y:" -#~ msgstr "ä½ç½® Y:" - -#~ msgid "Pos Z:" -#~ msgstr "ä½ç½® Z:" - -#, fuzzy -#~ msgid "/Xtns/Extensions" -#~ msgstr "/扩展(X)/å•ä½ç¼–辑器(_U)" - -#, fuzzy -#~ msgid "/Edit" -#~ msgstr "/文件(F)/打å°(_P)" - -#, fuzzy -#~ msgid "/Filters/Render/Nature" -#~ msgstr "/滤镜(R)/绘制(R)/自然(N)/ç«ç„°(_F)..." - -#, fuzzy -#~ msgid "/Filters/Web" -#~ msgstr "/滤镜(R)/网页(W)/图åƒæ˜ åƒ(_I)..." - -#, fuzzy -#~ msgid "Source" -#~ msgstr "æº 1:" - -#, fuzzy -#~ msgid "Do pre_view" -#~ msgstr "进行预览(_P)" - -#, fuzzy -#~ msgid "_Plugin Details" -#~ msgstr "æ’件æè¿°" - -#~ msgid "Details <<" -#~ msgstr "è¯¦ç»†ä¿¡æ¯ <<" - -#~ msgid "Details >>" -#~ msgstr "è¯¦ç»†ä¿¡æ¯ >>" - -#~ msgid "Name:" -#~ msgstr "å字:" - -#~ msgid "Blurb:" -#~ msgstr "简介:" - -#~ msgid "Help:" -#~ msgstr "帮助:" - -#~ msgid "Plugin Descriptions" -#~ msgstr "æ’件æè¿°" - -#~ msgid "Search by Name" -#~ msgstr "按åå­—æœç´¢" - -#, fuzzy -#~ msgid "Ins date" -#~ msgstr "æ’入时间" - -#, fuzzy -#~ msgid "Menu path" -#~ msgstr "èœå•è·¯å¾„" - -#~ msgid "Search:" -#~ msgstr "æœç´¢ï¼š" - -#~ msgid "In:" -#~ msgstr "输入:" - -#~ msgid "Out:" -#~ msgstr "输出:" - -#, fuzzy -#~ msgid "_Spherical" -#~ msgstr "çƒå½¢" - -#, fuzzy -#~ msgid "S_inusoidal" -#~ msgstr "正弦" - -#~ msgid "EOF encountered on " -#~ msgstr "é‡åˆ°æ–‡ä»¶ç»“æŸç¬¦ï¼Œåœ¨" - -#~ msgid "No memory for mapping colors" -#~ msgstr "没有内存进行颜色映射" - -#, fuzzy -#~ msgid "E_nable antialiasing" -#~ msgstr "å¯ç”¨å锯齿化(_N)" - -#~ msgid "T_hreshold:" -#~ msgstr "阈值(_H):" - -#, fuzzy -#~ msgid "L_ight yype:" -#~ msgstr "å…‰æºç±»åž‹(_I):" - -#, fuzzy -#~ msgid "Lig_ht color:" -#~ msgstr "å…‰æºé¢œè‰²(_H):" - -#~ msgid "_Ambient:" -#~ msgstr "环境(_A):" - -#~ msgid "_Diffuse:" -#~ msgstr "漫射(_D):" - -#~ msgid "D_iffuse:" -#~ msgstr "漫射(_I):" - -#~ msgid "_Specular:" -#~ msgstr "åå…‰(_S):" - -#~ msgid "_Highlight:" -#~ msgstr "高亮(_H):" - -#~ msgid "Parameters were Saved to '%s'" -#~ msgstr "å‚æ•°å·²ä¿å­˜è‡³â€œ%sâ€" - -#~ msgid "'%s' is not a HRZ file" -#~ msgstr "“%sâ€ä¸æ˜¯ HRZ 文件" - -#~ msgid "Image must be 256x240" -#~ msgstr "图åƒå¿…须是 256x240" - -#~ msgid "Image must be RGB or GRAY" -#~ msgstr "图åƒå¿…须是 RGB 或者ç°åº¦" - -#~ msgid "Brush" -#~ msgstr "画笔" - -#~ msgid "Airbrush" -#~ msgstr "喷枪" - -#~ msgid "Pencil" -#~ msgstr "铅笔" - -#~ msgid "New" -#~ msgstr "新建" - -#~ msgid "Multiple" -#~ msgstr "多é‡" - -#, fuzzy -#~ msgid "" -#~ "Draw all objects on one layer (original or new) or one object per layer." -#~ msgstr "将所有对象画在一个图层(原始或新建)中或者æ¯ä¸ªå›¾å±‚一个对象" - -#~ msgid "Draw on:" -#~ msgstr "画在:" - -#~ msgid "Selection+Fill" -#~ msgstr "选区 + å¡«å……" - -#~ msgid "Using:" -#~ msgstr "使用:" - -#, fuzzy -#~ msgid "Reverse line" -#~ msgstr "åå‘线段" - -#~ msgid "Draw lines in reverse order" -#~ msgstr "以相åçš„æ–¹å‘绘画线段" - -#, fuzzy -#~ msgid "Scale to image" -#~ msgstr "缩放到图åƒ" - -#~ msgid "Scale drawings to images size" -#~ msgstr "绘画时缩放到图åƒå¤§å°" - -#~ msgid "Gfig Brush Selection" -#~ msgstr "几何图形画笔选择" - -#~ msgid "Fade out:" -#~ msgstr "淡出:" - -#~ msgid "Gradient:" -#~ msgstr "æ¸å˜ï¼š" - -#~ msgid "Pressure:" -#~ msgstr "压力:" - -#, fuzzy -#~ msgid "No options..." -#~ msgstr "没有选项.." - -#, fuzzy -#~ msgid "Set brush..." -#~ msgstr "设置画笔..." - -#~ msgid "Add" -#~ msgstr "添加" - -#~ msgid "Subtract" -#~ msgstr "å‡åŽ»" - -#~ msgid "Intersect" -#~ msgstr "相交" - -#, fuzzy -#~ msgid "Fill type:" -#~ msgstr "填充类型:" - -#~ msgid "Fill Opacity:" -#~ msgstr "å¡«å……ä¸é€æ˜Žåº¦ï¼š" - -#, fuzzy -#~ msgid "Each selection" -#~ msgstr "æ¯æ¬¡é€‰æ‹©" - -#, fuzzy -#~ msgid "All selections" -#~ msgstr "所有选择" - -#~ msgid "Fill after:" -#~ msgstr "何时之åŽå¡«å……:" - -#~ msgid "Segment" -#~ msgstr "弓形" - -#~ msgid "Sector" -#~ msgstr "扇形" - -#~ msgid "Arc as:" -#~ msgstr "将弧处ç†ä¸ºï¼š" - -#, fuzzy -#~ msgid "Reload image" -#~ msgstr "é‡æ–°è½½å…¥å›¾åƒ" - -#, fuzzy -#~ msgid "Lock on grid" -#~ msgstr "é”定到å‚考线" - -#~ msgid "Object" -#~ msgstr "对象" - -#~ msgid "Create a new Gfig object collection for editing" -#~ msgstr "创建一个新的几何图形对象集" - -#~ msgid "Load a single Gfig object collection" -#~ msgstr "加载一个几何图形对象集" - -#~ msgid "Edit Gfig object collection" -#~ msgstr "编辑几何图形对象集" - -#~ msgid "_Merge" -#~ msgstr "åˆå¹¶(_M)" - -#, fuzzy -#~ msgid "Merge Gfig Ooject collection into the current edit session" -#~ msgstr "将几何图形对象集åˆå¹¶åˆ°å½“å‰ç¼–辑会è¯å½“中" - -#~ msgid "Delete currently selected Gfig Object collection" -#~ msgstr "删除当å‰é€‰ä¸­çš„几何图形对象集" - -#~ msgid "Select folder and rescan Gfig object collections" -#~ msgstr "选择文件夹并é‡æ–°æ‰«æ几何图形对象集" - -#~ msgid "%d unsaved Gfig objects. Continue with exiting?" -#~ msgstr "还有 %d 个未ä¿å­˜çš„几何图形对象。继续退出å—?" - -#, fuzzy -#~ msgid "Enter Gfig object name" -#~ msgstr "输入几何图形对象åå­—" - -#, fuzzy -#~ msgid "Gfig object name:" -#~ msgstr "几何图形对象å字:" - -#, fuzzy -#~ msgid "Rescan for Gfig objects" -#~ msgstr "é‡æ–°æ‰«æ几何图形对象" - -#, fuzzy -#~ msgid "Add Gfig path" -#~ msgstr "添加几何图形路径" - -#~ msgid "About Gfig" -#~ msgstr "关于几何图形(GFig)" - -#~ msgid "Gfig - GIMP plug-in" -#~ msgstr "几何图形(GFig) - GIMP æ’件" - -#~ msgid "Release 2.0" -#~ msgstr "版本 2.0" - -#~ msgid "New Gfig Object" -#~ msgstr "新的几何图形对象" - -#, fuzzy -#~ msgid "Delete Gfig drawing" -#~ msgstr "删除几何图形" - -#~ msgid "%s copy" -#~ msgstr "%s 副本" - -#~ msgid "Collection Details" -#~ msgstr "对象集细节" - -#, fuzzy -#~ msgid "Draw name:" -#~ msgstr "图形å字:" - -#~ msgid "(none)" -#~ msgstr "(没有)" - -#~ msgid "" -#~ msgstr "<没有>" - -#~ msgid "Curl Opacity" -#~ msgstr "å·æ›²ä¸é€æ˜Žåº¦" - -#, fuzzy -#~ msgid "" -#~ "Use current gradient\n" -#~ "instead of FG/BG-color" -#~ msgstr "" -#~ "使用当å‰æ¸å˜\n" -#~ "而ä¸æ˜¯å‰æ™¯/背景颜色" - -#~ msgid "Random Seed" -#~ msgstr "éšæœºç§å­" - -#, fuzzy -#~ msgid "_Blur..." -#~ msgstr "模糊..." - -#~ msgid "R_andomization %:" -#~ msgstr "éšæœºåº¦(_A) %:" - -#~ msgid "You must specify either horizontal or vertical (or both)" -#~ msgstr "您必须指定水平或垂直的值(或者都指定)" - -#~ msgid "Blur Horizontally" -#~ msgstr "水平模糊" - -#~ msgid "Blur Vertically" -#~ msgstr "垂直模糊" - -#~ msgid "Blur Radius:" -#~ msgstr "模糊åŠå¾„:" - -#, fuzzy -#~ msgid "Gaussian Blur (_RLE)..." -#~ msgstr "/滤镜(R)/模糊/高斯模糊(RLE)(_R)..." - -#~ msgid "RLE Gaussian Blur" -#~ msgstr "RLE 高斯模糊" - -#~ msgid "Image Preview" -#~ msgstr "图åƒé¢„览" - -#~ msgid "Force baseline JPEG (Readable by all decoders)" -#~ msgstr "强制使用 baseline JPEG (å¯è¢«æ‰€æœ‰è§£ç å™¨è¯»å–)" - -#~ msgid "DCT method (Speed/quality tradeoff):" -#~ msgstr "DCT 算法(速度/è´¨é‡çš„交易)" - -#~ msgid "Tile _Height:" -#~ msgstr "瓦片高度(_H):" - -#~ msgid "C_ell Size:" -#~ msgstr "格点大å°(_E):" - -#, fuzzy -#~ msgid "_Noisify..." -#~ msgstr "添加噪音" - -#~ msgid "Noisify" -#~ msgstr "添加噪音" - -#~ msgid "Random _Seed:" -#~ msgstr "éšæœºæ•°ç§å­(_S):" - -#~ msgid "Save Color _Values From Transparent Pixels" -#~ msgstr "ä¿å­˜é€æ˜Žåƒç´ çš„颜色值(_V)" - -#~ msgid "_X Offset:" -#~ msgstr "X ä½ç§»(_X):" - -#~ msgid "_Y Offset:" -#~ msgstr "Y ä½ç§»(_Y):" - -#~ msgid "_Random Seed:" -#~ msgstr "éšæœºæ•°ç§å­(_R):" - -#~ msgid "R_andom Seed:" -#~ msgstr "éšæœºæ•°ç§å­(_A):" - -#~ msgid "Snap to Grid" -#~ msgstr "å¸é™„到å‚考线" - -#~ msgid "Select Contiguous Region" -#~ msgstr "选择连续的区域" - -#~ msgid "RLE Compression" -#~ msgstr "RLE 压缩" - -#~ msgid "Save: No filename given" -#~ msgstr "ä¿å­˜ï¼šæ²¡æœ‰æŒ‡å®šæ–‡ä»¶å" - -#~ msgid "Cannot save to a folder." -#~ msgstr "无法ä¿å­˜åˆ°ä¸€ä¸ªæ–‡ä»¶å¤¹ã€‚" - -#~ msgid "/Filters/Render/_Fractal Explorer..." -#~ msgstr "/滤镜(R)/绘制(R)/分形探索器(_F)..." - -#~ msgid "/Filters/Light Effects/_Lighting Effects..." -#~ msgstr "/滤镜(R)/光线效果(L)/光照效果(_L)..." - -#~ msgid "Preview Options" -#~ msgstr "预览选项" - -#~ msgid "/Filters/Map/Map _Object..." -#~ msgstr "/滤镜(R)/映射(M)/映射到物体(_O)..." - -#~ msgid "Save Options" -#~ msgstr "ä¿å­˜é€‰é¡¹" - -#~ msgid "/Filters/Colors/Map/_Alien Map..." -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/奇异映射(_A)..." - -#~ msgid "AlienMap: Transforming..." -#~ msgstr "奇异映射:正在å˜æ¢..." - -#~ msgid "AlienMap" -#~ msgstr "奇异映射" - -#~ msgid "Change intensity of the red channel" -#~ msgstr "改å˜çº¢è‰²é€šé“的亮度" - -#~ msgid "Change intensity of the green channel" -#~ msgstr "改å˜ç»¿è‰²é€šé“的亮度" - -#~ msgid "Change intensity of the blue channel" -#~ msgstr "改å˜è“色通é“的亮度" - -#~ msgid "Cos_ine" -#~ msgstr "余弦(_I)" - -#~ msgid "Use sine-function for red component." -#~ msgstr "对红色部分使用正弦函数" - -#~ msgid "Use cosine-function for red component." -#~ msgstr "对红色部分使用余弦函数" - -#~ msgid "" -#~ "Red channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "红色通é“:使用线性映射而ä¸æ˜¯ä»»ä½•ä¸‰è§’函数" - -#~ msgid "Use sine-function for green component." -#~ msgstr "对绿色部分使用正弦函数" - -#~ msgid "Use cosine-function for green component." -#~ msgstr "对绿色部分使用余弦函数" - -#~ msgid "" -#~ "Green channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "绿色通é“:使用线性映射而ä¸æ˜¯ä»»ä½•ä¸‰è§’函数" - -#~ msgid "Use sine-function for blue component." -#~ msgstr "对è“色部分使用正弦函数" - -#~ msgid "Use cosine-function for blue component." -#~ msgstr "对è“色部分使用余弦函数" - -#~ msgid "" -#~ "Blue channel: use linear mapping instead of any trigonometrical function" -#~ msgstr "è“色通é“:使用线性映射而ä¸æ˜¯ä»»ä½•ä¸‰è§’函数" - -#~ msgid "About AlienMap" -#~ msgstr "关于奇异映射" - -#~ msgid "/Filters/Colors/Map/Alien Map _2..." -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/奇异映射 2(_2)..." - -#~ msgid "Change frequency of the red/hue channel" -#~ msgstr "改å˜çº¢è‰²/色调通é“的频率" - -#~ msgid "Change angle of the red/hue channel" -#~ msgstr "改å˜çº¢è‰²/色调通é“的相ä½" - -#~ msgid "Change frequency of the green/saturation channel" -#~ msgstr "改å˜ç»¿è‰²/饱和度通é“的频率" - -#~ msgid "Change angle of the green/saturation channel" -#~ msgstr "改å˜ç»¿è‰²/饱和度通é“的相ä½" - -#~ msgid "Change frequency of the blue/luminance channel" -#~ msgstr "改å˜è“色/亮度通é“的频率" - -#~ msgid "Change angle of the blue/luminance channel" -#~ msgstr "改å˜è“色/亮度通é“的相ä½" - -#~ msgid "Use function for red/hue component" -#~ msgstr "对红色/色调组分使用函数" - -#~ msgid "Use function for green/saturation component" -#~ msgstr "对绿色/饱和度组分使用函数" - -#~ msgid "Use function for blue/luminance component" -#~ msgstr "对è“色/亮度组分使用函数" - -#~ msgid "About AlienMap2" -#~ msgstr "关于奇异映射 2" - -#~ msgid "/Filters/Render/Pattern/CML _Explorer..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/CML 探索器(_E)..." - -#~ msgid "NULL" -#~ msgstr "空" - -#~ msgid "CML File Operation Warning" -#~ msgstr "CML 文件æ“作警告" - -#~ msgid "/Layer/Align _Visible Layers..." -#~ msgstr "/图层(L)/对é½å¯è§å›¾å±‚(_V)..." - -#~ msgid "/Filters/Animation/_Playback..." -#~ msgstr "/滤镜(R)/动画(I)/回放(_P)..." - -#~ msgid "/Filters/Animation/Optimize (for _GIF)" -#~ msgstr "/滤镜(R)/动画(I)/优化(对 GIF)(_G)" - -#~ msgid "/Filters/Animation/_Remove Backdrop" -#~ msgstr "/滤镜(R)/动画(I)/去除背景(_R)" - -#~ msgid "/Filters/Animation/_Find Backdrop" -#~ msgstr "/滤镜(R)/动画(I)/寻找背景(_F)" - -#~ msgid "/Filters/Glass Effects/Apply _Lens..." -#~ msgstr "/滤镜(R)/玻璃效果(S)/应用é€é•œ(_L)..." - -#~ msgid "/Layer/Colors/Auto/Stretch _HSV" -#~ msgstr "/图层(L)/颜色(C)/自动(A)/拉伸 HSV(_H)" - -#~ msgid "/Filters/Distorts/_Blinds..." -#~ msgstr "/滤镜(R)/扭曲(D)/百å¶çª—帘(_B)..." - -#~ msgid "/Filters/Colors/_Border Average..." -#~ msgstr "/滤镜(R)/颜色(C)/边界å‡å€¼(_B)..." - -#~ msgid "1 (nonsense?)" -#~ msgstr "1 (没æ„义?)" - -#~ msgid "256 (nonsense?)" -#~ msgstr "256 (没æ„义?)" - -#~ msgid "/Filters/Map/_Bump Map..." -#~ msgstr "/滤镜(R)/映射(M)/凹凸贴图(_B)..." - -#~ msgid "_Linear Map" -#~ msgstr "线性映射(_L)" - -#~ msgid "_Spherical Map" -#~ msgstr "çƒçŠ¶æ˜ å°„(_S)" - -#~ msgid "S_inuosidal Map" -#~ msgstr "正弦映射(_I)" - -#~ msgid "/Layer/Colors/Auto/_Stretch Contrast" -#~ msgstr "/图层(L)/颜色(C)/自动(A)/拉伸对比度(_S)" - -#~ msgid "/Filters/Colors/Colorcube A_nalysis..." -#~ msgstr "/滤镜(R)/颜色/色系分æž(_N)..." - -#~ msgid "Results" -#~ msgstr "结果" - -#~ msgid "/Filters/Colors/Channel Mi_xer.." -#~ msgstr "/滤镜(R)/颜色/通é“æ··åˆå™¨(_X)..." - -#~ msgid "/Filters/Render/Pattern/_Checkerboard..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/棋盘(_C)..." - -#~ msgid "/Layer/Colors/Auto/_Color Enhance" -#~ msgstr "/图层(L)/颜色(C)/自动(A)/颜色增强(_C)" - -#~ msgid "/Filters/Colors/_Colorify..." -#~ msgstr "/滤镜(R)/颜色(C)/å•è‰²åŒ–(_C)..." - -#~ msgid "/Filters/Colors/Color to _Alpha..." -#~ msgstr "/滤镜(R)/颜色(C)/颜色到 Alpha(_A)..." - -#~ msgid "/Filters/Colors/C_ompose..." -#~ msgstr "/滤镜(R)/颜色(C)/åˆæˆ(_O)..." - -#~ msgid "/Filters/Generic/_Convolution Matrix..." -#~ msgstr "/滤镜(R)/通用(G)/å·ç§¯çŸ©é˜µ(_C)..." - -#~ msgid "/Filters/Distorts/_Curve Bend..." -#~ msgstr "/滤镜(R)/扭曲(D)/曲线扭曲(_C)..." - -#~ msgid "/Filters/Colors/_Decompose..." -#~ msgstr "/滤镜(R)/颜色(C)/分解(_D)..." - -#~ msgid "/Filters/Enhance/_Deinterlace..." -#~ msgstr "/滤镜(R)/增强(H)/去除交错(_D)..." - -#~ msgid "/Filters/Combine/_Depth Merge..." -#~ msgstr "/滤镜(R)/组åˆ(O)/深度åˆå¹¶(_D)..." - -#~ msgid "/Filters/Enhance/Des_peckle..." -#~ msgstr "/滤镜(R)/增强(H)/去除斑点(_P)..." - -#~ msgid "/Filters/Enhance/Des_tripe..." -#~ msgstr "/滤镜(R)/增强(H)/去除æ¡çº¹(_T)..." - -#~ msgid "/Filters/Render/Pattern/_Diffraction Patterns..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/è¡å°„图案(_D)..." - -#~ msgid "/Filters/Map/_Displace..." -#~ msgstr "/滤镜(R)/映射(M)/移ä½(_D)..." - -#~ msgid "Displace Options" -#~ msgstr "移ä½é€‰é¡¹" - -#~ msgid "/Filters/Edge-Detect/_Edge..." -#~ msgstr "/滤镜(R)/边缘检测(T)/边缘(_E)..." - -#~ msgid "/Filters/Distorts/_Emboss..." -#~ msgstr "/滤镜(R)/扭曲(D)/浮雕(_E)..." - -#~ msgid "/Filters/Distorts/En_grave..." -#~ msgstr "/滤镜(R)/扭曲(D)/刻画(_G)..." - -#~ msgid "/Filters/Colors/Map/_Color Exchange..." -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/颜色å˜æ¢(_C)..." - -#~ msgid "_Selection" -#~ msgstr "选择(_S)" - -#~ msgid "/Filters/Light Effects/_FlareFX..." -#~ msgstr "/滤镜(R)/光线效果(L)/闪光(FlareFX)(_F)..." - -#~ msgid "/Filters/Map/_Fractal Trace..." -#~ msgstr "/滤镜(R)/映射(M)/分形追溯(_F)..." - -#~ msgid "/Filters/Toys/Gee-_Slime" -#~ msgstr "/滤镜(R)/玩具(Y)/Gee-Slime(_S)" - -#~ msgid "GEE-ZOOM: The Plug-In Formerly Known As \"The GIMP E'er Egg\"" -#~ msgstr "GEE-ZOOM:这个æ’件以å‰å«åšâ€œThe GIMP E'er Eggâ€" - -#~ msgid "Save as GIcon" -#~ msgstr "ä¿å­˜ä¸º GIcon" - -#~ msgid "Icon Name:" -#~ msgstr "图标å字:" - -#~ msgid "Milliseconds" -#~ msgstr "毫秒" - -#~ msgid "/Filters/Render/Pattern/_Qbist..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/Qbist(_Q)..." - -#~ msgid "/Filters/Colors/Map/_Gradient Map" -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/æ¸å˜æ˜ å°„(_G)" - -#~ msgid "/Filters/Render/Pattern/_Grid..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/网格(_G)..." - -#~ msgid "/Filters/Map/_Illusion..." -#~ msgstr "/滤镜(R)/影射(M)/幻象(_I)..." - -#~ msgid "/Filters/Distorts/_IWarp..." -#~ msgstr "/滤镜(R)/扭曲(D)/交互å¼ç¿˜æ›²(_I)..." - -#~ msgid "/Filters/Render/Pattern/_Jigsaw..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/拼图(_J)..." - -#~ msgid "Preview (in image window, will modify image's undo history!)" -#~ msgstr "预览 (在图åƒçª—å£ä¸­ï¼Œå°†ä¼šæ”¹å˜å›¾åƒçš„撤销历å²ï¼)" - -#~ msgid "Image comments" -#~ msgstr "图åƒæ³¨é‡Š" - -#~ msgid "/Filters/Map/_Van Gogh (LIC)..." -#~ msgstr "/滤镜(R)/映射(M)/凡高(LIC)(_V)..." - -#~ msgid "/Filters/Colors/Map/Adjust _FG-BG" -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/调整å‰æ™¯-背景(_F)" - -#~ msgid "/Filters/Colors/Map/Color Range _Mapping..." -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/颜色范围映射(_M)..." - -#~ msgid "/Filters/Blur/_Motion Blur..." -#~ msgstr "/滤镜(R)/模糊(B)/动æ€æ¨¡ç³Š(_M)..." - -#~ msgid "/Filters/Distorts/_Mosaic..." -#~ msgstr "/滤镜(R)/扭曲(D)/马赛克(_M)..." - -#~ msgid "/Filters/Distorts/Newsprin_t..." -#~ msgstr "/滤镜(R)/扭曲(D)/报纸(_T)..." - -#~ msgid "/Filters/Enhance/_NL Filter..." -#~ msgstr "/滤镜(R)/增强(H)/éžçº¿æ€§æ»¤æ³¢(_N)..." - -#~ msgid "/Filters/Noise/_Noisify..." -#~ msgstr "/滤镜(R)/噪音(N)/添加噪音(_N)..." - -#~ msgid "/Filters/Light Effects/Su_perNova..." -#~ msgstr "/滤镜(R)/光线效果(L)/超新星(_P)..." - -#~ msgid "/Filters/Artistic/Oili_fy..." -#~ msgstr "/滤镜(R)/艺术(A)/油画(_F)..." - -#~ msgid "/Filters/Map/_Paper Tile..." -#~ msgstr "/滤镜(R)/映射(M)/纸片平铺(_P)..." - -#~ msgid "/Filters/Blur/_Pixelize..." -#~ msgstr "/滤镜(R)/模糊(B)/åƒç´ åŒ–(_P)..." - -#~ msgid "/Xtns/_Plugin Details" -#~ msgstr "/扩展(X)/æ’件详细信æ¯(_P)" - -#~ msgid "/Filters/Distorts/P_olar Coords..." -#~ msgstr "/滤镜(R)/扭曲(D)/æžåæ ‡(_O)..." - -#~ msgid "write error occured" -#~ msgstr "出现写错误" - -#~ msgid "_X-Offset:" -#~ msgstr "X-ä½ç§»(_X):" - -#~ msgid "_Y-Offset:" -#~ msgstr "Y-ä½ç§»(_Y):" - -#~ msgid "/Filters/Noise/_Hurl..." -#~ msgstr "/滤镜(R)/噪音(N)/æ’’(Hurl)(_H)..." - -#~ msgid "/Filters/Noise/_Pick..." -#~ msgstr "/滤镜(R)/噪音(N)/æ‹£(Pick)(_P)..." - -#~ msgid "/Filters/Distorts/_Ripple..." -#~ msgstr "/滤镜(R)/扭曲(D)/波纹(_R)..." - -#~ msgid "/Filters/Colors/Map/_Sample Colorize..." -#~ msgstr "/滤镜(R)/颜色(C)/映射(P)/样本色彩化(_S)..." - -#~ msgid "/Filters/Noise/S_catter HSV..." -#~ msgstr "/滤镜(R)/噪音(N)/分散 HSV(_C)..." - -#~ msgid "Preview (1:4) - Right Click to Jump" -#~ msgstr "预览(1:4) - å³ç‚¹è·³è½¬" - -#~ msgid "/File/Acquire/_Screen Shot..." -#~ msgstr "/文件(F)/获å–(A)/å±å¹•æŠ“图(_S)..." - -#~ msgid "/Filters/Blur/_Selective Gaussian Blur..." -#~ msgstr "/滤镜(R)/模糊(B)/选择性高斯模糊(_S)..." - -#~ msgid "/Filters/Colors/_Semi-Flatten" -#~ msgstr "/滤镜(R)/颜色(C)/åŠå¹³æ•´(_S)" - -#~ msgid "/Filters/Distorts/_Shift..." -#~ msgstr "/滤镜(R)/扭曲(D)/滑移(_S)..." - -#~ msgid "/Filters/Render/Pattern/_Sinus..." -#~ msgstr "/滤镜(R)/绘制(R)/图案(P)/正弦(_S)..." - -#~ msgid "/Filters/Colors/Smoo_th Palette..." -#~ msgstr "/滤镜(R)/颜色(C)/平滑色æ¿(_T)..." - -#~ msgid "/Filters/Render/Clouds/_Solid Noise..." -#~ msgstr "/滤镜(R)/绘制(R)/云彩(C)/纯色噪音(_S)..." - -#~ msgid "/Filters/Edge-Detect/_Sobel..." -#~ msgstr "/滤镜(R)/边缘检测(T)/Sobel(_S)..." - -#~ msgid "/Filters/Light Effects/_Sparkle..." -#~ msgstr "/滤镜(R)/光线效果(L)/ç«èŠ±(_S)..." - -#~ msgid "/Filters/Render/Sphere _Designer..." -#~ msgstr "/滤镜(R)/绘制(R)/çƒé¢è®¾è®¡å™¨(_D)..." - -#~ msgid "/Filters/Noise/Sp_read..." -#~ msgstr "/滤镜(R)/噪音(N)/扩散(_R)..." - -#~ msgid "/Filters/Artistic/_Apply Canvas..." -#~ msgstr "/滤镜(R)/艺术(A)/使用画布(_A)..." - -#~ msgid "Open SVG" -#~ msgstr "打开 SVG" - -#~ msgid "Ratio _X:" -#~ msgstr "比率 X(_X):" - -#~ msgid "Targa Options" -#~ msgstr "Targa 选项" - -#~ msgid "/Filters/Map/_Tile..." -#~ msgstr "/滤镜(R)/映射(M)/平铺(_T)..." - -#~ msgid "/Filters/Map/_Small Tiles..." -#~ msgstr "/滤镜(R)/映射(M)/å°å—平铺(_S)..." - -#~ msgid "Flipping" -#~ msgstr "翻转" - -#~ msgid "Applied to Tile" -#~ msgstr "应用范围" - -#~ msgid "Segment Setting" -#~ msgstr "分段设置" - -#~ msgid "/Filters/Map/_Make Seamless" -#~ msgstr "/滤镜(R)/映射(M)/æ— ç¼å¤„ç†(_M)" - -#~ msgid "/Filters/Enhance/_Unsharp Mask..." -#~ msgstr "/滤镜(R)/增强/虚光蒙æ¿(_U)..." - -#~ msgid "/Filters/Distorts/Vi_deo..." -#~ msgstr "/滤镜(R)/扭曲(T)/视频(_D)..." - -#~ msgid "/Filters/Colors/_Value Invert" -#~ msgstr "/滤镜(R)/颜色(C)/亮度å转(_V)" - -#~ msgid "/Filters/Distorts/_Value Propagate..." -#~ msgstr "/滤镜(R)/扭曲(T)/颜色ç¹æ®–(_V)..." - -#~ msgid "/Filters/Generic/_Dilate" -#~ msgstr "/滤镜(R)/通用(G)/膨胀(_D)..." - -#~ msgid "Secondary Options" -#~ msgstr "次选项" - -#~ msgid "Other Options" -#~ msgstr "其它选项" - -#~ msgid "/Filters/Distorts/_Waves..." -#~ msgstr "/滤镜(R)/扭曲(D)/æ³¢(_W)..." - -#~ msgid "/Filters/Distorts/W_hirl and Pinch..." -#~ msgstr "/滤镜(R)/扭曲(T)/旋转与挤压(_H)..." - -#~ msgid "/File/Acquire/From Clipboard" -#~ msgstr "/文件(F)/获å–(A)/从剪贴æ¿" - -#~ msgid "/Xtns/_DB Browser" -#~ msgstr "/扩展(X)/DB æµè§ˆå™¨(_D)" - -#~ msgid "/Filters/Colors/_Filter Pack..." -#~ msgstr "/图层(L)/颜色(C)/组åˆæ»¤é•œ(_F)..." - -#~ msgid "Miscellaneous Options" -#~ msgstr "其它选项" - -#~ msgid "With BG of:" -#~ msgstr "背景设为:" - -#~ msgid "Selection Type:" -#~ msgstr "选择类型:" - -#~ msgid "none" -#~ msgstr "没有" - -#~ msgid "Not found \"%s\": used \"%s\" instead" -#~ msgstr "没有找到“%sâ€ï¼šä½¿ç”¨â€œ%sâ€æ›¿ä»£" - -#~ msgid "Brush Preview:" -#~ msgstr "画笔预览:" - -#~ msgid "/Filters/Artistic/_GIMPressionist..." -#~ msgstr "/滤镜(R)/艺术(A)/å°è±¡æ´¾è‰ºæœ¯å®¶(GIMPressionist)(_G)..." - -#~ msgid "Paper Preview:" -#~ msgstr "画纸预览:" - -#~ msgid "(Desc)" -#~ msgstr "(æè¿°)" - -#~ msgid "" -#~ "\n" -#~ "If you come up with some nice Presets,\n" -#~ "(or Brushes and Papers for that matter)\n" -#~ "feel free to send them to me \n" -#~ "for inclusion into the next release!\n" -#~ msgstr "" -#~ "\n" -#~ "如果您有一些好的预设值,\n" -#~ "(或者这方é¢çš„画笔和画纸)\n" -#~ "欢迎把它们å‘给我 \n" -#~ "以添加到下一次å‘布当中ï¼\n" - -#~ msgid "/Filters/Render/Nature/Ifs_Compose..." -#~ msgstr "/滤镜(R)/绘制(R)/自然(N)/Ifs 创作(_C)..." - -#~ msgid "lpeek.mrijk@consunet.nl" -#~ msgstr "lpeek.mrijk@consunet.nl" - -#~ msgid "" -#~ "Generates a maze using either the depth-first search method or Prim's " -#~ "algorithm. Can make tileable mazes too. See %s for more help." -#~ msgstr "" -#~ "使用深度优先æœç´¢æ–¹æ³•æˆ–者 Prim 的算法生æˆä¸€å¹…迷宫。也å¯ä»¥ç”Ÿæˆå¯å¹³é“ºçš„迷宫。" -#~ "请看 %s 得到更多帮助。" - -#~ msgid "Draws a maze." -#~ msgstr "绘制一幅迷宫。" - -#~ msgid "Selection is %dx%d" -#~ msgstr "当å‰é€‰åŒºä¸º %dx%d" - -#~ msgid "/Filters/Distorts/_Pagecurl..." -#~ msgstr "/滤镜(R)/扭曲(T)/页é¢å·æ›²(_P)..." - -#~ msgid "/File/_Print..." -#~ msgstr "/文件(F)/打å°(_P)..." - -#~ msgid "/Filters/Colors/Map/Colormap _Rotation..." -#~ msgstr "/滤镜(R)/颜色(C)/颜色表旋转(_R)..." - -#~ msgid "What is Gray?" -#~ msgstr "什么是ç°è‰²ï¼Ÿ" - -#~ msgid "Main" -#~ msgstr "主选项" - -#~ msgid "Misc" -#~ msgstr "其它" - -#~ msgid "M_inimum Height:" -#~ msgstr "最å°é«˜åº¦(_I):" - -#~ msgid "Minimum height for bumps" -#~ msgstr "凸起的最å°é«˜åº¦" - -#~ msgid "" -#~ "Failed to open help files:\n" -#~ "%s" -#~ msgstr "" -#~ "无法打开帮助文件:\n" -#~ "%s" - -#~ msgid "The requested help files are not installed." -#~ msgstr "请求的帮助文件没有安装。" diff -uraN gimp-2.2.8/po-script-fu/ca.gmo gimp-2.2.9/po-script-fu/ca.gmo --- gimp-2.2.8/po-script-fu/ca.gmo 2005-05-08 23:42:33.000000000 +0200 +++ gimp-2.2.9/po-script-fu/ca.gmo 2005-08-15 12:09:24.000000000 +0200 @@ -1,60 +1,73 @@ -Þ•’¬ <°! ±!¿!Ã! Ê! Ö!â! û! "" (" -4"?" -V"a"j" y"ƒ" ‰"“"­"Ë"Ó"Ü" -ä"ï"##"# -3# -># -I# T#^#w# #œ#¢#±#Ç#à# -ö# -$ $$ $ &$2$ D$ P$Z$ j$ x$ †$ “$Ÿ$´$ -º$!Å$"ç$ -%%(%:% M% Y%e% t%‚%“%¥%¸% ¿%Ì%æ%ì%ô%ü% &&& -!& ,&9& J&EX&ž&¤&´& -Ä&<Ï& ''+'3' H'T'Z' k'x' '‹'`' ñ'ý'('(?(Q( e(q( €( Š( -–(¡(º(Ô(í() )%)+) 1) ;)H) X)d) -j)u)‘)–) Ÿ) ©)³) Â) Ì) Ø)ä) ì) -ú) *** --* 8* E*S*X* -l*w*Š*›* ¡* -­*¸*¿*Ý* ì* -ù* ++'+0+A+Y+ q+}+”+ «+·+¾+Æ+Ï+â+õ+,,), -2, -=,H, L, Y, -f,q, €, Œ,"˜, »,Ç,Ú,î, ---,-<-L- [-g-l-- †-- —-£-¸-Ê-Þ- î- û-..'...'3. -[.f. k.w.Œ.“.¥.·.Ç.Ø.é.ù./////8/ A/O/d/u/ }/ ‰/ –/¢/ ¶/Ä/ Ý/ ê/ ô/0 0 0000 -P0[0c0u0‡0 –0£0ª0 ³0À0É0Û0ì0ý011.161 H1U1Y1 -`1k1 {1 -‡1’1¯1É1 Û1é1 ø12 2 2 '232 82 B2N2V2^2o22™2³2Å2Þ2ù23/3K3d36w39®3=è3 &444 P4Z4k4{4 “4´4Ô4Ù4ó455 5%5,5<5L5 _5l5 |5‰5›5¡5 µ5Â5Ç5Í5Ô5è5 ú566#6 86E6U6e6 -l6w6~6†66•6 6 ©6µ6 Ä6Ð6ä6 -é6ô67 7 +757D7 U7#c7‡7Œ7‘7¨7±7É7Î7 Ñ7Ý7ò788/8+E8(q8š8&®8Õ8 -Þ8 é8 ö899 9 %929 79 C9(O9x9 -‰9 ”9¢9³9»9Ä9Õ9?Û9;+;/; 5; A;O; n;|;Œ;¥; ¶;Ä;Û;ó;ú;<< <$(<(M<v<}<–<< ¯<½<Ì<Û<ê<þ< -= = *= K=l=€=†=˜=³=Ñ=ì= ü= -> >&>=>L>e>w>Š> >±>Â>Ò>á>û>?%?9?Y?n?ˆ?¦?Ã?Ò?æ?ù? @#@9@T@[@*n@™@Ÿ@§@¯@·@È@Ñ@ -Ù@ä@ù@ -AKAeA lAyA -AH›AäAêA -BB *B 7BCBTB eB oByByBùB( -C(3C'\C„C C¿CÒCìCûC DD>D^D}DœD ·DÁDÉD ÑDßD ðD þD E E("EKE RE_EzE•E¬E´E ÅEÓEÛEóEùEFF3FDFVFgF#wF›F"µFØFìFñF GG.GCGVGiG~G!’G´G½G%ÏGõG H!H;HUHkHsH |H†H¤HÂHÖHæHýHI #I/I3ICIXIjI|I‘I&¢IÉIÙIøI -J &J 4J>JUJdJuJ‰J›J¤J»J ÂJÌJèJ÷JK"K2KBKZKnK‡K -˜K£K'§KÏKáK åKóK LL(L?LPLaLqL!ƒL ¥L¯LµLÍLàLóL M&M@M IMUMdMtM’M!¤MÆM×MëMN N N'N$DN iNuN|NN  N®N½N ÄNÎN ãNíNOO$O6OFO[ObO |OŠOŽO“OœO«O ½O!ÊOìO PP,P@PTPZPuP|P”PšP ©P ¶P ÂP$ÎP#óP#Q!;Q]Q"tQ#—Q+»Q$çQ" R"/RRR?jRFªRKñR =S"KSnS}S’S"¡S0ÄS*õS T!'TITXT _T€T“T™T´TÏTíTþTU'U:U@USUgUlUtU}U–U ¬U¹UËUÓUìUþUV*V 2V>VFVOV VV `V jVxVˆVœV«VÀVÅVÔVëV -WWW/WAW'QWyWW†W—W W¸W¾WÄWÓWêWX/X#NX6rX3©XÝX>üX;YDYSYiY{YƒY™Y²YÉY ÑY ßY(íYZ -'Z2ZDZ -aZlZtZˆZ{<_Ùý.4Õñ³'ìp>63ŽZàÝz:©+ŒRÔ5fðÏ«W×o0bÑ ÇqA¶˜8‘TBLM8Þ†œdJ‡|rUÄ,-E)2vp/9è 0+h5eÿ.é›Oˆ= g“$G¡K$nÍuƉ¢I±ÅaHã… w£VYÚ†ç¦}¤ïYíS„';sûZ!y*€|4P<fTº„¬#h‚mm[&ÈŠ(Ÿ‘*\xj>…U3 PžWH]j^7~åÎJÌ~s-il¯¾âeÐB»Ö€?îKcV §i& }üõ -CCä1v1ë7wÓMon=áuþ,Ø¥’‹tDO²?NcG‰Ž•_"°]k{ƒtxŠÒagQ¹(AD½—Nq@š62·ËQÉ -FS ­9I‹´%\¿yzÛÜÀ®ÊŒ/EêôµX”%`lóæbdL[‚"ö`F@™ª‡Á÷^Ã)¨rúXˆÂø#ù!ßò ƒ:;¼kR’¸– %d Procedures%s:(none)/Script-Fu/1 Procedure/Xtns/Script-FuActive colorsAdd backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAllow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityBackground ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBorder X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorCarve raised textCarve white areasCell size (pixels)Chalk colorChip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsConcaveCopyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.CubicCurrent CommandCustom GradientDark colorDarken only -(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationEnd XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing +Þ• +l½¼ °+ ±+¿+Ã+ Ê+ Ö+â+ñ+,,:,V,n,‡,£,¼,Ú,ò,- *-K-#j-Ž-!¬-Î-3í-8!.9Z. ”. ¢.°.¿.Î. Þ. +ê.õ. + // ///>/ M/W/ ]/g//Ÿ/§/°/ +¸/ Ã/ Ð/ +Ü/ç/ø/ 00 ++0 +60 +A0 L0V0o0 ˆ0”0š0 ©0µ0Ë0ä0 +ú0 +111 1 *161 H1 T1^1n1 }1 ‹1 ™1 ¦1²1Ç1 +Í1!Ø1"ú1 2 )2 62 +D2O2a2 s2}2 2 œ2 ª2¶2 Å2Ó2ä2ö2 3 3373=3E3M3 U3b3j3y33 +3 ›3¨3 ¹3EÇ3 + 444.4>4 +R4<]4š4 4¹4Á4 Ö4â4è4 ù45 555`15 ’5ž5³5È5à5ò5 66 !6 +6 +76B6[6u6Ž6§6 ¼6Æ6à6æ6 ì6 ö67 77 +%707L7Q7 Z7 d7n7 }7 ‡7 “7Ÿ7 §7 +µ7 À7Ê7Ó7 +è7 ó7 888 +'828E8V8 \8 +h8s8z8˜8 §8 +´8¿8 +Ï8 Ú8æ8ý899*9B9 Z9f9}9 ”9  9¬9³9»9Ä9×9ê9ü9 :: +': +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?AOAiAƒA•A®AÉAâAÿAB4B6GB9~B=¸B öBC C*C;CKC cC„C¤C©CÃCÒCØC èCõCüC DD /Dd!Pd rd|d‚dšd©d¸dÏdìde ee*e:eYe!keeže²eÉe Òe àeîe$ f 0fgEg \gjgngsg|g‹g gªg!ºgÜgùg h!h2hFhZh`h{h‚hšh²h¸h ÇhÔh ìh øh$i#)i Minii¥i"Åi(èi!j!3jUjuj?ŽjTÎjd#k ˆk”k´kÃkÙk"èk0 l*|r»rÄrÓrìrsss2sKsbs js xs#†s +ªs µsÂs +Ösás òs +üstt *t6tGtYtktˆtŸt´tÄtátñt +u#u"=u`u!pu’u ¢u +¬u·uÉuÒuáu(ñuv1vAvQviv +„vvŸv¸vÀvÝv +óv þv ww3wJwPwdw({w¤w½wÆwÝwœïb5–¯§H¥‹¸Êg3V?ã†cÈr=mŽ! ‰Š»Æaì¨Úe2©ýöÛªð+훜À¦º×àܱ-—'B,]x +)f¬gÖ”…èÉú .2éP¿ô#hŸyA´°_ 0Ìfw Mäpa_jáþ¼òåäÈíu‘8ˆý½ÂÞ1„<7~-¬ƒ>• +¹ÁZŒþ?Õt–«'ñÇû³{yL·ªØÑjG@D Î¢ü9Iù˜´AS*‹ñžM•e™5ÊF¡û‚ÁŠîbK˜Yµ.â 7 ‰öõKGð€ë(Ž£;ó@ˆžÅ™:±ã¦BønS3l‡4ç½÷¸ÒÍ%’4Ñ\$Rvƒ=ú"ÃwòÐ}!*~Ý›&VÍT0hÏù®è  éºtiš9RÇ|N]d“ŸâO©ÚÉqß ¿#{¯óQµuvÏTIJÕzÆP· F¹6ïÙ61 `ݾnಫ¤ÎopqrÀC®ÃXÓ}¡ZH߇ł+cO×ÛLmDÿk³YsNlÿJçE„/[z>ìi$<dîW…ô%­êÐ(áÔ’¶æ¨Ä¶Q€Œ‘" +Â,¾¢£²Ô:÷åËX)Ò|ÓkWêæsE­ëËÜ»`ø¤—o&Ä8š†”^ÙØ;°Ìõ/C\^x“ÖÞ[§U¥U¼ü%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleHeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthIndex imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleNameNo background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRelative distance of horizonRelative length of shadowRemove backgroundReturn ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthSizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YStart angleStart blendStarting blendSupersampleTemporary ProcedureTextText colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWhirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Border (pixels)_Browse..._Color scheme_Filter (regexp)_Labels_Search:_Start Server..._TextProject-Id-Version: gimp 2 +%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: gimp2.2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2004-12-31 13:12+0100 -Last-Translator: Xavier Beà -Language-Team: Catalan +POT-Creation-Date: 2005-08-07 11:51+0200 +PO-Revision-Date: 2005-05-15 05:47+0100 +Last-Translator: Quim Perez i Noguer +Language-Team: Català MIME-Version: 1.0 -Content-Type: text/plain; charset=utf-8 +Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%d procediments%s:(cap)/Script-Fu/1 procediment/Extensions/Script-FuColors actiusAfegeix un fonsAfegeix ombra descendentAfegeix lluentorAfegeix ombraInformació addicionalDesprés de la lluentorEspraiPermet redimensionarAmplitudAngleSuavitzatAplica una màscara de capa generadaAplica una màscara de capa (o descarta)Autor:Escapça automàticamentAzimutOpacitat del fonsColor de fonsImatge de fonsColor del fonsImatge de fonsAlçada de la barraAmplada de la barraColor baseComportamentAlçada del biselat (definició)Alçada del biselat (definició)Amplada del biselatNegreNegre sobre blancBarreja el degradat (text)Barreja el degradat (contorn)Barreja el degradat (text)Mode de barrejaMida del blocDifumina en XDifumina en YQuantitat de difuminatDifumina margeDifumina horitzontalmentRadi de difuminatTipus de difuminatDifumina verticalmentMida del marge XMida del marge YColor del margeMida del margeMida del marge (píxels) PinzellNom del pinzellRadi de difuminat Bumpmap (capa alfa)Crema: es necessiten dues capesColor de l'explosióEsculpeix el text aixecatEsculpeix les àrees blanquesMida de la cel·la (píxels)Color del guixQuantitat de bocinsBalanç del cromatFactor del cromatLluminositat del cromatSaturació del cromatÀrees blanques del cromatCercleLlavor del circuitNeteja l'àrea de màscara no seleccionadaColorColor 1Color 2Color 3Mètode de colorColumnesCòncauCopyright:Amplada de la coronaCrea una imatge novaCrea ombraCrea quatre guies al voltant del quadre delimitador de la selecció actual.CúbicOrdre actualDegradat personalitzatColor foscNomés enfosqueja -(Millor, però només per a imatges amb molt de blanc)Data:Paràmetres bumpmap per defecteDesenfocaValor delta del colorDensitat (%)ProfunditatDetall en el migNivell de detallDiàmetreDireccióAvallDibuixa espirògrafs, epitrocòides i corbes de Lissajous. Podeu obtenir més informació a http://netword.com/*spyrogimpOmbra descendentDesplaçament en X de l'ombra descendentDesplaçament en Y de l'ombra descendentRadi de difuminat de l'ombra descendentColor de l'ombra descendentOpacitat de l'ombra descendentQuantitat de voresComportament de les voresNomés la voraRadi de la voraAmplada de la voraMida de l'efecte (píxels * 3) Mida de l'efecte (píxels * 30)Mida de l'efecte (píxels * 4)Mida de l'efecte (píxels * 5)Mida de l'efecte (píxels)ElevacióX finalY finalBarreja finalFi de la barrejaMapa d'entornEpitrocòidesEsborraEsborra/OmpleS'ha produït un error en executar +%d procediments%s:cap/Funcions/1 procediment_Vora 3D...Tubs 3_D.../Funcions/Al_químia/Funcions/Efectes per a capes _transparents/Funcions/_Animació/Funcions/_Decoració/Funcions/_Composa/Funcions/Efectes per a regions _seleccionades/Funcions/_Ombres/Funcions/Opcions de _llapis/Funcions/_UtilitatsAjuda/El GIMP a la web/Extensions/Funcions/Extensions/Funcions/Botons/Extensions/Funcions/Rètols/Extensions/Funcions/Fes un pinzell/Extensions/Funcions/Miscel·lània/Extensions/Funcions/Patrons/Extensions/Funcions/Utilitats/Extensions/Funcions/Temes per a pàgines web/Lluentor estil àlien.../Extensions/Funcions/Temes per a pàgines web/Patró amb bisell/Extensions/Funcions/Temes per a pàgines web/Gimp.org clàssicColors actius_Bisell..._Emmarca...Afegeix un fonsAfegeix una ombraAfegeix lluentorAfegeix ombraInformació addicionalDesprés de la lluentorEsprai_Lluentor estil àlien...Llums de _neó estil àlien...Permet redimensionarAmplitudAngleSuavitzatAplica la màscara de capa generadaAplica una màscara de capa (o descarta)Autor:Escapça automàticamentAzimutOpacitat del fonsBà_sic II..._Crema...B_otó...Color de fonsImatge de fonsColor del fonsImatge de fonsAlçada de la barraAmplada de la barraColor baseComportamentAlçada del relleu (definició)Alçada del relleu (definició)Alçada del relleuNegreNegre sobre blancMes_clat...Degradat (text)Degradat (contorn)Degradat (text)Mode de mesclaMida del blocDifumina en XDifumina en YNivell de difuminatDifumina margeDifumina horitzontalmentRadi del difuminatTipus de difuminatDifumina verticalmentPell de _vaca...Mida del marge XMida del marge YColor del margeMida del margeMida del marge (píxels) PinzellNom del pinzellRadi del difuminat mapa de relleu (capa alfa)Crema: es necessiten dues capes nomésColor de l'explosió_Esculpeix...Estil _niquelat...Cromatit_zador...Esculpeix el text aixecatEsculpeix les àrees blanquesEsculpit sobre el patró...Mida de la cel·la (píxels)Color del guix_Roca esbocinada...Quantitat de bocinsBalanç del niquelatFactor del niquelatLluminositat del niquelatSaturació del niquelatÀrees blanques del niquelatCercleLlavor del circuitNeteja l'àrea de màscara no seleccionadaColorColor 1Color 2Color 3Mètode de colorColumnes_Còmics...Còncau_Metàl·lic...Copyright:Amplada de la coronaCrea una imatge novaCrea ombraCrea quatre guies al voltant del quadre delimitador de la selecció actual.Cristal·lí...CúbicOrdre actualDegradat personalitzatDe_gradat personalitzat...Color foscNomés enfosqueix +(Millor, però només per a imatges amb molt de blanc)Data:Paràmetres predeterminats del mapa de relleuDesenfocaValor delta del colorDensitat (%)ProfunditatDetall en el migNivell de detallDiàmetreDireccióAvallDibuixa el gràfic _HSV...Dibuixa espirògrafs, epitrocòides i corbes de Lissajous. Podeu obtenir més informació a http://netword.com/*spyrogimpOmbraOrientació de l'ombra (eix X)Orientació de l'ombra (eix Y)Radi del difuminat de l'ombraColor de l'ombraOpacitat de l'ombraQuantitat de voresComportament de les voresNomés la voraRadi de la voraAmplada de la voraMida de l'efecte (píxels * 3) Mida de l'efecte (píxels * 30)Mida de l'efecte (píxels * 4)Mida de l'efecte (píxels * 5)Mida de l'efecte (píxels)ElevacióEl·lí_ptic...X finalY finalColor finalColor finalMapa d'entornEpitrocòidesEsborraEsborra/ompleS'ha produït un error en executar %s -%sParellParell/SenarDe primer pla a fons (HSV)De primer pla a fons (RGB)Primer pla transparentEsvaeixEsvaeix des de %Esvaeix a %EsvaeixAmplada de l'esvanimentPlomaNom del fitxerNom del fitxerOmple el fons amb un patróAngle d'emplenatOmple amb el fonsAplana la imatgeTipus de lletraMida del tipu_s de lletra (píxels)Color del tipus de lletraMida del tipus de lletra (píxels)Color de primer plaMarcColor del marcMida del marcMarcsDel cantó superior esquerre a l'inferior dretExtensió del GIMPConnector del GIMPColor de la lluentorRadi de la lluentorMida de la lluentor (píxels * 4)DegradatDegradat invertitDegradat: repeteix les dents de serraDegradat: repeteix el triangleGranularitatGranularitat (1 és baix)Granularitat (1 és baix)Escala de la gràficaAlçadaHexàgonHexàgonsDesplaçament del ressaltat XDesplaçament del ressaltat YRessalta el balançColor ressaltatOpacitat del ressaltatRelació d'encertsRelació del foratHoritzontalIIRTipus d'imatge:Alçada de la imatgeMida de la imatgeImatge a esculpirAmplada de la imatgeIndexa la imatgeIndexa en n colors (0 = manté en RGB)Dents interiorsInsereix els noms de les capesMarcs intermitjosProcediment intern del GIMPInterpolacióInverteixInverteix la direccióManté el fonsManté capa bumpManté la seleccióAlçada del terraEsquerraIl·luminació (graus)LinealLissajousEn acabar torna a començarColor inferiorColor inferior (actiu)Color inferior dretFes un fons nouMarge (píxels)Opacitat de la màscaraMida de la màscaraRadi màxim de difuminatTipus de mosàicMulticolorNomSense fons (només per separar la capa)Cap coincidènciaCapSense prémerSense prémer (actiu)NúmeroNombre de mosaics en XNombre de mosaics en YNombre de bandesNombre de colorsNombre de marcsNombre de líniesNombre de vegades que fa remolinsOctàgonsSenarDesplaçament (píxels)Desplaçament en XDesplaçament en YRadi de desplaçamentDesplaçaments (píxels * 2)Mida de la màscara d'oliOpacitatOrientacióMarge exteriorDents exteriorsRadi de difuminat del contornColor del contornInverteix el degradat del contornMida del contornColor de l'emplenatOpacitat de l'emplenatEmplenatEmplenat en XEmplenat en YEmplenat al voltant del textEmplenat de les regions transparentsParàmetresPatróPatró (contorn)Patró (sobreposa)Patró (text)Nom del patróLlapisPentàgonQuantitat de píxelsPixelitzaPolígon: 10 caresPolígon: 7 caresPolígon: 8 caresPolígon: 9 caresPosició (en %)Prepara per a un GIFPremutNavegador de procedimentsQuart de midaRLERadiRadi (%)Radi (píxels)Llavor aleatòriaAleatorietatDistància relativa de l'horitzóLongitud relativa de l'ombraSuprimeix el fonsTorna els valorsEspaiat de la cintaAmplada de la cintaDretaIntensitat de l'ondulacióDuresaRelació d'arrodonimentFilesFiles/ColumnesSortida SIODEscala en XEscala en YArguments de la seqüència d'ordresProgrés de la seqüència d'ordresSelecció de pinzell de l'Script-FuSelecció de color de l'Script-FuConsola de l'Script-FuSelecció de fitxer de l'Script-FuSelecció de carpeta de l'Script-FuSelecció de tipus de lletra de l'Script-FuSelecció de degradat de l'Script-FuSelecció de paleta de l'Script-FuOpcions de servidor de l'Script-Fu_Consola de l'Script-FuL'Script-Fu no pot processar dues seqüències al mateix temps.L'Script-Fu en mode de consola només permet la invocació interactivaL'Script-Fu en mode d'avaluació només permet la invocació no interactivaScript-Fu: %sSelecció de patró de l'Script-FuNivell del marCerca pel _comentariCerca pel _nomS'està cercant. Espereu un momentS'està cercant pel comentari. Espereu un momentS'està cercant pel nom. Espereu un momentLlavorLlindar de la selecció per colorSepara la capaSèpiaFitxer de registre del servidor:Port del servidor:OmbraDesplaçament X de l'ombraDesplaçament Y de l'ombraRadi del difuminat de l'ombraColor de l'ombraFoscor de l'ombraProfunditat de l'ombraPes de l'ombra (%)FormaDefinició (graus)Longitud del retallMidaEscampaSuavitzaSuavitza horitzontalmentSuavitza verticalmentColor sòlidEspai entre capesEspaiatVelocitat (píxels/marc)Color de l'esferaDensitat X dels puntsDensitat Y dels puntsEscampaEspirògrafQuadratQuadratsTaquesX inicialY inicialAngle inicialBarreja inicialInici de la barrejaSupermostratgeProcediment temporalTextColor del textColor del text (actiu)Inverteix el degradat del textPatró de textGruixDensitat de filIntensitat de filLongitud de filLlindar (Més gran 1<-->255 Més petit)MosàicEinaFons transparentTriangleGira d'esquerra a dretaTipusAmuntColor superiorColor superior (actiu)Color superior esquerraUtilitza el degradat actualUtilitza el _nom del tipus de lletra com a textUtilitza la selecció de creixementUtilitza el patró pel contorn en comptes del degradatUtilitza el patró pel text en comptes del degradatUtilitza sobreposat del patróUtilitza els límits de la selecció en comptes dels inferiorsVerticalLongitud d'onaQuantitat de remolinsAngle del remolíAmpladaAmplada de les bandesAmplada de les oberturesTreballa en una còpiaEnvoltaDivisions d'XDivisions d'YJa esteu executant la seqüència "%s" ._Marge (píxels)_Navega...Esquema de _color_Filtre (expressió regular)Eti_quetes_Cerca:_Inicia servidor..._Text \ No newline at end of file +%sParellParell/senarDe primer pla a fons (HSV)De primer pla a fons (RGB)Primer pla transparentEsvaeixEsvaeix des de %Esvaeix a %EsvaeixAmplada de l'esvanimentPlomaNom del fitxerNom del fitxerOmple el fons amb un patróAngle d'emplenatOmple amb el fonsAplana la imatgeTipus de lletra_Mida de la lletra (píxels)Color del tipus de lletraMida de la lletra (píxels)Color de primer plaMarcColor del marcMida del marcMarcsDel cantó superior esquerre a l'inferior dretExtensió del GIMPConnector del GIMPGlo_ssy...Fluorescents...Color de la lluentorRadi de la lluentorMida de la lluentor (píxels * 4)Degradat_Degradat del bisell...Degradat invertitDegradat: repeteix les dents de serraDegradat: repeteix el triangleGranularitatGranularitat (1 és baix)Granularitat (1 és baix)Escala de la gràficaCapçal_era...AlçadaHexàgonHexàgonsOrientació del marc (eix X)Orientació del marc (eix Y)Ressalta el balançColor del marcOpacitat del marcRelació d'encertsRelació del foratHoritzontalIIRTipus d'imatge:Alçada de la imatgeMida de la imatgeImatge a esculpirAmplada de la imatgeRetolador nen petit (Imigre-_26)...Indexa la imatgeIndexa en N colors (0 = manté en RGB)Dents interiorsInsereix els noms de les capesMarcs intermitjosProcediment intern del GIMPInterpolacióInverteixInverteix la direccióManté el fonsManté capa de relleuManté la seleccióAlçada del terraEsquerraIl·luminació (graus)_Ratllat radial...LinialLissajousEn acabar torna a començarColor inferiorColor inferior (actiu)Color inferior dretFes un fons nouMarge (píxels)Opacitat de la màscaraMida de la màscaraRadi màxim del difuminatTipus de mosaicMulticolorLlums de n_eó...NomNova guia (per _percentatge)...Noves guies des de _seleccióCrea una _guia...Text de diari...Sense fons (només per separar la capa)Cap coincidènciaCapSense prémerSense prémer (actiu)NombreNombre de mosaics en XNombre de mosaics en YNombre de bandesNombre de colorsNombre de marcsNombre de líniesNombre de vegades que fa remolinsOctàgonsSenarDesplaçament (píxels)Vector (eix X)Vector (eix Y)Radi del desplaçamentDesplaçaments (píxels * 2)Mida de la màscara d'oliOpacitatOrientacióMarge exteriorDents exteriorsRadi del difuminat del contornColor del contornInverteix el degradat del contornMida del contornColor de l'emplenatOpacitat de l'emplenatEmplenatEmplenat en XEmplenat en YEmplenat al voltant del textEmplenat de les regions transparentsParàmetresPatróPatró (contorn)Patró (sobreposa)Patró (text)Nom del patróLlapisPentàgonQuantitat de píxelsPixelitza_Instal·la més connectorsPolígon: 10 caresPolígon: 7 caresPolígon: 8 caresPolígon: 9 caresPosició (en %)Prepara per a un GIFClicatGestor de procedimentsQuart de midaRLERadiRadi (%)Radi (píxels)Llavor aleatòriaAleatorietatRe_ctangular...Distància relativa de l'horitzóLongitud relativa de l'ombraSuprimeix el fonsMapa de _relleu II...Valors de retornEspaiat de la cintaAmplada de la cintaDretaIntensitat de l'ondulacióDuresaRelació d'arrodonimentR_ectangle arrodonit...FilesFiles/columnesSortida SIODNiquelat i _emmarcat...Escala en XEscala en YArguments de la seqüència d'ordresProgrés de la seqüència d'ordresFunció de selecció del pinzellFunció de selecció del colorConsola de les funcionsFunció de selecció del fitxerFunció de selecció de la carpetaFunció de selecció del tipus de lletraFunció de selecció del degradatFunció de selecció de la paletaOpcions de servidor de funcions_Consola de les funcionsUna funció no pot processar dues seqüències al mateix temps.Si s'activa la consola només es permetrà la invocació interactiva de les funcionsSi s'activa l'avaluador de funcions només es permetrà la invocació no interactiva de les funcionsFunció: %sFunció de selecció del patróNivell del marCerca per _propagandaCerca pel _nomS'està cercant. Espereu un momentS'està cercant pel comentari. Espereu un momentS'està cercant pel nom. Espereu un momentLlavorLlindar de la selecció per colorSepara la capaSèpiaFitxer de traces del servidor:Port del servidor:OmbraDesplaçament X de l'ombraDesplaçament Y de l'ombraRadi del difuminat de l'ombraColor de l'ombraFoscor de l'ombraProfunditat de l'ombraPes de l'ombra (%)FormaDefinició (graus)Longitud del retall_Mostra l'estructura de la imatge...Botó amb bisell...MidaEscampaSuavitzaSuavitza horitzontalmentSuavitza verticalmentColor sòlidEspai entre capesEspaiatVelocitat (píxels/marc)Text amb velocitat...Color de l'esferaDensitat X dels puntsDensitat Y dels puntsEscampaEspirògrafQuadratQuadrats_Il·luminat per una estrella...Taques_Llum d'estrella...X inicialY inicialAngle inicialColor inicialColor inicialSupermostratgeRemolí de _sorra...T_ubs 2D...Lletres sobre botó arrodonit (_mitjà)...Procediment temporalTextText circular...Color del textColor del text (actiu)Inverteix el degradat del textPatró de textGruixDensitat de filIntensitat de filLongitud de filLlindar (més gran 1<-->255 més petit)MosaicFes-ne un pin_zell...Fes-ne una _imatgeFes-ne un _patró...EinaFons transparentTriangleLletres sobre botó arrodonit (_petit)...Gira d'esquerra a dretaTipusAmuntColor superiorColor superior (actiu)Color superior esquerraUtilitza el degradat actualUtilitza el _nom del tipus de lletra com a textUtilitza la selecció creixentUtilitza el patró pel contorn en comptes del degradatUtilitza el patró pel text en comptes del degradatUtilitza sobreposat del patróUtilitza els límits de la selecció en comptes dels inferiorsVerticalLongitud d'onaTítol de pàgina web...Quantitat de remolinsAngle del remolíAmpladaAmplada de les bandesAmplada de les oberturesTreballa en una còpiaEnvoltaDivisions d'XDivisions d'YJa esteu executant la funció "%s"._Fletxa..._Bàsic I...Capçalera _gran..._Mescla..._Marge (píxels)_Cerca..._Rodona..._Camuflatge...Escrit amb _guix..._Circuit...Sobre _teixit...Taca de _cafè...Esquema de _colorWeb per als _desenvolupadors_Apura la selecció...Ombra d'un _paper..._El·líptic..._Esborra les altres files...Vora di_fosa..._Filtre (expressió regular)A_plana..._Mostra tots els tipus de lletra..._Portada d'avantguarda (Frosty)..._Marc difós...Lletres sobre _botó arrodonit..._Quadrícula..._Barra..._Etiquetes_Mapa de relleu I_Lava...Web _principalFot_o antiga...Pinta el contorn amb un _vaporitzador...Ombra d'un _edifici...De_predador... _Rectangular..._Recarrega les funcions_Suprimeix totes les guies_Arruga...Botó _rodó..._Arrodoneix les vores..._Cerca:Emmarca com un _fotograma...Capçalera _petita..._Esfera..._Fes rodar..._Espirògraf...Inicia el _servidor...Ra_jola de remolins..._TextSobre el pa_tró...Di_fumina en mosaic...Lle_tres sobre botó arrodonit (gran)..._Desbrava la màscara..._Ones...Teixit de _cistella...Ombra d'un _quadre... \ No newline at end of file diff -uraN gimp-2.2.8/po-script-fu/ca.po gimp-2.2.9/po-script-fu/ca.po --- gimp-2.2.8/po-script-fu/ca.po 2005-05-08 23:42:26.000000000 +0200 +++ gimp-2.2.9/po-script-fu/ca.po 2005-08-15 12:07:08.000000000 +0200 @@ -1,28 +1,32 @@ +# translation of po-script-fu.po to Català # gimp-script-fu translation to Catalan. -# Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 2000, 2001, 2003, 2004,2005 Free Software Foundation, Inc. # Softcatala , 2000-2001 # Xavier Beà , 2003, 2004. -# Xavier Conde Rueda , 2004 +# Xavier Conde Rueda , 2004, 2005 +# Quim Perez Noguer , 2005 msgid "" msgstr "" -"Project-Id-Version: gimp 2\n" +"Project-Id-Version: gimp2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2004-12-31 13:12+0100\n" -"Last-Translator: Xavier Beà \n" -"Language-Team: Catalan \n" +"POT-Creation-Date: 2005-08-07 11:51+0200\n" +"PO-Revision-Date: 2005-05-15 05:47+0100\n" +"Last-Translator: Quim Perez i Noguer \n" +"Language-Team: Català \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../plug-ins/script-fu/script-fu-console.c:129 #: ../plug-ins/script-fu/script-fu-text-console.c:66 msgid "Script-Fu console mode allows only interactive invocation" -msgstr "L'Script-Fu en mode de consola només permet la invocació interactiva" +msgstr "" +"Si s'activa la consola només es permetrà la invocació interactiva de les " +"funcions" #: ../plug-ins/script-fu/script-fu-console.c:156 msgid "Script-Fu Console" -msgstr "Consola de l'Script-Fu" +msgstr "Consola de les funcions" #: ../plug-ins/script-fu/script-fu-console.c:183 msgid "SIOD Output" @@ -34,35 +38,38 @@ #: ../plug-ins/script-fu/script-fu-console.c:267 msgid "_Browse..." -msgstr "_Navega..." +msgstr "_Cerca..." #: ../plug-ins/script-fu/script-fu-console.c:548 msgid "Script-Fu evaluate mode allows only noninteractive invocation" msgstr "" -"L'Script-Fu en mode d'avaluació només permet la invocació no interactiva" +"Si s'activa l'avaluador de funcions només es permetrà la invocació no " +"interactiva de les funcions" #: ../plug-ins/script-fu/script-fu-interface.c:177 msgid "Script-Fu cannot process two scripts at the same time." -msgstr "L'Script-Fu no pot processar dues seqüències al mateix temps." +msgstr "Una funció no pot processar dues seqüències al mateix temps." #: ../plug-ins/script-fu/script-fu-interface.c:179 #, c-format msgid "You are already running the \"%s\" script." -msgstr "Ja esteu executant la seqüència \"%s\" ." +msgstr "Ja esteu executant la funció \"%s\"." # strip the first part of the menupath if it contains _("/Script-Fu/") +# strip the first part of the menupath if it contains _("/Script-Fu/") #. strip the first part of the menupath if it contains _("/Script-Fu/") #: ../plug-ins/script-fu/script-fu-interface.c:202 #: ../plug-ins/script-fu/script-fu-interface.c:204 msgid "/Script-Fu/" -msgstr "/Script-Fu/" +msgstr "/Funcions/" #: ../plug-ins/script-fu/script-fu-interface.c:217 #, c-format msgid "Script-Fu: %s" -msgstr "Script-Fu: %s" +msgstr "Funció: %s" # the script arguments frame +# the script arguments frame #. the script arguments frame #: ../plug-ins/script-fu/script-fu-interface.c:254 msgid "Script Arguments" @@ -79,37 +86,38 @@ #: ../plug-ins/script-fu/script-fu-interface.c:328 msgid "Script-Fu Color Selection" -msgstr "Selecció de color de l'Script-Fu" +msgstr "Funció de selecció del color" #: ../plug-ins/script-fu/script-fu-interface.c:431 msgid "Script-Fu File Selection" -msgstr "Selecció de fitxer de l'Script-Fu" +msgstr "Funció de selecció del fitxer" #: ../plug-ins/script-fu/script-fu-interface.c:435 msgid "Script-Fu Folder Selection" -msgstr "Selecció de carpeta de l'Script-Fu" +msgstr "Funció de selecció de la carpeta" #: ../plug-ins/script-fu/script-fu-interface.c:447 msgid "Script-Fu Font Selection" -msgstr "Selecció de tipus de lletra de l'Script-Fu" +msgstr "Funció de selecció del tipus de lletra" #: ../plug-ins/script-fu/script-fu-interface.c:454 msgid "Script-Fu Palette Selection" -msgstr "Selecció de paleta de l'Script-Fu" +msgstr "Funció de selecció de la paleta" #: ../plug-ins/script-fu/script-fu-interface.c:462 msgid "Script-fu Pattern Selection" -msgstr "Selecció de patró de l'Script-Fu" +msgstr "Funció de selecció del patró" #: ../plug-ins/script-fu/script-fu-interface.c:469 msgid "Script-Fu Gradient Selection" -msgstr "Selecció de degradat de l'Script-Fu" +msgstr "Funció de selecció del degradat" #: ../plug-ins/script-fu/script-fu-interface.c:477 msgid "Script-Fu Brush Selection" -msgstr "Selecció de pinzell de l'Script-Fu" +msgstr "Funció de selecció del pinzell" # the script progress frame +# the script progress frame #. the script progress frame #: ../plug-ins/script-fu/script-fu-interface.c:533 msgid "Script Progress" @@ -117,7 +125,7 @@ #: ../plug-ins/script-fu/script-fu-interface.c:541 msgid "(none)" -msgstr "(cap)" +msgstr "cap" #: ../plug-ins/script-fu/script-fu-interface.c:1058 #: ../plug-ins/dbbrowser/gimpprocview.c:198 @@ -149,39 +157,39 @@ "%s\n" "%s" -#: ../plug-ins/script-fu/script-fu-server.c:642 +#: ../plug-ins/script-fu/script-fu-server.c:648 msgid "Script-Fu Server Options" -msgstr "Opcions de servidor de l'Script-Fu" +msgstr "Opcions de servidor de funcions" -#: ../plug-ins/script-fu/script-fu-server.c:670 +#: ../plug-ins/script-fu/script-fu-server.c:676 msgid "Server Port:" msgstr "Port del servidor:" -#: ../plug-ins/script-fu/script-fu-server.c:676 +#: ../plug-ins/script-fu/script-fu-server.c:682 msgid "Server Logfile:" -msgstr "Fitxer de registre del servidor:" +msgstr "Fitxer de traces del servidor:" #: ../plug-ins/script-fu/script-fu.c:122 msgid "Script-Fu _Console" -msgstr "_Consola de l'Script-Fu" +msgstr "_Consola de les funcions" #: ../plug-ins/script-fu/script-fu.c:129 ../plug-ins/script-fu/script-fu.c:158 #: ../plug-ins/script-fu/script-fu.c:290 msgid "/Xtns/Script-Fu" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Funcions" #: ../plug-ins/script-fu/script-fu.c:151 msgid "_Start Server..." -msgstr "_Inicia servidor..." +msgstr "Inicia el _servidor..." #: ../plug-ins/script-fu/script-fu.c:282 msgid "_Refresh Scripts" -msgstr "" +msgstr "_Recarrega les funcions" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:128 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:142 msgid "Procedure Browser" -msgstr "Navegador de procediments" +msgstr "Gestor de procediments" # error: msgstr "Navegador per defecte" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:132 @@ -192,7 +200,7 @@ #: ../plug-ins/dbbrowser/gimpprocbrowser.c:133 #: ../plug-ins/dbbrowser/gimpprocbrowser.c:147 msgid "Search by _Blurb" -msgstr "Cerca pel _comentari" +msgstr "Cerca per _propaganda" #: ../plug-ins/dbbrowser/gimpprocbrowser.c:224 msgid "_Search:" @@ -229,7 +237,7 @@ #: ../plug-ins/dbbrowser/gimpprocview.c:146 msgid "Return Values" -msgstr "Torna els valors" +msgstr "Valors de retorn" #: ../plug-ins/dbbrowser/gimpprocview.c:159 msgid "Additional Information" @@ -253,7 +261,7 @@ #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:1 msgid "3D _Outline..." -msgstr "" +msgstr "_Vora 3D..." #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:2 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 @@ -276,9 +284,8 @@ #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:1 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alpha to Logo" -msgstr "/Script-Fu/Alfa a logotipus/N_eó..." +msgstr "/Funcions/Efectes per a capes _transparents" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 @@ -309,18 +316,17 @@ #: ../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 "/Extensions/Script-Fu" +msgstr "/Extensions/Funcions/Rètols" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:4 msgid "Bumpmap (alpha layer) blur radius" -msgstr "Radi de difuminat Bumpmap (capa alfa)" +msgstr "Radi del difuminat mapa de relleu (capa alfa)" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:5 #: ../plug-ins/script-fu/scripts/glossy.scm.h:7 msgid "Default bumpmap settings" -msgstr "Paràmetres bumpmap per defecte" +msgstr "Paràmetres predeterminats del mapa de relleu" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:6 #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 @@ -399,11 +405,11 @@ #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:7 #: ../plug-ins/script-fu/scripts/title-header.scm.h:3 msgid "Font size (pixels)" -msgstr "Mida del tipus de lletra (píxels)" +msgstr "Mida de la lletra (píxels)" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:8 msgid "Outline blur radius" -msgstr "Radi de difuminat del contorn" +msgstr "Radi del difuminat del contorn" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:9 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:5 @@ -474,7 +480,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 msgid "3_D Truchet..." -msgstr "" +msgstr "Tubs 3_D..." #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 #: ../plug-ins/script-fu/scripts/camo.scm.h:1 @@ -484,9 +490,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 "/Extensions/Script-Fu/Patrons/_Terra..." +msgstr "/Extensions/Funcions/Patrons" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 @@ -528,7 +533,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:5 #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:7 msgid "End blend" -msgstr "Barreja final" +msgstr "Color final" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:6 #: ../plug-ins/script-fu/scripts/truchet.scm.h:5 @@ -543,7 +548,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:8 #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:16 msgid "Start blend" -msgstr "Barreja inicial" +msgstr "Color inicial" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:9 msgid "Supersample" @@ -562,18 +567,17 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:1 #: ../plug-ins/script-fu/scripts/round-corners.scm.h:1 #: ../plug-ins/script-fu/scripts/slide.scm.h:1 -#, fuzzy msgid "/Script-Fu/Decor" -msgstr "/Script-Fu/Decoració/_Diapositiva..." +msgstr "/Funcions/_Decoració" #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:2 msgid "Add B_evel..." -msgstr "" +msgstr "_Bisell..." #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:3 #: ../plug-ins/script-fu/scripts/chip-away.scm.h:12 msgid "Keep bump layer" -msgstr "Manté capa bump" +msgstr "Manté capa de relleu" #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:5 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:10 @@ -586,7 +590,7 @@ #: ../plug-ins/script-fu/scripts/addborder.scm.h:2 msgid "Add _Border..." -msgstr "" +msgstr "_Emmarca..." #: ../plug-ins/script-fu/scripts/addborder.scm.h:3 msgid "Border X size" @@ -608,11 +612,9 @@ #: ../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 "" -"/Extensions/Script-Fu/Temes de pàgines web/Lluentor estranya/Regle " -"_horitzontal..." +"/Extensions/Funcions/Temes per a pàgines web/Lluentor estil àlien..." #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 @@ -668,9 +670,8 @@ #: ../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 "_Navega..." +msgstr "_Fletxa..." #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 msgid "Bar height" @@ -682,9 +683,8 @@ #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 -#, fuzzy msgid "_Hrule..." -msgstr "_Navega..." +msgstr "_Barra..." #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 #: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 @@ -694,14 +694,13 @@ #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 -#, fuzzy msgid "_Bullet..." -msgstr "_Navega..." +msgstr "_Rodona..." #: ../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 "B_otó..." #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 msgid "Glow radius" @@ -729,7 +728,7 @@ #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 msgid "Alien _Glow..." -msgstr "" +msgstr "_Lluentor estil àlien..." #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 msgid "Glow size (pixels * 4)" @@ -737,7 +736,7 @@ #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 msgid "Alien _Neon..." -msgstr "" +msgstr "Llums de _neó estil àlien..." #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 msgid "Fade away" @@ -757,23 +756,22 @@ #: ../plug-ins/script-fu/scripts/basic1-logo.scm.h:8 msgid "_Basic I..." -msgstr "" +msgstr "_Bàsic I..." #: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:3 msgid "B_asic II..." -msgstr "" +msgstr "Bà_sic 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 "/Extensions/Script-Fu" +msgstr "/Extensions/Funcions/Botons" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:2 #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:2 msgid "Bevel width" -msgstr "Amplada del biselat" +msgstr "Alçada del relleu" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:5 msgid "Lower-right color" @@ -783,12 +781,11 @@ #: ../plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:6 #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:11 msgid "Pressed" -msgstr "Premut" +msgstr "Clicat" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:8 -#, fuzzy msgid "Simple _Beveled Button..." -msgstr "/Extensions/Script-Fu/Botons/_Botó biselat senzill..." +msgstr "Botó amb bisell..." #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:11 msgid "Upper-left color" @@ -799,10 +796,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 "" -"/Extensions/Script-Fu/Temes de pàgines web/Patró biselat/_Fletxa..." +msgstr "/Extensions/Funcions/Temes per a pàgines web/Patró amb bisell" #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 msgid "Diameter" @@ -816,7 +811,7 @@ #: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." -msgstr "" +msgstr "Capçal_era..." #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 @@ -838,9 +833,8 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:1 #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:1 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:1 -#, fuzzy msgid "/Script-Fu/Animators" -msgstr "/Script-Fu/Animadors/_Barreja..." +msgstr "/Funcions/_Animació" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 msgid "Intermediate frames" @@ -852,20 +846,19 @@ #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:4 msgid "Max. blur radius" -msgstr "Radi màxim de difuminat" +msgstr "Radi màxim del difuminat" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:5 -#, fuzzy msgid "_Blend..." -msgstr "_Navega..." +msgstr "_Mescla..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:4 msgid "Blen_ded..." -msgstr "" +msgstr "Mes_clat..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:5 msgid "Blend mode" -msgstr "Mode de barreja" +msgstr "Mode de mescla" #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:6 msgid "Custom Gradient" @@ -913,7 +906,7 @@ #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 msgid "Bo_vination..." -msgstr "" +msgstr "Pell de _vaca..." #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 msgid "Spots density X" @@ -933,11 +926,11 @@ #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 msgid "B_urn-In..." -msgstr "" +msgstr "_Crema..." #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 msgid "Burn-In: Need two layers in total!" -msgstr "Crema: es necessiten dues capes" +msgstr "Crema: es necessiten dues capes només" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 msgid "Corona width" @@ -988,17 +981,16 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:9 msgid "_Camouflage..." -msgstr "" +msgstr "_Camuflatge..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:1 #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:1 -#, fuzzy msgid "/Script-Fu/Stencil Ops" -msgstr "/Script-Fu/Operacions de plantilla/_Esculpeix..." +msgstr "/Funcions/Opcions de _llapis" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 msgid "C_arve-It..." -msgstr "" +msgstr "_Esculpeix..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:3 msgid "Carve white areas" @@ -1008,7 +1000,6 @@ msgid "Image to carve" msgstr "Imatge a esculpir" -# era: msgstr "/Extensions/Script-Fu/Logotipus/_Escolpit..." #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:2 msgid "Background Image" msgstr "Imatge de fons" @@ -1019,7 +1010,7 @@ #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." -msgstr "" +msgstr "Esculpit sobre el patró..." #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 msgid "Padding around text" @@ -1031,15 +1022,15 @@ #: ../plug-ins/script-fu/scripts/chalk.scm.h:8 msgid "_Chalk..." -msgstr "" +msgstr "Escrit amb _guix..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 msgid "Blur amount" -msgstr "Quantitat de difuminat" +msgstr "Nivell de difuminat" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 msgid "Chip Awa_y..." -msgstr "" +msgstr "_Roca esbocinada..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 msgid "Chip amount" @@ -1047,7 +1038,7 @@ #: ../plug-ins/script-fu/scripts/chip-away.scm.h:6 msgid "Drop shadow" -msgstr "Ombra descendent" +msgstr "Ombra" #: ../plug-ins/script-fu/scripts/chip-away.scm.h:7 msgid "Fill BG with pattern" @@ -1062,34 +1053,33 @@ msgstr "Manté el fons" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:2 -#, fuzzy msgid "C_hrome-It..." -msgstr "_Navega..." +msgstr "Estil _niquelat..." #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:3 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 msgid "Chrome balance" -msgstr "Balanç del cromat" +msgstr "Balanç del niquelat" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:4 #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:3 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:3 msgid "Chrome factor" -msgstr "Factor del cromat" +msgstr "Factor del niquelat" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:5 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 msgid "Chrome lightness" -msgstr "Lluminositat del cromat" +msgstr "Lluminositat del niquelat" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:6 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 msgid "Chrome saturation" -msgstr "Saturació del cromat" +msgstr "Saturació del niquelat" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:7 msgid "Chrome white areas" -msgstr "Àrees blanques del cromat" +msgstr "Àrees blanques del niquelat" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:8 #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:5 @@ -1103,23 +1093,20 @@ msgstr "Ressalta el balanç" #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -#, fuzzy msgid "C_hrome..." -msgstr "_Navega..." +msgstr "Cromatit_zador..." #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 msgid "Offsets (pixels * 2)" msgstr "Desplaçaments (píxels * 2)" -# era: msgstr "Profunditat màxima" #: ../plug-ins/script-fu/scripts/circuit.scm.h:1 #: ../plug-ins/script-fu/scripts/grid-system.scm.h:1 #: ../plug-ins/script-fu/scripts/lava.scm.h:1 #: ../plug-ins/script-fu/scripts/line-nova.scm.h:1 #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:1 -#, fuzzy msgid "/Script-Fu/Render" -msgstr "/Script-Fu/Composa/_Lava..." +msgstr "/Funcions/_Composa" #: ../plug-ins/script-fu/scripts/circuit.scm.h:2 msgid "Circuit seed" @@ -1147,18 +1134,16 @@ msgstr "Separa la capa" #: ../plug-ins/script-fu/scripts/circuit.scm.h:7 -#, fuzzy msgid "_Circuit..." -msgstr "Llavor del circuit" +msgstr "_Circuit..." #: ../plug-ins/script-fu/scripts/clothify.scm.h:1 #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:1 #: ../plug-ins/script-fu/scripts/predator.scm.h:1 #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 #: ../plug-ins/script-fu/scripts/weave.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alchemy" -msgstr "/Script-Fu/Alquímia/_Trena..." +msgstr "/Funcions/Al_químia" #: ../plug-ins/script-fu/scripts/clothify.scm.h:2 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 @@ -1185,14 +1170,14 @@ #: ../plug-ins/script-fu/scripts/clothify.scm.h:7 msgid "_Clothify..." -msgstr "" +msgstr "Sobre _teixit..." #: ../plug-ins/script-fu/scripts/coffee.scm.h:2 msgid "" "Darken only\n" "(Better, but only for images with alot of white)" msgstr "" -"Només enfosqueja\n" +"Només enfosqueix\n" "(Millor, però només per a imatges amb molt de blanc)" #: ../plug-ins/script-fu/scripts/coffee.scm.h:3 @@ -1201,11 +1186,11 @@ #: ../plug-ins/script-fu/scripts/coffee.scm.h:4 msgid "_Coffee Stain..." -msgstr "" +msgstr "Taca de _cafè..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 msgid "Comic Boo_k..." -msgstr "" +msgstr "_Còmics..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:9 msgid "Outline color" @@ -1218,7 +1203,7 @@ #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 msgid "Cool _Metal..." -msgstr "" +msgstr "_Metàl·lic..." #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:4 @@ -1231,16 +1216,15 @@ #: ../plug-ins/script-fu/scripts/crystal-logo.scm.h:4 msgid "Crystal..." -msgstr "" +msgstr "Cristal·lí..." #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:1 #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:1 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:1 #: ../plug-ins/script-fu/scripts/select-to-image.scm.h:1 #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:1 -#, fuzzy msgid "/Script-Fu/Selection" -msgstr "/Script-Fu/Selecció/A _imatge" +msgstr "/Funcions/Efectes per a regions _seleccionades" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 msgid "Granularity (1 is low)" @@ -1260,19 +1244,17 @@ #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:7 msgid "Threshold (bigger 1<-->255 smaller)" -msgstr "Llindar (Més gran 1<-->255 Més petit)" +msgstr "Llindar (més gran 1<-->255 més petit)" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:8 -#, fuzzy msgid "_Distress Selection..." -msgstr "/Script-Fu/Selecció/_Apura selecció..." +msgstr "_Apura la selecció..." #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:1 -#, fuzzy msgid "/Script-Fu/Shadow" -msgstr "/Script-Fu/Ombra/Ombra _descendent..." +msgstr "/Funcions/_Ombres" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:2 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 @@ -1285,7 +1267,7 @@ #: ../plug-ins/script-fu/scripts/round-corners.scm.h:4 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:4 msgid "Blur radius" -msgstr "Radi de difuminat" +msgstr "Radi del difuminat" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:4 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:5 @@ -1297,12 +1279,12 @@ #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:5 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:8 msgid "Offset X" -msgstr "Desplaçament en X" +msgstr "Vector (eix X)" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:6 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:9 msgid "Offset Y" -msgstr "Desplaçament en Y" +msgstr "Vector (eix Y)" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:7 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:10 @@ -1310,9 +1292,8 @@ msgstr "Opacitat" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:8 -#, fuzzy msgid "_Drop-Shadow..." -msgstr "Ombra descendent" +msgstr "Ombra d'un _paper..." #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:2 msgid "Columns" @@ -1324,7 +1305,7 @@ #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:4 msgid "Erase/fill" -msgstr "Esborra/Omple" +msgstr "Esborra/omple" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:5 msgid "Even" @@ -1332,7 +1313,7 @@ #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:6 msgid "Even/odd" -msgstr "Parell/Senar" +msgstr "Parell/senar" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:7 msgid "Fill with BG" @@ -1348,16 +1329,15 @@ #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:10 msgid "Rows/cols" -msgstr "Files/Columnes" +msgstr "Files/columnes" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:11 -#, fuzzy msgid "_Erase every other Row..." -msgstr "/Script-Fu/Alquímia/_Esborra les altres files..." +msgstr "_Esborra les altres files..." #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:2 msgid "Apply generated layermask" -msgstr "Aplica una màscara de capa generada" +msgstr "Aplica la màscara de capa generada" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:3 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:4 @@ -1377,15 +1357,15 @@ #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:8 #, no-c-format msgid "Fade to %" -msgstr "Esvaeix a %" +msgstr "Esvaeix a %" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:9 msgid "Use growing selection" -msgstr "Utilitza la selecció de creixement" +msgstr "Utilitza la selecció creixent" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:10 msgid "_Fade Outline..." -msgstr "" +msgstr "Vora di_fosa..." #: ../plug-ins/script-fu/scripts/flatland.scm.h:2 #: ../plug-ins/script-fu/scripts/land.scm.h:2 @@ -1419,13 +1399,12 @@ #: ../plug-ins/script-fu/scripts/flatland.scm.h:8 msgid "_Flatland..." -msgstr "" +msgstr "A_plana..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:1 #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Utils" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Funcions/Utilitats" #: ../plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" @@ -1437,7 +1416,7 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:4 msgid "Font _size (pixels)" -msgstr "Mida del tipu_s de lletra (píxels)" +msgstr "_Mida de la lletra (píxels)" #: ../plug-ins/script-fu/scripts/font-map.scm.h:5 msgid "Use font _name as text" @@ -1457,20 +1436,19 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:9 msgid "_Font Map..." -msgstr "" +msgstr "_Mostra tots els tipus de lletra..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:10 msgid "_Labels" -msgstr "Eti_quetes" +msgstr "_Etiquetes" #: ../plug-ins/script-fu/scripts/font-map.scm.h:11 msgid "_Text" msgstr "_Text" #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -#, fuzzy msgid "_Frosty..." -msgstr "_Navega..." +msgstr "_Portada d'avantguarda (Frosty)..." #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 msgid "Add shadow" @@ -1491,15 +1469,12 @@ #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 msgid "_Fuzzy Border..." -msgstr "" +msgstr "_Marc difós..." #: ../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 "" -"/Extensions/Script-Fu/Temes de pàgines web/Gimp.org/Capçalera " -"_gran..." +msgstr "/Extensions/Funcions/Temes per a pàgines web/Gimp.org clàssic" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:2 msgid "Autocrop" @@ -1512,7 +1487,7 @@ #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:6 #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:9 msgid "Highlight color" -msgstr "Color ressaltat" +msgstr "Color del marc" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:7 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:6 @@ -1541,44 +1516,43 @@ #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:14 msgid "_Big Header..." -msgstr "" +msgstr "Capçalera _gran..." #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:15 -#, fuzzy msgid "_Small Header..." -msgstr "_Inicia servidor..." +msgstr "Capçalera _petita..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 msgid "T_ube Sub-Button Label..." -msgstr "" +msgstr "Lletres sobre botó arrodonit (_mitjà)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 msgid "Tub_e Sub-Sub-Button Label..." -msgstr "" +msgstr "Lletres sobre botó arrodonit (_petit)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 msgid "_General Tube Labels..." -msgstr "" +msgstr "Lletres sobre _botó arrodonit..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 msgid "_Tube Button Label..." -msgstr "" +msgstr "Lle_tres sobre botó arrodonit (gran)..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:4 msgid "Blend gradient (Text)" -msgstr "Barreja el degradat (text)" +msgstr "Degradat (text)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:5 msgid "Blend gradient (outline)" -msgstr "Barreja el degradat (contorn)" +msgstr "Degradat (contorn)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:6 msgid "Blend gradient (text)" -msgstr "Barreja el degradat (text)" +msgstr "Degradat (text)" #: ../plug-ins/script-fu/scripts/glossy.scm.h:10 msgid "Glo_ssy..." -msgstr "" +msgstr "Glo_ssy..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:11 msgid "Outline gradient reverse" @@ -1623,16 +1597,15 @@ #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 msgid "Glo_wing Hot..." -msgstr "" +msgstr "Fluorescents..." -# era: msgstr "/Extensions/Script-Fu/Logotipus/Bise_lat del gradient..." #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 msgid "Bevel height (Sharpness)" -msgstr "Alçada del biselat (definició)" +msgstr "Alçada del relleu (definició)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 msgid "Bevel height (sharpness)" -msgstr "Alçada del biselat (definició)" +msgstr "Alçada del relleu (definició)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:7 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:5 @@ -1641,14 +1614,12 @@ msgstr "Mida del marge (píxels) " #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -#, fuzzy msgid "Gradient Beve_l..." -msgstr "Degradat invertit" +msgstr "_Degradat del bisell..." #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 -#, fuzzy msgid "Custom _Gradient..." -msgstr "Degradat personalitzat" +msgstr "De_gradat personalitzat..." #: ../plug-ins/script-fu/scripts/grid-system.scm.h:2 msgid "X divisions" @@ -1660,7 +1631,7 @@ #: ../plug-ins/script-fu/scripts/grid-system.scm.h:4 msgid "_Grid..." -msgstr "" +msgstr "_Quadrícula..." #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 msgid "Creates four Guides around the bounding box of the current selection." @@ -1668,9 +1639,8 @@ "Crea quatre guies al voltant del quadre delimitador de la selecció actual." #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 -#, fuzzy msgid "New Guides from _Selection" -msgstr "/Imatge/Guies/Noves guies des de _selecció" +msgstr "Noves guies des de _selecció" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:1 @@ -1683,9 +1653,8 @@ msgstr "Horitzontal" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 -#, fuzzy msgid "New Guide (by _Percent)..." -msgstr "/Imatge/Guies/Nova guia (per _percentatge)..." +msgstr "Nova guia (per _percentatge)..." #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:5 #, no-c-format @@ -1699,27 +1668,24 @@ #: ../plug-ins/script-fu/scripts/guides-new.scm.h:3 msgid "New _Guide..." -msgstr "" +msgstr "Crea una _guia..." #: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 -#, fuzzy msgid "_Remove all Guides" -msgstr "/Imatge/Guies/_Suprimeix totes les guies" +msgstr "_Suprimeix totes les guies" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:1 #: ../plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/Utilitats/D'_ASCII a capa..." +msgstr "/Funcions/_Utilitats" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "Opacitat del fons" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:3 -#, fuzzy msgid "Draw _HSV Graph..." -msgstr "/Script-Fu/Utilitats/Dibuixa gràfic _HSV..." +msgstr "Dibuixa el gràfic _HSV..." #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:4 msgid "End X" @@ -1759,7 +1725,7 @@ #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 msgid "Imigre-26..." -msgstr "" +msgstr "Retolador nen petit (Imigre-_26)..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:2 msgid "Apply layer mask (or discard)" @@ -1777,7 +1743,6 @@ msgid "Make new background" msgstr "Fes un fons nou" -# era: msgstr "Fer un fons nou" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:7 msgid "Outer border" msgstr "Marge exterior" @@ -1799,9 +1764,8 @@ msgstr "Longitud del retall" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:12 -#, fuzzy msgid "Show Image _Structure..." -msgstr "/Script-Fu/Utilitats/Mo_stra l'estructura de la imatge..." +msgstr "_Mostra l'estructura de la imatge..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:13 msgid "Space between layers" @@ -1817,7 +1781,7 @@ #: ../plug-ins/script-fu/scripts/land.scm.h:11 msgid "_Land..." -msgstr "" +msgstr "_Mapa de relleu I" #: ../plug-ins/script-fu/scripts/lava.scm.h:4 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:8 @@ -1834,11 +1798,11 @@ #: ../plug-ins/script-fu/scripts/lava.scm.h:9 msgid "_Lava..." -msgstr "" +msgstr "_Lava..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 msgid "Line _Nova..." -msgstr "" +msgstr "_Ratllat radial..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 msgid "Number of lines" @@ -1846,7 +1810,7 @@ #: ../plug-ins/script-fu/scripts/line-nova.scm.h:4 msgid "Offset radius" -msgstr "Radi de desplaçament" +msgstr "Radi del desplaçament" #: ../plug-ins/script-fu/scripts/line-nova.scm.h:5 msgid "Randomness" @@ -1857,13 +1821,12 @@ msgstr "Definició (graus)" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Make Brush" -msgstr "/Extensions/Script-Fu/Fes un pinzell/_El·líptic..." +msgstr "/Extensions/Funcions/Fes un pinzell" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 msgid "Elli_ptical, Feathered..." -msgstr "" +msgstr "El·lí_ptic..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:3 msgid "Feathering" @@ -1875,7 +1838,7 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:6 msgid "Re_ctangular, Feathered..." -msgstr "" +msgstr "Re_ctangular..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 @@ -1884,11 +1847,11 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 msgid "_Elliptical..." -msgstr "" +msgstr "_El·líptic..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 msgid "_Rectangular..." -msgstr "" +msgstr "_Rectangular..." #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 msgid "Create shadow" @@ -1900,7 +1863,7 @@ #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:9 msgid "N_eon..." -msgstr "" +msgstr "Llums de n_eó..." #: ../plug-ins/script-fu/scripts/news-text.scm.h:4 msgid "Cell size (pixels)" @@ -1914,7 +1877,7 @@ #: ../plug-ins/script-fu/scripts/news-text.scm.h:9 msgid "Newsprint Text..." -msgstr "" +msgstr "Text de diari..." #: ../plug-ins/script-fu/scripts/old-photo.scm.h:3 msgid "Defocus" @@ -1930,7 +1893,7 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:7 msgid "_Old Photo..." -msgstr "" +msgstr "Fot_o antiga..." #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 msgid "Angle" @@ -1946,7 +1909,7 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 msgid "Linear" -msgstr "Lineal" +msgstr "Linial" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 msgid "None" @@ -1962,7 +1925,7 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 msgid "_Perspective..." -msgstr "" +msgstr "Ombra d'un _edifici..." #: ../plug-ins/script-fu/scripts/predator.scm.h:2 msgid "Edge amount" @@ -1978,7 +1941,7 @@ #: ../plug-ins/script-fu/scripts/predator.scm.h:7 msgid "_Predator..." -msgstr "" +msgstr "De_predador... " #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 msgid "Lower color" @@ -2022,7 +1985,7 @@ #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 msgid "_Round Button..." -msgstr "" +msgstr "Botó _rodó..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 msgid "Behaviour" @@ -2034,11 +1997,11 @@ #: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 msgid "Render _Map..." -msgstr "" +msgstr "Mapa de _relleu II..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 msgid "Tile" -msgstr "Mosàic" +msgstr "Mosaic" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:2 msgid "Black" @@ -2067,7 +2030,7 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 msgid "_Rippling..." -msgstr "" +msgstr "_Arruga..." #: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 msgid "Add background" @@ -2075,7 +2038,7 @@ #: ../plug-ins/script-fu/scripts/round-corners.scm.h:3 msgid "Add drop-shadow" -msgstr "Afegeix ombra descendent" +msgstr "Afegeix una ombra" #: ../plug-ins/script-fu/scripts/round-corners.scm.h:5 msgid "Edge radius" @@ -2083,7 +2046,7 @@ #: ../plug-ins/script-fu/scripts/round-corners.scm.h:9 msgid "_Round Corners..." -msgstr "" +msgstr "_Arrodoneix les vores..." #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 msgid "Brush name" @@ -2094,13 +2057,12 @@ msgstr "Nom del fitxer" #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:5 -#, fuzzy msgid "To _Brush..." -msgstr "_Navega..." +msgstr "Fes-ne un pin_zell..." #: ../plug-ins/script-fu/scripts/select-to-image.scm.h:2 msgid "To _Image" -msgstr "" +msgstr "Fes-ne una _imatge" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 msgid "Filename" @@ -2111,9 +2073,8 @@ msgstr "Nom del patró" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 -#, fuzzy msgid "To _Pattern..." -msgstr "Patró" +msgstr "Fes-ne un _patró..." #: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 msgid "Concave" @@ -2125,9 +2086,8 @@ msgstr "Radi (%)" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:4 -#, fuzzy msgid "Rounded R_ectangle..." -msgstr "/Selecció/R_ectangle arrodonit..." +msgstr "R_ectangle arrodonit..." #: ../plug-ins/script-fu/scripts/slide.scm.h:3 msgid "Font color" @@ -2135,24 +2095,23 @@ #: ../plug-ins/script-fu/scripts/slide.scm.h:4 msgid "Number" -msgstr "Número" +msgstr "Nombre" #: ../plug-ins/script-fu/scripts/slide.scm.h:7 msgid "_Slide..." -msgstr "" +msgstr "Emmarca com un _fotograma..." #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 msgid "SOTA Chrome..." -msgstr "" +msgstr "Niquelat i _emmarcat..." #: ../plug-ins/script-fu/scripts/speed-text.scm.h:7 msgid "Speed Text..." -msgstr "" +msgstr "Text amb velocitat..." #: ../plug-ins/script-fu/scripts/sphere.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Misc" -msgstr "/Extensions/Script-Fu" +msgstr "/Extensions/Funcions/Miscel·lània" #: ../plug-ins/script-fu/scripts/sphere.scm.h:3 msgid "Lighting (degrees)" @@ -2167,9 +2126,8 @@ msgstr "Color de l'esfera" #: ../plug-ins/script-fu/scripts/sphere.scm.h:7 -#, fuzzy msgid "_Sphere..." -msgstr "_Inicia servidor..." +msgstr "_Esfera..." #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:2 msgid "Frames" @@ -2177,7 +2135,7 @@ #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:3 msgid "Index to n colors (0 = remain RGB)" -msgstr "Indexa en n colors (0 = manté en RGB)" +msgstr "Indexa en N colors (0 = manté en RGB)" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:5 msgid "Turn from left to right" @@ -2185,7 +2143,7 @@ #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 msgid "_Spinning Globe..." -msgstr "" +msgstr "_Fes rodar..." #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 msgid "Airbrush" @@ -2211,7 +2169,6 @@ "Dibuixa espirògrafs, epitrocòides i corbes de Lissajous. Podeu obtenir més " "informació a http://netword.com/*spyrogimp" -# era: msgstr "Dibuixa espirògrafs, epitrocòides i curves de Lissajous. Podeu obtenir més informació a http://netword.com/*spyrogimp" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:8 msgid "Epitrochoid" msgstr "Epitrocòides" @@ -2310,9 +2267,8 @@ msgstr "Tipus" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 -#, fuzzy msgid "_Spyrogimp..." -msgstr "Espirògraf" +msgstr "_Espirògraf..." #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:4 msgid "Burst color" @@ -2324,20 +2280,19 @@ #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:8 msgid "Starb_urst..." -msgstr "" +msgstr "_Llum d'estrella..." #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 msgid "Effect size (pixels * 4)" msgstr "Mida de l'efecte (píxels * 4)" #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "_Navega..." +msgstr "_Il·luminat per una estrella..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." -msgstr "" +msgstr "Remolí de _sorra..." # era: msgstr "/Extensions/Script-Fu/Patrons/_Mosaic de remolins..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:10 @@ -2358,7 +2313,7 @@ #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 msgid "_Swirly..." -msgstr "" +msgstr "Ra_jola de remolins..." #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 msgid "Base color" @@ -2378,7 +2333,7 @@ #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 msgid "_Particle Trace..." -msgstr "" +msgstr "Pinta el contorn amb un _vaporitzador..." #: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Antialias" @@ -2389,13 +2344,12 @@ msgstr "Angle d'emplenat" #: ../plug-ins/script-fu/scripts/text-circle.scm.h:9 -#, fuzzy msgid "Text Circle..." -msgstr "Cercle" +msgstr "Text circular..." #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:5 msgid "Ending blend" -msgstr "Fi de la barreja" +msgstr "Color final" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:8 msgid "Hexagons" @@ -2403,7 +2357,7 @@ #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:9 msgid "Mosaic tile type" -msgstr "Tipus de mosàic" +msgstr "Tipus de mosaic" # era: msgstr "Tipus de mosaic" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:10 @@ -2416,7 +2370,7 @@ #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:13 msgid "Starting blend" -msgstr "Inici de la barreja" +msgstr "Color inicial" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:15 msgid "Text pattern" @@ -2424,9 +2378,8 @@ #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 msgid "_Textured..." -msgstr "" +msgstr "Sobre el pa_tró..." -# era: msgstr "/Filtres/Difumina/Di_fumina en mosaic..." #: ../plug-ins/script-fu/scripts/tileblur.scm.h:1 msgid "Blur horizontally" msgstr "Difumina horitzontalment" @@ -2448,13 +2401,12 @@ msgstr "RLE" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 -#, fuzzy msgid "_Tileable Blur..." -msgstr "/Filtres/Difumina/Di_fumina en mosàic..." +msgstr "Di_fumina en mosaic..." #: ../plug-ins/script-fu/scripts/title-header.scm.h:6 msgid "Web Title Header..." -msgstr "" +msgstr "Títol de pàgina web..." #: ../plug-ins/script-fu/scripts/truchet.scm.h:4 msgid "Foreground color" @@ -2462,7 +2414,7 @@ #: ../plug-ins/script-fu/scripts/truchet.scm.h:7 msgid "T_ruchet..." -msgstr "" +msgstr "T_ubs 2D..." #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 msgid "Mask opacity" @@ -2474,7 +2426,7 @@ #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 msgid "_Unsharp Mask..." -msgstr "" +msgstr "_Desbrava la màscara..." #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:2 msgid "Amplitude" @@ -2490,7 +2442,7 @@ #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:6 msgid "_Waves..." -msgstr "" +msgstr "_Ones..." #: ../plug-ins/script-fu/scripts/weave.scm.h:2 msgid "Ribbon spacing" @@ -2522,416 +2474,179 @@ #: ../plug-ins/script-fu/scripts/weave.scm.h:9 msgid "_Weave..." -msgstr "" +msgstr "Teixit de _cistella..." #: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 -#, fuzzy msgid "/Help/The GIMP Online" -msgstr "/Ajuda/El GIMP al web/Lloc web _principal" +msgstr "Ajuda/El GIMP a la web" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 msgid "Plug-in _Registry" -msgstr "" +msgstr "_Instal·la més connectors" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:3 msgid "_Developer Web Site" -msgstr "" +msgstr "Web per als _desenvolupadors" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:4 msgid "_Main Web Site" -msgstr "" +msgstr "Web _principal" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:2 msgid "Drop shadow X offset" -msgstr "Desplaçament en X de l'ombra descendent" +msgstr "Orientació de l'ombra (eix X)" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:3 msgid "Drop shadow Y offset" -msgstr "Desplaçament en Y de l'ombra descendent" +msgstr "Orientació de l'ombra (eix Y)" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:4 msgid "Drop shadow blur radius" -msgstr "Radi de difuminat de l'ombra descendent" +msgstr "Radi del difuminat de l'ombra" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:5 msgid "Drop shadow color" -msgstr "Color de l'ombra descendent" +msgstr "Color de l'ombra" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:6 msgid "Drop shadow opacity" -msgstr "Opacitat de l'ombra descendent" +msgstr "Opacitat de l'ombra" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:7 msgid "Highlight X offset" -msgstr "Desplaçament del ressaltat X" +msgstr "Orientació del marc (eix X)" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:8 msgid "Highlight Y offset" -msgstr "Desplaçament del ressaltat Y" +msgstr "Orientació del marc (eix Y)" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:10 msgid "Highlight opacity" -msgstr "Opacitat del ressaltat" +msgstr "Opacitat del marc" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." -msgstr "" - -#~ msgid "/Xtns/Script-Fu/_Refresh Scripts" -#~ msgstr "/Extensions/Script-Fu/_Actualitza les seqüències" - -#~ msgid "/Script-Fu/Alpha to Logo/3D _Outline..." -#~ msgstr "/Script-Fu/Alfa a logotipus/C_ontorn 3D..." - -#~ msgid "/Xtns/Script-Fu/Logos/3D _Outline..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/C_ontorn 3D..." - -#~ msgid "/Xtns/Script-Fu/Patterns/3_D Truchet..." -#~ msgstr "/Extensions/Script-Fu/Patrons/Truchet 3_D..." - -#~ msgid "/Script-Fu/Decor/Add B_evel..." -#~ msgstr "/Script-Fu/Decoració/Afegeix _biselat..." - -#~ msgid "/Script-Fu/Decor/Add _Border..." -#~ msgstr "/Script-Fu/Decoració/Afegeix _marge..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Arrow..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Lluentor estranya/" -#~ "_Fletxa..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/_Bullet..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Lluentor estranya/" -#~ "_Bala..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow/B_utton..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Lluentor estranya/" -#~ "B_otó..." - -#~ msgid "/Script-Fu/Alpha to Logo/Alien _Glow..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Lluentor estranya..." - -#~ msgid "/Xtns/Script-Fu/Logos/Alien _Glow..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Lluentor estranya..." - -#~ msgid "/Script-Fu/Alpha to Logo/Alien _Neon..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Neó estrany..." - -#~ msgid "/Xtns/Script-Fu/Logos/Alien _Neon..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Neó estrany..." - -#~ msgid "/Xtns/Script-Fu/Utils/_ASCII to Image..." -#~ msgstr "/Extensions/Script-Fu/Utilitats/D'_ASCII a imatge..." +msgstr "Ombra d'un _quadre..." #~ msgid "Buffer amount (% height of text)" -#~ msgstr "Quantitat de memòria intermèdia (% alçada del text)" - -#~ msgid "/Script-Fu/Alpha to Logo/_Basic I..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Bàsic I..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Basic I..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Bàsic I..." - -#~ msgid "/Script-Fu/Alpha to Logo/B_asic II..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Bàsic II..." - -#~ msgid "/Xtns/Script-Fu/Logos/B_asic II..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Bàsic II..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Bullet..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Patró biselat/_Bala..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/B_utton..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Patró biselat/B_otó..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/H_eading..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Patró biselat/" -#~ "_Encapçalament..." - -#~ msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/_Hrule..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Patró biselat/Regle " -#~ "_horitzontal..." - -#~ msgid "/Script-Fu/Alpha to Logo/Blen_ded..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Barreja_t..." - -#~ msgid "/Xtns/Script-Fu/Logos/Blen_ded..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Barreja_t..." - -#~ msgid "/Script-Fu/Alpha to Logo/Bo_vination..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Bo_vinat..." - -#~ msgid "/Xtns/Script-Fu/Logos/Bo_vination..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Bo_vinat..." - -#~ msgid "/Script-Fu/Animators/B_urn-In..." -#~ msgstr "/Script-Fu/Animadors/_Crema..." - -#~ msgid "Burn-in like effect on a fg (text) layer and a bg layer; V2.1" -#~ msgstr "" -#~ "Efecte de cremat en una capa principal (text) i una capa de fons (Versió " -#~ "2.1)" - -#~ msgid "/Xtns/Script-Fu/Patterns/_Camouflage..." -#~ msgstr "/Extensions/Script-Fu/Patrons/_Camuflatge..." - -# era: msgstr "Imatge a escolpir" -#~ msgid "/Xtns/Script-Fu/Logos/Carved..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Esculpit..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Chalk..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Guix..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Chalk..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Guix..." - -#~ msgid "/Script-Fu/Alpha to Logo/Chip Awa_y..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Fes boc_ins..." +#~ msgstr "Mida (% alçada del text)" -#~ msgid "/Xtns/Script-Fu/Logos/Chip Awa_y..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Fes boc_ins..." +#~ msgid "_ASCII to Image..." +#~ msgstr "D'_ASCII a imatge..." -#~ msgid "/Script-Fu/Stencil Ops/C_hrome-It..." -#~ msgstr "/Script-Fu/Operacions de plantilla/Fes c_romat..." +#~ msgid "_ASCII to Layer..." +#~ msgstr "D'_ASCII a capa..." -# era: msgstr "Resalta el balanç" -#~ msgid "/Script-Fu/Alpha to Logo/C_hrome..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Fes c_romat..." +#~ msgid "Copy _Visible" +#~ msgstr "Copia el que es _veu" -#~ msgid "/Xtns/Script-Fu/Logos/C_hrome..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Fes c_romat..." - -#~ msgid "/Script-Fu/Render/_Circuit..." -#~ msgstr "/Script-Fu/Composa/_Circuit..." - -#~ msgid "/Script-Fu/Alchemy/_Clothify..." -#~ msgstr "/Script-Fu/Alquímia/Afegeix _núvols..." - -#~ msgid "/Script-Fu/Decor/_Coffee Stain..." -#~ msgstr "/Script-Fu/Decoració/Taca de _cafè..." - -#~ msgid "/Script-Fu/Alpha to Logo/Comic Boo_k..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Cò_mic..." - -#~ msgid "/Xtns/Script-Fu/Logos/Comic Boo_k..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Cò_mic..." - -#~ msgid "/Script-Fu/Alpha to Logo/Cool _Metal..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Metall fred..." - -#~ msgid "/Xtns/Script-Fu/Logos/Cool _Metal..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Metall fred..." - -#~ msgid "/Edit/Copy/Copy _Visible" -#~ msgstr "/Edita/Copia/Copia el _visible" - -#~ msgid "/Xtns/Script-Fu/Logos/Crystal..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Cristall..." - -#~ msgid "/Script-Fu/Selection/_Fade Outline..." -#~ msgstr "/Script-Fu/Selecció/_Esvaeix el contorn..." - -#~ msgid "/Xtns/Script-Fu/Patterns/_Flatland..." -#~ msgstr "/Extensions/Script-Fu/Patrons/Terra _plana..." - -#~ msgid "/Xtns/Script-Fu/Utils/_Font Map..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Utilitats/_Mapa de tipus de lletra..." - -#~ msgid "/Script-Fu/Alpha to Logo/_Frosty..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Glaçat..." - -#~ msgid "/Xtns/Script-Fu/Logos/_Frosty..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Glaçat..." - -#~ msgid "/Script-Fu/Decor/_Fuzzy Border..." -#~ msgstr "/Script-Fu/Decoració/Marge di_fòs..." - -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_Small Header..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Gimp.org/Capçalera " -#~ "_petita..." - -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/T_ube Sub-" -#~ "Button Label..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Gimp.org/Etiq_ueta " -#~ "del sub-botó del conducte..." - -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/Tub_e Sub-Sub-" -#~ "Button Label..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Gimp.org/_Etiqueta " -#~ "del sub-sub-botó del conducte..." - -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_General Tube " -#~ "Labels..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Gimp.org/_Etiquetes " -#~ "generals del conducte..." - -#~ msgid "" -#~ "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org/_Tube Button " -#~ "Label..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Temes de pàgines web/Gimp.org/E_tiqueta " -#~ "del botó del conducte..." - -#~ msgid "/Script-Fu/Alpha to Logo/Glo_ssy..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Lluminó_s..." - -#~ msgid "/Xtns/Script-Fu/Logos/Glo_ssy..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Lluminó_s..." - -#~ msgid "/Script-Fu/Alpha to Logo/Glo_wing Hot..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Ll_uentor intensa..." - -#~ msgid "/Xtns/Script-Fu/Logos/Glo_wing Hot..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Ll_uentor intensa..." - -#~ msgid "/Script-Fu/Alpha to Logo/Gradient Beve_l..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Bise_lat del degradat..." - -# era: msgstr "/Script-Fu/Alfa a logotipus/Bise_lat del gradient..." -#~ msgid "/Xtns/Script-Fu/Logos/Gradient Beve_l..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Bise_lat del degradat..." - -#~ msgid "/Xtns/Script-Fu/Utils/Custom _Gradient..." -#~ msgstr "/Extensions/Script-Fu/Utilitats/De_gradat personalitzat..." - -# era: msgstr "/Extensions/Script-Fu/Utilitats/_Gradient personalitzat..." -#~ msgid "/Script-Fu/Render/_Grid..." -#~ msgstr "/Script-Fu/Composa/_Graella..." - -#~ msgid "/Image/Guides/New _Guide..." -#~ msgstr "/Imatge/Guies/Nova _guia..." - -#~ msgid "/Xtns/Script-Fu/Logos/Imigre-26..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Imigre-26..." - -#~ msgid "/Script-Fu/Render/Line _Nova..." -#~ msgstr "/Script-Fu/Composa/_Nova de línies..." - -#~ msgid "/Xtns/Script-Fu/Make Brush/Elli_ptical, Feathered..." -#~ msgstr "/Extensions/Script-Fu/Fes un pinzell/El·lí_ptic, ploma..." - -#~ msgid "/Xtns/Script-Fu/Make Brush/Re_ctangular, Feathered..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Fes un pinzell/Re_ctangular, ploma..." - -#~ msgid "/Xtns/Script-Fu/Make Brush/_Rectangular..." -#~ msgstr "/Extensions/Script-Fu/Fes un pinzell/_Rectangular..." - -#~ msgid "/Xtns/Script-Fu/Logos/N_eon..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/N_eó..." +# ############################## +# EN DESUS DES DEL GIMP 2.2.7 +# ############################## +# strip the first part of the menupath if it contains _("/Script-Fu/") +# strip the first part of the menupath if it contains _("/Script-Fu/") +#~ msgid "_Script-Fu" +#~ msgstr "Funcion_s" -#~ msgid "/Xtns/Script-Fu/Logos/Newsprint Text..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Text de paper de diari..." +# strip the first part of the menupath if it contains _("/Script-Fu/") +# strip the first part of the menupath if it contains _("/Script-Fu/") +#~ msgid "Script-Fu" +#~ msgstr "Funcions" -#~ msgid "/Script-Fu/Decor/_Old Photo..." -#~ msgstr "/Script-Fu/Decoració/F_oto antiga..." +#~ msgid "_Buttons" +#~ msgstr "_Botons" -#~ msgid "/Script-Fu/Shadow/_Perspective..." -#~ msgstr "/Script-Fu/Ombra/_Perspectiva..." +#~ msgid "_Logos" +#~ msgstr "_Rètols" -#~ msgid "/Script-Fu/Alchemy/_Predator..." -#~ msgstr "/Script-Fu/Alquímia/De_predador..." +#~ msgid "Make Br_ush" +#~ msgstr "Fes _un pinzell" -#~ msgid "/Xtns/Script-Fu/Buttons/_Round Button..." -#~ msgstr "/Extensions/Script-Fu/Botons/Botons a_rrodonits..." +#~ msgid "_Misc" +#~ msgstr "_Miscel·lània" -#~ msgid "/Xtns/Script-Fu/Patterns/Render _Map..." -#~ msgstr "/Extensions/Script-Fu/Patrons/Composa un _mapa..." +#~ msgid "_Patterns" +#~ msgstr "_Patrons" -# era: msgstr "Mosaic" -#~ msgid "/Script-Fu/Animators/_Rippling..." -#~ msgstr "/Script-Fu/Animadors/On_dulació..." +#~ msgid "_Test" +#~ msgstr "_Test" -#~ msgid "/Script-Fu/Decor/_Round Corners..." -#~ msgstr "/Script-Fu/Decoració/Cantonades a_rrodonides..." +#~ msgid "_Utils" +#~ msgstr "_Utilitats" -#~ msgid "/Script-Fu/Selection/To _Brush..." -#~ msgstr "/Script-Fu/Selecció/A _pinzell..." +#~ msgid "_Web Page Themes" +#~ msgstr "Temes per a pàgines web" -#~ msgid "/Script-Fu/Selection/To _Pattern..." -#~ msgstr "/Script-Fu/Selecció/A _patró..." +#~ msgid "Web Page Themes" +#~ msgstr "Temes per a pàgines web" -#~ msgid "/Xtns/Script-Fu/Logos/SOTA Chrome..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Cromat SOTA..." +#~ msgid "_Alien Glow" +#~ msgstr "Lluentor estil _alien..." -#~ msgid "/Xtns/Script-Fu/Logos/Speed Text..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Text ràpid..." +#~ msgid "_Beveled Pattern" +#~ msgstr "Patró amb bisell" -#~ msgid "/Xtns/Script-Fu/Misc/_Sphere..." -#~ msgstr "/Extensions/Script-Fu/Miscel·lània/E_sfera..." +#~ msgid "_Classic.Gimp.Org" +#~ msgstr "Gimp.org _clàssic" -#~ msgid "/Script-Fu/Animators/_Spinning Globe..." -#~ msgstr "/Script-Fu/Animadors/Globu_s giratori..." +# strip the first part of the menupath if it contains _("/Script-Fu/") +# strip the first part of the menupath if it contains _("/Script-Fu/") +#~ msgid "S_cript-Fu" +#~ msgstr "Fun_cions" -#~ msgid "/Script-Fu/Render/_Spyrogimp..." -#~ msgstr "/Script-Fu/Composa/E_spirogimp..." +#~ msgid "_Alchemy" +#~ msgstr "_Alquímia" -#~ msgid "/Script-Fu/Alpha to Logo/Starb_urst..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Ll_um d'estel..." +#~ msgid "Alpha to _Logo" +#~ msgstr "Alfa a _logo" -#~ msgid "/Xtns/Script-Fu/Logos/Starb_urst..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Ll_um d'estel..." +#~ msgid "A_nimators" +#~ msgstr "A_nimadors" -#~ msgid "/Script-Fu/Alpha to Logo/Sta_rscape..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Cua d'e_stel..." +#~ msgid "_Decor" +#~ msgstr "_Decoratiu" -#~ msgid "/Xtns/Script-Fu/Logos/Sta_rscape..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Cua d'e_stel..." +#~ msgid "_Render" +#~ msgstr "_Composa" -#~ msgid "/Xtns/Script-Fu/Patterns/Swirl-_Tile..." -#~ msgstr "/Extensions/Script-Fu/Patrons/_Mosàic de remolins..." +#~ msgid "_Selection" +#~ msgstr "_Selecció" -#~ msgid "/Xtns/Script-Fu/Patterns/_Swirly..." -#~ msgstr "/Extensions/Script-Fu/Patrons/A_rremolinat..." +#~ msgid "S_hadow" +#~ msgstr "O_mbra" -#~ msgid "/Script-Fu/Alpha to Logo/_Particle Trace..." -#~ msgstr "/Script-Fu/Alfa a logotipus/Traça de _partícula..." +#~ msgid "Stencil _Ops" +#~ msgstr "_Opcions de llapis" -#~ msgid "/Xtns/Script-Fu/Logos/_Particle Trace..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Traça de _partícula..." +#~ msgid "Search by _Description" +#~ msgstr "Cerca per _descripcions" -#~ msgid "/Xtns/Script-Fu/Logos/Text Circle..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/Cercle de text..." +#~ msgid "Glossy..." +#~ msgstr "Glossy..." -#~ msgid "/Script-Fu/Alpha to Logo/_Textured..." -#~ msgstr "/Script-Fu/Alfa a logotipus/_Texturitzat..." +#~ msgid "Imigre-_26..." +#~ msgstr "Retolador nen petit (Imigre-_26)..." -#~ msgid "/Xtns/Script-Fu/Logos/_Textured..." -#~ msgstr "/Extensions/Script-Fu/Logotipus/_Texturitzat..." +#~ msgid "Newsprint Te_xt..." +#~ msgstr "Te_xt de diari..." -#~ msgid "/Xtns/Script-Fu/Logos/Web Title Header..." -#~ msgstr "" -#~ "/Extensions/Script-Fu/Logotipus/Capçalera de títol de web..." +#~ msgid "Behavior" +#~ msgstr "Comportament" -#~ msgid "/Xtns/Script-Fu/Patterns/T_ruchet..." -#~ msgstr "/Extensions/Script-Fu/Patrons/T_ruchet..." +#~ msgid "Edge behavior" +#~ msgstr "Comportament de les vores" -#~ msgid "/Script-Fu/Alchemy/_Unsharp Mask..." -#~ msgstr "/Script-Fu/Alquímia/Màscara sense _definició..." +#~ msgid "Text C_ircle..." +#~ msgstr "Text c_ircular..." -#~ msgid "/Script-Fu/Animators/_Waves..." -#~ msgstr "/Script-Fu/Animadors/O_nes..." +#~ msgid "_OK" +#~ msgstr "D'_acord" -#~ msgid "/Help/The GIMP Online/Plug-in _Registry" -#~ msgstr "/Ajuda/El GIMP al web/_Registre dels connectors" +#~ msgid "_Cancel" +#~ msgstr "_Cancel·la" -#~ msgid "/Help/The GIMP Online/_Developer Web Site" -#~ msgstr "/Ajuda/El GIMP al web/Lloc web dels _desenvolupadors" +#~ msgid "OK" +#~ msgstr "D'acord" -#~ msgid "/Script-Fu/Shadow/_Xach-Effect..." -#~ msgstr "/Script-Fu/Ombra/Efecte _Xach..." +#~ msgid "Cancel" +#~ msgstr "Cancel·la" diff -uraN gimp-2.2.8/po-script-fu/ChangeLog gimp-2.2.9/po-script-fu/ChangeLog --- gimp-2.2.8/po-script-fu/ChangeLog 2005-05-03 13:30:54.000000000 +0200 +++ gimp-2.2.9/po-script-fu/ChangeLog 2005-09-20 18:24:05.000000000 +0200 @@ -1,3 +1,16 @@ +2005-09-17 Takeshi AIHANA + + * ja.po: Updated Japanese translation by + kano@na.rim.or.jp. + +2005-08-07 Josep Puigdemont + + * ca.po: Updated Catalan translation by Quim Perez et al. + +2005-07-07 Abel Cheung + + * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team + 2005-04-29 Jakub Friedl * cs.po: minor fix diff -uraN gimp-2.2.8/po-script-fu/ja.gmo gimp-2.2.9/po-script-fu/ja.gmo --- gimp-2.2.8/po-script-fu/ja.gmo 2005-05-08 23:42:34.000000000 +0200 +++ gimp-2.2.9/po-script-fu/ja.gmo 2005-10-20 12:46:53.000000000 +0200 @@ -1,57 +1,68 @@ -Þ•ˆ\ œÈ É Í Ô à ï !'!C!\!t!“! ¬!Í!#ì!"!."P"3o"8£"9Ü" # $#2#A# -Q#\#s#|#‹#š# ©#³# ¹#Ã#Ý#û#$ $ -$ $ -,$7$H$Y$j$ -{$ -†$ -‘$ œ$¦$¿$ Ø$ä$ ê$ö$ %%% -;% -F%Q%X% _% k% w% ƒ% ‘% Ÿ% ¬%¸%Í% -Ó%!Þ%"& #&/& B&N& ]&k&|&Ž&•&¯&µ&½&Å& Í&Ú&â& -ñ&ü& ' -'&'6'F' -Z'e'k'„'Œ' ¡'­'³' Ä'Ñ' Ú'ä'é' ü' ( ( -()(B([(t( ‰(“(™( Ÿ(©( ¹(Å( -Ë(Ö(ò( ÷( ) ) ) $) 0)<) -D) O)Y)b) w) „)’)—) -«)¶)É)Ú) à) -ì)÷)þ)* +* -8* C*O*f*o*€*˜* °*¼* Ó*ß*æ*î*÷* ++ -"+ --+8+ <+ I+ V+ b+ n+z++¥+¬+½+Í+Ý+ ì+ø+ý+, ,!, (,4,I,[,o, , Œ,–,§,®,·,¼, ×, -å,ð, õ,---/-A-Q-b-r-{---˜- ¡-¯-Ä- Ì- Ø- å-ñ- .. ,. 9. C.O. W. a. -k.v.~..¢. ±.¾.Å. Î.Û.ä.ö.//*/;/K/[/c/ u/‚/†/ -/˜/ ¨/ -´/¿/ Ñ/ß/ î/û/ 0 00 0(00080I0Y0s00Ÿ0¸0Ó0ì0 1%1>19Q1=‹1 É1×1 ó1ý122 62W2w2|2–2¥2«2 »2È2Ï2ß2ï2 33 3,3>3D3X3r3w3}3 „33˜3 ­3º3Ê3Ú3 -á3ì3ó3û34 -4 4 4 *464J4 -O4Z4n4 „4Ž44 ®4¼4 Á4 Î4Ø4ç4ì45 5$5)5 ,585M5^5s5Š5 -“5ž5²5¸5 Ç5 Õ5â5 ç5 ó5 ÿ5 66 $6.6 -?6 -J6 U6 a6o6ƒ6“6¤6 µ6Â6Ë6Ó6Ü6 ë6ù6 -77.7 77A7 -R7 ]7k7|7 ‚7`Œ7í8ñ8 ú89'#9K9d9ƒ9'™9(Á9ê9$:!*:*L:$w:'œ:0Ä:Gõ:G=;M…; Ó;à;÷; << (<5<E<b<‚<›<¢<©<*Â<0í<=&=9=@= S=a= r= |= ‰= “=  = ­= º= Ä=Ñ=í= > >#>*:>*e>*>»>Ñ> ç> ó> ÿ> ??,?K!TKvKŒKœK £K­K½K"ÍK ðK úK L L L&L BLOLkL€L„L -‹L–L¬L ¼L ÆL ÓL ÝLçLîLòL ùLM -MM%M4MJM`MzMŽM¨MÅMâM%ÿM%N"BNeNUƒNRÙN ,O:O WOdOxO!ŒO'®O'ÖOþOPP 7PDPaPuPyPP¥P ¸P ÂP ÏP ÜPêPîP(þP 'Q 1Q ;QEQLQ!SQ uQQŽQQ -¤Q ¯Q ¹Q ÃQÍQÖQ ßQìQÿQR.R 5R?R$[R€R ‡R ‘R ›R ¨RµR ÉR×RîR õR S S"S)S -S7S SS']S%…S«S²S!¹SÛSßS æSðS T T "T .T]~“ÅçÛHòÎAu+z)]šCqwŒ%\BÌÇÿLGõåOÐMŽo™´3˜f GD<5f?)ZJ1ß%í}-ô–~…O”E—" Äë,s²R=\ÁïîŠØ¡7jU†p¹$óµJ4}'ËÝ#‚n„hx`þ6!mL¾ „{xtyÜ䬩­c*‡§!TÖT¸€¶‡¥2€kKWi[ew; b9¼Ââ[èé+Ah&tYrg0<·N¨ÊMjeK s»³5’Ư=>cª_ˆXûƒÀÔ go2,8•ˆi{‚v-U@H½IŸÞu÷. FÕ?öaVW4æQ"à‰ñm -®NžYX¦F͆ƒbÒ(Ó.0:p£ðaVZã  (#S^^¿`@ny'7ú$‘S&Pdá6 v ¤øœkÉê‹P8ÃÈq±;×¢Q3lý›r| -ÙÚºì/Ñ:DÏ*I…l|ü«d°R%s:(none)/Script-Fu/3D _Outline.../Script-Fu/Alpha to Logo/Script-Fu/Decor/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 drop-shadowAdd shadowAdditional InformationAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur radiusBorder X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorCell size (pixels)Chalk colorChrome balanceChrome factorChrome lightnessChrome saturationCircleClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...Copyright:Create new imageCreate shadowCrystal...Current CommandCustom GradientCustom _Gradient...Dark colorDate:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Drop shadowEdge amountEdge onlyEdge widthEffect size (pixels * 3)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationEnd XEnd YEnd blendEnvironment mapEpitrochoidEraseErase/fillError while executing +Þ• d½¬  + ¡+¯+³+ º+ Æ+Ò+á+ð+ +,*,F,^,w,“,¬,Ê,â,- -;-#Z-~-!œ-¾-3Ý-8.9J. „. ’. .¯.¾. Î. +Ú.å. +ü.///./ =/G/ M/W/q//—/ / +¨/ ³/ À/ +Ì/×/è/ù/ +0 +0 +&0 +10 <0F0_0 x0„0Š0 ™0¥0»0Ô0 +ê0 +õ011 1 1&1 81 D1N1^1 m1 {1 ‰1 –1¢1·1 +½1!È1"ê1 2 2 &2 +42?2Q2 c2m2 €2 Œ2 š2¦2 µ2Ã2Ô2æ2ù2 3 3'3-353=3 E3R3Z3i3q3 +€3 ‹3˜3 ©3E·3 +ý3444.4 +B4<M4Š44©4±4 Æ4Ò4Ø4 é4ö4 ÿ4 55`!5 ‚5Ž5£5¸5Ð5â5 ö56 6 6 +'626K6e6~6—6 ¬6¶6Ð6Ö6 Ü6 æ6ó6 77 +7 7<7A7 J7 T7^7 m7 w7 ƒ77 —7 +¥7 °7º7Ã7 +Ø7 ã7 ð7þ78 +8"858F8 L8 +X8c8j8ˆ8 —8 +¤8¯8 +¿8 Ê8Ö8í8ö8 9929 J9V9m9 „9 9œ9£9«9´9Ç9Ú9ì9ü9: +: +":-: 1: >: +K:V: e: q: ~:"Š: ­:¹:Ì:à: ø:; ;;.;>; M;Y;^; q;; †;; —;£;¸;Ê;Þ; î; û;<<'<.<7<<<W< r<€<'’< +º<Å< Ê<Ö<ë<ò<==&=7=H=X=q=z=~=Ž=—=  =®=Ã=Ô= Ü= è= õ=> >#> <> I> S>_> g> q>{>> +¯>º>Â>Ô>æ> õ>? ? ??(?:?L?]?n???Ÿ?§? ¹?Æ?Ê? +Ñ?Ü? ì? +ø?@@;@U@g@ v@„@ “@ @¦@ ¸@ Â@Î@ä@ é@ ó@ÿ@AAA/A?AYAsA…AžA¹AÒAïA B$B67B9nB=¨B æBôB CC+C;C SCtC”C™C³CÂCÈC ØCåCìCüC D D,D J OJ \J +iJtJ…JJ ¦J°J¸JÁJÊJ ÙJçJúJ +KK'K8K KKXKiK{K „KŽK +ŸKªK ½KËK +ÜKçK íKúK L"L 3L =LGLEWLM¹M½M ÆMÒMíM +N'N'@NhNNšN¶NÕN'ëN'O(;OdO$O!¤O*ÆO$ñO'P0>PGoPG·PMÿPMQcQzQ ŽQ ›Q¨Q¸Q ÈQÕQåQõQR2RKRRRYR*rR0RÎRÖRéRðRSS(S 9S CS PS ZS gS tS S ‹S˜S´S ÐS ÝS êS÷S*T*9T*dTT¥T »T ÇT ÓTàTðTUU#U3UDUTU dUnU~U U §U@´U<õU 2VWNWaWtW“W —W'¡WÉWÍWÓWÙWßWïWóW +XX.X?XOX eXKrX¾XÑX$äX! Y(+Y TY]aY¿Y!ÇY éYöY +ZZ!Z 4Z>ZEZLZPZ—nZ[*[*J['u[[$¹[ Þ[ ë[ ø[\ \"\#?\"c\"†\©\È\Ï\é\ò\û\]$]4]G]N]!e]‡] Ž]œ]´]Ì]Ý]ö] ^ ^6^ R^\^l^'|^¤^´^ Ð^ Ý^)ê^_$$_ I_S_ Z_ d_ q_{_ ‘__ ²_À_ ×_ á_"î_`%'`M`2l`,Ÿ` Ì`Ö`î`aa'a .a 8a!Ba!da†a¢aµa ÑaÞaîaõa +ùa bb!b 7bAbWb1pb¢b©bÂbÛb÷bþbcc%cDc Zcgckc{cŒc“c ©c ¶cÀc Ücécÿcd1dDdZd sd€d‘d+˜d%Ädêde-e ?eLeSe!ce…e‰e›e­e´e»eËe Òe Üeæeíe ff0f"Ffif …f’f™f f§f ½f$Çfìf üf gg&g/g8g!Ngpg €gg!£gÅgÛgëg ògüg h"h ?h Ih Sh ]h ghuh ‘hžhºhÏhÓh +Úhåhûh ii,iKi di qi i ‰i“iši ži«i ²i¿iÖiÚi âiîijj!j7jMjgj{j•j²jÏj%ìjk"/kRkIpkUºkRl clql Žl›l¯l!Ãl'ål' m5m9mUm nm{m˜m¬m°mÆmÜm ïm ùm n n!n%n5nHn(bn ‹n •n Ÿn©n¼nÏnÖnïn!öno .o8oGoVo]o po zo„o žo¨o¿oÈo ÑoÞoñop p7pNpnp„p ‹p•p$±pÖpép ðp úp q+q =qJq ^qlqƒq Šq —q"¡qÄqÚqáq åqïq r'r%=r!crB…rBÈr* s66smsts!{s s §s±sµs ¼sÆs ßs ìs øs3t 8tFtVtpt#„t ¨t +¶t ÁtÏt ãtñtu u")uLufu†u—u´u Ëuìuv + v+vHvbvvv ‡v +•v  v"®vÑvåvüv w $w%2wXw xw†ww ®wºwÎw èwöwxx 5x +CxNx"exˆx"¥x +Èx Óxáxœïb5–®¦H¥‹¸Êg3V?â†cÇr=mŽ! ‰Š»Åaì¨Ùe2¨üõÚªï+훜À¹Öàܱ-—'B,]x )f¬gÕ”…èÈú .2èP¿ó#hŸyA³°_ 0ÌfwMãpa_jáþ¼òåäÈìu‘8ˆý½ÁÞ1„<7~-«ƒ>• +¹ÀZŒý?Õt–ª'ðÇú³{yL¶©×ÑjÿG@D Í¢ü9Iù˜´AS*‹ñžM•e™5ÉF¡û‚ÁŠîbK˜Y´.â 7 ‰öõKGð€ë(Ž£;ò@ˆžÅ™:°ã¦B÷nS3l‡4ç¼÷·ÒÍ%’4Ð\$Rvƒ=ù"ÂwñÐ}!*~Ü›&VÌT0hÎø®ç  éºtiš9RÆ|N]d“ŸáO©ÚÉqß ¾#{¯óQµuvÏTIJÔzÆP· F¸6îØ61 `ݽnß±«¤Îopqr¿C­ÃXÒ}¡ZHއĂ+cO×ÛLmDÿk²YsNlþJæE„/[z>ëi$<díW…ô%­êÏ(àÓ’¶æ§ÄµQ€Œ‘" +Â,¾¢£²Ô:öäÊX)Ñ|ÓkWéåsE¬êËÛº`ø¤—o&Ã8š†”^ÙØ;¯Ëô/C\^x“ÖÝ[§U¥U»û%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline...3_D Truchet.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush 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-TransparentFade awayFade from %Fade to %FadeoutFeatheringFile nameFilenameFill BG with patternFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Graph scaleHeightHexagonHexagonsHighlight balanceHighlight colorHit rateHole ratioHorizontalIIRImage Types:Image heightImage widthIndex imageInner teethInsert layer namesInternal GIMP procedureInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMottleN_eon...NameNew Guide (by _Percent)...New _Guide...No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of linesOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)OpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRemove backgroundReturn ValuesRibbon spacingRibbon widthRightRoughnessRound ratioRowsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Simple _Beveled Button...SizeSmearSmoothSolid ColorSpacingSpeed (pixels/frame)Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresStainsStart XStart YStart angleStart blendSupersampleTemporary ProcedureTextText colorText color (active)Text gradient reverseThicknessThread densityThread intensityThread lengthTileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textVerticalWavelengthWeb Title Header...WidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisions_Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Circuit..._Color scheme_Developer Web Site_Drop-Shadow..._Fade Outline..._Filter (regexp)_Font Map..._Grid..._Labels_Land..._Main Web Site_Old Photo..._Refresh Scripts_Remove all Guides_Round Button..._Search:_Slide..._Small Header..._Sphere..._Spyrogimp..._Start Server..._Text_Waves...Project-Id-Version: gimp-script-fu gimp-2-2 +%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 colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu gimp-2-2 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2005-02-17 12:05+0900 -Last-Translator: Tadashi Jokagi +POT-Creation-Date: 2005-09-17 19:58+0900 +PO-Revision-Date: 2005-09-10 19:00+0900 +Last-Translator: Language-Team: Japanese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%s:(ãªã—)/Script-Fu/3D アウトライン(_O).../Script-Fu/é€æ˜Žåº¦ã‚’ロゴã«/Script-Fu/装飾/Script-Fu/é¸æŠžé ˜åŸŸ/Script-Fu/å½±/Script-Fu/ユーティリティ/ヘルプ/GIMP オンライン/æ‹¡å¼µ/Script-Fu/æ‹¡å¼µ/Script-Fu/ボタン/æ‹¡å¼µ/Script-Fu/ロゴ/æ‹¡å¼µ/Script-Fu/ブラシ作æˆ/æ‹¡å¼µ/Script-Fu/ãã®ä»–/æ‹¡å¼µ/Script-Fu/パターン/æ‹¡å¼µ/Script-Fu/ユーティリティ/æ‹¡å¼µ/Script-Fu/Web ページテーマ/エイリアン発光/æ‹¡å¼µ/Script-Fu/Web ページテーマ/ベベルパターン/æ‹¡å¼µ/Script-Fu/Web ページテーマ/クラッシック Gimp.Org有効ãªè‰²å‚¾æ–œã®è¿½åŠ (_E)...æž ã®è¿½åŠ (_B)...影をè½ã™å½±ã‚’付ã‘る追加情報エアブラシエイリアン発光(_G)...エイリアンãƒã‚ªãƒ³(_N)...ç”»åƒã‚µã‚¤ã‚ºå¤‰æ›´å¯å¼·ã•è§’度アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚¹ç”Ÿæˆã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’é©ç”¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯é©ç”¨ (ã‚‚ã—ãã¯ç ´æ£„)作者:自動切り抜ãæ–¹å‘背景ä¸é€æ˜Žåº¦åŸºæœ¬ II(_A)ボタン(_U)...背景色背景画åƒèƒŒæ™¯è‰²èƒŒæ™¯ç”»åƒæ£’ã®é«˜ã•æ£’ã®é•·ã•åŸºæœ¬è‰²æŒ¯ã‚‹ã¾ã„ベベルã®é«˜ã• (é‹­ã•)ベベルã®é«˜ã• (é‹­ã•)ベベル幅黒ãã™ã‚‹ãƒ–レンド化(_D)...ブレンドグラデーション (文字)ブレンドグラデーション (輪郭)ブレンドグラデーション (文字)ブレンドモードブロックサイズã¼ã‹ã— Xã¼ã‹ã— Yã¼ã‹ã™é‡æž ã‚’ã¼ã‹ã™ã¼ã‹ã—åŠå¾„æž  X サイズ枠 Y サイズ枠ã®è‰²æž ã®å¤§ãã•æž ã®å¤§ãã• (ピクセル)ブラシブラシåãƒãƒ³ãƒ—マップ (アルファレイヤーã®) ã¼ã‹ã—åŠå¾„通電テスト: 二ã¤ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¿…è¦ã§ã™!爆発色セルサイズ (ピクセル)ãƒãƒ§ãƒ¼ã‚¯ã®è‰²ã‚¯ãƒ­ãƒ¼ãƒ ãƒãƒ©ãƒ³ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ çŽ‡ã‚¯ãƒ­ãƒ¼ãƒ æ˜Žåº¦ã‚¯ãƒ­ãƒ¼ãƒ è‰²ç›¸å††éžé¸æŠžãƒžã‚¹ã‚¯é ˜åŸŸã‚’消去ã™ã‚‹è‰²è‰² 1色 2色 3色ã®å¡—り方列コミック本(_K)...著作権表示:æ–°è¦ç”»åƒã‚’作æˆå½±ã‚’作æˆã‚¯ãƒªã‚¹ã‚¿ãƒ«...ç¾åœ¨å®Ÿè¡Œã—ã¦ã„るコマンドカスタムグラデーションカスタムグラデーション(_G)...ダーク色日付:標準ã®ãƒãƒ³ãƒ—マップ設定ピンã¼ã‘色ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå€¤å¯†åº¦ (%)æ·±ã•ä¸­å¤®ã‚’詳ã—ã詳細度直径方å‘下HSV グラフをæç”»(_H)...ドロップシャドウエッジé‡ç¸ã ã‘ç¸ã®å¹…効果サイズ (ピクセル * 3)効果サイズ (ピクセル * 4)効果サイズ (ピクセル * 5)効果サイズ (ピクセル)高度終了 X終了 Yブレンド終了環境マップ外トロコイド消ã™æ¶ˆã™/å¡—ã‚Šã¤ã¶ã™å®Ÿè¡Œä¸­ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ +%d 個ã®ãƒ—ロシージャ%s:(ãªã—)/Script-Fu/1 個ã®ãƒ—ロシージャ3D アウトライン(_O)...立体曲線タイル(_D).../Script-Fu/魔術/Script-Fu/é€æ˜Žåº¦ã‚’ロゴã«/Script-Fu/å‹•ç”»/Script-Fu/装飾/Script-Fu/下塗り/Script-Fu/é¸æŠžé ˜åŸŸ/Script-Fu/å½±/Script-Fu/ステンシルæ“作/Script-Fu/ユーティリティ/ヘルプ/GIMP オンライン/æ‹¡å¼µ/Script-Fu/æ‹¡å¼µ/Script-Fu/ボタン/æ‹¡å¼µ/Script-Fu/ロゴ/æ‹¡å¼µ/Script-Fu/ブラシ作æˆ/æ‹¡å¼µ/Script-Fu/ãã®ä»–/æ‹¡å¼µ/Script-Fu/パターン/æ‹¡å¼µ/Script-Fu/ユーティリティ/æ‹¡å¼µ/Script-Fu/Web ページテーマ/エイリアン発光/æ‹¡å¼µ/Script-Fu/Web ページテーマ/ベベルパターン/æ‹¡å¼µ/Script-Fu/Web ページテーマ/クラッシック Gimp.Orgアクティブãªè‰²å‚¾æ–œã®è¿½åŠ (_E)...æž ã®è¿½åŠ (_B)...背景追加影をè½ã™ç™ºå…‰ã‚’追加影を付ã‘る追加情報発光ã®æ®‹åƒã‚¨ã‚¢ãƒ–ラシエイリアン発光(_G)...エイリアンãƒã‚ªãƒ³(_N)...ç”»åƒã‚µã‚¤ã‚ºå¤‰æ›´å¯å¼·ã•è§’度アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚¹ç”Ÿæˆã—ãŸãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’é©ç”¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯é©ç”¨ (ã‚‚ã—ãã¯ç ´æ£„)作者:自動切り抜ãæ–¹å‘背景ä¸é€æ˜Žåº¦åŸºæœ¬ II(_A)...焼ã付ã‘(_U)...ボタン(_U)...背景色背景画åƒèƒŒæ™¯è‰²èƒŒæ™¯ç”»åƒæ£’ã®é«˜ã•æ£’ã®é•·ã•åŸºæœ¬è‰²æŒ¯ã‚‹ã¾ã„ベベルã®é«˜ã• (é‹­ã•)ベベルã®é«˜ã• (é‹­ã•)ベベル幅黒ãã™ã‚‹ç™½åœ°ã«é»’ブレンド化(_D)...ブレンドグラデーション (文字)ブレンドグラデーション (輪郭)ブレンドグラデーション (文字)ブレンドモードブロックサイズã¼ã‹ã— Xã¼ã‹ã— Yã¼ã‹ã™é‡æž ã‚’ã¼ã‹ã™æ°´å¹³ã¼ã‹ã—ã¼ã‹ã—åŠå¾„ã¼ã‹ã—タイプ垂直ã¼ã‹ã—牛模様(_V)...æž  X サイズ枠 Y サイズ枠ã®è‰²æž ã®å¤§ãã•æž ã®å¤§ãã• (ピクセル)ブラシブラシåãƒãƒ³ãƒ—マップ (アルファレイヤーã®) ã¼ã‹ã—åŠå¾„焼ã付ã‘: 全部ã§äºŒæžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¿…è¦ã§ã™!爆発色彫刻化(_A)...クロームメタル化(_H)...クローム(_H)...文字を浮ã彫りã«ã—ã¦å½«åˆ»åŒ–白ã„部分を彫刻化彫刻...セルサイズ (ピクセル)ãƒãƒ§ãƒ¼ã‚¯ã®è‰²ã‹ã˜ã‚Šå–ã‚Š(_Y)...切り欠ã‘é‡ã‚¯ãƒ­ãƒ¼ãƒ ãƒãƒ©ãƒ³ã‚¹ã‚¯ãƒ­ãƒ¼ãƒ çŽ‡ã‚¯ãƒ­ãƒ¼ãƒ æ˜Žåº¦ã‚¯ãƒ­ãƒ¼ãƒ è‰²ç›¸ç™½ã„部分をクローム化円回路種éžé¸æŠžãƒžã‚¹ã‚¯é ˜åŸŸã‚’消去ã™ã‚‹è‰²è‰² 1色 2色 3色ã®å¡—り方列コミック本(_K)...凹ã¾ã›ã‚‹å†·ãŸã„金属(_M)...著作権表示:コロナã®å¹…æ–°è¦ç”»åƒã‚’作æˆå½±ã‚’作æˆç¾åœ¨ã®é¸æŠžé ˜åŸŸã«å¤–接ã™ã‚‹ 2 本ã®ã‚¬ã‚¤ãƒ‰ã‚’作æˆã—ã¾ã™ã€‚クリスタル...キュービックç¾åœ¨å®Ÿè¡Œã—ã¦ã„るコマンドカスタムグラデーションカスタムグラデーション(_G)...ダーク色暗ã„ã¨ã“ã‚ã®ã¿ +(ç”»åƒã«ç™½ã„部分ãŒãŸãã•ã‚“ã‚ã‚‹å ´åˆã®ã¿ã€å¥½ã¾ã—ã„)日付:標準ã®ãƒãƒ³ãƒ—マップ設定ピンã¼ã‘色ã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆå€¤å¯†åº¦ (%)æ·±ã•ä¸­å¤®ã‚’詳ã—ã詳細度直径方å‘下HSV グラフをæç”»(_H)...スピログラフã€å¤–トロコイドã€ãƒªã‚µãƒ¼ã‚¸ãƒ¥å›³å½¢ã‚’æãã¾ã™ã€‚ã•ã‚‰ãªã‚‹æƒ…報㯠http://netword.com/*spyrogimp ã«ã‚ã‚Šã¾ã™ã€‚ドロップシャドウドロップシャドウ X オフセットドロップシャドウ Y オフセットドロップシャドウã¼ã‹ã—åŠå¾„ドロップシャドウ色ドロップシャドウä¸é€æ˜Žåº¦ã‚¨ãƒƒã‚¸é‡ç¸ã®å‡¦ç†ç¸ã ã‘ç¸ã©ã‚ŠåŠå¾„ç¸ã®å¹…効果サイズ (ピクセル * 3)効果サイズ (ピクセル * 30)効果サイズ (ピクセル * 4)効果サイズ (ピクセル * 5)効果サイズ (ピクセル)高度ã¼ã‘ãŸæ¥•å††å½¢(_P)...終了 X終了 Yブレンド終了ブレンド終了色環境マップ外トロコイド消ã™æ¶ˆã™/å¡—ã‚Šã¤ã¶ã™å®Ÿè¡Œä¸­ã«ã‚¨ãƒ©ãƒ¼ç™ºç”Ÿ %s -%så¶æ•°æ画色-背景色-HSVæ画色-背景色-RGBæ画色-é€æ˜Žãƒ•ã‚§ãƒ¼ãƒ‰ã—ã¦ã„ãフェード開始 %フェード終了 %フェイドアウトã¼ã‹ã—ファイルåファイルå背景をパターンã§å¡—ã‚Šã¤ã¶ã™èƒŒæ™¯è‰²ã§å¡—ã‚Šã¤ã¶ã™å¹³å¦ç”»åƒãƒ•ã‚©ãƒ³ãƒˆãƒ•ã‚©ãƒ³ãƒˆã‚µã‚¤ã‚º (ピクセル) (_S)フォント色フォントサイズ (ピクセル)æ画色画é¢æž ã®è‰²æž ã‚µã‚¤ã‚ºã‚³ãƒžæ•°å·¦ä¸Šã‹ã‚‰å³ä¸‹ã¸GIMP æ‹¡å¼µGIMP プラグイン発光色発光åŠå¾„発光サイズ (ピクセル * 4)グラデーショングラデーションã®å転グラデーション: ノコギリ歯ã®ãƒ«ãƒ¼ãƒ—グラデーション: 三角形ã®ãƒ«ãƒ¼ãƒ—粒状度粒状度 (1 ãŒæœ€ä½Ž)グラフ寸法高ã•å…­è§’形六角形ãƒã‚¤ãƒ©ã‚¤ãƒˆãƒãƒ©ãƒ³ã‚¹ãƒã‚¤ãƒ©ã‚¤ãƒˆè‰²ãƒ’ット率穴ã®å¤‰åŒ–率水平IIRç”»åƒç¨®:ç”»åƒé«˜ã•ç”»åƒå¹…インデックス画åƒå†…枠レイヤーåã®æŒ¿å…¥å†…部 GIMP プロセジャå転方å‘ã‚’å転背景を残ã™ãƒãƒ³ãƒ—レイヤーを残ã™é¸æŠžé ˜åŸŸã‚’残ã™å³¶ã®é«˜ã•å·¦ç…§æ˜Ž (角度)線形リサージュ図形ループ化下ã®è‰²ä¸‹ã®è‰² (アクティブ)å³ä¸‹ã®è‰²æ–°è¦èƒŒæ™¯ã‚’作æˆãƒžãƒ¼ã‚¸ãƒ³ (ピクセル)マスクä¸é€æ˜Žåº¦ãƒžã‚¹ã‚¯ã‚µã‚¤ã‚ºæœ€å¤§ã¼ã‹ã—åŠå¾„ã¾ã ã‚‰çŠ¶ãƒã‚ªãƒ³(_E)...åå‰æ–°è¦ã‚¬ã‚¤ãƒ‰ (パーセントã§)(_P)...æ–°è¦ã‚¬ã‚¤ãƒ‰(_G)...該当ãªã—ãªã—押ã•ãªã„時押ã•ãªã„時 (アクティブ)æ•°X タイルã®æ•°Y タイルã®æ•°å¸¯æ•°è‰²æ•°ç·šæ•°å…«è§’形奇数オフセット (ピクセル)オフセット Xオフセット YオフセットåŠå¾„オフセット (ピクセル * 2)ä¸é€æ˜Žåº¦æ–¹å‘外枠外枠輪郭ã¼ã‹ã—åŠå¾„輪郭色輪郭グラデーションã®å転輪郭サイズ空間ã®è‰²ç©ºé–“ã®ä¸é€æ˜Žåº¦ç©ºé–“空間 X空間 Yパラメータパターンパターン (輪郭)パターン (オーãƒãƒ¼ãƒ¬ã‚¤)パターン (文字)パターンå鉛筆五角形ピクセルé‡ãƒ”クセル化プラグインレジストリ(_R)å角形七角形八角形ä¹è§’å½¢ä½ç½® (in %)GIFå‘ã‘ã«ä¸‹æº–å‚™ã™ã‚‹æŠ¼ã—ãŸæ™‚プロセジャブラウザ4 分㮠1 サイズRLEåŠå¾„åŠå¾„ (%)åŠå¾„ (ピクセル)ランダム種複雑度背景消去返り値帯間隔帯幅å³è’ã•å††å½¢æ¯”率行SIOD 出力X 拡大縮å°Y 拡大縮å°ã‚¹ã‚¯ãƒªãƒ—ト引数スクリプト進行Script-Fu ブラシé¸æŠžScript-Fu 色é¸æŠžScript-Fu コンソールScript-Fu ファイルé¸æŠžScript-Fu フォルダé¸æŠžScript-Fu フォントé¸æŠžScript-Fu グラデーションé¸æŠžScript-Fu パレットé¸æŠžScript-Fu サーãƒã‚ªãƒ—ションScript-Fu コンソール(_C)Script-Fu コンソールモードã¯ã‚¤ãƒ³ã‚¿ãƒ©ã‚¯ãƒ†ã‚£ãƒ–動作ã—ã‹ã—ã¾ã›ã‚“Script-Fu 評価モードã¯éžã‚¤ãƒ³ã‚¿ãƒ©ã‚¯ãƒ†ã‚£ãƒ–動作ã—ã‹ã§ãã¾ã›ã‚“Script-Fu: %sScript-Fu パターンé¸æŠžæµ·ã®æ·±ã•èª¬æ˜Žã§æ¤œç´¢(_B)åå‰ã§æ¤œç´¢(_N)検索中 - ãŠå¾…ã¡ãã ã•ã„説明ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„åå‰ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„種色ã«ã‚ˆã‚‹é¸æŠžã®é–¾å€¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«åˆ†ã‘るセピア色サーãƒãƒ­ã‚°ãƒ•ã‚¡ã‚¤ãƒ«:サーãƒãƒãƒ¼ãƒˆ:影影 X オフセット影 Y オフセット影ã¼ã‹ã—åŠå¾„å½±ã®è‰²å½±ã®æš—ã•å½±ã®æ·±ã•å½±ã®å¹… (%)形鋭㕠(角度)シンプルãªãƒ™ãƒ™ãƒ«ãƒœã‚¿ãƒ³(_B)...サイズã“ã™ã‚‹æ»‘らã‹å˜è‰²é–“隔速ã•(ピクセル/フレーム)çƒä½“色斑点密度 X斑点密度 Yæ‹¡æ•£Spyrograph四角形四角形ã—ã¿æ•°é–‹å§‹ X開始 Y開始角度ブレンド開始スーパーサンプル一時プロセジャ文字文字色文字色 (アクティブ)文字グラデーションã®å転厚ã•ç³¸å¯†åº¦ç³¸å¼·åº¦ç³¸ã®é•·ã•ã‚¿ã‚¤ãƒ«çŠ¶ãƒ–ラシã¸(_B)...ç”»åƒã¸(_I)パターンã¸(_P)...é“å…·é€éŽèƒŒæ™¯ä¸‰è§’形左ã‹ã‚‰å³ã«å›žè»¢ç¨®é¡žä¸Šä¸Šã®è‰²ä¸Šã®è‰² (アクティブ)左上色ç¾åœ¨ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’使ã†æ–‡å­—ã«ãƒ•ã‚©ãƒ³ãƒˆåを使ã†(_N)垂直波長ウェブタイトルヘッダ...幅帯幅隙間幅コピーã§ä½œæ¥­ã™ã‚‹æŠ˜ã‚Šè¿”ã™X 分割数Y 分割数矢å°(_A)...基本 I(_B)...大ããªãƒ˜ãƒƒãƒ€(_B)...ブレンド(_B)...æž ã®å¤§ãã• (ピクセル) (_B)å‚ç…§(_B)...玉(_B)...回路(_C)...色 3(_C)開発者用ウェブサイト(_D)ドロップシャドウ(_D)...フェード枠(_F)...フィルタ (æ­£è¦è¡¨ç¾) (_F)フォントマップ(_F)グリッド(_G)...ラベル(_L)島(_L)...メインã®ã‚¦ã‚§ãƒ–サイト(_M)å¤ã„写真(_O)...スクリプトリフレッシュ(_R)å…¨ã¦ã®ã‚¬ã‚¤ãƒ‰ã‚’削除(_R)çƒå½¢ãƒœã‚¿ãƒ³(_R)検索(_S):スライド(_S)...å°ã•ãªãƒ˜ãƒƒãƒ€(_S)...çƒä½“(_S)...Spyrograph(_S)...サーãƒã‚¹ã‚¿ãƒ¼ãƒˆ(_S)...文字(_T)æ³¢(_W)... \ No newline at end of file +%så¶æ•°å¶æ•°/奇数æ画色-背景色-HSVæ画色-背景色-RGBæ画色-é€æ˜Žãƒ•ã‚§ãƒ¼ãƒ‰ã—ã¦ã„ãフェード開始 %フェード終了 %フェイドアウトフェイドアウトã®å¹…ã¼ã‹ã—ファイルåファイルå背景をパターンã§å¡—ã‚Šã¤ã¶ã™å……ã¦ã‚“角度背景色ã§å¡—ã‚Šã¤ã¶ã™å¹³å¦ç”»åƒãƒ•ã‚©ãƒ³ãƒˆãƒ•ã‚©ãƒ³ãƒˆã‚µã‚¤ã‚º (ピクセル) (_S)フォント色フォントサイズ (ピクセル)æ画色画é¢æž ã®è‰²æž ã‚µã‚¤ã‚ºã‚³ãƒžæ•°å·¦ä¸Šã‹ã‚‰å³ä¸‹ã¸GIMP æ‹¡å¼µGIMP プラグイン光沢(_S)...白熱ã®è¼ã(_W)...発光色発光åŠå¾„発光サイズ (ピクセル * 4)グラデーショングラデーションé¢å–ã‚Š(_L)...グラデーションã®å転グラデーション: ノコギリ歯ã®ãƒ«ãƒ¼ãƒ—グラデーション: 三角形ã®ãƒ«ãƒ¼ãƒ—粒状度粒状度 (1 ãŒæœ€ä½Ž)粒状度 (1 ãŒæœ€ä½Ž)グラフ寸法見出ã—(_E)...高ã•å…­è§’形六角形ãƒã‚¤ãƒ©ã‚¤ãƒˆ X オフセットãƒã‚¤ãƒ©ã‚¤ãƒˆ Y オフセットãƒã‚¤ãƒ©ã‚¤ãƒˆãƒãƒ©ãƒ³ã‚¹ãƒã‚¤ãƒ©ã‚¤ãƒˆè‰²ãƒã‚¤ãƒ©ã‚¤ãƒˆä¸é€æ˜Žåº¦ãƒ’ット率穴ã®å¤‰åŒ–率水平IIRç”»åƒç¨®:ç”»åƒé«˜ã•ç”»åƒã‚µã‚¤ã‚ºå½«åˆ»åŒ–ã™ã‚‹ç”»åƒç”»åƒå¹…ãã«ã‚ƒãã«ã‚ƒ...インデックス画åƒn 色ã«ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹åŒ– (0 = RGB ã®ã¾ã¾)内枠レイヤーåã®æŒ¿å…¥ä¸­é–“生æˆãƒ•ãƒ¬ãƒ¼ãƒ å†…部 GIMP プロセジャ補間å転方å‘ã‚’å転背景を残ã™ãƒãƒ³ãƒ—レイヤーを残ã™é¸æŠžé ˜åŸŸã‚’残ã™å³¶ã®é«˜ã•å·¦ç…§æ˜Ž (角度)集中線(_N)...線形リサージュ図形ループ化下ã®è‰²ä¸‹ã®è‰² (アクティブ)å³ä¸‹ã®è‰²æ–°è¦èƒŒæ™¯ã‚’作æˆãƒžãƒ¼ã‚¸ãƒ³ (ピクセル)マスクä¸é€æ˜Žåº¦ãƒžã‚¹ã‚¯ã‚µã‚¤ã‚ºæœ€å¤§ã¼ã‹ã—åŠå¾„モザイクタイル型ã¾ã ã‚‰çŠ¶ãƒã‚ªãƒ³(_E)...åå‰æ–°è¦ã‚¬ã‚¤ãƒ‰ (パーセントã§)(_P)...é¸æŠžé ˜åŸŸã‹ã‚‰æ–°è¦ã‚¬ã‚¤ãƒ‰(_S)æ–°è¦ã‚¬ã‚¤ãƒ‰(_G)...æ–°èžå°åˆ·...背景ãªã— (レイヤーを分ã‘ã‚‹ã ã‘)該当ãªã—ãªã—押ã•ãªã„時押ã•ãªã„時 (アクティブ)æ•°X タイルã®æ•°Y タイルã®æ•°å¸¯æ•°è‰²æ•°ãƒ•ãƒ¬ãƒ¼ãƒ æ•°ç·šæ•°å›žè»¢æ•°å…«è§’形奇数オフセット (ピクセル)オフセット Xオフセット YオフセットåŠå¾„オフセット (ピクセル * 2)油絵化マスクサイズä¸é€æ˜Žåº¦æ–¹å‘外枠外枠輪郭ã¼ã‹ã—åŠå¾„輪郭色輪郭グラデーションã®å転輪郭サイズ空間ã®è‰²ç©ºé–“ã®ä¸é€æ˜Žåº¦ç©ºé–“空間 X空間 Y文字周りã®ç©ºé–“é€æ˜Žãªé ˜åŸŸã®ãŸã‚ã®ç©ºé–“パラメータパターンパターン (輪郭)パターン (オーãƒãƒ¼ãƒ¬ã‚¤)パターン (文字)パターンå鉛筆五角形ピクセルé‡ãƒ”クセル化プラグインレジストリ(_R)å角形七角形八角形ä¹è§’å½¢ä½ç½® (in %)GIFå‘ã‘ã«ä¸‹æº–å‚™ã™ã‚‹æŠ¼ã—ãŸæ™‚プロセジャブラウザ4 分㮠1 サイズRLEåŠå¾„åŠå¾„ (%)åŠå¾„ (ピクセル)ランダム種複雑度ã¼ã‘ãŸçŸ©å½¢(_C)...地平線ã®ç›¸å¯¾çš„ãªè·é›¢å½±ã®ç›¸å¯¾çš„ãªé•·ã•èƒŒæ™¯æ¶ˆåŽ»åœ°å›³(_M)...返り値帯間隔帯幅å³æ³¢çŠ¶å¼·åº¦è’ã•å††å½¢æ¯”率角を丸ã‚ã‚‹(_E)...行行/列SIOD 出力SOTA クローム...X 拡大縮å°Y 拡大縮å°ã‚¹ã‚¯ãƒªãƒ—ト引数スクリプト進行Script-Fu ブラシé¸æŠžScript-Fu 色é¸æŠžScript-Fu コンソールScript-Fu ファイルé¸æŠžScript-Fu フォルダé¸æŠžScript-Fu フォントé¸æŠžScript-Fu グラデーションé¸æŠžScript-Fu パレットé¸æŠžScript-Fu サーãƒã‚ªãƒ—ションScript-Fu コンソール(_C)Script-Fu ã¯äºŒã¤ã®ã‚¹ã‚¯ãƒªãƒ—トをåŒæ™‚ã«å®Ÿè¡Œã§ãã¾ã›ã‚“。Script-Fu コンソールモードã¯ã‚¤ãƒ³ã‚¿ãƒ©ã‚¯ãƒ†ã‚£ãƒ–動作ã—ã‹ã—ã¾ã›ã‚“Script-Fu 評価モードã¯éžã‚¤ãƒ³ã‚¿ãƒ©ã‚¯ãƒ†ã‚£ãƒ–動作ã—ã‹ã§ãã¾ã›ã‚“Script-Fu: %sScript-Fu パターンé¸æŠžæµ·ã®æ·±ã•èª¬æ˜Žã§æ¤œç´¢(_B)åå‰ã§æ¤œç´¢(_N)検索中 - ãŠå¾…ã¡ãã ã•ã„説明ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„åå‰ã§æ¤œç´¢ä¸­ - ãŠå¾…ã¡ä¸‹ã•ã„種色ã«ã‚ˆã‚‹é¸æŠžã®é–¾å€¤ãƒ¬ã‚¤ãƒ¤ãƒ¼ã«åˆ†ã‘るセピア色サーãƒãƒ­ã‚°ãƒ•ã‚¡ã‚¤ãƒ«:サーãƒãƒãƒ¼ãƒˆ:影影 X オフセット影 Y オフセット影ã¼ã‹ã—åŠå¾„å½±ã®è‰²å½±ã®æš—ã•å½±ã®æ·±ã•å½±ã®å¹… (%)形鋭㕠(角度)刈りå–ã‚‹é•·ã•ç”»åƒæ§‹é€ è¡¨ç¤º(_S)...シンプルãªãƒ™ãƒ™ãƒ«ãƒœã‚¿ãƒ³(_B)...サイズã“ã™ã‚‹æ»‘らã‹æ°´å¹³ã«æ»‘らã‹åž‚ç›´ã«æ»‘らã‹å˜è‰²ãƒ¬ã‚¤ãƒ¤ãƒ¼é–“ã®é–“隔間隔速ã•(ピクセル/フレーム)スピード文字...çƒä½“色斑点密度 X斑点密度 Y拡散スピログラフ四角形四角形星ã®ãらã‚ã(_R)...ã—ã¿æ•°è¶…新星爆発(_U)...開始 X開始 Y開始角度ブレンド開始ブレンド開始色スーパーサンプル渦巻タイル(_T)...曲線タイル(_R)...管副ボタンラベル(_U)...一時プロセジャ文字文字色文字色 (アクティブ)文字グラデーションã®å転文字パターン厚ã•ç³¸å¯†åº¦ç³¸å¼·åº¦ç³¸ã®é•·ã•ã—ãã„値 (大ãã„ 1<-->255 å°ã•ã„)タイル状ブラシã¸(_B)...ç”»åƒã¸(_I)パターンã¸(_P)...é“å…·é€éŽèƒŒæ™¯ä¸‰è§’形管副々ボタンラベル(_E)...å·¦ã‹ã‚‰å³ã«å›žè»¢ç¨®é¡žä¸Šä¸Šã®è‰²ä¸Šã®è‰² (アクティブ)左上色ç¾åœ¨ã®ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’使ã†æ–‡å­—ã«ãƒ•ã‚©ãƒ³ãƒˆåを使ã†(_N)拡大ã—ãŸé¸æŠžé ˜åŸŸã®ä½¿ç”¨ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã®ä»£ã‚ã‚Šã«ãƒ‘ターンを輪郭ã«ä½¿ã†ã‚°ãƒ©ãƒ‡ãƒ¼ã‚·ãƒ§ãƒ³ã®ä»£ã‚ã‚Šã«ãƒ‘ターンを文字ã«ä½¿ã†ãƒ‘ターンをオーãƒãƒ¼ãƒ¬ã‚¤ã§ä½¿ã†ä»¥ä¸‹ã®è¨­å®šã§ã¯ãªãé¸æŠžé ˜åŸŸã‚’使用ã™ã‚‹åž‚直波長ウェブタイトルヘッダ...回転é‡å›žè»¢è§’幅帯幅隙間幅コピーã§ä½œæ¥­ã™ã‚‹æŠ˜ã‚Šè¿”ã™X 分割数Y 分割数ã™ã§ã« "%s" スクリプトを実行中ã§ã™ã€‚矢å°(_A)...基本 I(_B)...大ããªãƒ˜ãƒƒãƒ€(_B)...ブレンド(_B)...æž ã®å¤§ãã• (ピクセル) (_B)å‚ç…§(_B)...玉(_B)...迷彩(_C)...ãƒãƒ§ãƒ¼ã‚¯(_C)...回路(_C)...覆布化(_C)...コーヒーã®æŸ“ã¿(_C)...色 3(_C)開発者用ウェブサイト(_D)ãµã‚‰ãµã‚‰é¸æŠž(_D)...ドロップシャドウ(_D)...楕円形(_E)...一行ãŠãã«æ¶ˆã™(_E)...フェード枠(_F)...フィルタ (æ­£è¦è¡¨ç¾) (_F)平野地形図(_F)...フォントマップ(_F)...霜(_F)...ファジーç¸å–ã‚Š(_F)...汎用管ラベル(_G)...グリッド(_G)...水平線(_H)...ラベル(_L)島(_L)...溶岩(_L)...メインã®ã‚¦ã‚§ãƒ–サイト(_M)å¤ã„写真(_O)...ç²’å­ã®è»Œè·¡(_P)...é è¿‘法(_P)...プレデター(_P)...矩形(_R)...スクリプトリフレッシュ(_R)å…¨ã¦ã®ã‚¬ã‚¤ãƒ‰ã‚’削除(_R)波紋(_R)...çƒå½¢ãƒœã‚¿ãƒ³(_R)...角丸ã‚(_R)...検索(_S):スライド(_S)...å°ã•ãªãƒ˜ãƒƒãƒ€(_S)...çƒä½“(_S)...回転çƒ(_S)...Spyrogimp(_S)...サーãƒã‚¹ã‚¿ãƒ¼ãƒˆ(_S)...渦巻(_S)...文字(_T)テクスãƒãƒ£(_T)...タイル化å¯èƒ½ã¼ã‹ã—(_T)...管ボタンラベル(_T)...éžã‚·ãƒ£ãƒ¼ãƒ—化マスク(_U)...æ³¢(_W)...織物(_W)...Xach 効果(_X)... \ No newline at end of file diff -uraN gimp-2.2.8/po-script-fu/ja.po gimp-2.2.9/po-script-fu/ja.po --- gimp-2.2.8/po-script-fu/ja.po 2005-05-08 23:42:29.000000000 +0200 +++ gimp-2.2.9/po-script-fu/ja.po 2005-09-20 18:24:05.000000000 +0200 @@ -10,9 +10,9 @@ msgstr "" "Project-Id-Version: gimp-script-fu gimp-2-2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2005-02-17 12:05+0900\n" -"Last-Translator: Tadashi Jokagi \n" +"POT-Creation-Date: 2005-09-17 19:58+0900\n" +"PO-Revision-Date: 2005-09-10 19:00+0900\n" +"Last-Translator: \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,12 +45,12 @@ #: ../plug-ins/script-fu/script-fu-interface.c:177 msgid "Script-Fu cannot process two scripts at the same time." -msgstr "" +msgstr "Script-Fu ã¯äºŒã¤ã®ã‚¹ã‚¯ãƒªãƒ—トをåŒæ™‚ã«å®Ÿè¡Œã§ãã¾ã›ã‚“。" #: ../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 @@ -116,22 +116,22 @@ msgid "(none)" msgstr "(ãªã—)" -#: ../plug-ins/script-fu/script-fu-interface.c:1058 +#: ../plug-ins/script-fu/script-fu-interface.c:1061 #: ../plug-ins/dbbrowser/gimpprocview.c:198 msgid "Author:" msgstr "作者:" -#: ../plug-ins/script-fu/script-fu-interface.c:1065 +#: ../plug-ins/script-fu/script-fu-interface.c:1068 #: ../plug-ins/dbbrowser/gimpprocview.c:220 msgid "Copyright:" msgstr "著作権表示:" -#: ../plug-ins/script-fu/script-fu-interface.c:1072 +#: ../plug-ins/script-fu/script-fu-interface.c:1075 #: ../plug-ins/dbbrowser/gimpprocview.c:209 msgid "Date:" msgstr "日付:" -#: ../plug-ins/script-fu/script-fu-interface.c:1081 +#: ../plug-ins/script-fu/script-fu-interface.c:1084 msgid "Image Types:" msgstr "ç”»åƒç¨®:" @@ -146,15 +146,15 @@ "%s\n" "%s" -#: ../plug-ins/script-fu/script-fu-server.c:642 +#: ../plug-ins/script-fu/script-fu-server.c:648 msgid "Script-Fu Server Options" msgstr "Script-Fu サーãƒã‚ªãƒ—ション" -#: ../plug-ins/script-fu/script-fu-server.c:670 +#: ../plug-ins/script-fu/script-fu-server.c:676 msgid "Server Port:" msgstr "サーãƒãƒãƒ¼ãƒˆ:" -#: ../plug-ins/script-fu/script-fu-server.c:676 +#: ../plug-ins/script-fu/script-fu-server.c:682 msgid "Server Logfile:" msgstr "サーãƒãƒ­ã‚°ãƒ•ã‚¡ã‚¤ãƒ«:" @@ -208,12 +208,12 @@ #: ../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" @@ -301,7 +301,6 @@ #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:2 #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:2 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:2 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:1 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:2 #: ../plug-ins/script-fu/scripts/title-header.scm.h:1 msgid "/Xtns/Script-Fu/Logos" @@ -350,7 +349,7 @@ #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:6 #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:4 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:8 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:4 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:3 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:6 #: ../plug-ins/script-fu/scripts/title-header.scm.h:2 msgid "Font" @@ -389,7 +388,7 @@ #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:7 #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:9 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:5 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:4 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:7 #: ../plug-ins/script-fu/scripts/title-header.scm.h:3 msgid "Font size (pixels)" @@ -460,7 +459,7 @@ #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:9 #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:8 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:11 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:8 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:7 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:14 #: ../plug-ins/script-fu/scripts/title-header.scm.h:5 msgid "Text" @@ -468,7 +467,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 msgid "3_D Truchet..." -msgstr "" +msgstr "立体曲線タイル(_D)..." #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 #: ../plug-ins/script-fu/scripts/camo.scm.h:1 @@ -670,12 +669,11 @@ #: ../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 "水平線(_H)..." #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:5 #: ../plug-ins/script-fu/scripts/tileblur.scm.h:6 msgid "Radius" msgstr "åŠå¾„" @@ -748,7 +746,7 @@ #: ../plug-ins/script-fu/scripts/basic2-logo.scm.h:3 msgid "B_asic II..." -msgstr "基本 II(_A)" +msgstr "基本 II(_A)..." #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:1 #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:1 @@ -799,7 +797,7 @@ #: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." -msgstr "" +msgstr "見出ã—(_E)..." #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 @@ -821,12 +819,10 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:1 #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:1 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:1 -#, fuzzy msgid "/Script-Fu/Animators" -msgstr "/Script-Fu/å‹•ç”»/ブレンド(_B)..." +msgstr "/Script-Fu/å‹•ç”»" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 -#, fuzzy msgid "Intermediate frames" msgstr "中間生æˆãƒ•ãƒ¬ãƒ¼ãƒ " @@ -896,7 +892,7 @@ #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 msgid "Bo_vination..." -msgstr "" +msgstr "牛模様(_V)..." #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 msgid "Spots density X" @@ -907,25 +903,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 "焼ã付ã‘(_U)..." #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 msgid "Burn-In: Need two layers in total!" -msgstr "通電テスト: 二ã¤ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¿…è¦ã§ã™!" +msgstr "焼ã付ã‘: 全部ã§äºŒæžšã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¿…è¦ã§ã™!" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 -#, fuzzy msgid "Corona width" msgstr "コロナã®å¹…" @@ -934,7 +927,6 @@ msgstr "フェイドアウト" #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 -#, fuzzy msgid "Fadeout width" msgstr "フェイドアウトã®å¹…" @@ -965,7 +957,6 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:7 #: ../plug-ins/script-fu/scripts/rendermap.scm.h:7 -#, fuzzy msgid "Image size" msgstr "ç”»åƒã‚µã‚¤ã‚º" @@ -976,25 +967,22 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:9 msgid "_Camouflage..." -msgstr "" +msgstr "迷彩(_C)..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:1 #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:1 -#, fuzzy msgid "/Script-Fu/Stencil Ops" -msgstr "/Script-Fu/ステンシルæ“作/彫刻化(_A)..." +msgstr "/Script-Fu/ステンシルæ“作" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 msgid "C_arve-It..." -msgstr "" +msgstr "彫刻化(_A)..." #: ../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 "彫刻化ã™ã‚‹ç”»åƒ" @@ -1003,16 +991,14 @@ msgstr "背景画åƒ" #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:3 -#, fuzzy msgid "Carve raised text" msgstr "文字を浮ã彫りã«ã—ã¦å½«åˆ»åŒ–" #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." -msgstr "" +msgstr "彫刻..." #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 -#, fuzzy msgid "Padding around text" msgstr "文字周りã®ç©ºé–“" @@ -1022,7 +1008,7 @@ #: ../plug-ins/script-fu/scripts/chalk.scm.h:8 msgid "_Chalk..." -msgstr "" +msgstr "ãƒãƒ§ãƒ¼ã‚¯(_C)..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 msgid "Blur amount" @@ -1030,10 +1016,9 @@ #: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 msgid "Chip Awa_y..." -msgstr "" +msgstr "ã‹ã˜ã‚Šå–ã‚Š(_Y)..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 -#, fuzzy msgid "Chip amount" msgstr "切り欠ã‘é‡" @@ -1054,9 +1039,8 @@ msgstr "背景を残ã™" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:2 -#, fuzzy msgid "C_hrome-It..." -msgstr "å‚ç…§..." +msgstr "クロームメタル化(_H)..." #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:3 #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 @@ -1080,7 +1064,6 @@ msgstr "クローム色相" #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:7 -#, fuzzy msgid "Chrome white areas" msgstr "白ã„部分をクローム化" @@ -1096,9 +1079,8 @@ msgstr "ãƒã‚¤ãƒ©ã‚¤ãƒˆãƒãƒ©ãƒ³ã‚¹" #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -#, fuzzy msgid "C_hrome..." -msgstr "å‚ç…§..." +msgstr "クローム(_H)..." #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 msgid "Offsets (pixels * 2)" @@ -1109,12 +1091,10 @@ #: ../plug-ins/script-fu/scripts/lava.scm.h:1 #: ../plug-ins/script-fu/scripts/line-nova.scm.h:1 #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:1 -#, fuzzy msgid "/Script-Fu/Render" -msgstr "/Script-Fu/下塗り/溶岩(_L)..." +msgstr "/Script-Fu/下塗り" #: ../plug-ins/script-fu/scripts/circuit.scm.h:2 -#, fuzzy msgid "Circuit seed" msgstr "回路種" @@ -1126,12 +1106,10 @@ msgstr "é¸æŠžé ˜åŸŸã‚’残ã™" #: ../plug-ins/script-fu/scripts/circuit.scm.h:4 -#, fuzzy msgid "No background (only for separate layer)" msgstr "背景ãªã— (レイヤーを分ã‘ã‚‹ã ã‘)" #: ../plug-ins/script-fu/scripts/circuit.scm.h:5 -#, fuzzy msgid "Oilify mask size" msgstr "油絵化マスクサイズ" @@ -1150,9 +1128,8 @@ #: ../plug-ins/script-fu/scripts/predator.scm.h:1 #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 #: ../plug-ins/script-fu/scripts/weave.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alchemy" -msgstr "/Script-Fu/魔術/織物(_W)..." +msgstr "/Script-Fu/魔術" #: ../plug-ins/script-fu/scripts/clothify.scm.h:2 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 @@ -1179,16 +1156,15 @@ #: ../plug-ins/script-fu/scripts/clothify.scm.h:7 msgid "_Clothify..." -msgstr "" +msgstr "覆布化(_C)..." #: ../plug-ins/script-fu/scripts/coffee.scm.h:2 -#, fuzzy msgid "" "Darken only\n" "(Better, but only for images with alot of white)" msgstr "" "æš—ã„ã¨ã“ã‚ã®ã¿\n" -"(ç”»åƒã«ç™½ã„部分ãŒãŸãã•ã‚“ã‚ã‚‹å ´åˆã®ã¿, 好ã¾ã—ã„)" +"(ç”»åƒã«ç™½ã„部分ãŒãŸãã•ã‚“ã‚ã‚‹å ´åˆã®ã¿ã€å¥½ã¾ã—ã„)" #: ../plug-ins/script-fu/scripts/coffee.scm.h:3 msgid "Stains" @@ -1196,7 +1172,7 @@ #: ../plug-ins/script-fu/scripts/coffee.scm.h:4 msgid "_Coffee Stain..." -msgstr "" +msgstr "コーヒーã®æŸ“ã¿(_C)..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 msgid "Comic Boo_k..." @@ -1213,7 +1189,7 @@ #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 msgid "Cool _Metal..." -msgstr "" +msgstr "冷ãŸã„金属(_M)..." #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:4 @@ -1237,17 +1213,14 @@ msgstr "/Script-Fu/é¸æŠžé ˜åŸŸ" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 -#, fuzzy msgid "Granularity (1 is low)" msgstr "粒状度 (1 ãŒæœ€ä½Ž)" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:4 -#, fuzzy msgid "Smooth horizontally" msgstr "æ°´å¹³ã«æ»‘らã‹" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:5 -#, fuzzy msgid "Smooth vertically" msgstr "åž‚ç›´ã«æ»‘らã‹" @@ -1256,14 +1229,12 @@ 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 "/Script-Fu/é¸æŠž/ãµã‚‰ãµã‚‰é¸æŠž(_D)..." +msgstr "ãµã‚‰ãµã‚‰é¸æŠž(_D)..." #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 @@ -1327,7 +1298,6 @@ msgstr "å¶æ•°" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:6 -#, fuzzy msgid "Even/odd" msgstr "å¶æ•°/奇数" @@ -1344,14 +1314,12 @@ 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 "/Script-Fu/魔術/一行ãŠãã«æ¶ˆã™(_E)..." +msgstr "一行ãŠãã«æ¶ˆã™(_E)..." #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:2 msgid "Apply generated layermask" @@ -1378,7 +1346,6 @@ msgstr "フェード終了 %" #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:9 -#, fuzzy msgid "Use growing selection" msgstr "拡大ã—ãŸé¸æŠžé ˜åŸŸã®ä½¿ç”¨" @@ -1418,7 +1385,7 @@ #: ../plug-ins/script-fu/scripts/flatland.scm.h:8 msgid "_Flatland..." -msgstr "" +msgstr "平野地形図(_F)..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:1 #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:1 @@ -1427,11 +1394,11 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" -msgstr "有効ãªè‰²" +msgstr "アクティブãªè‰²" #: ../plug-ins/script-fu/scripts/font-map.scm.h:3 msgid "Black on white" -msgstr "" +msgstr "白地ã«é»’" #: ../plug-ins/script-fu/scripts/font-map.scm.h:4 msgid "Font _size (pixels)" @@ -1455,7 +1422,7 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:9 msgid "_Font Map..." -msgstr "フォントマップ(_F)" +msgstr "フォントマップ(_F)..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:10 msgid "_Labels" @@ -1466,9 +1433,8 @@ msgstr "文字(_T)" #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -#, fuzzy msgid "_Frosty..." -msgstr "å‚ç…§..." +msgstr "霜(_F)..." #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 msgid "Add shadow" @@ -1489,7 +1455,7 @@ #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 msgid "_Fuzzy Border..." -msgstr "" +msgstr "ファジーç¸å–ã‚Š(_F)..." #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:1 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:1 @@ -1544,19 +1510,19 @@ #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 msgid "T_ube Sub-Button Label..." -msgstr "" +msgstr "管副ボタンラベル(_U)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 msgid "Tub_e Sub-Sub-Button Label..." -msgstr "" +msgstr "管副々ボタンラベル(_E)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 msgid "_General Tube Labels..." -msgstr "" +msgstr "汎用管ラベル(_G)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 msgid "_Tube Button Label..." -msgstr "" +msgstr "管ボタンラベル(_T)..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:4 msgid "Blend gradient (Text)" @@ -1572,7 +1538,7 @@ #: ../plug-ins/script-fu/scripts/glossy.scm.h:10 msgid "Glo_ssy..." -msgstr "" +msgstr "光沢(_S)..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:11 msgid "Outline gradient reverse" @@ -1600,17 +1566,14 @@ msgstr "文字グラデーションã®å転" #: ../plug-ins/script-fu/scripts/glossy.scm.h:21 -#, fuzzy msgid "Use pattern for outline instead of gradient" msgstr "グラデーションã®ä»£ã‚ã‚Šã«ãƒ‘ターンを輪郭ã«ä½¿ã†" #: ../plug-ins/script-fu/scripts/glossy.scm.h:22 -#, fuzzy msgid "Use pattern for text instead of gradient" msgstr "グラデーションã®ä»£ã‚ã‚Šã«ãƒ‘ターンを文字ã«ä½¿ã†" #: ../plug-ins/script-fu/scripts/glossy.scm.h:23 -#, fuzzy msgid "Use pattern overlay" msgstr "パターンをオーãƒãƒ¼ãƒ¬ã‚¤ã§ä½¿ã†" @@ -1620,7 +1583,7 @@ #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 msgid "Glo_wing Hot..." -msgstr "" +msgstr "白熱ã®è¼ã(_W)..." #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 msgid "Bevel height (Sharpness)" @@ -1637,9 +1600,8 @@ msgstr "æž ã®å¤§ãã• (ピクセル)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -#, fuzzy msgid "Gradient Beve_l..." -msgstr "グラデーションã®å転" +msgstr "グラデーションé¢å–ã‚Š(_L)..." #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 msgid "Custom _Gradient..." @@ -1659,11 +1621,11 @@ #: ../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 "ç¾åœ¨ã®é¸æŠžé ˜åŸŸã«å¤–接ã™ã‚‹ 2 本ã®ã‚¬ã‚¤ãƒ‰ã‚’作æˆã—ã¾ã™ã€‚" #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 msgid "New Guides from _Selection" -msgstr "" +msgstr "é¸æŠžé ˜åŸŸã‹ã‚‰æ–°è¦ã‚¬ã‚¤ãƒ‰(_S)" #: ../plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 #: ../plug-ins/script-fu/scripts/guides-new.scm.h:1 @@ -1735,7 +1697,6 @@ msgstr "開始 Y" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:10 -#, fuzzy msgid "Use selection bounds instead of belows" msgstr "以下ã®è¨­å®šã§ã¯ãªãé¸æŠžé ˜åŸŸã‚’使用ã™ã‚‹" @@ -1749,7 +1710,7 @@ #: ../plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 msgid "Imigre-26..." -msgstr "" +msgstr "ãã«ã‚ƒãã«ã‚ƒ..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:2 msgid "Apply layer mask (or discard)" @@ -1780,22 +1741,18 @@ 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 "/Script-Fu/ユーティリティ/ç”»åƒæ§‹é€ è¡¨ç¤º(_S)..." +msgstr "ç”»åƒæ§‹é€ è¡¨ç¤º(_S)..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:13 -#, fuzzy msgid "Space between layers" msgstr "レイヤー間ã®é–“éš”" @@ -1826,11 +1783,11 @@ #: ../plug-ins/script-fu/scripts/lava.scm.h:9 msgid "_Lava..." -msgstr "" +msgstr "溶岩(_L)..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 msgid "Line _Nova..." -msgstr "" +msgstr "集中線(_N)..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 msgid "Number of lines" @@ -1854,7 +1811,7 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 msgid "Elli_ptical, Feathered..." -msgstr "" +msgstr "ã¼ã‘ãŸæ¥•å††å½¢(_P)..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:3 msgid "Feathering" @@ -1866,7 +1823,7 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:6 msgid "Re_ctangular, Feathered..." -msgstr "" +msgstr "ã¼ã‘ãŸçŸ©å½¢(_C)..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 @@ -1875,11 +1832,11 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 msgid "_Elliptical..." -msgstr "" +msgstr "楕円形(_E)..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 msgid "_Rectangular..." -msgstr "" +msgstr "矩形(_R)..." #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 msgid "Create shadow" @@ -1905,7 +1862,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" @@ -1929,10 +1886,9 @@ #: ../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 "補間" @@ -1945,18 +1901,16 @@ msgstr "ãªã—" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 -#, fuzzy msgid "Relative distance of horizon" msgstr "地平線ã®ç›¸å¯¾çš„ãªè·é›¢" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:12 -#, fuzzy msgid "Relative length of shadow" msgstr "å½±ã®ç›¸å¯¾çš„ãªé•·ã•" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 msgid "_Perspective..." -msgstr "" +msgstr "é è¿‘法(_P)..." #: ../plug-ins/script-fu/scripts/predator.scm.h:2 msgid "Edge amount" @@ -1972,7 +1926,7 @@ #: ../plug-ins/script-fu/scripts/predator.scm.h:7 msgid "_Predator..." -msgstr "" +msgstr "プレデター(_P)..." #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 msgid "Lower color" @@ -2016,7 +1970,7 @@ #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 msgid "_Round Button..." -msgstr "çƒå½¢ãƒœã‚¿ãƒ³(_R)" +msgstr "çƒå½¢ãƒœã‚¿ãƒ³(_R)..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 msgid "Behaviour" @@ -2028,7 +1982,7 @@ #: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 msgid "Render _Map..." -msgstr "" +msgstr "地図(_M)..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 msgid "Tile" @@ -2039,18 +1993,15 @@ msgstr "é»’ãã™ã‚‹" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:3 -#, fuzzy msgid "Edge behaviour" msgstr "ç¸ã®å‡¦ç†" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:4 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:4 -#, fuzzy msgid "Number of frames" msgstr "フレーム数" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:5 -#, fuzzy msgid "Rippling strength" msgstr "波状強度" @@ -2064,10 +2015,9 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 msgid "_Rippling..." -msgstr "" +msgstr "波紋(_R)..." #: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 -#, fuzzy msgid "Add background" msgstr "背景追加" @@ -2076,13 +2026,12 @@ 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 "角丸ã‚(_R)..." #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 msgid "Brush name" @@ -2113,9 +2062,8 @@ msgstr "パターンã¸(_P)..." #: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 -#, fuzzy msgid "Concave" -msgstr "å–消" +msgstr "凹ã¾ã›ã‚‹" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:3 #, no-c-format @@ -2123,9 +2071,8 @@ msgstr "åŠå¾„ (%)" #: ../plug-ins/script-fu/scripts/selection-round.scm.h:4 -#, fuzzy msgid "Rounded R_ectangle..." -msgstr "/Script-Fu/é¸æŠž/丸ã‚ã‚‹(_R)..." +msgstr "角を丸ã‚ã‚‹(_E)..." #: ../plug-ins/script-fu/scripts/slide.scm.h:3 msgid "Font color" @@ -2141,11 +2088,11 @@ #: ../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 msgid "/Xtns/Script-Fu/Misc" @@ -2172,7 +2119,6 @@ msgstr "コマ数" #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:3 -#, fuzzy msgid "Index to n colors (0 = remain RGB)" msgstr "n 色ã«ã‚¤ãƒ³ãƒ‡ãƒƒã‚¯ã‚¹åŒ– (0 = RGB ã®ã¾ã¾)" @@ -2182,7 +2128,7 @@ #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 msgid "_Spinning Globe..." -msgstr "" +msgstr "回転çƒ(_S)..." #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 msgid "Airbrush" @@ -2205,6 +2151,8 @@ "Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://" "netword.com/*spyrogimp" msgstr "" +"スピログラフã€å¤–トロコイドã€ãƒªã‚µãƒ¼ã‚¸ãƒ¥å›³å½¢ã‚’æãã¾ã™ã€‚ã•ã‚‰ãªã‚‹æƒ…報㯠http://" +"netword.com/*spyrogimp ã«ã‚ã‚Šã¾ã™ã€‚" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:8 msgid "Epitrochoid" @@ -2280,14 +2228,14 @@ #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:27 msgid "Spyrograph" -msgstr "Spyrograph" +msgstr "スピログラフ" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:28 msgid "Square" msgstr "四角形" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:29 -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:7 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 msgid "Start angle" msgstr "開始角度" @@ -2305,41 +2253,37 @@ #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 msgid "_Spyrogimp..." -msgstr "Spyrograph(_S)..." +msgstr "Spyrogimp(_S)..." #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:4 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 "超新星爆発(_U)..." #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 msgid "Effect size (pixels * 4)" msgstr "効果サイズ (ピクセル * 4)" #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "å‚ç…§..." +msgstr "星ã®ãらã‚ã(_R)..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." -msgstr "" +msgstr "渦巻タイル(_T)..." #: ../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 "回転数" @@ -2348,13 +2292,12 @@ msgstr "4 分㮠1 サイズ" #: ../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 "渦巻(_S)..." #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 msgid "Base color" @@ -2374,24 +2317,22 @@ #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 msgid "_Particle Trace..." -msgstr "" +msgstr "ç²’å­ã®è»Œè·¡(_P)..." -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:1 msgid "Antialias" msgstr "アンãƒã‚¨ã‚¤ãƒªã‚¢ã‚¹" -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:3 -#, fuzzy +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Fill angle" msgstr "å……ã¦ã‚“角度" -#: ../plug-ins/script-fu/scripts/text-circle.scm.h:9 +#: ../plug-ins/script-fu/scripts/text-circle.scm.h:8 #, fuzzy -msgid "Text Circle..." -msgstr "円" +msgid "Text C_ircle..." +msgstr "文字円..." #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:5 -#, fuzzy msgid "Ending blend" msgstr "ブレンド終了色" @@ -2400,7 +2341,6 @@ msgstr "六角形" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:9 -#, fuzzy msgid "Mosaic tile type" msgstr "モザイクタイル型" @@ -2413,31 +2353,26 @@ msgstr "四角形" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:13 -#, fuzzy msgid "Starting blend" msgstr "ブレンド開始色" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:15 -#, fuzzy msgid "Text pattern" msgstr "文字パターン" #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 msgid "_Textured..." -msgstr "" +msgstr "テクスãƒãƒ£(_T)..." #: ../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 "åž‚ç›´ã¼ã‹ã—" @@ -2450,9 +2385,8 @@ msgstr "RLE" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 -#, fuzzy msgid "_Tileable Blur..." -msgstr "/フィルタ/ã¼ã‹ã—/タイル化å¯èƒ½ã¼ã‹ã—(_T)..." +msgstr "タイル化å¯èƒ½ã¼ã‹ã—(_T)..." #: ../plug-ins/script-fu/scripts/title-header.scm.h:6 msgid "Web Title Header..." @@ -2464,7 +2398,7 @@ #: ../plug-ins/script-fu/scripts/truchet.scm.h:7 msgid "T_ruchet..." -msgstr "" +msgstr "曲線タイル(_R)..." #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 msgid "Mask opacity" @@ -2476,7 +2410,7 @@ #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 msgid "_Unsharp Mask..." -msgstr "" +msgstr "éžã‚·ãƒ£ãƒ¼ãƒ—化マスク(_U)..." #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:2 msgid "Amplitude" @@ -2524,7 +2458,7 @@ #: ../plug-ins/script-fu/scripts/weave.scm.h:9 msgid "_Weave..." -msgstr "" +msgstr "織物(_W)..." #: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 msgid "/Help/The GIMP Online" @@ -2543,48 +2477,40 @@ msgstr "メインã®ã‚¦ã‚§ãƒ–サイト(_M)" #: ../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 効果(_X)..." #, fuzzy #~ msgid "Buffer amount (% height of text)" @@ -3108,7 +3034,7 @@ #~ msgstr "" #~ "Burn-In: 全部㧠2 ã¤ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒå¿…è¦ã§ã™!\n" #~ " é€æ˜Žåº¦ã®ã‚ã‚‹å‰æ™¯ã®ãƒ†ã‚­ã‚¹ãƒˆãƒ¬ã‚¤ãƒ¤ãƒ¼ã¨\n" -#~ " 背景レイヤーãŒå¿…è¦ã«ãªã‚Šã¾ã™." +#~ " 背景レイヤーãŒå¿…è¦ã«ãªã‚Šã¾ã™ã€‚" #~ msgid "/Script-Fu/Render/Make Grid System..." #~ msgstr "/Script-Fu/下塗り/æ ¼å­ä½œæˆ..." @@ -3139,7 +3065,7 @@ #~ "Please check your settings.\n" #~ msgstr "" #~ "å°‘ãªãã¨ã‚‚é¸æŠžã—ãŸãƒ•ã‚©ãƒ³ãƒˆä¸­ã«ä¸€ã¤ä»¥ä¸Š\n" -#~ "ä¸æ­£ãªã‚‚ã®ãŒã‚ã‚Šã¾ã™.設定を確èªã—ã¦ä¸‹ã•ã„.\n" +#~ "ä¸æ­£ãªã‚‚ã®ãŒã‚ã‚Šã¾ã™ã€‚設定を確èªã—ã¦ä¸‹ã•ã„。\n" #~ msgid "/Script-Fu/Animators/Selection to AnimImage..." #~ msgstr "/Script-Fu/å‹•ç”»/é¸æŠžé ˜åŸŸã‚’動画画åƒåŒ–..." diff -uraN gimp-2.2.8/po-script-fu/mk.gmo gimp-2.2.9/po-script-fu/mk.gmo --- gimp-2.2.8/po-script-fu/mk.gmo 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po-script-fu/mk.gmo 2005-10-20 12:46:53.000000000 +0200 @@ -0,0 +1,79 @@ +Þ• |½Ü Ð+ Ñ+ß+ã+ ê+ ö+,,+,K,g,,˜,´,Í,ë,-"- ;-\-#{-Ÿ-!½-ß-3þ-82.9k. ¥. ³.Á.Ð.ß. ï. +û./ +/(/1/@/O/ ^/h/ n/x/’/°/¸/Á/ +É/ Ô/ á/ +í/ø/ 00+0 +<0 +G0 +R0 ]0g0€0 ™0¥0«0 º0Æ0Ü0õ0 + 1 +1!1(1 /1 ;1G1 Y1 e1o11 Ž1 œ1 ª1 ·1Ã1Ø1 +Þ1 é1! +2",2 O2 [2 h2 +v22“2 ¥2¯2 Â2 Î2 Ü2è2 ÷233(3;3 B3O3i3o3w33 ‡3”3œ3«3³3 +Â3 Í3Ú3 ë3Eù3 +?4J4P4`4p4 +„4<4Ì4Ò4ë4ó4 555 +585 A5K5P5`c5 Ä5Ð5å5ú56$6 86D6 S6 ]6 +i6t66§6À6Ù6 î6ø677 7 (757 E7Q7 +W7b7~7ƒ7 Œ7 –7 7 ¯7 ¹7 Å7Ñ7 Ù7 +ç7 ò7ü78 +8 %8 28@8E8 +Y8d8w8ˆ8 Ž8 +š8¥8¬8Ê8 Ù8 +æ8ñ8 +9 99/989K9\9t9 Œ9˜9¯9 Æ9 Ò9Þ9å9í9ö9 ::.:>:P: +Y: +d:o: s: €: +:˜: §: ³: À:"Ì: ï:û:;"; :;H;O;`;p;€; ;›; ; ³;Á; È;Ò; Ù;å;ú; < < 0< =<G<X<i<p<y<~<™< ´<Â<'Ô< +ü<= ==-=4=F=X=h=y=Š=š=³=¼=À=Ð=Ù= â=ð=>> > *> 7>C> W>e> ~> ‹> •>¡> ©> ³>½>Ñ> +ñ>ü>??(? 7?D?K? T?a?j?|?Ž?Ÿ?°?Á?Ñ?á?é? û?@ @ +@@ .@ +:@E@`@}@—@©@ ¸@Æ@ Õ@â@è@ ú@ AA&A +A 5AAAPAXA`AqAA›AµAÇAàAûAB1BMBfB6yB9°B=êB (C6C RC\CmC}C •C¶CÖCÛCõCD +D D'D.D>DND aDnD ~D‹DD£D ·DÄDÝD÷DüDE EE /E;EPEXE mE {EˆE˜E¨E +¯EºEÁE ÉE×E ÞEìEôE üE FF #F/F >FJFdFxF}F +ŒF—F«F ÁF ÎFØFçF øF#G*G /G I(JIsI†I ™I £I¯I ¾IÈI +ÙI +äIïI þI J J!J 2J@JTJkJ{JŠJ¤JµJ ÆJ ÓJ +àJëJüJK K'K/K8KAK PK^KqK KŽKžK¯K ÂKÏKàKòK ûKL +L!L 4LBL +SL^L dLqLƒL™L ªL ´L¾L‹ÎLZNpN tNN•NªN*½N0èN,O$FO.kO,šO$ÇO(ìO(P3>P2rPA¥PAçPL)Q=vQA´QAöQb8R`›RSüRPS'fSŽS®S-ÌSúST-(TVT +nT#yT#T7ÁTùT U(UI>UJˆU ÓU!ßU V2VAVWVhVwV –V·V ÖV ÷V"W;WSW=hW=¦W,äWXX1X-DX-rX- X&ÎX"õXY/Y,FY(sY-œY*ÊY õY)Z@Z'YZ&Z¨Z$ÁZ1æZ +[#[I>[Kˆ[EÔ[&\A\\\ t\9\3»\ï\3 ]=] Z]h].…](´]2Ý]0^3A^u^~^X–^ï^ +ø^ +_ +__ 8_E_T_e__"œ_"¿_â_ü_~` +`›`!¹`%Û`aea {a;‡aÃa-Úabb".bQblb bŒb#•bœ¹bVc,nc,›cZÈc-#d=Qd$d(´dÝd ñd e43e5he4že4Óe4f =f'Jf +rf +}f$ˆf$­f(Òfûfgg7;g +sg~g ˜g ¢g)¬gÖgíg h+h,Bhoh ‚h £h:Ähÿh6iNidi5mi£i3¾iòi +jj$7j \j/ij™j¹jÑjàjüj"k;>k zk0‡k¸k/Ôk;l@l$Ul$zlŸl»l ÐlÝlîl7m69m*pm$›m8Àm$ùm n?nXn\n tn$•n"ºn Ýn þn( o54ojo-†o&´o.Ûo +p%p4p&Pp'wp(Ÿp Èpép'òp q(q7qFq[q$oq$”q(¹qâq,þq$+r4Pr4…rºr ÉrÖr+Ýr2 suWu,pu'u3Åuùuv)vIv:gv¢v+¿v$ëv w01wbwqw‚w(“w7¼wôw xx#.xRxlx…x”x&¥xÌx'Ýxy%yDycy‚yœy¶y.Çy öyz z(z9zSzqz+†zC²z5öz!,{N{#j{ Ž{ ¯{ +Ð{&Û{||+-| Y|f|€||¡|°|*¿|&ê|,}*>} i}2Š}8½}*ö}2!~.T~8ƒ~!¼~aÞ~l@w­%€.;€$j€€¯€/Ç€D÷€@<}:†Á×%î‚ +3‚!>‚!`‚>‚‚Á‚*Þ‚& ƒ$0ƒ +Uƒ'`ƒ$ˆƒB­ƒ6ðƒ'„8„ I„%V„!|„ž„*²„ Ý„$ê„…$…$A…$f… ‹…˜…«…º…Ë… +ë…*ö…!†2†C†*[†*††±†ц è†1ô†'&‡ +N‡Y‡t‡-‘‡0¿‡ ð‡ˆ" ˆ&Cˆ"jˆ=ˆ +ˈÖˆêˆûˆ ‰!‰@‰BU‰(˜‰Á‰ȉщ$å‰ +Š3'Š<[Š2˜ŠGËŠG‹9[‹d•‹ú‹Œ9-Œ.gŒ&–Œ ½Œ"ÊŒ"íŒ/>M@\·Ïà!õŽ.ŽGŽ^ŽoŽ†Ž •Ž¢Ž³ŽÐŽ2èŽ)Ea2x*«-Ö9!N,p ¬ ¶Ä Ó%à%‘(,‘U‘p‘‡‘¢‘,¿‘ì‘’!!’ C’P’_’}’#Œ’°’Ç’ç’ þ’ +“)'“+Q“:}“¸“ Ë“Ø“œïb5–¯§G¥‹¸Êg3V>å†cÈr=mŽ! +‰Š»Æaì¨Üe1©ÿøݪò+훜À¦ºÙàܱ-—'A,]x )f¬gØ”…èÉú .2ëO¿ö#hŸy@´°_/Ìfw Læpa_jáþ¼òåäÈïu‘7ˆý½ÂÞ0„<6~,¬ƒ>• +¹ÁZŒ?Õt–«&óÇý³{yK·ªÚÑjG?C Î¢ü9Iù˜´ARÒ)‹ñžM•e™4ÊF¡û‚ÁŠîbJ˜Yµ-â 7 ‰ö ÓõKFð€ë(Ž£;õ@ˆžÅ™9±ã¦BúnS2l‡4ç½÷¸ÒÍ%’3Ñ\#Qvƒ<ü!ÃwXÐ} *~ß›%UÍS0hÏû®ê  éºtiš8RÇ÷|M]d“ŸäO©ÚÉqß ¿"{¯óQ µuvÏTHI×zÆP· E¹6ñÛ51 `ݾnⲫ¤ÎopqrÀC®ÃXÕ}¡ZHá‡Å‚*cN×ÛLmDÿk³YsNlJéD„.[z=îi$;dðW…ô$­êÐ'ãÖ’¶æ¨Ä¶P€Œ‘" Â+¾¢£²Ô:ùçËW(Ô|ÓkVìèsE­íËÞ»`ø¤—o&Ä8š†”^ÙØ:°Ìô/B\^x“Öà[§U +¥T¼þ%d Procedures%s:(none)/Script-Fu/1 Procedure3D _Outline.../Script-Fu/Alchemy/Script-Fu/Alpha to Logo/Script-Fu/Animators/Script-Fu/Decor/Script-Fu/Render/Script-Fu/Selection/Script-Fu/Shadow/Script-Fu/Stencil Ops/Script-Fu/Utils/Help/The GIMP Online/Xtns/Script-Fu/Xtns/Script-Fu/Buttons/Xtns/Script-Fu/Logos/Xtns/Script-Fu/Make Brush/Xtns/Script-Fu/Misc/Xtns/Script-Fu/Patterns/Xtns/Script-Fu/Utils/Xtns/Script-Fu/Web Page Themes/Alien Glow/Xtns/Script-Fu/Web Page Themes/Beveled Pattern/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd glowingAdd shadowAdditional InformationAfter glowAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskApply layer mask (or discard)Author:AutocropAzimuthBG opacityB_asic II...B_urn-In...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBase colorBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBuffer amount (% height of text)Bumpmap (alpha layer) blur radiusBurn-In: Need two layers in total!Burst colorC_arve-It...C_hrome-It...C_hrome...Carve raised textCarve white areasCarved...Cell size (pixels)Chalk colorChip Awa_y...Chip amountChrome balanceChrome factorChrome lightnessChrome saturationChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Corona widthCreate new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDelta value on colorDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://netword.com/*spyrogimpDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEdge onlyEdge radiusEdge widthEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)ElevationElli_ptical, Feathered...End XEnd YEnd blendEnding blendEnvironment mapEpitrochoidEraseErase/fillError while executing +%s +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFade from %Fade to %FadeoutFadeout widthFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrameFrame colorFrame sizeFramesFrom top-left to bottom-rightGIMP ExtensionGIMP Plug-InGlo_ssy...Glo_wing Hot...Glow colorGlow radiusGlow size (pixels * 4)GradientGradient Beve_l...Gradient reverseGradient: Loop SawtoothGradient: Loop TriangleGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleH_eading...HeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight balanceHighlight colorHighlight opacityHit rateHole ratioHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Inner teethInsert layer namesIntermediate framesInternal GIMP procedureInterpolationInvertInvert directionKeep backgroundKeep bump layerKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMargin (pixels)Mask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...No background (only for separate layer)No matchesNoneNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffset radiusOffsets (pixels * 2)Oilify mask sizeOpacityOrientationOuter borderOuter teethOutline blur radiusOutline colorOutline gradient reverseOutline sizePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)Pattern (overlay)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePlug-in _RegistryPolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPosition (in %)Prepare for GIFPressedProcedure BrowserQuarter sizeRLERadiusRadius (%)Radius (pixels)Random seedRandomnessRe_ctangular, Feathered...Relative distance of horizonRelative length of shadowRemove backgroundRender _Map...Return ValuesRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRounded R_ectangle...RowsRows/colsSIOD OutputSOTA Chrome...Scale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu cannot process two scripts at the same time.Script-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShadow weight (%)ShapeSharpness (degrees)Shear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSmooth horizontallySmooth verticallySolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpreadSpyrographSquareSquaresSta_rscape...StainsStarb_urst...Start XStart YStart angleStart blendStarting blendSupersampleSwirl-_Tile...T_ruchet...T_ube Sub-Button Label...Temporary ProcedureTextText Circle...Text colorText color (active)Text gradient reverseText patternThicknessThread densityThread intensityThread lengthThreshold (bigger 1<-->255 smaller)TileTo _Brush...To _ImageTo _Pattern...ToolTransparent backgroundTriangleTub_e Sub-Sub-Button Label...Turn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse growing selectionUse pattern for outline instead of gradientUse pattern for text instead of gradientUse pattern overlayUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl amountWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisionsYou are already running the "%s" script._ASCII to Image..._ASCII to Layer..._Arrow..._Basic I..._Big Header..._Blend..._Border (pixels)_Browse..._Bullet..._Camouflage..._Chalk..._Circuit..._Clothify..._Coffee Stain..._Color scheme_Developer Web Site_Distress Selection..._Drop-Shadow..._Elliptical..._Erase every other Row..._Fade Outline..._Filter (regexp)_Flatland..._Font Map..._Frosty..._Fuzzy Border..._General Tube Labels..._Grid..._Hrule..._Labels_Land..._Lava..._Main Web Site_Old Photo..._Particle Trace..._Perspective..._Predator..._Rectangular..._Refresh Scripts_Remove all Guides_Rippling..._Round Button..._Round Corners..._Search:_Slide..._Small Header..._Sphere..._Spinning Globe..._Spyrogimp..._Start Server..._Swirly..._Text_Textured..._Tileable Blur..._Tube Button Label..._Unsharp Mask..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu.HEAD +Report-Msgid-Bugs-To: +POT-Creation-Date: 2004-12-12 19:07+0100 +PO-Revision-Date: 2004-12-13 22:18+0100 +Last-Translator: Vladimir Stefanov +Language-Team: Macedonian +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +X-Generator: KBabel 1.9 +%d Процедури%s:(ништо)/Скрипт-Фу/1 Процедура3Д _Скица.../Скрипт-Фу/Ðлхемија/Скрипт-Фу/Ðлфа во Лого/Скрипт-Фу/Ðниматори/Скрипт-Фу/Декор/Скрипт-Фу/ИÑцртување/Скрипт-Фу/Селекција/Скрипт-Фу/Сенка/Скрипт-Фу/Матрица/Скрипт-Фу/УÑлужни/Помош/Гимп на интернет/Проширувања/Скрипт-Фу/Проширувања/Скрипт-Фу/Копчиња/Проширувања/Скрипт-Фу/Логотип/Проширувања/Скрипт-Фу/Ðаправи четка/Проширувања/Скрипт-Фу/Разно/Проширувања/Скрипт-Фу/Шаблони/Проширувања/Скрипт-Фу/УÑлужни/Проширувања/Скрипт-Фу/Веб теми/ВонземÑко Ñветло/Проширувања/Скрипт-Фу/Веб теми/ИÑпакнат шаблон/Проширувања/Скрипт-Фу/Ð’eб теми/Classic.Gimp.оrgÐктивни боиДодади иÑ_пакнување...Додади _граница...Додади позадинаДодади отфрлање на ÑенкаДодади ÑјајДодади ÑенкаДополнителни информацииПоÑле ÑјајотСпрејВознемÑко _Ñветло...ВонземÑка _неонка...Дозволи промена на големинатаÐмплитудаÐголОмекнување на ивицитеПримени ја генерираната маÑка на ÑлојотПрифати ја маÑката на Ñлојот (или отфрли)Ðвтор:ÐвтоматÑко ÑечењеÐзимутÐепровидноÑÑ‚ на позадинатаО_Ñновен II...ИÑ_печи...Коп_че...Боја на позадинаСлика на позадинаБоја на позадинаСлика на позадинаВиÑина на лентатаДолжина на лентатаОÑновна бојаОднеÑувањеВиÑина на вдлабнувањето (ОÑтрина)ВиÑина на вдлабнувањето (ОÑтрина)Ширина на вдлабнувањетоЦрнаЦрно на белоС_топено...Стопи го преливот (текÑÑ‚)Стопи го преливот (Ñкица)Стопи го преливот (текÑÑ‚)Режим на ÑтопувањетоГолемина на блокотЗаматување XЗаматување YКоличина на заматеноÑтаИвица на заматувањетоХоризонтално Ð·Ð°Ð¼Ð°Ñ‚ÑƒÐ²Ð°ÑšÐµÐ Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањетоВид на заматувањеВертикално заматувањеБо_винација...Големина на ивицата ХГолемина на ивицата YБоја на ивицаГолемина на ивицатаГолемина на ивицата (точки)ЧеткаИме на четкатаВредноÑÑ‚ на баферот (% виÑина на текÑтот)БампМапа (Ðлфа Ñлој) Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањаИзгори: Ðеопходни Ñе вкупно два Ñлоја!Боја на екÑплозијатаИзрезбари го...ИÑхромирај..._Хром...Изрезбари го иÑпакнатиот текÑтИзрезбари ги белите облаÑтиИзрезбарено...Големина на ќелијата (точки)Боја на кредатаChip Awa_y...Количина на чипРамнотежа на хромирањетоФактор на хромирањетоОÑветлување на хромирањетоЗаÑитеноÑÑ‚ на хромирањетоХромирај ги белите подрачјаКругÐаправи кругИÑчиÑти го не-Ñелектираното подрачје на маÑкатаБојаБоја 1Боја 2Боја 3Метода на бојатаКолониСтри_п...КонкавнаЛаден _метал...ÐвторÑки права:Ширина на коронатаÐаправи нова ÑликаÐаправи ÑенкаСоздава четири водичи околу Ñкокачката кутија на тековната Ñелекција.КриÑтал...КубнаТековна наредбаПроизволен преливПроизволен пре_лив...Темна бојаСамо темно +(Подобро, но Ñамо за Ñлики Ñо многу бела боја)Датум:Стандардни поÑтавки на БампмапаДефокуÑирајДелта вредноÑÑ‚ на бојатаГуÑтина (%)ДлабочинаДетал во ÑрединатаÐиво за деталиДијаметарÐаÑокаДолеЦртај _HSV графикон...ИÑцртај Ñпирографи, епитрохоиди и ЛиÑажови криви. Повеќе податоци на http://netword.com/*spyrogimpОтфрли ÑенкаX отÑтапување на ÑенкатаY отÑтапување на ÑенкатаОтÑтапување од Ñ€Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето на ÑенкатаБоја на отфрлената ÑенкаÐепровидноÑÑ‚ на отфрлената ÑенкаВредноÑÑ‚ на ивицатаОднеÑување на ивицатаСамо Ð¸Ð²Ð¸Ñ†Ð°Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° ивицатаШирина на ивицатаЕфективна големина (точки * 3)Ефективна големина (точки * 30)Ефективна големина (точки * 4)Ефективна големина (точки * 5)Ефективна големина (пикÑели)КоÑинаЕлиптична, омекната...Крај XКрај YКрај на ÑтопувањетоКрај на ÑтопувањетоМапа на опкружувањетоЕпитрохоидИзбришиИзбиши/ПополниГрешка при извршувањето на +%s +%sПарниПарни/ÐепарниFG-BG-HSVFG-BG-RGBПровидна боја на четкаИÑчезнувањеИÑчезнување од %ИÑчезнување во %ИÑчезнувањеШирина на иÑчезнувањетоПокривањеИме на датотекатаИме на датотекатаИÑполни ја позадината Ñо шаблонПополни аголИÑполни Ñо боја на позадинатаРамна СликаФонт_Големина на фонтот (во точки)Боја на фонтотГолемина на фонтот (пикÑели)Боја на четкатаРамкаБоја на рамкатаГолемина на рамкатаОквириОд врвот-лево до дно-деÑноГИМП ПроширувањеГИМП додатокС_јаен...Жешко _Ñјаење...Боја на ÑÑ˜Ð°ÐµÑšÐµÑ‚Ð¾Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° ÑјаењетоГолемина на Ñјаењето (пикÑели * 4)ПреливВ_длабнување на преливот...Обратен преливПрелив: Повторувачка пилаПрелив: Повторувачки триаголникЗрновитоÑтЗрновитоÑÑ‚ (1 е мала)ЗрновитоÑÑ‚ (1 е мала)Графичка Ñкала_Заглавие...ВиÑинаХекÑагонХакÑагониХ отÑтапување на оÑветленоÑтаY отÑтапување на оÑветленоÑÑ‚Ð°Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° оÑветувањетоБоја на оÑветленотоÐепровидноÑÑ‚ на оÑветлувањетоВредноÑÑ‚ на погодокРазмер на дупкатаХоризонталнаIIRВид на Ñлика:ВиÑина на ÑликатаГолемина на ÑликатаСлика за резбарењеШирина на ÑликатаImigre-26...ИндекÑирај ја ÑÐ»Ð¸ÐºÐ°Ñ‚Ð°Ð˜Ð½Ð´ÐµÐºÑ Ð²Ð¾ n бои (0 = оÑтанува RGB)Внатрешни забиВметни имиња на ÑлоевитеЦентрирај ги рамкитеВнатрешна ГИМП процедураИнтерполацијаОбратноОбратна наÑокаЗадржи ја позадинатаЗадржи го Бамп ÑлојотЗадржи ја ÑелекцијатаВиÑина на земјатаЛевоОÑветлување (Ñтепени)Line _Nova...ЛиниÑкиЛиÑажоÑПовторливоДолна бојаДолна боја (активна)Ðајдолна-деÑна бојаÐаправи нова позадинаМаргина (точки)ÐепровидноÑÑ‚ на маÑкатаГолемина на маÑкатаМакÑ. Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањетоТипови на делови на мозаикотИÑшаран_Ðеон...ИмеÐов водич (по _процент)...Ðови водичи од _ÑелекцијатаÐов _водич...ÐовинарÑки текÑÑ‚...Ðема позадина (Ñамо за одвоениот Ñлој)Без резултатÐиштоÐе е притиÑнатоÐе е притиÑнато (тековно)БројБрој на X делчињаБрој на Y делчињаБрој на појаÑиБрој на боиБрој на рамкиБрој на линииКолку пати да завртамОктагониÐепарниОдÑтапување (точки)ОтÑтапување XОтÑтапување YÐ Ð°Ð´Ð¸ÑƒÑ Ð½Ð° отÑтапувањетоОдÑтапувања (точки * 2)Големина на маÑлената маÑкаÐепровидноÑтОриентацијаÐадворешна ивицаÐадворешни Ð·Ð°Ð±Ð¸Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматување на ÑкицатаБоја на ÑкицатаОбратен прелив за цртежГолемина на ÑкицатаБоја на подлогатаÐепровидноÑÑ‚ на подлогатаПодлогаПодлога XПодлога YПодлога околу текÑтотПодлога за провидните региониПараметриШаблонШаблон (нацрт)Шаблон (прекривање)Шаблон (текÑÑ‚)Име на шаблонПенкалоПентагонВредноÑÑ‚ на пикÑелотИÑточкај_РегиÑтер на додатоциПолигон: 10 ÑтраниПолигон: 7 ÑтраниПолигон: 8 ÑтраниПолигон: 9 ÑтраниПозиција (во %)Припреми за GIFСтиÑнатоПрелиÑтувач на процедуриЗа една четвртинаRLEрадиуÑÐ Ð°Ð´Ð¸ÑƒÑ (%)Ð Ð°Ð´Ð¸ÑƒÑ (точки)Произволно ÑемеСлучајноÑтПравоаголна, омекната...Релативна одалеченоÑÑ‚ од хоризонтотРелативна должина на ÑенкатаОтÑтрани позадинаИÑцртај _мапа...Повратни вредноÑтиРаздел на лентатаШирина на лентатаДеÑноЈачина на мрешкањетоРапавоÑтКружен размерЗаоблен правоа_голник...РедовиРедови/КолониSIOD излезSOTA Хром...Размер XРазмер YÐргументи на Ð¡ÐºÑ€Ð¸Ð¿Ñ‚Ð°Ñ‚Ð°ÐŸÑ€Ð¾Ð³Ñ€ÐµÑ Ð½Ð° ÑкриптатаСкрипт-Фу Избор на четкаСкрипт-Фу Избор на бојаСкрипт-Фу КонзолаСкрипт-Фу Избор на датотекаСкрипт-Фу Избор на директориумСкрипт-Фу Избор на фонтСкрипт-Фу Избор на ГрадиентСкрипт-Фу Избор на палетаСкрипт-Фу ПоÑтавки на ÑерверотСкрипт-Фу _КонзолаScript-fu не може да обработува две Ñкрипти во иÑто време.Скрипт_Фу конзолата дозволува Ñамо интерактивно кориÑтењеСкрипт-Фу проверката е дозволена Ñамо како не-интерактивен повикСкрипт-Фу: %sСкрипт-Фу Избор на шаблонДлабочина на моретоБарај по _пофалбаБарај по и_меБарам - ве молам почекајтеБарам по пофалба - ве молам, почекајтеБарам по името - ве молам, почекајтеСемеИзбери по оÑетливоÑта на бојатаОдвоен ÑлојЦрвеноÑмеѓаДневник на Ñерверот:СерверÑка порта:СенкаX ПомеÑтувај ÑенкиY ПомеÑтувај ÑÐµÐ½ÐºÐ¸Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето на ÑенкатаБоја на ÑенкатаЗатемнување на ÑенкатаДлабочина на ÑенкатаТежина на Ñенката (%)ОбликИзоÑтрување (Ñтепени)Должина на ÑечењетоПрикажи ја _Ñтруктурата на Ñликата...ЕдноÑтавно _иÑпакнато копче...ГолеминаЗамачкајОмекниОмекни хоризонталноОмекни вертикалноЧиÑта бојаРаздел помеѓу ÑлоевитеРазделБрзина (точки/Ñлики)Брз текÑÑ‚...Боја на куглатаГуÑтина на точките xГуÑтина на точките YШирењеСпирографКвадратКвадрати_Ðемирна ѕвезда...ФлекиЕкÑплозија на _ѕвезда...Почетен XПочетен YПочетен аголПочеток на ÑтопувањетоПочеток на ÑтопувањетоСупер Семплирање_Завртувач...T_ruchet...Име на цевкаÑто под-копче...Привремена процедураТекÑтКружен текÑÑ‚...Боја на текÑтотБоја на текÑтот (тековна)Обратен текÑтуелен преливШаблон на текÑтотГуÑтинаГуÑтина на нишкатаИнтезитет на нишкатаДолжина на нишкатаОÑетливоÑÑ‚ (поголема 1<-->255 помала)ДелчеВо _четка...Во _ÑликаВо _шаблон...ÐлаткаПровидна позадинаТриаголникОзнаки на цевчеÑти под-под-копчиња...Обрни од лево на деÑноТипГореГорна бојаГорна боја (тековна)Горна-Лева бојаКориÑти го тековниот прелив_КориÑти име на фонтот како текÑтКориÑти раÑтечка ÑелекцијаКориÑти шаблон за цртеж намеÑто преливКориÑти шаблон за текÑÑ‚ намеÑто преливКориÑти прекривање Ñо шаблонотКориÑти ги границите на Ñелекцијата намеÑто подолнитеВертикалноБранова должинаЗаглавје на наÑловот на вебот...ВредноÑÑ‚ на завртувањетоÐгол на завртувањетоШиринаШирина на појаÑитеШирина на раÑцепотРаботи на копијаЗамотајX одделиY одделиВеќе ја имате пуштено "%s" Ñкриптата._ASCII во Ñлика..._ASCII во Ñлој..._Стрела..._ОÑновен I..._Големо заглавие..._Стопување..._Ивица (точки)_ПрелиÑтај..._Куршум..._Камуфлажа..._Креда..._Круг..._Облечи...Дамка од ка_фе...Шема на _бојаВеб Ñтраница на _развивачот_Задржи ја Ñелекцијата_Отфрли Ñенка..._Елиптична..._Избриши го Ñекој друг ред..._ИÑчезнување на Ñкица..._Филтер (регуларен израз)_Рамна земја...Мапа на _фонт..._Замрзнат..._ÐејаÑна граница..._Општи цевчеÑти ознаки..._Мрежа..._Hrule...О_знаки_Земја..._Лава..._Главна веб ÑтраницаСтара _Фотографија...Следење на _чеÑтички..._ПерÑпектива..._Грабливец..._Правоаголна..._ОÑвежи Ñкрипти_ОтÑтрани ги Ñите водичи_Мрешкање..._Заоблено копче..._Заоблени ќошиња..._Барај:_Слајд..._Мало заглавие..._Кугла..._Ротирачки глобуÑ..._Спирогимп..._Подигни Ñервер..._Завртливо..._ТекÑÑ‚_ТекÑтурирано..._ПлочеÑто заматување...Име на _цевчеÑто копче...Симни ја _оÑтрината на маÑката..._Бранови..._Бран..._Xach-Ефект... \ No newline at end of file diff -uraN gimp-2.2.8/po-script-fu/mk.po gimp-2.2.9/po-script-fu/mk.po --- gimp-2.2.8/po-script-fu/mk.po 1970-01-01 01:00:00.000000000 +0100 +++ gimp-2.2.9/po-script-fu/mk.po 2005-01-08 02:32:14.000000000 +0100 @@ -0,0 +1,2545 @@ +# translation of gimp-script-fu.HEAD.po to +# translation of gimp-script-fu.HEAD.po to +# translation of gimp-script-fu.HEAD.po to +# translation of mk.po to macedonian +# Macedonian translation of gimp +# Courtesy of mkde team (http://mkde.sourceforge.net/) -- 2004. +# +# This file is distributed under the same license as the gimp package. +# Maintainer: Vladimir Stefanov , 2004. +# +# +# +# +msgid "" +msgstr "" +"Project-Id-Version: gimp-script-fu.HEAD\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-12-12 19:07+0100\n" +"PO-Revision-Date: 2004-12-13 22:18+0100\n" +"Last-Translator: Vladimir Stefanov \n" +"Language-Team: Macedonian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9\n" + +#: plug-ins/script-fu/script-fu-console.c:129 +#: plug-ins/script-fu/script-fu-text-console.c:66 +msgid "Script-Fu console mode allows only interactive invocation" +msgstr "Скрипт_Фу конзолата дозволува Ñамо интерактивно кориÑтење" + +#: plug-ins/script-fu/script-fu-console.c:156 +msgid "Script-Fu Console" +msgstr "Скрипт-Фу Конзола" + +#: plug-ins/script-fu/script-fu-console.c:183 +msgid "SIOD Output" +msgstr "SIOD излез" + +#: plug-ins/script-fu/script-fu-console.c:249 +msgid "Current Command" +msgstr "Тековна наредба" + +#: plug-ins/script-fu/script-fu-console.c:267 +msgid "_Browse..." +msgstr "_ПрелиÑтај..." + +#: plug-ins/script-fu/script-fu-console.c:548 +msgid "Script-Fu evaluate mode allows only noninteractive invocation" +msgstr "Скрипт-Фу проверката е дозволена Ñамо како не-интерактивен повик" + +#: plug-ins/script-fu/script-fu-interface.c:177 +msgid "Script-Fu cannot process two scripts at the same time." +msgstr "Script-fu не може да обработува две Ñкрипти во иÑто време." + +#: plug-ins/script-fu/script-fu-interface.c:179 +#, c-format +msgid "You are already running the \"%s\" script." +msgstr "Веќе ја имате пуштено \"%s\" Ñкриптата." + +#. strip the first part of the menupath if it contains _("/Script-Fu/") +#: plug-ins/script-fu/script-fu-interface.c:202 +#: plug-ins/script-fu/script-fu-interface.c:204 +msgid "/Script-Fu/" +msgstr "/Скрипт-Фу/" + +# +#: plug-ins/script-fu/script-fu-interface.c:217 +#, c-format +msgid "Script-Fu: %s" +msgstr "Скрипт-Фу: %s" + +#. the script arguments frame +#: plug-ins/script-fu/script-fu-interface.c:254 +msgid "Script Arguments" +msgstr "Ðргументи на Скриптата" + +# +#. we add a colon after the label; +#. some languages want an extra space here +#: plug-ins/script-fu/script-fu-interface.c:285 +#, c-format +msgid "%s:" +msgstr "%s:" + +#: plug-ins/script-fu/script-fu-interface.c:328 +msgid "Script-Fu Color Selection" +msgstr "Скрипт-Фу Избор на боја" + +#: plug-ins/script-fu/script-fu-interface.c:431 +msgid "Script-Fu File Selection" +msgstr "Скрипт-Фу Избор на датотека" + +#: plug-ins/script-fu/script-fu-interface.c:435 +msgid "Script-Fu Folder Selection" +msgstr "Скрипт-Фу Избор на директориум" + +#: plug-ins/script-fu/script-fu-interface.c:447 +msgid "Script-Fu Font Selection" +msgstr "Скрипт-Фу Избор на фонт" + +#: plug-ins/script-fu/script-fu-interface.c:454 +msgid "Script-Fu Palette Selection" +msgstr "Скрипт-Фу Избор на палета" + +#: plug-ins/script-fu/script-fu-interface.c:462 +msgid "Script-fu Pattern Selection" +msgstr "Скрипт-Фу Избор на шаблон" + +#: plug-ins/script-fu/script-fu-interface.c:469 +msgid "Script-Fu Gradient Selection" +msgstr "Скрипт-Фу Избор на Градиент" + +#: plug-ins/script-fu/script-fu-interface.c:477 +msgid "Script-Fu Brush Selection" +msgstr "Скрипт-Фу Избор на четка" + +#. the script progress frame +#: plug-ins/script-fu/script-fu-interface.c:533 +msgid "Script Progress" +msgstr "ÐŸÑ€Ð¾Ð³Ñ€ÐµÑ Ð½Ð° Ñкриптата" + +#: plug-ins/script-fu/script-fu-interface.c:541 +msgid "(none)" +msgstr "(ништо)" + +#: plug-ins/script-fu/script-fu-interface.c:1058 +#: plug-ins/dbbrowser/gimpprocview.c:198 +msgid "Author:" +msgstr "Ðвтор:" + +#: plug-ins/script-fu/script-fu-interface.c:1065 +#: plug-ins/dbbrowser/gimpprocview.c:220 +msgid "Copyright:" +msgstr "ÐвторÑки права:" + +#: plug-ins/script-fu/script-fu-interface.c:1072 +#: plug-ins/dbbrowser/gimpprocview.c:209 +msgid "Date:" +msgstr "Датум:" + +#: plug-ins/script-fu/script-fu-interface.c:1081 +msgid "Image Types:" +msgstr "Вид на Ñлика:" + +#: plug-ins/script-fu/script-fu-scripts.c:611 +#, c-format +msgid "" +"Error while executing\n" +"%s\n" +"%s" +msgstr "" +"Грешка при извршувањето на\n" +"%s\n" +"%s" + +#: plug-ins/script-fu/script-fu-server.c:642 +msgid "Script-Fu Server Options" +msgstr "Скрипт-Фу ПоÑтавки на Ñерверот" + +#: plug-ins/script-fu/script-fu-server.c:670 +msgid "Server Port:" +msgstr "СерверÑка порта:" + +#: plug-ins/script-fu/script-fu-server.c:676 +msgid "Server Logfile:" +msgstr "Дневник на Ñерверот:" + +#: plug-ins/script-fu/script-fu.c:122 +msgid "Script-Fu _Console" +msgstr "Скрипт-Фу _Конзола" + +#: plug-ins/script-fu/script-fu.c:129 plug-ins/script-fu/script-fu.c:158 +#: plug-ins/script-fu/script-fu.c:290 +msgid "/Xtns/Script-Fu" +msgstr "/Проширувања/Скрипт-Фу" + +#: plug-ins/script-fu/script-fu.c:151 +msgid "_Start Server..." +msgstr "_Подигни Ñервер..." + +#: plug-ins/script-fu/script-fu.c:282 +msgid "_Refresh Scripts" +msgstr "_ОÑвежи Ñкрипти" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:128 +#: plug-ins/dbbrowser/gimpprocbrowser.c:142 +msgid "Procedure Browser" +msgstr "ПрелиÑтувач на процедури" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:132 +#: plug-ins/dbbrowser/gimpprocbrowser.c:146 +msgid "Search by _Name" +msgstr "Барај по и_ме" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:133 +#: plug-ins/dbbrowser/gimpprocbrowser.c:147 +msgid "Search by _Blurb" +msgstr "Барај по _пофалба" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:224 +msgid "_Search:" +msgstr "_Барај:" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:386 +msgid "Searching by name - please wait" +msgstr "Барам по името - ве молам, почекајте" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:410 +msgid "Searching by blurb - please wait" +msgstr "Барам по пофалба - ве молам, почекајте" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:421 +msgid "Searching - please wait" +msgstr "Барам - ве молам почекајте" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:428 +msgid "1 Procedure" +msgstr "1 Процедура" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:430 +#, c-format +msgid "%d Procedures" +msgstr "%d Процедури" + +#: plug-ins/dbbrowser/gimpprocbrowser.c:476 +msgid "No matches" +msgstr "Без резултат" + +#: plug-ins/dbbrowser/gimpprocview.c:133 +msgid "Parameters" +msgstr "Параметри" + +#: plug-ins/dbbrowser/gimpprocview.c:146 +msgid "Return Values" +msgstr "Повратни вредноÑти" + +#: plug-ins/dbbrowser/gimpprocview.c:159 +msgid "Additional Information" +msgstr "Дополнителни информации" + +#: plug-ins/dbbrowser/gimpprocview.c:319 +msgid "Internal GIMP procedure" +msgstr "Внатрешна ГИМП процедура" + +#: plug-ins/dbbrowser/gimpprocview.c:320 +msgid "GIMP Plug-In" +msgstr "ГИМП додаток" + +#: plug-ins/dbbrowser/gimpprocview.c:321 +msgid "GIMP Extension" +msgstr "ГИМП Проширување" + +#: plug-ins/dbbrowser/gimpprocview.c:322 +msgid "Temporary Procedure" +msgstr "Привремена процедура" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:1 +msgid "3D _Outline..." +msgstr "3Д _Скица..." + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:2 +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:1 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:1 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:1 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:1 +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:1 +#: plug-ins/script-fu/scripts/chalk.scm.h:1 +#: plug-ins/script-fu/scripts/chip-away.scm.h:1 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:1 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:1 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:1 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:1 +#: plug-ins/script-fu/scripts/glossy.scm.h:1 +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:1 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:1 +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:1 +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:1 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:1 +msgid "/Script-Fu/Alpha to Logo" +msgstr "/Скрипт-Фу/Ðлфа во Лого" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:3 +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:2 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:2 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:2 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:2 +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:2 +#: plug-ins/script-fu/scripts/carved-logo.scm.h:1 +#: plug-ins/script-fu/scripts/chalk.scm.h:2 +#: plug-ins/script-fu/scripts/chip-away.scm.h:2 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:2 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:2 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:2 +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:1 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:2 +#: plug-ins/script-fu/scripts/glossy.scm.h:2 +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:2 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:2 +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:1 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:2 +#: plug-ins/script-fu/scripts/news-text.scm.h:1 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:1 +#: plug-ins/script-fu/scripts/speed-text.scm.h:1 +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:2 +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:2 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:2 +#: plug-ins/script-fu/scripts/text-circle.scm.h:1 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:2 +#: plug-ins/script-fu/scripts/title-header.scm.h:1 +msgid "/Xtns/Script-Fu/Logos" +msgstr "/Проширувања/Скрипт-Фу/Логотип" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:4 +msgid "Bumpmap (alpha layer) blur radius" +msgstr "БампМапа (Ðлфа Ñлој) Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувања" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:5 +#: plug-ins/script-fu/scripts/glossy.scm.h:7 +msgid "Default bumpmap settings" +msgstr "Стандардни поÑтавки на Бампмапа" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:6 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:5 +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:4 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:6 +#: plug-ins/script-fu/scripts/asc2img.scm.h:8 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:4 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:5 +#: plug-ins/script-fu/scripts/beveled-button.scm.h:3 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:3 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:2 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:11 +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:6 +#: plug-ins/script-fu/scripts/carved-logo.scm.h:5 +#: plug-ins/script-fu/scripts/chalk.scm.h:5 +#: plug-ins/script-fu/scripts/chip-away.scm.h:8 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:6 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:5 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:6 +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:6 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:5 +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:4 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:3 +#: plug-ins/script-fu/scripts/glossy.scm.h:8 +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:5 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:8 +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:2 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:6 +#: plug-ins/script-fu/scripts/news-text.scm.h:7 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:3 +#: plug-ins/script-fu/scripts/slide.scm.h:2 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:7 +#: plug-ins/script-fu/scripts/speed-text.scm.h:5 +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:6 +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:4 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:8 +#: plug-ins/script-fu/scripts/text-circle.scm.h:4 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:6 +#: plug-ins/script-fu/scripts/title-header.scm.h:2 +msgid "Font" +msgstr "Фонт" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:7 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:6 +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:5 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:7 +#: plug-ins/script-fu/scripts/asc2img.scm.h:9 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:5 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:6 +#: plug-ins/script-fu/scripts/beveled-button.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:3 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:12 +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:7 +#: plug-ins/script-fu/scripts/carved-logo.scm.h:6 +#: plug-ins/script-fu/scripts/chalk.scm.h:6 +#: plug-ins/script-fu/scripts/chip-away.scm.h:9 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:7 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:6 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:7 +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:7 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:6 +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:5 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:4 +#: plug-ins/script-fu/scripts/glossy.scm.h:9 +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:6 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:9 +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:3 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:7 +#: plug-ins/script-fu/scripts/news-text.scm.h:8 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:4 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:8 +#: plug-ins/script-fu/scripts/speed-text.scm.h:6 +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:7 +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:5 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:9 +#: plug-ins/script-fu/scripts/text-circle.scm.h:5 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:7 +#: plug-ins/script-fu/scripts/title-header.scm.h:3 +msgid "Font size (pixels)" +msgstr "Големина на фонтот (пикÑели)" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:8 +msgid "Outline blur radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматување на Ñкицата" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:9 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:5 +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:3 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:5 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:5 +#: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:3 +#: plug-ins/script-fu/scripts/chip-away.scm.h:13 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:11 +msgid "Pattern" +msgstr "Шаблон" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:10 +#: plug-ins/script-fu/scripts/glossy.scm.h:17 +#: plug-ins/script-fu/scripts/round-corners.scm.h:6 +msgid "Shadow X offset" +msgstr "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 +msgid "Shadow Y offset" +msgstr "Y ПомеÑтувај Ñенки" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:12 +msgid "Shadow blur radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето на Ñенката" + +#: plug-ins/script-fu/scripts/3d-outline.scm.h:13 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:10 +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:8 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:10 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:6 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:7 +#: plug-ins/script-fu/scripts/beveled-button.scm.h:9 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:7 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:6 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:17 +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:10 +#: plug-ins/script-fu/scripts/carved-logo.scm.h:8 +#: plug-ins/script-fu/scripts/chalk.scm.h:7 +#: plug-ins/script-fu/scripts/chip-away.scm.h:14 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:9 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:11 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:10 +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:8 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:7 +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:12 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:14 +#: plug-ins/script-fu/scripts/glossy.scm.h:19 +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:8 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:11 +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:7 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:10 +#: plug-ins/script-fu/scripts/news-text.scm.h:10 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:13 +#: plug-ins/script-fu/scripts/slide.scm.h:5 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:11 +#: plug-ins/script-fu/scripts/speed-text.scm.h:8 +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:9 +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:8 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:11 +#: plug-ins/script-fu/scripts/text-circle.scm.h:8 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:14 +#: plug-ins/script-fu/scripts/title-header.scm.h:5 +msgid "Text" +msgstr "ТекÑÑ‚" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:1 +msgid "3_D Truchet..." +msgstr "" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:2 +#: plug-ins/script-fu/scripts/camo.scm.h:1 +#: plug-ins/script-fu/scripts/flatland.scm.h:1 +#: plug-ins/script-fu/scripts/land.scm.h:1 +#: plug-ins/script-fu/scripts/rendermap.scm.h:1 +#: plug-ins/script-fu/scripts/swirltile.scm.h:1 +#: plug-ins/script-fu/scripts/swirly-pattern.scm.h:1 +#: plug-ins/script-fu/scripts/truchet.scm.h:1 +msgid "/Xtns/Script-Fu/Patterns" +msgstr "/Проширувања/Скрипт-Фу/Шаблони" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:3 +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:2 +#: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:2 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:3 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:4 +#: plug-ins/script-fu/scripts/asc2img.scm.h:3 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:3 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:4 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:3 +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:4 +#: plug-ins/script-fu/scripts/chalk.scm.h:3 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:4 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:3 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:3 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:3 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:2 +#: plug-ins/script-fu/scripts/glossy.scm.h:3 +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:3 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:3 +#: plug-ins/script-fu/scripts/image-structure.scm.h:3 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:3 +#: plug-ins/script-fu/scripts/news-text.scm.h:2 +#: plug-ins/script-fu/scripts/speed-text.scm.h:2 +#: plug-ins/script-fu/scripts/sphere.scm.h:2 +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:3 +#: plug-ins/script-fu/scripts/swirltile.scm.h:3 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:3 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:3 +#: plug-ins/script-fu/scripts/truchet.scm.h:2 +msgid "Background color" +msgstr "Боја на позадина" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:4 +#: plug-ins/script-fu/scripts/truchet.scm.h:3 +msgid "Block size" +msgstr "Големина на блокот" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:5 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:7 +msgid "End blend" +msgstr "Крај на Ñтопувањето" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:6 +#: plug-ins/script-fu/scripts/truchet.scm.h:5 +msgid "Number of X tiles" +msgstr "Број на X делчиња" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:7 +#: plug-ins/script-fu/scripts/truchet.scm.h:6 +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 +msgid "Start blend" +msgstr "Почеток на Ñтопувањето" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:9 +msgid "Supersample" +msgstr "Супер Семплирање" + +#: plug-ins/script-fu/scripts/3dTruchet.scm.h:10 +#: plug-ins/script-fu/scripts/add-bevel.scm.h:4 +#: plug-ins/script-fu/scripts/truchet.scm.h:8 +msgid "Thickness" +msgstr "ГуÑтина" + +#: plug-ins/script-fu/scripts/add-bevel.scm.h:1 +#: plug-ins/script-fu/scripts/addborder.scm.h:1 +#: plug-ins/script-fu/scripts/coffee.scm.h:1 +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:1 +#: plug-ins/script-fu/scripts/old-photo.scm.h:1 +#: plug-ins/script-fu/scripts/round-corners.scm.h:1 +#: plug-ins/script-fu/scripts/slide.scm.h:1 +msgid "/Script-Fu/Decor" +msgstr "/Скрипт-Фу/Декор" + +#: plug-ins/script-fu/scripts/add-bevel.scm.h:2 +msgid "Add B_evel..." +msgstr "Додади иÑ_пакнување..." + +#: plug-ins/script-fu/scripts/add-bevel.scm.h:3 +#: plug-ins/script-fu/scripts/chip-away.scm.h:12 +msgid "Keep bump layer" +msgstr "Задржи го Бамп Ñлојот" + +#: plug-ins/script-fu/scripts/add-bevel.scm.h:5 +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:10 +#: plug-ins/script-fu/scripts/old-photo.scm.h:6 +#: plug-ins/script-fu/scripts/round-corners.scm.h:8 +#: plug-ins/script-fu/scripts/slide.scm.h:6 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:6 +msgid "Work on copy" +msgstr "Работи на копија" + +#: plug-ins/script-fu/scripts/addborder.scm.h:2 +msgid "Add _Border..." +msgstr "Додади _граница..." + +#: plug-ins/script-fu/scripts/addborder.scm.h:3 +msgid "Border X size" +msgstr "Големина на ивицата Ð¥" + +#: plug-ins/script-fu/scripts/addborder.scm.h:4 +msgid "Border Y size" +msgstr "Големина на ивицата Y" + +#: plug-ins/script-fu/scripts/addborder.scm.h:5 +msgid "Border color" +msgstr "Боја на ивица" + +#: plug-ins/script-fu/scripts/addborder.scm.h:6 +msgid "Delta value on color" +msgstr "Делта вредноÑÑ‚ на бојата" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:1 +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:1 +#: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:1 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:1 +msgid "/Xtns/Script-Fu/Web Page Themes/Alien Glow" +msgstr "/Проширувања/Скрипт-Фу/Веб теми/ВонземÑко Ñветло" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 +msgid "Down" +msgstr "Доле" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:4 +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:5 +#: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:3 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:4 +#: plug-ins/script-fu/scripts/camo.scm.h:5 +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:6 +msgid "Flatten image" +msgstr "Рамна Слика" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:5 +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:6 +#: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:7 +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:6 +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:8 +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:9 +#: plug-ins/script-fu/scripts/neon-logo.scm.h:8 +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:6 +msgid "Glow color" +msgstr "Боја на Ñјаењето" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:6 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:3 +msgid "Left" +msgstr "Лево" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:7 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:4 +msgid "Orientation" +msgstr "Ориентација" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:8 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:6 +msgid "Right" +msgstr "ДеÑно" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:9 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:7 +#: plug-ins/script-fu/scripts/lava.scm.h:7 +msgid "Size" +msgstr "Големина" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:10 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:8 +msgid "Up" +msgstr "Горе" + +#: plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:11 +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:9 +msgid "_Arrow..." +msgstr "_Стрела..." + +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 +msgid "Bar height" +msgstr "ВиÑина на лентата" + +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:4 +msgid "Bar length" +msgstr "Должина на лентата" + +#: plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 +#: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 +msgid "_Hrule..." +msgstr "_Hrule..." + +#: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 +#: plug-ins/script-fu/scripts/text-circle.scm.h:6 +#: plug-ins/script-fu/scripts/tileblur.scm.h:6 +msgid "Radius" +msgstr "радиуÑ" + +#: plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:6 +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:5 +msgid "_Bullet..." +msgstr "_Куршум..." + +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:2 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:2 +msgid "B_utton..." +msgstr "Коп_че..." + +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 +msgid "Glow radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° Ñјаењето" + +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:9 +#: plug-ins/script-fu/scripts/beveled-button.scm.h:6 +msgid "Padding" +msgstr "Подлога" + +#: plug-ins/script-fu/scripts/alien-glow-button.scm.h:11 +#: plug-ins/script-fu/scripts/asc2img.scm.h:10 +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:7 +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:8 +#: plug-ins/script-fu/scripts/beveled-button.scm.h:10 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:8 +#: plug-ins/script-fu/scripts/blended-logo.scm.h:18 +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:13 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:15 +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:8 +#: plug-ins/script-fu/scripts/news-text.scm.h:11 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:14 +#: plug-ins/script-fu/scripts/speed-text.scm.h:9 +msgid "Text color" +msgstr "Боја на текÑтот" + +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 +msgid "Alien _Glow..." +msgstr "ВознемÑко _Ñветло..." + +#: plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 +msgid "Glow size (pixels * 4)" +msgstr "Големина на Ñјаењето (пикÑели * 4)" + +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 +msgid "Alien _Neon..." +msgstr "ВонземÑка _неонка..." + +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 +msgid "Fade away" +msgstr "ИÑчезнување" + +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:9 +msgid "Number of bands" +msgstr "Број на појаÑи" + +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:11 +msgid "Width of bands" +msgstr "Ширина на појаÑите" + +#: plug-ins/script-fu/scripts/alien-neon-logo.scm.h:12 +msgid "Width of gaps" +msgstr "Ширина на раÑцепот" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:1 +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:1 +#: plug-ins/script-fu/scripts/image-structure.scm.h:1 +msgid "/Script-Fu/Utils" +msgstr "/Скрипт-Фу/УÑлужни" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:2 +#: plug-ins/script-fu/scripts/font-map.scm.h:1 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:1 +msgid "/Xtns/Script-Fu/Utils" +msgstr "/Проширувања/Скрипт-Фу/УÑлужни" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:5 +#, no-c-format +msgid "Buffer amount (% height of text)" +msgstr "ВредноÑÑ‚ на баферот (% виÑина на текÑтот)" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:6 +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:3 +msgid "File name" +msgstr "Име на датотеката" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:7 +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 +msgid "Filename" +msgstr "Име на датотеката" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:11 +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:4 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:7 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:4 +msgid "Transparent background" +msgstr "Провидна позадина" + +#: plug-ins/script-fu/scripts/asc2img.scm.h:12 +msgid "_ASCII to Image..." +msgstr "_ASCII во Ñлика..." + +#: plug-ins/script-fu/scripts/asc2img.scm.h:13 +msgid "_ASCII to Layer..." +msgstr "_ASCII во Ñлој..." + +#: plug-ins/script-fu/scripts/basic1-logo.scm.h:8 +msgid "_Basic I..." +msgstr "_ОÑновен I..." + +#: plug-ins/script-fu/scripts/basic2-logo.scm.h:3 +msgid "B_asic II..." +msgstr "О_Ñновен II..." + +#: plug-ins/script-fu/scripts/beveled-button.scm.h:1 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:1 +msgid "/Xtns/Script-Fu/Buttons" +msgstr "/Проширувања/Скрипт-Фу/Копчиња" + +#: plug-ins/script-fu/scripts/beveled-button.scm.h:2 +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:2 +msgid "Bevel width" +msgstr "Ширина на вдлабнувањето" + +#: plug-ins/script-fu/scripts/beveled-button.scm.h:5 +msgid "Lower-right color" +msgstr "Ðајдолна-деÑна боја" + +#: plug-ins/script-fu/scripts/beveled-button.scm.h:7 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:6 +#: plug-ins/script-fu/scripts/pupi-button.scm.h:11 +msgid "Pressed" +msgstr "СтиÑнато" + +#: plug-ins/script-fu/scripts/beveled-button.scm.h:8 +msgid "Simple _Beveled Button..." +msgstr "ЕдноÑтавно _иÑпакнато копче..." + +#: plug-ins/script-fu/scripts/beveled-button.scm.h:11 +msgid "Upper-left color" +msgstr "Горна-Лева боја" + +#: plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:1 +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:1 +#: plug-ins/script-fu/scripts/beveled-pattern-button.scm.h:1 +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:1 +#: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:1 +msgid "/Xtns/Script-Fu/Web Page Themes/Beveled Pattern" +msgstr "/Проширувања/Скрипт-Фу/Веб теми/ИÑпакнат шаблон" + +#: plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 +msgid "Diameter" +msgstr "Дијаметар" + +#: plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 +msgid "H_eading..." +msgstr "_Заглавие..." + +#: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:5 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:4 +#: plug-ins/script-fu/scripts/mkbrush.scm.h:4 +#: plug-ins/script-fu/scripts/swirltile.scm.h:7 +msgid "Height" +msgstr "ВиÑина" + +#: plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:4 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:5 +#: plug-ins/script-fu/scripts/mkbrush.scm.h:8 +#: plug-ins/script-fu/scripts/swirltile.scm.h:11 +msgid "Width" +msgstr "Ширина" + +#: plug-ins/script-fu/scripts/blend-anim.scm.h:1 +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:1 +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:1 +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:1 +#: plug-ins/script-fu/scripts/waves-anim.scm.h:1 +msgid "/Script-Fu/Animators" +msgstr "/Скрипт-Фу/Ðниматори" + +#: plug-ins/script-fu/scripts/blend-anim.scm.h:2 +msgid "Intermediate frames" +msgstr "Центрирај ги рамките" + +#: plug-ins/script-fu/scripts/blend-anim.scm.h:3 +msgid "Looped" +msgstr "Повторливо" + +#: plug-ins/script-fu/scripts/blend-anim.scm.h:4 +msgid "Max. blur radius" +msgstr "МакÑ. Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето" + +#: plug-ins/script-fu/scripts/blend-anim.scm.h:5 +msgid "_Blend..." +msgstr "_Стопување..." + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:4 +msgid "Blen_ded..." +msgstr "С_топено..." + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:5 +msgid "Blend mode" +msgstr "Режим на Ñтопувањето" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:6 +msgid "Custom Gradient" +msgstr "Произволен прелив" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:8 +msgid "FG-BG-HSV" +msgstr "FG-BG-HSV" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:9 +msgid "FG-BG-RGB" +msgstr "FG-BG-RGB" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:10 +msgid "FG-Transparent" +msgstr "Провидна боја на четка" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:13 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:7 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:8 +#: plug-ins/script-fu/scripts/land.scm.h:3 +#: plug-ins/script-fu/scripts/lava.scm.h:2 +#: plug-ins/script-fu/scripts/rendermap.scm.h:4 +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:10 +msgid "Gradient" +msgstr "Прелив" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:14 +#: plug-ins/script-fu/scripts/comic-logo.scm.h:8 +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:9 +#: plug-ins/script-fu/scripts/gradient-example.scm.h:3 +#: plug-ins/script-fu/scripts/rendermap.scm.h:5 +#: plug-ins/script-fu/scripts/title-header.scm.h:4 +msgid "Gradient reverse" +msgstr "Обратен прелив" + +#: plug-ins/script-fu/scripts/blended-logo.scm.h:15 +msgid "Offset (pixels)" +msgstr "ОдÑтапување (точки)" + +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:3 +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:3 +msgid "Background Color" +msgstr "Боја на позадина" + +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 +msgid "Bo_vination..." +msgstr "Бо_винација..." + +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 +msgid "Spots density X" +msgstr "ГуÑтина на точките x" + +#: plug-ins/script-fu/scripts/bovinated-logo.scm.h:9 +msgid "Spots density Y" +msgstr "ГуÑтина на точките Y" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:2 +msgid "Add glowing" +msgstr "Додади Ñјај" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:3 +msgid "After glow" +msgstr "ПоÑле Ñјајот" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:4 +msgid "B_urn-In..." +msgstr "ИÑ_печи..." + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:5 +msgid "Burn-In: Need two layers in total!" +msgstr "Изгори: Ðеопходни Ñе вкупно два Ñлоја!" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:6 +msgid "Corona width" +msgstr "Ширина на короната" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:7 +msgid "Fadeout" +msgstr "ИÑчезнување" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:8 +msgid "Fadeout width" +msgstr "Ширина на иÑчезнувањето" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:10 +msgid "Prepare for GIF" +msgstr "Припреми за GIF" + +#: plug-ins/script-fu/scripts/burn-in-anim.scm.h:11 +msgid "Speed (pixels/frame)" +msgstr "Брзина (точки/Ñлики)" + +#: plug-ins/script-fu/scripts/camo.scm.h:2 +msgid "Color 1" +msgstr "Боја 1" + +#: plug-ins/script-fu/scripts/camo.scm.h:3 +msgid "Color 2" +msgstr "Боја 2" + +#: plug-ins/script-fu/scripts/camo.scm.h:4 +msgid "Color 3" +msgstr "Боја 3" + +#: plug-ins/script-fu/scripts/camo.scm.h:6 +#: plug-ins/script-fu/scripts/rendermap.scm.h:6 +msgid "Granularity" +msgstr "ЗрновитоÑÑ‚" + +#: plug-ins/script-fu/scripts/camo.scm.h:7 +#: plug-ins/script-fu/scripts/rendermap.scm.h:7 +msgid "Image size" +msgstr "Големина на Ñликата" + +#: plug-ins/script-fu/scripts/camo.scm.h:8 +#: plug-ins/script-fu/scripts/distress-selection.scm.h:3 +msgid "Smooth" +msgstr "Омекни" + +#: plug-ins/script-fu/scripts/camo.scm.h:9 +msgid "_Camouflage..." +msgstr "_Камуфлажа..." + +#: plug-ins/script-fu/scripts/carve-it.scm.h:1 +#: plug-ins/script-fu/scripts/chrome-it.scm.h:1 +msgid "/Script-Fu/Stencil Ops" +msgstr "/Скрипт-Фу/Матрица" + +#: plug-ins/script-fu/scripts/carve-it.scm.h:2 +msgid "C_arve-It..." +msgstr "Изрезбари го..." + +#: plug-ins/script-fu/scripts/carve-it.scm.h:3 +msgid "Carve white areas" +msgstr "Изрезбари ги белите облаÑти" + +#: plug-ins/script-fu/scripts/carve-it.scm.h:4 +msgid "Image to carve" +msgstr "Слика за резбарење" + +#: plug-ins/script-fu/scripts/carved-logo.scm.h:2 +msgid "Background Image" +msgstr "Слика на позадина" + +#: plug-ins/script-fu/scripts/carved-logo.scm.h:3 +msgid "Carve raised text" +msgstr "Изрезбари го иÑпакнатиот текÑÑ‚" + +#: plug-ins/script-fu/scripts/carved-logo.scm.h:4 +msgid "Carved..." +msgstr "Изрезбарено..." + +#: plug-ins/script-fu/scripts/carved-logo.scm.h:7 +msgid "Padding around text" +msgstr "Подлога околу текÑтот" + +#: plug-ins/script-fu/scripts/chalk.scm.h:4 +msgid "Chalk color" +msgstr "Боја на кредата" + +#: plug-ins/script-fu/scripts/chalk.scm.h:8 +msgid "_Chalk..." +msgstr "_Креда..." + +#: plug-ins/script-fu/scripts/chip-away.scm.h:3 +msgid "Blur amount" +msgstr "Количина на заматеноÑта" + +#: plug-ins/script-fu/scripts/chip-away.scm.h:4 +msgid "Chip Awa_y..." +msgstr "Chip Awa_y..." + +#: plug-ins/script-fu/scripts/chip-away.scm.h:5 +msgid "Chip amount" +msgstr "Количина на чип" + +#: plug-ins/script-fu/scripts/chip-away.scm.h:6 +msgid "Drop shadow" +msgstr "Отфрли Ñенка" + +#: plug-ins/script-fu/scripts/chip-away.scm.h:7 +msgid "Fill BG with pattern" +msgstr "ИÑполни ја позадината Ñо шаблон" + +#: plug-ins/script-fu/scripts/chip-away.scm.h:10 +msgid "Invert" +msgstr "Обратно" + +#: plug-ins/script-fu/scripts/chip-away.scm.h:11 +msgid "Keep background" +msgstr "Задржи ја позадината" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:2 +msgid "C_hrome-It..." +msgstr "ИÑхромирај..." + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:3 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:2 +msgid "Chrome balance" +msgstr "Рамнотежа на хромирањето" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:4 +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:3 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:3 +msgid "Chrome factor" +msgstr "Фактор на хромирањето" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:5 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:4 +msgid "Chrome lightness" +msgstr "ОÑветлување на хромирањето" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:6 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:5 +msgid "Chrome saturation" +msgstr "ЗаÑитеноÑÑ‚ на хромирањето" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:7 +msgid "Chrome white areas" +msgstr "Хромирај ги белите подрачја" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:8 +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:5 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:6 +msgid "Environment map" +msgstr "Мапа на опкружувањето" + +#: plug-ins/script-fu/scripts/chrome-it.scm.h:9 +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:9 +msgid "Highlight balance" +msgstr "Ð‘Ð°Ð»Ð°Ð½Ñ Ð½Ð° оÑветувањето" + +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:5 +msgid "C_hrome..." +msgstr "_Хром..." + +#: plug-ins/script-fu/scripts/chrome-logo.scm.h:8 +msgid "Offsets (pixels * 2)" +msgstr "ОдÑтапувања (точки * 2)" + +#: plug-ins/script-fu/scripts/circuit.scm.h:1 +#: plug-ins/script-fu/scripts/grid-system.scm.h:1 +#: plug-ins/script-fu/scripts/lava.scm.h:1 +#: plug-ins/script-fu/scripts/line-nova.scm.h:1 +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:1 +msgid "/Script-Fu/Render" +msgstr "/Скрипт-Фу/ИÑцртување" + +#: plug-ins/script-fu/scripts/circuit.scm.h:2 +msgid "Circuit seed" +msgstr "Ðаправи круг" + +#: plug-ins/script-fu/scripts/circuit.scm.h:3 +#: plug-ins/script-fu/scripts/lava.scm.h:3 +#: plug-ins/script-fu/scripts/predator.scm.h:3 +#: plug-ins/script-fu/scripts/xach-effect.scm.h:11 +msgid "Keep selection" +msgstr "Задржи ја Ñелекцијата" + +#: plug-ins/script-fu/scripts/circuit.scm.h:4 +msgid "No background (only for separate layer)" +msgstr "Ðема позадина (Ñамо за одвоениот Ñлој)" + +#: plug-ins/script-fu/scripts/circuit.scm.h:5 +msgid "Oilify mask size" +msgstr "Големина на маÑлената маÑка" + +#: plug-ins/script-fu/scripts/circuit.scm.h:6 +#: plug-ins/script-fu/scripts/lava.scm.h:6 +#: plug-ins/script-fu/scripts/predator.scm.h:6 +msgid "Separate layer" +msgstr "Одвоен Ñлој" + +#: plug-ins/script-fu/scripts/circuit.scm.h:7 +msgid "_Circuit..." +msgstr "_Круг..." + +#: plug-ins/script-fu/scripts/clothify.scm.h:1 +#: plug-ins/script-fu/scripts/erase-rows.scm.h:1 +#: plug-ins/script-fu/scripts/predator.scm.h:1 +#: plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 +#: plug-ins/script-fu/scripts/weave.scm.h:1 +msgid "/Script-Fu/Alchemy" +msgstr "/Скрипт-Фу/Ðлхемија" + +#: plug-ins/script-fu/scripts/clothify.scm.h:2 +#: plug-ins/script-fu/scripts/swirltile.scm.h:2 +msgid "Azimuth" +msgstr "Ðзимут" + +#: plug-ins/script-fu/scripts/clothify.scm.h:3 +msgid "Blur X" +msgstr "Заматување X" + +#: plug-ins/script-fu/scripts/clothify.scm.h:4 +msgid "Blur Y" +msgstr "Заматување Y" + +#: plug-ins/script-fu/scripts/clothify.scm.h:5 +#: plug-ins/script-fu/scripts/swirltile.scm.h:5 +msgid "Depth" +msgstr "Длабочина" + +#: plug-ins/script-fu/scripts/clothify.scm.h:6 +#: plug-ins/script-fu/scripts/swirltile.scm.h:6 +msgid "Elevation" +msgstr "КоÑина" + +#: plug-ins/script-fu/scripts/clothify.scm.h:7 +msgid "_Clothify..." +msgstr "_Облечи..." + +#: plug-ins/script-fu/scripts/coffee.scm.h:2 +msgid "" +"Darken only\n" +"(Better, but only for images with alot of white)" +msgstr "" +"Само темно\n" +"(Подобро, но Ñамо за Ñлики Ñо многу бела боја)" + +#: plug-ins/script-fu/scripts/coffee.scm.h:3 +msgid "Stains" +msgstr "Флеки" + +#: plug-ins/script-fu/scripts/coffee.scm.h:4 +msgid "_Coffee Stain..." +msgstr "Дамка од ка_фе..." + +#: plug-ins/script-fu/scripts/comic-logo.scm.h:4 +msgid "Comic Boo_k..." +msgstr "Стри_п..." + +#: plug-ins/script-fu/scripts/comic-logo.scm.h:9 +msgid "Outline color" +msgstr "Боја на Ñкицата" + +#: plug-ins/script-fu/scripts/comic-logo.scm.h:10 +#: plug-ins/script-fu/scripts/glossy.scm.h:12 +msgid "Outline size" +msgstr "Големина на Ñкицата" + +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 +msgid "Cool _Metal..." +msgstr "Ладен _метал..." + +#: plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:4 +msgid "Effect size (pixels)" +msgstr "Ефективна големина (пикÑели)" + +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:2 +msgid "Background image" +msgstr "Слика на позадина" + +#: plug-ins/script-fu/scripts/crystal-logo.scm.h:4 +msgid "Crystal..." +msgstr "КриÑтал..." + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:1 +#: plug-ins/script-fu/scripts/fade-outline.scm.h:1 +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:1 +#: plug-ins/script-fu/scripts/select-to-image.scm.h:1 +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:1 +msgid "/Script-Fu/Selection" +msgstr "/Скрипт-Фу/Селекција" + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:2 +msgid "Granularity (1 is low)" +msgstr "ЗрновитоÑÑ‚ (1 е мала)" + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:4 +msgid "Smooth horizontally" +msgstr "Омекни хоризонтално" + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:5 +msgid "Smooth vertically" +msgstr "Омекни вертикално" + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:6 +msgid "Spread" +msgstr "Ширење" + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:7 +msgid "Threshold (bigger 1<-->255 smaller)" +msgstr "ОÑетливоÑÑ‚ (поголема 1<-->255 помала)" + +#: plug-ins/script-fu/scripts/distress-selection.scm.h:8 +msgid "_Distress Selection..." +msgstr "_Задржи ја Ñелекцијата" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:1 +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 +#: plug-ins/script-fu/scripts/xach-effect.scm.h:1 +msgid "/Script-Fu/Shadow" +msgstr "/Скрипт-Фу/Сенка" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:2 +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 +msgid "Allow resizing" +msgstr "Дозволи промена на големината" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:3 +#: plug-ins/script-fu/scripts/news-text.scm.h:3 +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:4 +#: plug-ins/script-fu/scripts/round-corners.scm.h:4 +#: plug-ins/script-fu/scripts/swirltile.scm.h:4 +msgid "Blur radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:4 +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:5 +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:5 +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:5 +msgid "Color" +msgstr "Боја" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:5 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:8 +msgid "Offset X" +msgstr "ОтÑтапување X" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:6 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:9 +msgid "Offset Y" +msgstr "ОтÑтапување Y" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:7 +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:10 +msgid "Opacity" +msgstr "ÐепровидноÑÑ‚" + +#: plug-ins/script-fu/scripts/drop-shadow.scm.h:8 +msgid "_Drop-Shadow..." +msgstr "_Отфрли Ñенка..." + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:2 +msgid "Columns" +msgstr "Колони" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:3 +msgid "Erase" +msgstr "Избриши" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:4 +msgid "Erase/fill" +msgstr "Избиши/Пополни" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:5 +msgid "Even" +msgstr "Парни" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:6 +msgid "Even/odd" +msgstr "Парни/Ðепарни" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:7 +msgid "Fill with BG" +msgstr "ИÑполни Ñо боја на позадината" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:8 +msgid "Odd" +msgstr "Ðепарни" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:9 +msgid "Rows" +msgstr "Редови" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:10 +msgid "Rows/cols" +msgstr "Редови/Колони" + +#: plug-ins/script-fu/scripts/erase-rows.scm.h:11 +msgid "_Erase every other Row..." +msgstr "_Избриши го Ñекој друг ред..." + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:2 +msgid "Apply generated layermask" +msgstr "Примени ја генерираната маÑка на Ñлојот" + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:3 +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:4 +#: plug-ins/script-fu/scripts/old-photo.scm.h:2 +msgid "Border size" +msgstr "Големина на ивицата" + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:4 +msgid "Clear unselected maskarea" +msgstr "ИÑчиÑти го не-Ñелектираното подрачје на маÑката" + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:6 +#, no-c-format +msgid "Fade from %" +msgstr "ИÑчезнување од %" + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:8 +#, no-c-format +msgid "Fade to %" +msgstr "ИÑчезнување во %" + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:9 +msgid "Use growing selection" +msgstr "КориÑти раÑтечка Ñелекција" + +#: plug-ins/script-fu/scripts/fade-outline.scm.h:10 +msgid "_Fade Outline..." +msgstr "_ИÑчезнување на Ñкица..." + +#: plug-ins/script-fu/scripts/flatland.scm.h:2 +#: plug-ins/script-fu/scripts/land.scm.h:2 +msgid "Detail level" +msgstr "Ðиво за детали" + +#: plug-ins/script-fu/scripts/flatland.scm.h:3 +#: plug-ins/script-fu/scripts/land.scm.h:4 +msgid "Image height" +msgstr "ВиÑина на Ñликата" + +#: plug-ins/script-fu/scripts/flatland.scm.h:4 +#: plug-ins/script-fu/scripts/land.scm.h:5 +msgid "Image width" +msgstr "Ширина на Ñликата" + +#: plug-ins/script-fu/scripts/flatland.scm.h:5 +#: plug-ins/script-fu/scripts/land.scm.h:7 +msgid "Random seed" +msgstr "Произволно Ñеме" + +#: plug-ins/script-fu/scripts/flatland.scm.h:6 +#: plug-ins/script-fu/scripts/land.scm.h:8 +msgid "Scale X" +msgstr "Размер X" + +#: plug-ins/script-fu/scripts/flatland.scm.h:7 +#: plug-ins/script-fu/scripts/land.scm.h:9 +msgid "Scale Y" +msgstr "Размер Y" + +#: plug-ins/script-fu/scripts/flatland.scm.h:8 +msgid "_Flatland..." +msgstr "_Рамна земја..." + +#: plug-ins/script-fu/scripts/font-map.scm.h:2 +msgid "Active colors" +msgstr "Ðктивни бои" + +#: plug-ins/script-fu/scripts/font-map.scm.h:3 +msgid "Black on white" +msgstr "Црно на бело" + +#: plug-ins/script-fu/scripts/font-map.scm.h:4 +msgid "Font _size (pixels)" +msgstr "_Големина на фонтот (во точки)" + +#: plug-ins/script-fu/scripts/font-map.scm.h:5 +msgid "Use font _name as text" +msgstr "_КориÑти име на фонтот како текÑÑ‚" + +#: plug-ins/script-fu/scripts/font-map.scm.h:6 +msgid "_Border (pixels)" +msgstr "_Ивица (точки)" + +#: plug-ins/script-fu/scripts/font-map.scm.h:7 +msgid "_Color scheme" +msgstr "Шема на _боја" + +#: plug-ins/script-fu/scripts/font-map.scm.h:8 +msgid "_Filter (regexp)" +msgstr "_Филтер (регуларен израз)" + +#: plug-ins/script-fu/scripts/font-map.scm.h:9 +msgid "_Font Map..." +msgstr "Мапа на _фонт..." + +#: plug-ins/script-fu/scripts/font-map.scm.h:10 +msgid "_Labels" +msgstr "О_знаки" + +#: plug-ins/script-fu/scripts/font-map.scm.h:11 +msgid "_Text" +msgstr "_ТекÑÑ‚" + +#: plug-ins/script-fu/scripts/frosty-logo.scm.h:8 +msgid "_Frosty..." +msgstr "_Замрзнат..." + +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 +msgid "Add shadow" +msgstr "Додади Ñенка" + +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:3 +msgid "Blur border" +msgstr "Ивица на заматувањето" + +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:7 +msgid "Granularity (1 is Low)" +msgstr "ЗрновитоÑÑ‚ (1 е мала)" + +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:9 +#, no-c-format +msgid "Shadow weight (%)" +msgstr "Тежина на Ñенката (%)" + +#: plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 +msgid "_Fuzzy Border..." +msgstr "_ÐејаÑна граница..." + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:1 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:1 +msgid "/Xtns/Script-Fu/Web Page Themes/Classic.Gimp.Org" +msgstr "/Проширувања/Скрипт-Фу/Ð’eб теми/Classic.Gimp.оrg" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:2 +msgid "Autocrop" +msgstr "ÐвтоматÑко Ñечење" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:3 +msgid "Dark color" +msgstr "Темна боја" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:6 +#: plug-ins/script-fu/scripts/xach-effect.scm.h:9 +msgid "Highlight color" +msgstr "Боја на оÑветленото" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:7 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:6 +msgid "Index image" +msgstr "ИндекÑирај ја Ñликата" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:8 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:7 +msgid "Number of colors" +msgstr "Број на бои" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:9 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:10 +msgid "Remove background" +msgstr "ОтÑтрани позадина" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:10 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:11 +msgid "Select-by-color threshold" +msgstr "Избери по оÑетливоÑта на бојата" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:11 +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:12 +msgid "Shadow color" +msgstr "Боја на Ñенката" + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:14 +msgid "_Big Header..." +msgstr "_Големо заглавие..." + +#: plug-ins/script-fu/scripts/gimp-headers.scm.h:15 +msgid "_Small Header..." +msgstr "_Мало заглавие..." + +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:13 +msgid "T_ube Sub-Button Label..." +msgstr "Име на цевкаÑто под-копче..." + +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:16 +msgid "Tub_e Sub-Sub-Button Label..." +msgstr "Ознаки на цевчеÑти под-под-копчиња..." + +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:17 +msgid "_General Tube Labels..." +msgstr "_Општи цевчеÑти ознаки..." + +#: plug-ins/script-fu/scripts/gimp-labels.scm.h:18 +msgid "_Tube Button Label..." +msgstr "Име на _цевчеÑто копче..." + +#: plug-ins/script-fu/scripts/glossy.scm.h:4 +msgid "Blend gradient (Text)" +msgstr "Стопи го преливот (текÑÑ‚)" + +#: plug-ins/script-fu/scripts/glossy.scm.h:5 +msgid "Blend gradient (outline)" +msgstr "Стопи го преливот (Ñкица)" + +#: plug-ins/script-fu/scripts/glossy.scm.h:6 +msgid "Blend gradient (text)" +msgstr "Стопи го преливот (текÑÑ‚)" + +#: plug-ins/script-fu/scripts/glossy.scm.h:10 +msgid "Glo_ssy..." +msgstr "С_јаен..." + +#: plug-ins/script-fu/scripts/glossy.scm.h:11 +msgid "Outline gradient reverse" +msgstr "Обратен прелив за цртеж" + +#: plug-ins/script-fu/scripts/glossy.scm.h:13 +msgid "Pattern (outline)" +msgstr "Шаблон (нацрт)" + +#: plug-ins/script-fu/scripts/glossy.scm.h:14 +msgid "Pattern (overlay)" +msgstr "Шаблон (прекривање)" + +#: plug-ins/script-fu/scripts/glossy.scm.h:15 +msgid "Pattern (text)" +msgstr "Шаблон (текÑÑ‚)" + +#: plug-ins/script-fu/scripts/glossy.scm.h:16 +#: plug-ins/script-fu/scripts/sphere.scm.h:5 +msgid "Shadow" +msgstr "Сенка" + +#: plug-ins/script-fu/scripts/glossy.scm.h:20 +msgid "Text gradient reverse" +msgstr "Обратен текÑтуелен прелив" + +#: plug-ins/script-fu/scripts/glossy.scm.h:21 +msgid "Use pattern for outline instead of gradient" +msgstr "КориÑти шаблон за цртеж намеÑто прелив" + +#: plug-ins/script-fu/scripts/glossy.scm.h:22 +msgid "Use pattern for text instead of gradient" +msgstr "КориÑти шаблон за текÑÑ‚ намеÑто прелив" + +#: plug-ins/script-fu/scripts/glossy.scm.h:23 +msgid "Use pattern overlay" +msgstr "КориÑти прекривање Ñо шаблонот" + +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:4 +msgid "Effect size (pixels * 3)" +msgstr "Ефективна големина (точки * 3)" + +#: plug-ins/script-fu/scripts/glowing-logo.scm.h:7 +msgid "Glo_wing Hot..." +msgstr "Жешко _Ñјаење..." + +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 +msgid "Bevel height (Sharpness)" +msgstr "ВиÑина на вдлабнувањето (ОÑтрина)" + +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 +msgid "Bevel height (sharpness)" +msgstr "ВиÑина на вдлабнувањето (ОÑтрина)" + +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:7 +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:5 +#: plug-ins/script-fu/scripts/textured-logo.scm.h:4 +msgid "Border size (pixels)" +msgstr "Големина на ивицата (точки)" + +#: plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 +msgid "Gradient Beve_l..." +msgstr "Ð’_длабнување на преливот..." + +#: plug-ins/script-fu/scripts/gradient-example.scm.h:2 +msgid "Custom _Gradient..." +msgstr "Произволен пре_лив..." + +#: plug-ins/script-fu/scripts/grid-system.scm.h:2 +msgid "X divisions" +msgstr "X оддели" + +#: plug-ins/script-fu/scripts/grid-system.scm.h:3 +msgid "Y divisions" +msgstr "Y оддели" + +#: plug-ins/script-fu/scripts/grid-system.scm.h:4 +msgid "_Grid..." +msgstr "_Мрежа..." + +#: plug-ins/script-fu/scripts/guides-from-selection.scm.h:1 +msgid "Creates four Guides around the bounding box of the current selection." +msgstr "Создава четири водичи околу Ñкокачката кутија на тековната Ñелекција." + +#: plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 +msgid "New Guides from _Selection" +msgstr "Ðови водичи од _Ñелекцијата" + +#: plug-ins/script-fu/scripts/guides-new-percent.scm.h:1 +#: plug-ins/script-fu/scripts/guides-new.scm.h:1 +msgid "Direction" +msgstr "ÐаÑока" + +#: plug-ins/script-fu/scripts/guides-new-percent.scm.h:2 +#: plug-ins/script-fu/scripts/guides-new.scm.h:2 +msgid "Horizontal" +msgstr "Хоризонтална" + +#: plug-ins/script-fu/scripts/guides-new-percent.scm.h:3 +msgid "New Guide (by _Percent)..." +msgstr "Ðов водич (по _процент)..." + +#: plug-ins/script-fu/scripts/guides-new-percent.scm.h:5 +#, no-c-format +msgid "Position (in %)" +msgstr "Позиција (во %)" + +#: plug-ins/script-fu/scripts/guides-new-percent.scm.h:6 +#: plug-ins/script-fu/scripts/guides-new.scm.h:4 +msgid "Vertical" +msgstr "Вертикално" + +#: plug-ins/script-fu/scripts/guides-new.scm.h:3 +msgid "New _Guide..." +msgstr "Ðов _водич..." + +#: plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 +msgid "_Remove all Guides" +msgstr "_ОтÑтрани ги Ñите водичи" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:2 +msgid "BG opacity" +msgstr "ÐепровидноÑÑ‚ на позадината" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:3 +msgid "Draw _HSV Graph..." +msgstr "Цртај _HSV графикон..." + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:4 +msgid "End X" +msgstr "Крај X" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:5 +msgid "End Y" +msgstr "Крај Y" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:6 +msgid "From top-left to bottom-right" +msgstr "Од врвот-лево до дно-деÑно" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:7 +msgid "Graph scale" +msgstr "Графичка Ñкала" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:8 +msgid "Start X" +msgstr "Почетен X" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:9 +msgid "Start Y" +msgstr "Почетен Y" + +#: plug-ins/script-fu/scripts/hsv-graph.scm.h:10 +msgid "Use selection bounds instead of belows" +msgstr "КориÑти ги границите на Ñелекцијата намеÑто подолните" + +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:4 +msgid "Frame color" +msgstr "Боја на рамката" + +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:5 +msgid "Frame size" +msgstr "Големина на рамката" + +#: plug-ins/script-fu/scripts/i26-gunya2.scm.h:6 +msgid "Imigre-26..." +msgstr "Imigre-26..." + +#: plug-ins/script-fu/scripts/image-structure.scm.h:2 +msgid "Apply layer mask (or discard)" +msgstr "Прифати ја маÑката на Ñлојот (или отфрли)" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:4 +msgid "Create new image" +msgstr "Ðаправи нова Ñлика" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:5 +msgid "Insert layer names" +msgstr "Вметни имиња на Ñлоевите" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:6 +msgid "Make new background" +msgstr "Ðаправи нова позадина" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:7 +msgid "Outer border" +msgstr "Ðадворешна ивица" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:8 +msgid "Pad color" +msgstr "Боја на подлогата" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:9 +msgid "Pad opacity" +msgstr "ÐепровидноÑÑ‚ на подлогата" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:10 +msgid "Padding for transparent regions" +msgstr "Подлога за провидните региони" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:11 +msgid "Shear length" +msgstr "Должина на Ñечењето" + +#: plug-ins/script-fu/scripts/image-structure.scm.h:12 +msgid "Show Image _Structure..." +msgstr "Прикажи ја _Ñтруктурата на Ñликата..." + +#: plug-ins/script-fu/scripts/image-structure.scm.h:13 +msgid "Space between layers" +msgstr "Раздел помеѓу Ñлоевите" + +#: plug-ins/script-fu/scripts/land.scm.h:6 +msgid "Land height" +msgstr "ВиÑина на земјата" + +#: plug-ins/script-fu/scripts/land.scm.h:10 +msgid "Sea depth" +msgstr "Длабочина на морето" + +#: plug-ins/script-fu/scripts/land.scm.h:11 +msgid "_Land..." +msgstr "_Земја..." + +#: plug-ins/script-fu/scripts/lava.scm.h:4 +#: plug-ins/script-fu/scripts/swirltile.scm.h:8 +msgid "Roughness" +msgstr "РапавоÑÑ‚" + +#: plug-ins/script-fu/scripts/lava.scm.h:5 +msgid "Seed" +msgstr "Семе" + +#: plug-ins/script-fu/scripts/lava.scm.h:8 +msgid "Use current gradient" +msgstr "КориÑти го тековниот прелив" + +#: plug-ins/script-fu/scripts/lava.scm.h:9 +msgid "_Lava..." +msgstr "_Лава..." + +#: plug-ins/script-fu/scripts/line-nova.scm.h:2 +msgid "Line _Nova..." +msgstr "Line _Nova..." + +#: plug-ins/script-fu/scripts/line-nova.scm.h:3 +msgid "Number of lines" +msgstr "Број на линии" + +#: plug-ins/script-fu/scripts/line-nova.scm.h:4 +msgid "Offset radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° отÑтапувањето" + +#: plug-ins/script-fu/scripts/line-nova.scm.h:5 +msgid "Randomness" +msgstr "СлучајноÑÑ‚" + +#: plug-ins/script-fu/scripts/line-nova.scm.h:6 +msgid "Sharpness (degrees)" +msgstr "ИзоÑтрување (Ñтепени)" + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:1 +msgid "/Xtns/Script-Fu/Make Brush" +msgstr "/Проширувања/Скрипт-Фу/Ðаправи четка" + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:2 +msgid "Elli_ptical, Feathered..." +msgstr "Елиптична, омекната..." + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:3 +msgid "Feathering" +msgstr "Покривање" + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:5 +msgid "Name" +msgstr "Име" + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:6 +msgid "Re_ctangular, Feathered..." +msgstr "Правоаголна, омекната..." + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:7 +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:4 +msgid "Spacing" +msgstr "Раздел" + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:9 +msgid "_Elliptical..." +msgstr "_Елиптична..." + +#: plug-ins/script-fu/scripts/mkbrush.scm.h:10 +msgid "_Rectangular..." +msgstr "_Правоаголна..." + +#: plug-ins/script-fu/scripts/neon-logo.scm.h:4 +msgid "Create shadow" +msgstr "Ðаправи Ñенка" + +#: plug-ins/script-fu/scripts/neon-logo.scm.h:5 +msgid "Effect size (pixels * 5)" +msgstr "Ефективна големина (точки * 5)" + +#: plug-ins/script-fu/scripts/neon-logo.scm.h:9 +msgid "N_eon..." +msgstr "_Ðеон..." + +#: plug-ins/script-fu/scripts/news-text.scm.h:4 +msgid "Cell size (pixels)" +msgstr "Големина на ќелијата (точки)" + +#: plug-ins/script-fu/scripts/news-text.scm.h:6 +#: plug-ins/script-fu/scripts/speed-text.scm.h:4 +#, no-c-format +msgid "Density (%)" +msgstr "ГуÑтина (%)" + +#: plug-ins/script-fu/scripts/news-text.scm.h:9 +msgid "Newsprint Text..." +msgstr "ÐовинарÑки текÑÑ‚..." + +#: plug-ins/script-fu/scripts/old-photo.scm.h:3 +msgid "Defocus" +msgstr "ДефокуÑирај" + +#: plug-ins/script-fu/scripts/old-photo.scm.h:4 +msgid "Mottle" +msgstr "ИÑшаран" + +#: plug-ins/script-fu/scripts/old-photo.scm.h:5 +msgid "Sepia" +msgstr "ЦрвеноÑмеѓа" + +#: plug-ins/script-fu/scripts/old-photo.scm.h:7 +msgid "_Old Photo..." +msgstr "Стара _Фотографија..." + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 +msgid "Angle" +msgstr "Ðгол" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 +msgid "Cubic" +msgstr "Кубна" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 +msgid "Interpolation" +msgstr "Интерполација" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:8 +msgid "Linear" +msgstr "ЛиниÑки" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:9 +msgid "None" +msgstr "Ðишто" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 +msgid "Relative distance of horizon" +msgstr "Релативна одалеченоÑÑ‚ од хоризонтот" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:12 +msgid "Relative length of shadow" +msgstr "Релативна должина на Ñенката" + +#: plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 +msgid "_Perspective..." +msgstr "_ПерÑпектива..." + +#: plug-ins/script-fu/scripts/predator.scm.h:2 +msgid "Edge amount" +msgstr "ВредноÑÑ‚ на ивицата" + +#: plug-ins/script-fu/scripts/predator.scm.h:4 +msgid "Pixel amount" +msgstr "ВредноÑÑ‚ на пикÑелот" + +#: plug-ins/script-fu/scripts/predator.scm.h:5 +msgid "Pixelize" +msgstr "ИÑточкај" + +#: plug-ins/script-fu/scripts/predator.scm.h:7 +msgid "_Predator..." +msgstr "_Грабливец..." + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:5 +msgid "Lower color" +msgstr "Долна боја" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:6 +msgid "Lower color (active)" +msgstr "Долна боја (активна)" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:7 +msgid "Not pressed" +msgstr "Ðе е притиÑнато" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:8 +msgid "Not pressed (active)" +msgstr "Ðе е притиÑнато (тековно)" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:9 +msgid "Padding X" +msgstr "Подлога X" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:10 +msgid "Padding Y" +msgstr "Подлога Y" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:12 +msgid "Round ratio" +msgstr "Кружен размер" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:15 +msgid "Text color (active)" +msgstr "Боја на текÑтот (тековна)" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:16 +msgid "Upper color" +msgstr "Горна боја" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:17 +msgid "Upper color (active)" +msgstr "Горна боја (тековна)" + +#: plug-ins/script-fu/scripts/pupi-button.scm.h:18 +msgid "_Round Button..." +msgstr "_Заоблено копче..." + +#: plug-ins/script-fu/scripts/rendermap.scm.h:2 +msgid "Behaviour" +msgstr "ОднеÑување" + +#: plug-ins/script-fu/scripts/rendermap.scm.h:3 +msgid "Detail in Middle" +msgstr "Детал во Ñредината" + +#: plug-ins/script-fu/scripts/rendermap.scm.h:8 +msgid "Render _Map..." +msgstr "ИÑцртај _мапа..." + +#: plug-ins/script-fu/scripts/rendermap.scm.h:9 +msgid "Tile" +msgstr "Делче" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:2 +msgid "Black" +msgstr "Црна" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:3 +msgid "Edge behaviour" +msgstr "ОднеÑување на ивицата" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:4 +#: plug-ins/script-fu/scripts/waves-anim.scm.h:4 +msgid "Number of frames" +msgstr "Број на рамки" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:5 +msgid "Rippling strength" +msgstr "Јачина на мрешкањето" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:6 +msgid "Smear" +msgstr "Замачкај" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:7 +msgid "Wrap" +msgstr "Замотај" + +#: plug-ins/script-fu/scripts/ripply-anim.scm.h:8 +msgid "_Rippling..." +msgstr "_Мрешкање..." + +#: plug-ins/script-fu/scripts/round-corners.scm.h:2 +msgid "Add background" +msgstr "Додади позадина" + +#: plug-ins/script-fu/scripts/round-corners.scm.h:3 +msgid "Add drop-shadow" +msgstr "Додади отфрлање на Ñенка" + +#: plug-ins/script-fu/scripts/round-corners.scm.h:5 +msgid "Edge radius" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ Ð½Ð° ивицата" + +#: plug-ins/script-fu/scripts/round-corners.scm.h:9 +msgid "_Round Corners..." +msgstr "_Заоблени ќошиња..." + +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:2 +msgid "Brush name" +msgstr "Име на четката" + +#: plug-ins/script-fu/scripts/select-to-brush.scm.h:5 +msgid "To _Brush..." +msgstr "Во _четка..." + +#: plug-ins/script-fu/scripts/select-to-image.scm.h:2 +msgid "To _Image" +msgstr "Во _Ñлика" + +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:3 +msgid "Pattern name" +msgstr "Име на шаблон" + +#: plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 +msgid "To _Pattern..." +msgstr "Во _шаблон..." + +#: plug-ins/script-fu/scripts/selection-round.scm.h:1 +msgid "Concave" +msgstr "Конкавна" + +#: plug-ins/script-fu/scripts/selection-round.scm.h:3 +#, no-c-format +msgid "Radius (%)" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ (%)" + +#: plug-ins/script-fu/scripts/selection-round.scm.h:4 +msgid "Rounded R_ectangle..." +msgstr "Заоблен правоа_голник..." + +#: plug-ins/script-fu/scripts/slide.scm.h:3 +msgid "Font color" +msgstr "Боја на фонтот" + +#: plug-ins/script-fu/scripts/slide.scm.h:4 +msgid "Number" +msgstr "Број" + +#: plug-ins/script-fu/scripts/slide.scm.h:7 +msgid "_Slide..." +msgstr "_Слајд..." + +#: plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 +msgid "SOTA Chrome..." +msgstr "SOTA Хром..." + +#: plug-ins/script-fu/scripts/speed-text.scm.h:7 +msgid "Speed Text..." +msgstr "Брз текÑÑ‚..." + +#: plug-ins/script-fu/scripts/sphere.scm.h:1 +msgid "/Xtns/Script-Fu/Misc" +msgstr "/Проширувања/Скрипт-Фу/Разно" + +#: plug-ins/script-fu/scripts/sphere.scm.h:3 +msgid "Lighting (degrees)" +msgstr "ОÑветлување (Ñтепени)" + +#: plug-ins/script-fu/scripts/sphere.scm.h:4 +msgid "Radius (pixels)" +msgstr "Ð Ð°Ð´Ð¸ÑƒÑ (точки)" + +#: plug-ins/script-fu/scripts/sphere.scm.h:6 +msgid "Sphere color" +msgstr "Боја на куглата" + +#: plug-ins/script-fu/scripts/sphere.scm.h:7 +msgid "_Sphere..." +msgstr "_Кугла..." + +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:2 +msgid "Frames" +msgstr "Оквири" + +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:3 +msgid "Index to n colors (0 = remain RGB)" +msgstr "Ð˜Ð½Ð´ÐµÐºÑ Ð²Ð¾ n бои (0 = оÑтанува RGB)" + +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:5 +msgid "Turn from left to right" +msgstr "Обрни од лево на деÑно" + +#: plug-ins/script-fu/scripts/spinning-globe.scm.h:7 +msgid "_Spinning Globe..." +msgstr "_Ротирачки глобуÑ..." + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:2 +msgid "Airbrush" +msgstr "Спреј" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:3 +msgid "Brush" +msgstr "Четка" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:4 +msgid "Circle" +msgstr "Круг" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:6 +msgid "Color method" +msgstr "Метода на бојата" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:7 +msgid "" +"Draws Spirographs, Epitrochoids and Lissajous Curves. More info at http://" +"netword.com/*spyrogimp" +msgstr "" +"ИÑцртај Ñпирографи, епитрохоиди и ЛиÑажови криви. Повеќе податоци на http://" +"netword.com/*spyrogimp" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:8 +msgid "Epitrochoid" +msgstr "Епитрохоид" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:9 +msgid "Frame" +msgstr "Рамка" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:11 +msgid "Gradient: Loop Sawtooth" +msgstr "Прелив: Повторувачка пила" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:12 +msgid "Gradient: Loop Triangle" +msgstr "Прелив: Повторувачки триаголник" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:13 +msgid "Hexagon" +msgstr "ХекÑагон" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:14 +msgid "Hole ratio" +msgstr "Размер на дупката" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:15 +msgid "Inner teeth" +msgstr "Внатрешни заби" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:16 +msgid "Lissajous" +msgstr "ЛиÑажоÑ" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:17 +msgid "Margin (pixels)" +msgstr "Маргина (точки)" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:18 +msgid "Outer teeth" +msgstr "Ðадворешни заби" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:19 +msgid "Pencil" +msgstr "Пенкало" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:20 +msgid "Pentagon" +msgstr "Пентагон" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:21 +msgid "Polygon: 10 sides" +msgstr "Полигон: 10 Ñтрани" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:22 +msgid "Polygon: 7 sides" +msgstr "Полигон: 7 Ñтрани" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:23 +msgid "Polygon: 8 sides" +msgstr "Полигон: 8 Ñтрани" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:24 +msgid "Polygon: 9 sides" +msgstr "Полигон: 9 Ñтрани" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:25 +msgid "Shape" +msgstr "Облик" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:26 +msgid "Solid Color" +msgstr "ЧиÑта боја" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:27 +msgid "Spyrograph" +msgstr "Спирограф" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:28 +msgid "Square" +msgstr "Квадрат" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:29 +#: plug-ins/script-fu/scripts/text-circle.scm.h:7 +msgid "Start angle" +msgstr "Почетен агол" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:30 +msgid "Tool" +msgstr "Ðлатка" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:31 +msgid "Triangle" +msgstr "Триаголник" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:32 +msgid "Type" +msgstr "Тип" + +#: plug-ins/script-fu/scripts/spyrogimp.scm.h:33 +msgid "_Spyrogimp..." +msgstr "_Спирогимп..." + +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:4 +msgid "Burst color" +msgstr "Боја на екÑплозијата" + +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:5 +msgid "Effect size (pixels * 30)" +msgstr "Ефективна големина (точки * 30)" + +#: plug-ins/script-fu/scripts/starburst-logo.scm.h:8 +msgid "Starb_urst..." +msgstr "ЕкÑплозија на _ѕвезда..." + +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:3 +msgid "Effect size (pixels * 4)" +msgstr "Ефективна големина (точки * 4)" + +#: plug-ins/script-fu/scripts/starscape-logo.scm.h:7 +msgid "Sta_rscape..." +msgstr "_Ðемирна ѕвезда..." + +#: plug-ins/script-fu/scripts/swirltile.scm.h:9 +msgid "Swirl-_Tile..." +msgstr "_Завртувач..." + +#: plug-ins/script-fu/scripts/swirltile.scm.h:10 +msgid "Whirl amount" +msgstr "ВредноÑÑ‚ на завртувањето" + +#: plug-ins/script-fu/scripts/swirly-pattern.scm.h:2 +msgid "Number of times to whirl" +msgstr "Колку пати да завртам" + +#: plug-ins/script-fu/scripts/swirly-pattern.scm.h:3 +msgid "Quarter size" +msgstr "За една четвртина" + +#: plug-ins/script-fu/scripts/swirly-pattern.scm.h:4 +msgid "Whirl angle" +msgstr "Ðгол на завртувањето" + +#: plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 +msgid "_Swirly..." +msgstr "_Завртливо..." + +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 +msgid "Base color" +msgstr "ОÑновна боја" + +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:6 +msgid "Edge only" +msgstr "Само ивица" + +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:7 +msgid "Edge width" +msgstr "Ширина на ивицата" + +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:10 +msgid "Hit rate" +msgstr "ВредноÑÑ‚ на погодок" + +#: plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 +msgid "_Particle Trace..." +msgstr "Следење на _чеÑтички..." + +#: plug-ins/script-fu/scripts/text-circle.scm.h:2 +msgid "Antialias" +msgstr "Омекнување на ивиците" + +#: plug-ins/script-fu/scripts/text-circle.scm.h:3 +msgid "Fill angle" +msgstr "Пополни агол" + +#: plug-ins/script-fu/scripts/text-circle.scm.h:9 +msgid "Text Circle..." +msgstr "Кружен текÑÑ‚..." + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:5 +msgid "Ending blend" +msgstr "Крај на Ñтопувањето" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:8 +msgid "Hexagons" +msgstr "ХакÑагони" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:9 +msgid "Mosaic tile type" +msgstr "Типови на делови на мозаикот" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:10 +msgid "Octagons" +msgstr "Октагони" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:12 +msgid "Squares" +msgstr "Квадрати" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:13 +msgid "Starting blend" +msgstr "Почеток на Ñтопувањето" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:15 +msgid "Text pattern" +msgstr "Шаблон на текÑтот" + +#: plug-ins/script-fu/scripts/textured-logo.scm.h:16 +msgid "_Textured..." +msgstr "_ТекÑтурирано..." + +#: plug-ins/script-fu/scripts/tileblur.scm.h:1 +msgid "Blur horizontally" +msgstr "Хоризонтално заматување" + +#: plug-ins/script-fu/scripts/tileblur.scm.h:2 +msgid "Blur type" +msgstr "Вид на заматување" + +#: plug-ins/script-fu/scripts/tileblur.scm.h:3 +msgid "Blur vertically" +msgstr "Вертикално заматување" + +#: plug-ins/script-fu/scripts/tileblur.scm.h:4 +msgid "IIR" +msgstr "IIR" + +#: plug-ins/script-fu/scripts/tileblur.scm.h:5 +msgid "RLE" +msgstr "RLE" + +#: plug-ins/script-fu/scripts/tileblur.scm.h:7 +msgid "_Tileable Blur..." +msgstr "_ПлочеÑто заматување..." + +#: plug-ins/script-fu/scripts/title-header.scm.h:6 +msgid "Web Title Header..." +msgstr "Заглавје на наÑловот на вебот..." + +#: plug-ins/script-fu/scripts/truchet.scm.h:4 +msgid "Foreground color" +msgstr "Боја на четката" + +#: plug-ins/script-fu/scripts/truchet.scm.h:7 +msgid "T_ruchet..." +msgstr "T_ruchet..." + +#: plug-ins/script-fu/scripts/unsharp-mask.scm.h:2 +msgid "Mask opacity" +msgstr "ÐепровидноÑÑ‚ на маÑката" + +#: plug-ins/script-fu/scripts/unsharp-mask.scm.h:3 +msgid "Mask size" +msgstr "Големина на маÑката" + +#: plug-ins/script-fu/scripts/unsharp-mask.scm.h:4 +msgid "_Unsharp Mask..." +msgstr "Симни ја _оÑтрината на маÑката..." + +#: plug-ins/script-fu/scripts/waves-anim.scm.h:2 +msgid "Amplitude" +msgstr "Ðмплитуда" + +#: plug-ins/script-fu/scripts/waves-anim.scm.h:3 +msgid "Invert direction" +msgstr "Обратна наÑока" + +#: plug-ins/script-fu/scripts/waves-anim.scm.h:5 +msgid "Wavelength" +msgstr "Бранова должина" + +#: plug-ins/script-fu/scripts/waves-anim.scm.h:6 +msgid "_Waves..." +msgstr "_Бранови..." + +#: plug-ins/script-fu/scripts/weave.scm.h:2 +msgid "Ribbon spacing" +msgstr "Раздел на лентата" + +#: plug-ins/script-fu/scripts/weave.scm.h:3 +msgid "Ribbon width" +msgstr "Ширина на лентата" + +#: plug-ins/script-fu/scripts/weave.scm.h:4 +msgid "Shadow darkness" +msgstr "Затемнување на Ñенката" + +#: plug-ins/script-fu/scripts/weave.scm.h:5 +msgid "Shadow depth" +msgstr "Длабочина на Ñенката" + +#: plug-ins/script-fu/scripts/weave.scm.h:6 +msgid "Thread density" +msgstr "ГуÑтина на нишката" + +#: plug-ins/script-fu/scripts/weave.scm.h:7 +msgid "Thread intensity" +msgstr "Интезитет на нишката" + +#: plug-ins/script-fu/scripts/weave.scm.h:8 +msgid "Thread length" +msgstr "Должина на нишката" + +#: plug-ins/script-fu/scripts/weave.scm.h:9 +msgid "_Weave..." +msgstr "_Бран..." + +#: plug-ins/script-fu/scripts/web-browser.scm.h:1 +msgid "/Help/The GIMP Online" +msgstr "/Помош/Гимп на интернет" + +#: plug-ins/script-fu/scripts/web-browser.scm.h:2 +msgid "Plug-in _Registry" +msgstr "_РегиÑтер на додатоци" + +#: plug-ins/script-fu/scripts/web-browser.scm.h:3 +msgid "_Developer Web Site" +msgstr "Веб Ñтраница на _развивачот" + +#: plug-ins/script-fu/scripts/web-browser.scm.h:4 +msgid "_Main Web Site" +msgstr "_Главна веб Ñтраница" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:2 +msgid "Drop shadow X offset" +msgstr "X отÑтапување на Ñенката" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:3 +msgid "Drop shadow Y offset" +msgstr "Y отÑтапување на Ñенката" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:4 +msgid "Drop shadow blur radius" +msgstr "ОтÑтапување од Ñ€Ð°Ð´Ð¸ÑƒÑ Ð½Ð° заматувањето на Ñенката" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:5 +msgid "Drop shadow color" +msgstr "Боја на отфрлената Ñенка" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:6 +msgid "Drop shadow opacity" +msgstr "ÐепровидноÑÑ‚ на отфрлената Ñенка" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:7 +msgid "Highlight X offset" +msgstr "Ð¥ отÑтапување на оÑветленоÑта" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:8 +msgid "Highlight Y offset" +msgstr "Y отÑтапување на оÑветленоÑта" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:10 +msgid "Highlight opacity" +msgstr "ÐепровидноÑÑ‚ на оÑветлувањето" + +#: plug-ins/script-fu/scripts/xach-effect.scm.h:12 +msgid "_Xach-Effect..." +msgstr "_Xach-Ефект..." + + diff -uraN gimp-2.2.8/po-script-fu/zh_TW.gmo gimp-2.2.9/po-script-fu/zh_TW.gmo --- gimp-2.2.8/po-script-fu/zh_TW.gmo 2005-05-08 23:42:35.000000000 +0200 +++ gimp-2.2.9/po-script-fu/zh_TW.gmo 2005-08-15 12:09:24.000000000 +0200 @@ -1,41 +1,59 @@ -Þ•D< -±\ !% ,8 Q_n -~‰’ ¡« ±»ÕÝ -æñ$ -5 -@ KU nz€¥¾ -Ô -ßêñ ø  " .8 H V d q}’ -˜!£ ÅÑã õ (BHPX `m -u€ ‘Ÿ¯ -¿<Ê & .:@ Q^g lx¢ºÌ àìû . G ` u { ‹ ˜ ¤ -ª µ Ñ Ö ß é ó ! ! -! !)!2! -G! R! _!m!r! -†!‘!¤! µ!Á!È! -æ! ñ!ý!"" .":"Q" h"t"{"ƒ"Œ"Ÿ"²"Â"Ô"Ý" á" î" -û"# # !#"-#P#c#w#ˆ#˜# §#³#¸# Ë#Õ# Ü#è#ý#$ #$ 0$:$K$\$ -c$ n$z$$–$¨$º$Ê$Û$ì$ü$%%"%2%;%D%Y% a%m% %% ¨% ²%¾% Æ% Ð%Ú%î%&&(& 7&D&K& T&a&j&|&&ž&¯&¿& Ç&Ô&Ø&ß& ï& -û&' '2' A'N'T' f' p'|' ' ‹'—'Ÿ'§'¸'È'â'ü'('(B([(x(”(­(9À(=ú( 8)F) b)l)})) ¥)Æ)æ)ë)*** **7*>*N*^* q*~* Ž*›* ¡*®*³* º*Æ*Û* ã*ð*+ -++"+*+1+9+ A+ M+Y+ h+t+ -y+„+˜+ ®+ »+Å+ Ô+#â+, ,,',0,H,M, P,\,q,‚,—,+®,(Ú,&- -*- 5-A-G- V- d-q- v- ‚-Ž- Ÿ-­-¾-Æ-Ï-à-[æ-B/H/ N/Z/ u/ ‚/ / œ/©/°/À/Ç/ Î/Ø/ ÷/ 00 0 +0 80 E0R0b0r0‹0 £0°0 ·0Ä0Ù0î0 1 1 1 *171 G1T1 j1 w1„1š1­1 À1 Í1Ú1ï1 ö1&2*2 :2G2 Z2g2z2'2©2È2Ï2Ø2á2 ê2÷2 þ23 3(383K3*R3 }3‡33 ¤3®3µ3 Ë3Ø3ß3ã3ê3ý34 #404@4P4c4{4”4¬4Ä4Ù4ï455 (555 <5J5j5 q55‘5 £5±5¸5¿5 Æ5 Ó5à5 ö566)606 I6V6 k6 x6 …6’6 «6 ¸6Å6Ý6$ä6 77*7 A7N7 U7 b7o7ˆ7¡7´7 Ê7Ô7Ø7 è7 õ78 8%8,58b8u8 ‹8 ˜8¥8 ¸8Å8É8 Û8 å8 ò8ÿ89-9F9 V9c9v9‰99 ¯9¹9Ô9Û9î9 : : : (: 5: B:O:V: h: t:€: •:Ÿ:¦: ¹:Æ:å:û:;;(;;;$Q;v;};Œ; ›;¨; ¯; ¼; É; Ó; à; í; ú;< <"<;<?<F<U< k<x< ‹< ˜< ¥<²< ¶< Ã<Í<à<ç< ï< û< = = #=1=H=_=v==§=¾=Õ=ì= >:!>7\>”>£> º>Ç>Û>ï># -?#.?R?$Y?~? Ž?˜?±?Ê?Ñ?ç?ý? @@ -@:@ A@N@U@\@c@y@ €@@ @ ³@ ½@ Ç@Ñ@Ø@î@ AA$A 4AAA HAUA$sA ˜A¥A ¬A ¹A(ÆA ïAùA B BB*B1B 5BBB`BpB%†B*¬B*×B?CBC ICVC ]C jCwC“C£C¶CÉCâC%óCD -6DAD -[Dë:Î)8‚ªŽ»2CzH{æÿ¥ÌÞÍ„ž5vN5Ò—1ËVtú1“‡ÊIi6qµ+ –ãûÁÂLF¬~/ÛéB:Ä ;A!@b.8ˆôRg#¦¹W2oS‰?ö¼€ýa*%73w - `Ãןï GŒõC0B\¯Z,y™¸Ó[$ɶìh°è&)Ôò4Y^f9·@_".Õl j+Pñ*3£Èí<}ÙAe«¢Ï nðÐÖâœMc%-³-‘²´î ¿7s­¾Üó §=4›Æç|˜" ¨>?E©•D¤Q(/†÷'á6DùåÚÇumÑ ,üdàØø90p½#$±JOÀ ®x‹…äÅ;&ºŠ -ƒ!<=>¡k]rUK'X”þTÝê(’šß%s:(none)/Script-Fu//Xtns/Script-FuActive colorsAdd backgroundAdd drop-shadowAdd shadowAirbrushAllow resizingAmplitudeAngleAntialiasApply generated layermaskAuthor:AutocropBG opacityBackground ColorBackground ImageBackground colorBackground imageBar heightBar lengthBehaviourBevel height (Sharpness)Bevel widthBlackBlack on whiteBlend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBorder X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurst colorCarve raised textCarve white areasChalk colorChrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsCopyright:Create new imageCreate shadowCurrent CommandCustom GradientDark colorDarken only -(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDensity (%)DepthDetail in MiddleDetail levelDiameterDownDrop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)End XEnd YEnd blendEnding blendEpitrochoidEraseErase/fillError while executing +Þ•ÐœkÈ& É&×&Û& â& î&ú& ''2'R'n'†'Ÿ'»'Ô'ì' ( $(E(#d(ˆ(!¦(È(3ç(9) U) c)q)€)) +Ÿ)ª)Á)Ê)Ù)è) ÷)* **+*3* +<* G* +T*_*p**’* +£* +®* ¹*Ã*Ü* õ*++ +"+8+Q+ +g+ +r+}+„+ ‹+ —+£+ µ+ Á+Ë+Û+ ê+ ø+ , ,,4, +:,!E, g, +s,~,, ¢, ¬, ¸,Æ,Ù, à,í,- --- %-2-:-I-Q- +`-k- |-EŠ- +Ð-Û-á-ñ-. +.< .].c.|. „..–. §.´. ½.Ç.Ì. ß.ë.//-/?/ S/_/n/‡/¡/º/Ó/è/00 0 0 %010 +70B0^0c0 l0 v0€0 0™0 +¡0 ¬0¶0¿0 +Ô0 ß0 ì0ú0ÿ0 +1111 B1N1U1s1 ‚1 +1š1 +ª1 µ1Á1Ø1á1ô1 22(2 ?2 K2W2^2f2o2‚2•2¥2·2 +À2Ë2 Ï2 Ü2 +é2ô2 3 3 3"(3K3^3r3 Š3˜3©3¹3 È3Ô3Ù3 ì3ú3 4 4 4434E4 Y4 f4p44’4™4¢4§4Â4 Ý4ë4 +ý45 55.555G5Y5i5z5‹5›5´5½5Á5Ñ5Ú5ã5ø5 6 6 6.6 G6 Q6]6 e6 o6y66 +­6¸6À6Ò6 á6î6õ6 þ6 77&787I7Z7k7{7‹7“7 ¥7²7¶7 +½7È7 Ø7 +ä7ï7 +8$868 E8S8 b8o8u8 ‡8 ‘88³8 ¸8 Â8Î8Ý8å8í8þ89(9B9T9m9ˆ9¡9¾9Ú9ó99:=@: ~:Œ: ¨:²:Ã:Ó: ë: ;,;1;K;Z;`; p;};„;”;¤; ·;Ä; Ô;á; ç;ô; <'<,<2< 9<E<Z<b< w< …<’<¢< +²<½<Ä< Ì<Ú< á<ï<÷< ÿ< == &=2= A=M=g={=€= +=š=®= Ä= Ñ=Û=ê= û=# >-> 2> ?>I>X>]>t>}>›>³>¸> »>Ç>Ü>í>?+?(E?&n?•? +ž?©? ½?É?Ï? Þ? ì?ù? þ? +@ @ @,@ ;@E@ +V@ +a@l@ {@ …@ ‘@ž@ ¯@½@Ñ@è@ø@A!A2A CA PA +]AhAyA‘A šA¤A¬AµA¾A ÍAÛAîA þA BB .B;BLB^B gBqB +‚BB  B®B +¿BÊB ÐBÝBïB C CCW)C DŽD”D šD ¦D²DÆDÙD'òDE3ELEeE„EE"¶EÙE!ôE!F'8F!`F!‚F!¤F4ÆF8ûF 4GAGUG iG vG ƒG GG¤G¸GÏGßGæG íG÷G H H-H =H KH YH fH sH €HHH­HÆHÞH öHI +I I%I:IOI dI qI ~I ‹I˜I ¨IµI ËI ØIåIûIJ"J 5J BJOJdJ kJ&xJŸJ ¯J ½JÊJ ÝJ çJ ôJKK'KDKcKjKsK|K …K’K™KªK±K ÅKÏK âK-ïK L'L.L>LQLkL*rL L§L½L ÄLÎLÕL ëLøLÿLM +M#M*M=MPM cMpM€MM£M»MÔMìMNN0N@NPNcN sN€N ‡N•NµN ¼NÊNÜN îNüNO +O O O+O AONOaOtO{O ”O¡O ¶O ÃO ÐOÝOöOP P(P WKWbW uW‚W –W  W ­WºW ¾W ËWÕWèWX X X X 0X =X JX XXfX}X”X«XÂXÜXóX +Y!Y>Y:VY7‘YÉYØY ïYüYZ$Z#?Z#cZ‡Z$ŽZ³Z ÃZÍZæZÿZ[[2[ E[R[ b[o[ v[ƒ[[·[¾[Å[Ì[Ó[é[ð[ \ \)\<\ O\ Y\ c\ m\{\‚\™\©\ ¹\Æ\Ù\ é\ö\ ]+]H]X]_] o]|]$š] ¿]Ì] Ó] à] í](ú] #^-^A^U^i^ p^ }^.‡^¶^É^Ð^ Ô^á^ÿ^_%%_*K_*v_?¡_á_è_ï_ ÿ_ ` ` `-`I`Y`l` ` `š` ®`¼` Õ` ã`ñ` aa$a5aFaWaka a a›a¯a%Ãa éa÷a bb*b GbUblb ‰b —b ¥b³bÄbØbéb ýb c %c3c Gc +Uc`cqc …c“c§c¸cÒc +æc ñcÿcd €AB­K)=:Ðë-1ŠJ¤…6ÓG¢˜TÍ  +y I }´NžÉ'¯•ÜüÌ6ÁR¼7O%÷PãE—dè]ʱ J€’p²Èší\ËŸŸnw;"ºMtDµTÉâƺSD2¥»n`“U~]‡–®^ÏS9:׎UÊ}Ô†d,QAÿz8I „> ³†b2ÌfÈ7H$v +û{ójÄ[«Vsˆqxq±ª0‰ÚY¿Õ%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/Classic.Gimp.OrgActive colorsAdd B_evel...Add _Border...Add backgroundAdd drop-shadowAdd shadowAdditional InformationAirbrushAlien _Glow...Alien _Neon...Allow resizingAmplitudeAngleAntialiasApply generated layermaskAuthor:AutocropBG opacityB_asic II...B_utton...Background ColorBackground ImageBackground colorBackground imageBar heightBar lengthBehaviourBevel height (Sharpness)Bevel height (sharpness)Bevel widthBlackBlack on whiteBlen_ded...Blend gradient (Text)Blend gradient (outline)Blend gradient (text)Blend modeBlock sizeBlur XBlur YBlur amountBlur borderBlur horizontallyBlur radiusBlur typeBlur verticallyBo_vination...Border X sizeBorder Y sizeBorder colorBorder sizeBorder size (pixels)BrushBrush nameBumpmap (alpha layer) blur radiusBurst colorC_hrome...Carve raised textCarve white areasCarved...Chalk colorChip Awa_y...Chrome white areasCircleCircuit seedClear unselected maskareaColorColor 1Color 2Color 3Color methodColumnsComic Boo_k...ConcaveCool _Metal...Copyright:Create new imageCreate shadowCreates four Guides around the bounding box of the current selection.Crystal...CubicCurrent CommandCustom GradientCustom _Gradient...Dark colorDarken only +(Better, but only for images with alot of white)Date:Default bumpmap settingsDefocusDensity (%)DepthDetail in MiddleDetail levelDiameterDirectionDownDraw _HSV Graph...Drop shadowDrop shadow X offsetDrop shadow Y offsetDrop shadow blur radiusDrop shadow colorDrop shadow opacityEdge amountEdge behaviourEffect size (pixels * 3)Effect size (pixels * 30)Effect size (pixels * 4)Effect size (pixels * 5)Effect size (pixels)Elli_ptical, Feathered...End XEnd YEnd blendEnding blendEpitrochoidEraseErase/fillError while executing %s -%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFadeoutFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrame colorFramesFrom top-left to bottom-rightGlow colorGlow radiusGlow size (pixels * 4)GradientGradient reverseGranularityGranularity (1 is Low)Granularity (1 is low)Graph scaleHeightHexagonHexagonsHighlight X offsetHighlight Y offsetHighlight colorHighlight opacityHit rateIIRImage Types:Image heightImage sizeImage to carveImage widthIndex imageIndex to n colors (0 = remain RGB)Insert layer namesIntermediate framesInvert directionKeep backgroundKeep selectionLand heightLeftLighting (degrees)LissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMask opacityMask sizeMax. blur radiusMosaic tile typeMottleNo matchesNot pressedNot pressed (active)NumberNumber of X tilesNumber of Y tilesNumber of bandsNumber of colorsNumber of framesNumber of linesNumber of times to whirlOctagonsOddOffset (pixels)Offset XOffset YOffsets (pixels * 2)OpacityOrientationOutline blur radiusOutline colorOutline gradient reversePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsPatternPattern (outline)Pattern (text)Pattern namePencilPentagonPixel amountPixelizePolygon: 10 sidesPolygon: 7 sidesPolygon: 8 sidesPolygon: 9 sidesPrepare for GIFPressedQuarter sizeRLERadiusRadius (pixels)Random seedRandomnessRelative length of shadowRemove backgroundRibbon spacingRibbon widthRightRippling strengthRoughnessRound ratioRowsRows/colsSIOD OutputScale XScale YScript ArgumentsScript ProgressScript-Fu Brush SelectionScript-Fu Color SelectionScript-Fu ConsoleScript-Fu File SelectionScript-Fu Folder SelectionScript-Fu Font SelectionScript-Fu Gradient SelectionScript-Fu Palette SelectionScript-Fu Server OptionsScript-Fu _ConsoleScript-Fu console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShapeShear lengthSizeSmoothSolid ColorSpace between layersSpacingSphere colorSpots density XSpots density YSpyrographSquareSquaresStainsStart XStart YStart angleStart blendStarting blendSupersampleTextText colorText color (active)Text gradient reverseText patternThicknessThread densityThread lengthThreshold (bigger 1<-->255 smaller)TileToolTransparent backgroundTriangleTurn from left to rightTypeUpUpper colorUpper color (active)Upper-left colorUse current gradientUse font _name as textUse pattern for outline instead of gradientUse pattern for text instead of gradientUse selection bounds instead of belowsWavelengthWhirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisions_Border (pixels)_Color scheme_Filter (regexp)_Labels_Search:_Start Server..._TextProject-Id-Version: gimp-script-fu 2.1.6 +%sEvenEven/oddFG-BG-HSVFG-BG-RGBFG-TransparentFade awayFadeoutFeatheringFile nameFilenameFill BG with patternFill angleFill with BGFlatten imageFontFont _size (pixels)Font colorFont size (pixels)Foreground colorFrame colorFramesFrom top-left to bottom-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 colorHighlight opacityHit rateHorizontalIIRImage Types:Image heightImage sizeImage to carveImage widthImigre-26...Index imageIndex to n colors (0 = remain RGB)Insert layer namesIntermediate framesInternal GIMP procedureInterpolationInvert directionKeep backgroundKeep selectionLand heightLeftLighting (degrees)Line _Nova...LinearLissajousLoopedLower colorLower color (active)Lower-right colorMake new backgroundMask opacityMask sizeMax. blur radiusMosaic tile typeMottleN_eon...NameNew Guide (by _Percent)...New Guides from _SelectionNew _Guide...Newsprint Text...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 YOffsets (pixels * 2)OpacityOrientationOutline blur radiusOutline colorOutline gradient reversePad colorPad opacityPaddingPadding XPadding YPadding around textPadding for transparent regionsParametersPatternPattern (outline)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 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 console mode allows only interactive invocationScript-Fu evaluate mode allows only noninteractive invocationScript-Fu: %sScript-fu Pattern SelectionSea depthSearch by _BlurbSearch by _NameSearching - please waitSearching by blurb - please waitSearching by name - please waitSeedSelect-by-color thresholdSeparate layerSepiaServer Logfile:Server Port:ShadowShadow X offsetShadow Y offsetShadow blur radiusShadow colorShadow darknessShadow depthShapeShear lengthShow Image _Structure...Simple _Beveled Button...SizeSmearSmoothSolid ColorSpace between layersSpacingSpeed (pixels/frame)Speed Text...Sphere colorSpots density XSpots density YSpyrographSquareSquaresSta_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 pattern for outline instead of gradientUse pattern for text instead of gradientUse selection bounds instead of belowsVerticalWavelengthWeb Title Header...Whirl angleWidthWidth of bandsWidth of gapsWork on copyWrapX divisionsY divisions_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..._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..._Waves..._Weave..._Xach-Effect...Project-Id-Version: gimp-script-fu 2.2.9 Report-Msgid-Bugs-To: -POT-Creation-Date: 2005-04-09 21:56+0200 -PO-Revision-Date: 2004-09-28 11:10+0800 -Last-Translator: Abel Cheung -Language-Team: Chinese (traditional) +POT-Creation-Date: 2005-07-07 10:24+0800 +PO-Revision-Date: 2005-07-07 21:56+0800 +Last-Translator: Abel Cheung +Language-Team: Chinese (traditional) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -%s:(ç„¡)/Script-Fu//擴展/Script-Fu文字é¡è‰²åŠ ä¸ŠèƒŒæ™¯åŠ ä¸Šå½±å­åŠ ä¸Šé™°å½±å™´æ§å¯èª¿æ•´å°ºå¯¸æ³¢å¹…角度平滑化套用所產生的圖層é®ç½©ä½œè€…:自動è£å‰ªèƒŒæ™¯é€æ˜Žåº¦èƒŒæ™¯é¡è‰²èƒŒæ™¯å½±åƒèƒŒæ™¯é¡è‰²èƒŒæ™¯å½±åƒæ£’狀圖高度棒狀圖長度æç¹ªæ–¹å¼ (ä¸ä½¿ç”¨)æ–œé¢é«˜åº¦(清晰度)æ–œé¢å¯¬åº¦é»‘色白底黑字混色漸層(文字)混色漸層(輪廓)混色漸層(文字)混色模å¼å€å¡Šå¤§å°æ°´å¹³æ¨¡ç³Šåž‚直模糊模糊化程度模糊邊框水平方å‘模糊化模糊åŠå¾‘模糊方å¼åž‚ç›´æ–¹å‘模糊化水平邊框大å°åž‚直邊框大å°é‚Šæ¡†é¡è‰²é‚Šæ¡†å¤§å°é‚Šæ¡†å¤§å°(åƒç´ )筆刷筆刷å稱Bumpmap (é€æ˜Žåœ–層) 模糊化åŠå¾‘爆發的é¡è‰²æ–‡å­—浮雕雕刻白色å€åŸŸç²‰ç­†é¡è‰²é›•åˆ»ç™½è‰²å€åŸŸåœ“形產生電路圖的隨機數來æºæ•¸å­—清除未é¸å–çš„é®ç½©å€åŸŸé¡è‰²é¡è‰² 1é¡è‰² 2é¡è‰² 3著色方å¼ç›´è¡Œç‰ˆæ¬Šï¼šç”¢ç”Ÿæ–°çš„å½±åƒç”¢ç”Ÿé™°å½±ç›®å‰çš„指令自製漸層範例深色åªæœƒè®Šé»‘ -(比較é©ç”¨æ–¼æ·ºè‰²å½±åƒ)日期:é è¨­ Bumpmap 設定散焦密度(%)深度中央部分較詳細精細程度直徑下影å­é™°å½±æ°´å¹³ä½ç½®é™°å½±åž‚ç›´ä½ç½®é™°å½±æ¨¡ç³ŠåŠå¾‘é™°å½±é¡è‰²é™°å½±é€æ˜Žåº¦æ邊粗幼度邊緣處ç†æ–¹å¼æ•ˆæžœå¤§å°(åƒç´ Ã—3)效果大å°(åƒç´ Ã—30)效果大å°(åƒç´ Ã—4)效果大å°(åƒç´ Ã—5)效果大å°(åƒç´ )終點的水平座標終點的垂直座標漸層çµæŸé¡è‰²æ··åˆé¡è‰²(2)外旋輪線擦拭擦拭/填色當執行 %s 時發生錯誤 -%s雙數雙數/單數å‰æ™¯-背景-HSVå‰æ™¯-背景-RGBå‰æ™¯-é€æ˜Žæ·¡å‡ºæ·¡å‡ºç¾½åŒ–檔案å稱檔案å稱以圖樣填充背景圓弧度數填上背景é¡è‰²å°‡å½±åƒå¹³é¢åŒ–字型字型大å°[åƒç´ ](_S)å­—åž‹é¡è‰²å­—型大å°(åƒç´ )å‰æ™¯é¡è‰²é‚Šæ¡†é¡è‰²ç•«æ ¼æ•¸ç›®å¾žå·¦ä¸Šè§’至å³ä¸‹è§’發光é¡è‰²ç™¼å…‰åŠå¾‘發光大å°(åƒç´ Ã—4)漸層文字內部使用相åæ–¹å‘漸層精細度精細度(1 表示低)精細度(1 表示低)圖形比例高度正六邊形正六邊形高亮度å€æ°´å¹³ä½ç½®é«˜äº®åº¦å€åž‚ç›´ä½ç½®é«˜äº®åº¦å€é¡è‰²é«˜äº®åº¦å€é€æ˜Žåº¦æ’žæ“ŠçŽ‡IIRå½±åƒé¡žåž‹ï¼šå½±åƒé«˜åº¦å½±åƒå°ºå¯¸æº–備雕刻的影åƒå½±åƒå¯¬åº¦ä½¿ç”¨ç´¢å¼•è‰²æ¸›å°‘至 n 種é¡è‰²(0 = ä¿æŒ RGB 模å¼)加入圖層å稱中間的畫格數目相åæ–¹å‘ä¿ç•™èƒŒæ™¯ä¿ç•™é¸æ“‡å€åŸŸé™¸åœ°é«˜åº¦å·¦ç‡ˆå…‰æ–¹å‘(度)Lissajous來回漸變底部é¡è‰²åº•éƒ¨é¡è‰²(有輸入焦點)å³ä¸‹è§’é¡è‰²è£½ä½œæ–°çš„背景圖層é®ç½©é€æ˜Žåº¦é®ç½©å°ºå¯¸æœ€å¤§æ¨¡ç³ŠåŠå¾‘鑲嵌磚片類型斑點沒有任何一項符åˆæ¢ä»¶æœªæŒ‰ä¸‹æœªæŒ‰ä¸‹(有輸入焦點)數字水平å€åŸŸæ•¸ç›®åž‚ç›´å€åŸŸæ•¸ç›®è‰²å¸¶æ•¸ç›®é¡è‰²æ•¸ç›®ç•«æ ¼æ•¸ç›®ç·šæ¢æ•¸ç›®æ—‹è½‰æ¬¡æ•¸æ­£å…«é‚Šå½¢å–®æ•¸å移é‡(åƒç´ )X å移é‡Y å移é‡å移é‡(åƒç´ Ã—2)é€æ˜Žåº¦æ–¹å‘輪廓模糊åŠå¾‘輪廓é¡è‰²è¼ªå»“使用相åæ–¹å‘漸層填色所用的é¡è‰²å¡«è‰²çš„é€æ˜Žåº¦ç•™é‚Šæ°´å¹³å移è·é›¢åž‚ç›´å移è·é›¢æ–‡å­—之間的間隔填上其它é¡è‰²è¡¨ç¤ºé€æ˜Žå€åŸŸåœ–樣圖樣(輪廓)圖樣(文字)圖樣å稱鉛筆正五邊形格å­å¤§å°æ‰“æ ¼å­æ­£å邊形正七邊形正八邊形正ä¹é‚Šå½¢æº–備製作 GIF已按下四分之一的大å°æ˜¯RLEåŠå¾‘åŠå¾‘(åƒç´ )隨機數來æºæ•¸å­—隨機程度陰影相å°é•·åº¦ç§»é™¤èƒŒæ™¯çµ²å¸¶é–“隔絲帶寬度å³æ¼£æ¼ªé«˜åº¦ç²—糙度邊角圓滑程度橫列列/è¡ŒSIOD 輸出水平比例垂直比例Script åƒæ•¸Script 進度Script-Fu 筆刷é¸æ“‡Script-Fu é¡è‰²é¸æ“‡Script-Fu 訊æ¯è¦–窗Script-Fu 檔案é¸æ“‡Script-Fu 資料夾é¸æ“‡Script-Fu å­—åž‹é¸æ“‡Script-Fu 漸層é¸æ“‡Script-Fu 色盤é¸æ“‡Script-Fu 伺æœç¨‹å¼é¸é …S_cript-Fu 訊æ¯è¦–窗Script-Fu 訊æ¯è¦–窗模å¼åªå…許以互動方å¼åŸ·è¡ŒScript-Fu 執行模å¼åªå…許以éžäº’å‹•æ–¹å¼åŸ·è¡ŒScript-Fu:%sScript-Fu 圖樣é¸æ“‡æµ·åº•æ·±åº¦ä¾ç°¡ä»‹æœå°‹(_B)ä¾å稱æœå°‹(_N)正在æœå°‹ ─ è«‹ç¨ç­‰æ­£åœ¨ä¾ç°¡ä»‹æœå°‹ ─ è«‹ç¨ç­‰æ­£åœ¨ä¾å稱æœå°‹ ─ è«‹ç¨ç­‰ç¨®å­ä¾è‰²å½©é¸æ“‡æ™‚使用的臨界值使用新圖層深è¤è‰²ä¼ºæœç¨‹å¼ç´€éŒ„檔:伺æœç¨‹å¼é€£æŽ¥åŸ ï¼šé™°å½±é™°å½±çš„æ°´å¹³ä½ç½®é™°å½±çš„åž‚ç›´ä½ç½®é™°å½±æ¨¡ç³ŠåŠå¾‘é™°å½±é¡è‰²é™°å½±é»‘暗度陰影深度形狀推移長度尺寸平滑單色圖層之間的空間間隔çƒé«”é¡è‰²æ°´å¹³æ–‘點密度垂直斑點密度旋輪線正方形正方形污漬起點的水平座標起點的垂直座標開始角度漸層開始é¡è‰²æ··åˆé¡è‰²(1)超é‡å–樣文字文字é¡è‰²æ–‡å­—é¡è‰²(有輸入焦點)文字內部使用相åæ–¹å‘漸層文字圖樣厚度線æ¢å¯†åº¦ç·šæ¢é•·åº¦è‡¨ç•Œå€¼ [(較大) 1â†â†’255 (較å°)]å¯é‹ªæŽ’工具é€æ˜ŽèƒŒæ™¯ä¸‰è§’形由左至å³æ—‹è½‰é¡žåž‹ä¸Šé ‚部é¡è‰²é ‚部é¡è‰²(有輸入焦點)左上角é¡è‰²ä½¿ç”¨ç›®å‰çš„漸層在圖中顯示字型å稱本身(_N)使用圖樣而ä¸æ˜¯æ¼¸å±¤ä¾†ç¹ªç•«è¼ªå»“使用圖樣而ä¸æ˜¯æ¼¸å±¤ä¾†ç¹ªç•«æ–‡å­—使用é¸æ“‡ç¯„åœæˆ–å½±åƒç¯„åœï¼Œè€Œä¸ç†æœƒä»¥ä¸‹çš„數值波長旋轉角度寬度色帶寬度間隔寬度在影åƒè¤‡è£½æœ¬ä¸Šé€²è¡Œç¹žåˆ°å¦ä¸€é‚Šæ°´å¹³åˆ†éš”æ–¹å¼åž‚直分隔方å¼é‚Šæ¡†å¤§å°[åƒç´ ](_B)色彩é¸æ“‡(_C)å­—åž‹å稱éŽæ¿¾è¡¨ç¤ºå¼ (rege_xp)圖中顯示字型å稱(_L)æœå°‹(_S)啟動伺æœç¨‹å¼(_S)...文字(_T) \ No newline at end of file +%d 個程åº%s:(ç„¡)/Script-Fu/1 個程åºç«‹é«”輪廓(_O)...ç«‹é«” _Truchet.../Script-Fu/變化/Script-Fu/é€æ˜Žåº¦è½‰ç‚ºæ¨™èªŒ/Script-Fu/å‹•ç•«/Script-Fu/è£é£¾/Script-Fu/æ繪/Script-Fu/é¸æ“‡å€åŸŸ/Script-Fu/é™°å½±/Script-Fu/工具/求助/GIMP 線上資æº/擴展/Script-Fu/擴展/Script-Fu/按鈕/擴展/Script-Fu/標誌/擴展/Script-Fu/製作筆刷/擴展/Script-Fu/其它/擴展/Script-Fu/圖樣/擴展/Script-Fu/工具/擴展/Script-Fu/網é ä½ˆæ™¯/異樣發光/擴展/Script-Fu/網é ä½ˆæ™¯/Classic.Gimp.Org文字é¡è‰²åŠ ä¸Šæ–œé‚Š(_E)...加上邊框(_B)...加上背景加上影å­åŠ ä¸Šé™°å½±é¡å¤–資訊噴æ§ç•°æ¨£ç™¼å…‰(_G)...異樣霓虹管(_N)...å¯èª¿æ•´å°ºå¯¸æ³¢å¹…角度平滑化套用所產生的圖層é®ç½©ä½œè€…:自動è£å‰ªèƒŒæ™¯é€æ˜Žåº¦åŸºæœ¬ _II...按鈕(_U)...背景é¡è‰²èƒŒæ™¯å½±åƒèƒŒæ™¯é¡è‰²èƒŒæ™¯å½±åƒæ£’狀圖高度棒狀圖長度æç¹ªæ–¹å¼ (ä¸ä½¿ç”¨)æ–œé¢é«˜åº¦(清晰度)æ–œé¢é«˜åº¦(清晰度)æ–œé¢å¯¬åº¦é»‘色白底黑字混色(_D)...混色漸層(文字)混色漸層(輪廓)混色漸層(文字)混色模å¼å€å¡Šå¤§å°æ°´å¹³æ¨¡ç³Šåž‚直模糊模糊化程度模糊邊框水平方å‘模糊化模糊åŠå¾‘模糊方å¼åž‚ç›´æ–¹å‘模糊化乳牛斑紋(_V)...水平邊框大å°åž‚直邊框大å°é‚Šæ¡†é¡è‰²é‚Šæ¡†å¤§å°é‚Šæ¡†å¤§å°(åƒç´ )筆刷筆刷å稱Bumpmap (é€æ˜Žåœ–層) 模糊化åŠå¾‘爆發的é¡è‰²é鉻(_H)...文字浮雕雕刻白色å€åŸŸé›•åˆ»...粉筆é¡è‰²é‘¿å­—(_Y)...雕刻白色å€åŸŸåœ“形產生電路圖的隨機數來æºæ•¸å­—清除未é¸å–çš„é®ç½©å€åŸŸé¡è‰²é¡è‰² 1é¡è‰² 2é¡è‰² 3著色方å¼ç›´è¡Œæ¼«ç•«æ›¸(_K)...凹角金屬冷光(_M)...版權:產生新的影åƒç”¢ç”Ÿé™°å½±ç”¢ç”Ÿ 4 æ¢åŒ…åœé¸æ“‡å€åŸŸçš„åƒè€ƒç·šã€‚水晶...立方目å‰çš„指令自製漸層範例自製漸層範例(_G)...深色åªæœƒè®Šé»‘ +(比較é©ç”¨æ–¼æ·ºè‰²å½±åƒ)日期:é è¨­ Bumpmap 設定散焦密度(%)深度中央部分較詳細精細程度直徑方å‘下繪製 _HSV 分佈圖...å½±å­é™°å½±æ°´å¹³ä½ç½®é™°å½±åž‚ç›´ä½ç½®é™°å½±æ¨¡ç³ŠåŠå¾‘é™°å½±é¡è‰²é™°å½±é€æ˜Žåº¦æ邊粗幼度邊緣處ç†æ–¹å¼æ•ˆæžœå¤§å°(åƒç´ Ã—3)效果大å°(åƒç´ Ã—30)效果大å°(åƒç´ Ã—4)效果大å°(åƒç´ Ã—5)效果大å°(åƒç´ )橢圓ã€ç¾½åŒ–(_P)...終點 X 座標終點 Y 座標漸層çµæŸé¡è‰²æ··åˆé¡è‰²(2)外旋輪線擦拭擦拭/填色當執行 %s 時發生錯誤 +%s雙數雙數/單數å‰æ™¯-背景-HSVå‰æ™¯-背景-RGBå‰æ™¯-é€æ˜Žæ·¡å‡ºæ·¡å‡ºç¾½åŒ–檔案å稱檔案å稱以圖樣填充背景圓弧度數填上背景é¡è‰²å°‡å½±åƒå¹³é¢åŒ–字型字型大å°[åƒç´ ](_S)å­—åž‹é¡è‰²å­—型大å°(åƒç´ )å‰æ™¯é¡è‰²é‚Šæ¡†é¡è‰²ç•«æ ¼æ•¸ç›®å¾žå·¦ä¸Šè§’至å³ä¸‹è§’GIMP 擴展功能GIMP 增效模組光é¢(_S)...發光文字(_W)...發光é¡è‰²ç™¼å…‰åŠå¾‘發光大å°(åƒç´ Ã—4)漸層漸層斜é¢(_L)...文字內部使用相åæ–¹å‘漸層精細度精細度(1 表示低)精細度(1 表示低)圖形比例標題(_E)...高度正六邊形正六邊形高亮度å€æ°´å¹³ä½ç½®é«˜äº®åº¦å€åž‚ç›´ä½ç½®é«˜äº®åº¦å€é¡è‰²é«˜äº®åº¦å€é€æ˜Žåº¦æ’žæ“ŠçŽ‡æ°´å¹³IIRå½±åƒé¡žåž‹ï¼šå½±åƒé«˜åº¦å½±åƒå°ºå¯¸æº–備雕刻的影åƒå½±åƒå¯¬åº¦Imigre-26...使用索引色減少至 n 種é¡è‰²(0 = ä¿æŒ RGB 模å¼)加入圖層å稱中間的畫格數目GIMP 內部程åºå…§æ’法相åæ–¹å‘ä¿ç•™èƒŒæ™¯ä¿ç•™é¸æ“‡å€åŸŸé™¸åœ°é«˜åº¦å·¦ç‡ˆå…‰æ–¹å‘(度)放射光線(_N)...線性Lissajous來回漸變底部é¡è‰²åº•éƒ¨é¡è‰²(有輸入焦點)å³ä¸‹è§’é¡è‰²è£½ä½œæ–°çš„背景圖層é®ç½©é€æ˜Žåº¦é®ç½©å°ºå¯¸æœ€å¤§æ¨¡ç³ŠåŠå¾‘鑲嵌磚片類型斑點霓虹管(_E)...å稱新增åƒè€ƒç·š[指定ä½ç½®](_P)...ç”±é¸æ“‡å€åŸŸç”¢ç”Ÿåƒè€ƒç·š(_S)新增åƒè€ƒç·š(_G)...å°åˆ·æ–‡å­—...沒有任何一項符åˆæ¢ä»¶ç„¡æœªæŒ‰ä¸‹æœªæŒ‰ä¸‹(有輸入焦點)數字水平å€åŸŸæ•¸ç›®åž‚ç›´å€åŸŸæ•¸ç›®è‰²å¸¶æ•¸ç›®é¡è‰²æ•¸ç›®ç•«æ ¼æ•¸ç›®ç·šæ¢æ•¸ç›®æ—‹è½‰æ¬¡æ•¸æ­£å…«é‚Šå½¢å–®æ•¸å移é‡(åƒç´ )X å移é‡Y å移é‡å移é‡(åƒç´ Ã—2)é€æ˜Žåº¦æ–¹å‘輪廓模糊åŠå¾‘輪廓é¡è‰²è¼ªå»“使用相åæ–¹å‘漸層填色所用的é¡è‰²å¡«è‰²çš„é€æ˜Žåº¦ç•™é‚Šæ°´å¹³å移è·é›¢åž‚ç›´å移è·é›¢æ–‡å­—之間的間隔填上其它é¡è‰²è¡¨ç¤ºé€æ˜Žå€åŸŸåƒæ•¸åœ–樣圖樣(輪廓)圖樣(文字)圖樣å稱鉛筆正五邊形格å­å¤§å°æ‰“æ ¼å­å¢žæ•ˆæ¨¡çµ„登記紀錄(_R)æ­£å邊形正七邊形正八邊形正ä¹é‚Šå½¢ä½ç½® (%)準備製作 GIF已按下程åºç€è¦½å™¨å››åˆ†ä¹‹ä¸€çš„大å°æ˜¯RLEåŠå¾‘åŠå¾‘ (%)åŠå¾‘(åƒç´ )隨機數來æºæ•¸å­—隨機程度矩形ã€ç¾½åŒ–(_C)...陰影相å°é•·åº¦ç§»é™¤èƒŒæ™¯æ繪地圖(_M)...回傳值絲帶間隔絲帶寬度å³æ¼£æ¼ªé«˜åº¦ç²—糙度邊角圓滑程度擴大為圓角矩形(_R)...橫列列/è¡ŒSIOD 輸出新å¼é鉻...水平比例垂直比例Script åƒæ•¸Script 進度Script-Fu 筆刷é¸æ“‡Script-Fu é¡è‰²é¸æ“‡Script-Fu 訊æ¯è¦–窗Script-Fu 檔案é¸æ“‡Script-Fu 資料夾é¸æ“‡Script-Fu å­—åž‹é¸æ“‡Script-Fu 漸層é¸æ“‡Script-Fu 色盤é¸æ“‡Script-Fu 伺æœç¨‹å¼é¸é …S_cript-Fu 訊æ¯è¦–窗Script-Fu 訊æ¯è¦–窗模å¼åªå…許以互動方å¼åŸ·è¡ŒScript-Fu 執行模å¼åªå…許以éžäº’å‹•æ–¹å¼åŸ·è¡ŒScript-Fu:%sScript-Fu 圖樣é¸æ“‡æµ·åº•æ·±åº¦ä¾ç°¡ä»‹æœå°‹(_B)ä¾å稱æœå°‹(_N)正在æœå°‹ ─ è«‹ç¨ç­‰æ­£åœ¨ä¾ç°¡ä»‹æœå°‹ ─ è«‹ç¨ç­‰æ­£åœ¨ä¾å稱æœå°‹ ─ è«‹ç¨ç­‰ç¨®å­ä¾è‰²å½©é¸æ“‡æ™‚使用的臨界值使用新圖層深è¤è‰²ä¼ºæœç¨‹å¼ç´€éŒ„檔:伺æœç¨‹å¼é€£æŽ¥åŸ ï¼šé™°å½±é™°å½±çš„æ°´å¹³ä½ç½®é™°å½±çš„åž‚ç›´ä½ç½®é™°å½±æ¨¡ç³ŠåŠå¾‘é™°å½±é¡è‰²é™°å½±é»‘暗度陰影深度形狀推移長度顯示影åƒçµæ§‹(_S)...簡單斜é¢æŒ‰éˆ•(_B)...尺寸推移平滑單色圖層之間的空間間隔速度 (æ¯ç§’多少åƒç´ )動感文字...çƒé«”é¡è‰²æ°´å¹³æ–‘點密度垂直斑點密度旋輪線正方形正方形星際(_R)...污漬超新星爆發(_U)...起點 X 座標起點 Y 座標開始角度漸層開始é¡è‰²æ··åˆé¡è‰²(1)超é‡å–樣å¯é‹ªæŽ’å¼æ—‹æ¸¦(_T)...T_ruchet...管狀圖細分項目的按鈕標籤(_U)...暫時性程åºæ–‡å­—文字åœåœˆ...文字é¡è‰²æ–‡å­—é¡è‰²(有輸入焦點)文字內部使用相åæ–¹å‘漸層文字圖樣厚度線æ¢å¯†åº¦ç·šæ¢å¯†åº¦ç·šæ¢é•·åº¦è‡¨ç•Œå€¼ [(較大) 1â†â†’255 (較å°)]å¯é‹ªæŽ’變æˆç­†åˆ·(_B)...變æˆæ–°å½±åƒ(_I)變æˆåœ–樣(_P)...工具é€æ˜ŽèƒŒæ™¯ä¸‰è§’形管狀圖å†ç´°åˆ†é …目的按鈕標籤(_E)...由左至å³æ—‹è½‰é¡žåž‹ä¸Šé ‚部é¡è‰²é ‚部é¡è‰²(有輸入焦點)左上角é¡è‰²ä½¿ç”¨ç›®å‰çš„漸層在圖中顯示字型å稱本身(_N)使用圖樣而ä¸æ˜¯æ¼¸å±¤ä¾†ç¹ªç•«è¼ªå»“使用圖樣而ä¸æ˜¯æ¼¸å±¤ä¾†ç¹ªç•«æ–‡å­—使用é¸æ“‡ç¯„åœæˆ–å½±åƒç¯„åœï¼Œè€Œä¸ç†æœƒä»¥ä¸‹çš„數值垂直波長網é æ¨™é¡Œ...旋轉角度寬度色帶寬度間隔寬度在影åƒè¤‡è£½æœ¬ä¸Šé€²è¡Œç¹žåˆ°å¦ä¸€é‚Šæ°´å¹³åˆ†éš”æ–¹å¼åž‚直分隔方å¼ç®­é ­(_A)...基本 _I...模糊邊框(_F)...混色(_B)...邊框大å°[åƒç´ ](_B)ç€è¦½(_B)...圓點(_B)...迷彩圖案(_C)...粉筆(_C)...電路圖(_C)...布料化(_C)...咖啡漬(_C)...色彩é¸æ“‡(_C)開發者網é (_D)ä¾µè•å€åŸŸ(_D)...å½±å­(_D)...橢圓(_E)...隔行清除(_E)...輪廓褪色(_F)...å­—åž‹å稱éŽæ¿¾è¡¨ç¤ºå¼ (rege_xp)平地(_F)...字型圖(_F)...çµå†°(_F)...模糊邊框(_F)...一般管狀圖標籤(_G)...網格(_G)...水平分隔線(_H)...圖中顯示字型å稱(_L)陸地(_L)...溶岩(_L)...主網é (_M)舊照片(_O)...ç²’å­è»Œè¿¹(_P)...é€è¦–法(_P)...éµè¡€æˆ°å£«(_P)...矩形(_R)...移除所有åƒè€ƒç·š(_R)漣漪(_R)...圓角按鈕(_R)...圓角(_R)...æœå°‹(_S)投影片(_S)...å°åž‹æ¨™é¡Œ(_S)...çƒé«”(_S)...旋轉çƒé«”(_S)...旋輪線(_S)...啟動伺æœç¨‹å¼(_S)...旋渦圖案(_S)...文字(_T)ç´‹ç†(_T)...å¯é‹ªæŽ’å¼æ¨¡ç³ŠåŒ–(_T)...管狀圖按鈕的標籤(_T)...波浪(_W)...交織(_W)..._Xach 效果... \ No newline at end of file diff -uraN gimp-2.2.8/po-script-fu/zh_TW.po gimp-2.2.9/po-script-fu/zh_TW.po --- gimp-2.2.8/po-script-fu/zh_TW.po 2005-05-08 23:42:33.000000000 +0200 +++ gimp-2.2.9/po-script-fu/zh_TW.po 2005-08-15 12:07:08.000000000 +0200 @@ -2,16 +2,16 @@ # Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc. # Chun-Chung Chen (陳俊仲) , 2001. # æž—ä½³å® , 2001. -# Abel Cheung , 2001, 2003, 2004. +# Abel Cheung , 2001, 03-05. # msgid "" msgstr "" -"Project-Id-Version: gimp-script-fu 2.1.6\n" +"Project-Id-Version: gimp-script-fu 2.2.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-09 21:56+0200\n" -"PO-Revision-Date: 2004-09-28 11:10+0800\n" -"Last-Translator: Abel Cheung \n" -"Language-Team: Chinese (traditional) \n" +"POT-Creation-Date: 2005-07-07 10:24+0800\n" +"PO-Revision-Date: 2005-07-07 21:56+0800\n" +"Last-Translator: Abel Cheung \n" +"Language-Team: Chinese (traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -34,9 +34,8 @@ msgstr "ç›®å‰çš„指令" #: ../plug-ins/script-fu/script-fu-console.c:267 -#, fuzzy msgid "_Browse..." -msgstr "ç€è¦½..." +msgstr "ç€è¦½(_B)..." #: ../plug-ins/script-fu/script-fu-console.c:548 msgid "Script-Fu evaluate mode allows only noninteractive invocation" @@ -144,15 +143,15 @@ "當執行 %s 時發生錯誤\n" "%s" -#: ../plug-ins/script-fu/script-fu-server.c:642 +#: ../plug-ins/script-fu/script-fu-server.c:648 msgid "Script-Fu Server Options" msgstr "Script-Fu 伺æœç¨‹å¼é¸é …" -#: ../plug-ins/script-fu/script-fu-server.c:670 +#: ../plug-ins/script-fu/script-fu-server.c:676 msgid "Server Port:" msgstr "伺æœç¨‹å¼é€£æŽ¥åŸ ï¼š" -#: ../plug-ins/script-fu/script-fu-server.c:676 +#: ../plug-ins/script-fu/script-fu-server.c:682 msgid "Server Logfile:" msgstr "伺æœç¨‹å¼ç´€éŒ„檔:" @@ -176,7 +175,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 @@ -206,49 +205,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 "立體輪廓(_O)..." #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:2 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:1 @@ -271,9 +269,8 @@ #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:1 #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:1 #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alpha to Logo" -msgstr "/Script-Fu/é€æ˜Žåº¦è½‰ç‚ºæ¨™èªŒ/霓虹管(_E)..." +msgstr "/Script-Fu/é€æ˜Žåº¦è½‰ç‚ºæ¨™èªŒ" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:2 @@ -304,9 +301,8 @@ #: ../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 "/擴展/Script-Fu" +msgstr "/擴展/Script-Fu/標誌" #: ../plug-ins/script-fu/scripts/3d-outline.scm.h:4 msgid "Bumpmap (alpha layer) blur radius" @@ -469,7 +465,7 @@ #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:1 msgid "3_D Truchet..." -msgstr "" +msgstr "ç«‹é«” _Truchet..." #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:2 #: ../plug-ins/script-fu/scripts/camo.scm.h:1 @@ -479,9 +475,8 @@ #: ../plug-ins/script-fu/scripts/swirltile.scm.h:1 #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:1 #: ../plug-ins/script-fu/scripts/truchet.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Patterns" -msgstr "/擴展/Script-Fu/圖樣/陸地(_L)..." +msgstr "/擴展/Script-Fu/圖樣" #: ../plug-ins/script-fu/scripts/3dTruchet.scm.h:3 #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:2 @@ -557,19 +552,17 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:1 #: ../plug-ins/script-fu/scripts/round-corners.scm.h:1 #: ../plug-ins/script-fu/scripts/slide.scm.h:1 -#, fuzzy msgid "/Script-Fu/Decor" -msgstr "/Script-Fu/è£é£¾/幻燈片(_S)..." +msgstr "/Script-Fu/è£é£¾" #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:2 msgid "Add B_evel..." -msgstr "" +msgstr "加上斜邊(_E)..." #: ../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 "ä¿ç•™ Bump 圖層" +msgstr "" #: ../plug-ins/script-fu/scripts/add-bevel.scm.h:5 #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:10 @@ -581,9 +574,8 @@ msgstr "在影åƒè¤‡è£½æœ¬ä¸Šé€²è¡Œ" #: ../plug-ins/script-fu/scripts/addborder.scm.h:2 -#, fuzzy msgid "Add _Border..." -msgstr "邊框" +msgstr "加上邊框(_B)..." #: ../plug-ins/script-fu/scripts/addborder.scm.h:3 msgid "Border X size" @@ -605,9 +597,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 "/擴展/Script-Fu/網é ä½ˆæ™¯/異樣發光/水平分隔線(_H)..." +msgstr "/擴展/Script-Fu/網é ä½ˆæ™¯/異樣發光" #: ../plug-ins/script-fu/scripts/alien-glow-arrow.scm.h:3 #: ../plug-ins/script-fu/scripts/beveled-pattern-arrow.scm.h:2 @@ -663,9 +654,8 @@ #: ../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 "ç®­é ­(_A)..." #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:3 msgid "Bar height" @@ -677,9 +667,8 @@ #: ../plug-ins/script-fu/scripts/alien-glow-bar.scm.h:7 #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:5 -#, fuzzy msgid "_Hrule..." -msgstr "ç€è¦½..." +msgstr "水平分隔線(_H)..." #: ../plug-ins/script-fu/scripts/alien-glow-bullet.scm.h:5 #: ../plug-ins/script-fu/scripts/text-circle.scm.h:6 @@ -689,14 +678,13 @@ #: ../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 "圓點(_B)..." #: ../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 "按鈕(_U)..." #: ../plug-ins/script-fu/scripts/alien-glow-button.scm.h:8 msgid "Glow radius" @@ -724,7 +712,7 @@ #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:3 msgid "Alien _Glow..." -msgstr "" +msgstr "異樣發光(_G)..." #: ../plug-ins/script-fu/scripts/alien-glow-logo.scm.h:7 msgid "Glow size (pixels * 4)" @@ -732,7 +720,7 @@ #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:3 msgid "Alien _Neon..." -msgstr "" +msgstr "異樣霓虹管(_N)..." #: ../plug-ins/script-fu/scripts/alien-neon-logo.scm.h:5 msgid "Fade away" @@ -752,17 +740,16 @@ #: ../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 "/擴展/Script-Fu" +msgstr "/擴展/Script-Fu/按鈕" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:2 #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:6 @@ -781,9 +768,8 @@ msgstr "已按下" #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:8 -#, fuzzy msgid "Simple _Beveled Button..." -msgstr "/擴展/Script-Fu/按鈕/簡單斜é¢æŒ‰éˆ•(_B)..." +msgstr "簡單斜é¢æŒ‰éˆ•(_B)..." #: ../plug-ins/script-fu/scripts/beveled-button.scm.h:11 msgid "Upper-left color" @@ -794,9 +780,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 "/擴展/Script-Fu/網é ä½ˆæ™¯/æ–œé¢åœ–樣/ç®­é ­(_A)..." +msgstr "" #: ../plug-ins/script-fu/scripts/beveled-pattern-bullet.scm.h:2 msgid "Diameter" @@ -810,7 +795,7 @@ #: ../plug-ins/script-fu/scripts/beveled-pattern-heading.scm.h:4 msgid "H_eading..." -msgstr "" +msgstr "標題(_E)..." #: ../plug-ins/script-fu/scripts/beveled-pattern-hrule.scm.h:2 #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:5 @@ -832,9 +817,8 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:1 #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:1 #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:1 -#, fuzzy msgid "/Script-Fu/Animators" -msgstr "/Script-Fu/å‹•ç•«/漸變(_B)..." +msgstr "/Script-Fu/å‹•ç•«" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:2 msgid "Intermediate frames" @@ -849,13 +833,12 @@ msgstr "最大模糊åŠå¾‘" #: ../plug-ins/script-fu/scripts/blend-anim.scm.h:5 -#, fuzzy msgid "_Blend..." -msgstr "ç€è¦½..." +msgstr "混色(_B)..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:4 msgid "Blen_ded..." -msgstr "" +msgstr "混色(_D)..." #: ../plug-ins/script-fu/scripts/blended-logo.scm.h:5 msgid "Blend mode" @@ -907,7 +890,7 @@ #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:5 msgid "Bo_vination..." -msgstr "" +msgstr "乳牛斑紋(_V)..." #: ../plug-ins/script-fu/scripts/bovinated-logo.scm.h:8 msgid "Spots density X" @@ -951,7 +934,7 @@ #: ../plug-ins/script-fu/scripts/burn-in-anim.scm.h:11 msgid "Speed (pixels/frame)" -msgstr "" +msgstr "速度 (æ¯ç§’多少åƒç´ )" #: ../plug-ins/script-fu/scripts/camo.scm.h:2 msgid "Color 1" @@ -982,13 +965,12 @@ #: ../plug-ins/script-fu/scripts/camo.scm.h:9 msgid "_Camouflage..." -msgstr "" +msgstr "迷彩圖案(_C)..." #: ../plug-ins/script-fu/scripts/carve-it.scm.h:1 #: ../plug-ins/script-fu/scripts/chrome-it.scm.h:1 -#, fuzzy msgid "/Script-Fu/Stencil Ops" -msgstr "/Script-Fu/é¸æ“‡å€åŸŸ/變æˆæ–°å½±åƒ(_I)..." +msgstr "" #: ../plug-ins/script-fu/scripts/carve-it.scm.h:2 msgid "C_arve-It..." @@ -1012,7 +994,7 @@ #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:4 msgid "Carved..." -msgstr "" +msgstr "雕刻..." #: ../plug-ins/script-fu/scripts/carved-logo.scm.h:7 msgid "Padding around text" @@ -1024,7 +1006,7 @@ #: ../plug-ins/script-fu/scripts/chalk.scm.h:8 msgid "_Chalk..." -msgstr "" +msgstr "粉筆(_C)..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:3 msgid "Blur amount" @@ -1032,7 +1014,7 @@ #: ../plug-ins/script-fu/scripts/chip-away.scm.h:4 msgid "Chip Awa_y..." -msgstr "" +msgstr "é‘¿å­—(_Y)..." #: ../plug-ins/script-fu/scripts/chip-away.scm.h:5 msgid "Chip amount" @@ -1055,9 +1037,8 @@ 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 @@ -1096,9 +1077,8 @@ msgstr "" #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:5 -#, fuzzy msgid "C_hrome..." -msgstr "ç€è¦½..." +msgstr "é鉻(_H)..." #: ../plug-ins/script-fu/scripts/chrome-logo.scm.h:8 msgid "Offsets (pixels * 2)" @@ -1109,9 +1089,8 @@ #: ../plug-ins/script-fu/scripts/lava.scm.h:1 #: ../plug-ins/script-fu/scripts/line-nova.scm.h:1 #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:1 -#, fuzzy msgid "/Script-Fu/Render" -msgstr "/Script-Fu/æ繪/熔岩(_L)..." +msgstr "/Script-Fu/æ繪" #: ../plug-ins/script-fu/scripts/circuit.scm.h:2 msgid "Circuit seed" @@ -1139,18 +1118,16 @@ msgstr "使用新圖層" #: ../plug-ins/script-fu/scripts/circuit.scm.h:7 -#, fuzzy msgid "_Circuit..." -msgstr "產生電路圖的隨機數來æºæ•¸å­—" +msgstr "電路圖(_C)..." #: ../plug-ins/script-fu/scripts/clothify.scm.h:1 #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:1 #: ../plug-ins/script-fu/scripts/predator.scm.h:1 #: ../plug-ins/script-fu/scripts/unsharp-mask.scm.h:1 #: ../plug-ins/script-fu/scripts/weave.scm.h:1 -#, fuzzy msgid "/Script-Fu/Alchemy" -msgstr "/Script-Fu/變化/交織(_W)..." +msgstr "/Script-Fu/變化" #: ../plug-ins/script-fu/scripts/clothify.scm.h:2 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:2 @@ -1177,7 +1154,7 @@ #: ../plug-ins/script-fu/scripts/clothify.scm.h:7 msgid "_Clothify..." -msgstr "" +msgstr "布料化(_C)..." #: ../plug-ins/script-fu/scripts/coffee.scm.h:2 msgid "" @@ -1193,11 +1170,11 @@ #: ../plug-ins/script-fu/scripts/coffee.scm.h:4 msgid "_Coffee Stain..." -msgstr "" +msgstr "咖啡漬(_C)..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:4 msgid "Comic Boo_k..." -msgstr "" +msgstr "漫畫書(_K)..." #: ../plug-ins/script-fu/scripts/comic-logo.scm.h:9 msgid "Outline color" @@ -1210,7 +1187,7 @@ #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:4 msgid "Cool _Metal..." -msgstr "" +msgstr "金屬冷光(_M)..." #: ../plug-ins/script-fu/scripts/coolmetal-logo.scm.h:5 #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:4 @@ -1223,16 +1200,15 @@ #: ../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 "/Script-Fu/é¸æ“‡å€åŸŸ/變æˆæ–°å½±åƒ(_I)..." +msgstr "/Script-Fu/é¸æ“‡å€åŸŸ" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:2 msgid "Granularity (1 is low)" @@ -1255,16 +1231,14 @@ msgstr "臨界值 [(較大) 1â†â†’255 (較å°)]" #: ../plug-ins/script-fu/scripts/distress-selection.scm.h:8 -#, fuzzy msgid "_Distress Selection..." -msgstr "/Script-Fu/é¸æ“‡å€åŸŸ/ä¾µè•å€åŸŸ(_D)..." +msgstr "ä¾µè•å€åŸŸ(_D)..." #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:1 #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:1 -#, fuzzy msgid "/Script-Fu/Shadow" -msgstr "/Script-Fu/é™°å½±/å½±å­(_D)..." +msgstr "/Script-Fu/é™°å½±" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:2 #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:2 @@ -1302,9 +1276,8 @@ msgstr "é€æ˜Žåº¦" #: ../plug-ins/script-fu/scripts/drop-shadow.scm.h:8 -#, fuzzy msgid "_Drop-Shadow..." -msgstr "å½±å­" +msgstr "å½±å­(_D)..." #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:2 msgid "Columns" @@ -1343,9 +1316,8 @@ msgstr "列/è¡Œ" #: ../plug-ins/script-fu/scripts/erase-rows.scm.h:11 -#, fuzzy msgid "_Erase every other Row..." -msgstr "/Script-Fu/變化/隔行清除(_E)..." +msgstr "隔行清除(_E)..." #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:2 msgid "Apply generated layermask" @@ -1377,7 +1349,7 @@ #: ../plug-ins/script-fu/scripts/fade-outline.scm.h:10 msgid "_Fade Outline..." -msgstr "" +msgstr "輪廓褪色(_F)..." #: ../plug-ins/script-fu/scripts/flatland.scm.h:2 #: ../plug-ins/script-fu/scripts/land.scm.h:2 @@ -1411,13 +1383,12 @@ #: ../plug-ins/script-fu/scripts/flatland.scm.h:8 msgid "_Flatland..." -msgstr "" +msgstr "平地(_F)..." #: ../plug-ins/script-fu/scripts/font-map.scm.h:1 #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Utils" -msgstr "/擴展/Script-Fu" +msgstr "/擴展/Script-Fu/工具" #: ../plug-ins/script-fu/scripts/font-map.scm.h:2 msgid "Active colors" @@ -1451,7 +1422,7 @@ #: ../plug-ins/script-fu/scripts/font-map.scm.h:9 msgid "_Font Map..." -msgstr "" +msgstr "字型圖(_F)..." # This one is the same, english is not clear -- Abel #: ../plug-ins/script-fu/scripts/font-map.scm.h:10 @@ -1463,9 +1434,8 @@ msgstr "文字(_T)" #: ../plug-ins/script-fu/scripts/frosty-logo.scm.h:8 -#, fuzzy msgid "_Frosty..." -msgstr "ç€è¦½..." +msgstr "çµå†°(_F)..." #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:2 msgid "Add shadow" @@ -1486,13 +1456,12 @@ #: ../plug-ins/script-fu/scripts/fuzzyborder.scm.h:11 msgid "_Fuzzy Border..." -msgstr "" +msgstr "模糊邊框(_F)..." #: ../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 "/擴展/Script-Fu/網é ä½ˆæ™¯/Classic.Gimp.Org/大型標題(_B)..." +msgstr "/擴展/Script-Fu/網é ä½ˆæ™¯/Classic.Gimp.Org" #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:2 msgid "Autocrop" @@ -1535,28 +1504,27 @@ #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:14 msgid "_Big Header..." -msgstr "" +msgstr "模糊邊框(_F)..." #: ../plug-ins/script-fu/scripts/gimp-headers.scm.h:15 -#, fuzzy msgid "_Small Header..." -msgstr "啟動伺æœç¨‹å¼(_S)..." +msgstr "å°åž‹æ¨™é¡Œ(_S)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:13 msgid "T_ube Sub-Button Label..." -msgstr "" +msgstr "管狀圖細分項目的按鈕標籤(_U)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:16 msgid "Tub_e Sub-Sub-Button Label..." -msgstr "" +msgstr "管狀圖å†ç´°åˆ†é …目的按鈕標籤(_E)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:17 msgid "_General Tube Labels..." -msgstr "" +msgstr "一般管狀圖標籤(_G)..." #: ../plug-ins/script-fu/scripts/gimp-labels.scm.h:18 msgid "_Tube Button Label..." -msgstr "" +msgstr "管狀圖按鈕的標籤(_T)..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:4 msgid "Blend gradient (Text)" @@ -1572,7 +1540,7 @@ #: ../plug-ins/script-fu/scripts/glossy.scm.h:10 msgid "Glo_ssy..." -msgstr "" +msgstr "å…‰é¢(_S)..." #: ../plug-ins/script-fu/scripts/glossy.scm.h:11 msgid "Outline gradient reverse" @@ -1617,14 +1585,13 @@ #: ../plug-ins/script-fu/scripts/glowing-logo.scm.h:7 msgid "Glo_wing Hot..." -msgstr "" +msgstr "發光文字(_W)..." #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:4 msgid "Bevel height (Sharpness)" msgstr "æ–œé¢é«˜åº¦(清晰度)" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:5 -#, fuzzy msgid "Bevel height (sharpness)" msgstr "æ–œé¢é«˜åº¦(清晰度)" @@ -1635,14 +1602,12 @@ msgstr "邊框大å°(åƒç´ )" #: ../plug-ins/script-fu/scripts/gradient-bevel-logo.scm.h:10 -#, fuzzy msgid "Gradient Beve_l..." -msgstr "文字內部使用相åæ–¹å‘漸層" +msgstr "漸層斜é¢(_L)..." #: ../plug-ins/script-fu/scripts/gradient-example.scm.h:2 -#, fuzzy msgid "Custom _Gradient..." -msgstr "自製漸層範例" +msgstr "自製漸層範例(_G)..." #: ../plug-ins/script-fu/scripts/grid-system.scm.h:2 msgid "X divisions" @@ -1654,73 +1619,68 @@ #: ../plug-ins/script-fu/scripts/grid-system.scm.h:4 msgid "_Grid..." -msgstr "" +msgstr "網格(_G)..." #: ../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 "產生 4 æ¢åŒ…åœé¸æ“‡å€åŸŸçš„åƒè€ƒç·šã€‚" #: ../plug-ins/script-fu/scripts/guides-from-selection.scm.h:2 msgid "New Guides from _Selection" -msgstr "" +msgstr "ç”±é¸æ“‡å€åŸŸç”¢ç”Ÿåƒè€ƒç·š(_S)" #: ../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 "新增åƒè€ƒç·š[指定ä½ç½®](_P)..." #: ../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 "新增åƒè€ƒç·š(_G)..." #: ../plug-ins/script-fu/scripts/guides-remove-all.scm.h:1 msgid "_Remove all Guides" -msgstr "" +msgstr "移除所有åƒè€ƒç·š(_R)" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:1 #: ../plug-ins/script-fu/scripts/image-structure.scm.h:1 -#, fuzzy msgid "/Script-Fu/Utils" -msgstr "/Script-Fu/工具/_ASCII 轉為圖層..." +msgstr "/Script-Fu/工具" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:2 msgid "BG opacity" msgstr "背景é€æ˜Žåº¦" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:3 -#, fuzzy msgid "Draw _HSV Graph..." -msgstr "/Script-Fu/工具/繪製 _HSV 分佈圖..." +msgstr "繪製 _HSV 分佈圖..." #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:4 msgid "End X" -msgstr "終點的水平座標" +msgstr "終點 X 座標" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:5 msgid "End Y" -msgstr "終點的垂直座標" +msgstr "終點 Y 座標" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:6 msgid "From top-left to bottom-right" @@ -1732,11 +1692,11 @@ #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:8 msgid "Start X" -msgstr "起點的水平座標" +msgstr "起點 X 座標" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:9 msgid "Start Y" -msgstr "起點的垂直座標" +msgstr "起點 Y 座標" #: ../plug-ins/script-fu/scripts/hsv-graph.scm.h:10 msgid "Use selection bounds instead of belows" @@ -1752,7 +1712,7 @@ #: ../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 msgid "Apply layer mask (or discard)" @@ -1791,9 +1751,8 @@ msgstr "推移長度" #: ../plug-ins/script-fu/scripts/image-structure.scm.h:12 -#, fuzzy msgid "Show Image _Structure..." -msgstr "/Script-Fu/工具/顯示影åƒçµæ§‹(_S)..." +msgstr "顯示影åƒçµæ§‹(_S)..." #: ../plug-ins/script-fu/scripts/image-structure.scm.h:13 msgid "Space between layers" @@ -1809,7 +1768,7 @@ #: ../plug-ins/script-fu/scripts/land.scm.h:11 msgid "_Land..." -msgstr "" +msgstr "陸地(_L)..." #: ../plug-ins/script-fu/scripts/lava.scm.h:4 #: ../plug-ins/script-fu/scripts/swirltile.scm.h:8 @@ -1826,11 +1785,11 @@ #: ../plug-ins/script-fu/scripts/lava.scm.h:9 msgid "_Lava..." -msgstr "" +msgstr "溶岩(_L)..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:2 msgid "Line _Nova..." -msgstr "" +msgstr "放射光線(_N)..." #: ../plug-ins/script-fu/scripts/line-nova.scm.h:3 msgid "Number of lines" @@ -1849,26 +1808,24 @@ msgstr "" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:1 -#, fuzzy msgid "/Xtns/Script-Fu/Make Brush" -msgstr "/擴展/Script-Fu/製作筆刷/橢圓(_E)..." +msgstr "/擴展/Script-Fu/製作筆刷" #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:2 msgid "Elli_ptical, Feathered..." -msgstr "" +msgstr "橢圓ã€ç¾½åŒ–(_P)..." #: ../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 "矩形ã€ç¾½åŒ–(_C)..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:7 #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:4 @@ -1877,11 +1834,11 @@ #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:9 msgid "_Elliptical..." -msgstr "" +msgstr "橢圓(_E)..." #: ../plug-ins/script-fu/scripts/mkbrush.scm.h:10 msgid "_Rectangular..." -msgstr "" +msgstr "矩形(_R)..." #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:4 msgid "Create shadow" @@ -1893,7 +1850,7 @@ #: ../plug-ins/script-fu/scripts/neon-logo.scm.h:9 msgid "N_eon..." -msgstr "" +msgstr "霓虹管(_E)..." #: ../plug-ins/script-fu/scripts/news-text.scm.h:4 msgid "Cell size (pixels)" @@ -1907,7 +1864,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" @@ -1923,7 +1880,7 @@ #: ../plug-ins/script-fu/scripts/old-photo.scm.h:7 msgid "_Old Photo..." -msgstr "" +msgstr "舊照片(_O)..." #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:3 msgid "Angle" @@ -1931,20 +1888,19 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:6 msgid "Cubic" -msgstr "" +msgstr "ç«‹æ–¹" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:7 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 -#, fuzzy msgid "None" -msgstr "(ç„¡)" +msgstr "ç„¡" #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:11 msgid "Relative distance of horizon" @@ -1956,7 +1912,7 @@ #: ../plug-ins/script-fu/scripts/perspective-shadow.scm.h:13 msgid "_Perspective..." -msgstr "" +msgstr "é€è¦–法(_P)..." #: ../plug-ins/script-fu/scripts/predator.scm.h:2 msgid "Edge amount" @@ -1972,7 +1928,7 @@ #: ../plug-ins/script-fu/scripts/predator.scm.h:7 msgid "_Predator..." -msgstr "" +msgstr "éµè¡€æˆ°å£«(_P)..." #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:5 msgid "Lower color" @@ -2016,7 +1972,7 @@ #: ../plug-ins/script-fu/scripts/pupi-button.scm.h:18 msgid "_Round Button..." -msgstr "" +msgstr "圓角按鈕(_R)..." # Checked script, this parameter is useless -- Abel #: ../plug-ins/script-fu/scripts/rendermap.scm.h:2 @@ -2029,7 +1985,7 @@ #: ../plug-ins/script-fu/scripts/rendermap.scm.h:8 msgid "Render _Map..." -msgstr "" +msgstr "æ繪地圖(_M)..." #: ../plug-ins/script-fu/scripts/rendermap.scm.h:9 msgid "Tile" @@ -2054,7 +2010,7 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:6 msgid "Smear" -msgstr "" +msgstr "推移" #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:7 msgid "Wrap" @@ -2062,7 +2018,7 @@ #: ../plug-ins/script-fu/scripts/ripply-anim.scm.h:8 msgid "_Rippling..." -msgstr "" +msgstr "漣漪(_R)..." #: ../plug-ins/script-fu/scripts/round-corners.scm.h:2 msgid "Add background" @@ -2078,7 +2034,7 @@ #: ../plug-ins/script-fu/scripts/round-corners.scm.h:9 msgid "_Round Corners..." -msgstr "" +msgstr "圓角(_R)..." #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:2 msgid "Brush name" @@ -2089,13 +2045,12 @@ msgstr "檔案å稱" #: ../plug-ins/script-fu/scripts/select-to-brush.scm.h:5 -#, fuzzy msgid "To _Brush..." -msgstr "ç€è¦½..." +msgstr "變æˆç­†åˆ·(_B)..." #: ../plug-ins/script-fu/scripts/select-to-image.scm.h:2 msgid "To _Image" -msgstr "" +msgstr "變æˆæ–°å½±åƒ(_I)" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:2 msgid "Filename" @@ -2106,24 +2061,21 @@ msgstr "圖樣å稱" #: ../plug-ins/script-fu/scripts/select-to-pattern.scm.h:4 -#, fuzzy msgid "To _Pattern..." -msgstr "圖樣" +msgstr "變æˆåœ–樣(_P)..." #: ../plug-ins/script-fu/scripts/selection-round.scm.h:1 -#, fuzzy 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 "/Script-Fu/é¸æ“‡å€åŸŸ/圓角(_R)..." +msgstr "擴大為圓角矩形(_R)..." #: ../plug-ins/script-fu/scripts/slide.scm.h:3 msgid "Font color" @@ -2135,20 +2087,19 @@ #: ../plug-ins/script-fu/scripts/slide.scm.h:7 msgid "_Slide..." -msgstr "" +msgstr "投影片(_S)..." #: ../plug-ins/script-fu/scripts/sota-chrome-logo.scm.h:10 msgid "SOTA Chrome..." -msgstr "" +msgstr "æ–°å¼é鉻..." #: ../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 "/擴展/Script-Fu" +msgstr "/擴展/Script-Fu/其它" #: ../plug-ins/script-fu/scripts/sphere.scm.h:3 msgid "Lighting (degrees)" @@ -2163,9 +2114,8 @@ msgstr "çƒé«”é¡è‰²" #: ../plug-ins/script-fu/scripts/sphere.scm.h:7 -#, fuzzy msgid "_Sphere..." -msgstr "啟動伺æœç¨‹å¼(_S)..." +msgstr "çƒé«”(_S)..." #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:2 msgid "Frames" @@ -2181,7 +2131,7 @@ #: ../plug-ins/script-fu/scripts/spinning-globe.scm.h:7 msgid "_Spinning Globe..." -msgstr "" +msgstr "旋轉çƒé«”(_S)..." #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:2 msgid "Airbrush" @@ -2303,9 +2253,8 @@ msgstr "é¡žåž‹" #: ../plug-ins/script-fu/scripts/spyrogimp.scm.h:33 -#, fuzzy msgid "_Spyrogimp..." -msgstr "旋輪線" +msgstr "旋輪線(_S)..." #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:4 msgid "Burst color" @@ -2317,20 +2266,19 @@ #: ../plug-ins/script-fu/scripts/starburst-logo.scm.h:8 msgid "Starb_urst..." -msgstr "" +msgstr "超新星爆發(_U)..." #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:3 msgid "Effect size (pixels * 4)" msgstr "效果大å°(åƒç´ Ã—4)" #: ../plug-ins/script-fu/scripts/starscape-logo.scm.h:7 -#, fuzzy msgid "Sta_rscape..." -msgstr "ç€è¦½..." +msgstr "星際(_R)..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:9 msgid "Swirl-_Tile..." -msgstr "" +msgstr "å¯é‹ªæŽ’å¼æ—‹æ¸¦(_T)..." #: ../plug-ins/script-fu/scripts/swirltile.scm.h:10 msgid "Whirl amount" @@ -2350,7 +2298,7 @@ #: ../plug-ins/script-fu/scripts/swirly-pattern.scm.h:5 msgid "_Swirly..." -msgstr "" +msgstr "旋渦圖案(_S)..." #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:4 msgid "Base color" @@ -2370,7 +2318,7 @@ #: ../plug-ins/script-fu/scripts/t-o-p-logo.scm.h:12 msgid "_Particle Trace..." -msgstr "" +msgstr "ç²’å­è»Œè¿¹(_P)..." #: ../plug-ins/script-fu/scripts/text-circle.scm.h:2 msgid "Antialias" @@ -2381,9 +2329,8 @@ 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 msgid "Ending blend" @@ -2415,7 +2362,7 @@ #: ../plug-ins/script-fu/scripts/textured-logo.scm.h:16 msgid "_Textured..." -msgstr "" +msgstr "ç´‹ç†(_T)..." #: ../plug-ins/script-fu/scripts/tileblur.scm.h:1 msgid "Blur horizontally" @@ -2438,13 +2385,12 @@ msgstr "RLE" #: ../plug-ins/script-fu/scripts/tileblur.scm.h:7 -#, fuzzy msgid "_Tileable Blur..." -msgstr "/濾é¡/模糊化/å¯é‹ªæŽ’å¼æ¨¡ç³ŠåŒ–(_T)..." +msgstr "å¯é‹ªæŽ’å¼æ¨¡ç³ŠåŒ–(_T)..." #: ../plug-ins/script-fu/scripts/title-header.scm.h:6 msgid "Web Title Header..." -msgstr "" +msgstr "網é æ¨™é¡Œ..." #: ../plug-ins/script-fu/scripts/truchet.scm.h:4 msgid "Foreground color" @@ -2452,7 +2398,7 @@ #: ../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 msgid "Mask opacity" @@ -2480,7 +2426,7 @@ #: ../plug-ins/script-fu/scripts/waves-anim.scm.h:6 msgid "_Waves..." -msgstr "" +msgstr "波浪(_W)..." #: ../plug-ins/script-fu/scripts/weave.scm.h:2 msgid "Ribbon spacing" @@ -2504,7 +2450,7 @@ #: ../plug-ins/script-fu/scripts/weave.scm.h:7 msgid "Thread intensity" -msgstr "" +msgstr "ç·šæ¢å¯†åº¦" #: ../plug-ins/script-fu/scripts/weave.scm.h:8 msgid "Thread length" @@ -2512,24 +2458,23 @@ #: ../plug-ins/script-fu/scripts/weave.scm.h:9 msgid "_Weave..." -msgstr "" +msgstr "交織(_W)..." #: ../plug-ins/script-fu/scripts/web-browser.scm.h:1 -#, fuzzy msgid "/Help/The GIMP Online" -msgstr "/求助/GIMP 線上資æº/主網é (_M)" +msgstr "/求助/GIMP 線上資æº" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:2 msgid "Plug-in _Registry" -msgstr "" +msgstr "增效模組登記紀錄(_R)" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:3 msgid "_Developer Web Site" -msgstr "" +msgstr "開發者網é (_D)" #: ../plug-ins/script-fu/scripts/web-browser.scm.h:4 msgid "_Main Web Site" -msgstr "" +msgstr "主網é (_M)" #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:2 msgid "Drop shadow X offset" @@ -2565,15 +2510,7 @@ #: ../plug-ins/script-fu/scripts/xach-effect.scm.h:12 msgid "_Xach-Effect..." -msgstr "" - -#, fuzzy -#~ msgid "Buffer amount (% height of text)" -#~ msgstr "ç·©è¡å€å¤§å°(文字高度的百分比)" - -#, fuzzy -#~ msgid "_ASCII to Layer..." -#~ msgstr "/Script-Fu/工具/_ASCII 轉為圖層..." +msgstr "_Xach 效果..." #~ msgid "/Xtns/Script-Fu/_Refresh Scripts" #~ msgstr "/擴展/Script-Fu/é‡æ–°æ•´ç†(_R)" @@ -3000,11 +2937,3 @@ #~ msgid "Reset to Defaults" #~ msgstr "é‡è¨­ç‚ºé è¨­å€¼" -#~ msgid "Close" -#~ msgstr "關閉" - -#~ msgid "OK" -#~ msgstr "確定" - -#~ msgid "Apply" -#~ msgstr "套用" diff -uraN gimp-2.2.8/README.win32 gimp-2.2.9/README.win32 --- gimp-2.2.8/README.win32 2004-01-30 00:49:29.000000000 +0100 +++ gimp-2.2.9/README.win32 2005-09-20 18:23:58.000000000 +0200 @@ -1,6 +1,10 @@ -For pre-built binary packages of GLib, GTK etc, see -http://www.gimp.org/win32/downloads.html . No pre-built GIMP 1.3 -packages, though. +For pre-built binary packages of GIMP, see +http://gimp-win.sourceforge.net. + +GIMP 2.2.x should be built against GLib 2.4. Building against GLib 2.6 +or later will result in a GIMP that doesn't handle non-ASCII filenames +correctly. It is fine to *run* GIMP 2.2.x against GLib 2.6 or later, +though. Building GIMP on Win32 ====================== diff -uraN gimp-2.2.8/regexrepl/Makefile.in gimp-2.2.9/regexrepl/Makefile.in --- gimp-2.2.8/regexrepl/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/regexrepl/Makefile.in 2005-10-27 17:11:57.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,41 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = regexrepl +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +LIBRARIES = $(noinst_LIBRARIES) +ARFLAGS = cru +libregex_a_AR = $(AR) $(ARFLAGS) +libregex_a_LIBADD = +am__libregex_a_SOURCES_DIST = regex.c regex.h +@HAVE_GLIBC_REGEX_FALSE@am_libregex_a_OBJECTS = regex.$(OBJEXT) +libregex_a_OBJECTS = $(am_libregex_a_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libregex_a_SOURCES) +DIST_SOURCES = $(am__libregex_a_SOURCES_DIST) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +267,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +318,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +365,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -370,61 +407,52 @@ target_alias = @target_alias@ noinst_LIBRARIES = libregex.a @HAVE_GLIBC_REGEX_FALSE@libregex_a_SOURCES = regex.c regex.h - @HAVE_GLIBC_REGEX_TRUE@libregex_a_SOURCES = - INCLUDES = \ -I$(top_srcdir) \ -I$(includedir) - AM_CPPFLAGS = \ -DREGEX_MALLOC - EXTRA_DIST = \ regex.c \ regex.h \ makefile.msc -subdir = regexrepl -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LIBRARIES = $(noinst_LIBRARIES) - -libregex_a_AR = $(AR) cru -libregex_a_LIBADD = -am__libregex_a_SOURCES_DIST = regex.c regex.h -@HAVE_GLIBC_REGEX_TRUE@am_libregex_a_OBJECTS = -@HAVE_GLIBC_REGEX_FALSE@am_libregex_a_OBJECTS = regex.$(OBJEXT) -libregex_a_OBJECTS = $(am_libregex_a_OBJECTS) - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/regex.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(am__libregex_a_SOURCES_DIST) -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -SOURCES = $(libregex_a_SOURCES) - all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu regexrepl/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu regexrepl/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) @@ -434,7 +462,7 @@ $(RANLIB) libregex.a mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -442,37 +470,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/regex.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -484,14 +500,6 @@ -rm -f libtool uninstall-info-am: -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -500,6 +508,7 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -511,10 +520,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -537,10 +547,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -554,7 +560,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -572,7 +578,6 @@ check-am: all-am check: check-am all-am: Makefile $(LIBRARIES) - installdirs: install: install-am install-exec: install-exec-am @@ -593,7 +598,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -613,6 +618,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -650,13 +657,14 @@ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ - distclean-tags distdir dvi dvi-am info info-am install \ - install-am install-data install-data-am install-exec \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic mostlyclean-libtool pdf \ - pdf-am ps ps-am tags uninstall uninstall-am uninstall-info-am + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/themes/Default/images/Makefile.in gimp-2.2.9/themes/Default/images/Makefile.in --- gimp-2.2.8/themes/Default/images/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/themes/Default/images/Makefile.in 2005-10-27 17:11:57.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,39 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = themes/Default/images +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(themedatadir)" +themedataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(noinst_DATA) $(themedata_DATA) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +265,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +316,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +363,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,33 +403,26 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = preferences - themedatadir = $(gimpdatadir)/themes/Default/images - CORE_IMAGES = \ stock-question-64.png - CORE_VARIABLES = \ stock_question_64 $(srcdir)/stock-question-64.png - WILBER_IMAGES = \ stock-wilber-16.png \ stock-wilber-32.png \ stock-wilber-48.png \ stock-wilber-64.png - WILBER_VARIABLES = \ stock_wilber_16 $(srcdir)/stock-wilber-16.png \ stock_wilber_32 $(srcdir)/stock-wilber-32.png \ stock_wilber_48 $(srcdir)/stock-wilber-48.png \ stock_wilber_64 $(srcdir)/stock-wilber-64.png - STOCK_MENU_IMAGES = \ stock-cap-butt-16.png \ stock-cap-round-16.png \ @@ -489,7 +517,6 @@ stock-web-16.png \ stock-zoom-follow-window-12.png - STOCK_BUTTON_IMAGES = \ stock-anchor-16.png \ stock-center-24.png \ @@ -567,7 +594,6 @@ stock-warning-24.png \ stock-web-24.png - STOCK_DND_IMAGES = \ stock-channel-32.png \ stock-channel-alpha-32.png \ @@ -582,7 +608,6 @@ stock-layer-mask-32.png \ stock-text-layer-32.png - STOCK_DIALOG_IMAGES = \ stock-channel-48.png \ stock-channel-alpha-48.png \ @@ -605,7 +630,6 @@ stock-wilber-64.png \ stock-wilber-eek-64.png - STOCK_TOOL_IMAGES = \ tools/stock-tool-airbrush-16.png \ tools/stock-tool-airbrush-22.png \ @@ -682,7 +706,6 @@ tools/stock-tool-zoom-16.png \ tools/stock-tool-zoom-22.png - STOCK_IMAGES = \ $(STOCK_MENU_IMAGES) \ $(STOCK_BUTTON_IMAGES) \ @@ -690,9 +713,7 @@ $(STOCK_DIALOG_IMAGES) \ $(STOCK_TOOL_IMAGES) - themedata_DATA = $(STOCK_IMAGES) - EXTRA_DIST = \ $(themedata_DATA) \ $(CORE_IMAGES) \ @@ -700,38 +721,44 @@ gimp-dialog-icons.xcf.gz\ makefile.msc - noinst_DATA = \ gimp-core-pixbufs.h \ gimp-stock-pixbufs.h \ gimp-wilber-pixbufs.h - CLEANFILES = $(noinst_DATA) stock-icons.list -subdir = themes/Default/images -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(noinst_DATA) $(themedata_DATA) - - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu themes/Default/images/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu themes/Default/images/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -742,23 +769,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -themedataDATA_INSTALL = $(INSTALL_DATA) install-themedataDATA: $(themedata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(themedatadir) + test -z "$(themedatadir)" || $(mkdir_p) "$(DESTDIR)$(themedatadir)" @list='$(themedata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f"; \ - $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(themedataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themedatadir)/$$f'"; \ + $(themedataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themedatadir)/$$f"; \ done uninstall-themedataDATA: @$(NORMAL_UNINSTALL) @list='$(themedata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(themedatadir)/$$f"; \ - rm -f $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(themedatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(themedatadir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd @@ -768,7 +794,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -780,7 +812,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -788,7 +820,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -809,7 +847,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -820,14 +858,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -836,19 +866,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -858,10 +891,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -884,13 +918,9 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/tools + $(mkdir_p) $(distdir)/tools @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -902,7 +932,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -917,15 +947,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -935,8 +967,9 @@ all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(themedatadir) - + for dir in "$(DESTDIR)$(themedatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -957,7 +990,7 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -975,6 +1008,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -1009,22 +1044,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip install-themedataDATA \ - installcheck installcheck-am installdirs installdirs-am \ - installdirs-recursive maintainer-clean maintainer-clean-generic \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip \ + install-themedataDATA installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am \ uninstall-themedataDATA diff -uraN gimp-2.2.8/themes/Default/images/preferences/Makefile.in gimp-2.2.9/themes/Default/images/preferences/Makefile.in --- gimp-2.2.8/themes/Default/images/preferences/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/themes/Default/images/preferences/Makefile.in 2005-10-27 17:11:58.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../../../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = themes/Default/images/preferences +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(themedatadir)" +themedataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(themedata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,9 +394,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - themedatadir = $(gimpdatadir)/themes/Default/images/preferences - PREFS_IMAGES = \ controllers.png \ default-comment.png \ @@ -402,30 +426,43 @@ tool-options.png \ window-management.png - themedata_DATA = $(PREFS_IMAGES) - EXTRA_DIST = \ $(themedata_DATA) \ folders.xcf.gz -subdir = themes/Default/images/preferences -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(themedata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu themes/Default/images/preferences/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu themes/Default/images/preferences/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -436,23 +473,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -themedataDATA_INSTALL = $(INSTALL_DATA) install-themedataDATA: $(themedata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(themedatadir) + test -z "$(themedatadir)" || $(mkdir_p) "$(DESTDIR)$(themedatadir)" @list='$(themedata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f"; \ - $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(themedataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themedatadir)/$$f'"; \ + $(themedataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themedatadir)/$$f"; \ done uninstall-themedataDATA: @$(NORMAL_UNINSTALL) @list='$(themedata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(themedatadir)/$$f"; \ - rm -f $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(themedatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(themedatadir)/$$f"; \ done tags: TAGS TAGS: @@ -460,10 +496,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../../../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -477,7 +509,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -495,9 +527,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(themedatadir) + for dir in "$(DESTDIR)$(themedatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -517,7 +550,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -534,6 +567,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -568,13 +603,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip install-themedataDATA \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-info-am uninstall-themedataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + install-themedataDATA installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-info-am \ + uninstall-themedataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/themes/Default/Makefile.in gimp-2.2.9/themes/Default/Makefile.in --- gimp-2.2.8/themes/Default/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/themes/Default/Makefile.in 2005-10-27 17:11:57.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,39 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = themes/Default +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(themedatadir)" +themedataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(themedata_DATA) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +265,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +316,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +363,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,38 +403,42 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = images - themedatadir = $(gimpdatadir)/themes/Default - themedata_DATA = gtkrc imagerc - EXTRA_DIST = $(themedata_DATA) -subdir = themes/Default -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(themedata_DATA) - - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu themes/Default/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu themes/Default/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -410,23 +449,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -themedataDATA_INSTALL = $(INSTALL_DATA) install-themedataDATA: $(themedata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(themedatadir) + test -z "$(themedatadir)" || $(mkdir_p) "$(DESTDIR)$(themedatadir)" @list='$(themedata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f"; \ - $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(themedataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themedatadir)/$$f'"; \ + $(themedataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themedatadir)/$$f"; \ done uninstall-themedataDATA: @$(NORMAL_UNINSTALL) @list='$(themedata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(themedatadir)/$$f"; \ - rm -f $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(themedatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(themedatadir)/$$f"; \ done # This directory's subdirectories are mostly independent; you can cd @@ -436,7 +474,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -448,7 +492,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -456,7 +500,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -477,7 +527,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -488,14 +538,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -504,19 +546,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -526,10 +571,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -552,10 +598,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -569,7 +611,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -584,15 +626,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -602,8 +646,9 @@ all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(themedatadir) - + for dir in "$(DESTDIR)$(themedatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -623,7 +668,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -641,6 +686,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -675,22 +722,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip install-themedataDATA \ - installcheck installcheck-am installdirs installdirs-am \ - installdirs-recursive maintainer-clean maintainer-clean-generic \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip \ + install-themedataDATA installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive \ + mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am uninstall-info-am \ uninstall-themedataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -uraN gimp-2.2.8/themes/Makefile.in gimp-2.2.9/themes/Makefile.in --- gimp-2.2.8/themes/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/themes/Makefile.in 2005-10-27 17:11:58.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +33,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = themes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +255,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +306,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +353,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,30 +393,39 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - SUBDIRS = Default Small -subdir = themes -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = $(SUBDIRS) all: all-recursive .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu themes/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu themes/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -410,7 +444,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -422,7 +462,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -430,7 +470,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -451,7 +497,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -462,14 +508,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -478,19 +516,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -500,10 +541,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -526,10 +568,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -543,7 +581,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -558,15 +596,17 @@ || exit 1; \ fi; \ done - list='$(SUBDIRS)'; for subdir in $$list; do \ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -576,7 +616,6 @@ all-am: Makefile installdirs: installdirs-recursive installdirs-am: - install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -596,7 +635,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -614,6 +653,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -648,22 +689,18 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-generic clean-libtool clean-recursive ctags \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-generic clean-libtool clean-recursive ctags \ ctags-recursive distclean distclean-generic distclean-libtool \ - distclean-recursive distclean-tags distdir dvi dvi-am \ - dvi-recursive info info-am info-recursive install install-am \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-generic \ - mostlyclean-libtool mostlyclean-recursive pdf pdf-am \ - pdf-recursive ps ps-am ps-recursive tags tags-recursive \ - uninstall uninstall-am uninstall-info-am \ - uninstall-info-recursive uninstall-recursive + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-exec install-exec-am install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic maintainer-clean-recursive \ + mostlyclean mostlyclean-generic mostlyclean-libtool \ + mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \ + uninstall uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/themes/Small/Makefile.in gimp-2.2.9/themes/Small/Makefile.in --- gimp-2.2.8/themes/Small/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/themes/Small/Makefile.in 2005-10-27 17:11:58.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = themes/Small +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(themedatadir)" +themedataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(themedata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,29 +394,41 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - themedatadir = $(gimpdatadir)/themes/Small - themedata_DATA = gtkrc - EXTRA_DIST = $(themedata_DATA) -subdir = themes/Small -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(themedata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu themes/Small/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu themes/Small/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -401,23 +439,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -themedataDATA_INSTALL = $(INSTALL_DATA) install-themedataDATA: $(themedata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(themedatadir) + test -z "$(themedatadir)" || $(mkdir_p) "$(DESTDIR)$(themedatadir)" @list='$(themedata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f"; \ - $(themedataDATA_INSTALL) $$d$$p $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(themedataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themedatadir)/$$f'"; \ + $(themedataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themedatadir)/$$f"; \ done uninstall-themedataDATA: @$(NORMAL_UNINSTALL) @list='$(themedata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(themedatadir)/$$f"; \ - rm -f $(DESTDIR)$(themedatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(themedatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(themedatadir)/$$f"; \ done tags: TAGS TAGS: @@ -425,10 +462,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -442,7 +475,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -460,9 +493,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(themedatadir) + for dir in "$(DESTDIR)$(themedatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -482,7 +516,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -499,6 +533,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -533,13 +569,14 @@ .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip install-themedataDATA \ - installcheck installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-info-am uninstall-themedataDATA + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-exec install-exec-am \ + install-info install-info-am install-man install-strip \ + install-themedataDATA installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-info-am \ + uninstall-themedataDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -uraN gimp-2.2.8/tips/ChangeLog gimp-2.2.9/tips/ChangeLog --- gimp-2.2.8/tips/ChangeLog 2005-04-22 12:16:57.000000000 +0200 +++ gimp-2.2.9/tips/ChangeLog 2005-09-20 18:24:05.000000000 +0200 @@ -1,3 +1,21 @@ +2005-09-17 Takeshi AIHANA + + * ja.po: Updated Japanese translation by + kano@na.rim.or.jp. + +2005-09-06 Stanislav Brabec + + * cs.po: Typo fix (#314989). + +2005-08-02 Takeshi AIHANA + + * ja.po: Fixed wrong translations pointed by + kano@na.rim.or.jp. + +2005-07-07 Abel Cheung + + * zh_TW.po: Updated traditional Chinese translation from GNOME HK Team + 2005-04-22 Changwoo Ryu * Makefile.am (tips_POFILES): Added ko.po. diff -uraN gimp-2.2.8/tips/cs.po gimp-2.2.9/tips/cs.po --- gimp-2.2.8/tips/cs.po 2005-06-26 22:51:56.000000000 +0200 +++ gimp-2.2.9/tips/cs.po 2005-10-27 17:08:14.000000000 +0200 @@ -162,7 +162,7 @@ msgid "" "The GIMP can undo most changes to the image, so feel free to experiment." msgstr "" -"GIMP může vrátit zpÄ›t vÄ›tÅ¡inu zmÄ›n obráku, takže se nebojte experimentovat." +"GIMP může vrátit zpÄ›t vÄ›tÅ¡inu zmÄ›n obrázku, takže se nebojte experimentovat." #: tips/gimp-tips.xml.in.h:17 msgid "" diff -uraN gimp-2.2.8/tips/gimp-tips.xml gimp-2.2.9/tips/gimp-tips.xml --- gimp-2.2.8/tips/gimp-tips.xml 2005-06-26 22:52:00.000000000 +0200 +++ gimp-2.2.9/tips/gimp-tips.xml 2005-10-27 17:08:19.000000000 +0200 @@ -32,6 +32,7 @@ Bienvenue sur Le Gimp ! Ãœdvözli a GIMP! Benvenuti in GIMP! + GIMP ã¸ã‚ˆã†ã“ã ! ê¹€í”„ì— ì˜¤ì‹ ê²ƒì„ í™˜ì˜í•©ë‹ˆë‹¤! Sveiki GIMP vartotojai! Velkommen til GIMP! @@ -42,9 +43,10 @@ Välkommen till GIMP! ЛаÑкаво проÑимо до GIMP! 欢迎使用 GIMPï¼ + 歡迎使用 GIMPï¼ The GIMP can undo most changes to the image, so feel free to experiment. El GIMP pot desfer la majoria de canvis en la imatge, així que experimenteu quant vulgueu. - GIMP může vrátit zpÄ›t vÄ›tÅ¡inu zmÄ›n obráku, takže se nebojte experimentovat. + GIMP může vrátit zpÄ›t vÄ›tÅ¡inu zmÄ›n obrázku, takže se nebojte experimentovat. Gimp'en kan fortryde de fleste ændringer i et billede, sÃ¥ gÃ¥ bare i gang med at eksperimentere! The GIMP kann die meisten Änderungen an einem Bild rückgänig machen - fühlen Sie sich also frei nach Belieben zu experimentieren. The GIMP can undo most changes to the image, so feel free to experiment. @@ -54,6 +56,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 ã§ã¯ã»ã¨ã‚“ã©ã®å¤‰æ›´ã¯ã‚„ã‚Šç›´ã—ãŒããã‹ã‚‰ã€æ°—軽ã«è©¦ã™ã¨ã„ã„よ。 김프는 ì´ë¯¸ì§€ì—ì„œ ë°”ë€ ë‚´ìš©ì„ ëŒ€ë¶€ë¶„ 취소할 수 있으니, 마ìŒê» 실험해 보십시오. GIMP gali atÅ¡aukti daugumÄ… operacijų, tad nebijokite eksperimentuoti. GIMP gir deg mulighet til Ã¥ angre alle handlinger utført pÃ¥ bildet. @@ -64,6 +67,7 @@ GIMP kan Ã¥ngra de flesta ändringar i bilden, sÃ¥ experimentera gärna. У GIMP можна ÑкаÑувати більшіÑÑ‚ÑŒ змін зображеннÑ, тому можете Ñміливо екÑпериментувати. GIMP å¯ä»¥æ’¤é”€å¯¹å›¾åƒæ‰€åšçš„大多数修改,因此请放心å°è¯•ã€‚ + GIMP 幾乎å¯ä»¥é‚„原所有更改影åƒçš„æ“作程åºï¼Œå› æ­¤æ‚¨å¯ä»¥æ”¾å¿ƒå˜—試。 @@ -86,7 +90,7 @@ U svakom trenutku možete dobiti trenutnu pomoć za većinu mogućnosti Gimpa ako pritisnete tipku F1. Ova opcija takoÄ‘e radi i unutar izbornika. 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 機能ã®çŠ¶æ³é©å¿œãƒ˜ãƒ«ãƒ—を呼ã³å‡ºã™ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚ã“ã‚Œã¯ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã®ä¸­ã§ã‚‚使ãˆã‚‹ã‚ˆã€‚ 언제ë¼ë„ 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. @@ -120,7 +124,7 @@ GIMP koristi slojeve za organizaciju slika. Gledajte na slojeve kao na gomilu slajdova ili filtera, kao da gledate kroz njih i vidite mjeÅ¡avinu njihovih sadržaja. 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 ã§ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’使ã£ã¦ç”»åƒã‚’ã¾ã¨ã‚ã‚‹ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚ã¾ãスライドã¨ã‹ãƒ•ã‚£ãƒ«ã‚¿ã‚’ç©ã¿é‡ã­ãŸã‚‚ã®ã‚’ã™ã‹ã—ã¦è¦‹ã¦ã„るよã†ãªã‚‚ã®ã ã¨æ€ã£ã¦ãれれã°ã„ã„。 김프는 ì´ë¯¸ì§€ë¥¼ ì¡°ì§í™”하기 위해 ë ˆì´ì–´ì„ 사용합니다. ë ˆì´ì–´ë¥¼ 슬ë¼ì´ë“œë‚˜ 필터를 ìŒ“ì•„ë†“ì€ ê²ƒì´ë¼ê³  ìƒê°í•˜ë©´, ê·¸ê²ƒë“¤ì„ í†µê³¼í•˜ë©´ì„œ í•©ì„±ëœ ë‚´ìš©ì„ ë³´ê²Œ ë˜ëŠ” 거죠. 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. @@ -154,7 +158,7 @@ Možete izvesti mnoge operacija nad slojevima desnim klikom na tekstualnu oznaku sloja u dijalogu „Slojevi, kanali i putanje“. 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. @@ -188,7 +192,7 @@ Kada snimite neku sliku da bi kasnije nastavili njezinu obradu, odaberite format XCF, vlastiti format datoteka za GIMP (koristite nastavak .xcf). Na ovaj naÄin će slojevi i svi aspekti vaÅ¡eg trenunog rada biti spremljeni. Jednom kada zavrÅ¡ite projekt, možete ga saÄuvati kao JPEG, PNG, GIF, ... 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 ã¨ã—ã¦ä¿å­˜ã—よã†ã­... + 後ã§ã¾ãŸç·¨é›†ã‚’ã™ã‚‹ç”»åƒã‚’ä¿å­˜ã™ã‚‹æ™‚ã«ã¯ã€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, ... @@ -220,6 +224,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». @@ -230,6 +235,7 @@ Lagret med namnet "Bakgrund" är speciell eftersom den saknar transparens. Detta förhindrar dig frÃ¥n att lägga till en lagermask eller flytta lagret upp i stacken. Du kan lägga till transparens till den genom att högerklicka i lagerdialogen och välja "Lägga till alfakanal". Шар "Тло" - оÑобливий. У ньому відÑÑƒÑ‚Ð½Ñ Ð¿Ñ€Ð¾Ð·Ð¾Ñ€Ñ–ÑÑ‚ÑŒ. Це не дає змоги додати до нього маÑку шару або переміÑтити шар вгору у Ñтеку шарів. Можна додати до нього прозоріÑÑ‚ÑŒ, Ñкщо натиÑнути праву кнопку миші у діалоговому вікні "Шари" та вибрати "Додати альфа-канал". åå«â€œèƒŒæ™¯â€çš„图层是特殊的,因为它没有é€æ˜Žã€‚这使您ä¸èƒ½å°†è¿™ä¸ªå›¾å±‚沿堆栈上移。如果您想给它添加é€æ˜Žï¼Œå¯ä»¥åœ¨å›¾å±‚对è¯æ¡†ä¸­å³ç‚¹å¹¶é€‰æ‹©â€œæ·»åŠ  Alpha 通é“â€ã€‚ + 圖層中稱為「背景ã€çš„一層是比較特殊的,因為它沒有é€æ˜Žåº¦ã€‚這樣會妨礙您加上圖層é®ç½©æˆ–將圖層移至較é¢å±¤çš„ä½ç½®ã€‚在「圖層ã€å°è©±æ–¹å¡Šä¸­æŒ‰å³é‚Šæ»‘鼠按鈕並é¸å–「新增é€æ˜Žè‰²ç‰ˆã€å¯ä»¥æ›¿å®ƒåŠ ä¸Šé€æ˜Žåº¦ã€‚ 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. @@ -244,7 +250,7 @@ La plupart des filtres travaillent sur le calque courant de l'image courante. Parfois vous aurez à fusionner tous les calques (Image->Aplatir l'image) si vous souhaitez que le filtre agisse sur l'image entière. 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. @@ -276,6 +282,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)ã€ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’加ãˆãŸã‚Š (レイヤー->é€æ˜Ž->アルファãƒãƒ£ãƒ³ãƒãƒ«ã®è¿½åŠ )ã€ç”»åƒã‚’çµ±åˆã—ã¦ã¿ãŸã‚Š (ç”»åƒ->ç”»åƒã®çµ±åˆ) ã™ã‚‹ã¨ã„ã„ã‹ã‚‚ã—ã‚Œãªã„ã­ã€‚ 모든 효과가 모든 ì¢…ë¥˜ì˜ ì´ë¯¸ì§€ì— ì ìš©ë˜ì§€ëŠ” 않습니다. ì´ëŸ° 경우ì—는 메뉴 í•­ëª©ì´ íšŒìƒ‰ìœ¼ë¡œ 표시ë©ë‹ˆë‹¤. ì´ë¯¸ì§€ì˜ 모드를 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). @@ -286,6 +293,7 @@ Alla effekter kan inte tillämpas pÃ¥ alla typer av bilder. Detta visas genom att menyposten är grÃ¥tonad. Du kan behöva ändra bildläget till RGB (Bild->Läge->RGB), lägga till en alfakanal (Lager->Transparens->Lägg till alfakanal) eller platta till den (Bild->Platta till bild). Ðе вÑÑ– ефекти можуть бути заÑтоÑовані до уÑÑ–Ñ… типів зображеннÑ. Це позначуєтьÑÑ Ñірим кольором елементів меню. Можливо знадобитьÑÑ Ð¿ÐµÑ€ÐµÐ²ÐµÑти Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ñƒ режим RGB (ЗображеннÑ->Режим->RGB), додати канал прозороÑÑ‚Ñ– (Шари->ПрозоріÑÑ‚ÑŒ->Додати альфа-канал) або об'єднати шари Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ (ЗображеннÑ->ЗвеÑти зображеннÑ). 并éžæ‰€æœ‰çš„效果都å¯ä»¥åº”用到所有类型的图åƒçš„。这会通过ç°è‰²çš„èœå•é¡¹è¡¨ç¤ºå‡ºæ¥ã€‚您也许需è¦å°†å›¾åƒæ¨¡å¼æ”¹å˜ä¸º RGB (图åƒ->模å¼->RGB)ã€æ·»åŠ ä¸€ä¸ª alpha 通é“(图层->é€æ˜Ž->添加 Alpha 通é“)或者平整图åƒ(图åƒ->平整图åƒ)。 + 並éžæ‰€æœ‰æ•ˆæžœéƒ½é©ç”¨æ–¼å„é¡žå½±åƒã€‚當æŸé …功能無法使用時,é¸å–®çš„文字會以淺ç°è‰²è¡¨ç¤ºã€‚如果需è¦è©²ç¨®æ•ˆæžœï¼Œå¯èƒ½éœ€è¦å°‡å½±åƒçš„色系轉為 RGB (å½±åƒâ†’模å¼â†’RGB)ã€åŠ å…¥é€æ˜Žè‰²ç‰ˆ (圖層→é€æ˜Žåº¦â†’新增é€æ˜Žè‰²ç‰ˆ) 或者將它平é¢åŒ– (å½±åƒâ†’å½±åƒå¹³é¢åŒ–)。 @@ -307,7 +315,7 @@ Možete povući i ispustiti mnoge stvari u Gimpu. Na primjer, povlaÄenjem boje sa palete alata ili s palete boja i ispuÅ¡tanjem na sliku, ispuniti će trenutnu sliku ili odabir odabranom bojom. 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 ã®è‰²ã€…ãªã‚‚ã®ã‚’ドラッグ&ドロップã™ã‚‹ã“ã¨ãŒã§ãるよ。例ãˆã°é“具箱や色パレットã‹ã‚‰è‰²ã‚’ドラッグã—ã¦ç”»åƒã¸ãƒ‰ãƒ­ãƒƒãƒ—ã™ã‚‹ã¨ã€ãã®è‰²ã§ç”»åƒã‚„é¸æŠžé ˜åŸŸãŒå¡—ã‚Šã¤ã¶ã•ã‚Œã‚‹ã‚“ã ã€‚ 김프ì—서는 ë§Žì€ ê²ƒì„ ë“œëž˜ê·¸í•˜ê³  드롭할 수 있습니다. 예를 들면, ë„구 ìƒìžë‚˜ 색ìƒí‘œì—ì„œ 색ìƒì„ 드래그해서 ì´ë¯¸ì§€ì— 드롭하면 현재 ì´ë¯¸ì§€ë‚˜ ì„ íƒì„ ê·¸ 색ìƒìœ¼ë¡œ 채ì›ë‹ˆë‹¤. 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. @@ -341,7 +349,7 @@ Kada koristite alat za crtanje (Äetkica, kist ili olovka), Shift-klik će iscrtati ravnu liniju od posljednje iscrtane toÄke do trenutne pozicije pokazivaÄa. Ako pritisnete Ctrl, moći ćete rotirati liniju pod kutom od 15°. 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度å˜ä½ã«ãªã‚‹ã‚“ã ã€‚ 그리기 ë„구(페ì¸íŠ¸ë¸ŒëŸ¬ì‹œ, ì—어브러시, ì—°í•„)를 사용할 ë•Œ, 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. @@ -377,7 +385,7 @@ Možete koristiti srednju tipku miÅ¡a za pomicanje vidljivog dijela slike, ako je veća od prozora u kome je prikazana. 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. @@ -410,6 +418,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. @@ -420,6 +429,7 @@ Klicka pÃ¥ en linjal och drag den för att placera en hjälplinje pÃ¥ en bild. Alla markeringar som dras kommer att fästas vid hjälplinjerna. Du kan ta bort hjälplinjer genom att dra dem utanför bilden med flyttverktyget. Щоб поміÑтити напрÑмну на Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð½Ð°Ñ‚Ð¸Ñніть на лінійку та перетÑгніть. Ð’ÑÑ– виділені облаÑÑ‚Ñ–, Ñкі переміщуватимутьÑÑ, будуть причіплюватиÑÑŒ до напрÑмних. Видалити напрÑмні можна перетÑгнувши Ñ—Ñ… за межі Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° допомогою інÑтрументу "ПереміщеннÑ". 点击并拖动标尺å¯ä»¥åœ¨å›¾åƒä¸­æ”¾ç½®å‚考线。所有拖动的选区都会被å¸é™„到å‚考线上。您å¯ä»¥ç”¨ç§»åŠ¨å·¥å…·æŠŠå‚考线拖出图åƒå¤–æ¥åˆ é™¤å®ƒä»¬ã€‚ + 在尺è¦ä¸ŠæŒ‰ä¸‹æ»‘é¼ å·¦éµä¸¦æ‹–曳至影åƒå…§å°±å¯ä»¥åŠ å…¥åƒè€ƒç·šã€‚以後任何拖曳的é¸æ“‡å€åŸŸéƒ½æœƒè‡ªå‹•å¸å¼•è‡³åƒè€ƒç·šä¸Šã€‚如果è¦åŽ»é™¤åƒè€ƒç·šï¼Œå¯åˆ©ç”¨ã€Œç§»å‹•ã€å·¥å…·å°‡åƒè€ƒç·šæ‹–曳到影åƒç¯„åœä»¥å¤–。 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. @@ -435,7 +445,7 @@ Možete povući sloj iz dijaloga „Slojevi, kanali i putanje“ i spustiti ga na paletu alata. Na taj naÄin će se napraviti nova slika koja sadrži samo taj sloj. 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. @@ -467,6 +477,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. @@ -477,6 +488,7 @@ En flytande markering mÃ¥ste ankras vid ett nytt lager eller i det senast aktiva lagret innan andra Ã¥tgärder utförs pÃ¥ bilden. Klicka pÃ¥ knapparna "Nytt lager" eller "Ankra lager" i lagerdialogen, eller använd menyerna för att utföra samma sak. Плаваюча виділена ділÑнка повинна бути прикріплена до нового шару або до оÑтаннього активного шару, перед виконаннÑм інших маніпулÑцій із зображеннÑм. Ð”Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ натиÑніть "Ðовий шар" у діалоговому вікні "Шари" або "Прикріпити плаваючий шар", або виберіть цю функцію з меню. 在对图åƒè¿›è¡Œå…¶å®ƒæ“作之å‰ï¼Œå¿…须先把浮动选区固定到当å‰æ´»åŠ¨å›¾å±‚或者新的图层。点击图层对è¯æ¡†ä¸­çš„“新建图层â€æˆ–者“固定图层â€æŒ‰é’®ï¼Œæˆ–者使用èœå•ä¹Ÿå¯ä»¥ã€‚ + å°å½±åƒé€²è¡Œä»»ä½•æ“作å‰ï¼Œæµ®å‹•é¸æ“‡å€åŸŸå¿…須先固定在新的圖層或是最後使用的圖層上。è¦é€²è¡Œä»¥ä¸Šçš„程åºï¼Œå¯ä»¥åœ¨ã€Œåœ–層ã€å°è©±æ–¹å¡Šä¸­é¸å–「新增圖層ã€æˆ–「固定圖層ã€æŒ‰éˆ•ã€‚å¦å¤–在é¸å–®ä¸­ä¹Ÿå¯ä»¥ä½¿ç”¨åŒæ¨£çš„方法。 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. @@ -492,7 +504,7 @@ GIMP podržava gzip kompresiju u letu. Jednostavno dodajte nastavak .gz (ili .bz2, ako imate instairanu podrÅ¡ku za bzip2) nazivu datoteke i vaÅ¡a slika će biti spremljena i sažeta. Naravno, uÄitavanje sažetih slika u letu takoÄ‘e radi kao i spremanje. A GIMP-pel automatikus tömörítés is végezhetÅ‘. A funkció a következÅ‘ módon használható: hozzá kell fűzni egy .gz végzÅ‘dést (vagy .bz2 végzÅ‘dést, ha telepítve van a bzip2) a fájlnévhez - ennek hatására a kép tömörített formában lesz elmentve. A tömörített képek közvetlen betöltését is támogatja a program. GIMP supporta la compressione gzip al volo. Basta aggiungere .gz (o .bz2, se hai installato bzip2) al nome del file e la tua immagine sarà salvata compressa. Ovviamente funzionerà anche il caricamento di immagini compresse. - GIMP ã¯è‡ªå‹• gzip 圧縮をサãƒãƒ¼ãƒˆã—ã¦ã„るよ.å˜ã«æ‹¡å¼µå­ .gz ã‚’ (bzip2 ãŒã‚る時ã«ã¯ .bz2 ã®æ–¹ãŒã„ã„ã‹ãª) 付ã‘ã‚‹ã ã‘ã§ï¼Œè‡ªå‹•çš„ã«åœ§ç¸®ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã£ã¦ã‚‹ã‚“ã ï¼Žã‚‚ã¡ã‚ん,読ã¿è¾¼ã‚€æ™‚ã«ã‚‚自動ã§å±•é–‹ã•ã‚Œã‚‹ã‚ˆï¼Ž + GIMP ã¯è‡ªå‹• gzip 圧縮をサãƒãƒ¼ãƒˆã—ã¦ã„るよ。å˜ã«æ‹¡å¼µå­ .gz ã‚’ (bzip2 ãŒã‚る時ã«ã¯ .bz2 ã®æ–¹ãŒã„ã„ã‹ãª) 付ã‘ã‚‹ã ã‘ã§ã€è‡ªå‹•çš„ã«åœ§ç¸®ã•ã‚Œã‚‹ã‚ˆã†ã«ãªã£ã¦ã‚‹ã‚“ã ã€‚ã‚‚ã¡ã‚ã‚“ã€èª­ã¿è¾¼ã‚€æ™‚ã«ã‚‚自動ã§å±•é–‹ã•ã‚Œã‚‹ã‚ˆã€‚ 김프는 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. @@ -526,7 +538,7 @@ Pritisnite i držite tipku Shift prije odabira kako bi mogli dodati novi već postojećem odabiru, umjesto da ga zamijenite novim. Koristite Ctrl prije odabira za izdvajanje novog izdvojili odabira iz već postojećeg odabira. 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を押ã—ãªãŒã‚‰å§‹ã‚ã‚Œã°é ˜åŸŸã‚’ã•ã£å¼•ã事ã«ãªã‚‹ã—ã­ã€‚ 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. @@ -559,6 +571,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 を押ã™ã“ã¨ã§ã€é¸æŠžé ˜åŸŸã‚’正方形や正円ã«ã—ãŸã‚Šã€é ˜åŸŸã‚’対角ã˜ã‚ƒãªãã£ã¦ä¸­å¿ƒã¨è§’ã§æŒ‡å®šã™ã‚‹ã“ã¨ã‚‚ã§ããŸã‚Šã™ã‚‹ã‚“ã ã€‚ ì„ íƒí•˜ëŠ” ë™ì•ˆ 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. @@ -569,6 +582,7 @@ Du kan trycka eller släppa Skift- och Ctrl-knapparna dÃ¥ du skapar en markering för att begränsa den till en perfekt kvadrat eller cirkel, eller för att centrera den pÃ¥ dess startpunkt. Щоб Ñтворити виділену ділÑнку у виглÑді квадрату або кола, а також, щоб Ñтворити виділену ділÑнку з вказаного центру, викориÑтовуйте клавіші Shift та Ctrl. 在进行选择的时候,您å¯ä»¥æŒ‰ä¸‹æˆ–释放Shiftå’ŒCtrl键得到一个标准的正方形或圆,或者使它以起始点为中心。 + 當é¸å–å€åŸŸæ™‚å¯ä»¥åŒæ™‚按下 Shift åŠ Ctrl éµï¼Œé€™æ¨£å¯ä»¥é™åˆ¶é¸æ“‡å€åŸŸç‚ºæ­£æ–¹å½¢æˆ–正圓形,或是將滑鼠開始拖曳的ä½ç½®å®šç‚ºé¸æ“‡å€åŸŸçš„中心點。 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. @@ -583,6 +597,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 も押ã—ãªãŒã‚‰è©¦ã—ã¦ã¿ã¦ã­ã€‚ 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. @@ -593,6 +608,7 @@ Du kan justera och placera om en markering genom att använda Alt-drag. Om detta gör att fönstret flyttar sig använder din fönsterhanterare redan Alt-tangenten. Prova att trycka Shift pÃ¥ samma gÃ¥ng. Ви можете Ñкорегувати та переміÑтити виділену ділÑнку викориÑтовуючи перетÑÐ³ÑƒÐ²Ð°Ð½Ð½Ñ Ð· утриманнÑм натиÑнутої Alt. Якщо це призводить до Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ñ†Ñ–Ð»Ð¾Ð³Ð¾ вікна, це означає ваш менеджер вікон вже викориÑтовує клавішу Alt. Спробуйте одночаÑно з цим натиÑкати Shift. å¯ä»¥é€šè¿‡Alt+拖动æ¥è°ƒæ•´å’Œæ”¹å˜é€‰åŒºã€‚如果这样åšä½¿çª—å£ç§»ä½äº†ï¼Œè¯´æ˜Žæ‚¨çš„窗å£ç®¡ç†å™¨å·²ç»ä½¿ç”¨äº†Alt键,请åŒæ—¶æŒ‰ä½Shift键。 + 按 Alt éµå†ç”¨æ»‘鼠拖曳å¯ä»¥èª¿æ•´å’Œé‡æ–°æ”¾ç½®é¸æ“‡å€åŸŸã€‚如果這個組åˆä»¤è¦–窗移動,å³è¡¨ç¤ºè¦–窗總管已經使用了 Altéµã€‚這個時候,請試試åŒæ™‚按下 Shift éµã€‚ 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. @@ -607,7 +623,7 @@ Vous pouvez dessiner de simples carrés ou cercles en utilisant Édition->Tracer la sélection. Il trace les contours de votre sélection courante. Des figures géométriques plus complexes sont réalisables avec l'outil chemin ou avec Filtres->Rendu->Figures géométriques. 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 ã ã­ã€‚ 편집->ì„ íƒ ë”°ë¼ê·¸ë¦¬ê¸°ë¥¼ 사용하면 단순한 사격형ì´ë‚˜ ì›ì„ 그릴 수 있습니다. 현재 ì„ íƒì˜ 모서리를 ë”°ë¼ ê·¸ë¦½ë‹ˆë‹¤. ë” ë³µìž¡í•œ ë„í˜•ì€ ê²½ë¡œ ë„구나 í•„í„°->ë Œë”->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. @@ -639,7 +655,7 @@ Si vous tracez un chemin (Édition->Tracer un chemin), un outil courant de peinture avec ses réglages courants peut être utilisé. Vous pouvez utilisez le pinceau en mode dégradé ou même la gomme ou l'outil éclaircir/assombrir. 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. @@ -670,7 +686,7 @@ Vous pouvez créer et éditer des sélections complexes en utilisant l'outil chemin. Le dialogue des chemins vous permet de travailler sur de multiples chemins et de les convertir en sélections. 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. @@ -701,6 +717,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. @@ -711,6 +728,7 @@ Du kan använda mÃ¥larverktygen för att ändra markeringen. Klicka pÃ¥ "Snabbmask"-knappen i nedre vänstra hörnet i ett bildfönster. Ändra din markering genom att mÃ¥la i bilden och klicka pÃ¥ knappen igen för att konvertera den tillbaka till en normal markering. Ð”Ð»Ñ Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼ÐµÐ¶ виділеної ділÑнки можна викориÑтовувати інÑтрументи малюваннÑ. Ð”Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ необхідно увімкнути "Швидка маÑка" у нижньому лівому куті вінка зображеннÑ, відредагувати виділену ділÑнку інÑтрументом малюваннÑ, потім ще раз натиÑнути кнопку Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÑ…Ð¾Ð´Ñƒ у звичайний режим. 您å¯ä»¥ä½¿ç”¨æ¶‚画工具æ¥æ”¹å˜é€‰åŒºã€‚点击图åƒçª—å£å·¦ä¸‹è§’的“快速蒙æ¿â€æŒ‰é’®ï¼Œåœ¨å›¾åƒä¸Šæ¶‚ç”»æ¥ä¿®æ”¹æ‚¨çš„选区,然åŽå†æ¬¡ç‚¹å‡»æŒ‰é’®æŠŠå®ƒè½¬æ¢å›žä¸€ä¸ªæ­£å¸¸é€‰åŒºã€‚ + 您å¯ä»¥ä½¿ç”¨ç¹ªç•«å·¥å…·ä¾†æ›´æ”¹é¸æ“‡å€åŸŸã€‚按下影åƒè¦–窗左下角的「快速é®ç½©ã€æŒ‰éˆ•ã€‚é€éŽåœ¨å½±åƒä¸Šç¹ªåœ–å¯ä»¥æ›´æ”¹é¸æ“‡å€åŸŸï¼Œç„¶å¾Œå†æŒ‰ä¸€æ¬¡æŒ‰éˆ•å¯ä»¥å°‡ä¹‹è½‰æ›ç‚ºæ™®é€šçš„é¸æ“‡å€åŸŸã€‚ You can save a selection to a channel (Select->Save to Channel) and then modify this channel with any paint tools. Using the buttons in the Channels dialog, you can toggle the visibility of this new channel or convert it to a selection. @@ -725,7 +743,7 @@ Vous pouvez sauvegarder une sélection dans un canal (Sélection->Enregistrer dans un canal) puis la modifier avec n'importe quel outil de dessin. En utilisant les boutons du dialogue des canaux, vous pouvez activer/désactiver la visibilité de ce nouveau canal ou le convertir comme une sélection. 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. @@ -763,6 +781,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. + 設定ダイアログ㧠"動的キーボードショートカット" をオンã«ã—ã¦ãŠã‘ã°ã€ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚­ãƒ¼ã®å‰²å½“を変ãˆã‚‹ã“ã¨ãŒã§ãるよ。ã©ã‚“ãªãƒ¡ãƒ‹ãƒ¥ãƒ¼ã§ã‚‚ã¾ãšãã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’呼ã³å‡ºã—ã¦ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã«ã‚«ãƒ¼ã‚½ãƒ«ã‚’当ã¦ãŸçŠ¶æ…‹ã§ã€æ–°ã—ã割り当ã¦ã‚‹ã‚­ãƒ¼ã®çµ„åˆã›ã‚’押ã™ã ã‘ã§è‰¯ã„ã‚“ã ã€‚"ショートカットã®ä¿å­˜" をオンã«ã—ã¦ãŠã‘ã°ã€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. @@ -773,6 +792,7 @@ När du har aktiverat "Dynamiska kortkommandon" i inställningsdialogen kan du ställa om snabbtangenter. Detta gör du genom att ta fram menyn, markera ett menyval och trycka pÃ¥ den önskade snabbtangentskombinationen. Detta sparas dÃ¥ du avslutar GIMP om "Spara kortkommandon" är aktiverat. ПіÑÐ»Ñ Ð²Ð²Ñ–Ð¼ÐºÐ½ÐµÐ½Ð½Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ— "Динамічні комбінації клавіш" у діалоговому вікні Параметри" ви можете перевизначати комбінації клавіш. Ð”Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ відкрийте меню наведіть вказівник на потрібний пункт меню, та натиÑніть бажану комбінацію клавіш. Якщо ввімкнено "Зберігати комбінації клавіш при виході", вона буде збережена під Ñ‡Ð°Ñ Ð²Ð¸Ñ…Ð¾Ð´Ñƒ з програми GIMP. 当您在首选项对è¯æ¡†ä¸­å¯ç”¨äº†â€œåŠ¨æ€å¿«æ·é”®â€ä»¥åŽï¼Œæ‚¨å°±å¯ä»¥é‡æ–°åˆ†é…å¿«æ·é”®äº†ã€‚åªè¦å¼¹å‡ºèœå•ï¼Œé€‰æ‹©ä¸€ä¸ªèœå•é¡¹ï¼Œç„¶åŽæŒ‰æ–°çš„å¿«æ·é”®ç»„åˆå°±è¡Œäº†ã€‚如果å¯ç”¨äº†â€œä¿å­˜å¿«æ·é”®â€ï¼Œé€€å‡º GIMP 时,这些新的快æ·é”®å°†ä¼šè¢«ä¿å­˜ä¸‹æ¥ã€‚ + 在å好設定å°è©±æ–¹å¡Šä¸­å•Ÿç”¨ã€Œå¯å³æ™‚更改æ·å¾‘éµè¨­å®šã€å¾Œï¼Œæ‚¨å¯ä»¥é‡æ–°å®‰æŽ’é¸å–®ä¸Šçš„æ·å¾‘éµã€‚方法是先用滑鼠é¸å–é¸å–®çš„æŸå€‹é …目,但ä¸è¦æŒ‰æ»‘鼠按鈕,然後按下新的æ·å¾‘éµçµ„åˆã€‚GIMP çµæŸæ™‚,這些按éµçµ„åˆæœƒè¢«å„²å­˜ä¸‹ä¾†ã€‚ 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. @@ -789,7 +809,7 @@ Ako vam se Äini da je vaÅ¡ zaslon prezatrpan možete pritisnuti tipku Tab nekoliko puta u okviru prozora neke slike kako bi omogućili sakrivanje ili prikazivanje palete alata i ostalih dijaloga. 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 キーを押ã™ã“ã¨ã§é“具箱やダイアログを出ã—入れã™ã‚‹ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚ í™”ë©´ì´ ë„ˆë¬´ 어지럽다면, ì´ë¯¸ì§€ ì°½ì—ì„œ 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. @@ -823,7 +843,7 @@ Možete prilagoditi podruÄje odabira za nejasni odabir ako kliknete i povlaÄite pokazivaÄ lijevo i desno. 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. @@ -857,7 +877,7 @@ Shift-kliknite na sliÄicu oka u dijalogu sloja kako bi sakrili sve slojeve osim tog sloja. Shift-kliknite ponovno kako bi prikazali sve slojeve. 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-í´ë¦­í•˜ë©´, 현재 ë ˆì´ì–´ë¥¼ 제외한 모든 ë ˆì´ì–´ë¥¼ 숨ê¹ë‹ˆë‹¤. 다시 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. @@ -891,7 +911,7 @@ Ctrl-kliknite na pregled maske sloja (layera) u dijalogu slojeva pod efekti maske sloja. 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 を押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®æœ‰åŠ¹ç„¡åŠ¹ã‚’切替ãˆã‚‰ã‚Œã‚‹ã‚“ã ã€‚ ë ˆì´ì–´ 대화ìƒìžì—ì„œ ë ˆì´ì–´ 마스í¬ì˜ 미리보기를 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. @@ -925,7 +945,7 @@ Alt-kliknite na pregled maske sloja (layera) u dijalogu slojeva gledajući direktno na masku. 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 を押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’直接見るモードã«åˆ‡æ›¿ãˆã‚‰ã‚Œã‚‹ã‚“ã ã€‚ ë ˆì´ì–´ 대화ìƒìžì—ì„œ ë ˆì´ì–´ 마스í¬ì˜ 미리보기를 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. @@ -959,7 +979,7 @@ Možete koristiti Alt-Tab za kruženje kroz sve slojeve u slici koja se ureÄ‘uje (ako upravitelj prozora koji koristite ne preuzme akcije tih tipaka...). 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 を押ã™ã¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’é †ã«åˆ‡æ›¿ãˆã‚‰ã‚Œã‚‹ã‚“ã ã€‚(ウィンドウマãƒãƒ¼ã‚¸ãƒ£ãŒã“ã®ã‚­ãƒ¼å‰²å½“を横å–ã‚Šã—ã¦ãªã‘ã‚Œã°ã­â€¥â€¥) 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...). @@ -993,7 +1013,7 @@ Ctrl-kliknite s alatom Bucket Fill kako bi koristio boju pozadine umjesto boje prednjeg plana. 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 を押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ã€èƒŒæ™¯è‰²ã§å¡—ã‚Šã¤ã¶ã™ã“ã¨ãŒã§ãるよ。 ì˜ì—­ 채우기 ë„구ì—ì„œ 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. @@ -1026,7 +1046,7 @@ Un Ctrl-glissé avec l'outil rotation contraindra la rotation à des angles multiples de 15 degrés. 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度å˜ä½ã«ãªã‚‹ã‚“ã ã€‚ 회전 ë„구ì—ì„œ Ctrl-드래그하면, 회전 ê°ì„ 15ë„ ë‹¨ìœ„ë¡œ 제한합니다. Transformavimo įrankiu pasuksite tiksliai kas 15 laipsnių kampu, jei spausite Ctrl. Ctrl-dra med Rotasjonsverktøyet begrenser rotasjonen til 15-graders vinkler. @@ -1058,6 +1078,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 を押ã™ã‚“ã ã€‚ã•ã‚‰ã«æ­£ç¢ºã«ä½ç½®ã‚’決ã‚る時ã«ã¯å®šè¦ã‚’円ã®æŽ¥ç·šã¨ãªã‚‹å ´æ‰€ã«æ°´å¹³ã€åž‚ç›´ã«ç½®ã„ã¦ãŠã“ã†ã€‚ã§ã€æœ€å¾Œã«å®šè¦ã®äº¤ç‚¹ã«ã‚«ãƒ¼ã‚½ãƒ«ã‚’ã‚‚ã£ã¦ã“ã‚Œã°å®Œç’§ã•ã€‚ ì›í˜• ì„ íƒì„ 만들려면, 타ì›í˜• ì„ íƒì„ 하는 ë™ì•ˆ 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. @@ -1068,6 +1089,7 @@ För att skapa en perfekt cirkel hÃ¥ller du nere Skift när du gör en ellipsmarkering. För att placera cirkeln exakt drar du horisontella och vertikala hjälplinjer till den cirkel som du vill markera, placerar din markör pÃ¥ skärningen av hjälplinjerna, och den resulterande markeringen kommer att precis röra vid hjälplinjerna. Щоб Ñтворити рівне коло, утримуйте клавішу Shift під Ñ‡Ð°Ñ Ð²Ð¸Ð´Ñ–Ð»ÐµÐ½Ð½Ñ ÐµÐ»Ñ–Ð¿Ñ‚Ð¸Ñ‡Ð½Ð¾Ñ— ділÑнки. Щоб доÑÑгти точного Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð»Ð°, додайте вертикальні та горизонтальні напрÑмні, Ñкі будуть дотичними майбутнього кола, розташуйте вказівник у точці перетину напрÑмних та Ñтворіть ділÑнку виділеннÑ. 如果需è¦åˆ›å»ºä¸€ä¸ªåœ†å½¢é€‰åŒºï¼Œå¯ä»¥åœ¨è¿›è¡Œæ¤­åœ†é€‰æ‹©çš„时候按ä½Shift键。需è¦ç²¾ç¡®æ”¾ç½®ä¸€ä¸ªåœ†ï¼Œå¯ä»¥æ‹–动水平和垂直的å‚考线使之与您想è¦é€‰æ‹©çš„圆相切,把您的光标放在å‚考线的相交处,最终的选区就会刚好触到å‚考线。 + è‹¥è¦é¸æ“‡æ­£åœ“å½¢å€åŸŸï¼Œæ–¹æ³•æ˜¯é¸æ“‡æ©¢åœ“å€åŸŸæ™‚按下 Shift éµã€‚è‹¥è¦ç²¾ç¢ºåœ°é¸å–放置圓形的ä½ç½®ï¼Œå…ˆæ‹–曳水平åŠåž‚ç›´åƒè€ƒç·šè‡³ç›®æ¨™åœ“形的切線ä½ç½®ï¼Œå†ç”¨æ»‘é¼ é¸å–åƒè€ƒç·šçš„交點,得出來的é¸æ“‡å€åŸŸä¾¿æœƒåƒ…僅接觸到åƒè€ƒç·šã€‚ If some of your scanned photos do not look colorful enough, you can easily improve their tonal range with the "Auto" button in the Levels tool (Layer->Colors->Levels). If there are any color casts, you can correct them with the Curves tool (Layer->Colors->Curves). @@ -1081,6 +1103,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). @@ -1091,6 +1114,7 @@ Om en del av dina inlästa bilder inte ser ut att vara tillräckligt färggranna kan du enkelt förbättra deras färgtonsintervall med knappen "Auto" i nivÃ¥verktyget (Lager->Färger->NivÃ¥er). Om det finns nÃ¥gra färgskiftningar kan du korrigera dem med kurvverktyget (Lager->Färger->Kurvor). Якщо відÑкановані Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð²Ð¸Ð³Ð»Ñдають недоÑтатньо кольоровими, Ñ—Ñ… тональний діапазон можна виправити за допомогою кнопки "Ðвто" у діалоговому вікні "Рівні" (Шар->Кольори->Рівні). Відтінки кольору можна Ñкорегувати інÑтрументом "Криві" (Шар->Кольори->Криві). 如果您扫æ的一些照片看起æ¥è‰²å½©ä¸è¶³ï¼Œæ‚¨å¯ä»¥ä½¿ç”¨è‰²é˜¶å·¥å…·(图层->颜色->色阶)中的“自动â€æŒ‰é’®è½»æ¾æ”¹è¿›å®ƒä»¬çš„色彩效果。如果有什么颜色æŸå¤±ï¼Œæ‚¨å¯ä»¥ç”¨æ›²çº¿å·¥å…·(图层->颜色->曲线)把它们纠正回æ¥ã€‚ + 如果掃æ出來的相片色彩ä¸å¤ªé®®è±”,å¯ä»¥ä½¿ç”¨ã€Œè‰²éšŽã€å·¥å…·ï¼ˆå½±åƒâ†’色彩→色階)中的「自動ã€æŒ‰éˆ•ä¾†æ”¹å–„å½±åƒçš„色彩範åœã€‚如果色彩有任何走樣,å¯ä»¥åˆ©ç”¨ã€Œæ›²ç·šã€å·¥å…·ï¼ˆå½±åƒâ†’色彩→曲線)來修正。 diff -uraN gimp-2.2.8/tips/ja.po gimp-2.2.9/tips/ja.po --- gimp-2.2.8/tips/ja.po 2005-06-26 22:51:57.000000000 +0200 +++ gimp-2.2.9/tips/ja.po 2005-10-27 17:08:15.000000000 +0200 @@ -12,15 +12,14 @@ "Project-Id-Version: gimp-tips gimp-2-2\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-18 00:46+0100\n" -"PO-Revision-Date: 2005-04-01 00:21+0900\n" -"Last-Translator: Ryoichi INAGAKI \n" +"PO-Revision-Date: 2005-09-10 19:00+0900\n" +"Last-Translator: \n" "Language-Team: Japanese \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 -#, fuzzy msgid "Welcome to the GIMP!" msgstr "GIMP ã¸ã‚ˆã†ã“ã !" @@ -30,7 +29,7 @@ "viewing the mask directly." msgstr "" "レイヤーダイアログã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã®ç¸®å°è¡¨ç¤ºã‚’ Alt を押ã—ãªãŒã‚‰ã‚¯" -"リックã™ã‚‹ã¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’直接見るモードã«åˆ‡æ›¿ãˆã‚‰ã‚Œã‚‹ã‚“ã ï¼Ž" +"リックã™ã‚‹ã¨ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’直接見るモードã«åˆ‡æ›¿ãˆã‚‰ã‚Œã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:3 msgid "" @@ -38,23 +37,23 @@ "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 を押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ï¼ŒèƒŒæ™¯è‰²ã§å¡—ã‚Šã¤" -"ã¶ã™ã“ã¨ãŒã§ãるよ." +"å¡—ã‚Šã¤ã¶ã—ツールã§ã¯ 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" -"度å˜ä½ã«ãªã‚‹ã‚“ã ï¼Ž" +"変æ›ãƒ„ールã®å›žè»¢ãƒ¢ãƒ¼ãƒ‰ã§ã¯ Ctrl を押ã—ãªãŒã‚‰ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã¨ã€å›žè»¢ãŒ15" +"度å˜ä½ã«ãªã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:6 msgid "" @@ -62,11 +61,10 @@ "but that one. Shift-click again to show all layers." msgstr "" "レイヤーダイアログã§ã€Œç›®ã€ã®ã‚¢ã‚¤ã‚³ãƒ³ã‚’ Shift を押ã—ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™" -"ã‚‹ã“ã¨ã§ã€ãれ以外ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼å…¨éƒ¨ã‚’éš ã™ã“ã¨ãŒã§ãã‚‹ã‚“ã ï¼Žã‚‚ã†ä¸€å›žåŒã˜äº‹ã‚’ã™ã‚Œ" -"ã°å…¨éƒ¨ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒè¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚‹ã‚ˆï¼Ž" +"ã‚‹ã“ã¨ã§ã€ãれ以外ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼å…¨éƒ¨ã‚’éš ã™ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚ã‚‚ã†ä¸€å›žåŒã˜äº‹ã‚’ã™ã‚Œ" +"ã°å…¨éƒ¨ã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ãŒè¡¨ç¤ºã•ã‚Œã‚‹ã‚ˆã†ã«ãªã‚‹ã‚ˆã€‚" #: tips/gimp-tips.xml.in.h:7 -#, fuzzy msgid "" "A floating selection must be anchored to a new layer or to the last active " "layer before doing other operations on the image. Click on the "New " @@ -74,11 +72,10 @@ "use the menus to do the same." msgstr "" "フローティングé¸æŠžã¯æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‹æœ€å¾Œã«æ“作ã—ãŸã‚¢ã‚¯ãƒ†ã‚£ãƒ–レイヤーã«å›ºå®šã™ã‚‹" -"å¿…è¦ãŒã‚ã‚‹ã‚“ã ï¼Žãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã§\"æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼\" ã‹ \"レイヤー固定ボタン" -"\"をクリックã™ã‚‹ã‹ï¼Œãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’使ã†ã®ã•ï¼Ž" +"å¿…è¦ãŒã‚ã‚‹ã‚“ã ã€‚レイヤーダイアログ㧠"æ–°è¦ãƒ¬ã‚¤ãƒ¤ãƒ¼" ã‹ "レイ" +"ヤー固定"ボタンをクリックã™ã‚‹ã‹ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’使ã†ã®ã•ã€‚" #: tips/gimp-tips.xml.in.h:8 -#, fuzzy msgid "" "After you enabled "Dynamic Keyboard Shortcuts" in the Preferences " "dialog, you can reassign shortcut keys. Do so by bringing up the menu, " @@ -86,34 +83,33 @@ "Save Keyboard Shortcuts" is enabled, the key bindings are saved when " "you exit GIMP." msgstr "" -"設定ダイアログ㧠\"動的キーボードショートカット\" をオンã«ã—ã¦ãŠã‘ã°ï¼Œã‚·ãƒ§ãƒ¼" -"トカットキーã®å‰²å½“を変ãˆã‚‹ã“ã¨ãŒã§ãるよ.ã©ã‚“ãªãƒ¡ãƒ‹ãƒ¥ãƒ¼ã§ã‚‚ã¾ãšãã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼" -"を呼ã³å‡ºã—ã¦ï¼Œãƒ¡ãƒ‹ãƒ¥ãƒ¼ã«ã‚«ãƒ¼ã‚½ãƒ«ã‚’当ã¦ãŸçŠ¶æ…‹ã§ï¼Œæ–°ã—ã割り当ã¦ã‚‹ã‚­ãƒ¼ã®çµ„åˆã›" -"を押ã™ã ã‘ã§è‰¯ã„ã‚“ã ï¼Ž\"ショートカットã®ä¿å­˜\" をオンã«ã—ã¦ãŠã‘ã°ï¼ŒGIMP ã®çµ‚" -"了時ã«è‡ªå‹•çš„ã«ä¿å­˜ã•ã‚Œã‚‹ã‚ˆï¼Ž" +"設定ダイアログ㧠"動的キーボードショートカット" をオンã«ã—ã¦ãŠã‘" +"ã°ã€ã‚·ãƒ§ãƒ¼ãƒˆã‚«ãƒƒãƒˆã‚­ãƒ¼ã®å‰²å½“を変ãˆã‚‹ã“ã¨ãŒã§ãるよ。ã©ã‚“ãªãƒ¡ãƒ‹ãƒ¥ãƒ¼ã§ã‚‚ã¾ãšã" +"ã®ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã‚’呼ã³å‡ºã—ã¦ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ã«ã‚«ãƒ¼ã‚½ãƒ«ã‚’当ã¦ãŸçŠ¶æ…‹ã§ã€æ–°ã—ã割り当ã¦ã‚‹" +"キーã®çµ„åˆã›ã‚’押ã™ã ã‘ã§è‰¯ã„ã‚“ã ã€‚"ショートカットã®ä¿å­˜" をオンã«ã—" +"ã¦ãŠã‘ã°ã€GIMP ã®çµ‚了時ã«è‡ªå‹•çš„ã«ä¿å­˜ã•ã‚Œã‚‹ã‚ˆã€‚" #: tips/gimp-tips.xml.in.h:9 -#, fuzzy msgid "" "Click and drag on a ruler to place a guide on an image. All dragged " "selections will snap to the guides. You can remove guides by dragging them " "off the image with the Move tool." msgstr "" -"目盛枠ã®ä¸Šã‹ã‚‰ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã¨å®šè¦ã‚’ç”»åƒä¸Šã«å¼•ã出ã›ã‚‹ã‚ˆï¼Žé¸æŠžé ˜åŸŸãªã‚“ã‹ã¯ã“ã®" -"定è¦ã«å¸ã„ã¤ãよã†ã«ãªã£ã¦ã‚‹ã‚“ã ï¼Žã“ã®å®šè¦ã¯ç§»å‹•ãƒ„ールを使ã£ã¦ç”»åƒä¸Šã‹ã‚‰è¿½ã„" -"出ã™ã“ã¨ã‚‚ã§ãるよã†ã«ãªã£ã¦ã‚‹ã‚ˆï¼Ž" +"目盛枠ã®ä¸Šã‹ã‚‰ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã¨å®šè¦ã‚’ç”»åƒä¸Šã«å¼•ã出ã›ã‚‹ã‚ˆã€‚é¸æŠžé ˜åŸŸãªã‚“ã‹ã¯ã“ã®" +"定è¦ã«å¸ã„ã¤ãよã†ã«ãªã£ã¦ã‚‹ã‚“ã ã€‚ã“ã®å®šè¦ã¯ç§»å‹•ãƒ„ールを使ã£ã¦ç”»åƒä¸Šã‹ã‚‰è¿½ã„" +"出ã™ã“ã¨ã‚‚ã§ãるよã†ã«ãªã£ã¦ã‚‹ã‚ˆã€‚" #: tips/gimp-tips.xml.in.h:10 -#, fuzzy msgid "" "If some of your scanned photos do not look colorful enough, you can easily " "improve their tonal range with the "Auto" button in the Levels " "tool (Layer->Colors->Levels). If there are any color casts, you can " "correct them with the Curves tool (Layer->Colors->Curves)." msgstr "" -"スキャンã—ãŸç”»åƒã®è‰²ãŒæ¸›ã£ã¡ã‚ƒã†ã¨ãã«ã¯ï¼Œãƒ¬ãƒ™ãƒ«ãƒ„ール (ç”»åƒ->色->レベル) ã§" -"\"自動\"ボタンを使ã£ã¦ãƒˆãƒ¼ãƒ³ã‚’ç°¡å˜ã«æ”¹å–„ã™ã‚‹ã“ã¨ãŒã§ãるよ.カラーキャストãŒ" -"ã‚ã‚Œã°ï¼Œã‚«ãƒ¼ãƒ–ツール (レイヤー->色->カーブ) ã§ä¿®æ­£ã™ã‚‹ã“ã¨ãŒã§ãるよ." +"スキャンã—ãŸç”»åƒã®è‰²ãŒæ¸›ã£ã¡ã‚ƒã†ã¨ãã«ã¯ã€ãƒ¬ãƒ™ãƒ«ãƒ„ール (ç”»åƒ->色->レベ" +"ル) ã§"自動"ボタンを使ã£ã¦ãƒˆãƒ¼ãƒ³ã‚’ç°¡å˜ã«æ”¹å–„ã™ã‚‹ã“ã¨ãŒã§ãるよ。カ" +"ラーキャストãŒã‚ã‚Œã°ã€ã‚«ãƒ¼ãƒ–ツール (レイヤー->色->カーブ) ã§ä¿®æ­£ã™ã‚‹ã“" +"ã¨ãŒã§ãるよ。" #: tips/gimp-tips.xml.in.h:11 msgid "" @@ -122,16 +118,16 @@ "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 キーを押ã™ã“ã¨ã§" -"é“具箱やダイアログを出ã—入れã™ã‚‹ã“ã¨ãŒã§ãã‚‹ã‚“ã ï¼Ž" +"ç”»é¢ãŒãã‚…ã†ãã¤ãªæ™‚ã¯ã€ç”»åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã§ä½•å›žã‹ Tab キーを押ã™ã“ã¨ã§" +"é“具箱やダイアログを出ã—入れã™ã‚‹ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:13 msgid "" @@ -139,23 +135,22 @@ "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 -#, fuzzy msgid "" "Not all effects can be applied to all kinds of images. This is indicated by " "a grayed-out menu-entry. You may need to change the image mode to RGB (Image-" ">Mode->RGB), add an alpha-channel (Layer->Transparency->Add " "Alpha Channel) or flatten it (Image->Flatten Image)." msgstr "" -"全部ã®ãƒ—ラグインãŒå…¨ã¦ã®ç¨®é¡žã®ç”»åƒã«ä½¿ãˆã‚‹ã‚ã‘ã˜ã‚ƒãªã„ã‚“ã ï¼Žä½œæ¥­ä¸­ã®ç”»åƒã«å¯¾" -"ã—ã¦ä½¿ãˆãªã„ã‚„ã¤ã¯ï¼Œãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒç°è‰²ã«ãªã£ã¦é¸æŠžã§ããªããªã£ã¦ã‚‹ã¯ãšã ã‚ˆï¼Žãã‚“" -"ãªæ™‚ã«ã¯ RGB å½¢å¼ã«ã—ãŸã‚Š (ç”»åƒ->モード->RGB),アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’加ãˆ" -"ãŸã‚Š (レイヤー->é€æ˜Ž->アルファãƒãƒ£ãƒ³ãƒãƒ«ã®è¿½åŠ ),画åƒã‚’çµ±åˆã—ã¦ã¿ãŸã‚Š " -"(ç”»åƒ->ç”»åƒã®çµ±åˆ) ã™ã‚‹ã¨ã„ã„ã‹ã‚‚ã—ã‚Œãªã„ã­ï¼Ž" +"全部ã®ãƒ—ラグインãŒå…¨ã¦ã®ç¨®é¡žã®ç”»åƒã«ä½¿ãˆã‚‹ã‚ã‘ã˜ã‚ƒãªã„ã‚“ã ã€‚作業中ã®ç”»åƒã«å¯¾" +"ã—ã¦ä½¿ãˆãªã„ã‚„ã¤ã¯ã€ãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒç°è‰²ã«ãªã£ã¦é¸æŠžã§ããªããªã£ã¦ã‚‹ã¯ãšã ã‚ˆã€‚ãã‚“" +"ãªæ™‚ã«ã¯ RGB å½¢å¼ã«ã—ãŸã‚Š (ç”»åƒ->モード->RGB)ã€ã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’加ãˆ" +"ãŸã‚Š (レイヤー->é€æ˜Ž->アルファãƒãƒ£ãƒ³ãƒãƒ«ã®è¿½åŠ )ã€ç”»åƒã‚’çµ±åˆã—ã¦ã¿ãŸã‚Š " +"(ç”»åƒ->ç”»åƒã®çµ±åˆ) ã™ã‚‹ã¨ã„ã„ã‹ã‚‚ã—ã‚Œãªã„ã­ã€‚" #: tips/gimp-tips.xml.in.h:15 msgid "" @@ -163,14 +158,14 @@ "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ã‚’" -"押ã—ãªãŒã‚‰å§‹ã‚ã‚Œã°é ˜åŸŸã‚’ã•ã£å¼•ã事ã«ãªã‚‹ã—ã­ï¼Ž" +"領域をé¸æŠžã—始ã‚る時㫠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 "" +msgstr "GIMP ã§ã¯ã»ã¨ã‚“ã©ã®å¤‰æ›´ã¯ã‚„ã‚Šç›´ã—ãŒããã‹ã‚‰ã€æ°—軽ã«è©¦ã™ã¨ã„ã„よ。" #: tips/gimp-tips.xml.in.h:17 msgid "" @@ -178,9 +173,9 @@ ".bz2, if you have bzip2 installed) to the filename and your image " "will be saved compressed. Of course loading compressed images works too." msgstr "" -"GIMP ã¯è‡ªå‹• gzip 圧縮をサãƒãƒ¼ãƒˆã—ã¦ã„るよ.å˜ã«æ‹¡å¼µå­ .gz ã‚’ (bzip2 " -"ãŒã‚る時ã«ã¯ .bz2 ã®æ–¹ãŒã„ã„ã‹ãª) 付ã‘ã‚‹ã ã‘ã§ï¼Œè‡ªå‹•çš„ã«åœ§ç¸®ã•ã‚Œã‚‹ã‚ˆ" -"ã†ã«ãªã£ã¦ã‚‹ã‚“ã ï¼Žã‚‚ã¡ã‚ん,読ã¿è¾¼ã‚€æ™‚ã«ã‚‚自動ã§å±•é–‹ã•ã‚Œã‚‹ã‚ˆï¼Ž" +"GIMP ã¯è‡ªå‹• gzip 圧縮をサãƒãƒ¼ãƒˆã—ã¦ã„るよ。å˜ã«æ‹¡å¼µå­ .gz ã‚’ (bzip2 " +"ãŒã‚る時ã«ã¯ .bz2 ã®æ–¹ãŒã„ã„ã‹ãª) 付ã‘ã‚‹ã ã‘ã§ã€è‡ªå‹•çš„ã«åœ§ç¸®ã•ã‚Œã‚‹ã‚ˆ" +"ã†ã«ãªã£ã¦ã‚‹ã‚“ã ã€‚ã‚‚ã¡ã‚ã‚“ã€èª­ã¿è¾¼ã‚€æ™‚ã«ã‚‚自動ã§å±•é–‹ã•ã‚Œã‚‹ã‚ˆã€‚" #: tips/gimp-tips.xml.in.h:18 msgid "" @@ -188,24 +183,22 @@ "stack of slides or filters, such that looking through them you see a " "composite of their contents." msgstr "" -"GIMP ã§ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’使ã£ã¦ç”»åƒã‚’ã¾ã¨ã‚ã‚‹ã“ã¨ãŒã§ãã‚‹ã‚“ã ï¼Žã¾ãスライドã¨ã‹ãƒ•ã‚£" -"ルタをç©ã¿é‡ã­ãŸã‚‚ã®ã‚’ã™ã‹ã—ã¦è¦‹ã¦ã„るよã†ãªã‚‚ã®ã ã¨æ€ã£ã¦ãれれã°ã„ã„." +"GIMP ã§ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’使ã£ã¦ç”»åƒã‚’ã¾ã¨ã‚ã‚‹ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚ã¾ãスライドã¨ã‹ãƒ•ã‚£" +"ルタをç©ã¿é‡ã­ãŸã‚‚ã®ã‚’ã™ã‹ã—ã¦è¦‹ã¦ã„るよã†ãªã‚‚ã®ã ã¨æ€ã£ã¦ãれれã°ã„ã„。" #: tips/gimp-tips.xml.in.h:19 -#, fuzzy msgid "" "The layer named "Background" is special because it lacks " "transparency. This prevents you from moving the layer up in the stack. You " "may add transparency to it by right-clicking in the Layers dialog and " "selecting "Add Alpha Channel"." msgstr "" -"\"背景\" ã¨ã„ã†åã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯ç‰¹åˆ¥ã ã‚ˆï¼Žé€æ˜Žã«ã—ãŸã‚Šï¼Œãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’付ã‘ãŸ" -"り,レイヤーを上ã«ç§»å‹•ã•ã›ã‚‹ã“ã¨ãŒã§ããªã„ã‚“ã ï¼Žé€æ˜Žã«ã—ãŸã„å ´åˆã«ã¯ãƒ¬ã‚¤ãƒ¤ãƒ¼" -"ダイアログ中ã§å³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ï¼Œã€Œã‚¢ãƒ«ãƒ•ã‚¡ãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加ã€ã‚’é¸æŠžã—ã¦ã‚„ã‚‹ã¨ã„" -"ã„よ." +""背景" ã¨ã„ã†åã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã¯ç‰¹åˆ¥ã ã‚ˆã€‚é€æ˜Žã«ã—ãŸã‚Šã€ãƒ¬ã‚¤ãƒ¤ãƒ¼ãƒžã‚¹ã‚¯ã‚’" +"付ã‘ãŸã‚Šã€ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’上ã«ç§»å‹•ã•ã›ã‚‹ã“ã¨ãŒã§ããªã„ã‚“ã ã€‚é€æ˜Žã«ã—ãŸã„å ´åˆã«ã¯ãƒ¬" +"イヤーダイアログ中ã§å³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ã€"アルファãƒãƒ£ãƒ³ãƒãƒ«ã‚’追加"ã‚’é¸" +"択ã—ã¦ã‚„ã‚‹ã¨ã„ã„よ。" #: tips/gimp-tips.xml.in.h:20 -#, fuzzy msgid "" "To create a circle-shaped selection, hold Shift while doing an " "ellipse select. To place a circle precisely, drag horizontal and vertical " @@ -213,9 +206,9 @@ "intersection of the guides, and the resulting selection will just touch the " "guides." msgstr "" -"正円を作るã«ã¯ï¼Œæ¥•å††é¸æŠžãƒ„ールを使ã£ã¦ã‚‹æ™‚ã« Shift を押ã™ã‚“ã ï¼Žã•ã‚‰" -"ã«æ­£ç¢ºã«ä½ç½®ã‚’決ã‚る時ã«ã¯å®šè¦ã‚’円ã®æŽ¥ç·šã¨ãªã‚‹å ´æ‰€ã«æ°´å¹³ï¼Œåž‚ç›´ã«ç½®ã„ã¦ãŠã“" -"ã†ï¼Žã§ï¼Œæœ€å¾Œã«å®šè¦ã®äº¤ç‚¹ã«ã‚«ãƒ¼ã‚½ãƒ«ã‚’ã‚‚ã£ã¦ã“ã‚Œã°å®Œç’§ã•ï¼Ž" +"円形ã®é¸æŠžé ˜åŸŸã‚’作るã«ã¯ã€æ¥•å††é¸æŠžãƒ„ールを使ã£ã¦ã‚‹æ™‚ã« Shift を押ã™" +"ã‚“ã ã€‚ã•ã‚‰ã«æ­£ç¢ºã«ä½ç½®ã‚’決ã‚る時ã«ã¯å®šè¦ã‚’円ã®æŽ¥ç·šã¨ãªã‚‹å ´æ‰€ã«æ°´å¹³ã€åž‚ç›´ã«ç½®" +"ã„ã¦ãŠã“ã†ã€‚ã§ã€æœ€å¾Œã«å®šè¦ã®äº¤ç‚¹ã«ã‚«ãƒ¼ã‚½ãƒ«ã‚’ã‚‚ã£ã¦ã“ã‚Œã°å®Œç’§ã•ã€‚" #: tips/gimp-tips.xml.in.h:21 msgid "" @@ -224,9 +217,9 @@ "cursor position. If you also press Ctrl, the line will be " "constrained to 15 degree angles." msgstr "" -"æ画ツール (絵筆,エアブラシ,鉛筆) を使ã£ã¦ã„ã‚‹ã¨ãã« Shift を押ã—" -"ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ã‚«ãƒ¼ã‚½ãƒ«ã®ã¨ã“ã‚ã¾ã§ç›´ç·šãŒå¼•ã‹ã‚Œã‚‹ã‚ˆï¼Žã•ã‚‰ã« Ctrl を押ã—ã¦ã‚„ã‚Œã°ï¼Œç›´ç·šãŒ15度å˜ä½ã«ãªã‚‹ã‚“ã ï¼Ž" +"æ画ツール (絵筆ã€ã‚¨ã‚¢ãƒ–ラシã€é‰›ç­†) を使ã£ã¦ã„ã‚‹ã¨ãã« Shift を押ã—" +"ãªãŒã‚‰ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ã‚«ãƒ¼ã‚½ãƒ«ã®ã¨ã“ã‚ã¾ã§ç›´ç·šãŒå¼•ã‹ã‚Œã‚‹ã‚ˆã€‚ã•ã‚‰ã« Ctrl を押ã—ã¦ã‚„ã‚Œã°ã€ç›´ç·šãŒ15度å˜ä½ã«ãªã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:22 msgid "" @@ -235,29 +228,28 @@ "the layers and every aspect of your work-in-progress. Once a project is " "completed, you can save it as JPEG, PNG, GIF, ..." msgstr "" -"後ã§ã¾ãŸç·¨é›†ã‚’ã™ã‚‹ç”»åƒã‚’ä¿å­˜ã™ã‚‹æ™‚ã«ã¯ï¼ŒGIMP 固有形å¼ã® XCF を使ãŠã†(æ‹¡å¼µå­" -"㯠.xcf).ã“ã‚Œã¯ä½œæ¥­ä¸­ã®å…¨ã¦ã®çŠ¶æ…‹ã‚’記録ã—ã¦ãれるんã ï¼Žç”»åƒã‚’完æˆã•" -"ã›ã¦ã‹ã‚‰ï¼ŒJPEG, PNG, GIF ã¨ã—ã¦ä¿å­˜ã—よã†ã­..." +"後ã§ã¾ãŸç·¨é›†ã‚’ã™ã‚‹ç”»åƒã‚’ä¿å­˜ã™ã‚‹æ™‚ã«ã¯ã€GIMP 固有形å¼ã® XCF を使ãŠã†(æ‹¡å¼µå­" +"㯠.xcf)。ã“ã‚Œã¯ä½œæ¥­ä¸­ã®å…¨ã¦ã®çŠ¶æ…‹ã‚’記録ã—ã¦ãれるんã ã€‚ç”»åƒã‚’完æˆã•" +"ã›ã¦ã‹ã‚‰ã€JPEG, PNG, GIF ã¨ã—ã¦ä¿å­˜ã—よã†ã­..." #: tips/gimp-tips.xml.in.h:23 -#, fuzzy msgid "" "You can adjust or move a selection by using Alt-drag. If this makes " "the window move, your window manager uses the Alt key already. Try " "pressing Shift at the same time." msgstr "" -"Alt を押ã—ãªãŒã‚‰ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã¨é¸æŠžé ˜åŸŸã‚’調節ã—ç›´ã™ã“ã¨ãŒã§ãるよ.も" -"ã—ウィンドウãŒå‹•ã„ã¦ã—ã¾ã†ã®ã§ã‚ã‚Œã°ï¼Œå›ã®ä½¿ã£ã¦ã„るウィンドウマãƒãƒ¼ã‚¸ãƒ£ãƒ¼ã™" -"ã§ã« Alt を使ã£ã¦ã‚‹ã‚“ã ï¼Žãã†ã„ã†ã¨ã㯠Shift も押ã—ãªãŒã‚‰" -"試ã—ã¦ã¿ã¦ã­ï¼Ž" +"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 "" @@ -265,8 +257,8 @@ "dialog allows you to work on multiple paths and to convert them to " "selections." msgstr "" -"ベジエツールを使ã£ã¦è¤‡é›‘ãªé¸æŠžé ˜åŸŸã‚’作れるよ.パスダイアログã§ã¯è¤‡æ•°ã®ãƒ‘スã§" -"作業ã—ãŸã‚Šé¸æŠžé ˜åŸŸã«å¤‰æ›ã—ãŸã‚Šã§ãã‚‹ã‚“ã ï¼Ž" +"パスツールを使ã£ã¦è¤‡é›‘ãªé¸æŠžé ˜åŸŸã‚’作れるよ。パスダイアログã§ã¯è¤‡æ•°ã®ãƒ‘スã§ä½œ" +"業ã—ãŸã‚Šé¸æŠžé ˜åŸŸã«å¤‰æ›ã—ãŸã‚Šã§ãã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:26 msgid "" @@ -274,7 +266,7 @@ "This will create a new image containing only that layer." msgstr "" "レイヤーダイアログã‹ã‚‰é“å…·ç®±ã¸ãƒ¬ã‚¤ãƒ¤ãƒ¼ã‚’ドラッグã—ã¦æŒã£ã¦ã„ãã“ã¨ã‚‚ã§ãã‚‹ã‚“" -"ã ï¼Žã™ã‚‹ã¨ãã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã§æ–°ã—ã„ç”»åƒã‚’作るんã ï¼Ž" +"ã ã€‚ã™ã‚‹ã¨ãã®ãƒ¬ã‚¤ãƒ¤ãƒ¼ã§æ–°ã—ã„ç”»åƒã‚’作るんã ã€‚" #: tips/gimp-tips.xml.in.h:27 msgid "" @@ -282,9 +274,9 @@ "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 "" -"GIMP ã®è‰²ã€…ãªã‚‚ã®ã‚’ドラッグ&ドロップã™ã‚‹ã“ã¨ãŒã§ãるよ.例ãˆã°é“具箱や色パ" -"レットã‹ã‚‰è‰²ã‚’ドラッグã—ã¦ç”»åƒã¸ãƒ‰ãƒ­ãƒƒãƒ—ã™ã‚‹ã¨ï¼Œãã®è‰²ã§ç”»åƒã‚„é¸æŠžé ˜åŸŸãŒå¡—ã‚Š" -"ã¤ã¶ã•ã‚Œã‚‹ã‚“ã ï¼Ž" +"GIMP ã®è‰²ã€…ãªã‚‚ã®ã‚’ドラッグ&ドロップã™ã‚‹ã“ã¨ãŒã§ãるよ。例ãˆã°é“具箱や色パ" +"レットã‹ã‚‰è‰²ã‚’ドラッグã—ã¦ç”»åƒã¸ãƒ‰ãƒ­ãƒƒãƒ—ã™ã‚‹ã¨ã€ãã®è‰²ã§ç”»åƒã‚„é¸æŠžé ˜åŸŸãŒå¡—ã‚Š" +"ã¤ã¶ã•ã‚Œã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:28 msgid "" @@ -293,8 +285,8 @@ "using the Path tool or with Filters->Render->Gfig." msgstr "" "編集 -> ストロークæç”» を使ã£ã¦ç¾åœ¨æœ‰åŠ¹ãªãƒ–ラシã§é¸æŠžé ˜åŸŸã®ç¸ã«æ²¿ã£ã¦æã" -"ã“ã¨ãŒã§ãã‚‹ã‚“ã ï¼Žæ­£æ–¹å½¢ã‚„正円を書ããŸã„時ã«ã¯ä¾¿åˆ©ã ã­ï¼Žã‚‚ã£ã¨è¤‡é›‘ãªå›³å½¢ã‚’æ" -"ããŸã„時ã«ã¯ãƒ‘スツールや フィルタ -> æ写 -> Gfig ã ã­ï¼Ž" +"ã“ã¨ãŒã§ãã‚‹ã‚“ã ã€‚正方形や正円を書ããŸã„時ã«ã¯ä¾¿åˆ©ã ã­ã€‚ã‚‚ã£ã¨è¤‡é›‘ãªå›³å½¢ã‚’æ" +"ããŸã„時ã«ã¯ãƒ‘スツールや フィルタ -> æ写 -> Gfig ã ã­ã€‚" #: tips/gimp-tips.xml.in.h:29 msgid "" @@ -302,26 +294,25 @@ "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 -#, fuzzy msgid "" "You can press or release the Shift and Ctrl keys while you " "are making a selection in order to constrain it to a square or a circle, or " "to have it centered on its starting point." msgstr "" -"é¸æŠžé ˜åŸŸã‚’作ã£ã¦ã‚‹æœ€ä¸­ã« Shift ã‚„ Ctrl を押ã™ã“ã¨ã§ï¼Œé¸æŠžé ˜" -"域を正方形や正円ã«ã—ãŸã‚Šï¼Œé ˜åŸŸã‚’対角ã˜ã‚ƒãªãã£ã¦ä¸­å¿ƒã¨è§’ã§æŒ‡å®šã™ã‚‹ã“ã¨ã‚‚ã§ã" -"ãŸã‚Šã™ã‚‹ã‚“ã ï¼Ž" +"é¸æŠžé ˜åŸŸã‚’作ã£ã¦ã‚‹æœ€ä¸­ã« Shift ã‚„ Ctrl を押ã™ã“ã¨ã§ã€é¸æŠžé ˜" +"域を正方形や正円ã«ã—ãŸã‚Šã€é ˜åŸŸã‚’対角ã˜ã‚ƒãªãã£ã¦ä¸­å¿ƒã¨è§’ã§æŒ‡å®šã™ã‚‹ã“ã¨ã‚‚ã§ã" +"ãŸã‚Šã™ã‚‹ã‚“ã ã€‚" #: tips/gimp-tips.xml.in.h:32 msgid "" @@ -330,9 +321,9 @@ "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 "" @@ -340,27 +331,26 @@ "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 -#, fuzzy msgid "" "You can use the paint tools to change the selection. Click on the "" "Quick Mask" button at the bottom left of an image window. Change your " "selection by painting in the image and click on the button again to convert " "it back to a normal selection." msgstr "" -"é¸æŠžé ˜åŸŸã‚’変ãˆã‚‹ãŸã‚ã«æ画ツールを使ã†ã“ã¨ãŒã§ãるよ.画åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®å·¦ä¸‹ã®" -"\"クイックマスク\"ボタンをクリックã—よã†ï¼Žæç”»ã®å¤‰æ›´ãŒçµ‚ã‚ã£ãŸã‚‰ã‚‚ã†ä¸€åº¦ã‚¯" -"リックã—ã¦ã‚„ã‚‹ã“ã¨ã§ã„ã¤ã‚‚ã®é¸æŠžé ˜åŸŸã«æˆ»ã‚‹ã‚“ã ï¼Ž" +"é¸æŠžé ˜åŸŸã‚’変ãˆã‚‹ãŸã‚ã«æ画ツールを使ã†ã“ã¨ãŒã§ãるよ。画åƒã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®å·¦ä¸‹ã®" +""クイックマスク"ボタンをクリックã—よã†ã€‚æç”»ã®å¤‰æ›´ãŒçµ‚ã‚ã£ãŸã‚‰ã‚‚ã†" +"一度クリックã—ã¦ã‚„ã‚‹ã“ã¨ã§ã„ã¤ã‚‚ã®é¸æŠžé ˜åŸŸã«æˆ»ã‚‹ã‚“ã ã€‚" #~ msgid "" #~ "The file selection dialog box has command-line completion with TabTab キーを" -#~ "使ã£ã¦ã®è£œå®ŒãŒã§ãるよ.ファイルåã®ä¸€éƒ¨åˆ†ã‚’打ã£ãŸå¾Œã§ï¼ŒTabキーを" -#~ "押ã›ã°â€¥â€¥ã»ã‚‰ã­ï¼Œè£œå®Œã•ã‚Œã‚‹ã§ã—ょ?" +#~ "使ã£ã¦ã®è£œå®ŒãŒã§ãるよ。ファイルåã®ä¸€éƒ¨åˆ†ã‚’打ã£ãŸå¾Œã§ã€Tabキーを" +#~ "押ã›ã°â€¥â€¥ã»ã‚‰ã­ã€è£œå®Œã•ã‚Œã‚‹ã§ã—ょ?" #~ msgid "" #~ "Nearly all image operations are performed by right-clicking on the image. " #~ "And don't worry, you can undo most mistakes..." #~ msgstr "" -#~ "ç”»åƒä¸Šã§å³ã‚¯ãƒªãƒƒã‚¯ã™ã‚Œã°ã©ã‚“ãªç”»åƒå‡¦ç†ã ã£ã¦ã§ãるよ.ã»ã¨ã‚“ã©ã®å¤±æ•—ã¯ã‚„ã‚Š" +#~ "ç”»åƒä¸Šã§å³ã‚¯ãƒªãƒƒã‚¯ã™ã‚Œã°ã©ã‚“ãªç”»åƒå‡¦ç†ã ã£ã¦ã§ãるよ。ã»ã¨ã‚“ã©ã®å¤±æ•—ã¯ã‚„ã‚Š" #~ "ç›´ã—ãŒããã‹ã‚‰æã‚Œãªãã¦ã‚‚良ã„ã—..." #~ msgid "You can adjust and re-place a selection by using Alt-drag." #~ msgstr "" -#~ "Alt を押ã—ãªãŒã‚‰ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã“ã¨ã§ï¼Œé¸æŠžé ˜åŸŸã‚’ç½®ãæ›ãˆãŸã‚Šèª¿ç¯€ã—" -#~ "ãŸã‚Šã§ãã‚‹ã‚“ã ï¼Ž" +#~ "Alt を押ã—ãªãŒã‚‰ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã“ã¨ã§ã€é¸æŠžé ˜åŸŸã‚’ç½®ãæ›ãˆãŸã‚Šèª¿ç¯€ã—" +#~ "ãŸã‚Šã§ãã‚‹ã‚“ã ã€‚" #~ msgid "" #~ "If your fonts turn out blocky, that's because they're not scalable fonts. " @@ -389,7 +379,7 @@ #~ "install them. Some font servers allow you to use TrueType (.ttf) " #~ "fonts, which are also scalable." #~ msgstr "" -#~ "文字ãŒã‚¬ã‚¿ã‚¬ã‚¿ã«ãªã£ã¡ã‚ƒã†ã®ã¯ã‚¹ã‚±ãƒ©ãƒ¼ãƒ–ルフォントã˜ã‚ƒãªã„ã‹ã‚‰ã ã‚ˆï¼Žã»ã¨ã‚“" -#~ "ã©ã® X サーãƒã¯ Type 1 Postscript フォントをサãƒãƒ¼ãƒˆã—ã¦ã‚‹ã¯ãšã ã‹ã‚‰ï¼Œæ‰‹ã«" -#~ "ã„ã‚Œã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—よã†ï¼Žã„ãã¤ã‹ã®ãƒ•ã‚©ãƒ³ãƒˆã‚µãƒ¼ãƒã¯ã‚¹ã‚±ãƒ©ãƒ¼ãƒ–ル㪠" -#~ "TrueType (.ttf) フォントを使ãˆã‚‹ã‚ˆï¼Ž" +#~ "文字ãŒã‚¬ã‚¿ã‚¬ã‚¿ã«ãªã£ã¡ã‚ƒã†ã®ã¯ã‚¹ã‚±ãƒ©ãƒ¼ãƒ–ルフォントã˜ã‚ƒãªã„ã‹ã‚‰ã ã‚ˆã€‚ã»ã¨ã‚“" +#~ "ã©ã® X サーãƒã¯ Type 1 Postscript フォントをサãƒãƒ¼ãƒˆã—ã¦ã‚‹ã¯ãšã ã‹ã‚‰ã€æ‰‹ã«" +#~ "ã„ã‚Œã¦ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã—よã†ã€‚ã„ãã¤ã‹ã®ãƒ•ã‚©ãƒ³ãƒˆã‚µãƒ¼ãƒã¯ã‚¹ã‚±ãƒ©ãƒ¼ãƒ–ル㪠" +#~ "TrueType (.ttf) フォントを使ãˆã‚‹ã‚ˆã€‚" diff -uraN gimp-2.2.8/tips/Makefile.in gimp-2.2.9/tips/Makefile.in --- gimp-2.2.8/tips/Makefile.in 2005-06-26 21:28:28.000000000 +0200 +++ gimp-2.2.9/tips/Makefile.in 2005-10-27 17:11:58.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,30 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = tips +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(tipsdatadir)" +tipsdataDATA_INSTALL = $(INSTALL_DATA) +DATA = $(tipsdata_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +256,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +307,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +354,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -368,13 +394,9 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ - tipsdatadir = $(gimpdatadir)/tips - tips_in_files = gimp-tips.xml.in - tipsdata_DATA = $(tips_in_files:.xml.in=.xml) - tips_POFILES = \ bg.po \ ca.po \ @@ -411,7 +433,6 @@ zh_CN.po \ zh_TW.po - EXTRA_DIST = \ ChangeLog \ POTFILES.in \ @@ -423,29 +444,41 @@ fortunes.xsl \ update.sh - MAINTAINERCLEANFILES = $(GETTEXT_PACKAGE)-tips.pot $(tipsdata_DATA) - GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE)-tips --pot - MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE)-tips --dist -subdir = tips -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DATA = $(tipsdata_DATA) - -DIST_COMMON = $(srcdir)/Makefile.in ChangeLog Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tips/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu tips/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -456,23 +489,22 @@ distclean-libtool: -rm -f libtool uninstall-info-am: -tipsdataDATA_INSTALL = $(INSTALL_DATA) install-tipsdataDATA: $(tipsdata_DATA) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(tipsdatadir) + test -z "$(tipsdatadir)" || $(mkdir_p) "$(DESTDIR)$(tipsdatadir)" @list='$(tipsdata_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " $(tipsdataDATA_INSTALL) $$d$$p $(DESTDIR)$(tipsdatadir)/$$f"; \ - $(tipsdataDATA_INSTALL) $$d$$p $(DESTDIR)$(tipsdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " $(tipsdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(tipsdatadir)/$$f'"; \ + $(tipsdataDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(tipsdatadir)/$$f"; \ done uninstall-tipsdataDATA: @$(NORMAL_UNINSTALL) @list='$(tipsdata_DATA)'; for p in $$list; do \ - f="`echo $$p | sed -e 's|^.*/||'`"; \ - echo " rm -f $(DESTDIR)$(tipsdatadir)/$$f"; \ - rm -f $(DESTDIR)$(tipsdatadir)/$$f; \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(tipsdatadir)/$$f'"; \ + rm -f "$(DESTDIR)$(tipsdatadir)/$$f"; \ done tags: TAGS TAGS: @@ -480,10 +512,6 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -497,7 +525,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -518,9 +546,10 @@ check-am: all-am check: check-am all-am: Makefile $(DATA) - installdirs: - $(mkinstalldirs) $(DESTDIR)$(tipsdatadir) + for dir in "$(DESTDIR)$(tipsdatadir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-am install-exec: install-exec-am install-data: install-data-am @@ -540,7 +569,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -558,6 +587,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -591,11 +622,12 @@ uninstall-am: uninstall-info-am uninstall-tipsdataDATA .PHONY: all all-am check check-am clean clean-generic clean-libtool \ - distclean distclean-generic distclean-libtool distdir dvi \ - dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip install-tipsdataDATA \ - installcheck installcheck-am installdirs maintainer-clean \ + dist-hook distclean distclean-generic distclean-libtool \ + distdir dvi dvi-am html html-am info info-am install \ + install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip install-tipsdataDATA installcheck \ + installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-info-am uninstall-tipsdataDATA diff -uraN gimp-2.2.8/tips/zh_TW.po gimp-2.2.9/tips/zh_TW.po --- gimp-2.2.8/tips/zh_TW.po 2005-06-26 22:51:59.000000000 +0200 +++ gimp-2.2.9/tips/zh_TW.po 2005-10-27 17:08:17.000000000 +0200 @@ -1,22 +1,21 @@ # traditional Chinese translation of gimp-tips. -# Copyright (C) 2003, 04 Free Software Foundation, Inc. +# Copyright (C) 2003, 04, 05 Free Software Foundation, Inc. # (partially based on Harry C.H. Chou's work) -# Abel Cheung , 2003-04. +# Abel Cheung , 2003-05. # msgid "" msgstr "" -"Project-Id-Version: gimp20-tips 2.0.0\n" +"Project-Id-Version: gimp20-tips 2.2.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2004-12-18 00:46+0100\n" -"PO-Revision-Date: 2004-03-23 22:17+0800\n" -"Last-Translator: Abel Cheung \n" +"PO-Revision-Date: 2005-04-05 06:51+0800\n" +"Last-Translator: Abel Cheung \n" "Language-Team: Chinese (traditional) \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 -#, fuzzy msgid "Welcome to the GIMP!" msgstr "歡迎使用 GIMPï¼" @@ -60,7 +59,6 @@ "圖層而隱è—其它圖層。å†åšä¸€æ¬¡å‰‡æœƒé¡¯ç¤ºæ‰€æœ‰åœ–層。" #: tips/gimp-tips.xml.in.h:7 -#, fuzzy msgid "" "A floating selection must be anchored to a new layer or to the last active " "layer before doing other operations on the image. Click on the "New " @@ -72,7 +70,6 @@ "鈕。å¦å¤–在é¸å–®ä¸­ä¹Ÿå¯ä»¥ä½¿ç”¨åŒæ¨£çš„方法。" #: tips/gimp-tips.xml.in.h:8 -#, fuzzy msgid "" "After you enabled "Dynamic Keyboard Shortcuts" in the Preferences " "dialog, you can reassign shortcut keys. Do so by bringing up the menu, " @@ -81,11 +78,10 @@ "you exit GIMP." msgstr "" "在å好設定å°è©±æ–¹å¡Šä¸­å•Ÿç”¨ã€Œå¯å³æ™‚更改æ·å¾‘éµè¨­å®šã€å¾Œï¼Œæ‚¨å¯ä»¥é‡æ–°å®‰æŽ’é¸å–®ä¸Šçš„æ·" -"徑éµã€‚方法是先用滑鼠é¸å–é¸å–®çš„æŸå€‹é …目,然後按下新的æ·å¾‘éµçµ„åˆã€‚çµæŸ GIMP " -"時,這些按éµçµ„åˆæœƒè¢«å„²å­˜ä¸‹ä¾†ã€‚" +"徑éµã€‚方法是先用滑鼠é¸å–é¸å–®çš„æŸå€‹é …目,但ä¸è¦æŒ‰æ»‘鼠按鈕,然後按下新的æ·å¾‘éµ" +"組åˆã€‚GIMP çµæŸæ™‚,這些按éµçµ„åˆæœƒè¢«å„²å­˜ä¸‹ä¾†ã€‚" #: tips/gimp-tips.xml.in.h:9 -#, fuzzy msgid "" "Click and drag on a ruler to place a guide on an image. All dragged " "selections will snap to the guides. You can remove guides by dragging them " @@ -96,7 +92,6 @@ "範åœä»¥å¤–。" #: tips/gimp-tips.xml.in.h:10 -#, fuzzy msgid "" "If some of your scanned photos do not look colorful enough, you can easily " "improve their tonal range with the "Auto" button in the Levels " @@ -134,7 +129,6 @@ "有圖層 (å½±åƒâ†’å½±åƒå¹³é¢åŒ–),增效模組æ‰æœƒå°æ•´å¹…å½±åƒç”¢ç”Ÿæ•ˆç”¨ã€‚" #: tips/gimp-tips.xml.in.h:14 -#, fuzzy msgid "" "Not all effects can be applied to all kinds of images. This is indicated by " "a grayed-out menu-entry. You may need to change the image mode to RGB (Image-" @@ -157,7 +151,7 @@ #: tips/gimp-tips.xml.in.h:16 msgid "" "The GIMP can undo most changes to the image, so feel free to experiment." -msgstr "" +msgstr "GIMP 幾乎å¯ä»¥é‚„原所有更改影åƒçš„æ“作程åºï¼Œå› æ­¤æ‚¨å¯ä»¥æ”¾å¿ƒå˜—試。" #: tips/gimp-tips.xml.in.h:17 msgid "" @@ -179,19 +173,17 @@ "æ•´åˆå¾Œçš„內容。" #: tips/gimp-tips.xml.in.h:19 -#, fuzzy msgid "" "The layer named "Background" is special because it lacks " "transparency. This prevents you from moving the layer up in the stack. You " "may add transparency to it by right-clicking in the Layers dialog and " "selecting "Add Alpha Channel"." msgstr "" -"圖層中稱為「背景ã€çš„一個是比較特殊的,因為它沒有é€æ˜Žåº¦ã€‚這樣會妨礙您加上圖層" +"圖層中稱為「背景ã€çš„一層是比較特殊的,因為它沒有é€æ˜Žåº¦ã€‚這樣會妨礙您加上圖層" "é®ç½©æˆ–將圖層移至較é¢å±¤çš„ä½ç½®ã€‚在「圖層ã€å°è©±æ–¹å¡Šä¸­æŒ‰å³é‚Šæ»‘鼠按鈕並é¸å–「新增" "é€æ˜Žè‰²ç‰ˆã€å¯ä»¥æ›¿å®ƒåŠ ä¸Šé€æ˜Žåº¦ã€‚" #: tips/gimp-tips.xml.in.h:20 -#, fuzzy msgid "" "To create a circle-shaped selection, hold Shift while doing an " "ellipse select. To place a circle precisely, drag horizontal and vertical " @@ -199,9 +191,9 @@ "intersection of the guides, and the resulting selection will just touch the " "guides." msgstr "" -"è‹¥è¦ç•«å‡ºæ­£åœ“形,方法是é¸æ“‡æ©¢åœ“å€åŸŸæ™‚按下 Shift éµã€‚è‹¥è¦ç²¾ç¢ºåœ°é¸å–放" -"置圓形的ä½ç½®ï¼Œå…ˆæ‹–曳水平åŠåž‚ç›´åƒè€ƒç·šè‡³ç›®æ¨™åœ“形的切線ä½ç½®ï¼Œå†å°‡æ¸¸æ¨™æ”¾åˆ°åƒè€ƒç·š" -"的交å‰é»žä¸Šï¼Œå¾—出來的é¸æ“‡å€åŸŸä¾¿æœƒåƒ…僅接觸到åƒè€ƒç·šã€‚" +"è‹¥è¦é¸æ“‡æ­£åœ“å½¢å€åŸŸï¼Œæ–¹æ³•æ˜¯é¸æ“‡æ©¢åœ“å€åŸŸæ™‚按下 Shift éµã€‚è‹¥è¦ç²¾ç¢ºåœ°é¸" +"å–放置圓形的ä½ç½®ï¼Œå…ˆæ‹–曳水平åŠåž‚ç›´åƒè€ƒç·šè‡³ç›®æ¨™åœ“形的切線ä½ç½®ï¼Œå†ç”¨æ»‘é¼ é¸å–åƒ" +"考線的交點,得出來的é¸æ“‡å€åŸŸä¾¿æœƒåƒ…僅接觸到åƒè€ƒç·šã€‚" #: tips/gimp-tips.xml.in.h:21 msgid "" @@ -226,7 +218,6 @@ "後,å¯ä»¥å°‡å½±åƒå¦å­˜ç‚º JPEGã€PNGã€GIF 等等..." #: tips/gimp-tips.xml.in.h:23 -#, fuzzy msgid "" "You can adjust or move a selection by using Alt-drag. If this makes " "the window move, your window manager uses the Alt key already. Try " @@ -294,7 +285,6 @@ "能。" #: tips/gimp-tips.xml.in.h:31 -#, fuzzy msgid "" "You can press or release the Shift and Ctrl keys while you " "are making a selection in order to constrain it to a square or a circle, or " @@ -329,7 +319,6 @@ msgstr "當影åƒå¤§æ–¼é¡¯ç¤ºå½±åƒçš„視窗時,å¯ä»¥ç”¨ä¸­å¤®æ»‘鼠按鈕抓ä½å½±åƒåœ¨è¦–窗內移動。" #: tips/gimp-tips.xml.in.h:35 -#, fuzzy msgid "" "You can use the paint tools to change the selection. Click on the "" "Quick Mask" button at the bottom left of an image window. Change your " @@ -340,6 +329,13 @@ "在影åƒä¸Šç¹ªåœ–å¯ä»¥æ›´æ”¹é¸æ“‡å€åŸŸï¼Œç„¶å¾Œå†æŒ‰ä¸€æ¬¡æŒ‰éˆ•å¯ä»¥å°‡ä¹‹è½‰æ›ç‚ºæ™®é€šçš„é¸æ“‡å€åŸŸã€‚" #~ msgid "" +#~ "Nearly all image operations are performed by right-clicking on the image. " +#~ "And don't worry, you can undo most mistakes..." +#~ msgstr "" +#~ "幾乎所有的影åƒè™•ç†éƒ½å¯ä»¥åœ¨å½±åƒä¸ŠæŒ‰ä¸‹å³é‚Šæ»‘鼠按鈕來進行。ä¸éœ€å¤ªæ“”心,大部份" +#~ "的錯誤都是å¯ä»¥å¾©åŽŸçš„..." + +#~ msgid "" #~ "The file selection dialog box has command-line completion with Tab, just like the shell. Type part of a filename, hit Tab, and " #~ "voila, it's completed." @@ -347,13 +343,6 @@ #~ "在檔案é¸æ“‡å°è©±æ–¹å¡Šå…§æœ‰é¡žä¼¼ shell 的自動補齊功能。åªè¦éµå…¥ä¸€éƒ¨ä»½æª”案å稱," #~ "按下 Tab,就完æˆäº†ï¼" -#~ msgid "" -#~ "Nearly all image operations are performed by right-clicking on the image. " -#~ "And don't worry, you can undo most mistakes..." -#~ msgstr "" -#~ "幾乎所有的影åƒè™•ç†éƒ½å¯ä»¥åœ¨å½±åƒä¸ŠæŒ‰ä¸‹å³é‚Šæ»‘鼠按鈕來進行。ä¸éœ€å¤ªæ“”心,大部份" -#~ "的錯誤都是å¯ä»¥å¾©åŽŸçš„..." - #~ msgid "You can adjust and re-place a selection by using Alt-drag." #~ msgstr "您å¯ä»¥é€éŽæŒ‰ä¸‹ Alt éµå†æ‹–曳滑鼠來調整åŠé‡æ–°æ”¾ç½®é¸æ“‡å€åŸŸã€‚" diff -uraN gimp-2.2.8/tools/Makefile.in gimp-2.2.9/tools/Makefile.in --- gimp-2.2.8/tools/Makefile.in 2005-06-26 21:28:29.000000000 +0200 +++ gimp-2.2.9/tools/Makefile.in 2005-10-27 17:11:59.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -21,7 +21,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +34,55 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +bin_PROGRAMS = $(am__EXEEXT_1) +EXTRA_PROGRAMS = gimp-remote-2.2$(EXEEXT) kernelgen$(EXEEXT) +subdir = tools +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__EXEEXT_1 = @GIMP_REMOTE@ +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_gimp_remote_2_2_OBJECTS = gimp-remote.$(OBJEXT) +gimp_remote_2_2_OBJECTS = $(am_gimp_remote_2_2_OBJECTS) +am__DEPENDENCIES_1 = +gimp_remote_2_2_DEPENDENCIES = $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) +am_kernelgen_OBJECTS = kernelgen.$(OBJEXT) +kernelgen_OBJECTS = $(am_kernelgen_OBJECTS) +kernelgen_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(gimp_remote_2_2_SOURCES) $(kernelgen_SOURCES) +DIST_SOURCES = $(gimp_remote_2_2_SOURCES) $(kernelgen_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-exec-recursive install-info-recursive \ + install-recursive installcheck-recursive installdirs-recursive \ + pdf-recursive ps-recursive uninstall-info-recursive \ + uninstall-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = pdbgen +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +281,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +332,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +379,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -369,103 +420,69 @@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ @WITH_PDBGEN_FALSE@D_pdbgen = - @WITH_PDBGEN_TRUE@D_pdbgen = pdbgen - SUBDIRS = $(D_pdbgen) - -bin_PROGRAMS = $(GIMP_REMOTE) - -EXTRA_PROGRAMS = \ - gimp-remote-2.2 \ - kernelgen - - gimp_remote_2_2_SOURCES = gimp-remote.c - gimp_remote_2_2_LDADD = \ $(GTK_LIBS) \ $(LIBXMU) - kernelgen_SOURCES = kernelgen.c - AM_CPPFLAGS = -DGIMP_APP_VERSION=\"@GIMP_APP_VERSION@\" - INCLUDES = \ -I$(top_srcdir) \ $(GTK_CFLAGS) \ -I$(includedir) - EXTRA_DIST = \ gimp-mkenums \ gimppath2svg.py \ rmshm -subdir = tools -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -EXTRA_PROGRAMS = gimp-remote-2.2$(EXEEXT) kernelgen$(EXEEXT) -bin_PROGRAMS = @GIMP_REMOTE@ -PROGRAMS = $(bin_PROGRAMS) - -am_gimp_remote_2_2_OBJECTS = gimp-remote.$(OBJEXT) -gimp_remote_2_2_OBJECTS = $(am_gimp_remote_2_2_OBJECTS) -gimp_remote_2_2_DEPENDENCIES = -gimp_remote_2_2_LDFLAGS = -am_kernelgen_OBJECTS = kernelgen.$(OBJEXT) -kernelgen_OBJECTS = $(am_kernelgen_OBJECTS) -kernelgen_LDADD = $(LDADD) -kernelgen_DEPENDENCIES = -kernelgen_LDFLAGS = - -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/gimp-remote.Po \ -@AMDEP_TRUE@ ./$(DEPDIR)/kernelgen.Po -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(gimp_remote_2_2_SOURCES) $(kernelgen_SOURCES) - -RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \ - ps-recursive install-info-recursive uninstall-info-recursive \ - all-recursive install-data-recursive install-exec-recursive \ - installdirs-recursive install-recursive uninstall-recursive \ - check-recursive installcheck-recursive -DIST_COMMON = $(srcdir)/Makefile.in Makefile.am -DIST_SUBDIRS = pdbgen -SOURCES = $(gimp_remote_2_2_SOURCES) $(kernelgen_SOURCES) - all: all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu tools/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ || test -f $$p1 \ ; then \ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done @@ -473,8 +490,8 @@ @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ - rm -f $(DESTDIR)$(bindir)/$$f; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @@ -491,7 +508,7 @@ $(LINK) $(kernelgen_LDFLAGS) $(kernelgen_OBJECTS) $(kernelgen_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @@ -500,37 +517,25 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kernelgen.Po@am__quote@ .c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi` +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ -@am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; \ -@am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ -@am__fastdepCC_TRUE@ fi +@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$< +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -549,7 +554,13 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -561,7 +572,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ @@ -569,7 +580,13 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -590,7 +607,7 @@ local_target="$$target"; \ fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ + || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -601,14 +618,6 @@ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done -ETAGS = etags -ETAGSFLAGS = - -CTAGS = ctags -CTAGSFLAGS = - -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ @@ -617,19 +626,22 @@ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ mkid -fID $$unique +tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - if (etags --etags-include --version) >/dev/null 2>&1; then \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ + empty_fix=.; \ else \ include_option=--include; \ + empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && \ + test ! -f $$subdir/TAGS || \ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ @@ -639,10 +651,11 @@ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$tags$$unique" \ - || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique - + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) @@ -665,10 +678,6 @@ distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ @@ -682,7 +691,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -699,13 +708,15 @@ done list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -715,8 +726,9 @@ all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(bindir) - + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -736,7 +748,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -755,6 +767,8 @@ dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -793,24 +807,20 @@ uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool clean-recursive \ - ctags ctags-recursive distclean distclean-compile \ - distclean-generic distclean-libtool distclean-recursive \ - distclean-tags distdir dvi dvi-am dvi-recursive info info-am \ - info-recursive install install-am install-binPROGRAMS \ - install-data install-data-am install-data-recursive \ - install-exec install-exec-am install-exec-recursive \ - install-info install-info-am install-info-recursive install-man \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ + clean clean-binPROGRAMS clean-generic clean-libtool \ + clean-recursive ctags ctags-recursive distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-recursive distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-exec install-exec-am \ + install-exec-hook install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + installdirs-am maintainer-clean maintainer-clean-generic \ maintainer-clean-recursive mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ - pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \ - tags-recursive uninstall uninstall-am uninstall-binPROGRAMS \ - uninstall-info-am uninstall-info-recursive uninstall-local \ - uninstall-recursive + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-info-am uninstall-local install-exec-hook: diff -uraN gimp-2.2.8/tools/pdbgen/Makefile.in gimp-2.2.9/tools/pdbgen/Makefile.in --- gimp-2.2.8/tools/pdbgen/Makefile.in 2005-06-26 21:28:29.000000000 +0200 +++ gimp-2.2.9/tools/pdbgen/Makefile.in 2005-10-27 17:11:59.000000000 +0200 @@ -1,8 +1,8 @@ -# Makefile.in generated by automake 1.7.9 from Makefile.am. +# Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -13,7 +13,6 @@ # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ @@ -21,7 +20,6 @@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = ../.. - am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 @@ -35,7 +33,21 @@ NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : +build_triplet = @build@ host_triplet = @host@ +subdir = tools/pdbgen +DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AA = @AA@ ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ @@ -234,6 +246,7 @@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MKINSTALLDIRS = @MKINSTALLDIRS@ +MMX_EXTRA_CFLAGS = @MMX_EXTRA_CFLAGS@ MNG = @MNG@ MSGFMT = @MSGFMT@ MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ @@ -284,6 +297,7 @@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SOCKET_LIBS = @SOCKET_LIBS@ +SSE_EXTRA_CFLAGS = @SSE_EXTRA_CFLAGS@ STATICLIBS_FALSE = @STATICLIBS_FALSE@ STATICLIBS_TRUE = @STATICLIBS_TRUE@ STRIP = @STRIP@ @@ -330,6 +344,8 @@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ @@ -370,7 +386,6 @@ target_alias = @target_alias@ PDBGEN_BACKUP = 0 PDBGEN_GROUPS = - pdb_sources = \ pdb/brush.pdb \ pdb/brush_select.pdb \ @@ -416,7 +431,6 @@ pdb/undo.pdb \ pdb/unit.pdb - EXTRA_DIST = \ README \ app.pl \ @@ -431,7 +445,6 @@ util.pl \ $(pdb_sources) - enum_headers = \ ../../libgimpbase/gimpbaseenums.h \ ../../app/base/base-enums.h \ @@ -440,7 +453,6 @@ ../../app/paint/paint-enums.h \ ../../app/plug-in/plug-in-types.h - pdb_scripts = \ pdbgen.pl \ stddefs.pdb \ @@ -449,12 +461,10 @@ enums.pl \ groups.pl - enum_deps = \ enums.pl \ $(srcdir)/util.pl - pdbgen_deps = \ $(enum_deps) \ $(srcdir)/app.pl \ @@ -463,7 +473,6 @@ $(srcdir)/stddefs.pdb \ $(srcdir)/pdbgen.pl - stamp_files = \ stamp-enums \ stamp-groups \ @@ -471,23 +480,39 @@ stamp-enum-code \ stamp-enum-code-py - MAINTAINERCLEANFILES = $(stamp_files) -subdir = tools/pdbgen -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -DIST_SOURCES = -DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am all: all-am .SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/pdbgen/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu tools/pdbgen/Makefile -Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh mostlyclean-libtool: -rm -f *.lo @@ -504,13 +529,9 @@ ctags: CTAGS CTAGS: -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = ../.. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) distdir: $(DISTFILES) - $(mkinstalldirs) $(distdir)/pdb + $(mkdir_p) $(distdir)/pdb @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ list='$(DISTFILES)'; for file in $$list; do \ @@ -522,7 +543,7 @@ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ if test "$$dir" != "$$file" && test "$$dir" != "."; then \ dir="/$$dir"; \ - $(mkinstalldirs) "$(distdir)$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ else \ dir=''; \ fi; \ @@ -540,7 +561,6 @@ check-am: all-am check: check-am all-am: Makefile all-local - installdirs: install: install-am install-exec: install-exec-am @@ -561,7 +581,7 @@ clean-generic: distclean-generic: - -rm -f $(CONFIG_CLEAN_FILES) + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -579,6 +599,8 @@ dvi-am: +html: html-am + info: info-am info-am: @@ -613,13 +635,13 @@ .PHONY: all all-am all-local check check-am clean clean-generic \ clean-libtool distclean distclean-generic distclean-libtool \ - distdir dvi dvi-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic \ - mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ - uninstall-info-am + distdir dvi dvi-am html html-am info info-am install \ + install-am install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-info-am $(srcdir)/enums.pl: stamp-enums